From 98f8505c4a94809afc8c9479252f376dac50cc39 Mon Sep 17 00:00:00 2001 From: SlaterLatiao <41390071+SlaterLatiao@users.noreply.github.com> Date: Mon, 10 Jan 2022 12:05:12 -0600 Subject: [PATCH 01/77] move injected test cases to a separate folder --- .../declarations/basic_declarators/a.out | Bin 0 -> 16744 bytes .../array_conditional_flex.c | 11 ------ .../basic_declarators/array_flex.c | 15 ------- .../array_init_elem_configurable.c | 6 --- .../array_init_length_implicity.c | 7 ---- .../basic_declarators/configurable_array.c | 11 ------ .../basic_declarators/configurable_pointer.c | 13 ------ .../configurable_pointer_level.c | 7 ---- .../configurable_primitive.c | 12 ------ .../declaring_list_partial_config.c | 8 ---- .../injected/array_conditional_flex.c | 17 ++++++++ .../basic_declarators/injected/array_flex.c | 24 ++++++++++++ .../{ => injected}/array_init_compound.c | 8 +++- .../injected/array_init_elem_configurable.c | 17 ++++++++ .../injected/array_init_length_implicity.c | 16 ++++++++ .../injected/configurable_array.c | 16 ++++++++ .../injected/configurable_pointer.c | 21 ++++++++++ .../injected/configurable_pointer_level.c | 18 +++++++++ .../injected/configurable_primitive.c | 19 +++++++++ .../injected/declaring_list_partial_config.c | 16 ++++++++ .../scope_partial_declaration1.c | 13 +++++- .../scope_partial_declaration2.c | 9 ++++- .../struct_union_enum_specifiers/a.out | Bin 0 -> 16712 bytes .../enum_assign_forward_ref.c | 18 --------- .../enum_configurable_elem.c | 11 ------ .../injected/enum_assign_forward_ref.c | 37 ++++++++++++++++++ .../injected/enum_configurable_elem.c | 17 ++++++++ 27 files changed, 245 insertions(+), 122 deletions(-) create mode 100755 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/a.out delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/array_conditional_flex.c delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/array_flex.c delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/array_init_elem_configurable.c delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/array_init_length_implicity.c delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/configurable_array.c delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/configurable_pointer.c delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/configurable_pointer_level.c delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/configurable_primitive.c delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/declaring_list_partial_config.c create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_conditional_flex.c create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_flex.c rename fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/{ => injected}/array_init_compound.c (54%) create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_init_elem_configurable.c create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_init_length_implicity.c create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/configurable_array.c create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/configurable_pointer.c create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/configurable_pointer_level.c create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/configurable_primitive.c create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/declaring_list_partial_config.c rename fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/{ => injected}/scope_partial_declaration1.c (60%) rename fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/{ => injected}/scope_partial_declaration2.c (70%) create mode 100755 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/a.out delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/enum_assign_forward_ref.c delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/enum_configurable_elem.c create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/enum_assign_forward_ref.c create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/enum_configurable_elem.c diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/a.out b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/a.out new file mode 100755 index 0000000000000000000000000000000000000000..bc8373a905a883ebee788936fee8b30b992e074d GIT binary patch literal 16744 zcmeHOYiwLc6`u9R$>z0QhnPAJ)VDO1k`~`MFV`tD*|ojSU9@?S*fgk3uh-sdd(l43 z?p2Iri4@5DFP4{?P4W- zH;V_wVvrX}&Poqk0I62ET;s$5@qR$GYs5$u{Fp@xMy??u+ASEcLKqmS9cWjJJjrfs zpn5WLdZj!CjUg!VyMhN$0Rp4l4y$mcMJ9_g9Zozz<@FP?9g1jof$T1j9pfyO$H@Lf zpWvsR{OLvo(l99UTL`z^0kU&rH|aBC85s6oHP-Hg3ja&{Rm-kt)<1V!< z@Bhu+ypPITs2?=)KO?zUY)q#H+O}>?CtK2~Y;mk*ti7$JZL3=x(9_!tuCyl%@oGO?` zzIRtwI+rzi69Z|q9M0sjWT{)KRTZ&XHRNUXwNK#R-1JavN-agLEz|~ne)+ix*INnG z^n5Zeh!2FVbmm#Uj2!|2`x49JaMi~17{as}8_&-I^0PKx&TB|QxNYO@&&x&Pmw*np zSsHj>o(DV+cpmUP;CaCFfad|v1OHbZ_($D?|JEk{8qki{{%)fX+Kba>P5GiW@zcOL z>4);RZvuU@{K!dwx@Lj;BbajYoj;b#1B#W+-LY58hh^I@0Z9ro`Wf<(-y5A491p}HT{o(9c{ zY2UHh*C6sn^bW4|k4Nv6&O?Py1mXVzAd8td@0H6k_H%oEB2UIAJJxoPrTkHQ6Y>NfHA8MQ}m&X9x0bc>s0CAUk0I(l0 za-&?n2zU%|7VtJ;J8p0x;5$zYzGwFd-&n}EcEysw6r>@K@A7B=UM}NiTXZjxuV~jn zbSr#b23`Ra!B9`I@iTSH4+Rd39ZgR>x@DbwjfnP7!)FTgq#^1;K;DGUF&B?zoq$gY z>Kq0X(O~FkP1nlBhoC|rVq0H>&lIE^fTAZD`g%<)*!VSnG^k82iU!x8sO=869$l;j z+b5Rn42HA8_DHZb5?tRIR62u=oxxCNFd*Ln-vaY9kdOU69A@bS&jX$ZJP&vt@I2so z!1I9T0nY=T2Rsja7#`sBhkV|UwqKPqg)6ua+AOUkIY5U#*O1KT8rO0f4VraBLG!Qb7nK(n|7WvE~>*Kx; z1MXKbJYa#Cp^7lSo@B1~H0i-z?ZS+l5YSGTCGEt?)MN^#S3 zn_Jb^ts5-*K6!DHA4X$i6$kj?e-3;;opllY@Wq%Gf3e_k=j4|N z9-mG=Ah_S0{8GXF?c|pU9#>9&d1d@Ld3YMD^ot*EQ7BdUpa@sx>%`uwe5i6?!&z>< z;OE`R!z7^C87uA=AE}(jx2O8yzbt#J>NiyGH8}M@DtO*-@(+k=cdthpeDn^5Ls0-|9OccPdaw!Ux0recr4dFZchNO*fXH`N#N^i z)(D<|S>+V+STY&W&x-gl@aUf@x@TaJ!7l+r(5}WX5d<%iem{-pjl{nJJnFljqhFDJ zjPmE~E(4GCbn9OOUZFhga1VI-k6Sy5@xi=VFpF>kX;94Fgi zk_j_G7ihv^#|0Vp^%-|ET3UBxph)M189iCZ=_8435--!l_JCG0mDP&{1DZHjJ9Hh$ z1BC)*BQNRbI^4x!2jL~1syA<(cYT~y6KY{RV&p!`Y%b znuqSno8vZWpqPT&TB#&akM-t{-EAYCEk=OT>EOj}K_%M9zcZYcW#;Bl@E$}*; zsWyn%?GMm;j&U6;67qbp@0^6$#z;PXhl>Sd(-6dEdgw<@22>cl{G!k9!uj z=k+DyDJmD+h<;{!-e07E!zQymuR|G+K$<;Z9`^7>5OB}I_PkzY#B~b>u0QKBJ_l*I zhhdr5wTucHLvYvMVuhH52>O)mdHu^cO^RH;yZzrF`%coEp&xce_7mD;+-?6VaOe}x zAAY>7KZHE_;RSDoEKexUv`DaoLASfsyqWvj4uzp4ah=|IPj + +#ifdef A +typedef int x; +#else +typedef short x; +#endif + +int main() { + x id[2] = {1, 2}; + #ifdef A + int flag = sizeof(id) == 8; + #else + int flag = sizeof(id) == 4; + #endif + printf("%d\n", flag); +} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_flex.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_flex.c new file mode 100644 index 00000000..9cb64246 --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_flex.c @@ -0,0 +1,24 @@ +#include + +#ifdef A +#define __flexarr [] +#endif +int a; +struct x { + int x; +#ifdef A + char name __flexarr; +#else + char name[5]; +#endif +}; + +int main() { + #ifdef A + int flag = sizeof(struct x) == 4; + #else + int flag = sizeof(struct x) == 12; + #endif + printf("%d\n", flag); + return 0; +} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/array_init_compound.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_init_compound.c similarity index 54% rename from fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/array_init_compound.c rename to fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_init_compound.c index 6e14f471..35d3ae63 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/array_init_compound.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_init_compound.c @@ -1,11 +1,17 @@ #ifdef A const char x = 'c'; #else -char x = 'c'; +char x = 'd'; #endif void foo(const char c[4]) { + #ifdef A + int flag = c[2] == 'c'; + #else + int flag = c[2] == 'd'; + #endif + printf("%d\n", flag); return; } diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_init_elem_configurable.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_init_elem_configurable.c new file mode 100644 index 00000000..fdbc51f3 --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_init_elem_configurable.c @@ -0,0 +1,17 @@ +#ifdef A +#define X 1 +#else +#define X 2 +#endif + +int main() { + int a[1] = {X}; + #ifdef A + int flag = a[0] == 1; + #else + int flag = a[0] == 2; + #endif + printf("%d\n", flag); + return 0; +} + diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_init_length_implicity.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_init_length_implicity.c new file mode 100644 index 00000000..a7283523 --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_init_length_implicity.c @@ -0,0 +1,16 @@ +#ifdef IMPLICIT_LENGTH +int x[] = {-2, 4, 5}; +#else +int y[5] = {1, 2, 3, 4, 5}; +#endif + +int main () +{ + #ifdef IMPLICIT_LENGTH + int flag = sizeof(x) == 12; + #else + int flag = sizeof(y) == 20; + #endif + printf("%d\n", flag); + return 0; +} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/configurable_array.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/configurable_array.c new file mode 100644 index 00000000..b916cf19 --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/configurable_array.c @@ -0,0 +1,16 @@ +int main() { + #ifdef A + int x[4]; + #else + double x[5]; + #endif + + #ifdef A + int flag = sizeof(x) == 16; + #else + int flag = sizeof(x) == 40; + #endif + printf("%d\n", flag); + + return 0; +} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/configurable_pointer.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/configurable_pointer.c new file mode 100644 index 00000000..37485d0c --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/configurable_pointer.c @@ -0,0 +1,21 @@ +struct s { + int field1; + int field2; +}; + +int main() { + #ifdef A + int *x; + #else + struct s *x; + #endif + + #ifdef A + int flag = sizeof(*x) == 4; + #else + int flag = sizeof(*x) == 8; + #endif + printf("%d\n", flag); + + return 0; +} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/configurable_pointer_level.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/configurable_pointer_level.c new file mode 100644 index 00000000..e003f2e3 --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/configurable_pointer_level.c @@ -0,0 +1,18 @@ +int +#ifdef A + * +#else + ** +#endif + c; + +int main() { + #ifdef A + int flag = sizeof(*c) == 4; + #else + int flag = sizeof(*c) == 8; + #endif + printf("%d\n", flag); + + return 0; +} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/configurable_primitive.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/configurable_primitive.c new file mode 100644 index 00000000..35dac86d --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/configurable_primitive.c @@ -0,0 +1,19 @@ +int main() { +#ifdef A + int x; +#else + double x; +#endif + + x = 1; + x++; + + #ifdef A + int flag = sizeof(x) == 4; + #else + int flag = sizeof(x) == 8; + #endif + printf("%d\n", flag); + + return 0; +} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/declaring_list_partial_config.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/declaring_list_partial_config.c new file mode 100644 index 00000000..9ca2fe42 --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/declaring_list_partial_config.c @@ -0,0 +1,16 @@ +#ifdef A +int x = 1; +#else +long x = 2; +#endif +int main() { + int a, b = x; + + #ifdef A + int flag = a == 0 && b == 1; + #else + int flag = a == 0 && b == 2; + #endif + printf("%d\n", flag); + +} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/scope_partial_declaration1.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/scope_partial_declaration1.c similarity index 60% rename from fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/scope_partial_declaration1.c rename to fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/scope_partial_declaration1.c index 4d889f1a..b585f944 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/scope_partial_declaration1.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/scope_partial_declaration1.c @@ -9,8 +9,19 @@ char x; int main() { // this does not hide "int x;" declaration in all configurations #ifdef B - float x; + double x; // symtab: x -> float:B, int:!B&&A, char:!B&&!A #endif x++; + +#ifdef B + int flag = sizeof(x) == 8; +#else +#ifdef A + int flag = sizeof(x) == 4; +#else + int flag = sizeof(x) == 1; +#endif +#endif + printf("%d\n", flag); } diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/scope_partial_declaration2.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/scope_partial_declaration2.c similarity index 70% rename from fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/scope_partial_declaration2.c rename to fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/scope_partial_declaration2.c index 7d9a539e..ea2198db 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/scope_partial_declaration2.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/scope_partial_declaration2.c @@ -9,8 +9,15 @@ char x; int main() { // this hides the "int x;" declaration in any configurations #ifdef A - float x; + double x; // symtab: x -> float:A, char:!A&&!A (int:!A&&A=False, i.e., no configurations) #endif x++; + +#ifdef A + int flag = sizeof(x) == 8; +#else + int flag = sizeof(x) == 1; +#endif + printf("%d\n", flag); } diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/a.out b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/a.out new file mode 100755 index 0000000000000000000000000000000000000000..ef64b1324c7c26f35ab853eb1dcfbd0736bb008e GIT binary patch literal 16712 zcmeHOeQX>@6`%9P$>rO@sv0T+E-J+dDKaI=@!srv z=iT)=2-Lq|$GZE?`@Q#OX5Y;2&3I?N80+q;@%aQNzxbFy>3G;;BBVIIhcW;W(JEHM zcca)SmV&%Qa+W?~0cfrCN{tf(#QOo!uK_bv@ckAo7`cUr=(lLX24P~P>p;I+K_AByOAk^C-_ALA_5$H?)- znBb?C;^{^ObeI(REri>zkNn)&N%o9b2c{#}%;bMl-y!k~D6$ygMy`jE>-!}5ahF=2 zcmL*YK1}s3)(;xRpOL~Vwxv`3ExWd*lTGPVwm8}}+S=08vP&)G)E%;7Y!}vnV`|@l zUIE2SAxB}9eX*8g)Ys*9eCef^uXnsy_tLQ|zghmF*Ux_95|@E>q75eW=OKYIj|a4| zuKy{dE5rM;@vDp^7Wvu>yi!HC61X*0`1=;&9|2yeV*i;%cr5$=D)s{6I)Gtp5hM9j z)*KYNJ}{cl2UFQZI`y~#B3kGLGm$s-Od^#P`?}-p9r_M+hq_zn@t*y9(#RV_se)MX?+ z-Ji@0;sX&&&pgYoV241$zQp=CUA6H%hEO+SaGO*!m zmJZ&R7XdEOn5r9bD&36230fz6P@I82CE;-+T;|SWqwcK`_HVi_PKOe*B3! zU+61Sp&v|@Vz)L(PPm^qx$rqvp(!;Y`z=^m7bT)@xHtWcoFa-;6=cTfENKT z0$v2X2zU|jBH%^feTu))* z{fzJ2Dd$jrfi^4h+Gk`5vh({>FOq(RMT?V!xc?MWg9W0Vkb&I9Ioh|#dluOq*L|39 zy^85x3&adHg!wHbbGxU=4mNkn#N}-yneF~rwyqE2Dk*r=Dz7&{<-r?YDRbOm`6uO@ zbp8JznXiM2f6svTgS!iCwl9v|%Dc$CKXqS6$3x1N-u`0NEGm1{ooaK__6Lhn-2UW_ zX0>_OR*Sw%S*-HIXl$qw06+ZCf%m7gEutU(c>lSRUn0IxwVc|@_;cDX6+G^o{4&Ag z)5!+}_nVVnF1Wv){0hP2%E_;+j6Ww2cVm@)@xv(!r79m3k*a)19IDEPE9W(w_0|c# z-<>=>1Qa`C<^AG)mHqg3tsnl&a;U0(edSz()BYa8&kZMkuc$U|{qPjv``l>{PpOEV zvGRVgUWBXi{1lt_!TWQGxL%%TtQ>X<_%$^P?+XoiTe+M)x(NSyD&IXmPXn*8vkjjEzOH7S;O8u>UPK;iCMWv& z5Z?zL<1k6*2@G=h1z;G)TSJ5hf~Uy-IE~wF#7_f{_U`-T*JK~3^640Z_$~0*PPhG4 z;1y?;QhFD7`43vRZXj5xF)^4=WDGr7%w)#E#U|-sX*x`eY!RA} z%MPZ7ig`RXq8n)=1C7-6uEWv&F+FymQ-{MNPS2#!J3oCOxMe9EV`sM`YY; z^t8^wK$XrzF?zC)(}xq;Bp#TF9|WspDytU@23+EN>o9B}_ZJFOj68^=>u}zN1B3^0 zs-CWKp678kO{j&jjG5>MH1ie?a}Evz8Tk>RW^<;Y4rPn#NIo}W<);ZZVsxeGsZ8!;~v1FBD4LZw%^H5bHlY+u5cZjY~VZdi#5WDZ5 z|5(OfKDZU(nQA4TcQNw(oz&8n^N1gWkNs>A&(9bYG_ob0Co|Oo8M}WU&DR(=u^}Np z=a`PW{CU2|sIVcS+y7zU{|<9*zJ6YpFmnBTCd%FZ1o-2cg#CH`$oMU)7q1cH%>KN7 zNCAhJ%>F#jWIPEvd%`m8>9ZiK>r%Q!`bT)+GJpCkWvvYVkFZbpt1`eWYh|8?LnCR{%JXjzHSJ+pK7|JPjp z3i(x#ieqpUFTUyWkB|W)+b`z-J(oYv(;5Gr{|{aM$H{^58?FK4E)VB%_W1F4LhdhOY^;B5C75i)MJkn726`}j0F)|xxIO$_Sq>bx-R|FqKTMGBaTU(> UT3VcgSNG4hS{CbF4lYsr3mfrA1^@s6 literal 0 HcmV?d00001 diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/enum_assign_forward_ref.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/enum_assign_forward_ref.c deleted file mode 100644 index f0a9438e..00000000 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/enum_assign_forward_ref.c +++ /dev/null @@ -1,18 +0,0 @@ -#ifdef FORWARD -enum bob; - -enum bob x; - -enum bob { A }; -#endif - -#ifdef ASSIGN -enum E y; - -enum E { - A = 0x01FFFFFFFFFFFFFF, - B, - C, - D = -10, -}; -#endif diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/enum_configurable_elem.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/enum_configurable_elem.c deleted file mode 100644 index 9110a577..00000000 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/enum_configurable_elem.c +++ /dev/null @@ -1,11 +0,0 @@ -#ifdef A -#define START 1 -#else -#define START 0 -#endif -enum E {A = START, B, C, D}; - -int main() { -enum E a; -return 0; -} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/enum_assign_forward_ref.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/enum_assign_forward_ref.c new file mode 100644 index 00000000..993ed134 --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/enum_assign_forward_ref.c @@ -0,0 +1,37 @@ +#ifdef FORWARD +enum bob; + +enum bob x; + +enum bob { A }; +#endif + +#ifdef ASSIGN +enum E y; + +enum E { + B = 0x01FFFFFFFFFFFFFF, + C, + D, + E = -10, +}; +#endif + +int main() { +#ifdef FORWARD + int flag1 = sizeof(enum bob) == 4; +#else + int flag1 = 1; +#endif + +#ifdef ASSIGN + int flag2 = sizeof(enum E) == 8; +#else + int flag2 = 1; +#endif + + int flag = flag1 && flag2; + printf("%d\n", flag); + + +} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/enum_configurable_elem.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/enum_configurable_elem.c new file mode 100644 index 00000000..6a1f933a --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/enum_configurable_elem.c @@ -0,0 +1,17 @@ +#ifdef A +#define START 1 +#else +#define START 0 +#endif +enum E {B = START, C, D, E}; + +int main() { + enum E a = B; + #ifdef A + int flag = a == 1; + #else + int flag = a == 0; + #endif + printf("%d\n", flag); + return 0; +} From 1edddb6633f23e12381180fd1f72f7b1226af6b6 Mon Sep 17 00:00:00 2001 From: SlaterLatiao <41390071+SlaterLatiao@users.noreply.github.com> Date: Tue, 11 Jan 2022 20:09:41 -0600 Subject: [PATCH 02/77] updated some test cases --- .../injected/array_conditional_flex.c | 8 ++-- .../basic_declarators/injected/array_flex.c | 11 ++---- .../injected/array_init_compound.c | 12 +++--- .../injected/array_init_elem_configurable.c | 7 ++-- .../injected/array_init_length_implicity.c | 7 ++-- .../injected/configurable_array.c | 8 ++-- .../injected/configurable_pointer.c | 8 ++-- .../injected/configurable_pointer_level.c | 8 ++-- .../injected/configurable_primitive.c | 8 ++-- .../injected/declaring_list_partial_config.c | 6 +-- .../injected/scope_partial_declaration1.c | 10 ++--- .../injected/scope_partial_declaration2.c | 8 ++-- .../struct_union_enum_specifiers/a.out | Bin 16712 -> 16480 bytes .../injected/enum_assign_forward_ref.c | 10 ++--- .../injected/enum_configurable_elem.c | 7 ++-- .../injected/struct_array_typedef.c | 23 ++++++++++++ .../injected/struct_configurable1.c | 20 ++++++++++ .../injected/struct_configurable2.c | 17 +++++++++ ...truct_configurable_cross_and_forward_ref.c | 35 ++++++++++++++++++ .../{ => injected}/struct_init_configurable.c | 9 ++++- .../injected/struct_tagged.c | 19 ++++++++++ .../struct_array_typedef.c | 13 ------- .../struct_configurable1.c | 9 ----- .../struct_configurable2.c | 8 ---- ...truct_configurable_cross_and_forward_ref.c | 29 --------------- .../struct_forward.c | 23 ++++++------ .../struct_tagged.c | 9 ----- .../a.out | Bin 16744 -> 16720 bytes .../injected/typedef_configurable.c | 19 ++++++++++ .../injected/typedef_local_declaration.c | 21 +++++++++++ .../injected/typedef_struct_field.c | 21 +++++++++++ .../injected/typedef_void.c | 16 ++++++++ .../typedef_configurable.c | 8 ---- .../typedef_local_declaration.c | 12 ------ .../typedef_struct_field.c | 16 -------- .../typedef_void.c | 7 ---- .../expressions/unary_binary_ternary/a.out | Bin 0 -> 16480 bytes .../unary_binary_ternary/array_assignment.c | 9 ----- .../assignment_configurable.c | 12 ------ .../unary_binary_ternary/bitfield.c | 20 ---------- .../conditional_expression.c | 12 ------ .../increment_decrement.c | 15 +++----- .../injected/array_assignment.c | 15 ++++++++ .../injected/assignment_configurable.c | 16 ++++++++ .../unary_binary_ternary/injected/bitfield.c | 19 ++++++++++ .../injected/conditional_expression.c | 20 ++++++++++ 46 files changed, 335 insertions(+), 255 deletions(-) create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_array_typedef.c create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_configurable1.c create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_configurable2.c create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_configurable_cross_and_forward_ref.c rename fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/{ => injected}/struct_init_configurable.c (55%) create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_tagged.c delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/struct_array_typedef.c delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/struct_configurable1.c delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/struct_configurable2.c delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/struct_configurable_cross_and_forward_ref.c delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/struct_tagged.c rename fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/{basic_declarators => typedef_declarations_specifiers}/a.out (66%) create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/typedef_declarations_specifiers/injected/typedef_configurable.c create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/typedef_declarations_specifiers/injected/typedef_local_declaration.c create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/typedef_declarations_specifiers/injected/typedef_struct_field.c create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/typedef_declarations_specifiers/injected/typedef_void.c delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/typedef_declarations_specifiers/typedef_configurable.c delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/typedef_declarations_specifiers/typedef_local_declaration.c delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/typedef_declarations_specifiers/typedef_struct_field.c delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/typedef_declarations_specifiers/typedef_void.c create mode 100755 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/unary_binary_ternary/a.out delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/unary_binary_ternary/array_assignment.c delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/unary_binary_ternary/assignment_configurable.c delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/unary_binary_ternary/bitfield.c delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/unary_binary_ternary/conditional_expression.c create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/unary_binary_ternary/injected/array_assignment.c create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/unary_binary_ternary/injected/assignment_configurable.c create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/unary_binary_ternary/injected/bitfield.c create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/unary_binary_ternary/injected/conditional_expression.c diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_conditional_flex.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_conditional_flex.c index bc3f7c09..d1efda17 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_conditional_flex.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_conditional_flex.c @@ -1,6 +1,4 @@ -#include - -#ifdef A +#ifdef ENABLE_A typedef int x; #else typedef short x; @@ -8,10 +6,10 @@ typedef short x; int main() { x id[2] = {1, 2}; - #ifdef A + #ifdef ENABLE_A int flag = sizeof(id) == 8; #else int flag = sizeof(id) == 4; #endif - printf("%d\n", flag); + return flag; } diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_flex.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_flex.c index 9cb64246..0847994a 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_flex.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_flex.c @@ -1,12 +1,10 @@ -#include - -#ifdef A +#ifdef ENABLE_A #define __flexarr [] #endif int a; struct x { int x; -#ifdef A +#ifdef ENABLE_A char name __flexarr; #else char name[5]; @@ -14,11 +12,10 @@ struct x { }; int main() { - #ifdef A + #ifdef ENABLE_A int flag = sizeof(struct x) == 4; #else int flag = sizeof(struct x) == 12; #endif - printf("%d\n", flag); - return 0; + return flag; } diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_init_compound.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_init_compound.c index 35d3ae63..c38f0263 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_init_compound.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_init_compound.c @@ -1,22 +1,20 @@ -#ifdef A +#ifdef ENABLE_A const char x = 'c'; #else char x = 'd'; #endif -void foo(const char c[4]) +int foo(const char c[4]) { - #ifdef A + #ifdef ENABLE_A int flag = c[2] == 'c'; #else int flag = c[2] == 'd'; #endif - printf("%d\n", flag); - return; + return flag; } int main () { - foo((char[]){'a','b',x,'d'}); - return 0; + return foo((char[]){'a','b',x,'d'}); } diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_init_elem_configurable.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_init_elem_configurable.c index fdbc51f3..31132e49 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_init_elem_configurable.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_init_elem_configurable.c @@ -1,4 +1,4 @@ -#ifdef A +#ifdef ENABLE_A #define X 1 #else #define X 2 @@ -6,12 +6,11 @@ int main() { int a[1] = {X}; - #ifdef A + #ifdef ENABLE_A int flag = a[0] == 1; #else int flag = a[0] == 2; #endif - printf("%d\n", flag); - return 0; + return flag; } diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_init_length_implicity.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_init_length_implicity.c index a7283523..8d03304b 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_init_length_implicity.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_init_length_implicity.c @@ -1,4 +1,4 @@ -#ifdef IMPLICIT_LENGTH +#ifdef ENABLE_IMPLICIT_LENGTH int x[] = {-2, 4, 5}; #else int y[5] = {1, 2, 3, 4, 5}; @@ -6,11 +6,10 @@ int y[5] = {1, 2, 3, 4, 5}; int main () { - #ifdef IMPLICIT_LENGTH + #ifdef ENABLE_IMPLICIT_LENGTH int flag = sizeof(x) == 12; #else int flag = sizeof(y) == 20; #endif - printf("%d\n", flag); - return 0; + return flag; } diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/configurable_array.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/configurable_array.c index b916cf19..8f3b84ee 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/configurable_array.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/configurable_array.c @@ -1,16 +1,14 @@ int main() { - #ifdef A + #ifdef ENABLE_A int x[4]; #else double x[5]; #endif - #ifdef A + #ifdef ENABLE_A int flag = sizeof(x) == 16; #else int flag = sizeof(x) == 40; #endif - printf("%d\n", flag); - - return 0; + return flag; } diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/configurable_pointer.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/configurable_pointer.c index 37485d0c..8d60d5c7 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/configurable_pointer.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/configurable_pointer.c @@ -4,18 +4,16 @@ struct s { }; int main() { - #ifdef A + #ifdef ENABLE_A int *x; #else struct s *x; #endif - #ifdef A + #ifdef ENABLE_A int flag = sizeof(*x) == 4; #else int flag = sizeof(*x) == 8; #endif - printf("%d\n", flag); - - return 0; + return flag; } diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/configurable_pointer_level.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/configurable_pointer_level.c index e003f2e3..efa3b87f 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/configurable_pointer_level.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/configurable_pointer_level.c @@ -1,5 +1,5 @@ int -#ifdef A +#ifdef ENABLE_A * #else ** @@ -7,12 +7,10 @@ int c; int main() { - #ifdef A + #ifdef ENABLE_A int flag = sizeof(*c) == 4; #else int flag = sizeof(*c) == 8; #endif - printf("%d\n", flag); - - return 0; + return flag; } diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/configurable_primitive.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/configurable_primitive.c index 35dac86d..a1e52b8f 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/configurable_primitive.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/configurable_primitive.c @@ -1,5 +1,5 @@ int main() { -#ifdef A +#ifdef ENABLE_A int x; #else double x; @@ -8,12 +8,10 @@ int main() { x = 1; x++; - #ifdef A + #ifdef ENABLE_A int flag = sizeof(x) == 4; #else int flag = sizeof(x) == 8; #endif - printf("%d\n", flag); - - return 0; + return flag; } diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/declaring_list_partial_config.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/declaring_list_partial_config.c index 9ca2fe42..21636939 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/declaring_list_partial_config.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/declaring_list_partial_config.c @@ -1,4 +1,4 @@ -#ifdef A +#ifdef ENABLE_A int x = 1; #else long x = 2; @@ -6,11 +6,11 @@ long x = 2; int main() { int a, b = x; - #ifdef A + #ifdef ENABLE_A int flag = a == 0 && b == 1; #else int flag = a == 0 && b == 2; #endif - printf("%d\n", flag); + return flag; } diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/scope_partial_declaration1.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/scope_partial_declaration1.c index b585f944..7411fa8c 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/scope_partial_declaration1.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/scope_partial_declaration1.c @@ -1,4 +1,4 @@ -#ifdef A +#ifdef ENABLE_A int x; // symtab: x -> int:A, undeclared:!A #else @@ -8,20 +8,20 @@ char x; int main() { // this does not hide "int x;" declaration in all configurations -#ifdef B +#ifdef ENABLE_B double x; // symtab: x -> float:B, int:!B&&A, char:!B&&!A #endif x++; -#ifdef B +#ifdef ENABLE_B int flag = sizeof(x) == 8; #else -#ifdef A +#ifdef ENABLE_A int flag = sizeof(x) == 4; #else int flag = sizeof(x) == 1; #endif #endif - printf("%d\n", flag); + return flag; } diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/scope_partial_declaration2.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/scope_partial_declaration2.c index ea2198db..bca97e42 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/scope_partial_declaration2.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/scope_partial_declaration2.c @@ -1,4 +1,4 @@ -#ifdef A +#ifdef ENABLE_A int x; // symtab: x -> int:A, undeclared:!A #else @@ -8,16 +8,16 @@ char x; int main() { // this hides the "int x;" declaration in any configurations -#ifdef A +#ifdef ENABLE_A double x; // symtab: x -> float:A, char:!A&&!A (int:!A&&A=False, i.e., no configurations) #endif x++; -#ifdef A +#ifdef ENABLE_A int flag = sizeof(x) == 8; #else int flag = sizeof(x) == 1; #endif - printf("%d\n", flag); + return flag; } diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/a.out b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/a.out index ef64b1324c7c26f35ab853eb1dcfbd0736bb008e..75747f00ca52cffee928b0abf052554bf2865315 100755 GIT binary patch delta 2344 zcmZ`*du&rx7(eIUwydR(+ivBqZm#X(>?+W9Ti6(DyA~Yjgg`*1{2`ezfiy0RN5Pmt z#+(?JxrFV*L`)0<#z=rD8EW_gD3Ay$D*DI7S28pt#TY4wNma0Z=iYO06g|m3zwdRv z^F7Wv?S&WUC<=R} zrT+ihQQPdir@(u&|DkggdCuA z;fk!%2f%4i=?abR!MTdo!ZE4B+?!t06WY=jYK8&BbMS{D&^U{SB~mZryw9l<1zr*% zpHyJEalVI#soCV(byHSJ8IBrNIAXL~3sa=vZzvy+xEd^DO6`mTVM1;e>kc9~yyQ1W z&7a7fgq2E7*EY;4HDW8Gqtr<33_{Vp8SQTEMs_a}sS)ECgVsXEofXImZ$0)0+L9HSnoYP3s`1)CB8LM7GZCN)5&&My7_YW~`~Q==i5OsMaF!Fd9+Gyn~Ppp z1*`MLVlUz>#65^n#1)8jH;Tn0h)*G2M7)StL1BrnmQKPZpK5&PdaiL(a?mD0tA2 zjXcnhmlnVu3e%Oa4Cx)PDHL{QdB>;eW~2njCvWnHMXd27ArU*7ERnaMoD%es&@Dw#7HV=9+v+BFm7R!A=vIV0ujyG1qfPDR zagB44S@2C$p#O|!R8GW=6>GlItnSbAJ8my-zOesQBd~5hA<>aykn}(5av0?jnT`jo zBuNz&E=>LsKR@izVj}>{=BS;|qSi-L_K@E*7NA@~xhRcL`k6P$K}y^G82IO?o-|)o z>TMg_tA7`2osvq*O7Kin!wbTjUsaJfx^`shRON;FE}fRCeIsE_$P2QYYyU38YA#DH((Dl8{(`Aj6yIT zb|!q9k_gO0aGuxmH45$c$-0t=^Ph(+@qp(ilscwp#ce7ut^Yb|w4XV?_U_xk{~BZ= z-R||jjapU=v4eO?viw{m;9A@(6$pIN9+&}mKeyKW1J>r3xBvhE delta 2696 zcmZ`*4@}fm9Dnb3_rp6nxcdR;aZ=pxSPabk9UK!uIPMOlexyxGDOfc?MWZ1Q9V;uR zq&ZMo=(kO0ZOLX!SGgQpgRSzI%V@2It+kPBfy;)QTVS-2)2{FP{oXUcdfWXz-}m|c zd++;u@B6#SeRS*%I*^&yi4tmlqR&_g}`F>W=+tpv{Scr!3UFQnO2GseFNE2L~V zBSrlGmqzDlbg)|*Gn9_tp>yYFt4=HDo}2jIp7+a%4dd{-CEv|f%2Jto>oL+K!H6Y~ zhGEL$fr!;g)8M?6F8fhuNc0(|p)VNEG>BSrk~+Iu+haRmtMz3n!Gtw0SY!mkBJge5 z_&lPRLVO8N6bQbOovSqwjwL^%O3blcKGKPu;yA#t8vaRgTb(8Xk4DRA9Ljt zp9~OkGm-lag40L-aAx0no|)ggK9xu$2G|_69~;{B#L(ls8%kW+bqBE;dVh-3fY2y< zCEQP<<=lYYAKHzA-Y<7CD4mbF^~18ptngwlL^hT zlwq~VGW=!EBoeP6mLQ%&)Dc=~$t;jb44)%4sWD79iBNMGIogA0zSgu08FS=@*GOTLwZ7e?4)C$1k)idS!n@0QJ4)qjhI@ zSM%1kmd2L0mR%4pKACQQr6Q3>H`Y{EH3qeywq~ed?PjWWwX`*Booz9qwYIn76Gd%j z2Nzyy**5e=i6qf8FuE?FbnoibGR`jlm9(=0OM=$ aZFrTvz8FOu%YjDL+S^Oa*$Rk8eE$G5gvy8j diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/enum_assign_forward_ref.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/enum_assign_forward_ref.c index 993ed134..bcfb858b 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/enum_assign_forward_ref.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/enum_assign_forward_ref.c @@ -1,4 +1,4 @@ -#ifdef FORWARD +#ifdef ENABLE_FORWARD enum bob; enum bob x; @@ -6,7 +6,7 @@ enum bob x; enum bob { A }; #endif -#ifdef ASSIGN +#ifdef ENABLE_ASSIGN enum E y; enum E { @@ -18,20 +18,20 @@ enum E { #endif int main() { -#ifdef FORWARD +#ifdef ENABLE_FORWARD int flag1 = sizeof(enum bob) == 4; #else int flag1 = 1; #endif -#ifdef ASSIGN +#ifdef ENABLE_ASSIGN int flag2 = sizeof(enum E) == 8; #else int flag2 = 1; #endif int flag = flag1 && flag2; - printf("%d\n", flag); + return flag; } diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/enum_configurable_elem.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/enum_configurable_elem.c index 6a1f933a..c420e13f 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/enum_configurable_elem.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/enum_configurable_elem.c @@ -1,4 +1,4 @@ -#ifdef A +#ifdef ENABLE_A #define START 1 #else #define START 0 @@ -7,11 +7,10 @@ enum E {B = START, C, D, E}; int main() { enum E a = B; - #ifdef A + #ifdef ENABLE_A int flag = a == 1; #else int flag = a == 0; #endif - printf("%d\n", flag); - return 0; + return flag; } diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_array_typedef.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_array_typedef.c new file mode 100644 index 00000000..cd227de9 --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_array_typedef.c @@ -0,0 +1,23 @@ +typedef struct { + unsigned long int a[16]; +} Y; + +struct X { + Y b; +}; + +#ifdef ENABLE_A +typedef struct X testStruct[1]; +testStruct x; +#else +int x; +#endif + +int main() { + #ifdef ENABLE_A + int flag = sizeof(x) == 128; + #else + int flag = sizeof(x) == 4; + #endif + return flag; +} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_configurable1.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_configurable1.c new file mode 100644 index 00000000..112cb97f --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_configurable1.c @@ -0,0 +1,20 @@ +struct { + int a; +#ifdef ENABLE_A + int x; +#endif +#ifdef ENABLE_B + int y; +#endif +} a; + +int main() { + #if defined ENABLE_A && defined ENABLE_B + int flag = sizeof(a) == 12; + #elif defined ENABLE_A || defined ENABLE_B + int flag = sizeof(a) == 8; + #else + int flag = sizeof(a) == 4; + #endif + return flag; +} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_configurable2.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_configurable2.c new file mode 100644 index 00000000..445d2326 --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_configurable2.c @@ -0,0 +1,17 @@ +struct { + int a; +#ifdef ENABLE_A + int x; +#else + double x; +#endif +} a; + +int main() { + #ifdef ENABLE_A + int flag = sizeof(a) == 8; + #else + int flag = sizeof(a) == 16; + #endif + return flag; +} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_configurable_cross_and_forward_ref.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_configurable_cross_and_forward_ref.c new file mode 100644 index 00000000..1ad3dadc --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_configurable_cross_and_forward_ref.c @@ -0,0 +1,35 @@ +struct T a; +struct X b; +#ifdef ENABLE_A +struct T { + long field_t; +}; +struct X { + int field_x; +#ifdef ENABLE_B + struct T field_struct_t; +#else + char field_struct_t; +#endif +}; +#else +struct X { + int field_x; +}; +struct T { + int field_t; + struct X field_struct_x; +}; +#endif +int main() { + #ifdef ENABLE_A + #ifdef ENABLE_B + int flag = sizeof(struct X) == 16; + #else + int flag = sizeof(struct X) == 8; + #endif + #else + int flag = sizeof(struct T) == 8; + #endif + return flag; +} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/struct_init_configurable.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_init_configurable.c similarity index 55% rename from fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/struct_init_configurable.c rename to fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_init_configurable.c index 3f9cf20c..ca363263 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/struct_init_configurable.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_init_configurable.c @@ -1,6 +1,6 @@ struct x { int a; - #ifdef A + #ifdef ENABLE_A int b; #endif int c; @@ -12,5 +12,10 @@ int main(void) { // under PC !A: a = 1 and c = 2 struct x myFirstStruct = {1, 2}; - return 0; + #ifdef ENABLE_A + int flag = myFirstStruct.b == 2; + #else + int flag = myFirstStruct.c== 2; + #endif + return flag; } diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_tagged.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_tagged.c new file mode 100644 index 00000000..c81a1cee --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_tagged.c @@ -0,0 +1,19 @@ +#ifdef ENABLE_NAMESPACE +struct x { + int x; +} x; +#else +struct x { + int x; +}; +char x; +#endif + +int main() { + #ifdef ENABLE_NAMESPACE + int flag = sizeof(x) == 4; + #else + int flag = sizeof(x) == 1; + #endif + return flag; +} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/struct_array_typedef.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/struct_array_typedef.c deleted file mode 100644 index dd5f481b..00000000 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/struct_array_typedef.c +++ /dev/null @@ -1,13 +0,0 @@ -# define _SIGSET_NWORDS (1024 / (8 * sizeof (unsigned long int))) -typedef struct { - unsigned long int a[_SIGSET_NWORDS]; -} Y; - -struct X { - Y b; -}; - -#ifdef A -typedef struct X testStruct[1]; -testStruct x; -#endif diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/struct_configurable1.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/struct_configurable1.c deleted file mode 100644 index b81ffaf4..00000000 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/struct_configurable1.c +++ /dev/null @@ -1,9 +0,0 @@ -struct { - int a; -#ifdef A - int x; -#endif -#ifdef B - int y; -#endif -}; diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/struct_configurable2.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/struct_configurable2.c deleted file mode 100644 index 04a28468..00000000 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/struct_configurable2.c +++ /dev/null @@ -1,8 +0,0 @@ -struct { - int a; -#ifdef A - int x; -#else - char x; -#endif -}; diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/struct_configurable_cross_and_forward_ref.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/struct_configurable_cross_and_forward_ref.c deleted file mode 100644 index 36a44552..00000000 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/struct_configurable_cross_and_forward_ref.c +++ /dev/null @@ -1,29 +0,0 @@ -struct T bob; -#ifdef A -struct T { - int field_t; -}; -struct X { - int field_x; -#ifdef B - struct T field_struct_t; -#else - char field_struct_t; -#endif -}; -#else -struct X { - int field_x; -}; -struct T { - int field_t; - struct X field_struct_x; -}; -#endif -int main() { - #ifndef A - bob.field_struct_x; - #else - bob.field_t; - #endif -} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/struct_forward.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/struct_forward.c index 5e7b06ea..caf499c5 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/struct_forward.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/struct_forward.c @@ -1,17 +1,5 @@ #ifdef FORWARD_SCOPE -int main() { - struct s* local_var; - - struct s { - char y; - }; - return local_var->y; -} - -struct s { - int x; -}; #else struct s { int x; @@ -22,3 +10,14 @@ struct t { int p; }; #endif + +int main() { +#ifdef FORWARD_SCOPE + struct s* local_var; + + struct s { + char y; + }; +#endif + +} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/struct_tagged.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/struct_tagged.c deleted file mode 100644 index bc3ae2f2..00000000 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/struct_tagged.c +++ /dev/null @@ -1,9 +0,0 @@ -#ifdef NAMESPACE -struct x { - int x; -} x; -#else -struct x { - int x; -}; -#endif diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/a.out b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/typedef_declarations_specifiers/a.out similarity index 66% rename from fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/a.out rename to fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/typedef_declarations_specifiers/a.out index bc8373a905a883ebee788936fee8b30b992e074d..632bc76e4248455d376e09e04461dcef9168a09c 100755 GIT binary patch delta 1153 zcmZWoO=uHA6rQ))q*-lsw@IC}R@_viikLKM+90VhQDZkywfF;qLWoVH!9uOZgCIhy zD5WB)@1RHpZ-R(Yw}*OAs~)r<{v1T~BE3iv!FsFsv%cL;{2h4n&3x}?-pqS5I|MI= zptK4~qpPn;s*71e9er~^>IQq$t*0Rfim2M#Ux>rPJMUh%|LfUd=Uj90VO?6x6>BE8 zj^PPM4tC;9;XcBBgsIPl@s#i!;YY%6gb~1PY7@-kfXd-2 z4y(;@3CC5wuJp+;Diljk^u@9Gl|q9`HZls#&x8+%1ztNBsWMdA^1DRDY8O; z$fLK^W~*^>?IcAV2xJs@xr}DI=Fo5^upN9D3NDx3PMiB;82#o7vn?K!T`7Gs*bS(L zmN+Elqo5o#n(M@c%_${|gSZ zU-TA_AMVZd=IOs2Io4Cm$AN_fh3;OK3t3d7XGVH;zSR>BI zWPB29QGDfgs9+099YIMevl=Elq6;eRE>)^3;$S=~ fX{vooO@9!t5~%s66H#eTyG=Htl#D_VlgZ|vuP*iQ delta 1178 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 { - int i = 0; - } - return 0; -} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/unary_binary_ternary/conditional_expression.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/unary_binary_ternary/conditional_expression.c deleted file mode 100644 index 0f739a48..00000000 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/unary_binary_ternary/conditional_expression.c +++ /dev/null @@ -1,12 +0,0 @@ -int main() { - int a, b, c; - int result; -#ifdef COND - result = a ? b : c; -#else - if (a) - result = b; - else - result = c; -#endif -} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/unary_binary_ternary/increment_decrement.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/unary_binary_ternary/increment_decrement.c index fd33f677..05755be1 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/unary_binary_ternary/increment_decrement.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/unary_binary_ternary/increment_decrement.c @@ -1,13 +1,10 @@ int main() { int x; - if (x) { -#ifdef A - x++; -#endif - } else { -#ifdef B - x--; -#endif - } + #ifdef A + x++; + #endif + #ifdef B + x--; + #endif return 0; } diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/unary_binary_ternary/injected/array_assignment.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/unary_binary_ternary/injected/array_assignment.c new file mode 100644 index 00000000..0789d5a0 --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/unary_binary_ternary/injected/array_assignment.c @@ -0,0 +1,15 @@ +int main() +{ +#ifdef ENABLE_ASSIGN + char x[5] = "first"; +#else + char x[10]; +#endif + +#ifdef ENABLE_ASSIGN + int flag = sizeof(x) == 5; +#else + int flag = sizeof(x) == 10; +#endif + return flag; +} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/unary_binary_ternary/injected/assignment_configurable.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/unary_binary_ternary/injected/assignment_configurable.c new file mode 100644 index 00000000..03b46443 --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/unary_binary_ternary/injected/assignment_configurable.c @@ -0,0 +1,16 @@ +int main() { + int a; + + #ifdef ENABLE_A + a = 0; + #else + a = 1; + #endif + + #ifdef ENABLE_A + int flag = a == 0; + #else + int flag = a == 1; + #endif + return flag; +} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/unary_binary_ternary/injected/bitfield.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/unary_binary_ternary/injected/bitfield.c new file mode 100644 index 00000000..aa9ee99f --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/unary_binary_ternary/injected/bitfield.c @@ -0,0 +1,19 @@ +struct x +{ +#ifdef ENABLE_BITFIELD + int field: 4; +#else + long field; +#endif +}; + +int main() { + struct x a,*b; + + #ifdef ENABLE_BITFIELD + int flag = sizeof(a) == 4; + #else + int flag = sizeof(*b) == 8; + #endif + return flag; +} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/unary_binary_ternary/injected/conditional_expression.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/unary_binary_ternary/injected/conditional_expression.c new file mode 100644 index 00000000..d3c77d4a --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/unary_binary_ternary/injected/conditional_expression.c @@ -0,0 +1,20 @@ +int main() { + int a = 0, b = 1, c = 2; + int result; + #ifdef ENABLE_COND + result = a ? b : c; + #else + if (!a) + result = b; + else + result = c; + #endif + + #ifdef ENABLE_COND + int flag = result == c; + #else + int flag = result == b; + #endif + return flag; + +} From daf2de0141b268f052e8449833e5fe58e7ed2e42 Mon Sep 17 00:00:00 2001 From: SlaterLatiao <41390071+SlaterLatiao@users.noreply.github.com> Date: Thu, 3 Feb 2022 14:00:46 -0600 Subject: [PATCH 03/77] updated return values --- .../injected/array_conditional_flex.c | 5 ++--- .../basic_declarators/injected/array_flex.c | 5 ++--- .../injected/array_init_compound.c | 7 +------ .../injected/array_init_elem_configurable.c | 7 +------ .../injected/array_init_length_implicity.c | 9 ++++----- .../injected/configurable_array.c | 7 +------ .../injected/configurable_pointer.c | 7 +------ .../injected/configurable_pointer_level.c | 7 +------ .../injected/configurable_primitive.c | 7 +------ .../injected/declaring_list_partial_config.c | 7 +------ .../injected/scope_partial_declaration1.c | 19 +++---------------- .../injected/scope_partial_declaration2.c | 15 +++------------ 12 files changed, 21 insertions(+), 81 deletions(-) diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_conditional_flex.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_conditional_flex.c index d1efda17..50e08973 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_conditional_flex.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_conditional_flex.c @@ -7,9 +7,8 @@ typedef short x; int main() { x id[2] = {1, 2}; #ifdef ENABLE_A - int flag = sizeof(id) == 8; + return sizeof(id); #else - int flag = sizeof(id) == 4; + return sizeof(id); #endif - return flag; } diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_flex.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_flex.c index 0847994a..e60dc9b8 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_flex.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_flex.c @@ -13,9 +13,8 @@ struct x { int main() { #ifdef ENABLE_A - int flag = sizeof(struct x) == 4; + return sizeof(struct x); #else - int flag = sizeof(struct x) == 12; + return sizeof(struct x); #endif - return flag; } diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_init_compound.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_init_compound.c index c38f0263..2735ef6e 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_init_compound.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_init_compound.c @@ -6,12 +6,7 @@ char x = 'd'; int foo(const char c[4]) { - #ifdef ENABLE_A - int flag = c[2] == 'c'; - #else - int flag = c[2] == 'd'; - #endif - return flag; + return c[2]; } int main () diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_init_elem_configurable.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_init_elem_configurable.c index 31132e49..a54f6f86 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_init_elem_configurable.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_init_elem_configurable.c @@ -6,11 +6,6 @@ int main() { int a[1] = {X}; - #ifdef ENABLE_A - int flag = a[0] == 1; - #else - int flag = a[0] == 2; - #endif - return flag; + return a[0]; } diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_init_length_implicity.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_init_length_implicity.c index 8d03304b..ca3087a1 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_init_length_implicity.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_init_length_implicity.c @@ -1,4 +1,4 @@ -#ifdef ENABLE_IMPLICIT_LENGTH +#ifdef ENABLE_A int x[] = {-2, 4, 5}; #else int y[5] = {1, 2, 3, 4, 5}; @@ -6,10 +6,9 @@ int y[5] = {1, 2, 3, 4, 5}; int main () { - #ifdef ENABLE_IMPLICIT_LENGTH - int flag = sizeof(x) == 12; + #ifdef ENABLE_A + return sizeof(x); #else - int flag = sizeof(y) == 20; + return sizeof(y); #endif - return flag; } diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/configurable_array.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/configurable_array.c index 8f3b84ee..b33d235f 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/configurable_array.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/configurable_array.c @@ -5,10 +5,5 @@ int main() { double x[5]; #endif - #ifdef ENABLE_A - int flag = sizeof(x) == 16; - #else - int flag = sizeof(x) == 40; - #endif - return flag; + return sizeof(x); } diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/configurable_pointer.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/configurable_pointer.c index 8d60d5c7..3b33b8da 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/configurable_pointer.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/configurable_pointer.c @@ -10,10 +10,5 @@ int main() { struct s *x; #endif - #ifdef ENABLE_A - int flag = sizeof(*x) == 4; - #else - int flag = sizeof(*x) == 8; - #endif - return flag; + return sizeof(*x); } diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/configurable_pointer_level.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/configurable_pointer_level.c index efa3b87f..d059e9f1 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/configurable_pointer_level.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/configurable_pointer_level.c @@ -7,10 +7,5 @@ int c; int main() { - #ifdef ENABLE_A - int flag = sizeof(*c) == 4; - #else - int flag = sizeof(*c) == 8; - #endif - return flag; + return sizeof(*c); } diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/configurable_primitive.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/configurable_primitive.c index a1e52b8f..901f6aef 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/configurable_primitive.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/configurable_primitive.c @@ -8,10 +8,5 @@ int main() { x = 1; x++; - #ifdef ENABLE_A - int flag = sizeof(x) == 4; - #else - int flag = sizeof(x) == 8; - #endif - return flag; + return sizeof(x); } diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/declaring_list_partial_config.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/declaring_list_partial_config.c index 21636939..a85064e7 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/declaring_list_partial_config.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/declaring_list_partial_config.c @@ -6,11 +6,6 @@ long x = 2; int main() { int a, b = x; - #ifdef ENABLE_A - int flag = a == 0 && b == 1; - #else - int flag = a == 0 && b == 2; - #endif - return flag; + return a + b; } diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/scope_partial_declaration1.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/scope_partial_declaration1.c index 7411fa8c..d888ca41 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/scope_partial_declaration1.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/scope_partial_declaration1.c @@ -1,27 +1,14 @@ #ifdef ENABLE_A int x; -// symtab: x -> int:A, undeclared:!A #else char x; -// symtab: x -> int:A, char:!A #endif int main() { - // this does not hide "int x;" declaration in all configurations -#ifdef ENABLE_B + #ifdef ENABLE_B double x; -// symtab: x -> float:B, int:!B&&A, char:!B&&!A -#endif + #endif x++; -#ifdef ENABLE_B - int flag = sizeof(x) == 8; -#else -#ifdef ENABLE_A - int flag = sizeof(x) == 4; -#else - int flag = sizeof(x) == 1; -#endif -#endif - return flag; + return sizeof(x); } diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/scope_partial_declaration2.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/scope_partial_declaration2.c index bca97e42..e768de93 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/scope_partial_declaration2.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/scope_partial_declaration2.c @@ -1,23 +1,14 @@ #ifdef ENABLE_A int x; -// symtab: x -> int:A, undeclared:!A #else char x; -// symtab: x -> int:A, char:!A #endif int main() { -// this hides the "int x;" declaration in any configurations -#ifdef ENABLE_A + #ifdef ENABLE_A double x; -// symtab: x -> float:A, char:!A&&!A (int:!A&&A=False, i.e., no configurations) -#endif + #endif x++; -#ifdef ENABLE_A - int flag = sizeof(x) == 8; -#else - int flag = sizeof(x) == 1; -#endif - return flag; + return sizeof(x); } From f1ed96f3e5082e43bfd83865c28d1232308dba30 Mon Sep 17 00:00:00 2001 From: pattersonz Date: Thu, 3 Feb 2022 16:06:40 -0600 Subject: [PATCH 04/77] updated git ignore --- .gitignore | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index a1742cb2..e9fa7a55 100644 --- a/.gitignore +++ b/.gitignore @@ -7,4 +7,6 @@ allTests.out *.pyc /fonda/cpp_testsuite/desugarer/masterTypeCheck/binary /fonda/cpp_testsuite/desugarer/masterTypeCheck/unary -/fonda/cpp_testsuite/desugarer/masterTypeCheck/other \ No newline at end of file +/fonda/cpp_testsuite/desugarer/masterTypeCheck/other +/fonda/cpp_testsuite/desugarer/microbenchmark/*.desugared.c +/fonda/cpp_testsuite/desugarer/microbenchmark/*.desugaredCondHeader.c \ No newline at end of file From 43277292df6926c9ba8ecc3333c2565baa834f5c Mon Sep 17 00:00:00 2001 From: pattersonz Date: Thu, 3 Feb 2022 16:07:16 -0600 Subject: [PATCH 05/77] updated git ignore --- .gitignore | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index e9fa7a55..4cf288ec 100644 --- a/.gitignore +++ b/.gitignore @@ -8,5 +8,5 @@ allTests.out /fonda/cpp_testsuite/desugarer/masterTypeCheck/binary /fonda/cpp_testsuite/desugarer/masterTypeCheck/unary /fonda/cpp_testsuite/desugarer/masterTypeCheck/other -/fonda/cpp_testsuite/desugarer/microbenchmark/*.desugared.c -/fonda/cpp_testsuite/desugarer/microbenchmark/*.desugaredCondHeader.c \ No newline at end of file +fonda/cpp_testsuite/desugarer/microbenchmark/*.desugared.c +fonda/cpp_testsuite/desugarer/microbenchmark/*.desugaredCondHeader.c \ No newline at end of file From 349c4a9e381712083492cb30929fa1a3439c2401 Mon Sep 17 00:00:00 2001 From: pattersonz Date: Thu, 3 Feb 2022 16:10:00 -0600 Subject: [PATCH 06/77] added scripts for executing desugared output --- .../desugarer/microbenchmark/autorunner.py | 178 ++++++++++++++++++ .../desugarer/microbenchmark/condHeader.c | 3 + .../desugarer/microbenchmark/condHeader.h.gch | Bin 0 -> 1696208 bytes .../microbenchmark/functionsHeader.c | 17 ++ .../microbenchmark/functionsHeader.h.gch | Bin 0 -> 2308016 bytes .../identifier_and_function_call/a.out | Bin 8880 -> 0 bytes .../asm.c.desugared.c | 3 - .../assembly_identifier.c.desugared.c | 3 - .../identifier_and_function_call/defs.c | 32 ++-- .../func_call_param.c.desugared.c | 91 --------- .../funcptr_call_param.c.desugared.c | 95 ---------- .../implicit_param.c.desugared.c | 79 -------- .../negative_sizeof.c.desugared.c | 61 ------ .../offsetof_sizeof.c.desugared.c | 3 - .../sizeof_configurable_struct.c.desugared.c | 78 -------- .../type_def_void.c.desugared.c | 10 - .../typedef_struct_field.c.desugared.c | 63 ------- .../typeof_configurable.c.desugared.c | 3 - .../typeof_union_field.c.desugared.c | 58 ------ .../language_features/function_definitions/K | 1 + 20 files changed, 216 insertions(+), 562 deletions(-) create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/autorunner.py create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/condHeader.c create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/condHeader.h.gch create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/functionsHeader.c create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/functionsHeader.h.gch delete mode 100755 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/a.out delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/asm.c.desugared.c delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/assembly_identifier.c.desugared.c delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/func_call_param.c.desugared.c delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/funcptr_call_param.c.desugared.c delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/implicit_param.c.desugared.c delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/negative_sizeof.c.desugared.c delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/offsetof_sizeof.c.desugared.c delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/sizeof_configurable_struct.c.desugared.c delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/type_def_void.c.desugared.c delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/typedef_struct_field.c.desugared.c delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/typeof_configurable.c.desugared.c delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/typeof_union_field.c.desugared.c create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/autorunner.py b/fonda/cpp_testsuite/desugarer/microbenchmark/autorunner.py new file mode 100644 index 00000000..3b889c6f --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/autorunner.py @@ -0,0 +1,178 @@ +import os +import sys +import re +import threading + +CONDHEADERSTR = 'CondHeader.c' + +def getFileList(loc): + fs = [] + dirList = [loc] + while dirList: + curDir = dirList.pop(0) + for dirFiles in os.listdir(curDir): + realFile = os.path.abspath(curDir + '/' + dirFiles) + if os.path.exists(realFile) and os.path.isdir(realFile): + dirList.append(realFile) + elif (realFile.endswith('.c') and not realFile.endswith('desugared.c')) and realFile not in fs: + fs.append(realFile) + return fs + +def getMacroList(f): + ms = [] + o = open(f,'r') + for l in o: + if "ifdef" in l: + words = (re.sub(' +', ' ', l)).split(' ') + for w in words: + if 'ifdef' in w: + conf = words[words.index(w)+1] + conf = conf.strip('\n') + if conf not in ms: + ms.append(conf) + o.close() + return ms + +def hasInclude(f): + o = open(f,'r') + bad = False; + for l in o: + if '#' in l and 'include' in l: + bad = True + o.close() + return bad + +def runBase(f,ms): + sz = len(ms) + res = [] + for i in range(0,2**sz): + defs = '' + for m in ms: + if int(i/(2**ms.index(m)))%2 == 1: + defs += ' -D ' + m + '=1 ' + else: + defs += ' -U ' + m + ' ' + executeCmd = ' '.join(['gcc',defs,f]) + result = os.popen(executeCmd) + if 'error:' in result.read(): + res.append('-99') + else: + result = os.popen('./a.out; echo $?') + resStr = result.read().strip('\n') + if '\n' in resStr: + resStr = resStr.split('\n')[1] + res.append(resStr) + return res + +def getExprList(f): + fi = open(f,'r') + res = [] + for l in fi: + if '__static_condition_renaming("__static_condition_default_' in l: + words = l.split('"') + n = {} + n['var'] = words[1] + n['cond'] = words[3] + res.append(n) + fi.close() + return res + +def writeHeader(defs,name,el): + fiName = name + CONDHEADERSTR + os.system('rm ' + fiName) + head = open(fiName,'w') + head.write('#include \n') + for e in el: + head.write('const bool ') + head.write(e['var']) + head.write(' = ') + c = e['cond'] + for d in defs.keys(): + c = c.replace('defined ' + d + ')', '1)' if defs[d] else '0)') + head.write(c) + head.write(';\n') + +def runDesug(f,ms,el): + sz = len(ms) + res = [] + for i in range(0,2**sz): + defs = {} + for m in ms: + if int(i/(2**ms.index(m)))%2 == 1: + defs[m] = True + else: + defs[m] = False + writeHeader(defs,f[:len(f)-2],el) + executeCmd = ' '.join(['gcc','functionsHeader.c', f[:len(f)-2] + CONDHEADERSTR,f]) + result = os.popen(executeCmd) + if 'error:' in result.read(): + res.append('-100') + else: + result = os.popen('./a.out; echo $?') + resStr = result.read().strip('\n') + if '\n' in resStr: + resStr = resStr.split('\n')[1] + res.append(resStr) + return res + +def comp(expect,reality,ms,f): + size = len(expect) + matches = 0 + fails = [] + for i in range(0,size): + if expect[i] == reality[i]: + matches = matches + 1 + else: + fail = '' + for m in ms: + if int(i/(2**ms.index(m)))%2 == 1: + fail = fail + ' ' + m + fails.append(fail + '::'+expect[i]+'/'+reality[i]) + if len(fails) == 0: + return f + ' :: match' + return f + ' :: ' + str(matches) + '/' + str(size) + '\n\t' + str(expect) + '/' + str(reality) + '\n\t' + str(fails) + +def printRes(s): + for a in s: + if ':: match' in a: + print(a) + for a in s: + if ':: match' not in a: + print(a) + + +def runFiles(fileList,results): + for f in fileList: + absFile = os.path.abspath(f) + hasInc = hasInclude(absFile) + if hasInc: + continue + #get list of macros + macros = getMacroList(absFile) + #run each variant of macros -> store results + baseRes = runBase(absFile,macros) + #desugar file + os.system('rm ' + absFile[:len(absFile)-2]+".desugared.c") + cmd = " ".join(["nohup", "java", "superc.SugarC", "-make-main", "-showActions", absFile, ">", absFile[:len(absFile)-2]+".desugared.c", "2>", absFile[:len(absFile)-2]+".Log"]) + os.system(cmd) + if not os.path.exists(absFile[:len(absFile)-2]+".desugared.c"): + results.append(f + " :: did not desug") + continue + #get static condition expressions + expressionList = getExprList(absFile[:len(absFile)-2]+".desugared.c") + #run each variant of macros -> store results + desugRes = runDesug(absFile[:len(absFile)-2]+".desugared.c",macros,expressionList) + #compare results + results.append(comp(baseRes,desugRes,macros,f)) + + +def main(): + #get list of files + fileList = getFileList("/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases") + #for each file... + results = [] + runFiles(fileList,results) + printRes(results) + +if __name__ == '__main__': + main() diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/condHeader.c b/fonda/cpp_testsuite/desugarer/microbenchmark/condHeader.c new file mode 100644 index 00000000..98fcb8a9 --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/condHeader.c @@ -0,0 +1,3 @@ +#include +const bool __static_condition_default_3 = (1); +const bool __static_condition_default_4 = !(1); diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/condHeader.h.gch b/fonda/cpp_testsuite/desugarer/microbenchmark/condHeader.h.gch new file mode 100644 index 0000000000000000000000000000000000000000..ecc15cb5d6ed97682926295019e0fdd5556c817a GIT binary patch literal 1696208 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

FsH2>(-rZJsq7rm2cfu$r-asW&S(b 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

Y#HfpK)ln{dMwxV*XPYzA;y< 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

p761Y zev6(n+aI+*uJ!B|>X|>zET4nBMC;k{vA%AE<6s+%m+B~=hYR&Yc^nGs4}9!D^_#}Z zCy%?hzURZ|{T?UOGj*b=XJWT#J(EX9mrtIeP5nzBr>%S*q4e}T_w&6wlA5!;mbUPr z=Md>R?3wE+upKPwyGze<*dOVqth?tG2hK3{%%-FDY@Hmfr)@lM)ALAS`9%FrhV=(N z^ch&cwth2P-%H_m=}2MuWIapa`7t=ziuA0bzE2kFiTd5WtByB(@MRC3HT8WUtnbGQ z_2l~A@_*6g(^cQ=Z9k8yQ_rp+*48tgtxr!Ir)^w!wBnS^(_&oLv!mvOkGSV8oUU=5 zt6l2&gYGwv7RH_X&G?U_uI~rRc||gypR)d zPKP?e2WRh5wK-?DT|)lt!t3w+{ABi#A8aD8>nVJ;7$@`fI6m*d?=}^3rhaCY$G*Kx zANj#%o6NacgPhC_KG;4Xr}X*Wn+rL6e{SkGO!|TkwmrOV4xcUJE`4tH77cPTH*;i! zoYM94-xG3{e_`s`PCj#{!|N2B4j+0-pZ~dKgPhEb{lj((IeGrvR^PW0a`x

d8L% zV2j~(3ixcHr<5}#oa{4azk}1iU&B-5 z&+NVC@!RGZwo#mtbr(r`o$*0(;t4HKVaRUd?KH&XLLTLFx`KyhQHtT=XJVGPuqOR8FkJxbcF9g;&v%_eC_gS zn`c;S!iF{VEU&&{O+CGdD!qoDYpC=<&$B{3LwkL4!8XvBp5N6+l+SXIuF6xZ)(5s_KU)o{zTvb;cz`Ad~mkpn!{%dt>1pFUN7ycbEAy+`oT-y*>uKY}`4Nw|ZRPXlN>9nU z^xnfYAL7hD(qW6wM$gaN^t820=Tf_b{jkNjqws6Z3m@BMPpPe^Z5#qUx!tho`3s?* z6a@29C=7o=4w4YX6Pg{QkJ>$PKkKd+eMyO}*D9Vp~@WOUF^yKw* zgW+-ZPt)^fg?r3-v@4XJ>g;Ho|Gbl^=UF9>)|{!i^*9ASxY%}`URz&m2R%D4qT{#B zd+#IEb1>w@e%MDk?1)28J<9exZr^Ni|81b>ck2KLjxmo9`|a*F(}zP{@jctYFQeNf z=$XF6%-6>GOQD_#;%A>Zho6t;#5@=uzpcJsAgu4KGyBZx@}XzyGMS$H3iZq$Yv#v3 za}B)^ttU8#mom?DY;nJk$|vs+{>W11`AF+=CO5W&E!-2$X&Z;w;+|D{O3pjbPvX5w z@WBo;*PH|Jw(Kd;j5r{`)vyN);YV;{V*<*RG2uf_L)o^YzHE$)XYJtgNy zJpaLd-lC^%J_O}cIu7}>Kfxw=K0`5_ufd_Sk9649V_nxfbmTeiHa#z*dQ=GSE5rU^ zGbfsH=X!iS5~z$D8fE7v9gu+rjUi z+F1Ft>3O73Pn^G}EYJV!y191ww4J}#J5J8)c3wPAhF&~QPTy^Ey2i=2@@YGNpRDwh zT;Jq*MD{C>o18cv+q@#mXUAz~duJ=3mkP@#kBjrCn)!nZwsl%#<gW2~zF$)H zE%kiHhZ{rB-YKST$ZPlvGo5v)_xWJx-#K5Kp35tcYCXZl7W}Ob>G3ao-cIT(UFv$z z$Otkz|R#Y1&yfr-kxxaor>OR-xL0)+N zcPqE2-b7yfsJ9k6JFM&57sTc73J4hmYOoo5X2*9$-T4 zDDABk)IML&gys3({Qfld+b?O3p0>EJtT?OV4t>}Ton`9G{$P_hZE;^k0aeGH`QYcy zHaXev>T8akwz#jVKyu#Nqj3ip+vGVWC;Q%|&Ed4^xtao!=s8H7?Dy5liFTgb4IAg` z0q5eQ^__Ku&+Qfa*iLG}$@S63nN%4|+IemV*q8EQJ8<%N+r~Lb$cgt6l>eaHdHC3G zz1G&w+uEfy)D9BfI-~tj(bCRm&o}E4`vbpkPCc^K_jMF!&TAX3@4c6sJkY7N*Gy-B zVX8H_%gY`(-AFUUFv^(n&U)N@t`fbY@84J z-E~9g$2LLtO%&*QG;izOFlif90&vbNDMg|8seRdU}>} zY&%X)M}6mVZmUOYs|+OV64x*GnZxBH?mS*<56@4N+nMVGHV87@Y_#9B<vc-MFU)F~7 zeSH(x6oy7c#AQ%+Ic=7Vc&odIEXvX1K8@(CPAL=denY}SsvLhJ=R#G#y$0jS&z!Z%@THvm(?Raf3el0_FxC@ezWIFQ&0AX8>~kzJ&U29Jq_yFc9qFp zub%$<;Bx#UKh3fZa8vbN+-r4SKN=z~_G|1iGD$j~uk5VL&kaI7N2p!O<)ig1{xG_H z271P3JQSOrn+1BV;M6mDwaLZ)jC+huk?PqU)5m+OP|qUun}fv7RGCGh+j(%h>QOnY zM`sH;xn1hM#?+TNUG0(|cdw4PZ=p7id+xX=t~I&XXHJ(d)ieH@9xt8Kpq>N7&0G>a zbNnOa+t#ssPkqll>aIj7)-_uJKYOtVg#A^~^7Bj+a`mH@O+A$5D@L z?UGH;EdxDQbn00mF7}zzxO7O3j#fB9g9uRtpYvW<+J5R zlZ*XY`;1D1p04(@Ev)b73-wH&XzE!c?irZ&aQBe<_%p7EPZ?isKIdgf;Mk>}a2A8oC+O?b;W=V=SX#eR)lMkYbe8P>zl__J?r zU4Ett_3VDm)UWdorq58Nb98^l>F{msr%lgo)DIKhN=`k!n~95k00=Ggsb`)nSICP?00Y$&v)xt>yT`EZX4+7E}!XJOiuP|?K3J3db--r!LYtxDAaT4Q?vaX zA#P^sd8o1W)28Qkfu8R2nZMQ4lYQoN`BFVcLOp-ipq?GKncU3f(i5DndQ=MQ(Y-=W zu16IIr=%X`YMgi2=E1(Ngh;8D$)A_<*IBVH@cV8z^@|48{ZJ$F#wrM&S@J%@>l{TjQBOoE=ScBwZ!FTO;mXRc!E*?UK{ zp2>$BYnN<#b_9C5%V+zYCKvmW;??+4s%Q3f-LLgEsArkD8AYOJj(?bn+i z73Xg*&?yho6d8;|= z`w(%m9|=|COB<){I>L`t9yxD<^ZHTl9#c>DYoJ6X`JA;rHqM`@jdS6hlt&d~OS=LJ6xGK-DIz4Kv{2m2Z%PWG`MY~MB|`Z|q&UxEJ_ zT-Ds4t$hAMZ7aFX)jiG3kNse$HU7i>B(T^7cTMo|vYyy}@8FN`^h7$_L{W3LKdk4& z;PZCyUB`jzhWxyAo1Ph!akZYMe`pSV{w$t%8&7Fo_~5G7N;z{&=>BLQ;>7;=dA`iW z&l4_O8(kieFKoT#b6*Q5@`G)?&n%zpV>`Aem;KwD>u2IYOUPT>uXF9MHm$y2yX$_F z2RW69lgm}|tlD}Gg!3CCp+$a(JLhXFp9iQPR+mrY!xsGI&-8sg@Oe9_kNVEz&q}C! z{QIW<2L>6(oc(*t1E$XGGoPzm*!m-$4?(`0t3M>yH;cr{KJt@V=*jmj+VuQYkg;3O z%!8($>@%NBPw6-r`Tjci!@aID{*cMZKJt@V=qc@w4hk}^qd)qG=H>pVmD*2ff5e=& z`hJMwl+pT%m^Nw!aBC@%smVT-RSR<2#x|n2!4xXP5`Rrgr-|`g{5V z?Wafkv*~%L`n^O?=4YQUobHlp4MjblY`8J>9C@U+o@u0q$KNbHNAnFiYaB{zC<2*{p+4s1qGy5(s{vMqC96TH6(L&DD z6PmO1te&@n&-<79;N<7<*f_g|oWmh!@;*KOgfHdd?QHWQHqPw>PWL=*?~`WS*=G)y zZySHw=IeG+8A|5s+MhBx*>`dA_W`GBm-u7j+*xhd;;rtSS1c1J`@BDwAH=-|r)^$w zSCwJHo9I06=ov8eWZ%Wb-`nDDLa6wH4L#a`TC}f^Ee?V zKc|I#=5YBq-<)9_OY1|B&+)+@-<@xEeq~slWIPS-j>9AS=fP~8IU#53bd!_) zMmhPuT^r{GLe3I#vd^6D=SHs!LOtT~yp8h|A!pa1sVDo)DXm95PPTELD&%Z=(d1;m zQBG;xPZM$$iIe?CIr% zAWrrh<>dQJZJa$q&dyg%J=t%RlkeZOah@sU^j!zOUH_FNLU^dS4 zg`6EjCMWyMIqX>Pjd2K{Z`wF}g`5@QWS==(gySV?zj>jMv+s|lp6oN{V7Lx})8Ru; zX}|e9A!q7OCMWyYKWvXsPien-k&ttkIN1juY(dB=?KdwLa`wJq>d8L%V26a9(th(2 zA!qxaO-}Z~2b(-kcHSZFk1iE*mWh*n@WBr4AmilcBiY)e-wQc={$lFMKKNj}g?jRH zhisge2|3&TYI3p@0pzJ zgAcZ|$(%O{Ig7-}KKNk!o6PwKA!p`&Q&0B62RrECv|WF@qXYR=AU z!snfYKJ&p({IJ~27j2OsQkll8ny$XOvy_Q40+et}F+>3s6tLe9Rw zn|iVjKG;l?Iqwm2ram<}*#{qNPm?*P3OR>~lYQ{P7KEJA`T1!=&fbctC;Q-o?b$iH ze71xe^8FpQ`yziCY%jkL1sr@I3esU+_n}}MBGt1PWb7U(=fg&eE#2*R8ev%j9IAInzQ;={lDCiIevSe~38Q$9AxJ zA*Xcw`9P4dyL{&UZR*KB_+STwoYMKF2Zfx;&rDAC!3SFra!SkR!$QtM;$$CuuwB2C z)pzNmVVfN>^<I_pS~^bhpQb`zn9H+ ze;(f#$n~_|_ZwmyB3)j0k#e&~*S|F>rOWFPy7?YuHN?)B<psYTrRzHeK7e>TY29rt|94N>3|`^zP(xfo^$~zLZMuJ6PufTUP1wsja)-oj1rIHo5H0 zv5oxnH+8*-O)VGZ^S<7`FSO88dS3jT4=Z?oTxFc8C;LG*RsZE2dd|>(hUL3|nr%O^kdTxGg;p2O@srzczD{N`HPVZe# z+vL$^JB9tjcAXy0iMUJeKYAg^*j0lFKl|=)S#ZMFZf`k zdP?s{7z{FY>)A7(8E5vv2b;b+TF>%u?RMV#K&PWUM?1fYO0RC`N9NbFX*OwC}JVsPv8e^y9*IKD3FCqT6}tcvT{^G$QUK!CGr54t&pwU^HtW!{-tp(nO3!-6^Jtg3J;~l* zyZ>>G=cRhSEY!1mK~qomp(AYhn&|qzfWM)t)EF<|ceeARTZDRId{SCO^V-TW_UE$o zmd{s$4Bh2(fa(|f%vExfPw2_@(Wd9Eb?RAc(RxB(=9Bu+vvVzT++{oO_^VLQ)-c}S zU?1tQWykwBp{KNb-sbC>Sll^Yf{x&5R{8AQH(U=DW^B{5G`GKjyL=X}3iDf1$GvM& zv;Ko0cJRgM^Ekv^I!=Bq$k@%<5|&GFu#a@u>~*qsNm`F?Z!qr7sz*{iUl;0`S@FYu~9jCG|bM zlo|KVB}^auu!F_uxPw#LE*bv4a|*_F-~-Rhaw6`$PQVuTaic)|-Yt&#ulgJ?a$DP33jzK}Dw zqNyMI%$fRcbh`x3-YK&BJ}l%+u4Hnu&z#vEWqL~M(SWd>A0$rpnX~<6nVx;8%k=y} zsAqS=)RTSY>}qn{KNNB%RyH}=XU<+Br!?+QHyHQA)n>aFU&lO;YZ1m>I$runsAqN+ zQ&09;&-R^U^+-BD{}-X2{nwiMwOZ~60B_}`#f|kONQXs##P`lC1Mn z_Aj+)Kc#y9J;>PIA9bx}#+`lUYx_plE=kwhd@AH@nP76V&zy0`I0Sl1>w87WStL&O znX})aC(37Qk6G?*@!zt7g@U` z9oPL+$XOsx_L(#BZFB3Q~Gx!8LB?cn43Dax$WO_>b_b-H;>9C%Ihkc~Owx^>x>us0b@!KWA{L;vEW;@rcc1c>_zZUA5 zU(+m~>_bP`j)kMgA*1c*X0q}8e}tSJYnhzvgAaBf79IC`IsYr~lYQ{P7RSlrE}f?h z7ElY;3G}XO>d8L%VB>SiIHmKSF@Is8fU~{LI9r7CwBv-FW#VKXe6T%l z$m)@Fz0F)g&Yty5J=q5zZ2RppJ*Ddz<`HtXt#5L&4?fs}kW<=zz9wuxhlrDX@Qqr> z`8)a}>3z`i3iZrwVCu>KC|~%;$g#5WDIJH*C*(|SXmYa8oE>vFw|p)jY$TvN>UqC#9SiutGuC=O&>-i`>WT4^wBLMCaZ1iRI=^Suqe2*e z=*zZnpKSh9%K1=(oXpLfLqbmJc>ZA_=M3wSw>0%-&W=^0`_0Aa2knD;y^gKEzZh^X zK6*ba{e0BzCoc9!Hw^z64EM|F@cDkO_Rpg^UkW)FQW-?uSDxO=)Q^4aAGYg7b3GH% zVe7sBeGm1+oHxmR|2uJxkdOUKEysP}xp(LIo_QAwTAL`iJaMq*Lwq~5!2d~uDtLKw->e;uA=4Czeb?O;# z24i&d$ZX~FDIq83EqadB*C*g(FYOQ3j(aA24ohZ{n6VC{Ue19!IeWL$dNSu=ot#|X zyB^ZVS)3X^XJ#w&ITBARPIbelv)?RlZtuOQs>QRlj+v-uL`k|yh z>iNFO$v*ZkwWvpftD4ujY~}MAVcgqxFge+`@s-Bw_+_^=@%n9IJkVaKCR1%E$+_+oZsEwk^F(F8}^^;(CLHW_wez3+ec>kEQI^T z_iS+<$NAXe{=6{m%+Ee^xcqwce1Y_|<e)$=*e!KK!&g{SS@3UdMRH1fhx-Os2 zcBy+uvple0_@^27?q^MIK7Nerr0;Q9TsXg!*vaH%pE*Vx^GmE}e!4!co>0$rdS1|= zP|pG4WIy+rsb^a_K4*UT&{O(+#U+J$W_LFAWFPy7?Q4x5C)e8_{ZwTvc|KU{E+!}Y z;FDVDDZPHQv{26yak9^R!wx;sAH~-+`^}c^biY;F-t52j3w985_D5a2ntHO&oUZ4o zLQmvS} zhFPHEg%6LNb0XL8Qq z6KF-qDUJK;Le75TWS=m-)OcC>l-|#k6mq72Wa`O2a~6f1(&yKm6YRjfZf%4(*=Np@ z@O|ad_k^w?)HDBMQ&0Apvu*k2#JzH=&gZY={5`n!|t^e=_LsbAlorq7&%S=qWE>H3hhNzdVrYVSYQX{NJ31E)|= z*Y&vcDf)QJLOn}Io1DYM&78yA%jyx&``NA|tV??G{^0li#N=cj+rf6MAmenE&*V}% zpT~rH^8GRGKQ+0*2P?f_MtVQOdO|(R#Kk`NV26cz^87i+J$0tm^KU{uTdy|t>)Ffn z!3WzlSr&I``P@LLXWP$AF809(+p}VGIOAvOd_EBBnOeiVzBfeN;DhbnL&lk0#5^zN zxFf%fgnH(FZtBTC@`KIKzl3pp1L?3h-*m;j9G1`F2K7w-!sN#OVWoQVythryO@w+5 z5*Pd6gH5g^i@R%_T*&KuJ`w7fKgraudvDVRA8bWfKBenJHWlib$e3L0gAX<@)YH`; z_5M}s`Mgxmn8`Un+~9+CJtrUasAnTtecxQDXLcWxlYQ{Pb|soqK6BUVd_I%vN#(Qk zmnJv(V5Q|#+J1gdsAq||*ashM=gKlYrSsl>LB{U$qpp2T{n!T|Z2COex;0ll>cVrz z=JIoPbGB@3_M0vHncU!m&HhBDr!?+c3FBTQF809(+b@i}tDP@}&pRCv)}v&bsb^;Y zXgz!Pl<6sL=eHK>89%_}VjnufCLHSkZP#UN*I|F8GM2nQu0WjZgHLMF&b#7{{I(J5 z*?FL;C;P|`HtW!{Ue0ZWoL-m7IfDY^s=hlYQ{P_6s>(^ESxu=R(fZ zAtopL$Pc!2O_`q3>v8)CIfsdpeel6nj*zvV((7^i3ORd!W9rF1_+a~vl5t9}$L%lV zY(LcGWFLI6mG@d8L%V6&UcIHl(uhX^^_ z4l_B~2On(v7R}{6RLD6*oa}=Sc1Xx6ov%Ag$eBCb)RTSi!47;+rl<5e!r?;BHHL(bL>wXP$?&7AG;$n=z6M>t=oC$AG=pE+IEVQu$!*z~MuJ)QS=bmYvqv(KDu z>zL)4zeo9$j^}?X)U!gI>@!EaGrGRldw=m8N>9oC?^wUn9^StTAAH3>)-I2>`=FsG z=VM!MbD>br)G21%*#|FdZn5Zb2-o+nzv<(&-3R?oVSOJCIg8=-ZTR4t!M)# z6SgmTYG=SHeLlncic`{W4)&OOvJWn{cs@fRW!~S4xJ%omtAugyKGWo6pZVJNj*dIG zOWl9f<=fV8eh}0n_wz%%&CGhleu~aBTHZA46(0xml-8rGg?bL0W$MX3bM$W*Jr1e2 ze10S>pV_lbPWG7-KFViu>)Pehb>7j_uIDS}60Te0br!AXnB3rkm9D#xj_1D&GIr0~ zl!%Lc@WBo_-ZxQi`Fu~v*>$d|AN$~g9TdKgPg;+z5!R!Y^Gr_m!3SH(M7K-z>Uph@ zvq+rmgAX>daddsRofq52bt6Ihxw!MZICH+KC;Q-oEwod6i!VY8J*EB8^+G-4y(TC7 zgy9Wr60K)EP=WgXxBB<(+v*;KlMu?Mr@WHli zD{Gge_2_1yp84OIda@5b*tP?s_2lwd`B0Y=Tf5}V=jZI659zo_b0&7sI>86m3^pSx zpHe+<73x_DIl;p|(qT(o(R$Wfj}{B`bdT%$E;i%NKKNi$YsfgIdfqP7Gj)l{$v*gC z)4!H+O4q5*E!1e<_8>d8L%VB-hN^mN@Ph5Y6f>RI}M*&eoE zYH}k#*u+E`r&Q0ognE{Vi+%9HmJX3|y7bH>bw2S1_3Zh5bM$m^c2Clr3kW%fA2j3M zc3CuMZo%kr9okRncz&8N?nA`IKH?4An~jb;o~w!ZztP`?&o%82Ez%cKdP?T&2F}y- ziLJlTy5=sA))V>LY`uEkE7UW2g~`P}^9&y@)N^;UJlW1S7xDEJyw`G&INLhS{F&3` zLr>{A`STz{cmLjfrKu1o?fHgD?8KL0L#q%7{z@zS$GPJSK>`^+hQ9*b1Z=Y^aldTtE+ z%-JKnFH(A6k9yp?`ncznI8 zZF-&=#C^x_^t{pJ!T#gdo9XOhJE?`9uIn<$?`2^$9;V0H#si0e)DV-)LF z`kwAL?uL^&BBi_L*~_TgEBX^L(M6`I}5V*=NrDN6qE@t5DC5 zKbV~CGiTSavUW+TXIaQuAx`$0GbeoCE{_vz*AadzjC`2WCHdE(=^xhh+ zr}RD)*Ym782KDj&UC7z;wHf#J+oCy(!uw^U_2?pD+{?tpKF2-&i7f72zcr7a%jfXl zbv~a8^(>N}J-0{eSr+O!c&C{UbK>}~5bD`hF!N&{`N3v|&kK^C7cVWGryU|r_Q40+ zG9YW0r1zCyD%3M~hp8v~;Daqq5Y8vxP5CabufO+&7WuUa^-NMZVjuazCN7HB6X$V! zUThoBU#9e&OO5CkQ9Fow?-iGK_Q5B$^{xY4Q8@42eU}*@_HBGv2iQsLX)#WA^+(8e z31PdGpmM}M@`LSgyk7?Aaa@mVaZd>K93W2i!6&uQljoPX{ml02a=wbN9wja_=i{^Y znB{=^a_2|aBXGLxuO?GnCJ1y8Z0B-&}vYLBJXF{Bj-DE_F>aIoSsvtm}PzQazF1h7Ib;`XWDAm!9C1 z&d;wd`U0KL#0K?@-)C}z z57wn8zvr&-sb25Y6R!X3q;-HB>w5IvdjlV+z5fDnv7cUJS>yTW1N%g;vqFEwakuqH z-&35D>#&{ooBS;onCA=7QEI`-$7|!<+~@QbcaE35Q0Mf6A+JSuDJROO^!m}V!g|zC zTNZ5XIedlo<@>@yB+3~Q+$v*OfO$y&5Cap&+3pp#q$v*gCyM>(6 zxUVYY>?@givJXDk0U@V!o?)VpGxdnc$v*gCyM*sMlU_HRB;*_>PWHhE8<)PP=@PSF zv(=-ugq*#PntHMiKG>X))1_z66y0CEJLyj!FGq|-SF9B93s80y}mH+xhGBi*k_J*;rpaq?R>FM*Y~X&)HC^%$<3TnJzboA z;r#g?LeAV9CfA^YvwvFjI2mzwwVycty@Z_nzR2zYlNc>9#V27Gi-}}Pr z&f7MqXX~>jH~3&(dg6SO=fP~}@7pO($vi`exKdA;;|K6bt+c-Pgzr21SXhtvxn*6? zMeFH$ju|*z^{C};UCzHRjC-oztnV$)M{~AcCaXu%`+7DO)}tbEvCr{NoG%;KN!$5- zgnIJ(pEEB+>*?Jm)6>O?_ZROi^aCMhfw$p54tnb`!b`D1C*{psueUIkcu|Yk(7o$0)dh+!n+j()ju)g;b7yBI7ZsB_vUG*pv zj=K&P>dEKD>6fDQ9B5K~Pu;KM{;LK#N5+V=G{5FNLdePOQvT&=J*DlE>%PcT`2Nl3 zg!MfiGr2lmF?}wd()Vw=%4d9Gt>^wiJ-I)sI5?&Kk!u`+<3C!+$S8su#I)7WqhKc)3tO}MVI>rC@JZpgt|o-C{HE0N7xbJ{JcxgkudHFp`PupnDxE2Y;uDScI4;Hsqg8hbv|neIr;hMB?qVL zdFd#hu5sOP_#W^th3zN52fXX8Xg#Ix0e8i{JJfUS2K8)tJDO9fr|Wz(f3uGJLPAb{ zPkqtBDSc19EA9h-*7K-43px2Yx|w&P^^`tG*A@3l822_IC%H9Z(H!!b9 z*yh3Z7jhPei+!|5u$8xD^WH8!y~lO=TvEsxr}0wfyU}_M9u?hw;(i%k4`zGr!9j|1 zocHtZo_hd6$aV~x?Y#G1G$;Lh1{dw8OV8FP^zpU|_2lQ8^gB4E&pAm8*DqZY9I1QV zMf!bHKlWL$uJdKT|8jE{9$ns8Cp|*k$PYH#|Nre>37Atww!V!l%_24k z7;p=YLIWUvTe{D74&7nkR8OrDjib)M7)KVWT#uYrC+;MXnlV^zO?3e$@R;ZM4rt9LI5gzxYIEUUGiYd2V16 zg5J5s=|`w`BC{Vw2~TRHK46uaKftC4J#BfZMb$H@K%TWf6MYF0E>GLK461#M$+L~{ zqBiOSMpp9t&W+ELneiD}tLsN?@B@bb$~zBc(=)tE?(gFT>RI!P&KvxIl}tUk=Ra>I zJbeyX*H8_&5?<5>KVZW`p5M9ikW-j`Z(OJAM{V!}wlw7SJMui;UsIkB3q3jGCe@kR z;KxO7UP67h5Wl0GVv58AwdwY8rr+s$oN0a2&-8n^OpjY?Q=b0wbNijEXZa%eT&r6P z)U&#S&YSY&>dEczGnqU?o9Vog7M?9%GW+{J`h3ac_of1QQr=Y0)-8B`=RTL?FUZt2UZOXImA|6lf^H|0(c_s)?YEz!A)y4JuSSHV4CtXi!Q=Z{eae3A=c~*ATc~YD5 ztYRK-a{K!kOr9--C$%Zh=sr9>xz~T5&Ey&AqU%X*%CqT<;_^I~$Y~fJi_)JnLL{bPimt+U@bF$a{b=GnVxyr4^%JY$3>wZRWqq%|!14i3;Jh}boGA7URo;puzgCDTz zM;=e^__}tnH=iNo~qA_HuD~PGItEBRr|S0nej& z@yXRQ#N-+2t?Nl`$}`lHr>E__H|q5do_x1Dn#^JrR$MeI!5F;MHu<(-xmLJyHJ~Og)oZ z>H1L{^#T39-1#%#_`Hm%C*m=s`VZ_3ugCL?&wTxUIg=;+T&;A44W4ZVo;JTHzR>+- zI-mRu)9?O;`goM+uh$R0z-X`H`uz%~p73+XBl*Dwukg$Q{GLbtyfROo!2#KMRyO6w z6Zz9y!COaomg#rzwz{8Nw$^Rv3QVf;4mL$oe{WI0Ka?WBL-aSHr`PG_^bi&0`aKj} zUsf|-?muj_A2;afsPQO9+J&AzG7mHLqga7@QhmV}SZqD7%2Ut4Hqzfz&$=hF$EQtC zPj6m)KF8EEzP%og4cqB9bObi`E^b~5=GosXRsW%RsnwvTZNAjZ?C;MPs3+AIIs%KW z=hb=Y=~4ctdWN3N9-k&X^UX`+^6W>=Dv#2B6#qFpPg_5-T_4i4rHu0znSM`^=aj|< z=I%$q!Hjuw9^>XUdHTKHEBR5s*R9R2r^)Zg^R{`iZDr;`IBq;sPs}%~)O-#$nh5=pT~FKmllsLpZr+fN5&L!ibvx?%Q5$@L{$qLPmu!AV zeeW>+UcIx<)7gpGs8C`2@Z$RYTH^PrZT0KE&^-Lyq~a1bKKHIG%RCHT z*N@t$4_H&l$V=F`9h&B!6PS4(anv?W&Tn9&iCRZLenNRj%{wDx{)uzqbi6S2_l2F^ z8hhL4$%A!0Bg6(TVB-*ddz1s|@3Q&U$ha}_yiVvTcy_SO=W8luyUj;PJz=9=iYbG> z*baG~8=rHS@!6_)q8)0Z9O&uG>+dbU(dWq~Jwv3wqaBLWkJP5y!^ZE!(%<=op4>ct z6En~IhU)P~ZSVpHj^pKdtKWypyfL>xzo!Uq@B`ZXj{Z*bhRN^O%YJ0-@8My(p40|E zpe-)ocgoW=zQ4=Vla8Cz20viM5xM(OzIkb4o_Ps8XkH4I>3QCkmv9|*^h^DFCcnQY z^yFMe-F%bGA5Diz|A%(b;{g1*i1VM^y!4eAk2pN5cGY=N+r$rfDYC!5?ggIodnP?6 zG4m(pM^QDOgN=4P9d!R?$_?vBrsGW$&l{LLk&pd5NL^urPm_VC?f8hh{vKxLdHVc1 zYJ)G3`}{gvo^RMk=8Xl+yj1gn?$?$oJzl{N*z#Yw^HRQkzcEk02Y1Wv_nOW0{QzH^ z-?@4IRi>VFJUpIo8NgV1?+(x9j9ybV{+<^uJk`ohn^ z+I@4!XK!q%F!G6<&xdBoJX`&Yo^MyDk2}iN|IRY`KFqei>Bphe4*#SdZ&rV*+o%Uf zdDi}0Zg2AY2Wg(Ytj8Vk5i%aD$4kDj(JsZ5YL}M7#(ar;Kf+GT{8_)J-fyUl_JJPe z?}Xa&C+fSM$&)@;liH{cXnU?E^?UtN>Gzn5&#K?)@%b$?K2ziL_@s6vJx{wVzxecg zkUKt;%=q;0E&ZODAo;?EeiWNjyR;lO;?s5=3$|}$`n|kbk56i&z6|!sotH4L?8f|ov8YgvLT=UXODK>PsK+D-s%fDE-oLYpARwh_mt%6xPHjBUK}O7s13fr zmXMwwP!2>t;$E*9VfLfi-|GE{+Grn`I3@S_5bF2lAEf>bDu1?;{JDbZ_cp~ddZp9} zHh57?Bn$JqiRVhD-y{3#dQzM6Y?zeW@A>AXbHw$ZoV--CpU#uolqYQDrTQ22yoC6) z%|Dwv$n#*6nAfSc-m4#1v=ZLnl|fa1#wKs_)$?Yio{b}QJ*iD-WK8JUx^-cCHq4WH zp3Ky<`Vw7F-|uwZ8Di>9&1SjBO|IWj?q%|24@_3`;*;z5D3fPsl+Kgd;0J8&nEN@;`R1jy!tb0sUv+@aliJ`%5qZf!O7BuNo|U6@zf+s?XgfXkybe5V<2&lDV4h!UoUH5FLU^M-V3_&bLT-FM&eSt-kgg}S z!4DWZBe$M3K3i4Xn2zH%OY3Przf^OFt|zs1iH#jl2)}dnY+~x!e6X%3wFwQ! zcUEpa!ISpZDVc~<_F*N<%R ziF&tW`aMQ?QXBOF%ZKIWiTM(?2b$)|H#66{u&CEAf1sm&{DgAb^@?1-&tm$$ zT&=sKeQKi|=s6*GeCB(dz(V17pSQQuQ#6q4JXrE!JwA(aoj_V6?3qN$?y|%w(pU0W5|D@M1Io)M^o7Q2wr}bRF4qH{1 zJ?g5~Q9r|nM=VNp}iXBqOoiE{Qi&!4V2O6QIGfW9LO>qjQP-s+SeqxYHpD0!T&XZTp%raG1%mAfCo?=(J5e!qh` z9?|Q|sNK*-k2A`f+UQ60`ZtrF9~7u3)tB<9vgm1wPm`XLnR;S8kE;0xZ15{D&#tFw ze23rZcwyqXIkUfGoNBpOo)>`)p7~N`tQ?b_r%6xrBkVUK)YOkYV)i5G96wp|G{rI6vtc?uvmD2nc;3a-6Ztr>yW|NQ zd?JRtWV%ijdS?2ks>sAMnWvr=e#sO1f@i*%ubxx#)YGf_8P&78YxcZk(=&3eJ`XYJ zxrM7|0p}Tl_vq)r^VJi6=k}wInLOcd@cEzaM|bDx_lA?Q_oJ2q{m$)2pA@L)|8zgP zCr>@=Psy%leYgDj5$2!V`TVCsPuA}&|3&gceER>a+b9Rt9G!bUpYJ^6UZ$RyceJQ^ z6KwEmydb}E6MEA8W}440El|%UqA&OY8;Y#weR=9xuJ~=Br#e3bo)+H#F&_GeBPg@o^_{6epJt@9=a}|Ytxfnzh%<%>jL%MKwl7J zV!rc`2vbk=%b1!k!3M2ngPyi|NXNsC@M<&Y ziO(rQPa5YYJ@;Xrr}dqo>q%|O!{g1p4hx<(zekRhepz0i-&2G)gv zH7YJ)gJ0E!`OQOcKLWj<3-wW4k=C=!I&M~1@%27^mLr{>zfVNWp6)t zt}OS2B*I2LwG{*88DjB+3vOR-*(STb*dBV)^$t^>U&Yk3@~=97YNLH%Quzxu#SG7w zK3}3dV>9Gaiw);21ldkVjo~ZXl=C~PX(DkG?>f<7Ka<8j=iOJJ@ zp3alnTz=RNJh|~Xo5{18@T4}{2bO=4d%ZYco-Z?bHk_~PNp0{0R$Ne=`4Z}jGkJP0 z(0NiD^#QAyJn8sr>PK^!JmZ8XwZRWqIX?IE*7D8sGi08(&X;Ijr*>V1%Iljb&(CG* zS#go>cWOgNpx@&6eD#bHJ!AjS`Ji3sSAU`W95z00-Nbs%W9sR@Sm#e|@CAnQ)U#O~ z515WO|DM*<{`|V~OC-;lDLe5;?g z;pR{OBz^x)`SV9+{%lqG9XzRxaxPLmgMDQFOsM1$=LVgY#pHuYo&0Y_-%Qrq3FyqtrH{CzfM*G0Z3vbj|I^P+ zdEPTw?oW#B*V^>>UY5!8RpWHsP=8YKG}$Nz+Vsv>&nNQK6FjJ%fvxoTwCRcYC*6Nj z{``d*pHydRgFhGH_m)}ud9aYWpS+ITSN>#LPy6|KuR5<5|3TIZ8@wt!x}Je&_4ctH z5c!jP9;}&}KZDokaZ7Eq4{ZKY@82i~_Q4w_KAqOn$@HU&i8>!tgY#9jbEHnN@wu%rg`!|n0mI1*ZEVM@@dXgVX!m29#!Kx^L!ohJUxyx_4nt~ zJng?T5?AX+;6-he1G#yg8=wDT#%KNYdVi-j_yLp5_^c%P&J>?7FyoVsZ>I48JZ+fo zJo!Z?&lnk}sBPkfd9s&07uOV@%@H}?HY!BDFUfwC88=PGk@WbL+Ncj`+mC$n=NruU zEWbgIPili7u;t?1`7>XhZ!&o{5uVfrKVZWpJf7TnNDGr^-Hp1Q)CNCbyvRJ?V)Aru z(s^!RgP_7tfTyP|f420H=TQ$~KEKX;t3LmUQr?7T+qb#r$%s#y?@Z%SEmP0hn{_>@ zO=vnTFY@%{UbnW0$+L~{q&DRlxRl3}+mDW7@{ELaJ*iE3#$V#`RDg2}Vy7M&-x zDbEN~PkP;&DLxl7dA1Us)TTTu1HAPPuHQdo@@%|S*OS_mXZdBt<@phlr|&kMC$%Zh z@MXOCOia|zM^L|4y(#zi3ntH|lwMzo@TNT5?&9&Z#b@Ak$#WT#r}ulEXZUtqU&_&4g$59l3e>m^^Lcrsp;3m#xz0Kkdgyi6;H{E@|OewSeb$ z8&CMj!{iy7tm{W@)Ca8HwKzOOH^_SW7s#{fPMtUS0l7T6`EwU0&jjH`ZSVuu-Ci6$ zQQtO9p20?4KWd{spywtY&*rD~xTpCub%(5HcP7uuC-wR&@6vgLAJD7nhfNX3o6%kL zd>2vI(Ke9ZDcC;Ev&?bNOXYe#SPS7rZOS9?l)hi|bL3C%b!&-q1@^oYn4;@PZOS8Y z5YO+n@d)(}WcuBEx6YH=s1F#tna7ixKhNZjM}%iHvB3{mv!b{>-(g;#-29?`9M^D< zt}pljYv1D?$8nF3eq2>UzcrZ}0;)M0xXM z{~Wzunm0r?Wzz*HAmMtFEW_mg4e!oy&6wng2}79iL51J-PGwB}|@C!i(C}@1A#fd7kU{ zx0pN|chU8%RqLFTAMEP4a`Vi09d@bU$+@o_>#yLkvFotl8Gl}nd((Q{GA7T+bUhyH zU(o9Ze=Z__a{c}u)9;Brbida;r1Pfy5*ELMC%x~Rjz|7JavnRogWH0A+-zK@^K7;7 zY-z|HpIn|!U&(VWlV|y0ooC~W+}7edFl9_b@0j;(ceAc+Pz*EGWDz&qQ{fT?;oZcu#cOSkL!M>HszW4iI+cZdA?$ltfw#2?-e`gd8vi) zraa3ZD{enp&h&e8ldflArfyT7jqmaLkxkFm%cP$D3e?j}cvGIm)^kOHdQyEU&p1<0 zYhKz<>e-#CXXH#hJ{z9M?f3efc=5?SZ}SCH&-$lyUY;j)o9Y=_$cs;#p4BSP_b5=$ zxP>QIPwx4;l?Cca^`&|?G4-_dcV~u-&;Cq3+s@GAv*PL8evjgj(*=S}_2)sws4@nwN}Qhhhz$<))<-^+bc&n=jG(s^AI zi37@$JFkoGr2EA*U;2uvXEdhQSNE)LQ=Z`jFFtMa&x%!Y-Q*|caYy-VeV*tL-jt`! z#_%>(Z{36^Ez+n1gtxpHy&~0^Xmfjr22v%u%$?PHk}~#+@2Yq z^!TWi!~ysLx$}8?{@j#5e_`s`_@eG-YJ(pzegm%`S;wPGWIgMc@mbMB=jnS%x4{n> z_>LE!wtj^A)-m-=5nj|reZXM%+`k8nykz4Uj!Hef1;%H1c5Xdw@rmoKxc3)-o7R(m ze{n+HcTVpw_Ab!xcQ4j`XF(O8WlTM5&eHQ|@@0#jgL20w?&m_B08Qs8-gUgZWSiI3sq1pLWnOPn zdzp#$@}HHTbx5qKpx&!)|J;}Q2d z)mxe4yLZ0Mi`v+4V6ZNCKZ4(F<7WI6>G$23ey^+4`+GCt4Sv8D<~*4`f6z3qD`)yW zxKh`%VS#RgAF#3~&+j%pJ&#E}cVX%oDbw}zyqcS5-4Dgd^ND5|KSP*#z9FLXj9Ylt zTAp`-_~iEYpVIl$zJ65Stm{W@_!}7O#`C*veD}_je%YPr_rx0gd`N}i`J3Pwxh=Qf zv968hDBydh`O?qKaTCW|m8+z#w4b6KF2e7$9#el`%k(=vZu7sU#{uQXJ&v=*r}tIa zj|MXPQT4kzukwHDHs#rNQgQNp^CPmJ&6zyu^SzraJh{*J4iDGk-sJZ&OrCZB()FV@ z)syRY?se(kF?l+#>pVBG3DLw?yz^kT`1Gm!_;zRV3^nL^K1z8Lo(;d{#V7Z9=~I~V zrP?=iJ*iD-I`t>=cyi-&EK|=m!jsyRr|%P<-+fE;;{a1X`iaT2a;aWlD`OhkGMR~Es!VWO?gH?&E1c>%3u4SUvo^)`~9on z>2-!WJ;XQM_zb_3U8fY$lg5AfWc_^I1_Vd}=5@4Q)4Z-h@Z_8aqx`8&Xjn~dKSD+K zGV?s0FHsxy0lD)fdOxfwf1b&V&m@`GQ5*b#+xqBAq|ADZj>(bLaVd^}LYiS+PXtgZ81P_uuk!*!VnOgr2tX-8WzEZ+~Wd z#;5B2vPH##iC?HbcR#{isC2wA#pgvt&t|0;Z67+Kd}HG?U!E5eo(=D3_dDgev3|$6 ziGGRwH|cqa;K>;`DSwmhXwQb=N%!BxGf*H;%G<_^evW>`9gi**JURDC#Xr#F!9#4y zqp`^2(Pahlq`WE5l!Yh!PWz+D@0TF0{YExc*?tN1G@XpUq zVEWzvpx%$#2yeyXCo~He=@x$kcPwu#R1Jm!dQJrV2L3i+oFVF4we0ko)3m3-%kvRkPv7S{?+icnrj^N)<~I}1TbVplkLo;A7M{M9#ntn6CeP&K zI?r$_x1KR3&(I3J9+RH;FnLyy=W13j*XyT#uNcI;o*~A(Z?}=jGf8++oARvrGPmE6 z=jr%v%AZpN&&@;z?I{|{wSLq>p07y#MS0rn;GiL8eXeqx`o7!UKdT)^RC#$nSq_{p z%4tLzwhDq_g`i`|p{i*68bo)NVaZU+;*I(QUVt_Algl zTz7)cO#P^9f!Bl4>%-6v&~`l-#&_=ZHr)izLY@~yuaf~kE<#UQk4ew&Og#f%>UpR| zT_0rP6=7aq$Mt)U0(ny2ly57OCs)tSnLL}n()IKboAQip!OQbpJ$n|&lkzTt5=Jh}b7Pk}rs zZ_2aD!jo=avP%k-6euZBQlO+jNr93AB?U?floa^iQy@Gq_i=`m*%6)6=QFL_b+K>f zp14fL?kP(q?nz(esMon}oojnv*+{F7?FXjM5$i2UzVVIa`g6 ze2*~mZGCei$K8SNV@_+Dk^>%6^@d{cHFX?>U5w{xGl5uYLWzHH_j znY)pE|77=bn(qnB?dIQB<}4F`8@y!v216UkcUODAPdDA!zFnH+{5u6-@wdTC@@?AK zd^X(9Bi;1z_U+s?q+~$kvqp118~swO%>8?N&AO|0oEZT(?BB#=WeWwqB5;wy zgu=xN|E=(Sg&!#VP~j4V6XwLq+`n7r%D?0*u`>5>0~t#NB?U?floTi_P*R|zKuLj; z0vn}3XlHrHS9Cjxjl*yUm|ksSs4VxY&ub0a;afZJG{SNJl7r-*GkApK{tZ=sPVW!O zrdN(|yb65^g9;-G{X<4L?q5*-p?;vXopDLojzXWppu&j4jcv#Oe7_Fv{sa|96eblq zFUZer?YQ@!yRYPlPWt$BQz6=ERqbplL_002olS+-IGFstj01%}g+YZ8g*N|K+c`?b zwL+i5pu&j4jc#YbM{<7@`V&j z#_o^*q`oqbDvT&hDs)bkpKo+KFR6AEMieF$IZUNFFsaaaNq%nAO^!aL|0M-V3X~KmDNs_Nq`?0t1vX(4_OX$9=J~2Z&sf1Pi&d|{LiA?)uVEbw1NLhmv5+d@WJcK zTz}%evZ3m}vPimoy-tDt@_x5hMY&tQCne(nn4B)_fv$nsTc_h=vxi)s>+6YrCV2%# zxvO{jF~9U-`X7|;^PwX6sQ<1HHDwt zZ@Je;K<`YsTAxntAa$-9T+*ATu)dY6x2tLT8XonLt9Rt~8KR%A&x^h;7pA+yJW;;4 z$TRMD+m&RV@6pQ;ibem+o$^xFe1v`{@!@DECU-w5hxY>~NPXM;-+FMY)?dqG!qa zfk9P{@hWt*%pVa|9#edP?ylu}iTF;3cE%6t`Yhy;NM$L$bLnUL%#CkX)AVh~Y9p0T z(t2mg)%9h_Bf()My-k|tDtGmEHSN-FqxO1deve6AZ&uQ|olph5b@g^N?b`0U?e)(1 zL0ylCJW?^V6yNP6W50Fvb~Vk!v3T$5-KoRS?8iIl@+`+Yn+?r=ywh=L`gkYynmi5x z9w5ry@eIc~z_=)P$0v+K_3C>)I=S0#IRB1xcI#iiedc&am5YzGS4xz-?WWF=^KYQH zT=LX57RD%1UMmpuavbkOM7hh8zT$@Rq$)Sfzk56|Jgqm5Aw(qDpLRZJZ zaaQxW6=^;Esyy_Poc{oWZn>yD+Dn!Lr-^bmKH!J8uRQ7g<2`y#djGH=XlH*>zFWKP zk8G32z1NCz*AJBec{~mDA2UbfLUFu%hin)4h$wgagJ(avJE}O-a*x=a z@`;P`y+t|rSL`JFe^S*WC>7-u{7ZJdBdQ!a1LJPFXc;;KKNaQK^!A^s?>F?mT9jwg zd%h^orgvmacD=t4<*wfKKgjty&_7mh7kW<><=OOhPS^GJidmbRZ@r>CTYo52{NS$h z^!Qfi6C$b{Is@Zwxo8Y=0R27@l?=_;_)jM#I+#cv3uD6@fTa;(jd&E2~zC9|wy`sFBdgFLL<1cbOe|XQ*{3N4I z9&gYpysB7Wv^WIW7YI zqTHS5AnyRjiSlfGlA_$r185idq^x&#K8J~NmybvB0XltTJ>sLHyb#|RKdAc$kwh_F53zmXR5@P)`WDN2P=8cZ=#GbeQJ#&Df3ke8E7r5|eAl2V$Mal) z4~TMYe=m~HWp(ZxlCB@^;<>K-i}K9{Pdv{R7!l>|&r<|(oxpwkxjWCqx*gEl^^r7BtVaS*6XovlGS(4+zHTm0ao&QgC)SH{xBghU zJYNM2c9-?XmdUsUMpSvdDhImz+5S(M89Os~bqm$2{oG4LwfoifFV|itYLMmW|CvoT z*jO~=mWe;vQf5n8W0|vVeMwpRCAM{o+7olTmRlzN(p#@nwp)iP7xkpS=5CVS#{Epb zGG^yLe(IdM$1aY4?59r0;k!8F6&`T9w37@XGn}I9DlL254c2audr)C+NWPC z(SMo5>nBM3!;kB(a@%uXE-t-JmIp%;7l<Ozp+oWz`Fqj-shH7W6W_P_e?3n? zhhIxS-c&rH!>^?uZz`V9;s1KvZfbteVN=E1uccn-u&Lth*HSNZh}6h&^FI}#Lrl#d z{!{PerHnDk)G>prk-afsz6x1xgB(6euZBQecxP@UysKrdxN%nJLzQ@SL^} zMVb5BR{U)x{@m-!+%+dGHM;9tnZ-i!{@3=3iW`I`iUsnrEga__L4H^9*HgS7B5)tI zGwyHKxoha|YmC@gA(7**F`p>bz}?T>b-vyT1vq=S|JuDeshbxs9re!4)#v;&Yuqb! zBkMkXa1A!;;R-5Vqc1x6)a|;wzT@Jle;8l!$xX-0Qped|34BT8g5cHBetiZGye3dT z<;EI(?o~eqH|fRww(oW9?_U`E?EUXwaNZ5m@cGW}f}VKAcRp&Xjw7G_(~+G%cFE7|@Rq!!c z>Nxu=eZJ~A<-=5moezCs@y_cQbgwMq# z@#)ta{yQcO>b})>*StTx%j$&(w&L^Clzw|JjIF)x#Uq~|-G8rPSB!h`0epV0dUJmC zmvH0uHHW_T`GPec&7b=$KEFtH#;d+R=c}DMtz2>5&(ELLZPsnG@Oe<}{|i@)9W?p* zI}hzN?YsSU7}3WK(ex|i2CR6!dFQsVo&!Jl<*>e^M)q^29w|#j{Hr&IJpJ*xs|TL6 zZ07qk;Qac;?Y( zbRPYWE@$HN`_-E#k8gV4H{;ni=C0f2iX)$2bs#>Eh<@b0z8@c4`SatwX1p~0p{C%7 zIX}r#$N9U8pNl3Rx$fNY*De0%;qPwNZ^fcV@%iKGP1h;GzWWY+chalhels=n&vSOf z=Wx{Rr#0NwJ@D1OFP}c*!ehQXdOkjXO8IX~|C7sK=vTjT;=Y#-D4W*DO?m0p(+ZCl zx0dg)@2CU97p+~=E3)JyRqQ;ouY7k$V(P^+UpYJ2|H}7fKKZ-3i}87^zkIj0?%nhM zbmqw4_5AvSYybW2Wmn_#=av7?KOl9+hrbBK3}K$=Zf!F9eVraW15FPa8SQx M4et!V=k4*o0YcFLNB{r; literal 0 HcmV?d00001 diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/a.out b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/a.out deleted file mode 100755 index 3d6f168273718c5408ffd84a27bdecc6622e04d7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 8880 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 Zjen_&DgBD #include -void __static_parse_error(char *msg) -{ - printf("%s\n",msg); +#include +#include +void __static_parse_error(char *msg) { + printf("parse error: %s\n", msg); + exit(-99); } -void __static_type_error(char *msg) -{ - printf("%s\n",msg); +void __static_type_error(char *msg) { + printf("type error: %s\n", msg); + exit(-99); } -void __static_renaming(char *renaming, char *original) -{ +void __static_renaming(char *renaming, char *original) { + printf("renaming: %s -> %s\n", original, renaming); } -void __static_condition_renaming(char *expression, char *renaming) -{ + +void __static_condition_renaming(char *expression, char *renaming) { + printf("condition renaming: %s -> %s\n", expression, renaming); } -const bool __static_condition_default_34=false; -const bool __static_condition_default_35=false; -const bool __static_condition_default_36=false; -const bool __static_condition_default_37=true; +const bool __static_condition_default_4 = (0); +const bool __static_condition_default_5 = !(0); +const bool __static_condition_default_10 = (0); +const bool __static_condition_default_11 = !(0); diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/func_call_param.c.desugared.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/func_call_param.c.desugared.c deleted file mode 100644 index ebf0de54..00000000 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/func_call_param.c.desugared.c +++ /dev/null @@ -1,91 +0,0 @@ -#include - -extern void __static_parse_error(char *msg); -extern void __static_type_error(char *msg); -extern void __static_renaming(char *renaming, char *original); -extern void __static_condition_renaming(char *expression, char *renaming); - -void __static_initializer_default(); - -extern const bool __static_condition_default_8; -extern const bool __static_condition_default_5; -extern const bool __static_condition_default_4; -extern const bool __static_condition_default_9; -void __static_initializer_default() { -__static_renaming("__foo_1", "foo"); -__static_renaming("__foo_3", "foo"); -__static_renaming("__z_6", "z"); -__static_renaming("__main_7", "main"); - -__static_condition_renaming("__static_condition_default_4", "(defined HAS_PARAM)"); -__static_condition_renaming("__static_condition_default_5", "!(defined HAS_PARAM)"); -__static_condition_renaming("__static_condition_default_8", "(defined HAS_PARAM)"); -__static_condition_renaming("__static_condition_default_9", "!(defined HAS_PARAM)"); - -}; - -int (__foo_1) (int __a_0);// L2 -int (__foo_3) ();// L8 -int (__foo_1) (int __a_2) { - -{ -if (__static_condition_default_4) { - -{ -{ - - - -return __a_2 ;// L5 -} -} - - -} - -}} -int (__foo_3) () { - -{ -if (__static_condition_default_5) { - -{ -{ - - - -return 1 ;// L11 -} -} - - -} - -}} -int (__main_7) () { - -{ -{ - - - -int __z_6;// L16 - -if (__static_condition_default_8) { - __z_6 = __foo_1 (10) ; // L18 -} -if (__static_condition_default_9) { - __z_6 = __foo_3 ( ) ; // L20 -} -return __z_6 ;// L22 -} -} - - -} - - -int main() -{ - return __main_7(); -} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/funcptr_call_param.c.desugared.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/funcptr_call_param.c.desugared.c deleted file mode 100644 index ee2b5d5f..00000000 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/funcptr_call_param.c.desugared.c +++ /dev/null @@ -1,95 +0,0 @@ -#include - -extern void __static_parse_error(char *msg); -extern void __static_type_error(char *msg); -extern void __static_renaming(char *renaming, char *original); -extern void __static_condition_renaming(char *expression, char *renaming); - -void __static_initializer_default(); - -extern const bool __static_condition_default_5; -extern const bool __static_condition_default_4; -extern const bool __static_condition_default_11; -extern const bool __static_condition_default_10; -void __static_initializer_default() { -__static_renaming("__foo_1", "foo"); -__static_renaming("__foo_3", "foo"); -__static_renaming("__z_6", "z"); -__static_renaming("__ptr_7", "ptr"); -__static_renaming("__ptr_8", "ptr"); -__static_renaming("__main_9", "main"); - -__static_condition_renaming("__static_condition_default_4", "(defined HAS_PARAM)"); -__static_condition_renaming("__static_condition_default_5", "!(defined HAS_PARAM)"); -__static_condition_renaming("__static_condition_default_10", "(defined HAS_PARAM)"); -__static_condition_renaming("__static_condition_default_11", "!(defined HAS_PARAM)"); - -}; - -int (__foo_1) (int __a_0);// L2 -int (__foo_3) ();// L8 -int (__foo_1) (int __a_2) { - -{ -if (__static_condition_default_4) { - -{ -{ - - - -return __a_2 ;// L5 -} -} - - -} - -}} -int (__foo_3) () { - -{ -if (__static_condition_default_5) { - -{ -{ - - - -return 1 ;// L11 -} -} - - -} - -}} -int (__main_9) () { - -{ -{ - - - -int __z_6;// L16 - -int (* (__ptr_7)) (int )= __foo_1 ;// L18 - -int (* (__ptr_8)) ()= __foo_3 ;// L21 - -if (__static_condition_default_10) { - __z_6 = __ptr_7 (10) ; // L19 -} -if (__static_condition_default_11) { - __z_6 = __ptr_8 ( ) ; // L22 -} -return __z_6 ;// L24 -} -} - - -} - -int main () { - return __main_9(); -} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/implicit_param.c.desugared.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/implicit_param.c.desugared.c deleted file mode 100644 index 19810cc9..00000000 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/implicit_param.c.desugared.c +++ /dev/null @@ -1,79 +0,0 @@ -SuperC, v. 2.4.0, (C) 2009-2012 New York University -Portions Copyright (c) 1989, 1990 James A. Roskind -Processing implicit_param.c ... -void * __type_error(char *message); /* this method should halt */ -#include -extern bool _C_65; /* renamed from A */ -extern bool _C_65_DEFINED; -typedef signed int __a_0; -typedef unsigned int __a_1; - -// typedef moved to top of scope -// typedef moved to top of scope -int __foo_4 (__a_0 __x_2) { - - -{ -if (_C_65_DEFINED) { - __x_2 ++ ; -} - -if (!_C_65_DEFINED) { - __x_3 ++ ; -} - -} -{ -if (_C_65_DEFINED) { - return __x_2 ; -} - -if (!_C_65_DEFINED) { - return __x_3 ; -} - -} -} - -int __foo_5 (__a_1 __x_3) { - - -{ -if (_C_65_DEFINED) { - __x_2 ++ ; -} - -if (!_C_65_DEFINED) { - __x_3 ++ ; -} - -} -{ -if (_C_65_DEFINED) { - return __x_2 ; -} - -if (!_C_65_DEFINED) { - return __x_3 ; -} - -} -} - -int __main_7 () { - -int __z_6; - -{ -if (_C_65_DEFINED) { - __z_6 = __foo_4 ( 1 ) ; -} - -if (!_C_65_DEFINED) { - __z_6 = __foo_5 ( 1 ) ; -} - -} return __z_6 ; - -} - diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/negative_sizeof.c.desugared.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/negative_sizeof.c.desugared.c deleted file mode 100644 index 46113ec7..00000000 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/negative_sizeof.c.desugared.c +++ /dev/null @@ -1,61 +0,0 @@ -#include - -extern void __static_parse_error(char *msg); -extern void __static_type_error(char *msg); -extern void __static_renaming(char *renaming, char *original); -extern void __static_condition_renaming(char *expression, char *renaming); - -void __static_initializer_default(); - -extern const bool __static_condition_default_12; -extern const bool __static_condition_default_13; -void __static_initializer_default() { -__static_renaming("__y_8", "y"); -__static_renaming("__a_9", "a"); -__static_renaming("__a_10", "a"); -__static_renaming("__main_11", "main"); - -__static_condition_renaming("__static_condition_default_12", "(defined A)"); -__static_condition_renaming("__static_condition_default_13", "!(defined A)"); - -}; -struct __X_0 { -int __a_1;// L2 -int __b_2;// L3 -int __c_3;// L4 -}; -struct __Y_4 { -int __a_5;// L9 -int __b_6;// L10 -int __a_7;// L12 -}; - -struct __X_0 ;// L1 -struct __Y_4 __y_8;// L7:L14 -int (__main_11) () { - -{ -{ - - - -int __a_9[( sizeof(int ) + sizeof(int ) + sizeof(int ) ) - ( sizeof(int ) + sizeof(int ) )];// L18 - -int __a_10[( sizeof(int ) + sizeof(int ) + sizeof(int ) ) - ( sizeof(int ) )];// L18 - -if (__static_condition_default_12) { -return ( sizeof(int ) + sizeof(int ) + sizeof(int ) ) - ( sizeof(int ) + sizeof(int ) ) ;// L19 -} -if (__static_condition_default_13) { -return ( sizeof(int ) + sizeof(int ) + sizeof(int ) ) - ( sizeof(int ) ) ;// L19 -} -} -} - - -} - - -int main () { - return __main_11(); -} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/offsetof_sizeof.c.desugared.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/offsetof_sizeof.c.desugared.c deleted file mode 100644 index ab3580ed..00000000 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/offsetof_sizeof.c.desugared.c +++ /dev/null @@ -1,3 +0,0 @@ -SuperC, v. 2.4.0, (C) 2009-2012 New York University -Portions Copyright (c) 1989, 1990 James A. Roskind -Processing offsetof_sizeof.c ... diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/sizeof_configurable_struct.c.desugared.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/sizeof_configurable_struct.c.desugared.c deleted file mode 100644 index 70b76554..00000000 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/sizeof_configurable_struct.c.desugared.c +++ /dev/null @@ -1,78 +0,0 @@ -#include - -extern void __static_parse_error(char *msg); -extern void __static_type_error(char *msg); -extern void __static_renaming(char *renaming, char *original); -extern void __static_condition_renaming(char *expression, char *renaming); - -void __static_initializer_default(); - -extern const bool __static_condition_default_35; -extern const bool __static_condition_default_36; -extern const bool __static_condition_default_37; -extern const bool __static_condition_default_34; -void __static_initializer_default() { -__static_renaming("__a_0", "a"); -__static_renaming("__x_1", "x"); -__static_renaming("__z_14", "z"); -__static_renaming("__main_33", "main"); - -__static_condition_renaming("__static_condition_default_34", "!(defined A) && (defined B)"); -__static_condition_renaming("__static_condition_default_35", "(defined A) && (defined B)"); -__static_condition_renaming("__static_condition_default_36", "!(defined A) && !(defined B)"); -__static_condition_renaming("__static_condition_default_37", "(defined A) && !(defined B)"); - -}; -typedef int __a_0;// L1 -struct __one_2 { -__a_0 __a_3;// L0 -}; -struct __one_4 { -__a_0 __a_5;// L0 -int __b_6;// L8 -}; -struct __two_7 { -int __a_8;// L15 -long long __c_9;// L18 -int __b_10;// L16 -unsigned long long __d_11;// L19 -struct __one_2 __x_12;// L21 -struct __one_4 __x_13;// L21 -}; - -// typedef moved to top of scope -int __x_1;// L2 -struct __one_2 ;// L4 -struct __one_4 ;// L4 -struct __two_7 ;// L12 -int (__main_33) () { - -{ -{ - - - -int __z_14;// L26 - -if (__static_condition_default_34) { - __z_14 = sizeof( struct { int __tmp_15; int __tmp_16; struct { __a_0 __tmp_17; } __tmp_18; } ) ; // L27 -} -if (__static_condition_default_35) { - __z_14 = sizeof( struct { int __tmp_19; int __tmp_20; struct { __a_0 __tmp_21; int __tmp_22; } __tmp_23; } ) ; // L27 -} -if (__static_condition_default_36) { - __z_14 = sizeof( struct { long long __tmp_24; unsigned long long __tmp_25; struct { __a_0 __tmp_26; } __tmp_27; } ) ; // L27 -} -if (__static_condition_default_37) { - __z_14 = sizeof( struct { long long __tmp_28; unsigned long long __tmp_29; struct { __a_0 __tmp_30; int __tmp_31; } __tmp_32; } ) ; // L27 -} -return __z_14 ;// L28 -} -} - - -} - -int main () { - return __main_33(); -} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/type_def_void.c.desugared.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/type_def_void.c.desugared.c deleted file mode 100644 index 9f783082..00000000 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/type_def_void.c.desugared.c +++ /dev/null @@ -1,10 +0,0 @@ -SuperC, v. 2.4.0, (C) 2009-2012 New York University -Portions Copyright (c) 1989, 1990 James A. Roskind -Processing type_def_void.c ... -void * __type_error(char *message); /* this method should halt */ -#include -typedef void __v_0; - -// typedef moved to top of scope -__v_0 __foo_1 (__v_0 ); -__v_0 (* __x_2); diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/typedef_struct_field.c.desugared.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/typedef_struct_field.c.desugared.c deleted file mode 100644 index a776703a..00000000 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/typedef_struct_field.c.desugared.c +++ /dev/null @@ -1,63 +0,0 @@ -#include - -extern void __static_parse_error(char *msg); -extern void __static_type_error(char *msg); -extern void __static_renaming(char *renaming, char *original); -extern void __static_condition_renaming(char *expression, char *renaming); - -void __static_initializer_default(); - -extern const bool __static_condition_default_12; -extern const bool __static_condition_default_11; -void __static_initializer_default() { -__static_renaming("__s_0", "s"); -__static_renaming("__s_1", "s"); -__static_renaming("__a_8", "a"); -__static_renaming("__a_9", "a"); -__static_renaming("__main_10", "main"); - -__static_condition_renaming("__static_condition_default_11", "(defined A)"); -__static_condition_renaming("__static_condition_default_12", "!(defined A)"); - -}; -typedef int __s_0;// L2 -typedef long __s_1;// L4 -struct __x_2 { -int __data_3;// L8 -__s_0 __id_4[];// L0 -}; -struct __x_5 { -int __data_6;// L8 -__s_1 __id_7[];// L0 -}; - -// typedef moved to top of scope -// typedef moved to top of scope -struct __x_2 ;// L7 -struct __x_5 ;// L7 -int (__main_10) () { - -{ -{ - - - -struct __x_2 __a_8;// L14 - -struct __x_5 __a_9;// L14 - -if (__static_condition_default_11) { -return ( sizeof(int ) + sizeof(__s_0 [0]) ) ;// L15 -} -if (__static_condition_default_12) { -return ( sizeof(int ) + sizeof(__s_1 [0]) ) ;// L15 -} -} -} - - -} - -int main() { - return __main_10(); -} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/typeof_configurable.c.desugared.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/typeof_configurable.c.desugared.c deleted file mode 100644 index e1b36c31..00000000 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/typeof_configurable.c.desugared.c +++ /dev/null @@ -1,3 +0,0 @@ -SuperC, v. 2.4.0, (C) 2009-2012 New York University -Portions Copyright (c) 1989, 1990 James A. Roskind -Processing typeof_configurable.c ... diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/typeof_union_field.c.desugared.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/typeof_union_field.c.desugared.c deleted file mode 100644 index 169d4714..00000000 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/typeof_union_field.c.desugared.c +++ /dev/null @@ -1,58 +0,0 @@ -#include - -extern void __static_parse_error(char *msg); -extern void __static_type_error(char *msg); -extern void __static_renaming(char *renaming, char *original); -extern void __static_condition_renaming(char *expression, char *renaming); - -void __static_initializer_default(); - -extern const bool __static_condition_default_11; -extern const bool __static_condition_default_12; -void __static_initializer_default() { -__static_renaming("__x_0", "x"); -__static_renaming("__x_1", "x"); -__static_renaming("__y_9", "y"); -__static_renaming("__main_10", "main"); - -__static_condition_renaming("__static_condition_default_11", "(defined A)"); -__static_condition_renaming("__static_condition_default_12", "!(defined A)"); - -}; - -int (__main_10) () { - -{ -{ - -typeof(int)__typeofStandin_2; -typeof(long long)__typeofStandin_3; -union ____anonymous_tag_4_5 { -typeof ( __typeofStandin_2 ) __a_6;// L9 -typeof ( __typeofStandin_3 ) __a_7;// L9 -int __b_8;// L10 -}; - - -int __x_0;// L4 - -long long __x_1;// L6 - -union ____anonymous_tag_4_5 __y_9;// L8:L11 - -if (__static_condition_default_11) { -return ( ( ( sizeof(int) >= sizeof(int) ) ) ? sizeof(int) : ( sizeof(int) ) ) ;// L12 -} -if (__static_condition_default_12) { -return ( ( ( sizeof(long long) >= sizeof(int) ) ) ? sizeof(long long) : ( sizeof(int) ) ) ;// L12 -} -} -} - - -} - - -int main () { - return __main_10(); -} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K new file mode 100644 index 00000000..588438ac --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K @@ -0,0 +1 @@ +sh: 1: R/function_configurably_defined.desugared.c: not found From 8a4aed62b164b152b64e04318b29e4dadf1b2288 Mon Sep 17 00:00:00 2001 From: SlaterLatiao <41390071+SlaterLatiao@users.noreply.github.com> Date: Fri, 4 Feb 2022 17:35:20 -0600 Subject: [PATCH 07/77] updated test cases --- .../injected/enum_assign_forward_ref.c | 21 ++++++------- .../injected/enum_configurable_elem.c | 8 ++--- .../injected/struct_array_typedef.c | 7 +---- .../injected/struct_configurable1.c | 9 +----- .../injected/struct_configurable2.c | 7 +---- ...truct_configurable_cross_and_forward_ref.c | 11 +------ .../injected/struct_init_configurable.c | 11 +------ .../injected/struct_tagged.c | 9 ++---- .../injected/typedef_configurable.c | 7 +---- .../injected/typedef_local_declaration.c | 7 +---- .../injected/typedef_struct_field.c | 7 +---- .../injected/typedef_void.c | 7 +---- .../{ => injected}/func_call_param.c | 9 +++--- .../{ => injected}/funcptr_call_param.c | 9 +++--- .../{ => injected}/implicit_param.c | 9 +++--- .../{ => injected}/negative_sizeof.c | 10 +++---- .../{ => injected}/offsetof_sizeof.c | 12 ++++---- .../injected/sizeof_configurable_struct.c | 22 ++++++++++++++ .../injected/statement_maxof.c | 10 +++++++ .../{ => injected}/typeof_configurable.c | 5 ++-- .../{ => injected}/typeof_union_field.c | 6 ++-- .../sizeof_configurable_struct.c | 30 ------------------- .../statement_maxof.c | 12 -------- 23 files changed, 82 insertions(+), 163 deletions(-) rename fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/{ => injected}/func_call_param.c (65%) rename fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/{ => injected}/funcptr_call_param.c (72%) rename fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/{ => injected}/implicit_param.c (52%) rename fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/{ => injected}/negative_sizeof.c (50%) rename fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/{ => injected}/offsetof_sizeof.c (72%) create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/injected/sizeof_configurable_struct.c create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/injected/statement_maxof.c rename fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/{ => injected}/typeof_configurable.c (73%) rename fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/{ => injected}/typeof_union_field.c (64%) delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/sizeof_configurable_struct.c delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/statement_maxof.c diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/enum_assign_forward_ref.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/enum_assign_forward_ref.c index bcfb858b..ea4cccc2 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/enum_assign_forward_ref.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/enum_assign_forward_ref.c @@ -1,4 +1,4 @@ -#ifdef ENABLE_FORWARD +#ifdef ENABLE_A enum bob; enum bob x; @@ -6,7 +6,7 @@ enum bob x; enum bob { A }; #endif -#ifdef ENABLE_ASSIGN +#ifdef ENABLE_B enum E y; enum E { @@ -18,20 +18,17 @@ enum E { #endif int main() { -#ifdef ENABLE_FORWARD - int flag1 = sizeof(enum bob) == 4; -#else - int flag1 = 1; + int size1 = 1; +#ifdef ENABLE_A + size1 = sizeof(enum bob); #endif -#ifdef ENABLE_ASSIGN - int flag2 = sizeof(enum E) == 8; -#else - int flag2 = 1; + int size2 = 2; +#ifdef ENABLE_B + size2 = sizeof(enum E); #endif - int flag = flag1 && flag2; - return flag; + return size1 + size2; } diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/enum_configurable_elem.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/enum_configurable_elem.c index c420e13f..35d964ff 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/enum_configurable_elem.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/enum_configurable_elem.c @@ -7,10 +7,6 @@ enum E {B = START, C, D, E}; int main() { enum E a = B; - #ifdef ENABLE_A - int flag = a == 1; - #else - int flag = a == 0; - #endif - return flag; + + return a; } diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_array_typedef.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_array_typedef.c index cd227de9..55b24642 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_array_typedef.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_array_typedef.c @@ -14,10 +14,5 @@ int x; #endif int main() { - #ifdef ENABLE_A - int flag = sizeof(x) == 128; - #else - int flag = sizeof(x) == 4; - #endif - return flag; + return sizeof(x); } diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_configurable1.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_configurable1.c index 112cb97f..6444f027 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_configurable1.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_configurable1.c @@ -9,12 +9,5 @@ struct { } a; int main() { - #if defined ENABLE_A && defined ENABLE_B - int flag = sizeof(a) == 12; - #elif defined ENABLE_A || defined ENABLE_B - int flag = sizeof(a) == 8; - #else - int flag = sizeof(a) == 4; - #endif - return flag; + return sizeof(a); } diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_configurable2.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_configurable2.c index 445d2326..de8d3341 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_configurable2.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_configurable2.c @@ -8,10 +8,5 @@ struct { } a; int main() { - #ifdef ENABLE_A - int flag = sizeof(a) == 8; - #else - int flag = sizeof(a) == 16; - #endif - return flag; + return sizeof(a); } diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_configurable_cross_and_forward_ref.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_configurable_cross_and_forward_ref.c index 1ad3dadc..c1041dc3 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_configurable_cross_and_forward_ref.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_configurable_cross_and_forward_ref.c @@ -22,14 +22,5 @@ struct T { }; #endif int main() { - #ifdef ENABLE_A - #ifdef ENABLE_B - int flag = sizeof(struct X) == 16; - #else - int flag = sizeof(struct X) == 8; - #endif - #else - int flag = sizeof(struct T) == 8; - #endif - return flag; + return sizeof(struct X) + sizeof(struct T); } diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_init_configurable.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_init_configurable.c index ca363263..839af57c 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_init_configurable.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_init_configurable.c @@ -7,15 +7,6 @@ struct x { }; int main(void) { - - // under PC A: a = 1 and b = 2 - // under PC !A: a = 1 and c = 2 struct x myFirstStruct = {1, 2}; - - #ifdef ENABLE_A - int flag = myFirstStruct.b == 2; - #else - int flag = myFirstStruct.c== 2; - #endif - return flag; + return myFirstStruct.c; } diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_tagged.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_tagged.c index c81a1cee..c65531ae 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_tagged.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_tagged.c @@ -1,4 +1,4 @@ -#ifdef ENABLE_NAMESPACE +#ifdef ENABLE_A struct x { int x; } x; @@ -10,10 +10,5 @@ char x; #endif int main() { - #ifdef ENABLE_NAMESPACE - int flag = sizeof(x) == 4; - #else - int flag = sizeof(x) == 1; - #endif - return flag; + return sizeof(x); } diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/typedef_declarations_specifiers/injected/typedef_configurable.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/typedef_declarations_specifiers/injected/typedef_configurable.c index 4bde5530..40ddf99c 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/typedef_declarations_specifiers/injected/typedef_configurable.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/typedef_declarations_specifiers/injected/typedef_configurable.c @@ -8,12 +8,7 @@ a; int main() { a x; - #ifdef ENABLE_A - int flag = sizeof(x) == 4; - #else - int flag = sizeof(x) == 8; - #endif - return flag; + return sizeof(x); } diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/typedef_declarations_specifiers/injected/typedef_local_declaration.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/typedef_declarations_specifiers/injected/typedef_local_declaration.c index f90e25ed..3e41514a 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/typedef_declarations_specifiers/injected/typedef_local_declaration.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/typedef_declarations_specifiers/injected/typedef_local_declaration.c @@ -12,10 +12,5 @@ int main() { x++; - #ifdef ENABLE_A - int flag = sizeof(x) == 4; - #else - int flag = sizeof(x) == 8; - #endif - return flag; + return sizeof(x); } diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/typedef_declarations_specifiers/injected/typedef_struct_field.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/typedef_declarations_specifiers/injected/typedef_struct_field.c index 327d456a..abe4ca49 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/typedef_declarations_specifiers/injected/typedef_struct_field.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/typedef_declarations_specifiers/injected/typedef_struct_field.c @@ -12,10 +12,5 @@ struct x { int main() { struct x a; - #ifdef ENABLE_A - int flag = sizeof(a) == 4; - #else - int flag = sizeof(a) == 8; - #endif - return flag; + return sizeof(a); } diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/typedef_declarations_specifiers/injected/typedef_void.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/typedef_declarations_specifiers/injected/typedef_void.c index 0bd0f28f..62ca1f44 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/typedef_declarations_specifiers/injected/typedef_void.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/typedef_declarations_specifiers/injected/typedef_void.c @@ -7,10 +7,5 @@ v foo(v); v *x; int main() { - #ifdef ENABLE_A - int flag = sizeof(v) == 1; - #else - int flag = sizeof(v) == 4; - #endif - return flag; + return sizeof(v); } diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/func_call_param.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/injected/func_call_param.c similarity index 65% rename from fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/func_call_param.c rename to fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/injected/func_call_param.c index a54c1456..e5645a86 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/func_call_param.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/injected/func_call_param.c @@ -1,4 +1,4 @@ -#ifdef HAS_PARAM +#ifdef ENABLE_A int foo(int a); int foo(int a) { @@ -13,10 +13,9 @@ int foo() { #endif int main() { -#ifdef HAS_PARAM - foo(10); +#ifdef ENABLE_A + return foo(10); #else - foo(); + return foo(); #endif - return 0; } diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/funcptr_call_param.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/injected/funcptr_call_param.c similarity index 72% rename from fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/funcptr_call_param.c rename to fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/injected/funcptr_call_param.c index 40b508c6..19738fae 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/funcptr_call_param.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/injected/funcptr_call_param.c @@ -1,4 +1,4 @@ -#ifdef HAS_PARAM +#ifdef ENABLE_A int foo(int a); int foo(int a) { @@ -13,12 +13,11 @@ int foo() { #endif int main() { -#ifdef HAS_PARAM +#ifdef ENABLE_A int (*ptr) (int) = foo; - ptr(10); + return ptr(10); #else int (*ptr) () = foo; - ptr(); + return ptr(); #endif - return 0; } diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/implicit_param.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/injected/implicit_param.c similarity index 52% rename from fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/implicit_param.c rename to fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/injected/implicit_param.c index 773d8cde..937cc2d2 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/implicit_param.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/injected/implicit_param.c @@ -1,17 +1,16 @@ -#ifdef A +#ifdef ENABLE_A typedef signed int a; #else -typedef unsigned int a; +typedef long a; #endif int foo(a x) { x++; - return 0; + return sizeof(a); } int main() { - foo(1); - return 0; + return foo(1); } diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/negative_sizeof.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/injected/negative_sizeof.c similarity index 50% rename from fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/negative_sizeof.c rename to fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/injected/negative_sizeof.c index 8c924350..9f02f2f6 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/negative_sizeof.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/injected/negative_sizeof.c @@ -5,17 +5,17 @@ struct X { }; struct Y { -#ifdef A +#ifdef ENABLE_A int a; int b; #else - int a; - int b; + long a; + long b; #endif } y; int main() { - int a[sizeof(struct X) - sizeof y]; - return 0; + int res = (int) sizeof(struct X) - (int) sizeof(y); + return res; } diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/offsetof_sizeof.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/injected/offsetof_sizeof.c similarity index 72% rename from fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/offsetof_sizeof.c rename to fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/injected/offsetof_sizeof.c index 7081dba9..67e772ae 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/offsetof_sizeof.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/injected/offsetof_sizeof.c @@ -1,13 +1,13 @@ #include -#ifdef OFFSETOF +#ifdef ENABLE_A struct t { int y; char z; } bob; - size_t x = offsetof(struct t, z); -#endif - -#ifdef SIZEOF +#else long l; - size_t x = sizeof(l); #endif + +int main() { + return x; +} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/injected/sizeof_configurable_struct.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/injected/sizeof_configurable_struct.c new file mode 100644 index 00000000..6515a898 --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/injected/sizeof_configurable_struct.c @@ -0,0 +1,22 @@ +struct one { + int a; +#ifdef ENABLE_A + int b; +#endif +}; + +struct two { +#ifdef ENABLE_B + int a; + int b; +#else + long long c; + unsigned long long d; +#endif + struct one x; +}; + +int main() { + return sizeof(struct two); +} + diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/injected/statement_maxof.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/injected/statement_maxof.c new file mode 100644 index 00000000..8055422d --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/injected/statement_maxof.c @@ -0,0 +1,10 @@ +#define maxof(a,b) ({typeof(a)aa=a;typeof(b)bb=b;aa>bb?aa:bb;}) + +int main() +{ +#ifdef ENABLE_A + return maxof(5, 6); +#else + return maxof(4, 5); +#endif +} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/typeof_configurable.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/injected/typeof_configurable.c similarity index 73% rename from fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/typeof_configurable.c rename to fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/injected/typeof_configurable.c index be798106..1fe97806 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/typeof_configurable.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/injected/typeof_configurable.c @@ -1,13 +1,12 @@ int main() { typeof ( -#ifdef A +#ifdef ENABLE_A int * #else char * #endif ) x; typeof(x) y; - y = 0; - return 0; + return sizeof(*y); } diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/typeof_union_field.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/injected/typeof_union_field.c similarity index 64% rename from fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/typeof_union_field.c rename to fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/injected/typeof_union_field.c index 57cd9bf7..92b1f149 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/typeof_union_field.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/injected/typeof_union_field.c @@ -1,13 +1,13 @@ int main() { - #ifdef A + #ifdef ENABLE_A int *x; #else - long x; + int x; #endif union { typeof(x) a; int b; } y; - return 0; + return sizeof(y); } diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/sizeof_configurable_struct.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/sizeof_configurable_struct.c deleted file mode 100644 index ebd18ef8..00000000 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/sizeof_configurable_struct.c +++ /dev/null @@ -1,30 +0,0 @@ -typedef int a; -int x; - -struct one -{ - a a; -#ifdef A - int b; -#endif -}; - -struct two -{ -#ifdef B - int a; - int b; -#else - long long c; - unsigned long long d; -#endif - struct one x; -}; - -int main() -{ - int z; - z = sizeof(struct two); - return 0; -} - diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/statement_maxof.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/statement_maxof.c deleted file mode 100644 index e2eb3abd..00000000 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/statement_maxof.c +++ /dev/null @@ -1,12 +0,0 @@ -#define maxof(a,b) ({typeof(a)aa=a;typeof(b)bb=b;aa>bb?aa:bb;}) -#ifdef A -extern int get(char*,char*); -#else -extern int get(const char*,const char*); -#endif -int main() -{ - char * x; - int a = maxof(5,get(x,"44")); - return 0; -} From 1cdae1221314738c93054e414f4fe933cb441ecd Mon Sep 17 00:00:00 2001 From: SlaterLatiao <41390071+SlaterLatiao@users.noreply.github.com> Date: Fri, 4 Feb 2022 18:26:50 -0600 Subject: [PATCH 08/77] updated test cases --- .../a.out | Bin 16480 -> 16480 bytes .../deref_union_from_struct.c | 20 ------------------ .../increment_decrement.c | 10 --------- .../injected/array_assignment.c | 9 ++------ .../injected/assignment_configurable.c | 7 +----- .../unary_binary_ternary/injected/bitfield.c | 9 ++++---- .../injected/conditional_expression.c | 10 ++++----- .../injected/deref_union_from_struct.c | 17 +++++++++++++++ .../injected/increment_decrement.c | 9 ++++++++ .../{ => injected}/statement_as_expression.c | 6 +++--- .../external_declarations/a.out | Bin 0 -> 16480 bytes .../extern_function_dec_def.c | 7 ------ .../extern_var_dec_configurable.c | 5 ----- .../injected/extern_function_dec_def.c | 15 +++++++++++++ .../injected/extern_var_dec_configurable.c | 9 ++++++++ 15 files changed, 64 insertions(+), 69 deletions(-) rename fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/{unary_binary_ternary => identifier_and_function_call}/a.out (84%) delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/unary_binary_ternary/deref_union_from_struct.c delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/unary_binary_ternary/increment_decrement.c create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/unary_binary_ternary/injected/deref_union_from_struct.c create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/unary_binary_ternary/injected/increment_decrement.c rename fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/unary_binary_ternary/{ => injected}/statement_as_expression.c (54%) create mode 100755 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/external_declarations/a.out delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/external_declarations/extern_function_dec_def.c delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/external_declarations/extern_var_dec_configurable.c create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/external_declarations/injected/extern_function_dec_def.c create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/external_declarations/injected/extern_var_dec_configurable.c diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/unary_binary_ternary/a.out b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/a.out similarity index 84% rename from fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/unary_binary_ternary/a.out rename to fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/a.out index e60576bf069164f036cffa65dd2d5a04a90d5cc7..a24b74bcb679128bd43edddb8298cd54cc0ec225 100755 GIT binary patch delta 655 zcmaFR!1$nnaRUb<=TSxmFgUtdkTIM|(4;%Q4)i*LJZE1A}9jXXiD?P|wbRJ*dPcIXN5{DPJU=A&X_uRqKUYvEl`aBgE)hL1FBwWkX|N!h8q2KbnX$7J$vFpR8yq?%4yB69hRz0iqfd+8{6+qzC8@2dG)85MhSnKw5x7f5~&67qUJA$|?cfEizfqY`RcM zWkG6wT6}3Gv|(pv{5RRr QL4LA=g9IbrWJ?Ei0K5l+sQ>@~ delta 724 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 TQeNZMw_o3>HCFo!e4_dXevb(p literal 0 HcmV?d00001 diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/external_declarations/extern_function_dec_def.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/external_declarations/extern_function_dec_def.c deleted file mode 100644 index 5bf4b0af..00000000 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/external_declarations/extern_function_dec_def.c +++ /dev/null @@ -1,7 +0,0 @@ -extern int foo(); - -#ifdef DEF -int foo() { - return 0; -} -#endif diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/external_declarations/extern_var_dec_configurable.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/external_declarations/extern_var_dec_configurable.c deleted file mode 100644 index 3c161c70..00000000 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/external_declarations/extern_var_dec_configurable.c +++ /dev/null @@ -1,5 +0,0 @@ -#ifdef A -extern int a; -#else -extern double a; -#endif diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/external_declarations/injected/extern_function_dec_def.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/external_declarations/injected/extern_function_dec_def.c new file mode 100644 index 00000000..8fad56b4 --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/external_declarations/injected/extern_function_dec_def.c @@ -0,0 +1,15 @@ +extern int foo(); + +#ifdef ENABLE_A +int foo() { + return 0; +} +#endif + +int main() { + #ifdef ENABLE_A + return foo(); + #else + return 1; + #endif +} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/external_declarations/injected/extern_var_dec_configurable.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/external_declarations/injected/extern_var_dec_configurable.c new file mode 100644 index 00000000..92fa1aa2 --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/external_declarations/injected/extern_var_dec_configurable.c @@ -0,0 +1,9 @@ +#ifdef ENABLE_A +extern int a; +#else +extern double a; +#endif + +int main() { + return sizeof(a); +} From 2af14e5993d94015f072d101e3fb4de6e419d82a Mon Sep 17 00:00:00 2001 From: SlaterLatiao <41390071+SlaterLatiao@users.noreply.github.com> Date: Sat, 5 Feb 2022 02:31:46 -0600 Subject: [PATCH 09/77] updated test cases --- .../{ => injected}/struct_forward.c | 6 +- .../injected/struct_selfref.c | 17 ++++++ .../{ => injected}/struct_undef_cast.c | 8 ++- .../injected/union_init_in_expression.c | 6 ++ .../struct_selfref.c | 15 ----- .../union_init_in_expression.c | 6 -- .../ANSI/basic_functions.c | 35 ----------- .../ANSI/function_abstract_parameter.c | 17 ------ .../ANSI/function_parameter_multiple_config.c | 31 ---------- .../ANSI/function_parameters_configurable.c | 12 ---- .../function_typedef_parameter_configurable.c | 15 ----- .../ANSI/injected/basic_functions.c | 48 +++++++++++++++ .../injected/function_abstract_parameter.c | 27 ++++++++ .../function_parameter_multiple_config.c | 61 +++++++++++++++++++ .../function_parameters_configurable.c | 20 ++++++ .../function_typedef_parameter_configurable.c | 15 +++++ .../K&R/function_no_param_dec.c | 2 +- .../K&R/function_parameters_configurable.c | 12 ---- .../function_typedef_parameter_configurable.c | 16 ----- .../function_configurably_defined.c | 11 +++- .../function_parameters_configurable.c | 24 ++++++++ .../function_typedef_parameter_configurable.c | 16 +++++ .../variadic_arguments/simple_varg.c | 7 ++- .../control_flow_statements/injected/jump.c | 15 +++++ .../switch_case_condition_configurable.c | 6 +- .../{ => injected}/switch_case_configrable.c | 10 +-- .../switch_variable_configurable.c | 8 +-- .../statements/control_flow_statements/jump.c | 13 ---- 28 files changed, 285 insertions(+), 194 deletions(-) rename fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/{ => injected}/struct_forward.c (72%) create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_selfref.c rename fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/{ => injected}/struct_undef_cast.c (56%) create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/union_init_in_expression.c delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/struct_selfref.c delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/union_init_in_expression.c delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/basic_functions.c delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/function_abstract_parameter.c delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/function_parameter_multiple_config.c delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/function_parameters_configurable.c delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/function_typedef_parameter_configurable.c create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/basic_functions.c create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_abstract_parameter.c create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_parameter_multiple_config.c create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_parameters_configurable.c create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_typedef_parameter_configurable.c delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/function_parameters_configurable.c delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/function_typedef_parameter_configurable.c rename fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/{ => injected}/function_configurably_defined.c (60%) create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/injected/function_parameters_configurable.c create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/injected/function_typedef_parameter_configurable.c create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/statements/control_flow_statements/injected/jump.c rename fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/statements/control_flow_statements/{ => injected}/switch_case_condition_configurable.c (74%) rename fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/statements/control_flow_statements/{ => injected}/switch_case_configrable.c (71%) rename fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/statements/control_flow_statements/{ => injected}/switch_variable_configurable.c (76%) delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/statements/control_flow_statements/jump.c diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/struct_forward.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_forward.c similarity index 72% rename from fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/struct_forward.c rename to fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_forward.c index caf499c5..f1a32848 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/struct_forward.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_forward.c @@ -1,4 +1,4 @@ -#ifdef FORWARD_SCOPE +#ifdef ENABLE_A #else struct s { @@ -12,12 +12,12 @@ struct t { #endif int main() { -#ifdef FORWARD_SCOPE +#ifdef ENABLE_A struct s* local_var; struct s { char y; }; #endif - + return sizeof(struct s); } diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_selfref.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_selfref.c new file mode 100644 index 00000000..9b840878 --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_selfref.c @@ -0,0 +1,17 @@ +#ifdef ENABLE_A +struct list { + int data; + struct list *next; +}; +#endif + +int main() { + #ifdef ENABLE_A + + #else + struct list { + struct list *next; + }; + #endif + return sizeof(struct list); +} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/struct_undef_cast.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_undef_cast.c similarity index 56% rename from fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/struct_undef_cast.c rename to fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_undef_cast.c index 1bbb9bb9..c4635d25 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/struct_undef_cast.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_undef_cast.c @@ -1,4 +1,4 @@ -struct s1 x; +struct s1 *x; struct s2 { int data; @@ -11,8 +11,10 @@ struct s1 { }; int main() { -#ifdef CAST - return ((struct s2) x).data; +#ifdef ENABLE_A + return sizeof(((struct s2 *) x)->data); +#else + return 0; #endif } diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/union_init_in_expression.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/union_init_in_expression.c new file mode 100644 index 00000000..1969f594 --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/union_init_in_expression.c @@ -0,0 +1,6 @@ +int main () { +#ifdef ENABLE_A + return ((union {int a; long b;}){.a = 2}).b; +#endif + return 0; +} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/struct_selfref.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/struct_selfref.c deleted file mode 100644 index 6ce8f717..00000000 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/struct_selfref.c +++ /dev/null @@ -1,15 +0,0 @@ -#ifdef SELFREF -struct list { - int data; - struct list *next; -}; -#endif - -#ifdef SELFREF_LOCAL -int main() { - struct list2 { - int data; - struct list2 *next; - }; -} -#endif diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/union_init_in_expression.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/union_init_in_expression.c deleted file mode 100644 index 574cdc9e..00000000 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/union_init_in_expression.c +++ /dev/null @@ -1,6 +0,0 @@ -int main () { -#ifdef UNIONINIT - ((union {int a; long b;}){.a = 2}).b; -#endif - return 0; -} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/basic_functions.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/basic_functions.c deleted file mode 100644 index 7314df22..00000000 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/basic_functions.c +++ /dev/null @@ -1,35 +0,0 @@ -#ifdef BASIC_FUNC -int x() -{ - return 0; -} - -float *y(int y1) -{ - float* y2; - return y2; -} - -char z(int z1, int z2) -{ - return 'a'; -} - -short w(int x, ...) -{ - return 0; -} -#endif - -#ifdef VALID_TYPE_FUNC -void * a; -void b() -{ - return; -} - -inline int c() -{ - return 0; -} -#endif diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/function_abstract_parameter.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/function_abstract_parameter.c deleted file mode 100644 index fa03ef9d..00000000 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/function_abstract_parameter.c +++ /dev/null @@ -1,17 +0,0 @@ -#ifdef ABSTRACT_PARAM -int foo(int *); -#endif - -#ifdef VOID_ABSTRACT -void foo (void); -void *fwo(void); -void fwotwo(void*,void*); -#endif - - -#ifdef ABSTRACT_PARAM -int foo(int *x) -{ - return 1; -} -#endif diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/function_parameter_multiple_config.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/function_parameter_multiple_config.c deleted file mode 100644 index 327e9be2..00000000 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/function_parameter_multiple_config.c +++ /dev/null @@ -1,31 +0,0 @@ -int foo( -#ifdef A -#ifdef B - int x, - #endif - #endif - #ifdef A - #ifdef C - int y, - #endif - #endif - #ifdef A - int z, - #endif - int w) -{ - return 0; -} - -int main() -{ - return 0; -} - -/* - foo(w) -!A && (!B || B) && (!C || C) - foo(x,z,w) -A && B && !C - foo(y,z,w) -A && !B && C - foo(x,y,z,w) -A && B && C - foo(z,w) -A && !B && !C - */ diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/function_parameters_configurable.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/function_parameters_configurable.c deleted file mode 100644 index a5a9b96b..00000000 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/function_parameters_configurable.c +++ /dev/null @@ -1,12 +0,0 @@ -int f(char x -#ifdef A - , int y -#endif - ) { - int z = x -#ifdef A - + y -#endif -; - return z; -} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/function_typedef_parameter_configurable.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/function_typedef_parameter_configurable.c deleted file mode 100644 index 17827178..00000000 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/function_typedef_parameter_configurable.c +++ /dev/null @@ -1,15 +0,0 @@ -#ifdef A -typedef int x; -#else -typedef float x; -#endif - -int foo(x a) -{ - return 0; -} - -int main() -{ - return 0; -} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/basic_functions.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/basic_functions.c new file mode 100644 index 00000000..9fa85878 --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/basic_functions.c @@ -0,0 +1,48 @@ +#ifdef ENABLE_A +int x() +{ + return 0; +} + +float *y(int y1) +{ + float* y2; + return y2; +} + +char z(int z1, int z2) +{ + return 'a'; +} + +short w(int x, ...) +{ + return 0; +} +#endif + +#ifdef ENABLE_B +void * a; +void b() +{ + return; +} + +inline int c() +{ + return 0; +} +#endif + +int main(){ + int res = 0; + #ifdef ENABLE_A + res += sizeof(x()) + sizeof(y(0)) + sizeof(z(1, 2)) + sizeof(w(0, 1, 2, 3)); + #endif + + #ifdef ENABLE_B + res += sizeof(a) + sizeof(b()) + sizeof(c()); + #endif + + return res; +} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_abstract_parameter.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_abstract_parameter.c new file mode 100644 index 00000000..e857f280 --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_abstract_parameter.c @@ -0,0 +1,27 @@ +#ifdef ENABLE_A +int foo(int *); +#else +void foo (void); +void *fwo(void); +void fwotwo(void*,void*); +#endif + + +#ifdef ENABLE_A +int foo(int *x) +{ + return 1; +} +#endif + +int main() { + int res = 0; + + #ifdef ENABLE_A + res += sizeof(foo(0)); + #else + res += sizeof(foo()) + sizeof(fwo()) + sizeof(fwotwo(0, 0)); + #endif + + return res; +} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_parameter_multiple_config.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_parameter_multiple_config.c new file mode 100644 index 00000000..8c04263f --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_parameter_multiple_config.c @@ -0,0 +1,61 @@ +int foo( +#ifdef ENABLE_A +#ifdef ENABLE_B + int x, + #endif + #endif + #ifdef ENABLE_A + #ifdef ENABLE_C + int y, + #endif + #endif + #ifdef ENABLE_A + int z, + #endif + int w) +{ + int res = 0; + #ifdef ENABLE_A + #ifdef ENABLE_B + res += x; + #endif + #endif + + #ifdef ENABLE_A + #ifdef ENABLE_C + res += y; + #endif + #endif + + #ifdef ENABLE_A + res += z; + #endif + res += w; + return res; +} + +int main() { +return foo( +#ifdef ENABLE_A +#ifdef ENABLE_B + 1, + #endif + #endif + #ifdef ENABLE_A + #ifdef ENABLE_C + 2, + #endif + #endif + #ifdef ENABLE_A + 3, + #endif + 4); +} + +/* + foo(w) -!ENABLE_A && (!ENABLE_B || ENABLE_B) && (!ENABLE_C || ENABLE_C) + foo(x,z,w) -ENABLE_A && ENABLE_B && !ENABLE_C + foo(y,z,w) -ENABLE_A && !ENABLE_B && ENABLE_C + foo(x,y,z,w) -ENABLE_A && ENABLE_B && ENABLE_C + foo(z,w) -ENABLE_A && !ENABLE_B && !ENABLE_C + */ diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_parameters_configurable.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_parameters_configurable.c new file mode 100644 index 00000000..a48e51d2 --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_parameters_configurable.c @@ -0,0 +1,20 @@ +int f(char x +#ifdef ENABLE_A + , int y +#endif + ) { + int z = x +#ifdef ENABLE_A + + y +#endif +; + return z; +} + +int main() { + return f(1 + #ifdef ENABLE_A + , 2 + #endif + ); +} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_typedef_parameter_configurable.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_typedef_parameter_configurable.c new file mode 100644 index 00000000..e32e49f8 --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_typedef_parameter_configurable.c @@ -0,0 +1,15 @@ +#ifdef ENABLE_A +typedef int x; +#else +typedef double x; +#endif + +int foo(x a) +{ + return sizeof(x); +} + +int main() +{ + return foo(0); +} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/function_no_param_dec.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/function_no_param_dec.c index 39f9bc48..97ce5ef2 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/function_no_param_dec.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/function_no_param_dec.c @@ -1,4 +1,4 @@ -#ifdef HAS_PARAM +#ifdef ENABLE_A int foo(int a); #else int foo(); diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/function_parameters_configurable.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/function_parameters_configurable.c deleted file mode 100644 index 08c18d3b..00000000 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/function_parameters_configurable.c +++ /dev/null @@ -1,12 +0,0 @@ -int f(x - #ifdef A - ,y - #endif - ) - char x; - #ifdef A - int y; - #endif -{ - return 0; -} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/function_typedef_parameter_configurable.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/function_typedef_parameter_configurable.c deleted file mode 100644 index 2e77cfe7..00000000 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/function_typedef_parameter_configurable.c +++ /dev/null @@ -1,16 +0,0 @@ -#ifdef A -typedef int x; -#else -typedef float x; -#endif - -int foo(a) - x a; -{ - return 0; -} - -int main() -{ - return 0; -} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/function_configurably_defined.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/injected/function_configurably_defined.c similarity index 60% rename from fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/function_configurably_defined.c rename to fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/injected/function_configurably_defined.c index 04149e66..85450d4c 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/function_configurably_defined.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/injected/function_configurably_defined.c @@ -1,4 +1,4 @@ -#ifdef CONFIG_A +#ifdef ENABLE_A typedef struct myfirststruct { int x; } myfirststruct; @@ -11,3 +11,12 @@ static inline myfirststruct* func(sk) return (myfirststruct*)sk; } #endif + +int main() { + #ifdef ENABLE_A + myfirststruct *sk; + return sizeof(func(sk)); + #else + return 0; + #endif +} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/injected/function_parameters_configurable.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/injected/function_parameters_configurable.c new file mode 100644 index 00000000..7ecb1476 --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/injected/function_parameters_configurable.c @@ -0,0 +1,24 @@ +int foo(x + #ifdef ENABLE_A + ,y + #endif + ) + char x; + #ifdef ENABLE_A + int y; + #endif +{ + int ret = x; + #ifdef ENABLE_A + ret += y; + #endif + return ret; +} + +int main() { + #ifdef ENABLE_A + return foo(1 ,2); + #else + return foo(1); + #endif +} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/injected/function_typedef_parameter_configurable.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/injected/function_typedef_parameter_configurable.c new file mode 100644 index 00000000..f7b0b535 --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/injected/function_typedef_parameter_configurable.c @@ -0,0 +1,16 @@ +#ifdef ENABLE_A +typedef int x; +#else +typedef double x; +#endif + +int foo(a) + x a; +{ + return sizeof(a); +} + +int main() +{ + return foo(0); +} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/variadic_arguments/simple_varg.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/variadic_arguments/simple_varg.c index 49f22924..3d3c2b0b 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/variadic_arguments/simple_varg.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/variadic_arguments/simple_varg.c @@ -1,8 +1,11 @@ #ifdef A -extern int foo (int a, ...); +int foo (int a, ...) #else -extern int foo (int a, int b, int c, int d); +int foo (int a, int b, int c, int d) #endif +{ + +} int main () { foo (1, 2, 3, 4); diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/statements/control_flow_statements/injected/jump.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/statements/control_flow_statements/injected/jump.c new file mode 100644 index 00000000..eab6a1e9 --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/statements/control_flow_statements/injected/jump.c @@ -0,0 +1,15 @@ +int main() { + int x = 0; + while (++x < 5) { +#ifdef ENABLE_A + break; +#endif +#ifdef ENABLE_B + continue; +#endif + goto ret; + } + return x; +ret: + return 6; +} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/statements/control_flow_statements/switch_case_condition_configurable.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/statements/control_flow_statements/injected/switch_case_condition_configurable.c similarity index 74% rename from fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/statements/control_flow_statements/switch_case_condition_configurable.c rename to fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/statements/control_flow_statements/injected/switch_case_condition_configurable.c index ed00ede9..c0c88782 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/statements/control_flow_statements/switch_case_condition_configurable.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/statements/control_flow_statements/injected/switch_case_condition_configurable.c @@ -2,10 +2,10 @@ int main() { - int a; + int a = 2; switch (a) { -#ifdef A +#ifdef ENABLE_A case X: a=1; break; @@ -13,5 +13,5 @@ int main() default: a=2; } - return 0; + return a; } diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/statements/control_flow_statements/switch_case_configrable.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/statements/control_flow_statements/injected/switch_case_configrable.c similarity index 71% rename from fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/statements/control_flow_statements/switch_case_configrable.c rename to fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/statements/control_flow_statements/injected/switch_case_configrable.c index db2b7610..99200571 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/statements/control_flow_statements/switch_case_configrable.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/statements/control_flow_statements/injected/switch_case_configrable.c @@ -1,20 +1,20 @@ int main() { - int x; + int x = 2; switch (x) { case 1: x = 2; break; - #ifdef A + #ifdef ENABLE_A case 2: x = 3; break; -#else + #else case 2: x = 4; break; - #endif - #default + #endif + default: x = 0; } return x; diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/statements/control_flow_statements/switch_variable_configurable.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/statements/control_flow_statements/injected/switch_variable_configurable.c similarity index 76% rename from fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/statements/control_flow_statements/switch_variable_configurable.c rename to fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/statements/control_flow_statements/injected/switch_variable_configurable.c index a61e83de..db8917b2 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/statements/control_flow_statements/switch_variable_configurable.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/statements/control_flow_statements/injected/switch_variable_configurable.c @@ -1,13 +1,13 @@ int main () { int y; -#ifdef A - int x; +#ifdef ENABLE_A + int x = 1; #else - int z; + int z = 2; #endif -#ifdef A +#ifdef ENABLE_A switch (x) { #else switch (z) { diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/statements/control_flow_statements/jump.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/statements/control_flow_statements/jump.c deleted file mode 100644 index 8fc4f298..00000000 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/statements/control_flow_statements/jump.c +++ /dev/null @@ -1,13 +0,0 @@ -int main() { - while (1) { -#ifdef BREAK - break; -#elif defined CONTINUE - continue; -#else - goto ret; -#endif - } -ret: - return 0; -} From 8975d2397735932c2a58a904df8f0a6bfea56e75 Mon Sep 17 00:00:00 2001 From: pattersonz Date: Mon, 7 Feb 2022 12:55:26 -0600 Subject: [PATCH 10/77] updated test cases, fixed flex array bug --- .../microbenchmark/autoRunnerResults.txt | 177 ++++++++++++++++++ .../desugarer/microbenchmark/autorunner.py | 17 +- .../injected/declaring_list_partial_config.c | 2 +- .../struct_union_enum_specifiers/a.out | Bin 16480 -> 0 bytes .../injected/enum_assign_forward_ref.c | 4 +- .../injected/struct_init_configurable.c | 3 +- .../typedef_declarations_specifiers/a.out | Bin 16720 -> 0 bytes .../identifier_and_function_call/a.out | Bin 16480 -> 0 bytes .../injected/statement_as_expression.c | 2 +- .../external_declarations/a.out | Bin 16480 -> 0 bytes .../injected/function_abstract_parameter.c | 12 +- .../language_features/function_definitions/K | 2 +- src/superc/cdesugarer/DesugarOps.java | 2 +- 13 files changed, 206 insertions(+), 15 deletions(-) create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/autoRunnerResults.txt delete mode 100755 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/a.out delete mode 100755 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/typedef_declarations_specifiers/a.out delete mode 100755 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/a.out delete mode 100755 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/external_declarations/a.out diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/autoRunnerResults.txt b/fonda/cpp_testsuite/desugarer/microbenchmark/autoRunnerResults.txt new file mode 100644 index 00000000..e241ff77 --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/autoRunnerResults.txt @@ -0,0 +1,177 @@ +~~~Results~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/external_declarations/extern_repeated.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/external_declarations/extern_global_static.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/struct_local_illegal.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/array_invalid_size.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/function_function_parameters.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/invalid_types.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/syntactic_error_integration/struct_prohibit_initializer.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/qualifiers3.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/struct_anonymous_local.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/struct_crossref.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/union_transparent_union.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/external_declarations/injected/extern_function_dec_def.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/external_declarations/injected/extern_var_dec_configurable.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/sizeof_configurable_struct.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/asm.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_typedef_parameter_configurable.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_parameters_configurable.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/basic_functions.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_parameter_multiple_config.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_flex.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/scope_partial_declaration2.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_init_compound.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/declaring_list_partial_config.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_conditional_flex.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/scope_partial_declaration1.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/configurable_pointer.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/configurable_array.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/configurable_pointer_level.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_init_length_implicity.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/configurable_primitive.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_init_elem_configurable.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/enum_configurable_elem.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/union_init_in_expression.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_configurable_cross_and_forward_ref.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_init_configurable.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_array_typedef.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_undef_cast.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_tagged.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_selfref.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_configurable2.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_forward.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_configurable1.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/typedef_declarations_specifiers/injected/typedef_configurable.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/typedef_declarations_specifiers/injected/typedef_void.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/typedef_declarations_specifiers/injected/typedef_local_declaration.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/typedef_declarations_specifiers/injected/typedef_struct_field.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/statements/control_flow_statements/injected/switch_case_configrable.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/statements/control_flow_statements/injected/switch_variable_configurable.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/statements/control_flow_statements/injected/jump.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/statements/control_flow_statements/injected/switch_case_condition_configurable.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/injected/statement_maxof.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/injected/typeof_configurable.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/injected/sizeof_configurable_struct.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/injected/implicit_param.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/injected/negative_sizeof.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/injected/typeof_union_field.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/injected/func_call_param.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/injected/funcptr_call_param.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/unary_binary_ternary/injected/bitfield.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/unary_binary_ternary/injected/assignment_configurable.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/unary_binary_ternary/injected/conditional_expression.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/unary_binary_ternary/injected/deref_union_from_struct.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/unary_binary_ternary/injected/array_assignment.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/unary_binary_ternary/injected/increment_decrement.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/unary_binary_ternary/injected/statement_as_expression.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/struct_struct_declarator.c :: 1/2 + ['0', '0']/['157', '0'] + ['::0/157'] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/typedef_partially_defined.c :: 2/8 + ['0', '0', '0', '0', '0', '0', '0', '0']/['157', '0', '0', '157', '157', '157', '157', '157'] + ['::0/157', ' A B::0/157', ' C::0/157', ' A C::0/157', ' B C::0/157', ' A B C::0/157'] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/cast_type_error.c :: 1/2 + ['157', '127']/['127', '127'] + ['::157/127'] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/variable_partially_defined.c :: 2/8 + ['127', '0', '0', '0', '0', '0', '0', '0']/['157', '0', '0', '157', '157', '157', '157', '157'] + ['::127/157', ' A B::0/157', ' C::0/157', ' A C::0/157', ' B C::0/157', ' A B C::0/157'] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/typedefname_and_variable_declarations.c :: 1/2 + ['157', '0']/['0', '0'] + ['::157/0'] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/invalid_qualifiers.c :: 1/16 + ['0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0']/['0', '157', '157', '157', '157', '157', '157', '157', '157', '157', '157', '157', '157', '157', '157', '157'] + [' INVALID::0/157', ' SIGNED::0/157', ' INVALID SIGNED::0/157', ' DUPLICATE::0/157', ' INVALID DUPLICATE::0/157', ' SIGNED DUPLICATE::0/157', ' INVALID SIGNED DUPLICATE::0/157', ' INVALID_LONG::0/157', ' INVALID INVALID_LONG::0/157', ' SIGNED INVALID_LONG::0/157', ' INVALID SIGNED INVALID_LONG::0/157', ' DUPLICATE INVALID_LONG::0/157', ' INVALID DUPLICATE INVALID_LONG::0/157', ' SIGNED DUPLICATE INVALID_LONG::0/157', ' INVALID SIGNED DUPLICATE INVALID_LONG::0/157'] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/complex_if.c :: 1/2 + ['157', '127']/['127', '127'] + ['::157/127'] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/reference_error.c :: 1/2 + ['127', '0']/['157', '0'] + ['::127/157'] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/enum_constant_expression.c :: 1/2 + ['0', '0']/['0', '157'] + [' INVALID::0/157'] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/primitive_array_declarator.c :: 1/2 + ['0', '0']/['0', '157'] + [' A::0/157'] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/partial_redeclaration.c :: 3/4 + ['0', '0', '0', '0']/['0', '0', '0', '157'] + [' A B::0/157'] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/invalid_loop_confition.c :: 1/2 + ['157', '127']/['157', '157'] + [' A::127/157'] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/struct_redeclare.c :: 0/2 + ['0', '0']/['128', '157'] + ['::0/128', ' REDECLARE::0/157'] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/struct_global_forward_reference_illegal.c :: 0/2 + ['0', '139']/['157', '49'] + ['::0/157', ' FORWARD::139/49'] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/array_constant_init.c :: 1/2 + ['5', '5']/['5', '157'] + [' CONSTANT::5/157'] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/local_redeclarations.c :: 1/2 + ['0', '0']/['0', '157'] + [' A::0/157'] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/global_redeclaration.c :: 3/4 + ['157', '0', '0', '0']/['157', '0', '0', '157'] + [' A B::0/157'] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/syntactic_error_integration/no_identifier.c :: 0/2 + ['127', '127']/['157', '157'] + ['::127/157', ' NOID::127/157'] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/syntactic_error_integration/invalid_typedefs.c :: 0/2 + ['127', '127']/['157', '157'] + ['::127/157', ' INVALID_TYPEDEF::127/157'] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/syntactic_error_integration/enum_error.c :: 1/2 + ['0', '0']/['0', '157'] + [' REPEATED::0/157'] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/function_parameters_empty_configurable.c :: 0/4 + ['127', '127', '127', '127']/['157', '157', '157', '157'] + ['::127/157', ' B::127/157', ' A::127/157', ' B A::127/157'] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/function_pointer.c :: 0/2 + ['127', '127']/['157', '157'] + ['::127/157', ' FUNC_PTR::127/157'] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/variadic_arguments/simple_varg.c :: 1/2 + ['0', '0']/['1', '0'] + ['::0/1'] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/function_parameters_empty_configurable.c :: did not desug +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/function_abstract_parameter.c :: did not desug +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/function_no_param_dec.c :: did not desug +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/declarators_list.c :: 0/2 + ['127', '127']/['157', '157'] + ['::127/157', ' DEC_LIST::127/157'] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/abstractpointer.c :: 0/2 + ['127', '127']/['157', '157'] + ['::127/157', ' A::127/157'] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/qualifiers1.c :: 0/4 + ['127', '127', '127', '127']/['157', '157', '157', '157'] + ['::127/157', ' COMPLEX::127/157', ' VOLATILE::127/157', ' COMPLEX VOLATILE::127/157'] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/initializers.c :: 0/4 + ['127', '127', '127', '127']/['157', '157', '157', '157'] + ['::127/157', ' STRUCT_INIT::127/157', ' INIT::127/157', ' STRUCT_INIT INIT::127/157'] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/qualifiers2.c :: 0/4 + ['127', '127', '127', '127']/['157', '157', '157', '157'] + ['::127/157', ' DUPLICATE::127/157', ' LONG::127/157', ' DUPLICATE LONG::127/157'] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/struct_nested.c :: 0/4 + ['127', '127', '127', '127']/['157', '157', '157', '157'] + ['::127/157', ' NESTED::127/157', ' NESTEDANONYMOUS::127/157', ' NESTED NESTEDANONYMOUS::127/157'] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/typedef_declarations_specifiers/typedefs.c :: 0/4 + ['127', '127', '127', '127']/['157', '157', '157', '157'] + ['::127/157', ' VALID::127/157', ' STDDEF::127/157', ' VALID STDDEF::127/157'] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/statements/control_flow_statements/if_label_duplicate.c :: 1/2 + ['0', '1']/['128', '1'] + ['::0/128'] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/statements/control_flow_statements/forloop_duplicate_label.c :: 0/2 + ['127', '127']/['157', '157'] + ['::127/157', ' A::127/157'] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/unary_binary_ternary/increment_decrement.c :: 0/1 + ['0']/['157'] + ['::0/157'] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_abstract_parameter.c :: 1/2 + ['3', '4']/['4', '4'] + ['::3/4'] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/injected/function_typedef_parameter_configurable.c :: did not desug +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/injected/function_parameters_configurable.c :: did not desug +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/injected/function_configurably_defined.c :: did not desug +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/enum_assign_forward_ref.c :: 2/4 + ['3', '6', '9', '12']/['3', '6', '5', '8'] + [' ENABLE_B::9/5', ' ENABLE_A ENABLE_B::12/8'] diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/autorunner.py b/fonda/cpp_testsuite/desugarer/microbenchmark/autorunner.py index 3b889c6f..98314bcb 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/autorunner.py +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/autorunner.py @@ -132,14 +132,23 @@ def comp(expect,reality,ms,f): return f + ' :: match' return f + ' :: ' + str(matches) + '/' + str(size) + '\n\t' + str(expect) + '/' + str(reality) + '\n\t' + str(fails) -def printRes(s): +def printStatus(s): + st = "" for a in s: if ':: match' in a: - print(a) + st += a + "\n" for a in s: if ':: match' not in a: - print(a) - + st += a + "\n" + return st + +def printRes(s): + res = printStatus(s) + res = "~~~Results~~~\n" + res + ff = open("autoRunnerResults.txt","w") + ff.write(res) + ff.close() + print(res) def runFiles(fileList,results): for f in fileList: diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/declaring_list_partial_config.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/declaring_list_partial_config.c index a85064e7..ae78f0ed 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/declaring_list_partial_config.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/declaring_list_partial_config.c @@ -4,7 +4,7 @@ int x = 1; long x = 2; #endif int main() { - int a, b = x; + int a = 1, b = x; return a + b; diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/a.out b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/a.out deleted file mode 100755 index 75747f00ca52cffee928b0abf052554bf2865315..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 16480 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 GQT-k0CK}HG diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/enum_assign_forward_ref.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/enum_assign_forward_ref.c index ea4cccc2..17535ce5 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/enum_assign_forward_ref.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/enum_assign_forward_ref.c @@ -1,13 +1,13 @@ #ifdef ENABLE_A enum bob; -enum bob x; +//enum bob x; enum bob { A }; #endif #ifdef ENABLE_B -enum E y; +//enum E y; enum E { B = 0x01FFFFFFFFFFFFFF, diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_init_configurable.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_init_configurable.c index 839af57c..465ba5cf 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_init_configurable.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_init_configurable.c @@ -4,9 +4,10 @@ struct x { int b; #endif int c; + int d; }; int main(void) { - struct x myFirstStruct = {1, 2}; + struct x myFirstStruct = {1, 2, 3}; return myFirstStruct.c; } diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/typedef_declarations_specifiers/a.out b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/typedef_declarations_specifiers/a.out deleted file mode 100755 index 632bc76e4248455d376e09e04461dcef9168a09c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 16720 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 TQeNZMw_o3>HCFo!e4_dXevb(p diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_abstract_parameter.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_abstract_parameter.c index e857f280..f87363cc 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_abstract_parameter.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_abstract_parameter.c @@ -1,9 +1,9 @@ #ifdef ENABLE_A int foo(int *); #else -void foo (void); -void *fwo(void); -void fwotwo(void*,void*); +int foo (void); +int *fwo(void); +int fwotwo(void*,void*); #endif @@ -12,13 +12,17 @@ int foo(int *x) { return 1; } +#else +int foo (void) { return 2; } +int *fwo(void) { int x = 1; return &x; } +int fwotwo(void*,void*) { return 1;} #endif int main() { int res = 0; #ifdef ENABLE_A - res += sizeof(foo(0)); + res += sizeof(foo(&res)); #else res += sizeof(foo()) + sizeof(fwo()) + sizeof(fwotwo(0, 0)); #endif diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K index 588438ac..6b657d4f 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K @@ -1 +1 @@ -sh: 1: R/function_configurably_defined.desugared.c: not found +sh: 1: R/injected/function_configurably_defined.desugared.c: not found diff --git a/src/superc/cdesugarer/DesugarOps.java b/src/superc/cdesugarer/DesugarOps.java index 059c89ec..7388587e 100644 --- a/src/superc/cdesugarer/DesugarOps.java +++ b/src/superc/cdesugarer/DesugarOps.java @@ -322,7 +322,7 @@ public static Multiverse processStructDefinitionWithFlex(Syntax k } } } - if (flexList.size() <= 1) { + if (flexList.size() < 1) { return processStructDefinition(keyword,structTag,structfields,pc,scope,freshIdCreator,suTypeCreator); } PresenceCondition remaining = (new PresenceConditionManager()).newTrue(); From b3ee4fd9203e5a32f5a5ce73dae4edaf24942582 Mon Sep 17 00:00:00 2001 From: SlaterLatiao <41390071+SlaterLatiao@users.noreply.github.com> Date: Mon, 7 Feb 2022 18:37:49 -0600 Subject: [PATCH 11/77] updated test cases --- .../basic_declarators/abstractpointer.c | 5 --- .../basic_declarators/declarators_list.c | 15 -------- .../injected/abstractpointer.c | 14 +++++++ .../injected/declarators_list.c | 19 ++++++++++ .../{ => injected}/initializers.c | 15 ++++++-- .../{ => injected}/qualifiers1.c | 18 ++++++--- .../basic_declarators/injected/qualifiers2.c | 19 ++++++++++ .../basic_declarators/injected/qualifiers3.c | 25 +++++++++++++ .../basic_declarators/qualifiers2.c | 13 ------- .../basic_declarators/qualifiers3.c | 19 ---------- .../{ => injected}/struct_anonymous_local.c | 14 ++++--- .../{ => injected}/struct_crossref.c | 18 ++++++--- .../injected/struct_nested.c | 16 ++++++++ .../{ => injected}/union_transparent_union.c | 15 +++++--- .../struct_nested.c | 14 ------- .../{ => injected}/typedefs.c | 12 ++++-- .../identifier_and_function_call/all.sh | 12 ------ .../identifier_and_function_call/defs.c | 23 ------------ .../{ => injected}/asm.c | 9 +++-- .../sizeof_configurable_struct.c | 30 --------------- .../increment_decrement.c | 11 ------ .../extern_global_static.c | 11 ------ .../external_declarations/extern_repeated.c | 8 ---- .../injected/extern_global_static.c | 22 +++++++++++ .../injected/extern_repeated.c | 12 ++++++ .../function_parameters_empty_configurable.c | 12 ------ .../ANSI/function_pointer.c | 3 -- .../function_parameters_empty_configurable.c | 28 ++++++++++++++ .../ANSI/injected/function_pointer.c | 14 +++++++ .../language_features/function_definitions/K | 1 - .../K&R/function_abstract_parameter.c | 9 ----- .../K&R/function_no_param_dec.c | 14 ------- .../function_parameters_empty_configurable.c | 21 ----------- .../injected/function_abstract_parameter.c | 17 +++++++++ .../K&R/injected/function_no_param_dec.c | 25 +++++++++++++ .../function_parameters_empty_configurable.c | 37 +++++++++++++++++++ .../{ => injected}/simple_varg.c | 8 +++- .../{ => injected}/varg_declare_define.c | 11 +++++- .../{ => injected}/varg_func_call.c | 13 ++++--- .../varg_typedef_configurable.c | 10 +++-- .../{ => injected}/forloop_duplicate_label.c | 10 ++++- .../{ => injected}/if_label_duplicate.c | 4 +- 42 files changed, 357 insertions(+), 269 deletions(-) delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/abstractpointer.c delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/declarators_list.c create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/abstractpointer.c create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/declarators_list.c rename fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/{ => injected}/initializers.c (71%) rename fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/{ => injected}/qualifiers1.c (55%) create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/qualifiers2.c create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/qualifiers3.c delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/qualifiers2.c delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/qualifiers3.c rename fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/{ => injected}/struct_anonymous_local.c (52%) rename fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/{ => injected}/struct_crossref.c (52%) create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_nested.c rename fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/{ => injected}/union_transparent_union.c (57%) delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/struct_nested.c rename fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/typedef_declarations_specifiers/{ => injected}/typedefs.c (68%) delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/all.sh delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/defs.c rename fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/{ => injected}/asm.c (54%) delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/sizeof_configurable_struct.c delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/unary_binary_ternary/increment_decrement.c delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/external_declarations/extern_global_static.c delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/external_declarations/extern_repeated.c create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/external_declarations/injected/extern_global_static.c create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/external_declarations/injected/extern_repeated.c delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/function_parameters_empty_configurable.c delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/function_pointer.c create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_parameters_empty_configurable.c create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_pointer.c delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/function_abstract_parameter.c delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/function_no_param_dec.c delete mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/function_parameters_empty_configurable.c create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/injected/function_abstract_parameter.c create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/injected/function_no_param_dec.c create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/injected/function_parameters_empty_configurable.c rename fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/variadic_arguments/{ => injected}/simple_varg.c (56%) rename fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/variadic_arguments/{ => injected}/varg_declare_define.c (66%) rename fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/variadic_arguments/{ => injected}/varg_func_call.c (67%) rename fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/variadic_arguments/{ => injected}/varg_typedef_configurable.c (74%) rename fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/statements/control_flow_statements/{ => injected}/forloop_duplicate_label.c (51%) rename fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/statements/control_flow_statements/{ => injected}/if_label_duplicate.c (72%) diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/abstractpointer.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/abstractpointer.c deleted file mode 100644 index 81f8d35b..00000000 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/abstractpointer.c +++ /dev/null @@ -1,5 +0,0 @@ -#ifdef A -int f(int **[4][5]); -#else -int f(int (**[4][5])); -#endif diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/declarators_list.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/declarators_list.c deleted file mode 100644 index 4a512639..00000000 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/declarators_list.c +++ /dev/null @@ -1,15 +0,0 @@ -#ifdef DEC_LIST -int x1, *x2, *(x2b), **x3, (*(*(x3b))), x4a[], x4b[2], x5[3][3], *x6[4], **x7[6], (*x8)[7]; -#else -int x1; -int *x2; -int *(x2b); -int **x3; -int (*(*(x3b))); -int x4a[]; -int x4b[2]; -int x5[3][3]; -int *x6[4]; -int **x7[6]; -int (*x8)[7]; -#endif diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/abstractpointer.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/abstractpointer.c new file mode 100644 index 00000000..d268a1b0 --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/abstractpointer.c @@ -0,0 +1,14 @@ +#ifdef ENABLE_A +int f(int **(x)[4][5]) +#else +int f(int (**(x)[5][6])) +#endif + +{ + return sizeof(*x); +} + +int main() { + return f(0); +} + diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/declarators_list.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/declarators_list.c new file mode 100644 index 00000000..96c14e59 --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/declarators_list.c @@ -0,0 +1,19 @@ +#ifdef ENABLE_A +int x1 = 1, *x2, *(x2b), **x3, (*(*(x3b))), x4a[], x4b[2], x5[3][3], *x6[4], **x7[6], (*x8)[7]; +#else +int x1 = 2; +int *x2; +int *(x2b); +int **x3; +int (*(*(x3b))); +int x4a[]; +int x4b[2]; +int x5[3][3]; +int *x6[4]; +int **x7[6]; +int (*x8)[7]; +#endif + +int main() { + return x1; +} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/initializers.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/initializers.c similarity index 71% rename from fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/initializers.c rename to fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/initializers.c index 7908ddce..49881d4c 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/initializers.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/initializers.c @@ -1,10 +1,8 @@ -#ifdef STRUCT_INIT +#ifdef ENABLE_A struct s { struct { int f; } x[4]; } bob = {.x = {[0].f = 10}}; -#endif - -#ifdef INIT +#else int x1 = 1; int *x2 = 1; int *( x2b) = 1; @@ -17,3 +15,12 @@ int *x6[1] = {0}; int **x7[1] = {0}; int ( *x8)[1] = {0}; #endif + +int main() { + #ifdef ENABLE_A + return bob.x[0].f; + #else + return x4b[1]; + #endif + +} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/qualifiers1.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/qualifiers1.c similarity index 55% rename from fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/qualifiers1.c rename to fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/qualifiers1.c index 738a0f9f..ffef2601 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/qualifiers1.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/qualifiers1.c @@ -1,14 +1,20 @@ -#ifdef COMPLEX -_Complex a; +#ifdef ENABLE_A +_Complex a = 1; _Complex int b; _Complex double c; _Complex float d; _Complex double e; _Complex long double f; -#endif - -#ifdef VOLATILE -float *volatile g; +#else +float *volatile g = 2; int *volatile* h; int * volatile const ** const * volatile * i[2]; #endif + +int main() { + #ifdef ENABLE_A + return a; + #else + return g; + #endif +} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/qualifiers2.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/qualifiers2.c new file mode 100644 index 00000000..d197e216 --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/qualifiers2.c @@ -0,0 +1,19 @@ +#ifdef ENABLE_A +const const float a; +const const const const const float b; +volatile volatile volatile volatile int c = 1; +#else +long d; +long long e; +long int f; +long long int g = 2; +long double h; +#endif + +int main() { + #ifdef ENABLE_A + return c; + #else + return g; + #endif +} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/qualifiers3.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/qualifiers3.c new file mode 100644 index 00000000..4e488924 --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/qualifiers3.c @@ -0,0 +1,25 @@ +#ifdef ENABLE_A +static const int a = 1; +extern const char b; +const float c; +volatile double d; +#else +unsigned char f; +signed long g = 2; +unsigned long h; +signed long long i; +unsigned long long j; +signed long long int k; +unsigned long long int l; +signed int m; +unsigned int n; +#endif + +int main() { + #ifdef ENABLE_A + register const float e; + return a; + #else + return g; + #endif +} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/qualifiers2.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/qualifiers2.c deleted file mode 100644 index a2f75635..00000000 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/qualifiers2.c +++ /dev/null @@ -1,13 +0,0 @@ -#ifdef DUPLICATE -const const float a; -const const const const const float b; -volatile volatile volatile volatile int c; -#endif - -#ifdef LONG -long d; -long long e; -long int f; -long long int g; -long double h; -#endif diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/qualifiers3.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/qualifiers3.c deleted file mode 100644 index 9d2c29f2..00000000 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/qualifiers3.c +++ /dev/null @@ -1,19 +0,0 @@ -#ifdef STATIC_CONST_AUTO_REGISTER -static const int a; -extern const char b; -auto const float c; -auto volatile double d; -register const float e; -#endif - -#ifdef SIGNED_UNSIGNED -unsigned char f; -signed long g; -unsigned long h; -signed long long i; -unsigned long long j; -signed long long int k; -unsigned long long int l; -signed int m; -unsigned int n; -#endif diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/struct_anonymous_local.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_anonymous_local.c similarity index 52% rename from fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/struct_anonymous_local.c rename to fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_anonymous_local.c index 81f69df5..00585ee1 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/struct_anonymous_local.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_anonymous_local.c @@ -1,21 +1,25 @@ -#ifdef ANONYMOUS +#ifdef ENABLE_A struct { char p; } data; #endif int main() { -#ifdef LOCAL_STRUCT +#ifdef ENABLE_A + +#else struct s; struct s { int y; - }; + } data; #endif -#ifdef ANONYMOUS +#ifdef ENABLE_A data.p; #endif - return 0; + return sizeof(data); } + +// sizeof(data) diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/struct_crossref.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_crossref.c similarity index 52% rename from fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/struct_crossref.c rename to fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_crossref.c index 2b59ae70..85028fda 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/struct_crossref.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_crossref.c @@ -1,29 +1,35 @@ struct s1 { int data; -#ifdef GLOBAL +#ifdef ENABLE_A struct s2 *next; #endif }; struct s2 { int data; -#ifdef GLOBAL +#ifdef ENABLE_A struct s1 *next; #endif }; int main() { struct s3 { - int data; -#ifdef LOCAL + long data; +#ifdef ENABLE_A + +#else struct s4 *next; #endif }; struct s4 { - int data; -#ifdef LOCAL + long data; +#ifdef ENABLE_A + +#else struct s3 *next; #endif }; + + return sizeof(struct s1) + sizeof(struct s2) + sizeof(struct s3) + sizeof(struct s4); } diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_nested.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_nested.c new file mode 100644 index 00000000..787f69c2 --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_nested.c @@ -0,0 +1,16 @@ +#ifdef ENABLE_A +struct list { + struct contents { + } data; +} list; +#else +struct list { + struct { + char p; + } data; +} list; +#endif + +int main() { + return sizeof(list.data); +} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/union_transparent_union.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/union_transparent_union.c similarity index 57% rename from fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/union_transparent_union.c rename to fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/union_transparent_union.c index 0e21c546..b76673bc 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/union_transparent_union.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/union_transparent_union.c @@ -1,19 +1,24 @@ typedef union { int* a; long b; -#ifdef TRANSPARENT +#ifdef ENABLE_A } U __attribute__ ((__transparent_union__)); #else } U; #endif -extern void foo(U); +int foo(U x) { + return 1; +} + -#ifdef TRANSPARENT int main () { int x; - foo (&x); + #ifdef ENABLE_A + return foo (&x); + #else return 0; + #endif } -#endif + diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/struct_nested.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/struct_nested.c deleted file mode 100644 index 2297c950..00000000 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/struct_nested.c +++ /dev/null @@ -1,14 +0,0 @@ -#ifdef NESTED -struct list { - struct contents { - } data; -}; -#endif - -#ifdef NESTEDANONYMOUS -struct list2 { - struct { - char p; - } data; -}; -#endif diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/typedef_declarations_specifiers/typedefs.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/typedef_declarations_specifiers/injected/typedefs.c similarity index 68% rename from fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/typedef_declarations_specifiers/typedefs.c rename to fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/typedef_declarations_specifiers/injected/typedefs.c index c20afd21..8ec57018 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/typedef_declarations_specifiers/typedefs.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/typedef_declarations_specifiers/injected/typedefs.c @@ -1,12 +1,16 @@ -#ifdef VALID +#ifdef ENABLE_A typedef unsigned int i; +i y = 10; typedef long long x; typedef const x z; typedef int *q; typedef q w[2]; volatile typedef i j; -#endif - -#ifdef STDDEF +#else typedef long unsigned int size_t; +size_t y = 5; #endif + +int main() { + return y; +} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/all.sh b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/all.sh deleted file mode 100644 index c7aa71df..00000000 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/all.sh +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/bash -for f in *; do - if [[ $f == *".c" ]]; then - clear - java xtc.lang.cpp.SuperC "$f" > "$f.desugared.c" - echo "" - echo "---file:" - echo "" - cat "$f" - echo "$b : $f" - fi -done diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/defs.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/defs.c deleted file mode 100644 index 0cda428e..00000000 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/defs.c +++ /dev/null @@ -1,23 +0,0 @@ -#include -#include -#include -void __static_parse_error(char *msg) { - printf("parse error: %s\n", msg); - exit(-99); -} -void __static_type_error(char *msg) { - printf("type error: %s\n", msg); - exit(-99); -} -void __static_renaming(char *renaming, char *original) { - printf("renaming: %s -> %s\n", original, renaming); -} - -void __static_condition_renaming(char *expression, char *renaming) { - printf("condition renaming: %s -> %s\n", expression, renaming); -} - -const bool __static_condition_default_4 = (0); -const bool __static_condition_default_5 = !(0); -const bool __static_condition_default_10 = (0); -const bool __static_condition_default_11 = !(0); diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/asm.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/injected/asm.c similarity index 54% rename from fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/asm.c rename to fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/injected/asm.c index 39abc6d0..c622c3e7 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/asm.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/injected/asm.c @@ -1,8 +1,9 @@ -int main() -{ +int main() { int val; -#ifdef ASM + #ifdef ENABLE_A __asm__("bswap %0" : "=r" (val) : "0" (val)); -#endif + return 1; + #else return 0; + #endif } diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/sizeof_configurable_struct.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/sizeof_configurable_struct.c deleted file mode 100644 index f2103bea..00000000 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/sizeof_configurable_struct.c +++ /dev/null @@ -1,30 +0,0 @@ -typedef int a; -int x; - -struct one -{ - a a; -#ifdef A - int b; -#endif -}; - -struct two -{ -#ifdef B - int a; - int b; -#else - long long c; - unsigned long long d; -#endif - struct one x; -}; - -int main() -{ - int z; - z = sizeof(struct two); - return z; -} - diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/unary_binary_ternary/increment_decrement.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/unary_binary_ternary/increment_decrement.c deleted file mode 100644 index b5d0e48f..00000000 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/unary_binary_ternary/increment_decrement.c +++ /dev/null @@ -1,11 +0,0 @@ -int main() { - int x; - if (x) { - if (A) - x++; - } else { - if (B) - x--; - } - return 0; -} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/external_declarations/extern_global_static.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/external_declarations/extern_global_static.c deleted file mode 100644 index 85acf57c..00000000 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/external_declarations/extern_global_static.c +++ /dev/null @@ -1,11 +0,0 @@ -#ifdef A -int f(int x) { - return x + 1; -} -#elif B -static int f(int x) { - return x + 1; -} -#else -extern int f(int x); -#endif diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/external_declarations/extern_repeated.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/external_declarations/extern_repeated.c deleted file mode 100644 index ccb1e6bf..00000000 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/external_declarations/extern_repeated.c +++ /dev/null @@ -1,8 +0,0 @@ -extern int a; -#ifdef MULTI -extern int a; -#endif - -int main() { - a++; -} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/external_declarations/injected/extern_global_static.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/external_declarations/injected/extern_global_static.c new file mode 100644 index 00000000..b5399851 --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/external_declarations/injected/extern_global_static.c @@ -0,0 +1,22 @@ +#ifdef ENABLE_A +int f(int x) { + return x + 1; +} +#elif ENABLE_B +static int f(int x) { + return x + 2; +} +#else +extern int f(int x); +#endif + +int main() { + int x = 0; + #ifdef ENABLE_A + return f(x); + #elif ENABLE_B + return f(x); + #else + return 0; + #endif +} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/external_declarations/injected/extern_repeated.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/external_declarations/injected/extern_repeated.c new file mode 100644 index 00000000..51c70e63 --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/external_declarations/injected/extern_repeated.c @@ -0,0 +1,12 @@ +extern int a; +#ifdef ENABLE_A +extern int a; +#endif + +int main() { + int a = 0; + #ifdef ENABLE_A + a++; + #endif + return a; +} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/function_parameters_empty_configurable.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/function_parameters_empty_configurable.c deleted file mode 100644 index 400ce4ca..00000000 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/function_parameters_empty_configurable.c +++ /dev/null @@ -1,12 +0,0 @@ -int f( -#ifdef B - int x, -#ifdef A - int y, -#endif - int z -#else - int a -#endif - ) { -} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/function_pointer.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/function_pointer.c deleted file mode 100644 index 13c50e66..00000000 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/function_pointer.c +++ /dev/null @@ -1,3 +0,0 @@ -#ifdef FUNC_PTR -void (*fun_ptr)(int); -#endif diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_parameters_empty_configurable.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_parameters_empty_configurable.c new file mode 100644 index 00000000..59662a2b --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_parameters_empty_configurable.c @@ -0,0 +1,28 @@ +int f( +#ifdef ENABLE_B + int x, +#ifdef ENABLE_A + int y, +#endif + int z +#else + int a +#endif + ) { +} + +int main() { + int k; + #ifdef ENABLE_B + #ifdef ENABLE_A + k = f(1, 2, 3); + return 6; + #else + k = f(1, 3); + return 3; + #endif + #else + k = f(4); + return 4; + #endif +} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_pointer.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_pointer.c new file mode 100644 index 00000000..f45a247e --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_pointer.c @@ -0,0 +1,14 @@ +#ifdef ENABLE_A +int foo(int x) {return 1;} + +int (*fun_ptr)(int) = &foo; +#endif + +int main() { +#ifdef ENABLE_A + return fun_ptr(0); +#else + return 0; +#endif + +} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K deleted file mode 100644 index 6b657d4f..00000000 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K +++ /dev/null @@ -1 +0,0 @@ -sh: 1: R/injected/function_configurably_defined.desugared.c: not found diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/function_abstract_parameter.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/function_abstract_parameter.c deleted file mode 100644 index a59ab2e1..00000000 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/function_abstract_parameter.c +++ /dev/null @@ -1,9 +0,0 @@ -#ifdef ABSTRACT_PARAM -int foo(); - -int foo(x) - int *x; -{ - return 1; -} -#endif diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/function_no_param_dec.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/function_no_param_dec.c deleted file mode 100644 index 97ce5ef2..00000000 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/function_no_param_dec.c +++ /dev/null @@ -1,14 +0,0 @@ -#ifdef ENABLE_A -int foo(int a); -#else -int foo(); -#endif - -int foo(int a) { - return a; -} - -int main() { - foo(1); - return 0; -} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/function_parameters_empty_configurable.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/function_parameters_empty_configurable.c deleted file mode 100644 index 353dbcfe..00000000 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/function_parameters_empty_configurable.c +++ /dev/null @@ -1,21 +0,0 @@ -int f( -#ifdef B - x, -#ifdef A - y, -#endif - z -#else - a -#endif - ) -#ifdef B - int x; -#ifdef A - int y; -#endif - int z; -#else - int a; -#endif -{} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/injected/function_abstract_parameter.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/injected/function_abstract_parameter.c new file mode 100644 index 00000000..b481f621 --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/injected/function_abstract_parameter.c @@ -0,0 +1,17 @@ +#ifdef ENABLE_A +int foo(); + +int foo(x) + int *x; +{ + return 1; +} +#endif + +int main() { + #ifdef ENABLE_A + return foo(0); + #else + return 0; + #endif +} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/injected/function_no_param_dec.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/injected/function_no_param_dec.c new file mode 100644 index 00000000..e37155e3 --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/injected/function_no_param_dec.c @@ -0,0 +1,25 @@ +#ifdef ENABLE_A +int foo(int a); +#else +int foo(); +#endif + +#ifdef ENABLE_A +int foo(a) + int a; +{ + return a; +} +#else +int foo() { + return 0; +} +#endif + +int main() { + #ifdef ENABLE_A + return foo(2); + #else + return foo(); + #endif +} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/injected/function_parameters_empty_configurable.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/injected/function_parameters_empty_configurable.c new file mode 100644 index 00000000..84f26703 --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/injected/function_parameters_empty_configurable.c @@ -0,0 +1,37 @@ +int f( +#ifdef ENABLE_B + x, +#ifdef ENABLE_A + y, +#endif + z +#else + a +#endif + ) +#ifdef ENABLE_B + int x; +#ifdef ENABLE_A + int y; +#endif + int z; +#else + int a; +#endif +{} + +int main() { + int k; + #ifdef ENABLE_B + #ifdef ENABLE_A + k = f(1, 2, 3); + return 6; + #else + k = f(1, 3); + return 3; + #endif + #else + k = f(4); + return 4; + #endif +} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/variadic_arguments/simple_varg.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/variadic_arguments/injected/simple_varg.c similarity index 56% rename from fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/variadic_arguments/simple_varg.c rename to fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/variadic_arguments/injected/simple_varg.c index 3d3c2b0b..75b2f4f8 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/variadic_arguments/simple_varg.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/variadic_arguments/injected/simple_varg.c @@ -1,4 +1,4 @@ -#ifdef A +#ifdef ENABLE_A int foo (int a, ...) #else int foo (int a, int b, int c, int d) @@ -8,5 +8,11 @@ int foo (int a, int b, int c, int d) } int main () { + #ifdef ENABLE_A + foo (1, 2); + return 3; + #else foo (1, 2, 3, 4); + return 10; + #endif } diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/variadic_arguments/varg_declare_define.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/variadic_arguments/injected/varg_declare_define.c similarity index 66% rename from fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/variadic_arguments/varg_declare_define.c rename to fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/variadic_arguments/injected/varg_declare_define.c index 29cdd416..db472fc0 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/variadic_arguments/varg_declare_define.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/variadic_arguments/injected/varg_declare_define.c @@ -1,6 +1,6 @@ #include -#ifdef DECLARE +#ifdef ENABLE_A int foo(int num, ...); #endif @@ -14,3 +14,12 @@ int foo(int num, ...) { va_end(valist); return sum; } + +int main() { + #ifdef ENABLE_A + return foo(4, 2, 3, 4, 5); + #else + return foo(2, 1, 2); + #endif + +} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/variadic_arguments/varg_func_call.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/variadic_arguments/injected/varg_func_call.c similarity index 67% rename from fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/variadic_arguments/varg_func_call.c rename to fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/variadic_arguments/injected/varg_func_call.c index 66801102..7ce75ace 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/variadic_arguments/varg_func_call.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/variadic_arguments/injected/varg_func_call.c @@ -1,6 +1,6 @@ #include -#ifdef VARG +#ifdef ENABLE_A int foo(int num, ...) { int sum = 0; va_list valist; @@ -11,10 +11,13 @@ int foo(int num, ...) { va_end(valist); return sum; } +#endif int main() { - foo(2, 1, 3); - foo(3, 1, 2, 3); - return 0; + #ifdef ENABLE_A + return foo(2, 1, 3) + foo(3, 1, 2, 3); + #else + return 0; + #endif } -#endif + diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/variadic_arguments/varg_typedef_configurable.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/variadic_arguments/injected/varg_typedef_configurable.c similarity index 74% rename from fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/variadic_arguments/varg_typedef_configurable.c rename to fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/variadic_arguments/injected/varg_typedef_configurable.c index a1a799a7..19de91d7 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/variadic_arguments/varg_typedef_configurable.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/variadic_arguments/injected/varg_typedef_configurable.c @@ -1,7 +1,7 @@ -#ifdef A +#ifdef ENABLE_A typedef int x; #else -typedef float x; +typedef double x; #endif #include @@ -11,7 +11,7 @@ x foo(int num, ...) { va_list valist; va_start(valist, num); for (int i = 0; i < num; i++) { -#ifdef A +#ifdef ENABLE_A sum += va_arg(valist, int); #else sum += va_arg(valist, double); @@ -20,3 +20,7 @@ x foo(int num, ...) { va_end(valist); return sum; } + +int main() { + return sizeof(foo(2, 1, 3)); +} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/statements/control_flow_statements/forloop_duplicate_label.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/statements/control_flow_statements/injected/forloop_duplicate_label.c similarity index 51% rename from fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/statements/control_flow_statements/forloop_duplicate_label.c rename to fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/statements/control_flow_statements/injected/forloop_duplicate_label.c index af5601f8..c2543d4c 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/statements/control_flow_statements/forloop_duplicate_label.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/statements/control_flow_statements/injected/forloop_duplicate_label.c @@ -1,7 +1,9 @@ int foo() { - int ret = 0; + int ret = 1; for (int i = 0; i < 10; i++) { -#ifdef A +#ifdef ENABLE_A + if (i % 2) goto lab; + ret++; lab: ret *= 2; #endif @@ -9,3 +11,7 @@ int foo() { } return ret; } + +int main() { + return foo(); +} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/statements/control_flow_statements/if_label_duplicate.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/statements/control_flow_statements/injected/if_label_duplicate.c similarity index 72% rename from fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/statements/control_flow_statements/if_label_duplicate.c rename to fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/statements/control_flow_statements/injected/if_label_duplicate.c index f781393a..21208c2f 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/statements/control_flow_statements/if_label_duplicate.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/statements/control_flow_statements/injected/if_label_duplicate.c @@ -1,11 +1,11 @@ int main() { - int x; + int x = 2; if (x) { goto lab; } lab: - #ifdef A + #ifdef ENABLE_A x = 1; #endif return x; From 1252ac429d535e781e1abd757257db537d4dd712 Mon Sep 17 00:00:00 2001 From: pattersonz Date: Sat, 12 Feb 2022 14:44:08 -0600 Subject: [PATCH 12/77] updated code and results of benchmark --- .../microbenchmark/autoRunnerResults.txt | 78 ++++++------------- .../desugarer/microbenchmark/autorunner.py | 4 +- .../injected/extern_global_static.c | 4 +- .../injected/function_abstract_parameter.c | 2 +- src/superc/cdesugarer/CActions.java | 25 ++++-- src/superc/cdesugarer/desugarer.y | 23 ++++-- 6 files changed, 63 insertions(+), 73 deletions(-) diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/autoRunnerResults.txt b/fonda/cpp_testsuite/desugarer/microbenchmark/autoRunnerResults.txt index e241ff77..11478d6e 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/autoRunnerResults.txt +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/autoRunnerResults.txt @@ -1,35 +1,41 @@ ~~~Results~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/external_declarations/extern_repeated.c :: match -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/external_declarations/extern_global_static.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/struct_local_illegal.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/array_invalid_size.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/function_function_parameters.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/invalid_types.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/syntactic_error_integration/struct_prohibit_initializer.c :: match -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/qualifiers3.c :: match -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/struct_anonymous_local.c :: match -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/struct_crossref.c :: match -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/union_transparent_union.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/external_declarations/injected/extern_function_dec_def.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/external_declarations/injected/extern_var_dec_configurable.c :: match -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/sizeof_configurable_struct.c :: match -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/asm.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/external_declarations/injected/extern_repeated.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/external_declarations/injected/extern_global_static.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_typedef_parameter_configurable.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_parameters_configurable.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_parameters_empty_configurable.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_abstract_parameter.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/basic_functions.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_pointer.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_parameter_multiple_config.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/variadic_arguments/injected/simple_varg.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_flex.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/scope_partial_declaration2.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_init_compound.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/declaring_list_partial_config.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_conditional_flex.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/scope_partial_declaration1.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/declarators_list.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/configurable_pointer.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/configurable_array.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/qualifiers3.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/qualifiers1.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/initializers.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/qualifiers2.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/configurable_pointer_level.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_init_length_implicity.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/configurable_primitive.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_init_elem_configurable.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_nested.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_anonymous_local.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_crossref.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/enum_configurable_elem.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/union_init_in_expression.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_configurable_cross_and_forward_ref.c :: match @@ -37,14 +43,18 @@ /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_array_typedef.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_undef_cast.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_tagged.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/union_transparent_union.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_selfref.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_configurable2.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_forward.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/struct_configurable1.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/typedef_declarations_specifiers/injected/typedef_configurable.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/typedef_declarations_specifiers/injected/typedefs.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/typedef_declarations_specifiers/injected/typedef_void.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/typedef_declarations_specifiers/injected/typedef_local_declaration.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/typedef_declarations_specifiers/injected/typedef_struct_field.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/statements/control_flow_statements/injected/if_label_duplicate.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/statements/control_flow_statements/injected/forloop_duplicate_label.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/statements/control_flow_statements/injected/switch_case_configrable.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/statements/control_flow_statements/injected/switch_variable_configurable.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/statements/control_flow_statements/injected/jump.c :: match @@ -56,6 +66,7 @@ /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/injected/negative_sizeof.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/injected/typeof_union_field.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/injected/func_call_param.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/injected/asm.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/injected/funcptr_call_param.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/unary_binary_ternary/injected/bitfield.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/unary_binary_ternary/injected/assignment_configurable.c :: match @@ -124,54 +135,15 @@ /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/syntactic_error_integration/enum_error.c :: 1/2 ['0', '0']/['0', '157'] [' REPEATED::0/157'] -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/function_parameters_empty_configurable.c :: 0/4 - ['127', '127', '127', '127']/['157', '157', '157', '157'] - ['::127/157', ' B::127/157', ' A::127/157', ' B A::127/157'] -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/function_pointer.c :: 0/2 - ['127', '127']/['157', '157'] - ['::127/157', ' FUNC_PTR::127/157'] -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/variadic_arguments/simple_varg.c :: 1/2 - ['0', '0']/['1', '0'] - ['::0/1'] -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/function_parameters_empty_configurable.c :: did not desug -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/function_abstract_parameter.c :: did not desug -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/function_no_param_dec.c :: did not desug -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/declarators_list.c :: 0/2 - ['127', '127']/['157', '157'] - ['::127/157', ' DEC_LIST::127/157'] -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/abstractpointer.c :: 0/2 - ['127', '127']/['157', '157'] - ['::127/157', ' A::127/157'] -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/qualifiers1.c :: 0/4 - ['127', '127', '127', '127']/['157', '157', '157', '157'] - ['::127/157', ' COMPLEX::127/157', ' VOLATILE::127/157', ' COMPLEX VOLATILE::127/157'] -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/initializers.c :: 0/4 - ['127', '127', '127', '127']/['157', '157', '157', '157'] - ['::127/157', ' STRUCT_INIT::127/157', ' INIT::127/157', ' STRUCT_INIT INIT::127/157'] -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/qualifiers2.c :: 0/4 - ['127', '127', '127', '127']/['157', '157', '157', '157'] - ['::127/157', ' DUPLICATE::127/157', ' LONG::127/157', ' DUPLICATE LONG::127/157'] -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/struct_nested.c :: 0/4 - ['127', '127', '127', '127']/['157', '157', '157', '157'] - ['::127/157', ' NESTED::127/157', ' NESTEDANONYMOUS::127/157', ' NESTED NESTEDANONYMOUS::127/157'] -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/typedef_declarations_specifiers/typedefs.c :: 0/4 - ['127', '127', '127', '127']/['157', '157', '157', '157'] - ['::127/157', ' VALID::127/157', ' STDDEF::127/157', ' VALID STDDEF::127/157'] -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/statements/control_flow_statements/if_label_duplicate.c :: 1/2 - ['0', '1']/['128', '1'] - ['::0/128'] -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/statements/control_flow_statements/forloop_duplicate_label.c :: 0/2 - ['127', '127']/['157', '157'] - ['::127/157', ' A::127/157'] -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/unary_binary_ternary/increment_decrement.c :: 0/1 - ['0']/['157'] - ['::0/157'] -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_abstract_parameter.c :: 1/2 - ['3', '4']/['4', '4'] - ['::3/4'] /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/injected/function_typedef_parameter_configurable.c :: did not desug /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/injected/function_parameters_configurable.c :: did not desug +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/injected/function_parameters_empty_configurable.c :: did not desug +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/injected/function_abstract_parameter.c :: did not desug /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/injected/function_configurably_defined.c :: did not desug +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/injected/function_no_param_dec.c :: did not desug +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/abstractpointer.c :: 1/2 + ['48', '40']/['157', '40'] + ['::48/157'] /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/struct_union_enum_specifiers/injected/enum_assign_forward_ref.c :: 2/4 ['3', '6', '9', '12']/['3', '6', '5', '8'] [' ENABLE_B::9/5', ' ENABLE_A ENABLE_B::12/8'] diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/autorunner.py b/fonda/cpp_testsuite/desugarer/microbenchmark/autorunner.py index 98314bcb..c2b55e8d 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/autorunner.py +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/autorunner.py @@ -22,10 +22,10 @@ def getMacroList(f): ms = [] o = open(f,'r') for l in o: - if "ifdef" in l: + if "ifdef" in l or "elif" in l: words = (re.sub(' +', ' ', l)).split(' ') for w in words: - if 'ifdef' in w: + if 'ifdef' in w or ( "elif" in l and "defined" in w): conf = words[words.index(w)+1] conf = conf.strip('\n') if conf not in ms: diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/external_declarations/injected/extern_global_static.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/external_declarations/injected/extern_global_static.c index b5399851..8cd399a6 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/external_declarations/injected/extern_global_static.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/external_declarations/injected/extern_global_static.c @@ -2,7 +2,7 @@ int f(int x) { return x + 1; } -#elif ENABLE_B +#elif defined ENABLE_B static int f(int x) { return x + 2; } @@ -14,7 +14,7 @@ int main() { int x = 0; #ifdef ENABLE_A return f(x); - #elif ENABLE_B + #elif defined ENABLE_B return f(x); #else return 0; diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_abstract_parameter.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_abstract_parameter.c index f87363cc..25d422ec 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_abstract_parameter.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_abstract_parameter.c @@ -15,7 +15,7 @@ int foo(int *x) #else int foo (void) { return 2; } int *fwo(void) { int x = 1; return &x; } -int fwotwo(void*,void*) { return 1;} +int fwotwo(void*a,void*b) { return 1;} #endif int main() { diff --git a/src/superc/cdesugarer/CActions.java b/src/superc/cdesugarer/CActions.java index 2b52052c..aff3fe12 100644 --- a/src/superc/cdesugarer/CActions.java +++ b/src/superc/cdesugarer/CActions.java @@ -4178,6 +4178,7 @@ public Object action(int production, Subparser subparser, Object value) { } parametersmv.destruct(); // no need to filter, since we started parametersmv with the subparser pc + System.err.println(paramlistmv); setTransformationValue(value, paramlistmv); } break; @@ -5765,7 +5766,7 @@ public Object action(int production, Subparser subparser, Object value) { ExpressionValue postfixexprval = getCompleteNodeExpressionValue(subparser, 4, pc); /* System.err.println("PFTYPE: " + postfixexprval.type); */ /* System.err.println("PFTRAN: " + postfixexprval.transformation); */ - if (postfixexprval.hasValidType()) { + if (postfixexprval.hasValidType()) { /* postfixexprval.transformation; */ Multiverse lparen = new Multiverse((String) getNodeAt(subparser, 3).getTokenText(), pc); @@ -5778,15 +5779,15 @@ public Object action(int production, Subparser subparser, Object value) { // similar. List exprlist = (List) getTransformationValue(subparser, 2); - System.err.println(exprlist); + System.err.println(exprlist); Multiverse> exprlistmv = new Multiverse>(new LinkedList(), pc); Multiverse> exprlisttypemv = new Multiverse>(new LinkedList(), pc); boolean hasinvalidparameter = false; for (ExpressionValue listelem : exprlist) { - if (! listelem.hasValidType()) { - hasinvalidparameter = true; + if (! listelem.hasValidType()) { + hasinvalidparameter = true; break; } // wrap each listelem's string and type in a list @@ -5895,7 +5896,7 @@ else if (size1 > size2) { break; } - } else if (compatTypes(formal, actual)) { + } else if (compatParam(formal, actual)) { valuemv = appendStringToMV(valuemv, exprliststring.getData().get(i) + ",", combinedCond); } else { match = false; @@ -5935,8 +5936,8 @@ else if (size1 > size2) { PresenceCondition new_errorCond = errorCond.or(postfixelem.getCondition()); // TODO: unit test valuemv = valuemv.filter(postfixelem.getCondition().not()); - valuemv.add(emitError("attempting function call on non-function type"),postfixelem.getCondition()); - errorCond.delRef(); errorCond = new_errorCond; + valuemv.add(emitError("attempting function call on non-function type"),postfixelem.getCondition()); + errorCond.delRef(); errorCond = new_errorCond; } // end check for function type } // end loop over postfixelems typemv.add(ErrorT.TYPE, errorCond); @@ -9288,7 +9289,7 @@ static public Multiverse sizeofExpansion(Multiverse es, Multiver } else { if (!es.isEmpty() && !(es.filter(et.getCondition())).isEmpty()) { for (Element ex : es.filter(et.getCondition())) { - if (ex.getData().equals("") || et.getData().isPointer()) { + if (ex.getData().equals("")) { ret.add("sizeof(" + et.getData().printType() + ")",ex.getCondition()); } else { ret.add("sizeof(" + ex.getData() + ")",ex.getCondition()); @@ -9319,6 +9320,14 @@ static public Multiverse hasField(UnionT u, Type t, CContext scope, Pre return res; } +static public boolean compatParam(Type t1u, Type t2u) { + Type t1 = t1u.resolve(), t2 = t2u.resolve(); + if ((t1.isPointer() || t1.isArray()) && t2.isNumber()) { + return true; + } + return compatTypes(t1u,t2u); +} + static public boolean compatTypes(Type t1u, Type t2u) { Type t1 = t1u.resolve(), t2 = t2u.resolve(); //we'll say that numbers are compatible diff --git a/src/superc/cdesugarer/desugarer.y b/src/superc/cdesugarer/desugarer.y index 1785af5a..5b1a56f2 100644 --- a/src/superc/cdesugarer/desugarer.y +++ b/src/superc/cdesugarer/desugarer.y @@ -4269,6 +4269,7 @@ PostfixingFunctionDeclarator: /** nomerge **/ // Multiverse lparen = new Multiverse((String) getNodeAt(subparser, 3).getTokenText(), pc); @@ -5838,15 +5839,15 @@ FunctionCall: /** nomerge **/ // similar. List exprlist = (List) getTransformationValue(subparser, 2); - System.err.println(exprlist); + System.err.println(exprlist); Multiverse> exprlistmv = new Multiverse>(new LinkedList(), pc); Multiverse> exprlisttypemv = new Multiverse>(new LinkedList(), pc); boolean hasinvalidparameter = false; for (ExpressionValue listelem : exprlist) { - if (! listelem.hasValidType()) { - hasinvalidparameter = true; + if (! listelem.hasValidType()) { + hasinvalidparameter = true; break; } // wrap each listelem's string and type in a list @@ -5955,7 +5956,7 @@ FunctionCall: /** nomerge **/ break; } - } else if (compatTypes(formal, actual)) { + } else if (compatParam(formal, actual)) { valuemv = appendStringToMV(valuemv, exprliststring.getData().get(i) + ",", combinedCond); } else { match = false; @@ -5995,8 +5996,8 @@ FunctionCall: /** nomerge **/ PresenceCondition new_errorCond = errorCond.or(postfixelem.getCondition()); // TODO: unit test valuemv = valuemv.filter(postfixelem.getCondition().not()); - valuemv.add(emitError("attempting function call on non-function type"),postfixelem.getCondition()); - errorCond.delRef(); errorCond = new_errorCond; + valuemv.add(emitError("attempting function call on non-function type"),postfixelem.getCondition()); + errorCond.delRef(); errorCond = new_errorCond; } // end check for function type } // end loop over postfixelems typemv.add(ErrorT.TYPE, errorCond); @@ -9181,6 +9182,14 @@ static public Multiverse hasField(UnionT u, Type t, CContext scope, Pre return res; } +static public boolean compatParam(Type t1u, Type t2u) { + Type t1 = t1u.resolve(), t2 = t2u.resolve(); + if ((t1.isPointer() || t1.isArray()) && t2.isNumber()) { + return true; + } + return compatTypes(t1u,t2u); +} + static public boolean compatTypes(Type t1u, Type t2u) { Type t1 = t1u.resolve(), t2 = t2u.resolve(); //we'll say that numbers are compatible From f5c850020feadacab3f95dab1a5c756c8cb8268e Mon Sep 17 00:00:00 2001 From: pattersonz Date: Mon, 7 Mar 2022 23:57:29 -0600 Subject: [PATCH 13/77] added functionality for keeping free/malloc/calloc functions as is, added script for automatically comparing alarms in varBugs --- .gitignore | 2 + .../varBugs/APACHE/0900800fbab.desugared.c | 10 +- .../varBugs/APACHE/0ddfa412ee9.desugared.c | 2 +- .../varBugs/APACHE/1a3c8e3d840.desugared.c | 110 +- .../varBugs/APACHE/1b48bb3c1af.desugared.c | 488 +- .../varBugs/APACHE/1f46088b38d.desugared.c | 498 +- .../varBugs/APACHE/2a6cbfa00e0.desugared.c | 156 +- .../varBugs/APACHE/3407eccc321.desugared.c | 632 +-- .../varBugs/APACHE/35ae2e259e4.desugared.c | 146 +- .../varBugs/APACHE/4202d5fee3e.desugared.c | 484 +- .../varBugs/APACHE/4945115b2e7.desugared.c | 742 +-- .../varBugs/APACHE/56d9881993f.desugared.c | 2 +- .../varBugs/APACHE/6338509eb37.desugared.c | 480 +- .../varBugs/APACHE/664e3aac6dd.desugared.c | 144 +- .../varBugs/APACHE/9327311d30f.desugared.c | 18 +- .../varBugs/APACHE/97ecbec1237.desugared.c | 134 +- .../varBugs/APACHE/bbeb0516cf0.desugared.c | 138 +- .../varBugs/APACHE/c76df14dfb4.desugared.c | 684 +-- .../varBugs/APACHE/d0040a07aec.desugared.c | 630 +-- .../varBugs/APACHE/d05e574ec26.desugared.c | 634 +-- .../varBugs/APACHE/dbafef17dd1.desugared.c | 150 +- .../varBugs/BUSYBOX/061fd0a353e.desugared.c | 674 +-- .../varBugs/BUSYBOX/192c35f6eb2.desugared.c | 558 +-- .../varBugs/BUSYBOX/199501f2a00.desugared.c | 686 +-- .../varBugs/BUSYBOX/1b487ea8a69.desugared.c | 662 +-- .../varBugs/BUSYBOX/2631486f1bf.desugared.c | 812 +-- .../varBugs/BUSYBOX/5275b1e49f6.desugared.c | 660 +-- .../varBugs/BUSYBOX/5cd6461b6fb.desugared.c | 642 +-- .../varBugs/BUSYBOX/95755181b82.desugared.c | 794 +-- .../varBugs/BUSYBOX/b273d665181.desugared.c | 662 +-- .../varBugs/BUSYBOX/b62bd7b261b.desugared.c | 700 +-- .../varBugs/BUSYBOX/b7ebc61b54f.desugared.c | 102 +- .../varBugs/BUSYBOX/bc0ffc0e971.desugared.c | 900 ++-- .../varBugs/BUSYBOX/cf1f2ace391.desugared.c | 878 ++-- .../varBugs/BUSYBOX/df7b6577c6a.desugared.c | 484 +- .../varBugs/BUSYBOX/ebee301c8b0.desugared.c | 628 +-- .../varBugs/BUSYBOX/eef2317b9f5.desugared.c | 122 +- .../varBugs/LINUX/0988c4c7fb5.desugared.c | 14 +- .../varBugs/LINUX/0dc77b6dabe.desugared.c | 18 +- .../cpp_testsuite/varBugs/LINUX/0f8f8094d28.c | 4 +- .../varBugs/LINUX/0f8f8094d28.desugared.c | 145 + .../varBugs/LINUX/1c17e4d4437.desugared.c | 6 +- .../varBugs/LINUX/1f758a4341a.desugared.c | 6 +- .../varBugs/LINUX/208d89843b7.desugared.c | 108 +- .../varBugs/LINUX/218ad12f42e.desugared.c | 12 +- .../varBugs/LINUX/221ac329e93.desugared.c | 1466 +++--- .../varBugs/LINUX/242f1a34377.desugared.c | 4 +- .../varBugs/LINUX/2f02c15a5d9.desugared.c | 6 +- .../varBugs/LINUX/30e053248da.desugared.c | 2 +- .../varBugs/LINUX/472a474c663.desugared.c | 6 +- .../cpp_testsuite/varBugs/LINUX/51fd36f3fad.c | 6 +- .../varBugs/LINUX/51fd36f3fad.desugared.c | 330 ++ .../cpp_testsuite/varBugs/LINUX/60e233a5660.c | 2 +- .../varBugs/LINUX/60e233a5660.desugared.c | 576 ++- .../varBugs/LINUX/6252547b8a7.desugared.c | 10 +- .../cpp_testsuite/varBugs/LINUX/63878acfafb.c | 1 + .../varBugs/LINUX/63878acfafb.desugared.c | 292 ++ .../varBugs/LINUX/6515e48932c.desugared.c | 6 +- .../varBugs/LINUX/657e9649e74.desugared.c | 16 +- .../varBugs/LINUX/66517915e09.desugared.c | 8 +- .../varBugs/LINUX/68bb91baa0.desugared.c | 12 +- .../varBugs/LINUX/6e2b75740be.desugared.c | 18 +- .../varBugs/LINUX/7acf6cd80b2.desugared.c | 8 +- .../varBugs/LINUX/7c6048b7c83.desugared.c | 2 +- .../varBugs/LINUX/8c8296223f3.desugared.c | 108 +- .../varBugs/LINUX/91ea8207168.desugared.c | 54 +- .../varBugs/LINUX/ae249b5fa27.desugared.c | 64 +- .../varBugs/LINUX/bc8cec0dff0.desugared.c | 8 +- .../varBugs/LINUX/c708c57e247.desugared.c | 2 +- .../varBugs/LINUX/d530db0db90.desugared.c | 106 +- .../varBugs/LINUX/d549f55f2e1.desugared.c | 118 +- .../varBugs/LINUX/d6c7e113959.desugared.c | 6 +- .../varBugs/LINUX/d7e9711760a.desugared.c | 102 +- .../varBugs/LINUX/e1fbd9210d5.desugared.c | 500 +- .../varBugs/LINUX/e39363a9def.desugared.c | 2 +- .../varBugs/LINUX/e67bc51e574.desugared.c | 2 +- .../varBugs/LINUX/eb91f1d0a53.desugared.c | 42 +- .../varBugs/LINUX/ee3f34e8572.desugared.c | 132 +- .../varBugs/LINUX/f3d83e24154.desugared.c | 26 +- .../varBugs/MARLIN/2d22902d080.desugared.c | 14 +- .../varBugs/MARLIN/2db384a21d6.c | 4 +- .../varBugs/MARLIN/2db384a21d6.desugared.c | 95 +- .../varBugs/MARLIN/30248214c7f.desugared.c | 482 +- .../varBugs/MARLIN/31873ec707d.desugared.c | 474 +- .../varBugs/MARLIN/53be0f3399e.desugared.c | 4399 ++++++++++++----- .../varBugs/MARLIN/7336e6df070.desugared.c | 478 +- .../varBugs/MARLIN/831016b09f7.c | 1 - .../varBugs/MARLIN/831016b09f7.desugared.c | 105 + .../varBugs/MARLIN/8c4377dd635.desugared.c | 14 +- .../varBugs/MARLIN/a7fc1f83c81.desugared.c | 16 +- .../varBugs/MARLIN/b8e79dce897.desugared.c | 514 +- .../varBugs/MARLIN/f87c80889fe.desugared.c | 666 +-- .../varBugs/MARLIN/fdac8f6cece.desugared.c | 2 +- .../varBugs/MARLIN/util/atomic.h | 308 ++ .../cpp_testsuite/varBugs/MARLIN/util/crc16.h | 403 ++ .../cpp_testsuite/varBugs/MARLIN/util/delay.h | 302 ++ .../varBugs/MARLIN/util/delay_basic.h | 113 + .../varBugs/MARLIN/util/eu_dst.h | 116 + .../varBugs/MARLIN/util/parity.h | 65 + .../varBugs/MARLIN/util/setbaud.h | 243 + fonda/cpp_testsuite/varBugs/MARLIN/util/twi.h | 237 + .../varBugs/MARLIN/util/usa_dst.h | 130 + fonda/cpp_testsuite/varBugs/backup.json | 1 + fonda/cpp_testsuite/varBugs/configs.json | 1 + fonda/cpp_testsuite/varBugs/runTests.py | 99 +- fonda/cpp_testsuite/varBugs/summaryTable.txt | 206 +- src/superc/SugarC.java | 7 +- src/superc/cdesugarer/CActions.java | 19 +- src/superc/cdesugarer/desugarer.y | 19 +- test.c | 14 + 110 files changed, 17569 insertions(+), 12582 deletions(-) create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/util/atomic.h create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/util/crc16.h create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/util/delay.h create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/util/delay_basic.h create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/util/eu_dst.h create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/util/parity.h create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/util/setbaud.h create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/util/twi.h create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/util/usa_dst.h create mode 100644 fonda/cpp_testsuite/varBugs/backup.json create mode 100644 fonda/cpp_testsuite/varBugs/configs.json create mode 100644 test.c diff --git a/.gitignore b/.gitignore index 4cf288ec..7bfef0e8 100644 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,8 @@ allTests.out *.Log *.o *.pyc +*.plist +*.clangres /fonda/cpp_testsuite/desugarer/masterTypeCheck/binary /fonda/cpp_testsuite/desugarer/masterTypeCheck/unary /fonda/cpp_testsuite/desugarer/masterTypeCheck/other diff --git a/fonda/cpp_testsuite/varBugs/APACHE/0900800fbab.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/0900800fbab.desugared.c index f10110f7..8a1892c4 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/0900800fbab.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/0900800fbab.desugared.c @@ -7,14 +7,14 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_10; -extern const bool __static_condition_default_6; -extern const bool __static_condition_default_3; extern const bool __static_condition_default_4; -extern const bool __static_condition_default_7; -extern const bool __static_condition_default_8; extern const bool __static_condition_default_5; extern const bool __static_condition_default_9; +extern const bool __static_condition_default_7; +extern const bool __static_condition_default_10; +extern const bool __static_condition_default_8; +extern const bool __static_condition_default_3; +extern const bool __static_condition_default_6; void __static_initializer_default() { __static_renaming("__ap_get_server_module_loglevel_0", "ap_get_server_module_loglevel"); __static_renaming("__main_1", "main"); diff --git a/fonda/cpp_testsuite/varBugs/APACHE/0ddfa412ee9.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/0ddfa412ee9.desugared.c index 24e0b1b9..cfae7068 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/0ddfa412ee9.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/0ddfa412ee9.desugared.c @@ -8,8 +8,8 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); extern const bool __static_condition_default_2; -extern const bool __static_condition_default_6; extern const bool __static_condition_default_7; +extern const bool __static_condition_default_6; void __static_initializer_default() { __static_renaming("__ssl_array_index_0", "ssl_array_index"); __static_renaming("__ssl_cmp_alpn_protos_1", "ssl_cmp_alpn_protos"); diff --git a/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.c index 0c3001a4..cf53331d 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.c @@ -7,73 +7,73 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_814; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_240; +extern const bool __static_condition_default_67; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_276; extern const bool __static_condition_default_273; -extern const bool __static_condition_default_267; +extern const bool __static_condition_default_252; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_414; extern const bool __static_condition_default_394; -extern const bool __static_condition_default_813; +extern const bool __static_condition_default_429; +extern const bool __static_condition_default_629; extern const bool __static_condition_default_258; -extern const bool __static_condition_default_604; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_285; -extern const bool __static_condition_default_325; -extern const bool __static_condition_default_595; -extern const bool __static_condition_default_808; -extern const bool __static_condition_default_378; -extern const bool __static_condition_default_67; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_802; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_809; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_581; +extern const bool __static_condition_default_810; +extern const bool __static_condition_default_361; +extern const bool __static_condition_default_423; +extern const bool __static_condition_default_341; extern const bool __static_condition_default_352; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_261; +extern const bool __static_condition_default_432; extern const bool __static_condition_default_621; -extern const bool __static_condition_default_302; -extern const bool __static_condition_default_629; -extern const bool __static_condition_default_349; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_423; -extern const bool __static_condition_default_234; -extern const bool __static_condition_default_293; +extern const bool __static_condition_default_285; +extern const bool __static_condition_default_420; +extern const bool __static_condition_default_237; +extern const bool __static_condition_default_378; extern const bool __static_condition_default_594; -extern const bool __static_condition_default_261; +extern const bool __static_condition_default_627; +extern const bool __static_condition_default_814; +extern const bool __static_condition_default_595; +extern const bool __static_condition_default_379; +extern const bool __static_condition_default_349; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_806; extern const bool __static_condition_default_579; -extern const bool __static_condition_default_252; -extern const bool __static_condition_default_60; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_426; +extern const bool __static_condition_default_804; +extern const bool __static_condition_default_325; +extern const bool __static_condition_default_308; +extern const bool __static_condition_default_279; extern const bool __static_condition_default_246; -extern const bool __static_condition_default_810; -extern const bool __static_condition_default_420; -extern const bool __static_condition_default_803; extern const bool __static_condition_default_243; -extern const bool __static_condition_default_361; -extern const bool __static_condition_default_282; +extern const bool __static_condition_default_812; +extern const bool __static_condition_default_808; extern const bool __static_condition_default_249; -extern const bool __static_condition_default_804; -extern const bool __static_condition_default_279; -extern const bool __static_condition_default_305; -extern const bool __static_condition_default_414; -extern const bool __static_condition_default_581; -extern const bool __static_condition_default_806; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_302; +extern const bool __static_condition_default_604; +extern const bool __static_condition_default_234; extern const bool __static_condition_default_255; -extern const bool __static_condition_default_429; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_308; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_299; +extern const bool __static_condition_default_60; +extern const bool __static_condition_default_809; extern const bool __static_condition_default_296; +extern const bool __static_condition_default_802; extern const bool __static_condition_default_215; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_426; -extern const bool __static_condition_default_379; -extern const bool __static_condition_default_237; +extern const bool __static_condition_default_240; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_305; extern const bool __static_condition_default_805; -extern const bool __static_condition_default_627; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_812; -extern const bool __static_condition_default_276; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -604,12 +604,12 @@ struct ____anonymous_tag_70_71 { unsigned int ____w_termsig_72 : 7;// L72 unsigned int ____w_coredump_73 : 1;// L73 unsigned int ____w_retcode_74 : 8;// L74 -unsigned int : 16;// L75 +unsigned int __anon_id_0_75 : 16;// L75 }; struct ____anonymous_tag_76_77 { unsigned int ____w_stopval_78 : 8;// L87 unsigned int ____w_stopsig_79 : 8;// L88 -unsigned int : 16;// L89 +unsigned int __anon_id_1_80 : 16;// L89 }; union __wait_81 { int __w_status_82;// L68 diff --git a/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c index c25dff41..c5775460 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c @@ -7,284 +7,284 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_313; +extern const bool __static_condition_default_382; +extern const bool __static_condition_default_1043; extern const bool __static_condition_default_380; -extern const bool __static_condition_default_613; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_721; +extern const bool __static_condition_default_365; +extern const bool __static_condition_default_1102; +extern const bool __static_condition_default_1105; +extern const bool __static_condition_default_791; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_963; +extern const bool __static_condition_default_1103; +extern const bool __static_condition_default_619; +extern const bool __static_condition_default_1108; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_1109; extern const bool __static_condition_default_715; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_311; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_846; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_702; -extern const bool __static_condition_default_431; -extern const bool __static_condition_default_382; -extern const bool __static_condition_default_461; -extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_408; -extern const bool __static_condition_default_769; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_583; extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_198; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_204; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_633; extern const bool __static_condition_default_747; -extern const bool __static_condition_default_875; +extern const bool __static_condition_default_512; +extern const bool __static_condition_default_649; extern const bool __static_condition_default_684; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_894; +extern const bool __static_condition_default_1110; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_299; extern const bool __static_condition_default_801; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_488; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_311; extern const bool __static_condition_default_550; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_1103; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_1098; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_878; extern const bool __static_condition_default_701; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_412; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_53; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_187; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_632; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_1105; -extern const bool __static_condition_default_1108; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_649; +extern const bool __static_condition_default_813; extern const bool __static_condition_default_955; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_1102; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_753; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_894; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_536; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_521; -extern const bool __static_condition_default_543; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_613; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_549; extern const bool __static_condition_default_793; -extern const bool __static_condition_default_568; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_347; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_284; +extern const bool __static_condition_default_559; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_488; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_759; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_552; extern const bool __static_condition_default_755; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_590; -extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_258; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_471; extern const bool __static_condition_default_645; -extern const bool __static_condition_default_803; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_438; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_355; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_980; extern const bool __static_condition_default_597; -extern const bool __static_condition_default_1098; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_419; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_646; extern const bool __static_condition_default_842; -extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_386; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_388; -extern const bool __static_condition_default_1109; -extern const bool __static_condition_default_677; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_914; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_887; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_1027; extern const bool __static_condition_default_788; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_929; -extern const bool __static_condition_default_670; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_787; +extern const bool __static_condition_default_244; extern const bool __static_condition_default_248; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_583; -extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_357; -extern const bool __static_condition_default_907; +extern const bool __static_condition_default_891; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_489; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_1101; extern const bool __static_condition_default_868; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_559; +extern const bool __static_condition_default_685; extern const bool __static_condition_default_553; +extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_702; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_929; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_1097; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_455; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_521; +extern const bool __static_condition_default_288; extern const bool __static_condition_default_564; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_486; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_84; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_1096; +extern const bool __static_condition_default_761; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_536; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_846; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_670; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_907; extern const bool __static_condition_default_491; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_1101; -extern const bool __static_condition_default_998; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_347; +extern const bool __static_condition_default_769; +extern const bool __static_condition_default_386; +extern const bool __static_condition_default_1073; extern const bool __static_condition_default_76; -extern const bool __static_condition_default_963; -extern const bool __static_condition_default_402; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_677; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_544; extern const bool __static_condition_default_217; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_393; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_779; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_363; extern const bool __static_condition_default_499; -extern const bool __static_condition_default_891; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_1110; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_229; extern const bool __static_condition_default_290; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_759; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_367; extern const bool __static_condition_default_709; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_204; -extern const bool __static_condition_default_315; +extern const bool __static_condition_default_875; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_393; extern const bool __static_condition_default_259; -extern const bool __static_condition_default_419; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_693; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_780; extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_1096; -extern const bool __static_condition_default_317; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_549; -extern const bool __static_condition_default_858; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_872; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_293; extern const bool __static_condition_default_274; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_848; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_789; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_388; +extern const bool __static_condition_default_337; extern const bool __static_condition_default_819; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_187; +extern const bool __static_condition_default_734; extern const bool __static_condition_default_956; -extern const bool __static_condition_default_512; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_568; +extern const bool __static_condition_default_636; extern const bool __static_condition_default_539; -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_270; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_585; extern const bool __static_condition_default_333; -extern const bool __static_condition_default_646; -extern const bool __static_condition_default_779; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_780; extern const bool __static_condition_default_623; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_957; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_1104; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_1097; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_685; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_761; -extern const bool __static_condition_default_789; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_267; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_700; extern const bool __static_condition_default_834; -extern const bool __static_condition_default_638; -extern const bool __static_condition_default_367; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_1104; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_753; +extern const bool __static_condition_default_858; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); diff --git a/fonda/cpp_testsuite/varBugs/APACHE/1f46088b38d.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/1f46088b38d.desugared.c index 87ce0f0b..817e993d 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/1f46088b38d.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/1f46088b38d.desugared.c @@ -7,281 +7,281 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_753; -extern const bool __static_condition_default_1097; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_438; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_887; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_536; -extern const bool __static_condition_default_914; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_702; -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_53; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_431; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_333; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_693; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_317; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_512; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_187; -extern const bool __static_condition_default_1104; -extern const bool __static_condition_default_313; -extern const bool __static_condition_default_76; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_347; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_963; -extern const bool __static_condition_default_670; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_956; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_382; extern const bool __static_condition_default_473; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_357; -extern const bool __static_condition_default_585; +extern const bool __static_condition_default_367; extern const bool __static_condition_default_846; -extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_1101; -extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_779; -extern const bool __static_condition_default_388; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_198; -extern const bool __static_condition_default_488; -extern const bool __static_condition_default_1043; extern const bool __static_condition_default_494; -extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_929; +extern const bool __static_condition_default_544; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_333; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_613; +extern const bool __static_condition_default_848; extern const bool __static_condition_default_552; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_296; extern const bool __static_condition_default_872; -extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_536; extern const bool __static_condition_default_793; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_521; -extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_270; extern const bool __static_condition_default_998; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_559; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_461; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_875; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_645; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_929; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_677; -extern const bool __static_condition_default_402; -extern const bool __static_condition_default_290; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_583; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_386; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_755; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_646; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_217; -extern const bool __static_condition_default_894; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_408; -extern const bool __static_condition_default_549; -extern const bool __static_condition_default_734; extern const bool __static_condition_default_797; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_780; -extern const bool __static_condition_default_613; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_842; -extern const bool __static_condition_default_564; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_568; +extern const bool __static_condition_default_1036; extern const bool __static_condition_default_699; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_801; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_747; +extern const bool __static_condition_default_402; extern const bool __static_condition_default_523; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_271; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_388; extern const bool __static_condition_default_511; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_957; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_747; -extern const bool __static_condition_default_590; -extern const bool __static_condition_default_761; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_204; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_311; -extern const bool __static_condition_default_858; extern const bool __static_condition_default_632; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_938; +extern const bool __static_condition_default_878; extern const bool __static_condition_default_412; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_891; -extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_568; -extern const bool __static_condition_default_173; extern const bool __static_condition_default_955; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_1096; -extern const bool __static_condition_default_493; +extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_488; +extern const bool __static_condition_default_382; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_393; extern const bool __static_condition_default_745; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_380; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_809; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_1097; +extern const bool __static_condition_default_455; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_907; +extern const bool __static_condition_default_761; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_753; +extern const bool __static_condition_default_702; extern const bool __static_condition_default_1100; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_393; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_721; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_559; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_1073; extern const bool __static_condition_default_662; -extern const bool __static_condition_default_367; +extern const bool __static_condition_default_963; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_834; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_1101; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_791; extern const bool __static_condition_default_803; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_907; -extern const bool __static_condition_default_248; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_759; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_512; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_779; +extern const bool __static_condition_default_891; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_365; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_1096; +extern const bool __static_condition_default_1104; +extern const bool __static_condition_default_636; +extern const bool __static_condition_default_521; +extern const bool __static_condition_default_550; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_347; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_375; extern const bool __static_condition_default_345; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_419; -extern const bool __static_condition_default_709; -extern const bool __static_condition_default_315; extern const bool __static_condition_default_700; -extern const bool __static_condition_default_516; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_187; +extern const bool __static_condition_default_549; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_583; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_290; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_84; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_875; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_894; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_619; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_768; extern const bool __static_condition_default_789; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_813; extern const bool __static_condition_default_1098; -extern const bool __static_condition_default_787; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_386; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_419; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_842; +extern const bool __static_condition_default_746; extern const bool __static_condition_default_1102; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_701; -extern const bool __static_condition_default_249; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_788; extern const bool __static_condition_default_825; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_685; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_311; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_76; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_489; +extern const bool __static_condition_default_677; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_670; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_337; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_883; extern const bool __static_condition_default_515; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_769; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_781; extern const bool __static_condition_default_1103; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_848; -extern const bool __static_condition_default_543; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_638; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_979; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_204; +extern const bool __static_condition_default_769; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_380; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_1066; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); diff --git a/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c index 137d267d..c26be910 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c @@ -7,95 +7,95 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_240; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_1093; -extern const bool __static_condition_default_420; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_602; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_1024; extern const bool __static_condition_default_243; -extern const bool __static_condition_default_325; -extern const bool __static_condition_default_426; -extern const bool __static_condition_default_429; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_285; -extern const bool __static_condition_default_1054; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_1037; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_349; -extern const bool __static_condition_default_604; -extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_1102; +extern const bool __static_condition_default_252; extern const bool __static_condition_default_1096; -extern const bool __static_condition_default_1031; -extern const bool __static_condition_default_1048; -extern const bool __static_condition_default_579; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_273; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_818; -extern const bool __static_condition_default_261; -extern const bool __static_condition_default_1053; +extern const bool __static_condition_default_352; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_264; extern const bool __static_condition_default_1074; -extern const bool __static_condition_default_1097; -extern const bool __static_condition_default_629; -extern const bool __static_condition_default_1047; -extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_594; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_1053; extern const bool __static_condition_default_270; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_420; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_1086; +extern const bool __static_condition_default_240; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_379; +extern const bool __static_condition_default_1073; extern const bool __static_condition_default_1100; -extern const bool __static_condition_default_805; -extern const bool __static_condition_default_1099; +extern const bool __static_condition_default_806; +extern const bool __static_condition_default_299; extern const bool __static_condition_default_1092; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_627; -extern const bool __static_condition_default_279; -extern const bool __static_condition_default_305; -extern const bool __static_condition_default_237; extern const bool __static_condition_default_60; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_1077; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_804; -extern const bool __static_condition_default_252; -extern const bool __static_condition_default_1094; -extern const bool __static_condition_default_806; +extern const bool __static_condition_default_1031; extern const bool __static_condition_default_595; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_1082; -extern const bool __static_condition_default_361; -extern const bool __static_condition_default_594; -extern const bool __static_condition_default_1083; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_414; -extern const bool __static_condition_default_67; -extern const bool __static_condition_default_352; +extern const bool __static_condition_default_627; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_1097; +extern const bool __static_condition_default_818; +extern const bool __static_condition_default_1077; extern const bool __static_condition_default_302; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_1025; -extern const bool __static_condition_default_1102; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_394; -extern const bool __static_condition_default_1024; -extern const bool __static_condition_default_621; +extern const bool __static_condition_default_237; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_1083; +extern const bool __static_condition_default_308; +extern const bool __static_condition_default_629; +extern const bool __static_condition_default_1047; +extern const bool __static_condition_default_1054; +extern const bool __static_condition_default_1093; +extern const bool __static_condition_default_1099; extern const bool __static_condition_default_215; -extern const bool __static_condition_default_288; +extern const bool __static_condition_default_378; extern const bool __static_condition_default_1030; -extern const bool __static_condition_default_293; +extern const bool __static_condition_default_1037; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_394; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_804; +extern const bool __static_condition_default_429; +extern const bool __static_condition_default_426; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_261; +extern const bool __static_condition_default_305; +extern const bool __static_condition_default_349; extern const bool __static_condition_default_1098; +extern const bool __static_condition_default_414; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_621; extern const bool __static_condition_default_234; -extern const bool __static_condition_default_378; +extern const bool __static_condition_default_273; +extern const bool __static_condition_default_1048; +extern const bool __static_condition_default_279; extern const bool __static_condition_default_276; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_379; +extern const bool __static_condition_default_604; +extern const bool __static_condition_default_1082; +extern const bool __static_condition_default_361; extern const bool __static_condition_default_1095; -extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_581; -extern const bool __static_condition_default_417; +extern const bool __static_condition_default_255; extern const bool __static_condition_default_423; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_1094; +extern const bool __static_condition_default_285; +extern const bool __static_condition_default_67; +extern const bool __static_condition_default_1025; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_805; extern const bool __static_condition_default_258; -extern const bool __static_condition_default_1086; -extern const bool __static_condition_default_308; +extern const bool __static_condition_default_325; +extern const bool __static_condition_default_579; +extern const bool __static_condition_default_581; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -730,12 +730,12 @@ struct ____anonymous_tag_70_71 { unsigned int ____w_termsig_72 : 7;// L72 unsigned int ____w_coredump_73 : 1;// L73 unsigned int ____w_retcode_74 : 8;// L74 -unsigned int : 16;// L75 +unsigned int __anon_id_0_75 : 16;// L75 }; struct ____anonymous_tag_76_77 { unsigned int ____w_stopval_78 : 8;// L87 unsigned int ____w_stopsig_79 : 8;// L88 -unsigned int : 16;// L89 +unsigned int __anon_id_1_80 : 16;// L89 }; union __wait_81 { int __w_status_82;// L68 @@ -1552,7 +1552,7 @@ if (__static_condition_default_1089) { -char * (__sc_1084)= __malloc_486 (sizeof(char) * 45);// L6 +char * (__sc_1084)= malloc (sizeof(char) * 45);// L6 if (__static_condition_default_1086) { __static_type_error("invalid declaration of sc under this presence condition"); @@ -1565,7 +1565,7 @@ if (__static_condition_default_1091) { __static_type_error("type error") ; // L9 } if (__static_condition_default_1092) { - __free_496 ( __sc_1084 ) ; // L12 +free ( __sc_1084 ) ; // L12 } if (__static_condition_default_1093) { __static_type_error("type error") ; // L12 @@ -1591,7 +1591,7 @@ if (__static_condition_default_1096) { -char * (__sc_1085)= __malloc_487 (sizeof(char) * 45);// L6 +char * (__sc_1085)= malloc (sizeof(char) * 45);// L6 if (__static_condition_default_1086) { __static_type_error("invalid declaration of sc under this presence condition"); @@ -1599,7 +1599,7 @@ __static_type_error("invalid declaration of sc under this presence condition"); __static_type_error("type error") ; // L9 if (__static_condition_default_1097) { - __free_496 ( __sc_1085 ) ; // L12 +free ( __sc_1085 ) ; // L12 } if (__static_condition_default_1098) { __static_type_error("type error") ; // L12 diff --git a/fonda/cpp_testsuite/varBugs/APACHE/3407eccc321.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/3407eccc321.desugared.c index fc7b3113..1b5fb758 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/3407eccc321.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/3407eccc321.desugared.c @@ -7,352 +7,352 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_438; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_333; -extern const bool __static_condition_default_347; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_709; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_2048; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_2043; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_543; -extern const bool __static_condition_default_1516; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_1791; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_907; -extern const bool __static_condition_default_2050; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_701; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_1754; extern const bool __static_condition_default_1164; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_872; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_1560; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_1816; +extern const bool __static_condition_default_1152; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_1402; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_1475; +extern const bool __static_condition_default_757; extern const bool __static_condition_default_549; -extern const bool __static_condition_default_1810; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_789; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_2051; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_1388; +extern const bool __static_condition_default_2054; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_1428; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_1814; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_578; extern const bool __static_condition_default_780; -extern const bool __static_condition_default_357; -extern const bool __static_condition_default_412; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_1341; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_1066; extern const bool __static_condition_default_432; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_789; +extern const bool __static_condition_default_1773; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_955; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_2045; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_1165; +extern const bool __static_condition_default_419; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_891; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_637; extern const bool __static_condition_default_1564; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_803; +extern const bool __static_condition_default_1785; +extern const bool __static_condition_default_834; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_1458; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_2043; +extern const bool __static_condition_default_521; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_1365; +extern const bool __static_condition_default_759; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_1556; +extern const bool __static_condition_default_1436; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_1576; +extern const bool __static_condition_default_1787; +extern const bool __static_condition_default_791; extern const bool __static_condition_default_761; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_963; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_858; -extern const bool __static_condition_default_290; -extern const bool __static_condition_default_2054; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_241; +extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_1810; +extern const bool __static_condition_default_1944; extern const bool __static_condition_default_499; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_1428; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_2046; -extern const bool __static_condition_default_198; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_1416; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_583; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_721; extern const bool __static_condition_default_187; -extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_769; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_840; +extern const bool __static_condition_default_2050; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_623; extern const bool __static_condition_default_645; -extern const bool __static_condition_default_955; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_282; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_1531; +extern const bool __static_condition_default_388; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_2044; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_559; +extern const bool __static_condition_default_1568; +extern const bool __static_condition_default_1753; +extern const bool __static_condition_default_1345; +extern const bool __static_condition_default_550; extern const bool __static_condition_default_386; -extern const bool __static_condition_default_791; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_1349; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_1453; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_1816; +extern const bool __static_condition_default_1385; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_1381; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_613; extern const bool __static_condition_default_1377; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_1773; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_875; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_1345; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_2042; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_1357; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_2051; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_1532; +extern const bool __static_condition_default_2046; +extern const bool __static_condition_default_747; +extern const bool __static_condition_default_282; extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_1489; -extern const bool __static_condition_default_373; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_769; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_1750; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_1485; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_708; extern const bool __static_condition_default_957; +extern const bool __static_condition_default_544; +extern const bool __static_condition_default_1515; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_1789; extern const bool __static_condition_default_702; -extern const bool __static_condition_default_1552; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_408; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_431; +extern const bool __static_condition_default_767; extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_2047; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_793; -extern const bool __static_condition_default_1165; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_1315; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_2052; -extern const bool __static_condition_default_461; +extern const bool __static_condition_default_1791; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_1489; +extern const bool __static_condition_default_1373; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_636; +extern const bool __static_condition_default_1405; +extern const bool __static_condition_default_488; +extern const bool __static_condition_default_1432; +extern const bool __static_condition_default_1808; +extern const bool __static_condition_default_2048; +extern const bool __static_condition_default_1560; +extern const bool __static_condition_default_1409; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_367; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_907; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_929; +extern const bool __static_condition_default_538; extern const bool __static_condition_default_638; -extern const bool __static_condition_default_1385; -extern const bool __static_condition_default_1485; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_1159; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_668; +extern const bool __static_condition_default_840; extern const bool __static_condition_default_768; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_1398; -extern const bool __static_condition_default_311; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_1424; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_978; +extern const bool __static_condition_default_619; extern const bool __static_condition_default_293; -extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_1531; -extern const bool __static_condition_default_1749; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_1787; -extern const bool __static_condition_default_564; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_2041; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_590; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_1754; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_536; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_1388; -extern const bool __static_condition_default_1532; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_568; -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_1808; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_891; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_516; +extern const bool __static_condition_default_842; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_337; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_1516; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_347; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_489; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_455; extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_2040; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_1475; -extern const bool __static_condition_default_559; -extern const bool __static_condition_default_956; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_1416; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_755; -extern const bool __static_condition_default_1789; -extern const bool __static_condition_default_1369; -extern const bool __static_condition_default_315; -extern const bool __static_condition_default_393; +extern const bool __static_condition_default_1775; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_699; extern const bool __static_condition_default_76; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_1373; -extern const bool __static_condition_default_1556; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_1458; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_1572; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_650; extern const bool __static_condition_default_275; -extern const bool __static_condition_default_1776; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_583; -extern const bool __static_condition_default_1409; -extern const bool __static_condition_default_235; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_692; extern const bool __static_condition_default_248; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_693; -extern const bool __static_condition_default_1774; -extern const bool __static_condition_default_972; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_541; extern const bool __static_condition_default_380; +extern const bool __static_condition_default_848; extern const bool __static_condition_default_257; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_1395; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_2044; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_1365; -extern const bool __static_condition_default_1405; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_753; +extern const bool __static_condition_default_846; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_1353; +extern const bool __static_condition_default_1357; +extern const bool __static_condition_default_2042; +extern const bool __static_condition_default_84; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_1369; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_894; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_382; +extern const bool __static_condition_default_365; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_597; extern const bool __static_condition_default_677; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_1315; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_2047; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_875; +extern const bool __static_condition_default_1459; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_727; extern const bool __static_condition_default_670; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_311; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_235; extern const bool __static_condition_default_883; -extern const bool __static_condition_default_488; -extern const bool __static_condition_default_894; -extern const bool __static_condition_default_1353; -extern const bool __static_condition_default_1576; -extern const bool __static_condition_default_1432; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_1436; -extern const bool __static_condition_default_53; -extern const bool __static_condition_default_313; -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_613; -extern const bool __static_condition_default_787; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_1402; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_747; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_388; -extern const bool __static_condition_default_217; -extern const bool __static_condition_default_402; -extern const bool __static_condition_default_846; -extern const bool __static_condition_default_1420; -extern const bool __static_condition_default_1568; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_1753; -extern const bool __static_condition_default_2053; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_1572; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_568; +extern const bool __static_condition_default_1361; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_1498; extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_1349; -extern const bool __static_condition_default_2045; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_317; +extern const bool __static_condition_default_1774; +extern const bool __static_condition_default_229; extern const bool __static_condition_default_512; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_1776; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_1552; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_963; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_2052; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_333; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_1159; +extern const bool __static_condition_default_1395; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_543; extern const bool __static_condition_default_1391; -extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_685; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_1453; -extern const bool __static_condition_default_204; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_521; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_1785; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_848; extern const bool __static_condition_default_779; -extern const bool __static_condition_default_914; -extern const bool __static_condition_default_1498; -extern const bool __static_condition_default_367; -extern const bool __static_condition_default_1775; -extern const bool __static_condition_default_1814; -extern const bool __static_condition_default_887; -extern const bool __static_condition_default_382; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_1341; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_1152; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_753; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_1361; -extern const bool __static_condition_default_1750; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_1944; -extern const bool __static_condition_default_238; +extern const bool __static_condition_default_1398; +extern const bool __static_condition_default_1420; +extern const bool __static_condition_default_290; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_536; extern const bool __static_condition_default_632; -extern const bool __static_condition_default_1381; -extern const bool __static_condition_default_842; -extern const bool __static_condition_default_1459; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_419; -extern const bool __static_condition_default_1515; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_929; -extern const bool __static_condition_default_646; +extern const bool __static_condition_default_2040; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_2053; +extern const bool __static_condition_default_2041; +extern const bool __static_condition_default_1424; +extern const bool __static_condition_default_1749; +extern const bool __static_condition_default_204; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -1680,12 +1680,12 @@ struct ____anonymous_tag_1166_1167 { unsigned int ____w_termsig_1168 : 7;// L72 unsigned int ____w_coredump_1169 : 1;// L73 unsigned int ____w_retcode_1170 : 8;// L74 -unsigned int : 16;// L75 +unsigned int __anon_id_0_1171 : 16;// L75 }; struct ____anonymous_tag_1172_1173 { unsigned int ____w_stopval_1174 : 8;// L87 unsigned int ____w_stopsig_1175 : 8;// L88 -unsigned int : 16;// L89 +unsigned int __anon_id_1_1176 : 16;// L89 }; union __wait_1177 { int __w_status_1178;// L68 diff --git a/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c index 392c816e..3938e3a5 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c @@ -7,89 +7,89 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_308; -extern const bool __static_condition_default_820; -extern const bool __static_condition_default_828; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_818; +extern const bool __static_condition_default_276; +extern const bool __static_condition_default_60; +extern const bool __static_condition_default_808; +extern const bool __static_condition_default_249; extern const bool __static_condition_default_432; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_237; -extern const bool __static_condition_default_394; +extern const bool __static_condition_default_417; extern const bool __static_condition_default_581; +extern const bool __static_condition_default_67; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_414; +extern const bool __static_condition_default_378; +extern const bool __static_condition_default_285; extern const bool __static_condition_default_426; +extern const bool __static_condition_default_824; +extern const bool __static_condition_default_394; +extern const bool __static_condition_default_379; extern const bool __static_condition_default_822; -extern const bool __static_condition_default_420; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_594; -extern const bool __static_condition_default_821; -extern const bool __static_condition_default_423; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_240; -extern const bool __static_condition_default_282; extern const bool __static_condition_default_805; -extern const bool __static_condition_default_234; -extern const bool __static_condition_default_252; -extern const bool __static_condition_default_414; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_60; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_816; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_379; -extern const bool __static_condition_default_67; -extern const bool __static_condition_default_215; -extern const bool __static_condition_default_293; +extern const bool __static_condition_default_325; +extern const bool __static_condition_default_282; extern const bool __static_condition_default_579; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_629; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_273; +extern const bool __static_condition_default_361; +extern const bool __static_condition_default_237; extern const bool __static_condition_default_812; -extern const bool __static_condition_default_325; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_814; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_824; -extern const bool __static_condition_default_429; extern const bool __static_condition_default_817; -extern const bool __static_condition_default_285; +extern const bool __static_condition_default_820; +extern const bool __static_condition_default_815; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_395; extern const bool __static_condition_default_261; -extern const bool __static_condition_default_378; -extern const bool __static_condition_default_818; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_826; +extern const bool __static_condition_default_423; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_215; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_806; extern const bool __static_condition_default_279; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_595; +extern const bool __static_condition_default_308; +extern const bool __static_condition_default_833; +extern const bool __static_condition_default_804; +extern const bool __static_condition_default_234; +extern const bool __static_condition_default_243; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_420; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_811; extern const bool __static_condition_default_302; -extern const bool __static_condition_default_341; +extern const bool __static_condition_default_429; +extern const bool __static_condition_default_816; +extern const bool __static_condition_default_240; extern const bool __static_condition_default_305; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_829; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_361; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_243; +extern const bool __static_condition_default_623; extern const bool __static_condition_default_819; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_802; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_276; -extern const bool __static_condition_default_803; -extern const bool __static_condition_default_604; -extern const bool __static_condition_default_804; -extern const bool __static_condition_default_627; -extern const bool __static_condition_default_602; +extern const bool __static_condition_default_267; extern const bool __static_condition_default_810; -extern const bool __static_condition_default_808; +extern const bool __static_condition_default_252; +extern const bool __static_condition_default_629; +extern const bool __static_condition_default_814; +extern const bool __static_condition_default_273; +extern const bool __static_condition_default_341; extern const bool __static_condition_default_349; extern const bool __static_condition_default_352; -extern const bool __static_condition_default_826; -extern const bool __static_condition_default_833; -extern const bool __static_condition_default_595; -extern const bool __static_condition_default_811; -extern const bool __static_condition_default_806; -extern const bool __static_condition_default_815; +extern const bool __static_condition_default_604; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_627; +extern const bool __static_condition_default_802; +extern const bool __static_condition_default_821; +extern const bool __static_condition_default_828; +extern const bool __static_condition_default_594; +extern const bool __static_condition_default_829; +extern const bool __static_condition_default_288; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -639,12 +639,12 @@ struct ____anonymous_tag_70_71 { unsigned int ____w_termsig_72 : 7;// L72 unsigned int ____w_coredump_73 : 1;// L73 unsigned int ____w_retcode_74 : 8;// L74 -unsigned int : 16;// L75 +unsigned int __anon_id_0_75 : 16;// L75 }; struct ____anonymous_tag_76_77 { unsigned int ____w_stopval_78 : 8;// L87 unsigned int ____w_stopsig_79 : 8;// L88 -unsigned int : 16;// L89 +unsigned int __anon_id_1_80 : 16;// L89 }; union __wait_81 { int __w_status_82;// L68 @@ -1356,7 +1356,7 @@ if (__static_condition_default_802) { int * (__eckey_798);// L6 if (__static_condition_default_803) { - __eckey_798 = __malloc_486 (sizeof(int)) ; // L10 + __eckey_798 = malloc (sizeof(int)) ; // L10 } if (__static_condition_default_804) { __static_type_error("type error") ; // L10 @@ -1425,7 +1425,7 @@ if (__static_condition_default_811) { int * (__eckey_798);// L6 if (__static_condition_default_812) { - __eckey_798 = __malloc_487 (sizeof(int)) ; // L10 + __eckey_798 = malloc (sizeof(int)) ; // L10 } if (__static_condition_default_813) { __static_type_error("type error") ; // L10 @@ -1494,10 +1494,10 @@ if (__static_condition_default_820) { int * (__eckey_798);// L6 if (__static_condition_default_821) { - __eckey_798 = __malloc_486 (sizeof(int)) ; // L10 + __eckey_798 = malloc (sizeof(int)) ; // L10 } if (__static_condition_default_822) { - __eckey_798 = __malloc_487 (sizeof(int)) ; // L10 + __eckey_798 = malloc (sizeof(int)) ; // L10 } if (__static_condition_default_823) { __static_type_error("type error") ; // L10 diff --git a/fonda/cpp_testsuite/varBugs/APACHE/4202d5fee3e.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/4202d5fee3e.desugared.c index 55a4f4db..7e5cb92a 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/4202d5fee3e.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/4202d5fee3e.desugared.c @@ -7,278 +7,278 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_753; -extern const bool __static_condition_default_549; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_613; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_875; -extern const bool __static_condition_default_872; extern const bool __static_condition_default_883; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_568; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_1099; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_747; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_709; -extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_727; extern const bool __static_condition_default_685; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_638; -extern const bool __static_condition_default_955; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_693; -extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_248; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_311; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_701; -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_497; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_761; +extern const bool __static_condition_default_677; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_807; extern const bool __static_condition_default_819; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_625; extern const bool __static_condition_default_608; -extern const bool __static_condition_default_542; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_619; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_613; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_76; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_549; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_823; extern const bool __static_condition_default_590; +extern const bool __static_condition_default_769; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_223; extern const bool __static_condition_default_602; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_767; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_499; extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_780; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_315; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_431; -extern const bool __static_condition_default_286; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_1095; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_568; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_489; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_412; extern const bool __static_condition_default_419; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_646; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_255; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_275; extern const bool __static_condition_default_521; -extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_552; extern const bool __static_condition_default_791; -extern const bool __static_condition_default_204; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_645; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_347; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_290; +extern const bool __static_condition_default_187; +extern const bool __static_condition_default_834; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_455; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_747; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_1099; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_907; +extern const bool __static_condition_default_1100; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_169; extern const bool __static_condition_default_170; -extern const bool __static_condition_default_842; -extern const bool __static_condition_default_461; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_891; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_677; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_345; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_662; extern const bool __static_condition_default_296; -extern const bool __static_condition_default_914; -extern const bool __static_condition_default_357; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_204; extern const bool __static_condition_default_956; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_658; extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_393; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_564; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_313; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_779; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_386; -extern const bool __static_condition_default_559; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_486; +extern const bool __static_condition_default_670; +extern const bool __static_condition_default_735; extern const bool __static_condition_default_759; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_382; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_632; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_293; extern const bool __static_condition_default_683; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_907; -extern const bool __static_condition_default_761; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_402; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_1094; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_702; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_1098; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_789; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_198; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_488; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_793; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_801; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_583; extern const bool __static_condition_default_980; -extern const bool __static_condition_default_700; +extern const bool __static_condition_default_311; extern const bool __static_condition_default_367; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_752; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_488; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_386; +extern const bool __static_condition_default_875; +extern const bool __static_condition_default_315; extern const bool __static_condition_default_647; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_536; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_380; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_53; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_76; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_388; -extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_217; -extern const bool __static_condition_default_290; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_333; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_848; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_670; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_929; -extern const bool __static_condition_default_858; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_365; extern const bool __static_condition_default_544; -extern const bool __static_condition_default_299; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_894; extern const bool __static_condition_default_395; -extern const bool __static_condition_default_408; -extern const bool __static_condition_default_438; -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_347; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_842; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_1098; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_963; extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_753; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_512; +extern const bool __static_condition_default_229; extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_715; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_929; +extern const bool __static_condition_default_331; extern const bool __static_condition_default_253; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_787; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_543; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_769; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_1100; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_846; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_1095; -extern const bool __static_condition_default_187; -extern const bool __static_condition_default_583; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_887; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_755; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_1015; extern const bool __static_condition_default_182; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_803; extern const bool __static_condition_default_317; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_955; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_721; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_862; extern const bool __static_condition_default_375; -extern const bool __static_condition_default_963; -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_512; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_382; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_380; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_337; +extern const bool __static_condition_default_846; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_333; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_636; extern const bool __static_condition_default_768; -extern const bool __static_condition_default_514; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_536; +extern const bool __static_condition_default_668; extern const bool __static_condition_default_550; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_659; +extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_388; +extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_779; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_891; extern const bool __static_condition_default_756; -extern const bool __static_condition_default_957; -extern const bool __static_condition_default_412; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_894; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_559; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_84; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_702; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_789; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_1094; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); diff --git a/fonda/cpp_testsuite/varBugs/APACHE/4945115b2e7.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/4945115b2e7.desugared.c index 4c933d92..91c7e59e 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/4945115b2e7.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/4945115b2e7.desugared.c @@ -7,408 +7,408 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_333; -extern const bool __static_condition_default_347; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_2057; -extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_543; -extern const bool __static_condition_default_1516; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_907; -extern const bool __static_condition_default_701; +extern const bool __static_condition_default_1754; extern const bool __static_condition_default_1164; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_2051; -extern const bool __static_condition_default_2053; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_1560; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_549; -extern const bool __static_condition_default_2076; -extern const bool __static_condition_default_2092; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_789; -extern const bool __static_condition_default_357; -extern const bool __static_condition_default_412; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_761; +extern const bool __static_condition_default_2113; +extern const bool __static_condition_default_1402; extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_2071; -extern const bool __static_condition_default_858; -extern const bool __static_condition_default_2082; -extern const bool __static_condition_default_2058; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_2085; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_2104; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_169; extern const bool __static_condition_default_1428; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_2070; -extern const bool __static_condition_default_645; -extern const bool __static_condition_default_386; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_875; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_1357; -extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_2098; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_1341; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_2116; +extern const bool __static_condition_default_789; +extern const bool __static_condition_default_2088; +extern const bool __static_condition_default_1773; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_979; extern const bool __static_condition_default_2110; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_2066; -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_1489; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_2099; -extern const bool __static_condition_default_2065; -extern const bool __static_condition_default_1552; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_2058; +extern const bool __static_condition_default_759; +extern const bool __static_condition_default_1436; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_2056; extern const bool __static_condition_default_2089; -extern const bool __static_condition_default_408; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_431; -extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_1787; +extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_1810; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_2041; +extern const bool __static_condition_default_1416; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_2076; +extern const bool __static_condition_default_2111; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_2095; extern const bool __static_condition_default_623; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_461; -extern const bool __static_condition_default_1485; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_2112; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_1398; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_797; extern const bool __static_condition_default_2072; -extern const bool __static_condition_default_311; -extern const bool __static_condition_default_636; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_1753; +extern const bool __static_condition_default_1345; +extern const bool __static_condition_default_2060; +extern const bool __static_condition_default_386; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_2085; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_1453; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_2057; +extern const bool __static_condition_default_2087; +extern const bool __static_condition_default_2090; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_613; +extern const bool __static_condition_default_1377; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_461; extern const bool __static_condition_default_2069; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_2040; -extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_1531; -extern const bool __static_condition_default_834; +extern const bool __static_condition_default_747; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_769; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_544; +extern const bool __static_condition_default_1515; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_1789; +extern const bool __static_condition_default_702; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_872; extern const bool __static_condition_default_564; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_2078; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_2056; -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_1754; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_2091; -extern const bool __static_condition_default_568; -extern const bool __static_condition_default_891; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_2054; -extern const bool __static_condition_default_2094; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_1475; -extern const bool __static_condition_default_559; -extern const bool __static_condition_default_2102; -extern const bool __static_condition_default_1416; -extern const bool __static_condition_default_2108; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_755; -extern const bool __static_condition_default_315; -extern const bool __static_condition_default_76; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_1373; -extern const bool __static_condition_default_1556; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_1458; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_1572; -extern const bool __static_condition_default_1776; -extern const bool __static_condition_default_583; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_1432; extern const bool __static_condition_default_1409; -extern const bool __static_condition_default_248; +extern const bool __static_condition_default_2059; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_367; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_2070; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_907; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_619; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_842; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_717; extern const bool __static_condition_default_663; -extern const bool __static_condition_default_380; -extern const bool __static_condition_default_1395; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_1405; -extern const bool __static_condition_default_670; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_488; -extern const bool __static_condition_default_894; -extern const bool __static_condition_default_2111; -extern const bool __static_condition_default_2041; -extern const bool __static_condition_default_53; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_347; extern const bool __static_condition_default_313; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_613; -extern const bool __static_condition_default_787; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_2098; +extern const bool __static_condition_default_489; extern const bool __static_condition_default_819; -extern const bool __static_condition_default_2118; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_2075; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_217; -extern const bool __static_condition_default_402; -extern const bool __static_condition_default_846; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_1753; -extern const bool __static_condition_default_2104; +extern const bool __static_condition_default_455; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_2047; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_2083; +extern const bool __static_condition_default_76; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_275; extern const bool __static_condition_default_2052; -extern const bool __static_condition_default_317; -extern const bool __static_condition_default_512; -extern const bool __static_condition_default_2103; -extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_2096; -extern const bool __static_condition_default_2095; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_2077; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_2051; +extern const bool __static_condition_default_541; extern const bool __static_condition_default_848; -extern const bool __static_condition_default_2080; -extern const bool __static_condition_default_914; -extern const bool __static_condition_default_1814; -extern const bool __static_condition_default_2064; -extern const bool __static_condition_default_382; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_2061; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_2101; -extern const bool __static_condition_default_1750; -extern const bool __static_condition_default_1944; -extern const bool __static_condition_default_1381; -extern const bool __static_condition_default_842; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_2116; -extern const bool __static_condition_default_929; -extern const bool __static_condition_default_2105; -extern const bool __static_condition_default_646; -extern const bool __static_condition_default_2106; -extern const bool __static_condition_default_2090; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_2079; extern const bool __static_condition_default_438; -extern const bool __static_condition_default_2086; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_709; -extern const bool __static_condition_default_2046; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_249; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_894; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_2040; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_382; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_2055; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_875; +extern const bool __static_condition_default_1459; +extern const bool __static_condition_default_670; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_311; +extern const bool __static_condition_default_170; extern const bool __static_condition_default_813; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_2084; -extern const bool __static_condition_default_1791; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_2074; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_872; -extern const bool __static_condition_default_2100; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_2060; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_1816; -extern const bool __static_condition_default_1810; -extern const bool __static_condition_default_780; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_1564; -extern const bool __static_condition_default_803; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_938; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_2091; +extern const bool __static_condition_default_1572; +extern const bool __static_condition_default_2086; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_2054; +extern const bool __static_condition_default_568; +extern const bool __static_condition_default_1361; +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_1498; +extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_1774; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_512; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_431; extern const bool __static_condition_default_963; -extern const bool __static_condition_default_792; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_333; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_1159; +extern const bool __static_condition_default_2075; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_1391; +extern const bool __static_condition_default_2094; +extern const bool __static_condition_default_1398; +extern const bool __static_condition_default_1420; +extern const bool __static_condition_default_2109; extern const bool __static_condition_default_290; -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_2093; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_537; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_536; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_2068; +extern const bool __static_condition_default_1424; +extern const bool __static_condition_default_1749; +extern const bool __static_condition_default_204; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_1152; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_2073; +extern const bool __static_condition_default_2107; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_2096; +extern const bool __static_condition_default_1475; +extern const bool __static_condition_default_2115; +extern const bool __static_condition_default_549; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_288; extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_198; -extern const bool __static_condition_default_187; -extern const bool __static_condition_default_769; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_840; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_1388; +extern const bool __static_condition_default_2093; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_1814; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_2067; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_357; extern const bool __static_condition_default_955; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_1377; -extern const bool __static_condition_default_2073; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_2047; -extern const bool __static_condition_default_1773; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_1345; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_2062; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_646; extern const bool __static_condition_default_471; -extern const bool __static_condition_default_957; -extern const bool __static_condition_default_702; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_2097; -extern const bool __static_condition_default_793; +extern const bool __static_condition_default_523; extern const bool __static_condition_default_1165; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_1315; -extern const bool __static_condition_default_638; -extern const bool __static_condition_default_1385; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_1159; -extern const bool __static_condition_default_2088; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_2081; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_1424; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_2113; -extern const bool __static_condition_default_1749; -extern const bool __static_condition_default_2087; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_1787; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_590; -extern const bool __static_condition_default_2063; -extern const bool __static_condition_default_536; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_1388; -extern const bool __static_condition_default_1532; +extern const bool __static_condition_default_419; +extern const bool __static_condition_default_2077; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_891; +extern const bool __static_condition_default_1564; +extern const bool __static_condition_default_1785; +extern const bool __static_condition_default_834; extern const bool __static_condition_default_621; -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_1808; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_2068; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_956; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_1789; -extern const bool __static_condition_default_1369; -extern const bool __static_condition_default_393; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_2059; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_2115; -extern const bool __static_condition_default_693; -extern const bool __static_condition_default_1774; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_210; +extern const bool __static_condition_default_2080; +extern const bool __static_condition_default_1458; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_521; +extern const bool __static_condition_default_734; extern const bool __static_condition_default_1365; -extern const bool __static_condition_default_677; -extern const bool __static_condition_default_1353; +extern const bool __static_condition_default_2074; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_1556; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_259; extern const bool __static_condition_default_1576; -extern const bool __static_condition_default_1432; -extern const bool __static_condition_default_2083; -extern const bool __static_condition_default_2079; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_1436; -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_1402; -extern const bool __static_condition_default_2055; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_747; -extern const bool __static_condition_default_608; +extern const bool __static_condition_default_2078; +extern const bool __static_condition_default_791; +extern const bool __static_condition_default_761; +extern const bool __static_condition_default_1944; +extern const bool __static_condition_default_2118; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_2084; +extern const bool __static_condition_default_583; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_721; +extern const bool __static_condition_default_187; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_2046; +extern const bool __static_condition_default_1531; extern const bool __static_condition_default_388; -extern const bool __static_condition_default_1420; +extern const bool __static_condition_default_2100; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_559; extern const bool __static_condition_default_1568; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_469; +extern const bool __static_condition_default_550; extern const bool __static_condition_default_1349; -extern const bool __static_condition_default_2109; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_1391; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_685; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_1453; -extern const bool __static_condition_default_204; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_2107; -extern const bool __static_condition_default_521; -extern const bool __static_condition_default_1785; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_2066; +extern const bool __static_condition_default_1816; +extern const bool __static_condition_default_1385; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_1381; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_1532; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_1750; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_2102; +extern const bool __static_condition_default_1485; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_2071; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_1791; +extern const bool __static_condition_default_1489; +extern const bool __static_condition_default_1373; +extern const bool __static_condition_default_636; +extern const bool __static_condition_default_1405; +extern const bool __static_condition_default_488; +extern const bool __static_condition_default_1808; +extern const bool __static_condition_default_2065; +extern const bool __static_condition_default_1560; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_2097; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_2062; +extern const bool __static_condition_default_929; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_2103; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_337; extern const bool __static_condition_default_299; -extern const bool __static_condition_default_779; -extern const bool __static_condition_default_1498; -extern const bool __static_condition_default_367; +extern const bool __static_condition_default_1516; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_2106; +extern const bool __static_condition_default_2112; extern const bool __static_condition_default_1775; -extern const bool __static_condition_default_887; -extern const bool __static_condition_default_2067; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_1341; -extern const bool __static_condition_default_1152; -extern const bool __static_condition_default_757; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_395; extern const bool __static_condition_default_699; +extern const bool __static_condition_default_2108; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_380; +extern const bool __static_condition_default_2099; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_585; extern const bool __static_condition_default_753; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_1361; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_632; -extern const bool __static_condition_default_1459; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_419; -extern const bool __static_condition_default_1515; -extern const bool __static_condition_default_647; +extern const bool __static_condition_default_846; +extern const bool __static_condition_default_1353; +extern const bool __static_condition_default_1357; +extern const bool __static_condition_default_84; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_1369; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_365; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_2105; +extern const bool __static_condition_default_677; +extern const bool __static_condition_default_1315; +extern const bool __static_condition_default_2063; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_2082; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_2053; +extern const bool __static_condition_default_2061; +extern const bool __static_condition_default_2064; +extern const bool __static_condition_default_2092; +extern const bool __static_condition_default_1776; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_2081; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_1552; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_1395; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_779; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_2101; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -1801,12 +1801,12 @@ struct ____anonymous_tag_1166_1167 { unsigned int ____w_termsig_1168 : 7;// L72 unsigned int ____w_coredump_1169 : 1;// L73 unsigned int ____w_retcode_1170 : 8;// L74 -unsigned int : 16;// L75 +unsigned int __anon_id_0_1171 : 16;// L75 }; struct ____anonymous_tag_1172_1173 { unsigned int ____w_stopval_1174 : 8;// L87 unsigned int ____w_stopsig_1175 : 8;// L88 -unsigned int : 16;// L89 +unsigned int __anon_id_1_1176 : 16;// L89 }; union __wait_1177 { int __w_status_1178;// L68 diff --git a/fonda/cpp_testsuite/varBugs/APACHE/56d9881993f.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/56d9881993f.desugared.c index 147a5f1c..bea4dd8d 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/56d9881993f.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/56d9881993f.desugared.c @@ -7,8 +7,8 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_2; extern const bool __static_condition_default_3; +extern const bool __static_condition_default_2; void __static_initializer_default() { __static_renaming("__sendfile_nonblocking_0", "sendfile_nonblocking"); __static_renaming("__send_brigade_nonblocking_1", "send_brigade_nonblocking"); diff --git a/fonda/cpp_testsuite/varBugs/APACHE/6338509eb37.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/6338509eb37.desugared.c index 95e8aeb6..aa9d4965 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/6338509eb37.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/6338509eb37.desugared.c @@ -7,278 +7,278 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); +extern const bool __static_condition_default_489; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_842; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_488; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_512; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_536; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_883; extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_84; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_510; extern const bool __static_condition_default_797; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_858; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_894; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_293; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_759; extern const bool __static_condition_default_709; -extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_645; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_848; -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_311; -extern const bool __static_condition_default_625; extern const bool __static_condition_default_769; -extern const bool __static_condition_default_963; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_1100; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_337; +extern const bool __static_condition_default_367; +extern const bool __static_condition_default_1098; extern const bool __static_condition_default_347; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_419; -extern const bool __static_condition_default_663; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_333; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_963; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_1073; extern const bool __static_condition_default_723; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_702; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_431; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_761; -extern const bool __static_condition_default_753; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_613; -extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_792; +extern const bool __static_condition_default_1072; extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_408; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_646; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_670; extern const bool __static_condition_default_393; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_438; -extern const bool __static_condition_default_380; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_198; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_846; -extern const bool __static_condition_default_1100; -extern const bool __static_condition_default_223; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_259; extern const bool __static_condition_default_511; -extern const bool __static_condition_default_204; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_1095; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_875; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_747; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_564; -extern const bool __static_condition_default_488; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_419; +extern const bool __static_condition_default_493; extern const bool __static_condition_default_537; -extern const bool __static_condition_default_382; -extern const bool __static_condition_default_701; -extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_461; -extern const bool __static_condition_default_883; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_875; extern const bool __static_condition_default_633; -extern const bool __static_condition_default_755; -extern const bool __static_condition_default_290; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_638; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_789; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_549; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_53; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_386; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_590; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_780; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_1097; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_402; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_521; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_929; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_887; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_536; +extern const bool __static_condition_default_613; extern const bool __static_condition_default_1096; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_84; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_210; extern const bool __static_condition_default_469; -extern const bool __static_condition_default_512; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_753; +extern const bool __static_condition_default_791; extern const bool __static_condition_default_955; -extern const bool __static_condition_default_248; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_1098; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_632; -extern const bool __static_condition_default_76; -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_367; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_497; extern const bool __static_condition_default_781; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_538; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_290; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_380; extern const bool __static_condition_default_727; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_787; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_685; -extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_721; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_382; extern const bool __static_condition_default_433; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_779; +extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_702; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_539; extern const bool __static_condition_default_299; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_317; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_76; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_734; extern const bool __static_condition_default_388; -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_559; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_568; extern const bool __static_condition_default_677; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_717; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_583; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_736; extern const bool __static_condition_default_803; -extern const bool __static_condition_default_333; +extern const bool __static_condition_default_521; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_386; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_608; extern const bool __static_condition_default_891; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_187; -extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_842; -extern const bool __static_condition_default_543; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_315; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_238; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_559; extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_779; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_670; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_747; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_1058; extern const bool __static_condition_default_834; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_357; extern const bool __static_condition_default_246; -extern const bool __static_condition_default_693; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_560; extern const bool __static_condition_default_864; +extern const bool __static_condition_default_846; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_573; extern const bool __static_condition_default_365; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_793; -extern const bool __static_condition_default_735; extern const bool __static_condition_default_313; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_651; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_789; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_544; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_274; extern const bool __static_condition_default_217; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_1097; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_1095; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_187; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_455; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_761; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_331; extern const bool __static_condition_default_173; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_907; -extern const bool __static_condition_default_253; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_619; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_894; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_311; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_550; extern const bool __static_condition_default_956; -extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_568; -extern const bool __static_condition_default_583; -extern const bool __static_condition_default_957; -extern const bool __static_condition_default_412; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_636; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_238; extern const bool __static_condition_default_872; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_914; +extern const bool __static_condition_default_907; +extern const bool __static_condition_default_929; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_549; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_204; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_957; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); diff --git a/fonda/cpp_testsuite/varBugs/APACHE/664e3aac6dd.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/664e3aac6dd.desugared.c index 2fdc1321..7751ab9a 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/664e3aac6dd.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/664e3aac6dd.desugared.c @@ -7,87 +7,87 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_240; -extern const bool __static_condition_default_805; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_420; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_602; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_395; extern const bool __static_condition_default_243; -extern const bool __static_condition_default_325; -extern const bool __static_condition_default_426; -extern const bool __static_condition_default_429; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_285; -extern const bool __static_condition_default_1054; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_1088; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_349; -extern const bool __static_condition_default_604; -extern const bool __static_condition_default_579; -extern const bool __static_condition_default_273; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_261; -extern const bool __static_condition_default_806; -extern const bool __static_condition_default_629; -extern const bool __static_condition_default_1074; -extern const bool __static_condition_default_1053; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_1082; -extern const bool __static_condition_default_1031; +extern const bool __static_condition_default_252; +extern const bool __static_condition_default_818; extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_627; -extern const bool __static_condition_default_279; -extern const bool __static_condition_default_305; -extern const bool __static_condition_default_237; -extern const bool __static_condition_default_60; -extern const bool __static_condition_default_1037; +extern const bool __static_condition_default_352; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_1082; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_594; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_420; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_240; +extern const bool __static_condition_default_1077; +extern const bool __static_condition_default_379; extern const bool __static_condition_default_299; -extern const bool __static_condition_default_432; extern const bool __static_condition_default_1094; -extern const bool __static_condition_default_252; -extern const bool __static_condition_default_1030; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_60; +extern const bool __static_condition_default_1074; extern const bool __static_condition_default_595; -extern const bool __static_condition_default_361; -extern const bool __static_condition_default_594; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_414; -extern const bool __static_condition_default_1025; -extern const bool __static_condition_default_67; -extern const bool __static_condition_default_352; -extern const bool __static_condition_default_804; -extern const bool __static_condition_default_302; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_1093; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_394; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_215; +extern const bool __static_condition_default_627; extern const bool __static_condition_default_288; +extern const bool __static_condition_default_1088; +extern const bool __static_condition_default_1054; +extern const bool __static_condition_default_302; +extern const bool __static_condition_default_1024; +extern const bool __static_condition_default_237; extern const bool __static_condition_default_1092; -extern const bool __static_condition_default_1047; extern const bool __static_condition_default_293; -extern const bool __static_condition_default_1048; -extern const bool __static_condition_default_234; +extern const bool __static_condition_default_805; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_308; +extern const bool __static_condition_default_629; +extern const bool __static_condition_default_215; extern const bool __static_condition_default_378; -extern const bool __static_condition_default_1087; -extern const bool __static_condition_default_818; -extern const bool __static_condition_default_1024; +extern const bool __static_condition_default_1025; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_394; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_429; +extern const bool __static_condition_default_1053; +extern const bool __static_condition_default_1093; +extern const bool __static_condition_default_426; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_261; +extern const bool __static_condition_default_305; +extern const bool __static_condition_default_349; +extern const bool __static_condition_default_414; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_234; +extern const bool __static_condition_default_273; +extern const bool __static_condition_default_1083; +extern const bool __static_condition_default_1048; +extern const bool __static_condition_default_279; extern const bool __static_condition_default_276; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_379; -extern const bool __static_condition_default_1077; -extern const bool __static_condition_default_581; -extern const bool __static_condition_default_417; +extern const bool __static_condition_default_1037; +extern const bool __static_condition_default_604; +extern const bool __static_condition_default_361; +extern const bool __static_condition_default_255; extern const bool __static_condition_default_423; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_285; +extern const bool __static_condition_default_1087; +extern const bool __static_condition_default_67; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_1047; extern const bool __static_condition_default_258; -extern const bool __static_condition_default_1083; -extern const bool __static_condition_default_308; +extern const bool __static_condition_default_806; +extern const bool __static_condition_default_1030; +extern const bool __static_condition_default_325; +extern const bool __static_condition_default_579; +extern const bool __static_condition_default_581; +extern const bool __static_condition_default_804; +extern const bool __static_condition_default_1031; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -714,12 +714,12 @@ struct ____anonymous_tag_70_71 { unsigned int ____w_termsig_72 : 7;// L72 unsigned int ____w_coredump_73 : 1;// L73 unsigned int ____w_retcode_74 : 8;// L74 -unsigned int : 16;// L75 +unsigned int __anon_id_0_75 : 16;// L75 }; struct ____anonymous_tag_76_77 { unsigned int ____w_stopval_78 : 8;// L87 unsigned int ____w_stopsig_79 : 8;// L88 -unsigned int : 16;// L89 +unsigned int __anon_id_1_80 : 16;// L89 }; union __wait_81 { int __w_status_82;// L68 @@ -1549,7 +1549,7 @@ if ( __rand_465 ( ) % 2 )// L10 -for ( __i_1085 = 0 ; __i_1085 < sizeof(char[1]) ; __i_1085 ++ )// L11 +for ( __i_1085 = 0 ; __i_1085 < sizeof(( __buffer_1084 )) ; __i_1085 ++ )// L11 { { diff --git a/fonda/cpp_testsuite/varBugs/APACHE/9327311d30f.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/9327311d30f.desugared.c index 3957879c..89ffa1a4 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/9327311d30f.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/9327311d30f.desugared.c @@ -7,22 +7,22 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_220; extern const bool __static_condition_default_222; -extern const bool __static_condition_default_215; +extern const bool __static_condition_default_190; +extern const bool __static_condition_default_13; extern const bool __static_condition_default_228; -extern const bool __static_condition_default_195; extern const bool __static_condition_default_227; -extern const bool __static_condition_default_191; -extern const bool __static_condition_default_13; -extern const bool __static_condition_default_190; -extern const bool __static_condition_default_223; +extern const bool __static_condition_default_175; extern const bool __static_condition_default_229; extern const bool __static_condition_default_182; extern const bool __static_condition_default_211; -extern const bool __static_condition_default_220; -extern const bool __static_condition_default_221; +extern const bool __static_condition_default_215; +extern const bool __static_condition_default_195; extern const bool __static_condition_default_208; -extern const bool __static_condition_default_175; +extern const bool __static_condition_default_221; +extern const bool __static_condition_default_191; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); diff --git a/fonda/cpp_testsuite/varBugs/APACHE/97ecbec1237.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/97ecbec1237.desugared.c index a19af2aa..7ea8707f 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/97ecbec1237.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/97ecbec1237.desugared.c @@ -7,81 +7,81 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_308; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_237; -extern const bool __static_condition_default_394; -extern const bool __static_condition_default_581; +extern const bool __static_condition_default_276; extern const bool __static_condition_default_815; -extern const bool __static_condition_default_426; -extern const bool __static_condition_default_824; -extern const bool __static_condition_default_420; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_594; -extern const bool __static_condition_default_423; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_240; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_234; -extern const bool __static_condition_default_252; -extern const bool __static_condition_default_414; -extern const bool __static_condition_default_258; +extern const bool __static_condition_default_827; extern const bool __static_condition_default_60; -extern const bool __static_condition_default_811; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_810; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_379; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_581; extern const bool __static_condition_default_67; -extern const bool __static_condition_default_215; -extern const bool __static_condition_default_822; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_805; -extern const bool __static_condition_default_579; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_629; -extern const bool __static_condition_default_814; -extern const bool __static_condition_default_267; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_414; +extern const bool __static_condition_default_812; extern const bool __static_condition_default_816; -extern const bool __static_condition_default_273; -extern const bool __static_condition_default_325; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_429; -extern const bool __static_condition_default_285; -extern const bool __static_condition_default_827; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_261; extern const bool __static_condition_default_378; +extern const bool __static_condition_default_811; +extern const bool __static_condition_default_285; +extern const bool __static_condition_default_426; extern const bool __static_condition_default_820; -extern const bool __static_condition_default_279; -extern const bool __static_condition_default_302; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_305; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_255; +extern const bool __static_condition_default_394; +extern const bool __static_condition_default_814; +extern const bool __static_condition_default_379; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_325; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_579; extern const bool __static_condition_default_361; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_243; -extern const bool __static_condition_default_800; +extern const bool __static_condition_default_237; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_264; extern const bool __static_condition_default_395; +extern const bool __static_condition_default_261; +extern const bool __static_condition_default_246; extern const bool __static_condition_default_296; +extern const bool __static_condition_default_423; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_805; +extern const bool __static_condition_default_824; +extern const bool __static_condition_default_215; +extern const bool __static_condition_default_804; extern const bool __static_condition_default_299; -extern const bool __static_condition_default_276; +extern const bool __static_condition_default_279; +extern const bool __static_condition_default_595; +extern const bool __static_condition_default_308; extern const bool __static_condition_default_825; +extern const bool __static_condition_default_234; +extern const bool __static_condition_default_243; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_420; +extern const bool __static_condition_default_822; +extern const bool __static_condition_default_302; +extern const bool __static_condition_default_429; +extern const bool __static_condition_default_806; +extern const bool __static_condition_default_240; +extern const bool __static_condition_default_305; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_252; +extern const bool __static_condition_default_629; +extern const bool __static_condition_default_810; +extern const bool __static_condition_default_273; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_349; +extern const bool __static_condition_default_352; extern const bool __static_condition_default_604; -extern const bool __static_condition_default_804; +extern const bool __static_condition_default_255; extern const bool __static_condition_default_627; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_349; -extern const bool __static_condition_default_812; +extern const bool __static_condition_default_594; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_800; extern const bool __static_condition_default_826; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_352; -extern const bool __static_condition_default_595; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_806; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -623,12 +623,12 @@ struct ____anonymous_tag_70_71 { unsigned int ____w_termsig_72 : 7;// L72 unsigned int ____w_coredump_73 : 1;// L73 unsigned int ____w_retcode_74 : 8;// L74 -unsigned int : 16;// L75 +unsigned int __anon_id_0_75 : 16;// L75 }; struct ____anonymous_tag_76_77 { unsigned int ____w_stopval_78 : 8;// L87 unsigned int ____w_stopsig_79 : 8;// L88 -unsigned int : 16;// L89 +unsigned int __anon_id_1_80 : 16;// L89 }; union __wait_81 { int __w_status_82;// L68 @@ -1400,10 +1400,10 @@ if (__static_condition_default_811) { __static_type_error("invalid type found in if statement"); } if (__static_condition_default_812) { - __cache_798 = __malloc_486 (sizeof(int)) ; // L22 + __cache_798 = malloc (sizeof(int)) ; // L22 } if (__static_condition_default_813) { - __cache_799 = __malloc_487 (sizeof(int)) ; // L22 + __cache_799 = malloc (sizeof(int)) ; // L22 } if (__static_condition_default_814) { __static_type_error("type error") ; // L22 @@ -1474,10 +1474,10 @@ if ( __rand_465 ( ) % 2 )// L40 if (__static_condition_default_823) { - __cache_798 = __malloc_486 (sizeof(int)) ; // L41 + __cache_798 = malloc (sizeof(int)) ; // L41 } if (__static_condition_default_824) { - __cache_799 = __malloc_487 (sizeof(int)) ; // L41 + __cache_799 = malloc (sizeof(int)) ; // L41 } if (__static_condition_default_825) { __static_type_error("type error") ; // L41 diff --git a/fonda/cpp_testsuite/varBugs/APACHE/bbeb0516cf0.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/bbeb0516cf0.desugared.c index 7b2e05eb..a1c34e94 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/bbeb0516cf0.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/bbeb0516cf0.desugared.c @@ -7,88 +7,88 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_240; -extern const bool __static_condition_default_1092; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_1097; -extern const bool __static_condition_default_420; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_602; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_1093; +extern const bool __static_condition_default_1024; extern const bool __static_condition_default_243; -extern const bool __static_condition_default_325; -extern const bool __static_condition_default_426; -extern const bool __static_condition_default_429; -extern const bool __static_condition_default_623; extern const bool __static_condition_default_1094; -extern const bool __static_condition_default_285; -extern const bool __static_condition_default_1054; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_1037; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_349; -extern const bool __static_condition_default_604; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_1031; -extern const bool __static_condition_default_1048; -extern const bool __static_condition_default_579; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_273; +extern const bool __static_condition_default_252; extern const bool __static_condition_default_1087; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_818; -extern const bool __static_condition_default_261; -extern const bool __static_condition_default_1053; +extern const bool __static_condition_default_352; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_264; extern const bool __static_condition_default_1074; -extern const bool __static_condition_default_629; -extern const bool __static_condition_default_1047; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_594; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_1053; extern const bool __static_condition_default_270; -extern const bool __static_condition_default_805; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_627; -extern const bool __static_condition_default_279; -extern const bool __static_condition_default_305; -extern const bool __static_condition_default_237; -extern const bool __static_condition_default_60; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_420; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_240; +extern const bool __static_condition_default_379; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_806; +extern const bool __static_condition_default_1091; extern const bool __static_condition_default_299; +extern const bool __static_condition_default_60; +extern const bool __static_condition_default_1031; +extern const bool __static_condition_default_595; +extern const bool __static_condition_default_627; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_818; extern const bool __static_condition_default_1077; +extern const bool __static_condition_default_302; +extern const bool __static_condition_default_237; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_1083; +extern const bool __static_condition_default_308; +extern const bool __static_condition_default_629; +extern const bool __static_condition_default_1047; +extern const bool __static_condition_default_1054; +extern const bool __static_condition_default_215; +extern const bool __static_condition_default_378; +extern const bool __static_condition_default_1030; +extern const bool __static_condition_default_1037; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_394; extern const bool __static_condition_default_432; +extern const bool __static_condition_default_249; extern const bool __static_condition_default_804; -extern const bool __static_condition_default_252; -extern const bool __static_condition_default_806; -extern const bool __static_condition_default_1093; -extern const bool __static_condition_default_595; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_1082; -extern const bool __static_condition_default_361; -extern const bool __static_condition_default_594; -extern const bool __static_condition_default_1083; -extern const bool __static_condition_default_264; +extern const bool __static_condition_default_429; +extern const bool __static_condition_default_426; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_261; +extern const bool __static_condition_default_305; +extern const bool __static_condition_default_349; extern const bool __static_condition_default_414; -extern const bool __static_condition_default_67; -extern const bool __static_condition_default_352; -extern const bool __static_condition_default_302; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_1025; -extern const bool __static_condition_default_1088; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_394; -extern const bool __static_condition_default_1024; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_267; extern const bool __static_condition_default_621; -extern const bool __static_condition_default_215; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_1030; -extern const bool __static_condition_default_293; extern const bool __static_condition_default_234; -extern const bool __static_condition_default_378; +extern const bool __static_condition_default_273; +extern const bool __static_condition_default_1048; +extern const bool __static_condition_default_279; extern const bool __static_condition_default_276; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_379; -extern const bool __static_condition_default_581; -extern const bool __static_condition_default_417; +extern const bool __static_condition_default_604; +extern const bool __static_condition_default_1097; +extern const bool __static_condition_default_1082; +extern const bool __static_condition_default_361; +extern const bool __static_condition_default_255; extern const bool __static_condition_default_423; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_285; +extern const bool __static_condition_default_67; +extern const bool __static_condition_default_1025; +extern const bool __static_condition_default_805; +extern const bool __static_condition_default_1092; extern const bool __static_condition_default_258; -extern const bool __static_condition_default_308; +extern const bool __static_condition_default_325; +extern const bool __static_condition_default_579; +extern const bool __static_condition_default_581; +extern const bool __static_condition_default_1088; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -716,12 +716,12 @@ struct ____anonymous_tag_70_71 { unsigned int ____w_termsig_72 : 7;// L72 unsigned int ____w_coredump_73 : 1;// L73 unsigned int ____w_retcode_74 : 8;// L74 -unsigned int : 16;// L75 +unsigned int __anon_id_0_75 : 16;// L75 }; struct ____anonymous_tag_76_77 { unsigned int ____w_stopval_78 : 8;// L87 unsigned int ____w_stopsig_79 : 8;// L88 -unsigned int : 16;// L89 +unsigned int __anon_id_1_80 : 16;// L89 }; union __wait_81 { int __w_status_82;// L68 diff --git a/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c index 8cec2f4f..8c592d5c 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c @@ -7,379 +7,379 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_872; +extern const bool __static_condition_default_801; extern const bool __static_condition_default_1782; -extern const bool __static_condition_default_583; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_1331; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_1368; -extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_169; +extern const bool __static_condition_default_2040; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_2094; +extern const bool __static_condition_default_380; +extern const bool __static_condition_default_1637; extern const bool __static_condition_default_315; -extern const bool __static_condition_default_1653; -extern const bool __static_condition_default_536; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_201; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_290; +extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_761; +extern const bool __static_condition_default_382; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_2332; extern const bool __static_condition_default_2345; -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_419; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_347; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_204; extern const bool __static_condition_default_1856; +extern const bool __static_condition_default_759; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_789; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_1773; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_1661; +extern const bool __static_condition_default_248; extern const bool __static_condition_default_972; -extern const bool __static_condition_default_2344; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_747; +extern const bool __static_condition_default_1376; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_807; extern const bool __static_condition_default_736; -extern const bool __static_condition_default_1625; -extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_685; -extern const bool __static_condition_default_1669; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_1448; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_2094; -extern const bool __static_condition_default_701; -extern const bool __static_condition_default_1665; -extern const bool __static_condition_default_780; -extern const bool __static_condition_default_431; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_803; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_1347; +extern const bool __static_condition_default_2346; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_677; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_1330; +extern const bool __static_condition_default_613; extern const bool __static_condition_default_1815; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_2040; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_564; -extern const bool __static_condition_default_1672; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_1371; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_248; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_2343; +extern const bool __static_condition_default_1324; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_1092; extern const bool __static_condition_default_702; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_1319; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_1331; +extern const bool __static_condition_default_619; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_2096; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_779; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_2348; +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_1443; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_402; extern const bool __static_condition_default_1113; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_846; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_979; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_2338; +extern const bool __static_condition_default_1816; +extern const bool __static_condition_default_2339; +extern const bool __static_condition_default_583; +extern const bool __static_condition_default_701; extern const bool __static_condition_default_1099; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_388; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_1324; -extern const bool __static_condition_default_543; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_198; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_1742; -extern const bool __static_condition_default_693; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_891; -extern const bool __static_condition_default_2340; -extern const bool __static_condition_default_2035; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_1330; -extern const bool __static_condition_default_382; -extern const bool __static_condition_default_1641; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_271; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_1325; +extern const bool __static_condition_default_2336; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_670; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_1840; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_875; +extern const bool __static_condition_default_2060; extern const bool __static_condition_default_1689; -extern const bool __static_condition_default_412; -extern const bool __static_condition_default_2059; -extern const bool __static_condition_default_2039; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_568; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_408; +extern const bool __static_condition_default_417; extern const bool __static_condition_default_1629; -extern const bool __static_condition_default_2335; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_2077; -extern const bool __static_condition_default_1848; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_559; -extern const bool __static_condition_default_2331; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_1693; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_955; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_544; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_1737; +extern const bool __static_condition_default_1742; +extern const bool __static_condition_default_284; extern const bool __static_condition_default_249; -extern const bool __static_condition_default_76; -extern const bool __static_condition_default_613; -extern const bool __static_condition_default_1347; -extern const bool __static_condition_default_1112; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_2073; -extern const bool __static_condition_default_590; -extern const bool __static_condition_default_1816; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_313; -extern const bool __static_condition_default_1318; -extern const bool __static_condition_default_2336; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_357; extern const bool __static_condition_default_53; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_787; -extern const bool __static_condition_default_380; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_1800; -extern const bool __static_condition_default_512; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_1716; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_488; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_1686; -extern const bool __static_condition_default_1342; -extern const bool __static_condition_default_1657; -extern const bool __static_condition_default_2346; -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_2328; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_1112; +extern const bool __static_condition_default_1799; extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_1693; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_907; -extern const bool __static_condition_default_2347; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_461; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_2333; -extern const bool __static_condition_default_779; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_1844; -extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_317; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_2062; -extern const bool __static_condition_default_1093; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_2341; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_692; +extern const bool __static_condition_default_1625; +extern const bool __static_condition_default_491; extern const bool __static_condition_default_649; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_1377; -extern const bool __static_condition_default_386; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_1325; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_1092; -extern const bool __static_condition_default_1836; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_1773; -extern const bool __static_condition_default_438; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_957; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_753; -extern const bool __static_condition_default_1443; -extern const bool __static_condition_default_2060; -extern const bool __static_condition_default_217; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_2100; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_2071; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_1449; -extern const bool __static_condition_default_755; -extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_894; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_938; extern const bool __static_condition_default_661; -extern const bool __static_condition_default_1708; -extern const bool __static_condition_default_204; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_2334; +extern const bool __static_condition_default_803; extern const bool __static_condition_default_393; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_1348; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_367; -extern const bool __static_condition_default_347; -extern const bool __static_condition_default_894; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_2061; -extern const bool __static_condition_default_1098; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_1799; -extern const bool __static_condition_default_333; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_1860; -extern const bool __static_condition_default_2096; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_2332; -extern const bool __static_condition_default_1704; -extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_632; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_1100; -extern const bool __static_condition_default_357; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_1737; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_2036; -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_499; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_311; +extern const bool __static_condition_default_846; +extern const bool __static_condition_default_2077; +extern const bool __static_condition_default_2340; extern const bool __static_condition_default_963; -extern const bool __static_condition_default_848; -extern const bool __static_condition_default_290; -extern const bool __static_condition_default_402; -extern const bool __static_condition_default_769; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_444; extern const bool __static_condition_default_708; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_2075; -extern const bool __static_condition_default_1367; -extern const bool __static_condition_default_1341; -extern const bool __static_condition_default_2330; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_1759; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_549; -extern const bool __static_condition_default_1769; -extern const bool __static_condition_default_914; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_1675; -extern const bool __static_condition_default_2334; -extern const bool __static_condition_default_956; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_1720; -extern const bool __static_condition_default_2337; -extern const bool __static_condition_default_638; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_2329; -extern const bool __static_condition_default_1599; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_875; -extern const bool __static_condition_default_929; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_1661; -extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_793; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_1682; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_1840; -extern const bool __static_condition_default_2348; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_769; +extern const bool __static_condition_default_1665; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_2039; +extern const bool __static_condition_default_395; extern const bool __static_condition_default_1436; -extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_2071; +extern const bool __static_condition_default_1716; +extern const bool __static_condition_default_693; extern const bool __static_condition_default_538; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_761; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_645; -extern const bool __static_condition_default_998; +extern const bool __static_condition_default_2062; +extern const bool __static_condition_default_559; extern const bool __static_condition_default_727; -extern const bool __static_condition_default_1700; -extern const bool __static_condition_default_521; -extern const bool __static_condition_default_2339; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_1649; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_311; -extern const bool __static_condition_default_709; -extern const bool __static_condition_default_1852; -extern const bool __static_condition_default_677; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_646; -extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_858; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_2342; -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_734; +extern const bool __static_condition_default_1341; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_419; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_721; +extern const bool __static_condition_default_333; +extern const bool __static_condition_default_536; +extern const bool __static_condition_default_891; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_1672; +extern const bool __static_condition_default_1318; extern const bool __static_condition_default_723; -extern const bool __static_condition_default_862; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_2331; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_386; +extern const bool __static_condition_default_550; +extern const bool __static_condition_default_1653; +extern const bool __static_condition_default_2330; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_1641; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_1093; +extern const bool __static_condition_default_1348; +extern const bool __static_condition_default_2059; +extern const bool __static_condition_default_1599; +extern const bool __static_condition_default_1342; +extern const bool __static_condition_default_2333; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_455; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_1720; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_549; +extern const bool __static_condition_default_1015; extern const bool __static_condition_default_1633; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_1377; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_747; +extern const bool __static_condition_default_1800; +extern const bool __static_condition_default_1848; +extern const bool __static_condition_default_2347; extern const bool __static_condition_default_365; -extern const bool __static_condition_default_1376; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_1743; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_887; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_1708; extern const bool __static_condition_default_1645; -extern const bool __static_condition_default_2102; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_1637; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_842; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_788; +extern const bool __static_condition_default_1712; +extern const bool __static_condition_default_1367; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_1700; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_2341; +extern const bool __static_condition_default_488; +extern const bool __static_condition_default_834; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_2329; +extern const bool __static_condition_default_2342; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_791; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_1649; +extern const bool __static_condition_default_299; extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_955; +extern const bool __static_condition_default_84; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_1769; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_2335; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_1449; +extern const bool __static_condition_default_521; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_636; +extern const bool __static_condition_default_929; +extern const bool __static_condition_default_367; +extern const bool __static_condition_default_388; +extern const bool __static_condition_default_907; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_1448; +extern const bool __static_condition_default_842; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_2100; +extern const bool __static_condition_default_2337; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_2035; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_1704; extern const bool __static_condition_default_170; -extern const bool __static_condition_default_2338; +extern const bool __static_condition_default_1682; +extern const bool __static_condition_default_512; +extern const bool __static_condition_default_2328; +extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_1371; extern const bool __static_condition_default_187; +extern const bool __static_condition_default_2102; extern const bool __static_condition_default_602; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_2344; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_1836; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_1743; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_2073; +extern const bool __static_condition_default_1759; +extern const bool __static_condition_default_2343; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_1686; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_1098; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_1657; +extern const bool __static_condition_default_1100; +extern const bool __static_condition_default_1675; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_753; +extern const bool __static_condition_default_2075; +extern const bool __static_condition_default_2036; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_2061; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_1050; extern const bool __static_condition_default_1679; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_1712; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_670; -extern const bool __static_condition_default_789; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_489; +extern const bool __static_condition_default_1844; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_1368; +extern const bool __static_condition_default_76; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_1669; +extern const bool __static_condition_default_568; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_337; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_1852; +extern const bool __static_condition_default_1860; extern const bool __static_condition_default_2230; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_1319; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -1827,12 +1827,12 @@ struct ____anonymous_tag_1450_1451 { unsigned int ____w_termsig_1452 : 7;// L72 unsigned int ____w_coredump_1453 : 1;// L73 unsigned int ____w_retcode_1454 : 8;// L74 -unsigned int : 16;// L75 +unsigned int __anon_id_0_1455 : 16;// L75 }; struct ____anonymous_tag_1456_1457 { unsigned int ____w_stopval_1458 : 8;// L87 unsigned int ____w_stopsig_1459 : 8;// L88 -unsigned int : 16;// L89 +unsigned int __anon_id_1_1460 : 16;// L89 }; union __wait_1461 { int __w_status_1462;// L68 diff --git a/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.desugared.c index 02d9dad2..4888b72f 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.desugared.c @@ -7,349 +7,349 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_431; -extern const bool __static_condition_default_887; -extern const bool __static_condition_default_1357; -extern const bool __static_condition_default_1516; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_543; -extern const bool __static_condition_default_1432; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_1353; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_1385; -extern const bool __static_condition_default_1750; -extern const bool __static_condition_default_1572; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_907; -extern const bool __static_condition_default_1944; -extern const bool __static_condition_default_875; -extern const bool __static_condition_default_701; -extern const bool __static_condition_default_1749; -extern const bool __static_condition_default_1753; -extern const bool __static_condition_default_1754; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_1560; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_491; extern const bool __static_condition_default_819; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_761; -extern const bool __static_condition_default_1424; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_2048; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_1531; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_388; +extern const bool __static_condition_default_1808; +extern const bool __static_condition_default_1377; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_1385; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_1810; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_779; +extern const bool __static_condition_default_1485; +extern const bool __static_condition_default_633; extern const bool __static_condition_default_789; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_1315; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_1787; -extern const bool __static_condition_default_311; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_541; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_817; extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_2042; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_1775; -extern const bool __static_condition_default_2049; +extern const bool __static_condition_default_1516; +extern const bool __static_condition_default_1776; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_521; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_1944; +extern const bool __static_condition_default_834; extern const bool __static_condition_default_803; -extern const bool __static_condition_default_1475; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_1808; -extern const bool __static_condition_default_1773; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_780; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_1373; -extern const bool __static_condition_default_1814; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_632; -extern const bool __static_condition_default_1791; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_1576; -extern const bool __static_condition_default_210; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_489; +extern const bool __static_condition_default_431; extern const bool __static_condition_default_636; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_1498; -extern const bool __static_condition_default_290; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_1388; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_2046; +extern const bool __static_condition_default_1027; extern const bool __static_condition_default_382; extern const bool __static_condition_default_471; -extern const bool __static_condition_default_488; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_187; -extern const bool __static_condition_default_1409; -extern const bool __static_condition_default_1391; -extern const bool __static_condition_default_1165; -extern const bool __static_condition_default_1428; -extern const bool __static_condition_default_1436; -extern const bool __static_condition_default_2046; -extern const bool __static_condition_default_2040; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_1560; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_894; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_388; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_1164; -extern const bool __static_condition_default_956; -extern const bool __static_condition_default_590; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_438; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_817; +extern const bool __static_condition_default_1420; extern const bool __static_condition_default_248; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_412; -extern const bool __static_condition_default_521; -extern const bool __static_condition_default_1377; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_564; -extern const bool __static_condition_default_957; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_1381; -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_1345; +extern const bool __static_condition_default_715; extern const bool __static_condition_default_386; +extern const bool __static_condition_default_536; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_550; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_1369; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_1436; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_2044; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_2048; extern const bool __static_condition_default_553; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_1458; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_549; +extern const bool __static_condition_default_76; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_929; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_1750; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_1405; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_840; extern const bool __static_condition_default_193; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_791; +extern const bool __static_condition_default_1409; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_1475; +extern const bool __static_condition_default_1432; +extern const bool __static_condition_default_290; +extern const bool __static_condition_default_1345; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_1749; +extern const bool __static_condition_default_1381; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_1754; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_1498; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_1774; +extern const bool __static_condition_default_84; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_2043; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_1424; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_991; extern const bool __static_condition_default_375; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_2044; -extern const bool __static_condition_default_650; +extern const bool __static_condition_default_438; extern const bool __static_condition_default_1515; -extern const bool __static_condition_default_347; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_846; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_512; -extern const bool __static_condition_default_1789; -extern const bool __static_condition_default_1810; -extern const bool __static_condition_default_1459; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_747; -extern const bool __static_condition_default_1785; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_693; -extern const bool __static_condition_default_315; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_1420; -extern const bool __static_condition_default_380; -extern const bool __static_condition_default_685; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_1369; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_702; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_2050; -extern const bool __static_condition_default_333; -extern const bool __static_condition_default_834; +extern const bool __static_condition_default_1164; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_170; extern const bool __static_condition_default_878; -extern const bool __static_condition_default_769; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_512; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_677; +extern const bool __static_condition_default_1315; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_1152; +extern const bool __static_condition_default_1773; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_761; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_2039; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_311; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_123; extern const bool __static_condition_default_864; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_313; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_708; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_955; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_1459; +extern const bool __static_condition_default_1531; +extern const bool __static_condition_default_1357; extern const bool __static_condition_default_367; -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_280; +extern const bool __static_condition_default_907; +extern const bool __static_condition_default_613; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_204; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_998; extern const bool __static_condition_default_402; -extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_559; -extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_76; -extern const bool __static_condition_default_793; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_963; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_1458; -extern const bool __static_condition_default_1568; -extern const bool __static_condition_default_373; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_286; extern const bool __static_condition_default_1552; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_779; -extern const bool __static_condition_default_1402; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_549; -extern const bool __static_condition_default_807; +extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_187; +extern const bool __static_condition_default_662; extern const bool __static_condition_default_259; -extern const bool __static_condition_default_872; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_1159; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_2041; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_846; +extern const bool __static_condition_default_347; +extern const bool __static_condition_default_1568; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_1398; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_702; +extern const bool __static_condition_default_488; +extern const bool __static_condition_default_651; extern const bool __static_condition_default_891; -extern const bool __static_condition_default_2039; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_2045; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_536; -extern const bool __static_condition_default_645; -extern const bool __static_condition_default_1365; +extern const bool __static_condition_default_568; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_753; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_583; +extern const bool __static_condition_default_455; +extern const bool __static_condition_default_1373; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_1789; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_2042; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_1564; +extern const bool __static_condition_default_380; +extern const bool __static_condition_default_1165; +extern const bool __static_condition_default_1787; +extern const bool __static_condition_default_559; +extern const bool __static_condition_default_1785; +extern const bool __static_condition_default_1576; +extern const bool __static_condition_default_1816; +extern const bool __static_condition_default_1349; +extern const bool __static_condition_default_1532; +extern const bool __static_condition_default_365; +extern const bool __static_condition_default_721; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_894; +extern const bool __static_condition_default_544; +extern const bool __static_condition_default_747; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_419; extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_363; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_670; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_1159; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_1391; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_1814; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_1572; +extern const bool __static_condition_default_296; extern const bool __static_condition_default_1361; -extern const bool __static_condition_default_357; -extern const bool __static_condition_default_709; -extern const bool __static_condition_default_972; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_1775; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_1353; +extern const bool __static_condition_default_2040; +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_1388; +extern const bool __static_condition_default_1791; extern const bool __static_condition_default_788; +extern const bool __static_condition_default_2049; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_1453; +extern const bool __static_condition_default_1395; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_619; +extern const bool __static_condition_default_963; +extern const bool __static_condition_default_1556; +extern const bool __static_condition_default_751; extern const bool __static_condition_default_914; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_1776; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_646; -extern const bool __static_condition_default_2043; -extern const bool __static_condition_default_1152; -extern const bool __static_condition_default_1485; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_613; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_752; extern const bool __static_condition_default_1416; -extern const bool __static_condition_default_419; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_217; -extern const bool __static_condition_default_757; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_249; extern const bool __static_condition_default_842; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_1341; -extern const bool __static_condition_default_787; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_461; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_393; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_53; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_858; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_408; -extern const bool __static_condition_default_929; extern const bool __static_condition_default_331; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_1774; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_568; -extern const bool __static_condition_default_1405; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_173; +extern const bool __static_condition_default_1753; +extern const bool __static_condition_default_333; extern const bool __static_condition_default_1489; -extern const bool __static_condition_default_1532; -extern const bool __static_condition_default_1556; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_583; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_955; -extern const bool __static_condition_default_1349; -extern const bool __static_condition_default_317; -extern const bool __static_condition_default_848; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_1453; -extern const bool __static_condition_default_1564; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_355; +extern const bool __static_condition_default_2045; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_759; +extern const bool __static_condition_default_1365; extern const bool __static_condition_default_244; -extern const bool __static_condition_default_204; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_1816; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_753; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_1395; -extern const bool __static_condition_default_198; -extern const bool __static_condition_default_670; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_769; +extern const bool __static_condition_default_1428; extern const bool __static_condition_default_868; -extern const bool __static_condition_default_677; -extern const bool __static_condition_default_755; -extern const bool __static_condition_default_1398; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_638; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_2041; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_337; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_1341; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_2050; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_875; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_1402; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_1081; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -1674,12 +1674,12 @@ struct ____anonymous_tag_1166_1167 { unsigned int ____w_termsig_1168 : 7;// L72 unsigned int ____w_coredump_1169 : 1;// L73 unsigned int ____w_retcode_1170 : 8;// L74 -unsigned int : 16;// L75 +unsigned int __anon_id_0_1171 : 16;// L75 }; struct ____anonymous_tag_1172_1173 { unsigned int ____w_stopval_1174 : 8;// L87 unsigned int ____w_stopsig_1175 : 8;// L88 -unsigned int : 16;// L89 +unsigned int __anon_id_1_1176 : 16;// L89 }; union __wait_1177 { int __w_status_1178;// L68 diff --git a/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c index bd6cb63a..50ab91a6 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c @@ -7,347 +7,347 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_438; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_333; -extern const bool __static_condition_default_347; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_709; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_543; -extern const bool __static_condition_default_1516; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_1791; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_1754; extern const bool __static_condition_default_2053; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_907; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_701; extern const bool __static_condition_default_1164; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_872; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_1560; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_1816; +extern const bool __static_condition_default_1152; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_1402; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_1475; +extern const bool __static_condition_default_757; extern const bool __static_condition_default_549; -extern const bool __static_condition_default_1810; -extern const bool __static_condition_default_2051; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_789; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_1388; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_1428; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_2055; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_1814; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_578; extern const bool __static_condition_default_780; -extern const bool __static_condition_default_357; -extern const bool __static_condition_default_412; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_1341; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_1066; extern const bool __static_condition_default_432; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_789; +extern const bool __static_condition_default_1773; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_955; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_1165; +extern const bool __static_condition_default_419; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_891; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_637; extern const bool __static_condition_default_1564; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_803; +extern const bool __static_condition_default_1785; +extern const bool __static_condition_default_834; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_1458; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_521; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_1365; +extern const bool __static_condition_default_759; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_1556; +extern const bool __static_condition_default_1436; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_1576; +extern const bool __static_condition_default_1787; +extern const bool __static_condition_default_791; extern const bool __static_condition_default_761; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_963; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_2054; -extern const bool __static_condition_default_858; -extern const bool __static_condition_default_290; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_241; +extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_1810; +extern const bool __static_condition_default_1944; extern const bool __static_condition_default_499; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_1428; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_198; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_1416; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_583; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_721; extern const bool __static_condition_default_187; -extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_769; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_840; +extern const bool __static_condition_default_2056; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_623; extern const bool __static_condition_default_645; -extern const bool __static_condition_default_955; -extern const bool __static_condition_default_2057; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_282; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_1531; +extern const bool __static_condition_default_388; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_559; +extern const bool __static_condition_default_1568; +extern const bool __static_condition_default_1753; +extern const bool __static_condition_default_1345; +extern const bool __static_condition_default_550; extern const bool __static_condition_default_386; -extern const bool __static_condition_default_791; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_1349; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_1453; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_1816; +extern const bool __static_condition_default_1385; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_1381; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_613; extern const bool __static_condition_default_1377; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_1773; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_875; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_1345; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_1357; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_801; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_1532; +extern const bool __static_condition_default_747; +extern const bool __static_condition_default_282; extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_1489; -extern const bool __static_condition_default_373; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_769; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_1750; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_1485; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_708; extern const bool __static_condition_default_957; +extern const bool __static_condition_default_544; +extern const bool __static_condition_default_1515; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_1789; extern const bool __static_condition_default_702; -extern const bool __static_condition_default_1552; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_408; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_431; +extern const bool __static_condition_default_767; extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_793; -extern const bool __static_condition_default_1165; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_1315; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_461; -extern const bool __static_condition_default_638; -extern const bool __static_condition_default_1385; -extern const bool __static_condition_default_1485; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_1159; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_1398; -extern const bool __static_condition_default_311; +extern const bool __static_condition_default_1791; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_1489; +extern const bool __static_condition_default_1373; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_363; extern const bool __static_condition_default_636; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_1424; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_978; +extern const bool __static_condition_default_1405; +extern const bool __static_condition_default_488; +extern const bool __static_condition_default_1432; +extern const bool __static_condition_default_1808; +extern const bool __static_condition_default_2057; +extern const bool __static_condition_default_1560; +extern const bool __static_condition_default_1409; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_367; +extern const bool __static_condition_default_602; extern const bool __static_condition_default_2049; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_907; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_929; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_619; extern const bool __static_condition_default_293; -extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_1531; -extern const bool __static_condition_default_1749; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_1787; -extern const bool __static_condition_default_564; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_590; +extern const bool __static_condition_default_842; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_337; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_2054; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_2052; +extern const bool __static_condition_default_1516; extern const bool __static_condition_default_878; -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_1754; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_536; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_1388; -extern const bool __static_condition_default_1532; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_568; -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_1808; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_891; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_516; +extern const bool __static_condition_default_347; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_489; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_455; extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_1475; -extern const bool __static_condition_default_559; -extern const bool __static_condition_default_956; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_1416; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_755; -extern const bool __static_condition_default_1789; -extern const bool __static_condition_default_1369; -extern const bool __static_condition_default_315; -extern const bool __static_condition_default_393; +extern const bool __static_condition_default_1775; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_699; extern const bool __static_condition_default_76; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_1373; -extern const bool __static_condition_default_1556; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_1458; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_1572; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_650; extern const bool __static_condition_default_275; -extern const bool __static_condition_default_1776; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_583; -extern const bool __static_condition_default_1409; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_2056; +extern const bool __static_condition_default_2061; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_692; extern const bool __static_condition_default_248; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_693; -extern const bool __static_condition_default_1774; -extern const bool __static_condition_default_972; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_541; extern const bool __static_condition_default_380; +extern const bool __static_condition_default_848; extern const bool __static_condition_default_257; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_1395; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_1365; -extern const bool __static_condition_default_1405; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_753; +extern const bool __static_condition_default_846; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_1353; +extern const bool __static_condition_default_1357; +extern const bool __static_condition_default_84; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_1369; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_894; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_382; +extern const bool __static_condition_default_365; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_597; extern const bool __static_condition_default_677; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_1315; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_875; +extern const bool __static_condition_default_1459; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_727; extern const bool __static_condition_default_670; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_311; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_235; extern const bool __static_condition_default_883; -extern const bool __static_condition_default_488; -extern const bool __static_condition_default_894; -extern const bool __static_condition_default_1353; -extern const bool __static_condition_default_1576; -extern const bool __static_condition_default_1432; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_1436; -extern const bool __static_condition_default_53; -extern const bool __static_condition_default_313; -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_613; -extern const bool __static_condition_default_787; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_1402; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_2052; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_747; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_388; -extern const bool __static_condition_default_217; -extern const bool __static_condition_default_402; -extern const bool __static_condition_default_846; -extern const bool __static_condition_default_1420; -extern const bool __static_condition_default_1568; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_1753; +extern const bool __static_condition_default_2051; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_1572; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_568; +extern const bool __static_condition_default_1361; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_1498; extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_1349; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_317; +extern const bool __static_condition_default_1774; +extern const bool __static_condition_default_229; extern const bool __static_condition_default_512; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_1776; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_1552; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_963; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_333; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_1159; +extern const bool __static_condition_default_1395; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_543; extern const bool __static_condition_default_1391; -extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_685; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_1453; -extern const bool __static_condition_default_204; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_2055; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_521; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_1785; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_848; extern const bool __static_condition_default_779; -extern const bool __static_condition_default_914; -extern const bool __static_condition_default_1498; -extern const bool __static_condition_default_367; -extern const bool __static_condition_default_1775; -extern const bool __static_condition_default_1814; -extern const bool __static_condition_default_2061; -extern const bool __static_condition_default_887; -extern const bool __static_condition_default_382; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_1341; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_1152; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_753; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_1361; -extern const bool __static_condition_default_1750; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_1944; -extern const bool __static_condition_default_238; +extern const bool __static_condition_default_1398; +extern const bool __static_condition_default_1420; +extern const bool __static_condition_default_290; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_536; extern const bool __static_condition_default_632; -extern const bool __static_condition_default_1381; -extern const bool __static_condition_default_842; -extern const bool __static_condition_default_1459; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_419; -extern const bool __static_condition_default_1515; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_929; -extern const bool __static_condition_default_646; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_1424; +extern const bool __static_condition_default_1749; +extern const bool __static_condition_default_204; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -1682,12 +1682,12 @@ struct ____anonymous_tag_1166_1167 { unsigned int ____w_termsig_1168 : 7;// L72 unsigned int ____w_coredump_1169 : 1;// L73 unsigned int ____w_retcode_1170 : 8;// L74 -unsigned int : 16;// L75 +unsigned int __anon_id_0_1171 : 16;// L75 }; struct ____anonymous_tag_1172_1173 { unsigned int ____w_stopval_1174 : 8;// L87 unsigned int ____w_stopsig_1175 : 8;// L88 -unsigned int : 16;// L89 +unsigned int __anon_id_1_1176 : 16;// L89 }; union __wait_1177 { int __w_status_1178;// L68 @@ -2913,21 +2913,21 @@ if (__static_condition_default_2052) { -char * (__buf_2041)= __apr_rmm_addr_get_2040 (( char * ) __calloc_1639 ( __rmm_addr_2037 ,sizeof(char)));// L16 +char * (__buf_2041)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2037 ,sizeof(char)));// L16 -char * (__buf_2042)= __apr_rmm_addr_get_2040 (( char * ) __calloc_1639 ( __rmm_addr_2038 ,sizeof(char)));// L16 +char * (__buf_2042)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2038 ,sizeof(char)));// L16 -char * (__buf_2043)= __apr_rmm_addr_get_2040 (( char * ) __calloc_1640 ( __rmm_addr_2037 ,sizeof(char)));// L16 +char * (__buf_2043)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2037 ,sizeof(char)));// L16 -char * (__buf_2044)= __apr_rmm_addr_get_2040 (( char * ) __calloc_1640 ( __rmm_addr_2038 ,sizeof(char)));// L16 +char * (__buf_2044)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2038 ,sizeof(char)));// L16 -char * (__buf_2045)= __apr_rmm_addr_get_2040 (( char * ) __calloc_1641 ( __rmm_addr_2036 ,sizeof(char)));// L16 +char * (__buf_2045)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2036 ,sizeof(char)));// L16 -char * (__buf_2046)= __apr_rmm_addr_get_2040 (( char * ) __calloc_1641 ( __rmm_addr_2038 ,sizeof(char)));// L16 +char * (__buf_2046)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2038 ,sizeof(char)));// L16 -char * (__buf_2047)= __apr_rmm_addr_get_2040 (( char * ) __calloc_1642 ( __rmm_addr_2036 ,sizeof(char)));// L16 +char * (__buf_2047)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2036 ,sizeof(char)));// L16 -char * (__buf_2048)= __apr_rmm_addr_get_2040 (( char * ) __calloc_1642 ( __rmm_addr_2038 ,sizeof(char)));// L16 +char * (__buf_2048)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2038 ,sizeof(char)));// L16 if (__static_condition_default_2049) { __static_type_error("invalid declaration of buf under this presence condition"); diff --git a/fonda/cpp_testsuite/varBugs/APACHE/dbafef17dd1.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/dbafef17dd1.desugared.c index 17539cee..566a5c58 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/dbafef17dd1.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/dbafef17dd1.desugared.c @@ -7,90 +7,90 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_240; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_420; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_602; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_1024; extern const bool __static_condition_default_243; -extern const bool __static_condition_default_325; -extern const bool __static_condition_default_426; -extern const bool __static_condition_default_1096; -extern const bool __static_condition_default_429; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_285; -extern const bool __static_condition_default_1054; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_1037; +extern const bool __static_condition_default_252; +extern const bool __static_condition_default_352; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_1074; extern const bool __static_condition_default_1087; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_349; -extern const bool __static_condition_default_604; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_594; extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_1031; -extern const bool __static_condition_default_1048; -extern const bool __static_condition_default_579; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_273; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_818; -extern const bool __static_condition_default_261; extern const bool __static_condition_default_1053; -extern const bool __static_condition_default_1074; -extern const bool __static_condition_default_629; -extern const bool __static_condition_default_1047; -extern const bool __static_condition_default_1094; extern const bool __static_condition_default_270; -extern const bool __static_condition_default_1088; -extern const bool __static_condition_default_805; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_627; -extern const bool __static_condition_default_279; -extern const bool __static_condition_default_305; -extern const bool __static_condition_default_237; -extern const bool __static_condition_default_60; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_1077; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_804; -extern const bool __static_condition_default_252; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_1092; +extern const bool __static_condition_default_420; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_240; +extern const bool __static_condition_default_379; +extern const bool __static_condition_default_1073; extern const bool __static_condition_default_806; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_1094; +extern const bool __static_condition_default_60; +extern const bool __static_condition_default_1031; extern const bool __static_condition_default_595; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_1082; -extern const bool __static_condition_default_361; -extern const bool __static_condition_default_594; -extern const bool __static_condition_default_1083; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_414; -extern const bool __static_condition_default_67; -extern const bool __static_condition_default_1092; -extern const bool __static_condition_default_352; +extern const bool __static_condition_default_627; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_818; +extern const bool __static_condition_default_1077; extern const bool __static_condition_default_302; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_1025; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_394; -extern const bool __static_condition_default_1024; -extern const bool __static_condition_default_621; +extern const bool __static_condition_default_237; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_1096; +extern const bool __static_condition_default_1083; +extern const bool __static_condition_default_308; +extern const bool __static_condition_default_629; +extern const bool __static_condition_default_1047; +extern const bool __static_condition_default_1054; extern const bool __static_condition_default_215; -extern const bool __static_condition_default_288; +extern const bool __static_condition_default_378; extern const bool __static_condition_default_1030; +extern const bool __static_condition_default_1037; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_394; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_804; +extern const bool __static_condition_default_429; +extern const bool __static_condition_default_426; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_261; +extern const bool __static_condition_default_305; +extern const bool __static_condition_default_349; +extern const bool __static_condition_default_414; +extern const bool __static_condition_default_1088; +extern const bool __static_condition_default_819; extern const bool __static_condition_default_1095; -extern const bool __static_condition_default_293; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_621; extern const bool __static_condition_default_234; -extern const bool __static_condition_default_378; +extern const bool __static_condition_default_273; +extern const bool __static_condition_default_1048; +extern const bool __static_condition_default_279; extern const bool __static_condition_default_276; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_379; -extern const bool __static_condition_default_581; -extern const bool __static_condition_default_417; +extern const bool __static_condition_default_604; +extern const bool __static_condition_default_1082; +extern const bool __static_condition_default_361; +extern const bool __static_condition_default_255; extern const bool __static_condition_default_423; -extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_285; +extern const bool __static_condition_default_67; +extern const bool __static_condition_default_1025; +extern const bool __static_condition_default_805; extern const bool __static_condition_default_258; -extern const bool __static_condition_default_308; +extern const bool __static_condition_default_325; +extern const bool __static_condition_default_579; +extern const bool __static_condition_default_581; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -719,12 +719,12 @@ struct ____anonymous_tag_70_71 { unsigned int ____w_termsig_72 : 7;// L72 unsigned int ____w_coredump_73 : 1;// L73 unsigned int ____w_retcode_74 : 8;// L74 -unsigned int : 16;// L75 +unsigned int __anon_id_0_75 : 16;// L75 }; struct ____anonymous_tag_76_77 { unsigned int ____w_stopval_78 : 8;// L87 unsigned int ____w_stopsig_79 : 8;// L88 -unsigned int : 16;// L89 +unsigned int __anon_id_1_80 : 16;// L89 }; union __wait_81 { int __w_status_82;// L68 @@ -1560,12 +1560,12 @@ if (__static_condition_default_1088) { char __newuri_1084[20];// L8 if (__static_condition_default_1089) { - __strncpy_847 ( __newuri_1084 ,"pregsub()",sizeof(char[1]) - 1) ; // L11 + __strncpy_847 ( __newuri_1084 ,"pregsub()",sizeof(( __newuri_1084 )) - 1) ; // L11 } if (__static_condition_default_1090) { - __strncpy_848 ( __newuri_1084 ,"pregsub()",sizeof(char[1]) - 1) ; // L11 + __strncpy_848 ( __newuri_1084 ,"pregsub()",sizeof(( __newuri_1084 )) - 1) ; // L11 } - __newuri_1084 [ sizeof(char[1]) ] = '\0' ; // L12 + __newuri_1084 [ sizeof(( __newuri_1084 - 1 )) ] = '\0' ; // L12 } } @@ -1601,7 +1601,7 @@ if (__static_condition_default_1092) { char __newuri_1084[20];// L8 __static_type_error("type error") ; // L11 - __newuri_1084 [ sizeof(char[1]) ] = '\0' ; // L12 + __newuri_1084 [ sizeof(( __newuri_1084 - 1 )) ] = '\0' ; // L12 } } diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.c index 78c389ca..be331ab2 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.c @@ -7,375 +7,375 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_2066; -extern const bool __static_condition_default_2072; -extern const bool __static_condition_default_438; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_1754; +extern const bool __static_condition_default_1164; +extern const bool __static_condition_default_1152; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_1402; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_2059; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_1475; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_2068; +extern const bool __static_condition_default_549; +extern const bool __static_condition_default_2055; extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_333; -extern const bool __static_condition_default_347; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_709; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_1050; extern const bool __static_condition_default_651; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_2047; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_543; -extern const bool __static_condition_default_1516; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_2075; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_2070; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_1791; +extern const bool __static_condition_default_1388; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_2050; +extern const bool __static_condition_default_1428; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_1814; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_2076; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_1341; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_789; +extern const bool __static_condition_default_1773; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_516; extern const bool __static_condition_default_2064; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_2062; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_907; -extern const bool __static_condition_default_2049; -extern const bool __static_condition_default_542; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_2039; +extern const bool __static_condition_default_955; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_2057; +extern const bool __static_condition_default_792; extern const bool __static_condition_default_701; -extern const bool __static_condition_default_1164; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_872; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_173; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_1165; +extern const bool __static_condition_default_419; +extern const bool __static_condition_default_685; extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_1560; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_2061; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_1816; -extern const bool __static_condition_default_549; -extern const bool __static_condition_default_1810; -extern const bool __static_condition_default_2080; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_789; -extern const bool __static_condition_default_780; -extern const bool __static_condition_default_357; -extern const bool __static_condition_default_412; -extern const bool __static_condition_default_432; +extern const bool __static_condition_default_891; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_2047; +extern const bool __static_condition_default_2075; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_637; extern const bool __static_condition_default_1564; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_803; +extern const bool __static_condition_default_1785; +extern const bool __static_condition_default_834; +extern const bool __static_condition_default_2048; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_1458; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_521; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_1365; +extern const bool __static_condition_default_759; +extern const bool __static_condition_default_2065; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_1556; +extern const bool __static_condition_default_1436; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_1576; +extern const bool __static_condition_default_1787; +extern const bool __static_condition_default_791; extern const bool __static_condition_default_761; -extern const bool __static_condition_default_2039; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_963; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_858; -extern const bool __static_condition_default_290; -extern const bool __static_condition_default_2063; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_241; +extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_1810; +extern const bool __static_condition_default_1944; extern const bool __static_condition_default_499; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_1428; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_198; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_1416; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_583; +extern const bool __static_condition_default_2051; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_721; extern const bool __static_condition_default_187; +extern const bool __static_condition_default_2069; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_2074; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_1531; +extern const bool __static_condition_default_388; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_559; +extern const bool __static_condition_default_1568; +extern const bool __static_condition_default_1753; +extern const bool __static_condition_default_2045; +extern const bool __static_condition_default_1345; +extern const bool __static_condition_default_550; +extern const bool __static_condition_default_386; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_823; extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_684; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_1349; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_1453; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_1816; +extern const bool __static_condition_default_1385; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_2067; +extern const bool __static_condition_default_2073; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_1381; extern const bool __static_condition_default_2052; -extern const bool __static_condition_default_769; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_645; -extern const bool __static_condition_default_955; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_613; +extern const bool __static_condition_default_1377; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_2080; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_2063; extern const bool __static_condition_default_274; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_1532; +extern const bool __static_condition_default_747; extern const bool __static_condition_default_282; -extern const bool __static_condition_default_386; -extern const bool __static_condition_default_2050; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_1377; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_1773; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_875; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_1345; -extern const bool __static_condition_default_2059; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_1357; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_2054; extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_2067; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_1489; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_2079; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_769; +extern const bool __static_condition_default_2056; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_1750; +extern const bool __static_condition_default_2058; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_1485; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_708; extern const bool __static_condition_default_957; +extern const bool __static_condition_default_544; +extern const bool __static_condition_default_1515; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_1789; extern const bool __static_condition_default_702; -extern const bool __static_condition_default_1552; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_408; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_431; +extern const bool __static_condition_default_767; extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_2046; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_793; -extern const bool __static_condition_default_1165; +extern const bool __static_condition_default_1791; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_1489; +extern const bool __static_condition_default_1373; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_636; +extern const bool __static_condition_default_1405; +extern const bool __static_condition_default_488; +extern const bool __static_condition_default_1432; +extern const bool __static_condition_default_1808; +extern const bool __static_condition_default_1560; +extern const bool __static_condition_default_1409; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_367; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_907; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_929; +extern const bool __static_condition_default_538; extern const bool __static_condition_default_2071; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_1315; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_461; extern const bool __static_condition_default_638; -extern const bool __static_condition_default_1385; -extern const bool __static_condition_default_1485; -extern const bool __static_condition_default_2048; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_1159; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_668; +extern const bool __static_condition_default_2079; +extern const bool __static_condition_default_840; extern const bool __static_condition_default_768; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_2051; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_1398; -extern const bool __static_condition_default_311; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_1424; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_978; +extern const bool __static_condition_default_619; extern const bool __static_condition_default_293; -extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_1531; -extern const bool __static_condition_default_1749; -extern const bool __static_condition_default_2065; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_1787; -extern const bool __static_condition_default_564; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_590; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_1754; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_536; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_1388; -extern const bool __static_condition_default_1532; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_568; -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_1808; -extern const bool __static_condition_default_2068; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_891; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_1475; -extern const bool __static_condition_default_559; -extern const bool __static_condition_default_956; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_2055; -extern const bool __static_condition_default_1416; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_755; -extern const bool __static_condition_default_1789; -extern const bool __static_condition_default_1369; -extern const bool __static_condition_default_315; -extern const bool __static_condition_default_393; -extern const bool __static_condition_default_76; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_1373; -extern const bool __static_condition_default_2076; -extern const bool __static_condition_default_1556; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_1458; -extern const bool __static_condition_default_475; +extern const bool __static_condition_default_842; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_2060; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_223; extern const bool __static_condition_default_686; -extern const bool __static_condition_default_1572; +extern const bool __static_condition_default_337; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_1516; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_347; +extern const bool __static_condition_default_2062; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_489; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_455; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_1775; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_76; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_2072; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_650; extern const bool __static_condition_default_275; -extern const bool __static_condition_default_1776; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_583; -extern const bool __static_condition_default_1409; -extern const bool __static_condition_default_235; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_2046; +extern const bool __static_condition_default_692; extern const bool __static_condition_default_248; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_693; -extern const bool __static_condition_default_1774; -extern const bool __static_condition_default_2077; -extern const bool __static_condition_default_972; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_541; extern const bool __static_condition_default_380; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_2077; extern const bool __static_condition_default_257; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_1395; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_1365; -extern const bool __static_condition_default_1405; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_753; +extern const bool __static_condition_default_846; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_1353; +extern const bool __static_condition_default_1357; +extern const bool __static_condition_default_84; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_1369; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_894; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_382; +extern const bool __static_condition_default_365; +extern const bool __static_condition_default_2053; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_2078; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_597; extern const bool __static_condition_default_677; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_1315; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_2066; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_875; +extern const bool __static_condition_default_1459; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_727; extern const bool __static_condition_default_670; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_311; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_2054; extern const bool __static_condition_default_883; -extern const bool __static_condition_default_488; -extern const bool __static_condition_default_894; -extern const bool __static_condition_default_1353; -extern const bool __static_condition_default_1576; -extern const bool __static_condition_default_1432; -extern const bool __static_condition_default_2045; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_1436; -extern const bool __static_condition_default_53; -extern const bool __static_condition_default_313; -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_613; -extern const bool __static_condition_default_787; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_1402; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_2078; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_747; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_388; -extern const bool __static_condition_default_217; -extern const bool __static_condition_default_402; -extern const bool __static_condition_default_846; -extern const bool __static_condition_default_1420; -extern const bool __static_condition_default_1568; -extern const bool __static_condition_default_2057; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_1753; -extern const bool __static_condition_default_2058; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_1572; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_568; +extern const bool __static_condition_default_1361; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_1498; extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_1349; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_317; +extern const bool __static_condition_default_2049; +extern const bool __static_condition_default_1774; +extern const bool __static_condition_default_229; extern const bool __static_condition_default_512; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_1776; +extern const bool __static_condition_default_2070; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_1552; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_963; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_333; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_1159; +extern const bool __static_condition_default_1395; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_543; extern const bool __static_condition_default_1391; -extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_2074; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_685; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_1453; -extern const bool __static_condition_default_204; -extern const bool __static_condition_default_2069; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_521; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_1785; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_848; extern const bool __static_condition_default_779; -extern const bool __static_condition_default_914; -extern const bool __static_condition_default_1498; -extern const bool __static_condition_default_367; -extern const bool __static_condition_default_1775; -extern const bool __static_condition_default_1814; -extern const bool __static_condition_default_2060; -extern const bool __static_condition_default_887; -extern const bool __static_condition_default_382; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_1341; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_1152; -extern const bool __static_condition_default_2053; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_2056; -extern const bool __static_condition_default_753; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_1361; -extern const bool __static_condition_default_1750; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_1944; -extern const bool __static_condition_default_238; +extern const bool __static_condition_default_1398; +extern const bool __static_condition_default_1420; +extern const bool __static_condition_default_290; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_536; extern const bool __static_condition_default_632; -extern const bool __static_condition_default_1381; -extern const bool __static_condition_default_842; -extern const bool __static_condition_default_1459; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_419; -extern const bool __static_condition_default_1515; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_929; -extern const bool __static_condition_default_2073; -extern const bool __static_condition_default_646; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_1424; +extern const bool __static_condition_default_1749; +extern const bool __static_condition_default_204; +extern const bool __static_condition_default_2061; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -1728,12 +1728,12 @@ struct ____anonymous_tag_1166_1167 { unsigned int ____w_termsig_1168 : 7;// L72 unsigned int ____w_coredump_1169 : 1;// L73 unsigned int ____w_retcode_1170 : 8;// L74 -unsigned int : 16;// L75 +unsigned int __anon_id_0_1171 : 16;// L75 }; struct ____anonymous_tag_1172_1173 { unsigned int ____w_stopval_1174 : 8;// L87 unsigned int ____w_stopsig_1175 : 8;// L88 -unsigned int : 16;// L89 +unsigned int __anon_id_1_1176 : 16;// L89 }; union __wait_1177 { int __w_status_1178;// L68 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/192c35f6eb2.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/192c35f6eb2.desugared.c index 62f4b712..5bc36907 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/192c35f6eb2.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/192c35f6eb2.desugared.c @@ -7,308 +7,308 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_872; -extern const bool __static_condition_default_583; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_1377; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_315; -extern const bool __static_condition_default_536; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_201; extern const bool __static_condition_default_801; -extern const bool __static_condition_default_419; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_1324; -extern const bool __static_condition_default_1383; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_747; -extern const bool __static_condition_default_1389; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_685; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_1388; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_701; -extern const bool __static_condition_default_780; -extern const bool __static_condition_default_431; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_1393; -extern const bool __static_condition_default_803; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_564; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_1325; -extern const bool __static_condition_default_1113; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_248; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_702; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_846; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_388; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_543; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_1392; extern const bool __static_condition_default_198; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_693; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_380; +extern const bool __static_condition_default_315; extern const bool __static_condition_default_813; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_891; -extern const bool __static_condition_default_699; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_1383; +extern const bool __static_condition_default_1396; +extern const bool __static_condition_default_290; +extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_761; +extern const bool __static_condition_default_1391; extern const bool __static_condition_default_382; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_1342; -extern const bool __static_condition_default_412; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_568; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_299; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_123; extern const bool __static_condition_default_408; -extern const bool __static_condition_default_1099; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_1331; -extern const bool __static_condition_default_1390; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_1093; -extern const bool __static_condition_default_559; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_76; -extern const bool __static_condition_default_613; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_590; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_313; -extern const bool __static_condition_default_1098; -extern const bool __static_condition_default_1100; -extern const bool __static_condition_default_53; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_787; -extern const bool __static_condition_default_380; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_347; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_204; +extern const bool __static_condition_default_1324; +extern const bool __static_condition_default_759; extern const bool __static_condition_default_657; -extern const bool __static_condition_default_512; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_488; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_1319; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_1387; +extern const bool __static_condition_default_789; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_972; extern const bool __static_condition_default_193; -extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_817; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_677; extern const bool __static_condition_default_1367; -extern const bool __static_condition_default_907; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_461; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_779; -extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_613; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_702; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_1397; +extern const bool __static_condition_default_619; +extern const bool __static_condition_default_1318; +extern const bool __static_condition_default_1325; extern const bool __static_condition_default_270; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_779; +extern const bool __static_condition_default_699; extern const bool __static_condition_default_317; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_537; +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_1385; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_1387; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_717; extern const bool __static_condition_default_659; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_583; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_1348; extern const bool __static_condition_default_475; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_649; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_715; extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_670; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_875; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_1389; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_955; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_1401; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_544; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_1331; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_894; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_311; +extern const bool __static_condition_default_846; +extern const bool __static_condition_default_963; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_1092; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_769; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_1100; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_1319; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_1098; extern const bool __static_condition_default_1394; +extern const bool __static_condition_default_559; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_419; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_721; +extern const bool __static_condition_default_1347; +extern const bool __static_condition_default_333; +extern const bool __static_condition_default_536; +extern const bool __static_condition_default_891; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_1368; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_1099; +extern const bool __static_condition_default_169; extern const bool __static_condition_default_386; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_438; +extern const bool __static_condition_default_550; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_293; extern const bool __static_condition_default_455; -extern const bool __static_condition_default_957; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_1330; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_753; -extern const bool __static_condition_default_1341; -extern const bool __static_condition_default_217; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_755; -extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_661; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_549; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_1388; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_1377; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_747; +extern const bool __static_condition_default_365; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_1093; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_488; +extern const bool __static_condition_default_834; extern const bool __static_condition_default_1371; -extern const bool __static_condition_default_204; -extern const bool __static_condition_default_393; +extern const bool __static_condition_default_543; extern const bool __static_condition_default_1112; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_1318; extern const bool __static_condition_default_257; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_367; -extern const bool __static_condition_default_1092; -extern const bool __static_condition_default_347; -extern const bool __static_condition_default_894; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_333; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_632; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_357; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_791; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_1113; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_84; extern const bool __static_condition_default_280; -extern const bool __static_condition_default_1376; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_1391; +extern const bool __static_condition_default_1384; +extern const bool __static_condition_default_1342; +extern const bool __static_condition_default_1392; +extern const bool __static_condition_default_182; extern const bool __static_condition_default_662; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_491; extern const bool __static_condition_default_745; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_963; -extern const bool __static_condition_default_848; -extern const bool __static_condition_default_290; -extern const bool __static_condition_default_402; -extern const bool __static_condition_default_769; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_1401; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_549; -extern const bool __static_condition_default_1384; -extern const bool __static_condition_default_914; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_521; extern const bool __static_condition_default_836; -extern const bool __static_condition_default_956; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_638; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_875; +extern const bool __static_condition_default_636; extern const bool __static_condition_default_929; -extern const bool __static_condition_default_1347; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_1386; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_793; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_761; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_645; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_521; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_311; -extern const bool __static_condition_default_709; -extern const bool __static_condition_default_677; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_646; -extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_858; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_1397; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_1385; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_560; +extern const bool __static_condition_default_367; +extern const bool __static_condition_default_388; +extern const bool __static_condition_default_907; extern const bool __static_condition_default_746; -extern const bool __static_condition_default_887; -extern const bool __static_condition_default_1368; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_1348; -extern const bool __static_condition_default_263; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_1341; extern const bool __static_condition_default_842; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_1396; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_955; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_852; extern const bool __static_condition_default_170; +extern const bool __static_condition_default_512; +extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_1393; extern const bool __static_condition_default_187; extern const bool __static_condition_default_602; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_670; -extern const bool __static_condition_default_789; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_1330; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_1390; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_753; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_1386; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_489; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_76; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_568; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_337; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_1376; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_1058; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -1624,19 +1624,19 @@ if ( __remotefd_1380 )// L11 if (__static_condition_default_1385) { - __memset_1118 (& __line_1379 ,0,sizeof(char[1])) ; // L12 + __memset_1118 (& __line_1379 ,0,sizeof(( __line_1379 ))) ; // L12 } if (__static_condition_default_1386) { - __memset_1119 (& __line_1379 ,0,sizeof(char[1])) ; // L12 + __memset_1119 (& __line_1379 ,0,sizeof(( __line_1379 ))) ; // L12 } if (__static_condition_default_1387) { - __memset_1120 (& __line_1379 ,0,sizeof(char[1])) ; // L12 + __memset_1120 (& __line_1379 ,0,sizeof(( __line_1379 ))) ; // L12 } if (__static_condition_default_1388) { - __memset_1121 (& __line_1379 ,0,sizeof(char[1])) ; // L12 + __memset_1121 (& __line_1379 ,0,sizeof(( __line_1379 ))) ; // L12 } if (__static_condition_default_1389) { - __printf_421 ( __line_1379 ,sizeof(char[1]),"<%s>", __msg_1378 ) ; // L13 + __printf_421 ( __line_1379 ,sizeof(( __line_1379 )),"<%s>", __msg_1378 ) ; // L13 } if (__static_condition_default_1390) { __static_type_error("type error") ; // L13 @@ -1690,7 +1690,7 @@ if ( __remotefd_1380 )// L11 __static_type_error("type error") ; // L12 if (__static_condition_default_1393) { - __printf_421 ( __line_1379 ,sizeof(char[1]),"<%s>", __msg_1378 ) ; // L13 + __printf_421 ( __line_1379 ,sizeof(( __line_1379 )),"<%s>", __msg_1378 ) ; // L13 } if (__static_condition_default_1394) { __static_type_error("type error") ; // L13 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.c index c90b2ac8..1367340c 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.c @@ -7,382 +7,382 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_755; -extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_1489; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_1515; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_2330; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_204; +extern const bool __static_condition_default_1568; +extern const bool __static_condition_default_549; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_444; extern const bool __static_condition_default_347; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_1369; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_1754; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_1402; -extern const bool __static_condition_default_2395; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_1531; -extern const bool __static_condition_default_702; -extern const bool __static_condition_default_2400; -extern const bool __static_condition_default_1365; -extern const bool __static_condition_default_1552; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_1776; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_2377; -extern const bool __static_condition_default_1498; -extern const bool __static_condition_default_2411; -extern const bool __static_condition_default_2343; -extern const bool __static_condition_default_2394; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_1774; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_1787; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_2063; -extern const bool __static_condition_default_187; -extern const bool __static_condition_default_311; -extern const bool __static_condition_default_1785; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_2387; extern const bool __static_condition_default_619; -extern const bool __static_condition_default_386; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_2047; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_1381; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_2351; -extern const bool __static_condition_default_708; extern const bool __static_condition_default_419; -extern const bool __static_condition_default_2321; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_638; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_2394; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_1165; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_747; +extern const bool __static_condition_default_753; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_1377; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_670; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_1749; +extern const bool __static_condition_default_1816; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_255; extern const bool __static_condition_default_286; +extern const bool __static_condition_default_1385; +extern const bool __static_condition_default_2411; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_380; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_957; extern const bool __static_condition_default_1405; -extern const bool __static_condition_default_1398; -extern const bool __static_condition_default_709; -extern const bool __static_condition_default_872; -extern const bool __static_condition_default_2062; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_769; -extern const bool __static_condition_default_2313; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_1787; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_187; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_488; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_2381; +extern const bool __static_condition_default_521; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_736; extern const bool __static_condition_default_542; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_780; -extern const bool __static_condition_default_659; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_512; +extern const bool __static_condition_default_2388; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_1402; +extern const bool __static_condition_default_2064; extern const bool __static_condition_default_2410; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_980; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_1458; +extern const bool __static_condition_default_290; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_2044; +extern const bool __static_condition_default_559; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_883; extern const bool __static_condition_default_1353; -extern const bool __static_condition_default_836; +extern const bool __static_condition_default_2398; +extern const bool __static_condition_default_386; +extern const bool __static_condition_default_2389; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_2063; +extern const bool __static_condition_default_1341; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_583; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_2313; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_702; extern const bool __static_condition_default_491; -extern const bool __static_condition_default_608; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_1361; +extern const bool __static_condition_default_1515; +extern const bool __static_condition_default_2395; +extern const bool __static_condition_default_84; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_846; extern const bool __static_condition_default_2401; -extern const bool __static_condition_default_367; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_2387; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_249; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_1774; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_1395; extern const bool __static_condition_default_2399; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_317; -extern const bool __static_condition_default_521; +extern const bool __static_condition_default_842; +extern const bool __static_condition_default_1556; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_929; +extern const bool __static_condition_default_721; +extern const bool __static_condition_default_1773; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_486; extern const bool __static_condition_default_550; -extern const bool __static_condition_default_1568; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_284; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_2045; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_2376; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_2396; +extern const bool __static_condition_default_1775; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_337; +extern const bool __static_condition_default_779; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_2321; +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_864; extern const bool __static_condition_default_553; -extern const bool __static_condition_default_979; +extern const bool __static_condition_default_872; extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_76; -extern const bool __static_condition_default_204; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_489; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_1152; +extern const bool __static_condition_default_2320; extern const bool __static_condition_default_1428; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_217; -extern const bool __static_condition_default_512; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_1775; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_461; -extern const bool __static_condition_default_559; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_787; -extern const bool __static_condition_default_380; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_887; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_1773; -extern const bool __static_condition_default_793; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_1789; -extern const bool __static_condition_default_1159; -extern const bool __static_condition_default_1791; -extern const bool __static_condition_default_2378; -extern const bool __static_condition_default_1564; +extern const bool __static_condition_default_1459; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_369; extern const bool __static_condition_default_1750; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_1432; -extern const bool __static_condition_default_2342; -extern const bool __static_condition_default_803; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_2381; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_1164; -extern const bool __static_condition_default_2330; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_2388; -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_646; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_1416; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_1395; -extern const bool __static_condition_default_2045; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_299; +extern const bool __static_condition_default_1373; +extern const bool __static_condition_default_1532; +extern const bool __static_condition_default_1365; +extern const bool __static_condition_default_1007; extern const bool __static_condition_default_2329; -extern const bool __static_condition_default_388; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_1424; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_1485; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_2043; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_1791; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_759; +extern const bool __static_condition_default_2350; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_2400; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_1315; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_1498; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_333; +extern const bool __static_condition_default_761; +extern const bool __static_condition_default_788; extern const bool __static_condition_default_259; -extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_357; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_1808; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_2403; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_2044; -extern const bool __static_condition_default_543; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_1785; extern const bool __static_condition_default_1453; -extern const bool __static_condition_default_1458; -extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_2397; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_1357; -extern const bool __static_condition_default_670; -extern const bool __static_condition_default_957; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_488; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_858; -extern const bool __static_condition_default_894; -extern const bool __static_condition_default_693; -extern const bool __static_condition_default_382; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_789; -extern const bool __static_condition_default_813; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_2047; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_1398; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_363; extern const bool __static_condition_default_1420; -extern const bool __static_condition_default_2322; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_2349; -extern const bool __static_condition_default_736; +extern const bool __static_condition_default_1814; +extern const bool __static_condition_default_1753; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_2377; +extern const bool __static_condition_default_2403; extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_402; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_1391; -extern const bool __static_condition_default_842; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_2404; -extern const bool __static_condition_default_1816; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_2328; -extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_1424; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_819; extern const bool __static_condition_default_768; -extern const bool __static_condition_default_2376; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_613; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_1361; -extern const bool __static_condition_default_1576; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_801; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_471; extern const bool __static_condition_default_393; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_1475; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_685; -extern const bool __static_condition_default_846; -extern const bool __static_condition_default_248; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_632; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_1560; -extern const bool __static_condition_default_1377; -extern const bool __static_condition_default_1349; -extern const bool __static_condition_default_2409; -extern const bool __static_condition_default_2396; -extern const bool __static_condition_default_956; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_1369; +extern const bool __static_condition_default_1789; +extern const bool __static_condition_default_1808; +extern const bool __static_condition_default_657; extern const bool __static_condition_default_568; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_2405; -extern const bool __static_condition_default_590; -extern const bool __static_condition_default_1556; -extern const bool __static_condition_default_1385; -extern const bool __static_condition_default_623; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_1436; extern const bool __static_condition_default_662; -extern const bool __static_condition_default_1165; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_1388; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_1345; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_1753; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_1532; -extern const bool __static_condition_default_564; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_1152; +extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_1944; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_311; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_1560; +extern const bool __static_condition_default_2322; +extern const bool __static_condition_default_1416; +extern const bool __static_condition_default_257; extern const bool __static_condition_default_1516; -extern const bool __static_condition_default_745; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_2343; +extern const bool __static_condition_default_382; +extern const bool __static_condition_default_76; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_613; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_2314; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_1810; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_2378; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_2342; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_1159; +extern const bool __static_condition_default_2402; +extern const bool __static_condition_default_1432; +extern const bool __static_condition_default_2062; +extern const bool __static_condition_default_1572; extern const bool __static_condition_default_2312; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_544; +extern const bool __static_condition_default_1552; +extern const bool __static_condition_default_2349; extern const bool __static_condition_default_834; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_848; -extern const bool __static_condition_default_753; +extern const bool __static_condition_default_1381; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_2351; +extern const bool __static_condition_default_1345; +extern const bool __static_condition_default_1485; +extern const bool __static_condition_default_677; +extern const bool __static_condition_default_1564; +extern const bool __static_condition_default_1576; +extern const bool __static_condition_default_1754; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_469; extern const bool __static_condition_default_963; +extern const bool __static_condition_default_2043; +extern const bool __static_condition_default_455; extern const bool __static_condition_default_840; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_929; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_891; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_791; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_1349; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_1776; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_388; +extern const bool __static_condition_default_1475; +extern const bool __static_condition_default_2404; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_894; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_2397; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_1357; +extern const bool __static_condition_default_2409; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_313; extern const bool __static_condition_default_907; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_2389; -extern const bool __static_condition_default_1810; -extern const bool __static_condition_default_53; -extern const bool __static_condition_default_198; -extern const bool __static_condition_default_290; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_1409; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_408; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_2320; -extern const bool __static_condition_default_1315; +extern const bool __static_condition_default_367; +extern const bool __static_condition_default_1164; +extern const bool __static_condition_default_1391; +extern const bool __static_condition_default_365; extern const bool __static_condition_default_536; -extern const bool __static_condition_default_315; -extern const bool __static_condition_default_313; -extern const bool __static_condition_default_1944; -extern const bool __static_condition_default_412; extern const bool __static_condition_default_2046; -extern const bool __static_condition_default_914; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_2350; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_735; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_769; extern const bool __static_condition_default_875; -extern const bool __static_condition_default_779; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_2398; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_747; -extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_2314; -extern const bool __static_condition_default_1572; -extern const bool __static_condition_default_1459; -extern const bool __static_condition_default_583; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_1388; +extern const bool __static_condition_default_1409; +extern const bool __static_condition_default_1489; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_789; extern const bool __static_condition_default_955; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_1436; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_761; -extern const bool __static_condition_default_1341; -extern const bool __static_condition_default_2064; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_1814; -extern const bool __static_condition_default_701; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_891; -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_1373; -extern const bool __static_condition_default_1749; -extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_333; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_645; -extern const bool __static_condition_default_431; -extern const bool __static_condition_default_677; -extern const bool __static_condition_default_2402; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_438; -extern const bool __static_condition_default_549; +extern const bool __static_condition_default_1531; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_636; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_2328; +extern const bool __static_condition_default_2405; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -1850,12 +1850,12 @@ struct ____anonymous_tag_1166_1167 { unsigned int ____w_termsig_1168 : 7;// L72 unsigned int ____w_coredump_1169 : 1;// L73 unsigned int ____w_retcode_1170 : 8;// L74 -unsigned int : 16;// L75 +unsigned int __anon_id_0_1171 : 16;// L75 }; struct ____anonymous_tag_1172_1173 { unsigned int ____w_stopval_1174 : 8;// L87 unsigned int ____w_stopsig_1175 : 8;// L88 -unsigned int : 16;// L89 +unsigned int __anon_id_1_1176 : 16;// L89 }; union __wait_1177 { int __w_status_1178;// L68 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.c index 0f508156..d4344efe 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.c @@ -7,368 +7,368 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_438; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_1754; +extern const bool __static_condition_default_1164; +extern const bool __static_condition_default_2071; +extern const bool __static_condition_default_1152; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_2066; +extern const bool __static_condition_default_1402; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_1475; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_549; extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_333; -extern const bool __static_condition_default_347; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_709; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_2049; extern const bool __static_condition_default_651; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_2043; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_543; -extern const bool __static_condition_default_1516; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_2037; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_1791; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_907; -extern const bool __static_condition_default_542; +extern const bool __static_condition_default_1388; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_1428; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_1814; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_1341; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_789; +extern const bool __static_condition_default_1773; +extern const bool __static_condition_default_2045; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_955; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_792; extern const bool __static_condition_default_701; -extern const bool __static_condition_default_1164; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_872; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_173; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_2051; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_1165; +extern const bool __static_condition_default_419; +extern const bool __static_condition_default_685; extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_1560; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_1816; -extern const bool __static_condition_default_549; +extern const bool __static_condition_default_891; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_1564; +extern const bool __static_condition_default_1785; +extern const bool __static_condition_default_834; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_1458; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_2042; +extern const bool __static_condition_default_521; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_1365; +extern const bool __static_condition_default_759; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_1556; +extern const bool __static_condition_default_1436; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_1576; +extern const bool __static_condition_default_1787; +extern const bool __static_condition_default_791; +extern const bool __static_condition_default_761; +extern const bool __static_condition_default_1090; extern const bool __static_condition_default_1810; -extern const bool __static_condition_default_727; +extern const bool __static_condition_default_1944; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_1416; extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_583; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_721; +extern const bool __static_condition_default_187; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_1531; +extern const bool __static_condition_default_388; extern const bool __static_condition_default_797; -extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_2061; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_559; +extern const bool __static_condition_default_1568; +extern const bool __static_condition_default_1753; +extern const bool __static_condition_default_1345; +extern const bool __static_condition_default_550; +extern const bool __static_condition_default_386; +extern const bool __static_condition_default_625; extern const bool __static_condition_default_823; -extern const bool __static_condition_default_2056; -extern const bool __static_condition_default_789; -extern const bool __static_condition_default_2046; -extern const bool __static_condition_default_780; -extern const bool __static_condition_default_357; -extern const bool __static_condition_default_412; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_1564; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_803; -extern const bool __static_condition_default_761; -extern const bool __static_condition_default_2054; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_963; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_858; -extern const bool __static_condition_default_290; +extern const bool __static_condition_default_1009; extern const bool __static_condition_default_2047; -extern const bool __static_condition_default_355; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_2062; +extern const bool __static_condition_default_1349; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_1453; +extern const bool __static_condition_default_2057; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_1816; +extern const bool __static_condition_default_1385; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_1381; extern const bool __static_condition_default_444; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_1428; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_198; -extern const bool __static_condition_default_2060; -extern const bool __static_condition_default_187; -extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_769; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_645; -extern const bool __static_condition_default_955; +extern const bool __static_condition_default_613; +extern const bool __static_condition_default_1377; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_972; extern const bool __static_condition_default_274; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_1532; +extern const bool __static_condition_default_2044; +extern const bool __static_condition_default_747; extern const bool __static_condition_default_282; -extern const bool __static_condition_default_386; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_1377; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_1773; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_875; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_1345; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_1357; -extern const bool __static_condition_default_2042; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_801; extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_1489; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_957; -extern const bool __static_condition_default_702; -extern const bool __static_condition_default_1552; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_408; -extern const bool __static_condition_default_2066; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_431; -extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_2051; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_793; -extern const bool __static_condition_default_1165; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_1315; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_461; -extern const bool __static_condition_default_638; -extern const bool __static_condition_default_1385; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_769; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_1750; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_967; extern const bool __static_condition_default_1485; -extern const bool __static_condition_default_2052; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_1159; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_2045; -extern const bool __static_condition_default_2061; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_1398; -extern const bool __static_condition_default_311; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_1424; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_2062; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_1531; -extern const bool __static_condition_default_1749; -extern const bool __static_condition_default_345; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_537; extern const bool __static_condition_default_708; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_1787; -extern const bool __static_condition_default_564; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_590; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_1754; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_536; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_2070; -extern const bool __static_condition_default_1388; -extern const bool __static_condition_default_1532; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_568; -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_1808; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_891; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_1475; -extern const bool __static_condition_default_559; -extern const bool __static_condition_default_956; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_1416; -extern const bool __static_condition_default_2057; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_755; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_544; +extern const bool __static_condition_default_1515; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_807; extern const bool __static_condition_default_1789; -extern const bool __static_condition_default_1369; -extern const bool __static_condition_default_315; -extern const bool __static_condition_default_393; -extern const bool __static_condition_default_76; -extern const bool __static_condition_default_270; +extern const bool __static_condition_default_702; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_1791; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_1489; extern const bool __static_condition_default_1373; -extern const bool __static_condition_default_1556; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_1458; -extern const bool __static_condition_default_2044; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_1572; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_1776; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_583; -extern const bool __static_condition_default_1409; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_2073; -extern const bool __static_condition_default_248; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_693; -extern const bool __static_condition_default_1774; -extern const bool __static_condition_default_2065; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_380; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_1395; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_2063; -extern const bool __static_condition_default_1365; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_636; extern const bool __static_condition_default_1405; -extern const bool __static_condition_default_677; -extern const bool __static_condition_default_670; -extern const bool __static_condition_default_883; extern const bool __static_condition_default_488; -extern const bool __static_condition_default_894; -extern const bool __static_condition_default_1353; -extern const bool __static_condition_default_1576; extern const bool __static_condition_default_1432; +extern const bool __static_condition_default_1808; +extern const bool __static_condition_default_1560; +extern const bool __static_condition_default_1409; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_367; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_907; +extern const bool __static_condition_default_2060; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_2052; +extern const bool __static_condition_default_929; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_638; extern const bool __static_condition_default_2072; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_1436; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_2037; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_619; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_842; +extern const bool __static_condition_default_2064; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_887; extern const bool __static_condition_default_2059; -extern const bool __static_condition_default_53; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_337; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_1516; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_347; extern const bool __static_condition_default_313; extern const bool __static_condition_default_489; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_613; -extern const bool __static_condition_default_787; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_1402; extern const bool __static_condition_default_819; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_2049; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_2058; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_2055; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_2071; -extern const bool __static_condition_default_747; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_388; +extern const bool __static_condition_default_455; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_1775; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_76; extern const bool __static_condition_default_217; -extern const bool __static_condition_default_402; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_2046; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_2050; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_380; +extern const bool __static_condition_default_2043; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_753; extern const bool __static_condition_default_846; -extern const bool __static_condition_default_1420; -extern const bool __static_condition_default_1568; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_1753; -extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_1349; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_317; -extern const bool __static_condition_default_512; -extern const bool __static_condition_default_1391; -extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_2058; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_1353; +extern const bool __static_condition_default_1357; +extern const bool __static_condition_default_84; extern const bool __static_condition_default_417; -extern const bool __static_condition_default_685; +extern const bool __static_condition_default_1369; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_894; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_382; +extern const bool __static_condition_default_365; +extern const bool __static_condition_default_2063; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_677; extern const bool __static_condition_default_746; -extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_1315; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_2056; extern const bool __static_condition_default_735; -extern const bool __static_condition_default_1453; -extern const bool __static_condition_default_2050; -extern const bool __static_condition_default_204; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_521; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_1785; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_2048; -extern const bool __static_condition_default_848; -extern const bool __static_condition_default_779; -extern const bool __static_condition_default_914; +extern const bool __static_condition_default_875; +extern const bool __static_condition_default_1459; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_670; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_311; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_2065; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_2073; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_1572; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_568; +extern const bool __static_condition_default_2070; +extern const bool __static_condition_default_1361; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_355; extern const bool __static_condition_default_1498; -extern const bool __static_condition_default_367; -extern const bool __static_condition_default_1775; -extern const bool __static_condition_default_1814; -extern const bool __static_condition_default_887; +extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_2054; +extern const bool __static_condition_default_1774; +extern const bool __static_condition_default_2055; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_512; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_1776; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_1552; extern const bool __static_condition_default_2053; -extern const bool __static_condition_default_382; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_1341; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_1152; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_753; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_2064; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_1361; -extern const bool __static_condition_default_1750; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_1944; -extern const bool __static_condition_default_238; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_963; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_333; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_1159; +extern const bool __static_condition_default_1395; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_1391; +extern const bool __static_condition_default_779; +extern const bool __static_condition_default_1398; +extern const bool __static_condition_default_1420; +extern const bool __static_condition_default_290; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_2048; +extern const bool __static_condition_default_536; extern const bool __static_condition_default_632; -extern const bool __static_condition_default_1381; -extern const bool __static_condition_default_842; -extern const bool __static_condition_default_1459; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_419; -extern const bool __static_condition_default_1515; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_929; -extern const bool __static_condition_default_646; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_1424; +extern const bool __static_condition_default_1749; +extern const bool __static_condition_default_204; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -1713,12 +1713,12 @@ struct ____anonymous_tag_1166_1167 { unsigned int ____w_termsig_1168 : 7;// L72 unsigned int ____w_coredump_1169 : 1;// L73 unsigned int ____w_retcode_1170 : 8;// L74 -unsigned int : 16;// L75 +unsigned int __anon_id_0_1171 : 16;// L75 }; struct ____anonymous_tag_1172_1173 { unsigned int ____w_stopval_1174 : 8;// L87 unsigned int ____w_stopsig_1175 : 8;// L88 -unsigned int : 16;// L89 +unsigned int __anon_id_1_1176 : 16;// L89 }; union __wait_1177 { int __w_status_1178;// L68 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c index dc0f12b6..b0c5d1e0 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c @@ -7,379 +7,379 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_438; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_1754; +extern const bool __static_condition_default_1164; +extern const bool __static_condition_default_1152; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_1402; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_2047; +extern const bool __static_condition_default_1475; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_549; +extern const bool __static_condition_default_2092; +extern const bool __static_condition_default_2068; extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_333; -extern const bool __static_condition_default_347; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_709; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_1050; extern const bool __static_condition_default_651; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_2056; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_543; -extern const bool __static_condition_default_1516; -extern const bool __static_condition_default_2059; -extern const bool __static_condition_default_2069; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_1791; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_907; -extern const bool __static_condition_default_2045; -extern const bool __static_condition_default_2092; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_701; -extern const bool __static_condition_default_1164; -extern const bool __static_condition_default_2098; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_872; -extern const bool __static_condition_default_2086; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_2046; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_1560; -extern const bool __static_condition_default_2049; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_2048; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_1816; +extern const bool __static_condition_default_1388; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_2082; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_1428; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_1814; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_578; extern const bool __static_condition_default_2089; -extern const bool __static_condition_default_549; -extern const bool __static_condition_default_1810; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_789; extern const bool __static_condition_default_780; -extern const bool __static_condition_default_357; -extern const bool __static_condition_default_412; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_1341; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_1066; extern const bool __static_condition_default_432; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_789; +extern const bool __static_condition_default_1773; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_955; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_2087; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_1165; +extern const bool __static_condition_default_419; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_2104; +extern const bool __static_condition_default_891; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_637; extern const bool __static_condition_default_1564; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_803; +extern const bool __static_condition_default_1785; +extern const bool __static_condition_default_834; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_1458; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_521; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_1365; +extern const bool __static_condition_default_759; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_1556; +extern const bool __static_condition_default_1436; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_1576; +extern const bool __static_condition_default_2086; +extern const bool __static_condition_default_1787; +extern const bool __static_condition_default_791; extern const bool __static_condition_default_761; -extern const bool __static_condition_default_2080; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_963; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_858; -extern const bool __static_condition_default_290; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_241; +extern const bool __static_condition_default_2055; +extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_1810; +extern const bool __static_condition_default_1944; +extern const bool __static_condition_default_2100; extern const bool __static_condition_default_499; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_1428; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_198; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_1416; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_583; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_2060; extern const bool __static_condition_default_2094; +extern const bool __static_condition_default_721; extern const bool __static_condition_default_187; -extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_769; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_2087; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_2088; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_623; extern const bool __static_condition_default_645; -extern const bool __static_condition_default_955; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_282; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_1531; +extern const bool __static_condition_default_388; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_559; +extern const bool __static_condition_default_1568; +extern const bool __static_condition_default_1753; +extern const bool __static_condition_default_1345; +extern const bool __static_condition_default_550; extern const bool __static_condition_default_386; -extern const bool __static_condition_default_791; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_2058; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_2049; +extern const bool __static_condition_default_2101; +extern const bool __static_condition_default_1349; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_1453; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_1816; +extern const bool __static_condition_default_2105; +extern const bool __static_condition_default_1385; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_2057; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_1381; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_613; extern const bool __static_condition_default_1377; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_1773; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_2100; -extern const bool __static_condition_default_875; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_1345; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_1357; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_2044; -extern const bool __static_condition_default_2097; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_2056; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_1532; +extern const bool __static_condition_default_747; +extern const bool __static_condition_default_282; extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_2095; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_1489; -extern const bool __static_condition_default_373; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_769; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_1750; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_1485; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_708; extern const bool __static_condition_default_957; +extern const bool __static_condition_default_544; +extern const bool __static_condition_default_1515; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_1789; extern const bool __static_condition_default_702; -extern const bool __static_condition_default_1552; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_408; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_431; +extern const bool __static_condition_default_767; extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_793; -extern const bool __static_condition_default_1165; -extern const bool __static_condition_default_2060; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_1315; +extern const bool __static_condition_default_1791; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_1489; +extern const bool __static_condition_default_1373; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_2045; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_636; +extern const bool __static_condition_default_1405; +extern const bool __static_condition_default_488; extern const bool __static_condition_default_2096; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_461; +extern const bool __static_condition_default_1432; +extern const bool __static_condition_default_1808; +extern const bool __static_condition_default_1560; +extern const bool __static_condition_default_2069; +extern const bool __static_condition_default_1409; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_367; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_2102; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_907; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_929; +extern const bool __static_condition_default_538; extern const bool __static_condition_default_638; -extern const bool __static_condition_default_1385; -extern const bool __static_condition_default_1485; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_1159; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_668; +extern const bool __static_condition_default_2095; +extern const bool __static_condition_default_840; extern const bool __static_condition_default_768; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_1398; -extern const bool __static_condition_default_311; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_1424; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_978; +extern const bool __static_condition_default_619; extern const bool __static_condition_default_293; -extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_1531; -extern const bool __static_condition_default_1749; -extern const bool __static_condition_default_2093; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_1787; -extern const bool __static_condition_default_564; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_2055; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_2058; -extern const bool __static_condition_default_590; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_2067; -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_1754; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_536; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_1388; -extern const bool __static_condition_default_1532; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_568; -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_1808; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_891; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_2102; -extern const bool __static_condition_default_2088; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_1475; -extern const bool __static_condition_default_559; -extern const bool __static_condition_default_956; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_1416; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_755; -extern const bool __static_condition_default_1789; -extern const bool __static_condition_default_1369; -extern const bool __static_condition_default_315; -extern const bool __static_condition_default_393; -extern const bool __static_condition_default_2047; -extern const bool __static_condition_default_2091; -extern const bool __static_condition_default_76; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_1373; -extern const bool __static_condition_default_1556; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_1458; -extern const bool __static_condition_default_2083; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_1572; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_1776; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_583; -extern const bool __static_condition_default_1409; -extern const bool __static_condition_default_2101; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_2085; -extern const bool __static_condition_default_248; +extern const bool __static_condition_default_842; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_173; extern const bool __static_condition_default_663; -extern const bool __static_condition_default_693; -extern const bool __static_condition_default_1774; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_380; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_2082; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_1395; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_1365; -extern const bool __static_condition_default_1405; -extern const bool __static_condition_default_677; -extern const bool __static_condition_default_670; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_488; -extern const bool __static_condition_default_894; -extern const bool __static_condition_default_1353; -extern const bool __static_condition_default_1576; -extern const bool __static_condition_default_1432; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_1436; -extern const bool __static_condition_default_53; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_337; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_2085; +extern const bool __static_condition_default_2097; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_2098; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_1516; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_347; extern const bool __static_condition_default_313; extern const bool __static_condition_default_489; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_613; -extern const bool __static_condition_default_787; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_1402; extern const bool __static_condition_default_819; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_747; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_388; -extern const bool __static_condition_default_2057; +extern const bool __static_condition_default_455; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_1775; +extern const bool __static_condition_default_2046; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_76; +extern const bool __static_condition_default_2106; extern const bool __static_condition_default_217; -extern const bool __static_condition_default_402; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_2048; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_380; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_753; extern const bool __static_condition_default_846; -extern const bool __static_condition_default_1420; -extern const bool __static_condition_default_1568; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_1753; -extern const bool __static_condition_default_2090; -extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_1349; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_317; -extern const bool __static_condition_default_512; -extern const bool __static_condition_default_1391; -extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_1353; +extern const bool __static_condition_default_2103; +extern const bool __static_condition_default_1357; +extern const bool __static_condition_default_84; extern const bool __static_condition_default_417; -extern const bool __static_condition_default_685; +extern const bool __static_condition_default_1369; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_894; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_382; +extern const bool __static_condition_default_365; +extern const bool __static_condition_default_2099; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_677; extern const bool __static_condition_default_746; -extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_1315; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_529; extern const bool __static_condition_default_735; -extern const bool __static_condition_default_1453; -extern const bool __static_condition_default_204; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_2081; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_2103; -extern const bool __static_condition_default_521; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_1785; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_848; -extern const bool __static_condition_default_779; -extern const bool __static_condition_default_914; +extern const bool __static_condition_default_875; +extern const bool __static_condition_default_1459; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_2067; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_670; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_311; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_1572; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_568; +extern const bool __static_condition_default_1361; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_355; extern const bool __static_condition_default_1498; extern const bool __static_condition_default_2084; -extern const bool __static_condition_default_367; -extern const bool __static_condition_default_1775; -extern const bool __static_condition_default_1814; -extern const bool __static_condition_default_887; -extern const bool __static_condition_default_382; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_2099; -extern const bool __static_condition_default_1341; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_1152; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_753; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_1361; -extern const bool __static_condition_default_1750; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_1944; -extern const bool __static_condition_default_238; +extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_1774; +extern const bool __static_condition_default_2083; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_512; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_1776; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_1552; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_963; +extern const bool __static_condition_default_2093; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_2059; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_333; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_1159; +extern const bool __static_condition_default_1395; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_1391; +extern const bool __static_condition_default_2091; +extern const bool __static_condition_default_779; +extern const bool __static_condition_default_1398; +extern const bool __static_condition_default_1420; +extern const bool __static_condition_default_290; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_2044; +extern const bool __static_condition_default_536; extern const bool __static_condition_default_632; -extern const bool __static_condition_default_1381; -extern const bool __static_condition_default_842; -extern const bool __static_condition_default_1459; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_2068; -extern const bool __static_condition_default_2079; -extern const bool __static_condition_default_419; -extern const bool __static_condition_default_1515; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_929; extern const bool __static_condition_default_2050; -extern const bool __static_condition_default_646; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_1424; +extern const bool __static_condition_default_1749; +extern const bool __static_condition_default_2090; +extern const bool __static_condition_default_204; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -1128,8 +1128,8 @@ __static_renaming("__head_2073", "head"); __static_renaming("__size_2074", "size"); __static_renaming("__arr_2075", "arr"); __static_renaming("__i_2076", "i"); -__static_renaming("__main_2077", "main"); -__static_renaming("__main_2078", "main"); +__static_renaming("__main_2080", "main"); +__static_renaming("__main_2081", "main"); __static_condition_renaming("__static_condition_default_53", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); __static_condition_renaming("__static_condition_default_76", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); @@ -1479,33 +1479,33 @@ __static_condition_renaming("__static_condition_default_2060", "(defined __need_ __static_condition_renaming("__static_condition_default_2067", "(defined CONFIG_FEATURE_LS_SORTFILES)"); __static_condition_renaming("__static_condition_default_2068", "!(defined __need___FILE) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES)"); __static_condition_renaming("__static_condition_default_2069", "(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_FEATURE_LS_SORTFILES)"); -__static_condition_renaming("__static_condition_default_2079", "!(defined CONFIG_FEATURE_LS_SORTFILES)"); -__static_condition_renaming("__static_condition_default_2080", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES)"); -__static_condition_renaming("__static_condition_default_2081", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES)"); -__static_condition_renaming("__static_condition_default_2082", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES)"); -__static_condition_renaming("__static_condition_default_2083", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES)"); -__static_condition_renaming("__static_condition_default_2084", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __STRICT_ANSI__) && (defined _STDLIB_H) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __STRICT_ANSI__) && (defined _STDLIB_H) && !(defined CONFIG_FEATURE_LS_SORTFILES)"); -__static_condition_renaming("__static_condition_default_2085", "(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_SORTFILES)"); -__static_condition_renaming("__static_condition_default_2086", "!(defined __STRICT_ANSI__) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __STRICT_ANSI__) && (defined _STDLIB_H) && !(defined CONFIG_FEATURE_LS_SORTFILES)"); -__static_condition_renaming("__static_condition_default_2087", "(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_SORTFILES)"); -__static_condition_renaming("__static_condition_default_2088", "(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_RECURSIVE) && !(defined CONFIG_FEATURE_LS_SORTFILES)"); -__static_condition_renaming("__static_condition_default_2089", "(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_RECURSIVE) && !(defined CONFIG_FEATURE_LS_SORTFILES)"); -__static_condition_renaming("__static_condition_default_2090", "!(defined __STRICT_ANSI__) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __STRICT_ANSI__) && (defined _STDLIB_H) && !(defined CONFIG_FEATURE_LS_SORTFILES)"); -__static_condition_renaming("__static_condition_default_2091", "(defined CONFIG_FEATURE_LS_SORTFILES)"); -__static_condition_renaming("__static_condition_default_2092", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES)"); -__static_condition_renaming("__static_condition_default_2093", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES)"); -__static_condition_renaming("__static_condition_default_2094", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES)"); -__static_condition_renaming("__static_condition_default_2095", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES)"); -__static_condition_renaming("__static_condition_default_2096", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined CONFIG_FEATURE_LS_SORTFILES)"); -__static_condition_renaming("__static_condition_default_2097", "(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES)"); -__static_condition_renaming("__static_condition_default_2098", "!(defined __STRICT_ANSI__) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined CONFIG_FEATURE_LS_SORTFILES)"); -__static_condition_renaming("__static_condition_default_2099", "(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES)"); -__static_condition_renaming("__static_condition_default_2100", "(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_RECURSIVE) && (defined CONFIG_FEATURE_LS_SORTFILES)"); -__static_condition_renaming("__static_condition_default_2101", "(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_RECURSIVE) && (defined CONFIG_FEATURE_LS_SORTFILES)"); -__static_condition_renaming("__static_condition_default_2102", "!(defined __STRICT_ANSI__) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined CONFIG_FEATURE_LS_SORTFILES)"); -__static_condition_renaming("__static_condition_default_2103", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); - -if (__static_condition_default_2103) +__static_condition_renaming("__static_condition_default_2082", "!(defined CONFIG_FEATURE_LS_SORTFILES)"); +__static_condition_renaming("__static_condition_default_2083", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES)"); +__static_condition_renaming("__static_condition_default_2084", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES)"); +__static_condition_renaming("__static_condition_default_2085", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES)"); +__static_condition_renaming("__static_condition_default_2086", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES)"); +__static_condition_renaming("__static_condition_default_2087", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __STRICT_ANSI__) && (defined _STDLIB_H) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __STRICT_ANSI__) && (defined _STDLIB_H) && !(defined CONFIG_FEATURE_LS_SORTFILES)"); +__static_condition_renaming("__static_condition_default_2088", "(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_SORTFILES)"); +__static_condition_renaming("__static_condition_default_2089", "!(defined __STRICT_ANSI__) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __STRICT_ANSI__) && (defined _STDLIB_H) && !(defined CONFIG_FEATURE_LS_SORTFILES)"); +__static_condition_renaming("__static_condition_default_2090", "(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_SORTFILES)"); +__static_condition_renaming("__static_condition_default_2091", "(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_RECURSIVE) && !(defined CONFIG_FEATURE_LS_SORTFILES)"); +__static_condition_renaming("__static_condition_default_2092", "(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_RECURSIVE) && !(defined CONFIG_FEATURE_LS_SORTFILES)"); +__static_condition_renaming("__static_condition_default_2093", "!(defined __STRICT_ANSI__) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __STRICT_ANSI__) && (defined _STDLIB_H) && !(defined CONFIG_FEATURE_LS_SORTFILES)"); +__static_condition_renaming("__static_condition_default_2094", "(defined CONFIG_FEATURE_LS_SORTFILES)"); +__static_condition_renaming("__static_condition_default_2095", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES)"); +__static_condition_renaming("__static_condition_default_2096", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES)"); +__static_condition_renaming("__static_condition_default_2097", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES)"); +__static_condition_renaming("__static_condition_default_2098", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES)"); +__static_condition_renaming("__static_condition_default_2099", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined CONFIG_FEATURE_LS_SORTFILES)"); +__static_condition_renaming("__static_condition_default_2100", "(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES)"); +__static_condition_renaming("__static_condition_default_2101", "!(defined __STRICT_ANSI__) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined CONFIG_FEATURE_LS_SORTFILES)"); +__static_condition_renaming("__static_condition_default_2102", "(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES)"); +__static_condition_renaming("__static_condition_default_2103", "(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_RECURSIVE) && (defined CONFIG_FEATURE_LS_SORTFILES)"); +__static_condition_renaming("__static_condition_default_2104", "(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_RECURSIVE) && (defined CONFIG_FEATURE_LS_SORTFILES)"); +__static_condition_renaming("__static_condition_default_2105", "!(defined __STRICT_ANSI__) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined CONFIG_FEATURE_LS_SORTFILES)"); +__static_condition_renaming("__static_condition_default_2106", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); + +if (__static_condition_default_2106) { __static_parse_error("Unable to parse"); } @@ -1747,12 +1747,12 @@ struct ____anonymous_tag_1166_1167 { unsigned int ____w_termsig_1168 : 7;// L72 unsigned int ____w_coredump_1169 : 1;// L73 unsigned int ____w_retcode_1170 : 8;// L74 -unsigned int : 16;// L75 +unsigned int __anon_id_0_1171 : 16;// L75 }; struct ____anonymous_tag_1172_1173 { unsigned int ____w_stopval_1174 : 8;// L87 unsigned int ____w_stopsig_1175 : 8;// L88 -unsigned int : 16;// L89 +unsigned int __anon_id_1_1176 : 16;// L89 }; union __wait_1177 { int __w_status_1178;// L68 @@ -2983,7 +2983,7 @@ while ( __cur_2041 != ( ( void * ) 0 ) )// L18 __next_2042 = __cur_2041 -> __next_2039 ; // L19 if (__static_condition_default_2048) { - __free_1649 ( __cur_2041 ) ; // L20 +free ( __cur_2041 ) ; // L20 } if (__static_condition_default_2049) { __static_type_error("type error") ; // L20 @@ -3141,9 +3141,9 @@ if ( * __arr_2061 [ __i_2064 ] > * __arr_2061 [ __j_2065 ] )// L48 } } -int (__main_2077) (int __argc_2070, char * (* (__argv_2071))) { +int (__main_2080) (int __argc_2070, char * (* (__argv_2071))) { -if (__static_condition_default_2079) { +if (__static_condition_default_2082) { { { @@ -3165,27 +3165,28 @@ struct __dnode_2037 * (__arr_2075[ __size_2074 ]);// L62 { { +struct { typeof( int ) __tmp_2077; typeof( struct __forward_tag_reference_2036 *) __tmp_2078; }__sizeofStandin_2079; -if (__static_condition_default_2080) { - __curr_2072 = ( struct __dnode_2037 * ) __malloc_1631 (( sizeof(int ) + sizeof(struct __forward_tag_reference_2036 * ()) )) ; // L65 +if (__static_condition_default_2083) { + __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 } -if (__static_condition_default_2081) { - __curr_2072 = ( struct __dnode_2037 * ) __malloc_1632 (( sizeof(int ) + sizeof(struct __forward_tag_reference_2036 * ()) )) ; // L65 +if (__static_condition_default_2084) { + __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 } -if (__static_condition_default_2082) { - __curr_2072 = ( struct __dnode_2037 * ) __malloc_1633 (( sizeof(int ) + sizeof(struct __forward_tag_reference_2036 * ()) )) ; // L65 +if (__static_condition_default_2085) { + __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 } -if (__static_condition_default_2083) { - __curr_2072 = ( struct __dnode_2037 * ) __malloc_1634 (( sizeof(int ) + sizeof(struct __forward_tag_reference_2036 * ()) )) ; // L65 +if (__static_condition_default_2086) { + __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 } -if (__static_condition_default_2084) { +if (__static_condition_default_2087) { __static_type_error("type error") ; // L65 } -if (__static_condition_default_2085) { +if (__static_condition_default_2088) { __curr_2072 -> __val_2038 = __rand_1609 ( ) % 10 ; // L66 } -if (__static_condition_default_2086) { +if (__static_condition_default_2089) { __static_type_error("type error") ; // L66 } __curr_2072 -> __next_2039 = __head_2073 ; // L67 @@ -3195,7 +3196,7 @@ __static_type_error("type error") ; // L66 } } } -if (__static_condition_default_2087) { +if (__static_condition_default_2090) { if ( __rand_1609 ( ) % 2 )// L72 { @@ -3204,17 +3205,17 @@ if ( __rand_1609 ( ) % 2 )// L72 -if (__static_condition_default_2088) { +if (__static_condition_default_2091) { __showdirs_2053 ( __arr_2075 ) ; // L76 } -if (__static_condition_default_2089) { +if (__static_condition_default_2092) { __showdirs_2054 ( __arr_2075 ) ; // L76 } } } } } -if (__static_condition_default_2090) { +if (__static_condition_default_2093) { __static_type_error("invalid type found in if statement"); } return 0 ;// L78 @@ -3224,9 +3225,9 @@ return 0 ;// L78 } } -int (__main_2078) (int __argc_2070, char * (* (__argv_2071))) { +int (__main_2081) (int __argc_2070, char * (* (__argv_2071))) { -if (__static_condition_default_2091) { +if (__static_condition_default_2094) { { { @@ -3248,27 +3249,28 @@ struct __dnode_2037 * (__arr_2075[ __size_2074 ]);// L62 { { +struct { typeof( int ) __tmp_2077; typeof( struct __forward_tag_reference_2036 *) __tmp_2078; }__sizeofStandin_2079; -if (__static_condition_default_2092) { - __curr_2072 = ( struct __dnode_2037 * ) __malloc_1631 (( sizeof(int ) + sizeof(struct __forward_tag_reference_2036 * ()) )) ; // L65 +if (__static_condition_default_2095) { + __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 } -if (__static_condition_default_2093) { - __curr_2072 = ( struct __dnode_2037 * ) __malloc_1632 (( sizeof(int ) + sizeof(struct __forward_tag_reference_2036 * ()) )) ; // L65 +if (__static_condition_default_2096) { + __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 } -if (__static_condition_default_2094) { - __curr_2072 = ( struct __dnode_2037 * ) __malloc_1633 (( sizeof(int ) + sizeof(struct __forward_tag_reference_2036 * ()) )) ; // L65 +if (__static_condition_default_2097) { + __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 } -if (__static_condition_default_2095) { - __curr_2072 = ( struct __dnode_2037 * ) __malloc_1634 (( sizeof(int ) + sizeof(struct __forward_tag_reference_2036 * ()) )) ; // L65 +if (__static_condition_default_2098) { + __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 } -if (__static_condition_default_2096) { +if (__static_condition_default_2099) { __static_type_error("type error") ; // L65 } -if (__static_condition_default_2097) { +if (__static_condition_default_2100) { __curr_2072 -> __val_2038 = __rand_1609 ( ) % 10 ; // L66 } -if (__static_condition_default_2098) { +if (__static_condition_default_2101) { __static_type_error("type error") ; // L66 } __curr_2072 -> __next_2039 = __head_2073 ; // L67 @@ -3278,7 +3280,7 @@ __static_type_error("type error") ; // L66 } } } -if (__static_condition_default_2099) { +if (__static_condition_default_2102) { if ( __rand_1609 ( ) % 2 )// L72 { @@ -3288,17 +3290,17 @@ if ( __rand_1609 ( ) % 2 )// L72 __static_type_error("type error : no valid expression"); // L74 -if (__static_condition_default_2100) { +if (__static_condition_default_2103) { __showdirs_2053 ( __arr_2075 ) ; // L76 } -if (__static_condition_default_2101) { +if (__static_condition_default_2104) { __showdirs_2054 ( __arr_2075 ) ; // L76 } } } } } -if (__static_condition_default_2102) { +if (__static_condition_default_2105) { __static_type_error("invalid type found in if statement"); } return 0 ;// L78 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c index c35bc7d6..7c930300 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c @@ -7,366 +7,366 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_438; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_2059; -extern const bool __static_condition_default_333; -extern const bool __static_condition_default_347; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_709; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_543; -extern const bool __static_condition_default_1516; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_2070; -extern const bool __static_condition_default_2055; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_1791; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_907; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_701; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_1754; extern const bool __static_condition_default_1164; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_872; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_1560; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_2062; -extern const bool __static_condition_default_2061; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_1816; +extern const bool __static_condition_default_1152; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_1402; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_2065; +extern const bool __static_condition_default_1475; +extern const bool __static_condition_default_757; extern const bool __static_condition_default_549; -extern const bool __static_condition_default_1810; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_789; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_1388; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_1428; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_1814; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_578; extern const bool __static_condition_default_780; -extern const bool __static_condition_default_2058; -extern const bool __static_condition_default_357; -extern const bool __static_condition_default_412; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_1341; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_1066; extern const bool __static_condition_default_432; -extern const bool __static_condition_default_1564; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_803; -extern const bool __static_condition_default_761; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_789; +extern const bool __static_condition_default_1773; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_357; extern const bool __static_condition_default_2039; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_963; -extern const bool __static_condition_default_2072; +extern const bool __static_condition_default_955; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_1005; extern const bool __static_condition_default_792; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_1165; +extern const bool __static_condition_default_419; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_2072; +extern const bool __static_condition_default_891; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_1564; +extern const bool __static_condition_default_2051; +extern const bool __static_condition_default_1785; +extern const bool __static_condition_default_834; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_1458; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_521; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_1365; +extern const bool __static_condition_default_759; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_1556; +extern const bool __static_condition_default_1436; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_1576; +extern const bool __static_condition_default_1787; +extern const bool __static_condition_default_791; +extern const bool __static_condition_default_761; +extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_1810; +extern const bool __static_condition_default_1944; extern const bool __static_condition_default_2068; -extern const bool __static_condition_default_858; -extern const bool __static_condition_default_290; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_2048; -extern const bool __static_condition_default_241; extern const bool __static_condition_default_499; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_1428; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_198; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_1416; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_583; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_2069; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_721; extern const bool __static_condition_default_187; -extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_769; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_840; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_623; extern const bool __static_condition_default_645; -extern const bool __static_condition_default_955; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_386; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_1377; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_1773; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_875; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_2060; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_1531; +extern const bool __static_condition_default_388; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_559; +extern const bool __static_condition_default_1568; +extern const bool __static_condition_default_1753; extern const bool __static_condition_default_1345; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_1357; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_1489; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_2054; -extern const bool __static_condition_default_957; -extern const bool __static_condition_default_702; -extern const bool __static_condition_default_1552; +extern const bool __static_condition_default_550; +extern const bool __static_condition_default_386; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_1009; extern const bool __static_condition_default_123; -extern const bool __static_condition_default_408; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_431; -extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_2056; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_793; -extern const bool __static_condition_default_1165; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_493; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_1349; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_1453; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_1816; +extern const bool __static_condition_default_2070; +extern const bool __static_condition_default_1385; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_2073; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_1381; +extern const bool __static_condition_default_2054; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_613; +extern const bool __static_condition_default_1377; extern const bool __static_condition_default_2049; -extern const bool __static_condition_default_1315; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_2053; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_868; extern const bool __static_condition_default_461; -extern const bool __static_condition_default_638; -extern const bool __static_condition_default_1385; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_1532; +extern const bool __static_condition_default_747; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_769; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_1750; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_967; extern const bool __static_condition_default_1485; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_1159; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_2067; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_2051; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_1398; -extern const bool __static_condition_default_311; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_1424; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_1531; -extern const bool __static_condition_default_1749; -extern const bool __static_condition_default_345; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_537; extern const bool __static_condition_default_708; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_1787; -extern const bool __static_condition_default_564; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_590; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_1754; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_536; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_1388; -extern const bool __static_condition_default_1532; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_568; -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_1808; -extern const bool __static_condition_default_2066; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_891; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_2071; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_560; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_544; +extern const bool __static_condition_default_1515; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_807; extern const bool __static_condition_default_2050; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_1475; -extern const bool __static_condition_default_559; -extern const bool __static_condition_default_956; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_1416; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_755; extern const bool __static_condition_default_1789; -extern const bool __static_condition_default_1369; -extern const bool __static_condition_default_2073; -extern const bool __static_condition_default_315; -extern const bool __static_condition_default_393; -extern const bool __static_condition_default_76; -extern const bool __static_condition_default_270; +extern const bool __static_condition_default_702; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_1791; +extern const bool __static_condition_default_2048; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_1489; extern const bool __static_condition_default_1373; -extern const bool __static_condition_default_1556; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_1458; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_2065; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_636; +extern const bool __static_condition_default_1405; +extern const bool __static_condition_default_488; +extern const bool __static_condition_default_1432; +extern const bool __static_condition_default_1808; +extern const bool __static_condition_default_1560; +extern const bool __static_condition_default_1409; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_367; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_907; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_929; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_619; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_842; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_2052; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_223; extern const bool __static_condition_default_686; -extern const bool __static_condition_default_1572; +extern const bool __static_condition_default_337; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_1516; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_347; +extern const bool __static_condition_default_2063; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_489; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_2071; +extern const bool __static_condition_default_455; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_1775; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_2053; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_76; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_2059; extern const bool __static_condition_default_275; -extern const bool __static_condition_default_1776; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_583; -extern const bool __static_condition_default_1409; -extern const bool __static_condition_default_235; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_2055; extern const bool __static_condition_default_248; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_693; -extern const bool __static_condition_default_1774; -extern const bool __static_condition_default_972; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_2057; +extern const bool __static_condition_default_541; extern const bool __static_condition_default_380; -extern const bool __static_condition_default_2047; +extern const bool __static_condition_default_848; extern const bool __static_condition_default_257; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_1395; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_1365; -extern const bool __static_condition_default_1405; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_2058; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_753; +extern const bool __static_condition_default_846; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_1353; +extern const bool __static_condition_default_1357; +extern const bool __static_condition_default_84; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_1369; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_894; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_382; +extern const bool __static_condition_default_365; +extern const bool __static_condition_default_2067; +extern const bool __static_condition_default_2047; +extern const bool __static_condition_default_2061; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_597; extern const bool __static_condition_default_677; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_1315; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_875; +extern const bool __static_condition_default_1459; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_727; extern const bool __static_condition_default_670; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_311; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_235; extern const bool __static_condition_default_883; -extern const bool __static_condition_default_488; -extern const bool __static_condition_default_894; -extern const bool __static_condition_default_1353; -extern const bool __static_condition_default_1576; -extern const bool __static_condition_default_1432; -extern const bool __static_condition_default_2064; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_1436; -extern const bool __static_condition_default_53; -extern const bool __static_condition_default_313; -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_613; -extern const bool __static_condition_default_787; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_1402; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_747; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_2069; -extern const bool __static_condition_default_388; -extern const bool __static_condition_default_217; -extern const bool __static_condition_default_402; -extern const bool __static_condition_default_846; -extern const bool __static_condition_default_1420; -extern const bool __static_condition_default_1568; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_1753; +extern const bool __static_condition_default_2062; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_1572; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_568; +extern const bool __static_condition_default_1361; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_1498; extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_2052; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_1349; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_317; +extern const bool __static_condition_default_1774; +extern const bool __static_condition_default_229; extern const bool __static_condition_default_512; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_1776; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_2066; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_1552; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_963; +extern const bool __static_condition_default_2056; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_333; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_1159; +extern const bool __static_condition_default_1395; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_543; extern const bool __static_condition_default_1391; -extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_685; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_1453; -extern const bool __static_condition_default_204; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_521; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_1785; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_848; +extern const bool __static_condition_default_2064; extern const bool __static_condition_default_779; -extern const bool __static_condition_default_914; -extern const bool __static_condition_default_1498; -extern const bool __static_condition_default_367; -extern const bool __static_condition_default_1775; -extern const bool __static_condition_default_1814; -extern const bool __static_condition_default_2060; -extern const bool __static_condition_default_2063; -extern const bool __static_condition_default_887; -extern const bool __static_condition_default_382; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_1341; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_1152; -extern const bool __static_condition_default_2057; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_753; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_1361; -extern const bool __static_condition_default_1750; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_1944; -extern const bool __static_condition_default_238; +extern const bool __static_condition_default_1398; +extern const bool __static_condition_default_1420; +extern const bool __static_condition_default_290; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_536; extern const bool __static_condition_default_632; -extern const bool __static_condition_default_1381; -extern const bool __static_condition_default_842; -extern const bool __static_condition_default_1459; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_419; -extern const bool __static_condition_default_1515; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_929; -extern const bool __static_condition_default_646; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_1424; +extern const bool __static_condition_default_1749; +extern const bool __static_condition_default_204; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -1712,12 +1712,12 @@ struct ____anonymous_tag_1166_1167 { unsigned int ____w_termsig_1168 : 7;// L72 unsigned int ____w_coredump_1169 : 1;// L73 unsigned int ____w_retcode_1170 : 8;// L74 -unsigned int : 16;// L75 +unsigned int __anon_id_0_1171 : 16;// L75 }; struct ____anonymous_tag_1172_1173 { unsigned int ____w_stopval_1174 : 8;// L87 unsigned int ____w_stopsig_1175 : 8;// L88 -unsigned int : 16;// L89 +unsigned int __anon_id_1_1176 : 16;// L89 }; union __wait_1177 { int __w_status_1178;// L68 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/5cd6461b6fb.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/5cd6461b6fb.desugared.c index 09c52372..c7922adb 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/5cd6461b6fb.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/5cd6461b6fb.desugared.c @@ -7,357 +7,357 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_1152; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_858; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_1377; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_875; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_1576; +extern const bool __static_condition_default_1365; extern const bool __static_condition_default_552; -extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_2044; -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_2048; -extern const bool __static_condition_default_388; -extern const bool __static_condition_default_419; extern const bool __static_condition_default_1773; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_1315; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_613; -extern const bool __static_condition_default_1750; -extern const bool __static_condition_default_836; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_1532; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_759; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_1498; +extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_1388; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_887; extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_702; -extern const bool __static_condition_default_187; -extern const bool __static_condition_default_560; +extern const bool __static_condition_default_286; extern const bool __static_condition_default_788; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_1377; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_1420; -extern const bool __static_condition_default_564; -extern const bool __static_condition_default_313; -extern const bool __static_condition_default_963; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_894; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_1432; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_842; +extern const bool __static_condition_default_1402; +extern const bool __static_condition_default_789; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_488; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_2047; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_1774; +extern const bool __static_condition_default_1081; extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_677; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_1944; -extern const bool __static_condition_default_1489; -extern const bool __static_condition_default_1436; -extern const bool __static_condition_default_290; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_204; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_380; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_1398; +extern const bool __static_condition_default_169; extern const bool __static_condition_default_248; -extern const bool __static_condition_default_1165; -extern const bool __static_condition_default_646; -extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_1791; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_299; extern const bool __static_condition_default_761; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_619; +extern const bool __static_condition_default_791; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_1814; +extern const bool __static_condition_default_2057; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_991; extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_753; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_632; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_685; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_1357; -extern const bool __static_condition_default_431; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_461; -extern const bool __static_condition_default_2047; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_1791; +extern const bool __static_condition_default_2062; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_1165; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_1453; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_1416; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_549; +extern const bool __static_condition_default_365; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_2052; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_963; +extern const bool __static_condition_default_2060; +extern const bool __static_condition_default_636; extern const bool __static_condition_default_2058; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_1391; +extern const bool __static_condition_default_76; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_550; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_559; +extern const bool __static_condition_default_1944; +extern const bool __static_condition_default_1398; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_290; +extern const bool __static_condition_default_1564; +extern const bool __static_condition_default_1787; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_2048; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_1816; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_386; extern const bool __static_condition_default_503; -extern const bool __static_condition_default_709; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_1159; -extern const bool __static_condition_default_347; -extern const bool __static_condition_default_486; +extern const bool __static_condition_default_84; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_929; +extern const bool __static_condition_default_1531; +extern const bool __static_condition_default_2046; +extern const bool __static_condition_default_2049; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_1373; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_834; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_1405; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_337; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_380; +extern const bool __static_condition_default_779; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_263; extern const bool __static_condition_default_444; -extern const bool __static_condition_default_1532; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_670; -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_53; -extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_568; +extern const bool __static_condition_default_1552; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_1345; +extern const bool __static_condition_default_516; extern const bool __static_condition_default_840; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_1388; -extern const bool __static_condition_default_789; -extern const bool __static_condition_default_887; -extern const bool __static_condition_default_1409; -extern const bool __static_condition_default_559; -extern const bool __static_condition_default_846; -extern const bool __static_condition_default_955; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_1814; -extern const bool __static_condition_default_488; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_438; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_686; +extern const bool __static_condition_default_2044; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_747; +extern const bool __static_condition_default_907; +extern const bool __static_condition_default_568; +extern const bool __static_condition_default_2045; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_753; +extern const bool __static_condition_default_1754; +extern const bool __static_condition_default_801; extern const bool __static_condition_default_623; -extern const bool __static_condition_default_852; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_1385; +extern const bool __static_condition_default_2042; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_955; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_1458; extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_590; -extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_875; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_1785; -extern const bool __static_condition_default_402; -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_848; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_235; extern const bool __static_condition_default_510; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_602; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_204; +extern const bool __static_condition_default_1361; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_1560; +extern const bool __static_condition_default_2059; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_670; +extern const bool __static_condition_default_1152; +extern const bool __static_condition_default_544; +extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_914; extern const bool __static_condition_default_1808; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_2060; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_1416; -extern const bool __static_condition_default_1787; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_1365; -extern const bool __static_condition_default_619; extern const bool __static_condition_default_1485; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_956; -extern const bool __static_condition_default_1789; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_1385; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_1341; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_1345; -extern const bool __static_condition_default_803; -extern const bool __static_condition_default_2068; -extern const bool __static_condition_default_217; +extern const bool __static_condition_default_473; extern const bool __static_condition_default_293; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_1572; -extern const bool __static_condition_default_701; -extern const bool __static_condition_default_1560; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_769; -extern const bool __static_condition_default_684; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_187; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_632; extern const bool __static_condition_default_270; -extern const bool __static_condition_default_1405; -extern const bool __static_condition_default_311; -extern const bool __static_condition_default_393; -extern const bool __static_condition_default_408; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_1357; +extern const bool __static_condition_default_1164; +extern const bool __static_condition_default_1459; +extern const bool __static_condition_default_367; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_721; +extern const bool __static_condition_default_182; extern const bool __static_condition_default_412; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_317; +extern const bool __static_condition_default_512; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_2068; +extern const bool __static_condition_default_769; +extern const bool __static_condition_default_1749; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_1428; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_825; extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_347; extern const bool __static_condition_default_1753; -extern const bool __static_condition_default_1498; -extern const bool __static_condition_default_357; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_1515; -extern const bool __static_condition_default_2059; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_779; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_367; -extern const bool __static_condition_default_1395; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_1572; +extern const bool __static_condition_default_455; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_1432; +extern const bool __static_condition_default_2054; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_382; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_1775; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_536; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_1409; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_583; extern const bool __static_condition_default_1568; -extern const bool __static_condition_default_549; -extern const bool __static_condition_default_957; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_2063; -extern const bool __static_condition_default_1458; -extern const bool __static_condition_default_2046; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_1341; +extern const bool __static_condition_default_1381; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_1353; +extern const bool __static_condition_default_1556; +extern const bool __static_condition_default_2043; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_842; extern const bool __static_condition_default_170; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_1816; -extern const bool __static_condition_default_1776; -extern const bool __static_condition_default_521; -extern const bool __static_condition_default_2062; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_1391; -extern const bool __static_condition_default_2052; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_1369; -extern const bool __static_condition_default_1552; -extern const bool __static_condition_default_767; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_2063; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_1395; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_978; extern const bool __static_condition_default_1516; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_1424; -extern const bool __static_condition_default_1576; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_1531; -extern const bool __static_condition_default_2056; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_755; extern const bool __static_condition_default_1810; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_2057; -extern const bool __static_condition_default_2049; +extern const bool __static_condition_default_521; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_1315; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_677; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_419; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_333; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_1420; +extern const bool __static_condition_default_846; +extern const bool __static_condition_default_702; extern const bool __static_condition_default_1475; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_543; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_914; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_1754; -extern const bool __static_condition_default_512; -extern const bool __static_condition_default_1164; -extern const bool __static_condition_default_1373; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_1353; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_583; extern const bool __static_condition_default_745; -extern const bool __static_condition_default_198; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_793; -extern const bool __static_condition_default_1361; -extern const bool __static_condition_default_659; extern const bool __static_condition_default_891; -extern const bool __static_condition_default_333; -extern const bool __static_condition_default_907; -extern const bool __static_condition_default_76; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_386; -extern const bool __static_condition_default_1428; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_693; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_780; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_747; -extern const bool __static_condition_default_1402; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_638; -extern const bool __static_condition_default_2042; -extern const bool __static_condition_default_2054; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_578; +extern const bool __static_condition_default_1789; +extern const bool __static_condition_default_2056; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_489; +extern const bool __static_condition_default_1159; +extern const bool __static_condition_default_1515; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_1785; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_1436; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_1369; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_894; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_388; +extern const bool __static_condition_default_634; extern const bool __static_condition_default_278; -extern const bool __static_condition_default_1564; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_1775; -extern const bool __static_condition_default_382; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_1459; -extern const bool __static_condition_default_2045; -extern const bool __static_condition_default_645; -extern const bool __static_condition_default_872; -extern const bool __static_condition_default_1774; -extern const bool __static_condition_default_708; +extern const bool __static_condition_default_613; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_1750; +extern const bool __static_condition_default_1776; +extern const bool __static_condition_default_1424; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_1489; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_271; extern const bool __static_condition_default_2061; -extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_787; -extern const bool __static_condition_default_929; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_315; -extern const bool __static_condition_default_1749; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_1381; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_286; +extern const bool __static_condition_default_311; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_1043; extern const bool __static_condition_default_1349; -extern const bool __static_condition_default_2043; -extern const bool __static_condition_default_536; -extern const bool __static_condition_default_1556; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_1453; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_683; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -1696,12 +1696,12 @@ struct ____anonymous_tag_1166_1167 { unsigned int ____w_termsig_1168 : 7;// L72 unsigned int ____w_coredump_1169 : 1;// L73 unsigned int ____w_retcode_1170 : 8;// L74 -unsigned int : 16;// L75 +unsigned int __anon_id_0_1171 : 16;// L75 }; struct ____anonymous_tag_1172_1173 { unsigned int ____w_stopval_1174 : 8;// L87 unsigned int ____w_stopsig_1175 : 8;// L88 -unsigned int : 16;// L89 +unsigned int __anon_id_1_1176 : 16;// L89 }; union __wait_1177 { int __w_status_1178;// L68 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c index 31e74f89..706c3650 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c @@ -7,427 +7,427 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_755; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_1754; -extern const bool __static_condition_default_1402; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_1531; -extern const bool __static_condition_default_702; -extern const bool __static_condition_default_2450; -extern const bool __static_condition_default_1365; -extern const bool __static_condition_default_1552; -extern const bool __static_condition_default_2451; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_2429; -extern const bool __static_condition_default_1498; -extern const bool __static_condition_default_2396; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_1774; -extern const bool __static_condition_default_1787; -extern const bool __static_condition_default_2406; -extern const bool __static_condition_default_2459; -extern const bool __static_condition_default_187; -extern const bool __static_condition_default_311; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_2456; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_1381; -extern const bool __static_condition_default_419; -extern const bool __static_condition_default_638; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_1568; +extern const bool __static_condition_default_2064; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_647; extern const bool __static_condition_default_2445; -extern const bool __static_condition_default_286; +extern const bool __static_condition_default_419; +extern const bool __static_condition_default_2415; +extern const bool __static_condition_default_2322; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_747; +extern const bool __static_condition_default_2389; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_1377; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_2417; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_1385; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_957; extern const bool __static_condition_default_1405; -extern const bool __static_condition_default_2407; -extern const bool __static_condition_default_872; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_2064; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_780; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_2328; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_2047; -extern const bool __static_condition_default_2401; -extern const bool __static_condition_default_539; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_2479; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_573; extern const bool __static_condition_default_512; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_461; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_2330; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_2469; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_1773; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_2453; -extern const bool __static_condition_default_1159; -extern const bool __static_condition_default_1791; -extern const bool __static_condition_default_2410; -extern const bool __static_condition_default_2464; -extern const bool __static_condition_default_1564; -extern const bool __static_condition_default_1750; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_537; +extern const bool __static_condition_default_1090; extern const bool __static_condition_default_493; -extern const bool __static_condition_default_1164; -extern const bool __static_condition_default_2431; -extern const bool __static_condition_default_646; -extern const bool __static_condition_default_1395; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_388; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_357; -extern const bool __static_condition_default_1808; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_1453; -extern const bool __static_condition_default_1458; -extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_2466; -extern const bool __static_condition_default_1357; -extern const bool __static_condition_default_957; -extern const bool __static_condition_default_488; -extern const bool __static_condition_default_858; extern const bool __static_condition_default_693; -extern const bool __static_condition_default_382; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_2426; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_2461; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_402; -extern const bool __static_condition_default_2465; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_2377; -extern const bool __static_condition_default_2413; -extern const bool __static_condition_default_1391; -extern const bool __static_condition_default_842; -extern const bool __static_condition_default_2479; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_2342; -extern const bool __static_condition_default_2427; -extern const bool __static_condition_default_2062; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_613; -extern const bool __static_condition_default_2312; -extern const bool __static_condition_default_2376; -extern const bool __static_condition_default_1576; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_2421; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_2417; -extern const bool __static_condition_default_393; +extern const bool __static_condition_default_1458; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_559; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_1341; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_583; extern const bool __static_condition_default_685; -extern const bool __static_condition_default_846; -extern const bool __static_condition_default_2428; -extern const bool __static_condition_default_2452; -extern const bool __static_condition_default_632; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_1560; -extern const bool __static_condition_default_2449; -extern const bool __static_condition_default_956; -extern const bool __static_condition_default_568; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_1556; -extern const bool __static_condition_default_1385; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_757; +extern const bool __static_condition_default_2396; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_2427; +extern const bool __static_condition_default_1361; +extern const bool __static_condition_default_1515; +extern const bool __static_condition_default_2463; +extern const bool __static_condition_default_978; extern const bool __static_condition_default_807; -extern const bool __static_condition_default_1388; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_1345; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_2455; -extern const bool __static_condition_default_1532; -extern const bool __static_condition_default_564; -extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_1152; -extern const bool __static_condition_default_1516; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_2468; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_2409; -extern const bool __static_condition_default_753; -extern const bool __static_condition_default_2314; -extern const bool __static_condition_default_963; -extern const bool __static_condition_default_2381; -extern const bool __static_condition_default_929; -extern const bool __static_condition_default_907; -extern const bool __static_condition_default_53; -extern const bool __static_condition_default_290; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_1315; -extern const bool __static_condition_default_536; -extern const bool __static_condition_default_313; -extern const bool __static_condition_default_2432; -extern const bool __static_condition_default_1944; -extern const bool __static_condition_default_2351; -extern const bool __static_condition_default_412; extern const bool __static_condition_default_756; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_875; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_747; -extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_2419; -extern const bool __static_condition_default_1572; -extern const bool __static_condition_default_583; -extern const bool __static_condition_default_955; -extern const bool __static_condition_default_2329; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_1436; -extern const bool __static_condition_default_2430; -extern const bool __static_condition_default_661; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_1774; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_1395; +extern const bool __static_condition_default_842; +extern const bool __static_condition_default_1556; +extern const bool __static_condition_default_2408; +extern const bool __static_condition_default_929; +extern const bool __static_condition_default_1773; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_486; extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_891; +extern const bool __static_condition_default_2451; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_2431; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_2420; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_2406; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_2449; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_553; extern const bool __static_condition_default_489; -extern const bool __static_condition_default_2423; -extern const bool __static_condition_default_1373; -extern const bool __static_condition_default_1749; -extern const bool __static_condition_default_2478; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_1152; +extern const bool __static_condition_default_2418; +extern const bool __static_condition_default_1428; +extern const bool __static_condition_default_2429; extern const bool __static_condition_default_271; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_1373; +extern const bool __static_condition_default_1532; +extern const bool __static_condition_default_2407; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_1791; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_2456; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_2044; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_1785; +extern const bool __static_condition_default_1453; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_2377; +extern const bool __static_condition_default_1753; +extern const bool __static_condition_default_1081; extern const bool __static_condition_default_438; -extern const bool __static_condition_default_549; -extern const bool __static_condition_default_2420; -extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_1489; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_1515; -extern const bool __static_condition_default_347; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_883; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_2416; extern const bool __static_condition_default_1369; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_1776; -extern const bool __static_condition_default_760; +extern const bool __static_condition_default_2464; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_2320; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_2457; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_1560; +extern const bool __static_condition_default_2376; +extern const bool __static_condition_default_1416; +extern const bool __static_condition_default_2467; +extern const bool __static_condition_default_2452; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_382; +extern const bool __static_condition_default_2460; +extern const bool __static_condition_default_613; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_2409; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_1159; +extern const bool __static_condition_default_2046; +extern const bool __static_condition_default_1552; +extern const bool __static_condition_default_2387; +extern const bool __static_condition_default_834; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_1485; +extern const bool __static_condition_default_1576; +extern const bool __static_condition_default_2413; +extern const bool __static_condition_default_963; +extern const bool __static_condition_default_455; +extern const bool __static_condition_default_840; extern const bool __static_condition_default_2458; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_2462; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_2454; -extern const bool __static_condition_default_1785; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_386; -extern const bool __static_condition_default_2424; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_578; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_2434; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_891; +extern const bool __static_condition_default_848; extern const bool __static_condition_default_791; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_972; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_2350; +extern const bool __static_condition_default_2412; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_1349; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_2381; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_388; +extern const bool __static_condition_default_417; extern const bool __static_condition_default_708; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_1398; -extern const bool __static_condition_default_2434; -extern const bool __static_condition_default_709; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_769; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_1353; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_2418; +extern const bool __static_condition_default_2461; +extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_2472; +extern const bool __static_condition_default_2063; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_1357; extern const bool __static_condition_default_2477; -extern const bool __static_condition_default_367; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_2043; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_317; -extern const bool __static_condition_default_521; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_1568; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_76; +extern const bool __static_condition_default_1391; +extern const bool __static_condition_default_536; +extern const bool __static_condition_default_2062; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_769; +extern const bool __static_condition_default_875; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_1489; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_789; +extern const bool __static_condition_default_955; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_2455; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_2453; +extern const bool __static_condition_default_253; extern const bool __static_condition_default_204; -extern const bool __static_condition_default_1428; -extern const bool __static_condition_default_2414; -extern const bool __static_condition_default_217; -extern const bool __static_condition_default_2343; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_1775; -extern const bool __static_condition_default_559; -extern const bool __static_condition_default_787; -extern const bool __static_condition_default_380; -extern const bool __static_condition_default_887; -extern const bool __static_condition_default_793; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_1789; -extern const bool __static_condition_default_2063; -extern const bool __static_condition_default_2408; -extern const bool __static_condition_default_2457; -extern const bool __static_condition_default_2416; -extern const bool __static_condition_default_1432; -extern const bool __static_condition_default_803; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_2387; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_1416; -extern const bool __static_condition_default_663; +extern const bool __static_condition_default_549; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_347; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_619; extern const bool __static_condition_default_497; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_1424; -extern const bool __static_condition_default_1485; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_210; +extern const bool __static_condition_default_1009; extern const bool __static_condition_default_2388; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_2322; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_543; -extern const bool __static_condition_default_2046; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_1165; +extern const bool __static_condition_default_2351; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_753; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_645; extern const bool __static_condition_default_751; +extern const bool __static_condition_default_2465; +extern const bool __static_condition_default_621; extern const bool __static_condition_default_670; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_2412; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_894; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_1749; +extern const bool __static_condition_default_1816; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_2401; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_380; +extern const bool __static_condition_default_1787; +extern const bool __static_condition_default_2430; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_187; +extern const bool __static_condition_default_488; +extern const bool __static_condition_default_2410; extern const bool __static_condition_default_2448; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_789; -extern const bool __static_condition_default_1420; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_2044; -extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_2389; +extern const bool __static_condition_default_521; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_2468; +extern const bool __static_condition_default_2043; +extern const bool __static_condition_default_2329; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_2432; extern const bool __static_condition_default_817; -extern const bool __static_condition_default_2415; -extern const bool __static_condition_default_2313; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_2320; -extern const bool __static_condition_default_1816; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_2433; -extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_768; +extern const bool __static_condition_default_1402; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_290; extern const bool __static_condition_default_715; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_1361; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_2460; -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_2378; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_1475; +extern const bool __static_condition_default_1353; +extern const bool __static_condition_default_2414; +extern const bool __static_condition_default_386; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_2349; extern const bool __static_condition_default_263; -extern const bool __static_condition_default_248; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_1377; -extern const bool __static_condition_default_2321; -extern const bool __static_condition_default_1349; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_590; -extern const bool __static_condition_default_1165; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_1753; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_2446; extern const bool __static_condition_default_2425; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_2349; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_848; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_2470; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_2467; -extern const bool __static_condition_default_1810; -extern const bool __static_condition_default_198; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_1409; -extern const bool __static_condition_default_408; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_315; -extern const bool __static_condition_default_914; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_2045; -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_473; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_702; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_2411; +extern const bool __static_condition_default_84; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_2424; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_846; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_721; +extern const bool __static_condition_default_2314; +extern const bool __static_condition_default_2433; +extern const bool __static_condition_default_550; +extern const bool __static_condition_default_2454; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_2446; +extern const bool __static_condition_default_1775; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_337; extern const bool __static_condition_default_779; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_2463; -extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_2450; +extern const bool __static_condition_default_2423; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_2466; +extern const bool __static_condition_default_2313; extern const bool __static_condition_default_1459; -extern const bool __static_condition_default_2350; -extern const bool __static_condition_default_238; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_1750; +extern const bool __static_condition_default_1365; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_2421; +extern const bool __static_condition_default_759; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_2459; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_1315; +extern const bool __static_condition_default_2478; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_1498; +extern const bool __static_condition_default_333; extern const bool __static_condition_default_761; -extern const bool __static_condition_default_1341; -extern const bool __static_condition_default_2411; -extern const bool __static_condition_default_246; +extern const bool __static_condition_default_2426; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_1398; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_1420; extern const bool __static_condition_default_1814; +extern const bool __static_condition_default_2342; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_1424; +extern const bool __static_condition_default_2045; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_2469; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_2330; +extern const bool __static_condition_default_1789; +extern const bool __static_condition_default_1808; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_2312; +extern const bool __static_condition_default_568; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_2470; +extern const bool __static_condition_default_825; extern const bool __static_condition_default_2422; -extern const bool __static_condition_default_701; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_1436; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_1944; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_311; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_1516; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_76; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_1810; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_1432; +extern const bool __static_condition_default_1572; extern const bool __static_condition_default_503; -extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_333; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_645; -extern const bool __static_condition_default_2472; -extern const bool __static_condition_default_431; +extern const bool __static_condition_default_544; +extern const bool __static_condition_default_1381; +extern const bool __static_condition_default_1345; +extern const bool __static_condition_default_2462; extern const bool __static_condition_default_677; -extern const bool __static_condition_default_864; +extern const bool __static_condition_default_1564; +extern const bool __static_condition_default_2428; +extern const bool __static_condition_default_1754; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_1776; +extern const bool __static_condition_default_1475; +extern const bool __static_condition_default_894; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_907; +extern const bool __static_condition_default_2378; +extern const bool __static_condition_default_367; +extern const bool __static_condition_default_2328; +extern const bool __static_condition_default_1164; +extern const bool __static_condition_default_2321; +extern const bool __static_condition_default_2419; +extern const bool __static_condition_default_365; +extern const bool __static_condition_default_2047; +extern const bool __static_condition_default_1388; +extern const bool __static_condition_default_1409; +extern const bool __static_condition_default_2343; +extern const bool __static_condition_default_1531; +extern const bool __static_condition_default_636; +extern const bool __static_condition_default_760; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -1961,12 +1961,12 @@ struct ____anonymous_tag_1166_1167 { unsigned int ____w_termsig_1168 : 7;// L72 unsigned int ____w_coredump_1169 : 1;// L73 unsigned int ____w_retcode_1170 : 8;// L74 -unsigned int : 16;// L75 +unsigned int __anon_id_0_1171 : 16;// L75 }; struct ____anonymous_tag_1172_1173 { unsigned int ____w_stopval_1174 : 8;// L87 unsigned int ____w_stopsig_1175 : 8;// L88 -unsigned int : 16;// L89 +unsigned int __anon_id_1_1176 : 16;// L89 }; union __wait_1177 { int __w_status_1178;// L68 @@ -3289,14 +3289,14 @@ extern char * ((____stpncpy_alias_2370) (char * (____dest_2363), const char * /* no function due to type errors in the function prototype */ int __content_gzip_2390= 0;// L6 int __authorized_2391= 0;// L10 -char * (__iobuf_2392)= __malloc_1631 (8192);// L15 -char * (__iobuf_2393)= __malloc_1632 (8192);// L15 -char * (__iobuf_2394)= __malloc_1633 (8192);// L15 -char * (__iobuf_2395)= __malloc_1634 (8192);// L15 -char * (__iobuf_2397)= __malloc_1631 (8192);// L15 -char * (__iobuf_2398)= __malloc_1632 (8192);// L15 -char * (__iobuf_2399)= __malloc_1633 (8192);// L15 -char * (__iobuf_2400)= __malloc_1634 (8192);// L15 +char * (__iobuf_2392)= malloc (8192);// L15 +char * (__iobuf_2393)= malloc (8192);// L15 +char * (__iobuf_2394)= malloc (8192);// L15 +char * (__iobuf_2395)= malloc (8192);// L15 +char * (__iobuf_2397)= malloc (8192);// L15 +char * (__iobuf_2398)= malloc (8192);// L15 +char * (__iobuf_2399)= malloc (8192);// L15 +char * (__iobuf_2400)= malloc (8192);// L15 void (__send_headers_2405) (int __responseNum_2402) { { diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.c index e259c1dc..11d9779b 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.c @@ -7,366 +7,366 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_438; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_333; -extern const bool __static_condition_default_347; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_709; -extern const bool __static_condition_default_2040; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_2043; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_2071; -extern const bool __static_condition_default_543; -extern const bool __static_condition_default_1516; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_1791; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_907; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_701; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_1754; extern const bool __static_condition_default_1164; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_872; -extern const bool __static_condition_default_2058; -extern const bool __static_condition_default_756; +extern const bool __static_condition_default_1152; +extern const bool __static_condition_default_938; extern const bool __static_condition_default_2067; -extern const bool __static_condition_default_2056; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_1560; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_1816; +extern const bool __static_condition_default_1402; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_1475; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_2058; extern const bool __static_condition_default_549; -extern const bool __static_condition_default_1810; -extern const bool __static_condition_default_2057; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_789; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_1388; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_1428; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_2054; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_1814; +extern const bool __static_condition_default_2042; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_578; extern const bool __static_condition_default_780; -extern const bool __static_condition_default_357; -extern const bool __static_condition_default_412; -extern const bool __static_condition_default_2053; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_1341; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_1066; extern const bool __static_condition_default_432; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_789; +extern const bool __static_condition_default_1773; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_2062; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_955; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_1165; +extern const bool __static_condition_default_419; +extern const bool __static_condition_default_2055; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_891; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_637; extern const bool __static_condition_default_1564; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_803; +extern const bool __static_condition_default_1785; +extern const bool __static_condition_default_834; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_1458; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_521; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_1365; +extern const bool __static_condition_default_759; +extern const bool __static_condition_default_2065; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_1556; +extern const bool __static_condition_default_2063; +extern const bool __static_condition_default_1436; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_1576; +extern const bool __static_condition_default_1787; +extern const bool __static_condition_default_791; extern const bool __static_condition_default_761; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_963; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_858; -extern const bool __static_condition_default_290; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_499; +extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_1810; +extern const bool __static_condition_default_1944; extern const bool __static_condition_default_2046; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_1428; -extern const bool __static_condition_default_2052; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_198; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_1416; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_583; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_721; extern const bool __static_condition_default_187; -extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_2054; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_769; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_840; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_2056; +extern const bool __static_condition_default_623; extern const bool __static_condition_default_645; -extern const bool __static_condition_default_955; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_386; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_1377; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_1773; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_2047; -extern const bool __static_condition_default_875; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_1531; +extern const bool __static_condition_default_388; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_559; +extern const bool __static_condition_default_1568; +extern const bool __static_condition_default_2051; +extern const bool __static_condition_default_1753; extern const bool __static_condition_default_1345; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_2065; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_2059; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_1357; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_1489; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_2066; -extern const bool __static_condition_default_957; -extern const bool __static_condition_default_702; -extern const bool __static_condition_default_1552; +extern const bool __static_condition_default_550; +extern const bool __static_condition_default_386; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_1009; extern const bool __static_condition_default_123; -extern const bool __static_condition_default_408; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_431; -extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_793; -extern const bool __static_condition_default_1165; -extern const bool __static_condition_default_2045; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_1315; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_461; -extern const bool __static_condition_default_638; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_1349; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_1453; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_1816; extern const bool __static_condition_default_1385; -extern const bool __static_condition_default_1485; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_1159; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_1398; -extern const bool __static_condition_default_311; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_1424; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_2050; -extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_1531; -extern const bool __static_condition_default_1749; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_2048; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_1787; -extern const bool __static_condition_default_564; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_590; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_1754; -extern const bool __static_condition_default_2063; extern const bool __static_condition_default_246; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_536; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_1388; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_1381; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_613; +extern const bool __static_condition_default_1377; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_375; extern const bool __static_condition_default_1532; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_568; -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_1808; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_891; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_1475; +extern const bool __static_condition_default_747; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_1027; extern const bool __static_condition_default_2049; -extern const bool __static_condition_default_559; -extern const bool __static_condition_default_956; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_1416; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_755; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_2040; +extern const bool __static_condition_default_769; +extern const bool __static_condition_default_2057; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_1750; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_1485; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_2053; +extern const bool __static_condition_default_544; +extern const bool __static_condition_default_1515; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_807; extern const bool __static_condition_default_1789; -extern const bool __static_condition_default_1369; -extern const bool __static_condition_default_315; -extern const bool __static_condition_default_393; -extern const bool __static_condition_default_76; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_1373; -extern const bool __static_condition_default_1556; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_1458; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_1572; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_1776; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_583; -extern const bool __static_condition_default_1409; -extern const bool __static_condition_default_2044; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_248; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_693; -extern const bool __static_condition_default_1774; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_2060; -extern const bool __static_condition_default_380; -extern const bool __static_condition_default_2051; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_1395; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_1365; +extern const bool __static_condition_default_702; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_1791; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_2059; +extern const bool __static_condition_default_1489; +extern const bool __static_condition_default_1373; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_636; extern const bool __static_condition_default_1405; -extern const bool __static_condition_default_677; -extern const bool __static_condition_default_670; -extern const bool __static_condition_default_883; +extern const bool __static_condition_default_2052; extern const bool __static_condition_default_488; -extern const bool __static_condition_default_894; -extern const bool __static_condition_default_1353; -extern const bool __static_condition_default_1576; extern const bool __static_condition_default_1432; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_1436; -extern const bool __static_condition_default_53; -extern const bool __static_condition_default_313; -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_613; -extern const bool __static_condition_default_787; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_1402; -extern const bool __static_condition_default_2042; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_2061; +extern const bool __static_condition_default_1808; +extern const bool __static_condition_default_1560; +extern const bool __static_condition_default_1409; +extern const bool __static_condition_default_2060; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_367; extern const bool __static_condition_default_602; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_907; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_929; extern const bool __static_condition_default_538; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_2043; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_619; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_842; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_2071; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_663; extern const bool __static_condition_default_223; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_747; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_388; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_337; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_1516; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_347; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_489; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_2066; +extern const bool __static_condition_default_455; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_1775; +extern const bool __static_condition_default_2044; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_76; extern const bool __static_condition_default_217; -extern const bool __static_condition_default_402; +extern const bool __static_condition_default_2047; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_380; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_753; extern const bool __static_condition_default_846; -extern const bool __static_condition_default_1420; -extern const bool __static_condition_default_1568; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_1753; -extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_1349; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_317; -extern const bool __static_condition_default_512; -extern const bool __static_condition_default_1391; -extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_1353; +extern const bool __static_condition_default_1357; +extern const bool __static_condition_default_84; extern const bool __static_condition_default_417; -extern const bool __static_condition_default_685; +extern const bool __static_condition_default_1369; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_894; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_2050; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_382; +extern const bool __static_condition_default_365; +extern const bool __static_condition_default_2061; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_677; extern const bool __static_condition_default_746; -extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_1315; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_529; extern const bool __static_condition_default_735; -extern const bool __static_condition_default_1453; -extern const bool __static_condition_default_204; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_521; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_1785; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_848; -extern const bool __static_condition_default_779; -extern const bool __static_condition_default_2062; -extern const bool __static_condition_default_914; +extern const bool __static_condition_default_875; +extern const bool __static_condition_default_1459; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_2045; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_670; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_311; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_2048; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_1572; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_568; +extern const bool __static_condition_default_1361; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_355; extern const bool __static_condition_default_1498; -extern const bool __static_condition_default_367; -extern const bool __static_condition_default_1775; -extern const bool __static_condition_default_1814; -extern const bool __static_condition_default_887; +extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_1774; extern const bool __static_condition_default_2041; -extern const bool __static_condition_default_382; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_1341; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_1152; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_753; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_1361; -extern const bool __static_condition_default_1750; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_1944; -extern const bool __static_condition_default_238; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_512; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_1776; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_1552; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_963; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_333; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_1159; +extern const bool __static_condition_default_1395; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_1391; +extern const bool __static_condition_default_779; +extern const bool __static_condition_default_1398; +extern const bool __static_condition_default_1420; +extern const bool __static_condition_default_290; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_536; extern const bool __static_condition_default_632; -extern const bool __static_condition_default_1381; -extern const bool __static_condition_default_842; -extern const bool __static_condition_default_1459; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_419; -extern const bool __static_condition_default_1515; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_929; -extern const bool __static_condition_default_2055; -extern const bool __static_condition_default_646; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_1424; +extern const bool __static_condition_default_1749; +extern const bool __static_condition_default_204; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -1710,12 +1710,12 @@ struct ____anonymous_tag_1166_1167 { unsigned int ____w_termsig_1168 : 7;// L72 unsigned int ____w_coredump_1169 : 1;// L73 unsigned int ____w_retcode_1170 : 8;// L74 -unsigned int : 16;// L75 +unsigned int __anon_id_0_1171 : 16;// L75 }; struct ____anonymous_tag_1172_1173 { unsigned int ____w_stopval_1174 : 8;// L87 unsigned int ____w_stopsig_1175 : 8;// L88 -unsigned int : 16;// L89 +unsigned int __anon_id_1_1176 : 16;// L89 }; union __wait_1177 { int __w_status_1178;// L68 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c index 5f851495..e98f1a42 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c @@ -7,388 +7,388 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_755; -extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_1489; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_1515; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_2330; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_204; +extern const bool __static_condition_default_1568; +extern const bool __static_condition_default_549; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_444; extern const bool __static_condition_default_347; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_1369; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_1754; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_1402; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_1531; -extern const bool __static_condition_default_702; -extern const bool __static_condition_default_1365; -extern const bool __static_condition_default_1552; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_1776; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_2409; -extern const bool __static_condition_default_2377; -extern const bool __static_condition_default_1498; -extern const bool __static_condition_default_2343; -extern const bool __static_condition_default_2401; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_1774; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_1787; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_2063; -extern const bool __static_condition_default_187; -extern const bool __static_condition_default_311; -extern const bool __static_condition_default_1785; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_2387; extern const bool __static_condition_default_619; -extern const bool __static_condition_default_386; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_2047; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_1381; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_2351; -extern const bool __static_condition_default_708; extern const bool __static_condition_default_419; -extern const bool __static_condition_default_2321; -extern const bool __static_condition_default_2400; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_638; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_1165; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_2409; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_747; +extern const bool __static_condition_default_753; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_1377; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_670; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_1749; +extern const bool __static_condition_default_1816; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_255; extern const bool __static_condition_default_286; +extern const bool __static_condition_default_1385; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_380; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_957; extern const bool __static_condition_default_1405; -extern const bool __static_condition_default_1398; -extern const bool __static_condition_default_2412; -extern const bool __static_condition_default_709; -extern const bool __static_condition_default_872; -extern const bool __static_condition_default_2062; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_769; -extern const bool __static_condition_default_2313; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_780; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_1353; -extern const bool __static_condition_default_2405; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_1787; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_187; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_488; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_2397; extern const bool __static_condition_default_836; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_367; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_2387; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_317; +extern const bool __static_condition_default_2381; extern const bool __static_condition_default_521; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_1568; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_76; -extern const bool __static_condition_default_204; -extern const bool __static_condition_default_1428; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_217; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_573; extern const bool __static_condition_default_512; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_1775; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_461; +extern const bool __static_condition_default_2388; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_1402; +extern const bool __static_condition_default_2064; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_1458; +extern const bool __static_condition_default_290; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_2044; +extern const bool __static_condition_default_2398; extern const bool __static_condition_default_559; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_787; -extern const bool __static_condition_default_380; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_887; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_1773; -extern const bool __static_condition_default_793; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_1789; -extern const bool __static_condition_default_1159; -extern const bool __static_condition_default_1791; -extern const bool __static_condition_default_2378; -extern const bool __static_condition_default_2416; -extern const bool __static_condition_default_1564; -extern const bool __static_condition_default_1750; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_1432; -extern const bool __static_condition_default_2342; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_1353; +extern const bool __static_condition_default_386; +extern const bool __static_condition_default_2389; +extern const bool __static_condition_default_249; extern const bool __static_condition_default_803; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_2381; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_1164; -extern const bool __static_condition_default_2330; +extern const bool __static_condition_default_2063; +extern const bool __static_condition_default_2410; +extern const bool __static_condition_default_1341; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_583; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_2313; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_702; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_1361; +extern const bool __static_condition_default_1515; +extern const bool __static_condition_default_84; +extern const bool __static_condition_default_684; extern const bool __static_condition_default_223; -extern const bool __static_condition_default_2388; -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_646; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_1416; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_499; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_846; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_1774; +extern const bool __static_condition_default_293; extern const bool __static_condition_default_1395; +extern const bool __static_condition_default_842; +extern const bool __static_condition_default_1556; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_929; +extern const bool __static_condition_default_721; +extern const bool __static_condition_default_1773; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_550; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_658; extern const bool __static_condition_default_2045; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_2329; -extern const bool __static_condition_default_388; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_2417; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_1424; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_1485; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_991; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_2376; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_1775; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_757; extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_2043; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_357; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_1808; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_2412; +extern const bool __static_condition_default_337; +extern const bool __static_condition_default_779; +extern const bool __static_condition_default_608; extern const bool __static_condition_default_395; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_2403; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_2321; +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_489; extern const bool __static_condition_default_267; -extern const bool __static_condition_default_2044; -extern const bool __static_condition_default_543; -extern const bool __static_condition_default_1453; -extern const bool __static_condition_default_1458; -extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_1357; -extern const bool __static_condition_default_670; -extern const bool __static_condition_default_957; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_488; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_858; -extern const bool __static_condition_default_894; -extern const bool __static_condition_default_693; -extern const bool __static_condition_default_382; -extern const bool __static_condition_default_2398; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_789; +extern const bool __static_condition_default_2411; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_1152; +extern const bool __static_condition_default_2320; +extern const bool __static_condition_default_1428; +extern const bool __static_condition_default_1459; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_1750; +extern const bool __static_condition_default_1373; +extern const bool __static_condition_default_1532; +extern const bool __static_condition_default_1365; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_2329; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_1791; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_759; +extern const bool __static_condition_default_2350; +extern const bool __static_condition_default_633; extern const bool __static_condition_default_813; -extern const bool __static_condition_default_1420; -extern const bool __static_condition_default_2322; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_2349; -extern const bool __static_condition_default_2399; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_402; -extern const bool __static_condition_default_2419; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_1391; -extern const bool __static_condition_default_842; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_1816; -extern const bool __static_condition_default_2418; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_1315; extern const bool __static_condition_default_355; -extern const bool __static_condition_default_2328; +extern const bool __static_condition_default_1498; +extern const bool __static_condition_default_552; extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_2376; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_170; +extern const bool __static_condition_default_2401; +extern const bool __static_condition_default_333; +extern const bool __static_condition_default_761; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_259; extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_613; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_2402; -extern const bool __static_condition_default_1361; -extern const bool __static_condition_default_1576; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_2420; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_1785; +extern const bool __static_condition_default_1453; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_2047; +extern const bool __static_condition_default_623; extern const bool __static_condition_default_2407; -extern const bool __static_condition_default_801; +extern const bool __static_condition_default_1398; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_1420; +extern const bool __static_condition_default_1814; +extern const bool __static_condition_default_1753; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_2377; +extern const bool __static_condition_default_2417; +extern const bool __static_condition_default_2402; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_1424; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_471; extern const bool __static_condition_default_393; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_1475; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_685; -extern const bool __static_condition_default_846; -extern const bool __static_condition_default_248; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_632; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_2408; -extern const bool __static_condition_default_1560; -extern const bool __static_condition_default_1377; -extern const bool __static_condition_default_1349; -extern const bool __static_condition_default_956; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_1369; +extern const bool __static_condition_default_2406; +extern const bool __static_condition_default_1789; +extern const bool __static_condition_default_1808; +extern const bool __static_condition_default_657; extern const bool __static_condition_default_568; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_590; -extern const bool __static_condition_default_1556; -extern const bool __static_condition_default_1385; -extern const bool __static_condition_default_623; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_2419; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_1436; extern const bool __static_condition_default_662; -extern const bool __static_condition_default_1165; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_1388; -extern const bool __static_condition_default_2397; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_1345; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_1753; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_1532; -extern const bool __static_condition_default_564; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_1152; +extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_2405; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_1944; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_311; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_1560; +extern const bool __static_condition_default_2322; +extern const bool __static_condition_default_1416; +extern const bool __static_condition_default_257; extern const bool __static_condition_default_1516; -extern const bool __static_condition_default_745; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_2343; +extern const bool __static_condition_default_382; +extern const bool __static_condition_default_76; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_613; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_2314; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_1810; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_2378; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_2342; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_1159; +extern const bool __static_condition_default_1432; +extern const bool __static_condition_default_2408; +extern const bool __static_condition_default_2062; +extern const bool __static_condition_default_2404; +extern const bool __static_condition_default_1572; extern const bool __static_condition_default_2312; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_544; +extern const bool __static_condition_default_1552; +extern const bool __static_condition_default_2349; extern const bool __static_condition_default_834; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_848; -extern const bool __static_condition_default_753; -extern const bool __static_condition_default_2410; +extern const bool __static_condition_default_1381; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_2351; +extern const bool __static_condition_default_1345; +extern const bool __static_condition_default_1485; +extern const bool __static_condition_default_677; +extern const bool __static_condition_default_1564; +extern const bool __static_condition_default_1576; +extern const bool __static_condition_default_2399; +extern const bool __static_condition_default_1754; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_469; extern const bool __static_condition_default_963; +extern const bool __static_condition_default_2043; +extern const bool __static_condition_default_455; extern const bool __static_condition_default_840; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_929; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_2420; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_891; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_791; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_2400; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_1349; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_1776; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_388; +extern const bool __static_condition_default_1475; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_2418; +extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_894; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_1357; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_313; extern const bool __static_condition_default_907; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_2389; -extern const bool __static_condition_default_1810; -extern const bool __static_condition_default_53; -extern const bool __static_condition_default_198; -extern const bool __static_condition_default_290; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_1409; -extern const bool __static_condition_default_2411; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_408; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_2320; -extern const bool __static_condition_default_1315; +extern const bool __static_condition_default_367; +extern const bool __static_condition_default_1164; +extern const bool __static_condition_default_1391; +extern const bool __static_condition_default_365; extern const bool __static_condition_default_536; -extern const bool __static_condition_default_315; -extern const bool __static_condition_default_313; -extern const bool __static_condition_default_1944; -extern const bool __static_condition_default_412; extern const bool __static_condition_default_2046; -extern const bool __static_condition_default_914; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_2350; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_2406; -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_735; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_769; extern const bool __static_condition_default_875; -extern const bool __static_condition_default_779; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_747; -extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_2314; -extern const bool __static_condition_default_1572; -extern const bool __static_condition_default_1459; -extern const bool __static_condition_default_583; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_1388; +extern const bool __static_condition_default_2403; +extern const bool __static_condition_default_1409; +extern const bool __static_condition_default_1489; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_789; extern const bool __static_condition_default_955; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_1436; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_761; -extern const bool __static_condition_default_1341; -extern const bool __static_condition_default_2064; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_1814; -extern const bool __static_condition_default_701; -extern const bool __static_condition_default_2404; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_891; -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_1373; -extern const bool __static_condition_default_1749; -extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_333; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_645; -extern const bool __static_condition_default_431; -extern const bool __static_condition_default_677; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_438; -extern const bool __static_condition_default_549; +extern const bool __static_condition_default_1531; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_636; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_2328; +extern const bool __static_condition_default_2416; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -1865,12 +1865,12 @@ struct ____anonymous_tag_1166_1167 { unsigned int ____w_termsig_1168 : 7;// L72 unsigned int ____w_coredump_1169 : 1;// L73 unsigned int ____w_retcode_1170 : 8;// L74 -unsigned int : 16;// L75 +unsigned int __anon_id_0_1171 : 16;// L75 }; struct ____anonymous_tag_1172_1173 { unsigned int ____w_stopval_1174 : 8;// L87 unsigned int ____w_stopsig_1175 : 8;// L88 -unsigned int : 16;// L89 +unsigned int __anon_id_1_1176 : 16;// L89 }; union __wait_1177 { int __w_status_1178;// L68 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.desugared.c index b04583b6..32640ac2 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.desugared.c @@ -7,67 +7,67 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_302; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_273; -extern const bool __static_condition_default_288; +extern const bool __static_condition_default_349; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_234; extern const bool __static_condition_default_378; -extern const bool __static_condition_default_420; -extern const bool __static_condition_default_261; extern const bool __static_condition_default_279; -extern const bool __static_condition_default_352; -extern const bool __static_condition_default_426; -extern const bool __static_condition_default_349; -extern const bool __static_condition_default_579; -extern const bool __static_condition_default_252; -extern const bool __static_condition_default_285; -extern const bool __static_condition_default_361; +extern const bool __static_condition_default_273; +extern const bool __static_condition_default_581; +extern const bool __static_condition_default_67; extern const bool __static_condition_default_258; -extern const bool __static_condition_default_276; -extern const bool __static_condition_default_395; +extern const bool __static_condition_default_361; +extern const bool __static_condition_default_252; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_240; +extern const bool __static_condition_default_302; +extern const bool __static_condition_default_426; extern const bool __static_condition_default_736; -extern const bool __static_condition_default_627; -extern const bool __static_condition_default_805; -extern const bool __static_condition_default_237; -extern const bool __static_condition_default_423; -extern const bool __static_condition_default_804; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_394; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_234; -extern const bool __static_condition_default_379; extern const bool __static_condition_default_429; -extern const bool __static_condition_default_67; -extern const bool __static_condition_default_325; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_240; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_308; -extern const bool __static_condition_default_243; +extern const bool __static_condition_default_394; extern const bool __static_condition_default_595; -extern const bool __static_condition_default_215; -extern const bool __static_condition_default_808; -extern const bool __static_condition_default_581; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_299; extern const bool __static_condition_default_60; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_579; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_805; +extern const bool __static_condition_default_414; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_807; extern const bool __static_condition_default_604; -extern const bool __static_condition_default_594; +extern const bool __static_condition_default_808; +extern const bool __static_condition_default_623; extern const bool __static_condition_default_249; -extern const bool __static_condition_default_305; -extern const bool __static_condition_default_414; +extern const bool __static_condition_default_627; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_270; extern const bool __static_condition_default_255; -extern const bool __static_condition_default_629; -extern const bool __static_condition_default_341; +extern const bool __static_condition_default_305; +extern const bool __static_condition_default_308; +extern const bool __static_condition_default_285; +extern const bool __static_condition_default_379; +extern const bool __static_condition_default_423; extern const bool __static_condition_default_809; +extern const bool __static_condition_default_352; +extern const bool __static_condition_default_420; +extern const bool __static_condition_default_243; +extern const bool __static_condition_default_276; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_629; +extern const bool __static_condition_default_261; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_594; +extern const bool __static_condition_default_237; +extern const bool __static_condition_default_804; +extern const bool __static_condition_default_325; extern const bool __static_condition_default_806; +extern const bool __static_condition_default_215; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -591,12 +591,12 @@ struct ____anonymous_tag_70_71 { unsigned int ____w_termsig_72 : 7;// L72 unsigned int ____w_coredump_73 : 1;// L73 unsigned int ____w_retcode_74 : 8;// L74 -unsigned int : 16;// L75 +unsigned int __anon_id_0_75 : 16;// L75 }; struct ____anonymous_tag_76_77 { unsigned int ____w_stopval_78 : 8;// L87 unsigned int ____w_stopsig_79 : 8;// L88 -unsigned int : 16;// L89 +unsigned int __anon_id_1_80 : 16;// L89 }; union __wait_81 { int __w_status_82;// L68 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c index bab54f02..5703e724 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c @@ -7,404 +7,404 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_755; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_1754; -extern const bool __static_condition_default_1402; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_1531; -extern const bool __static_condition_default_702; -extern const bool __static_condition_default_1365; -extern const bool __static_condition_default_1552; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_2377; -extern const bool __static_condition_default_1498; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_1774; -extern const bool __static_condition_default_1787; -extern const bool __static_condition_default_187; -extern const bool __static_condition_default_311; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_2047; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_1381; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_2435; +extern const bool __static_condition_default_2330; +extern const bool __static_condition_default_1568; +extern const bool __static_condition_default_2437; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_647; extern const bool __static_condition_default_419; -extern const bool __static_condition_default_638; -extern const bool __static_condition_default_286; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_747; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_2458; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_1377; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_1385; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_957; extern const bool __static_condition_default_1405; -extern const bool __static_condition_default_872; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_2425; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_780; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_2387; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_2426; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_539; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_2381; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_573; extern const bool __static_condition_default_512; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_2388; +extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_2064; extern const bool __static_condition_default_2432; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_461; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_1773; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_1159; -extern const bool __static_condition_default_1791; -extern const bool __static_condition_default_2434; -extern const bool __static_condition_default_1564; -extern const bool __static_condition_default_1750; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_2381; extern const bool __static_condition_default_493; -extern const bool __static_condition_default_1164; -extern const bool __static_condition_default_2330; -extern const bool __static_condition_default_2388; -extern const bool __static_condition_default_646; -extern const bool __static_condition_default_1395; -extern const bool __static_condition_default_2045; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_388; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_2428; -extern const bool __static_condition_default_2043; -extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_357; -extern const bool __static_condition_default_1808; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_2439; -extern const bool __static_condition_default_1453; -extern const bool __static_condition_default_1458; -extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_1357; -extern const bool __static_condition_default_957; -extern const bool __static_condition_default_488; -extern const bool __static_condition_default_858; extern const bool __static_condition_default_693; -extern const bool __static_condition_default_382; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_2322; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_2349; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_402; -extern const bool __static_condition_default_2430; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_2424; -extern const bool __static_condition_default_1391; -extern const bool __static_condition_default_842; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_2442; -extern const bool __static_condition_default_2376; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_613; -extern const bool __static_condition_default_1576; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_393; -extern const bool __static_condition_default_2406; -extern const bool __static_condition_default_2409; +extern const bool __static_condition_default_1458; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_2044; +extern const bool __static_condition_default_559; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_2063; +extern const bool __static_condition_default_1341; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_583; extern const bool __static_condition_default_685; -extern const bool __static_condition_default_846; -extern const bool __static_condition_default_2454; -extern const bool __static_condition_default_2415; -extern const bool __static_condition_default_632; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_1560; -extern const bool __static_condition_default_2404; -extern const bool __static_condition_default_956; -extern const bool __static_condition_default_568; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_2429; +extern const bool __static_condition_default_2313; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_1361; +extern const bool __static_condition_default_1515; +extern const bool __static_condition_default_2408; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_1774; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_1395; +extern const bool __static_condition_default_842; extern const bool __static_condition_default_1556; -extern const bool __static_condition_default_1385; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_662; +extern const bool __static_condition_default_929; +extern const bool __static_condition_default_1773; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_2433; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_2443; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_2456; +extern const bool __static_condition_default_1043; extern const bool __static_condition_default_757; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_1388; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_1345; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_1532; -extern const bool __static_condition_default_564; -extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_2441; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_489; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_852; extern const bool __static_condition_default_1152; -extern const bool __static_condition_default_1516; -extern const bool __static_condition_default_745; +extern const bool __static_condition_default_1428; +extern const bool __static_condition_default_2460; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_1373; +extern const bool __static_condition_default_1532; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_1791; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_1785; +extern const bool __static_condition_default_1453; +extern const bool __static_condition_default_2414; +extern const bool __static_condition_default_2047; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_1753; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_2377; +extern const bool __static_condition_default_2409; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_2401; +extern const bool __static_condition_default_1369; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_1035; extern const bool __static_condition_default_634; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_2403; +extern const bool __static_condition_default_2444; extern const bool __static_condition_default_2438; -extern const bool __static_condition_default_753; -extern const bool __static_condition_default_963; -extern const bool __static_condition_default_929; -extern const bool __static_condition_default_907; -extern const bool __static_condition_default_2389; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_2404; extern const bool __static_condition_default_53; -extern const bool __static_condition_default_290; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_1315; +extern const bool __static_condition_default_1560; +extern const bool __static_condition_default_2322; +extern const bool __static_condition_default_1416; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_382; +extern const bool __static_condition_default_613; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_2378; +extern const bool __static_condition_default_2342; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_1159; +extern const bool __static_condition_default_2062; +extern const bool __static_condition_default_2312; +extern const bool __static_condition_default_1552; +extern const bool __static_condition_default_834; +extern const bool __static_condition_default_2430; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_2351; +extern const bool __static_condition_default_1485; +extern const bool __static_condition_default_1576; +extern const bool __static_condition_default_963; +extern const bool __static_condition_default_455; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_2415; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_891; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_791; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_1349; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_388; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_1357; +extern const bool __static_condition_default_1391; extern const bool __static_condition_default_536; -extern const bool __static_condition_default_313; -extern const bool __static_condition_default_1944; -extern const bool __static_condition_default_412; -extern const bool __static_condition_default_2046; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_2350; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_735; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_769; extern const bool __static_condition_default_875; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_747; -extern const bool __static_condition_default_2423; -extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_2414; -extern const bool __static_condition_default_2314; -extern const bool __static_condition_default_1572; -extern const bool __static_condition_default_583; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_1489; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_789; extern const bool __static_condition_default_955; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_204; +extern const bool __static_condition_default_549; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_347; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_2387; +extern const bool __static_condition_default_619; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_1165; +extern const bool __static_condition_default_2429; +extern const bool __static_condition_default_2406; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_753; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_751; extern const bool __static_condition_default_621; -extern const bool __static_condition_default_1436; -extern const bool __static_condition_default_2064; +extern const bool __static_condition_default_670; extern const bool __static_condition_default_661; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_2403; -extern const bool __static_condition_default_2450; -extern const bool __static_condition_default_891; -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_1373; extern const bool __static_condition_default_1749; -extern const bool __static_condition_default_2441; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_438; -extern const bool __static_condition_default_549; -extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_1489; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_1515; -extern const bool __static_condition_default_347; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_1369; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_1776; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_2343; -extern const bool __static_condition_default_2437; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_2435; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_2063; -extern const bool __static_condition_default_1785; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_386; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_523; +extern const bool __static_condition_default_1816; extern const bool __static_condition_default_972; -extern const bool __static_condition_default_2351; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_2321; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_2405; -extern const bool __static_condition_default_2407; -extern const bool __static_condition_default_2452; -extern const bool __static_condition_default_1398; -extern const bool __static_condition_default_709; -extern const bool __static_condition_default_2062; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_769; -extern const bool __static_condition_default_2313; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_1353; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_367; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_317; -extern const bool __static_condition_default_521; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_1568; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_76; -extern const bool __static_condition_default_204; -extern const bool __static_condition_default_1428; -extern const bool __static_condition_default_217; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_1775; -extern const bool __static_condition_default_559; -extern const bool __static_condition_default_787; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_473; extern const bool __static_condition_default_380; -extern const bool __static_condition_default_887; -extern const bool __static_condition_default_793; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_2408; -extern const bool __static_condition_default_1789; -extern const bool __static_condition_default_2378; -extern const bool __static_condition_default_1432; -extern const bool __static_condition_default_2342; -extern const bool __static_condition_default_803; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_2431; -extern const bool __static_condition_default_515; +extern const bool __static_condition_default_1787; extern const bool __static_condition_default_514; -extern const bool __static_condition_default_1416; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_2329; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_1424; -extern const bool __static_condition_default_1485; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_2440; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_2044; -extern const bool __static_condition_default_543; -extern const bool __static_condition_default_751; +extern const bool __static_condition_default_187; +extern const bool __static_condition_default_2434; +extern const bool __static_condition_default_488; extern const bool __static_condition_default_2436; -extern const bool __static_condition_default_670; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_894; -extern const bool __static_condition_default_2400; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_789; -extern const bool __static_condition_default_1420; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_521; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_275; extern const bool __static_condition_default_817; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_1816; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_2328; -extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_2433; +extern const bool __static_condition_default_1402; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_290; extern const bool __static_condition_default_715; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_1361; -extern const bool __static_condition_default_2401; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_1475; +extern const bool __static_condition_default_1353; +extern const bool __static_condition_default_386; +extern const bool __static_condition_default_2389; +extern const bool __static_condition_default_803; extern const bool __static_condition_default_263; -extern const bool __static_condition_default_248; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_2402; +extern const bool __static_condition_default_702; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_2459; +extern const bool __static_condition_default_2440; +extern const bool __static_condition_default_84; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_846; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_2400; +extern const bool __static_condition_default_721; +extern const bool __static_condition_default_550; +extern const bool __static_condition_default_2045; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_2376; +extern const bool __static_condition_default_1775; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_337; +extern const bool __static_condition_default_779; +extern const bool __static_condition_default_2447; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_2321; +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_1057; extern const bool __static_condition_default_668; -extern const bool __static_condition_default_1377; -extern const bool __static_condition_default_1349; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_590; -extern const bool __static_condition_default_1165; -extern const bool __static_condition_default_2427; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_2451; -extern const bool __static_condition_default_1753; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_2312; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_848; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_1810; -extern const bool __static_condition_default_198; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_1409; -extern const bool __static_condition_default_408; -extern const bool __static_condition_default_253; +extern const bool __static_condition_default_752; extern const bool __static_condition_default_2320; -extern const bool __static_condition_default_315; -extern const bool __static_condition_default_914; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_779; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_1081; extern const bool __static_condition_default_1459; -extern const bool __static_condition_default_238; +extern const bool __static_condition_default_2439; +extern const bool __static_condition_default_2407; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_1750; +extern const bool __static_condition_default_1365; +extern const bool __static_condition_default_2329; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_759; +extern const bool __static_condition_default_2350; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_1315; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_1498; +extern const bool __static_condition_default_333; extern const bool __static_condition_default_761; -extern const bool __static_condition_default_1341; -extern const bool __static_condition_default_2453; -extern const bool __static_condition_default_246; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_1398; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_1420; extern const bool __static_condition_default_1814; -extern const bool __static_condition_default_701; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_1424; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_1789; +extern const bool __static_condition_default_1808; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_568; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_2442; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_1436; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_1944; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_311; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_1516; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_2343; +extern const bool __static_condition_default_76; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_2314; +extern const bool __static_condition_default_1810; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_1432; +extern const bool __static_condition_default_1572; extern const bool __static_condition_default_503; -extern const bool __static_condition_default_2402; -extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_333; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_645; -extern const bool __static_condition_default_431; +extern const bool __static_condition_default_544; +extern const bool __static_condition_default_2349; +extern const bool __static_condition_default_1381; +extern const bool __static_condition_default_1345; extern const bool __static_condition_default_677; -extern const bool __static_condition_default_864; +extern const bool __static_condition_default_1564; +extern const bool __static_condition_default_2448; +extern const bool __static_condition_default_2405; +extern const bool __static_condition_default_1754; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_2043; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_2431; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_2457; +extern const bool __static_condition_default_1776; +extern const bool __static_condition_default_2446; +extern const bool __static_condition_default_1475; +extern const bool __static_condition_default_894; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_907; +extern const bool __static_condition_default_367; +extern const bool __static_condition_default_1164; +extern const bool __static_condition_default_365; +extern const bool __static_condition_default_2046; +extern const bool __static_condition_default_1388; +extern const bool __static_condition_default_2445; +extern const bool __static_condition_default_1409; +extern const bool __static_condition_default_1531; +extern const bool __static_condition_default_636; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_2328; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -1255,13 +1255,13 @@ __static_renaming("__delete_eth_table_2412", "delete_eth_table"); __static_renaming("__delete_eth_table_2413", "delete_eth_table"); __static_renaming("__ch_2419", "ch"); __static_renaming("__ch_2420", "ch"); -__static_renaming("__prepend_new_eth_table_2421", "prepend_new_eth_table"); -__static_renaming("__prepend_new_eth_table_2422", "prepend_new_eth_table"); -__static_renaming("__clist_2445", "clist"); -__static_renaming("__clist_2446", "clist"); -__static_renaming("__ch_2447", "ch"); -__static_renaming("__ch_2448", "ch"); -__static_renaming("__main_2449", "main"); +__static_renaming("__prepend_new_eth_table_2427", "prepend_new_eth_table"); +__static_renaming("__prepend_new_eth_table_2428", "prepend_new_eth_table"); +__static_renaming("__clist_2451", "clist"); +__static_renaming("__clist_2452", "clist"); +__static_renaming("__ch_2453", "ch"); +__static_renaming("__ch_2454", "ch"); +__static_renaming("__main_2455", "main"); __static_condition_renaming("__static_condition_default_53", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); __static_condition_renaming("__static_condition_default_76", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); @@ -1636,33 +1636,33 @@ __static_condition_renaming("__static_condition_default_2408", "(defined _FORTIF __static_condition_renaming("__static_condition_default_2409", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H) && (defined ENABLE_FEATURE_CLEAN_UP)"); __static_condition_renaming("__static_condition_default_2414", "!(defined _FORTIFY_SOURCE) && !(defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined ENABLE_FEATURE_CLEAN_UP)"); __static_condition_renaming("__static_condition_default_2415", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined ENABLE_FEATURE_CLEAN_UP)"); -__static_condition_renaming("__static_condition_default_2423", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2424", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2425", "(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2426", "(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDLIB_H) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDLIB_H) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDLIB_H) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2427", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2428", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2429", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDLIB_H) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDLIB_H) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDLIB_H) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2430", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined)"); -__static_condition_renaming("__static_condition_default_2431", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || (defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined)"); -__static_condition_renaming("__static_condition_default_2432", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDLIB_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDLIB_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDLIB_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDLIB_H) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDLIB_H) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDLIB_H) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDLIB_H) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2433", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2434", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2435", "(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2436", "(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2437", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2438", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2439", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2440", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined)"); -__static_condition_renaming("__static_condition_default_2441", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined)"); -__static_condition_renaming("__static_condition_default_2442", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2450", "!(defined _FORTIFY_SOURCE) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_CLEAN_UP)"); -__static_condition_renaming("__static_condition_default_2451", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_CLEAN_UP)"); -__static_condition_renaming("__static_condition_default_2452", "!(defined ENABLE_FEATURE_CLEAN_UP)"); -__static_condition_renaming("__static_condition_default_2453", "(defined ENABLE_FEATURE_CLEAN_UP)"); -__static_condition_renaming("__static_condition_default_2454", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && (defined _STDLIB_H) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && (defined _STDLIB_H) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO)"); - -if (__static_condition_default_2454) +__static_condition_renaming("__static_condition_default_2429", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2430", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2431", "(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2432", "(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDLIB_H) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDLIB_H) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDLIB_H) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2433", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2434", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2435", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDLIB_H) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDLIB_H) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDLIB_H) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2436", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined)"); +__static_condition_renaming("__static_condition_default_2437", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || (defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined)"); +__static_condition_renaming("__static_condition_default_2438", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDLIB_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDLIB_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDLIB_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDLIB_H) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDLIB_H) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDLIB_H) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDLIB_H) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2439", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2440", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2441", "(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2442", "(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2443", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2444", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2445", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2446", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined)"); +__static_condition_renaming("__static_condition_default_2447", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined)"); +__static_condition_renaming("__static_condition_default_2448", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2456", "!(defined _FORTIFY_SOURCE) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_CLEAN_UP)"); +__static_condition_renaming("__static_condition_default_2457", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_CLEAN_UP)"); +__static_condition_renaming("__static_condition_default_2458", "!(defined ENABLE_FEATURE_CLEAN_UP)"); +__static_condition_renaming("__static_condition_default_2459", "(defined ENABLE_FEATURE_CLEAN_UP)"); +__static_condition_renaming("__static_condition_default_2460", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && (defined _STDLIB_H) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && (defined _STDLIB_H) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO)"); + +if (__static_condition_default_2460) { __static_parse_error("Unable to parse"); } @@ -1904,12 +1904,12 @@ struct ____anonymous_tag_1166_1167 { unsigned int ____w_termsig_1168 : 7;// L72 unsigned int ____w_coredump_1169 : 1;// L73 unsigned int ____w_retcode_1170 : 8;// L74 -unsigned int : 16;// L75 +unsigned int __anon_id_0_1171 : 16;// L75 }; struct ____anonymous_tag_1172_1173 { unsigned int ____w_stopval_1174 : 8;// L87 unsigned int ____w_stopsig_1175 : 8;// L88 -unsigned int : 16;// L89 +unsigned int __anon_id_1_1176 : 16;// L89 }; union __wait_1177 { int __w_status_1178;// L68 @@ -3254,13 +3254,13 @@ if (__static_condition_default_2400) { if (__static_condition_default_2401) { - __free_1649 ( __ch_2396 -> __ifname_2393) ; // L15 +free ( __ch_2396 -> __ifname_2393) ; // L15 } if (__static_condition_default_2402) { __static_type_error("type error") ; // L15 } if (__static_condition_default_2403) { - __free_1649 ( __ch_2396 ) ; // L16 +free ( __ch_2396 ) ; // L16 } if (__static_condition_default_2404) { __static_type_error("type error") ; // L16 @@ -3281,13 +3281,13 @@ if (__static_condition_default_2405) { if (__static_condition_default_2406) { - __free_1649 ( __ch_2397 -> __ifname_2393) ; // L15 +free ( __ch_2397 -> __ifname_2393) ; // L15 } if (__static_condition_default_2407) { __static_type_error("type error") ; // L15 } if (__static_condition_default_2408) { - __free_1649 ( __ch_2397 ) ; // L16 +free ( __ch_2397 ) ; // L16 } if (__static_condition_default_2409) { __static_type_error("type error") ; // L16 @@ -3328,60 +3328,62 @@ if (__static_condition_default_2415) { } } -static void (__prepend_new_eth_table_2421) (__ethtable_t_2394 * (* (__clist_2416)), char * (__ifname_2418)) { +static void (__prepend_new_eth_table_2427) (__ethtable_t_2394 * (* (__clist_2416)), char * (__ifname_2418)) { -if (__static_condition_default_2423) { +if (__static_condition_default_2429) { { { +struct { typeof( struct __forward_tag_reference_2390 *) __tmp_2421; typeof( char *) __tmp_2422; }__sizeofStandin_2423; +struct { typeof( struct __forward_tag_reference_2390 *) __tmp_2424; typeof( char *) __tmp_2425; }__sizeofStandin_2426; __ethtable_t_2394 * (__ch_2419);// L26 -if (__static_condition_default_2424) { +if (__static_condition_default_2430) { if ( __strlen_2201 ( __ifname_2418 ) >= 16 )// L27 { __printf_421 ("interface name '%s' too long", __ifname_2418 ) ; // L28 } } -if (__static_condition_default_2425) { +if (__static_condition_default_2431) { if ( __strlen_2202 ( __ifname_2418 ) >= 16 )// L27 { __static_type_error("type error") ; // L28 } } -if (__static_condition_default_2426) { +if (__static_condition_default_2432) { if ( __strlen_2203 ( __ifname_2418 ) >= 16 )// L27 { __static_type_error("type error") ; // L28 } } -if (__static_condition_default_2427) { +if (__static_condition_default_2433) { if ( __strlen_2204 ( __ifname_2418 ) >= 16 )// L27 { __printf_421 ("interface name '%s' too long", __ifname_2418 ) ; // L28 } } -if (__static_condition_default_2428) { +if (__static_condition_default_2434) { if ( __strlen_2205 ( __ifname_2418 ) >= 16 )// L27 { __static_type_error("type error") ; // L28 } } -if (__static_condition_default_2429) { +if (__static_condition_default_2435) { if ( __strlen_2206 ( __ifname_2418 ) >= 16 )// L27 { __static_type_error("type error") ; // L28 } } -if (__static_condition_default_2430) { - __ch_2419 = __malloc_1631 (( sizeof(struct __forward_tag_reference_2390 * ()) + sizeof(char * ()) )) ; // L29 +if (__static_condition_default_2436) { + __ch_2419 = malloc (sizeof(__sizeofStandin_2423)) ; // L29 } -if (__static_condition_default_2431) { - __ch_2419 = __malloc_1632 (( sizeof(struct __forward_tag_reference_2390 * ()) + sizeof(char * ()) )) ; // L29 +if (__static_condition_default_2437) { + __ch_2419 = malloc (sizeof(__sizeofStandin_2423)) ; // L29 } -if (__static_condition_default_2432) { +if (__static_condition_default_2438) { __static_type_error("type error") ; // L29 } __ch_2419 -> __ifname_2393 = __ifname_2418 ; // L30 @@ -3393,60 +3395,62 @@ __static_type_error("type error") ; // L29 } } -static void (__prepend_new_eth_table_2422) (__ethtable_t_2395 * (* (__clist_2417)), char * (__ifname_2418)) { +static void (__prepend_new_eth_table_2428) (__ethtable_t_2395 * (* (__clist_2417)), char * (__ifname_2418)) { -if (__static_condition_default_2433) { +if (__static_condition_default_2439) { { { +struct { typeof( struct __forward_tag_reference_2390 *) __tmp_2421; typeof( char *) __tmp_2422; }__sizeofStandin_2423; +struct { typeof( struct __forward_tag_reference_2390 *) __tmp_2424; typeof( char *) __tmp_2425; }__sizeofStandin_2426; __ethtable_t_2395 * (__ch_2420);// L26 -if (__static_condition_default_2434) { +if (__static_condition_default_2440) { if ( __strlen_2201 ( __ifname_2418 ) >= 16 )// L27 { __printf_421 ("interface name '%s' too long", __ifname_2418 ) ; // L28 } } -if (__static_condition_default_2435) { +if (__static_condition_default_2441) { if ( __strlen_2202 ( __ifname_2418 ) >= 16 )// L27 { __static_type_error("type error") ; // L28 } } -if (__static_condition_default_2436) { +if (__static_condition_default_2442) { if ( __strlen_2203 ( __ifname_2418 ) >= 16 )// L27 { __static_type_error("type error") ; // L28 } } -if (__static_condition_default_2437) { +if (__static_condition_default_2443) { if ( __strlen_2204 ( __ifname_2418 ) >= 16 )// L27 { __printf_421 ("interface name '%s' too long", __ifname_2418 ) ; // L28 } } -if (__static_condition_default_2438) { +if (__static_condition_default_2444) { if ( __strlen_2205 ( __ifname_2418 ) >= 16 )// L27 { __static_type_error("type error") ; // L28 } } -if (__static_condition_default_2439) { +if (__static_condition_default_2445) { if ( __strlen_2206 ( __ifname_2418 ) >= 16 )// L27 { __static_type_error("type error") ; // L28 } } -if (__static_condition_default_2440) { - __ch_2420 = __malloc_1633 (( sizeof(struct __forward_tag_reference_2390 * ()) + sizeof(char * ()) )) ; // L29 +if (__static_condition_default_2446) { + __ch_2420 = malloc (sizeof(__sizeofStandin_2426)) ; // L29 } -if (__static_condition_default_2441) { - __ch_2420 = __malloc_1634 (( sizeof(struct __forward_tag_reference_2390 * ()) + sizeof(char * ()) )) ; // L29 +if (__static_condition_default_2447) { + __ch_2420 = malloc (sizeof(__sizeofStandin_2426)) ; // L29 } -if (__static_condition_default_2442) { +if (__static_condition_default_2448) { __static_type_error("type error") ; // L29 } __ch_2420 -> __ifname_2393 = __ifname_2418 ; // L30 @@ -3458,43 +3462,43 @@ __static_type_error("type error") ; // L29 } } -int (__main_2449) (int __argc_2443, char * (* (__argv_2444))) { +int (__main_2455) (int __argc_2449, char * (* (__argv_2450))) { { { -__ethtable_t_2394 * (__clist_2445)= ( ( void * ) 0 );// L37 +__ethtable_t_2394 * (__clist_2451)= ( ( void * ) 0 );// L37 -__ethtable_t_2395 * (__clist_2446)= ( ( void * ) 0 );// L37 +__ethtable_t_2395 * (__clist_2452)= ( ( void * ) 0 );// L37 -__ethtable_t_2394 * (__ch_2447);// L38 +__ethtable_t_2394 * (__ch_2453);// L38 -__ethtable_t_2395 * (__ch_2448);// L38 +__ethtable_t_2395 * (__ch_2454);// L38 -if (__static_condition_default_2423) { - __prepend_new_eth_table_2421 (& __clist_2445 , __argv_2444 [ 0 ]) ; // L40 +if (__static_condition_default_2429) { + __prepend_new_eth_table_2427 (& __clist_2451 , __argv_2450 [ 0 ]) ; // L40 } -if (__static_condition_default_2433) { - __prepend_new_eth_table_2422 (& __clist_2446 , __argv_2444 [ 0 ]) ; // L40 +if (__static_condition_default_2439) { + __prepend_new_eth_table_2428 (& __clist_2452 , __argv_2450 [ 0 ]) ; // L40 } -if (__static_condition_default_2450) { -for ( __ch_2447 = __clist_2445 ; __ch_2447 ; __ch_2447 = __ch_2447 -> __next_2392 )// L43 +if (__static_condition_default_2456) { +for ( __ch_2453 = __clist_2451 ; __ch_2453 ; __ch_2453 = __ch_2453 -> __next_2392 )// L43 { - __delete_eth_table_2398 ( __ch_2447 ) ; // L44 + __delete_eth_table_2398 ( __ch_2453 ) ; // L44 } } -if (__static_condition_default_2451) { -for ( __ch_2448 = __clist_2446 ; __ch_2448 ; __ch_2448 = __ch_2448 -> __next_2392 )// L43 +if (__static_condition_default_2457) { +for ( __ch_2454 = __clist_2452 ; __ch_2454 ; __ch_2454 = __ch_2454 -> __next_2392 )// L43 { - __delete_eth_table_2399 ( __ch_2448 ) ; // L44 + __delete_eth_table_2399 ( __ch_2454 ) ; // L44 } } -if (__static_condition_default_2452) { +if (__static_condition_default_2458) { return 0 ;// L46 } -if (__static_condition_default_2453) { +if (__static_condition_default_2459) { return 0 ;// L46 } } diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/cf1f2ace391.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/cf1f2ace391.desugared.c index b607bc01..13c955c9 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/cf1f2ace391.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/cf1f2ace391.desugared.c @@ -7,482 +7,482 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_1939; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_1289; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_1864; +extern const bool __static_condition_default_2140; +extern const bool __static_condition_default_2245; +extern const bool __static_condition_default_1151; +extern const bool __static_condition_default_1316; +extern const bool __static_condition_default_1356; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_1824; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_1158; +extern const bool __static_condition_default_386; +extern const bool __static_condition_default_1165; +extern const bool __static_condition_default_2217; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_769; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_1933; +extern const bool __static_condition_default_2266; +extern const bool __static_condition_default_1332; +extern const bool __static_condition_default_1977; +extern const bool __static_condition_default_907; +extern const bool __static_condition_default_1212; +extern const bool __static_condition_default_1861; +extern const bool __static_condition_default_2007; extern const bool __static_condition_default_193; +extern const bool __static_condition_default_1262; +extern const bool __static_condition_default_1843; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_2120; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_761; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_2304; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_1171; +extern const bool __static_condition_default_619; +extern const bool __static_condition_default_2405; +extern const bool __static_condition_default_1308; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_894; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_412; extern const bool __static_condition_default_512; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_241; +extern const bool __static_condition_default_2507; +extern const bool __static_condition_default_1237; extern const bool __static_condition_default_887; -extern const bool __static_condition_default_1252; -extern const bool __static_condition_default_1221; +extern const bool __static_condition_default_84; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_337; +extern const bool __static_condition_default_1412; +extern const bool __static_condition_default_388; +extern const bool __static_condition_default_2123; +extern const bool __static_condition_default_787; extern const bool __static_condition_default_2215; -extern const bool __static_condition_default_313; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_2191; -extern const bool __static_condition_default_2000; -extern const bool __static_condition_default_780; -extern const bool __static_condition_default_848; -extern const bool __static_condition_default_1846; -extern const bool __static_condition_default_2117; -extern const bool __static_condition_default_638; -extern const bool __static_condition_default_1986; -extern const bool __static_condition_default_2304; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_1232; -extern const bool __static_condition_default_1322; -extern const bool __static_condition_default_1381; -extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_461; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_544; +extern const bool __static_condition_default_1802; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_1384; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_2143; +extern const bool __static_condition_default_875; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_1936; +extern const bool __static_condition_default_1985; +extern const bool __static_condition_default_2396; +extern const bool __static_condition_default_1834; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_2001; +extern const bool __static_condition_default_834; +extern const bool __static_condition_default_2260; +extern const bool __static_condition_default_1304; +extern const bool __static_condition_default_2176; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_1292; +extern const bool __static_condition_default_1311; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_253; extern const bool __static_condition_default_1231; -extern const bool __static_condition_default_2303; -extern const bool __static_condition_default_1978; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_1283; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_883; extern const bool __static_condition_default_1215; -extern const bool __static_condition_default_1254; -extern const bool __static_condition_default_2406; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_1900; -extern const bool __static_condition_default_1980; -extern const bool __static_condition_default_2508; -extern const bool __static_condition_default_1321; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_2203; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_2512; -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_872; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_1313; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_746; +extern const bool __static_condition_default_2311; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_955; +extern const bool __static_condition_default_1307; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_2205; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_1288; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_1230; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_2268; extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_2002; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_549; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_2278; -extern const bool __static_condition_default_956; -extern const bool __static_condition_default_1412; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_1815; -extern const bool __static_condition_default_684; +extern const bool __static_condition_default_290; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_365; +extern const bool __static_condition_default_1323; +extern const bool __static_condition_default_2512; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_1214; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_2173; +extern const bool __static_condition_default_1827; +extern const bool __static_condition_default_288; extern const bool __static_condition_default_2339; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_2311; -extern const bool __static_condition_default_1320; -extern const bool __static_condition_default_2509; -extern const bool __static_condition_default_2194; -extern const bool __static_condition_default_1909; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_1852; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_1141; -extern const bool __static_condition_default_1906; -extern const bool __static_condition_default_2281; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_701; -extern const bool __static_condition_default_1894; -extern const bool __static_condition_default_1168; -extern const bool __static_condition_default_1977; -extern const bool __static_condition_default_715; +extern const bool __static_condition_default_333; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_1253; extern const bool __static_condition_default_1927; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_2223; -extern const bool __static_condition_default_382; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_894; -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_803; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_1222; -extern const bool __static_condition_default_1311; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_875; -extern const bool __static_condition_default_488; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_1409; -extern const bool __static_condition_default_559; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_2519; -extern const bool __static_condition_default_2179; -extern const bool __static_condition_default_510; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_550; extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_1239; -extern const bool __static_condition_default_2258; -extern const bool __static_condition_default_198; -extern const bool __static_condition_default_1151; -extern const bool __static_condition_default_1873; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_2260; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_2006; -extern const bool __static_condition_default_1324; -extern const bool __static_condition_default_2120; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_2193; -extern const bool __static_condition_default_1305; -extern const bool __static_condition_default_1936; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_2268; -extern const bool __static_condition_default_2001; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_1238; -extern const bool __static_condition_default_1158; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_1212; -extern const bool __static_condition_default_1230; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_1293; -extern const bool __static_condition_default_1233; -extern const bool __static_condition_default_1284; -extern const bool __static_condition_default_597; +extern const bool __static_condition_default_2203; +extern const bool __static_condition_default_963; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_846; +extern const bool __static_condition_default_1986; +extern const bool __static_condition_default_670; +extern const bool __static_condition_default_543; extern const bool __static_condition_default_735; -extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_2291; -extern const bool __static_condition_default_1160; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_1141; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_842; +extern const bool __static_condition_default_747; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_2236; +extern const bool __static_condition_default_2340; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_2204; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_1984; extern const bool __static_condition_default_891; -extern const bool __static_condition_default_2224; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_1304; -extern const bool __static_condition_default_1171; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_1250; +extern const bool __static_condition_default_2258; +extern const bool __static_condition_default_1152; +extern const bool __static_condition_default_753; +extern const bool __static_condition_default_1930; +extern const bool __static_condition_default_1289; +extern const bool __static_condition_default_1314; +extern const bool __static_condition_default_1199; extern const bool __static_condition_default_1885; -extern const bool __static_condition_default_2216; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_761; -extern const bool __static_condition_default_2246; -extern const bool __static_condition_default_1237; -extern const bool __static_condition_default_1202; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_1329; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_1796; +extern const bool __static_condition_default_1238; +extern const bool __static_condition_default_1906; +extern const bool __static_condition_default_1903; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_1263; +extern const bool __static_condition_default_1239; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_1251; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_1290; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_1285; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_998; extern const bool __static_condition_default_2008; -extern const bool __static_condition_default_419; -extern const bool __static_condition_default_1220; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_2202; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_1891; +extern const bool __static_condition_default_1870; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_2002; +extern const bool __static_condition_default_613; +extern const bool __static_condition_default_1918; +extern const bool __static_condition_default_1921; +extern const bool __static_condition_default_1328; +extern const bool __static_condition_default_1168; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_1219; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_1293; +extern const bool __static_condition_default_1846; +extern const bool __static_condition_default_2302; +extern const bool __static_condition_default_2303; +extern const bool __static_condition_default_1291; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_1261; extern const bool __static_condition_default_1155; -extern const bool __static_condition_default_2266; -extern const bool __static_condition_default_2513; -extern const bool __static_condition_default_1824; -extern const bool __static_condition_default_2245; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_1840; +extern const bool __static_condition_default_2194; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_1213; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_2235; +extern const bool __static_condition_default_1280; +extern const bool __static_condition_default_549; +extern const bool __static_condition_default_568; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_702; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_2137; +extern const bool __static_condition_default_2388; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_1321; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_2191; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_2223; +extern const bool __static_condition_default_1978; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_2281; +extern const bool __static_condition_default_2349; extern const bool __static_condition_default_659; -extern const bool __static_condition_default_2259; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_1827; -extern const bool __static_condition_default_907; -extern const bool __static_condition_default_1864; -extern const bool __static_condition_default_1261; -extern const bool __static_condition_default_685; -extern const bool __static_condition_default_1288; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_2237; +extern const bool __static_condition_default_1260; extern const bool __static_condition_default_2238; -extern const bool __static_condition_default_1319; -extern const bool __static_condition_default_2313; -extern const bool __static_condition_default_2226; -extern const bool __static_condition_default_787; -extern const bool __static_condition_default_1802; -extern const bool __static_condition_default_1984; -extern const bool __static_condition_default_1384; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_1327; -extern const bool __static_condition_default_2176; -extern const bool __static_condition_default_2312; -extern const bool __static_condition_default_1255; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_1328; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_1315; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_747; -extern const bool __static_condition_default_1290; -extern const bool __static_condition_default_2236; -extern const bool __static_condition_default_769; -extern const bool __static_condition_default_431; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_1368; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_809; +extern const bool __static_condition_default_488; extern const bool __static_condition_default_1882; -extern const bool __static_condition_default_2257; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_1250; -extern const bool __static_condition_default_393; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_2246; +extern const bool __static_condition_default_759; extern const bool __static_condition_default_789; -extern const bool __static_condition_default_2290; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_386; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_2218; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_402; -extern const bool __static_condition_default_583; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_1985; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_1280; -extern const bool __static_condition_default_76; -extern const bool __static_condition_default_2411; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_2217; -extern const bool __static_condition_default_248; -extern const bool __static_condition_default_2279; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_779; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_2292; -extern const bool __static_condition_default_1983; -extern const bool __static_condition_default_613; -extern const bool __static_condition_default_619; +extern const bool __static_condition_default_1222; +extern const bool __static_condition_default_1305; extern const bool __static_condition_default_636; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_1009; extern const bool __static_condition_default_1282; -extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_1843; -extern const bool __static_condition_default_590; -extern const bool __static_condition_default_2173; -extern const bool __static_condition_default_521; -extern const bool __static_condition_default_2170; -extern const bool __static_condition_default_2388; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_1330; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_929; -extern const bool __static_condition_default_1214; -extern const bool __static_condition_default_1834; -extern const bool __static_condition_default_842; -extern const bool __static_condition_default_217; -extern const bool __static_condition_default_1849; -extern const bool __static_condition_default_963; -extern const bool __static_condition_default_2507; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_1285; -extern const bool __static_condition_default_2340; -extern const bool __static_condition_default_2202; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_1220; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_583; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_1831; +extern const bool __static_condition_default_382; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_1258; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_1979; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_1320; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_1255; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_2389; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_1254; +extern const bool __static_condition_default_536; extern const bool __static_condition_default_541; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_1314; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_1319; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_1240; +extern const bool __static_condition_default_2192; extern const bool __static_condition_default_801; -extern const bool __static_condition_default_1263; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_2225; -extern const bool __static_condition_default_333; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_1262; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_412; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_2235; -extern const bool __static_condition_default_388; -extern const bool __static_condition_default_846; +extern const bool __static_condition_default_727; extern const bool __static_condition_default_2126; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_1213; -extern const bool __static_condition_default_677; -extern const bool __static_condition_default_1329; -extern const bool __static_condition_default_1918; -extern const bool __static_condition_default_438; -extern const bool __static_condition_default_2302; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_1253; -extern const bool __static_condition_default_793; -extern const bool __static_condition_default_2405; extern const bool __static_condition_default_367; -extern const bool __static_condition_default_568; -extern const bool __static_condition_default_1332; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_2305; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_1260; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_1312; -extern const bool __static_condition_default_317; -extern const bool __static_condition_default_2265; -extern const bool __static_condition_default_1350; -extern const bool __static_condition_default_1323; -extern const bool __static_condition_default_2140; -extern const bool __static_condition_default_1219; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_2396; -extern const bool __static_condition_default_1397; -extern const bool __static_condition_default_2137; -extern const bool __static_condition_default_357; -extern const bool __static_condition_default_2146; -extern const bool __static_condition_default_1831; -extern const bool __static_condition_default_1308; +extern const bool __static_condition_default_347; +extern const bool __static_condition_default_419; +extern const bool __static_condition_default_677; +extern const bool __static_condition_default_1283; +extern const bool __static_condition_default_1849; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_1331; +extern const bool __static_condition_default_1900; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_2278; +extern const bool __static_condition_default_1368; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_1284; +extern const bool __static_condition_default_2218; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_1330; +extern const bool __static_condition_default_2267; +extern const bool __static_condition_default_559; +extern const bool __static_condition_default_1303; +extern const bool __static_condition_default_2411; +extern const bool __static_condition_default_2508; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_1409; +extern const bool __static_condition_default_2406; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_1162; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_514; extern const bool __static_condition_default_444; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_1258; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_2289; +extern const bool __static_condition_default_1315; +extern const bool __static_condition_default_2146; +extern const bool __static_condition_default_1306; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_2312; +extern const bool __static_condition_default_2265; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_2117; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_2280; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_2313; +extern const bool __static_condition_default_1371; +extern const bool __static_condition_default_1873; +extern const bool __static_condition_default_2513; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_1035; extern const bool __static_condition_default_2248; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_2007; -extern const bool __static_condition_default_2267; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_1259; -extern const bool __static_condition_default_1933; +extern const bool __static_condition_default_2247; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_455; +extern const bool __static_condition_default_1202; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_2216; +extern const bool __static_condition_default_1799; extern const bool __static_condition_default_2314; -extern const bool __static_condition_default_646; -extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_1240; -extern const bool __static_condition_default_542; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_1259; +extern const bool __static_condition_default_1381; +extern const bool __static_condition_default_2259; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_2237; +extern const bool __static_condition_default_2257; +extern const bool __static_condition_default_1939; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_721; extern const bool __static_condition_default_693; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_1903; -extern const bool __static_condition_default_1861; -extern const bool __static_condition_default_1796; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_1324; +extern const bool __static_condition_default_858; extern const bool __static_condition_default_1999; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_1840; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_1148; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_2123; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_1799; -extern const bool __static_condition_default_536; -extern const bool __static_condition_default_709; -extern const bool __static_condition_default_1891; +extern const bool __static_condition_default_1394; +extern const bool __static_condition_default_1909; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_1894; +extern const bool __static_condition_default_2279; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_2305; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_2226; +extern const bool __static_condition_default_2509; +extern const bool __static_condition_default_1281; +extern const bool __static_condition_default_1160; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_929; +extern const bool __static_condition_default_76; extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_2247; -extern const bool __static_condition_default_755; -extern const bool __static_condition_default_2349; +extern const bool __static_condition_default_1815; +extern const bool __static_condition_default_1327; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_204; +extern const bool __static_condition_default_1313; +extern const bool __static_condition_default_2000; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_489; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_1983; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_1221; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_255; extern const bool __static_condition_default_380; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_1394; -extern const bool __static_condition_default_914; -extern const bool __static_condition_default_53; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_779; extern const bool __static_condition_default_2005; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_2280; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_1291; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_2155; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_753; -extern const bool __static_condition_default_408; -extern const bool __static_condition_default_1281; -extern const bool __static_condition_default_1316; -extern const bool __static_condition_default_670; +extern const bool __static_condition_default_311; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_2291; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_1397; +extern const bool __static_condition_default_1350; +extern const bool __static_condition_default_2224; +extern const bool __static_condition_default_2179; +extern const bool __static_condition_default_187; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_2193; +extern const bool __static_condition_default_1852; +extern const bool __static_condition_default_2519; +extern const bool __static_condition_default_521; +extern const bool __static_condition_default_1322; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_2290; extern const bool __static_condition_default_645; -extern const bool __static_condition_default_1921; -extern const bool __static_condition_default_1303; -extern const bool __static_condition_default_768; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_2292; +extern const bool __static_condition_default_791; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_2225; extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_858; -extern const bool __static_condition_default_347; -extern const bool __static_condition_default_2389; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_957; -extern const bool __static_condition_default_1165; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_187; -extern const bool __static_condition_default_2289; -extern const bool __static_condition_default_1292; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_204; +extern const bool __static_condition_default_1148; +extern const bool __static_condition_default_1252; +extern const bool __static_condition_default_1980; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_2155; +extern const bool __static_condition_default_250; extern const bool __static_condition_default_432; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_1371; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_1979; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_1356; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_1251; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_1930; -extern const bool __static_condition_default_1306; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_1162; -extern const bool __static_condition_default_2192; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_1331; -extern const bool __static_condition_default_543; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_311; -extern const bool __static_condition_default_955; -extern const bool __static_condition_default_1870; -extern const bool __static_condition_default_290; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_632; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_315; +extern const bool __static_condition_default_210; extern const bool __static_condition_default_564; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_702; -extern const bool __static_condition_default_2205; -extern const bool __static_condition_default_1152; -extern const bool __static_condition_default_2204; -extern const bool __static_condition_default_1307; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_1199; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_2143; -extern const bool __static_condition_default_721; +extern const bool __static_condition_default_2170; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_1312; +extern const bool __static_condition_default_1232; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_2006; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_1233; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/df7b6577c6a.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/df7b6577c6a.desugared.c index 82005199..da08b1c6 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/df7b6577c6a.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/df7b6577c6a.desugared.c @@ -7,283 +7,283 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_313; +extern const bool __static_condition_default_382; +extern const bool __static_condition_default_1043; extern const bool __static_condition_default_380; -extern const bool __static_condition_default_613; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_311; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_846; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_650; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_721; +extern const bool __static_condition_default_365; extern const bool __static_condition_default_1101; -extern const bool __static_condition_default_1103; -extern const bool __static_condition_default_702; -extern const bool __static_condition_default_431; -extern const bool __static_condition_default_382; -extern const bool __static_condition_default_461; -extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_408; -extern const bool __static_condition_default_769; +extern const bool __static_condition_default_791; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_963; +extern const bool __static_condition_default_619; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_1098; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_583; extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_198; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_204; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_633; extern const bool __static_condition_default_747; -extern const bool __static_condition_default_875; +extern const bool __static_condition_default_512; +extern const bool __static_condition_default_649; extern const bool __static_condition_default_684; -extern const bool __static_condition_default_1104; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_894; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_299; extern const bool __static_condition_default_801; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_488; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_311; extern const bool __static_condition_default_550; -extern const bool __static_condition_default_417; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_1099; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_878; extern const bool __static_condition_default_701; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_412; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_53; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_187; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_632; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_649; +extern const bool __static_condition_default_813; extern const bool __static_condition_default_955; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_1102; -extern const bool __static_condition_default_1107; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_753; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_894; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_536; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_521; -extern const bool __static_condition_default_543; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_613; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_549; extern const bool __static_condition_default_793; -extern const bool __static_condition_default_568; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_347; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_284; +extern const bool __static_condition_default_559; +extern const bool __static_condition_default_1107; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_488; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_759; +extern const bool __static_condition_default_1104; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_552; extern const bool __static_condition_default_755; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_590; -extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_258; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_471; extern const bool __static_condition_default_645; -extern const bool __static_condition_default_803; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_438; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_355; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_980; extern const bool __static_condition_default_597; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_419; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_646; extern const bool __static_condition_default_842; -extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_386; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_388; -extern const bool __static_condition_default_677; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_914; -extern const bool __static_condition_default_1099; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_887; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_1027; extern const bool __static_condition_default_788; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_1098; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_929; -extern const bool __static_condition_default_670; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_787; +extern const bool __static_condition_default_244; extern const bool __static_condition_default_248; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_583; -extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_357; -extern const bool __static_condition_default_907; +extern const bool __static_condition_default_891; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_489; +extern const bool __static_condition_default_375; extern const bool __static_condition_default_868; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_559; +extern const bool __static_condition_default_685; extern const bool __static_condition_default_553; +extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_702; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_929; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_455; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_521; +extern const bool __static_condition_default_288; extern const bool __static_condition_default_564; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_486; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_84; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_1103; +extern const bool __static_condition_default_761; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_536; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_846; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_670; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_907; extern const bool __static_condition_default_491; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_1100; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_347; +extern const bool __static_condition_default_769; +extern const bool __static_condition_default_386; +extern const bool __static_condition_default_1073; extern const bool __static_condition_default_76; -extern const bool __static_condition_default_963; -extern const bool __static_condition_default_402; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_677; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_544; extern const bool __static_condition_default_217; -extern const bool __static_condition_default_980; extern const bool __static_condition_default_1105; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_393; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_779; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_363; extern const bool __static_condition_default_499; -extern const bool __static_condition_default_891; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_1106; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_229; extern const bool __static_condition_default_290; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_759; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_367; +extern const bool __static_condition_default_1100; extern const bool __static_condition_default_709; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_204; -extern const bool __static_condition_default_315; +extern const bool __static_condition_default_875; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_393; extern const bool __static_condition_default_259; -extern const bool __static_condition_default_419; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_693; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_780; extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_317; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_549; -extern const bool __static_condition_default_858; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_872; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_293; extern const bool __static_condition_default_274; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_848; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_789; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_388; +extern const bool __static_condition_default_337; extern const bool __static_condition_default_819; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_1106; +extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_187; +extern const bool __static_condition_default_734; extern const bool __static_condition_default_956; -extern const bool __static_condition_default_512; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_568; +extern const bool __static_condition_default_636; extern const bool __static_condition_default_539; -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_270; +extern const bool __static_condition_default_1102; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_585; extern const bool __static_condition_default_333; -extern const bool __static_condition_default_646; -extern const bool __static_condition_default_779; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_780; extern const bool __static_condition_default_623; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_957; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_685; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_761; -extern const bool __static_condition_default_789; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_267; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_700; extern const bool __static_condition_default_834; -extern const bool __static_condition_default_638; -extern const bool __static_condition_default_367; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_753; +extern const bool __static_condition_default_858; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.c index d46624f5..7bcf4b40 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.c @@ -7,351 +7,351 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_701; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_1436; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_1164; -extern const bool __static_condition_default_842; -extern const bool __static_condition_default_1165; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_1381; -extern const bool __static_condition_default_623; +extern const bool __static_condition_default_559; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_1515; +extern const bool __static_condition_default_544; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_367; +extern const bool __static_condition_default_779; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_2057; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_583; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_503; extern const bool __static_condition_default_621; -extern const bool __static_condition_default_1453; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_198; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_1365; -extern const bool __static_condition_default_270; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_2056; +extern const bool __static_condition_default_380; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_1572; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_789; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_846; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_2049; +extern const bool __static_condition_default_1485; +extern const bool __static_condition_default_759; +extern const bool __static_condition_default_1388; +extern const bool __static_condition_default_1532; +extern const bool __static_condition_default_1361; +extern const bool __static_condition_default_455; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_1775; extern const bool __static_condition_default_347; -extern const bool __static_condition_default_311; -extern const bool __static_condition_default_393; -extern const bool __static_condition_default_747; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_1564; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_53; -extern const bool __static_condition_default_752; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_1341; +extern const bool __static_condition_default_1498; +extern const bool __static_condition_default_613; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_259; extern const bool __static_condition_default_590; -extern const bool __static_condition_default_677; +extern const bool __static_condition_default_2051; +extern const bool __static_condition_default_619; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_894; extern const bool __static_condition_default_1489; -extern const bool __static_condition_default_388; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_315; -extern const bool __static_condition_default_204; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_419; -extern const bool __static_condition_default_613; -extern const bool __static_condition_default_373; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_1432; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_1808; +extern const bool __static_condition_default_1165; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_488; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_1152; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_1776; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_1043; extern const bool __static_condition_default_486; -extern const bool __static_condition_default_1485; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_907; +extern const bool __static_condition_default_1453; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_1787; +extern const bool __static_condition_default_382; +extern const bool __static_condition_default_1436; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_1458; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_1015; extern const bool __static_condition_default_1531; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_170; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_1349; +extern const bool __static_condition_default_1395; +extern const bool __static_condition_default_76; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_623; extern const bool __static_condition_default_1428; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_1385; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_2058; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_1377; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_1369; +extern const bool __static_condition_default_2041; +extern const bool __static_condition_default_1398; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_365; +extern const bool __static_condition_default_963; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_1381; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_1750; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_550; +extern const bool __static_condition_default_333; +extern const bool __static_condition_default_2050; +extern const bool __static_condition_default_1475; extern const bool __static_condition_default_736; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_638; -extern const bool __static_condition_default_1516; +extern const bool __static_condition_default_1159; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_2039; +extern const bool __static_condition_default_1090; extern const bool __static_condition_default_1789; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_1944; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_386; -extern const bool __static_condition_default_1749; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_76; -extern const bool __static_condition_default_380; -extern const bool __static_condition_default_412; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_241; +extern const bool __static_condition_default_875; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_204; extern const bool __static_condition_default_568; -extern const bool __static_condition_default_980; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_1785; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_1420; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_395; extern const bool __static_condition_default_991; -extern const bool __static_condition_default_1377; -extern const bool __static_condition_default_779; -extern const bool __static_condition_default_858; -extern const bool __static_condition_default_1498; -extern const bool __static_condition_default_2039; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_1395; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_597; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_700; extern const bool __static_condition_default_536; -extern const bool __static_condition_default_1459; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_1345; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_1152; -extern const bool __static_condition_default_274; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_290; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_791; +extern const bool __static_condition_default_1405; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_1560; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_1402; +extern const bool __static_condition_default_386; +extern const bool __static_condition_default_1576; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_1568; +extern const bool __static_condition_default_702; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_1164; +extern const bool __static_condition_default_53; extern const bool __static_condition_default_634; -extern const bool __static_condition_default_1754; -extern const bool __static_condition_default_2041; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_632; extern const bool __static_condition_default_852; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_1791; -extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_1816; -extern const bool __static_condition_default_1515; -extern const bool __static_condition_default_645; -extern const bool __static_condition_default_755; -extern const bool __static_condition_default_846; -extern const bool __static_condition_default_2048; -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_1564; extern const bool __static_condition_default_438; -extern const bool __static_condition_default_789; -extern const bool __static_condition_default_761; -extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_583; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_2057; -extern const bool __static_condition_default_1357; -extern const bool __static_condition_default_258; +extern const bool __static_condition_default_489; extern const bool __static_condition_default_578; -extern const bool __static_condition_default_1572; -extern const bool __static_condition_default_333; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_187; -extern const bool __static_condition_default_559; -extern const bool __static_condition_default_431; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_670; -extern const bool __static_condition_default_2046; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_781; +extern const bool __static_condition_default_769; +extern const bool __static_condition_default_1791; +extern const bool __static_condition_default_1816; extern const bool __static_condition_default_1353; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_1365; +extern const bool __static_condition_default_1944; +extern const bool __static_condition_default_1749; +extern const bool __static_condition_default_2045; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_1357; +extern const bool __static_condition_default_834; +extern const bool __static_condition_default_1556; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_84; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_807; extern const bool __static_condition_default_182; -extern const bool __static_condition_default_521; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_956; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_367; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_1388; -extern const bool __static_condition_default_2049; -extern const bool __static_condition_default_549; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_747; extern const bool __static_condition_default_296; -extern const bool __static_condition_default_408; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_702; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_1773; -extern const bool __static_condition_default_1775; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_721; +extern const bool __static_condition_default_760; extern const bool __static_condition_default_1814; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_1341; -extern const bool __static_condition_default_1560; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_1315; -extern const bool __static_condition_default_543; -extern const bool __static_condition_default_2047; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_1159; -extern const bool __static_condition_default_787; -extern const bool __static_condition_default_1750; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_248; -extern const bool __static_condition_default_1532; -extern const bool __static_condition_default_1568; -extern const bool __static_condition_default_284; +extern const bool __static_condition_default_549; +extern const bool __static_condition_default_1424; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_2040; +extern const bool __static_condition_default_187; +extern const bool __static_condition_default_1373; +extern const bool __static_condition_default_286; extern const bool __static_condition_default_668; -extern const bool __static_condition_default_1405; -extern const bool __static_condition_default_1785; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_780; -extern const bool __static_condition_default_1409; -extern const bool __static_condition_default_957; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_1361; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_872; -extern const bool __static_condition_default_887; +extern const bool __static_condition_default_907; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_608; extern const bool __static_condition_default_929; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_1420; -extern const bool __static_condition_default_1556; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_402; -extern const bool __static_condition_default_253; extern const bool __static_condition_default_1774; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_1402; -extern const bool __static_condition_default_1373; -extern const bool __static_condition_default_1810; -extern const bool __static_condition_default_1787; -extern const bool __static_condition_default_963; -extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_848; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_1552; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_723; extern const bool __static_condition_default_250; -extern const bool __static_condition_default_2056; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_914; -extern const bool __static_condition_default_564; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_217; -extern const bool __static_condition_default_685; +extern const bool __static_condition_default_670; +extern const bool __static_condition_default_388; extern const bool __static_condition_default_793; -extern const bool __static_condition_default_955; -extern const bool __static_condition_default_1349; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_2051; -extern const bool __static_condition_default_647; +extern const bool __static_condition_default_311; +extern const bool __static_condition_default_2046; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_1773; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_1315; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_699; extern const bool __static_condition_default_1753; -extern const bool __static_condition_default_244; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_842; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_677; +extern const bool __static_condition_default_1516; +extern const bool __static_condition_default_1754; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_1391; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_2047; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_721; extern const bool __static_condition_default_944; -extern const bool __static_condition_default_313; -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_1475; -extern const bool __static_condition_default_1398; -extern const bool __static_condition_default_1432; -extern const bool __static_condition_default_803; -extern const bool __static_condition_default_875; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_267; extern const bool __static_condition_default_756; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_290; -extern const bool __static_condition_default_489; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_1409; +extern const bool __static_condition_default_521; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_761; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_914; extern const bool __static_condition_default_512; -extern const bool __static_condition_default_2058; -extern const bool __static_condition_default_693; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_357; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_1576; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_488; -extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_317; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_1808; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_382; -extern const bool __static_condition_default_1776; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_646; -extern const bool __static_condition_default_2050; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_1424; -extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_684; extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_1552; -extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_1459; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_337; +extern const bool __static_condition_default_734; extern const bool __static_condition_default_891; -extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_2045; extern const bool __static_condition_default_753; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_1369; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_2040; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_461; -extern const bool __static_condition_default_1385; -extern const bool __static_condition_default_1458; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_1391; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_769; -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_894; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_709; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_375; +extern const bool __static_condition_default_1345; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_419; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_2048; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_475; extern const bool __static_condition_default_1416; +extern const bool __static_condition_default_955; +extern const bool __static_condition_default_1810; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_636; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_645; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -1680,12 +1680,12 @@ struct ____anonymous_tag_1166_1167 { unsigned int ____w_termsig_1168 : 7;// L72 unsigned int ____w_coredump_1169 : 1;// L73 unsigned int ____w_retcode_1170 : 8;// L74 -unsigned int : 16;// L75 +unsigned int __anon_id_0_1171 : 16;// L75 }; struct ____anonymous_tag_1172_1173 { unsigned int ____w_stopval_1174 : 8;// L87 unsigned int ____w_stopsig_1175 : 8;// L88 -unsigned int : 16;// L89 +unsigned int __anon_id_1_1176 : 16;// L89 }; union __wait_1177 { int __w_status_1178;// L68 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c index 167ae1f9..b7f15725 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c @@ -7,74 +7,74 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_604; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_423; -extern const bool __static_condition_default_349; -extern const bool __static_condition_default_67; -extern const bool __static_condition_default_420; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_361; +extern const bool __static_condition_default_341; extern const bool __static_condition_default_977; -extern const bool __static_condition_default_276; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_302; -extern const bool __static_condition_default_378; -extern const bool __static_condition_default_352; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_594; -extern const bool __static_condition_default_273; -extern const bool __static_condition_default_252; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_305; -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_215; -extern const bool __static_condition_default_971; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_629; extern const bool __static_condition_default_976; -extern const bool __static_condition_default_325; -extern const bool __static_condition_default_856; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_279; -extern const bool __static_condition_default_979; +extern const bool __static_condition_default_352; +extern const bool __static_condition_default_627; extern const bool __static_condition_default_267; -extern const bool __static_condition_default_299; +extern const bool __static_condition_default_623; extern const bool __static_condition_default_379; -extern const bool __static_condition_default_973; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_595; -extern const bool __static_condition_default_341; extern const bool __static_condition_default_249; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_629; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_579; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_975; +extern const bool __static_condition_default_308; +extern const bool __static_condition_default_361; extern const bool __static_condition_default_736; -extern const bool __static_condition_default_60; +extern const bool __static_condition_default_325; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_279; extern const bool __static_condition_default_414; -extern const bool __static_condition_default_581; -extern const bool __static_condition_default_261; -extern const bool __static_condition_default_234; +extern const bool __static_condition_default_849; extern const bool __static_condition_default_394; -extern const bool __static_condition_default_970; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_234; +extern const bool __static_condition_default_67; +extern const bool __static_condition_default_264; extern const bool __static_condition_default_240; -extern const bool __static_condition_default_429; -extern const bool __static_condition_default_974; -extern const bool __static_condition_default_426; -extern const bool __static_condition_default_975; +extern const bool __static_condition_default_60; +extern const bool __static_condition_default_595; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_252; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_261; +extern const bool __static_condition_default_237; extern const bool __static_condition_default_243; +extern const bool __static_condition_default_299; extern const bool __static_condition_default_296; -extern const bool __static_condition_default_308; -extern const bool __static_condition_default_579; extern const bool __static_condition_default_395; -extern const bool __static_condition_default_627; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_349; +extern const bool __static_condition_default_423; +extern const bool __static_condition_default_594; +extern const bool __static_condition_default_970; +extern const bool __static_condition_default_971; +extern const bool __static_condition_default_302; +extern const bool __static_condition_default_581; extern const bool __static_condition_default_969; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_849; -extern const bool __static_condition_default_237; -extern const bool __static_condition_default_270; extern const bool __static_condition_default_285; -extern const bool __static_condition_default_602; +extern const bool __static_condition_default_273; +extern const bool __static_condition_default_973; +extern const bool __static_condition_default_974; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_378; +extern const bool __static_condition_default_426; +extern const bool __static_condition_default_429; +extern const bool __static_condition_default_604; +extern const bool __static_condition_default_420; +extern const bool __static_condition_default_305; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_215; +extern const bool __static_condition_default_276; +extern const bool __static_condition_default_856; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -712,12 +712,12 @@ struct ____anonymous_tag_70_71 { unsigned int ____w_termsig_72 : 7;// L72 unsigned int ____w_coredump_73 : 1;// L73 unsigned int ____w_retcode_74 : 8;// L74 -unsigned int : 16;// L75 +unsigned int __anon_id_0_75 : 16;// L75 }; struct ____anonymous_tag_76_77 { unsigned int ____w_stopval_78 : 8;// L87 unsigned int ____w_stopsig_79 : 8;// L88 -unsigned int : 16;// L89 +unsigned int __anon_id_1_80 : 16;// L89 }; union __wait_81 { int __w_status_82;// L68 @@ -1679,10 +1679,10 @@ goto all_done_0; } } if (__static_condition_default_970) { - __buf_964 = __malloc_486 ( __bufsize_965 ) ; // L26 + __buf_964 = malloc ( __bufsize_965 ) ; // L26 } if (__static_condition_default_971) { - __buf_964 = __malloc_487 ( __bufsize_965 ) ; // L26 + __buf_964 = malloc ( __bufsize_965 ) ; // L26 } if (__static_condition_default_972) { __static_type_error("type error") ; // L26 @@ -1699,7 +1699,7 @@ if ( __buf_964 )// L30 if (__static_condition_default_973) { - __free_496 ( __buf_964 ) ; // L31 +free ( __buf_964 ) ; // L31 } if (__static_condition_default_974) { __static_type_error("type error") ; // L31 @@ -1747,10 +1747,10 @@ goto all_done_1; } } if (__static_condition_default_976) { - __buf_964 = __malloc_486 ( __bufsize_965 ) ; // L26 + __buf_964 = malloc ( __bufsize_965 ) ; // L26 } if (__static_condition_default_977) { - __buf_964 = __malloc_487 ( __bufsize_965 ) ; // L26 + __buf_964 = malloc ( __bufsize_965 ) ; // L26 } if (__static_condition_default_978) { __static_type_error("type error") ; // L26 diff --git a/fonda/cpp_testsuite/varBugs/LINUX/0988c4c7fb5.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/0988c4c7fb5.desugared.c index 4a0aef02..4dfb3042 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/0988c4c7fb5.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/0988c4c7fb5.desugared.c @@ -7,19 +7,19 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_28; -extern const bool __static_condition_default_23; +extern const bool __static_condition_default_26; +extern const bool __static_condition_default_21; extern const bool __static_condition_default_27; extern const bool __static_condition_default_20; +extern const bool __static_condition_default_32; +extern const bool __static_condition_default_23; +extern const bool __static_condition_default_16; extern const bool __static_condition_default_24; extern const bool __static_condition_default_29; +extern const bool __static_condition_default_17; +extern const bool __static_condition_default_28; extern const bool __static_condition_default_22; -extern const bool __static_condition_default_16; extern const bool __static_condition_default_31; -extern const bool __static_condition_default_26; -extern const bool __static_condition_default_17; -extern const bool __static_condition_default_21; -extern const bool __static_condition_default_32; void __static_initializer_default() { __static_renaming("____assert_fail_4", "__assert_fail"); __static_renaming("____assert_perror_fail_9", "__assert_perror_fail"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.desugared.c index 317f4c66..90081d09 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.desugared.c @@ -7,15 +7,15 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_33; +extern const bool __static_condition_default_10; +extern const bool __static_condition_default_32; extern const bool __static_condition_default_26; +extern const bool __static_condition_default_30; extern const bool __static_condition_default_38; -extern const bool __static_condition_default_32; -extern const bool __static_condition_default_39; -extern const bool __static_condition_default_31; extern const bool __static_condition_default_29; -extern const bool __static_condition_default_10; -extern const bool __static_condition_default_30; +extern const bool __static_condition_default_31; +extern const bool __static_condition_default_33; +extern const bool __static_condition_default_39; void __static_initializer_default() { __static_renaming("__malloc_1", "malloc"); __static_renaming("__free_3", "free"); @@ -136,7 +136,7 @@ if (__static_condition_default_10) { -int * (__kobj_18)= ( int * ) __malloc_1 (sizeof(int));// L47 +int * (__kobj_18)= ( int * ) malloc (sizeof(int));// L47 if ( ! __kobj_18 )// L48 { @@ -152,7 +152,7 @@ if ( __retval_19 )// L52 - __free_3 ( __kobj_18 ) ; // L54 +free ( __kobj_18 ) ; // L54 __kobj_18 = ( void * ) 0 ; // L8:L55 } } @@ -196,7 +196,7 @@ if (__static_condition_default_26) { - __free_3 ( __name_24 ) ; // L74 +free ( __name_24 ) ; // L74 } } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.c b/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.c index b93e08bb..537da78d 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.c @@ -15,10 +15,10 @@ #endif #ifdef CONFIG_SLAB -#define KMALLOC_SHIFT_HIGH((MAX_ORDER + PAGE_SHIFT - 1) <= 25 ? \ +#define KMALLOC_SHIFT_HIGH ((MAX_ORDER + PAGE_SHIFT - 1) <= 25 ? \ (MAX_ORDER + PAGE_SHIFT - 1) : 25) #else -#define KMALLOC_SHIFT_HIGH(PAGE_SHIFT + 1) +#define KMALLOC_SHIFT_HIGH (PAGE_SHIFT + 1) #endif diff --git a/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.desugared.c index e69de29b..aff31c28 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.desugared.c @@ -0,0 +1,145 @@ +#include + +extern void __static_parse_error(char *msg); +extern void __static_type_error(char *msg); +extern void __static_renaming(char *renaming, char *original); +extern void __static_condition_renaming(char *expression, char *renaming); + +void __static_initializer_default(); + +extern const bool __static_condition_default_4; +extern const bool __static_condition_default_13; +extern const bool __static_condition_default_7; +extern const bool __static_condition_default_2; +extern const bool __static_condition_default_11; +extern const bool __static_condition_default_1; +extern const bool __static_condition_default_14; +extern const bool __static_condition_default_0; +void __static_initializer_default() { +__static_renaming("__i_3", "i"); +__static_renaming("__init_node_lock_keys_5", "init_node_lock_keys"); +__static_renaming("__init_node_lock_keys_6", "init_node_lock_keys"); +__static_renaming("__init_lock_keys_8", "init_lock_keys"); +__static_renaming("__init_lock_keys_9", "init_lock_keys"); +__static_renaming("__kmem_cache_init_late_10", "kmem_cache_init_late"); +__static_renaming("__main_12", "main"); + +__static_condition_renaming("__static_condition_default_0", "(defined CONFIG_FORCE_MAX_ZONEORDER) && (defined CONFIG_SLAB) && !(defined CONFIG_SLOB)"); +__static_condition_renaming("__static_condition_default_1", "!(defined CONFIG_SLAB) && !(defined CONFIG_SLOB)"); +__static_condition_renaming("__static_condition_default_2", "!(defined CONFIG_FORCE_MAX_ZONEORDER) && (defined CONFIG_SLAB) && !(defined CONFIG_SLOB)"); +__static_condition_renaming("__static_condition_default_4", "(defined CONFIG_LOCKDEP)"); +__static_condition_renaming("__static_condition_default_7", "!(defined CONFIG_LOCKDEP)"); +__static_condition_renaming("__static_condition_default_11", "!(defined CONFIG_LOCKDEP)"); +__static_condition_renaming("__static_condition_default_13", "!(defined CONFIG_SLOB)"); +__static_condition_renaming("__static_condition_default_14", "(defined CONFIG_SLOB)"); + +}; + +static void (__init_node_lock_keys_5) () { + +if (__static_condition_default_4) { + +{ +{ + + + +int __i_3;// L32 + +__static_type_error("no valid type in iterationstatement (3)"); +} +} + + +} +} +int (__init_node_lock_keys_6) () { + +if (__static_condition_default_7) { + +{ +{ + + + +} +} + + +} +} +void (__init_lock_keys_8) (void ) { + +{ +if (__static_condition_default_4) { + +{ +{ + + + + __init_node_lock_keys_5 ( ) ; // L47 +} +} + + +} + +}} +void (__init_lock_keys_9) (void ) { + +{ +if (__static_condition_default_7) { + +{ +{ + + + +} +} + + +} + +}} +void (__kmem_cache_init_late_10) (void ) { + +{ +{ + + + +if (__static_condition_default_4) { + __init_lock_keys_8 ( ) ; // L61 +} +if (__static_condition_default_11) { + __init_lock_keys_9 ( ) ; // L61 +} +} +} + + +} +int (__main_12) (void ) { + +{ +{ + + + +if (__static_condition_default_13) { + __kmem_cache_init_late_10 ( ) ; // L67 +} +if (__static_condition_default_14) { +return 0 ;// L69 +} +if (__static_condition_default_13) { +return 0 ;// L69 +} +} +} + + +} + diff --git a/fonda/cpp_testsuite/varBugs/LINUX/1c17e4d4437.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/1c17e4d4437.desugared.c index b07c5ea8..499ef6c6 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/1c17e4d4437.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/1c17e4d4437.desugared.c @@ -7,14 +7,14 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); +extern const bool __static_condition_default_21; extern const bool __static_condition_default_23; extern const bool __static_condition_default_18; -extern const bool __static_condition_default_24; -extern const bool __static_condition_default_11; extern const bool __static_condition_default_20; extern const bool __static_condition_default_19; +extern const bool __static_condition_default_24; extern const bool __static_condition_default_12; -extern const bool __static_condition_default_21; +extern const bool __static_condition_default_11; void __static_initializer_default() { __static_renaming("__printf_1", "printf"); __static_renaming("__sprintf_4", "sprintf"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/1f758a4341a.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/1f758a4341a.desugared.c index 4515aa6f..6f6749d4 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/1f758a4341a.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/1f758a4341a.desugared.c @@ -7,11 +7,11 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); +extern const bool __static_condition_default_3; +extern const bool __static_condition_default_4; +extern const bool __static_condition_default_11; extern const bool __static_condition_default_7; extern const bool __static_condition_default_12; -extern const bool __static_condition_default_11; -extern const bool __static_condition_default_4; -extern const bool __static_condition_default_3; void __static_initializer_default() { __static_renaming("__some_int_0", "some_int"); __static_renaming("____alloc_pages_nodemask_2", "__alloc_pages_nodemask"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/208d89843b7.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/208d89843b7.desugared.c index d0032523..3d00d805 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/208d89843b7.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/208d89843b7.desugared.c @@ -7,72 +7,72 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_308; +extern const bool __static_condition_default_276; +extern const bool __static_condition_default_808; +extern const bool __static_condition_default_60; +extern const bool __static_condition_default_249; extern const bool __static_condition_default_432; -extern const bool __static_condition_default_237; -extern const bool __static_condition_default_394; -extern const bool __static_condition_default_819; +extern const bool __static_condition_default_417; extern const bool __static_condition_default_581; -extern const bool __static_condition_default_813; +extern const bool __static_condition_default_67; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_414; +extern const bool __static_condition_default_378; +extern const bool __static_condition_default_285; extern const bool __static_condition_default_426; -extern const bool __static_condition_default_420; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_594; -extern const bool __static_condition_default_423; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_240; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_394; +extern const bool __static_condition_default_379; extern const bool __static_condition_default_817; -extern const bool __static_condition_default_818; +extern const bool __static_condition_default_802; +extern const bool __static_condition_default_325; +extern const bool __static_condition_default_801; extern const bool __static_condition_default_282; -extern const bool __static_condition_default_234; -extern const bool __static_condition_default_252; -extern const bool __static_condition_default_414; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_60; -extern const bool __static_condition_default_808; +extern const bool __static_condition_default_579; +extern const bool __static_condition_default_361; +extern const bool __static_condition_default_237; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_261; extern const bool __static_condition_default_246; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_379; -extern const bool __static_condition_default_67; -extern const bool __static_condition_default_215; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_423; +extern const bool __static_condition_default_803; extern const bool __static_condition_default_293; -extern const bool __static_condition_default_579; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_629; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_273; -extern const bool __static_condition_default_325; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_429; -extern const bool __static_condition_default_285; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_215; extern const bool __static_condition_default_812; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_261; -extern const bool __static_condition_default_378; +extern const bool __static_condition_default_299; extern const bool __static_condition_default_279; +extern const bool __static_condition_default_595; +extern const bool __static_condition_default_308; +extern const bool __static_condition_default_234; +extern const bool __static_condition_default_243; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_420; extern const bool __static_condition_default_302; -extern const bool __static_condition_default_341; +extern const bool __static_condition_default_429; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_818; +extern const bool __static_condition_default_240; extern const bool __static_condition_default_305; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_361; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_243; -extern const bool __static_condition_default_802; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_276; -extern const bool __static_condition_default_801; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_252; +extern const bool __static_condition_default_629; +extern const bool __static_condition_default_273; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_349; +extern const bool __static_condition_default_352; extern const bool __static_condition_default_604; +extern const bool __static_condition_default_255; extern const bool __static_condition_default_627; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_349; +extern const bool __static_condition_default_594; extern const bool __static_condition_default_823; -extern const bool __static_condition_default_352; -extern const bool __static_condition_default_803; -extern const bool __static_condition_default_595; +extern const bool __static_condition_default_288; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -610,12 +610,12 @@ struct ____anonymous_tag_70_71 { unsigned int ____w_termsig_72 : 7;// L72 unsigned int ____w_coredump_73 : 1;// L73 unsigned int ____w_retcode_74 : 8;// L74 -unsigned int : 16;// L75 +unsigned int __anon_id_0_75 : 16;// L75 }; struct ____anonymous_tag_76_77 { unsigned int ____w_stopval_78 : 8;// L87 unsigned int ____w_stopsig_79 : 8;// L88 -unsigned int : 16;// L89 +unsigned int __anon_id_1_80 : 16;// L89 }; union __wait_81 { int __w_status_82;// L68 diff --git a/fonda/cpp_testsuite/varBugs/LINUX/218ad12f42e.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/218ad12f42e.desugared.c index 71b499b1..2c05eab2 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/218ad12f42e.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/218ad12f42e.desugared.c @@ -7,8 +7,8 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_7; extern const bool __static_condition_default_8; +extern const bool __static_condition_default_7; extern const bool __static_condition_default_11; extern const bool __static_condition_default_10; void __static_initializer_default() { @@ -39,16 +39,16 @@ int (__inet_ehash_locks_alloc_6) () { if (__static_condition_default_7) { - __x_4 = __malloc_1 ( __size_5 ) ; // L21 + __x_4 = malloc ( __size_5 ) ; // L21 } if (__static_condition_default_8) { if ( __size_5 > 12 )// L17 { - __x_4 = __malloc_1 ( __size_5 ) ; // L18 + __x_4 = malloc ( __size_5 ) ; // L18 } else { - __x_4 = __malloc_1 ( __size_5 ) ; // L21 + __x_4 = malloc ( __size_5 ) ; // L21 } } if ( ! __x_4 )// L22 @@ -77,7 +77,7 @@ if (__static_condition_default_10) { - __free_3 ( __x_4 ) ; // L35 +free ( __x_4 ) ; // L35 __x_4 = ( void * ) 0 ; // L3:L37 } } @@ -91,7 +91,7 @@ if (__static_condition_default_11) { if ( __size_5 > 12 )// L31 { - __free_3 ( __x_4 ) ; // L32 +free ( __x_4 ) ; // L32 } else { diff --git a/fonda/cpp_testsuite/varBugs/LINUX/221ac329e93.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/221ac329e93.desugared.c index 813e762f..a372dd91 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/221ac329e93.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/221ac329e93.desugared.c @@ -7,774 +7,774 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_3077; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_2135; -extern const bool __static_condition_default_1722; -extern const bool __static_condition_default_4005; -extern const bool __static_condition_default_2561; -extern const bool __static_condition_default_3130; -extern const bool __static_condition_default_1297; -extern const bool __static_condition_default_1489; -extern const bool __static_condition_default_2047; -extern const bool __static_condition_default_2443; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_2467; -extern const bool __static_condition_default_165; -extern const bool __static_condition_default_1464; -extern const bool __static_condition_default_2914; -extern const bool __static_condition_default_3233; -extern const bool __static_condition_default_3470; -extern const bool __static_condition_default_3987; -extern const bool __static_condition_default_2809; -extern const bool __static_condition_default_1656; -extern const bool __static_condition_default_131; -extern const bool __static_condition_default_638; +extern const bool __static_condition_default_3355; +extern const bool __static_condition_default_158; +extern const bool __static_condition_default_1027; extern const bool __static_condition_default_1975; -extern const bool __static_condition_default_2565; -extern const bool __static_condition_default_3072; -extern const bool __static_condition_default_3100; -extern const bool __static_condition_default_2594; -extern const bool __static_condition_default_2494; -extern const bool __static_condition_default_3975; -extern const bool __static_condition_default_893; -extern const bool __static_condition_default_3450; -extern const bool __static_condition_default_1213; -extern const bool __static_condition_default_2842; -extern const bool __static_condition_default_1208; -extern const bool __static_condition_default_2093; -extern const bool __static_condition_default_3345; -extern const bool __static_condition_default_1983; -extern const bool __static_condition_default_1800; -extern const bool __static_condition_default_2896; -extern const bool __static_condition_default_3048; -extern const bool __static_condition_default_1274; -extern const bool __static_condition_default_3541; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_3041; +extern const bool __static_condition_default_3086; +extern const bool __static_condition_default_1451; +extern const bool __static_condition_default_1704; +extern const bool __static_condition_default_609; +extern const bool __static_condition_default_2111; +extern const bool __static_condition_default_148; +extern const bool __static_condition_default_3690; +extern const bool __static_condition_default_733; +extern const bool __static_condition_default_2109; +extern const bool __static_condition_default_3449; extern const bool __static_condition_default_1308; -extern const bool __static_condition_default_943; -extern const bool __static_condition_default_654; -extern const bool __static_condition_default_656; -extern const bool __static_condition_default_1747; -extern const bool __static_condition_default_1713; -extern const bool __static_condition_default_126; -extern const bool __static_condition_default_2077; -extern const bool __static_condition_default_1531; -extern const bool __static_condition_default_2078; -extern const bool __static_condition_default_2071; -extern const bool __static_condition_default_2771; -extern const bool __static_condition_default_3347; -extern const bool __static_condition_default_1829; -extern const bool __static_condition_default_2070; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_1907; -extern const bool __static_condition_default_1787; -extern const bool __static_condition_default_2602; -extern const bool __static_condition_default_1775; extern const bool __static_condition_default_3123; -extern const bool __static_condition_default_1665; -extern const bool __static_condition_default_3017; -extern const bool __static_condition_default_2397; -extern const bool __static_condition_default_4004; -extern const bool __static_condition_default_2751; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_1261; -extern const bool __static_condition_default_3341; -extern const bool __static_condition_default_147; -extern const bool __static_condition_default_2314; -extern const bool __static_condition_default_3107; -extern const bool __static_condition_default_1023; -extern const bool __static_condition_default_3364; -extern const bool __static_condition_default_1584; -extern const bool __static_condition_default_3108; extern const bool __static_condition_default_1866; -extern const bool __static_condition_default_118; -extern const bool __static_condition_default_2890; -extern const bool __static_condition_default_2937; -extern const bool __static_condition_default_3005; -extern const bool __static_condition_default_3648; -extern const bool __static_condition_default_3997; -extern const bool __static_condition_default_1558; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_1704; -extern const bool __static_condition_default_2713; -extern const bool __static_condition_default_2837; -extern const bool __static_condition_default_2925; +extern const bool __static_condition_default_2593; +extern const bool __static_condition_default_737; +extern const bool __static_condition_default_1557; +extern const bool __static_condition_default_3980; +extern const bool __static_condition_default_843; +extern const bool __static_condition_default_2673; +extern const bool __static_condition_default_3362; +extern const bool __static_condition_default_4002; +extern const bool __static_condition_default_157; +extern const bool __static_condition_default_2505; extern const bool __static_condition_default_3998; -extern const bool __static_condition_default_108; -extern const bool __static_condition_default_161; -extern const bool __static_condition_default_2238; -extern const bool __static_condition_default_892; -extern const bool __static_condition_default_3368; -extern const bool __static_condition_default_1319; -extern const bool __static_condition_default_2749; -extern const bool __static_condition_default_1276; -extern const bool __static_condition_default_2765; -extern const bool __static_condition_default_3101; -extern const bool __static_condition_default_1812; -extern const bool __static_condition_default_3999; -extern const bool __static_condition_default_1534; -extern const bool __static_condition_default_857; -extern const bool __static_condition_default_117; -extern const bool __static_condition_default_964; -extern const bool __static_condition_default_1514; -extern const bool __static_condition_default_1807; -extern const bool __static_condition_default_3405; -extern const bool __static_condition_default_162; -extern const bool __static_condition_default_2566; -extern const bool __static_condition_default_845; -extern const bool __static_condition_default_1422; -extern const bool __static_condition_default_2361; -extern const bool __static_condition_default_1772; -extern const bool __static_condition_default_2709; -extern const bool __static_condition_default_1556; -extern const bool __static_condition_default_1903; -extern const bool __static_condition_default_2687; -extern const bool __static_condition_default_1519; -extern const bool __static_condition_default_2029; -extern const bool __static_condition_default_1728; -extern const bool __static_condition_default_2331; -extern const bool __static_condition_default_3353; -extern const bool __static_condition_default_1385; -extern const bool __static_condition_default_1735; -extern const bool __static_condition_default_2063; -extern const bool __static_condition_default_3557; -extern const bool __static_condition_default_3013; +extern const bool __static_condition_default_106; extern const bool __static_condition_default_1669; -extern const bool __static_condition_default_2941; -extern const bool __static_condition_default_2979; -extern const bool __static_condition_default_688; -extern const bool __static_condition_default_1377; -extern const bool __static_condition_default_2521; -extern const bool __static_condition_default_1012; -extern const bool __static_condition_default_227; -extern const bool __static_condition_default_1196; -extern const bool __static_condition_default_63; -extern const bool __static_condition_default_51; -extern const bool __static_condition_default_71; -extern const bool __static_condition_default_2696; -extern const bool __static_condition_default_1541; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_1570; -extern const bool __static_condition_default_3007; -extern const bool __static_condition_default_2323; -extern const bool __static_condition_default_2553; -extern const bool __static_condition_default_2777; -extern const bool __static_condition_default_3030; -extern const bool __static_condition_default_911; +extern const bool __static_condition_default_882; +extern const bool __static_condition_default_4009; +extern const bool __static_condition_default_1561; +extern const bool __static_condition_default_1628; +extern const bool __static_condition_default_2077; +extern const bool __static_condition_default_3107; +extern const bool __static_condition_default_2994; +extern const bool __static_condition_default_3537; +extern const bool __static_condition_default_1283; +extern const bool __static_condition_default_2452; +extern const bool __static_condition_default_3207; extern const bool __static_condition_default_686; -extern const bool __static_condition_default_841; -extern const bool __static_condition_default_2784; -extern const bool __static_condition_default_3688; -extern const bool __static_condition_default_1643; -extern const bool __static_condition_default_3122; -extern const bool __static_condition_default_2143; -extern const bool __static_condition_default_2365; -extern const bool __static_condition_default_2857; -extern const bool __static_condition_default_2801; -extern const bool __static_condition_default_1306; -extern const bool __static_condition_default_3086; -extern const bool __static_condition_default_2519; -extern const bool __static_condition_default_1453; -extern const bool __static_condition_default_2413; -extern const bool __static_condition_default_1557; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_209; +extern const bool __static_condition_default_2302; +extern const bool __static_condition_default_2669; +extern const bool __static_condition_default_3963; +extern const bool __static_condition_default_892; +extern const bool __static_condition_default_2323; +extern const bool __static_condition_default_2809; +extern const bool __static_condition_default_4000; +extern const bool __static_condition_default_880; +extern const bool __static_condition_default_3662; +extern const bool __static_condition_default_923; +extern const bool __static_condition_default_1735; +extern const bool __static_condition_default_2326; +extern const bool __static_condition_default_1670; +extern const bool __static_condition_default_636; +extern const bool __static_condition_default_3987; +extern const bool __static_condition_default_2314; +extern const bool __static_condition_default_3996; +extern const bool __static_condition_default_3549; +extern const bool __static_condition_default_2623; +extern const bool __static_condition_default_884; +extern const bool __static_condition_default_1667; +extern const bool __static_condition_default_2837; +extern const bool __static_condition_default_1811; +extern const bool __static_condition_default_1854; +extern const bool __static_condition_default_680; +extern const bool __static_condition_default_2311; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_2544; +extern const bool __static_condition_default_2682; +extern const bool __static_condition_default_2254; +extern const bool __static_condition_default_3059; +extern const bool __static_condition_default_1285; +extern const bool __static_condition_default_2628; +extern const bool __static_condition_default_2829; +extern const bool __static_condition_default_2573; extern const bool __static_condition_default_1697; -extern const bool __static_condition_default_2750; -extern const bool __static_condition_default_931; -extern const bool __static_condition_default_2843; -extern const bool __static_condition_default_2697; -extern const bool __static_condition_default_3669; +extern const bool __static_condition_default_2609; +extern const bool __static_condition_default_1439; +extern const bool __static_condition_default_1572; +extern const bool __static_condition_default_125; +extern const bool __static_condition_default_1773; +extern const bool __static_condition_default_2979; +extern const bool __static_condition_default_1856; extern const bool __static_condition_default_2025; -extern const bool __static_condition_default_1671; -extern const bool __static_condition_default_1199; -extern const bool __static_condition_default_2309; -extern const bool __static_condition_default_2544; -extern const bool __static_condition_default_3545; -extern const bool __static_condition_default_1227; -extern const bool __static_condition_default_2786; -extern const bool __static_condition_default_1884; -extern const bool __static_condition_default_733; -extern const bool __static_condition_default_2592; -extern const bool __static_condition_default_1856; -extern const bool __static_condition_default_1331; -extern const bool __static_condition_default_2867; -extern const bool __static_condition_default_1683; -extern const bool __static_condition_default_2908; -extern const bool __static_condition_default_2588; -extern const bool __static_condition_default_2349; -extern const bool __static_condition_default_2609; -extern const bool __static_condition_default_1509; -extern const bool __static_condition_default_1958; -extern const bool __static_condition_default_1839; -extern const bool __static_condition_default_115; -extern const bool __static_condition_default_2462; -extern const bool __static_condition_default_1375; -extern const bool __static_condition_default_2708; -extern const bool __static_condition_default_1230; -extern const bool __static_condition_default_2805; -extern const bool __static_condition_default_3537; -extern const bool __static_condition_default_2686; -extern const bool __static_condition_default_1781; -extern const bool __static_condition_default_2092; -extern const bool __static_condition_default_2720; -extern const bool __static_condition_default_3979; -extern const bool __static_condition_default_2482; -extern const bool __static_condition_default_1549; -extern const bool __static_condition_default_4000; -extern const bool __static_condition_default_1393; -extern const bool __static_condition_default_2273; -extern const bool __static_condition_default_2306; -extern const bool __static_condition_default_2633; -extern const bool __static_condition_default_1654; -extern const bool __static_condition_default_2603; -extern const bool __static_condition_default_3996; -extern const bool __static_condition_default_1703; -extern const bool __static_condition_default_1776; -extern const bool __static_condition_default_2851; -extern const bool __static_condition_default_3995; -extern const bool __static_condition_default_57; +extern const bool __static_condition_default_2727; +extern const bool __static_condition_default_749; +extern const bool __static_condition_default_2594; +extern const bool __static_condition_default_1493; +extern const bool __static_condition_default_2561; extern const bool __static_condition_default_1267; -extern const bool __static_condition_default_1561; -extern const bool __static_condition_default_2571; -extern const bool __static_condition_default_1641; -extern const bool __static_condition_default_1977; -extern const bool __static_condition_default_1756; -extern const bool __static_condition_default_2922; -extern const bool __static_condition_default_959; -extern const bool __static_condition_default_1895; -extern const bool __static_condition_default_2635; -extern const bool __static_condition_default_1914; -extern const bool __static_condition_default_2819; -extern const bool __static_condition_default_2988; +extern const bool __static_condition_default_1249; +extern const bool __static_condition_default_3339; +extern const bool __static_condition_default_130; +extern const bool __static_condition_default_2135; extern const bool __static_condition_default_98; -extern const bool __static_condition_default_935; -extern const bool __static_condition_default_2614; -extern const bool __static_condition_default_1508; -extern const bool __static_condition_default_2330; -extern const bool __static_condition_default_200; -extern const bool __static_condition_default_1833; +extern const bool __static_condition_default_2304; +extern const bool __static_condition_default_936; +extern const bool __static_condition_default_1400; +extern const bool __static_condition_default_1306; extern const bool __static_condition_default_3989; -extern const bool __static_condition_default_1301; -extern const bool __static_condition_default_1367; -extern const bool __static_condition_default_2841; -extern const bool __static_condition_default_3551; -extern const bool __static_condition_default_1219; -extern const bool __static_condition_default_2547; -extern const bool __static_condition_default_1279; -extern const bool __static_condition_default_1927; -extern const bool __static_condition_default_2538; -extern const bool __static_condition_default_1300; -extern const bool __static_condition_default_1653; -extern const bool __static_condition_default_2610; -extern const bool __static_condition_default_2652; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_1882; -extern const bool __static_condition_default_2257; -extern const bool __static_condition_default_1605; -extern const bool __static_condition_default_3362; -extern const bool __static_condition_default_2294; -extern const bool __static_condition_default_3969; -extern const bool __static_condition_default_2718; -extern const bool __static_condition_default_2869; -extern const bool __static_condition_default_2311; -extern const bool __static_condition_default_67; -extern const bool __static_condition_default_3116; -extern const bool __static_condition_default_1767; -extern const bool __static_condition_default_1721; -extern const bool __static_condition_default_1823; -extern const bool __static_condition_default_2302; -extern const bool __static_condition_default_3918; -extern const bool __static_condition_default_1809; -extern const bool __static_condition_default_2432; -extern const bool __static_condition_default_3970; -extern const bool __static_condition_default_2803; -extern const bool __static_condition_default_1439; -extern const bool __static_condition_default_2481; -extern const bool __static_condition_default_3449; -extern const bool __static_condition_default_1395; -extern const bool __static_condition_default_1773; -extern const bool __static_condition_default_2266; -extern const bool __static_condition_default_3065; -extern const bool __static_condition_default_3399; -extern const bool __static_condition_default_2285; +extern const bool __static_condition_default_2658; extern const bool __static_condition_default_1506; -extern const bool __static_condition_default_2100; -extern const bool __static_condition_default_1639; -extern const bool __static_condition_default_1813; -extern const bool __static_condition_default_3093; -extern const bool __static_condition_default_1361; -extern const bool __static_condition_default_3433; -extern const bool __static_condition_default_143; -extern const bool __static_condition_default_216; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_1593; -extern const bool __static_condition_default_2027; -extern const bool __static_condition_default_2701; -extern const bool __static_condition_default_839; -extern const bool __static_condition_default_1719; -extern const bool __static_condition_default_2682; -extern const bool __static_condition_default_2759; -extern const bool __static_condition_default_3535; -extern const bool __static_condition_default_607; -extern const bool __static_condition_default_2488; -extern const bool __static_condition_default_930; -extern const bool __static_condition_default_2056; -extern const bool __static_condition_default_674; -extern const bool __static_condition_default_148; -extern const bool __static_condition_default_160; -extern const bool __static_condition_default_2736; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_1437; -extern const bool __static_condition_default_2391; -extern const bool __static_condition_default_2417; -extern const bool __static_condition_default_2525; -extern const bool __static_condition_default_2898; -extern const bool __static_condition_default_2230; -extern const bool __static_condition_default_2383; -extern const bool __static_condition_default_109; -extern const bool __static_condition_default_2593; -extern const bool __static_condition_default_2902; -extern const bool __static_condition_default_2560; -extern const bool __static_condition_default_2807; -extern const bool __static_condition_default_2415; -extern const bool __static_condition_default_2618; -extern const bool __static_condition_default_1579; -extern const bool __static_condition_default_950; +extern const bool __static_condition_default_2890; +extern const bool __static_condition_default_4006; +extern const bool __static_condition_default_1224; +extern const bool __static_condition_default_3065; +extern const bool __static_condition_default_630; +extern const bool __static_condition_default_1775; +extern const bool __static_condition_default_2063; extern const bool __static_condition_default_1304; -extern const bool __static_condition_default_1949; -extern const bool __static_condition_default_2658; -extern const bool __static_condition_default_3041; -extern const bool __static_condition_default_3078; -extern const bool __static_condition_default_884; -extern const bool __static_condition_default_2336; -extern const bool __static_condition_default_2964; -extern const bool __static_condition_default_936; -extern const bool __static_condition_default_3006; -extern const bool __static_condition_default_2684; -extern const bool __static_condition_default_2733; -extern const bool __static_condition_default_1243; -extern const bool __static_condition_default_1149; -extern const bool __static_condition_default_1532; -extern const bool __static_condition_default_678; -extern const bool __static_condition_default_2334; -extern const bool __static_condition_default_859; -extern const bool __static_condition_default_2562; -extern const bool __static_condition_default_1481; -extern const bool __static_condition_default_2407; -extern const bool __static_condition_default_198; -extern const bool __static_condition_default_910; -extern const bool __static_condition_default_2327; -extern const bool __static_condition_default_1588; -extern const bool __static_condition_default_2587; -extern const bool __static_condition_default_1837; -extern const bool __static_condition_default_2817; -extern const bool __static_condition_default_617; -extern const bool __static_condition_default_2304; -extern const bool __static_condition_default_2226; -extern const bool __static_condition_default_1559; -extern const bool __static_condition_default_2243; -extern const bool __static_condition_default_1389; -extern const bool __static_condition_default_2438; -extern const bool __static_condition_default_1275; -extern const bool __static_condition_default_3115; -extern const bool __static_condition_default_3570; -extern const bool __static_condition_default_1911; -extern const bool __static_condition_default_1296; -extern const bool __static_condition_default_1754; -extern const bool __static_condition_default_2818; -extern const bool __static_condition_default_1357; -extern const bool __static_condition_default_3988; -extern const bool __static_condition_default_1610; -extern const bool __static_condition_default_2536; -extern const bool __static_condition_default_1652; -extern const bool __static_condition_default_2048; +extern const bool __static_condition_default_1428; +extern const bool __static_condition_default_2257; extern const bool __static_condition_default_4008; -extern const bool __static_condition_default_73; -extern const bool __static_condition_default_1383; -extern const bool __static_condition_default_1458; -extern const bool __static_condition_default_127; -extern const bool __static_condition_default_1249; -extern const bool __static_condition_default_1678; -extern const bool __static_condition_default_69; -extern const bool __static_condition_default_1688; -extern const bool __static_condition_default_2300; -extern const bool __static_condition_default_2811; -extern const bool __static_condition_default_3971; -extern const bool __static_condition_default_2419; -extern const bool __static_condition_default_640; -extern const bool __static_condition_default_2305; -extern const bool __static_condition_default_2839; -extern const bool __static_condition_default_125; -extern const bool __static_condition_default_3339; +extern const bool __static_condition_default_1389; +extern const bool __static_condition_default_3233; +extern const bool __static_condition_default_674; +extern const bool __static_condition_default_3896; +extern const bool __static_condition_default_1683; +extern const bool __static_condition_default_1743; +extern const bool __static_condition_default_2720; extern const bool __static_condition_default_3960; +extern const bool __static_condition_default_3671; +extern const bool __static_condition_default_3900; +extern const bool __static_condition_default_1892; +extern const bool __static_condition_default_2914; +extern const bool __static_condition_default_1331; +extern const bool __static_condition_default_2697; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_1888; extern const bool __static_condition_default_748; -extern const bool __static_condition_default_3472; -extern const bool __static_condition_default_149; -extern const bool __static_condition_default_1666; -extern const bool __static_condition_default_2018; -extern const bool __static_condition_default_1017; -extern const bool __static_condition_default_1681; -extern const bool __static_condition_default_917; -extern const bool __static_condition_default_1580; -extern const bool __static_condition_default_65; -extern const bool __static_condition_default_1475; -extern const bool __static_condition_default_2599; -extern const bool __static_condition_default_2802; -extern const bool __static_condition_default_694; -extern const bool __static_condition_default_2326; -extern const bool __static_condition_default_3407; -extern const bool __static_condition_default_853; -extern const bool __static_condition_default_1845; -extern const bool __static_condition_default_3555; -extern const bool __static_condition_default_1530; -extern const bool __static_condition_default_1658; -extern const bool __static_condition_default_1720; -extern const bool __static_condition_default_1432; -extern const bool __static_condition_default_1543; -extern const bool __static_condition_default_1811; -extern const bool __static_condition_default_3662; -extern const bool __static_condition_default_642; -extern const bool __static_condition_default_158; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_1337; -extern const bool __static_condition_default_1799; -extern const bool __static_condition_default_3140; -extern const bool __static_condition_default_4009; +extern const bool __static_condition_default_1895; +extern const bool __static_condition_default_959; +extern const bool __static_condition_default_1272; +extern const bool __static_condition_default_2752; +extern const bool __static_condition_default_1573; +extern const bool __static_condition_default_3969; +extern const bool __static_condition_default_1195; +extern const bool __static_condition_default_1452; +extern const bool __static_condition_default_1408; +extern const bool __static_condition_default_1898; +extern const bool __static_condition_default_2387; +extern const bool __static_condition_default_950; +extern const bool __static_condition_default_65; +extern const bool __static_condition_default_943; +extern const bool __static_condition_default_1481; +extern const bool __static_condition_default_4001; +extern const bool __static_condition_default_2343; +extern const bool __static_condition_default_2603; +extern const bool __static_condition_default_1779; +extern const bool __static_condition_default_3563; +extern const bool __static_condition_default_1437; +extern const bool __static_condition_default_1563; +extern const bool __static_condition_default_4004; +extern const bool __static_condition_default_2841; +extern const bool __static_condition_default_1729; +extern const bool __static_condition_default_2842; +extern const bool __static_condition_default_3995; +extern const bool __static_condition_default_2686; +extern const bool __static_condition_default_3478; +extern const bool __static_condition_default_2565; +extern const bool __static_condition_default_1296; +extern const bool __static_condition_default_1812; +extern const bool __static_condition_default_2733; +extern const bool __static_condition_default_2340; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_1641; +extern const bool __static_condition_default_2566; +extern const bool __static_condition_default_3100; +extern const bool __static_condition_default_2056; +extern const bool __static_condition_default_2777; +extern const bool __static_condition_default_2892; +extern const bool __static_condition_default_1475; +extern const bool __static_condition_default_1541; +extern const bool __static_condition_default_2937; +extern const bool __static_condition_default_3983; +extern const bool __static_condition_default_2092; +extern const bool __static_condition_default_3005; +extern const bool __static_condition_default_118; +extern const bool __static_condition_default_2110; extern const bool __static_condition_default_1992; -extern const bool __static_condition_default_3982; -extern const bool __static_condition_default_189; -extern const bool __static_condition_default_2085; -extern const bool __static_condition_default_3057; -extern const bool __static_condition_default_1517; -extern const bool __static_condition_default_1976; -extern const bool __static_condition_default_1284; -extern const bool __static_condition_default_2795; -extern const bool __static_condition_default_2884; -extern const bool __static_condition_default_2573; -extern const bool __static_condition_default_2683; +extern const bool __static_condition_default_1671; +extern const bool __static_condition_default_2713; extern const bool __static_condition_default_2957; -extern const bool __static_condition_default_3059; -extern const bool __static_condition_default_1224; -extern const bool __static_condition_default_1622; -extern const bool __static_condition_default_2549; +extern const bool __static_condition_default_156; +extern const bool __static_condition_default_1682; +extern const bool __static_condition_default_2847; +extern const bool __static_condition_default_3976; extern const bool __static_condition_default_170; -extern const bool __static_condition_default_749; -extern const bool __static_condition_default_2395; -extern const bool __static_condition_default_130; -extern const bool __static_condition_default_1777; -extern const bool __static_condition_default_3474; -extern const bool __static_condition_default_2101; -extern const bool __static_condition_default_2367; -extern const bool __static_condition_default_2445; -extern const bool __static_condition_default_3994; -extern const bool __static_condition_default_1878; -extern const bool __static_condition_default_648; -extern const bool __static_condition_default_3476; -extern const bool __static_condition_default_168; -extern const bool __static_condition_default_218; -extern const bool __static_condition_default_1789; -extern const bool __static_condition_default_737; -extern const bool __static_condition_default_2591; -extern const bool __static_condition_default_1428; -extern const bool __static_condition_default_3696; -extern const bool __static_condition_default_2425; -extern const bool __static_condition_default_3972; -extern const bool __static_condition_default_3977; -extern const bool __static_condition_default_3984; -extern const bool __static_condition_default_1387; -extern const bool __static_condition_default_2343; -extern const bool __static_condition_default_3646; -extern const bool __static_condition_default_1365; -extern const bool __static_condition_default_1451; -extern const bool __static_condition_default_2767; -extern const bool __static_condition_default_698; -extern const bool __static_condition_default_3337; -extern const bool __static_condition_default_752; +extern const bool __static_condition_default_2361; +extern const bool __static_condition_default_3560; extern const bool __static_condition_default_1270; -extern const bool __static_condition_default_3976; -extern const bool __static_condition_default_2640; -extern const bool __static_condition_default_1110; -extern const bool __static_condition_default_2875; -extern const bool __static_condition_default_2700; -extern const bool __static_condition_default_2752; -extern const bool __static_condition_default_2863; -extern const bool __static_condition_default_3055; -extern const bool __static_condition_default_114; -extern const bool __static_condition_default_1628; +extern const bool __static_condition_default_2305; +extern const bool __static_condition_default_2687; +extern const bool __static_condition_default_2391; +extern const bool __static_condition_default_2767; +extern const bool __static_condition_default_2805; +extern const bool __static_condition_default_1765; +extern const bool __static_condition_default_2633; +extern const bool __static_condition_default_2579; +extern const bool __static_condition_default_1562; +extern const bool __static_condition_default_2227; +extern const bool __static_condition_default_3077; +extern const bool __static_condition_default_855; +extern const bool __static_condition_default_1737; +extern const bool __static_condition_default_2884; +extern const bool __static_condition_default_654; +extern const bool __static_condition_default_1535; +extern const bool __static_condition_default_1868; +extern const bool __static_condition_default_2549; +extern const bool __static_condition_default_3028; +extern const bool __static_condition_default_164; +extern const bool __static_condition_default_1593; +extern const bool __static_condition_default_3017; +extern const bool __static_condition_default_2735; extern const bool __static_condition_default_3974; +extern const bool __static_condition_default_3975; +extern const bool __static_condition_default_2430; +extern const bool __static_condition_default_2886; +extern const bool __static_condition_default_3351; +extern const bool __static_condition_default_2684; +extern const bool __static_condition_default_3811; +extern const bool __static_condition_default_2539; +extern const bool __static_condition_default_2511; +extern const bool __static_condition_default_2944; +extern const bool __static_condition_default_3988; +extern const bool __static_condition_default_906; +extern const bool __static_condition_default_3360; +extern const bool __static_condition_default_3450; +extern const bool __static_condition_default_1690; +extern const bool __static_condition_default_2553; +extern const bool __static_condition_default_2048; +extern const bool __static_condition_default_1284; +extern const bool __static_condition_default_3539; +extern const bool __static_condition_default_168; +extern const bool __static_condition_default_2238; +extern const bool __static_condition_default_2419; +extern const bool __static_condition_default_1780; +extern const bool __static_condition_default_1728; +extern const bool __static_condition_default_1393; +extern const bool __static_condition_default_2331; +extern const bool __static_condition_default_2701; +extern const bool __static_condition_default_2600; +extern const bool __static_condition_default_1281; +extern const bool __static_condition_default_1319; +extern const bool __static_condition_default_2279; +extern const bool __static_condition_default_1713; +extern const bool __static_condition_default_2734; +extern const bool __static_condition_default_3366; +extern const bool __static_condition_default_1807; +extern const bool __static_condition_default_2469; +extern const bool __static_condition_default_3048; +extern const bool __static_condition_default_2663; +extern const bool __static_condition_default_1603; +extern const bool __static_condition_default_1658; +extern const bool __static_condition_default_185; +extern const bool __static_condition_default_2640; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_664; +extern const bool __static_condition_default_1999; +extern const bool __static_condition_default_207; +extern const bool __static_condition_default_1406; +extern const bool __static_condition_default_3982; +extern const bool __static_condition_default_1579; +extern const bool __static_condition_default_2300; +extern const bool __static_condition_default_3959; +extern const bool __static_condition_default_1383; +extern const bool __static_condition_default_1622; +extern const bool __static_condition_default_1279; +extern const bool __static_condition_default_3543; +extern const bool __static_condition_default_3661; +extern const bool __static_condition_default_2851; +extern const bool __static_condition_default_1781; +extern const bool __static_condition_default_2521; +extern const bool __static_condition_default_2443; +extern const bool __static_condition_default_2381; +extern const bool __static_condition_default_2458; +extern const bool __static_condition_default_2523; +extern const bool __static_condition_default_1645; +extern const bool __static_condition_default_2405; +extern const bool __static_condition_default_63; +extern const bool __static_condition_default_931; +extern const bool __static_condition_default_2941; +extern const bool __static_condition_default_2810; +extern const bool __static_condition_default_2425; +extern const bool __static_condition_default_1508; +extern const bool __static_condition_default_2260; +extern const bool __static_condition_default_3476; +extern const bool __static_condition_default_2397; +extern const bool __static_condition_default_3416; +extern const bool __static_condition_default_149; +extern const bool __static_condition_default_1817; +extern const bool __static_condition_default_1536; +extern const bool __static_condition_default_2707; +extern const bool __static_condition_default_2819; +extern const bool __static_condition_default_1102; +extern const bool __static_condition_default_1413; +extern const bool __static_condition_default_1534; +extern const bool __static_condition_default_3115; +extern const bool __static_condition_default_2467; +extern const bool __static_condition_default_2346; +extern const bool __static_condition_default_3029; +extern const bool __static_condition_default_2587; +extern const bool __static_condition_default_899; +extern const bool __static_condition_default_696; +extern const bool __static_condition_default_1489; +extern const bool __static_condition_default_1293; extern const bool __static_condition_default_2249; -extern const bool __static_condition_default_3961; -extern const bool __static_condition_default_1677; +extern const bool __static_condition_default_2817; +extern const bool __static_condition_default_1688; +extern const bool __static_condition_default_2857; +extern const bool __static_condition_default_3337; +extern const bool __static_condition_default_2363; +extern const bool __static_condition_default_935; +extern const bool __static_condition_default_2818; +extern const bool __static_condition_default_3122; +extern const bool __static_condition_default_958; +extern const bool __static_condition_default_1654; +extern const bool __static_condition_default_2696; +extern const bool __static_condition_default_910; +extern const bool __static_condition_default_1313; +extern const bool __static_condition_default_2018; +extern const bool __static_condition_default_3688; +extern const bool __static_condition_default_1829; +extern const bool __static_condition_default_2736; +extern const bool __static_condition_default_1665; extern const bool __static_condition_default_2806; -extern const bool __static_condition_default_2663; -extern const bool __static_condition_default_609; -extern const bool __static_condition_default_3175; -extern const bool __static_condition_default_2035; -extern const bool __static_condition_default_2797; -extern const bool __static_condition_default_2758; -extern const bool __static_condition_default_3139; -extern const bool __static_condition_default_3355; -extern const bool __static_condition_default_1310; -extern const bool __static_condition_default_2695; -extern const bool __static_condition_default_4006; -extern const bool __static_condition_default_2647; -extern const bool __static_condition_default_96; -extern const bool __static_condition_default_3560; -extern const bool __static_condition_default_164; +extern const bool __static_condition_default_69; +extern const bool __static_condition_default_676; +extern const bool __static_condition_default_1976; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_1395; +extern const bool __static_condition_default_3961; +extern const bool __static_condition_default_2338; +extern const bool __static_condition_default_2843; +extern const bool __static_condition_default_1289; +extern const bool __static_condition_default_924; +extern const bool __static_condition_default_2086; +extern const bool __static_condition_default_1610; +extern const bool __static_condition_default_1949; +extern const bool __static_condition_default_2070; +extern const bool __static_condition_default_3022; +extern const bool __static_condition_default_1719; +extern const bool __static_condition_default_1799; +extern const bool __static_condition_default_2807; +extern const bool __static_condition_default_1415; +extern const bool __static_condition_default_1297; +extern const bool __static_condition_default_2602; +extern const bool __static_condition_default_3984; +extern const bool __static_condition_default_1255; +extern const bool __static_condition_default_2438; +extern const bool __static_condition_default_1681; +extern const bool __static_condition_default_1808; +extern const bool __static_condition_default_1843; +extern const bool __static_condition_default_3669; +extern const bool __static_condition_default_3341; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_2749; +extern const bool __static_condition_default_2432; +extern const bool __static_condition_default_3434; +extern const bool __static_condition_default_1833; +extern const bool __static_condition_default_3977; +extern const bool __static_condition_default_2538; +extern const bool __static_condition_default_2796; +extern const bool __static_condition_default_1588; +extern const bool __static_condition_default_2273; +extern const bool __static_condition_default_1617; +extern const bool __static_condition_default_2085; +extern const bool __static_condition_default_2933; +extern const bool __static_condition_default_1722; +extern const bool __static_condition_default_51; +extern const bool __static_condition_default_1523; +extern const bool __static_condition_default_2750; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_2867; +extern const bool __static_condition_default_2445; +extern const bool __static_condition_default_1513; +extern const bool __static_condition_default_857; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_1605; +extern const bool __static_condition_default_1656; +extern const bool __static_condition_default_2226; +extern const bool __static_condition_default_61; extern const bool __static_condition_default_951; -extern const bool __static_condition_default_1657; -extern const bool __static_condition_default_3131; -extern const bool __static_condition_default_1779; -extern const bool __static_condition_default_2675; -extern const bool __static_condition_default_1535; -extern const bool __static_condition_default_1598; -extern const bool __static_condition_default_2773; +extern const bool __static_condition_default_3078; +extern const bool __static_condition_default_3997; +extern const bool __static_condition_default_2873; +extern const bool __static_condition_default_1653; +extern const bool __static_condition_default_2830; +extern const bool __static_condition_default_1755; +extern const bool __static_condition_default_162; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_3013; +extern const bool __static_condition_default_144; +extern const bool __static_condition_default_1377; +extern const bool __static_condition_default_2230; +extern const bool __static_condition_default_1012; +extern const bool __static_condition_default_2047; +extern const bool __static_condition_default_1543; +extern const bool __static_condition_default_1219; +extern const bool __static_condition_default_1402; +extern const bool __static_condition_default_1977; +extern const bool __static_condition_default_1351; +extern const bool __static_condition_default_1678; +extern const bool __static_condition_default_2564; +extern const bool __static_condition_default_129; +extern const bool __static_condition_default_1934; +extern const bool __static_condition_default_2319; +extern const bool __static_condition_default_3130; +extern const bool __static_condition_default_2306; +extern const bool __static_condition_default_3349; +extern const bool __static_condition_default_1777; +extern const bool __static_condition_default_3140; +extern const bool __static_condition_default_1788; +extern const bool __static_condition_default_1677; +extern const bool __static_condition_default_2519; +extern const bool __static_condition_default_3970; +extern const bool __static_condition_default_2481; +extern const bool __static_condition_default_2541; +extern const bool __static_condition_default_2383; +extern const bool __static_condition_default_2483; +extern const bool __static_condition_default_1290; +extern const bool __static_condition_default_3918; +extern const bool __static_condition_default_2000; +extern const bool __static_condition_default_2811; +extern const bool __static_condition_default_1987; +extern const bool __static_condition_default_642; +extern const bool __static_condition_default_2320; +extern const bool __static_condition_default_147; +extern const bool __static_condition_default_2547; +extern const bool __static_condition_default_1564; +extern const bool __static_condition_default_2297; extern const bool __static_condition_default_2912; -extern const bool __static_condition_default_2539; -extern const bool __static_condition_default_898; -extern const bool __static_condition_default_2086; -extern const bool __static_condition_default_2712; -extern const bool __static_condition_default_3549; -extern const bool __static_condition_default_1491; -extern const bool __static_condition_default_2699; -extern const bool __static_condition_default_1743; -extern const bool __static_condition_default_1817; +extern const bool __static_condition_default_2592; +extern const bool __static_condition_default_3385; +extern const bool __static_condition_default_1569; +extern const bool __static_condition_default_605; +extern const bool __static_condition_default_2988; +extern const bool __static_condition_default_1706; +extern const bool __static_condition_default_1208; +extern const bool __static_condition_default_1387; +extern const bool __static_condition_default_1720; extern const bool __static_condition_default_2062; -extern const bool __static_condition_default_3986; +extern const bool __static_condition_default_1300; +extern const bool __static_condition_default_3141; +extern const bool __static_condition_default_3055; +extern const bool __static_condition_default_3898; +extern const bool __static_condition_default_2367; +extern const bool __static_condition_default_3472; +extern const bool __static_condition_default_1813; +extern const bool __static_condition_default_1721; +extern const bool __static_condition_default_2688; +extern const bool __static_condition_default_2896; +extern const bool __static_condition_default_1827; extern const bool __static_condition_default_2586; -extern const bool __static_condition_default_2830; -extern const bool __static_condition_default_2227; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_1413; -extern const bool __static_condition_default_1934; -extern const bool __static_condition_default_1603; -extern const bool __static_condition_default_1690; -extern const bool __static_condition_default_1737; -extern const bool __static_condition_default_2831; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_987; -extern const bool __static_condition_default_1493; -extern const bool __static_condition_default_2511; -extern const bool __static_condition_default_3983; +extern const bool __static_condition_default_1705; +extern const bool __static_condition_default_3541; +extern const bool __static_condition_default_1519; +extern const bool __static_condition_default_2482; +extern const bool __static_condition_default_3999; +extern const bool __static_condition_default_209; +extern const bool __static_condition_default_898; +extern const bool __static_condition_default_2671; +extern const bool __static_condition_default_3535; +extern const bool __static_condition_default_96; +extern const bool __static_condition_default_1335; +extern const bool __static_condition_default_1230; +extern const bool __static_condition_default_1530; +extern const bool __static_condition_default_161; +extern const bool __static_condition_default_1823; +extern const bool __static_condition_default_2589; +extern const bool __static_condition_default_1845; +extern const bool __static_condition_default_2027; +extern const bool __static_condition_default_678; +extern const bool __static_condition_default_2313; +extern const bool __static_condition_default_2771; +extern const bool __static_condition_default_145; +extern const bool __static_condition_default_3101; +extern const bool __static_condition_default_1666; extern const bool __static_condition_default_1821; extern const bool __static_condition_default_2042; -extern const bool __static_condition_default_3973; -extern const bool __static_condition_default_2711; -extern const bool __static_condition_default_1682; -extern const bool __static_condition_default_2838; -extern const bool __static_condition_default_2260; -extern const bool __static_condition_default_1999; -extern const bool __static_condition_default_2933; -extern const bool __static_condition_default_1523; -extern const bool __static_condition_default_2541; -extern const bool __static_condition_default_1408; +extern const bool __static_condition_default_2784; +extern const bool __static_condition_default_2571; +extern const bool __static_condition_default_4005; +extern const bool __static_condition_default_1598; +extern const bool __static_condition_default_3347; +extern const bool __static_condition_default_218; +extern const bool __static_condition_default_688; +extern const bool __static_condition_default_2029; +extern const bool __static_condition_default_4003; +extern const bool __static_condition_default_3364; +extern const bool __static_condition_default_2863; extern const bool __static_condition_default_166; -extern const bool __static_condition_default_207; -extern const bool __static_condition_default_3468; -extern const bool __static_condition_default_3900; -extern const bool __static_condition_default_144; -extern const bool __static_condition_default_2346; -extern const bool __static_condition_default_1563; -extern const bool __static_condition_default_1706; -extern const bool __static_condition_default_2381; -extern const bool __static_condition_default_2853; -extern const bool __static_condition_default_1406; +extern const bool __static_condition_default_1903; +extern const bool __static_condition_default_3978; +extern const bool __static_condition_default_2407; +extern const bool __static_condition_default_2683; +extern const bool __static_condition_default_2700; +extern const bool __static_condition_default_4007; extern const bool __static_condition_default_2423; -extern const bool __static_condition_default_3022; -extern const bool __static_condition_default_1573; -extern const bool __static_condition_default_843; -extern const bool __static_condition_default_2734; -extern const bool __static_condition_default_1402; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_2297; -extern const bool __static_condition_default_1860; -extern const bool __static_condition_default_676; -extern const bool __static_condition_default_3563; -extern const bool __static_condition_default_2458; -extern const bool __static_condition_default_630; +extern const bool __static_condition_default_3358; +extern const bool __static_condition_default_1772; +extern const bool __static_condition_default_2652; +extern const bool __static_condition_default_115; +extern const bool __static_condition_default_2100; +extern const bool __static_condition_default_3648; +extern const bool __static_condition_default_1361; +extern const bool __static_condition_default_3057; +extern const bool __static_condition_default_3407; +extern const bool __static_condition_default_1862; +extern const bool __static_condition_default_2709; +extern const bool __static_condition_default_165; +extern const bool __static_condition_default_2315; +extern const bool __static_condition_default_1310; +extern const bool __static_condition_default_1882; +extern const bool __static_condition_default_3474; +extern const bool __static_condition_default_2918; +extern const bool __static_condition_default_670; +extern const bool __static_condition_default_2101; +extern const bool __static_condition_default_2536; +extern const bool __static_condition_default_640; +extern const bool __static_condition_default_189; +extern const bool __static_condition_default_1633; +extern const bool __static_condition_default_2285; +extern const bool __static_condition_default_2349; +extern const bool __static_condition_default_2462; +extern const bool __static_condition_default_905; extern const bool __static_condition_default_1353; -extern const bool __static_condition_default_2628; -extern const bool __static_condition_default_1964; -extern const bool __static_condition_default_185; -extern const bool __static_condition_default_680; -extern const bool __static_condition_default_2055; -extern const bool __static_condition_default_3671; -extern const bool __static_condition_default_3366; -extern const bool __static_condition_default_2600; -extern const bool __static_condition_default_1788; -extern const bool __static_condition_default_2279; -extern const bool __static_condition_default_106; -extern const bool __static_condition_default_2829; -extern const bool __static_condition_default_1827; +extern const bool __static_condition_default_2395; +extern const bool __static_condition_default_117; +extern const bool __static_condition_default_1643; +extern const bool __static_condition_default_2336; +extern const bool __static_condition_default_71; extern const bool __static_condition_default_700; -extern const bool __static_condition_default_2505; -extern const bool __static_condition_default_3568; -extern const bool __static_condition_default_1195; -extern const bool __static_condition_default_2436; -extern const bool __static_condition_default_2918; -extern const bool __static_condition_default_2688; -extern const bool __static_condition_default_3980; -extern const bool __static_condition_default_129; -extern const bool __static_condition_default_1536; -extern const bool __static_condition_default_1898; -extern const bool __static_condition_default_1236; -extern const bool __static_condition_default_1854; -extern const bool __static_condition_default_2873; -extern const bool __static_condition_default_3343; -extern const bool __static_condition_default_2669; -extern const bool __static_condition_default_2892; +extern const bool __static_condition_default_1679; +extern const bool __static_condition_default_1800; +extern const bool __static_condition_default_1767; +extern const bool __static_condition_default_2802; +extern const bool __static_condition_default_3646; +extern const bool __static_condition_default_1243; +extern const bool __static_condition_default_3353; +extern const bool __static_condition_default_3139; +extern const bool __static_condition_default_2712; +extern const bool __static_condition_default_2093; +extern const bool __static_condition_default_964; +extern const bool __static_condition_default_2614; +extern const bool __static_condition_default_2785; +extern const bool __static_condition_default_1837; +extern const bool __static_condition_default_2525; +extern const bool __static_condition_default_1766; +extern const bool __static_condition_default_2334; +extern const bool __static_condition_default_2902; +extern const bool __static_condition_default_67; +extern const bool __static_condition_default_1907; +extern const bool __static_condition_default_2591; +extern const bool __static_condition_default_105; +extern const bool __static_condition_default_656; +extern const bool __static_condition_default_841; +extern const bool __static_condition_default_2711; +extern const bool __static_condition_default_57; +extern const bool __static_condition_default_1776; +extern const bool __static_condition_default_2839; +extern const bool __static_condition_default_3007; +extern const bool __static_condition_default_73; +extern const bool __static_condition_default_859; +extern const bool __static_condition_default_3551; extern const bool __static_condition_default_3981; -extern const bool __static_condition_default_1102; -extern const bool __static_condition_default_4002; -extern const bool __static_condition_default_1892; -extern const bool __static_condition_default_1293; -extern const bool __static_condition_default_3360; +extern const bool __static_condition_default_2599; +extern const bool __static_condition_default_2758; +extern const bool __static_condition_default_1274; +extern const bool __static_condition_default_2908; +extern const bool __static_condition_default_2078; extern const bool __static_condition_default_3985; -extern const bool __static_condition_default_1316; -extern const bool __static_condition_default_1495; -extern const bool __static_condition_default_3959; -extern const bool __static_condition_default_2430; -extern const bool __static_condition_default_2671; -extern const bool __static_condition_default_2338; -extern const bool __static_condition_default_2742; -extern const bool __static_condition_default_1617; -extern const bool __static_condition_default_1513; -extern const bool __static_condition_default_2291; -extern const bool __static_condition_default_605; -extern const bool __static_condition_default_2743; -extern const bool __static_condition_default_3978; -extern const bool __static_condition_default_958; -extern const bool __static_condition_default_1511; -extern const bool __static_condition_default_3358; -extern const bool __static_condition_default_1780; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_1645; -extern const bool __static_condition_default_1888; -extern const bool __static_condition_default_3690; -extern const bool __static_condition_default_1862; -extern const bool __static_condition_default_1272; -extern const bool __static_condition_default_1351; -extern const bool __static_condition_default_905; -extern const bool __static_condition_default_3385; -extern const bool __static_condition_default_3434; -extern const bool __static_condition_default_3141; -extern const bool __static_condition_default_1712; -extern const bool __static_condition_default_2363; -extern const bool __static_condition_default_2707; -extern const bool __static_condition_default_664; -extern const bool __static_condition_default_1755; -extern const bool __static_condition_default_3028; -extern const bool __static_condition_default_2483; -extern const bool __static_condition_default_2673; -extern const bool __static_condition_default_3916; -extern const bool __static_condition_default_1333; -extern const bool __static_condition_default_3085; -extern const bool __static_condition_default_1667; +extern const bool __static_condition_default_1556; +extern const bool __static_condition_default_2718; +extern const bool __static_condition_default_3555; +extern const bool __static_condition_default_1149; +extern const bool __static_condition_default_1453; +extern const bool __static_condition_default_2327; +extern const bool __static_condition_default_2853; +extern const bool __static_condition_default_2266; +extern const bool __static_condition_default_2695; +extern const bool __static_condition_default_2795; +extern const bool __static_condition_default_3470; +extern const bool __static_condition_default_2415; +extern const bool __static_condition_default_2751; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_3030; +extern const bool __static_condition_default_114; +extern const bool __static_condition_default_200; +extern const bool __static_condition_default_2786; +extern const bool __static_condition_default_3399; +extern const bool __static_condition_default_607; +extern const bool __static_condition_default_648; +extern const bool __static_condition_default_2011; +extern const bool __static_condition_default_1639; +extern const bool __static_condition_default_2898; +extern const bool __static_condition_default_3994; +extern const bool __static_condition_default_1712; +extern const bool __static_condition_default_853; +extern const bool __static_condition_default_2647; +extern const bool __static_condition_default_1264; +extern const bool __static_condition_default_1652; +extern const bool __static_condition_default_2365; +extern const bool __static_condition_default_1911; +extern const bool __static_condition_default_2838; +extern const bool __static_condition_default_3433; +extern const bool __static_condition_default_2618; +extern const bool __static_condition_default_1983; +extern const bool __static_condition_default_1316; +extern const bool __static_condition_default_3072; +extern const bool __static_condition_default_845; +extern const bool __static_condition_default_1365; +extern const bool __static_condition_default_1558; +extern const bool __static_condition_default_1559; +extern const bool __static_condition_default_3568; +extern const bool __static_condition_default_911; +extern const bool __static_condition_default_987; +extern const bool __static_condition_default_126; +extern const bool __static_condition_default_1787; +extern const bool __static_condition_default_1517; +extern const bool __static_condition_default_1839; +extern const bool __static_condition_default_2964; +extern const bool __static_condition_default_1275; +extern const bool __static_condition_default_143; +extern const bool __static_condition_default_2922; +extern const bool __static_condition_default_1570; +extern const bool __static_condition_default_1531; +extern const bool __static_condition_default_1872; +extern const bool __static_condition_default_108; +extern const bool __static_condition_default_3557; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_1432; extern const bool __static_condition_default_628; -extern const bool __static_condition_default_923; -extern const bool __static_condition_default_1562; -extern const bool __static_condition_default_3896; -extern const bool __static_condition_default_4001; -extern const bool __static_condition_default_2313; -extern const bool __static_condition_default_2928; -extern const bool __static_condition_default_1705; -extern const bool __static_condition_default_1741; -extern const bool __static_condition_default_3029; -extern const bool __static_condition_default_2785; -extern const bool __static_condition_default_2320; -extern const bool __static_condition_default_1633; -extern const bool __static_condition_default_1569; -extern const bool __static_condition_default_1987; -extern const bool __static_condition_default_2469; -extern const bool __static_condition_default_906; -extern const bool __static_condition_default_2859; -extern const bool __static_condition_default_3480; -extern const bool __static_condition_default_3416; -extern const bool __static_condition_default_2523; +extern const bool __static_condition_default_2773; extern const bool __static_condition_default_2543; -extern const bool __static_condition_default_1729; -extern const bool __static_condition_default_1843; -extern const bool __static_condition_default_924; +extern const bool __static_condition_default_1385; +extern const bool __static_condition_default_1491; +extern const bool __static_condition_default_3545; +extern const bool __static_condition_default_698; +extern const bool __static_condition_default_1514; +extern const bool __static_condition_default_1878; +extern const bool __static_condition_default_2610; +extern const bool __static_condition_default_3971; +extern const bool __static_condition_default_1464; +extern const bool __static_condition_default_2494; +extern const bool __static_condition_default_1584; +extern const bool __static_condition_default_2294; +extern const bool __static_condition_default_2869; +extern const bool __static_condition_default_1367; +extern const bool __static_condition_default_2743; +extern const bool __static_condition_default_1809; +extern const bool __static_condition_default_2831; extern const bool __static_condition_default_625; -extern const bool __static_condition_default_2847; +extern const bool __static_condition_default_2180; +extern const bool __static_condition_default_2635; +extern const bool __static_condition_default_2928; +extern const bool __static_condition_default_1227; +extern const bool __static_condition_default_1771; +extern const bool __static_condition_default_2071; +extern const bool __static_condition_default_2699; +extern const bool __static_condition_default_2055; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_1532; +extern const bool __static_condition_default_1927; +extern const bool __static_condition_default_1860; +extern const bool __static_condition_default_3694; +extern const bool __static_condition_default_216; +extern const bool __static_condition_default_160; +extern const bool __static_condition_default_1333; +extern const bool __static_condition_default_1549; +extern const bool __static_condition_default_1884; +extern const bool __static_condition_default_1998; +extern const bool __static_condition_default_3986; +extern const bool __static_condition_default_3175; +extern const bool __static_condition_default_2330; +extern const bool __static_condition_default_1509; +extern const bool __static_condition_default_3093; +extern const bool __static_condition_default_1196; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_2291; +extern const bool __static_condition_default_2309; +extern const bool __static_condition_default_3343; +extern const bool __static_condition_default_1964; +extern const bool __static_condition_default_1495; +extern const bool __static_condition_default_3405; +extern const bool __static_condition_default_1789; +extern const bool __static_condition_default_917; +extern const bool __static_condition_default_1301; extern const bool __static_condition_default_3092; -extern const bool __static_condition_default_1283; -extern const bool __static_condition_default_880; -extern const bool __static_condition_default_1281; -extern const bool __static_condition_default_2623; -extern const bool __static_condition_default_3207; -extern const bool __static_condition_default_3898; +extern const bool __static_condition_default_930; +extern const bool __static_condition_default_1110; +extern const bool __static_condition_default_1276; +extern const bool __static_condition_default_1756; +extern const bool __static_condition_default_2243; +extern const bool __static_condition_default_1580; +extern const bool __static_condition_default_3085; +extern const bool __static_condition_default_2560; +extern const bool __static_condition_default_2803; +extern const bool __static_condition_default_1017; +extern const bool __static_condition_default_2562; +extern const bool __static_condition_default_131; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_2675; +extern const bool __static_condition_default_3696; +extern const bool __static_condition_default_1375; +extern const bool __static_condition_default_1458; +extern const bool __static_condition_default_1801; +extern const bool __static_condition_default_1199; +extern const bool __static_condition_default_2797; +extern const bool __static_condition_default_3979; extern const bool __static_condition_default_918; -extern const bool __static_condition_default_3478; -extern const bool __static_condition_default_3661; -extern const bool __static_condition_default_1808; -extern const bool __static_condition_default_2319; -extern const bool __static_condition_default_105; -extern const bool __static_condition_default_1452; -extern const bool __static_condition_default_1872; -extern const bool __static_condition_default_156; -extern const bool __static_condition_default_2011; +extern const bool __static_condition_default_1261; +extern const bool __static_condition_default_2859; +extern const bool __static_condition_default_839; extern const bool __static_condition_default_965; -extern const bool __static_condition_default_2944; -extern const bool __static_condition_default_2405; -extern const bool __static_condition_default_4007; -extern const bool __static_condition_default_2109; -extern const bool __static_condition_default_1679; -extern const bool __static_condition_default_3694; -extern const bool __static_condition_default_2796; -extern const bool __static_condition_default_1285; -extern const bool __static_condition_default_2315; -extern const bool __static_condition_default_145; -extern const bool __static_condition_default_1766; -extern const bool __static_condition_default_855; -extern const bool __static_condition_default_1400; -extern const bool __static_condition_default_2111; -extern const bool __static_condition_default_899; -extern const bool __static_condition_default_1264; -extern const bool __static_condition_default_1415; -extern const bool __static_condition_default_882; -extern const bool __static_condition_default_1670; -extern const bool __static_condition_default_2589; -extern const bool __static_condition_default_1771; -extern const bool __static_condition_default_2727; -extern const bool __static_condition_default_2000; -extern const bool __static_condition_default_3349; -extern const bool __static_condition_default_1998; -extern const bool __static_condition_default_1289; -extern const bool __static_condition_default_1868; -extern const bool __static_condition_default_1255; -extern const bool __static_condition_default_2180; -extern const bool __static_condition_default_157; -extern const bool __static_condition_default_2735; +extern const bool __static_condition_default_3368; +extern const bool __static_condition_default_694; +extern const bool __static_condition_default_3973; +extern const bool __static_condition_default_3480; +extern const bool __static_condition_default_2035; +extern const bool __static_condition_default_1422; +extern const bool __static_condition_default_2875; +extern const bool __static_condition_default_2925; +extern const bool __static_condition_default_893; +extern const bool __static_condition_default_1657; +extern const bool __static_condition_default_2742; +extern const bool __static_condition_default_3570; +extern const bool __static_condition_default_109; +extern const bool __static_condition_default_2436; +extern const bool __static_condition_default_3468; +extern const bool __static_condition_default_2488; +extern const bool __static_condition_default_3972; +extern const bool __static_condition_default_3131; +extern const bool __static_condition_default_1337; +extern const bool __static_condition_default_1236; +extern const bool __static_condition_default_2417; extern const bool __static_condition_default_866; -extern const bool __static_condition_default_2387; -extern const bool __static_condition_default_696; -extern const bool __static_condition_default_2110; -extern const bool __static_condition_default_1765; -extern const bool __static_condition_default_2564; -extern const bool __static_condition_default_3811; -extern const bool __static_condition_default_61; -extern const bool __static_condition_default_670; -extern const bool __static_condition_default_2452; -extern const bool __static_condition_default_2994; -extern const bool __static_condition_default_4003; -extern const bool __static_condition_default_3963; -extern const bool __static_condition_default_1313; -extern const bool __static_condition_default_2254; -extern const bool __static_condition_default_1335; -extern const bool __static_condition_default_2579; -extern const bool __static_condition_default_3543; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_1290; -extern const bool __static_condition_default_1572; -extern const bool __static_condition_default_2340; -extern const bool __static_condition_default_2810; -extern const bool __static_condition_default_3351; -extern const bool __static_condition_default_2886; -extern const bool __static_condition_default_1564; -extern const bool __static_condition_default_3539; -extern const bool __static_condition_default_1801; +extern const bool __static_condition_default_1958; +extern const bool __static_condition_default_127; +extern const bool __static_condition_default_1511; +extern const bool __static_condition_default_2413; +extern const bool __static_condition_default_1914; +extern const bool __static_condition_default_1357; +extern const bool __static_condition_default_2708; +extern const bool __static_condition_default_3108; +extern const bool __static_condition_default_1703; +extern const bool __static_condition_default_3345; +extern const bool __static_condition_default_2765; +extern const bool __static_condition_default_227; +extern const bool __static_condition_default_1741; +extern const bool __static_condition_default_1747; +extern const bool __static_condition_default_2588; +extern const bool __static_condition_default_3116; +extern const bool __static_condition_default_3006; +extern const bool __static_condition_default_3916; +extern const bool __static_condition_default_617; +extern const bool __static_condition_default_2759; +extern const bool __static_condition_default_1213; +extern const bool __static_condition_default_1754; +extern const bool __static_condition_default_1023; +extern const bool __static_condition_default_2143; +extern const bool __static_condition_default_2801; void __static_initializer_default() { __static_renaming("____u_char_0", "__u_char"); __static_renaming("____u_short_1", "__u_short"); @@ -3169,12 +3169,12 @@ struct ____anonymous_tag_3236_3237 { unsigned int ____w_termsig_3238 : 7;// L72 unsigned int ____w_coredump_3239 : 1;// L73 unsigned int ____w_retcode_3240 : 8;// L74 -unsigned int : 16;// L75 +unsigned int __anon_id_0_3241 : 16;// L75 }; struct ____anonymous_tag_3242_3243 { unsigned int ____w_stopval_3244 : 8;// L87 unsigned int ____w_stopsig_3245 : 8;// L88 -unsigned int : 16;// L89 +unsigned int __anon_id_1_3246 : 16;// L89 }; union __wait_3247 { int __w_status_3248;// L68 @@ -4669,7 +4669,7 @@ if (__static_condition_default_3995) { - __buffer_3966 = __malloc_3143 (4092) ; // L29 + __buffer_3966 = malloc (4092) ; // L29 } ) ; // L29:L35 } @@ -4679,7 +4679,7 @@ if (__static_condition_default_3996) { - __buffer_3966 = __malloc_3144 (4092) ; // L29 + __buffer_3966 = malloc (4092) ; // L29 } ) ; // L29:L35 } @@ -4689,7 +4689,7 @@ if (__static_condition_default_3997) { - __buffer_3966 = __malloc_3145 (4092) ; // L29 + __buffer_3966 = malloc (4092) ; // L29 } ) ; // L29:L35 } @@ -4699,7 +4699,7 @@ if (__static_condition_default_3998) { - __buffer_3966 = __malloc_3146 (4092) ; // L29 + __buffer_3966 = malloc (4092) ; // L29 } ) ; // L29:L35 } @@ -4709,7 +4709,7 @@ if (__static_condition_default_3999) { - __buffer_3966 = __malloc_3147 (4092) ; // L29 + __buffer_3966 = malloc (4092) ; // L29 } ) ; // L29:L35 } @@ -4719,7 +4719,7 @@ if (__static_condition_default_4000) { - __buffer_3966 = __malloc_3148 (4092) ; // L29 + __buffer_3966 = malloc (4092) ; // L29 } ) ; // L29:L35 } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/242f1a34377.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/242f1a34377.desugared.c index fe4fc4ff..6292fe14 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/242f1a34377.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/242f1a34377.desugared.c @@ -8,11 +8,11 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); extern const bool __static_condition_default_3; +extern const bool __static_condition_default_4; extern const bool __static_condition_default_10; -extern const bool __static_condition_default_11; extern const bool __static_condition_default_5; extern const bool __static_condition_default_1; -extern const bool __static_condition_default_4; +extern const bool __static_condition_default_11; void __static_initializer_default() { __static_renaming("__crypto_alloc_ablkcipher_0", "crypto_alloc_ablkcipher"); __static_renaming("__test_cipher_2", "test_cipher"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/2f02c15a5d9.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/2f02c15a5d9.desugared.c index b8acd26a..8db959de 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/2f02c15a5d9.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/2f02c15a5d9.desugared.c @@ -7,12 +7,12 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); +extern const bool __static_condition_default_3; +extern const bool __static_condition_default_10; extern const bool __static_condition_default_11; -extern const bool __static_condition_default_5; extern const bool __static_condition_default_1; extern const bool __static_condition_default_4; -extern const bool __static_condition_default_10; -extern const bool __static_condition_default_3; +extern const bool __static_condition_default_5; void __static_initializer_default() { __static_renaming("__ssb_extif_gpio_in_0", "ssb_extif_gpio_in"); __static_renaming("__bcm47xx_gpio_get_value_2", "bcm47xx_gpio_get_value"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.desugared.c index d6057412..5617f5f6 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.desugared.c @@ -7,8 +7,8 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_5; extern const bool __static_condition_default_11; +extern const bool __static_condition_default_5; extern const bool __static_condition_default_6; void __static_initializer_default() { __static_renaming("__nondet_0", "nondet"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/472a474c663.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/472a474c663.desugared.c index aa5dcfb5..fbb32d36 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/472a474c663.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/472a474c663.desugared.c @@ -7,11 +7,11 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_6; -extern const bool __static_condition_default_7; extern const bool __static_condition_default_14; -extern const bool __static_condition_default_15; extern const bool __static_condition_default_10; +extern const bool __static_condition_default_7; +extern const bool __static_condition_default_15; +extern const bool __static_condition_default_6; void __static_initializer_default() { __static_renaming("__nondet_0", "nondet"); __static_renaming("__smp_found_config_1", "smp_found_config"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.c b/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.c index 40fda1b8..fca9237a 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.c @@ -11,11 +11,11 @@ typedef uint64_t u64; #define BITS_PER_LONG 32 #endif /* CONFIG_64BIT */ -#define NSEC_PER_SEC1000000000L +#define NSEC_PER_SEC 1000000000L -#define KTIME_MAX((s64)~((u64)1 << 63)) +#define KTIME_MAX ((s64)~((u64)1 << 63)) #if (BITS_PER_LONG == 64) -#define KTIME_SEC_MAX(KTIME_MAX / NSEC_PER_SEC) +#define KTIME_SEC_MAX (KTIME_MAX / NSEC_PER_SEC) #else #define KTIME_SEC_MAXLONG_MAX #endif diff --git a/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.c index e69de29b..66a87ee4 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.c @@ -0,0 +1,330 @@ +#include + +extern void __static_parse_error(char *msg); +extern void __static_type_error(char *msg); +extern void __static_renaming(char *renaming, char *original); +extern void __static_condition_renaming(char *expression, char *renaming); + +void __static_initializer_default(); + +extern const bool __static_condition_default_52; +extern const bool __static_condition_default_43; +extern const bool __static_condition_default_44; +extern const bool __static_condition_default_56; +extern const bool __static_condition_default_36; +extern const bool __static_condition_default_39; +extern const bool __static_condition_default_55; +extern const bool __static_condition_default_60; +extern const bool __static_condition_default_58; +extern const bool __static_condition_default_61; +extern const bool __static_condition_default_57; +extern const bool __static_condition_default_59; +extern const bool __static_condition_default_35; +extern const bool __static_condition_default_45; +extern const bool __static_condition_default_50; +extern const bool __static_condition_default_29; +extern const bool __static_condition_default_54; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_31; +extern const bool __static_condition_default_42; +extern const bool __static_condition_default_51; +void __static_initializer_default() { +__static_renaming("__int8_t_0", "int8_t"); +__static_renaming("__int16_t_1", "int16_t"); +__static_renaming("__int32_t_2", "int32_t"); +__static_renaming("__int64_t_3", "int64_t"); +__static_renaming("__uint8_t_4", "uint8_t"); +__static_renaming("__uint16_t_5", "uint16_t"); +__static_renaming("__uint32_t_6", "uint32_t"); +__static_renaming("__uint64_t_7", "uint64_t"); +__static_renaming("__int_least8_t_8", "int_least8_t"); +__static_renaming("__int_least16_t_9", "int_least16_t"); +__static_renaming("__int_least32_t_10", "int_least32_t"); +__static_renaming("__int_least64_t_11", "int_least64_t"); +__static_renaming("__uint_least8_t_12", "uint_least8_t"); +__static_renaming("__uint_least16_t_13", "uint_least16_t"); +__static_renaming("__uint_least32_t_14", "uint_least32_t"); +__static_renaming("__uint_least64_t_15", "uint_least64_t"); +__static_renaming("__int_fast8_t_16", "int_fast8_t"); +__static_renaming("__int_fast16_t_17", "int_fast16_t"); +__static_renaming("__int_fast32_t_18", "int_fast32_t"); +__static_renaming("__int_fast64_t_19", "int_fast64_t"); +__static_renaming("__uint_fast8_t_20", "uint_fast8_t"); +__static_renaming("__uint_fast16_t_21", "uint_fast16_t"); +__static_renaming("__uint_fast32_t_22", "uint_fast32_t"); +__static_renaming("__uint_fast64_t_23", "uint_fast64_t"); +__static_renaming("__intptr_t_24", "intptr_t"); +__static_renaming("__uintptr_t_25", "uintptr_t"); +__static_renaming("__intmax_t_26", "intmax_t"); +__static_renaming("__uintmax_t_27", "uintmax_t"); +__static_renaming("__s32_28", "s32"); +__static_renaming("__s64_30", "s64"); +__static_renaming("__u64_32", "u64"); +__static_renaming("__ktime_set_34", "ktime_set"); +__static_renaming("__tmp_38", "tmp"); +__static_renaming("__sec_40", "sec"); +__static_renaming("__ktime_add_ns_41", "ktime_add_ns"); +__static_renaming("__time_delta_46", "time_delta"); +__static_renaming("__expires_47", "expires"); +__static_renaming("__tick_nohz_stop_sched_tick_48", "tick_nohz_stop_sched_tick"); +__static_renaming("__tick_nohz_stop_sched_tick_49", "tick_nohz_stop_sched_tick"); +__static_renaming("__main_64", "main"); + +__static_condition_renaming("__static_condition_default_29", "(defined __int8_t_defined)"); +__static_condition_renaming("__static_condition_default_31", "(defined __int8_t_defined)"); +__static_condition_renaming("__static_condition_default_35", "(defined __int8_t_defined) && !(defined CONFIG_64BIT) && !(defined CONFIG_KTIME_SCALAR)"); +__static_condition_renaming("__static_condition_default_36", "!(defined __int8_t_defined) && !(defined CONFIG_64BIT) && !(defined CONFIG_KTIME_SCALAR)"); +__static_condition_renaming("__static_condition_default_39", "(defined __int8_t_defined) && !(defined CONFIG_64BIT) && !(defined CONFIG_KTIME_SCALAR)"); +__static_condition_renaming("__static_condition_default_42", "(defined __int8_t_defined) && !(defined CONFIG_64BIT) && !(defined CONFIG_KTIME_SCALAR)"); +__static_condition_renaming("__static_condition_default_43", "!(defined __int8_t_defined) && !(defined CONFIG_64BIT) && !(defined CONFIG_KTIME_SCALAR)"); +__static_condition_renaming("__static_condition_default_44", "!(defined __int8_t_defined) && !(defined CONFIG_64BIT) && !(defined CONFIG_KTIME_SCALAR)"); +__static_condition_renaming("__static_condition_default_45", "!(defined __int8_t_defined) && !(defined CONFIG_64BIT) && !(defined CONFIG_KTIME_SCALAR)"); +__static_condition_renaming("__static_condition_default_50", "!(defined CONFIG_64BIT) && (defined CONFIG_KTIME_SCALAR) || (defined CONFIG_64BIT)"); +__static_condition_renaming("__static_condition_default_51", "!(defined __int8_t_defined) && !(defined CONFIG_64BIT) && (defined CONFIG_KTIME_SCALAR) || !(defined __int8_t_defined) && (defined CONFIG_64BIT)"); +__static_condition_renaming("__static_condition_default_52", "!(defined __int8_t_defined) && !(defined CONFIG_64BIT) && (defined CONFIG_KTIME_SCALAR) || !(defined __int8_t_defined) && (defined CONFIG_64BIT)"); +__static_condition_renaming("__static_condition_default_53", "(defined __int8_t_defined) && !(defined CONFIG_64BIT) && (defined CONFIG_KTIME_SCALAR) || (defined __int8_t_defined) && (defined CONFIG_64BIT)"); +__static_condition_renaming("__static_condition_default_54", "!(defined __int8_t_defined) && !(defined CONFIG_64BIT) && (defined CONFIG_KTIME_SCALAR) || !(defined __int8_t_defined) && (defined CONFIG_64BIT)"); +__static_condition_renaming("__static_condition_default_55", "(defined __int8_t_defined) && !(defined CONFIG_64BIT) && (defined CONFIG_KTIME_SCALAR) || (defined __int8_t_defined) && (defined CONFIG_64BIT)"); +__static_condition_renaming("__static_condition_default_56", "!(defined CONFIG_64BIT) && !(defined CONFIG_KTIME_SCALAR)"); +__static_condition_renaming("__static_condition_default_57", "!(defined __int8_t_defined) && !(defined CONFIG_64BIT) && !(defined CONFIG_KTIME_SCALAR)"); +__static_condition_renaming("__static_condition_default_58", "!(defined __int8_t_defined) && !(defined CONFIG_64BIT) && !(defined CONFIG_KTIME_SCALAR)"); +__static_condition_renaming("__static_condition_default_59", "(defined __int8_t_defined) && !(defined CONFIG_64BIT) && !(defined CONFIG_KTIME_SCALAR)"); +__static_condition_renaming("__static_condition_default_60", "!(defined __int8_t_defined) && !(defined CONFIG_64BIT) && !(defined CONFIG_KTIME_SCALAR)"); +__static_condition_renaming("__static_condition_default_61", "(defined __int8_t_defined) && !(defined CONFIG_64BIT) && !(defined CONFIG_KTIME_SCALAR)"); + +}; +typedef signed char __int8_t_0;// L36 +typedef short int __int16_t_1;// L37 +typedef int __int32_t_2;// L38 +typedef long int __int64_t_3;// L40 +typedef unsigned char __uint8_t_4;// L48 +typedef unsigned short int __uint16_t_5;// L49 +typedef unsigned int __uint32_t_6;// L51 +typedef unsigned long int __uint64_t_7;// L55 +typedef signed char __int_least8_t_8;// L65 +typedef short int __int_least16_t_9;// L66 +typedef int __int_least32_t_10;// L67 +typedef long int __int_least64_t_11;// L69 +typedef unsigned char __uint_least8_t_12;// L76 +typedef unsigned short int __uint_least16_t_13;// L77 +typedef unsigned int __uint_least32_t_14;// L78 +typedef unsigned long int __uint_least64_t_15;// L80 +typedef signed char __int_fast8_t_16;// L90 +typedef long int __int_fast16_t_17;// L92 +typedef long int __int_fast32_t_18;// L93 +typedef long int __int_fast64_t_19;// L94 +typedef unsigned char __uint_fast8_t_20;// L103 +typedef unsigned long int __uint_fast16_t_21;// L105 +typedef unsigned long int __uint_fast32_t_22;// L106 +typedef unsigned long int __uint_fast64_t_23;// L107 +typedef long int __intptr_t_24;// L119 +typedef unsigned long int __uintptr_t_25;// L122 +typedef long int __intmax_t_26;// L134 +typedef unsigned long int __uintmax_t_27;// L135 +typedef __int32_t_2 __s32_28;// L4 +typedef __int64_t_3 __s64_30;// L5 +typedef __uint64_t_7 __u64_32;// L6 + +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +static inline __s64_30 (__ktime_set_34) (const long __secs_33) { + +if (__static_condition_default_36) { + +{ +{ + + + +return ( __s64_30 ) __secs_33 * 1000000000L ;// L31 +} +} + + +} +} +__s64_30 (__ktime_add_ns_41) (__u64_32 __nsec_37) { + +if (__static_condition_default_43) { + +{ +{ + + + +__s64_30 __tmp_38;// L36 + +if ( __nsec_37 < 1000000000L )// L38 +{ +if (__static_condition_default_44) { + +{ +{ + + + + __tmp_38 = __nsec_37 ; // L39 +} +} +} +} +else +{ +if (__static_condition_default_45) { + +{ +{ + + + +unsigned long __sec_40= __nsec_37 / 1000000000L;// L41 + + __tmp_38 = __ktime_set_34 (( __s32_28 ) __sec_40 ) ; // L42 +} +} +} +} +return __tmp_38 ;// L45 +} +} + + +} +} +static __u64_32 (__tick_nohz_stop_sched_tick_48) () { + +if (__static_condition_default_50) { + +{ +{ + + + +__u64_32 __time_delta_46= ( __u64_32 ) 7881299347898368000;// L52 + +__s64_30 __expires_47;// L53 + +if (__static_condition_default_31) { +__static_type_error("invalid declaration of expires under this presence condition"); +} + +if (__static_condition_default_51) { +if ( __time_delta_46 < ( ( __s64_30 ) ~ ( ( __u64_32 ) 1 << 63 ) ) )// L55 +{ + __expires_47 = ( __time_delta_46 ) ; // L25:L56 +} +else +{ +if (__static_condition_default_52) { + __expires_47 = ( ( __s64_30 ) ~ ( ( __u64_32 ) 1 << 63 ) ) ; // L16:L58 +} +} +} +if (__static_condition_default_53) { +__static_type_error("invalid type found in ifelse statement"); +} +if (__static_condition_default_54) { +return __expires_47 ;// L60 +} +if (__static_condition_default_55) { +__static_type_error("invalid type found in return expression"); +} +} +} + + +} +} +static __u64_32 (__tick_nohz_stop_sched_tick_49) () { + +if (__static_condition_default_56) { + +{ +{ + + + +__u64_32 __time_delta_46= ( __u64_32 ) 7881299347898368000;// L52 + +__s64_30 __expires_47;// L53 + +if (__static_condition_default_31) { +__static_type_error("invalid declaration of expires under this presence condition"); +} + +if (__static_condition_default_57) { +if ( __time_delta_46 < ( ( __s64_30 ) ~ ( ( __u64_32 ) 1 << 63 ) ) )// L55 +{ + __expires_47 = __ktime_add_ns_41 ( __time_delta_46 ) ; // L56 +} +else +{ +if (__static_condition_default_58) { + __expires_47 = ( ( __s64_30 ) ~ ( ( __u64_32 ) 1 << 63 ) ) ; // L16:L58 +} +} +} +if (__static_condition_default_59) { +__static_type_error("invalid type found in ifelse statement"); +} +if (__static_condition_default_60) { +return __expires_47 ;// L60 +} +if (__static_condition_default_61) { +__static_type_error("invalid type found in return expression"); +} +} +} + + +} +} +int (__main_64) (int __argc_62, char * (* (__argv_63))) { + +{ +{ + + + +if (__static_condition_default_50) { + __tick_nohz_stop_sched_tick_48 ( ) ; // L65 +} +if (__static_condition_default_56) { + __tick_nohz_stop_sched_tick_49 ( ) ; // L65 +} +return 0 ;// L66 +} +} + + +} + diff --git a/fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.c b/fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.c index 8638069c..1de14306 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.c @@ -1,7 +1,7 @@ #include #include -#define UEVENT_BUFFER_SIZE2048/* buffer for the variables */ +#define UEVENT_BUFFER_SIZE 2048 /* buffer for the variables */ static char buf[UEVENT_BUFFER_SIZE]; static int buflen = 0; diff --git a/fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.desugared.c index 861d3c64..57777b41 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.desugared.c @@ -7,280 +7,284 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_183; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_1006; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_769; -extern const bool __static_condition_default_376; -extern const bool __static_condition_default_915; -extern const bool __static_condition_default_358; -extern const bool __static_condition_default_312; -extern const bool __static_condition_default_202; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_574; -extern const bool __static_condition_default_205; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_504; -extern const bool __static_condition_default_638; -extern const bool __static_condition_default_211; -extern const bool __static_condition_default_930; -extern const bool __static_condition_default_338; -extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_869; -extern const bool __static_condition_default_530; +extern const bool __static_condition_default_487; extern const bool __static_condition_default_569; -extern const bool __static_condition_default_383; -extern const bool __static_condition_default_782; -extern const bool __static_condition_default_835; -extern const bool __static_condition_default_490; -extern const bool __static_condition_default_498; -extern const bool __static_condition_default_348; -extern const bool __static_condition_default_753; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_389; -extern const bool __static_condition_default_495; -extern const bool __static_condition_default_522; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_652; -extern const bool __static_condition_default_124; -extern const bool __static_condition_default_396; -extern const bool __static_condition_default_294; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_694; -extern const bool __static_condition_default_1097; +extern const bool __static_condition_default_671; extern const bool __static_condition_default_512; -extern const bool __static_condition_default_841; +extern const bool __static_condition_default_77; +extern const bool __static_condition_default_530; extern const bool __static_condition_default_249; +extern const bool __static_condition_default_724; +extern const bool __static_condition_default_810; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_789; +extern const bool __static_condition_default_188; +extern const bool __static_condition_default_358; +extern const bool __static_condition_default_603; +extern const bool __static_condition_default_843; +extern const bool __static_condition_default_171; +extern const bool __static_condition_default_586; +extern const bool __static_condition_default_908; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_439; +extern const bool __static_condition_default_332; extern const bool __static_condition_default_761; -extern const bool __static_condition_default_291; -extern const bool __static_condition_default_671; -extern const bool __static_condition_default_524; -extern const bool __static_condition_default_445; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_748; +extern const bool __static_condition_default_314; +extern const bool __static_condition_default_383; +extern const bool __static_condition_default_289; +extern const bool __static_condition_default_334; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_374; +extern const bool __static_condition_default_964; +extern const bool __static_condition_default_268; +extern const bool __static_condition_default_247; +extern const bool __static_condition_default_1092; +extern const bool __static_condition_default_753; +extern const bool __static_condition_default_782; extern const bool __static_condition_default_892; -extern const bool __static_condition_default_1059; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_626; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_420; -extern const bool __static_condition_default_824; -extern const bool __static_condition_default_174; +extern const bool __static_condition_default_849; extern const bool __static_condition_default_515; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_418; -extern const bool __static_condition_default_218; -extern const bool __static_condition_default_54; -extern const bool __static_condition_default_579; -extern const bool __static_condition_default_171; -extern const bool __static_condition_default_884; -extern const bool __static_condition_default_622; -extern const bool __static_condition_default_863; -extern const bool __static_condition_default_1102; -extern const bool __static_condition_default_470; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_639; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_693; -extern const bool __static_condition_default_242; -extern const bool __static_condition_default_517; -extern const bool __static_condition_default_551; -extern const bool __static_condition_default_1016; -extern const bool __static_condition_default_843; -extern const bool __static_condition_default_728; -extern const bool __static_condition_default_342; -extern const bool __static_condition_default_1052; -extern const bool __static_condition_default_669; -extern const bool __static_condition_default_545; -extern const bool __static_condition_default_394; -extern const bool __static_condition_default_230; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_500; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_1008; -extern const bool __static_condition_default_1095; -extern const bool __static_condition_default_609; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_77; -extern const bool __static_condition_default_586; +extern const bool __static_condition_default_648; +extern const bool __static_condition_default_522; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_540; +extern const bool __static_condition_default_678; +extern const bool __static_condition_default_495; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_1099; +extern const bool __static_condition_default_973; extern const bool __static_condition_default_259; -extern const bool __static_condition_default_703; +extern const bool __static_condition_default_287; +extern const bool __static_condition_default_513; +extern const bool __static_condition_default_316; +extern const bool __static_condition_default_342; +extern const bool __static_condition_default_54; extern const bool __static_condition_default_754; -extern const bool __static_condition_default_279; -extern const bool __static_condition_default_540; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_409; -extern const bool __static_condition_default_849; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_318; -extern const bool __static_condition_default_314; -extern const bool __static_condition_default_1074; -extern const bool __static_condition_default_908; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_1044; -extern const bool __static_condition_default_737; -extern const bool __static_condition_default_808; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_199; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_835; +extern const bool __static_condition_default_1016; +extern const bool __static_condition_default_1115; extern const bool __static_condition_default_620; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_374; -extern const bool __static_condition_default_513; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_285; -extern const bool __static_condition_default_368; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_366; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_409; extern const bool __static_condition_default_462; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_474; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_879; -extern const bool __static_condition_default_565; +extern const bool __static_condition_default_456; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_254; +extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_1052; +extern const bool __static_condition_default_490; +extern const bool __static_condition_default_492; +extern const bool __static_condition_default_1010; extern const bool __static_condition_default_700; -extern const bool __static_condition_default_790; -extern const bool __static_condition_default_979; +extern const bool __static_condition_default_1111; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_859; +extern const bool __static_condition_default_710; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_853; +extern const bool __static_condition_default_1059; +extern const bool __static_condition_default_476; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_818; +extern const bool __static_condition_default_498; +extern const bool __static_condition_default_737; extern const bool __static_condition_default_260; -extern const bool __static_condition_default_762; -extern const bool __static_condition_default_1037; -extern const bool __static_condition_default_543; -extern const bool __static_condition_default_793; -extern const bool __static_condition_default_1100; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_554; -extern const bool __static_condition_default_716; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_332; -extern const bool __static_condition_default_814; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_194; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_718; -extern const bool __static_condition_default_724; -extern const bool __static_condition_default_780; -extern const bool __static_condition_default_1067; +extern const bool __static_condition_default_728; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_245; +extern const bool __static_condition_default_381; +extern const bool __static_condition_default_622; +extern const bool __static_condition_default_242; +extern const bool __static_condition_default_394; +extern const bool __static_condition_default_1106; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_770; extern const bool __static_condition_default_798; -extern const bool __static_condition_default_747; -extern const bool __static_condition_default_678; +extern const bool __static_condition_default_968; +extern const bool __static_condition_default_413; +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_664; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_312; +extern const bool __static_condition_default_348; extern const bool __static_condition_default_646; -extern const bool __static_condition_default_804; -extern const bool __static_condition_default_701; -extern const bool __static_condition_default_876; -extern const bool __static_condition_default_964; -extern const bool __static_condition_default_999; -extern const bool __static_condition_default_584; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_517; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_635; +extern const bool __static_condition_default_718; +extern const bool __static_condition_default_224; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_338; +extern const bool __static_condition_default_814; +extern const bool __static_condition_default_884; +extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_762; +extern const bool __static_condition_default_265; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_239; +extern const bool __static_condition_default_865; +extern const bool __static_condition_default_1008; extern const bool __static_condition_default_251; -extern const bool __static_condition_default_370; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_603; +extern const bool __static_condition_default_474; +extern const bool __static_condition_default_584; +extern const bool __static_condition_default_869; extern const bool __static_condition_default_992; +extern const bool __static_condition_default_300; +extern const bool __static_condition_default_366; +extern const bool __static_condition_default_183; +extern const bool __static_condition_default_716; +extern const bool __static_condition_default_1023; +extern const bool __static_condition_default_174; +extern const bool __static_condition_default_194; +extern const bool __static_condition_default_294; +extern const bool __static_condition_default_211; +extern const bool __static_condition_default_346; +extern const bool __static_condition_default_873; extern const bool __static_condition_default_297; +extern const bool __static_condition_default_1103; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_1109; +extern const bool __static_condition_default_236; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_702; +extern const bool __static_condition_default_769; extern const bool __static_condition_default_837; -extern const bool __static_condition_default_356; -extern const bool __static_condition_default_300; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_472; -extern const bool __static_condition_default_403; +extern const bool __static_condition_default_888; +extern const bool __static_condition_default_418; +extern const bool __static_condition_default_598; +extern const bool __static_condition_default_841; +extern const bool __static_condition_default_1037; +extern const bool __static_condition_default_202; +extern const bool __static_condition_default_524; +extern const bool __static_condition_default_939; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_847; +extern const bool __static_condition_default_291; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_863; +extern const bool __static_condition_default_364; +extern const bool __static_condition_default_489; +extern const bool __static_condition_default_652; +extern const bool __static_condition_default_804; +extern const bool __static_condition_default_609; +extern const bool __static_condition_default_930; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_1067; +extern const bool __static_condition_default_470; extern const bool __static_condition_default_687; +extern const bool __static_condition_default_368; +extern const bool __static_condition_default_790; +extern const bool __static_condition_default_1074; +extern const bool __static_condition_default_551; extern const bool __static_condition_default_957; +extern const bool __static_condition_default_396; +extern const bool __static_condition_default_1029; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_124; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_624; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_703; +extern const bool __static_condition_default_545; +extern const bool __static_condition_default_370; +extern const bool __static_condition_default_1105; +extern const bool __static_condition_default_1102; extern const bool __static_condition_default_283; -extern const bool __static_condition_default_973; -extern const bool __static_condition_default_239; -extern const bool __static_condition_default_245; -extern const bool __static_condition_default_873; -extern const bool __static_condition_default_254; -extern const bool __static_condition_default_276; -extern const bool __static_condition_default_810; -extern const bool __static_condition_default_818; -extern const bool __static_condition_default_364; -extern const bool __static_condition_default_722; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_289; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_802; -extern const bool __static_condition_default_888; -extern const bool __static_condition_default_664; -extern const bool __static_condition_default_247; -extern const bool __static_condition_default_865; -extern const bool __static_condition_default_272; -extern const bool __static_condition_default_334; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_1094; -extern const bool __static_condition_default_268; -extern const bool __static_condition_default_770; -extern const bool __static_condition_default_958; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_968; -extern const bool __static_condition_default_789; -extern const bool __static_condition_default_439; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_685; -extern const bool __static_condition_default_826; -extern const bool __static_condition_default_614; -extern const bool __static_condition_default_591; +extern const bool __static_condition_default_285; +extern const bool __static_condition_default_389; +extern const bool __static_condition_default_808; +extern const bool __static_condition_default_218; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_472; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_403; +extern const bool __static_condition_default_879; +extern const bool __static_condition_default_999; +extern const bool __static_condition_default_1108; +extern const bool __static_condition_default_1110; +extern const bool __static_condition_default_639; +extern const bool __static_condition_default_758; +extern const bool __static_condition_default_550; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_445; extern const bool __static_condition_default_895; -extern const bool __static_condition_default_316; -extern const bool __static_condition_default_224; -extern const bool __static_condition_default_381; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_847; +extern const bool __static_condition_default_614; +extern const bool __static_condition_default_981; +extern const bool __static_condition_default_318; +extern const bool __static_condition_default_387; +extern const bool __static_condition_default_1104; +extern const bool __static_condition_default_915; +extern const bool __static_condition_default_958; extern const bool __static_condition_default_434; -extern const bool __static_condition_default_236; +extern const bool __static_condition_default_781; extern const bool __static_condition_default_820; -extern const bool __static_condition_default_387; -extern const bool __static_condition_default_1082; -extern const bool __static_condition_default_188; -extern const bool __static_condition_default_265; -extern const bool __static_condition_default_748; -extern const bool __static_condition_default_1106; -extern const bool __static_condition_default_413; -extern const bool __static_condition_default_476; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_487; -extern const bool __static_condition_default_710; -extern const bool __static_condition_default_456; -extern const bool __static_condition_default_1023; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_648; +extern const bool __static_condition_default_826; +extern const bool __static_condition_default_544; extern const bool __static_condition_default_281; -extern const bool __static_condition_default_256; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_85; +extern const bool __static_condition_default_768; extern const bool __static_condition_default_794; -extern const bool __static_condition_default_981; -extern const bool __static_condition_default_346; -extern const bool __static_condition_default_660; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_624; -extern const bool __static_condition_default_939; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_492; -extern const bool __static_condition_default_702; -extern const bool __static_condition_default_1093; -extern const bool __static_condition_default_853; -extern const bool __static_condition_default_859; +extern const bool __static_condition_default_579; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_876; +extern const bool __static_condition_default_272; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_1044; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_747; +extern const bool __static_condition_default_256; +extern const bool __static_condition_default_1006; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_658; extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_758; -extern const bool __static_condition_default_258; +extern const bool __static_condition_default_722; +extern const bool __static_condition_default_356; +extern const bool __static_condition_default_500; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_276; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_669; +extern const bool __static_condition_default_230; extern const bool __static_condition_default_561; -extern const bool __static_condition_default_287; -extern const bool __static_condition_default_1010; -extern const bool __static_condition_default_1029; -extern const bool __static_condition_default_1092; -extern const bool __static_condition_default_598; -extern const bool __static_condition_default_956; +extern const bool __static_condition_default_376; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_660; extern const bool __static_condition_default_709; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_635; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_824; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_205; +extern const bool __static_condition_default_199; extern const bool __static_condition_default_945; +extern const bool __static_condition_default_1082; +extern const bool __static_condition_default_574; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_802; +extern const bool __static_condition_default_504; +extern const bool __static_condition_default_279; +extern const bool __static_condition_default_565; +extern const bool __static_condition_default_420; +extern const bool __static_condition_default_554; +extern const bool __static_condition_default_694; +extern const bool __static_condition_default_85; +extern const bool __static_condition_default_591; +extern const bool __static_condition_default_626; +extern const bool __static_condition_default_1036; void __static_initializer_default() { __static_renaming("____errno_location_0", "__errno_location"); __static_renaming("__ptrdiff_t_1", "ptrdiff_t"); @@ -549,11 +553,16 @@ __static_renaming("____fgets_alias_1015", "__fgets_alias"); __static_renaming("____fgets_chk_warn_1022", "__fgets_chk_warn"); __static_renaming("____cnt_1088", "__cnt"); __static_renaming("____cptr_1089", "__cptr"); +__static_renaming("__buf_1093", "buf"); +__static_renaming("__buf_1094", "buf"); +__static_renaming("__buf_1095", "buf"); __static_renaming("__buflen_1096", "buflen"); -__static_renaming("__add_uevent_var_1098", "add_uevent_var"); -__static_renaming("__add_uevent_var_1099", "add_uevent_var"); -__static_renaming("__input_add_uevent_modalias_var_1101", "input_add_uevent_modalias_var"); -__static_renaming("__main_1105", "main"); +__static_renaming("__len_1097", "len"); +__static_renaming("__len_1098", "len"); +__static_renaming("__add_uevent_var_1100", "add_uevent_var"); +__static_renaming("__add_uevent_var_1101", "add_uevent_var"); +__static_renaming("__input_add_uevent_modalias_var_1107", "input_add_uevent_modalias_var"); +__static_renaming("__main_1114", "main"); __static_condition_renaming("__static_condition_default_54", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); __static_condition_renaming("__static_condition_default_77", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); @@ -822,15 +831,19 @@ __static_condition_renaming("__static_condition_default_1082", "!(defined __STRI __static_condition_renaming("__static_condition_default_1090", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __USE_EXTERN_INLINES)"); __static_condition_renaming("__static_condition_default_1091", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); __static_condition_renaming("__static_condition_default_1092", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1093", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) || (defined __STRICT_ANSI__) && !(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_1094", "(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_1095", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_1097", "(defined CONFIG_HOTPLUG)"); -__static_condition_renaming("__static_condition_default_1100", "!(defined CONFIG_HOTPLUG)"); -__static_condition_renaming("__static_condition_default_1102", "!(defined CONFIG_HOTPLUG)"); -__static_condition_renaming("__static_condition_default_1106", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1099", "(defined __need___FILE) && (defined CONFIG_HOTPLUG)"); +__static_condition_renaming("__static_condition_default_1102", "(defined CONFIG_HOTPLUG)"); +__static_condition_renaming("__static_condition_default_1103", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined CONFIG_HOTPLUG) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined CONFIG_HOTPLUG) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined CONFIG_HOTPLUG) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined CONFIG_HOTPLUG) || (defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined CONFIG_HOTPLUG)"); +__static_condition_renaming("__static_condition_default_1104", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined CONFIG_HOTPLUG)"); +__static_condition_renaming("__static_condition_default_1105", "(defined __need___FILE) && (defined CONFIG_HOTPLUG)"); +__static_condition_renaming("__static_condition_default_1106", "!(defined CONFIG_HOTPLUG)"); +__static_condition_renaming("__static_condition_default_1108", "!(defined CONFIG_HOTPLUG)"); +__static_condition_renaming("__static_condition_default_1109", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) || (defined __STRICT_ANSI__) && !(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_1110", "(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_1111", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_1115", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -if (__static_condition_default_1106) +if (__static_condition_default_1115) { __static_parse_error("Unable to parse"); } @@ -1341,22 +1354,37 @@ extern char * ((____fgets_chk_warn_1022) (char * __restrict ____s_1017, __siz /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ +static char __buf_1093[2048];// L6 +static char __buf_1094[2048];// L6 +static char __buf_1095[2048];// L6 static int __buflen_1096= 0;// L7 -int (__add_uevent_var_1098) () { +int (__add_uevent_var_1100) () { { -if (__static_condition_default_1097) { +if (__static_condition_default_1102) { { { -if (__static_condition_default_1097) { +int __len_1097= __sprintf_425 (& __buf_1093 [ __buflen_1096 ],"MODALIAS=");// L12 + +int __len_1098= __sprintf_425 (& __buf_1095 [ __buflen_1096 ],"MODALIAS=");// L12 + +if (__static_condition_default_1099) { __static_type_error("invalid declaration of len under this presence condition"); } -__static_type_error("type error : no valid expression"); // L13 +if (__static_condition_default_1103) { + __buflen_1096 += __len_1097 + 1 ; // L13 +} +if (__static_condition_default_1104) { + __buflen_1096 += __len_1098 + 1 ; // L13 +} +if (__static_condition_default_1105) { +__static_type_error("type error") ; // L13 +} return 0 ;// L14 } } @@ -1365,10 +1393,10 @@ return 0 ;// L14 } }} -int (__add_uevent_var_1099) () { +int (__add_uevent_var_1101) () { { -if (__static_condition_default_1100) { +if (__static_condition_default_1106) { { { @@ -1383,40 +1411,48 @@ return 0 ;// L18 } }} -int (__input_add_uevent_modalias_var_1101) () { +int (__input_add_uevent_modalias_var_1107) () { { { -if (__static_condition_default_1097) { -if ( __add_uevent_var_1098 ( ) )// L23 +if (__static_condition_default_1102) { +if ( __add_uevent_var_1100 ( ) )// L23 { return - 12 ;// L24 } } -if (__static_condition_default_1102) { -if ( __add_uevent_var_1099 ( ) )// L23 +if (__static_condition_default_1108) { +if ( __add_uevent_var_1101 ( ) )// L23 { return - 12 ;// L24 } } -__static_type_error("type error : no valid expression"); // L26 +if (__static_condition_default_1109) { + __buf_1093 [ __buflen_1096 - 1 ] = 'x' ; // L26 +} +if (__static_condition_default_1110) { + __buf_1094 [ __buflen_1096 - 1 ] = 'x' ; // L26 +} +if (__static_condition_default_1111) { + __buf_1095 [ __buflen_1096 - 1 ] = 'x' ; // L26 +} return 0 ;// L27 } } } -int (__main_1105) (int __argc_1103, char * (* (__argv_1104))) { +int (__main_1114) (int __argc_1112, char * (* (__argv_1113))) { { { - __input_add_uevent_modalias_var_1101 ( ) ; // L32 + __input_add_uevent_modalias_var_1107 ( ) ; // L32 return 0 ;// L33 } } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.desugared.c index c9e860c3..748a6a21 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.desugared.c @@ -7,14 +7,14 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); +extern const bool __static_condition_default_10; +extern const bool __static_condition_default_14; +extern const bool __static_condition_default_7; +extern const bool __static_condition_default_4; +extern const bool __static_condition_default_8; extern const bool __static_condition_default_16; extern const bool __static_condition_default_15; extern const bool __static_condition_default_9; -extern const bool __static_condition_default_7; -extern const bool __static_condition_default_8; -extern const bool __static_condition_default_4; -extern const bool __static_condition_default_14; -extern const bool __static_condition_default_10; void __static_initializer_default() { __static_renaming("__irq_domain_simple_ops_0", "irq_domain_simple_ops"); __static_renaming("__irq_2", "irq"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.c b/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.c index 36f482ac..2502ee96 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.c @@ -77,3 +77,4 @@ int main(void) { omap3pandora_init(); // (1) return 0; +} diff --git a/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.desugared.c index e69de29b..f38e43fb 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.desugared.c @@ -0,0 +1,292 @@ +#include + +extern void __static_parse_error(char *msg); +extern void __static_type_error(char *msg); +extern void __static_renaming(char *renaming, char *original); +extern void __static_condition_renaming(char *expression, char *renaming); + +void __static_initializer_default(); + +extern const bool __static_condition_default_18; +extern const bool __static_condition_default_14; +extern const bool __static_condition_default_26; +extern const bool __static_condition_default_23; +extern const bool __static_condition_default_8; +extern const bool __static_condition_default_19; +extern const bool __static_condition_default_27; +extern const bool __static_condition_default_30; +extern const bool __static_condition_default_20; +extern const bool __static_condition_default_24; +extern const bool __static_condition_default_15; +extern const bool __static_condition_default_25; +extern const bool __static_condition_default_31; +extern const bool __static_condition_default_11; +void __static_initializer_default() { +__static_renaming("____assert_fail_4", "__assert_fail"); +__static_renaming("__nondet_5", "nondet"); +__static_renaming("___omap3_sram_configure_core_dpll_6", "_omap3_sram_configure_core_dpll"); +__static_renaming("__omap3_configure_core_dpll_7", "omap3_configure_core_dpll"); +__static_renaming("__some_int_9", "some_int"); +__static_renaming("__omap3_sram_restore_context_10", "omap3_sram_restore_context"); +__static_renaming("__omap3_core_dpll_m2_set_rate_12", "omap3_core_dpll_m2_set_rate"); +__static_renaming("__omap3_core_dpll_m2_set_rate_13", "omap3_core_dpll_m2_set_rate"); +__static_renaming("__v_16", "v"); +__static_renaming("___omap2_init_reprogram_sdrc_17", "_omap2_init_reprogram_sdrc"); +__static_renaming("__omap34xx_sram_init_21", "omap34xx_sram_init"); +__static_renaming("__omap34xx_sram_init_22", "omap34xx_sram_init"); +__static_renaming("__omap_sram_init_28", "omap_sram_init"); +__static_renaming("__omap_sdrc_init_29", "omap_sdrc_init"); +__static_renaming("__omap3pandora_init_32", "omap3pandora_init"); +__static_renaming("__main_33", "main"); + +__static_condition_renaming("__static_condition_default_8", "(defined CONFIG_ARCH_OMAP3)"); +__static_condition_renaming("__static_condition_default_11", "(defined CONFIG_ARCH_OMAP3) && (defined CONFIG_PM)"); +__static_condition_renaming("__static_condition_default_14", "(defined CONFIG_ARCH_OMAP3) && !(defined CONFIG_PM)"); +__static_condition_renaming("__static_condition_default_15", "(defined CONFIG_ARCH_OMAP3) && (defined CONFIG_PM)"); +__static_condition_renaming("__static_condition_default_18", "(defined CONFIG_ARCH_OMAP3)"); +__static_condition_renaming("__static_condition_default_19", "(defined CONFIG_ARCH_OMAP3) && !(defined CONFIG_PM)"); +__static_condition_renaming("__static_condition_default_20", "(defined CONFIG_ARCH_OMAP3) && (defined CONFIG_PM)"); +__static_condition_renaming("__static_condition_default_23", "!(defined CONFIG_ARCH_OMAP3)"); +__static_condition_renaming("__static_condition_default_24", "(defined CONFIG_ARCH_OMAP3)"); +__static_condition_renaming("__static_condition_default_25", "(defined CONFIG_ARCH_OMAP3) && (defined CONFIG_PM)"); +__static_condition_renaming("__static_condition_default_26", "(defined CONFIG_ARCH_OMAP3) && !(defined CONFIG_PM)"); +__static_condition_renaming("__static_condition_default_27", "(defined CONFIG_ARCH_OMAP3) && (defined CONFIG_PM)"); +__static_condition_renaming("__static_condition_default_30", "!(defined CONFIG_ARCH_OMAP3)"); +__static_condition_renaming("__static_condition_default_31", "(defined CONFIG_ARCH_OMAP3)"); + +}; + +extern void (____assert_fail_4) (const char * (____assertion_0), const char * (____file_1), unsigned int ____line_2, const char * (____function_3));// L1:L3 +int (__nondet_5) () { + +{ +{ + + + +return 42 ;// L5 +} +} + + +} +static int * (___omap3_sram_configure_core_dpll_6);// L9 +int (__omap3_configure_core_dpll_7) () { + +if (__static_condition_default_8) { + +{ +{ + + + +( ( ___omap3_sram_configure_core_dpll_6 ) ? ( void ) ( 0 ) : ____assert_fail_4 ("_omap3_sram_configure_core_dpll","63878ac.c",16, __PRETTY_FUNCTION__ ) ) ; // L13:L15 +return * ___omap3_sram_configure_core_dpll_6 ;// L16 +} +} + + +} +} +static int __some_int_9= 1;// L20 +void (__omap3_sram_restore_context_10) (void ) { + +if (__static_condition_default_11) { + +{ +{ + + + + ___omap3_sram_configure_core_dpll_6 = & __some_int_9 ; // L24 +} +} + + +} +} +int (__omap3_core_dpll_m2_set_rate_12) () { + +if (__static_condition_default_14) { + +{ +{ + + + + __omap3_configure_core_dpll_7 ( ) ; // L30 +return 0 ;// L31 +} +} + + +} +} +int (__omap3_core_dpll_m2_set_rate_13) () { + +if (__static_condition_default_15) { + +{ +{ + + + + __omap3_configure_core_dpll_7 ( ) ; // L30 +return 0 ;// L31 +} +} + + +} +} +int (___omap2_init_reprogram_sdrc_17) (void ) { + +if (__static_condition_default_18) { + +{ +{ + + + +int __v_16;// L36 + +if (__static_condition_default_19) { + __v_16 = __omap3_core_dpll_m2_set_rate_12 ( ) ; // L38 +} +if (__static_condition_default_20) { + __v_16 = __omap3_core_dpll_m2_set_rate_13 ( ) ; // L38 +} +return __v_16 ;// L40 +} +} + + +} +} +int (__omap34xx_sram_init_21) (void ) { + +if (__static_condition_default_23) { + +{ +{ + + + +return 0 ;// L49 +} +} + + +} +} +int (__omap34xx_sram_init_22) (void ) { + +if (__static_condition_default_24) { + +{ +{ + + + +if (__static_condition_default_25) { + __omap3_sram_restore_context_10 ( ) ; // L47 +} +if (__static_condition_default_26) { +return 0 ;// L49 +} +if (__static_condition_default_27) { +return 0 ;// L49 +} +} +} + + +} +} +int (__omap_sram_init_28) (void ) { + +{ +{ + + + +if ( __nondet_5 ( ) )// L54 +{ +if (__static_condition_default_23) { + __omap34xx_sram_init_21 ( ) ; // L55 +} +if (__static_condition_default_24) { + __omap34xx_sram_init_22 ( ) ; // L55 +} +} +return 0 ;// L57 +} +} + + +} +void (__omap_sdrc_init_29) () { + +{ +{ + + + + __omap_sram_init_28 ( ) ; // L62 +if ( __nondet_5 ( ) )// L64 +{ +if (__static_condition_default_30) { + +{ +{ + + + +} +} +} +if (__static_condition_default_31) { + +{ +{ + + + + ___omap2_init_reprogram_sdrc_17 ( ) ; // L66 +} +} +} +} +} +} + + +} +void (__omap3pandora_init_32) (void ) { + +{ +{ + + + + __omap_sdrc_init_29 ( ) ; // L73 +} +} + + +} +int (__main_33) (void ) { + +{ +{ + + + + __omap3pandora_init_32 ( ) ; // L78 +return 0 ;// L79 +} +} + + +} + diff --git a/fonda/cpp_testsuite/varBugs/LINUX/6515e48932c.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/6515e48932c.desugared.c index b773195f..ec2f1f71 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/6515e48932c.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/6515e48932c.desugared.c @@ -7,11 +7,11 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_4; extern const bool __static_condition_default_11; -extern const bool __static_condition_default_3; -extern const bool __static_condition_default_10; extern const bool __static_condition_default_1; +extern const bool __static_condition_default_10; +extern const bool __static_condition_default_3; +extern const bool __static_condition_default_4; extern const bool __static_condition_default_5; void __static_initializer_default() { __static_renaming("__omap2_set_globals_242x_0", "omap2_set_globals_242x"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/657e9649e74.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/657e9649e74.desugared.c index ea1dd740..97ac7eac 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/657e9649e74.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/657e9649e74.desugared.c @@ -7,19 +7,19 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); +extern const bool __static_condition_default_17; +extern const bool __static_condition_default_24; +extern const bool __static_condition_default_29; +extern const bool __static_condition_default_38; +extern const bool __static_condition_default_39; extern const bool __static_condition_default_16; +extern const bool __static_condition_default_21; extern const bool __static_condition_default_26; +extern const bool __static_condition_default_20; +extern const bool __static_condition_default_37; extern const bool __static_condition_default_28; -extern const bool __static_condition_default_17; extern const bool __static_condition_default_23; -extern const bool __static_condition_default_38; -extern const bool __static_condition_default_21; extern const bool __static_condition_default_27; -extern const bool __static_condition_default_39; -extern const bool __static_condition_default_37; -extern const bool __static_condition_default_29; -extern const bool __static_condition_default_24; -extern const bool __static_condition_default_20; void __static_initializer_default() { __static_renaming("____assert_fail_4", "__assert_fail"); __static_renaming("____assert_perror_fail_9", "__assert_perror_fail"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.desugared.c index f11acd7b..f2695454 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.desugared.c @@ -7,14 +7,14 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_2; -extern const bool __static_condition_default_6; -extern const bool __static_condition_default_15; extern const bool __static_condition_default_4; -extern const bool __static_condition_default_14; extern const bool __static_condition_default_16; +extern const bool __static_condition_default_14; extern const bool __static_condition_default_13; +extern const bool __static_condition_default_6; extern const bool __static_condition_default_8; +extern const bool __static_condition_default_2; +extern const bool __static_condition_default_15; void __static_initializer_default() { __static_renaming("__i2c_master_send_0", "i2c_master_send"); __static_renaming("__codec_hw_write_1", "codec_hw_write"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.desugared.c index 0f053f89..bda053bd 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.desugared.c @@ -8,15 +8,15 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); extern const bool __static_condition_default_10; -extern const bool __static_condition_default_13; -extern const bool __static_condition_default_8; -extern const bool __static_condition_default_2; -extern const bool __static_condition_default_1; extern const bool __static_condition_default_12; +extern const bool __static_condition_default_11; extern const bool __static_condition_default_7; -extern const bool __static_condition_default_9; +extern const bool __static_condition_default_2; +extern const bool __static_condition_default_13; +extern const bool __static_condition_default_8; extern const bool __static_condition_default_4; -extern const bool __static_condition_default_11; +extern const bool __static_condition_default_9; +extern const bool __static_condition_default_1; void __static_initializer_default() { __static_renaming("__i2c_dw_init_0", "i2c_dw_init"); __static_renaming("__i2c_dw_init_3", "i2c_dw_init"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.c index 9ad888a3..7348c617 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.c @@ -8,9 +8,9 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); extern const bool __static_condition_default_17; +extern const bool __static_condition_default_15; extern const bool __static_condition_default_14; extern const bool __static_condition_default_16; -extern const bool __static_condition_default_15; void __static_initializer_default() { __static_renaming("__malloc_1", "malloc"); __static_renaming("__free_3", "free"); @@ -60,13 +60,13 @@ long __err_10= 0;// L21 void * (__ptr_11)= ( void * ) 0;// L22 -if ( ( __hdr_8 = __malloc_1 (2 * sizeof(void*)) ) == ( void * ) 0 )// L24 +if ( ( __hdr_8 = malloc (2 * sizeof(void*)) ) == ( void * ) 0 )// L24 { return - 12 ;// L25 } __mod_9 = ( void * ) __hdr_8 ; // L27 if (__static_condition_default_14) { -( __mod_9 [ 0 ] ) = __malloc_1 (32) ; // L14:L30 +( __mod_9 [ 0 ] ) = malloc (32) ; // L14:L30 } if (__static_condition_default_14) { if ( ! ( __mod_9 [ 0 ] ) )// L31 @@ -87,10 +87,10 @@ goto free_mod_3; } } if (__static_condition_default_15) { - __ptr_11 = __malloc_1 (512) ; // L38 + __ptr_11 = malloc (512) ; // L38 } if (__static_condition_default_14) { - __ptr_11 = __malloc_1 (512) ; // L38 + __ptr_11 = malloc (512) ; // L38 } if ( ! __ptr_11 )// L39 { @@ -143,14 +143,14 @@ return 0 ;// L56 free_core_1: { - __free_3 (( __mod_9 [ 1 ] )) ; // L60 +free (( __mod_9 [ 1 ] )) ; // L60 } } if (__static_condition_default_16) { free_percpu_2: { - __free_3 (( __mod_9 [ 0 ] )) ; // L63 +free (( __mod_9 [ 0 ] )) ; // L63 } } if (__static_condition_default_16) { @@ -160,7 +160,7 @@ if (__static_condition_default_16) { free_hdr_4: { - __free_3 ( __hdr_8 ) ; // L67 +free ( __hdr_8 ) ; // L67 } } } @@ -174,7 +174,7 @@ if (__static_condition_default_17) { free_hdr_7: { - __free_3 ( __hdr_8 ) ; // L67 +free ( __hdr_8 ) ; // L67 } } } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.desugared.c index 30174159..b2f33452 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.desugared.c @@ -7,13 +7,13 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); +extern const bool __static_condition_default_20; extern const bool __static_condition_default_5; +extern const bool __static_condition_default_17; +extern const bool __static_condition_default_6; extern const bool __static_condition_default_11; -extern const bool __static_condition_default_21; extern const bool __static_condition_default_12; -extern const bool __static_condition_default_20; -extern const bool __static_condition_default_6; -extern const bool __static_condition_default_17; +extern const bool __static_condition_default_21; void __static_initializer_default() { __static_renaming("__nondet_0", "nondet"); __static_renaming("__some_int_1", "some_int"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/7c6048b7c83.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/7c6048b7c83.desugared.c index 93603a4b..6b9cc61d 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/7c6048b7c83.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/7c6048b7c83.desugared.c @@ -10,11 +10,11 @@ void __static_initializer_default(); extern const bool __static_condition_default_12; extern const bool __static_condition_default_14; extern const bool __static_condition_default_1; +extern const bool __static_condition_default_10; extern const bool __static_condition_default_3; extern const bool __static_condition_default_13; extern const bool __static_condition_default_4; extern const bool __static_condition_default_5; -extern const bool __static_condition_default_10; extern const bool __static_condition_default_11; void __static_initializer_default() { __static_renaming("__backlight_device_unregister_0", "backlight_device_unregister"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/8c8296223f3.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/8c8296223f3.desugared.c index 75828031..c755ecdb 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/8c8296223f3.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/8c8296223f3.desugared.c @@ -7,68 +7,68 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_262; extern const bool __static_condition_default_274; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_362; -extern const bool __static_condition_default_353; -extern const bool __static_condition_default_737; -extern const bool __static_condition_default_582; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_809; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_297; extern const bool __static_condition_default_61; -extern const bool __static_condition_default_430; +extern const bool __static_condition_default_265; +extern const bool __static_condition_default_309; +extern const bool __static_condition_default_427; +extern const bool __static_condition_default_380; extern const bool __static_condition_default_433; -extern const bool __static_condition_default_624; +extern const bool __static_condition_default_379; +extern const bool __static_condition_default_247; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_283; +extern const bool __static_condition_default_737; extern const bool __static_condition_default_424; -extern const bool __static_condition_default_350; -extern const bool __static_condition_default_415; -extern const bool __static_condition_default_580; -extern const bool __static_condition_default_596; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_582; +extern const bool __static_condition_default_815; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_605; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_816; extern const bool __static_condition_default_808; -extern const bool __static_condition_default_810; -extern const bool __static_condition_default_268; +extern const bool __static_condition_default_262; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_630; +extern const bool __static_condition_default_628; extern const bool __static_condition_default_303; +extern const bool __static_condition_default_294; +extern const bool __static_condition_default_342; +extern const bool __static_condition_default_300; +extern const bool __static_condition_default_418; extern const bool __static_condition_default_306; -extern const bool __static_condition_default_247; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_250; extern const bool __static_condition_default_595; -extern const bool __static_condition_default_277; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_362; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_216; +extern const bool __static_condition_default_326; extern const bool __static_condition_default_603; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_289; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_803; +extern const bool __static_condition_default_421; +extern const bool __static_condition_default_580; +extern const bool __static_condition_default_415; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_277; +extern const bool __static_condition_default_596; +extern const bool __static_condition_default_353; +extern const bool __static_condition_default_268; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_256; +extern const bool __static_condition_default_810; extern const bool __static_condition_default_244; -extern const bool __static_condition_default_265; +extern const bool __static_condition_default_430; +extern const bool __static_condition_default_624; +extern const bool __static_condition_default_289; +extern const bool __static_condition_default_622; extern const bool __static_condition_default_396; -extern const bool __static_condition_default_815; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_283; -extern const bool __static_condition_default_297; -extern const bool __static_condition_default_628; -extern const bool __static_condition_default_605; -extern const bool __static_condition_default_309; -extern const bool __static_condition_default_326; -extern const bool __static_condition_default_418; +extern const bool __static_condition_default_350; +extern const bool __static_condition_default_395; extern const bool __static_condition_default_68; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_622; -extern const bool __static_condition_default_294; -extern const bool __static_condition_default_816; -extern const bool __static_condition_default_630; -extern const bool __static_condition_default_380; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_256; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_427; -extern const bool __static_condition_default_421; -extern const bool __static_condition_default_342; -extern const bool __static_condition_default_216; -extern const bool __static_condition_default_300; -extern const bool __static_condition_default_379; void __static_initializer_default() { __static_renaming("____errno_location_0", "__errno_location"); __static_renaming("__ptrdiff_t_1", "ptrdiff_t"); @@ -600,12 +600,12 @@ struct ____anonymous_tag_71_72 { unsigned int ____w_termsig_73 : 7;// L72 unsigned int ____w_coredump_74 : 1;// L73 unsigned int ____w_retcode_75 : 8;// L74 -unsigned int : 16;// L75 +unsigned int __anon_id_0_76 : 16;// L75 }; struct ____anonymous_tag_77_78 { unsigned int ____w_stopval_79 : 8;// L87 unsigned int ____w_stopsig_80 : 8;// L88 -unsigned int : 16;// L89 +unsigned int __anon_id_1_81 : 16;// L89 }; union __wait_82 { int __w_status_83;// L68 @@ -1391,10 +1391,10 @@ if (__static_condition_default_803) { __pm_len_801 = sizeof(long) * 10 ; // L6:L40 if (__static_condition_default_808) { - __pm_buffer_799 = __malloc_487 ( __pm_len_801 ) ; // L41 + __pm_buffer_799 = malloc ( __pm_len_801 ) ; // L41 } if (__static_condition_default_809) { - __pm_buffer_799 = __malloc_488 ( __pm_len_801 ) ; // L41 + __pm_buffer_799 = malloc ( __pm_len_801 ) ; // L41 } if (__static_condition_default_810) { __static_type_error("type error") ; // L41 diff --git a/fonda/cpp_testsuite/varBugs/LINUX/91ea8207168.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/91ea8207168.desugared.c index 6ee2c1e9..5a6cba2b 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/91ea8207168.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/91ea8207168.desugared.c @@ -7,37 +7,37 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_222; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_205; -extern const bool __static_condition_default_209; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_254; -extern const bool __static_condition_default_196; -extern const bool __static_condition_default_225; extern const bool __static_condition_default_260; -extern const bool __static_condition_default_27; -extern const bool __static_condition_default_248; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_261; -extern const bool __static_condition_default_251; -extern const bool __static_condition_default_236; -extern const bool __static_condition_default_237; -extern const bool __static_condition_default_262; -extern const bool __static_condition_default_256; extern const bool __static_condition_default_229; -extern const bool __static_condition_default_189; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_230; +extern const bool __static_condition_default_256; +extern const bool __static_condition_default_236; +extern const bool __static_condition_default_239; +extern const bool __static_condition_default_244; extern const bool __static_condition_default_204; -extern const bool __static_condition_default_247; -extern const bool __static_condition_default_243; -extern const bool __static_condition_default_259; +extern const bool __static_condition_default_264; extern const bool __static_condition_default_263; +extern const bool __static_condition_default_262; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_196; extern const bool __static_condition_default_238; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_230; -extern const bool __static_condition_default_239; extern const bool __static_condition_default_265; +extern const bool __static_condition_default_243; +extern const bool __static_condition_default_222; +extern const bool __static_condition_default_261; +extern const bool __static_condition_default_189; +extern const bool __static_condition_default_247; +extern const bool __static_condition_default_209; +extern const bool __static_condition_default_237; +extern const bool __static_condition_default_225; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_205; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_27; +extern const bool __static_condition_default_254; +extern const bool __static_condition_default_251; +extern const bool __static_condition_default_259; void __static_initializer_default() { __static_renaming("____assert_fail_4", "__assert_fail"); __static_renaming("____assert_perror_fail_9", "__assert_perror_fail"); @@ -315,10 +315,10 @@ if (__static_condition_default_248) { if (__static_condition_default_249) { - __memset_31 ( __pfnnid_map_232 ,0xff,sizeof(unsigned char[1])) ; // L52 + __memset_31 ( __pfnnid_map_232 ,0xff,sizeof(( __pfnnid_map_232 ))) ; // L52 } if (__static_condition_default_250) { - __memset_32 ( __pfnnid_map_232 ,0xff,sizeof(unsigned char[1])) ; // L52 + __memset_32 ( __pfnnid_map_232 ,0xff,sizeof(( __pfnnid_map_232 ))) ; // L52 } if (__static_condition_default_251) { __static_type_error("type error") ; // L52 diff --git a/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.desugared.c index bd53a7a6..30d10e1f 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.desugared.c @@ -7,44 +7,44 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_260; -extern const bool __static_condition_default_262; -extern const bool __static_condition_default_273; -extern const bool __static_condition_default_239; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_226; -extern const bool __static_condition_default_241; extern const bool __static_condition_default_259; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_243; -extern const bool __static_condition_default_254; -extern const bool __static_condition_default_210; extern const bool __static_condition_default_240; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_266; -extern const bool __static_condition_default_245; -extern const bool __static_condition_default_253; extern const bool __static_condition_default_261; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_205; +extern const bool __static_condition_default_190; +extern const bool __static_condition_default_197; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_241; extern const bool __static_condition_default_242; +extern const bool __static_condition_default_245; +extern const bool __static_condition_default_260; +extern const bool __static_condition_default_273; +extern const bool __static_condition_default_205; +extern const bool __static_condition_default_206; extern const bool __static_condition_default_258; +extern const bool __static_condition_default_269; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_266; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_272; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_226; extern const bool __static_condition_default_265; -extern const bool __static_condition_default_206; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_270; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_254; +extern const bool __static_condition_default_239; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_243; extern const bool __static_condition_default_271; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_190; -extern const bool __static_condition_default_272; -extern const bool __static_condition_default_28; extern const bool __static_condition_default_19; +extern const bool __static_condition_default_262; +extern const bool __static_condition_default_28; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_210; extern const bool __static_condition_default_230; -extern const bool __static_condition_default_269; +extern const bool __static_condition_default_263; extern const bool __static_condition_default_246; -extern const bool __static_condition_default_197; -extern const bool __static_condition_default_264; void __static_initializer_default() { __static_renaming("____assert_fail_4", "__assert_fail"); __static_renaming("____assert_perror_fail_9", "__assert_perror_fail"); @@ -376,10 +376,10 @@ if (__static_condition_default_259) { if (__static_condition_default_260) { - __memset_32 ( __pfnnid_map_231 ,0xff,sizeof(unsigned char[1])) ; // L53 + __memset_32 ( __pfnnid_map_231 ,0xff,sizeof(( __pfnnid_map_231 ))) ; // L53 } if (__static_condition_default_261) { - __memset_33 ( __pfnnid_map_231 ,0xff,sizeof(unsigned char[1])) ; // L53 + __memset_33 ( __pfnnid_map_231 ,0xff,sizeof(( __pfnnid_map_231 ))) ; // L53 } if (__static_condition_default_262) { __static_type_error("type error") ; // L53 @@ -415,10 +415,10 @@ if (__static_condition_default_264) { if (__static_condition_default_265) { - __memset_32 ( __pfnnid_map_231 ,0xff,sizeof(unsigned char[1])) ; // L53 + __memset_32 ( __pfnnid_map_231 ,0xff,sizeof(( __pfnnid_map_231 ))) ; // L53 } if (__static_condition_default_266) { - __memset_33 ( __pfnnid_map_231 ,0xff,sizeof(unsigned char[1])) ; // L53 + __memset_33 ( __pfnnid_map_231 ,0xff,sizeof(( __pfnnid_map_231 ))) ; // L53 } if (__static_condition_default_267) { __static_type_error("type error") ; // L53 diff --git a/fonda/cpp_testsuite/varBugs/LINUX/bc8cec0dff0.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/bc8cec0dff0.desugared.c index 28c6fa3d..048aedb1 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/bc8cec0dff0.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/bc8cec0dff0.desugared.c @@ -7,11 +7,11 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_15; +extern const bool __static_condition_default_9; extern const bool __static_condition_default_12; extern const bool __static_condition_default_10; extern const bool __static_condition_default_16; -extern const bool __static_condition_default_9; +extern const bool __static_condition_default_15; void __static_initializer_default() { __static_renaming("__size_t_0", "size_t"); __static_renaming("__malloc_2", "malloc"); @@ -50,7 +50,7 @@ if (__static_condition_default_9) { - __wbuf_5 = __malloc_2 (32) ; // L17 + __wbuf_5 = malloc (32) ; // L17 if ( ! __wbuf_5 )// L18 { return - 12 ;// L19 @@ -71,7 +71,7 @@ if (__static_condition_default_10) { - __wbuf_5 = __malloc_2 (32) ; // L17 + __wbuf_5 = malloc (32) ; // L17 if ( ! __wbuf_5 )// L18 { return - 12 ;// L19 diff --git a/fonda/cpp_testsuite/varBugs/LINUX/c708c57e247.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/c708c57e247.desugared.c index 1d4739a2..1fb5342a 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/c708c57e247.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/c708c57e247.desugared.c @@ -7,9 +7,9 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_12; extern const bool __static_condition_default_6; extern const bool __static_condition_default_11; +extern const bool __static_condition_default_12; void __static_initializer_default() { __static_renaming("____u64_0", "__u64"); __static_renaming("__parm_block_1", "parm_block"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d530db0db90.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/d530db0db90.desugared.c index a01f0e28..6d5ffd88 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/d530db0db90.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/d530db0db90.desugared.c @@ -7,68 +7,68 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_243; -extern const bool __static_condition_default_349; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_361; -extern const bool __static_condition_default_246; +extern const bool __static_condition_default_261; extern const bool __static_condition_default_285; -extern const bool __static_condition_default_426; -extern const bool __static_condition_default_417; extern const bool __static_condition_default_264; -extern const bool __static_condition_default_420; -extern const bool __static_condition_default_261; -extern const bool __static_condition_default_414; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_629; -extern const bool __static_condition_default_215; -extern const bool __static_condition_default_627; -extern const bool __static_condition_default_594; -extern const bool __static_condition_default_240; +extern const bool __static_condition_default_423; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_604; +extern const bool __static_condition_default_394; +extern const bool __static_condition_default_243; +extern const bool __static_condition_default_804; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_60; +extern const bool __static_condition_default_595; +extern const bool __static_condition_default_293; extern const bool __static_condition_default_237; +extern const bool __static_condition_default_378; +extern const bool __static_condition_default_811; +extern const bool __static_condition_default_594; +extern const bool __static_condition_default_803; extern const bool __static_condition_default_273; -extern const bool __static_condition_default_252; -extern const bool __static_condition_default_423; -extern const bool __static_condition_default_581; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_352; +extern const bool __static_condition_default_629; +extern const bool __static_condition_default_279; +extern const bool __static_condition_default_288; extern const bool __static_condition_default_267; -extern const bool __static_condition_default_579; extern const bool __static_condition_default_432; -extern const bool __static_condition_default_595; -extern const bool __static_condition_default_279; -extern const bool __static_condition_default_803; +extern const bool __static_condition_default_252; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_805; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_420; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_579; +extern const bool __static_condition_default_361; +extern const bool __static_condition_default_308; +extern const bool __static_condition_default_240; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_349; +extern const bool __static_condition_default_429; extern const bool __static_condition_default_806; -extern const bool __static_condition_default_234; -extern const bool __static_condition_default_302; -extern const bool __static_condition_default_394; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_810; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_258; extern const bool __static_condition_default_379; +extern const bool __static_condition_default_414; +extern const bool __static_condition_default_581; +extern const bool __static_condition_default_627; +extern const bool __static_condition_default_67; extern const bool __static_condition_default_341; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_305; +extern const bool __static_condition_default_215; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_302; +extern const bool __static_condition_default_234; +extern const bool __static_condition_default_426; extern const bool __static_condition_default_325; -extern const bool __static_condition_default_811; -extern const bool __static_condition_default_67; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_378; -extern const bool __static_condition_default_805; -extern const bool __static_condition_default_60; +extern const bool __static_condition_default_602; extern const bool __static_condition_default_276; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_429; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_308; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_604; -extern const bool __static_condition_default_352; -extern const bool __static_condition_default_810; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_804; -extern const bool __static_condition_default_736; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_305; +extern const bool __static_condition_default_282; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -595,12 +595,12 @@ struct ____anonymous_tag_70_71 { unsigned int ____w_termsig_72 : 7;// L72 unsigned int ____w_coredump_73 : 1;// L73 unsigned int ____w_retcode_74 : 8;// L74 -unsigned int : 16;// L75 +unsigned int __anon_id_0_75 : 16;// L75 }; struct ____anonymous_tag_76_77 { unsigned int ____w_stopval_78 : 8;// L87 unsigned int ____w_stopsig_79 : 8;// L88 -unsigned int : 16;// L89 +unsigned int __anon_id_1_80 : 16;// L89 }; union __wait_81 { int __w_status_82;// L68 diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.desugared.c index 80be4401..61ffcd83 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.desugared.c @@ -7,76 +7,76 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_833; -extern const bool __static_condition_default_316; -extern const bool __static_condition_default_443; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_815; -extern const bool __static_condition_default_254; -extern const bool __static_condition_default_74; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_302; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_260; +extern const bool __static_condition_default_821; +extern const bool __static_condition_default_322; extern const bool __static_condition_default_437; -extern const bool __static_condition_default_392; -extern const bool __static_condition_default_409; -extern const bool __static_condition_default_434; -extern const bool __static_condition_default_269; -extern const bool __static_condition_default_593; -extern const bool __static_condition_default_824; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_443; +extern const bool __static_condition_default_339; +extern const bool __static_condition_default_266; +extern const bool __static_condition_default_319; extern const bool __static_condition_default_616; +extern const bool __static_condition_default_287; +extern const bool __static_condition_default_251; +extern const bool __static_condition_default_595; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_440; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_831; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_366; +extern const bool __static_condition_default_618; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_434; +extern const bool __static_condition_default_816; +extern const bool __static_condition_default_833; +extern const bool __static_condition_default_643; +extern const bool __static_condition_default_316; extern const bool __static_condition_default_310; +extern const bool __static_condition_default_281; +extern const bool __static_condition_default_290; +extern const bool __static_condition_default_428; +extern const bool __static_condition_default_392; +extern const bool __static_condition_default_641; +extern const bool __static_condition_default_296; extern const bool __static_condition_default_832; -extern const bool __static_condition_default_750; -extern const bool __static_condition_default_307; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_251; extern const bool __static_condition_default_278; -extern const bool __static_condition_default_81; +extern const bool __static_condition_default_269; +extern const bool __static_condition_default_74; extern const bool __static_condition_default_275; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_281; -extern const bool __static_condition_default_366; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_643; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_393; +extern const bool __static_condition_default_820; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_272; extern const bool __static_condition_default_635; +extern const bool __static_condition_default_824; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_375; extern const bool __static_condition_default_609; -extern const bool __static_condition_default_431; -extern const bool __static_condition_default_408; -extern const bool __static_condition_default_831; -extern const bool __static_condition_default_816; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_287; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_296; +extern const bool __static_condition_default_814; +extern const bool __static_condition_default_815; +extern const bool __static_condition_default_750; +extern const bool __static_condition_default_608; extern const bool __static_condition_default_446; -extern const bool __static_condition_default_257; extern const bool __static_condition_default_248; -extern const bool __static_condition_default_266; -extern const bool __static_condition_default_339; +extern const bool __static_condition_default_81; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_822; +extern const bool __static_condition_default_293; extern const bool __static_condition_default_263; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_307; +extern const bool __static_condition_default_409; extern const bool __static_condition_default_818; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_313; -extern const bool __static_condition_default_814; -extern const bool __static_condition_default_440; -extern const bool __static_condition_default_302; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_641; -extern const bool __static_condition_default_817; extern const bool __static_condition_default_826; -extern const bool __static_condition_default_260; -extern const bool __static_condition_default_618; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_821; -extern const bool __static_condition_default_322; -extern const bool __static_condition_default_319; -extern const bool __static_condition_default_820; -extern const bool __static_condition_default_272; -extern const bool __static_condition_default_428; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_595; -extern const bool __static_condition_default_290; -extern const bool __static_condition_default_822; +extern const bool __static_condition_default_254; +extern const bool __static_condition_default_593; +extern const bool __static_condition_default_408; void __static_initializer_default() { __static_renaming("____assert_fail_4", "__assert_fail"); __static_renaming("____assert_perror_fail_9", "__assert_perror_fail"); @@ -613,12 +613,12 @@ struct ____anonymous_tag_84_85 { unsigned int ____w_termsig_86 : 7;// L72 unsigned int ____w_coredump_87 : 1;// L73 unsigned int ____w_retcode_88 : 8;// L74 -unsigned int : 16;// L75 +unsigned int __anon_id_0_89 : 16;// L75 }; struct ____anonymous_tag_90_91 { unsigned int ____w_stopval_92 : 8;// L87 unsigned int ____w_stopsig_93 : 8;// L88 -unsigned int : 16;// L89 +unsigned int __anon_id_1_94 : 16;// L89 }; union __wait_95 { int __w_status_96;// L68 diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d6c7e113959.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/d6c7e113959.desugared.c index aeb23b0b..91a67809 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/d6c7e113959.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/d6c7e113959.desugared.c @@ -7,13 +7,13 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_13; +extern const bool __static_condition_default_8; extern const bool __static_condition_default_9; -extern const bool __static_condition_default_4; extern const bool __static_condition_default_14; extern const bool __static_condition_default_10; extern const bool __static_condition_default_5; -extern const bool __static_condition_default_8; +extern const bool __static_condition_default_13; +extern const bool __static_condition_default_4; void __static_initializer_default() { __static_renaming("__max8660_pdata_from_dt_2", "max8660_pdata_from_dt"); __static_renaming("__max8660_pdata_from_dt_3", "max8660_pdata_from_dt"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.desugared.c index b3431162..926397b0 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.desugared.c @@ -7,70 +7,70 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_308; -extern const bool __static_condition_default_798; +extern const bool __static_condition_default_276; +extern const bool __static_condition_default_810; +extern const bool __static_condition_default_60; +extern const bool __static_condition_default_249; extern const bool __static_condition_default_432; -extern const bool __static_condition_default_237; -extern const bool __static_condition_default_394; +extern const bool __static_condition_default_417; extern const bool __static_condition_default_581; +extern const bool __static_condition_default_67; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_414; +extern const bool __static_condition_default_800; +extern const bool __static_condition_default_378; +extern const bool __static_condition_default_285; extern const bool __static_condition_default_426; +extern const bool __static_condition_default_394; +extern const bool __static_condition_default_379; extern const bool __static_condition_default_799; -extern const bool __static_condition_default_810; -extern const bool __static_condition_default_420; extern const bool __static_condition_default_811; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_594; -extern const bool __static_condition_default_423; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_240; -extern const bool __static_condition_default_801; +extern const bool __static_condition_default_325; extern const bool __static_condition_default_282; -extern const bool __static_condition_default_234; -extern const bool __static_condition_default_252; -extern const bool __static_condition_default_414; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_60; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_379; -extern const bool __static_condition_default_800; -extern const bool __static_condition_default_67; -extern const bool __static_condition_default_215; -extern const bool __static_condition_default_293; extern const bool __static_condition_default_579; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_629; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_273; -extern const bool __static_condition_default_325; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_429; -extern const bool __static_condition_default_285; +extern const bool __static_condition_default_361; +extern const bool __static_condition_default_237; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_395; extern const bool __static_condition_default_261; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_423; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_215; +extern const bool __static_condition_default_299; extern const bool __static_condition_default_809; -extern const bool __static_condition_default_812; -extern const bool __static_condition_default_378; extern const bool __static_condition_default_279; +extern const bool __static_condition_default_812; +extern const bool __static_condition_default_595; +extern const bool __static_condition_default_308; +extern const bool __static_condition_default_234; +extern const bool __static_condition_default_243; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_420; +extern const bool __static_condition_default_801; extern const bool __static_condition_default_302; -extern const bool __static_condition_default_341; +extern const bool __static_condition_default_429; +extern const bool __static_condition_default_240; extern const bool __static_condition_default_305; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_361; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_243; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_276; -extern const bool __static_condition_default_604; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_252; +extern const bool __static_condition_default_629; +extern const bool __static_condition_default_273; +extern const bool __static_condition_default_798; extern const bool __static_condition_default_816; -extern const bool __static_condition_default_627; -extern const bool __static_condition_default_602; +extern const bool __static_condition_default_341; extern const bool __static_condition_default_349; extern const bool __static_condition_default_352; -extern const bool __static_condition_default_595; +extern const bool __static_condition_default_604; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_627; +extern const bool __static_condition_default_594; +extern const bool __static_condition_default_288; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -601,12 +601,12 @@ struct ____anonymous_tag_70_71 { unsigned int ____w_termsig_72 : 7;// L72 unsigned int ____w_coredump_73 : 1;// L73 unsigned int ____w_retcode_74 : 8;// L74 -unsigned int : 16;// L75 +unsigned int __anon_id_0_75 : 16;// L75 }; struct ____anonymous_tag_76_77 { unsigned int ____w_stopval_78 : 8;// L87 unsigned int ____w_stopsig_79 : 8;// L88 -unsigned int : 16;// L89 +unsigned int __anon_id_1_80 : 16;// L89 }; union __wait_81 { int __w_status_82;// L68 diff --git a/fonda/cpp_testsuite/varBugs/LINUX/e1fbd9210d5.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/e1fbd9210d5.desugared.c index bfd5df8b..634fe8ee 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/e1fbd9210d5.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/e1fbd9210d5.desugared.c @@ -7,282 +7,282 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_646; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_891; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_412; -extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_393; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_543; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_244; extern const bool __static_condition_default_382; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_217; -extern const bool __static_condition_default_1100; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_187; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_638; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_858; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_248; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_753; -extern const bool __static_condition_default_53; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_311; -extern const bool __static_condition_default_1102; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_862; +extern const bool __static_condition_default_380; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_503; extern const bool __static_condition_default_536; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_388; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_198; -extern const bool __static_condition_default_317; -extern const bool __static_condition_default_780; -extern const bool __static_condition_default_1097; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_872; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_632; -extern const bool __static_condition_default_755; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_661; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_963; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_489; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_753; +extern const bool __static_condition_default_419; +extern const bool __static_condition_default_875; extern const bool __static_condition_default_883; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_914; +extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_894; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_488; extern const bool __static_condition_default_692; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_539; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_512; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_282; extern const bool __static_condition_default_759; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_963; -extern const bool __static_condition_default_875; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_613; +extern const bool __static_condition_default_663; extern const bool __static_condition_default_789; -extern const bool __static_condition_default_907; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_769; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_846; -extern const bool __static_condition_default_549; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_347; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_76; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_431; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_781; extern const bool __static_condition_default_761; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_1066; extern const bool __static_condition_default_537; -extern const bool __static_condition_default_793; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_701; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_568; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_1099; extern const bool __static_condition_default_444; -extern const bool __static_condition_default_438; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_907; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_455; +extern const bool __static_condition_default_544; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_337; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_686; extern const bool __static_condition_default_633; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_267; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_248; extern const bool __static_condition_default_801; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_779; +extern const bool __static_condition_default_699; extern const bool __static_condition_default_745; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_357; -extern const bool __static_condition_default_1101; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_408; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_564; -extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_645; -extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_402; -extern const bool __static_condition_default_313; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_76; +extern const bool __static_condition_default_583; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_204; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_1009; extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_541; extern const bool __static_condition_default_193; -extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_637; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_670; +extern const bool __static_condition_default_1042; extern const bool __static_condition_default_693; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_590; -extern const bool __static_condition_default_894; -extern const bool __static_condition_default_204; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_367; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_311; +extern const bool __static_condition_default_677; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_550; +extern const bool __static_condition_default_235; extern const bool __static_condition_default_395; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_223; extern const bool __static_condition_default_365; -extern const bool __static_condition_default_1105; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_887; -extern const bool __static_condition_default_290; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_709; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_419; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_677; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_779; -extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_488; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_512; -extern const bool __static_condition_default_1107; -extern const bool __static_condition_default_380; -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_650; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_585; extern const bool __static_condition_default_210; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_1096; -extern const bool __static_condition_default_315; -extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_685; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_747; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_842; extern const bool __static_condition_default_386; -extern const bool __static_condition_default_956; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_337; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_549; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_721; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_1097; extern const bool __static_condition_default_274; -extern const bool __static_condition_default_929; -extern const bool __static_condition_default_1106; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_846; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_955; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_84; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_891; +extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_636; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_333; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_1100; +extern const bool __static_condition_default_597; extern const bool __static_condition_default_702; +extern const bool __static_condition_default_842; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_367; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_791; +extern const bool __static_condition_default_645; extern const bool __static_condition_default_756; -extern const bool __static_condition_default_787; -extern const bool __static_condition_default_1099; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_347; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_187; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_1107; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_929; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_1096; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_559; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_238; extern const bool __static_condition_default_634; -extern const bool __static_condition_default_848; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_515; +extern const bool __static_condition_default_1106; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_619; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_1101; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_1102; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_1105; +extern const bool __static_condition_default_747; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_769; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_539; extern const bool __static_condition_default_944; -extern const bool __static_condition_default_559; -extern const bool __static_condition_default_583; -extern const bool __static_condition_default_613; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_803; -extern const bool __static_condition_default_670; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_388; extern const bool __static_condition_default_170; -extern const bool __static_condition_default_333; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_957; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_955; -extern const bool __static_condition_default_461; -extern const bool __static_condition_default_967; +extern const bool __static_condition_default_290; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_852; extern const bool __static_condition_default_521; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_834; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_568; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.desugared.c index 52980200..44ee6af2 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.desugared.c @@ -7,11 +7,11 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_4; extern const bool __static_condition_default_9; extern const bool __static_condition_default_3; extern const bool __static_condition_default_5; extern const bool __static_condition_default_6; +extern const bool __static_condition_default_4; extern const bool __static_condition_default_10; void __static_initializer_default() { __static_renaming("__nondet_0", "nondet"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/e67bc51e574.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/e67bc51e574.desugared.c index f00f36f5..3452f45e 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/e67bc51e574.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/e67bc51e574.desugared.c @@ -7,9 +7,9 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_4; extern const bool __static_condition_default_8; extern const bool __static_condition_default_3; +extern const bool __static_condition_default_4; void __static_initializer_default() { __static_renaming("__trace_dump_stack_1", "trace_dump_stack"); __static_renaming("__trace_dump_stack_2", "trace_dump_stack"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.desugared.c index 9107e779..bd3fbab5 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.desugared.c @@ -7,36 +7,36 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_40; +extern const bool __static_condition_default_47; extern const bool __static_condition_default_65; -extern const bool __static_condition_default_32; -extern const bool __static_condition_default_59; -extern const bool __static_condition_default_67; -extern const bool __static_condition_default_83; -extern const bool __static_condition_default_70; +extern const bool __static_condition_default_42; extern const bool __static_condition_default_48; extern const bool __static_condition_default_69; -extern const bool __static_condition_default_57; -extern const bool __static_condition_default_72; +extern const bool __static_condition_default_66; +extern const bool __static_condition_default_70; +extern const bool __static_condition_default_32; +extern const bool __static_condition_default_39; extern const bool __static_condition_default_75; -extern const bool __static_condition_default_34; extern const bool __static_condition_default_23; -extern const bool __static_condition_default_33; +extern const bool __static_condition_default_58; +extern const bool __static_condition_default_68; +extern const bool __static_condition_default_59; extern const bool __static_condition_default_25; -extern const bool __static_condition_default_24; -extern const bool __static_condition_default_42; -extern const bool __static_condition_default_47; extern const bool __static_condition_default_77; -extern const bool __static_condition_default_22; -extern const bool __static_condition_default_58; -extern const bool __static_condition_default_41; -extern const bool __static_condition_default_81; -extern const bool __static_condition_default_39; +extern const bool __static_condition_default_40; extern const bool __static_condition_default_60; -extern const bool __static_condition_default_74; -extern const bool __static_condition_default_68; +extern const bool __static_condition_default_81; extern const bool __static_condition_default_76; -extern const bool __static_condition_default_66; +extern const bool __static_condition_default_41; +extern const bool __static_condition_default_74; +extern const bool __static_condition_default_24; +extern const bool __static_condition_default_34; +extern const bool __static_condition_default_57; +extern const bool __static_condition_default_83; +extern const bool __static_condition_default_33; +extern const bool __static_condition_default_67; +extern const bool __static_condition_default_22; +extern const bool __static_condition_default_72; void __static_initializer_default() { __static_renaming("____assert_fail_4", "__assert_fail"); __static_renaming("____assert_perror_fail_9", "__assert_perror_fail"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.desugared.c index 3bd10346..5ed4f464 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.desugared.c @@ -7,85 +7,85 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_426; +extern const bool __static_condition_default_276; +extern const bool __static_condition_default_832; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_414; extern const bool __static_condition_default_581; -extern const bool __static_condition_default_811; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_305; -extern const bool __static_condition_default_815; extern const bool __static_condition_default_821; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_215; -extern const bool __static_condition_default_414; +extern const bool __static_condition_default_804; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_423; +extern const bool __static_condition_default_234; +extern const bool __static_condition_default_807; extern const bool __static_condition_default_308; -extern const bool __static_condition_default_243; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_240; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_833; -extern const bool __static_condition_default_629; -extern const bool __static_condition_default_595; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_429; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_736; +extern const bool __static_condition_default_67; +extern const bool __static_condition_default_621; extern const bool __static_condition_default_820; -extern const bool __static_condition_default_279; +extern const bool __static_condition_default_252; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_815; extern const bool __static_condition_default_296; -extern const bool __static_condition_default_325; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_828; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_273; +extern const bool __static_condition_default_802; extern const bool __static_condition_default_819; -extern const bool __static_condition_default_604; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_67; -extern const bool __static_condition_default_829; +extern const bool __static_condition_default_261; +extern const bool __static_condition_default_426; +extern const bool __static_condition_default_822; +extern const bool __static_condition_default_279; +extern const bool __static_condition_default_237; extern const bool __static_condition_default_285; -extern const bool __static_condition_default_594; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_623; extern const bool __static_condition_default_432; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_808; -extern const bool __static_condition_default_802; -extern const bool __static_condition_default_261; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_579; -extern const bool __static_condition_default_827; -extern const bool __static_condition_default_378; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_834; +extern const bool __static_condition_default_594; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_604; extern const bool __static_condition_default_824; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_826; extern const bool __static_condition_default_420; -extern const bool __static_condition_default_252; -extern const bool __static_condition_default_804; -extern const bool __static_condition_default_395; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_595; +extern const bool __static_condition_default_60; +extern const bool __static_condition_default_352; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_305; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_579; +extern const bool __static_condition_default_243; extern const bool __static_condition_default_302; -extern const bool __static_condition_default_237; -extern const bool __static_condition_default_349; -extern const bool __static_condition_default_379; -extern const bool __static_condition_default_394; -extern const bool __static_condition_default_361; -extern const bool __static_condition_default_803; +extern const bool __static_condition_default_828; +extern const bool __static_condition_default_833; +extern const bool __static_condition_default_808; extern const bool __static_condition_default_602; -extern const bool __static_condition_default_832; -extern const bool __static_condition_default_234; -extern const bool __static_condition_default_352; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_423; +extern const bool __static_condition_default_811; extern const bool __static_condition_default_264; -extern const bool __static_condition_default_822; -extern const bool __static_condition_default_276; +extern const bool __static_condition_default_273; +extern const bool __static_condition_default_361; +extern const bool __static_condition_default_394; +extern const bool __static_condition_default_349; +extern const bool __static_condition_default_627; +extern const bool __static_condition_default_827; extern const bool __static_condition_default_818; -extern const bool __static_condition_default_60; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_258; +extern const bool __static_condition_default_240; +extern const bool __static_condition_default_429; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_378; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_829; +extern const bool __static_condition_default_215; extern const bool __static_condition_default_341; -extern const bool __static_condition_default_627; -extern const bool __static_condition_default_823; +extern const bool __static_condition_default_325; +extern const bool __static_condition_default_379; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_629; +extern const bool __static_condition_default_826; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -634,12 +634,12 @@ struct ____anonymous_tag_70_71 { unsigned int ____w_termsig_72 : 7;// L72 unsigned int ____w_coredump_73 : 1;// L73 unsigned int ____w_retcode_74 : 8;// L74 -unsigned int : 16;// L75 +unsigned int __anon_id_0_75 : 16;// L75 }; struct ____anonymous_tag_76_77 { unsigned int ____w_stopval_78 : 8;// L87 unsigned int ____w_stopsig_79 : 8;// L88 -unsigned int : 16;// L89 +unsigned int __anon_id_1_80 : 16;// L89 }; union __wait_81 { int __w_status_82;// L68 diff --git a/fonda/cpp_testsuite/varBugs/LINUX/f3d83e24154.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/f3d83e24154.desugared.c index f1e15fa4..925c0f26 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/f3d83e24154.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/f3d83e24154.desugared.c @@ -7,24 +7,24 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_5; -extern const bool __static_condition_default_176; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_212; -extern const bool __static_condition_default_224; -extern const bool __static_condition_default_230; +extern const bool __static_condition_default_196; +extern const bool __static_condition_default_191; extern const bool __static_condition_default_209; -extern const bool __static_condition_default_222; +extern const bool __static_condition_default_231; +extern const bool __static_condition_default_232; +extern const bool __static_condition_default_230; extern const bool __static_condition_default_225; +extern const bool __static_condition_default_14; +extern const bool __static_condition_default_224; extern const bool __static_condition_default_221; -extern const bool __static_condition_default_196; -extern const bool __static_condition_default_191; -extern const bool __static_condition_default_192; +extern const bool __static_condition_default_5; +extern const bool __static_condition_default_212; +extern const bool __static_condition_default_176; extern const bool __static_condition_default_183; extern const bool __static_condition_default_216; -extern const bool __static_condition_default_232; -extern const bool __static_condition_default_14; -extern const bool __static_condition_default_231; +extern const bool __static_condition_default_192; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_222; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/2d22902d080.desugared.c b/fonda/cpp_testsuite/varBugs/MARLIN/2d22902d080.desugared.c index ca41f77e..3d40dde7 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/2d22902d080.desugared.c +++ b/fonda/cpp_testsuite/varBugs/MARLIN/2d22902d080.desugared.c @@ -7,20 +7,20 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); +extern const bool __static_condition_default_190; +extern const bool __static_condition_default_13; extern const bool __static_condition_default_227; +extern const bool __static_condition_default_175; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_211; extern const bool __static_condition_default_215; extern const bool __static_condition_default_195; extern const bool __static_condition_default_222; +extern const bool __static_condition_default_208; extern const bool __static_condition_default_220; -extern const bool __static_condition_default_191; -extern const bool __static_condition_default_13; -extern const bool __static_condition_default_190; extern const bool __static_condition_default_223; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_211; -extern const bool __static_condition_default_208; extern const bool __static_condition_default_221; -extern const bool __static_condition_default_175; +extern const bool __static_condition_default_191; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/2db384a21d6.c b/fonda/cpp_testsuite/varBugs/MARLIN/2db384a21d6.c index fa216561..5187f19e 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/2db384a21d6.c +++ b/fonda/cpp_testsuite/varBugs/MARLIN/2db384a21d6.c @@ -8,7 +8,7 @@ void serial_echopair_P_l(const char *s_P, unsigned long v) { printf("%s", s_P); #ifndef DISABLE_M503 -void Config_PrintSettings(bool forReplay){ +void Config_PrintSettings(unsigned short forReplay){ #ifdef MESH_BED_LEVELING SERIAL_ECHOPAIR(" X", MESH_NUM_X_POINTS); // ERROR @@ -21,6 +21,6 @@ void Config_PrintSettings(bool forReplay){ int main(int argc, char **argv) { - Config_PrintSettings(false); + Config_PrintSettings(0); return 0; } diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/2db384a21d6.desugared.c b/fonda/cpp_testsuite/varBugs/MARLIN/2db384a21d6.desugared.c index b87fa9c3..8e84d86c 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/2db384a21d6.desugared.c +++ b/fonda/cpp_testsuite/varBugs/MARLIN/2db384a21d6.desugared.c @@ -7,19 +7,21 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); +extern const bool __static_condition_default_12; extern const bool __static_condition_default_6; -extern const bool __static_condition_default_7; +extern const bool __static_condition_default_5; +extern const bool __static_condition_default_11; void __static_initializer_default() { __static_renaming("__serial_echopair_P_l_2", "serial_echopair_P_l"); -__static_renaming("__main_5", "main"); +__static_renaming("__Config_PrintSettings_4", "Config_PrintSettings"); +__static_renaming("__main_9", "main"); +__static_renaming("__main_10", "main"); -__static_condition_renaming("__static_condition_default_6", "(defined DISABLE_M503)"); -__static_condition_renaming("__static_condition_default_7", "!(defined DISABLE_M503)"); +__static_condition_renaming("__static_condition_default_5", "!(defined MESH_BED_LEVELING) && !(defined DISABLE_M503)"); +__static_condition_renaming("__static_condition_default_6", "(defined MESH_BED_LEVELING) && !(defined DISABLE_M503)"); +__static_condition_renaming("__static_condition_default_11", "(defined DISABLE_M503)"); +__static_condition_renaming("__static_condition_default_12", "!(defined DISABLE_M503)"); -if (__static_condition_default_7) -{ -__static_parse_error("Unable to parse"); -} }; void (__serial_echopair_P_l_2) (const char * (__s_P_0), unsigned long __v_1) { @@ -36,7 +38,21 @@ __static_type_error("type error : no valid expression"); // L7 } -int (__main_5) (int __argc_3, char * (* (__argv_4))) { +void (__Config_PrintSettings_4) (unsigned short __forReplay_3) { + +{ +if (__static_condition_default_5) { + +{ +{ + + + +} +} + + +} if (__static_condition_default_6) { @@ -45,7 +61,66 @@ if (__static_condition_default_6) { -__static_type_error("type error : no valid expression"); // L24 +do +{ + +{ +{ + + + + __serial_echopair_P_l_2 (" X",7) ; // L5 +} +} +} +while( 0 );// L5:L14 +do +{ + +{ +{ + + + + __serial_echopair_P_l_2 (" Y",7) ; // L5 +} +} +} +while( 0 );// L5:L15 +} +} + + +} + +}} +int (__main_9) (int __argc_7, char * (* (__argv_8))) { + +if (__static_condition_default_11) { + +{ +{ + + + +__static_type_error("type error") ; // L24 +return 0 ;// L25 +} +} + + +} +} +int (__main_10) (int __argc_7, char * (* (__argv_8))) { + +if (__static_condition_default_12) { + +{ +{ + + + + __Config_PrintSettings_4 (0) ; // L24 return 0 ;// L25 } } diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/30248214c7f.desugared.c b/fonda/cpp_testsuite/varBugs/MARLIN/30248214c7f.desugared.c index 21d8b6f4..870ecc17 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/30248214c7f.desugared.c +++ b/fonda/cpp_testsuite/varBugs/MARLIN/30248214c7f.desugared.c @@ -7,280 +7,280 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_313; +extern const bool __static_condition_default_382; +extern const bool __static_condition_default_1043; extern const bool __static_condition_default_380; -extern const bool __static_condition_default_613; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_1111; -extern const bool __static_condition_default_311; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_846; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_735; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_721; +extern const bool __static_condition_default_365; extern const bool __static_condition_default_1104; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_702; -extern const bool __static_condition_default_431; -extern const bool __static_condition_default_382; -extern const bool __static_condition_default_461; -extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_408; -extern const bool __static_condition_default_769; +extern const bool __static_condition_default_791; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_963; +extern const bool __static_condition_default_619; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_583; extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_198; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_204; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_633; extern const bool __static_condition_default_747; -extern const bool __static_condition_default_875; +extern const bool __static_condition_default_512; +extern const bool __static_condition_default_649; extern const bool __static_condition_default_684; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_894; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_299; extern const bool __static_condition_default_801; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_488; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_311; extern const bool __static_condition_default_550; -extern const bool __static_condition_default_417; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_878; extern const bool __static_condition_default_701; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_412; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_53; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_187; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_632; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_649; +extern const bool __static_condition_default_813; extern const bool __static_condition_default_955; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_753; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_894; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_536; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_521; -extern const bool __static_condition_default_543; +extern const bool __static_condition_default_1109; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_613; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_549; extern const bool __static_condition_default_793; -extern const bool __static_condition_default_568; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_347; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_284; +extern const bool __static_condition_default_559; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_488; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_759; extern const bool __static_condition_default_1105; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_552; extern const bool __static_condition_default_755; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_590; -extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_258; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_471; extern const bool __static_condition_default_645; -extern const bool __static_condition_default_1103; -extern const bool __static_condition_default_803; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_438; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_355; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_980; extern const bool __static_condition_default_597; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_419; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_646; extern const bool __static_condition_default_842; -extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_386; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_388; -extern const bool __static_condition_default_677; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_914; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_887; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_1027; extern const bool __static_condition_default_788; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_1110; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_929; -extern const bool __static_condition_default_670; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_787; +extern const bool __static_condition_default_244; extern const bool __static_condition_default_248; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_583; -extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_357; -extern const bool __static_condition_default_907; -extern const bool __static_condition_default_1106; +extern const bool __static_condition_default_891; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_489; +extern const bool __static_condition_default_375; extern const bool __static_condition_default_868; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_559; +extern const bool __static_condition_default_685; extern const bool __static_condition_default_553; +extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_702; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_929; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_455; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_521; +extern const bool __static_condition_default_288; extern const bool __static_condition_default_564; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_486; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_84; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_761; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_536; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_846; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_670; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_907; extern const bool __static_condition_default_491; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_998; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_347; +extern const bool __static_condition_default_769; +extern const bool __static_condition_default_386; +extern const bool __static_condition_default_1073; extern const bool __static_condition_default_76; -extern const bool __static_condition_default_963; -extern const bool __static_condition_default_402; +extern const bool __static_condition_default_1106; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_677; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_544; extern const bool __static_condition_default_217; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_393; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_779; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_363; extern const bool __static_condition_default_499; -extern const bool __static_condition_default_891; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_229; extern const bool __static_condition_default_290; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_759; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_367; +extern const bool __static_condition_default_1111; extern const bool __static_condition_default_709; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_204; -extern const bool __static_condition_default_315; +extern const bool __static_condition_default_875; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_393; extern const bool __static_condition_default_259; -extern const bool __static_condition_default_419; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_693; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_1103; extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_317; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_549; -extern const bool __static_condition_default_858; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_872; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_293; extern const bool __static_condition_default_274; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_1109; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_848; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_789; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_388; +extern const bool __static_condition_default_337; extern const bool __static_condition_default_819; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_1110; +extern const bool __static_condition_default_187; +extern const bool __static_condition_default_734; extern const bool __static_condition_default_956; -extern const bool __static_condition_default_512; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_568; +extern const bool __static_condition_default_636; extern const bool __static_condition_default_539; -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_270; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_585; extern const bool __static_condition_default_333; -extern const bool __static_condition_default_646; -extern const bool __static_condition_default_779; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_780; extern const bool __static_condition_default_623; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_957; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_685; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_761; -extern const bool __static_condition_default_789; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_267; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_700; extern const bool __static_condition_default_834; -extern const bool __static_condition_default_638; -extern const bool __static_condition_default_367; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_753; +extern const bool __static_condition_default_858; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -1430,7 +1430,7 @@ if (__static_condition_default_1109) { -__static_type_error("type error : no valid expression"); // L21 +__static_type_error("type error") ; // L21 return 0 ;// L22 } } @@ -1447,7 +1447,7 @@ if (__static_condition_default_1110) { -__static_type_error("type error : no valid expression"); // L21 + __thermal_runaway_protection_1102 (0,123456783,145.0f,200.0f,1,10,1) ; // L21 return 0 ;// L22 } } diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.desugared.c b/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.desugared.c index b9df0e74..9afe5895 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.desugared.c +++ b/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.desugared.c @@ -7,275 +7,275 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); +extern const bool __static_condition_default_489; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_842; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_1097; +extern const bool __static_condition_default_488; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_512; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_536; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_883; extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_84; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_510; extern const bool __static_condition_default_797; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_858; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_894; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_293; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_759; extern const bool __static_condition_default_709; -extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_645; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_848; -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_311; -extern const bool __static_condition_default_625; extern const bool __static_condition_default_769; -extern const bool __static_condition_default_963; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_337; +extern const bool __static_condition_default_367; extern const bool __static_condition_default_347; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_419; -extern const bool __static_condition_default_663; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_333; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_963; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_1073; extern const bool __static_condition_default_723; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_702; -extern const bool __static_condition_default_1096; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_431; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_761; -extern const bool __static_condition_default_753; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_613; -extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_792; +extern const bool __static_condition_default_1072; extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_408; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_646; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_670; extern const bool __static_condition_default_393; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_438; -extern const bool __static_condition_default_380; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_198; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_846; -extern const bool __static_condition_default_223; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_1096; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_259; extern const bool __static_condition_default_511; -extern const bool __static_condition_default_204; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_1097; -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_875; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_747; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_564; -extern const bool __static_condition_default_488; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_419; +extern const bool __static_condition_default_493; extern const bool __static_condition_default_537; -extern const bool __static_condition_default_382; -extern const bool __static_condition_default_701; -extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_461; -extern const bool __static_condition_default_883; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_875; extern const bool __static_condition_default_633; -extern const bool __static_condition_default_755; -extern const bool __static_condition_default_290; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_638; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_789; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_549; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_53; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_386; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_590; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_780; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_402; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_521; -extern const bool __static_condition_default_550; +extern const bool __static_condition_default_613; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_538; extern const bool __static_condition_default_210; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_929; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_887; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_536; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_84; extern const bool __static_condition_default_469; -extern const bool __static_condition_default_512; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_753; +extern const bool __static_condition_default_791; extern const bool __static_condition_default_955; -extern const bool __static_condition_default_248; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_632; -extern const bool __static_condition_default_76; -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_367; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_497; extern const bool __static_condition_default_781; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_538; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_290; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_380; extern const bool __static_condition_default_727; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_787; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_685; -extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_721; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_382; extern const bool __static_condition_default_433; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_779; +extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_702; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_539; extern const bool __static_condition_default_299; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_317; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_76; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_734; extern const bool __static_condition_default_388; -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_559; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_568; extern const bool __static_condition_default_677; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_717; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_583; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_736; extern const bool __static_condition_default_803; -extern const bool __static_condition_default_333; +extern const bool __static_condition_default_521; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_386; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_608; extern const bool __static_condition_default_891; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_187; -extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_842; -extern const bool __static_condition_default_543; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_315; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_238; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_559; extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_779; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_670; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_747; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_1058; extern const bool __static_condition_default_834; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_357; extern const bool __static_condition_default_246; -extern const bool __static_condition_default_693; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_560; extern const bool __static_condition_default_864; +extern const bool __static_condition_default_846; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_573; extern const bool __static_condition_default_365; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_793; -extern const bool __static_condition_default_735; extern const bool __static_condition_default_313; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_651; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_789; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_544; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_274; extern const bool __static_condition_default_217; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_187; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_455; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_761; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_331; extern const bool __static_condition_default_173; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_907; -extern const bool __static_condition_default_253; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_619; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_894; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_311; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_550; extern const bool __static_condition_default_956; -extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_568; -extern const bool __static_condition_default_583; -extern const bool __static_condition_default_957; -extern const bool __static_condition_default_412; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_636; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_238; extern const bool __static_condition_default_872; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_914; +extern const bool __static_condition_default_907; +extern const bool __static_condition_default_929; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_549; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_204; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_957; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.desugared.c b/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.desugared.c index a75f17bc..fd389c50 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.desugared.c +++ b/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.desugared.c @@ -7,1027 +7,2826 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_204; -extern const bool __static_condition_default_755; -extern const bool __static_condition_default_217; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_431; -extern const bool __static_condition_default_1100; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_769; -extern const bool __static_condition_default_803; -extern const bool __static_condition_default_753; -extern const bool __static_condition_default_956; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_632; -extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_564; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_787; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_858; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_907; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_872; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_846; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_789; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_317; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_543; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_408; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_512; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_488; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_559; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_76; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_709; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_693; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_1095; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_1096; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_645; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_290; -extern const bool __static_condition_default_357; -extern const bool __static_condition_default_380; -extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_248; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_779; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_583; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_53; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_549; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_701; -extern const bool __static_condition_default_393; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_1104; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_848; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_613; -extern const bool __static_condition_default_315; -extern const bool __static_condition_default_382; -extern const bool __static_condition_default_914; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_702; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_955; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_388; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_347; -extern const bool __static_condition_default_198; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_670; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_891; -extern const bool __static_condition_default_793; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_311; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_963; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_747; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_438; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_894; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_590; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_887; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_187; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_677; -extern const bool __static_condition_default_521; -extern const bool __static_condition_default_1097; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_761; -extern const bool __static_condition_default_461; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_1099; -extern const bool __static_condition_default_419; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_568; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_957; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_842; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_685; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_536; -extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_367; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_929; -extern const bool __static_condition_default_875; -extern const bool __static_condition_default_1105; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_646; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_313; -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_333; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_780; -extern const bool __static_condition_default_386; -extern const bool __static_condition_default_402; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_638; -extern const bool __static_condition_default_412; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_123; +extern const bool __static_condition_default_1179; +extern const bool __static_condition_default_1188; +extern const bool __static_condition_default_1593; +extern const bool __static_condition_default_1566; +extern const bool __static_condition_default_2027; +extern const bool __static_condition_default_1176; +extern const bool __static_condition_default_1793; +extern const bool __static_condition_default_1139; +extern const bool __static_condition_default_1142; +extern const bool __static_condition_default_1781; +extern const bool __static_condition_default_1181; +extern const bool __static_condition_default_1814; +extern const bool __static_condition_default_1646; +extern const bool __static_condition_default_111; +extern const bool __static_condition_default_87; +extern const bool __static_condition_default_1432; +extern const bool __static_condition_default_1168; +extern const bool __static_condition_default_1994; +extern const bool __static_condition_default_1705; +extern const bool __static_condition_default_1714; +extern const bool __static_condition_default_2257; +extern const bool __static_condition_default_1666; +extern const bool __static_condition_default_1167; +extern const bool __static_condition_default_1859; +extern const bool __static_condition_default_2320; +extern const bool __static_condition_default_1145; +extern const bool __static_condition_default_1178; +extern const bool __static_condition_default_1750; +extern const bool __static_condition_default_1275; +extern const bool __static_condition_default_1816; +extern const bool __static_condition_default_1874; +extern const bool __static_condition_default_1127; +extern const bool __static_condition_default_1703; +extern const bool __static_condition_default_1190; +extern const bool __static_condition_default_1128; +extern const bool __static_condition_default_1137; +extern const bool __static_condition_default_1508; +extern const bool __static_condition_default_1876; +extern const bool __static_condition_default_2271; +extern const bool __static_condition_default_2004; +extern const bool __static_condition_default_2154; +extern const bool __static_condition_default_1744; +extern const bool __static_condition_default_1471; +extern const bool __static_condition_default_1138; +extern const bool __static_condition_default_1852; +extern const bool __static_condition_default_2248; +extern const bool __static_condition_default_2322; +extern const bool __static_condition_default_1455; +extern const bool __static_condition_default_1984; +extern const bool __static_condition_default_1706; +extern const bool __static_condition_default_1804; +extern const bool __static_condition_default_2014; +extern const bool __static_condition_default_1635; +extern const bool __static_condition_default_2120; +extern const bool __static_condition_default_2256; +extern const bool __static_condition_default_1660; +extern const bool __static_condition_default_2300; +extern const bool __static_condition_default_2321; +extern const bool __static_condition_default_1776; +extern const bool __static_condition_default_1828; +extern const bool __static_condition_default_1883; +extern const bool __static_condition_default_1937; +extern const bool __static_condition_default_1117; +extern const bool __static_condition_default_1729; +extern const bool __static_condition_default_2306; +extern const bool __static_condition_default_1113; +extern const bool __static_condition_default_1437; +extern const bool __static_condition_default_1842; +extern const bool __static_condition_default_2000; +extern const bool __static_condition_default_1165; +extern const bool __static_condition_default_1440; +extern const bool __static_condition_default_1788; +extern const bool __static_condition_default_1841; +extern const bool __static_condition_default_1124; +extern const bool __static_condition_default_2303; +extern const bool __static_condition_default_1971; +extern const bool __static_condition_default_2105; +extern const bool __static_condition_default_1586; +extern const bool __static_condition_default_1849; +extern const bool __static_condition_default_1182; +extern const bool __static_condition_default_1824; +extern const bool __static_condition_default_1528; +extern const bool __static_condition_default_1155; +extern const bool __static_condition_default_2249; +extern const bool __static_condition_default_1314; +extern const bool __static_condition_default_1484; +extern const bool __static_condition_default_1926; +extern const bool __static_condition_default_1454; +extern const bool __static_condition_default_1140; +extern const bool __static_condition_default_1170; +extern const bool __static_condition_default_1892; +extern const bool __static_condition_default_1175; +extern const bool __static_condition_default_1473; +extern const bool __static_condition_default_1861; +extern const bool __static_condition_default_1118; +extern const bool __static_condition_default_2242; +extern const bool __static_condition_default_1159; +extern const bool __static_condition_default_1458; +extern const bool __static_condition_default_1622; +extern const bool __static_condition_default_1448; +extern const bool __static_condition_default_1838; +extern const bool __static_condition_default_1126; +extern const bool __static_condition_default_1951; +extern const bool __static_condition_default_2043; +extern const bool __static_condition_default_1610; +extern const bool __static_condition_default_2033; +extern const bool __static_condition_default_1115; +extern const bool __static_condition_default_1712; +extern const bool __static_condition_default_1189; +extern const bool __static_condition_default_1652; +extern const bool __static_condition_default_2063; +extern const bool __static_condition_default_2263; +extern const bool __static_condition_default_1944; +extern const bool __static_condition_default_1135; +extern const bool __static_condition_default_2025; +extern const bool __static_condition_default_1734; +extern const bool __static_condition_default_1439; +extern const bool __static_condition_default_1577; +extern const bool __static_condition_default_1952; +extern const bool __static_condition_default_1970; +extern const bool __static_condition_default_1157; +extern const bool __static_condition_default_1751; +extern const bool __static_condition_default_2074; +extern const bool __static_condition_default_1899; +extern const bool __static_condition_default_1161; +extern const bool __static_condition_default_1475; +extern const bool __static_condition_default_1900; +extern const bool __static_condition_default_1810; +extern const bool __static_condition_default_1854; +extern const bool __static_condition_default_1983; +extern const bool __static_condition_default_1466; +extern const bool __static_condition_default_1629; +extern const bool __static_condition_default_1490; +extern const bool __static_condition_default_2287; +extern const bool __static_condition_default_1384; +extern const bool __static_condition_default_1829; +extern const bool __static_condition_default_1684; +extern const bool __static_condition_default_1435; +extern const bool __static_condition_default_1164; +extern const bool __static_condition_default_1774; +extern const bool __static_condition_default_1848; +extern const bool __static_condition_default_2272; +extern const bool __static_condition_default_55; +extern const bool __static_condition_default_1728; +extern const bool __static_condition_default_2290; +extern const bool __static_condition_default_2312; +extern const bool __static_condition_default_2171; +extern const bool __static_condition_default_1125; +extern const bool __static_condition_default_1730; +extern const bool __static_condition_default_1360; +extern const bool __static_condition_default_1392; +extern const bool __static_condition_default_1584; +extern const bool __static_condition_default_1162; +extern const bool __static_condition_default_1680; +extern const bool __static_condition_default_1979; +extern const bool __static_condition_default_2008; +extern const bool __static_condition_default_2146; +extern const bool __static_condition_default_1141; +extern const bool __static_condition_default_2315; +extern const bool __static_condition_default_1682; +extern const bool __static_condition_default_1837; +extern const bool __static_condition_default_2055; +extern const bool __static_condition_default_1173; +extern const bool __static_condition_default_1624; +extern const bool __static_condition_default_1893; +extern const bool __static_condition_default_1579; +extern const bool __static_condition_default_2314; +extern const bool __static_condition_default_118; +extern const bool __static_condition_default_2218; +extern const bool __static_condition_default_1836; +extern const bool __static_condition_default_1536; +extern const bool __static_condition_default_1769; +extern const bool __static_condition_default_2234; +extern const bool __static_condition_default_1160; +extern const bool __static_condition_default_1946; +extern const bool __static_condition_default_2227; +extern const bool __static_condition_default_1799; +extern const bool __static_condition_default_2189; +extern const bool __static_condition_default_1927; +extern const bool __static_condition_default_2135; +extern const bool __static_condition_default_1522; +extern const bool __static_condition_default_2200; +extern const bool __static_condition_default_1524; +extern const bool __static_condition_default_1171; +extern const bool __static_condition_default_1469; +extern const bool __static_condition_default_1948; +extern const bool __static_condition_default_1840; +extern const bool __static_condition_default_1449; +extern const bool __static_condition_default_2010; +extern const bool __static_condition_default_1112; +extern const bool __static_condition_default_1479; +extern const bool __static_condition_default_1623; +extern const bool __static_condition_default_119; +extern const bool __static_condition_default_1389; +extern const bool __static_condition_default_1395; +extern const bool __static_condition_default_2182; +extern const bool __static_condition_default_1755; +extern const bool __static_condition_default_1978; +extern const bool __static_condition_default_1741; +extern const bool __static_condition_default_1143; +extern const bool __static_condition_default_1446; +extern const bool __static_condition_default_1702; +extern const bool __static_condition_default_1825; +extern const bool __static_condition_default_2037; +extern const bool __static_condition_default_1364; +extern const bool __static_condition_default_1740; +extern const bool __static_condition_default_1733; +extern const bool __static_condition_default_1414; +extern const bool __static_condition_default_2307; +extern const bool __static_condition_default_1988; +extern const bool __static_condition_default_1163; +extern const bool __static_condition_default_1877; +extern const bool __static_condition_default_1556; +extern const bool __static_condition_default_2304; +extern const bool __static_condition_default_1958; +extern const bool __static_condition_default_1465; +extern const bool __static_condition_default_1114; +extern const bool __static_condition_default_1267; +extern const bool __static_condition_default_1853; +extern const bool __static_condition_default_1186; +extern const bool __static_condition_default_1461; +extern const bool __static_condition_default_1823; +extern const bool __static_condition_default_1136; +extern const bool __static_condition_default_1972; +extern const bool __static_condition_default_1677; +extern const bool __static_condition_default_2233; +extern const bool __static_condition_default_2196; +extern const bool __static_condition_default_1177; +extern const bool __static_condition_default_1950; +extern const bool __static_condition_default_1187; +extern const bool __static_condition_default_1890; +extern const bool __static_condition_default_1119; +extern const bool __static_condition_default_1564; +extern const bool __static_condition_default_1812; +extern const bool __static_condition_default_2299; +extern const bool __static_condition_default_1720; +extern const bool __static_condition_default_1936; +extern const bool __static_condition_default_1992; +extern const bool __static_condition_default_1688; +extern const bool __static_condition_default_1925; +extern const bool __static_condition_default_2053; +extern const bool __static_condition_default_1764; +extern const bool __static_condition_default_1573; +extern const bool __static_condition_default_1144; +extern const bool __static_condition_default_1942; +extern const bool __static_condition_default_2286; +extern const bool __static_condition_default_1701; +extern const bool __static_condition_default_95; +extern const bool __static_condition_default_1664; +extern const bool __static_condition_default_1169; +extern const bool __static_condition_default_1908; +extern const bool __static_condition_default_1408; +extern const bool __static_condition_default_2016; +extern const bool __static_condition_default_2291; +extern const bool __static_condition_default_2158; +extern const bool __static_condition_default_1608; +extern const bool __static_condition_default_1875; +extern const bool __static_condition_default_2129; +extern const bool __static_condition_default_1694; +extern const bool __static_condition_default_1156; +extern const bool __static_condition_default_1546; +extern const bool __static_condition_default_103; +extern const bool __static_condition_default_1827; +extern const bool __static_condition_default_1679; +extern const bool __static_condition_default_1918; +extern const bool __static_condition_default_2305; +extern const bool __static_condition_default_1122; +extern const bool __static_condition_default_1560; +extern const bool __static_condition_default_2163; +extern const bool __static_condition_default_1129; +extern const bool __static_condition_default_1891; +extern const bool __static_condition_default_1481; +extern const bool __static_condition_default_1943; +extern const bool __static_condition_default_1185; +extern const bool __static_condition_default_1121; +extern const bool __static_condition_default_1158; +extern const bool __static_condition_default_122; +extern const bool __static_condition_default_1130; +extern const bool __static_condition_default_2147; +extern const bool __static_condition_default_1884; +extern const bool __static_condition_default_1727; +extern const bool __static_condition_default_1690; +extern const bool __static_condition_default_2213; +extern const bool __static_condition_default_2219; +extern const bool __static_condition_default_1180; +extern const bool __static_condition_default_2226; +extern const bool __static_condition_default_2264; +extern const bool __static_condition_default_2280; +extern const bool __static_condition_default_2288; +extern const bool __static_condition_default_1166; +extern const bool __static_condition_default_1361; +extern const bool __static_condition_default_1743; +extern const bool __static_condition_default_1959; +extern const bool __static_condition_default_1685; +extern const bool __static_condition_default_2241; +extern const bool __static_condition_default_2302; +extern const bool __static_condition_default_2085; +extern const bool __static_condition_default_2316; +extern const bool __static_condition_default_1401; +extern const bool __static_condition_default_1906; +extern const bool __static_condition_default_2198; +extern const bool __static_condition_default_1599; +extern const bool __static_condition_default_1603; +extern const bool __static_condition_default_1868; +extern const bool __static_condition_default_1914; +extern const bool __static_condition_default_2310; +extern const bool __static_condition_default_1759; +extern const bool __static_condition_default_1502; +extern const bool __static_condition_default_1538; +extern const bool __static_condition_default_1134; +extern const bool __static_condition_default_1732; +extern const bool __static_condition_default_1735; +extern const bool __static_condition_default_1850; +extern const bool __static_condition_default_1426; +extern const bool __static_condition_default_1429; +extern const bool __static_condition_default_1450; +extern const bool __static_condition_default_2069; +extern const bool __static_condition_default_2039; +extern const bool __static_condition_default_1938; +extern const bool __static_condition_default_2308; +extern const bool __static_condition_default_1444; +extern const bool __static_condition_default_1154; +extern const bool __static_condition_default_1558; +extern const bool __static_condition_default_1487; +extern const bool __static_condition_default_2206; +extern const bool __static_condition_default_2059; +extern const bool __static_condition_default_1172; +extern const bool __static_condition_default_2082; +extern const bool __static_condition_default_2169; +extern const bool __static_condition_default_1133; +extern const bool __static_condition_default_2148; +extern const bool __static_condition_default_105; +extern const bool __static_condition_default_2066; +extern const bool __static_condition_default_1441; +extern const bool __static_condition_default_1504; +extern const bool __static_condition_default_2049; +extern const bool __static_condition_default_1183; +extern const bool __static_condition_default_1912; +extern const bool __static_condition_default_1174; +extern const bool __static_condition_default_1378; +extern const bool __static_condition_default_2281; +extern const bool __static_condition_default_1982; +extern const bool __static_condition_default_1244; +extern const bool __static_condition_default_2170; +extern const bool __static_condition_default_1116; +extern const bool __static_condition_default_1998; +extern const bool __static_condition_default_1477; +extern const bool __static_condition_default_1506; +extern const bool __static_condition_default_2098; +extern const bool __static_condition_default_2078; +extern const bool __static_condition_default_1120; +extern const bool __static_condition_default_2311; +extern const bool __static_condition_default_1548; +extern const bool __static_condition_default_1571; +extern const bool __static_condition_default_2309; +extern const bool __static_condition_default_1184; +extern const bool __static_condition_default_1532; +extern const bool __static_condition_default_1960; +extern const bool __static_condition_default_2282; +extern const bool __static_condition_default_1662; +extern const bool __static_condition_default_1707; +extern const bool __static_condition_default_1132; +extern const bool __static_condition_default_2313; +extern const bool __static_condition_default_2031; +extern const bool __static_condition_default_1554; +extern const bool __static_condition_default_2301; +extern const bool __static_condition_default_89; +extern const bool __static_condition_default_1462; +extern const bool __static_condition_default_1980; +extern const bool __static_condition_default_2317; +extern const bool __static_condition_default_1131; +extern const bool __static_condition_default_1420; +extern const bool __static_condition_default_1123; +extern const bool __static_condition_default_1373; +extern const bool __static_condition_default_1947; void __static_initializer_default() { -__static_renaming("__ptrdiff_t_0", "ptrdiff_t"); -__static_renaming("__size_t_1", "size_t"); -__static_renaming("____u_char_2", "__u_char"); -__static_renaming("____u_short_3", "__u_short"); -__static_renaming("____u_int_4", "__u_int"); -__static_renaming("____u_long_5", "__u_long"); -__static_renaming("____int8_t_6", "__int8_t"); -__static_renaming("____uint8_t_7", "__uint8_t"); -__static_renaming("____int16_t_8", "__int16_t"); -__static_renaming("____uint16_t_9", "__uint16_t"); -__static_renaming("____int32_t_10", "__int32_t"); -__static_renaming("____uint32_t_11", "__uint32_t"); -__static_renaming("____int64_t_12", "__int64_t"); -__static_renaming("____uint64_t_13", "__uint64_t"); -__static_renaming("____quad_t_14", "__quad_t"); -__static_renaming("____u_quad_t_15", "__u_quad_t"); -__static_renaming("____dev_t_16", "__dev_t"); -__static_renaming("____uid_t_17", "__uid_t"); -__static_renaming("____gid_t_18", "__gid_t"); -__static_renaming("____ino_t_19", "__ino_t"); -__static_renaming("____ino64_t_20", "__ino64_t"); -__static_renaming("____mode_t_21", "__mode_t"); -__static_renaming("____nlink_t_22", "__nlink_t"); -__static_renaming("____off_t_23", "__off_t"); -__static_renaming("____off64_t_24", "__off64_t"); -__static_renaming("____pid_t_25", "__pid_t"); -__static_renaming("____fsid_t_29", "__fsid_t"); -__static_renaming("____clock_t_30", "__clock_t"); -__static_renaming("____rlim_t_31", "__rlim_t"); -__static_renaming("____rlim64_t_32", "__rlim64_t"); -__static_renaming("____id_t_33", "__id_t"); -__static_renaming("____time_t_34", "__time_t"); -__static_renaming("____useconds_t_35", "__useconds_t"); -__static_renaming("____suseconds_t_36", "__suseconds_t"); -__static_renaming("____daddr_t_37", "__daddr_t"); -__static_renaming("____key_t_38", "__key_t"); -__static_renaming("____clockid_t_39", "__clockid_t"); -__static_renaming("____timer_t_40", "__timer_t"); -__static_renaming("____blksize_t_41", "__blksize_t"); -__static_renaming("____blkcnt_t_42", "__blkcnt_t"); -__static_renaming("____blkcnt64_t_43", "__blkcnt64_t"); -__static_renaming("____fsblkcnt_t_44", "__fsblkcnt_t"); -__static_renaming("____fsblkcnt64_t_45", "__fsblkcnt64_t"); -__static_renaming("____fsfilcnt_t_46", "__fsfilcnt_t"); -__static_renaming("____fsfilcnt64_t_47", "__fsfilcnt64_t"); -__static_renaming("____fsword_t_48", "__fsword_t"); -__static_renaming("____ssize_t_49", "__ssize_t"); -__static_renaming("____syscall_slong_t_50", "__syscall_slong_t"); -__static_renaming("____syscall_ulong_t_51", "__syscall_ulong_t"); -__static_renaming("____loff_t_52", "__loff_t"); -__static_renaming("____qaddr_t_54", "__qaddr_t"); -__static_renaming("____caddr_t_55", "__caddr_t"); -__static_renaming("____intptr_t_56", "__intptr_t"); -__static_renaming("____socklen_t_57", "__socklen_t"); -__static_renaming("__FILE_59", "FILE"); -__static_renaming("____FILE_60", "__FILE"); -__static_renaming("____mbstate_t_69", "__mbstate_t"); -__static_renaming("___G_fpos_t_77", "_G_fpos_t"); -__static_renaming("___G_fpos64_t_85", "_G_fpos64_t"); -__static_renaming("____gnuc_va_list_86", "__gnuc_va_list"); -__static_renaming("___IO_lock_t_88", "_IO_lock_t"); -__static_renaming("___IO_FILE_171", "_IO_FILE"); -__static_renaming("___IO_FILE_172", "_IO_FILE"); -__static_renaming("___IO_2_1_stdin__175", "_IO_2_1_stdin_"); -__static_renaming("___IO_2_1_stdout__176", "_IO_2_1_stdout_"); -__static_renaming("___IO_2_1_stderr__177", "_IO_2_1_stderr_"); -__static_renaming("____io_read_fn_181", "__io_read_fn"); -__static_renaming("____io_write_fn_186", "__io_write_fn"); -__static_renaming("____io_seek_fn_192", "__io_seek_fn"); -__static_renaming("____io_close_fn_195", "__io_close_fn"); -__static_renaming("____underflow_196", "__underflow"); -__static_renaming("____underflow_197", "__underflow"); -__static_renaming("____uflow_199", "__uflow"); -__static_renaming("____uflow_200", "__uflow"); -__static_renaming("____overflow_202", "__overflow"); -__static_renaming("____overflow_203", "__overflow"); -__static_renaming("___IO_getc_208", "_IO_getc"); -__static_renaming("___IO_getc_209", "_IO_getc"); -__static_renaming("___IO_putc_215", "_IO_putc"); -__static_renaming("___IO_putc_216", "_IO_putc"); -__static_renaming("___IO_feof_221", "_IO_feof"); -__static_renaming("___IO_feof_222", "_IO_feof"); -__static_renaming("___IO_ferror_227", "_IO_ferror"); -__static_renaming("___IO_ferror_228", "_IO_ferror"); -__static_renaming("___IO_peekc_locked_233", "_IO_peekc_locked"); -__static_renaming("___IO_peekc_locked_234", "_IO_peekc_locked"); -__static_renaming("___IO_flockfile_236", "_IO_flockfile"); -__static_renaming("___IO_flockfile_237", "_IO_flockfile"); -__static_renaming("___IO_funlockfile_239", "_IO_funlockfile"); -__static_renaming("___IO_funlockfile_240", "_IO_funlockfile"); -__static_renaming("___IO_ftrylockfile_242", "_IO_ftrylockfile"); -__static_renaming("___IO_ftrylockfile_243", "_IO_ftrylockfile"); -__static_renaming("___IO_vfscanf_245", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_247", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_251", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_252", "_IO_vfscanf"); -__static_renaming("___IO_vfprintf_254", "_IO_vfprintf"); -__static_renaming("___IO_vfprintf_256", "_IO_vfprintf"); -__static_renaming("___IO_vfprintf_260", "_IO_vfprintf"); -__static_renaming("___IO_padn_261", "_IO_padn"); -__static_renaming("___IO_padn_262", "_IO_padn"); -__static_renaming("___IO_sgetn_265", "_IO_sgetn"); -__static_renaming("___IO_sgetn_266", "_IO_sgetn"); -__static_renaming("___IO_seekoff_268", "_IO_seekoff"); -__static_renaming("___IO_seekoff_269", "_IO_seekoff"); -__static_renaming("___IO_seekpos_272", "_IO_seekpos"); -__static_renaming("___IO_seekpos_273", "_IO_seekpos"); -__static_renaming("___IO_free_backup_area_276", "_IO_free_backup_area"); -__static_renaming("___IO_free_backup_area_277", "_IO_free_backup_area"); -__static_renaming("__va_list_279", "va_list"); -__static_renaming("__off_t_281", "off_t"); -__static_renaming("__off_t_283", "off_t"); -__static_renaming("__ssize_t_285", "ssize_t"); -__static_renaming("__fpos_t_287", "fpos_t"); -__static_renaming("__fpos_t_289", "fpos_t"); -__static_renaming("__stdin_291", "stdin"); -__static_renaming("__stdin_292", "stdin"); -__static_renaming("__stdout_294", "stdout"); -__static_renaming("__stdout_295", "stdout"); -__static_renaming("__stderr_297", "stderr"); -__static_renaming("__stderr_298", "stderr"); -__static_renaming("__remove_301", "remove"); -__static_renaming("__rename_304", "rename"); -__static_renaming("__renameat_309", "renameat"); -__static_renaming("__tmpfile_310", "tmpfile"); -__static_renaming("__tmpfile_312", "tmpfile"); -__static_renaming("__tmpfile_314", "tmpfile"); -__static_renaming("__tmpfile_316", "tmpfile"); -__static_renaming("__tmpnam_319", "tmpnam"); -__static_renaming("__tmpnam_320", "tmpnam"); -__static_renaming("__tmpnam_r_322", "tmpnam_r"); -__static_renaming("__tmpnam_r_323", "tmpnam_r"); -__static_renaming("__tempnam_326", "tempnam"); -__static_renaming("__tempnam_327", "tempnam"); -__static_renaming("__fclose_330", "fclose"); -__static_renaming("__fclose_332", "fclose"); -__static_renaming("__fflush_336", "fflush"); -__static_renaming("__fflush_unlocked_340", "fflush_unlocked"); -__static_renaming("__fopen_344", "fopen"); -__static_renaming("__fopen_346", "fopen"); -__static_renaming("__fopen_354", "fopen"); -__static_renaming("__fopen_356", "fopen"); -__static_renaming("__freopen_362", "freopen"); -__static_renaming("__freopen_364", "freopen"); -__static_renaming("__freopen_366", "freopen"); -__static_renaming("__freopen_368", "freopen"); -__static_renaming("__fdopen_372", "fdopen"); -__static_renaming("__fdopen_374", "fdopen"); -__static_renaming("__fmemopen_379", "fmemopen"); -__static_renaming("__fmemopen_381", "fmemopen"); -__static_renaming("__open_memstream_385", "open_memstream"); -__static_renaming("__open_memstream_387", "open_memstream"); -__static_renaming("__setbuf_392", "setbuf"); -__static_renaming("__setbuf_394", "setbuf"); -__static_renaming("__setvbuf_401", "setvbuf"); -__static_renaming("__setbuffer_407", "setbuffer"); -__static_renaming("__setlinebuf_411", "setlinebuf"); -__static_renaming("__fprintf_416", "fprintf"); -__static_renaming("__fprintf_418", "fprintf"); -__static_renaming("__printf_421", "printf"); -__static_renaming("__sprintf_424", "sprintf"); -__static_renaming("__vfprintf_430", "vfprintf"); -__static_renaming("__vprintf_437", "vprintf"); -__static_renaming("__vsprintf_443", "vsprintf"); -__static_renaming("__snprintf_448", "snprintf"); -__static_renaming("__vsnprintf_454", "vsnprintf"); -__static_renaming("__vdprintf_460", "vdprintf"); -__static_renaming("__dprintf_464", "dprintf"); -__static_renaming("__fscanf_468", "fscanf"); -__static_renaming("__fscanf_470", "fscanf"); -__static_renaming("__fscanf_472", "fscanf"); -__static_renaming("__fscanf_474", "fscanf"); -__static_renaming("__scanf_477", "scanf"); -__static_renaming("__scanf_478", "scanf"); -__static_renaming("__sscanf_481", "sscanf"); -__static_renaming("__vfscanf_509", "vfscanf"); -__static_renaming("__vfscanf_513", "vfscanf"); -__static_renaming("__vscanf_520", "vscanf"); -__static_renaming("__vscanf_522", "vscanf"); -__static_renaming("__vsscanf_528", "vsscanf"); -__static_renaming("__fgetc_563", "fgetc"); -__static_renaming("__getc_567", "getc"); -__static_renaming("__getchar_569", "getchar"); -__static_renaming("__getc_unlocked_572", "getc_unlocked"); -__static_renaming("__getchar_unlocked_574", "getchar_unlocked"); -__static_renaming("__fgetc_unlocked_577", "fgetc_unlocked"); -__static_renaming("__fputc_582", "fputc"); -__static_renaming("__fputc_584", "fputc"); -__static_renaming("__putc_589", "putc"); -__static_renaming("__putchar_592", "putchar"); -__static_renaming("__fputc_unlocked_596", "fputc_unlocked"); -__static_renaming("__putc_unlocked_601", "putc_unlocked"); -__static_renaming("__putchar_unlocked_604", "putchar_unlocked"); -__static_renaming("__getw_607", "getw"); -__static_renaming("__putw_612", "putw"); -__static_renaming("__fgets_618", "fgets"); -__static_renaming("__fgets_620", "fgets"); -__static_renaming("__fgets_622", "fgets"); -__static_renaming("__fgets_624", "fgets"); -__static_renaming("____getdelim_631", "__getdelim"); -__static_renaming("____getdelim_635", "__getdelim"); -__static_renaming("__getdelim_644", "getdelim"); -__static_renaming("__getdelim_648", "getdelim"); -__static_renaming("__getline_656", "getline"); -__static_renaming("__getline_660", "getline"); -__static_renaming("__fputs_667", "fputs"); -__static_renaming("__fputs_669", "fputs"); -__static_renaming("__puts_672", "puts"); -__static_renaming("__ungetc_676", "ungetc"); -__static_renaming("__fseek_714", "fseek"); -__static_renaming("__fseek_716", "fseek"); -__static_renaming("__ftell_720", "ftell"); -__static_renaming("__ftell_722", "ftell"); -__static_renaming("__rewind_726", "rewind"); -__static_renaming("__fseeko_733", "fseeko"); -__static_renaming("__fseeko_744", "fseeko"); -__static_renaming("__ftello_750", "ftello"); -__static_renaming("__ftello_754", "ftello"); -__static_renaming("__ftello_758", "ftello"); -__static_renaming("__fgetpos_766", "fgetpos"); -__static_renaming("__fgetpos_778", "fgetpos"); -__static_renaming("__fsetpos_786", "fsetpos"); -__static_renaming("__fsetpos_790", "fsetpos"); -__static_renaming("__clearerr_796", "clearerr"); -__static_renaming("__feof_800", "feof"); -__static_renaming("__feof_802", "feof"); -__static_renaming("__ferror_806", "ferror"); -__static_renaming("__ferror_808", "ferror"); -__static_renaming("__clearerr_unlocked_812", "clearerr_unlocked"); -__static_renaming("__feof_unlocked_816", "feof_unlocked"); -__static_renaming("__feof_unlocked_818", "feof_unlocked"); -__static_renaming("__ferror_unlocked_822", "ferror_unlocked"); -__static_renaming("__ferror_unlocked_824", "ferror_unlocked"); -__static_renaming("__perror_827", "perror"); -__static_renaming("__perror_828", "perror"); -__static_renaming("__sys_nerr_829", "sys_nerr"); -__static_renaming("__sys_errlist_830", "sys_errlist"); -__static_renaming("__fileno_833", "fileno"); -__static_renaming("__fileno_835", "fileno"); -__static_renaming("__fileno_unlocked_839", "fileno_unlocked"); -__static_renaming("__fileno_unlocked_841", "fileno_unlocked"); -__static_renaming("__popen_845", "popen"); -__static_renaming("__popen_847", "popen"); -__static_renaming("__pclose_851", "pclose"); -__static_renaming("__ctermid_854", "ctermid"); -__static_renaming("__flockfile_857", "flockfile"); -__static_renaming("__ftrylockfile_861", "ftrylockfile"); -__static_renaming("__ftrylockfile_863", "ftrylockfile"); -__static_renaming("__funlockfile_867", "funlockfile"); -__static_renaming("____sprintf_chk_899", "__sprintf_chk"); -__static_renaming("____vsprintf_chk_906", "__vsprintf_chk"); -__static_renaming("____snprintf_chk_920", "__snprintf_chk"); -__static_renaming("____vsnprintf_chk_928", "__vsnprintf_chk"); -__static_renaming("____fprintf_chk_943", "__fprintf_chk"); -__static_renaming("____printf_chk_947", "__printf_chk"); -__static_renaming("____vfprintf_chk_954", "__vfprintf_chk"); -__static_renaming("____vprintf_chk_962", "__vprintf_chk"); -__static_renaming("____dprintf_chk_984", "__dprintf_chk"); -__static_renaming("____vdprintf_chk_990", "__vdprintf_chk"); -__static_renaming("____fgets_chk_1004", "__fgets_chk"); -__static_renaming("____fgets_chk_1006", "__fgets_chk"); -__static_renaming("____fgets_chk_1008", "__fgets_chk"); -__static_renaming("____fgets_alias_1014", "__fgets_alias"); -__static_renaming("____fgets_chk_warn_1021", "__fgets_chk_warn"); -__static_renaming("____cnt_1087", "__cnt"); -__static_renaming("____cptr_1088", "__cptr"); -__static_renaming("__enable_x_1092", "enable_x"); -__static_renaming("__enable_x_1093", "enable_x"); -__static_renaming("__enable_x_1094", "enable_x"); -__static_renaming("__enable_y_1098", "enable_y"); -__static_renaming("__enable_z_1101", "enable_z"); -__static_renaming("__main_1103", "main"); - -__static_condition_renaming("__static_condition_default_53", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_76", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_84", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_123", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_169", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_170", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_173", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_182", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_187", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_193", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_198", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_201", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_204", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_210", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_217", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_223", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_229", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_235", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_238", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_241", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_244", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_246", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_248", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_249", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_250", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_253", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_255", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_257", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_258", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_259", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_263", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_264", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_267", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_270", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_271", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_274", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_275", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_278", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_280", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); -__static_condition_renaming("__static_condition_default_282", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_284", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_286", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_288", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_290", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_293", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_296", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_299", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_311", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_313", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_315", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_317", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_331", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_333", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_337", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_341", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_345", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_347", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_355", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_357", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_363", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_365", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_367", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_369", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_373", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_375", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_380", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_382", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_386", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_388", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_393", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_395", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_402", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_408", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_412", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_417", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_419", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_431", "!(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_432", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_433", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_438", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_444", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_455", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_461", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_469", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_471", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_473", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_475", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_486", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_488", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_489", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_491", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_493", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_494", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_497", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_499", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_503", "!(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_510", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_511", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_512", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_514", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_515", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_516", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_521", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_523", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_529", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_536", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_537", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_538", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_539", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_541", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_542", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_543", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_544", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_549", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_550", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_552", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_553", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_559", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_560", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_564", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_568", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_573", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_578", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_583", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_585", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_590", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_597", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_602", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_608", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_613", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_619", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_621", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_623", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_625", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_632", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_633", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_634", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_636", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_637", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_638", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_645", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_646", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_647", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_649", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_650", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_651", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_657", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_658", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_659", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_661", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_662", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_663", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_668", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_670", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_677", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_683", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_684", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_685", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_686", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_692", "!(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_693", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_699", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_700", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_701", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_702", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_708", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_709", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_715", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_717", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_721", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_723", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_727", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_734", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_735", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_736", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_745", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_746", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_747", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_751", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_752", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_753", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_755", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_756", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_757", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_759", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_760", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_761", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_767", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_768", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_769", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_779", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_780", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_781", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_787", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_788", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_789", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_791", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_792", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_793", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_797", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_801", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_803", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_807", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_809", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_813", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_817", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_819", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_823", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_825", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_834", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_836", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_840", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_842", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_846", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_848", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_852", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_858", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_862", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_864", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_868", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_872", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_875", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_878", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_883", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_887", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_891", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_894", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_907", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_914", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_929", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_938", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_944", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_955", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_956", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_957", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_963", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_967", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_972", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_978", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_979", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_980", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_991", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_998", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1005", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1007", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1009", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1015", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1022", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1027", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1028", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1035", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1036", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1042", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1043", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1050", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1051", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1057", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1058", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1065", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1066", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1072", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1073", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1080", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1081", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1089", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_1090", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1091", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1095", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) || !(defined __need___FILE) && (defined __STRICT_ANSI__)"); -__static_condition_renaming("__static_condition_default_1096", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1097", "(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_1099", "!(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_1100", "(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_1104", "!(defined BABYSTEPPING)"); -__static_condition_renaming("__static_condition_default_1105", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && (defined BABYSTEPPING) || !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && (defined BABYSTEPPING) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) || (defined __need___FILE) && (defined BABYSTEPPING)"); - -if (__static_condition_default_1105) +__static_renaming("__int8_t_0", "int8_t"); +__static_renaming("__int16_t_1", "int16_t"); +__static_renaming("__int32_t_2", "int32_t"); +__static_renaming("__int64_t_3", "int64_t"); +__static_renaming("__uint8_t_4", "uint8_t"); +__static_renaming("__uint16_t_5", "uint16_t"); +__static_renaming("__uint32_t_6", "uint32_t"); +__static_renaming("__uint64_t_7", "uint64_t"); +__static_renaming("__int_least8_t_8", "int_least8_t"); +__static_renaming("__int_least16_t_9", "int_least16_t"); +__static_renaming("__int_least32_t_10", "int_least32_t"); +__static_renaming("__int_least64_t_11", "int_least64_t"); +__static_renaming("__uint_least8_t_12", "uint_least8_t"); +__static_renaming("__uint_least16_t_13", "uint_least16_t"); +__static_renaming("__uint_least32_t_14", "uint_least32_t"); +__static_renaming("__uint_least64_t_15", "uint_least64_t"); +__static_renaming("__int_fast8_t_16", "int_fast8_t"); +__static_renaming("__int_fast16_t_17", "int_fast16_t"); +__static_renaming("__int_fast32_t_18", "int_fast32_t"); +__static_renaming("__int_fast64_t_19", "int_fast64_t"); +__static_renaming("__uint_fast8_t_20", "uint_fast8_t"); +__static_renaming("__uint_fast16_t_21", "uint_fast16_t"); +__static_renaming("__uint_fast32_t_22", "uint_fast32_t"); +__static_renaming("__uint_fast64_t_23", "uint_fast64_t"); +__static_renaming("__intptr_t_24", "intptr_t"); +__static_renaming("__uintptr_t_25", "uintptr_t"); +__static_renaming("__intmax_t_26", "intmax_t"); +__static_renaming("__uintmax_t_27", "uintmax_t"); +__static_renaming("____gwchar_t_28", "__gwchar_t"); +__static_renaming("__imaxdiv_t_33", "imaxdiv_t"); +__static_renaming("__imaxdiv_t_34", "imaxdiv_t"); +__static_renaming("__imaxabs_36", "imaxabs"); +__static_renaming("__imaxdiv_39", "imaxdiv"); +__static_renaming("__imaxdiv_40", "imaxdiv"); +__static_renaming("__strtoimax_44", "strtoimax"); +__static_renaming("__strtoumax_48", "strtoumax"); +__static_renaming("__wcstoimax_54", "wcstoimax"); +__static_renaming("__wcstoumax_61", "wcstoumax"); +__static_renaming("____strtol_internal_66", "__strtol_internal"); +__static_renaming("____strtol_internal_67", "__strtol_internal"); +__static_renaming("____strtoul_internal_75", "__strtoul_internal"); +__static_renaming("____strtoul_internal_76", "__strtoul_internal"); +__static_renaming("____wcstol_internal_86", "__wcstol_internal"); +__static_renaming("____wcstol_internal_88", "__wcstol_internal"); +__static_renaming("____wcstoul_internal_102", "__wcstoul_internal"); +__static_renaming("____wcstoul_internal_104", "__wcstoul_internal"); +__static_renaming("___delay_loop_1_113", "_delay_loop_1"); +__static_renaming("___delay_loop_2_115", "_delay_loop_2"); +__static_renaming("___delay_loop_1_117", "_delay_loop_1"); +__static_renaming("___delay_loop_2_121", "_delay_loop_2"); +__static_renaming("__float_t_123", "float_t"); +__static_renaming("__double_t_124", "double_t"); +__static_renaming("__acos_126", "acos"); +__static_renaming("____acos_128", "__acos"); +__static_renaming("__asin_130", "asin"); +__static_renaming("____asin_132", "__asin"); +__static_renaming("__atan_134", "atan"); +__static_renaming("____atan_136", "__atan"); +__static_renaming("__atan2_139", "atan2"); +__static_renaming("____atan2_142", "__atan2"); +__static_renaming("__cos_144", "cos"); +__static_renaming("__cos_145", "cos"); +__static_renaming("____cos_147", "__cos"); +__static_renaming("__sin_149", "sin"); +__static_renaming("__sin_150", "sin"); +__static_renaming("____sin_152", "__sin"); +__static_renaming("__tan_154", "tan"); +__static_renaming("____tan_156", "__tan"); +__static_renaming("__cosh_158", "cosh"); +__static_renaming("____cosh_160", "__cosh"); +__static_renaming("__sinh_162", "sinh"); +__static_renaming("____sinh_164", "__sinh"); +__static_renaming("__tanh_166", "tanh"); +__static_renaming("____tanh_168", "__tanh"); +__static_renaming("__acosh_170", "acosh"); +__static_renaming("____acosh_172", "__acosh"); +__static_renaming("__asinh_174", "asinh"); +__static_renaming("____asinh_176", "__asinh"); +__static_renaming("__atanh_178", "atanh"); +__static_renaming("____atanh_180", "__atanh"); +__static_renaming("__exp_182", "exp"); +__static_renaming("__exp_183", "exp"); +__static_renaming("____exp_185", "__exp"); +__static_renaming("__frexp_188", "frexp"); +__static_renaming("____frexp_191", "__frexp"); +__static_renaming("__ldexp_194", "ldexp"); +__static_renaming("____ldexp_197", "__ldexp"); +__static_renaming("__log_199", "log"); +__static_renaming("__log_200", "log"); +__static_renaming("____log_202", "__log"); +__static_renaming("__log10_204", "log10"); +__static_renaming("____log10_206", "__log10"); +__static_renaming("__modf_209", "modf"); +__static_renaming("____modf_212", "__modf"); +__static_renaming("__expm1_214", "expm1"); +__static_renaming("____expm1_216", "__expm1"); +__static_renaming("__log1p_218", "log1p"); +__static_renaming("____log1p_220", "__log1p"); +__static_renaming("__logb_222", "logb"); +__static_renaming("____logb_224", "__logb"); +__static_renaming("__exp2_226", "exp2"); +__static_renaming("____exp2_228", "__exp2"); +__static_renaming("__log2_230", "log2"); +__static_renaming("____log2_232", "__log2"); +__static_renaming("__pow_235", "pow"); +__static_renaming("__pow_236", "pow"); +__static_renaming("____pow_239", "__pow"); +__static_renaming("__sqrt_241", "sqrt"); +__static_renaming("____sqrt_243", "__sqrt"); +__static_renaming("__hypot_246", "hypot"); +__static_renaming("____hypot_249", "__hypot"); +__static_renaming("__cbrt_251", "cbrt"); +__static_renaming("____cbrt_253", "__cbrt"); +__static_renaming("__ceil_255", "ceil"); +__static_renaming("____ceil_257", "__ceil"); +__static_renaming("__fabs_259", "fabs"); +__static_renaming("____fabs_261", "__fabs"); +__static_renaming("__floor_263", "floor"); +__static_renaming("____floor_265", "__floor"); +__static_renaming("__fmod_268", "fmod"); +__static_renaming("____fmod_271", "__fmod"); +__static_renaming("____isinf_273", "__isinf"); +__static_renaming("____finite_275", "__finite"); +__static_renaming("__isinf_277", "isinf"); +__static_renaming("__finite_279", "finite"); +__static_renaming("__drem_282", "drem"); +__static_renaming("____drem_285", "__drem"); +__static_renaming("__significand_287", "significand"); +__static_renaming("____significand_289", "__significand"); +__static_renaming("__copysign_292", "copysign"); +__static_renaming("__copysign_293", "copysign"); +__static_renaming("____copysign_296", "__copysign"); +__static_renaming("__nan_298", "nan"); +__static_renaming("____nan_300", "__nan"); +__static_renaming("____isnan_302", "__isnan"); +__static_renaming("__isnan_304", "isnan"); +__static_renaming("__j0_305", "j0"); +__static_renaming("____j0_306", "__j0"); +__static_renaming("__j1_307", "j1"); +__static_renaming("____j1_308", "__j1"); +__static_renaming("__jn_309", "jn"); +__static_renaming("____jn_310", "__jn"); +__static_renaming("__y0_311", "y0"); +__static_renaming("____y0_312", "__y0"); +__static_renaming("__y1_313", "y1"); +__static_renaming("____y1_314", "__y1"); +__static_renaming("__yn_315", "yn"); +__static_renaming("____yn_316", "__yn"); +__static_renaming("__erf_317", "erf"); +__static_renaming("__erf_318", "erf"); +__static_renaming("____erf_319", "__erf"); +__static_renaming("__erfc_320", "erfc"); +__static_renaming("____erfc_321", "__erfc"); +__static_renaming("__lgamma_322", "lgamma"); +__static_renaming("____lgamma_323", "__lgamma"); +__static_renaming("__tgamma_324", "tgamma"); +__static_renaming("____tgamma_325", "__tgamma"); +__static_renaming("__gamma_326", "gamma"); +__static_renaming("____gamma_327", "__gamma"); +__static_renaming("__lgamma_r_329", "lgamma_r"); +__static_renaming("____lgamma_r_331", "__lgamma_r"); +__static_renaming("__rint_333", "rint"); +__static_renaming("__rint_334", "rint"); +__static_renaming("____rint_336", "__rint"); +__static_renaming("__nextafter_339", "nextafter"); +__static_renaming("____nextafter_342", "__nextafter"); +__static_renaming("__nexttoward_345", "nexttoward"); +__static_renaming("____nexttoward_348", "__nexttoward"); +__static_renaming("__remainder_351", "remainder"); +__static_renaming("____remainder_354", "__remainder"); +__static_renaming("__scalbn_357", "scalbn"); +__static_renaming("____scalbn_360", "__scalbn"); +__static_renaming("__ilogb_362", "ilogb"); +__static_renaming("____ilogb_364", "__ilogb"); +__static_renaming("__scalbln_367", "scalbln"); +__static_renaming("____scalbln_370", "__scalbln"); +__static_renaming("__nearbyint_372", "nearbyint"); +__static_renaming("____nearbyint_374", "__nearbyint"); +__static_renaming("__round_376", "round"); +__static_renaming("____round_378", "__round"); +__static_renaming("__trunc_380", "trunc"); +__static_renaming("____trunc_382", "__trunc"); +__static_renaming("__remquo_386", "remquo"); +__static_renaming("____remquo_390", "__remquo"); +__static_renaming("__lrint_392", "lrint"); +__static_renaming("____lrint_394", "__lrint"); +__static_renaming("__llrint_396", "llrint"); +__static_renaming("____llrint_398", "__llrint"); +__static_renaming("__lround_400", "lround"); +__static_renaming("____lround_402", "__lround"); +__static_renaming("__llround_404", "llround"); +__static_renaming("____llround_406", "__llround"); +__static_renaming("__fdim_409", "fdim"); +__static_renaming("____fdim_412", "__fdim"); +__static_renaming("__fmax_415", "fmax"); +__static_renaming("____fmax_418", "__fmax"); +__static_renaming("__fmin_421", "fmin"); +__static_renaming("____fmin_424", "__fmin"); +__static_renaming("____fpclassify_426", "__fpclassify"); +__static_renaming("____signbit_428", "__signbit"); +__static_renaming("__fma_432", "fma"); +__static_renaming("____fma_436", "__fma"); +__static_renaming("__scalb_439", "scalb"); +__static_renaming("____scalb_442", "__scalb"); +__static_renaming("__acosf_444", "acosf"); +__static_renaming("__acosf_445", "acosf"); +__static_renaming("____acosf_447", "__acosf"); +__static_renaming("__asinf_449", "asinf"); +__static_renaming("____asinf_451", "__asinf"); +__static_renaming("__atanf_453", "atanf"); +__static_renaming("____atanf_455", "__atanf"); +__static_renaming("__atan2f_458", "atan2f"); +__static_renaming("____atan2f_461", "__atan2f"); +__static_renaming("__cosf_463", "cosf"); +__static_renaming("__cosf_464", "cosf"); +__static_renaming("____cosf_466", "__cosf"); +__static_renaming("__sinf_468", "sinf"); +__static_renaming("__sinf_469", "sinf"); +__static_renaming("____sinf_471", "__sinf"); +__static_renaming("__tanf_473", "tanf"); +__static_renaming("____tanf_475", "__tanf"); +__static_renaming("__coshf_477", "coshf"); +__static_renaming("____coshf_479", "__coshf"); +__static_renaming("__sinhf_481", "sinhf"); +__static_renaming("____sinhf_483", "__sinhf"); +__static_renaming("__tanhf_485", "tanhf"); +__static_renaming("____tanhf_487", "__tanhf"); +__static_renaming("__acoshf_489", "acoshf"); +__static_renaming("____acoshf_491", "__acoshf"); +__static_renaming("__asinhf_493", "asinhf"); +__static_renaming("____asinhf_495", "__asinhf"); +__static_renaming("__atanhf_497", "atanhf"); +__static_renaming("____atanhf_499", "__atanhf"); +__static_renaming("__expf_501", "expf"); +__static_renaming("__expf_502", "expf"); +__static_renaming("____expf_504", "__expf"); +__static_renaming("__frexpf_507", "frexpf"); +__static_renaming("____frexpf_510", "__frexpf"); +__static_renaming("__ldexpf_513", "ldexpf"); +__static_renaming("____ldexpf_516", "__ldexpf"); +__static_renaming("__logf_518", "logf"); +__static_renaming("__logf_519", "logf"); +__static_renaming("____logf_521", "__logf"); +__static_renaming("__log10f_523", "log10f"); +__static_renaming("____log10f_525", "__log10f"); +__static_renaming("__modff_528", "modff"); +__static_renaming("____modff_531", "__modff"); +__static_renaming("__expm1f_533", "expm1f"); +__static_renaming("____expm1f_535", "__expm1f"); +__static_renaming("__log1pf_537", "log1pf"); +__static_renaming("____log1pf_539", "__log1pf"); +__static_renaming("__logbf_541", "logbf"); +__static_renaming("____logbf_543", "__logbf"); +__static_renaming("__exp2f_545", "exp2f"); +__static_renaming("____exp2f_547", "__exp2f"); +__static_renaming("__log2f_549", "log2f"); +__static_renaming("____log2f_551", "__log2f"); +__static_renaming("__powf_554", "powf"); +__static_renaming("__powf_555", "powf"); +__static_renaming("____powf_558", "__powf"); +__static_renaming("__sqrtf_560", "sqrtf"); +__static_renaming("____sqrtf_562", "__sqrtf"); +__static_renaming("__hypotf_565", "hypotf"); +__static_renaming("____hypotf_568", "__hypotf"); +__static_renaming("__cbrtf_570", "cbrtf"); +__static_renaming("____cbrtf_572", "__cbrtf"); +__static_renaming("__ceilf_574", "ceilf"); +__static_renaming("____ceilf_576", "__ceilf"); +__static_renaming("__fabsf_578", "fabsf"); +__static_renaming("____fabsf_580", "__fabsf"); +__static_renaming("__floorf_582", "floorf"); +__static_renaming("____floorf_584", "__floorf"); +__static_renaming("__fmodf_587", "fmodf"); +__static_renaming("____fmodf_590", "__fmodf"); +__static_renaming("____isinff_592", "__isinff"); +__static_renaming("____finitef_594", "__finitef"); +__static_renaming("__isinff_596", "isinff"); +__static_renaming("__finitef_598", "finitef"); +__static_renaming("__dremf_601", "dremf"); +__static_renaming("____dremf_604", "__dremf"); +__static_renaming("__significandf_606", "significandf"); +__static_renaming("____significandf_608", "__significandf"); +__static_renaming("__copysignf_611", "copysignf"); +__static_renaming("__copysignf_612", "copysignf"); +__static_renaming("____copysignf_615", "__copysignf"); +__static_renaming("__nanf_617", "nanf"); +__static_renaming("____nanf_619", "__nanf"); +__static_renaming("____isnanf_621", "__isnanf"); +__static_renaming("__isnanf_623", "isnanf"); +__static_renaming("__j0f_624", "j0f"); +__static_renaming("____j0f_625", "__j0f"); +__static_renaming("__j1f_626", "j1f"); +__static_renaming("____j1f_627", "__j1f"); +__static_renaming("__jnf_628", "jnf"); +__static_renaming("____jnf_629", "__jnf"); +__static_renaming("__y0f_630", "y0f"); +__static_renaming("____y0f_631", "__y0f"); +__static_renaming("__y1f_632", "y1f"); +__static_renaming("____y1f_633", "__y1f"); +__static_renaming("__ynf_634", "ynf"); +__static_renaming("____ynf_635", "__ynf"); +__static_renaming("__erff_636", "erff"); +__static_renaming("__erff_637", "erff"); +__static_renaming("____erff_638", "__erff"); +__static_renaming("__erfcf_639", "erfcf"); +__static_renaming("____erfcf_640", "__erfcf"); +__static_renaming("__lgammaf_641", "lgammaf"); +__static_renaming("____lgammaf_642", "__lgammaf"); +__static_renaming("__tgammaf_643", "tgammaf"); +__static_renaming("____tgammaf_644", "__tgammaf"); +__static_renaming("__gammaf_645", "gammaf"); +__static_renaming("____gammaf_646", "__gammaf"); +__static_renaming("__lgammaf_r_648", "lgammaf_r"); +__static_renaming("____lgammaf_r_650", "__lgammaf_r"); +__static_renaming("__rintf_652", "rintf"); +__static_renaming("__rintf_653", "rintf"); +__static_renaming("____rintf_655", "__rintf"); +__static_renaming("__nextafterf_658", "nextafterf"); +__static_renaming("____nextafterf_661", "__nextafterf"); +__static_renaming("__nexttowardf_664", "nexttowardf"); +__static_renaming("____nexttowardf_667", "__nexttowardf"); +__static_renaming("__remainderf_670", "remainderf"); +__static_renaming("____remainderf_673", "__remainderf"); +__static_renaming("__scalbnf_676", "scalbnf"); +__static_renaming("____scalbnf_679", "__scalbnf"); +__static_renaming("__ilogbf_681", "ilogbf"); +__static_renaming("____ilogbf_683", "__ilogbf"); +__static_renaming("__scalblnf_686", "scalblnf"); +__static_renaming("____scalblnf_689", "__scalblnf"); +__static_renaming("__nearbyintf_691", "nearbyintf"); +__static_renaming("____nearbyintf_693", "__nearbyintf"); +__static_renaming("__roundf_695", "roundf"); +__static_renaming("____roundf_697", "__roundf"); +__static_renaming("__truncf_699", "truncf"); +__static_renaming("____truncf_701", "__truncf"); +__static_renaming("__remquof_705", "remquof"); +__static_renaming("____remquof_709", "__remquof"); +__static_renaming("__lrintf_711", "lrintf"); +__static_renaming("____lrintf_713", "__lrintf"); +__static_renaming("__llrintf_715", "llrintf"); +__static_renaming("____llrintf_717", "__llrintf"); +__static_renaming("__lroundf_719", "lroundf"); +__static_renaming("____lroundf_721", "__lroundf"); +__static_renaming("__llroundf_723", "llroundf"); +__static_renaming("____llroundf_725", "__llroundf"); +__static_renaming("__fdimf_728", "fdimf"); +__static_renaming("____fdimf_731", "__fdimf"); +__static_renaming("__fmaxf_734", "fmaxf"); +__static_renaming("____fmaxf_737", "__fmaxf"); +__static_renaming("__fminf_740", "fminf"); +__static_renaming("____fminf_743", "__fminf"); +__static_renaming("____fpclassifyf_745", "__fpclassifyf"); +__static_renaming("____signbitf_747", "__signbitf"); +__static_renaming("__fmaf_751", "fmaf"); +__static_renaming("____fmaf_755", "__fmaf"); +__static_renaming("__scalbf_758", "scalbf"); +__static_renaming("____scalbf_761", "__scalbf"); +__static_renaming("__acosl_763", "acosl"); +__static_renaming("__acosl_764", "acosl"); +__static_renaming("____acosl_766", "__acosl"); +__static_renaming("__asinl_768", "asinl"); +__static_renaming("____asinl_770", "__asinl"); +__static_renaming("__atanl_772", "atanl"); +__static_renaming("____atanl_774", "__atanl"); +__static_renaming("__atan2l_777", "atan2l"); +__static_renaming("____atan2l_780", "__atan2l"); +__static_renaming("__cosl_782", "cosl"); +__static_renaming("____cosl_784", "__cosl"); +__static_renaming("__sinl_786", "sinl"); +__static_renaming("____sinl_788", "__sinl"); +__static_renaming("__tanl_790", "tanl"); +__static_renaming("____tanl_792", "__tanl"); +__static_renaming("__coshl_794", "coshl"); +__static_renaming("____coshl_796", "__coshl"); +__static_renaming("__sinhl_798", "sinhl"); +__static_renaming("____sinhl_800", "__sinhl"); +__static_renaming("__tanhl_802", "tanhl"); +__static_renaming("____tanhl_804", "__tanhl"); +__static_renaming("__acoshl_806", "acoshl"); +__static_renaming("____acoshl_808", "__acoshl"); +__static_renaming("__asinhl_810", "asinhl"); +__static_renaming("____asinhl_812", "__asinhl"); +__static_renaming("__atanhl_814", "atanhl"); +__static_renaming("____atanhl_816", "__atanhl"); +__static_renaming("__expl_818", "expl"); +__static_renaming("____expl_820", "__expl"); +__static_renaming("__frexpl_823", "frexpl"); +__static_renaming("____frexpl_826", "__frexpl"); +__static_renaming("__ldexpl_829", "ldexpl"); +__static_renaming("____ldexpl_832", "__ldexpl"); +__static_renaming("__logl_834", "logl"); +__static_renaming("____logl_836", "__logl"); +__static_renaming("__log10l_838", "log10l"); +__static_renaming("____log10l_840", "__log10l"); +__static_renaming("__modfl_843", "modfl"); +__static_renaming("____modfl_846", "__modfl"); +__static_renaming("__expm1l_848", "expm1l"); +__static_renaming("____expm1l_850", "__expm1l"); +__static_renaming("__log1pl_852", "log1pl"); +__static_renaming("____log1pl_854", "__log1pl"); +__static_renaming("__logbl_856", "logbl"); +__static_renaming("____logbl_858", "__logbl"); +__static_renaming("__exp2l_860", "exp2l"); +__static_renaming("____exp2l_862", "__exp2l"); +__static_renaming("__log2l_864", "log2l"); +__static_renaming("____log2l_866", "__log2l"); +__static_renaming("__powl_869", "powl"); +__static_renaming("____powl_872", "__powl"); +__static_renaming("__sqrtl_874", "sqrtl"); +__static_renaming("____sqrtl_876", "__sqrtl"); +__static_renaming("__hypotl_879", "hypotl"); +__static_renaming("____hypotl_882", "__hypotl"); +__static_renaming("__cbrtl_884", "cbrtl"); +__static_renaming("____cbrtl_886", "__cbrtl"); +__static_renaming("__ceill_888", "ceill"); +__static_renaming("____ceill_890", "__ceill"); +__static_renaming("__fabsl_892", "fabsl"); +__static_renaming("____fabsl_894", "__fabsl"); +__static_renaming("__floorl_896", "floorl"); +__static_renaming("____floorl_898", "__floorl"); +__static_renaming("__fmodl_901", "fmodl"); +__static_renaming("____fmodl_904", "__fmodl"); +__static_renaming("____isinfl_906", "__isinfl"); +__static_renaming("____finitel_908", "__finitel"); +__static_renaming("__isinfl_910", "isinfl"); +__static_renaming("__finitel_912", "finitel"); +__static_renaming("__dreml_915", "dreml"); +__static_renaming("____dreml_918", "__dreml"); +__static_renaming("__significandl_920", "significandl"); +__static_renaming("____significandl_922", "__significandl"); +__static_renaming("__copysignl_925", "copysignl"); +__static_renaming("__copysignl_926", "copysignl"); +__static_renaming("____copysignl_929", "__copysignl"); +__static_renaming("__nanl_931", "nanl"); +__static_renaming("____nanl_933", "__nanl"); +__static_renaming("____isnanl_935", "__isnanl"); +__static_renaming("__isnanl_937", "isnanl"); +__static_renaming("__j0l_938", "j0l"); +__static_renaming("____j0l_939", "__j0l"); +__static_renaming("__j1l_940", "j1l"); +__static_renaming("____j1l_941", "__j1l"); +__static_renaming("__jnl_942", "jnl"); +__static_renaming("____jnl_943", "__jnl"); +__static_renaming("__y0l_944", "y0l"); +__static_renaming("____y0l_945", "__y0l"); +__static_renaming("__y1l_946", "y1l"); +__static_renaming("____y1l_947", "__y1l"); +__static_renaming("__ynl_948", "ynl"); +__static_renaming("____ynl_949", "__ynl"); +__static_renaming("__erfl_950", "erfl"); +__static_renaming("__erfl_951", "erfl"); +__static_renaming("____erfl_952", "__erfl"); +__static_renaming("__erfcl_953", "erfcl"); +__static_renaming("____erfcl_954", "__erfcl"); +__static_renaming("__lgammal_955", "lgammal"); +__static_renaming("____lgammal_956", "__lgammal"); +__static_renaming("__tgammal_957", "tgammal"); +__static_renaming("____tgammal_958", "__tgammal"); +__static_renaming("__gammal_959", "gammal"); +__static_renaming("____gammal_960", "__gammal"); +__static_renaming("__lgammal_r_962", "lgammal_r"); +__static_renaming("____lgammal_r_964", "__lgammal_r"); +__static_renaming("__rintl_966", "rintl"); +__static_renaming("__rintl_967", "rintl"); +__static_renaming("____rintl_969", "__rintl"); +__static_renaming("__nextafterl_972", "nextafterl"); +__static_renaming("____nextafterl_975", "__nextafterl"); +__static_renaming("__nexttowardl_978", "nexttowardl"); +__static_renaming("____nexttowardl_981", "__nexttowardl"); +__static_renaming("__remainderl_984", "remainderl"); +__static_renaming("____remainderl_987", "__remainderl"); +__static_renaming("__scalbnl_990", "scalbnl"); +__static_renaming("____scalbnl_993", "__scalbnl"); +__static_renaming("__ilogbl_995", "ilogbl"); +__static_renaming("____ilogbl_997", "__ilogbl"); +__static_renaming("__scalblnl_1000", "scalblnl"); +__static_renaming("____scalblnl_1003", "__scalblnl"); +__static_renaming("__nearbyintl_1005", "nearbyintl"); +__static_renaming("____nearbyintl_1007", "__nearbyintl"); +__static_renaming("__roundl_1009", "roundl"); +__static_renaming("____roundl_1011", "__roundl"); +__static_renaming("__truncl_1013", "truncl"); +__static_renaming("____truncl_1015", "__truncl"); +__static_renaming("__remquol_1019", "remquol"); +__static_renaming("____remquol_1023", "__remquol"); +__static_renaming("__lrintl_1025", "lrintl"); +__static_renaming("____lrintl_1027", "__lrintl"); +__static_renaming("__llrintl_1029", "llrintl"); +__static_renaming("____llrintl_1031", "__llrintl"); +__static_renaming("__lroundl_1033", "lroundl"); +__static_renaming("____lroundl_1035", "__lroundl"); +__static_renaming("__llroundl_1037", "llroundl"); +__static_renaming("____llroundl_1039", "__llroundl"); +__static_renaming("__fdiml_1042", "fdiml"); +__static_renaming("____fdiml_1045", "__fdiml"); +__static_renaming("__fmaxl_1048", "fmaxl"); +__static_renaming("____fmaxl_1051", "__fmaxl"); +__static_renaming("__fminl_1054", "fminl"); +__static_renaming("____fminl_1057", "__fminl"); +__static_renaming("____fpclassifyl_1059", "__fpclassifyl"); +__static_renaming("____signbitl_1061", "__signbitl"); +__static_renaming("__fmal_1065", "fmal"); +__static_renaming("____fmal_1069", "__fmal"); +__static_renaming("__scalbl_1072", "scalbl"); +__static_renaming("____scalbl_1075", "__scalbl"); +__static_renaming("__signgam_1076", "signgam"); +__static_renaming("___LIB_VERSION_TYPE_1092", "_LIB_VERSION_TYPE"); +__static_renaming("___LIB_VERSION_1093", "_LIB_VERSION"); +__static_renaming("__matherr_1101", "matherr"); +__static_renaming("___delay_us_1103", "_delay_us"); +__static_renaming("___delay_ms_1105", "_delay_ms"); +__static_renaming("____tmp_1107", "__tmp"); +__static_renaming("____ticks_dc_1108", "__ticks_dc"); +__static_renaming("____builtin_avr_delay_cycles_1109", "__builtin_avr_delay_cycles"); +__static_renaming("____ticks_1110", "__ticks"); +__static_renaming("___delay_ms_1111", "_delay_ms"); +__static_renaming("____tmp_1147", "__tmp"); +__static_renaming("____ticks_dc_1148", "__ticks_dc"); +__static_renaming("____builtin_avr_delay_cycles_1149", "__builtin_avr_delay_cycles"); +__static_renaming("____ticks_1150", "__ticks"); +__static_renaming("____tmp2_1151", "__tmp2"); +__static_renaming("____ticks_1152", "__ticks"); +__static_renaming("___delay_us_1153", "_delay_us"); +__static_renaming("__ptrdiff_t_1191", "ptrdiff_t"); +__static_renaming("__size_t_1192", "size_t"); +__static_renaming("____u_char_1193", "__u_char"); +__static_renaming("____u_short_1194", "__u_short"); +__static_renaming("____u_int_1195", "__u_int"); +__static_renaming("____u_long_1196", "__u_long"); +__static_renaming("____int8_t_1197", "__int8_t"); +__static_renaming("____uint8_t_1198", "__uint8_t"); +__static_renaming("____int16_t_1199", "__int16_t"); +__static_renaming("____uint16_t_1200", "__uint16_t"); +__static_renaming("____int32_t_1201", "__int32_t"); +__static_renaming("____uint32_t_1202", "__uint32_t"); +__static_renaming("____int64_t_1203", "__int64_t"); +__static_renaming("____uint64_t_1204", "__uint64_t"); +__static_renaming("____quad_t_1205", "__quad_t"); +__static_renaming("____u_quad_t_1206", "__u_quad_t"); +__static_renaming("____dev_t_1207", "__dev_t"); +__static_renaming("____uid_t_1208", "__uid_t"); +__static_renaming("____gid_t_1209", "__gid_t"); +__static_renaming("____ino_t_1210", "__ino_t"); +__static_renaming("____ino64_t_1211", "__ino64_t"); +__static_renaming("____mode_t_1212", "__mode_t"); +__static_renaming("____nlink_t_1213", "__nlink_t"); +__static_renaming("____off_t_1214", "__off_t"); +__static_renaming("____off64_t_1215", "__off64_t"); +__static_renaming("____pid_t_1216", "__pid_t"); +__static_renaming("____fsid_t_1220", "__fsid_t"); +__static_renaming("____clock_t_1221", "__clock_t"); +__static_renaming("____rlim_t_1222", "__rlim_t"); +__static_renaming("____rlim64_t_1223", "__rlim64_t"); +__static_renaming("____id_t_1224", "__id_t"); +__static_renaming("____time_t_1225", "__time_t"); +__static_renaming("____useconds_t_1226", "__useconds_t"); +__static_renaming("____suseconds_t_1227", "__suseconds_t"); +__static_renaming("____daddr_t_1228", "__daddr_t"); +__static_renaming("____key_t_1229", "__key_t"); +__static_renaming("____clockid_t_1230", "__clockid_t"); +__static_renaming("____timer_t_1231", "__timer_t"); +__static_renaming("____blksize_t_1232", "__blksize_t"); +__static_renaming("____blkcnt_t_1233", "__blkcnt_t"); +__static_renaming("____blkcnt64_t_1234", "__blkcnt64_t"); +__static_renaming("____fsblkcnt_t_1235", "__fsblkcnt_t"); +__static_renaming("____fsblkcnt64_t_1236", "__fsblkcnt64_t"); +__static_renaming("____fsfilcnt_t_1237", "__fsfilcnt_t"); +__static_renaming("____fsfilcnt64_t_1238", "__fsfilcnt64_t"); +__static_renaming("____fsword_t_1239", "__fsword_t"); +__static_renaming("____ssize_t_1240", "__ssize_t"); +__static_renaming("____syscall_slong_t_1241", "__syscall_slong_t"); +__static_renaming("____syscall_ulong_t_1242", "__syscall_ulong_t"); +__static_renaming("____loff_t_1243", "__loff_t"); +__static_renaming("____qaddr_t_1245", "__qaddr_t"); +__static_renaming("____caddr_t_1246", "__caddr_t"); +__static_renaming("____intptr_t_1247", "__intptr_t"); +__static_renaming("____socklen_t_1248", "__socklen_t"); +__static_renaming("__FILE_1250", "FILE"); +__static_renaming("____FILE_1251", "__FILE"); +__static_renaming("____mbstate_t_1260", "__mbstate_t"); +__static_renaming("___G_fpos_t_1268", "_G_fpos_t"); +__static_renaming("___G_fpos64_t_1276", "_G_fpos64_t"); +__static_renaming("____gnuc_va_list_1277", "__gnuc_va_list"); +__static_renaming("___IO_lock_t_1279", "_IO_lock_t"); +__static_renaming("___IO_FILE_1362", "_IO_FILE"); +__static_renaming("___IO_FILE_1363", "_IO_FILE"); +__static_renaming("___IO_2_1_stdin__1366", "_IO_2_1_stdin_"); +__static_renaming("___IO_2_1_stdout__1367", "_IO_2_1_stdout_"); +__static_renaming("___IO_2_1_stderr__1368", "_IO_2_1_stderr_"); +__static_renaming("____io_read_fn_1372", "__io_read_fn"); +__static_renaming("____io_write_fn_1377", "__io_write_fn"); +__static_renaming("____io_seek_fn_1383", "__io_seek_fn"); +__static_renaming("____io_close_fn_1386", "__io_close_fn"); +__static_renaming("____underflow_1387", "__underflow"); +__static_renaming("____underflow_1388", "__underflow"); +__static_renaming("____uflow_1390", "__uflow"); +__static_renaming("____uflow_1391", "__uflow"); +__static_renaming("____overflow_1393", "__overflow"); +__static_renaming("____overflow_1394", "__overflow"); +__static_renaming("___IO_getc_1399", "_IO_getc"); +__static_renaming("___IO_getc_1400", "_IO_getc"); +__static_renaming("___IO_putc_1406", "_IO_putc"); +__static_renaming("___IO_putc_1407", "_IO_putc"); +__static_renaming("___IO_feof_1412", "_IO_feof"); +__static_renaming("___IO_feof_1413", "_IO_feof"); +__static_renaming("___IO_ferror_1418", "_IO_ferror"); +__static_renaming("___IO_ferror_1419", "_IO_ferror"); +__static_renaming("___IO_peekc_locked_1424", "_IO_peekc_locked"); +__static_renaming("___IO_peekc_locked_1425", "_IO_peekc_locked"); +__static_renaming("___IO_flockfile_1427", "_IO_flockfile"); +__static_renaming("___IO_flockfile_1428", "_IO_flockfile"); +__static_renaming("___IO_funlockfile_1430", "_IO_funlockfile"); +__static_renaming("___IO_funlockfile_1431", "_IO_funlockfile"); +__static_renaming("___IO_ftrylockfile_1433", "_IO_ftrylockfile"); +__static_renaming("___IO_ftrylockfile_1434", "_IO_ftrylockfile"); +__static_renaming("___IO_vfscanf_1436", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_1438", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_1442", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_1443", "_IO_vfscanf"); +__static_renaming("___IO_vfprintf_1445", "_IO_vfprintf"); +__static_renaming("___IO_vfprintf_1447", "_IO_vfprintf"); +__static_renaming("___IO_vfprintf_1451", "_IO_vfprintf"); +__static_renaming("___IO_padn_1452", "_IO_padn"); +__static_renaming("___IO_padn_1453", "_IO_padn"); +__static_renaming("___IO_sgetn_1456", "_IO_sgetn"); +__static_renaming("___IO_sgetn_1457", "_IO_sgetn"); +__static_renaming("___IO_seekoff_1459", "_IO_seekoff"); +__static_renaming("___IO_seekoff_1460", "_IO_seekoff"); +__static_renaming("___IO_seekpos_1463", "_IO_seekpos"); +__static_renaming("___IO_seekpos_1464", "_IO_seekpos"); +__static_renaming("___IO_free_backup_area_1467", "_IO_free_backup_area"); +__static_renaming("___IO_free_backup_area_1468", "_IO_free_backup_area"); +__static_renaming("__va_list_1470", "va_list"); +__static_renaming("__off_t_1472", "off_t"); +__static_renaming("__off_t_1474", "off_t"); +__static_renaming("__ssize_t_1476", "ssize_t"); +__static_renaming("__fpos_t_1478", "fpos_t"); +__static_renaming("__fpos_t_1480", "fpos_t"); +__static_renaming("__stdin_1482", "stdin"); +__static_renaming("__stdin_1483", "stdin"); +__static_renaming("__stdout_1485", "stdout"); +__static_renaming("__stdout_1486", "stdout"); +__static_renaming("__stderr_1488", "stderr"); +__static_renaming("__stderr_1489", "stderr"); +__static_renaming("__remove_1492", "remove"); +__static_renaming("__rename_1495", "rename"); +__static_renaming("__renameat_1500", "renameat"); +__static_renaming("__tmpfile_1501", "tmpfile"); +__static_renaming("__tmpfile_1503", "tmpfile"); +__static_renaming("__tmpfile_1505", "tmpfile"); +__static_renaming("__tmpfile_1507", "tmpfile"); +__static_renaming("__tmpnam_1510", "tmpnam"); +__static_renaming("__tmpnam_1511", "tmpnam"); +__static_renaming("__tmpnam_r_1513", "tmpnam_r"); +__static_renaming("__tmpnam_r_1514", "tmpnam_r"); +__static_renaming("__tempnam_1517", "tempnam"); +__static_renaming("__tempnam_1518", "tempnam"); +__static_renaming("__fclose_1521", "fclose"); +__static_renaming("__fclose_1523", "fclose"); +__static_renaming("__fflush_1527", "fflush"); +__static_renaming("__fflush_unlocked_1531", "fflush_unlocked"); +__static_renaming("__fopen_1535", "fopen"); +__static_renaming("__fopen_1537", "fopen"); +__static_renaming("__fopen_1545", "fopen"); +__static_renaming("__fopen_1547", "fopen"); +__static_renaming("__freopen_1553", "freopen"); +__static_renaming("__freopen_1555", "freopen"); +__static_renaming("__freopen_1557", "freopen"); +__static_renaming("__freopen_1559", "freopen"); +__static_renaming("__fdopen_1563", "fdopen"); +__static_renaming("__fdopen_1565", "fdopen"); +__static_renaming("__fmemopen_1570", "fmemopen"); +__static_renaming("__fmemopen_1572", "fmemopen"); +__static_renaming("__open_memstream_1576", "open_memstream"); +__static_renaming("__open_memstream_1578", "open_memstream"); +__static_renaming("__setbuf_1583", "setbuf"); +__static_renaming("__setbuf_1585", "setbuf"); +__static_renaming("__setvbuf_1592", "setvbuf"); +__static_renaming("__setbuffer_1598", "setbuffer"); +__static_renaming("__setlinebuf_1602", "setlinebuf"); +__static_renaming("__fprintf_1607", "fprintf"); +__static_renaming("__fprintf_1609", "fprintf"); +__static_renaming("__printf_1612", "printf"); +__static_renaming("__sprintf_1615", "sprintf"); +__static_renaming("__vfprintf_1621", "vfprintf"); +__static_renaming("__vprintf_1628", "vprintf"); +__static_renaming("__vsprintf_1634", "vsprintf"); +__static_renaming("__snprintf_1639", "snprintf"); +__static_renaming("__vsnprintf_1645", "vsnprintf"); +__static_renaming("__vdprintf_1651", "vdprintf"); +__static_renaming("__dprintf_1655", "dprintf"); +__static_renaming("__fscanf_1659", "fscanf"); +__static_renaming("__fscanf_1661", "fscanf"); +__static_renaming("__fscanf_1663", "fscanf"); +__static_renaming("__fscanf_1665", "fscanf"); +__static_renaming("__scanf_1668", "scanf"); +__static_renaming("__scanf_1669", "scanf"); +__static_renaming("__sscanf_1672", "sscanf"); +__static_renaming("__vfscanf_1700", "vfscanf"); +__static_renaming("__vfscanf_1704", "vfscanf"); +__static_renaming("__vscanf_1711", "vscanf"); +__static_renaming("__vscanf_1713", "vscanf"); +__static_renaming("__vsscanf_1719", "vsscanf"); +__static_renaming("__fgetc_1754", "fgetc"); +__static_renaming("__getc_1758", "getc"); +__static_renaming("__getchar_1760", "getchar"); +__static_renaming("__getc_unlocked_1763", "getc_unlocked"); +__static_renaming("__getchar_unlocked_1765", "getchar_unlocked"); +__static_renaming("__fgetc_unlocked_1768", "fgetc_unlocked"); +__static_renaming("__fputc_1773", "fputc"); +__static_renaming("__fputc_1775", "fputc"); +__static_renaming("__putc_1780", "putc"); +__static_renaming("__putchar_1783", "putchar"); +__static_renaming("__fputc_unlocked_1787", "fputc_unlocked"); +__static_renaming("__putc_unlocked_1792", "putc_unlocked"); +__static_renaming("__putchar_unlocked_1795", "putchar_unlocked"); +__static_renaming("__getw_1798", "getw"); +__static_renaming("__putw_1803", "putw"); +__static_renaming("__fgets_1809", "fgets"); +__static_renaming("__fgets_1811", "fgets"); +__static_renaming("__fgets_1813", "fgets"); +__static_renaming("__fgets_1815", "fgets"); +__static_renaming("____getdelim_1822", "__getdelim"); +__static_renaming("____getdelim_1826", "__getdelim"); +__static_renaming("__getdelim_1835", "getdelim"); +__static_renaming("__getdelim_1839", "getdelim"); +__static_renaming("__getline_1847", "getline"); +__static_renaming("__getline_1851", "getline"); +__static_renaming("__fputs_1858", "fputs"); +__static_renaming("__fputs_1860", "fputs"); +__static_renaming("__puts_1863", "puts"); +__static_renaming("__ungetc_1867", "ungetc"); +__static_renaming("__fseek_1905", "fseek"); +__static_renaming("__fseek_1907", "fseek"); +__static_renaming("__ftell_1911", "ftell"); +__static_renaming("__ftell_1913", "ftell"); +__static_renaming("__rewind_1917", "rewind"); +__static_renaming("__fseeko_1924", "fseeko"); +__static_renaming("__fseeko_1935", "fseeko"); +__static_renaming("__ftello_1941", "ftello"); +__static_renaming("__ftello_1945", "ftello"); +__static_renaming("__ftello_1949", "ftello"); +__static_renaming("__fgetpos_1957", "fgetpos"); +__static_renaming("__fgetpos_1969", "fgetpos"); +__static_renaming("__fsetpos_1977", "fsetpos"); +__static_renaming("__fsetpos_1981", "fsetpos"); +__static_renaming("__clearerr_1987", "clearerr"); +__static_renaming("__feof_1991", "feof"); +__static_renaming("__feof_1993", "feof"); +__static_renaming("__ferror_1997", "ferror"); +__static_renaming("__ferror_1999", "ferror"); +__static_renaming("__clearerr_unlocked_2003", "clearerr_unlocked"); +__static_renaming("__feof_unlocked_2007", "feof_unlocked"); +__static_renaming("__feof_unlocked_2009", "feof_unlocked"); +__static_renaming("__ferror_unlocked_2013", "ferror_unlocked"); +__static_renaming("__ferror_unlocked_2015", "ferror_unlocked"); +__static_renaming("__perror_2018", "perror"); +__static_renaming("__perror_2019", "perror"); +__static_renaming("__sys_nerr_2020", "sys_nerr"); +__static_renaming("__sys_errlist_2021", "sys_errlist"); +__static_renaming("__fileno_2024", "fileno"); +__static_renaming("__fileno_2026", "fileno"); +__static_renaming("__fileno_unlocked_2030", "fileno_unlocked"); +__static_renaming("__fileno_unlocked_2032", "fileno_unlocked"); +__static_renaming("__popen_2036", "popen"); +__static_renaming("__popen_2038", "popen"); +__static_renaming("__pclose_2042", "pclose"); +__static_renaming("__ctermid_2045", "ctermid"); +__static_renaming("__flockfile_2048", "flockfile"); +__static_renaming("__ftrylockfile_2052", "ftrylockfile"); +__static_renaming("__ftrylockfile_2054", "ftrylockfile"); +__static_renaming("__funlockfile_2058", "funlockfile"); +__static_renaming("____sprintf_chk_2090", "__sprintf_chk"); +__static_renaming("____vsprintf_chk_2097", "__vsprintf_chk"); +__static_renaming("____snprintf_chk_2111", "__snprintf_chk"); +__static_renaming("____vsnprintf_chk_2119", "__vsnprintf_chk"); +__static_renaming("____fprintf_chk_2134", "__fprintf_chk"); +__static_renaming("____printf_chk_2138", "__printf_chk"); +__static_renaming("____vfprintf_chk_2145", "__vfprintf_chk"); +__static_renaming("____vprintf_chk_2153", "__vprintf_chk"); +__static_renaming("____dprintf_chk_2175", "__dprintf_chk"); +__static_renaming("____vdprintf_chk_2181", "__vdprintf_chk"); +__static_renaming("____fgets_chk_2195", "__fgets_chk"); +__static_renaming("____fgets_chk_2197", "__fgets_chk"); +__static_renaming("____fgets_chk_2199", "__fgets_chk"); +__static_renaming("____fgets_alias_2205", "__fgets_alias"); +__static_renaming("____fgets_chk_warn_2212", "__fgets_chk_warn"); +__static_renaming("____cnt_2278", "__cnt"); +__static_renaming("____cptr_2279", "__cptr"); +__static_renaming("__enable_x_2283", "enable_x"); +__static_renaming("__enable_x_2284", "enable_x"); +__static_renaming("__enable_x_2285", "enable_x"); +__static_renaming("__enable_y_2289", "enable_y"); +__static_renaming("__enable_z_2292", "enable_z"); +__static_renaming("__old_pin_2295", "old_pin"); +__static_renaming("__old_pin_2296", "old_pin"); +__static_renaming("__old_pin_2297", "old_pin"); +__static_renaming("__babystep_2298", "babystep"); +__static_renaming("__main_2318", "main"); +__static_renaming("__main_2319", "main"); + +__static_condition_renaming("__static_condition_default_55", "(defined ____gwchar_t_defined)"); +__static_condition_renaming("__static_condition_default_87", "!(defined _FORTIFY_SOURCE) && (defined ____gwchar_t_defined) && (defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined ____gwchar_t_defined) && (defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined ____gwchar_t_defined) && (defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined ____gwchar_t_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_89", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined ____gwchar_t_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_95", "(defined ____gwchar_t_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_103", "!(defined _FORTIFY_SOURCE) && (defined ____gwchar_t_defined) && (defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined ____gwchar_t_defined) && (defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined ____gwchar_t_defined) && (defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined ____gwchar_t_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_105", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined ____gwchar_t_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_111", "(defined ____gwchar_t_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_118", "!(defined __DOXYGEN__)"); +__static_condition_renaming("__static_condition_default_119", "(defined __DOXYGEN__)"); +__static_condition_renaming("__static_condition_default_122", "(defined __DOXYGEN__)"); +__static_condition_renaming("__static_condition_default_1112", "(defined __DOXYGEN__)"); +__static_condition_renaming("__static_condition_default_1113", "(defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES"); +__static_condition_renaming("__static_condition_default_1114", "(defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES"); +__static_condition_renaming("__static_condition_default_1115", "(defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES && !(defined __DELAY_ROUND_DOWN__) && (defined __DELAY_ROUND_CLOSEST__)"); +__static_condition_renaming("__static_condition_default_1116", "(defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES && (defined __DELAY_ROUND_DOWN__)"); +__static_condition_renaming("__static_condition_default_1117", "(defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES && !(defined __DELAY_ROUND_DOWN__) && !(defined __DELAY_ROUND_CLOSEST__)"); +__static_condition_renaming("__static_condition_default_1118", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) && !(defined F_CPU) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1119", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) && (defined F_CPU) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1120", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1121", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1122", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1123", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1124", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) && !(defined F_CPU) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1125", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) && (defined F_CPU) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1126", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1127", "(defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES"); +__static_condition_renaming("__static_condition_default_1128", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1129", "!(defined __DOXYGEN__)"); +__static_condition_renaming("__static_condition_default_1130", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES"); +__static_condition_renaming("__static_condition_default_1131", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES"); +__static_condition_renaming("__static_condition_default_1132", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !(defined __DELAY_ROUND_DOWN__) && (defined __DELAY_ROUND_CLOSEST__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES && !(defined __DELAY_ROUND_DOWN__) && (defined __DELAY_ROUND_CLOSEST__)"); +__static_condition_renaming("__static_condition_default_1133", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && (defined __DELAY_ROUND_DOWN__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES && (defined __DELAY_ROUND_DOWN__)"); +__static_condition_renaming("__static_condition_default_1134", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !(defined __DELAY_ROUND_DOWN__) && !(defined __DELAY_ROUND_CLOSEST__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES && !(defined __DELAY_ROUND_DOWN__) && !(defined __DELAY_ROUND_CLOSEST__)"); +__static_condition_renaming("__static_condition_default_1135", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) && !(defined F_CPU) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) && !(defined F_CPU) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1136", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) && (defined F_CPU) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) && (defined F_CPU) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1137", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1138", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1139", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1140", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1141", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) && !(defined F_CPU) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) && !(defined F_CPU) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1142", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) && (defined F_CPU) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) && (defined F_CPU) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1143", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1144", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES"); +__static_condition_renaming("__static_condition_default_1145", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1154", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES"); +__static_condition_renaming("__static_condition_default_1155", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES"); +__static_condition_renaming("__static_condition_default_1156", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !(defined __DELAY_ROUND_DOWN__) && (defined __DELAY_ROUND_CLOSEST__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES && !(defined __DELAY_ROUND_DOWN__) && (defined __DELAY_ROUND_CLOSEST__)"); +__static_condition_renaming("__static_condition_default_1157", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && (defined __DELAY_ROUND_DOWN__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES && (defined __DELAY_ROUND_DOWN__)"); +__static_condition_renaming("__static_condition_default_1158", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !(defined __DELAY_ROUND_DOWN__) && !(defined __DELAY_ROUND_CLOSEST__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES && !(defined __DELAY_ROUND_DOWN__) && !(defined __DELAY_ROUND_CLOSEST__)"); +__static_condition_renaming("__static_condition_default_1159", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) && !(defined F_CPU) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) && !(defined F_CPU) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1160", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) && (defined F_CPU) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) && (defined F_CPU) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1161", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) && !(defined F_CPU) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) && !(defined F_CPU) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1162", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) && (defined F_CPU) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) && (defined F_CPU) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1163", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1164", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1165", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1166", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1167", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1168", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1169", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1170", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES"); +__static_condition_renaming("__static_condition_default_1171", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1172", "(defined __DOXYGEN__)"); +__static_condition_renaming("__static_condition_default_1173", "(defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES"); +__static_condition_renaming("__static_condition_default_1174", "(defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES"); +__static_condition_renaming("__static_condition_default_1175", "(defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES && !(defined __DELAY_ROUND_DOWN__) && (defined __DELAY_ROUND_CLOSEST__)"); +__static_condition_renaming("__static_condition_default_1176", "(defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES && (defined __DELAY_ROUND_DOWN__)"); +__static_condition_renaming("__static_condition_default_1177", "(defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES && !(defined __DELAY_ROUND_DOWN__) && !(defined __DELAY_ROUND_CLOSEST__)"); +__static_condition_renaming("__static_condition_default_1178", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) && !(defined F_CPU) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1179", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) && (defined F_CPU) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1180", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) && !(defined F_CPU) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1181", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) && (defined F_CPU) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1182", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1183", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1184", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1185", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1186", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1187", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1188", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1189", "(defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES"); +__static_condition_renaming("__static_condition_default_1190", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1244", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1267", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1275", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1314", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_1360", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_1361", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_1364", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1373", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1378", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1384", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1389", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1392", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1395", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1401", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1408", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1414", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1420", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1426", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1429", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1432", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1435", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1437", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_1439", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_1440", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_1441", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_1444", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_1446", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_1448", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_1449", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_1450", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_1454", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_1455", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1458", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1461", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_1462", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1465", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_1466", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1469", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1471", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); +__static_condition_renaming("__static_condition_default_1473", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_1475", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_1477", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1479", "!(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1481", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1484", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1487", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1490", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1502", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1504", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1506", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1508", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1522", "(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1524", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1528", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1532", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1536", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1538", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1546", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1548", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1554", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1556", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1558", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1560", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1564", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1566", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1571", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1573", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1577", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1579", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1584", "(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1586", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1593", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1599", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1603", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1608", "(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1610", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1622", "!(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1623", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_1624", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1629", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1635", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1646", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1652", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1660", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1662", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1664", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1666", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1677", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1679", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1680", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1682", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1684", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1685", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1688", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_1690", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_1694", "!(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_1701", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1702", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_1703", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1705", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1706", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_1707", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1712", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1714", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1720", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1727", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_1728", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1729", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_1730", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1732", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_1733", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1734", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_1735", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1740", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_1741", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1743", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_1744", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1750", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_1751", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1755", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1759", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1764", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1769", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1774", "(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1776", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1781", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1788", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1793", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1799", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1804", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1810", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1812", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1814", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1816", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1823", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1824", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1825", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1827", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1828", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1829", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1836", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1837", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1838", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1840", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1841", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1842", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1848", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1849", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1850", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1852", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1853", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1854", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1859", "(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1861", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1868", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1874", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1875", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1876", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1877", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1883", "!(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1884", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1890", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1891", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1892", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1893", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1899", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1900", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1906", "(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1908", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1912", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1914", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1918", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1925", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1926", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1927", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1936", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1937", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1938", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1942", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1943", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1944", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1946", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1947", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1948", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1950", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1951", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1952", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1958", "!(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1959", "!(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_1960", "!(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1970", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1971", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_1972", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1978", "!(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1979", "!(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_1980", "!(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1982", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1983", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_1984", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1988", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1992", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1994", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1998", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2000", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2004", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2008", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2010", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2014", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2016", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2025", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2027", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2031", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2033", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2037", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2039", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2043", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2049", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2053", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2055", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2059", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2063", "!(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2066", "!(defined __STRICT_ANSI__) && (defined __USE_EXTERN_INLINES) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2069", "!(defined __STRICT_ANSI__) && (defined __USE_EXTERN_INLINES) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2074", "!(defined __STRICT_ANSI__) && (defined __USE_EXTERN_INLINES) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2078", "!(defined __STRICT_ANSI__) && (defined __USE_EXTERN_INLINES) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2082", "!(defined __STRICT_ANSI__) && (defined __USE_EXTERN_INLINES) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2085", "!(defined __STRICT_ANSI__) && (defined __USE_EXTERN_INLINES) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2098", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2105", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2120", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2129", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2135", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2146", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2147", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_2148", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2154", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2158", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2163", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2169", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2170", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_2171", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2182", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2189", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2196", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2198", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2200", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2206", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2213", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2218", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2219", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2226", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2227", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2233", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2234", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2241", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2242", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2248", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2249", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2256", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2257", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2263", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2264", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2271", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2272", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2280", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_2281", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2282", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2286", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) || (defined __STRICT_ANSI__) && !(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_2287", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_2288", "(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_2290", "!(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_2291", "(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_2299", "(defined BABYSTEPPING)"); +__static_condition_renaming("__static_condition_default_2300", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined BABYSTEPPING) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined BABYSTEPPING) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined BABYSTEPPING) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined BABYSTEPPING) || (defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined BABYSTEPPING)"); +__static_condition_renaming("__static_condition_default_2301", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined BABYSTEPPING)"); +__static_condition_renaming("__static_condition_default_2302", "(defined __need___FILE) && (defined BABYSTEPPING)"); +__static_condition_renaming("__static_condition_default_2303", "!(defined __DOXYGEN__) && (defined BABYSTEPPING)"); +__static_condition_renaming("__static_condition_default_2304", "(defined __DOXYGEN__) && (defined BABYSTEPPING)"); +__static_condition_renaming("__static_condition_default_2305", "!(defined __DOXYGEN__) && (defined BABYSTEPPING)"); +__static_condition_renaming("__static_condition_default_2306", "(defined __DOXYGEN__) && (defined BABYSTEPPING)"); +__static_condition_renaming("__static_condition_default_2307", "(defined BABYSTEPPING) && !(defined DELTA)"); +__static_condition_renaming("__static_condition_default_2308", "!(defined __DOXYGEN__) && (defined BABYSTEPPING) && !(defined DELTA)"); +__static_condition_renaming("__static_condition_default_2309", "(defined __DOXYGEN__) && (defined BABYSTEPPING) && !(defined DELTA)"); +__static_condition_renaming("__static_condition_default_2310", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined BABYSTEPPING) && (defined DELTA) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined BABYSTEPPING) && (defined DELTA) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined BABYSTEPPING) && (defined DELTA) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined BABYSTEPPING) && (defined DELTA) || (defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined BABYSTEPPING) && (defined DELTA)"); +__static_condition_renaming("__static_condition_default_2311", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined BABYSTEPPING) && (defined DELTA)"); +__static_condition_renaming("__static_condition_default_2312", "(defined __need___FILE) && (defined BABYSTEPPING) && (defined DELTA)"); +__static_condition_renaming("__static_condition_default_2313", "(defined BABYSTEPPING) && (defined DELTA)"); +__static_condition_renaming("__static_condition_default_2314", "(defined BABYSTEPPING) && (defined DELTA)"); +__static_condition_renaming("__static_condition_default_2315", "(defined BABYSTEPPING) && !(defined DELTA)"); +__static_condition_renaming("__static_condition_default_2316", "!(defined __DOXYGEN__) && (defined BABYSTEPPING) && (defined DELTA)"); +__static_condition_renaming("__static_condition_default_2317", "(defined __DOXYGEN__) && (defined BABYSTEPPING) && (defined DELTA)"); +__static_condition_renaming("__static_condition_default_2320", "!(defined BABYSTEPPING)"); +__static_condition_renaming("__static_condition_default_2321", "(defined BABYSTEPPING)"); +__static_condition_renaming("__static_condition_default_2322", "!(defined __FAST_MATH__) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __FAST_MATH__) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) || (defined __FAST_MATH__) && !(defined _OPENMP) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined __FAST_MATH__) && !(defined _OPENMP) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) || (defined __FAST_MATH__) && (defined _OPENMP) && !(_OPENMP >= 201307) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined __FAST_MATH__) && (defined _OPENMP) && !(_OPENMP >= 201307) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) || (defined __FAST_MATH__) && (defined _OPENMP) && (_OPENMP >= 201307)"); + +if (__static_condition_default_2322) { __static_parse_error("Unable to parse"); } }; -typedef long int __ptrdiff_t_0;// L143:L324 -typedef long unsigned int __size_t_1;// L177:L209 -typedef unsigned char ____u_char_2;// L30 -typedef unsigned short int ____u_short_3;// L31 -typedef unsigned int ____u_int_4;// L32 -typedef unsigned long int ____u_long_5;// L33 -typedef signed char ____int8_t_6;// L36 -typedef unsigned char ____uint8_t_7;// L37 -typedef signed short int ____int16_t_8;// L38 -typedef unsigned short int ____uint16_t_9;// L39 -typedef signed int ____int32_t_10;// L40 -typedef unsigned int ____uint32_t_11;// L41 -typedef signed long int ____int64_t_12;// L43 -typedef unsigned long int ____uint64_t_13;// L44 -typedef long int ____quad_t_14;// L52 -typedef unsigned long int ____u_quad_t_15;// L53 -typedef unsigned long int ____dev_t_16;// L109:L124 -typedef unsigned int ____uid_t_17;// L92:L125 -typedef unsigned int ____gid_t_18;// L92:L126 -typedef unsigned long int ____ino_t_19;// L94:L127 -typedef unsigned long int ____ino64_t_20;// L109:L128 -typedef unsigned int ____mode_t_21;// L92:L129 -typedef unsigned long int ____nlink_t_22;// L94:L130 -typedef long int ____off_t_23;// L93:L131 -typedef long int ____off64_t_24;// L108:L132 -typedef int ____pid_t_25;// L91:L133 -struct ____anonymous_tag_26_27 { -int ____val_28[2];// L72 +typedef signed char __int8_t_0;// L36 +typedef short int __int16_t_1;// L37 +typedef int __int32_t_2;// L38 +typedef long int __int64_t_3;// L40 +typedef unsigned char __uint8_t_4;// L48 +typedef unsigned short int __uint16_t_5;// L49 +typedef unsigned int __uint32_t_6;// L51 +typedef unsigned long int __uint64_t_7;// L55 +typedef signed char __int_least8_t_8;// L65 +typedef short int __int_least16_t_9;// L66 +typedef int __int_least32_t_10;// L67 +typedef long int __int_least64_t_11;// L69 +typedef unsigned char __uint_least8_t_12;// L76 +typedef unsigned short int __uint_least16_t_13;// L77 +typedef unsigned int __uint_least32_t_14;// L78 +typedef unsigned long int __uint_least64_t_15;// L80 +typedef signed char __int_fast8_t_16;// L90 +typedef long int __int_fast16_t_17;// L92 +typedef long int __int_fast32_t_18;// L93 +typedef long int __int_fast64_t_19;// L94 +typedef unsigned char __uint_fast8_t_20;// L103 +typedef unsigned long int __uint_fast16_t_21;// L105 +typedef unsigned long int __uint_fast32_t_22;// L106 +typedef unsigned long int __uint_fast64_t_23;// L107 +typedef long int __intptr_t_24;// L119 +typedef unsigned long int __uintptr_t_25;// L122 +typedef long int __intmax_t_26;// L134 +typedef unsigned long int __uintmax_t_27;// L135 +typedef int ____gwchar_t_28;// L34:L243 +struct ____anonymous_tag_29_30 { +long int __quot_31;// L273 +long int __rem_32;// L274 }; -typedef struct ____anonymous_tag_26_27 ____fsid_t_29;// L72:L134 -typedef long int ____clock_t_30;// L93:L135 -typedef unsigned long int ____rlim_t_31;// L94:L136 -typedef unsigned long int ____rlim64_t_32;// L109:L137 -typedef unsigned int ____id_t_33;// L92:L138 -typedef long int ____time_t_34;// L93:L139 -typedef unsigned int ____useconds_t_35;// L92:L140 -typedef long int ____suseconds_t_36;// L93:L141 -typedef int ____daddr_t_37;// L91:L143 -typedef int ____key_t_38;// L91:L144 -typedef int ____clockid_t_39;// L91:L147 -typedef void * (____timer_t_40);// L70:L150 -typedef long int ____blksize_t_41;// L93:L153 -typedef long int ____blkcnt_t_42;// L93:L158 -typedef long int ____blkcnt64_t_43;// L108:L159 -typedef unsigned long int ____fsblkcnt_t_44;// L94:L162 -typedef unsigned long int ____fsblkcnt64_t_45;// L109:L163 -typedef unsigned long int ____fsfilcnt_t_46;// L94:L166 -typedef unsigned long int ____fsfilcnt64_t_47;// L109:L167 -typedef long int ____fsword_t_48;// L93:L170 -typedef long int ____ssize_t_49;// L110:L172 -typedef long int ____syscall_slong_t_50;// L93:L175 -typedef unsigned long int ____syscall_ulong_t_51;// L94:L177 -typedef ____off64_t_24 ____loff_t_52;// L181 -typedef ____quad_t_14 * (____qaddr_t_54);// L182 -typedef char * (____caddr_t_55);// L183 -typedef long int ____intptr_t_56;// L110:L186 -typedef unsigned int ____socklen_t_57;// L92:L189 -typedef struct __forward_tag_reference_58 __FILE_59;// L48 -typedef struct __forward_tag_reference_58 ____FILE_60;// L64 -union ____anonymous_tag_61_62 { -unsigned int ____wch_63;// L265 -char ____wchb_64[4];// L92 +typedef struct ____anonymous_tag_29_30 __imaxdiv_t_33;// L271:L275 +typedef struct ____anonymous_tag_29_30 __imaxdiv_t_34;// L271:L275 +typedef float __float_t_123;// L28 +typedef double __double_t_124;// L29 +enum ____anonymous_tag_1083_1084 { +__FP_NAN_1077 = 0, +__FP_NAN_1078 = 0, +__FP_INFINITE_1079 = 1, +__FP_ZERO_1080 = 2, +__FP_SUBNORMAL_1081 = 3, +__FP_NORMAL_1082 = 4, }; -struct ____anonymous_tag_65_66 { -int ____count_67;// L84 -union ____anonymous_tag_61_62 ____value_68;// L85 +enum ____anonymous_tag_1090_1091 { +___IEEE__1085 = - 1, +___SVID__1086, +___XOPEN__1087, +___POSIX__1088, +___ISOC__1089, }; -typedef struct ____anonymous_tag_65_66 ____mbstate_t_69;// L82:L94 -struct ____anonymous_tag_70_71 { -____off_t_23 ____pos_72;// L0 -____mbstate_t_69 ____state_74;// L0 +typedef enum ____anonymous_tag_1090_1091 ___LIB_VERSION_TYPE_1092;// L347:L354 +struct __exception_1094 { +int __type_1095;// L375 +char * (__name_1096);// L376 +double __arg1_1097;// L377 +double __arg2_1098;// L378 +double __retval_1099;// L379 }; -typedef struct ____anonymous_tag_70_71 ___G_fpos_t_77;// L21:L25 -struct ____anonymous_tag_78_79 { -____off64_t_24 ____pos_80;// L0 -____mbstate_t_69 ____state_82;// L0 +typedef long int __ptrdiff_t_1191;// L143:L324 +typedef long unsigned int __size_t_1192;// L177:L209 +typedef unsigned char ____u_char_1193;// L30 +typedef unsigned short int ____u_short_1194;// L31 +typedef unsigned int ____u_int_1195;// L32 +typedef unsigned long int ____u_long_1196;// L33 +typedef signed char ____int8_t_1197;// L36 +typedef unsigned char ____uint8_t_1198;// L37 +typedef signed short int ____int16_t_1199;// L38 +typedef unsigned short int ____uint16_t_1200;// L39 +typedef signed int ____int32_t_1201;// L40 +typedef unsigned int ____uint32_t_1202;// L41 +typedef signed long int ____int64_t_1203;// L43 +typedef unsigned long int ____uint64_t_1204;// L44 +typedef long int ____quad_t_1205;// L52 +typedef unsigned long int ____u_quad_t_1206;// L53 +typedef unsigned long int ____dev_t_1207;// L109:L124 +typedef unsigned int ____uid_t_1208;// L92:L125 +typedef unsigned int ____gid_t_1209;// L92:L126 +typedef unsigned long int ____ino_t_1210;// L94:L127 +typedef unsigned long int ____ino64_t_1211;// L109:L128 +typedef unsigned int ____mode_t_1212;// L92:L129 +typedef unsigned long int ____nlink_t_1213;// L94:L130 +typedef long int ____off_t_1214;// L93:L131 +typedef long int ____off64_t_1215;// L108:L132 +typedef int ____pid_t_1216;// L91:L133 +struct ____anonymous_tag_1217_1218 { +int ____val_1219[2];// L72 }; -typedef struct ____anonymous_tag_78_79 ___G_fpos64_t_85;// L26:L30 -typedef __builtin_va_list ____gnuc_va_list_86;// L40 -typedef void ___IO_lock_t_88;// L150 -struct ___IO_marker_90 { -struct __forward_tag_reference_89 * (___next_91);// L0 -struct __forward_tag_reference_58 * (___sbuf_92);// L0 -int ___pos_93;// L162 +typedef struct ____anonymous_tag_1217_1218 ____fsid_t_1220;// L72:L134 +typedef long int ____clock_t_1221;// L93:L135 +typedef unsigned long int ____rlim_t_1222;// L94:L136 +typedef unsigned long int ____rlim64_t_1223;// L109:L137 +typedef unsigned int ____id_t_1224;// L92:L138 +typedef long int ____time_t_1225;// L93:L139 +typedef unsigned int ____useconds_t_1226;// L92:L140 +typedef long int ____suseconds_t_1227;// L93:L141 +typedef int ____daddr_t_1228;// L91:L143 +typedef int ____key_t_1229;// L91:L144 +typedef int ____clockid_t_1230;// L91:L147 +typedef void * (____timer_t_1231);// L70:L150 +typedef long int ____blksize_t_1232;// L93:L153 +typedef long int ____blkcnt_t_1233;// L93:L158 +typedef long int ____blkcnt64_t_1234;// L108:L159 +typedef unsigned long int ____fsblkcnt_t_1235;// L94:L162 +typedef unsigned long int ____fsblkcnt64_t_1236;// L109:L163 +typedef unsigned long int ____fsfilcnt_t_1237;// L94:L166 +typedef unsigned long int ____fsfilcnt64_t_1238;// L109:L167 +typedef long int ____fsword_t_1239;// L93:L170 +typedef long int ____ssize_t_1240;// L110:L172 +typedef long int ____syscall_slong_t_1241;// L93:L175 +typedef unsigned long int ____syscall_ulong_t_1242;// L94:L177 +typedef ____off64_t_1215 ____loff_t_1243;// L181 +typedef ____quad_t_1205 * (____qaddr_t_1245);// L182 +typedef char * (____caddr_t_1246);// L183 +typedef long int ____intptr_t_1247;// L110:L186 +typedef unsigned int ____socklen_t_1248;// L92:L189 +typedef struct __forward_tag_reference_1249 __FILE_1250;// L48 +typedef struct __forward_tag_reference_1249 ____FILE_1251;// L64 +union ____anonymous_tag_1252_1253 { +unsigned int ____wch_1254;// L265 +char ____wchb_1255[4];// L92 }; -enum ____codecvt_result_98 { -____codecvt_ok_94, -____codecvt_partial_95, -____codecvt_error_96, -____codecvt_noconv_97, +struct ____anonymous_tag_1256_1257 { +int ____count_1258;// L84 +union ____anonymous_tag_1252_1253 ____value_1259;// L85 }; -struct ___IO_FILE_99 { -int ___flags_100;// L242 -char * (___IO_read_ptr_101);// L247 -char * (___IO_read_end_102);// L248 -char * (___IO_read_base_103);// L249 -char * (___IO_write_base_104);// L250 -char * (___IO_write_ptr_105);// L251 -char * (___IO_write_end_106);// L252 -char * (___IO_buf_base_107);// L253 -char * (___IO_buf_end_108);// L254 -char * (___IO_save_base_109);// L256 -char * (___IO_backup_base_110);// L257 -char * (___IO_save_end_111);// L258 -struct ___IO_marker_90 * (___markers_112);// L260 -struct __forward_tag_reference_58 * (___chain_113);// L0 -int ___fileno_114;// L264 -int ___flags2_115;// L268 -____off_t_23 ___old_offset_116;// L0 -unsigned short ___cur_column_118;// L274 -signed char ___vtable_offset_119;// L275 -char ___shortbuf_120[1];// L276 -___IO_lock_t_88 * (___lock_121);// L0 +typedef struct ____anonymous_tag_1256_1257 ____mbstate_t_1260;// L82:L94 +struct ____anonymous_tag_1261_1262 { +____off_t_1214 ____pos_1263;// L0 +____mbstate_t_1260 ____state_1265;// L0 }; -struct ___IO_FILE_124 { -int ___flags_125;// L242 -char * (___IO_read_ptr_126);// L247 -char * (___IO_read_end_127);// L248 -char * (___IO_read_base_128);// L249 -char * (___IO_write_base_129);// L250 -char * (___IO_write_ptr_130);// L251 -char * (___IO_write_end_131);// L252 -char * (___IO_buf_base_132);// L253 -char * (___IO_buf_end_133);// L254 -char * (___IO_save_base_134);// L256 -char * (___IO_backup_base_135);// L257 -char * (___IO_save_end_136);// L258 -struct ___IO_marker_90 * (___markers_137);// L260 -struct __forward_tag_reference_58 * (___chain_138);// L0 -int ___fileno_139;// L264 -int ___flags2_140;// L268 -____off_t_23 ___old_offset_141;// L0 -unsigned short ___cur_column_143;// L274 -signed char ___vtable_offset_144;// L275 -char ___shortbuf_145[1];// L276 -___IO_lock_t_88 * (___lock_146);// L0 -____off64_t_24 ___offset_148;// L0 -void * (____pad1_150);// L297 -void * (____pad2_151);// L298 -void * (____pad3_152);// L299 -void * (____pad4_153);// L300 -__size_t_1 ____pad5_154;// L0 -int ___mode_155;// L303 -char ___unused2_156[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +typedef struct ____anonymous_tag_1261_1262 ___G_fpos_t_1268;// L21:L25 +struct ____anonymous_tag_1269_1270 { +____off64_t_1215 ____pos_1271;// L0 +____mbstate_t_1260 ____state_1273;// L0 }; -struct ___IO_FILE_complete_157 { -struct ___IO_FILE_99 ___file_158;// L286 -____off64_t_24 ___offset_160;// L0 -void * (____pad1_162);// L297 -void * (____pad2_163);// L298 -void * (____pad3_164);// L299 -void * (____pad4_165);// L300 -__size_t_1 ____pad5_166;// L0 -int ___mode_167;// L303 -char ___unused2_168[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +typedef struct ____anonymous_tag_1269_1270 ___G_fpos64_t_1276;// L26:L30 +typedef __builtin_va_list ____gnuc_va_list_1277;// L40 +typedef void ___IO_lock_t_1279;// L150 +struct ___IO_marker_1281 { +struct __forward_tag_reference_1280 * (___next_1282);// L0 +struct __forward_tag_reference_1249 * (___sbuf_1283);// L0 +int ___pos_1284;// L162 }; -typedef struct ___IO_FILE_99 ___IO_FILE_171;// L310 -typedef struct ___IO_FILE_124 ___IO_FILE_172;// L310 -typedef ____ssize_t_49 (____io_read_fn_181) (void * (____cookie_178), char * (____buf_179), __size_t_1 ____nbytes_180);// L333 -typedef ____ssize_t_49 (____io_write_fn_186) (void * (____cookie_183), const char * (____buf_184), __size_t_1 ____n_185);// L341:L342 -typedef int (____io_seek_fn_192) (void * (____cookie_188), ____off64_t_24 * (____pos_189), int ____w_191);// L350 -typedef int (____io_close_fn_195) (void * (____cookie_194));// L353 -typedef ____gnuc_va_list_86 __va_list_279;// L79 -typedef ____off_t_23 __off_t_281;// L90 -typedef ____off64_t_24 __off_t_283;// L92 -typedef ____ssize_t_49 __ssize_t_285;// L102 -typedef ___G_fpos_t_77 __fpos_t_287;// L110 -typedef ___G_fpos64_t_85 __fpos_t_289;// L112 -extern const char * const __sys_errlist_830[];// L27 - -struct __forward_tag_reference_89 { // generated union of struct variations +enum ____codecvt_result_1289 { +____codecvt_ok_1285, +____codecvt_partial_1286, +____codecvt_error_1287, +____codecvt_noconv_1288, +}; +struct ___IO_FILE_1290 { +int ___flags_1291;// L242 +char * (___IO_read_ptr_1292);// L247 +char * (___IO_read_end_1293);// L248 +char * (___IO_read_base_1294);// L249 +char * (___IO_write_base_1295);// L250 +char * (___IO_write_ptr_1296);// L251 +char * (___IO_write_end_1297);// L252 +char * (___IO_buf_base_1298);// L253 +char * (___IO_buf_end_1299);// L254 +char * (___IO_save_base_1300);// L256 +char * (___IO_backup_base_1301);// L257 +char * (___IO_save_end_1302);// L258 +struct ___IO_marker_1281 * (___markers_1303);// L260 +struct __forward_tag_reference_1249 * (___chain_1304);// L0 +int ___fileno_1305;// L264 +int ___flags2_1306;// L268 +____off_t_1214 ___old_offset_1307;// L0 +unsigned short ___cur_column_1309;// L274 +signed char ___vtable_offset_1310;// L275 +char ___shortbuf_1311[1];// L276 +___IO_lock_t_1279 * (___lock_1312);// L0 +}; +struct ___IO_FILE_1315 { +int ___flags_1316;// L242 +char * (___IO_read_ptr_1317);// L247 +char * (___IO_read_end_1318);// L248 +char * (___IO_read_base_1319);// L249 +char * (___IO_write_base_1320);// L250 +char * (___IO_write_ptr_1321);// L251 +char * (___IO_write_end_1322);// L252 +char * (___IO_buf_base_1323);// L253 +char * (___IO_buf_end_1324);// L254 +char * (___IO_save_base_1325);// L256 +char * (___IO_backup_base_1326);// L257 +char * (___IO_save_end_1327);// L258 +struct ___IO_marker_1281 * (___markers_1328);// L260 +struct __forward_tag_reference_1249 * (___chain_1329);// L0 +int ___fileno_1330;// L264 +int ___flags2_1331;// L268 +____off_t_1214 ___old_offset_1332;// L0 +unsigned short ___cur_column_1334;// L274 +signed char ___vtable_offset_1335;// L275 +char ___shortbuf_1336[1];// L276 +___IO_lock_t_1279 * (___lock_1337);// L0 +____off64_t_1215 ___offset_1339;// L0 +void * (____pad1_1341);// L297 +void * (____pad2_1342);// L298 +void * (____pad3_1343);// L299 +void * (____pad4_1344);// L300 +__size_t_1192 ____pad5_1345;// L0 +int ___mode_1346;// L303 +char ___unused2_1347[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +}; +struct ___IO_FILE_complete_1348 { +struct ___IO_FILE_1290 ___file_1349;// L286 +____off64_t_1215 ___offset_1351;// L0 +void * (____pad1_1353);// L297 +void * (____pad2_1354);// L298 +void * (____pad3_1355);// L299 +void * (____pad4_1356);// L300 +__size_t_1192 ____pad5_1357;// L0 +int ___mode_1358;// L303 +char ___unused2_1359[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +}; +typedef struct ___IO_FILE_1290 ___IO_FILE_1362;// L310 +typedef struct ___IO_FILE_1315 ___IO_FILE_1363;// L310 +typedef ____ssize_t_1240 (____io_read_fn_1372) (void * (____cookie_1369), char * (____buf_1370), __size_t_1192 ____nbytes_1371);// L333 +typedef ____ssize_t_1240 (____io_write_fn_1377) (void * (____cookie_1374), const char * (____buf_1375), __size_t_1192 ____n_1376);// L341:L342 +typedef int (____io_seek_fn_1383) (void * (____cookie_1379), ____off64_t_1215 * (____pos_1380), int ____w_1382);// L350 +typedef int (____io_close_fn_1386) (void * (____cookie_1385));// L353 +typedef ____gnuc_va_list_1277 __va_list_1470;// L79 +typedef ____off_t_1214 __off_t_1472;// L90 +typedef ____off64_t_1215 __off_t_1474;// L92 +typedef ____ssize_t_1240 __ssize_t_1476;// L102 +typedef ___G_fpos_t_1268 __fpos_t_1478;// L110 +typedef ___G_fpos64_t_1276 __fpos_t_1480;// L112 +extern const char * const __sys_errlist_2021[];// L27 + +struct __forward_tag_reference_1365 { // generated union of struct variations union { -struct ___IO_marker_90 ___IO_marker_90; }; }; -struct __forward_tag_reference_58 { // generated union of struct variations +struct __forward_tag_reference_1278 { // generated union of struct variations union { -struct ___IO_FILE_99 ___IO_FILE_99; -struct ___IO_FILE_124 ___IO_FILE_124; }; }; -struct __forward_tag_reference_87 { // generated union of struct variations +struct __forward_tag_reference_1249 { // generated union of struct variations union { +struct ___IO_FILE_1290 ___IO_FILE_1290; +struct ___IO_FILE_1315 ___IO_FILE_1315; }; }; -struct __forward_tag_reference_174 { // generated union of struct variations +struct __forward_tag_reference_1280 { // generated union of struct variations union { +struct ___IO_marker_1281 ___IO_marker_1281; }; }; +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern __intmax_t_26 (__imaxabs_36) (__intmax_t_26 ____n_35);// L290 +extern __imaxdiv_t_33 (__imaxdiv_39) (__intmax_t_26 ____numer_37, __intmax_t_26 ____denom_38);// L293:L294 +extern __imaxdiv_t_34 (__imaxdiv_40) (__intmax_t_26 ____numer_37, __intmax_t_26 ____denom_38);// L293:L294 +extern __intmax_t_26 (__strtoimax_44) (const char * __restrict ____nptr_41, char * (* __restrict ____endptr_42), int ____base_43);// L297:L298 +extern __uintmax_t_27 (__strtoumax_48) (const char * __restrict ____nptr_45, char * (* __restrict ____endptr_46), int ____base_47);// L301:L302 +extern __intmax_t_26 (__wcstoimax_54) (const ____gwchar_t_28 * __restrict ____nptr_49, ____gwchar_t_28 * (* __restrict ____endptr_51), int ____base_53);// L305:L307 +extern __uintmax_t_27 (__wcstoumax_61) (const ____gwchar_t_28 * __restrict ____nptr_56, ____gwchar_t_28 * (* __restrict ____endptr_58), int ____base_60);// L310:L312 +extern long int (____strtol_internal_66) (const char * __restrict ____nptr_62, char * (* __restrict ____endptr_63), int ____base_64, int ____group_65);// L318:L321 +extern long int (____strtol_internal_67) (const char * __restrict ____nptr_62, char * (* __restrict ____endptr_63), int ____base_64, int ____group_65);// L318:L321 +/* no function due to type errors in the function prototype */ +extern unsigned long int (____strtoul_internal_75) (const char * __restrict ____nptr_71, char * (* __restrict ____endptr_72), int ____base_73, int ____group_74);// L330:L333 +extern unsigned long int (____strtoul_internal_76) (const char * __restrict ____nptr_71, char * (* __restrict ____endptr_72), int ____base_73, int ____group_74);// L330:L333 +/* no function due to type errors in the function prototype */ +extern long int (____wcstol_internal_86) (const ____gwchar_t_28 * __restrict ____nptr_80, ____gwchar_t_28 * (* __restrict ____endptr_82), int ____base_84, int ____group_85);// L342:L345 +extern long int (____wcstol_internal_88) (const ____gwchar_t_28 * __restrict ____nptr_80, ____gwchar_t_28 * (* __restrict ____endptr_82), int ____base_84, int ____group_85);// L342:L345 +/* no function due to type errors in the function prototype */ +extern unsigned long int (____wcstoul_internal_102) (const ____gwchar_t_28 * __restrict ____nptr_96, ____gwchar_t_28 * (* __restrict ____endptr_98), int ____base_100, int ____group_101);// L354:L359 +extern unsigned long int (____wcstoul_internal_104) (const ____gwchar_t_28 * __restrict ____nptr_96, ____gwchar_t_28 * (* __restrict ____endptr_98), int ____base_100, int ____group_101);// L354:L359 +/* no function due to type errors in the function prototype */ +static __inline__ void (___delay_loop_1_113) (__uint8_t_4 ____count_112);// L40 +static __inline__ void (___delay_loop_2_115) (__uint16_t_5 ____count_114);// L41 +void (___delay_loop_1_113) (__uint8_t_4 ____count_116) { + +if (__static_condition_default_118) { + +{ +{ + + + +__asm__ volatile ( "1: dec %0""\n\t""brne 1b" : "=r" ( ____count_116 ) : "0" ( ____count_116 ) ); +} +} + + +} +} +void (___delay_loop_1_117) (__uint8_t_4 ____count_116) { + +if (__static_condition_default_119) { + +{ +{ + + + +__asm__ volatile ( "1: dec %0""\n\t""brne 1b" : "=r" ( ____count_116 ) : "0" ( ____count_116 ) ); +} +} + + +} +} +void (___delay_loop_2_115) (__uint16_t_5 ____count_120) { + +if (__static_condition_default_118) { + +{ +{ + + + +__asm__ volatile ( "1: sbiw %0,1""\n\t""brne 1b" : "=w" ( ____count_120 ) : "0" ( ____count_120 ) ); +} +} + + +} +} +void (___delay_loop_2_121) (__uint16_t_5 ____count_120) { + +if (__static_condition_default_122) { + +{ +{ + + + +__asm__ volatile ( "1: sbiw %0,1""\n\t""brne 1b" : "=w" ( ____count_120 ) : "0" ( ____count_120 ) ); +} +} + + +} +} +// typedef moved to top of scope +// typedef moved to top of scope +extern double (__acos_126) (double ____x_125);// L68:L78 +extern double (____acos_128) (double ____x_127);// L54:L78 +extern double (__asin_130) (double ____x_129);// L68:L78 +extern double (____asin_132) (double ____x_131);// L56:L78 +extern double (__atan_134) (double ____x_133);// L68:L78 +extern double (____atan_136) (double ____x_135);// L58:L78 +extern double (__atan2_139) (double ____y_137, double ____x_138);// L68:L78 +extern double (____atan2_142) (double ____y_140, double ____x_141);// L60:L78 +extern double (__cos_144) (double ____x_143);// L68:L78 +extern double (__cos_145) (double ____x_143);// L68:L78 +extern double (____cos_147) (double ____x_146);// L63:L78 +extern double (__sin_149) (double ____x_148);// L68:L78 +extern double (__sin_150) (double ____x_148);// L68:L78 +extern double (____sin_152) (double ____x_151);// L65:L78 +extern double (__tan_154) (double ____x_153);// L68:L78 +extern double (____tan_156) (double ____x_155);// L67:L78 +extern double (__cosh_158) (double ____x_157);// L68:L78 +extern double (____cosh_160) (double ____x_159);// L72:L78 +extern double (__sinh_162) (double ____x_161);// L68:L78 +extern double (____sinh_164) (double ____x_163);// L74:L78 +extern double (__tanh_166) (double ____x_165);// L68:L78 +extern double (____tanh_168) (double ____x_167);// L76:L78 +extern double (__acosh_170) (double ____x_169);// L68:L78 +extern double (____acosh_172) (double ____x_171);// L76:L88 +extern double (__asinh_174) (double ____x_173);// L68:L78 +extern double (____asinh_176) (double ____x_175);// L76:L90 +extern double (__atanh_178) (double ____x_177);// L68:L78 +extern double (____atanh_180) (double ____x_179);// L76:L92 +extern double (__exp_182) (double ____x_181);// L68:L78 +extern double (__exp_183) (double ____x_181);// L68:L78 +extern double (____exp_185) (double ____x_184);// L76:L100 +extern double (__frexp_188) (double ____x_186, int * (____exponent_187));// L68:L78 +extern double (____frexp_191) (double ____x_189, int * (____exponent_190));// L76:L103 +extern double (__ldexp_194) (double ____x_192, int ____exponent_193);// L68:L78 +extern double (____ldexp_197) (double ____x_195, int ____exponent_196);// L76:L106 +extern double (__log_199) (double ____x_198);// L68:L78 +extern double (__log_200) (double ____x_198);// L68:L78 +extern double (____log_202) (double ____x_201);// L76:L109 +extern double (__log10_204) (double ____x_203);// L68:L78 +extern double (____log10_206) (double ____x_205);// L76:L112 +extern double (__modf_209) (double ____x_207, double * (____iptr_208));// L68:L78 +extern double (____modf_212) (double ____x_210, double * (____iptr_211));// L76:L115 +extern double (__expm1_214) (double ____x_213);// L68:L78 +extern double (____expm1_216) (double ____x_215);// L76:L128 +extern double (__log1p_218) (double ____x_217);// L68:L78 +extern double (____log1p_220) (double ____x_219);// L76:L131 +extern double (__logb_222) (double ____x_221);// L68:L78 +extern double (____logb_224) (double ____x_223);// L76:L134 +extern double (__exp2_226) (double ____x_225);// L68:L78 +extern double (____exp2_228) (double ____x_227);// L76:L141 +extern double (__log2_230) (double ____x_229);// L68:L78 +extern double (____log2_232) (double ____x_231);// L76:L144 +extern double (__pow_235) (double ____x_233, double ____y_234);// L68:L78 +extern double (__pow_236) (double ____x_233, double ____y_234);// L68:L78 +extern double (____pow_239) (double ____x_237, double ____y_238);// L76:L153 +extern double (__sqrt_241) (double ____x_240);// L68:L78 +extern double (____sqrt_243) (double ____x_242);// L76:L156 +extern double (__hypot_246) (double ____x_244, double ____y_245);// L68:L78 +extern double (____hypot_249) (double ____x_247, double ____y_248);// L76:L162 +extern double (__cbrt_251) (double ____x_250);// L68:L78 +extern double (____cbrt_253) (double ____x_252);// L76:L169 +extern double (__ceil_255) (double ____x_254);// L73:L78 +extern double (____ceil_257) (double ____x_256);// L76:L178 +extern double (__fabs_259) (double ____x_258);// L73:L78 +extern double (____fabs_261) (double ____x_260);// L76:L181 +extern double (__floor_263) (double ____x_262);// L73:L78 +extern double (____floor_265) (double ____x_264);// L76:L184 +extern double (__fmod_268) (double ____x_266, double ____y_267);// L68:L78 +extern double (____fmod_271) (double ____x_269, double ____y_270);// L76:L187 +extern int (____isinf_273) (double ____value_272);// L76:L192 +extern int (____finite_275) (double ____value_274);// L76:L195 +extern int (__isinf_277) (double ____value_276);// L76:L204 +extern int (__finite_279) (double ____value_278);// L76:L208 +extern double (__drem_282) (double ____x_280, double ____y_281);// L68:L78 +extern double (____drem_285) (double ____x_283, double ____y_284);// L76:L211 +extern double (__significand_287) (double ____x_286);// L68:L78 +extern double (____significand_289) (double ____x_288);// L76:L215 +extern double (__copysign_292) (double ____x_290, double ____y_291);// L73:L78 +extern double (__copysign_293) (double ____x_290, double ____y_291);// L73:L78 +extern double (____copysign_296) (double ____x_294, double ____y_295);// L76:L221 +extern double (__nan_298) (const char * (____tagb_297));// L73:L78 +extern double (____nan_300) (const char * (____tagb_299));// L76:L228 +extern int (____isnan_302) (double ____value_301);// L76:L234 +extern int (__isnan_304) (double ____value_303);// L76:L241 +extern double (__j0_305) (double );// L68:L78 +extern double (____j0_306) (double );// L76:L247 +extern double (__j1_307) (double );// L68:L78 +extern double (____j1_308) (double );// L76:L248 +extern double (__jn_309) (int , double );// L68:L78 +extern double (____jn_310) (int , double );// L76:L249 +extern double (__y0_311) (double );// L68:L78 +extern double (____y0_312) (double );// L76:L250 +extern double (__y1_313) (double );// L68:L78 +extern double (____y1_314) (double );// L76:L251 +extern double (__yn_315) (int , double );// L68:L78 +extern double (____yn_316) (int , double );// L76:L252 +extern double (__erf_317) (double );// L68:L78 +extern double (__erf_318) (double );// L68:L78 +extern double (____erf_319) (double );// L76:L259 +extern double (__erfc_320) (double );// L68:L78 +extern double (____erfc_321) (double );// L76:L260 +extern double (__lgamma_322) (double );// L68:L78 +extern double (____lgamma_323) (double );// L76:L261 +extern double (__tgamma_324) (double );// L68:L78 +extern double (____tgamma_325) (double );// L76:L268 +extern double (__gamma_326) (double );// L68:L78 +extern double (____gamma_327) (double );// L76:L274 +extern double (__lgamma_r_329) (double , int * (____signgamp_328));// L68:L78 +extern double (____lgamma_r_331) (double , int * (____signgamp_330));// L76:L281 +extern double (__rint_333) (double ____x_332);// L68:L78 +extern double (__rint_334) (double ____x_332);// L68:L78 +extern double (____rint_336) (double ____x_335);// L76:L289 +extern double (__nextafter_339) (double ____x_337, double ____y_338);// L73:L78 +extern double (____nextafter_342) (double ____x_340, double ____y_341);// L76:L292 +extern double (__nexttoward_345) (double ____x_343, long double ____y_344);// L73:L78 +extern double (____nexttoward_348) (double ____x_346, long double ____y_347);// L76:L294 +extern double (__remainder_351) (double ____x_349, double ____y_350);// L68:L78 +extern double (____remainder_354) (double ____x_352, double ____y_353);// L76:L298 +extern double (__scalbn_357) (double ____x_355, int ____n_356);// L68:L78 +extern double (____scalbn_360) (double ____x_358, int ____n_359);// L76:L302 +extern int (__ilogb_362) (double ____x_361);// L68:L306 +extern int (____ilogb_364) (double ____x_363);// L76:L306 +extern double (__scalbln_367) (double ____x_365, long int ____n_366);// L68:L78 +extern double (____scalbln_370) (double ____x_368, long int ____n_369);// L76:L311 +extern double (__nearbyint_372) (double ____x_371);// L68:L78 +extern double (____nearbyint_374) (double ____x_373);// L76:L315 +extern double (__round_376) (double ____x_375);// L73:L78 +extern double (____round_378) (double ____x_377);// L76:L319 +extern double (__trunc_380) (double ____x_379);// L73:L78 +extern double (____trunc_382) (double ____x_381);// L76:L323 +extern double (__remquo_386) (double ____x_383, double ____y_384, int * (____quo_385));// L68:L78 +extern double (____remquo_390) (double ____x_387, double ____y_388, int * (____quo_389));// L76:L328 +extern long int (__lrint_392) (double ____x_391);// L68:L335 +extern long int (____lrint_394) (double ____x_393);// L76:L335 +extern long long int (__llrint_396) (double ____x_395);// L68:L337 +extern long long int (____llrint_398) (double ____x_397);// L76:L337 +extern long int (__lround_400) (double ____x_399);// L68:L341 +extern long int (____lround_402) (double ____x_401);// L76:L341 +extern long long int (__llround_404) (double ____x_403);// L68:L343 +extern long long int (____llround_406) (double ____x_405);// L76:L343 +extern double (__fdim_409) (double ____x_407, double ____y_408);// L68:L78 +extern double (____fdim_412) (double ____x_410, double ____y_411);// L76:L347 +extern double (__fmax_415) (double ____x_413, double ____y_414);// L73:L78 +extern double (____fmax_418) (double ____x_416, double ____y_417);// L76:L350 +extern double (__fmin_421) (double ____x_419, double ____y_420);// L73:L78 +extern double (____fmin_424) (double ____x_422, double ____y_423);// L76:L353 +extern int (____fpclassify_426) (double ____value_425);// L76:L358 +extern int (____signbit_428) (double ____value_427);// L76:L362 +extern double (__fma_432) (double ____x_429, double ____y_430, double ____z_431);// L68:L78 +extern double (____fma_436) (double ____x_433, double ____y_434, double ____z_435);// L76:L366 +extern double (__scalb_439) (double ____x_437, double ____n_438);// L68:L78 +extern double (____scalb_442) (double ____x_440, double ____n_441);// L76:L383 +extern float (__acosf_444) (float ____x_443);// L68:L97 +extern float (__acosf_445) (float ____x_443);// L68:L97 +extern float (____acosf_447) (float ____x_446);// L54:L97 +extern float (__asinf_449) (float ____x_448);// L68:L97 +extern float (____asinf_451) (float ____x_450);// L56:L97 +extern float (__atanf_453) (float ____x_452);// L68:L97 +extern float (____atanf_455) (float ____x_454);// L58:L97 +extern float (__atan2f_458) (float ____y_456, float ____x_457);// L68:L97 +extern float (____atan2f_461) (float ____y_459, float ____x_460);// L60:L97 +extern float (__cosf_463) (float ____x_462);// L68:L97 +extern float (__cosf_464) (float ____x_462);// L68:L97 +extern float (____cosf_466) (float ____x_465);// L63:L97 +extern float (__sinf_468) (float ____x_467);// L68:L97 +extern float (__sinf_469) (float ____x_467);// L68:L97 +extern float (____sinf_471) (float ____x_470);// L65:L97 +extern float (__tanf_473) (float ____x_472);// L68:L97 +extern float (____tanf_475) (float ____x_474);// L67:L97 +extern float (__coshf_477) (float ____x_476);// L68:L97 +extern float (____coshf_479) (float ____x_478);// L72:L97 +extern float (__sinhf_481) (float ____x_480);// L68:L97 +extern float (____sinhf_483) (float ____x_482);// L74:L97 +extern float (__tanhf_485) (float ____x_484);// L68:L97 +extern float (____tanhf_487) (float ____x_486);// L76:L97 +extern float (__acoshf_489) (float ____x_488);// L68:L97 +extern float (____acoshf_491) (float ____x_490);// L76:L97 +extern float (__asinhf_493) (float ____x_492);// L68:L97 +extern float (____asinhf_495) (float ____x_494);// L76:L97 +extern float (__atanhf_497) (float ____x_496);// L68:L97 +extern float (____atanhf_499) (float ____x_498);// L76:L97 +extern float (__expf_501) (float ____x_500);// L68:L97 +extern float (__expf_502) (float ____x_500);// L68:L97 +extern float (____expf_504) (float ____x_503);// L76:L100 +extern float (__frexpf_507) (float ____x_505, int * (____exponent_506));// L68:L97 +extern float (____frexpf_510) (float ____x_508, int * (____exponent_509));// L76:L103 +extern float (__ldexpf_513) (float ____x_511, int ____exponent_512);// L68:L97 +extern float (____ldexpf_516) (float ____x_514, int ____exponent_515);// L76:L106 +extern float (__logf_518) (float ____x_517);// L68:L97 +extern float (__logf_519) (float ____x_517);// L68:L97 +extern float (____logf_521) (float ____x_520);// L76:L109 +extern float (__log10f_523) (float ____x_522);// L68:L97 +extern float (____log10f_525) (float ____x_524);// L76:L112 +extern float (__modff_528) (float ____x_526, float * (____iptr_527));// L68:L97 +extern float (____modff_531) (float ____x_529, float * (____iptr_530));// L76:L115 +extern float (__expm1f_533) (float ____x_532);// L68:L97 +extern float (____expm1f_535) (float ____x_534);// L76:L128 +extern float (__log1pf_537) (float ____x_536);// L68:L97 +extern float (____log1pf_539) (float ____x_538);// L76:L131 +extern float (__logbf_541) (float ____x_540);// L68:L97 +extern float (____logbf_543) (float ____x_542);// L76:L134 +extern float (__exp2f_545) (float ____x_544);// L68:L97 +extern float (____exp2f_547) (float ____x_546);// L76:L141 +extern float (__log2f_549) (float ____x_548);// L68:L97 +extern float (____log2f_551) (float ____x_550);// L76:L144 +extern float (__powf_554) (float ____x_552, float ____y_553);// L68:L97 +extern float (__powf_555) (float ____x_552, float ____y_553);// L68:L97 +extern float (____powf_558) (float ____x_556, float ____y_557);// L76:L153 +extern float (__sqrtf_560) (float ____x_559);// L68:L97 +extern float (____sqrtf_562) (float ____x_561);// L76:L156 +extern float (__hypotf_565) (float ____x_563, float ____y_564);// L68:L97 +extern float (____hypotf_568) (float ____x_566, float ____y_567);// L76:L162 +extern float (__cbrtf_570) (float ____x_569);// L68:L97 +extern float (____cbrtf_572) (float ____x_571);// L76:L169 +extern float (__ceilf_574) (float ____x_573);// L73:L97 +extern float (____ceilf_576) (float ____x_575);// L76:L178 +extern float (__fabsf_578) (float ____x_577);// L73:L97 +extern float (____fabsf_580) (float ____x_579);// L76:L181 +extern float (__floorf_582) (float ____x_581);// L73:L97 +extern float (____floorf_584) (float ____x_583);// L76:L184 +extern float (__fmodf_587) (float ____x_585, float ____y_586);// L68:L97 +extern float (____fmodf_590) (float ____x_588, float ____y_589);// L76:L187 +extern int (____isinff_592) (float ____value_591);// L76:L192 +extern int (____finitef_594) (float ____value_593);// L76:L195 +extern int (__isinff_596) (float ____value_595);// L76:L204 +extern int (__finitef_598) (float ____value_597);// L76:L208 +extern float (__dremf_601) (float ____x_599, float ____y_600);// L68:L97 +extern float (____dremf_604) (float ____x_602, float ____y_603);// L76:L211 +extern float (__significandf_606) (float ____x_605);// L68:L97 +extern float (____significandf_608) (float ____x_607);// L76:L215 +extern float (__copysignf_611) (float ____x_609, float ____y_610);// L73:L97 +extern float (__copysignf_612) (float ____x_609, float ____y_610);// L73:L97 +extern float (____copysignf_615) (float ____x_613, float ____y_614);// L76:L221 +extern float (__nanf_617) (const char * (____tagb_616));// L73:L97 +extern float (____nanf_619) (const char * (____tagb_618));// L76:L228 +extern int (____isnanf_621) (float ____value_620);// L76:L234 +extern int (__isnanf_623) (float ____value_622);// L76:L241 +extern float (__j0f_624) (float );// L68:L97 +extern float (____j0f_625) (float );// L76:L247 +extern float (__j1f_626) (float );// L68:L97 +extern float (____j1f_627) (float );// L76:L248 +extern float (__jnf_628) (int , float );// L68:L97 +extern float (____jnf_629) (int , float );// L76:L249 +extern float (__y0f_630) (float );// L68:L97 +extern float (____y0f_631) (float );// L76:L250 +extern float (__y1f_632) (float );// L68:L97 +extern float (____y1f_633) (float );// L76:L251 +extern float (__ynf_634) (int , float );// L68:L97 +extern float (____ynf_635) (int , float );// L76:L252 +extern float (__erff_636) (float );// L68:L97 +extern float (__erff_637) (float );// L68:L97 +extern float (____erff_638) (float );// L76:L259 +extern float (__erfcf_639) (float );// L68:L97 +extern float (____erfcf_640) (float );// L76:L260 +extern float (__lgammaf_641) (float );// L68:L97 +extern float (____lgammaf_642) (float );// L76:L261 +extern float (__tgammaf_643) (float );// L68:L97 +extern float (____tgammaf_644) (float );// L76:L268 +extern float (__gammaf_645) (float );// L68:L97 +extern float (____gammaf_646) (float );// L76:L274 +extern float (__lgammaf_r_648) (float , int * (____signgamp_647));// L68:L97 +extern float (____lgammaf_r_650) (float , int * (____signgamp_649));// L76:L281 +extern float (__rintf_652) (float ____x_651);// L68:L97 +extern float (__rintf_653) (float ____x_651);// L68:L97 +extern float (____rintf_655) (float ____x_654);// L76:L289 +extern float (__nextafterf_658) (float ____x_656, float ____y_657);// L73:L97 +extern float (____nextafterf_661) (float ____x_659, float ____y_660);// L76:L292 +extern float (__nexttowardf_664) (float ____x_662, long double ____y_663);// L73:L97 +extern float (____nexttowardf_667) (float ____x_665, long double ____y_666);// L76:L294 +extern float (__remainderf_670) (float ____x_668, float ____y_669);// L68:L97 +extern float (____remainderf_673) (float ____x_671, float ____y_672);// L76:L298 +extern float (__scalbnf_676) (float ____x_674, int ____n_675);// L68:L97 +extern float (____scalbnf_679) (float ____x_677, int ____n_678);// L76:L302 +extern int (__ilogbf_681) (float ____x_680);// L68:L306 +extern int (____ilogbf_683) (float ____x_682);// L76:L306 +extern float (__scalblnf_686) (float ____x_684, long int ____n_685);// L68:L97 +extern float (____scalblnf_689) (float ____x_687, long int ____n_688);// L76:L311 +extern float (__nearbyintf_691) (float ____x_690);// L68:L97 +extern float (____nearbyintf_693) (float ____x_692);// L76:L315 +extern float (__roundf_695) (float ____x_694);// L73:L97 +extern float (____roundf_697) (float ____x_696);// L76:L319 +extern float (__truncf_699) (float ____x_698);// L73:L97 +extern float (____truncf_701) (float ____x_700);// L76:L323 +extern float (__remquof_705) (float ____x_702, float ____y_703, int * (____quo_704));// L68:L97 +extern float (____remquof_709) (float ____x_706, float ____y_707, int * (____quo_708));// L76:L328 +extern long int (__lrintf_711) (float ____x_710);// L68:L335 +extern long int (____lrintf_713) (float ____x_712);// L76:L335 +extern long long int (__llrintf_715) (float ____x_714);// L68:L337 +extern long long int (____llrintf_717) (float ____x_716);// L76:L337 +extern long int (__lroundf_719) (float ____x_718);// L68:L341 +extern long int (____lroundf_721) (float ____x_720);// L76:L341 +extern long long int (__llroundf_723) (float ____x_722);// L68:L343 +extern long long int (____llroundf_725) (float ____x_724);// L76:L343 +extern float (__fdimf_728) (float ____x_726, float ____y_727);// L68:L97 +extern float (____fdimf_731) (float ____x_729, float ____y_730);// L76:L347 +extern float (__fmaxf_734) (float ____x_732, float ____y_733);// L73:L97 +extern float (____fmaxf_737) (float ____x_735, float ____y_736);// L76:L350 +extern float (__fminf_740) (float ____x_738, float ____y_739);// L73:L97 +extern float (____fminf_743) (float ____x_741, float ____y_742);// L76:L353 +extern int (____fpclassifyf_745) (float ____value_744);// L76:L358 +extern int (____signbitf_747) (float ____value_746);// L76:L362 +extern float (__fmaf_751) (float ____x_748, float ____y_749, float ____z_750);// L68:L97 +extern float (____fmaf_755) (float ____x_752, float ____y_753, float ____z_754);// L76:L366 +extern float (__scalbf_758) (float ____x_756, float ____n_757);// L68:L97 +extern float (____scalbf_761) (float ____x_759, float ____n_760);// L76:L383 +extern long double (__acosl_763) (long double ____x_762);// L68:L143 +extern long double (__acosl_764) (long double ____x_762);// L68:L143 +extern long double (____acosl_766) (long double ____x_765);// L54:L143 +extern long double (__asinl_768) (long double ____x_767);// L68:L143 +extern long double (____asinl_770) (long double ____x_769);// L56:L143 +extern long double (__atanl_772) (long double ____x_771);// L68:L143 +extern long double (____atanl_774) (long double ____x_773);// L58:L143 +extern long double (__atan2l_777) (long double ____y_775, long double ____x_776);// L68:L143 +extern long double (____atan2l_780) (long double ____y_778, long double ____x_779);// L60:L143 +extern long double (__cosl_782) (long double ____x_781);// L68:L143 +extern long double (____cosl_784) (long double ____x_783);// L63:L143 +extern long double (__sinl_786) (long double ____x_785);// L68:L143 +extern long double (____sinl_788) (long double ____x_787);// L65:L143 +extern long double (__tanl_790) (long double ____x_789);// L68:L143 +extern long double (____tanl_792) (long double ____x_791);// L67:L143 +extern long double (__coshl_794) (long double ____x_793);// L68:L143 +extern long double (____coshl_796) (long double ____x_795);// L72:L143 +extern long double (__sinhl_798) (long double ____x_797);// L68:L143 +extern long double (____sinhl_800) (long double ____x_799);// L74:L143 +extern long double (__tanhl_802) (long double ____x_801);// L68:L143 +extern long double (____tanhl_804) (long double ____x_803);// L76:L143 +extern long double (__acoshl_806) (long double ____x_805);// L68:L143 +extern long double (____acoshl_808) (long double ____x_807);// L76:L143 +extern long double (__asinhl_810) (long double ____x_809);// L68:L143 +extern long double (____asinhl_812) (long double ____x_811);// L76:L143 +extern long double (__atanhl_814) (long double ____x_813);// L68:L143 +extern long double (____atanhl_816) (long double ____x_815);// L76:L143 +extern long double (__expl_818) (long double ____x_817);// L68:L143 +extern long double (____expl_820) (long double ____x_819);// L76:L143 +extern long double (__frexpl_823) (long double ____x_821, int * (____exponent_822));// L68:L143 +extern long double (____frexpl_826) (long double ____x_824, int * (____exponent_825));// L76:L143 +extern long double (__ldexpl_829) (long double ____x_827, int ____exponent_828);// L68:L143 +extern long double (____ldexpl_832) (long double ____x_830, int ____exponent_831);// L76:L143 +extern long double (__logl_834) (long double ____x_833);// L68:L143 +extern long double (____logl_836) (long double ____x_835);// L76:L143 +extern long double (__log10l_838) (long double ____x_837);// L68:L143 +extern long double (____log10l_840) (long double ____x_839);// L76:L143 +extern long double (__modfl_843) (long double ____x_841, long double * (____iptr_842));// L68:L143 +extern long double (____modfl_846) (long double ____x_844, long double * (____iptr_845));// L76:L143 +extern long double (__expm1l_848) (long double ____x_847);// L68:L143 +extern long double (____expm1l_850) (long double ____x_849);// L76:L143 +extern long double (__log1pl_852) (long double ____x_851);// L68:L143 +extern long double (____log1pl_854) (long double ____x_853);// L76:L143 +extern long double (__logbl_856) (long double ____x_855);// L68:L143 +extern long double (____logbl_858) (long double ____x_857);// L76:L143 +extern long double (__exp2l_860) (long double ____x_859);// L68:L143 +extern long double (____exp2l_862) (long double ____x_861);// L76:L143 +extern long double (__log2l_864) (long double ____x_863);// L68:L143 +extern long double (____log2l_866) (long double ____x_865);// L76:L144 +extern long double (__powl_869) (long double ____x_867, long double ____y_868);// L68:L143 +extern long double (____powl_872) (long double ____x_870, long double ____y_871);// L76:L153 +extern long double (__sqrtl_874) (long double ____x_873);// L68:L143 +extern long double (____sqrtl_876) (long double ____x_875);// L76:L156 +extern long double (__hypotl_879) (long double ____x_877, long double ____y_878);// L68:L143 +extern long double (____hypotl_882) (long double ____x_880, long double ____y_881);// L76:L162 +extern long double (__cbrtl_884) (long double ____x_883);// L68:L143 +extern long double (____cbrtl_886) (long double ____x_885);// L76:L169 +extern long double (__ceill_888) (long double ____x_887);// L73:L143 +extern long double (____ceill_890) (long double ____x_889);// L76:L178 +extern long double (__fabsl_892) (long double ____x_891);// L73:L143 +extern long double (____fabsl_894) (long double ____x_893);// L76:L181 +extern long double (__floorl_896) (long double ____x_895);// L73:L143 +extern long double (____floorl_898) (long double ____x_897);// L76:L184 +extern long double (__fmodl_901) (long double ____x_899, long double ____y_900);// L68:L143 +extern long double (____fmodl_904) (long double ____x_902, long double ____y_903);// L76:L187 +extern int (____isinfl_906) (long double ____value_905);// L76:L192 +extern int (____finitel_908) (long double ____value_907);// L76:L195 +extern int (__isinfl_910) (long double ____value_909);// L76:L204 +extern int (__finitel_912) (long double ____value_911);// L76:L208 +extern long double (__dreml_915) (long double ____x_913, long double ____y_914);// L68:L143 +extern long double (____dreml_918) (long double ____x_916, long double ____y_917);// L76:L211 +extern long double (__significandl_920) (long double ____x_919);// L68:L143 +extern long double (____significandl_922) (long double ____x_921);// L76:L215 +extern long double (__copysignl_925) (long double ____x_923, long double ____y_924);// L73:L143 +extern long double (__copysignl_926) (long double ____x_923, long double ____y_924);// L73:L143 +extern long double (____copysignl_929) (long double ____x_927, long double ____y_928);// L76:L221 +extern long double (__nanl_931) (const char * (____tagb_930));// L73:L143 +extern long double (____nanl_933) (const char * (____tagb_932));// L76:L228 +extern int (____isnanl_935) (long double ____value_934);// L76:L234 +extern int (__isnanl_937) (long double ____value_936);// L76:L241 +extern long double (__j0l_938) (long double );// L68:L143 +extern long double (____j0l_939) (long double );// L76:L247 +extern long double (__j1l_940) (long double );// L68:L143 +extern long double (____j1l_941) (long double );// L76:L248 +extern long double (__jnl_942) (int , long double );// L68:L143 +extern long double (____jnl_943) (int , long double );// L76:L249 +extern long double (__y0l_944) (long double );// L68:L143 +extern long double (____y0l_945) (long double );// L76:L250 +extern long double (__y1l_946) (long double );// L68:L143 +extern long double (____y1l_947) (long double );// L76:L251 +extern long double (__ynl_948) (int , long double );// L68:L143 +extern long double (____ynl_949) (int , long double );// L76:L252 +extern long double (__erfl_950) (long double );// L68:L143 +extern long double (__erfl_951) (long double );// L68:L143 +extern long double (____erfl_952) (long double );// L76:L259 +extern long double (__erfcl_953) (long double );// L68:L143 +extern long double (____erfcl_954) (long double );// L76:L260 +extern long double (__lgammal_955) (long double );// L68:L143 +extern long double (____lgammal_956) (long double );// L76:L261 +extern long double (__tgammal_957) (long double );// L68:L143 +extern long double (____tgammal_958) (long double );// L76:L268 +extern long double (__gammal_959) (long double );// L68:L143 +extern long double (____gammal_960) (long double );// L76:L274 +extern long double (__lgammal_r_962) (long double , int * (____signgamp_961));// L68:L143 +extern long double (____lgammal_r_964) (long double , int * (____signgamp_963));// L76:L281 +extern long double (__rintl_966) (long double ____x_965);// L68:L143 +extern long double (__rintl_967) (long double ____x_965);// L68:L143 +extern long double (____rintl_969) (long double ____x_968);// L76:L289 +extern long double (__nextafterl_972) (long double ____x_970, long double ____y_971);// L73:L143 +extern long double (____nextafterl_975) (long double ____x_973, long double ____y_974);// L76:L292 +extern long double (__nexttowardl_978) (long double ____x_976, long double ____y_977);// L73:L143 +extern long double (____nexttowardl_981) (long double ____x_979, long double ____y_980);// L76:L294 +extern long double (__remainderl_984) (long double ____x_982, long double ____y_983);// L68:L143 +extern long double (____remainderl_987) (long double ____x_985, long double ____y_986);// L76:L298 +extern long double (__scalbnl_990) (long double ____x_988, int ____n_989);// L68:L143 +extern long double (____scalbnl_993) (long double ____x_991, int ____n_992);// L76:L302 +extern int (__ilogbl_995) (long double ____x_994);// L68:L306 +extern int (____ilogbl_997) (long double ____x_996);// L76:L306 +extern long double (__scalblnl_1000) (long double ____x_998, long int ____n_999);// L68:L143 +extern long double (____scalblnl_1003) (long double ____x_1001, long int ____n_1002);// L76:L311 +extern long double (__nearbyintl_1005) (long double ____x_1004);// L68:L143 +extern long double (____nearbyintl_1007) (long double ____x_1006);// L76:L315 +extern long double (__roundl_1009) (long double ____x_1008);// L73:L143 +extern long double (____roundl_1011) (long double ____x_1010);// L76:L319 +extern long double (__truncl_1013) (long double ____x_1012);// L73:L143 +extern long double (____truncl_1015) (long double ____x_1014);// L76:L323 +extern long double (__remquol_1019) (long double ____x_1016, long double ____y_1017, int * (____quo_1018));// L68:L143 +extern long double (____remquol_1023) (long double ____x_1020, long double ____y_1021, int * (____quo_1022));// L76:L328 +extern long int (__lrintl_1025) (long double ____x_1024);// L68:L335 +extern long int (____lrintl_1027) (long double ____x_1026);// L76:L335 +extern long long int (__llrintl_1029) (long double ____x_1028);// L68:L337 +extern long long int (____llrintl_1031) (long double ____x_1030);// L76:L337 +extern long int (__lroundl_1033) (long double ____x_1032);// L68:L341 +extern long int (____lroundl_1035) (long double ____x_1034);// L76:L341 +extern long long int (__llroundl_1037) (long double ____x_1036);// L68:L343 +extern long long int (____llroundl_1039) (long double ____x_1038);// L76:L343 +extern long double (__fdiml_1042) (long double ____x_1040, long double ____y_1041);// L68:L143 +extern long double (____fdiml_1045) (long double ____x_1043, long double ____y_1044);// L76:L347 +extern long double (__fmaxl_1048) (long double ____x_1046, long double ____y_1047);// L73:L143 +extern long double (____fmaxl_1051) (long double ____x_1049, long double ____y_1050);// L76:L350 +extern long double (__fminl_1054) (long double ____x_1052, long double ____y_1053);// L73:L143 +extern long double (____fminl_1057) (long double ____x_1055, long double ____y_1056);// L76:L353 +extern int (____fpclassifyl_1059) (long double ____value_1058);// L76:L358 +extern int (____signbitl_1061) (long double ____value_1060);// L76:L362 +extern long double (__fmal_1065) (long double ____x_1062, long double ____y_1063, long double ____z_1064);// L68:L143 +extern long double (____fmal_1069) (long double ____x_1066, long double ____y_1067, long double ____z_1068);// L76:L366 +extern long double (__scalbl_1072) (long double ____x_1070, long double ____n_1071);// L68:L143 +extern long double (____scalbl_1075) (long double ____x_1073, long double ____n_1074);// L76:L383 +extern int __signgam_1076;// L168 +enum ____anonymous_tag_1083_1084 ;// L209 +// typedef moved to top of scope +extern ___LIB_VERSION_TYPE_1092 ___LIB_VERSION_1093;// L359 +struct __exception_1094 ;// L372 +extern int (__matherr_1101) (struct __exception_1094 * (____exc_1100));// L385 +static __inline__ void (___delay_us_1103) (double ____us_1102);// L86 +static __inline__ void (___delay_ms_1105) (double ____ms_1104);// L87 +void (___delay_ms_1111) (double ____ms_1106) { + +if (__static_condition_default_1112) { + +{ +{ + + + +double ____tmp_1107;// L168 + +__uint32_t_6 ____ticks_dc_1108;// L172 + +extern void (____builtin_avr_delay_cycles_1109) (unsigned long );// L173 + +if (__static_condition_default_1113) { + ____tmp_1107 = ( ( 1000000UL ) / 1e3 ) * ____ms_1106 ; // L174 +} +if (__static_condition_default_1114) { +__static_type_error("type error : no valid expression"); // L174 +} +if (__static_condition_default_1115) { + ____ticks_dc_1108 = ( __uint32_t_6 ) ( __fabs_259 ( ____tmp_1107 ) + 0.5 ) ; // L180 +} +if (__static_condition_default_1116) { + ____ticks_dc_1108 = ( __uint32_t_6 ) __fabs_259 ( ____tmp_1107 ) ; // L177 +} +if (__static_condition_default_1117) { + ____ticks_dc_1108 = ( __uint32_t_6 ) ( __ceil_255 ( __fabs_259 ( ____tmp_1107 )) ) ; // L184 +} +__uint16_t_5 ____ticks_1110;// L190 + +if (__static_condition_default_1118) { + ____tmp_1107 = ( ( 1000000UL ) / 4e3 ) * ____ms_1106 ; // L191 +} +if (__static_condition_default_1119) { +__static_type_error("type error : no valid expression"); // L191 +} +if (__static_condition_default_1120) { +if ( ____tmp_1107 < 1.0 )// L192 +{ +if (__static_condition_default_1121) { + ____ticks_1110 = 1 ; // L193 +} +} +else +{ +if (__static_condition_default_1122) { +if ( ____tmp_1107 > 65535 )// L194 +{ +if (__static_condition_default_1123) { + +{ +{ + + + + ____ticks_1110 = ( __uint16_t_5 ) ( ____ms_1106 * 10.0 ) ; // L197 +while ( ____ticks_1110 )// L198 +{ + +{ +{ + + + +if (__static_condition_default_1124) { + ___delay_loop_2_121 (( ( 1000000UL ) / 4e3 ) / 10) ; // L201 +} +if (__static_condition_default_1125) { +__static_type_error("type error : no valid expression"); // L201 +} + ____ticks_1110 -- ; // L202 +} +} +} +return ;// L204 +} +} +} +} +else +{ +if (__static_condition_default_1126) { + ____ticks_1110 = ( __uint16_t_5 ) ____tmp_1107 ; // L207 +} +} +} +} +} +if (__static_condition_default_1127) { + ____builtin_avr_delay_cycles_1109 ( ____ticks_dc_1108 ) ; // L187 +} +if (__static_condition_default_1128) { + ___delay_loop_2_121 ( ____ticks_1110 ) ; // L208 +} +} +} + + +} +} +void (___delay_ms_1105) (double ____ms_1106) { + +if (__static_condition_default_1129) { + +{ +{ + + + +double ____tmp_1107;// L168 + +__uint32_t_6 ____ticks_dc_1108;// L172 + +extern void (____builtin_avr_delay_cycles_1109) (unsigned long );// L173 + +if (__static_condition_default_1130) { + ____tmp_1107 = ( ( 1000000UL ) / 1e3 ) * ____ms_1106 ; // L174 +} +if (__static_condition_default_1131) { +__static_type_error("type error : no valid expression"); // L174 +} +if (__static_condition_default_1132) { + ____ticks_dc_1108 = ( __uint32_t_6 ) ( __fabs_259 ( ____tmp_1107 ) + 0.5 ) ; // L180 +} +if (__static_condition_default_1133) { + ____ticks_dc_1108 = ( __uint32_t_6 ) __fabs_259 ( ____tmp_1107 ) ; // L177 +} +if (__static_condition_default_1134) { + ____ticks_dc_1108 = ( __uint32_t_6 ) ( __ceil_255 ( __fabs_259 ( ____tmp_1107 )) ) ; // L184 +} +__uint16_t_5 ____ticks_1110;// L190 + +if (__static_condition_default_1135) { + ____tmp_1107 = ( ( 1000000UL ) / 4e3 ) * ____ms_1106 ; // L191 +} +if (__static_condition_default_1136) { +__static_type_error("type error : no valid expression"); // L191 +} +if (__static_condition_default_1137) { +if ( ____tmp_1107 < 1.0 )// L192 +{ +if (__static_condition_default_1138) { + ____ticks_1110 = 1 ; // L193 +} +} +else +{ +if (__static_condition_default_1139) { +if ( ____tmp_1107 > 65535 )// L194 +{ +if (__static_condition_default_1140) { + +{ +{ + + + + ____ticks_1110 = ( __uint16_t_5 ) ( ____ms_1106 * 10.0 ) ; // L197 +while ( ____ticks_1110 )// L198 +{ + +{ +{ + + + +if (__static_condition_default_1141) { + ___delay_loop_2_115 (( ( 1000000UL ) / 4e3 ) / 10) ; // L201 +} +if (__static_condition_default_1142) { +__static_type_error("type error : no valid expression"); // L201 +} + ____ticks_1110 -- ; // L202 +} +} +} +return ;// L204 +} +} +} +} +else +{ +if (__static_condition_default_1143) { + ____ticks_1110 = ( __uint16_t_5 ) ____tmp_1107 ; // L207 +} +} +} +} +} +if (__static_condition_default_1144) { + ____builtin_avr_delay_cycles_1109 ( ____ticks_dc_1108 ) ; // L187 +} +if (__static_condition_default_1145) { + ___delay_loop_2_115 ( ____ticks_1110 ) ; // L208 +} +} +} + + +} +} +void (___delay_us_1103) (double ____us_1146) { + +if (__static_condition_default_1129) { + +{ +{ + + + +double ____tmp_1147;// L257 + +__uint32_t_6 ____ticks_dc_1148;// L261 + +extern void (____builtin_avr_delay_cycles_1149) (unsigned long );// L262 + +if (__static_condition_default_1154) { + ____tmp_1147 = ( ( 1000000UL ) / 1e6 ) * ____us_1146 ; // L263 +} +if (__static_condition_default_1155) { +__static_type_error("type error : no valid expression"); // L263 +} +if (__static_condition_default_1156) { + ____ticks_dc_1148 = ( __uint32_t_6 ) ( __fabs_259 ( ____tmp_1147 ) + 0.5 ) ; // L269 +} +if (__static_condition_default_1157) { + ____ticks_dc_1148 = ( __uint32_t_6 ) __fabs_259 ( ____tmp_1147 ) ; // L266 +} +if (__static_condition_default_1158) { + ____ticks_dc_1148 = ( __uint32_t_6 ) ( __ceil_255 ( __fabs_259 ( ____tmp_1147 )) ) ; // L273 +} +__uint8_t_4 ____ticks_1150;// L279 + +double ____tmp2_1151;// L280 + +if (__static_condition_default_1159) { + ____tmp_1147 = ( ( 1000000UL ) / 3e6 ) * ____us_1146 ; // L281 +} +if (__static_condition_default_1160) { +__static_type_error("type error : no valid expression"); // L281 +} +if (__static_condition_default_1161) { + ____tmp2_1151 = ( ( 1000000UL ) / 4e6 ) * ____us_1146 ; // L282 +} +if (__static_condition_default_1162) { +__static_type_error("type error : no valid expression"); // L282 +} +if (__static_condition_default_1163) { +if ( ____tmp_1147 < 1.0 )// L283 +{ +if (__static_condition_default_1164) { + ____ticks_1150 = 1 ; // L284 +} +} +else +{ +if (__static_condition_default_1165) { +if ( ____tmp2_1151 > 65535 )// L285 +{ +if (__static_condition_default_1166) { + +{ +{ + + + + ___delay_ms_1105 ( ____us_1146 / 1000.0) ; // L287 +} +} +} +} +else +{ +if (__static_condition_default_1167) { +if ( ____tmp_1147 > 255 )// L289 +{ +if (__static_condition_default_1168) { + +{ +{ + + + +__uint16_t_5 ____ticks_1152= ( __uint16_t_5 ) ____tmp2_1151 ;// L291 + + ___delay_loop_2_115 ( ____ticks_1152 ) ; // L292 +return ;// L293 +} +} +} +} +else +{ +if (__static_condition_default_1169) { + ____ticks_1150 = ( __uint8_t_4 ) ____tmp_1147 ; // L296 +} +} +} +} +} +} +} +if (__static_condition_default_1170) { + ____builtin_avr_delay_cycles_1149 ( ____ticks_dc_1148 ) ; // L276 +} +if (__static_condition_default_1171) { + ___delay_loop_1_113 ( ____ticks_1150 ) ; // L297 +} +} +} + + +} +} +void (___delay_us_1153) (double ____us_1146) { + +if (__static_condition_default_1172) { + +{ +{ + + + +double ____tmp_1147;// L257 + +__uint32_t_6 ____ticks_dc_1148;// L261 + +extern void (____builtin_avr_delay_cycles_1149) (unsigned long );// L262 + +if (__static_condition_default_1173) { + ____tmp_1147 = ( ( 1000000UL ) / 1e6 ) * ____us_1146 ; // L263 +} +if (__static_condition_default_1174) { +__static_type_error("type error : no valid expression"); // L263 +} +if (__static_condition_default_1175) { + ____ticks_dc_1148 = ( __uint32_t_6 ) ( __fabs_259 ( ____tmp_1147 ) + 0.5 ) ; // L269 +} +if (__static_condition_default_1176) { + ____ticks_dc_1148 = ( __uint32_t_6 ) __fabs_259 ( ____tmp_1147 ) ; // L266 +} +if (__static_condition_default_1177) { + ____ticks_dc_1148 = ( __uint32_t_6 ) ( __ceil_255 ( __fabs_259 ( ____tmp_1147 )) ) ; // L273 +} +__uint8_t_4 ____ticks_1150;// L279 + +double ____tmp2_1151;// L280 + +if (__static_condition_default_1178) { + ____tmp_1147 = ( ( 1000000UL ) / 3e6 ) * ____us_1146 ; // L281 +} +if (__static_condition_default_1179) { +__static_type_error("type error : no valid expression"); // L281 +} +if (__static_condition_default_1180) { + ____tmp2_1151 = ( ( 1000000UL ) / 4e6 ) * ____us_1146 ; // L282 +} +if (__static_condition_default_1181) { +__static_type_error("type error : no valid expression"); // L282 +} +if (__static_condition_default_1182) { +if ( ____tmp_1147 < 1.0 )// L283 +{ +if (__static_condition_default_1183) { + ____ticks_1150 = 1 ; // L284 +} +} +else +{ +if (__static_condition_default_1184) { +if ( ____tmp2_1151 > 65535 )// L285 +{ +if (__static_condition_default_1185) { + +{ +{ + + + + ___delay_ms_1111 ( ____us_1146 / 1000.0) ; // L287 +} +} +} +} +else +{ +if (__static_condition_default_1186) { +if ( ____tmp_1147 > 255 )// L289 +{ +if (__static_condition_default_1187) { + +{ +{ + + + +__uint16_t_5 ____ticks_1152= ( __uint16_t_5 ) ____tmp2_1151 ;// L291 + + ___delay_loop_2_121 ( ____ticks_1152 ) ; // L292 +return ;// L293 +} +} +} +} +else +{ +if (__static_condition_default_1188) { + ____ticks_1150 = ( __uint8_t_4 ) ____tmp_1147 ; // L296 +} +} +} +} +} +} +} +if (__static_condition_default_1189) { + ____builtin_avr_delay_cycles_1149 ( ____ticks_dc_1148 ) ; // L276 +} +if (__static_condition_default_1190) { + ___delay_loop_1_117 ( ____ticks_1150 ) ; // L297 +} +} +} + + +} +} // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope @@ -1082,225 +2881,225 @@ union { // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_58 ;// L0 +struct __forward_tag_reference_1249 ;// L0 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_87 ;// L0 -struct __forward_tag_reference_87 ;// L0 -struct __forward_tag_reference_58 ;// L0 +struct __forward_tag_reference_1278 ;// L0 +struct __forward_tag_reference_1278 ;// L0 +struct __forward_tag_reference_1249 ;// L0 // typedef moved to top of scope -struct ___IO_marker_90 ;// L156 -enum ____codecvt_result_98 ;// L176 -struct ___IO_FILE_99 ;// L241 +struct ___IO_marker_1281 ;// L156 +enum ____codecvt_result_1289 ;// L176 +struct ___IO_FILE_1290 ;// L241 -struct ___IO_FILE_124 ;// L241 -struct ___IO_FILE_complete_157 ;// L241 +struct ___IO_FILE_1315 ;// L241 +struct ___IO_FILE_complete_1348 ;// L241 // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_174 ;// L0 -extern struct __forward_tag_reference_174 ___IO_2_1_stdin__175;// L315 -extern struct __forward_tag_reference_174 ___IO_2_1_stdout__176;// L316 -extern struct __forward_tag_reference_174 ___IO_2_1_stderr__177;// L317 +struct __forward_tag_reference_1365 ;// L0 +extern struct __forward_tag_reference_1365 ___IO_2_1_stdin__1366;// L315 +extern struct __forward_tag_reference_1365 ___IO_2_1_stdout__1367;// L316 +extern struct __forward_tag_reference_1365 ___IO_2_1_stderr__1368;// L317 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern int (____underflow_196) (___IO_FILE_171 *);// L385 -extern int (____underflow_197) (___IO_FILE_172 *);// L385 -extern int (____uflow_199) (___IO_FILE_171 *);// L386 -extern int (____uflow_200) (___IO_FILE_172 *);// L386 -extern int (____overflow_202) (___IO_FILE_171 *, int );// L387 -extern int (____overflow_203) (___IO_FILE_172 *, int );// L387 -extern int (___IO_getc_208) (___IO_FILE_171 * (____fp_205));// L429 -extern int (___IO_getc_209) (___IO_FILE_172 * (____fp_206));// L429 -extern int (___IO_putc_215) (int ____c_211, ___IO_FILE_171 * (____fp_212));// L430 -extern int (___IO_putc_216) (int ____c_211, ___IO_FILE_172 * (____fp_213));// L430 -extern int (___IO_feof_221) (___IO_FILE_171 * (____fp_218));// L431 -extern int (___IO_feof_222) (___IO_FILE_172 * (____fp_219));// L431 -extern int (___IO_ferror_227) (___IO_FILE_171 * (____fp_224));// L432 -extern int (___IO_ferror_228) (___IO_FILE_172 * (____fp_225));// L432 -extern int (___IO_peekc_locked_233) (___IO_FILE_171 * (____fp_230));// L434 -extern int (___IO_peekc_locked_234) (___IO_FILE_172 * (____fp_231));// L434 -extern void (___IO_flockfile_236) (___IO_FILE_171 *);// L440 -extern void (___IO_flockfile_237) (___IO_FILE_172 *);// L440 -extern void (___IO_funlockfile_239) (___IO_FILE_171 *);// L441 -extern void (___IO_funlockfile_240) (___IO_FILE_172 *);// L441 -extern int (___IO_ftrylockfile_242) (___IO_FILE_171 *);// L442 -extern int (___IO_ftrylockfile_243) (___IO_FILE_172 *);// L442 -extern int (___IO_vfscanf_245) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_247) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_251) (___IO_FILE_171 * __restrict , const char * __restrict , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_252) (___IO_FILE_172 * __restrict , const char * __restrict , int * __restrict );// L459:L460 -extern int (___IO_vfprintf_254) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 -extern int (___IO_vfprintf_256) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 -extern int (___IO_vfprintf_260) ();// L461:L462 -extern ____ssize_t_49 (___IO_padn_261) (___IO_FILE_171 *, int , ____ssize_t_49 );// L463 -extern ____ssize_t_49 (___IO_padn_262) (___IO_FILE_172 *, int , ____ssize_t_49 );// L463 -extern __size_t_1 (___IO_sgetn_265) (___IO_FILE_171 *, void *, __size_t_1 );// L464 -extern __size_t_1 (___IO_sgetn_266) (___IO_FILE_172 *, void *, __size_t_1 );// L464 -extern ____off64_t_24 (___IO_seekoff_268) (___IO_FILE_171 *, ____off64_t_24 , int , int );// L466 -extern ____off64_t_24 (___IO_seekoff_269) (___IO_FILE_172 *, ____off64_t_24 , int , int );// L466 -extern ____off64_t_24 (___IO_seekpos_272) (___IO_FILE_171 *, ____off64_t_24 , int );// L467 -extern ____off64_t_24 (___IO_seekpos_273) (___IO_FILE_172 *, ____off64_t_24 , int );// L467 -extern void (___IO_free_backup_area_276) (___IO_FILE_171 *);// L469 -extern void (___IO_free_backup_area_277) (___IO_FILE_172 *);// L469 +extern int (____underflow_1387) (___IO_FILE_1362 *);// L385 +extern int (____underflow_1388) (___IO_FILE_1363 *);// L385 +extern int (____uflow_1390) (___IO_FILE_1362 *);// L386 +extern int (____uflow_1391) (___IO_FILE_1363 *);// L386 +extern int (____overflow_1393) (___IO_FILE_1362 *, int );// L387 +extern int (____overflow_1394) (___IO_FILE_1363 *, int );// L387 +extern int (___IO_getc_1399) (___IO_FILE_1362 * (____fp_1396));// L429 +extern int (___IO_getc_1400) (___IO_FILE_1363 * (____fp_1397));// L429 +extern int (___IO_putc_1406) (int ____c_1402, ___IO_FILE_1362 * (____fp_1403));// L430 +extern int (___IO_putc_1407) (int ____c_1402, ___IO_FILE_1363 * (____fp_1404));// L430 +extern int (___IO_feof_1412) (___IO_FILE_1362 * (____fp_1409));// L431 +extern int (___IO_feof_1413) (___IO_FILE_1363 * (____fp_1410));// L431 +extern int (___IO_ferror_1418) (___IO_FILE_1362 * (____fp_1415));// L432 +extern int (___IO_ferror_1419) (___IO_FILE_1363 * (____fp_1416));// L432 +extern int (___IO_peekc_locked_1424) (___IO_FILE_1362 * (____fp_1421));// L434 +extern int (___IO_peekc_locked_1425) (___IO_FILE_1363 * (____fp_1422));// L434 +extern void (___IO_flockfile_1427) (___IO_FILE_1362 *);// L440 +extern void (___IO_flockfile_1428) (___IO_FILE_1363 *);// L440 +extern void (___IO_funlockfile_1430) (___IO_FILE_1362 *);// L441 +extern void (___IO_funlockfile_1431) (___IO_FILE_1363 *);// L441 +extern int (___IO_ftrylockfile_1433) (___IO_FILE_1362 *);// L442 +extern int (___IO_ftrylockfile_1434) (___IO_FILE_1363 *);// L442 +extern int (___IO_vfscanf_1436) (___IO_FILE_1362 * __restrict , const char * __restrict , ____gnuc_va_list_1277 , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_1438) (___IO_FILE_1363 * __restrict , const char * __restrict , ____gnuc_va_list_1277 , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_1442) (___IO_FILE_1362 * __restrict , const char * __restrict , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_1443) (___IO_FILE_1363 * __restrict , const char * __restrict , int * __restrict );// L459:L460 +extern int (___IO_vfprintf_1445) (___IO_FILE_1362 * __restrict , const char * __restrict , ____gnuc_va_list_1277 );// L461:L462 +extern int (___IO_vfprintf_1447) (___IO_FILE_1363 * __restrict , const char * __restrict , ____gnuc_va_list_1277 );// L461:L462 +extern int (___IO_vfprintf_1451) ();// L461:L462 +extern ____ssize_t_1240 (___IO_padn_1452) (___IO_FILE_1362 *, int , ____ssize_t_1240 );// L463 +extern ____ssize_t_1240 (___IO_padn_1453) (___IO_FILE_1363 *, int , ____ssize_t_1240 );// L463 +extern __size_t_1192 (___IO_sgetn_1456) (___IO_FILE_1362 *, void *, __size_t_1192 );// L464 +extern __size_t_1192 (___IO_sgetn_1457) (___IO_FILE_1363 *, void *, __size_t_1192 );// L464 +extern ____off64_t_1215 (___IO_seekoff_1459) (___IO_FILE_1362 *, ____off64_t_1215 , int , int );// L466 +extern ____off64_t_1215 (___IO_seekoff_1460) (___IO_FILE_1363 *, ____off64_t_1215 , int , int );// L466 +extern ____off64_t_1215 (___IO_seekpos_1463) (___IO_FILE_1362 *, ____off64_t_1215 , int );// L467 +extern ____off64_t_1215 (___IO_seekpos_1464) (___IO_FILE_1363 *, ____off64_t_1215 , int );// L467 +extern void (___IO_free_backup_area_1467) (___IO_FILE_1362 *);// L469 +extern void (___IO_free_backup_area_1468) (___IO_FILE_1363 *);// L469 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern struct ___IO_FILE_99 * (__stdin_291);// L168 -extern struct ___IO_FILE_124 * (__stdin_292);// L168 -extern struct ___IO_FILE_99 * (__stdout_294);// L169 -extern struct ___IO_FILE_124 * (__stdout_295);// L169 -extern struct ___IO_FILE_99 * (__stderr_297);// L170 -extern struct ___IO_FILE_124 * (__stderr_298);// L170 -extern int (__remove_301) (const char * (____filename_300));// L178 -extern int (__rename_304) (const char * (____old_302), const char * (____new_303));// L180 -extern int (__renameat_309) (int ____oldfd_305, const char * (____old_306), int ____newfd_307, const char * (____new_308));// L185:L186 -extern __FILE_59 * ((__tmpfile_310) (void ));// L195 -extern __FILE_59 * ((__tmpfile_316) (void ));// L198 -extern __FILE_59 * ((__tmpfile_314) (void ));// L195 -extern __FILE_59 * ((__tmpfile_312) (void ));// L198 -extern char * ((__tmpnam_319) (char * (____s_318)));// L209 -extern char * ((__tmpnam_320) (char * (____s_318)));// L209 -extern char * ((__tmpnam_r_322) (char * (____s_321)));// L215 -extern char * ((__tmpnam_r_323) (char * (____s_321)));// L215 -extern char * ((__tempnam_326) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 -extern char * ((__tempnam_327) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 -extern int (__fclose_330) (__FILE_59 * (____stream_328));// L237 -extern int (__fclose_332) (__FILE_59 * (____stream_328));// L237 -extern int (__fflush_336) (__FILE_59 * (____stream_334));// L242 -extern int (__fflush_unlocked_340) (__FILE_59 * (____stream_338));// L252 -extern __FILE_59 * ((__fopen_344) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 -extern __FILE_59 * ((__fopen_346) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 -extern __FILE_59 * ((__fopen_354) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 -extern __FILE_59 * ((__fopen_356) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 -extern __FILE_59 * ((__freopen_362) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 -extern __FILE_59 * ((__freopen_368) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 -extern __FILE_59 * ((__freopen_366) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 -extern __FILE_59 * ((__freopen_364) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 -extern __FILE_59 * ((__fdopen_372) (int ____fd_370, const char * (____modes_371)));// L306 -extern __FILE_59 * ((__fdopen_374) (int ____fd_370, const char * (____modes_371)));// L306 -extern __FILE_59 * ((__fmemopen_379) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 -extern __FILE_59 * ((__fmemopen_381) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 -extern __FILE_59 * ((__open_memstream_385) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 -extern __FILE_59 * ((__open_memstream_387) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 -extern void (__setbuf_392) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 -extern void (__setbuf_394) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 -extern int (__setvbuf_401) (__FILE_59 * __restrict ____stream_396, char * __restrict ____buf_398, int ____modes_399, __size_t_1 ____n_400);// L336:L337 -extern void (__setbuffer_407) (__FILE_59 * __restrict ____stream_403, char * __restrict ____buf_405, __size_t_1 ____size_406);// L343:L344 -extern void (__setlinebuf_411) (__FILE_59 * (____stream_409));// L347 -extern int (__fprintf_416) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 -extern int (__fprintf_418) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 -extern int (__printf_421) (const char * __restrict ____format_420, ... );// L362 -extern int (__sprintf_424) (char * __restrict ____s_422, const char * __restrict ____format_423, ... );// L364:L365 -extern int (__vfprintf_430) (__FILE_59 * __restrict ____s_425, const char * __restrict ____format_427, ____gnuc_va_list_86 ____arg_428);// L371:L372 -extern int (__vprintf_437) (const char * __restrict ____format_434, ____gnuc_va_list_86 ____arg_435);// L377 -extern int (__vsprintf_443) (char * __restrict ____s_439, const char * __restrict ____format_440, ____gnuc_va_list_86 ____arg_441);// L379:L380 -extern int (__snprintf_448) (char * __restrict ____s_445, __size_t_1 ____maxlen_446, const char * __restrict ____format_447, ... );// L386:L388 -extern int (__vsnprintf_454) (char * __restrict ____s_449, __size_t_1 ____maxlen_450, const char * __restrict ____format_451, ____gnuc_va_list_86 ____arg_452);// L390:L392 -extern int (__vdprintf_460) (int ____fd_456, const char * __restrict ____fmt_457, ____gnuc_va_list_86 ____arg_458);// L412:L414 -extern int (__dprintf_464) (int ____fd_462, const char * __restrict ____fmt_463, ... );// L415:L416 -extern int (__fscanf_468) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__fscanf_470) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__fscanf_472) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__fscanf_474) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__scanf_477) (const char * __restrict ____format_476, ... );// L431 -extern int (__scanf_478) (const char * __restrict ____format_476, ... );// L431 -extern int (__sscanf_481) (const char * __restrict ____s_479, const char * __restrict ____format_480, ... );// L433:L434 - - - - - - - -extern int (__vfscanf_509) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 -extern int (__vfscanf_513) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 -extern int (__vscanf_520) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 -extern int (__vscanf_522) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 -extern int (__vsscanf_528) (const char * __restrict ____s_524, const char * __restrict ____format_525, ____gnuc_va_list_86 ____arg_526);// L483:L485 - - - - - -extern int (__fgetc_563) (__FILE_59 * (____stream_561));// L531 -extern int (__getc_567) (__FILE_59 * (____stream_565));// L532 -extern int (__getchar_569) (void );// L538 -extern int (__getc_unlocked_572) (__FILE_59 * (____stream_570));// L550 -extern int (__getchar_unlocked_574) (void );// L551 -extern int (__fgetc_unlocked_577) (__FILE_59 * (____stream_575));// L561 -extern int (__fputc_582) (int ____c_579, __FILE_59 * (____stream_580));// L573 -extern int (__fputc_584) (int ____c_579, __FILE_59 * (____stream_580));// L573 -extern int (__putc_589) (int ____c_586, __FILE_59 * (____stream_587));// L574 -extern int (__putchar_592) (int ____c_591);// L580 -extern int (__fputc_unlocked_596) (int ____c_593, __FILE_59 * (____stream_594));// L594 -extern int (__putc_unlocked_601) (int ____c_598, __FILE_59 * (____stream_599));// L602 -extern int (__putchar_unlocked_604) (int ____c_603);// L603 -extern int (__getw_607) (__FILE_59 * (____stream_605));// L610 -extern int (__putw_612) (int ____w_609, __FILE_59 * (____stream_610));// L613 -extern char * ((__fgets_618) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern char * ((__fgets_620) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern char * ((__fgets_622) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern char * ((__fgets_624) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern ____ssize_t_49 (____getdelim_631) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 -extern ____ssize_t_49 (____getdelim_635) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 -extern ____ssize_t_49 (__getdelim_644) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 -extern ____ssize_t_49 (__getdelim_648) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 -extern ____ssize_t_49 (__getline_656) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 -extern ____ssize_t_49 (__getline_660) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 -extern int (__fputs_667) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 -extern int (__fputs_669) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 -extern int (__puts_672) (const char * (____s_671));// L695 -extern int (__ungetc_676) (int ____c_673, __FILE_59 * (____stream_674));// L702 -extern int (__fseek_714) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 -extern int (__fseek_716) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 -extern long int (__ftell_720) (__FILE_59 * (____stream_718));// L754 -extern long int (__ftell_722) (__FILE_59 * (____stream_718));// L754 -extern void (__rewind_726) (__FILE_59 * (____stream_724));// L759 -extern int (__fseeko_733) (__FILE_59 * (____stream_728), ____off_t_23 ____off_730, int ____whence_732);// L773 -extern int (__fseeko_744) (__FILE_59 * (____stream_739), ____off64_t_24 ____off_741, int ____whence_743);// L781:L783 -extern ____off_t_23 (__ftello_758) (__FILE_59 * (____stream_737));// L778 -extern ____off_t_23 (__ftello_750) (__FILE_59 * (____stream_737));// L778 -extern int (__fgetpos_766) (__FILE_59 * __restrict ____stream_762, __fpos_t_287 * __restrict ____pos_764);// L798 -extern ____off64_t_24 (__ftello_754) (__FILE_59 * (____stream_748));// L784 -extern int (__fgetpos_778) (__FILE_59 * __restrict ____stream_774, __fpos_t_289 * __restrict ____pos_776);// L806:L807 -extern int (__fsetpos_786) (__FILE_59 * (____stream_770), const __fpos_t_287 * (____pos_772));// L803 -extern int (__fsetpos_790) (__FILE_59 * (____stream_782), const __fpos_t_289 * (____pos_784));// L808:L809 -extern void (__clearerr_796) (__FILE_59 * (____stream_794));// L826 -extern int (__feof_800) (__FILE_59 * (____stream_798));// L828 -extern int (__feof_802) (__FILE_59 * (____stream_798));// L828 -extern int (__ferror_806) (__FILE_59 * (____stream_804));// L830 -extern int (__ferror_808) (__FILE_59 * (____stream_804));// L830 -extern void (__clearerr_unlocked_812) (__FILE_59 * (____stream_810));// L835 -extern int (__feof_unlocked_816) (__FILE_59 * (____stream_814));// L836 -extern int (__feof_unlocked_818) (__FILE_59 * (____stream_814));// L836 -extern int (__ferror_unlocked_822) (__FILE_59 * (____stream_820));// L837 -extern int (__ferror_unlocked_824) (__FILE_59 * (____stream_820));// L837 -extern void (__perror_827) (const char * (____s_826));// L846 -extern void (__perror_828) (const char * (____s_826));// L846 -extern int __sys_nerr_829;// L26 - -extern int (__fileno_835) (__FILE_59 * (____stream_831));// L858 -extern int (__fileno_833) (__FILE_59 * (____stream_831));// L858 -extern int (__fileno_unlocked_841) (__FILE_59 * (____stream_837));// L863 -extern int (__fileno_unlocked_839) (__FILE_59 * (____stream_837));// L863 -extern __FILE_59 * ((__popen_845) (const char * (____command_843), const char * (____modes_844)));// L872 -extern __FILE_59 * ((__popen_847) (const char * (____command_843), const char * (____modes_844)));// L872 -extern int (__pclose_851) (__FILE_59 * (____stream_849));// L878 -extern char * ((__ctermid_854) (char * (____s_853)));// L884 -extern void (__flockfile_857) (__FILE_59 * (____stream_855));// L912 -extern int (__ftrylockfile_861) (__FILE_59 * (____stream_859));// L916 -extern int (__ftrylockfile_863) (__FILE_59 * (____stream_859));// L916 -extern void (__funlockfile_867) (__FILE_59 * (____stream_865));// L919 +extern struct ___IO_FILE_1290 * (__stdin_1482);// L168 +extern struct ___IO_FILE_1315 * (__stdin_1483);// L168 +extern struct ___IO_FILE_1290 * (__stdout_1485);// L169 +extern struct ___IO_FILE_1315 * (__stdout_1486);// L169 +extern struct ___IO_FILE_1290 * (__stderr_1488);// L170 +extern struct ___IO_FILE_1315 * (__stderr_1489);// L170 +extern int (__remove_1492) (const char * (____filename_1491));// L178 +extern int (__rename_1495) (const char * (____old_1493), const char * (____new_1494));// L180 +extern int (__renameat_1500) (int ____oldfd_1496, const char * (____old_1497), int ____newfd_1498, const char * (____new_1499));// L185:L186 +extern __FILE_1250 * ((__tmpfile_1501) (void ));// L195 +extern __FILE_1250 * ((__tmpfile_1507) (void ));// L198 +extern __FILE_1250 * ((__tmpfile_1505) (void ));// L195 +extern __FILE_1250 * ((__tmpfile_1503) (void ));// L198 +extern char * ((__tmpnam_1510) (char * (____s_1509)));// L209 +extern char * ((__tmpnam_1511) (char * (____s_1509)));// L209 +extern char * ((__tmpnam_r_1513) (char * (____s_1512)));// L215 +extern char * ((__tmpnam_r_1514) (char * (____s_1512)));// L215 +extern char * ((__tempnam_1517) (const char * (____dir_1515), const char * (____pfx_1516)));// L227:L228 +extern char * ((__tempnam_1518) (const char * (____dir_1515), const char * (____pfx_1516)));// L227:L228 +extern int (__fclose_1521) (__FILE_1250 * (____stream_1519));// L237 +extern int (__fclose_1523) (__FILE_1250 * (____stream_1519));// L237 +extern int (__fflush_1527) (__FILE_1250 * (____stream_1525));// L242 +extern int (__fflush_unlocked_1531) (__FILE_1250 * (____stream_1529));// L252 +extern __FILE_1250 * ((__fopen_1535) (const char * __restrict ____filename_1533, const char * __restrict ____modes_1534));// L272:L273 +extern __FILE_1250 * ((__fopen_1537) (const char * __restrict ____filename_1533, const char * __restrict ____modes_1534));// L272:L273 +extern __FILE_1250 * ((__fopen_1545) (const char * __restrict ____filename_1543, const char * __restrict ____modes_1544));// L283:L285 +extern __FILE_1250 * ((__fopen_1547) (const char * __restrict ____filename_1543, const char * __restrict ____modes_1544));// L283:L285 +extern __FILE_1250 * ((__freopen_1553) (const char * __restrict ____filename_1539, const char * __restrict ____modes_1540, __FILE_1250 * __restrict ____stream_1541));// L278:L280 +extern __FILE_1250 * ((__freopen_1559) (const char * __restrict ____filename_1539, const char * __restrict ____modes_1540, __FILE_1250 * __restrict ____stream_1541));// L278:L280 +extern __FILE_1250 * ((__freopen_1557) (const char * __restrict ____filename_1549, const char * __restrict ____modes_1550, __FILE_1250 * __restrict ____stream_1551));// L286:L289 +extern __FILE_1250 * ((__freopen_1555) (const char * __restrict ____filename_1549, const char * __restrict ____modes_1550, __FILE_1250 * __restrict ____stream_1551));// L286:L289 +extern __FILE_1250 * ((__fdopen_1563) (int ____fd_1561, const char * (____modes_1562)));// L306 +extern __FILE_1250 * ((__fdopen_1565) (int ____fd_1561, const char * (____modes_1562)));// L306 +extern __FILE_1250 * ((__fmemopen_1570) (void * (____s_1567), __size_t_1192 ____len_1568, const char * (____modes_1569)));// L319:L320 +extern __FILE_1250 * ((__fmemopen_1572) (void * (____s_1567), __size_t_1192 ____len_1568, const char * (____modes_1569)));// L319:L320 +extern __FILE_1250 * ((__open_memstream_1576) (char * (* (____bufloc_1574)), __size_t_1192 * (____sizeloc_1575)));// L325 +extern __FILE_1250 * ((__open_memstream_1578) (char * (* (____bufloc_1574)), __size_t_1192 * (____sizeloc_1575)));// L325 +extern void (__setbuf_1583) (__FILE_1250 * __restrict ____stream_1580, char * __restrict ____buf_1582);// L332 +extern void (__setbuf_1585) (__FILE_1250 * __restrict ____stream_1580, char * __restrict ____buf_1582);// L332 +extern int (__setvbuf_1592) (__FILE_1250 * __restrict ____stream_1587, char * __restrict ____buf_1589, int ____modes_1590, __size_t_1192 ____n_1591);// L336:L337 +extern void (__setbuffer_1598) (__FILE_1250 * __restrict ____stream_1594, char * __restrict ____buf_1596, __size_t_1192 ____size_1597);// L343:L344 +extern void (__setlinebuf_1602) (__FILE_1250 * (____stream_1600));// L347 +extern int (__fprintf_1607) (__FILE_1250 * __restrict ____stream_1604, const char * __restrict ____format_1606, ... );// L356:L357 +extern int (__fprintf_1609) (__FILE_1250 * __restrict ____stream_1604, const char * __restrict ____format_1606, ... );// L356:L357 +extern int (__printf_1612) (const char * __restrict ____format_1611, ... );// L362 +extern int (__sprintf_1615) (char * __restrict ____s_1613, const char * __restrict ____format_1614, ... );// L364:L365 +extern int (__vfprintf_1621) (__FILE_1250 * __restrict ____s_1616, const char * __restrict ____format_1618, ____gnuc_va_list_1277 ____arg_1619);// L371:L372 +extern int (__vprintf_1628) (const char * __restrict ____format_1625, ____gnuc_va_list_1277 ____arg_1626);// L377 +extern int (__vsprintf_1634) (char * __restrict ____s_1630, const char * __restrict ____format_1631, ____gnuc_va_list_1277 ____arg_1632);// L379:L380 +extern int (__snprintf_1639) (char * __restrict ____s_1636, __size_t_1192 ____maxlen_1637, const char * __restrict ____format_1638, ... );// L386:L388 +extern int (__vsnprintf_1645) (char * __restrict ____s_1640, __size_t_1192 ____maxlen_1641, const char * __restrict ____format_1642, ____gnuc_va_list_1277 ____arg_1643);// L390:L392 +extern int (__vdprintf_1651) (int ____fd_1647, const char * __restrict ____fmt_1648, ____gnuc_va_list_1277 ____arg_1649);// L412:L414 +extern int (__dprintf_1655) (int ____fd_1653, const char * __restrict ____fmt_1654, ... );// L415:L416 +extern int (__fscanf_1659) (__FILE_1250 * __restrict ____stream_1656, const char * __restrict ____format_1658, ... );// L425:L426 +extern int (__fscanf_1661) (__FILE_1250 * __restrict ____stream_1656, const char * __restrict ____format_1658, ... );// L425:L426 +extern int (__fscanf_1663) (__FILE_1250 * __restrict ____stream_1656, const char * __restrict ____format_1658, ... );// L425:L426 +extern int (__fscanf_1665) (__FILE_1250 * __restrict ____stream_1656, const char * __restrict ____format_1658, ... );// L425:L426 +extern int (__scanf_1668) (const char * __restrict ____format_1667, ... );// L431 +extern int (__scanf_1669) (const char * __restrict ____format_1667, ... );// L431 +extern int (__sscanf_1672) (const char * __restrict ____s_1670, const char * __restrict ____format_1671, ... );// L433:L434 + + + + + + + +extern int (__vfscanf_1700) (__FILE_1250 * __restrict ____s_1695, const char * __restrict ____format_1697, ____gnuc_va_list_1277 ____arg_1698);// L471:L473 +extern int (__vfscanf_1704) (__FILE_1250 * __restrict ____s_1695, const char * __restrict ____format_1697, ____gnuc_va_list_1277 ____arg_1698);// L471:L473 +extern int (__vscanf_1711) (const char * __restrict ____format_1708, ____gnuc_va_list_1277 ____arg_1709);// L479:L480 +extern int (__vscanf_1713) (const char * __restrict ____format_1708, ____gnuc_va_list_1277 ____arg_1709);// L479:L480 +extern int (__vsscanf_1719) (const char * __restrict ____s_1715, const char * __restrict ____format_1716, ____gnuc_va_list_1277 ____arg_1717);// L483:L485 + + + + + +extern int (__fgetc_1754) (__FILE_1250 * (____stream_1752));// L531 +extern int (__getc_1758) (__FILE_1250 * (____stream_1756));// L532 +extern int (__getchar_1760) (void );// L538 +extern int (__getc_unlocked_1763) (__FILE_1250 * (____stream_1761));// L550 +extern int (__getchar_unlocked_1765) (void );// L551 +extern int (__fgetc_unlocked_1768) (__FILE_1250 * (____stream_1766));// L561 +extern int (__fputc_1773) (int ____c_1770, __FILE_1250 * (____stream_1771));// L573 +extern int (__fputc_1775) (int ____c_1770, __FILE_1250 * (____stream_1771));// L573 +extern int (__putc_1780) (int ____c_1777, __FILE_1250 * (____stream_1778));// L574 +extern int (__putchar_1783) (int ____c_1782);// L580 +extern int (__fputc_unlocked_1787) (int ____c_1784, __FILE_1250 * (____stream_1785));// L594 +extern int (__putc_unlocked_1792) (int ____c_1789, __FILE_1250 * (____stream_1790));// L602 +extern int (__putchar_unlocked_1795) (int ____c_1794);// L603 +extern int (__getw_1798) (__FILE_1250 * (____stream_1796));// L610 +extern int (__putw_1803) (int ____w_1800, __FILE_1250 * (____stream_1801));// L613 +extern char * ((__fgets_1809) (char * __restrict ____s_1805, int ____n_1806, __FILE_1250 * __restrict ____stream_1807));// L622:L623 +extern char * ((__fgets_1811) (char * __restrict ____s_1805, int ____n_1806, __FILE_1250 * __restrict ____stream_1807));// L622:L623 +extern char * ((__fgets_1813) (char * __restrict ____s_1805, int ____n_1806, __FILE_1250 * __restrict ____stream_1807));// L622:L623 +extern char * ((__fgets_1815) (char * __restrict ____s_1805, int ____n_1806, __FILE_1250 * __restrict ____stream_1807));// L622:L623 +extern ____ssize_t_1240 (____getdelim_1822) (char * (* __restrict ____lineptr_1817), __size_t_1192 * __restrict ____n_1818, int ____delimiter_1819, __FILE_1250 * __restrict ____stream_1820);// L665:L667 +extern ____ssize_t_1240 (____getdelim_1826) (char * (* __restrict ____lineptr_1817), __size_t_1192 * __restrict ____n_1818, int ____delimiter_1819, __FILE_1250 * __restrict ____stream_1820);// L665:L667 +extern ____ssize_t_1240 (__getdelim_1835) (char * (* __restrict ____lineptr_1830), __size_t_1192 * __restrict ____n_1831, int ____delimiter_1832, __FILE_1250 * __restrict ____stream_1833);// L668:L670 +extern ____ssize_t_1240 (__getdelim_1839) (char * (* __restrict ____lineptr_1830), __size_t_1192 * __restrict ____n_1831, int ____delimiter_1832, __FILE_1250 * __restrict ____stream_1833);// L668:L670 +extern ____ssize_t_1240 (__getline_1847) (char * (* __restrict ____lineptr_1843), __size_t_1192 * __restrict ____n_1844, __FILE_1250 * __restrict ____stream_1845);// L678:L680 +extern ____ssize_t_1240 (__getline_1851) (char * (* __restrict ____lineptr_1843), __size_t_1192 * __restrict ____n_1844, __FILE_1250 * __restrict ____stream_1845);// L678:L680 +extern int (__fputs_1858) (const char * __restrict ____s_1855, __FILE_1250 * __restrict ____stream_1856);// L689 +extern int (__fputs_1860) (const char * __restrict ____s_1855, __FILE_1250 * __restrict ____stream_1856);// L689 +extern int (__puts_1863) (const char * (____s_1862));// L695 +extern int (__ungetc_1867) (int ____c_1864, __FILE_1250 * (____stream_1865));// L702 +extern int (__fseek_1905) (__FILE_1250 * (____stream_1901), long int ____off_1903, int ____whence_1904);// L749 +extern int (__fseek_1907) (__FILE_1250 * (____stream_1901), long int ____off_1903, int ____whence_1904);// L749 +extern long int (__ftell_1911) (__FILE_1250 * (____stream_1909));// L754 +extern long int (__ftell_1913) (__FILE_1250 * (____stream_1909));// L754 +extern void (__rewind_1917) (__FILE_1250 * (____stream_1915));// L759 +extern int (__fseeko_1924) (__FILE_1250 * (____stream_1919), ____off_t_1214 ____off_1921, int ____whence_1923);// L773 +extern int (__fseeko_1935) (__FILE_1250 * (____stream_1930), ____off64_t_1215 ____off_1932, int ____whence_1934);// L781:L783 +extern ____off_t_1214 (__ftello_1949) (__FILE_1250 * (____stream_1928));// L778 +extern ____off_t_1214 (__ftello_1941) (__FILE_1250 * (____stream_1928));// L778 +extern int (__fgetpos_1957) (__FILE_1250 * __restrict ____stream_1953, __fpos_t_1478 * __restrict ____pos_1955);// L798 +extern ____off64_t_1215 (__ftello_1945) (__FILE_1250 * (____stream_1939));// L784 +extern int (__fgetpos_1969) (__FILE_1250 * __restrict ____stream_1965, __fpos_t_1480 * __restrict ____pos_1967);// L806:L807 +extern int (__fsetpos_1977) (__FILE_1250 * (____stream_1961), const __fpos_t_1478 * (____pos_1963));// L803 +extern int (__fsetpos_1981) (__FILE_1250 * (____stream_1973), const __fpos_t_1480 * (____pos_1975));// L808:L809 +extern void (__clearerr_1987) (__FILE_1250 * (____stream_1985));// L826 +extern int (__feof_1991) (__FILE_1250 * (____stream_1989));// L828 +extern int (__feof_1993) (__FILE_1250 * (____stream_1989));// L828 +extern int (__ferror_1997) (__FILE_1250 * (____stream_1995));// L830 +extern int (__ferror_1999) (__FILE_1250 * (____stream_1995));// L830 +extern void (__clearerr_unlocked_2003) (__FILE_1250 * (____stream_2001));// L835 +extern int (__feof_unlocked_2007) (__FILE_1250 * (____stream_2005));// L836 +extern int (__feof_unlocked_2009) (__FILE_1250 * (____stream_2005));// L836 +extern int (__ferror_unlocked_2013) (__FILE_1250 * (____stream_2011));// L837 +extern int (__ferror_unlocked_2015) (__FILE_1250 * (____stream_2011));// L837 +extern void (__perror_2018) (const char * (____s_2017));// L846 +extern void (__perror_2019) (const char * (____s_2017));// L846 +extern int __sys_nerr_2020;// L26 + +extern int (__fileno_2026) (__FILE_1250 * (____stream_2022));// L858 +extern int (__fileno_2024) (__FILE_1250 * (____stream_2022));// L858 +extern int (__fileno_unlocked_2032) (__FILE_1250 * (____stream_2028));// L863 +extern int (__fileno_unlocked_2030) (__FILE_1250 * (____stream_2028));// L863 +extern __FILE_1250 * ((__popen_2036) (const char * (____command_2034), const char * (____modes_2035)));// L872 +extern __FILE_1250 * ((__popen_2038) (const char * (____command_2034), const char * (____modes_2035)));// L872 +extern int (__pclose_2042) (__FILE_1250 * (____stream_2040));// L878 +extern char * ((__ctermid_2045) (char * (____s_2044)));// L884 +extern void (__flockfile_2048) (__FILE_1250 * (____stream_2046));// L912 +extern int (__ftrylockfile_2052) (__FILE_1250 * (____stream_2050));// L916 +extern int (__ftrylockfile_2054) (__FILE_1250 * (____stream_2050));// L916 +extern void (__funlockfile_2058) (__FILE_1250 * (____stream_2056));// L919 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ @@ -1312,69 +3111,69 @@ extern void (__funlockfile_867) (__FILE_59 * (____stream_865));// L919 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____sprintf_chk_899) (char * __restrict ____s_895, int ____flag_896, __size_t_1 ____slen_897, const char * __restrict ____format_898, ... );// L23:L24 -extern int (____vsprintf_chk_906) (char * __restrict ____s_900, int ____flag_901, __size_t_1 ____slen_902, const char * __restrict ____format_903, ____gnuc_va_list_86 ____ap_904);// L25:L27 +extern int (____sprintf_chk_2090) (char * __restrict ____s_2086, int ____flag_2087, __size_t_1192 ____slen_2088, const char * __restrict ____format_2089, ... );// L23:L24 +extern int (____vsprintf_chk_2097) (char * __restrict ____s_2091, int ____flag_2092, __size_t_1192 ____slen_2093, const char * __restrict ____format_2094, ____gnuc_va_list_1277 ____ap_2095);// L25:L27 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____snprintf_chk_920) (char * __restrict ____s_915, __size_t_1 ____n_916, int ____flag_917, __size_t_1 ____slen_918, const char * __restrict ____format_919, ... );// L52:L54 -extern int (____vsnprintf_chk_928) (char * __restrict ____s_921, __size_t_1 ____n_922, int ____flag_923, __size_t_1 ____slen_924, const char * __restrict ____format_925, ____gnuc_va_list_86 ____ap_926);// L55:L57 +extern int (____snprintf_chk_2111) (char * __restrict ____s_2106, __size_t_1192 ____n_2107, int ____flag_2108, __size_t_1192 ____slen_2109, const char * __restrict ____format_2110, ... );// L52:L54 +extern int (____vsnprintf_chk_2119) (char * __restrict ____s_2112, __size_t_1192 ____n_2113, int ____flag_2114, __size_t_1192 ____slen_2115, const char * __restrict ____format_2116, ____gnuc_va_list_1277 ____ap_2117);// L55:L57 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____fprintf_chk_943) (__FILE_59 * __restrict ____stream_939, int ____flag_941, const char * __restrict ____format_942, ... );// L85:L86 -extern int (____printf_chk_947) (int ____flag_945, const char * __restrict ____format_946, ... );// L87 -extern int (____vfprintf_chk_954) (__FILE_59 * __restrict ____stream_948, int ____flag_950, const char * __restrict ____format_951, ____gnuc_va_list_86 ____ap_952);// L88:L89 -extern int (____vprintf_chk_962) (int ____flag_958, const char * __restrict ____format_959, ____gnuc_va_list_86 ____ap_960);// L90:L91 +extern int (____fprintf_chk_2134) (__FILE_1250 * __restrict ____stream_2130, int ____flag_2132, const char * __restrict ____format_2133, ... );// L85:L86 +extern int (____printf_chk_2138) (int ____flag_2136, const char * __restrict ____format_2137, ... );// L87 +extern int (____vfprintf_chk_2145) (__FILE_1250 * __restrict ____stream_2139, int ____flag_2141, const char * __restrict ____format_2142, ____gnuc_va_list_1277 ____ap_2143);// L88:L89 +extern int (____vprintf_chk_2153) (int ____flag_2149, const char * __restrict ____format_2150, ____gnuc_va_list_1277 ____ap_2151);// L90:L91 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____dprintf_chk_984) (int ____fd_981, int ____flag_982, const char * __restrict ____fmt_983, ... );// L131:L132 -extern int (____vdprintf_chk_990) (int ____fd_985, int ____flag_986, const char * __restrict ____fmt_987, ____gnuc_va_list_86 ____arg_988);// L133:L135 +extern int (____dprintf_chk_2175) (int ____fd_2172, int ____flag_2173, const char * __restrict ____fmt_2174, ... );// L131:L132 +extern int (____vdprintf_chk_2181) (int ____fd_2176, int ____flag_2177, const char * __restrict ____fmt_2178, ____gnuc_va_list_1277 ____arg_2179);// L133:L135 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern char * ((____fgets_chk_1004) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 -extern char * ((____fgets_chk_1006) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 -extern char * ((____fgets_chk_1008) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 -extern char * ((____fgets_alias_1014) (char * __restrict ____s_1010, int ____n_1011, __FILE_59 * __restrict ____stream_1012));// L243:L245 -extern char * ((____fgets_chk_warn_1021) (char * __restrict ____s_1016, __size_t_1 ____size_1017, int ____n_1018, __FILE_59 * __restrict ____stream_1019));// L246:L250 +extern char * ((____fgets_chk_2195) (char * __restrict ____s_2190, __size_t_1192 ____size_2191, int ____n_2192, __FILE_1250 * __restrict ____stream_2193));// L241:L242 +extern char * ((____fgets_chk_2197) (char * __restrict ____s_2190, __size_t_1192 ____size_2191, int ____n_2192, __FILE_1250 * __restrict ____stream_2193));// L241:L242 +extern char * ((____fgets_chk_2199) (char * __restrict ____s_2190, __size_t_1192 ____size_2191, int ____n_2192, __FILE_1250 * __restrict ____stream_2193));// L241:L242 +extern char * ((____fgets_alias_2205) (char * __restrict ____s_2201, int ____n_2202, __FILE_1250 * __restrict ____stream_2203));// L243:L245 +extern char * ((____fgets_chk_warn_2212) (char * __restrict ____s_2207, __size_t_1192 ____size_2208, int ____n_2209, __FILE_1250 * __restrict ____stream_2210));// L246:L250 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -void (__enable_x_1092) () { +void (__enable_x_2283) () { -if (__static_condition_default_1095) { +if (__static_condition_default_2286) { { { - __printf_421 ("%s","enabling x axis") ; // L15 + __printf_1612 ("%s","enabling x axis") ; // L15 } } } } -void (__enable_x_1093) () { +void (__enable_x_2284) () { -if (__static_condition_default_1096) { +if (__static_condition_default_2287) { { { - __printf_421 ("%s","enabling x axis") ; // L15 + __printf_1612 ("%s","enabling x axis") ; // L15 } } } } -void (__enable_x_1094) () { +void (__enable_x_2285) () { -if (__static_condition_default_1097) { +if (__static_condition_default_2288) { { { @@ -1388,17 +3187,17 @@ __static_type_error("type error") ; // L15 } } -void (__enable_y_1098) () { +void (__enable_y_2289) () { { { -if (__static_condition_default_1099) { - __printf_421 ("%s","enabling y axis") ; // L20 +if (__static_condition_default_2290) { + __printf_1612 ("%s","enabling y axis") ; // L20 } -if (__static_condition_default_1100) { +if (__static_condition_default_2291) { __static_type_error("type error") ; // L20 } } @@ -1406,17 +3205,17 @@ __static_type_error("type error") ; // L20 } -void (__enable_z_1101) () { +void (__enable_z_2292) () { { { -if (__static_condition_default_1099) { - __printf_421 ("%s","enabling z axis") ; // L25 +if (__static_condition_default_2290) { + __printf_1612 ("%s","enabling z axis") ; // L25 } -if (__static_condition_default_1100) { +if (__static_condition_default_2291) { __static_type_error("type error") ; // L25 } } @@ -1424,15 +3223,173 @@ __static_type_error("type error") ; // L25 } -int (__main_1103) (void ) { +void (__babystep_2298) (const __uint8_t_4 __axis_2293, const _Bool __direction_2294) { + +if (__static_condition_default_2299) { + +{ +{ + + + +switch ( __axis_2293 )// L43 +{ +case 0 : +{ + + + + +{ +{ + + + +if (__static_condition_default_2300) { + __enable_x_2283 ( ) ; // L36 +} +if (__static_condition_default_2301) { + __enable_x_2284 ( ) ; // L36 +} +if (__static_condition_default_2302) { + __enable_x_2285 ( ) ; // L36 +} +__uint8_t_4 __old_pin_2295= 0;// L37 + +if (__static_condition_default_2303) { + ___delay_us_1103 (1U) ; // L39 +} +if (__static_condition_default_2304) { + ___delay_us_1153 (1U) ; // L39 +} +} +} + ; // L46 +break ; // L47 +} +case 1 : +{ + + + + +{ +{ + + + + __enable_y_2289 ( ) ; // L36 +__uint8_t_4 __old_pin_2296= 1;// L37 + +if (__static_condition_default_2305) { + ___delay_us_1103 (1U) ; // L39 +} +if (__static_condition_default_2306) { + ___delay_us_1153 (1U) ; // L39 +} +} +} + ; // L50 +break ; // L51 +} +case 2 : +{ + + + + +{ +{ + + + +if (__static_condition_default_2307) { + +{ +{ + + + + __enable_z_2292 ( ) ; // L36 +__uint8_t_4 __old_pin_2297= 2;// L37 + +if (__static_condition_default_2308) { + ___delay_us_1103 (1U) ; // L39 +} +if (__static_condition_default_2309) { + ___delay_us_1153 (1U) ; // L39 +} +} +} +} +if (__static_condition_default_2310) { + __enable_x_2283 ( ) ; // L61 +} +if (__static_condition_default_2311) { + __enable_x_2284 ( ) ; // L61 +} +if (__static_condition_default_2312) { + __enable_x_2285 ( ) ; // L61 +} +if (__static_condition_default_2313) { + __enable_y_2289 ( ) ; // L62 +} +if (__static_condition_default_2314) { + __enable_z_2292 ( ) ; // L63 +} +if (__static_condition_default_2315) { + ; // L57 +} +if (__static_condition_default_2316) { + ___delay_us_1103 (1U) ; // L66 +} +if (__static_condition_default_2317) { + ___delay_us_1153 (1U) ; // L66 +} +} +} +break ; // L71 +} +default: +{ + + + +break ; // L73 +} +} +} +} + + +} +} +int (__main_2318) (void ) { + +if (__static_condition_default_2320) { + +{ +{ + + + +return 0 ;// L84 +} +} + + +} +} +int (__main_2319) (void ) { -if (__static_condition_default_1104) { +if (__static_condition_default_2321) { { { +__static_type_error("type error : no valid expression"); // L82 return 0 ;// L84 } } diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/7336e6df070.desugared.c b/fonda/cpp_testsuite/varBugs/MARLIN/7336e6df070.desugared.c index 51e5be63..6d82a3ef 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/7336e6df070.desugared.c +++ b/fonda/cpp_testsuite/varBugs/MARLIN/7336e6df070.desugared.c @@ -7,274 +7,274 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_438; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_685; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_914; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_290; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_894; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_347; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_875; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_187; +extern const bool __static_condition_default_395; extern const bool __static_condition_default_488; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_317; extern const bool __static_condition_default_836; +extern const bool __static_condition_default_536; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_1098; +extern const bool __static_condition_default_333; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_619; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_290; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_204; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_1035; extern const bool __static_condition_default_210; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_797; +extern const bool __static_condition_default_823; extern const bool __static_condition_default_367; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_693; extern const bool __static_condition_default_736; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_789; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_76; -extern const bool __static_condition_default_393; -extern const bool __static_condition_default_1098; -extern const bool __static_condition_default_419; -extern const bool __static_condition_default_613; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_803; -extern const bool __static_condition_default_842; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_963; -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_1100; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_536; -extern const bool __static_condition_default_264; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_929; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_825; extern const bool __static_condition_default_244; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_791; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_253; extern const bool __static_condition_default_375; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_793; -extern const bool __static_condition_default_670; -extern const bool __static_condition_default_709; -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_357; -extern const bool __static_condition_default_769; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_991; +extern const bool __static_condition_default_568; +extern const bool __static_condition_default_311; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_583; +extern const bool __static_condition_default_842; extern const bool __static_condition_default_779; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_891; +extern const bool __static_condition_default_433; extern const bool __static_condition_default_649; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_846; +extern const bool __static_condition_default_963; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_529; extern const bool __static_condition_default_537; -extern const bool __static_condition_default_955; -extern const bool __static_condition_default_412; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_875; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_590; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_721; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_380; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_755; extern const bool __static_condition_default_957; -extern const bool __static_condition_default_891; -extern const bool __static_condition_default_408; -extern const bool __static_condition_default_248; -extern const bool __static_condition_default_552; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_76; +extern const bool __static_condition_default_388; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_193; extern const bool __static_condition_default_817; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_473; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_789; +extern const bool __static_condition_default_727; extern const bool __static_condition_default_757; -extern const bool __static_condition_default_956; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_494; extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_204; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_521; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_864; extern const bool __static_condition_default_249; -extern const bool __static_condition_default_486; extern const bool __static_condition_default_543; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_755; -extern const bool __static_condition_default_787; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_1035; extern const bool __static_condition_default_747; -extern const bool __static_condition_default_311; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_887; -extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_564; -extern const bool __static_condition_default_388; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_645; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_512; +extern const bool __static_condition_default_797; extern const bool __static_condition_default_549; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_894; -extern const bool __static_condition_default_929; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_402; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_455; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_769; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_365; +extern const bool __static_condition_default_1081; extern const bool __static_condition_default_677; -extern const bool __static_condition_default_198; -extern const bool __static_condition_default_380; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_792; +extern const bool __static_condition_default_337; extern const bool __static_condition_default_491; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_846; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_878; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_625; extern const bool __static_condition_default_258; -extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_761; -extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_633; extern const bool __static_condition_default_489; -extern const bool __static_condition_default_638; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_347; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_263; extern const bool __static_condition_default_278; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_521; -extern const bool __static_condition_default_753; -extern const bool __static_condition_default_702; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_386; extern const bool __static_condition_default_734; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_848; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_333; -extern const bool __static_condition_default_583; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_217; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_461; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_753; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_419; extern const bool __static_condition_default_510; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_858; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_386; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_632; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_382; -extern const bool __static_condition_default_559; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_313; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_431; -extern const bool __static_condition_default_568; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_539; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_84; +extern const bool __static_condition_default_780; extern const bool __static_condition_default_746; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_315; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_646; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_53; -extern const bool __static_condition_default_621; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_702; extern const bool __static_condition_default_907; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_432; extern const bool __static_condition_default_550; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_780; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_187; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_559; +extern const bool __static_condition_default_613; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_759; +extern const bool __static_condition_default_761; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_636; +extern const bool __static_condition_default_955; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_382; +extern const bool __static_condition_default_1100; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_512; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_544; +extern const bool __static_condition_default_834; +extern const bool __static_condition_default_1043; extern const bool __static_condition_default_608; -extern const bool __static_condition_default_872; -extern const bool __static_condition_default_701; +extern const bool __static_condition_default_670; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_760; extern const bool __static_condition_default_515; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.c b/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.c index 48aa499d..1178ed06 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.c +++ b/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.c @@ -7,7 +7,6 @@ void lcd_setstatus(const char* message, const bool persist) {}; void lcd_setstatus(const char* message) {}; // more functions #endif -#endif void getCode() { diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.desugared.c b/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.desugared.c index e69de29b..e68cee2d 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.desugared.c +++ b/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.desugared.c @@ -0,0 +1,105 @@ +#include + +extern void __static_parse_error(char *msg); +extern void __static_type_error(char *msg); +extern void __static_renaming(char *renaming, char *original); +extern void __static_condition_renaming(char *expression, char *renaming); + +void __static_initializer_default(); + +extern const bool __static_condition_default_9; +extern const bool __static_condition_default_6; +extern const bool __static_condition_default_10; +extern const bool __static_condition_default_3; +void __static_initializer_default() { +__static_renaming("__lcd_setstatus_2", "lcd_setstatus"); +__static_renaming("__lcd_setstatus_5", "lcd_setstatus"); +__static_renaming("__time_7", "time"); +__static_renaming("__getCode_8", "getCode"); +__static_renaming("__main_13", "main"); + +__static_condition_renaming("__static_condition_default_3", "(defined ULTRA_LCD)"); +__static_condition_renaming("__static_condition_default_6", "!(defined ULTRA_LCD)"); +__static_condition_renaming("__static_condition_default_9", "!(defined SDSUPPORT)"); +__static_condition_renaming("__static_condition_default_10", "(defined SDSUPPORT)"); + +}; + +void (__lcd_setstatus_2) (const char * (__message_0), const _Bool __persist_1) { + +if (__static_condition_default_3) { + +{ +{ + + + +} +} + + +} +} +void (__lcd_setstatus_5) (const char * (__message_4)) { + +if (__static_condition_default_6) { + +{ +{ + + + +} +} + + +} +} +;;void (__getCode_8) () { + +{ +if (__static_condition_default_9) { + +{ +{ + + + +} +} + + +} + +if (__static_condition_default_10) { + +{ +{ + + + +char __time_7[30]= "time_here";// L14 + +__static_type_error("type error : no valid expression"); // L15 +} +} + + +} + +}} +int (__main_13) (int __argc_11, char * (* (__argv_12))) { + +{ +{ + + + + __getCode_8 ( ) ; // L21 +return 0 ;// L22 +} +} + + +} + diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.c b/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.c index 2596b4ff..6084c9be 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.c +++ b/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.c @@ -7,17 +7,17 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_3; -extern const bool __static_condition_default_10; -extern const bool __static_condition_default_14; -extern const bool __static_condition_default_12; -extern const bool __static_condition_default_8; extern const bool __static_condition_default_9; -extern const bool __static_condition_default_13; -extern const bool __static_condition_default_15; +extern const bool __static_condition_default_8; +extern const bool __static_condition_default_14; extern const bool __static_condition_default_19; extern const bool __static_condition_default_20; +extern const bool __static_condition_default_10; +extern const bool __static_condition_default_15; +extern const bool __static_condition_default_12; +extern const bool __static_condition_default_13; extern const bool __static_condition_default_11; +extern const bool __static_condition_default_3; void __static_initializer_default() { __static_renaming("__echomagic_0", "echomagic"); __static_renaming("__serialprint_2", "serialprint"); diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.c b/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.c index 42b47289..71e7540c 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.c +++ b/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.c @@ -7,21 +7,21 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_13; extern const bool __static_condition_default_190; -extern const bool __static_condition_default_191; -extern const bool __static_condition_default_211; +extern const bool __static_condition_default_228; extern const bool __static_condition_default_215; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_211; extern const bool __static_condition_default_195; +extern const bool __static_condition_default_182; extern const bool __static_condition_default_208; +extern const bool __static_condition_default_219; extern const bool __static_condition_default_223; -extern const bool __static_condition_default_228; extern const bool __static_condition_default_175; -extern const bool __static_condition_default_219; -extern const bool __static_condition_default_230; -extern const bool __static_condition_default_229; +extern const bool __static_condition_default_13; +extern const bool __static_condition_default_191; extern const bool __static_condition_default_220; -extern const bool __static_condition_default_182; +extern const bool __static_condition_default_230; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/b8e79dce897.desugared.c b/fonda/cpp_testsuite/varBugs/MARLIN/b8e79dce897.desugared.c index 31f1e5d2..25817673 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/b8e79dce897.desugared.c +++ b/fonda/cpp_testsuite/varBugs/MARLIN/b8e79dce897.desugared.c @@ -7,289 +7,289 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_393; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_568; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_1106; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_512; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_780; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_382; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_549; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_1108; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_1100; extern const bool __static_condition_default_253; -extern const bool __static_condition_default_248; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_693; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_380; -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_76; -extern const bool __static_condition_default_914; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_1102; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_761; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_590; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_779; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_169; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_552; extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_333; +extern const bool __static_condition_default_613; +extern const bool __static_condition_default_955; extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_1105; +extern const bool __static_condition_default_337; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_875; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_290; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_636; +extern const bool __static_condition_default_929; +extern const bool __static_condition_default_76; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_1098; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_503; extern const bool __static_condition_default_311; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_469; +extern const bool __static_condition_default_647; extern const bool __static_condition_default_373; -extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_613; -extern const bool __static_condition_default_402; +extern const bool __static_condition_default_1104; +extern const bool __static_condition_default_386; +extern const bool __static_condition_default_550; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_489; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_187; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_1097; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_1110; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_1106; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_963; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_1109; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_1103; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_967; extern const bool __static_condition_default_341; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_753; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_347; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_248; extern const bool __static_condition_default_894; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_1103; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_701; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_963; -extern const bool __static_condition_default_677; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_875; -extern const bool __static_condition_default_944; extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_564; +extern const bool __static_condition_default_84; +extern const bool __static_condition_default_602; extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_747; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_1098; -extern const bool __static_condition_default_438; -extern const bool __static_condition_default_702; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_412; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_583; -extern const bool __static_condition_default_979; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_204; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_365; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_549; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_544; extern const bool __static_condition_default_846; -extern const bool __static_condition_default_317; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_721; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_633; extern const bool __static_condition_default_789; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_803; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_756; +extern const bool __static_condition_default_536; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_1102; extern const bool __static_condition_default_229; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_956; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_1097; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_1096; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_386; -extern const bool __static_condition_default_521; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_53; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_541; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_1108; extern const bool __static_condition_default_938; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_787; -extern const bool __static_condition_default_1105; -extern const bool __static_condition_default_419; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_769; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_645; -extern const bool __static_condition_default_685; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_702; +extern const bool __static_condition_default_521; extern const bool __static_condition_default_444; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_955; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_408; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_536; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_431; -extern const bool __static_condition_default_991; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_512; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_380; +extern const bool __static_condition_default_419; extern const bool __static_condition_default_388; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_367; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_1104; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_755; -extern const bool __static_condition_default_246; +extern const bool __static_condition_default_700; extern const bool __static_condition_default_842; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_1109; -extern const bool __static_condition_default_290; -extern const bool __static_condition_default_709; -extern const bool __static_condition_default_858; -extern const bool __static_condition_default_187; -extern const bool __static_condition_default_313; -extern const bool __static_condition_default_217; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_632; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_670; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_559; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_382; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_170; extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_929; -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_488; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_1101; -extern const bool __static_condition_default_503; +extern const bool __static_condition_default_1096; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_991; extern const bool __static_condition_default_878; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_461; -extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_670; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_619; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_583; extern const bool __static_condition_default_543; -extern const bool __static_condition_default_957; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_315; -extern const bool __static_condition_default_1110; -extern const bool __static_condition_default_1095; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_848; -extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_887; -extern const bool __static_condition_default_998; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_759; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_761; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_779; extern const bool __static_condition_default_864; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_1111; +extern const bool __static_condition_default_721; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_455; +extern const bool __static_condition_default_677; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_367; extern const bool __static_condition_default_661; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_559; +extern const bool __static_condition_default_791; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_1101; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_488; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_834; extern const bool __static_condition_default_807; -extern const bool __static_condition_default_1099; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_907; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_767; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_1100; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_333; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_568; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_1095; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_979; extern const bool __static_condition_default_891; -extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_198; -extern const bool __static_condition_default_204; -extern const bool __static_condition_default_357; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_347; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_1099; extern const bool __static_condition_default_793; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_514; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_753; +extern const bool __static_condition_default_907; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_769; extern const bool __static_condition_default_683; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_1057; extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_1111; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_638; -extern const bool __static_condition_default_872; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_646; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_747; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_1089; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/f87c80889fe.desugared.c b/fonda/cpp_testsuite/varBugs/MARLIN/f87c80889fe.desugared.c index 2512b6c0..d55d5727 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/f87c80889fe.desugared.c +++ b/fonda/cpp_testsuite/varBugs/MARLIN/f87c80889fe.desugared.c @@ -7,370 +7,370 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_755; -extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_1489; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_1515; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_2330; +extern const bool __static_condition_default_2399; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_204; +extern const bool __static_condition_default_1568; +extern const bool __static_condition_default_549; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_444; extern const bool __static_condition_default_347; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_1369; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_1754; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_1402; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_1531; -extern const bool __static_condition_default_702; -extern const bool __static_condition_default_1365; -extern const bool __static_condition_default_1552; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_1776; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_2377; -extern const bool __static_condition_default_1498; -extern const bool __static_condition_default_2343; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_1774; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_1787; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_2063; -extern const bool __static_condition_default_187; -extern const bool __static_condition_default_311; -extern const bool __static_condition_default_1785; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_2387; extern const bool __static_condition_default_619; -extern const bool __static_condition_default_386; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_2047; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_1381; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_2351; -extern const bool __static_condition_default_708; extern const bool __static_condition_default_419; -extern const bool __static_condition_default_2321; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_638; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_1165; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_747; +extern const bool __static_condition_default_753; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_1377; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_670; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_1749; +extern const bool __static_condition_default_1816; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_255; extern const bool __static_condition_default_286; +extern const bool __static_condition_default_1385; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_380; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_957; extern const bool __static_condition_default_1405; -extern const bool __static_condition_default_1398; -extern const bool __static_condition_default_709; -extern const bool __static_condition_default_872; -extern const bool __static_condition_default_2062; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_769; -extern const bool __static_condition_default_2313; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_780; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_1353; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_1787; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_187; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_488; +extern const bool __static_condition_default_1042; extern const bool __static_condition_default_836; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_367; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_2387; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_317; +extern const bool __static_condition_default_2381; extern const bool __static_condition_default_521; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_1568; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_76; -extern const bool __static_condition_default_204; -extern const bool __static_condition_default_1428; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_217; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_2394; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_573; extern const bool __static_condition_default_512; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_1775; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_461; +extern const bool __static_condition_default_2388; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_1402; +extern const bool __static_condition_default_2064; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_1458; +extern const bool __static_condition_default_290; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_2044; extern const bool __static_condition_default_559; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_787; -extern const bool __static_condition_default_380; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_887; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_1773; -extern const bool __static_condition_default_793; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_1789; -extern const bool __static_condition_default_1159; -extern const bool __static_condition_default_1791; -extern const bool __static_condition_default_2378; -extern const bool __static_condition_default_2395; -extern const bool __static_condition_default_1564; -extern const bool __static_condition_default_1750; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_1432; -extern const bool __static_condition_default_2342; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_1353; +extern const bool __static_condition_default_386; +extern const bool __static_condition_default_2389; +extern const bool __static_condition_default_249; extern const bool __static_condition_default_803; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_2381; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_1164; -extern const bool __static_condition_default_2330; +extern const bool __static_condition_default_2063; +extern const bool __static_condition_default_1341; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_583; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_2313; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_702; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_1361; +extern const bool __static_condition_default_1515; +extern const bool __static_condition_default_84; +extern const bool __static_condition_default_684; extern const bool __static_condition_default_223; -extern const bool __static_condition_default_2388; -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_646; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_1416; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_499; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_846; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_1774; +extern const bool __static_condition_default_293; extern const bool __static_condition_default_1395; +extern const bool __static_condition_default_842; +extern const bool __static_condition_default_1556; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_929; +extern const bool __static_condition_default_721; +extern const bool __static_condition_default_1773; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_550; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_658; extern const bool __static_condition_default_2045; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_2329; -extern const bool __static_condition_default_388; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_1424; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_1485; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_991; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_2376; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_1775; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_757; extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_2043; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_357; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_1808; +extern const bool __static_condition_default_2395; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_337; +extern const bool __static_condition_default_779; +extern const bool __static_condition_default_608; extern const bool __static_condition_default_395; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_229; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_2321; +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_489; extern const bool __static_condition_default_267; -extern const bool __static_condition_default_2044; -extern const bool __static_condition_default_543; -extern const bool __static_condition_default_1453; -extern const bool __static_condition_default_1458; -extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_1357; -extern const bool __static_condition_default_670; -extern const bool __static_condition_default_957; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_488; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_858; -extern const bool __static_condition_default_894; -extern const bool __static_condition_default_693; -extern const bool __static_condition_default_382; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_789; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_1152; +extern const bool __static_condition_default_2320; +extern const bool __static_condition_default_1428; +extern const bool __static_condition_default_1459; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_1750; +extern const bool __static_condition_default_1373; +extern const bool __static_condition_default_1532; +extern const bool __static_condition_default_1365; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_2329; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_1791; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_759; +extern const bool __static_condition_default_2350; +extern const bool __static_condition_default_633; extern const bool __static_condition_default_813; -extern const bool __static_condition_default_1420; -extern const bool __static_condition_default_2322; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_2349; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_402; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_1391; -extern const bool __static_condition_default_842; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_1816; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_1315; extern const bool __static_condition_default_355; -extern const bool __static_condition_default_2328; +extern const bool __static_condition_default_1498; +extern const bool __static_condition_default_552; extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_333; +extern const bool __static_condition_default_761; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_1785; +extern const bool __static_condition_default_1453; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_2047; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_1398; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_1420; +extern const bool __static_condition_default_1814; +extern const bool __static_condition_default_1753; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_2377; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_1424; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_819; extern const bool __static_condition_default_768; -extern const bool __static_condition_default_2376; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_613; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_1361; -extern const bool __static_condition_default_1576; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_801; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_471; extern const bool __static_condition_default_393; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_1475; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_685; -extern const bool __static_condition_default_846; -extern const bool __static_condition_default_248; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_632; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_1560; -extern const bool __static_condition_default_1377; -extern const bool __static_condition_default_1349; -extern const bool __static_condition_default_956; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_1369; +extern const bool __static_condition_default_1789; +extern const bool __static_condition_default_1808; +extern const bool __static_condition_default_657; extern const bool __static_condition_default_568; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_590; -extern const bool __static_condition_default_1556; -extern const bool __static_condition_default_1385; -extern const bool __static_condition_default_623; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_1436; extern const bool __static_condition_default_662; -extern const bool __static_condition_default_1165; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_1388; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_1345; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_1753; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_1532; -extern const bool __static_condition_default_564; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_2394; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_1152; +extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_1944; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_311; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_1560; +extern const bool __static_condition_default_2322; +extern const bool __static_condition_default_1416; +extern const bool __static_condition_default_257; extern const bool __static_condition_default_1516; -extern const bool __static_condition_default_2399; -extern const bool __static_condition_default_745; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_2343; +extern const bool __static_condition_default_382; +extern const bool __static_condition_default_76; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_613; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_2314; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_1810; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_2378; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_2342; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_1159; +extern const bool __static_condition_default_1432; +extern const bool __static_condition_default_2062; +extern const bool __static_condition_default_1572; extern const bool __static_condition_default_2312; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_544; +extern const bool __static_condition_default_1552; +extern const bool __static_condition_default_2349; extern const bool __static_condition_default_834; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_848; -extern const bool __static_condition_default_753; +extern const bool __static_condition_default_1381; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_2351; +extern const bool __static_condition_default_1345; +extern const bool __static_condition_default_1485; +extern const bool __static_condition_default_677; +extern const bool __static_condition_default_1564; +extern const bool __static_condition_default_1576; +extern const bool __static_condition_default_1754; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_469; extern const bool __static_condition_default_963; +extern const bool __static_condition_default_2043; +extern const bool __static_condition_default_455; extern const bool __static_condition_default_840; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_929; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_891; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_791; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_1349; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_1776; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_388; +extern const bool __static_condition_default_1475; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_894; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_1357; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_313; extern const bool __static_condition_default_907; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_2389; -extern const bool __static_condition_default_1810; -extern const bool __static_condition_default_53; -extern const bool __static_condition_default_198; -extern const bool __static_condition_default_290; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_1409; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_408; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_2320; -extern const bool __static_condition_default_1315; +extern const bool __static_condition_default_367; +extern const bool __static_condition_default_1164; +extern const bool __static_condition_default_1391; +extern const bool __static_condition_default_365; extern const bool __static_condition_default_536; -extern const bool __static_condition_default_315; -extern const bool __static_condition_default_313; -extern const bool __static_condition_default_1944; -extern const bool __static_condition_default_412; extern const bool __static_condition_default_2046; -extern const bool __static_condition_default_914; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_2350; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_735; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_769; extern const bool __static_condition_default_875; -extern const bool __static_condition_default_779; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_747; -extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_2314; -extern const bool __static_condition_default_1572; -extern const bool __static_condition_default_1459; -extern const bool __static_condition_default_583; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_1388; +extern const bool __static_condition_default_1409; +extern const bool __static_condition_default_1489; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_789; extern const bool __static_condition_default_955; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_1436; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_761; -extern const bool __static_condition_default_1341; -extern const bool __static_condition_default_2064; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_1814; -extern const bool __static_condition_default_701; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_891; -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_1373; -extern const bool __static_condition_default_1749; -extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_333; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_645; -extern const bool __static_condition_default_431; -extern const bool __static_condition_default_677; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_438; -extern const bool __static_condition_default_549; +extern const bool __static_condition_default_1531; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_636; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_2328; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -1826,12 +1826,12 @@ struct ____anonymous_tag_1166_1167 { unsigned int ____w_termsig_1168 : 7;// L72 unsigned int ____w_coredump_1169 : 1;// L73 unsigned int ____w_retcode_1170 : 8;// L74 -unsigned int : 16;// L75 +unsigned int __anon_id_0_1171 : 16;// L75 }; struct ____anonymous_tag_1172_1173 { unsigned int ____w_stopval_1174 : 8;// L87 unsigned int ____w_stopsig_1175 : 8;// L88 -unsigned int : 16;// L89 +unsigned int __anon_id_1_1176 : 16;// L89 }; union __wait_1177 { int __w_status_1178;// L68 diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/fdac8f6cece.desugared.c b/fonda/cpp_testsuite/varBugs/MARLIN/fdac8f6cece.desugared.c index 36bf2cf4..63e55cae 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/fdac8f6cece.desugared.c +++ b/fonda/cpp_testsuite/varBugs/MARLIN/fdac8f6cece.desugared.c @@ -7,8 +7,8 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_3; extern const bool __static_condition_default_2; +extern const bool __static_condition_default_3; void __static_initializer_default() { __static_renaming("__zprobe_zoffset_0", "zprobe_zoffset"); __static_renaming("__Config_ResetDefault_1", "Config_ResetDefault"); diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/util/atomic.h b/fonda/cpp_testsuite/varBugs/MARLIN/util/atomic.h new file mode 100644 index 00000000..81acdf52 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/util/atomic.h @@ -0,0 +1,308 @@ +/* Copyright (c) 2007 Dean Camera + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holders nor the names of + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE + LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + POSSIBILITY OF SUCH DAMAGE. +*/ + +/* $Id: atomic.h 2158 2010-06-10 15:48:28Z joerg_wunsch $ */ + +#ifndef _UTIL_ATOMIC_H_ +#define _UTIL_ATOMIC_H_ 1 + +#include +#include + +#if !defined(__DOXYGEN__) +/* Internal helper functions. */ +static __inline__ uint8_t __iSeiRetVal(void) +{ + sei(); + return 1; +} + +static __inline__ uint8_t __iCliRetVal(void) +{ + cli(); + return 1; +} + +static __inline__ void __iSeiParam(const uint8_t *__s) +{ + sei(); + __asm__ volatile ("" ::: "memory"); + (void)__s; +} + +static __inline__ void __iCliParam(const uint8_t *__s) +{ + cli(); + __asm__ volatile ("" ::: "memory"); + (void)__s; +} + +static __inline__ void __iRestore(const uint8_t *__s) +{ + SREG = *__s; + __asm__ volatile ("" ::: "memory"); +} +#endif /* !__DOXYGEN__ */ + +/** \file */ +/** \defgroup util_atomic Atomically and Non-Atomically Executed Code Blocks + + \code + #include + \endcode + + \note The macros in this header file require the ISO/IEC 9899:1999 + ("ISO C99") feature of for loop variables that are declared inside + the for loop itself. For that reason, this header file can only + be used if the standard level of the compiler (option --std=) is + set to either \c c99 or \c gnu99. + + The macros in this header file deal with code blocks that are + guaranteed to be excuted Atomically or Non-Atmomically. The term + "Atomic" in this context refers to the unability of the respective + code to be interrupted. + + These macros operate via automatic manipulation of the Global + Interrupt Status (I) bit of the SREG register. Exit paths from + both block types are all managed automatically without the need + for special considerations, i. e. the interrupt status will be + restored to the same value it has been when entering the + respective block. + + A typical example that requires atomic access is a 16 (or more) + bit variable that is shared between the main execution path and an + ISR. While declaring such a variable as volatile ensures that the + compiler will not optimize accesses to it away, it does not + guarantee atomic access to it. Assuming the following example: + + \code +#include +#include +#include + +volatile uint16_t ctr; + +ISR(TIMER1_OVF_vect) +{ + ctr--; +} + +... +int +main(void) +{ + ... + ctr = 0x200; + start_timer(); + while (ctr != 0) + // wait + ; + ... +} + \endcode + + There is a chance where the main context will exit its wait loop + when the variable \c ctr just reached the value 0xFF. This happens + because the compiler cannot natively access a 16-bit variable + atomically in an 8-bit CPU. So the variable is for example at + 0x100, the compiler then tests the low byte for 0, which succeeds. + It then proceeds to test the high byte, but that moment the ISR + triggers, and the main context is interrupted. The ISR will + decrement the variable from 0x100 to 0xFF, and the main context + proceeds. It now tests the high byte of the variable which is + (now) also 0, so it concludes the variable has reached 0, and + terminates the loop. + + Using the macros from this header file, the above code can be + rewritten like: + + \code +#include +#include +#include +#include + +volatile uint16_t ctr; + +ISR(TIMER1_OVF_vect) +{ + ctr--; +} + +... +int +main(void) +{ + ... + ctr = 0x200; + start_timer(); + sei(); + uint16_t ctr_copy; + do + { + ATOMIC_BLOCK(ATOMIC_FORCEON) + { + ctr_copy = ctr; + } + } + while (ctr_copy != 0); + ... +} + \endcode + + This will install the appropriate interrupt protection before + accessing variable \c ctr, so it is guaranteed to be consistently + tested. If the global interrupt state were uncertain before + entering the ATOMIC_BLOCK, it should be executed with the + parameter ATOMIC_RESTORESTATE rather than ATOMIC_FORCEON. + + See \ref optim_code_reorder for things to be taken into account + with respect to compiler optimizations. +*/ + +/** \def ATOMIC_BLOCK(type) + \ingroup util_atomic + + Creates a block of code that is guaranteed to be executed + atomically. Upon entering the block the Global Interrupt Status + flag in SREG is disabled, and re-enabled upon exiting the block + from any exit path. + + Two possible macro parameters are permitted, ATOMIC_RESTORESTATE + and ATOMIC_FORCEON. +*/ +#if defined(__DOXYGEN__) +#define ATOMIC_BLOCK(type) +#else +#define ATOMIC_BLOCK(type) for ( type, __ToDo = __iCliRetVal(); \ + __ToDo ; __ToDo = 0 ) +#endif /* __DOXYGEN__ */ + +/** \def NONATOMIC_BLOCK(type) + \ingroup util_atomic + + Creates a block of code that is executed non-atomically. Upon + entering the block the Global Interrupt Status flag in SREG is + enabled, and disabled upon exiting the block from any exit + path. This is useful when nested inside ATOMIC_BLOCK sections, + allowing for non-atomic execution of small blocks of code while + maintaining the atomic access of the other sections of the parent + ATOMIC_BLOCK. + + Two possible macro parameters are permitted, + NONATOMIC_RESTORESTATE and NONATOMIC_FORCEOFF. +*/ +#if defined(__DOXYGEN__) +#define NONATOMIC_BLOCK(type) +#else +#define NONATOMIC_BLOCK(type) for ( type, __ToDo = __iSeiRetVal(); \ + __ToDo ; __ToDo = 0 ) +#endif /* __DOXYGEN__ */ + +/** \def ATOMIC_RESTORESTATE + \ingroup util_atomic + + This is a possible parameter for ATOMIC_BLOCK. When used, it will + cause the ATOMIC_BLOCK to restore the previous state of the SREG + register, saved before the Global Interrupt Status flag bit was + disabled. The net effect of this is to make the ATOMIC_BLOCK's + contents guaranteed atomic, without changing the state of the + Global Interrupt Status flag when execution of the block + completes. +*/ +#if defined(__DOXYGEN__) +#define ATOMIC_RESTORESTATE +#else +#define ATOMIC_RESTORESTATE uint8_t sreg_save \ + __attribute__((__cleanup__(__iRestore))) = SREG +#endif /* __DOXYGEN__ */ + +/** \def ATOMIC_FORCEON + \ingroup util_atomic + + This is a possible parameter for ATOMIC_BLOCK. When used, it will + cause the ATOMIC_BLOCK to force the state of the SREG register on + exit, enabling the Global Interrupt Status flag bit. This saves on + flash space as the previous value of the SREG register does not + need to be saved at the start of the block. + + Care should be taken that ATOMIC_FORCEON is only used when it is + known that interrupts are enabled before the block's execution or + when the side effects of enabling global interrupts at the block's + completion are known and understood. +*/ +#if defined(__DOXYGEN__) +#define ATOMIC_FORCEON +#else +#define ATOMIC_FORCEON uint8_t sreg_save \ + __attribute__((__cleanup__(__iSeiParam))) = 0 +#endif /* __DOXYGEN__ */ + +/** \def NONATOMIC_RESTORESTATE + \ingroup util_atomic + + This is a possible parameter for NONATOMIC_BLOCK. When used, it + will cause the NONATOMIC_BLOCK to restore the previous state of + the SREG register, saved before the Global Interrupt Status flag + bit was enabled. The net effect of this is to make the + NONATOMIC_BLOCK's contents guaranteed non-atomic, without changing + the state of the Global Interrupt Status flag when execution of + the block completes. +*/ +#if defined(__DOXYGEN__) +#define NONATOMIC_RESTORESTATE +#else +#define NONATOMIC_RESTORESTATE uint8_t sreg_save \ + __attribute__((__cleanup__(__iRestore))) = SREG +#endif /* __DOXYGEN__ */ + +/** \def NONATOMIC_FORCEOFF + \ingroup util_atomic + + This is a possible parameter for NONATOMIC_BLOCK. When used, it + will cause the NONATOMIC_BLOCK to force the state of the SREG + register on exit, disabling the Global Interrupt Status flag + bit. This saves on flash space as the previous value of the SREG + register does not need to be saved at the start of the block. + + Care should be taken that NONATOMIC_FORCEOFF is only used when it + is known that interrupts are disabled before the block's execution + or when the side effects of disabling global interrupts at the + block's completion are known and understood. +*/ +#if defined(__DOXYGEN__) +#define NONATOMIC_FORCEOFF +#else +#define NONATOMIC_FORCEOFF uint8_t sreg_save \ + __attribute__((__cleanup__(__iCliParam))) = 0 +#endif /* __DOXYGEN__ */ + +#endif diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/util/crc16.h b/fonda/cpp_testsuite/varBugs/MARLIN/util/crc16.h new file mode 100644 index 00000000..cc34f9b2 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/util/crc16.h @@ -0,0 +1,403 @@ +/* Copyright (c) 2002, 2003, 2004 Marek Michalkiewicz + Copyright (c) 2005, 2007 Joerg Wunsch + Copyright (c) 2013 Dave Hylands + Copyright (c) 2013 Frederic Nadeau + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holders nor the names of + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE + LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + POSSIBILITY OF SUCH DAMAGE. */ + +/* $Id: crc16.h 2398 2013-05-08 11:45:54Z joerg_wunsch $ */ + +#ifndef _UTIL_CRC16_H_ +#define _UTIL_CRC16_H_ + +#include + +/** \file */ +/** \defgroup util_crc : CRC Computations + \code#include \endcode + + This header file provides a optimized inline functions for calculating + cyclic redundancy checks (CRC) using common polynomials. + + \par References: + + \par + + See the Dallas Semiconductor app note 27 for 8051 assembler example and + general CRC optimization suggestions. The table on the last page of the + app note is the key to understanding these implementations. + + \par + + Jack Crenshaw's "Implementing CRCs" article in the January 1992 isue of \e + Embedded \e Systems \e Programming. This may be difficult to find, but it + explains CRC's in very clear and concise terms. Well worth the effort to + obtain a copy. + + A typical application would look like: + + \code + // Dallas iButton test vector. + uint8_t serno[] = { 0x02, 0x1c, 0xb8, 0x01, 0, 0, 0, 0xa2 }; + + int + checkcrc(void) + { + uint8_t crc = 0, i; + + for (i = 0; i < sizeof serno / sizeof serno[0]; i++) + crc = _crc_ibutton_update(crc, serno[i]); + + return crc; // must be 0 + } + \endcode +*/ + +/** \ingroup util_crc + Optimized CRC-16 calculation. + + Polynomial: x^16 + x^15 + x^2 + 1 (0xa001)
+ Initial value: 0xffff + + This CRC is normally used in disk-drive controllers. + + The following is the equivalent functionality written in C. + + \code + uint16_t + crc16_update(uint16_t crc, uint8_t a) + { + int i; + + crc ^= a; + for (i = 0; i < 8; ++i) + { + if (crc & 1) + crc = (crc >> 1) ^ 0xA001; + else + crc = (crc >> 1); + } + + return crc; + } + + \endcode */ + +static __inline__ uint16_t +_crc16_update(uint16_t __crc, uint8_t __data) +{ + uint8_t __tmp; + uint16_t __ret; + + __asm__ __volatile__ ( + "eor %A0,%2" "\n\t" + "mov %1,%A0" "\n\t" + "swap %1" "\n\t" + "eor %1,%A0" "\n\t" + "mov __tmp_reg__,%1" "\n\t" + "lsr %1" "\n\t" + "lsr %1" "\n\t" + "eor %1,__tmp_reg__" "\n\t" + "mov __tmp_reg__,%1" "\n\t" + "lsr %1" "\n\t" + "eor %1,__tmp_reg__" "\n\t" + "andi %1,0x07" "\n\t" + "mov __tmp_reg__,%A0" "\n\t" + "mov %A0,%B0" "\n\t" + "lsr %1" "\n\t" + "ror __tmp_reg__" "\n\t" + "ror %1" "\n\t" + "mov %B0,__tmp_reg__" "\n\t" + "eor %A0,%1" "\n\t" + "lsr __tmp_reg__" "\n\t" + "ror %1" "\n\t" + "eor %B0,__tmp_reg__" "\n\t" + "eor %A0,%1" + : "=r" (__ret), "=d" (__tmp) + : "r" (__data), "0" (__crc) + : "r0" + ); + return __ret; +} + +/** \ingroup util_crc + Optimized CRC-XMODEM calculation. + + Polynomial: x^16 + x^12 + x^5 + 1 (0x1021)
+ Initial value: 0x0 + + This is the CRC used by the Xmodem-CRC protocol. + + The following is the equivalent functionality written in C. + + \code + uint16_t + crc_xmodem_update (uint16_t crc, uint8_t data) + { + int i; + + crc = crc ^ ((uint16_t)data << 8); + for (i=0; i<8; i++) + { + if (crc & 0x8000) + crc = (crc << 1) ^ 0x1021; + else + crc <<= 1; + } + + return crc; + } + \endcode */ + +static __inline__ uint16_t +_crc_xmodem_update(uint16_t __crc, uint8_t __data) +{ + uint16_t __ret; /* %B0:%A0 (alias for __crc) */ + uint8_t __tmp1; /* %1 */ + uint8_t __tmp2; /* %2 */ + /* %3 __data */ + + __asm__ __volatile__ ( + "eor %B0,%3" "\n\t" /* crc.hi ^ data */ + "mov __tmp_reg__,%B0" "\n\t" + "swap __tmp_reg__" "\n\t" /* swap(crc.hi ^ data) */ + + /* Calculate the ret.lo of the CRC. */ + "mov %1,__tmp_reg__" "\n\t" + "andi %1,0x0f" "\n\t" + "eor %1,%B0" "\n\t" + "mov %2,%B0" "\n\t" + "eor %2,__tmp_reg__" "\n\t" + "lsl %2" "\n\t" + "andi %2,0xe0" "\n\t" + "eor %1,%2" "\n\t" /* __tmp1 is now ret.lo. */ + + /* Calculate the ret.hi of the CRC. */ + "mov %2,__tmp_reg__" "\n\t" + "eor %2,%B0" "\n\t" + "andi %2,0xf0" "\n\t" + "lsr %2" "\n\t" + "mov __tmp_reg__,%B0" "\n\t" + "lsl __tmp_reg__" "\n\t" + "rol %2" "\n\t" + "lsr %B0" "\n\t" + "lsr %B0" "\n\t" + "lsr %B0" "\n\t" + "andi %B0,0x1f" "\n\t" + "eor %B0,%2" "\n\t" + "eor %B0,%A0" "\n\t" /* ret.hi is now ready. */ + "mov %A0,%1" "\n\t" /* ret.lo is now ready. */ + : "=d" (__ret), "=d" (__tmp1), "=d" (__tmp2) + : "r" (__data), "0" (__crc) + : "r0" + ); + return __ret; +} + +/** \ingroup util_crc + Optimized CRC-CCITT calculation. + + Polynomial: x^16 + x^12 + x^5 + 1 (0x8408)
+ Initial value: 0xffff + + This is the CRC used by PPP and IrDA. + + See RFC1171 (PPP protocol) and IrDA IrLAP 1.1 + + \note Although the CCITT polynomial is the same as that used by the Xmodem + protocol, they are quite different. The difference is in how the bits are + shifted through the alorgithm. Xmodem shifts the MSB of the CRC and the + input first, while CCITT shifts the LSB of the CRC and the input first. + + The following is the equivalent functionality written in C. + + \code + uint16_t + crc_ccitt_update (uint16_t crc, uint8_t data) + { + data ^= lo8 (crc); + data ^= data << 4; + + return ((((uint16_t)data << 8) | hi8 (crc)) ^ (uint8_t)(data >> 4) + ^ ((uint16_t)data << 3)); + } + \endcode */ + +static __inline__ uint16_t +_crc_ccitt_update (uint16_t __crc, uint8_t __data) +{ + uint16_t __ret; + + __asm__ __volatile__ ( + "eor %A0,%1" "\n\t" + + "mov __tmp_reg__,%A0" "\n\t" + "swap %A0" "\n\t" + "andi %A0,0xf0" "\n\t" + "eor %A0,__tmp_reg__" "\n\t" + + "mov __tmp_reg__,%B0" "\n\t" + + "mov %B0,%A0" "\n\t" + + "swap %A0" "\n\t" + "andi %A0,0x0f" "\n\t" + "eor __tmp_reg__,%A0" "\n\t" + + "lsr %A0" "\n\t" + "eor %B0,%A0" "\n\t" + + "eor %A0,%B0" "\n\t" + "lsl %A0" "\n\t" + "lsl %A0" "\n\t" + "lsl %A0" "\n\t" + "eor %A0,__tmp_reg__" + + : "=d" (__ret) + : "r" (__data), "0" (__crc) + : "r0" + ); + return __ret; +} + +/** \ingroup util_crc + Optimized Dallas (now Maxim) iButton 8-bit CRC calculation. + + Polynomial: x^8 + x^5 + x^4 + 1 (0x8C)
+ Initial value: 0x0 + + See http://www.maxim-ic.com/appnotes.cfm/appnote_number/27 + + The following is the equivalent functionality written in C. + + \code + uint8_t + _crc_ibutton_update(uint8_t crc, uint8_t data) + { + uint8_t i; + + crc = crc ^ data; + for (i = 0; i < 8; i++) + { + if (crc & 0x01) + crc = (crc >> 1) ^ 0x8C; + else + crc >>= 1; + } + + return crc; + } + \endcode +*/ + +static __inline__ uint8_t +_crc_ibutton_update(uint8_t __crc, uint8_t __data) +{ + uint8_t __i, __pattern; + __asm__ __volatile__ ( + " eor %0, %4" "\n\t" + " ldi %1, 8" "\n\t" + " ldi %2, 0x8C" "\n\t" + "1: lsr %0" "\n\t" + " brcc 2f" "\n\t" + " eor %0, %2" "\n\t" + "2: dec %1" "\n\t" + " brne 1b" "\n\t" + : "=r" (__crc), "=d" (__i), "=d" (__pattern) + : "0" (__crc), "r" (__data)); + return __crc; +} + +/** \ingroup util_crc + Optimized CRC-8-CCITT calculation. + + Polynomial: x^8 + x^2 + x + 1 (0xE0)
+ + For use with simple CRC-8
+ Initial value: 0x0 + + For use with CRC-8-ROHC
+ Initial value: 0xff
+ Reference: http://tools.ietf.org/html/rfc3095#section-5.9.1 + + For use with CRC-8-ATM/ITU
+ Initial value: 0xff
+ Final XOR value: 0x55
+ Reference: http://www.itu.int/rec/T-REC-I.432.1-199902-I/en + + The C equivalent has been originally written by Dave Hylands. + Assembly code is based on _crc_ibutton_update optimization. + + The following is the equivalent functionality written in C. + + \code + uint8_t + _crc8_ccitt_update (uint8_t inCrc, uint8_t inData) + { + uint8_t i; + uint8_t data; + + data = inCrc ^ inData; + + for ( i = 0; i < 8; i++ ) + { + if (( data & 0x80 ) != 0 ) + { + data <<= 1; + data ^= 0x07; + } + else + { + data <<= 1; + } + } + return data; + } + \endcode +*/ + +static __inline__ uint8_t +_crc8_ccitt_update(uint8_t __crc, uint8_t __data) +{ + uint8_t __i, __pattern; + __asm__ __volatile__ ( + " eor %0, %4" "\n\t" + " ldi %1, 8" "\n\t" + " ldi %2, 0x07" "\n\t" + "1: lsl %0" "\n\t" + " brcc 2f" "\n\t" + " eor %0, %2" "\n\t" + "2: dec %1" "\n\t" + " brne 1b" "\n\t" + : "=r" (__crc), "=d" (__i), "=d" (__pattern) + : "0" (__crc), "r" (__data)); + return __crc; +} + +#endif /* _UTIL_CRC16_H_ */ diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/util/delay.h b/fonda/cpp_testsuite/varBugs/MARLIN/util/delay.h new file mode 100644 index 00000000..f37b1226 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/util/delay.h @@ -0,0 +1,302 @@ +/* Copyright (c) 2002, Marek Michalkiewicz + Copyright (c) 2004,2005,2007 Joerg Wunsch + Copyright (c) 2007 Florin-Viorel Petrov + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holders nor the names of + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE + LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + POSSIBILITY OF SUCH DAMAGE. */ + +/* $Id: delay.h.in 2506 2016-02-08 10:05:45Z joerg_wunsch $ */ + +#ifndef _UTIL_DELAY_H_ +#define _UTIL_DELAY_H_ 1 + +#ifndef __DOXYGEN__ +# ifndef __HAS_DELAY_CYCLES +# define __HAS_DELAY_CYCLES 1 +# endif +#endif /* __DOXYGEN__ */ + +#include +#include +#include + +/** \file */ +/** \defgroup util_delay : Convenience functions for busy-wait delay loops + \code + #define F_CPU 1000000UL // 1 MHz + //#define F_CPU 14.7456E6 + #include + \endcode + + \note As an alternative method, it is possible to pass the + F_CPU macro down to the compiler from the Makefile. + Obviously, in that case, no \c \#define statement should be + used. + + The functions in this header file are wrappers around the basic + busy-wait functions from . They are meant as + convenience functions where actual time values can be specified + rather than a number of cycles to wait for. The idea behind is + that compile-time constant expressions will be eliminated by + compiler optimization so floating-point expressions can be used + to calculate the number of delay cycles needed based on the CPU + frequency passed by the macro F_CPU. + + \note In order for these functions to work as intended, compiler + optimizations must be enabled, and the delay time + must be an expression that is a known constant at + compile-time. If these requirements are not met, the resulting + delay will be much longer (and basically unpredictable), and + applications that otherwise do not use floating-point calculations + will experience severe code bloat by the floating-point library + routines linked into the application. + + The functions available allow the specification of microsecond, and + millisecond delays directly, using the application-supplied macro + F_CPU as the CPU clock frequency (in Hertz). + +*/ + +#if !defined(__DOXYGEN__) +static __inline__ void _delay_us(double __us) __attribute__((__always_inline__)); +static __inline__ void _delay_ms(double __ms) __attribute__((__always_inline__)); +#endif + +#ifndef F_CPU +/* prevent compiler error by supplying a default */ +# warning "F_CPU not defined for " +/** \ingroup util_delay + \def F_CPU + \brief CPU frequency in Hz + + The macro F_CPU specifies the CPU frequency to be considered by + the delay macros. This macro is normally supplied by the + environment (e.g. from within a project header, or the project's + Makefile). The value 1 MHz here is only provided as a "vanilla" + fallback if no such user-provided definition could be found. + + In terms of the delay functions, the CPU frequency can be given as + a floating-point constant (e.g. 3.6864E6 for 3.6864 MHz). + However, the macros in require it to be an + integer value. + */ +# define F_CPU 1000000UL +#endif + +#ifndef __OPTIMIZE__ +# warning "Compiler optimizations disabled; functions from won't work as designed" +#endif + +#if __HAS_DELAY_CYCLES && defined(__OPTIMIZE__) && \ + !defined(__DELAY_BACKWARD_COMPATIBLE__) && \ + __STDC_HOSTED__ +# include +#endif + +/** + \ingroup util_delay + + Perform a delay of \c __ms milliseconds, using _delay_loop_2(). + + The macro F_CPU is supposed to be defined to a + constant defining the CPU clock frequency (in Hertz). + + The maximal possible delay is 262.14 ms / F_CPU in MHz. + + When the user request delay which exceed the maximum possible one, + _delay_ms() provides a decreased resolution functionality. In this + mode _delay_ms() will work with a resolution of 1/10 ms, providing + delays up to 6.5535 seconds (independent from CPU frequency). The + user will not be informed about decreased resolution. + + If the avr-gcc toolchain has __builtin_avr_delay_cycles() + support, maximal possible delay is 4294967.295 ms/ F_CPU in MHz. For + values greater than the maximal possible delay, overflows results in + no delay i.e., 0ms. + + Conversion of \c __ms into clock cycles may not always result in + integer. By default, the clock cycles rounded up to next + integer. This ensures that the user gets at least \c __ms + microseconds of delay. + + Alternatively, by defining the macro \c __DELAY_ROUND_DOWN__, or + \c __DELAY_ROUND_CLOSEST__, before including this header file, the + algorithm can be made to round down, or round to closest integer, + respectively. + + \note + + The implementation of _delay_ms() based on + __builtin_avr_delay_cycles() is not backward compatible with older + implementations. In order to get functionality backward compatible + with previous versions, the macro \c "__DELAY_BACKWARD_COMPATIBLE__" + must be defined before including this header file. Also, the + backward compatible algorithm will be chosen if the code is + compiled in a freestanding environment (GCC option + \c -ffreestanding), as the math functions required for rounding are + not available to the compiler then. + + */ +void +_delay_ms(double __ms) +{ + double __tmp ; +#if __HAS_DELAY_CYCLES && defined(__OPTIMIZE__) && \ + !defined(__DELAY_BACKWARD_COMPATIBLE__) && \ + __STDC_HOSTED__ + uint32_t __ticks_dc; + extern void __builtin_avr_delay_cycles(unsigned long); + __tmp = ((F_CPU) / 1e3) * __ms; + + #if defined(__DELAY_ROUND_DOWN__) + __ticks_dc = (uint32_t)fabs(__tmp); + + #elif defined(__DELAY_ROUND_CLOSEST__) + __ticks_dc = (uint32_t)(fabs(__tmp)+0.5); + + #else + //round up by default + __ticks_dc = (uint32_t)(ceil(fabs(__tmp))); + #endif + + __builtin_avr_delay_cycles(__ticks_dc); + +#else + uint16_t __ticks; + __tmp = ((F_CPU) / 4e3) * __ms; + if (__tmp < 1.0) + __ticks = 1; + else if (__tmp > 65535) + { + // __ticks = requested delay in 1/10 ms + __ticks = (uint16_t) (__ms * 10.0); + while(__ticks) + { + // wait 1/10 ms + _delay_loop_2(((F_CPU) / 4e3) / 10); + __ticks --; + } + return; + } + else + __ticks = (uint16_t)__tmp; + _delay_loop_2(__ticks); +#endif +} + +/** + \ingroup util_delay + + Perform a delay of \c __us microseconds, using _delay_loop_1(). + + The macro F_CPU is supposed to be defined to a + constant defining the CPU clock frequency (in Hertz). + + The maximal possible delay is 768 us / F_CPU in MHz. + + If the user requests a delay greater than the maximal possible one, + _delay_us() will automatically call _delay_ms() instead. The user + will not be informed about this case. + + If the avr-gcc toolchain has __builtin_avr_delay_cycles() + support, maximal possible delay is 4294967.295 us/ F_CPU in MHz. For + values greater than the maximal possible delay, overflow results in + no delay i.e., 0us. + + Conversion of \c __us into clock cycles may not always result in + integer. By default, the clock cycles rounded up to next + integer. This ensures that the user gets at least \c __us + microseconds of delay. + + Alternatively, by defining the macro \c __DELAY_ROUND_DOWN__, or + \c __DELAY_ROUND_CLOSEST__, before including this header file, the + algorithm can be made to round down, or round to closest integer, + respectively. + + \note + + The implementation of _delay_ms() based on + __builtin_avr_delay_cycles() is not backward compatible with older + implementations. In order to get functionality backward compatible + with previous versions, the macro \c __DELAY_BACKWARD_COMPATIBLE__ + must be defined before including this header file. Also, the + backward compatible algorithm will be chosen if the code is + compiled in a freestanding environment (GCC option + \c -ffreestanding), as the math functions required for rounding are + not available to the compiler then. + + */ +void +_delay_us(double __us) +{ + double __tmp ; +#if __HAS_DELAY_CYCLES && defined(__OPTIMIZE__) && \ + !defined(__DELAY_BACKWARD_COMPATIBLE__) && \ + __STDC_HOSTED__ + uint32_t __ticks_dc; + extern void __builtin_avr_delay_cycles(unsigned long); + __tmp = ((F_CPU) / 1e6) * __us; + + #if defined(__DELAY_ROUND_DOWN__) + __ticks_dc = (uint32_t)fabs(__tmp); + + #elif defined(__DELAY_ROUND_CLOSEST__) + __ticks_dc = (uint32_t)(fabs(__tmp)+0.5); + + #else + //round up by default + __ticks_dc = (uint32_t)(ceil(fabs(__tmp))); + #endif + + __builtin_avr_delay_cycles(__ticks_dc); + +#else + uint8_t __ticks; + double __tmp2 ; + __tmp = ((F_CPU) / 3e6) * __us; + __tmp2 = ((F_CPU) / 4e6) * __us; + if (__tmp < 1.0) + __ticks = 1; + else if (__tmp2 > 65535) + { + _delay_ms(__us / 1000.0); + } + else if (__tmp > 255) + { + uint16_t __ticks=(uint16_t)__tmp2; + _delay_loop_2(__ticks); + return; + } + else + __ticks = (uint8_t)__tmp; + _delay_loop_1(__ticks); +#endif +} + + +#endif /* _UTIL_DELAY_H_ */ diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/util/delay_basic.h b/fonda/cpp_testsuite/varBugs/MARLIN/util/delay_basic.h new file mode 100644 index 00000000..9c87ce8d --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/util/delay_basic.h @@ -0,0 +1,113 @@ +/* Copyright (c) 2002, Marek Michalkiewicz + Copyright (c) 2007 Joerg Wunsch + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holders nor the names of + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE + LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + POSSIBILITY OF SUCH DAMAGE. */ + +/* $Id: delay_basic.h 2453 2014-10-19 08:18:11Z saaadhu $ */ + +#ifndef _UTIL_DELAY_BASIC_H_ +#define _UTIL_DELAY_BASIC_H_ 1 + +#include + +#if !defined(__DOXYGEN__) +static __inline__ void _delay_loop_1(uint8_t __count) __attribute__((__always_inline__)); +static __inline__ void _delay_loop_2(uint16_t __count) __attribute__((__always_inline__)); +#endif + +/** \file */ +/** \defgroup util_delay_basic : Basic busy-wait delay loops + \code + #include + \endcode + + The functions in this header file implement simple delay loops + that perform a busy-waiting. They are typically used to + facilitate short delays in the program execution. They are + implemented as count-down loops with a well-known CPU cycle + count per loop iteration. As such, no other processing can + occur simultaneously. It should be kept in mind that the + functions described here do not disable interrupts. + + In general, for long delays, the use of hardware timers is + much preferrable, as they free the CPU, and allow for + concurrent processing of other events while the timer is + running. However, in particular for very short delays, the + overhead of setting up a hardware timer is too much compared + to the overall delay time. + + Two inline functions are provided for the actual delay algorithms. + +*/ + +/** \ingroup util_delay_basic + + Delay loop using an 8-bit counter \c __count, so up to 256 + iterations are possible. (The value 256 would have to be passed + as 0.) The loop executes three CPU cycles per iteration, not + including the overhead the compiler needs to setup the counter + register. + + Thus, at a CPU speed of 1 MHz, delays of up to 768 microseconds + can be achieved. +*/ +void +_delay_loop_1(uint8_t __count) +{ + __asm__ volatile ( + "1: dec %0" "\n\t" + "brne 1b" + : "=r" (__count) + : "0" (__count) + ); +} + +/** \ingroup util_delay_basic + + Delay loop using a 16-bit counter \c __count, so up to 65536 + iterations are possible. (The value 65536 would have to be + passed as 0.) The loop executes four CPU cycles per iteration, + not including the overhead the compiler requires to setup the + counter register pair. + + Thus, at a CPU speed of 1 MHz, delays of up to about 262.1 + milliseconds can be achieved. + */ +void +_delay_loop_2(uint16_t __count) +{ + __asm__ volatile ( + "1: sbiw %0,1" "\n\t" + "brne 1b" + : "=w" (__count) + : "0" (__count) + ); +} + +#endif /* _UTIL_DELAY_BASIC_H_ */ diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/util/eu_dst.h b/fonda/cpp_testsuite/varBugs/MARLIN/util/eu_dst.h new file mode 100644 index 00000000..bcd740f6 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/util/eu_dst.h @@ -0,0 +1,116 @@ +/* + * (c)2012 Michael Duane Rice All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are + * met: + * + * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. Redistributions in binary + * form must reproduce the above copyright notice, this list of conditions + * and the following disclaimer in the documentation and/or other materials + * provided with the distribution. Neither the name of the copyright holders + * nor the names of contributors may be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ + +/* $Id: eu_dst.h 2492 2015-10-27 09:07:56Z swfltek $ */ + +/** + Daylight Saving function for the European Union. To utilize this function, you must + \code #include \endcode + and + \code set_dst(eu_dst); \endcode + + Given the time stamp and time zone parameters provided, the Daylight Saving function must + return a value appropriate for the tm structures' tm_isdst element. That is... + + 0 : If Daylight Saving is not in effect. + + -1 : If it cannot be determined if Daylight Saving is in effect. + + A positive integer : Represents the number of seconds a clock is advanced for Daylight Saving. + This will typically be ONE_HOUR. + + Daylight Saving 'rules' are subject to frequent change. For production applications it is + recommended to write your own DST function, which uses 'rules' obtained from, and modifiable by, + the end user ( perhaps stored in EEPROM ). +*/ + +#ifndef EU_DST_H +#define EU_DST_H + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#include + + int eu_dst(const time_t * timer, int32_t * z) { + struct tm tmptr; + uint8_t month, mday, hour, day_of_week, d; + int n; + + /* obtain the variables */ + gmtime_r(timer, &tmptr); + month = tmptr.tm_mon; + day_of_week = tmptr.tm_wday; + mday = tmptr.tm_mday - 1; + hour = tmptr.tm_hour; + + if ((month > MARCH) && (month < OCTOBER)) + return ONE_HOUR; + + if (month < MARCH) + return 0; + if (month > OCTOBER) + return 0; + + /* determine mday of last Sunday */ + n = tmptr.tm_mday - 1; + n -= day_of_week; + n += 7; + d = n % 7; /* date of first Sunday */ + + n = 31 - d; + n /= 7; /* number of Sundays left in the month */ + + d = d + 7 * n; /* mday of final Sunday */ + + if (month == MARCH) { + if (d < mday) + return 0; + if (d > mday) + return ONE_HOUR; + if (hour < 2) + return 0; + return ONE_HOUR; + } + if (d < mday) + return ONE_HOUR; + if (d > mday) + return 0; + if (hour < 2) + return ONE_HOUR; + return 0; + + } + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/util/parity.h b/fonda/cpp_testsuite/varBugs/MARLIN/util/parity.h new file mode 100644 index 00000000..ff91cb31 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/util/parity.h @@ -0,0 +1,65 @@ +/* Copyright (c) 2002, Marek Michalkiewicz + Copyright (c) 2004,2005,2007 Joerg Wunsch + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holders nor the names of + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE + LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + POSSIBILITY OF SUCH DAMAGE. */ + +/* $Id: parity.h 1196 2007-01-23 15:34:58Z joerg_wunsch $ */ + +#ifndef _UTIL_PARITY_H_ +#define _UTIL_PARITY_H_ + +/** \file */ +/** \defgroup util_parity : Parity bit generation + \code #include \endcode + + This header file contains optimized assembler code to calculate + the parity bit for a byte. +*/ +/** \def parity_even_bit + \ingroup util_parity + \returns 1 if \c val has an odd number of bits set. */ +#define parity_even_bit(val) \ +(__extension__({ \ + unsigned char __t; \ + __asm__ ( \ + "mov __tmp_reg__,%0" "\n\t" \ + "swap %0" "\n\t" \ + "eor %0,__tmp_reg__" "\n\t" \ + "mov __tmp_reg__,%0" "\n\t" \ + "lsr %0" "\n\t" \ + "lsr %0" "\n\t" \ + "eor %0,__tmp_reg__" \ + : "=r" (__t) \ + : "0" ((unsigned char)(val)) \ + : "r0" \ + ); \ + (((__t + 1) >> 1) & 1); \ + })) + +#endif /* _UTIL_PARITY_H_ */ diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/util/setbaud.h b/fonda/cpp_testsuite/varBugs/MARLIN/util/setbaud.h new file mode 100644 index 00000000..c56a30b5 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/util/setbaud.h @@ -0,0 +1,243 @@ +/* Copyright (c) 2007 Cliff Lawson + Copyright (c) 2007 Carlos Lamas + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holders nor the names of + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE + LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + POSSIBILITY OF SUCH DAMAGE. */ + +/* $Id: setbaud.h 2424 2014-04-29 13:08:15Z pitchumani $ */ + +/** + \file +*/ + +/** + \defgroup util_setbaud : Helper macros for baud rate calculations + \code + #define F_CPU 11059200 + #define BAUD 38400 + #include + \endcode + + This header file requires that on entry values are already defined + for F_CPU and BAUD. In addition, the macro BAUD_TOL will define + the baud rate tolerance (in percent) that is acceptable during + the calculations. The value of BAUD_TOL will default to 2 %. + + This header file defines macros suitable to setup the UART baud + rate prescaler registers of an AVR. All calculations are done + using the C preprocessor. Including this header file causes no + other side effects so it is possible to include this file more than + once (supposedly, with different values for the BAUD parameter), + possibly even within the same function. + + Assuming that the requested BAUD is valid for the given F_CPU then + the macro UBRR_VALUE is set to the required prescaler value. Two + additional macros are provided for the low and high bytes of the + prescaler, respectively: UBRRL_VALUE is set to the lower byte of + the UBRR_VALUE and UBRRH_VALUE is set to the upper byte. An + additional macro USE_2X will be defined. Its value is set to 1 if + the desired BAUD rate within the given tolerance could only be + achieved by setting the U2X bit in the UART configuration. It will + be defined to 0 if U2X is not needed. + + Example usage: + + \code + #include + + #define F_CPU 4000000 + + static void + uart_9600(void) + { + #define BAUD 9600 + #include + UBRRH = UBRRH_VALUE; + UBRRL = UBRRL_VALUE; + #if USE_2X + UCSRA |= (1 << U2X); + #else + UCSRA &= ~(1 << U2X); + #endif + } + + static void + uart_38400(void) + { + #undef BAUD // avoid compiler warning + #define BAUD 38400 + #include + UBRRH = UBRRH_VALUE; + UBRRL = UBRRL_VALUE; + #if USE_2X + UCSRA |= (1 << U2X); + #else + UCSRA &= ~(1 << U2X); + #endif + } + \endcode + + In this example, two functions are defined to setup the UART + to run at 9600 Bd, and 38400 Bd, respectively. Using a CPU + clock of 4 MHz, 9600 Bd can be achieved with an acceptable + tolerance without setting U2X (prescaler 25), while 38400 Bd + require U2X to be set (prescaler 12). +*/ + +#ifndef F_CPU +# error "setbaud.h requires F_CPU to be defined" +#endif + +#ifndef BAUD +# error "setbaud.h requires BAUD to be defined" +#endif + +#if !(F_CPU) +# error "F_CPU must be a constant value" +#endif + +#if !(BAUD) +# error "BAUD must be a constant value" +#endif + +#if defined(__DOXYGEN__) +/** + \def BAUD_TOL + \ingroup util_setbaud + + Input and output macro for + + Define the acceptable baud rate tolerance in percent. If not set + on entry, it will be set to its default value of 2. +*/ +#define BAUD_TOL 2 + +/** + \def UBRR_VALUE + \ingroup util_setbaud + + Output macro from + + Contains the calculated baud rate prescaler value for the UBRR + register. +*/ +#define UBRR_VALUE + +/** + \def UBRRL_VALUE + \ingroup util_setbaud + + Output macro from + + Contains the lower byte of the calculated prescaler value + (UBRR_VALUE). +*/ +#define UBRRL_VALUE + +/** + \def UBRRH_VALUE + \ingroup util_setbaud + + Output macro from + + Contains the upper byte of the calculated prescaler value + (UBRR_VALUE). +*/ +#define UBRRH_VALUE + +/** + \def USE_2X + \ingroup util_setbaud + + Output macro from + + Contains the value 1 if the desired baud rate tolerance could only + be achieved by setting the U2X bit in the UART configuration. + Contains 0 otherwise. +*/ +#define USE_2X 0 + +#else /* !__DOXYGEN__ */ + +#undef USE_2X + +/* Baud rate tolerance is 2 % unless previously defined */ +#ifndef BAUD_TOL +# define BAUD_TOL 2 +#endif + +#ifdef __ASSEMBLER__ +#define UBRR_VALUE (((F_CPU) + 8 * (BAUD)) / (16 * (BAUD)) -1) +#else +#define UBRR_VALUE (((F_CPU) + 8UL * (BAUD)) / (16UL * (BAUD)) -1UL) +#endif + +#if 100 * (F_CPU) > \ + (16 * ((UBRR_VALUE) + 1)) * (100 * (BAUD) + (BAUD) * (BAUD_TOL)) +# define USE_2X 1 +#elif 100 * (F_CPU) < \ + (16 * ((UBRR_VALUE) + 1)) * (100 * (BAUD) - (BAUD) * (BAUD_TOL)) +# define USE_2X 1 +#else +# define USE_2X 0 +#endif + +#if USE_2X +/* U2X required, recalculate */ +#undef UBRR_VALUE + +#ifdef __ASSEMBLER__ +#define UBRR_VALUE (((F_CPU) + 4 * (BAUD)) / (8 * (BAUD)) -1) +#else +#define UBRR_VALUE (((F_CPU) + 4UL * (BAUD)) / (8UL * (BAUD)) -1UL) +#endif + +#if 100 * (F_CPU) > \ + (8 * ((UBRR_VALUE) + 1)) * (100 * (BAUD) + (BAUD) * (BAUD_TOL)) +# warning "Baud rate achieved is higher than allowed" +#endif + +#if 100 * (F_CPU) < \ + (8 * ((UBRR_VALUE) + 1)) * (100 * (BAUD) - (BAUD) * (BAUD_TOL)) +# warning "Baud rate achieved is lower than allowed" +#endif + +#endif /* USE_U2X */ + +#ifdef UBRR_VALUE + /* Check for overflow */ +# if UBRR_VALUE >= (1 << 12) +# warning "UBRR value overflow" +# endif + +# define UBRRL_VALUE (UBRR_VALUE & 0xff) +# define UBRRH_VALUE (UBRR_VALUE >> 8) +#endif + +#endif /* __DOXYGEN__ */ +/* end of util/setbaud.h */ diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/util/twi.h b/fonda/cpp_testsuite/varBugs/MARLIN/util/twi.h new file mode 100644 index 00000000..dd17789e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/util/twi.h @@ -0,0 +1,237 @@ +/* Copyright (c) 2002, Marek Michalkiewicz + Copyright (c) 2005, 2007 Joerg Wunsch + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + * Neither the name of the copyright holders nor the names of + contributors may be used to endorse or promote products derived + from this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE + LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + POSSIBILITY OF SUCH DAMAGE. */ + +/* $Id: twi.h 1196 2007-01-23 15:34:58Z joerg_wunsch $ */ +/* copied from: Id: avr/twi.h,v 1.4 2004/11/01 21:19:54 arcanum Exp */ + +#ifndef _UTIL_TWI_H_ +#define _UTIL_TWI_H_ 1 + +#include + +/** \file */ +/** \defgroup util_twi : TWI bit mask definitions + \code #include \endcode + + This header file contains bit mask definitions for use with + the AVR TWI interface. +*/ +/** \name TWSR values + + Mnemonics: +
TW_MT_xxx - master transmitter +
TW_MR_xxx - master receiver +
TW_ST_xxx - slave transmitter +
TW_SR_xxx - slave receiver + */ + +/*@{*/ +/* Master */ +/** \ingroup util_twi + \def TW_START + start condition transmitted */ +#define TW_START 0x08 + +/** \ingroup util_twi + \def TW_REP_START + repeated start condition transmitted */ +#define TW_REP_START 0x10 + +/* Master Transmitter */ +/** \ingroup util_twi + \def TW_MT_SLA_ACK + SLA+W transmitted, ACK received */ +#define TW_MT_SLA_ACK 0x18 + +/** \ingroup util_twi + \def TW_MT_SLA_NACK + SLA+W transmitted, NACK received */ +#define TW_MT_SLA_NACK 0x20 + +/** \ingroup util_twi + \def TW_MT_DATA_ACK + data transmitted, ACK received */ +#define TW_MT_DATA_ACK 0x28 + +/** \ingroup util_twi + \def TW_MT_DATA_NACK + data transmitted, NACK received */ +#define TW_MT_DATA_NACK 0x30 + +/** \ingroup util_twi + \def TW_MT_ARB_LOST + arbitration lost in SLA+W or data */ +#define TW_MT_ARB_LOST 0x38 + +/* Master Receiver */ +/** \ingroup util_twi + \def TW_MR_ARB_LOST + arbitration lost in SLA+R or NACK */ +#define TW_MR_ARB_LOST 0x38 + +/** \ingroup util_twi + \def TW_MR_SLA_ACK + SLA+R transmitted, ACK received */ +#define TW_MR_SLA_ACK 0x40 + +/** \ingroup util_twi + \def TW_MR_SLA_NACK + SLA+R transmitted, NACK received */ +#define TW_MR_SLA_NACK 0x48 + +/** \ingroup util_twi + \def TW_MR_DATA_ACK + data received, ACK returned */ +#define TW_MR_DATA_ACK 0x50 + +/** \ingroup util_twi + \def TW_MR_DATA_NACK + data received, NACK returned */ +#define TW_MR_DATA_NACK 0x58 + +/* Slave Transmitter */ +/** \ingroup util_twi + \def TW_ST_SLA_ACK + SLA+R received, ACK returned */ +#define TW_ST_SLA_ACK 0xA8 + +/** \ingroup util_twi + \def TW_ST_ARB_LOST_SLA_ACK + arbitration lost in SLA+RW, SLA+R received, ACK returned */ +#define TW_ST_ARB_LOST_SLA_ACK 0xB0 + +/** \ingroup util_twi + \def TW_ST_DATA_ACK + data transmitted, ACK received */ +#define TW_ST_DATA_ACK 0xB8 + +/** \ingroup util_twi + \def TW_ST_DATA_NACK + data transmitted, NACK received */ +#define TW_ST_DATA_NACK 0xC0 + +/** \ingroup util_twi + \def TW_ST_LAST_DATA + last data byte transmitted, ACK received */ +#define TW_ST_LAST_DATA 0xC8 + +/* Slave Receiver */ +/** \ingroup util_twi + \def TW_SR_SLA_ACK + SLA+W received, ACK returned */ +#define TW_SR_SLA_ACK 0x60 + +/** \ingroup util_twi + \def TW_SR_ARB_LOST_SLA_ACK + arbitration lost in SLA+RW, SLA+W received, ACK returned */ +#define TW_SR_ARB_LOST_SLA_ACK 0x68 + +/** \ingroup util_twi + \def TW_SR_GCALL_ACK + general call received, ACK returned */ +#define TW_SR_GCALL_ACK 0x70 + +/** \ingroup util_twi + \def TW_SR_ARB_LOST_GCALL_ACK + arbitration lost in SLA+RW, general call received, ACK returned */ +#define TW_SR_ARB_LOST_GCALL_ACK 0x78 + +/** \ingroup util_twi + \def TW_SR_DATA_ACK + data received, ACK returned */ +#define TW_SR_DATA_ACK 0x80 + +/** \ingroup util_twi + \def TW_SR_DATA_NACK + data received, NACK returned */ +#define TW_SR_DATA_NACK 0x88 + +/** \ingroup util_twi + \def TW_SR_GCALL_DATA_ACK + general call data received, ACK returned */ +#define TW_SR_GCALL_DATA_ACK 0x90 + +/** \ingroup util_twi + \def TW_SR_GCALL_DATA_NACK + general call data received, NACK returned */ +#define TW_SR_GCALL_DATA_NACK 0x98 + +/** \ingroup util_twi + \def TW_SR_STOP + stop or repeated start condition received while selected */ +#define TW_SR_STOP 0xA0 + +/* Misc */ +/** \ingroup util_twi + \def TW_NO_INFO + no state information available */ +#define TW_NO_INFO 0xF8 + +/** \ingroup util_twi + \def TW_BUS_ERROR + illegal start or stop condition */ +#define TW_BUS_ERROR 0x00 + + +/** + * \ingroup util_twi + * \def TW_STATUS_MASK + * The lower 3 bits of TWSR are reserved on the ATmega163. + * The 2 LSB carry the prescaler bits on the newer ATmegas. + */ +#define TW_STATUS_MASK (_BV(TWS7)|_BV(TWS6)|_BV(TWS5)|_BV(TWS4)|\ + _BV(TWS3)) +/** + * \ingroup util_twi + * \def TW_STATUS + * + * TWSR, masked by TW_STATUS_MASK + */ +#define TW_STATUS (TWSR & TW_STATUS_MASK) +/*@}*/ + +/** + * \name R/~W bit in SLA+R/W address field. + */ + +/*@{*/ +/** \ingroup util_twi + \def TW_READ + SLA+R address */ +#define TW_READ 1 + +/** \ingroup util_twi + \def TW_WRITE + SLA+W address */ +#define TW_WRITE 0 +/*@}*/ + +#endif /* _UTIL_TWI_H_ */ diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/util/usa_dst.h b/fonda/cpp_testsuite/varBugs/MARLIN/util/usa_dst.h new file mode 100644 index 00000000..f0e61d90 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/util/usa_dst.h @@ -0,0 +1,130 @@ +/* + * (c)2012 Michael Duane Rice All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are + * met: + * + * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. Redistributions in binary + * form must reproduce the above copyright notice, this list of conditions + * and the following disclaimer in the documentation and/or other materials + * provided with the distribution. Neither the name of the copyright holders + * nor the names of contributors may be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ + +/* $Id: usa_dst.h 2344 2013-04-10 19:52:09Z swfltek $ */ + +/** + Daylight Saving function for the USA. To utilize this function, you must + \code #include \endcode + and + \code set_dst(usa_dst); \endcode + + Given the time stamp and time zone parameters provided, the Daylight Saving function must + return a value appropriate for the tm structures' tm_isdst element. That is... + + 0 : If Daylight Saving is not in effect. + + -1 : If it cannot be determined if Daylight Saving is in effect. + + A positive integer : Represents the number of seconds a clock is advanced for Daylight Saving. + This will typically be ONE_HOUR. + + Daylight Saving 'rules' are subject to frequent change. For production applications it is + recommended to write your own DST function, which uses 'rules' obtained from, and modifiable by, + the end user ( perhaps stored in EEPROM ). + +*/ + +#ifndef USA_DST_H +#define USA_DST_H + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#include + +#ifndef DST_START_MONTH +#define DST_START_MONTH MARCH +#endif + +#ifndef DST_END_MONTH +#define DST_END_MONTH NOVEMBER +#endif + +#ifndef DST_START_WEEK +#define DST_START_WEEK 2 +#endif + +#ifndef DST_END_WEEK +#define DST_END_WEEK 1 +#endif + + int usa_dst(const time_t * timer, int32_t * z) { + time_t t; + struct tm tmptr; + uint8_t month, week, hour, day_of_week, d; + int n; + + /* obtain the variables */ + t = *timer + *z; + gmtime_r(&t, &tmptr); + month = tmptr.tm_mon; + day_of_week = tmptr.tm_wday; + week = week_of_month(&tmptr, 0); + hour = tmptr.tm_hour; + + if ((month > DST_START_MONTH) && (month < DST_END_MONTH)) + return ONE_HOUR; + + if (month < DST_START_MONTH) + return 0; + if (month > DST_END_MONTH) + return 0; + + if (month == DST_START_MONTH) { + + if (week < DST_START_WEEK) + return 0; + if (week > DST_START_WEEK) + return ONE_HOUR; + + if (day_of_week > SUNDAY) + return ONE_HOUR; + if (hour >= 2) + return ONE_HOUR; + return 0; + } + if (week > DST_END_WEEK) + return 0; + if (week < DST_END_WEEK) + return ONE_HOUR; + if (day_of_week > SUNDAY) + return 0; + if (hour >= 1) + return 0; + return ONE_HOUR; + + } + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/fonda/cpp_testsuite/varBugs/backup.json b/fonda/cpp_testsuite/varBugs/backup.json new file mode 100644 index 00000000..4bb8b3e4 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/backup.json @@ -0,0 +1 @@ +{"/APACHE/0900800fbab.c": "-U HAVE_SYSLOG", "/APACHE/0ddfa412ee9.c": "-U HAVE_TLS_ALPN", "/APACHE/1a3c8e3d840.c": "-U HAVE_TLSV1_X", "/APACHE/1b48bb3c1af.c": "-D APU_HAS_LDAP -D APR_HAS_SHARED_MEMORY", "/APACHE/1f46088b38d.c": "-U SIGPIPE", "/APACHE/2a6cbfa00e0.c": "-U SHARED_MODULE", "/APACHE/3407eccc321.c": "-D __STDC_VERSION__=199902L -D APLOG_MAX_LOGLEVEL", "/APACHE/35ae2e259e4.c": "-D HAVE_ECC", "/APACHE/4202d5fee3e.c": "-D APR_HASD_LDAP -D APR_HAS_LDAP_NETSCAPE_SSL", "/APACHE/4945115b2e7.c": "-D DEBUG_CGI", "/APACHE/56d9881993f.c": "-U APR_HAS_SENDFILE", "/APACHE/581635e28f1.c": "-U APR_HAVE_IPV6", "/APACHE/6338509eb37.c": "-U HAVE_FIPS", "/APACHE/664e3aac6dd.c": "-D WIN32", "/APACHE/9327311d30f.c": "-D APR_HAS_SHARED_MEMORY", "/APACHE/97ecbec1237.c": "-D APU_HAS_LDAP -D APR_HAS_SHARED_MEMORY", "/APACHE/b833f064550.c": "-U HAVE_TIMES", "/APACHE/bbeb0516cf0.c": "-D APR_FILES_AS_SOCKETS", "/APACHE/c76df14dfb4.c": "-D CROSS_COMPILE -D OS2", "/APACHE/d0040a07aec.c": "-D RLIMIT_NPROC -U RLIMIT_CPU -U RLIMIT_DATA -U RLIMIT_VMEM -U RLIMIT_AS", "/APACHE/d05e574ec26.c": "-D APR_HAS_SHARED_MEMORY", "/APACHE/dbafef17dd1.c": "-D HAS_APACHE_REGEX_LIB", "/BUSYBOX/0301ffab3d9.c": "-U EXT2FS_ENABLE_SWAPFS", "/BUSYBOX/061fd0a353e.c": "-D CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF -U CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF", "/BUSYBOX/192c35f6eb2.c": "-U CONFIG_FEATURE_REMOTE_LOG", "/BUSYBOX/199501f2a00.c": "-U ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS", "/BUSYBOX/1b487ea8a69.c": "-D ENABLE_SELINUX -U ENABLE_FEATURE_STAT_FORMAT", "/BUSYBOX/2631486f1bf.c": "-D CONFIG_FEATURE_LS_SORTFILES -D CONFIG_FEATURE_LS_RECURSIVE", "/BUSYBOX/5275b1e49f6.c": "-U CONFIG_FEATURE_INSMOD_VERSION_CHECKING", "/BUSYBOX/5cd6461b6fb.c": "-D CONFIG_LFS -D CONFIG_FEATURE_HTTPD_CGI", "/BUSYBOX/95755181b82.c": "-D BB_MMU -D ENABLE_FEATURE_HTTPD_GZIP -D ENABLE_FEATURE_HTTPD_BASIC_AUTH", "/BUSYBOX/b273d665181.c": "-D BB_FEATURE_LS_FILETYPES -U BB_FEATURE_LS_USERNAME", "/BUSYBOX/b62bd7b261b.c": "-D ENABLE_FEATURE_MDEV_CONF -D ENABLE_FEATURE_MDEV_RENAME -U ENABLE_FEATURE_MDEV_RENAME_REGEXP", "/BUSYBOX/b7ebc61b54f.c": "-U CONFIG_FEATURE_LS_TIMESTAMPS", "/BUSYBOX/bc0ffc0e971.c": "-D ENABLE_FEATURE_CLEAN_UP", "/BUSYBOX/cc3f20b9bdf.c": "", "/BUSYBOX/cf1f2ace391.c": "-D ENABLE_DEBUG_INIT", "/BUSYBOX/df7b6577c6a.c": "-U ENABLE_DESKTOP", "/BUSYBOX/ebee301c8b0.c": "-D BB_CP_MV -U BB_AR", "/BUSYBOX/eef2317b9f5.c": "-D CONFIG_FEATURE_CLEAN_UP", "/LINUX/0988c4c7fb5.c": "-U CONFIG_VLAN_8021Q", "/LINUX/0dc77b6dabe.c": "-D CONFIG_ANDROID -D CONFIG_EXTCON", "/LINUX/0f8f8094d28.c": "-D CONFIG_LOCKDEP -D CONFIG_SLAB -U CONFIG_SLOB -D CONFIG_PPC_256K_PAGES -D CONFIG_FORCE_MAX_ZONEORDER=11", "/LINUX/1c17e4d4437.c": "-D CONFIG_TREE_RCU -D CONFIG_RCU_CPU_STALL_INFO -U RCU_FAST_NO_HZ", "/LINUX/1f758a4341a.c": "-D CONFIG_EP93XX_ETH -U CONFIG_ZONE_DMA", "/LINUX/208d89843b7.c": "-D CONFIG_HIGHMEM", "/LINUX/218ad12f42e.c": "-D CONFIG_NUMA -D CONFIG_SMP", "/LINUX/221ac329e93.c": "-U PPC64 -D CONFIG_KPROBES -U CONFIG_KGDB -U CONFIG_XMON -U CONFIG_BDI_SWITCH", "/LINUX/242f1a34377.c": "-D CONFIG_CRYPTO_TEST -U CONFIG_CRYPTO_BLKCIPHER", "/LINUX/2f02c15a5d9.c": "-D CONFIG_BCM47XX -U CONFIG_SSB_DRIVER_EXTIF", "/LINUX/30e053248da.c": "-D CONFIG_REISERFS_FS_SECURITY -U CONFIG_SECURITY", "/LINUX/36855dcfc98.c": "-D PM -D CONFIG_BF60x", "/LINUX/472a474c663.c": "-D X86 -D CONFIG_SMP", "/LINUX/51fd36f3fad.c": "-U CONFIG_64BIT -U CONFIG_KTIME_SCALAR", "/LINUX/60e233a5660.c": "-U CONFIG_HOTPLUG", "/LINUX/6252547b8a7.c": "-D CONFIG_TWL4030_CORE -U CONFIG_OF_IRQ", "/LINUX/63878acfafb.c": "-D CONFIG_ARCH_OMAP3 -U CONFIG_PM", "/LINUX/6515e48932c.c": "-D CONFIG_MACH_OMAP_H4 -U CONFIG_ARCH_OMAP2420", "/LINUX/657e9649e74.c": "-D CONFIG_PREEMPT -D CONFIG_TCP_MD5SIG", "/LINUX/66517915e09.c": "-D CONFIG_SND_FSI_AK4642 -U CONFIG_I2C", "/LINUX/68bb91baa0.c": "-D CONFIG_I2C_DESIGNWARE_PLATFORM -D CONFIG_I2C_DESIGNWARE_PCI", "/LINUX/6e2b75740be.c": "-D CONFIG_MODULE_UNLOAD -D CONFIG_SMP", "/LINUX/76baeebf7df.c": "-D CONFIG_X86_32 -D CONFIG_NUMA -D CONFIG_PCI", "/LINUX/7acf6cd80b2.c": "-D CONFIG_UNIX98_PTYS -D CONFIG_DEVPTS_MULTIPLE_INSTANCES", "/LINUX/7c6048b7c83.c": "-D CONFIG_STUB_POULSBO -D CONFIG_ACPI -U CONFIG_BACKLIGHT_CLASS_DEVICE", "/LINUX/809e660f438.c": "-D CONFIG_ARM_LPAE", "/LINUX/8c8296223f3.c": "-D CONFIG_PROC_PAGE_MONITOR", "/LINUX/91ea8207168.c": "-D CONFIG_PARISC -D DISCONTIGMEM -D CONFIG_PROC_PAGE_MONITOR", "/LINUX/ae249b5fa27.c": "-D PARISC -D CONFIG_DISCONTIGMEM -D CONFIG_PROC_PAGE_MONITOR", "/LINUX/bc8cec0dff0.c": "-D CONFIG_JFFS2_FS_WBUF_VERIFY", "/LINUX/c708c57e247.c": "-D CONFIG_S390_PRNG -D CONFIG_S390", "/LINUX/d530db0db90.c": "-D CONFIG_VORTEX -U CONFIG_PCI", "/LINUX/d549f55f2e1.c": "-D CONFIG_IPV6 -U CONFIG_VLAN_8021Q", "/LINUX/d6c7e113959.c": "-D CONFIG_REGULATOR_MAX8660 -U CONFIG_OF", "/LINUX/d7e9711760a.c": "-D CONFIG_QUOTA_DEBUG", "/LINUX/e1fbd9210d5.c": "-D CONFIG_LBDAF -D CONFIG_AMIGA_Z2RAM", "/LINUX/e39363a9def.c": "-D CONFIG_NETPOLL -U CONFIG_IPV6", "/LINUX/e67bc51e574.c": "-U CONFIG_TRACING", "/LINUX/eb91f1d0a53.c": "-D CONFIG_SLAB -D CONFIG_LOCKDEP -D CONFIG_TRACE_IRQFLAGS -D CONFIG_PROVE_LOCKING -D CONFIG_NUMA", "/LINUX/ee3f34e8572.c": "-D CONFIG_IP_SCTP -D CONFIG_IPV6 -D SCTP_DBG_MSG", "/LINUX/f3d83e24154.c": "-D CONFIG_X86 -D CONFIG_ACPI_WMI", "/LINUX/f48ec1d7885.c": "-D CONFIG_IOSCHED_CFQ -U CONFIG_BLK_CGROUP", "/LINUX/f7ab9b407b3.c": "-U CONFIG_TMPFS -D CONFIG_SHMEM -D CONFIG_DRM_I915", "/MARLIN/2d22902d080.c": "-D SDSUPPORT", "/MARLIN/2db384a21d6.c": "-D MESH_BED_LEVELING -U DISABLE_M503", "/MARLIN/30248214c7f.c": "-D THERMAL_RUNAWAY_PROTECTION_PERIOD=1", "/MARLIN/31873ec707d.c": "-D ULTRA_LCD", "/MARLIN/53be0f3399e.c": "-D BABYSTEPPING -D DELTA", "/MARLIN/7336e6df070.c": "-D Z_DUAL_STEPPER_DRIVERS", "/MARLIN/831016b09f7.c": "-U ULTRA_LCD -D SDSUPPORT", "/MARLIN/8c4377dd635.c": "-D PIDTEMP -D PID_DEBUG", "/MARLIN/a7fc1f83c81.c": "-D SDSUPPORT", "/MARLIN/b8e79dce897.c": "-D ULTRA_LCD -U ENCODER_RATE_MULTIPLIER -D TEMP_SENSOR=1", "/MARLIN/e30bfedce4d.c": "-D ENABLE_AUTO_BED_LEVELING -U AUTO_BED_LEVELING_GRID", "/MARLIN/f87c80889fe.c": "", "/MARLIN/fc3c76fc164.c": "-D HAS_BED_THERMAL_PROTECTION", "/MARLIN/fdac8f6cece.c": "-U ENABLE_AUTO_BED_LEVELING"} \ No newline at end of file diff --git a/fonda/cpp_testsuite/varBugs/configs.json b/fonda/cpp_testsuite/varBugs/configs.json new file mode 100644 index 00000000..4bb8b3e4 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/configs.json @@ -0,0 +1 @@ +{"/APACHE/0900800fbab.c": "-U HAVE_SYSLOG", "/APACHE/0ddfa412ee9.c": "-U HAVE_TLS_ALPN", "/APACHE/1a3c8e3d840.c": "-U HAVE_TLSV1_X", "/APACHE/1b48bb3c1af.c": "-D APU_HAS_LDAP -D APR_HAS_SHARED_MEMORY", "/APACHE/1f46088b38d.c": "-U SIGPIPE", "/APACHE/2a6cbfa00e0.c": "-U SHARED_MODULE", "/APACHE/3407eccc321.c": "-D __STDC_VERSION__=199902L -D APLOG_MAX_LOGLEVEL", "/APACHE/35ae2e259e4.c": "-D HAVE_ECC", "/APACHE/4202d5fee3e.c": "-D APR_HASD_LDAP -D APR_HAS_LDAP_NETSCAPE_SSL", "/APACHE/4945115b2e7.c": "-D DEBUG_CGI", "/APACHE/56d9881993f.c": "-U APR_HAS_SENDFILE", "/APACHE/581635e28f1.c": "-U APR_HAVE_IPV6", "/APACHE/6338509eb37.c": "-U HAVE_FIPS", "/APACHE/664e3aac6dd.c": "-D WIN32", "/APACHE/9327311d30f.c": "-D APR_HAS_SHARED_MEMORY", "/APACHE/97ecbec1237.c": "-D APU_HAS_LDAP -D APR_HAS_SHARED_MEMORY", "/APACHE/b833f064550.c": "-U HAVE_TIMES", "/APACHE/bbeb0516cf0.c": "-D APR_FILES_AS_SOCKETS", "/APACHE/c76df14dfb4.c": "-D CROSS_COMPILE -D OS2", "/APACHE/d0040a07aec.c": "-D RLIMIT_NPROC -U RLIMIT_CPU -U RLIMIT_DATA -U RLIMIT_VMEM -U RLIMIT_AS", "/APACHE/d05e574ec26.c": "-D APR_HAS_SHARED_MEMORY", "/APACHE/dbafef17dd1.c": "-D HAS_APACHE_REGEX_LIB", "/BUSYBOX/0301ffab3d9.c": "-U EXT2FS_ENABLE_SWAPFS", "/BUSYBOX/061fd0a353e.c": "-D CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF -U CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF", "/BUSYBOX/192c35f6eb2.c": "-U CONFIG_FEATURE_REMOTE_LOG", "/BUSYBOX/199501f2a00.c": "-U ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS", "/BUSYBOX/1b487ea8a69.c": "-D ENABLE_SELINUX -U ENABLE_FEATURE_STAT_FORMAT", "/BUSYBOX/2631486f1bf.c": "-D CONFIG_FEATURE_LS_SORTFILES -D CONFIG_FEATURE_LS_RECURSIVE", "/BUSYBOX/5275b1e49f6.c": "-U CONFIG_FEATURE_INSMOD_VERSION_CHECKING", "/BUSYBOX/5cd6461b6fb.c": "-D CONFIG_LFS -D CONFIG_FEATURE_HTTPD_CGI", "/BUSYBOX/95755181b82.c": "-D BB_MMU -D ENABLE_FEATURE_HTTPD_GZIP -D ENABLE_FEATURE_HTTPD_BASIC_AUTH", "/BUSYBOX/b273d665181.c": "-D BB_FEATURE_LS_FILETYPES -U BB_FEATURE_LS_USERNAME", "/BUSYBOX/b62bd7b261b.c": "-D ENABLE_FEATURE_MDEV_CONF -D ENABLE_FEATURE_MDEV_RENAME -U ENABLE_FEATURE_MDEV_RENAME_REGEXP", "/BUSYBOX/b7ebc61b54f.c": "-U CONFIG_FEATURE_LS_TIMESTAMPS", "/BUSYBOX/bc0ffc0e971.c": "-D ENABLE_FEATURE_CLEAN_UP", "/BUSYBOX/cc3f20b9bdf.c": "", "/BUSYBOX/cf1f2ace391.c": "-D ENABLE_DEBUG_INIT", "/BUSYBOX/df7b6577c6a.c": "-U ENABLE_DESKTOP", "/BUSYBOX/ebee301c8b0.c": "-D BB_CP_MV -U BB_AR", "/BUSYBOX/eef2317b9f5.c": "-D CONFIG_FEATURE_CLEAN_UP", "/LINUX/0988c4c7fb5.c": "-U CONFIG_VLAN_8021Q", "/LINUX/0dc77b6dabe.c": "-D CONFIG_ANDROID -D CONFIG_EXTCON", "/LINUX/0f8f8094d28.c": "-D CONFIG_LOCKDEP -D CONFIG_SLAB -U CONFIG_SLOB -D CONFIG_PPC_256K_PAGES -D CONFIG_FORCE_MAX_ZONEORDER=11", "/LINUX/1c17e4d4437.c": "-D CONFIG_TREE_RCU -D CONFIG_RCU_CPU_STALL_INFO -U RCU_FAST_NO_HZ", "/LINUX/1f758a4341a.c": "-D CONFIG_EP93XX_ETH -U CONFIG_ZONE_DMA", "/LINUX/208d89843b7.c": "-D CONFIG_HIGHMEM", "/LINUX/218ad12f42e.c": "-D CONFIG_NUMA -D CONFIG_SMP", "/LINUX/221ac329e93.c": "-U PPC64 -D CONFIG_KPROBES -U CONFIG_KGDB -U CONFIG_XMON -U CONFIG_BDI_SWITCH", "/LINUX/242f1a34377.c": "-D CONFIG_CRYPTO_TEST -U CONFIG_CRYPTO_BLKCIPHER", "/LINUX/2f02c15a5d9.c": "-D CONFIG_BCM47XX -U CONFIG_SSB_DRIVER_EXTIF", "/LINUX/30e053248da.c": "-D CONFIG_REISERFS_FS_SECURITY -U CONFIG_SECURITY", "/LINUX/36855dcfc98.c": "-D PM -D CONFIG_BF60x", "/LINUX/472a474c663.c": "-D X86 -D CONFIG_SMP", "/LINUX/51fd36f3fad.c": "-U CONFIG_64BIT -U CONFIG_KTIME_SCALAR", "/LINUX/60e233a5660.c": "-U CONFIG_HOTPLUG", "/LINUX/6252547b8a7.c": "-D CONFIG_TWL4030_CORE -U CONFIG_OF_IRQ", "/LINUX/63878acfafb.c": "-D CONFIG_ARCH_OMAP3 -U CONFIG_PM", "/LINUX/6515e48932c.c": "-D CONFIG_MACH_OMAP_H4 -U CONFIG_ARCH_OMAP2420", "/LINUX/657e9649e74.c": "-D CONFIG_PREEMPT -D CONFIG_TCP_MD5SIG", "/LINUX/66517915e09.c": "-D CONFIG_SND_FSI_AK4642 -U CONFIG_I2C", "/LINUX/68bb91baa0.c": "-D CONFIG_I2C_DESIGNWARE_PLATFORM -D CONFIG_I2C_DESIGNWARE_PCI", "/LINUX/6e2b75740be.c": "-D CONFIG_MODULE_UNLOAD -D CONFIG_SMP", "/LINUX/76baeebf7df.c": "-D CONFIG_X86_32 -D CONFIG_NUMA -D CONFIG_PCI", "/LINUX/7acf6cd80b2.c": "-D CONFIG_UNIX98_PTYS -D CONFIG_DEVPTS_MULTIPLE_INSTANCES", "/LINUX/7c6048b7c83.c": "-D CONFIG_STUB_POULSBO -D CONFIG_ACPI -U CONFIG_BACKLIGHT_CLASS_DEVICE", "/LINUX/809e660f438.c": "-D CONFIG_ARM_LPAE", "/LINUX/8c8296223f3.c": "-D CONFIG_PROC_PAGE_MONITOR", "/LINUX/91ea8207168.c": "-D CONFIG_PARISC -D DISCONTIGMEM -D CONFIG_PROC_PAGE_MONITOR", "/LINUX/ae249b5fa27.c": "-D PARISC -D CONFIG_DISCONTIGMEM -D CONFIG_PROC_PAGE_MONITOR", "/LINUX/bc8cec0dff0.c": "-D CONFIG_JFFS2_FS_WBUF_VERIFY", "/LINUX/c708c57e247.c": "-D CONFIG_S390_PRNG -D CONFIG_S390", "/LINUX/d530db0db90.c": "-D CONFIG_VORTEX -U CONFIG_PCI", "/LINUX/d549f55f2e1.c": "-D CONFIG_IPV6 -U CONFIG_VLAN_8021Q", "/LINUX/d6c7e113959.c": "-D CONFIG_REGULATOR_MAX8660 -U CONFIG_OF", "/LINUX/d7e9711760a.c": "-D CONFIG_QUOTA_DEBUG", "/LINUX/e1fbd9210d5.c": "-D CONFIG_LBDAF -D CONFIG_AMIGA_Z2RAM", "/LINUX/e39363a9def.c": "-D CONFIG_NETPOLL -U CONFIG_IPV6", "/LINUX/e67bc51e574.c": "-U CONFIG_TRACING", "/LINUX/eb91f1d0a53.c": "-D CONFIG_SLAB -D CONFIG_LOCKDEP -D CONFIG_TRACE_IRQFLAGS -D CONFIG_PROVE_LOCKING -D CONFIG_NUMA", "/LINUX/ee3f34e8572.c": "-D CONFIG_IP_SCTP -D CONFIG_IPV6 -D SCTP_DBG_MSG", "/LINUX/f3d83e24154.c": "-D CONFIG_X86 -D CONFIG_ACPI_WMI", "/LINUX/f48ec1d7885.c": "-D CONFIG_IOSCHED_CFQ -U CONFIG_BLK_CGROUP", "/LINUX/f7ab9b407b3.c": "-U CONFIG_TMPFS -D CONFIG_SHMEM -D CONFIG_DRM_I915", "/MARLIN/2d22902d080.c": "-D SDSUPPORT", "/MARLIN/2db384a21d6.c": "-D MESH_BED_LEVELING -U DISABLE_M503", "/MARLIN/30248214c7f.c": "-D THERMAL_RUNAWAY_PROTECTION_PERIOD=1", "/MARLIN/31873ec707d.c": "-D ULTRA_LCD", "/MARLIN/53be0f3399e.c": "-D BABYSTEPPING -D DELTA", "/MARLIN/7336e6df070.c": "-D Z_DUAL_STEPPER_DRIVERS", "/MARLIN/831016b09f7.c": "-U ULTRA_LCD -D SDSUPPORT", "/MARLIN/8c4377dd635.c": "-D PIDTEMP -D PID_DEBUG", "/MARLIN/a7fc1f83c81.c": "-D SDSUPPORT", "/MARLIN/b8e79dce897.c": "-D ULTRA_LCD -U ENCODER_RATE_MULTIPLIER -D TEMP_SENSOR=1", "/MARLIN/e30bfedce4d.c": "-D ENABLE_AUTO_BED_LEVELING -U AUTO_BED_LEVELING_GRID", "/MARLIN/f87c80889fe.c": "", "/MARLIN/fc3c76fc164.c": "-D HAS_BED_THERMAL_PROTECTION", "/MARLIN/fdac8f6cece.c": "-U ENABLE_AUTO_BED_LEVELING"} \ No newline at end of file diff --git a/fonda/cpp_testsuite/varBugs/runTests.py b/fonda/cpp_testsuite/varBugs/runTests.py index d883d0ca..992505e9 100644 --- a/fonda/cpp_testsuite/varBugs/runTests.py +++ b/fonda/cpp_testsuite/varBugs/runTests.py @@ -2,10 +2,77 @@ import os import shutil import json +import re LOC = "/home/kisamefishfry/SystemConfig" stdInc = "-nostdinc -include " + LOC + "/baseInc.h -I " + LOC + "/original/usr/include/ -I " + LOC + "/original/usr/include/x86_64-linux-gnu/ -I " + LOC + "/\original/usr/lib/gcc/x86_64-linux-gnu/9/include/" +class Warning: + def __init__(self): + self.msg = '' + self.line = 0 + self.lineA = 0 + self.lineB = 0 + + def sanitize(self): + if " '" in self.msg: + return re.sub(r" '\S+'", " 'x'", self.msg.rstrip()) + return self.msg.rstrip() + + def tostr(self): + return ' '.join([self.sanitize(),str(self.line),str(self.lineA),str(self.lineB)]) + + + def areEq(self,inner): + print(self.tostr() + ' ||' + inner.tostr()) + return self.sanitize() == inner.sanitize() and inner.line >= self.lineA and inner.line <= self.lineB + +def getAlarm(fi): + orig = fi + ".clangres" + desug = fi + ".desugared.clangres" + warningsO = [] + warningsD = [] + f = open(orig) + for x in f: + if fi in x and 'warning:' in x: + x = x.rstrip() + y = Warning() + y.msg = x.split('warning:')[1] + y.line = int(x.split(':')[1]) + warningsO.append(y) + f.close() + f = open(desug) + lines = [] + for x in f: + lines.append(x.rstrip()) + i = 0 + while i < len(lines) - 1: + l = lines[i] + if fi in l and 'warning:' in l and '// L' in lines[i+1]: + z = Warning() + z.msg = l.split('warning:')[1] + linestr = lines[i+1].split('// L')[1] + if ':L' in linestr: + z.lineA = int(linestr.split(':L')[0]) + z.lineB = int(linestr.split(':L')[1]) + else: + z.lineA = int(linestr) + z.lineB = int(linestr) + warningsD.append(z) + i = i+1 + i = i+1 + f.close() + i = 0 + while i < len(warningsO): + found = False + for d in warningsD: + if d.areEq(warningsO[i]): + found = True + break + if not found: + return 'missing: ' + warningsO[i].msg + i = i+1 + return 'match' def remove_prefix(text, prefix): return text[text.startswith(prefix) and len(prefix):] @@ -32,8 +99,14 @@ def main(): if len(sumTOut + dirFiles) > maxC: maxC = len(sumTOut + dirFiles) - sumTable.write('File' + (maxC - 4)*' ' + 'Status\n'+(4)*'-'+ (maxC - 4)*' '+'------\n') - + sumTable.write('File' + (maxC - 4)*' ' + 'Status Clang\n'+(4)*'-'+ (maxC - 4)*' '+'------ -----\n') + + jsFile = open('configs.json','r+') + if os.stat('configs.json').st_size == 0: + js = {} + else: + js = json.loads(jsFile.read()) + jsFile.close() for folderName in os.listdir(os.getcwd()): if os.path.exists(folderName) and os.path.isdir(folderName): rootDir = os.getcwd() + "/" + folderName + '/' @@ -53,20 +126,32 @@ def main(): sumTOut = os.path.relpath(curDir, os.getcwd()) + '/' + dirFiles[:len(dirFiles) - 2] key = sumTOut + ".c" print(curDir + '/' + dirFiles) - os.system( 'java superc.SugarC ' + stdInc + " " + curDir + '/' + dirFiles + ' > ' + curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.desugared.c 2> ' + curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.Log') + os.system( 'java superc.SugarC -keep-mem ' + stdInc + " -I " + curDir + " " + curDir + '/' + dirFiles + ' > ' + curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.desugared.c 2> ' + curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.Log') + filewobase = (curDir + '/' + dirFiles)[len(os.getcwd()):] + if filewobase in js: + inc = js[filewobase] + else: + print('condition for ' + filewobase + ':\n') + inc = sys.stdin.readline().rstrip() + js[filewobase] = inc + os.system('clang --analyze ' + inc + ' ' + curDir + '/' + dirFiles + " 2> " + curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.clangres') + if os.path.getsize(curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.desugared.c') <= 32: - sumTable.write(sumTOut + (maxC - len(sumTOut))*' ' + 'SuperC failed\n') + sumTable.write(sumTOut + (maxC - len(sumTOut))*' ' + 'SuperC failed *\n') else: os.system('clang -Wno-everything -emit-llvm -c ' + curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.desugared.c') + os.system('clang --analyze ' + curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.desugared.c 2> ' + curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.desugared.clangres') if os.path.exists(os.getcwd() + '/' + dirFiles[:len(dirFiles) - 2] + '.desugared.bc'): os.system('mv ' + dirFiles[:len(dirFiles) - 2] + '.desugared.bc ' + curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.desugared.bc') - sumTable.write(sumTOut + (maxC - len(sumTOut))*' ' +'BC generated\n') + alarm = getAlarm(curDir + '/' + dirFiles[:len(dirFiles) - 2]) + sumTable.write(sumTOut + (maxC - len(sumTOut))*' ' +'BC generated ' + alarm + '\n') else: - sumTable.write(sumTOut + (maxC - len(sumTOut))*' ' + 'BC failed\n') + sumTable.write(sumTOut + (maxC - len(sumTOut))*' ' +'BC failed *\n') - + with open('configs.json','w') as json_file: + json.dump(js,json_file,sort_keys=True) sumTable.close() if __name__ == '__main__': main() diff --git a/fonda/cpp_testsuite/varBugs/summaryTable.txt b/fonda/cpp_testsuite/varBugs/summaryTable.txt index 886142f2..de8dc8e6 100644 --- a/fonda/cpp_testsuite/varBugs/summaryTable.txt +++ b/fonda/cpp_testsuite/varBugs/summaryTable.txt @@ -1,105 +1,101 @@ -File Status ----- ------ -MARLIN/f87c80889fe BC generated -MARLIN/53be0f3399e BC generated -MARLIN/31873ec707d BC generated -MARLIN/2d22902d080 BC generated -MARLIN/a7fc1f83c81 BC generated -MARLIN/30248214c7f BC generated -MARLIN/2db384a21d6 BC generated -MARLIN/b8e79dce897 BC generated -MARLIN/8c4377dd635 BC generated -MARLIN/fc3c76fc164 BC generated -MARLIN/831016b09f7 SuperC failed -MARLIN/831016b09f7 BC failed -MARLIN/e30bfedce4d BC generated -MARLIN/7336e6df070 BC generated -MARLIN/fdac8f6cece BC generated -LINUX/d530db0db90 BC generated -LINUX/bc8cec0dff0 BC generated -LINUX/d7e9711760a BC generated -LINUX/221ac329e93 BC generated -LINUX/51fd36f3fad SuperC failed -LINUX/51fd36f3fad BC failed -LINUX/208d89843b7 BC generated -LINUX/ee3f34e8572 BC generated -LINUX/472a474c663 BC generated -LINUX/657e9649e74 BC generated -LINUX/f7ab9b407b3 BC generated -LINUX/36855dcfc98 BC generated -LINUX/e1fbd9210d5 BC generated -LINUX/66517915e09 BC generated -LINUX/7c6048b7c83 BC generated -LINUX/f3d83e24154 BC generated -LINUX/eb91f1d0a53 BC generated -LINUX/1f758a4341a BC generated -LINUX/0988c4c7fb5 BC generated -LINUX/242f1a34377 BC generated -LINUX/2f02c15a5d9 BC generated -LINUX/8c8296223f3 BC generated -LINUX/68bb91baa0 BC generated -LINUX/1c17e4d4437 BC generated -LINUX/f48ec1d7885 BC generated -LINUX/0dc77b6dabe BC generated -LINUX/6515e48932c BC generated -LINUX/91ea8207168 BC generated -LINUX/6e2b75740be BC generated -LINUX/76baeebf7df SuperC failed -LINUX/76baeebf7df BC failed -LINUX/218ad12f42e BC generated -LINUX/ae249b5fa27 BC generated -LINUX/e67bc51e574 BC generated -LINUX/c708c57e247 BC generated -LINUX/809e660f438 BC generated -LINUX/0f8f8094d28 SuperC failed -LINUX/0f8f8094d28 BC failed -LINUX/6252547b8a7 BC generated -LINUX/d6c7e113959 BC generated -LINUX/e39363a9def BC generated -LINUX/30e053248da BC generated -LINUX/d549f55f2e1 BC generated -LINUX/7acf6cd80b2 BC generated -LINUX/60e233a5660 BC generated -LINUX/63878acfafb SuperC failed -LINUX/63878acfafb BC failed -BUSYBOX/5275b1e49f6 BC generated -BUSYBOX/5cd6461b6fb BC generated -BUSYBOX/1b487ea8a69 BC generated -BUSYBOX/b7ebc61b54f BC generated -BUSYBOX/ebee301c8b0 BC generated -BUSYBOX/b273d665181 BC generated -BUSYBOX/df7b6577c6a BC generated -BUSYBOX/061fd0a353e BC generated -BUSYBOX/eef2317b9f5 BC generated -BUSYBOX/192c35f6eb2 BC generated -BUSYBOX/2631486f1bf BC generated -BUSYBOX/95755181b82 BC failed -BUSYBOX/cc3f20b9bdf BC generated -BUSYBOX/cf1f2ace391 BC generated -BUSYBOX/bc0ffc0e971 BC generated -BUSYBOX/b62bd7b261b BC generated -BUSYBOX/0301ffab3d9 BC generated -BUSYBOX/199501f2a00 BC generated -APACHE/d0040a07aec BC generated -APACHE/c76df14dfb4 BC generated -APACHE/97ecbec1237 BC generated -APACHE/bbeb0516cf0 BC generated -APACHE/1f46088b38d BC generated -APACHE/9327311d30f BC generated -APACHE/35ae2e259e4 BC generated -APACHE/4202d5fee3e BC generated -APACHE/b833f064550 SuperC failed -APACHE/b833f064550 BC failed -APACHE/581635e28f1 BC generated -APACHE/2a6cbfa00e0 BC generated -APACHE/1a3c8e3d840 BC generated -APACHE/dbafef17dd1 BC generated -APACHE/3407eccc321 BC generated -APACHE/664e3aac6dd BC generated -APACHE/d05e574ec26 BC generated -APACHE/6338509eb37 BC generated -APACHE/0900800fbab BC generated -APACHE/0ddfa412ee9 BC generated -APACHE/4945115b2e7 BC generated -APACHE/56d9881993f BC generated -APACHE/1b48bb3c1af BC generated +File Status Clang +---- ------ ----- +MARLIN/f87c80889fe BC generated match +MARLIN/53be0f3399e BC failed * +MARLIN/31873ec707d BC generated match +MARLIN/2d22902d080 BC generated match +MARLIN/a7fc1f83c81 BC generated match +MARLIN/30248214c7f BC generated match +MARLIN/2db384a21d6 BC generated match +MARLIN/b8e79dce897 BC generated match +MARLIN/8c4377dd635 BC generated match +MARLIN/fc3c76fc164 BC generated match +MARLIN/831016b09f7 BC generated match +MARLIN/e30bfedce4d BC generated match +MARLIN/7336e6df070 BC generated match +MARLIN/fdac8f6cece BC generated match +LINUX/d530db0db90 BC generated match +LINUX/bc8cec0dff0 BC generated match +LINUX/d7e9711760a BC generated match +LINUX/221ac329e93 BC generated match +LINUX/51fd36f3fad BC generated match +LINUX/208d89843b7 BC generated match +LINUX/ee3f34e8572 BC generated missing: Value stored to 'rt' during its initialization is never read +LINUX/472a474c663 BC generated match +LINUX/657e9649e74 BC generated match +LINUX/f7ab9b407b3 BC generated match +LINUX/36855dcfc98 BC generated match +LINUX/e1fbd9210d5 BC generated match +LINUX/66517915e09 BC generated match +LINUX/7c6048b7c83 BC generated match +LINUX/f3d83e24154 BC generated match +LINUX/eb91f1d0a53 BC generated match +LINUX/1f758a4341a BC generated match +LINUX/0988c4c7fb5 BC generated match +LINUX/242f1a34377 BC generated match +LINUX/2f02c15a5d9 BC generated match +LINUX/8c8296223f3 BC generated match +LINUX/68bb91baa0 BC generated match +LINUX/1c17e4d4437 BC generated match +LINUX/f48ec1d7885 BC generated match +LINUX/0dc77b6dabe BC generated match +LINUX/6515e48932c BC generated match +LINUX/91ea8207168 BC generated match +LINUX/6e2b75740be BC generated match +LINUX/76baeebf7df SuperC failed * +LINUX/76baeebf7df BC failed * +LINUX/218ad12f42e BC generated match +LINUX/ae249b5fa27 BC generated match +LINUX/e67bc51e574 BC generated match +LINUX/c708c57e247 BC generated match +LINUX/809e660f438 BC generated match +LINUX/0f8f8094d28 BC generated match +LINUX/6252547b8a7 BC generated match +LINUX/d6c7e113959 BC generated match +LINUX/e39363a9def BC generated match +LINUX/30e053248da BC generated match +LINUX/d549f55f2e1 BC generated match +LINUX/7acf6cd80b2 BC generated match +LINUX/60e233a5660 BC generated match +LINUX/63878acfafb BC generated match +BUSYBOX/5275b1e49f6 BC generated match +BUSYBOX/5cd6461b6fb BC generated match +BUSYBOX/1b487ea8a69 BC generated match +BUSYBOX/b7ebc61b54f BC generated match +BUSYBOX/ebee301c8b0 BC generated match +BUSYBOX/b273d665181 BC generated match +BUSYBOX/df7b6577c6a BC generated match +BUSYBOX/061fd0a353e BC generated match +BUSYBOX/eef2317b9f5 BC generated match +BUSYBOX/192c35f6eb2 BC generated match +BUSYBOX/2631486f1bf BC generated match +BUSYBOX/95755181b82 BC failed * +BUSYBOX/cc3f20b9bdf BC generated match +BUSYBOX/cf1f2ace391 BC generated match +BUSYBOX/bc0ffc0e971 BC generated match +BUSYBOX/b62bd7b261b BC generated match +BUSYBOX/0301ffab3d9 BC generated match +BUSYBOX/199501f2a00 BC generated missing: Null pointer passed to 2nd parameter expecting 'nonnull' +APACHE/d0040a07aec BC generated match +APACHE/c76df14dfb4 BC generated match +APACHE/97ecbec1237 BC generated match +APACHE/bbeb0516cf0 BC generated missing: Null pointer passed to 1st parameter expecting 'nonnull' +APACHE/1f46088b38d BC generated match +APACHE/9327311d30f BC generated match +APACHE/35ae2e259e4 BC generated missing: Potential leak of memory pointed to by 'eckey' +APACHE/4202d5fee3e BC generated match +APACHE/b833f064550 SuperC failed * +APACHE/b833f064550 BC failed * +APACHE/581635e28f1 BC generated match +APACHE/2a6cbfa00e0 BC generated missing: Potential leak of memory pointed to by 'sc' +APACHE/1a3c8e3d840 BC generated match +APACHE/dbafef17dd1 BC generated match +APACHE/3407eccc321 BC generated match +APACHE/664e3aac6dd BC generated match +APACHE/d05e574ec26 BC generated missing: Potential leak of memory pointed to by 'buf' +APACHE/6338509eb37 BC generated match +APACHE/0900800fbab BC generated match +APACHE/0ddfa412ee9 BC generated match +APACHE/4945115b2e7 BC generated match +APACHE/56d9881993f BC generated match +APACHE/1b48bb3c1af BC generated match diff --git a/src/superc/SugarC.java b/src/superc/SugarC.java index bd76ded2..c8a96da4 100644 --- a/src/superc/SugarC.java +++ b/src/superc/SugarC.java @@ -215,7 +215,8 @@ public void init() { "Emit thunks for single-configuration linking (experimental)."). bool("make-main", "make-main", false, "Create a main function to call main variants."). - + bool("keep-mem", "keep-mem", false, + "Retains free and alloc function naming for static analysis."). // Output and debugging bool("printAST", "printAST", false, "Print the parsed AST."). @@ -479,7 +480,9 @@ public Node parse(Reader in, File file) throws IOException, ParseException { if (runtime.test("newErrorHandling")) { ForkMergeParser.setNewErrorHandling(true); } - + if (runtime.test("keep-mem")) { + CActions.keepMemoryNames(true); + } // Run SuperC. // Run the SuperC preprocessor and parser. diff --git a/src/superc/cdesugarer/CActions.java b/src/superc/cdesugarer/CActions.java index aff3fe12..999a596e 100644 --- a/src/superc/cdesugarer/CActions.java +++ b/src/superc/cdesugarer/CActions.java @@ -26,6 +26,7 @@ import java.lang.StringBuilder; import java.util.ArrayList; +import java.util.Arrays; import java.util.List; import java.util.LinkedList; import java.util.Iterator; @@ -5476,8 +5477,12 @@ public Object action(int production, Subparser subparser, Object value) { typemv.add(entry.getData().getValue().toVariable().getType(), entry.getCondition()); } } else if (entry.getData().getValue() instanceof NamedFunctionT) { - String result // use the renamed symbol - = String.format(" %s ", ((NamedFunctionT) entry.getData().getValue()).getName()); + String result; // use the renamed symbol + if (!keepMem || !(Arrays.asList(memNames)).contains(originalName) ) { + result = String.format(" %s ", ((NamedFunctionT) entry.getData().getValue()).getName()); + } else { + result = originalName; + } sbmv.add(result, entry.getCondition()); typemv.add(((NamedFunctionT) entry.getData().getValue()).toFunctionT(), entry.getCondition()); } else if (entry.getData().getValue() instanceof EnumeratorT) { @@ -5497,7 +5502,6 @@ public Object action(int production, Subparser subparser, Object value) { // it and the symtab should always return a non-empty mv assert ! sbmv.isEmpty(); entries.destruct(); - System.err.println(typemv); setTransformationValue(value, new ExpressionValue(sbmv, typemv,new Multiverse(new LineNumbers((Syntax)getNodeAt(subparser, 1)),cond))); } break; @@ -8349,7 +8353,14 @@ public void dispatch(int id, Subparser subparser) { boolean wrotePrologue = false; - + +static boolean keepMem = false; +static String memNames[] = {"malloc", "calloc", "free"}; + +public static void keepMemoryNames(boolean f) { + keepMem = f; +} + // TUTORIAL: this section of the grammar gets copied into the // resulting parser, specifically the CActions.java class diff --git a/src/superc/cdesugarer/desugarer.y b/src/superc/cdesugarer/desugarer.y index 5b1a56f2..108273b0 100644 --- a/src/superc/cdesugarer/desugarer.y +++ b/src/superc/cdesugarer/desugarer.y @@ -168,6 +168,7 @@ import java.lang.StringBuilder; import java.util.ArrayList; +import java.util.Arrays; import java.util.List; import java.util.LinkedList; import java.util.Iterator; @@ -5554,8 +5555,12 @@ PrimaryIdentifier: /** nomerge **/ // ExpressionValue typemv.add(entry.getData().getValue().toVariable().getType(), entry.getCondition()); } } else if (entry.getData().getValue() instanceof NamedFunctionT) { - String result // use the renamed symbol - = String.format(" %s ", ((NamedFunctionT) entry.getData().getValue()).getName()); + String result; // use the renamed symbol + if (!keepMem || !(Arrays.asList(memNames)).contains(originalName) ) { + result = String.format(" %s ", ((NamedFunctionT) entry.getData().getValue()).getName()); + } else { + result = originalName; + } sbmv.add(result, entry.getCondition()); typemv.add(((NamedFunctionT) entry.getData().getValue()).toFunctionT(), entry.getCondition()); } else if (entry.getData().getValue() instanceof EnumeratorT) { @@ -5575,7 +5580,6 @@ PrimaryIdentifier: /** nomerge **/ // ExpressionValue // it and the symtab should always return a non-empty mv assert ! sbmv.isEmpty(); entries.destruct(); - System.err.println(typemv); setTransformationValue(value, new ExpressionValue(sbmv, typemv,new Multiverse(new LineNumbers((Syntax)getNodeAt(subparser, 1)),cond))); } /* We cannot use a typedef name as a variable */ ; @@ -8211,7 +8215,14 @@ AsmKeyword: // ADDED %% boolean wrotePrologue = false; - + +static boolean keepMem = false; +static String memNames[] = {"malloc", "calloc", "free"}; + +public static void keepMemoryNames(boolean f) { + keepMem = f; +} + // TUTORIAL: this section of the grammar gets copied into the // resulting parser, specifically the CActions.java class diff --git a/test.c b/test.c new file mode 100644 index 00000000..72da03ce --- /dev/null +++ b/test.c @@ -0,0 +1,14 @@ +extern void* malloc(const int); +extern void free(void*); +extern void* calloc(const int); +int foo () { + return 2; +} +int main () { + int *f; + f = malloc(4); + f = calloc(4); + *f = foo(); + free(f); + return 0; +} From f415138918cfeca544801475fbab900f0248adab Mon Sep 17 00:00:00 2001 From: pattersonz Date: Mon, 21 Mar 2022 00:47:39 -0500 Subject: [PATCH 14/77] updated results did infer work --- .gitignore | 1 - .../varBugs/APACHE/0900800fbab.clangres | 0 .../APACHE/0900800fbab.desugared.clangres | 0 .../APACHE/0900800fbab.desugared.inferres | 2 + .../varBugs/APACHE/0900800fbab.inferres | 2 + .../varBugs/APACHE/0ddfa412ee9.clangres | 0 .../APACHE/0ddfa412ee9.desugared.clangres | 0 .../APACHE/0ddfa412ee9.desugared.inferres | 2 + .../varBugs/APACHE/0ddfa412ee9.inferres | 2 + .../varBugs/APACHE/1a3c8e3d840.clangres | 4 + .../varBugs/APACHE/1a3c8e3d840.desugared.c | 4 +- .../APACHE/1a3c8e3d840.desugared.clangres | 7 + .../APACHE/1a3c8e3d840.desugared.inferres | 23 +++ .../varBugs/APACHE/1a3c8e3d840.inferres | 0 .../varBugs/APACHE/1b48bb3c1af.clangres | 4 + .../APACHE/1b48bb3c1af.desugared.clangres | 10 + .../APACHE/1b48bb3c1af.desugared.inferres | 2 + .../varBugs/APACHE/1b48bb3c1af.inferres | 2 + .../varBugs/APACHE/1f46088b38d.clangres | 4 + .../APACHE/1f46088b38d.desugared.clangres | 0 .../APACHE/1f46088b38d.desugared.inferres | 2 + .../varBugs/APACHE/1f46088b38d.inferres | 0 .../varBugs/APACHE/2a6cbfa00e0.clangres | 4 + .../APACHE/2a6cbfa00e0.desugared.clangres | 7 + .../APACHE/2a6cbfa00e0.desugared.inferres | 2 + .../varBugs/APACHE/2a6cbfa00e0.inferres | 14 ++ .../varBugs/APACHE/3407eccc321.clangres | 0 .../varBugs/APACHE/3407eccc321.desugared.c | 2 +- .../APACHE/3407eccc321.desugared.clangres | 0 .../APACHE/3407eccc321.desugared.inferres | 2 + .../varBugs/APACHE/3407eccc321.inferres | 2 + .../varBugs/APACHE/35ae2e259e4.clangres | 4 + .../varBugs/APACHE/35ae2e259e4.desugared.c | 4 +- .../APACHE/35ae2e259e4.desugared.clangres | 28 +++ .../APACHE/35ae2e259e4.desugared.inferres | 51 +++++ .../varBugs/APACHE/35ae2e259e4.inferres | 23 +++ .../varBugs/APACHE/4202d5fee3e.clangres | 0 .../APACHE/4202d5fee3e.desugared.clangres | 0 .../APACHE/4202d5fee3e.desugared.inferres | 2 + .../varBugs/APACHE/4202d5fee3e.inferres | 2 + .../varBugs/APACHE/4945115b2e7.clangres | 0 .../varBugs/APACHE/4945115b2e7.desugared.c | 88 ++++---- .../APACHE/4945115b2e7.desugared.clangres | 0 .../APACHE/4945115b2e7.desugared.inferres | 2 + .../varBugs/APACHE/4945115b2e7.inferres | 24 +++ .../varBugs/APACHE/56d9881993f.clangres | 0 .../APACHE/56d9881993f.desugared.clangres | 0 .../APACHE/56d9881993f.desugared.inferres | 2 + .../varBugs/APACHE/56d9881993f.inferres | 2 + .../varBugs/APACHE/581635e28f1.clangres | 4 + .../APACHE/581635e28f1.desugared.clangres | 0 .../APACHE/581635e28f1.desugared.inferres | 14 ++ .../varBugs/APACHE/581635e28f1.inferres | 0 .../varBugs/APACHE/6338509eb37.clangres | 4 + .../APACHE/6338509eb37.desugared.clangres | 0 .../APACHE/6338509eb37.desugared.inferres | 2 + .../varBugs/APACHE/6338509eb37.inferres | 0 .../varBugs/APACHE/664e3aac6dd.clangres | 0 .../varBugs/APACHE/664e3aac6dd.desugared.c | 2 +- .../APACHE/664e3aac6dd.desugared.clangres | 0 .../APACHE/664e3aac6dd.desugared.inferres | 2 + .../varBugs/APACHE/664e3aac6dd.inferres | 2 + .../varBugs/APACHE/9327311d30f.clangres | 0 .../APACHE/9327311d30f.desugared.clangres | 0 .../APACHE/9327311d30f.desugared.inferres | 2 + .../varBugs/APACHE/9327311d30f.inferres | 2 + .../varBugs/APACHE/97ecbec1237.clangres | 0 .../varBugs/APACHE/97ecbec1237.desugared.c | 2 +- .../APACHE/97ecbec1237.desugared.clangres | 0 .../APACHE/97ecbec1237.desugared.inferres | 2 + .../varBugs/APACHE/97ecbec1237.inferres | 2 + fonda/cpp_testsuite/varBugs/APACHE/a.out | Bin 0 -> 7928 bytes .../varBugs/APACHE/b833f064550.clangres | 0 .../varBugs/APACHE/b833f064550.inferres | 2 + .../varBugs/APACHE/bbeb0516cf0.clangres | 4 + .../APACHE/bbeb0516cf0.desugared.clangres | 0 .../APACHE/bbeb0516cf0.desugared.inferres | 2 + .../varBugs/APACHE/bbeb0516cf0.inferres | 14 ++ .../varBugs/APACHE/c76df14dfb4.clangres | 4 + .../APACHE/c76df14dfb4.desugared.clangres | 13 ++ .../APACHE/c76df14dfb4.desugared.inferres | 41 ++++ .../varBugs/APACHE/c76df14dfb4.inferres | 14 ++ .../varBugs/APACHE/d0040a07aec.clangres | 7 + .../varBugs/APACHE/d0040a07aec.desugared.c | 2 +- .../APACHE/d0040a07aec.desugared.clangres | 0 .../APACHE/d0040a07aec.desugared.inferres | 2 + .../varBugs/APACHE/d0040a07aec.inferres | 0 .../varBugs/APACHE/d05e574ec26.clangres | 4 + .../APACHE/d05e574ec26.desugared.clangres | 37 ++++ .../APACHE/d05e574ec26.desugared.inferres | 41 ++++ .../varBugs/APACHE/d05e574ec26.inferres | 2 + .../varBugs/APACHE/dbafef17dd1.clangres | 0 .../APACHE/dbafef17dd1.desugared.clangres | 0 .../APACHE/dbafef17dd1.desugared.inferres | 2 + .../varBugs/APACHE/dbafef17dd1.inferres | 2 + .../APACHE/infer-out/.infer_runstate.json | 1 + .../varBugs/APACHE/infer-out/bugs.txt | 1 + .../infer-out/config-impact-report.json | 1 + .../APACHE/infer-out/costs-report.json | 1 + .../varBugs/APACHE/infer-out/logs | 114 +++++++++++ .../varBugs/APACHE/infer-out/report.json | 1 + .../varBugs/APACHE/infer-out/report.txt | 23 +++ .../varBugs/APACHE/infer-out/results.db | Bin 0 -> 1310720 bytes .../varBugs/APACHE/infer-out/results.db-shm | Bin 0 -> 32768 bytes .../varBugs/APACHE/infer-out/results.db-wal | Bin 0 -> 3443192 bytes .../tmp/clang_command_.tmp.5962e4.txt | 11 + .../tmp/clang_command_.tmp.b9e75d.txt | 62 ++++++ .../varBugs/BUSYBOX/0301ffab3d9.clangres | 0 .../BUSYBOX/0301ffab3d9.desugared.clangres | 4 + .../BUSYBOX/0301ffab3d9.desugared.inferres | 14 ++ .../varBugs/BUSYBOX/0301ffab3d9.inferres | 2 + .../varBugs/BUSYBOX/061fd0a353e.clangres | 4 + .../varBugs/BUSYBOX/061fd0a353e.desugared.c | 4 +- .../BUSYBOX/061fd0a353e.desugared.clangres | 7 + .../BUSYBOX/061fd0a353e.desugared.inferres | 51 +++++ .../varBugs/BUSYBOX/061fd0a353e.inferres | 0 .../varBugs/BUSYBOX/192c35f6eb2.clangres | 0 .../BUSYBOX/192c35f6eb2.desugared.clangres | 0 .../BUSYBOX/192c35f6eb2.desugared.inferres | 2 + .../varBugs/BUSYBOX/192c35f6eb2.inferres | 2 + .../varBugs/BUSYBOX/199501f2a00.clangres | 4 + .../varBugs/BUSYBOX/199501f2a00.desugared.c | 8 +- .../BUSYBOX/199501f2a00.desugared.clangres | 4 + .../BUSYBOX/199501f2a00.desugared.inferres | 14 ++ .../varBugs/BUSYBOX/199501f2a00.inferres | 14 ++ .../varBugs/BUSYBOX/1b487ea8a69.clangres | 4 + .../varBugs/BUSYBOX/1b487ea8a69.desugared.c | 4 +- .../BUSYBOX/1b487ea8a69.desugared.clangres | 7 + .../BUSYBOX/1b487ea8a69.desugared.inferres | 23 +++ .../varBugs/BUSYBOX/1b487ea8a69.inferres | 14 ++ .../varBugs/BUSYBOX/2631486f1bf.clangres | 4 + .../varBugs/BUSYBOX/2631486f1bf.desugared.c | 8 +- .../BUSYBOX/2631486f1bf.desugared.clangres | 43 ++++ .../BUSYBOX/2631486f1bf.desugared.inferres | 51 +++++ .../varBugs/BUSYBOX/2631486f1bf.inferres | 34 ++++ .../varBugs/BUSYBOX/5275b1e49f6.clangres | 4 + .../varBugs/BUSYBOX/5275b1e49f6.desugared.c | 4 +- .../BUSYBOX/5275b1e49f6.desugared.clangres | 40 ++++ .../BUSYBOX/5275b1e49f6.desugared.inferres | 50 +++++ .../varBugs/BUSYBOX/5275b1e49f6.inferres | 0 .../varBugs/BUSYBOX/5cd6461b6fb.clangres | 0 .../varBugs/BUSYBOX/5cd6461b6fb.desugared.c | 4 +- .../BUSYBOX/5cd6461b6fb.desugared.clangres | 0 .../BUSYBOX/5cd6461b6fb.desugared.inferres | 2 + .../varBugs/BUSYBOX/5cd6461b6fb.inferres | 2 + .../varBugs/BUSYBOX/95755181b82.clangres | 7 + .../BUSYBOX/95755181b82.desugared.clangres | 25 +++ .../BUSYBOX/95755181b82.desugared.inferres | 0 .../varBugs/BUSYBOX/95755181b82.inferres | 0 .../varBugs/BUSYBOX/b273d665181.clangres | 4 + .../varBugs/BUSYBOX/b273d665181.desugared.c | 8 +- .../BUSYBOX/b273d665181.desugared.clangres | 16 ++ .../BUSYBOX/b273d665181.desugared.inferres | 41 ++++ .../varBugs/BUSYBOX/b273d665181.inferres | 14 ++ .../varBugs/BUSYBOX/b62bd7b261b.clangres | 7 + .../varBugs/BUSYBOX/b62bd7b261b.desugared.c | 6 +- .../BUSYBOX/b62bd7b261b.desugared.clangres | 43 ++++ .../BUSYBOX/b62bd7b261b.desugared.inferres | 51 +++++ .../varBugs/BUSYBOX/b62bd7b261b.inferres | 23 +++ .../varBugs/BUSYBOX/b7ebc61b54f.clangres | 10 + .../varBugs/BUSYBOX/b7ebc61b54f.desugared.c | 2 +- .../BUSYBOX/b7ebc61b54f.desugared.clangres | 0 .../BUSYBOX/b7ebc61b54f.desugared.inferres | 2 + .../varBugs/BUSYBOX/b7ebc61b54f.inferres | 0 .../varBugs/BUSYBOX/bc0ffc0e971.clangres | 4 + .../BUSYBOX/bc0ffc0e971.desugared.clangres | 37 ++++ .../BUSYBOX/bc0ffc0e971.desugared.inferres | 23 +++ .../varBugs/BUSYBOX/bc0ffc0e971.inferres | 14 ++ .../varBugs/BUSYBOX/cc3f20b9bdf.clangres | 0 .../BUSYBOX/cc3f20b9bdf.desugared.clangres | 0 .../BUSYBOX/cc3f20b9bdf.desugared.inferres | 2 + .../varBugs/BUSYBOX/cc3f20b9bdf.inferres | 2 + .../varBugs/BUSYBOX/cf1f2ace391.clangres | 0 .../BUSYBOX/cf1f2ace391.desugared.clangres | 0 .../BUSYBOX/cf1f2ace391.desugared.inferres | 2 + .../varBugs/BUSYBOX/cf1f2ace391.inferres | 2 + .../varBugs/BUSYBOX/df7b6577c6a.clangres | 0 .../BUSYBOX/df7b6577c6a.desugared.clangres | 0 .../BUSYBOX/df7b6577c6a.desugared.inferres | 2 + .../varBugs/BUSYBOX/df7b6577c6a.inferres | 2 + .../varBugs/BUSYBOX/ebee301c8b0.clangres | 0 .../varBugs/BUSYBOX/ebee301c8b0.desugared.c | 4 +- .../BUSYBOX/ebee301c8b0.desugared.clangres | 7 + .../BUSYBOX/ebee301c8b0.desugared.inferres | 23 +++ .../varBugs/BUSYBOX/ebee301c8b0.inferres | 2 + .../varBugs/BUSYBOX/eef2317b9f5.clangres | 4 + .../BUSYBOX/eef2317b9f5.desugared.clangres | 19 ++ .../BUSYBOX/eef2317b9f5.desugared.inferres | 33 +++ .../varBugs/BUSYBOX/eef2317b9f5.inferres | 14 ++ .../varBugs/LINUX/0988c4c7fb5.clangres | 0 .../LINUX/0988c4c7fb5.desugared.clangres | 0 .../LINUX/0988c4c7fb5.desugared.inferres | 2 + .../varBugs/LINUX/0988c4c7fb5.inferres | 2 + .../varBugs/LINUX/0dc77b6dabe.clangres | 0 .../LINUX/0dc77b6dabe.desugared.clangres | 0 .../LINUX/0dc77b6dabe.desugared.inferres | 2 + .../varBugs/LINUX/0dc77b6dabe.inferres | 2 + .../varBugs/LINUX/0f8f8094d28.clangres | 14 ++ .../LINUX/0f8f8094d28.desugared.clangres | 0 .../LINUX/0f8f8094d28.desugared.inferres | 2 + .../varBugs/LINUX/0f8f8094d28.inferres | 0 .../varBugs/LINUX/1c17e4d4437.clangres | 0 .../LINUX/1c17e4d4437.desugared.clangres | 0 .../LINUX/1c17e4d4437.desugared.inferres | 2 + .../varBugs/LINUX/1c17e4d4437.inferres | 2 + .../varBugs/LINUX/1f758a4341a.clangres | 0 .../LINUX/1f758a4341a.desugared.clangres | 0 .../LINUX/1f758a4341a.desugared.inferres | 2 + .../varBugs/LINUX/1f758a4341a.inferres | 2 + .../varBugs/LINUX/208d89843b7.clangres | 0 .../varBugs/LINUX/208d89843b7.desugared.c | 6 +- .../LINUX/208d89843b7.desugared.clangres | 0 .../LINUX/208d89843b7.desugared.inferres | 2 + .../varBugs/LINUX/208d89843b7.inferres | 2 + .../varBugs/LINUX/218ad12f42e.clangres | 0 .../LINUX/218ad12f42e.desugared.clangres | 0 .../LINUX/218ad12f42e.desugared.inferres | 2 + .../varBugs/LINUX/218ad12f42e.inferres | 2 + .../varBugs/LINUX/221ac329e93.clangres | 0 .../LINUX/221ac329e93.desugared.clangres | 0 .../LINUX/221ac329e93.desugared.inferres | 2 + .../varBugs/LINUX/221ac329e93.inferres | 2 + .../varBugs/LINUX/242f1a34377.clangres | 0 .../LINUX/242f1a34377.desugared.clangres | 0 .../LINUX/242f1a34377.desugared.inferres | 2 + .../varBugs/LINUX/242f1a34377.inferres | 2 + .../varBugs/LINUX/2f02c15a5d9.clangres | 0 .../LINUX/2f02c15a5d9.desugared.clangres | 0 .../LINUX/2f02c15a5d9.desugared.inferres | 2 + .../varBugs/LINUX/2f02c15a5d9.inferres | 2 + .../varBugs/LINUX/30e053248da.clangres | 7 + .../LINUX/30e053248da.desugared.clangres | 10 + .../LINUX/30e053248da.desugared.inferres | 33 +++ .../varBugs/LINUX/30e053248da.inferres | 14 ++ .../varBugs/LINUX/36855dcfc98.clangres | 0 .../LINUX/36855dcfc98.desugared.clangres | 4 + .../LINUX/36855dcfc98.desugared.inferres | 2 + .../varBugs/LINUX/36855dcfc98.inferres | 2 + .../varBugs/LINUX/472a474c663.clangres | 4 + .../LINUX/472a474c663.desugared.clangres | 4 + .../LINUX/472a474c663.desugared.inferres | 2 + .../varBugs/LINUX/472a474c663.inferres | 2 + .../varBugs/LINUX/51fd36f3fad.clangres | 0 .../LINUX/51fd36f3fad.desugared.clangres | 10 + .../LINUX/51fd36f3fad.desugared.inferres | 32 +++ .../varBugs/LINUX/51fd36f3fad.inferres | 2 + .../varBugs/LINUX/60e233a5660.clangres | 0 .../LINUX/60e233a5660.desugared.clangres | 0 .../LINUX/60e233a5660.desugared.inferres | 2 + .../varBugs/LINUX/60e233a5660.inferres | 2 + .../varBugs/LINUX/6252547b8a7.clangres | 7 + .../LINUX/6252547b8a7.desugared.clangres | 7 + .../LINUX/6252547b8a7.desugared.inferres | 14 ++ .../varBugs/LINUX/6252547b8a7.inferres | 24 +++ .../varBugs/LINUX/63878acfafb.clangres | 0 .../LINUX/63878acfafb.desugared.clangres | 4 + .../LINUX/63878acfafb.desugared.inferres | 14 ++ .../varBugs/LINUX/63878acfafb.inferres | 2 + .../varBugs/LINUX/6515e48932c.clangres | 0 .../LINUX/6515e48932c.desugared.clangres | 0 .../LINUX/6515e48932c.desugared.inferres | 2 + .../varBugs/LINUX/6515e48932c.inferres | 2 + .../varBugs/LINUX/657e9649e74.clangres | 0 .../LINUX/657e9649e74.desugared.clangres | 0 .../LINUX/657e9649e74.desugared.inferres | 2 + .../varBugs/LINUX/657e9649e74.inferres | 2 + .../varBugs/LINUX/66517915e09.clangres | 4 + .../LINUX/66517915e09.desugared.clangres | 7 + .../LINUX/66517915e09.desugared.inferres | 23 +++ .../varBugs/LINUX/66517915e09.inferres | 0 .../varBugs/LINUX/68bb91baa0.clangres | 7 + .../LINUX/68bb91baa0.desugared.clangres | 0 .../LINUX/68bb91baa0.desugared.inferres | 2 + .../varBugs/LINUX/68bb91baa0.inferres | 0 .../varBugs/LINUX/6e2b75740be.clangres | 0 .../LINUX/6e2b75740be.desugared.clangres | 16 ++ .../LINUX/6e2b75740be.desugared.inferres | 14 ++ .../varBugs/LINUX/6e2b75740be.inferres | 2 + .../varBugs/LINUX/76baeebf7df.clangres | 0 .../varBugs/LINUX/76baeebf7df.inferres | 2 + .../varBugs/LINUX/7acf6cd80b2.clangres | 10 + .../LINUX/7acf6cd80b2.desugared.clangres | 10 + .../LINUX/7acf6cd80b2.desugared.inferres | 23 +++ .../varBugs/LINUX/7acf6cd80b2.inferres | 23 +++ .../varBugs/LINUX/7c6048b7c83.clangres | 0 .../LINUX/7c6048b7c83.desugared.clangres | 0 .../LINUX/7c6048b7c83.desugared.inferres | 2 + .../varBugs/LINUX/7c6048b7c83.inferres | 2 + .../varBugs/LINUX/809e660f438.clangres | 0 .../LINUX/809e660f438.desugared.clangres | 0 .../LINUX/809e660f438.desugared.inferres | 2 + .../varBugs/LINUX/809e660f438.inferres | 2 + .../varBugs/LINUX/8c8296223f3.clangres | 0 .../LINUX/8c8296223f3.desugared.clangres | 0 .../LINUX/8c8296223f3.desugared.inferres | 2 + .../varBugs/LINUX/8c8296223f3.inferres | 2 + .../varBugs/LINUX/91ea8207168.clangres | 0 .../LINUX/91ea8207168.desugared.clangres | 0 .../LINUX/91ea8207168.desugared.inferres | 2 + .../varBugs/LINUX/91ea8207168.inferres | 2 + .../varBugs/LINUX/ae249b5fa27.clangres | 0 .../LINUX/ae249b5fa27.desugared.clangres | 7 + .../LINUX/ae249b5fa27.desugared.inferres | 23 +++ .../varBugs/LINUX/ae249b5fa27.inferres | 2 + .../varBugs/LINUX/bc8cec0dff0.clangres | 0 .../LINUX/bc8cec0dff0.desugared.clangres | 0 .../LINUX/bc8cec0dff0.desugared.inferres | 2 + .../varBugs/LINUX/bc8cec0dff0.inferres | 2 + .../varBugs/LINUX/c708c57e247.clangres | 4 + .../LINUX/c708c57e247.desugared.clangres | 4 + .../LINUX/c708c57e247.desugared.inferres | 2 + .../varBugs/LINUX/c708c57e247.inferres | 2 + .../varBugs/LINUX/d530db0db90.clangres | 4 + .../LINUX/d530db0db90.desugared.clangres | 0 .../LINUX/d530db0db90.desugared.inferres | 2 + .../varBugs/LINUX/d530db0db90.inferres | 0 .../varBugs/LINUX/d549f55f2e1.clangres | 0 .../LINUX/d549f55f2e1.desugared.clangres | 0 .../LINUX/d549f55f2e1.desugared.inferres | 2 + .../varBugs/LINUX/d549f55f2e1.inferres | 2 + .../varBugs/LINUX/d6c7e113959.clangres | 0 .../LINUX/d6c7e113959.desugared.clangres | 0 .../LINUX/d6c7e113959.desugared.inferres | 14 ++ .../varBugs/LINUX/d6c7e113959.inferres | 2 + .../varBugs/LINUX/d7e9711760a.clangres | 4 + .../varBugs/LINUX/d7e9711760a.desugared.c | 4 +- .../LINUX/d7e9711760a.desugared.clangres | 4 + .../LINUX/d7e9711760a.desugared.inferres | 14 ++ .../varBugs/LINUX/d7e9711760a.inferres | 14 ++ .../varBugs/LINUX/e1fbd9210d5.clangres | 0 .../LINUX/e1fbd9210d5.desugared.clangres | 0 .../LINUX/e1fbd9210d5.desugared.inferres | 2 + .../varBugs/LINUX/e1fbd9210d5.inferres | 2 + .../varBugs/LINUX/e39363a9def.clangres | 4 + .../LINUX/e39363a9def.desugared.clangres | 4 + .../LINUX/e39363a9def.desugared.inferres | 14 ++ .../varBugs/LINUX/e39363a9def.inferres | 14 ++ .../varBugs/LINUX/e67bc51e574.clangres | 7 + .../LINUX/e67bc51e574.desugared.clangres | 0 .../LINUX/e67bc51e574.desugared.inferres | 2 + .../varBugs/LINUX/e67bc51e574.inferres | 0 .../varBugs/LINUX/eb91f1d0a53.clangres | 0 .../LINUX/eb91f1d0a53.desugared.clangres | 0 .../LINUX/eb91f1d0a53.desugared.inferres | 2 + .../varBugs/LINUX/eb91f1d0a53.inferres | 2 + .../varBugs/LINUX/ee3f34e8572.clangres | 4 + .../LINUX/ee3f34e8572.desugared.clangres | 7 + .../LINUX/ee3f34e8572.desugared.inferres | 2 + .../varBugs/LINUX/ee3f34e8572.inferres | 14 ++ .../varBugs/LINUX/f3d83e24154.clangres | 0 .../LINUX/f3d83e24154.desugared.clangres | 0 .../LINUX/f3d83e24154.desugared.inferres | 2 + .../varBugs/LINUX/f3d83e24154.inferres | 2 + .../varBugs/LINUX/f48ec1d7885.clangres | 4 + .../LINUX/f48ec1d7885.desugared.clangres | 0 .../LINUX/f48ec1d7885.desugared.inferres | 2 + .../varBugs/LINUX/f48ec1d7885.inferres | 0 .../varBugs/LINUX/f7ab9b407b3.clangres | 0 .../LINUX/f7ab9b407b3.desugared.clangres | 0 .../LINUX/f7ab9b407b3.desugared.inferres | 2 + .../varBugs/LINUX/f7ab9b407b3.inferres | 2 + .../varBugs/MARLIN/2d22902d080.clangres | 0 .../MARLIN/2d22902d080.desugared.clangres | 0 .../MARLIN/2d22902d080.desugared.inferres | 2 + .../varBugs/MARLIN/2d22902d080.inferres | 2 + .../varBugs/MARLIN/2db384a21d6.clangres | 0 .../MARLIN/2db384a21d6.desugared.clangres | 0 .../MARLIN/2db384a21d6.desugared.inferres | 2 + .../varBugs/MARLIN/2db384a21d6.inferres | 2 + .../varBugs/MARLIN/30248214c7f.clangres | 0 .../MARLIN/30248214c7f.desugared.clangres | 0 .../MARLIN/30248214c7f.desugared.inferres | 2 + .../varBugs/MARLIN/30248214c7f.inferres | 2 + .../varBugs/MARLIN/31873ec707d.clangres | 35 ++++ .../MARLIN/31873ec707d.desugared.clangres | 0 .../MARLIN/31873ec707d.desugared.inferres | 2 + .../varBugs/MARLIN/31873ec707d.inferres | 0 .../varBugs/MARLIN/53be0f3399e.clangres | 9 + .../MARLIN/53be0f3399e.desugared.clangres | 7 + .../MARLIN/53be0f3399e.desugared.inferres | 0 .../varBugs/MARLIN/53be0f3399e.inferres | 0 .../varBugs/MARLIN/7336e6df070.clangres | 8 + .../MARLIN/7336e6df070.desugared.clangres | 0 .../MARLIN/7336e6df070.desugared.inferres | 2 + .../varBugs/MARLIN/7336e6df070.inferres | 0 .../varBugs/MARLIN/831016b09f7.clangres | 10 + .../MARLIN/831016b09f7.desugared.clangres | 4 + .../MARLIN/831016b09f7.desugared.inferres | 14 ++ .../varBugs/MARLIN/831016b09f7.inferres | 0 .../varBugs/MARLIN/8c4377dd635.clangres | 4 + .../MARLIN/8c4377dd635.desugared.clangres | 7 + .../MARLIN/8c4377dd635.desugared.inferres | 41 ++++ .../varBugs/MARLIN/8c4377dd635.inferres | 0 .../varBugs/MARLIN/a7fc1f83c81.clangres | 0 .../MARLIN/a7fc1f83c81.desugared.clangres | 10 + .../MARLIN/a7fc1f83c81.desugared.inferres | 32 +++ .../varBugs/MARLIN/a7fc1f83c81.inferres | 2 + .../varBugs/MARLIN/b8e79dce897.clangres | 0 .../MARLIN/b8e79dce897.desugared.clangres | 0 .../MARLIN/b8e79dce897.desugared.inferres | 2 + .../varBugs/MARLIN/b8e79dce897.inferres | 2 + .../varBugs/MARLIN/e30bfedce4d.clangres | 4 + .../MARLIN/e30bfedce4d.desugared.clangres | 4 + .../MARLIN/e30bfedce4d.desugared.inferres | 14 ++ .../varBugs/MARLIN/e30bfedce4d.inferres | 14 ++ .../varBugs/MARLIN/f87c80889fe.clangres | 0 .../MARLIN/f87c80889fe.desugared.clangres | 0 .../MARLIN/f87c80889fe.desugared.inferres | 2 + .../varBugs/MARLIN/f87c80889fe.inferres | 2 + .../varBugs/MARLIN/fc3c76fc164.clangres | 5 + .../MARLIN/fc3c76fc164.desugared.clangres | 0 .../MARLIN/fc3c76fc164.desugared.inferres | 2 + .../varBugs/MARLIN/fc3c76fc164.inferres | 0 .../varBugs/MARLIN/fdac8f6cece.clangres | 4 + .../MARLIN/fdac8f6cece.desugared.clangres | 0 .../MARLIN/fdac8f6cece.desugared.inferres | 2 + .../varBugs/MARLIN/fdac8f6cece.inferres | 0 fonda/cpp_testsuite/varBugs/a.out | Bin 0 -> 8376 bytes fonda/cpp_testsuite/varBugs/configs.json | 2 +- .../varBugs/infer-out/.infer_runstate.json | 1 + .../cpp_testsuite/varBugs/infer-out/bugs.txt | 1 + .../infer-out/config-impact-report.json | 1 + .../varBugs/infer-out/costs-report.json | 1 + fonda/cpp_testsuite/varBugs/infer-out/logs | 115 +++++++++++ .../varBugs/infer-out/report.json | 1 + .../varBugs/infer-out/report.txt | 0 .../varBugs/infer-out/results.db | Bin 0 -> 1310720 bytes .../varBugs/infer-out/results.db-shm | Bin 0 -> 32768 bytes .../varBugs/infer-out/results.db-wal | Bin 0 -> 1901968 bytes .../tmp/clang_command_.tmp.42174c.txt | 11 + .../tmp/clang_command_.tmp.e34e32.txt | 62 ++++++ fonda/cpp_testsuite/varBugs/runTests.py | 70 ++++++- fonda/cpp_testsuite/varBugs/summaryTable.txt | 192 +++++++++--------- src/superc/SugarC.java | 9 +- src/superc/cdesugarer/CActions.java | 2 +- src/superc/cdesugarer/desugarer.y | 2 +- 436 files changed, 2843 insertions(+), 191 deletions(-) create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/0900800fbab.clangres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/0900800fbab.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/0900800fbab.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/0900800fbab.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/0ddfa412ee9.clangres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/0ddfa412ee9.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/0ddfa412ee9.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/0ddfa412ee9.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.clangres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.clangres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/1f46088b38d.clangres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/1f46088b38d.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/1f46088b38d.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/1f46088b38d.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.clangres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/3407eccc321.clangres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/3407eccc321.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/3407eccc321.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/3407eccc321.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.clangres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/4202d5fee3e.clangres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/4202d5fee3e.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/4202d5fee3e.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/4202d5fee3e.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/4945115b2e7.clangres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/4945115b2e7.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/4945115b2e7.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/4945115b2e7.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/56d9881993f.clangres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/56d9881993f.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/56d9881993f.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/56d9881993f.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/581635e28f1.clangres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/581635e28f1.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/581635e28f1.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/581635e28f1.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/6338509eb37.clangres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/6338509eb37.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/6338509eb37.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/6338509eb37.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/664e3aac6dd.clangres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/664e3aac6dd.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/664e3aac6dd.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/664e3aac6dd.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/9327311d30f.clangres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/9327311d30f.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/9327311d30f.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/9327311d30f.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/97ecbec1237.clangres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/97ecbec1237.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/97ecbec1237.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/97ecbec1237.inferres create mode 100755 fonda/cpp_testsuite/varBugs/APACHE/a.out create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/b833f064550.clangres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/b833f064550.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/bbeb0516cf0.clangres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/bbeb0516cf0.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/bbeb0516cf0.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/bbeb0516cf0.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.clangres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.clangres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.clangres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/dbafef17dd1.clangres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/dbafef17dd1.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/dbafef17dd1.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/dbafef17dd1.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/infer-out/.infer_runstate.json create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/infer-out/bugs.txt create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/infer-out/config-impact-report.json create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/infer-out/costs-report.json create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/infer-out/logs create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/infer-out/report.json create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/infer-out/report.txt create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/infer-out/results.db create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/infer-out/results.db-shm create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/infer-out/results.db-wal create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/infer-out/tmp/clang_command_.tmp.5962e4.txt create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/infer-out/tmp/clang_command_.tmp.b9e75d.txt create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.clangres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.clangres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/192c35f6eb2.clangres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/192c35f6eb2.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/192c35f6eb2.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/192c35f6eb2.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.clangres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.clangres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.clangres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.clangres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/5cd6461b6fb.clangres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/5cd6461b6fb.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/5cd6461b6fb.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/5cd6461b6fb.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.clangres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.clangres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.clangres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.clangres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.clangres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/cc3f20b9bdf.clangres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/cc3f20b9bdf.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/cc3f20b9bdf.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/cc3f20b9bdf.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/cf1f2ace391.clangres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/cf1f2ace391.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/cf1f2ace391.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/cf1f2ace391.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/df7b6577c6a.clangres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/df7b6577c6a.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/df7b6577c6a.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/df7b6577c6a.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.clangres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.clangres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/0988c4c7fb5.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/0988c4c7fb5.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/0988c4c7fb5.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/0988c4c7fb5.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/1c17e4d4437.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/1c17e4d4437.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/1c17e4d4437.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/1c17e4d4437.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/1f758a4341a.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/1f758a4341a.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/1f758a4341a.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/1f758a4341a.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/208d89843b7.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/208d89843b7.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/208d89843b7.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/208d89843b7.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/218ad12f42e.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/218ad12f42e.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/218ad12f42e.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/218ad12f42e.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/221ac329e93.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/221ac329e93.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/221ac329e93.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/221ac329e93.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/242f1a34377.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/242f1a34377.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/242f1a34377.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/242f1a34377.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/2f02c15a5d9.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/2f02c15a5d9.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/2f02c15a5d9.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/2f02c15a5d9.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/30e053248da.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/30e053248da.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/30e053248da.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/30e053248da.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/36855dcfc98.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/36855dcfc98.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/36855dcfc98.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/36855dcfc98.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/472a474c663.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/472a474c663.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/472a474c663.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/472a474c663.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/6515e48932c.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/6515e48932c.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/6515e48932c.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/6515e48932c.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/657e9649e74.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/657e9649e74.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/657e9649e74.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/657e9649e74.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/66517915e09.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/66517915e09.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/66517915e09.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/66517915e09.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/76baeebf7df.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/76baeebf7df.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/7c6048b7c83.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/7c6048b7c83.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/7c6048b7c83.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/7c6048b7c83.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/809e660f438.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/809e660f438.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/809e660f438.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/809e660f438.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/8c8296223f3.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/8c8296223f3.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/8c8296223f3.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/8c8296223f3.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/91ea8207168.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/91ea8207168.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/91ea8207168.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/91ea8207168.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/bc8cec0dff0.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/bc8cec0dff0.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/bc8cec0dff0.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/bc8cec0dff0.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/c708c57e247.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/c708c57e247.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/c708c57e247.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/c708c57e247.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/d530db0db90.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/d530db0db90.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/d530db0db90.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/d530db0db90.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/d6c7e113959.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/d6c7e113959.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/d6c7e113959.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/d6c7e113959.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/e1fbd9210d5.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/e1fbd9210d5.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/e1fbd9210d5.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/e1fbd9210d5.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/e67bc51e574.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/e67bc51e574.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/e67bc51e574.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/e67bc51e574.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/f3d83e24154.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/f3d83e24154.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/f3d83e24154.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/f3d83e24154.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/f48ec1d7885.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/f48ec1d7885.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/f48ec1d7885.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/f48ec1d7885.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/f7ab9b407b3.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/f7ab9b407b3.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/f7ab9b407b3.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/f7ab9b407b3.inferres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/2d22902d080.clangres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/2d22902d080.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/2d22902d080.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/2d22902d080.inferres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/2db384a21d6.clangres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/2db384a21d6.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/2db384a21d6.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/2db384a21d6.inferres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/30248214c7f.clangres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/30248214c7f.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/30248214c7f.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/30248214c7f.inferres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.clangres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.inferres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.clangres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.inferres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/7336e6df070.clangres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/7336e6df070.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/7336e6df070.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/7336e6df070.inferres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.clangres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.inferres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.clangres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.inferres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.clangres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.inferres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/b8e79dce897.clangres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/b8e79dce897.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/b8e79dce897.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/b8e79dce897.inferres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.clangres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.inferres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/f87c80889fe.clangres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/f87c80889fe.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/f87c80889fe.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/f87c80889fe.inferres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/fc3c76fc164.clangres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/fc3c76fc164.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/fc3c76fc164.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/fc3c76fc164.inferres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/fdac8f6cece.clangres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/fdac8f6cece.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/fdac8f6cece.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/fdac8f6cece.inferres create mode 100755 fonda/cpp_testsuite/varBugs/a.out create mode 100644 fonda/cpp_testsuite/varBugs/infer-out/.infer_runstate.json create mode 100644 fonda/cpp_testsuite/varBugs/infer-out/bugs.txt create mode 100644 fonda/cpp_testsuite/varBugs/infer-out/config-impact-report.json create mode 100644 fonda/cpp_testsuite/varBugs/infer-out/costs-report.json create mode 100644 fonda/cpp_testsuite/varBugs/infer-out/logs create mode 100644 fonda/cpp_testsuite/varBugs/infer-out/report.json create mode 100644 fonda/cpp_testsuite/varBugs/infer-out/report.txt create mode 100644 fonda/cpp_testsuite/varBugs/infer-out/results.db create mode 100644 fonda/cpp_testsuite/varBugs/infer-out/results.db-shm create mode 100644 fonda/cpp_testsuite/varBugs/infer-out/results.db-wal create mode 100644 fonda/cpp_testsuite/varBugs/infer-out/tmp/clang_command_.tmp.42174c.txt create mode 100644 fonda/cpp_testsuite/varBugs/infer-out/tmp/clang_command_.tmp.e34e32.txt diff --git a/.gitignore b/.gitignore index 7bfef0e8..f20335c6 100644 --- a/.gitignore +++ b/.gitignore @@ -6,7 +6,6 @@ allTests.out *.o *.pyc *.plist -*.clangres /fonda/cpp_testsuite/desugarer/masterTypeCheck/binary /fonda/cpp_testsuite/desugarer/masterTypeCheck/unary /fonda/cpp_testsuite/desugarer/masterTypeCheck/other diff --git a/fonda/cpp_testsuite/varBugs/APACHE/0900800fbab.clangres b/fonda/cpp_testsuite/varBugs/APACHE/0900800fbab.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/APACHE/0900800fbab.desugared.clangres b/fonda/cpp_testsuite/varBugs/APACHE/0900800fbab.desugared.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/APACHE/0900800fbab.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/0900800fbab.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/0900800fbab.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/0900800fbab.inferres b/fonda/cpp_testsuite/varBugs/APACHE/0900800fbab.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/0900800fbab.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/0ddfa412ee9.clangres b/fonda/cpp_testsuite/varBugs/APACHE/0ddfa412ee9.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/APACHE/0ddfa412ee9.desugared.clangres b/fonda/cpp_testsuite/varBugs/APACHE/0ddfa412ee9.desugared.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/APACHE/0ddfa412ee9.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/0ddfa412ee9.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/0ddfa412ee9.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/0ddfa412ee9.inferres b/fonda/cpp_testsuite/varBugs/APACHE/0ddfa412ee9.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/0ddfa412ee9.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.clangres b/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.clangres new file mode 100644 index 00000000..152097a8 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.clangres @@ -0,0 +1,4 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.c:13:17: error: use of undeclared identifier 'SSL_PROTOCOL_TLSV1_1' + thisopt = SSL_PROTOCOL_TLSV1_1; + ^ +1 error generated. diff --git a/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.c index cf53331d..6350349f 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.c @@ -1321,7 +1321,7 @@ if (__static_condition_default_802) { int __thisopt_798;// L9 if (__static_condition_default_803) { -if ( __rand_465 ( ) % 2 )// L11 +if ( rand( ) % 2 )// L11 { { @@ -1357,7 +1357,7 @@ if (__static_condition_default_806) { int __thisopt_798;// L9 if (__static_condition_default_807) { -if ( __rand_465 ( ) % 2 )// L11 +if ( rand( ) % 2 )// L11 { { diff --git a/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.clangres b/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.clangres new file mode 100644 index 00000000..98274ace --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.clangres @@ -0,0 +1,7 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.c:1333:2: warning: Value stored to '__thisopt_798' is never read [deadcode.DeadStores] + __thisopt_798 = ( 1 << 3 ) ; // L4:L13 + ^ ~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.c:1369:2: warning: Value stored to '__thisopt_798' is never read [deadcode.DeadStores] + __thisopt_798 = ( 1 << 3 ) ; // L4:L13 + ^ ~~~~~~~~~~ +2 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.inferres new file mode 100644 index 00000000..0d9412d9 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.inferres @@ -0,0 +1,23 @@ + +APACHE/1a3c8e3d840.desugared.c:1333: error: Dead Store + The value written to &__thisopt_798 (type int) is never used. + 1331. + 1332. if (__static_condition_default_804) { + 1333. __thisopt_798 = ( 1 << 3 ) ; // L4:L13 + ^ + 1334. } + 1335. if (__static_condition_default_805) { + +APACHE/1a3c8e3d840.desugared.c:1369: error: Dead Store + The value written to &__thisopt_798 (type int) is never used. + 1367. + 1368. if (__static_condition_default_808) { + 1369. __thisopt_798 = ( 1 << 3 ) ; // L4:L13 + ^ + 1370. } + 1371. if (__static_condition_default_809) { + + +Found 2 issues + Issue Type(ISSUED_TYPE_ID): # + Dead Store(DEAD_STORE): 2 diff --git a/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.inferres b/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.clangres b/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.clangres new file mode 100644 index 00000000..27d9c35d --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.clangres @@ -0,0 +1,4 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.c:14:3: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] + apr_rmm_init(rmm_lock); // ERROR: rmm_lock uninitialized + ^~~~~~~~~~~~~~~~~~~~~~ +1 warning generated. diff --git a/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.clangres b/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.clangres new file mode 100644 index 00000000..d9373d03 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.clangres @@ -0,0 +1,10 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c:1428:2: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] + __apr_rmm_init_1093 ( __rmm_lock_1099 ) ; // L14 + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c:1431:2: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] + __apr_rmm_init_1094 ( __rmm_lock_1099 ) ; // L14 + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c:1434:2: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] + __apr_rmm_init_1095 ( __rmm_lock_1099 ) ; // L14 + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +3 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.inferres b/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/1f46088b38d.clangres b/fonda/cpp_testsuite/varBugs/APACHE/1f46088b38d.clangres new file mode 100644 index 00000000..4980b088 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/1f46088b38d.clangres @@ -0,0 +1,4 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1f46088b38d.c:14:20: error: use of undeclared identifier 'SIGPIPE' + apr_signal_block(SIGPIPE); // ERROR: SIGPIPE undeclared + ^ +1 error generated. diff --git a/fonda/cpp_testsuite/varBugs/APACHE/1f46088b38d.desugared.clangres b/fonda/cpp_testsuite/varBugs/APACHE/1f46088b38d.desugared.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/APACHE/1f46088b38d.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/1f46088b38d.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/1f46088b38d.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/1f46088b38d.inferres b/fonda/cpp_testsuite/varBugs/APACHE/1f46088b38d.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.clangres b/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.clangres new file mode 100644 index 00000000..c62ba6d3 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.clangres @@ -0,0 +1,4 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.c:16:3: warning: Potential leak of memory pointed to by 'sc' [unix.Malloc] + return; + ^~~~~~ +1 warning generated. diff --git a/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.clangres b/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.clangres new file mode 100644 index 00000000..e7f2f34e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.clangres @@ -0,0 +1,7 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c:1570:5: warning: Potential leak of memory pointed to by '__sc_1084' [unix.Malloc] +if (__static_condition_default_1093) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c:1604:5: warning: Potential leak of memory pointed to by '__sc_1085' [unix.Malloc] +if (__static_condition_default_1098) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +2 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.inferres b/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.inferres new file mode 100644 index 00000000..62be4faf --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.inferres @@ -0,0 +1,14 @@ + +APACHE/2a6cbfa00e0.c:9: error: Null Dereference + pointer `sc` last assigned on line 6 could be null and is dereferenced by call to `strcpy()` at line 9, column 3. + 7. + 8. // code making use of 'sc' + 9. strcpy(sc, "something"); + ^ + 10. + 11. #ifdef SHARED_MODULE + + +Found 1 issue + Issue Type(ISSUED_TYPE_ID): # + Null Dereference(NULL_DEREFERENCE): 1 diff --git a/fonda/cpp_testsuite/varBugs/APACHE/3407eccc321.clangres b/fonda/cpp_testsuite/varBugs/APACHE/3407eccc321.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/APACHE/3407eccc321.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/3407eccc321.desugared.c index 1b5fb758..30cd8cd3 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/3407eccc321.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/3407eccc321.desugared.c @@ -2942,7 +2942,7 @@ int (__main_2049) (void ) { if (__static_condition_default_2050) { -if ( __rand_1609 ( ) % 2 )// L11 +if ( rand( ) % 2 )// L11 { { diff --git a/fonda/cpp_testsuite/varBugs/APACHE/3407eccc321.desugared.clangres b/fonda/cpp_testsuite/varBugs/APACHE/3407eccc321.desugared.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/APACHE/3407eccc321.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/3407eccc321.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/3407eccc321.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/3407eccc321.inferres b/fonda/cpp_testsuite/varBugs/APACHE/3407eccc321.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/3407eccc321.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.clangres b/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.clangres new file mode 100644 index 00000000..f35f7adc --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.clangres @@ -0,0 +1,4 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.c:24:10: warning: Potential leak of memory pointed to by 'eckey' [unix.Malloc] + return 0; + ^ +1 warning generated. diff --git a/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c index 3938e3a5..b99c19de 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c @@ -1362,7 +1362,7 @@ if (__static_condition_default_804) { __static_type_error("type error") ; // L10 } if (__static_condition_default_805) { -if ( __rand_465 ( ) % 2 )// L11 +if ( rand( ) % 2 )// L11 { if (__static_condition_default_806) { @@ -1431,7 +1431,7 @@ if (__static_condition_default_813) { __static_type_error("type error") ; // L10 } if (__static_condition_default_814) { -if ( __rand_465 ( ) % 2 )// L11 +if ( rand( ) % 2 )// L11 { if (__static_condition_default_815) { diff --git a/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.clangres b/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.clangres new file mode 100644 index 00000000..e5dacadb --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.clangres @@ -0,0 +1,28 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1374:17: warning: Dereference of undefined pointer value [core.NullDereference] +* __eckey_798 = 30 ; // L12 +~~~~~~~~~~~~~~~~^~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1398:17: warning: Dereference of undefined pointer value [core.NullDereference] +* __eckey_798 = 15 ; // L17 +~~~~~~~~~~~~~~~~^~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1404:5: warning: Potential leak of memory pointed to by '__eckey_798' [unix.Malloc] +if (__static_condition_default_809) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1443:17: warning: Dereference of undefined pointer value [core.NullDereference] +* __eckey_798 = 30 ; // L12 +~~~~~~~~~~~~~~~~^~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1467:17: warning: Dereference of undefined pointer value [core.NullDereference] +* __eckey_798 = 15 ; // L17 +~~~~~~~~~~~~~~~~^~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1473:5: warning: Potential leak of memory pointed to by '__eckey_798' [unix.Malloc] +if (__static_condition_default_818) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1497:2: warning: Value stored to '__eckey_798' is never read [deadcode.DeadStores] + __eckey_798 = malloc (sizeof(int)) ; // L10 + ^ ~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1500:2: warning: Value stored to '__eckey_798' is never read [deadcode.DeadStores] + __eckey_798 = malloc (sizeof(int)) ; // L10 + ^ ~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1502:5: warning: Potential leak of memory pointed to by '__eckey_798' [unix.Malloc] +if (__static_condition_default_823) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +9 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.inferres new file mode 100644 index 00000000..b9cc2e83 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.inferres @@ -0,0 +1,51 @@ + +APACHE/35ae2e259e4.desugared.c:1374: error: Null Dereference + pointer `__eckey_798` last assigned on line 1359 could be null and is dereferenced at line 1374, column 1. + 1372. + 1373. + 1374. * __eckey_798 = 30 ; // L12 + ^ + 1375. } + 1376. } + +APACHE/35ae2e259e4.desugared.c:1398: error: Null Dereference + pointer `__eckey_798` last assigned on line 1359 could be null and is dereferenced at line 1398, column 1. + 1396. + 1397. + 1398. * __eckey_798 = 15 ; // L17 + ^ + 1399. } + 1400. } + +APACHE/35ae2e259e4.desugared.c:1443: error: Null Dereference + pointer `__eckey_798` last assigned on line 1428 could be null and is dereferenced at line 1443, column 1. + 1441. + 1442. + 1443. * __eckey_798 = 30 ; // L12 + ^ + 1444. } + 1445. } + +APACHE/35ae2e259e4.desugared.c:1467: error: Null Dereference + pointer `__eckey_798` last assigned on line 1428 could be null and is dereferenced at line 1467, column 1. + 1465. + 1466. + 1467. * __eckey_798 = 15 ; // L17 + ^ + 1468. } + 1469. } + +APACHE/35ae2e259e4.desugared.c:1497: error: Dead Store + The value written to &__eckey_798 (type int*) is never used. + 1495. + 1496. if (__static_condition_default_821) { + 1497. __eckey_798 = malloc (sizeof(int)) ; // L10 + ^ + 1498. } + 1499. if (__static_condition_default_822) { + + +Found 6 issues (console output truncated to 5, see '/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/infer-out/report.txt' for the full list) + Issue Type(ISSUED_TYPE_ID): # + Null Dereference(NULL_DEREFERENCE): 4 + Dead Store(DEAD_STORE): 2 diff --git a/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.inferres b/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.inferres new file mode 100644 index 00000000..cd1357a1 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.inferres @@ -0,0 +1,23 @@ + +APACHE/35ae2e259e4.c:12: error: Null Dereference + pointer `eckey` last assigned on line 10 could be null and is dereferenced at line 12, column 5. + 10. eckey = malloc(sizeof(int)); + 11. if (rand() % 2) { + 12. *eckey = 30; + ^ + 13. } else { + 14. #if defined(SSL_CTX_set_ecdh_auto) + +APACHE/35ae2e259e4.c:17: error: Null Dereference + pointer `eckey` last assigned on line 10 could be null and is dereferenced at line 17, column 5. + 15. // do something + 16. #else + 17. *eckey = 15; + ^ + 18. #endif + 19. } + + +Found 2 issues + Issue Type(ISSUED_TYPE_ID): # + Null Dereference(NULL_DEREFERENCE): 2 diff --git a/fonda/cpp_testsuite/varBugs/APACHE/4202d5fee3e.clangres b/fonda/cpp_testsuite/varBugs/APACHE/4202d5fee3e.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/APACHE/4202d5fee3e.desugared.clangres b/fonda/cpp_testsuite/varBugs/APACHE/4202d5fee3e.desugared.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/APACHE/4202d5fee3e.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/4202d5fee3e.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/4202d5fee3e.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/4202d5fee3e.inferres b/fonda/cpp_testsuite/varBugs/APACHE/4202d5fee3e.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/4202d5fee3e.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/4945115b2e7.clangres b/fonda/cpp_testsuite/varBugs/APACHE/4945115b2e7.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/APACHE/4945115b2e7.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/4945115b2e7.desugared.c index 91c7e59e..6ad64a5e 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/4945115b2e7.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/4945115b2e7.desugared.c @@ -3001,9 +3001,9 @@ if (__static_condition_default_2051) { -__FILE_59 * (__dbg_2036)= __fopen_344 ("con","w");// L8 +__FILE_59 * (__dbg_2036)= fopen ("con","w");// L8 -__FILE_59 * (__dbg_2038)= __fopen_354 ("con","w");// L8 +__FILE_59 * (__dbg_2038)= fopen ("con","w");// L8 if (__static_condition_default_2040) { __static_type_error("invalid declaration of dbg under this presence condition"); @@ -3013,9 +3013,9 @@ if (__static_condition_default_2041) { __static_type_error("invalid declaration of dbg under this presence condition"); } -__FILE_59 * (__dbg_2042)= __fopen_344 ("/dev/tty","w");// L10 +__FILE_59 * (__dbg_2042)= fopen ("/dev/tty","w");// L10 -__FILE_59 * (__dbg_2044)= __fopen_354 ("/dev/tty","w");// L10 +__FILE_59 * (__dbg_2044)= fopen ("/dev/tty","w");// L10 if (__static_condition_default_2046) { __static_type_error("invalid declaration of dbg under this presence condition"); @@ -3041,28 +3041,28 @@ if (__static_condition_default_2056) { __static_type_error("type error") ; // L15 } if (__static_condition_default_2057) { -if ( __rand_1609 ( ) % 2 )// L18 +if ( rand( ) % 2 )// L18 { return ;// L19 } } if (__static_condition_default_2058) { - __fclose_330 ( __dbg_2036 ) ; // L22 +fclose ( __dbg_2036 ) ; // L22 } if (__static_condition_default_2059) { - __fclose_330 ( __dbg_2038 ) ; // L22 +fclose ( __dbg_2038 ) ; // L22 } if (__static_condition_default_2060) { - __fclose_330 ( __dbg_2042 ) ; // L22 +fclose ( __dbg_2042 ) ; // L22 } if (__static_condition_default_2061) { - __fclose_330 ( __dbg_2044 ) ; // L22 +fclose ( __dbg_2044 ) ; // L22 } if (__static_condition_default_2062) { __static_type_error("type error") ; // L22 } if (__static_condition_default_2063) { -if ( __rand_1609 ( ) % 2 )// L18 +if ( rand( ) % 2 )// L18 { return ;// L19 } @@ -3083,9 +3083,9 @@ if (__static_condition_default_2064) { -__FILE_59 * (__dbg_2037)= __fopen_346 ("con","w");// L8 +__FILE_59 * (__dbg_2037)= fopen ("con","w");// L8 -__FILE_59 * (__dbg_2039)= __fopen_356 ("con","w");// L8 +__FILE_59 * (__dbg_2039)= fopen ("con","w");// L8 if (__static_condition_default_2040) { __static_type_error("invalid declaration of dbg under this presence condition"); @@ -3095,9 +3095,9 @@ if (__static_condition_default_2041) { __static_type_error("invalid declaration of dbg under this presence condition"); } -__FILE_59 * (__dbg_2043)= __fopen_346 ("/dev/tty","w");// L10 +__FILE_59 * (__dbg_2043)= fopen ("/dev/tty","w");// L10 -__FILE_59 * (__dbg_2045)= __fopen_356 ("/dev/tty","w");// L10 +__FILE_59 * (__dbg_2045)= fopen ("/dev/tty","w");// L10 if (__static_condition_default_2046) { __static_type_error("invalid declaration of dbg under this presence condition"); @@ -3123,28 +3123,28 @@ if (__static_condition_default_2069) { __static_type_error("type error") ; // L15 } if (__static_condition_default_2070) { -if ( __rand_1609 ( ) % 2 )// L18 +if ( rand( ) % 2 )// L18 { return ;// L19 } } if (__static_condition_default_2071) { - __fclose_330 ( __dbg_2037 ) ; // L22 +fclose ( __dbg_2037 ) ; // L22 } if (__static_condition_default_2072) { - __fclose_330 ( __dbg_2039 ) ; // L22 +fclose ( __dbg_2039 ) ; // L22 } if (__static_condition_default_2073) { - __fclose_330 ( __dbg_2043 ) ; // L22 +fclose ( __dbg_2043 ) ; // L22 } if (__static_condition_default_2074) { - __fclose_330 ( __dbg_2045 ) ; // L22 +fclose ( __dbg_2045 ) ; // L22 } if (__static_condition_default_2075) { __static_type_error("type error") ; // L22 } if (__static_condition_default_2076) { -if ( __rand_1609 ( ) % 2 )// L18 +if ( rand( ) % 2 )// L18 { return ;// L19 } @@ -3165,13 +3165,13 @@ if (__static_condition_default_2077) { -__FILE_59 * (__dbg_2036)= __fopen_344 ("con","w");// L8 +__FILE_59 * (__dbg_2036)= fopen ("con","w");// L8 -__FILE_59 * (__dbg_2037)= __fopen_346 ("con","w");// L8 +__FILE_59 * (__dbg_2037)= fopen ("con","w");// L8 -__FILE_59 * (__dbg_2038)= __fopen_354 ("con","w");// L8 +__FILE_59 * (__dbg_2038)= fopen ("con","w");// L8 -__FILE_59 * (__dbg_2039)= __fopen_356 ("con","w");// L8 +__FILE_59 * (__dbg_2039)= fopen ("con","w");// L8 if (__static_condition_default_2040) { __static_type_error("invalid declaration of dbg under this presence condition"); @@ -3181,13 +3181,13 @@ if (__static_condition_default_2041) { __static_type_error("invalid declaration of dbg under this presence condition"); } -__FILE_59 * (__dbg_2042)= __fopen_344 ("/dev/tty","w");// L10 +__FILE_59 * (__dbg_2042)= fopen ("/dev/tty","w");// L10 -__FILE_59 * (__dbg_2043)= __fopen_346 ("/dev/tty","w");// L10 +__FILE_59 * (__dbg_2043)= fopen ("/dev/tty","w");// L10 -__FILE_59 * (__dbg_2044)= __fopen_354 ("/dev/tty","w");// L10 +__FILE_59 * (__dbg_2044)= fopen ("/dev/tty","w");// L10 -__FILE_59 * (__dbg_2045)= __fopen_356 ("/dev/tty","w");// L10 +__FILE_59 * (__dbg_2045)= fopen ("/dev/tty","w");// L10 if (__static_condition_default_2046) { __static_type_error("invalid declaration of dbg under this presence condition"); @@ -3252,52 +3252,52 @@ if (__static_condition_default_2095) { __static_type_error("invalid type found in if statement"); } if (__static_condition_default_2096) { - __fclose_330 ( __dbg_2036 ) ; // L22 +fclose ( __dbg_2036 ) ; // L22 } if (__static_condition_default_2097) { - __fclose_330 ( __dbg_2037 ) ; // L22 +fclose ( __dbg_2037 ) ; // L22 } if (__static_condition_default_2098) { - __fclose_330 ( __dbg_2038 ) ; // L22 +fclose ( __dbg_2038 ) ; // L22 } if (__static_condition_default_2099) { - __fclose_330 ( __dbg_2039 ) ; // L22 +fclose ( __dbg_2039 ) ; // L22 } if (__static_condition_default_2100) { - __fclose_330 ( __dbg_2042 ) ; // L22 +fclose ( __dbg_2042 ) ; // L22 } if (__static_condition_default_2101) { - __fclose_330 ( __dbg_2043 ) ; // L22 +fclose ( __dbg_2043 ) ; // L22 } if (__static_condition_default_2102) { - __fclose_330 ( __dbg_2044 ) ; // L22 +fclose ( __dbg_2044 ) ; // L22 } if (__static_condition_default_2103) { - __fclose_330 ( __dbg_2045 ) ; // L22 +fclose ( __dbg_2045 ) ; // L22 } if (__static_condition_default_2104) { - __fclose_332 ( __dbg_2036 ) ; // L22 +fclose ( __dbg_2036 ) ; // L22 } if (__static_condition_default_2105) { - __fclose_332 ( __dbg_2037 ) ; // L22 +fclose ( __dbg_2037 ) ; // L22 } if (__static_condition_default_2106) { - __fclose_332 ( __dbg_2038 ) ; // L22 +fclose ( __dbg_2038 ) ; // L22 } if (__static_condition_default_2107) { - __fclose_332 ( __dbg_2039 ) ; // L22 +fclose ( __dbg_2039 ) ; // L22 } if (__static_condition_default_2108) { - __fclose_332 ( __dbg_2042 ) ; // L22 +fclose ( __dbg_2042 ) ; // L22 } if (__static_condition_default_2109) { - __fclose_332 ( __dbg_2043 ) ; // L22 +fclose ( __dbg_2043 ) ; // L22 } if (__static_condition_default_2110) { - __fclose_332 ( __dbg_2044 ) ; // L22 +fclose ( __dbg_2044 ) ; // L22 } if (__static_condition_default_2111) { - __fclose_332 ( __dbg_2045 ) ; // L22 +fclose ( __dbg_2045 ) ; // L22 } if (__static_condition_default_2112) { __static_type_error("type error") ; // L22 diff --git a/fonda/cpp_testsuite/varBugs/APACHE/4945115b2e7.desugared.clangres b/fonda/cpp_testsuite/varBugs/APACHE/4945115b2e7.desugared.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/APACHE/4945115b2e7.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/4945115b2e7.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/4945115b2e7.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/4945115b2e7.inferres b/fonda/cpp_testsuite/varBugs/APACHE/4945115b2e7.inferres new file mode 100644 index 00000000..e25320ee --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/4945115b2e7.inferres @@ -0,0 +1,24 @@ + +APACHE/4945115b2e7.c:15: error: Null Dereference + pointer `dbg` last assigned on line 10 could be null and is dereferenced by call to `fprintf()` at line 15, column 3. + 13. + 14. #ifdef DEBUG_CGI + 15. fprintf(dbg, "Environment\n"); + ^ + 16. #endif + 17. + +APACHE/4945115b2e7.c:19: error: Resource Leak + resource of type `_IO_FILE` acquired by call to `fopen()` at line 10, column 15 is not released after line 19, column 5. + 17. + 18. if(rand() % 2) + 19. return; // ERROR: dbg is leaked + ^ + 20. + 21. #ifdef DEBUG_CGI + + +Found 2 issues + Issue Type(ISSUED_TYPE_ID): # + Resource Leak(RESOURCE_LEAK): 1 + Null Dereference(NULL_DEREFERENCE): 1 diff --git a/fonda/cpp_testsuite/varBugs/APACHE/56d9881993f.clangres b/fonda/cpp_testsuite/varBugs/APACHE/56d9881993f.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/APACHE/56d9881993f.desugared.clangres b/fonda/cpp_testsuite/varBugs/APACHE/56d9881993f.desugared.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/APACHE/56d9881993f.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/56d9881993f.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/56d9881993f.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/56d9881993f.inferres b/fonda/cpp_testsuite/varBugs/APACHE/56d9881993f.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/56d9881993f.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/581635e28f1.clangres b/fonda/cpp_testsuite/varBugs/APACHE/581635e28f1.clangres new file mode 100644 index 00000000..ad79bfc0 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/581635e28f1.clangres @@ -0,0 +1,4 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/581635e28f1.c:7:16: error: use of undeclared identifier 'APR_INET6' + int family = APR_INET6; + ^ +1 error generated. diff --git a/fonda/cpp_testsuite/varBugs/APACHE/581635e28f1.desugared.clangres b/fonda/cpp_testsuite/varBugs/APACHE/581635e28f1.desugared.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/APACHE/581635e28f1.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/581635e28f1.desugared.inferres new file mode 100644 index 00000000..4681ad10 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/581635e28f1.desugared.inferres @@ -0,0 +1,14 @@ + +APACHE/581635e28f1.desugared.c:27: error: Dead Store + The value written to &__family_0 (type int) is never used. + 25. + 26. + 27. int __family_0= 6;// L7 + ^ + 28. + 29. if (__static_condition_default_1) { + + +Found 1 issue + Issue Type(ISSUED_TYPE_ID): # + Dead Store(DEAD_STORE): 1 diff --git a/fonda/cpp_testsuite/varBugs/APACHE/581635e28f1.inferres b/fonda/cpp_testsuite/varBugs/APACHE/581635e28f1.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/APACHE/6338509eb37.clangres b/fonda/cpp_testsuite/varBugs/APACHE/6338509eb37.clangres new file mode 100644 index 00000000..13d694f7 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/6338509eb37.clangres @@ -0,0 +1,4 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/6338509eb37.c:9:7: error: use of undeclared identifier 'fips' + if (fips == 0) + ^ +1 error generated. diff --git a/fonda/cpp_testsuite/varBugs/APACHE/6338509eb37.desugared.clangres b/fonda/cpp_testsuite/varBugs/APACHE/6338509eb37.desugared.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/APACHE/6338509eb37.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/6338509eb37.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/6338509eb37.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/6338509eb37.inferres b/fonda/cpp_testsuite/varBugs/APACHE/6338509eb37.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/APACHE/664e3aac6dd.clangres b/fonda/cpp_testsuite/varBugs/APACHE/664e3aac6dd.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/APACHE/664e3aac6dd.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/664e3aac6dd.desugared.c index 7751ab9a..cf08fffc 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/664e3aac6dd.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/664e3aac6dd.desugared.c @@ -1541,7 +1541,7 @@ char __buffer_1084[1024];// L7 int __i_1085;// L9 if (__static_condition_default_1088) { -if ( __rand_465 ( ) % 2 )// L10 +if ( rand( ) % 2 )// L10 { { diff --git a/fonda/cpp_testsuite/varBugs/APACHE/664e3aac6dd.desugared.clangres b/fonda/cpp_testsuite/varBugs/APACHE/664e3aac6dd.desugared.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/APACHE/664e3aac6dd.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/664e3aac6dd.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/664e3aac6dd.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/664e3aac6dd.inferres b/fonda/cpp_testsuite/varBugs/APACHE/664e3aac6dd.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/664e3aac6dd.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/9327311d30f.clangres b/fonda/cpp_testsuite/varBugs/APACHE/9327311d30f.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/APACHE/9327311d30f.desugared.clangres b/fonda/cpp_testsuite/varBugs/APACHE/9327311d30f.desugared.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/APACHE/9327311d30f.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/9327311d30f.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/9327311d30f.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/9327311d30f.inferres b/fonda/cpp_testsuite/varBugs/APACHE/9327311d30f.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/9327311d30f.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/97ecbec1237.clangres b/fonda/cpp_testsuite/varBugs/APACHE/97ecbec1237.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/APACHE/97ecbec1237.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/97ecbec1237.desugared.c index 7ea8707f..1ba13b03 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/97ecbec1237.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/97ecbec1237.desugared.c @@ -1465,7 +1465,7 @@ int (__main_821) (void ) { if (__static_condition_default_822) { -if ( __rand_465 ( ) % 2 )// L40 +if ( rand( ) % 2 )// L40 { { diff --git a/fonda/cpp_testsuite/varBugs/APACHE/97ecbec1237.desugared.clangres b/fonda/cpp_testsuite/varBugs/APACHE/97ecbec1237.desugared.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/APACHE/97ecbec1237.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/97ecbec1237.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/97ecbec1237.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/97ecbec1237.inferres b/fonda/cpp_testsuite/varBugs/APACHE/97ecbec1237.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/97ecbec1237.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/a.out b/fonda/cpp_testsuite/varBugs/APACHE/a.out new file mode 100755 index 0000000000000000000000000000000000000000..93c4d7ff21894cf74ee9c7733f7c5c860420efea GIT binary patch literal 7928 zcmeHMU2Gd!6~6W~KmCd0-EC>MUDQDcDHUWkDc#hi-Q95#rxW3}q3b{qq&JQ|Ni6v% zYmXrTx^$K83ab<>#6$OCMJ1ki;75pu0@BhdtIhI67a>srD+RPg6|@kvP(_H=oO9 z2wm}rL)Calu|TI(hv_XEV3jE2Fg(Of5pIfbOsizil;?+Y!z)4aO9V~ekT;PCUELcL zZLy8tcG3z*lT5UkO3w7S;)GzzxQ_vjrcM_BnuJMxhQ`}0FW;m2G3E3;naxZO9)2>L z?#pKK<%Pb5$Y9^#VWU(q4yk#gf3!VuYC?^K>rJUpJnHyTg8%Tg6YL&sVS5l{dJDOL zI8zwbppX*#vg9O-j?5)9d2u2>HZ&{`8HbFgKs%c&RlN)USqQp2kU*&z7?WlV% zjkVT2rFxiqwBxq!k$dNDE#2+3F14NCr3>rgbthQ6X)V3pxy&#zaBr;g);X*4J8S8k zweiH*%5@WVfVFbt<~AfNSAo>_3YLcj`iv_fA-q+jm~5)oO3F{R||5$z_TUqiV#6W|M!cz~FAo$Xk{3>(-^%`ijaq zc&^WArmFNycf%{Of2fIEI=^=3O&H}GCL2;0_L_Ge5YbOWKR#CZWppB%h+qCde!C8n zyWEHLxoG9VSml2F;BB=AHy&tr3J+^F>*75}ANV!L6R-R|Ub#O~`E#_k`#09oa=<$J zcKHvuMxUCDemXiCJr|YB)kcKx!qO>!w2A?kLtwvlECS)-o;VIeB!FgtUI6+bi2dt8 z<3N7^^b0_L0rW1=Ctyyyp^q)_xiccL5Dx6$)zMiEbcAvL;k$74L9O;dG=SFH*4?XU z`wrOh-b210t}4W#aM4is<=}8v`)L>e4q28g84t8Ka6zWvZ5pJkA!4JoV z?zY-i2DUP=m4U4cY-M081OLAnn1}iln@N;wVy3&47HSF2RJ|_ZN9dgMIPrWg+fO{7 ztM(Cpmd;^Vw_s!a-yYTq$S(v_ z2X#z}pU1`83L6{_RAW4pIVv8V?4it4Jm+JL_#V;|{C`IH9Q*GEJTW}{5xsX}x}0~) z`Vr$PqrdONWyKA=Fc2~N4vBIlqTkegrxJ zc&a%b91q(lTmd+p`16wkIr``K8rou8gexF6=J^W9TgAWGyuP9Qgv3kjCiI$HD?i^> zCfyt2d=2CQv2h(&$e!P)Ji@P3XXC!Qr~GVOUkxVkDC7aZMquN!+cA*qa1!;e`(q#v zgPilMKyd3)em3s^eM-(&4SJOP`2CN9TyL1wdlMjkB)D7XzWp|ha?yCcwh`iakmJ1Y z^9nX~wgvhk$uE$c&)Po(T^ROHzt8_gv=8nO*EJI?8u@va{8UNKXZKe@j(+_4`4-t< zrE%3+9Q=I;;B{$(W3t8j%vXCcCtdBcD7KJvlbqtWjU?Km^|uWy~TE*2ozl zPsC3TMdR}H=;(8?giJ(-;xY89zW1d{WfifIb~@=KS={&xXqwI60ny6+4hXhQ9|a+2 zrGlJG=F?eQ$g$I4mCod4xnx7gjnQy2Vx~|KGM$x0J6lL49UDD5nUtK*08~zwN;HJ} z5GiHie7^TIWlbiwmga z3g8QF#(Wk!t}~dkFkpk_VAH5)5k8z#B z-|Ka+G4%O;!Quhv+=tqY@e4sysTN4U<1>!yL}diGV{l=u$#||?u8_bYL;M>6V`qF1 z$%lbza4~*0XaWb{2T2f7T;t}S|3^WEwJ77c4(dUt(Ar&6pEuhvJqvoQZJF0KQz3N1 z>xy&hZ*Tl07PHX7+%VoGyh(Vj8U6X=`9BX>^viMbd19XMdqL-I?1yEag^m}`@8>Gv zzmG~!3w!$5Jr9=`&-L60{cpqP0EYR;Um`sJm%(-4IN|;F%rm`2c+MZ!hY7+T=Yfeb zj>WI|@LWe$3BS&UM0x+Q_?ytd+KbXvuQ&OBB)>iLOuq}*ZV#U8uCw$%8{2`2YRohJ zF-URkd3>&4`G2}9tshON{`~Mdz7AM4VLaElYZw$XwsX10^T*@=6ck>3y&fhY@6*lj zKlkCezUd+SX5+KJThPH+IDW1RdI`vJvOT4PS@AaXP}X0UxE;nn^()[]{}$\\\n", c)) { + 42. flags |= T_ESCAPE_SHELL_CMD; + ^ + 43. } + 44. #endif + + +Found 1 issue + Issue Type(ISSUED_TYPE_ID): # + Dead Store(DEAD_STORE): 1 diff --git a/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.clangres b/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.clangres new file mode 100644 index 00000000..531b4333 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.clangres @@ -0,0 +1,7 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.c:11:3: error: use of undeclared identifier 'limits' + limits = (rand() % 2) ? 1 : 0; // ERROR: limits not declared + ^ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.c:12:16: error: use of undeclared identifier 'limits' + printf("%d", limits); + ^ +2 errors generated. diff --git a/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.desugared.c index 4888b72f..ab96aa5b 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.desugared.c @@ -2922,7 +2922,7 @@ if (__static_condition_default_2042) { if (__static_condition_default_2043) { - __limits_2036 = ( __rand_1609 ( ) % 2 ) ? 1 : 0 ; // L11 + __limits_2036 = ( rand( ) % 2 ) ? 1 : 0 ; // L11 } if (__static_condition_default_2044) { __static_type_error("type error") ; // L11 diff --git a/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.desugared.clangres b/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.desugared.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.inferres b/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.clangres b/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.clangres new file mode 100644 index 00000000..d293a64f --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.clangres @@ -0,0 +1,4 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.c:21:1: warning: Potential leak of memory pointed to by 'buf' [unix.Malloc] +} +^ +1 warning generated. diff --git a/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.clangres b/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.clangres new file mode 100644 index 00000000..e58c0232 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.clangres @@ -0,0 +1,37 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2920:10: warning: Value stored to '__buf_2043' during its initialization is never read [deadcode.DeadStores] +char * (__buf_2043)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2037 ,sizeof(char)));// L16 + ^~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2922:10: warning: Value stored to '__buf_2044' during its initialization is never read [deadcode.DeadStores] +char * (__buf_2044)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2038 ,sizeof(char)));// L16 + ^~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2922:62: warning: Potential leak of memory pointed to by '__buf_2043' [unix.Malloc] +char * (__buf_2044)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2038 ,sizeof(char)));// L16 + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2924:62: warning: Potential leak of memory pointed to by '__buf_2044' [unix.Malloc] +char * (__buf_2045)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2036 ,sizeof(char)));// L16 + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2928:10: warning: Value stored to '__buf_2047' during its initialization is never read [deadcode.DeadStores] +char * (__buf_2047)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2036 ,sizeof(char)));// L16 + ^~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2930:10: warning: Value stored to '__buf_2048' during its initialization is never read [deadcode.DeadStores] +char * (__buf_2048)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2038 ,sizeof(char)));// L16 + ^~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2930:62: warning: Potential leak of memory pointed to by '__buf_2047' [unix.Malloc] +char * (__buf_2048)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2038 ,sizeof(char)));// L16 + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2936:5: warning: Potential leak of memory pointed to by '__buf_2048' [unix.Malloc] +if (__static_condition_default_2053) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2939:5: warning: Potential leak of memory pointed to by '__buf_2041' [unix.Malloc] +if (__static_condition_default_2054) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2942:5: warning: Potential leak of memory pointed to by '__buf_2042' [unix.Malloc] +if (__static_condition_default_2055) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2945:5: warning: Potential leak of memory pointed to by '__buf_2045' [unix.Malloc] +if (__static_condition_default_2056) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2948:5: warning: Potential leak of memory pointed to by '__buf_2046' [unix.Malloc] +if (__static_condition_default_2057) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +12 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.inferres new file mode 100644 index 00000000..4b5f1c55 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.inferres @@ -0,0 +1,41 @@ + +APACHE/d05e574ec26.desugared.c:2920: error: Dead Store + The value written to &__buf_2043 (type char*) is never used. + 2918. char * (__buf_2042)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2038 ,sizeof(char)));// L16 + 2919. + 2920. char * (__buf_2043)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2037 ,sizeof(char)));// L16 + ^ + 2921. + 2922. char * (__buf_2044)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2038 ,sizeof(char)));// L16 + +APACHE/d05e574ec26.desugared.c:2922: error: Dead Store + The value written to &__buf_2044 (type char*) is never used. + 2920. char * (__buf_2043)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2037 ,sizeof(char)));// L16 + 2921. + 2922. char * (__buf_2044)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2038 ,sizeof(char)));// L16 + ^ + 2923. + 2924. char * (__buf_2045)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2036 ,sizeof(char)));// L16 + +APACHE/d05e574ec26.desugared.c:2928: error: Dead Store + The value written to &__buf_2047 (type char*) is never used. + 2926. char * (__buf_2046)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2038 ,sizeof(char)));// L16 + 2927. + 2928. char * (__buf_2047)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2036 ,sizeof(char)));// L16 + ^ + 2929. + 2930. char * (__buf_2048)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2038 ,sizeof(char)));// L16 + +APACHE/d05e574ec26.desugared.c:2930: error: Dead Store + The value written to &__buf_2048 (type char*) is never used. + 2928. char * (__buf_2047)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2036 ,sizeof(char)));// L16 + 2929. + 2930. char * (__buf_2048)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2038 ,sizeof(char)));// L16 + ^ + 2931. + 2932. if (__static_condition_default_2049) { + + +Found 4 issues + Issue Type(ISSUED_TYPE_ID): # + Dead Store(DEAD_STORE): 4 diff --git a/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.inferres b/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/dbafef17dd1.clangres b/fonda/cpp_testsuite/varBugs/APACHE/dbafef17dd1.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/APACHE/dbafef17dd1.desugared.clangres b/fonda/cpp_testsuite/varBugs/APACHE/dbafef17dd1.desugared.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/APACHE/dbafef17dd1.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/dbafef17dd1.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/dbafef17dd1.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/dbafef17dd1.inferres b/fonda/cpp_testsuite/varBugs/APACHE/dbafef17dd1.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/dbafef17dd1.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/infer-out/.infer_runstate.json b/fonda/cpp_testsuite/varBugs/APACHE/infer-out/.infer_runstate.json new file mode 100644 index 00000000..9a2d18b4 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/infer-out/.infer_runstate.json @@ -0,0 +1 @@ +{"run_sequence":[{"date":"2022-03-21 00:19:17.214595-05:00","command":"run","infer_version":{"major":1,"minor":1,"patch":0,"commit":"unknown"}}],"results_dir_format":"db_filename: infer-out/results.db\ndb_schema: \n CREATE TABLE IF NOT EXISTS procedures\n ( proc_uid TEXT PRIMARY KEY NOT NULL\n , proc_name BLOB NOT NULL\n , attr_kind INTEGER NOT NULL\n , source_file TEXT NOT NULL\n , proc_attributes BLOB NOT NULL\n , cfg BLOB\n , callees BLOB NOT NULL\n )\n ;\n\n CREATE TABLE IF NOT EXISTS source_files\n ( source_file TEXT PRIMARY KEY\n , type_environment BLOB NOT NULL\n , integer_type_widths BLOB\n , procedure_names BLOB NOT NULL\n , freshly_captured INT NOT NULL )\n ;\n\n CREATE TABLE IF NOT EXISTS specs\n ( proc_uid TEXT PRIMARY KEY NOT NULL\n , proc_name BLOB NOT NULL\n , analysis_summary BLOB NOT NULL\n , report_summary BLOB NOT NULL\n )\n ;\n\n CREATE TABLE IF NOT EXISTS model_specs\n ( proc_uid TEXT PRIMARY KEY NOT NULL\n , proc_name BLOB NOT NULL\n , analysis_summary BLOB NOT NULL\n , report_summary BLOB NOT NULL\n )\n ","should_merge_capture":false} \ No newline at end of file diff --git a/fonda/cpp_testsuite/varBugs/APACHE/infer-out/bugs.txt b/fonda/cpp_testsuite/varBugs/APACHE/infer-out/bugs.txt new file mode 100644 index 00000000..f77b18e4 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/infer-out/bugs.txt @@ -0,0 +1 @@ +The contents of this file have moved to report.txt. diff --git a/fonda/cpp_testsuite/varBugs/APACHE/infer-out/config-impact-report.json b/fonda/cpp_testsuite/varBugs/APACHE/infer-out/config-impact-report.json new file mode 100644 index 00000000..fe51488c --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/infer-out/config-impact-report.json @@ -0,0 +1 @@ +[] diff --git a/fonda/cpp_testsuite/varBugs/APACHE/infer-out/costs-report.json b/fonda/cpp_testsuite/varBugs/APACHE/infer-out/costs-report.json new file mode 100644 index 00000000..fe51488c --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/infer-out/costs-report.json @@ -0,0 +1 @@ +[] diff --git a/fonda/cpp_testsuite/varBugs/APACHE/infer-out/logs b/fonda/cpp_testsuite/varBugs/APACHE/infer-out/logs new file mode 100644 index 00000000..fcc3fb0c --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/infer-out/logs @@ -0,0 +1,114 @@ +[7231][ debug] Loading models took 16.223ms +[7232][ debug] Sqlite write daemon: starting up +[7232][ debug] Sqlite write daemon: set up complete, waiting for connections +[7231][environment] CWD = /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE +[7231][environment] No .inferconfig file found +[7231][environment] Project root = /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE +[7231][environment] INFER_ARGS = +[7231][environment] command line arguments: infer -- clang -c test.c +[7231][environment] Available memory at startup: 29150 MB +[7231][environment] Active checkers: self-in-block (C/C++/ObjC), starvation (C/C++/ObjC, Java), uninit (C/C++/ObjC), siof (C/C++/ObjC), dotnet-resource-leak (C#/.Net), racerd (C/C++/ObjC, Java), liveness (C/C++/ObjC), inefficient-keyset-iterator (Java), fragment-retains-view (Java), biabduction (C/C++/ObjC, Java, C#/.Net) +[7231][environment] Scheduler: file +[7231][environment] Cores used: 10 +[7231][environment] Infer version v1.1.0-unknown +[7231][environment] Copyright 2009 - present Facebook. All Rights Reserved. +[7231][environment] +[7231][ progress] Capturing in make/cc mode... +[7231][ debug] +[7231][ debug] *** Beginning capture of file /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/test.c *** +[7231][ debug] Loading the following linters files: /usr/local/lib/infer/infer/bin/../lib/linter_rules/linters.al +[7231][ debug] Elapsed: 237ms. +[7231][ debug] GC stats for capture: +[7231][ debug] minor_words: 2.40691e+07 +[7231][ debug] promoted_words: 1.21396e+06 +[7231][ debug] major_words: 1.34252e+06 +[7231][ debug] minor_collections: 26 +[7231][ debug] major_collections: 2 +[7231][ debug] compactions: 0 +[7231][ debug] top_heap_words: 1531904 +[7231][ debug] +[7231][environment] Parallel jobs: 10 +[7231][ progress] Found 1 source file to analyze in /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/infer-out +[7237][ progress] test.c starting +[7237][ progress] test.c DONE +[7231][ debug] Backend stats: +[7231][ debug] summary_file_try_load= 4613 +[7231][ debug] summary_read_from_disk= 0 +[7231][ debug] summary_cache_hits= 631 (12%) +[7231][ debug] summary_cache_misses= 4613 +[7231][ debug] ondemand_procs_analyzed= 12 +[7231][ debug] ondemand_local_cache_hits= 4094 (99%) +[7231][ debug] ondemand_local_cache_misses= 20 +[7231][ debug] proc_locker_lock_time_user= 0.00000000 +[7231][ debug] proc_locker_lock_time_sys= 0.00000000 +[7231][ debug] proc_locker_lock_time_wall= 0.00000000 +[7231][ debug] proc_locker_unlock_time_user= 0.00000000 +[7231][ debug] proc_locker_unlock_time_sys= 0.00000000 +[7231][ debug] proc_locker_unlock_time_wall= 0.00000000 +[7231][ debug] restart_scheduler_useful_time_user= 0.00000000 +[7231][ debug] restart_scheduler_useful_time_sys= 0.00000000 +[7231][ debug] restart_scheduler_useful_time_wall= 0.00000000 +[7231][ debug] restart_scheduler_total_time_user= 0.00000000 +[7231][ debug] restart_scheduler_total_time_sys= 0.00000000 +[7231][ debug] restart_scheduler_total_time_wall= 0.00000000 +[7231][ debug] +[7231][ debug] GC stats for backend_stats.gc_stats_add.: +[7231][ debug] minor_words: 6.50506e+09 +[7231][ debug] promoted_words: 2.54885e+07 +[7231][ debug] major_words: 2.61487e+07 +[7231][ debug] minor_collections: 6213 +[7231][ debug] major_collections: 19 +[7231][ debug] compactions: 0 +[7231][ debug] top_heap_words: 20985344 +[7231][ debug] +[7231][ debug] GC stats for backend_stats.gc_stats_max.: +[7231][ debug] minor_words: 6.50506e+09 +[7231][ debug] promoted_words: 2.54885e+07 +[7231][ debug] major_words: 2.61487e+07 +[7231][ debug] minor_collections: 6213 +[7231][ debug] major_collections: 19 +[7231][ debug] compactions: 0 +[7231][ debug] top_heap_words: 7198208 +[7231][ debug] +[7231][ debug] Average over 10 processes +[7231][ debug] GC stats for backend_stats.gc_stats_average.: +[7231][ debug] minor_words: 6.50506e+08 +[7231][ debug] promoted_words: 2.54885e+06 +[7231][ debug] major_words: 2.61487e+06 +[7231][ debug] minor_collections: 621 +[7231][ debug] major_collections: 1 +[7231][ debug] compactions: 0 +[7231][ debug] top_heap_words: 2098534 +[7231][ debug] +[7231][ debug] Analysis phase finished in 10.496s +[7231][ debug] backend_stats.scheduler_process_analysis_time_user= 0.08314100 +[7231][ debug] backend_stats.scheduler_process_analysis_time_sys= 0.01700200 +[7231][ debug] backend_stats.scheduler_process_analysis_time_wall= 10.49613555 +[7231][ debug] GC stats for analysis_scheduler: +[7231][ debug] minor_words: 4.68626e+06 +[7231][ debug] promoted_words: 4054 +[7231][ debug] major_words: 12760 +[7231][ debug] minor_collections: 5 +[7231][ debug] major_collections: 2 +[7231][ debug] compactions: 1 +[7231][ debug] top_heap_words: 1531904 +[7231][ debug] +[7231][ debug] GC stats for report: +[7231][ debug] minor_words: 383912 +[7231][ debug] promoted_words: 0 +[7231][ debug] major_words: 36904 +[7231][ debug] minor_collections: 0 +[7231][ debug] major_collections: 0 +[7231][ debug] compactions: 0 +[7231][ debug] top_heap_words: 1531904 +[7231][ debug] +[7231][ debug] GC stats for main_process_full: +[7231][ debug] minor_words: 3.09442e+07 +[7231][ debug] promoted_words: 1.39519e+06 +[7231][ debug] major_words: 1.77125e+06 +[7231][ debug] minor_collections: 36 +[7231][ debug] major_collections: 6 +[7231][ debug] compactions: 2 +[7231][ debug] top_heap_words: 1531904 +[7231][ debug] +[7232][ debug] Sqlite write daemon: terminating diff --git a/fonda/cpp_testsuite/varBugs/APACHE/infer-out/report.json b/fonda/cpp_testsuite/varBugs/APACHE/infer-out/report.json new file mode 100644 index 00000000..2d637969 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/infer-out/report.json @@ -0,0 +1 @@ +[{"bug_type":"RESOURCE_LEAK","qualifier":"resource of type `_IO_FILE` acquired by call to `fopen()` at line 3002, column 28 is not released after line 3015, column 1.","severity":"ERROR","line":3015,"column":1,"procedure":"__run_cgi_child_2048","procedure_start_line":2995,"file":"test.c","bug_trace":[{"level":0,"filename":"test.c","line_number":2995,"column_number":1,"description":"start of procedure __run_cgi_child_2048()"},{"level":0,"filename":"test.c","line_number":2997,"column_number":5,"description":"Taking true branch"},{"level":0,"filename":"test.c","line_number":3002,"column_number":1,"description":""},{"level":0,"filename":"test.c","line_number":3004,"column_number":1,"description":""},{"level":0,"filename":"test.c","line_number":3006,"column_number":5,"description":"Taking true branch"},{"level":0,"filename":"test.c","line_number":3007,"column_number":2,"description":"Skipping __fprintf_416(): method has no implementation"},{"level":0,"filename":"test.c","line_number":3009,"column_number":5,"description":"Taking true branch"},{"level":0,"filename":"test.c","line_number":3010,"column_number":2,"description":"Skipping __fprintf_416(): method has no implementation"},{"level":0,"filename":"test.c","line_number":3012,"column_number":5,"description":"Taking true branch"},{"level":0,"filename":"test.c","line_number":3013,"column_number":6,"description":"Taking true branch"},{"level":0,"filename":"test.c","line_number":3015,"column_number":1,"description":""}],"key":"test.c|__run_cgi_child_2048|RESOURCE_LEAK","node_key":"79d9cf073cd9bac616b3b95a793fbdc3","hash":"5bccddaea7bff74bf09e25b8ce9f86a9","bug_type_hum":"Resource Leak"},{"bug_type":"RESOURCE_LEAK","qualifier":"resource of type `_IO_FILE` acquired by call to `fopen()` at line 3004, column 28 is not released after line 3015, column 1.","severity":"ERROR","line":3015,"column":1,"procedure":"__run_cgi_child_2048","procedure_start_line":2995,"file":"test.c","bug_trace":[{"level":0,"filename":"test.c","line_number":2995,"column_number":1,"description":"start of procedure __run_cgi_child_2048()"},{"level":0,"filename":"test.c","line_number":2997,"column_number":5,"description":"Taking true branch"},{"level":0,"filename":"test.c","line_number":3002,"column_number":1,"description":""},{"level":0,"filename":"test.c","line_number":3004,"column_number":1,"description":""},{"level":0,"filename":"test.c","line_number":3006,"column_number":5,"description":"Taking false branch"},{"level":0,"filename":"test.c","line_number":3009,"column_number":5,"description":"Taking true branch"},{"level":0,"filename":"test.c","line_number":3010,"column_number":2,"description":"Skipping __fprintf_416(): method has no implementation"},{"level":0,"filename":"test.c","line_number":3012,"column_number":5,"description":"Taking true branch"},{"level":0,"filename":"test.c","line_number":3013,"column_number":6,"description":"Taking true branch"},{"level":0,"filename":"test.c","line_number":3015,"column_number":1,"description":""}],"key":"test.c|__run_cgi_child_2048|RESOURCE_LEAK","node_key":"79d9cf073cd9bac616b3b95a793fbdc3","hash":"5bccddaea7bff74bf09e25b8ce9f86a9","bug_type_hum":"Resource Leak"}] diff --git a/fonda/cpp_testsuite/varBugs/APACHE/infer-out/report.txt b/fonda/cpp_testsuite/varBugs/APACHE/infer-out/report.txt new file mode 100644 index 00000000..11744997 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/infer-out/report.txt @@ -0,0 +1,23 @@ +#0 +test.c:3015: error: Resource Leak + resource of type `_IO_FILE` acquired by call to `fopen()` at line 3002, column 28 is not released after line 3015, column 1. + 3013. if ( rand( ) % 2 )// L18 + 3014. { + 3015. return ;// L19 + ^ + 3016. } + 3017. } + +#1 +test.c:3015: error: Resource Leak + resource of type `_IO_FILE` acquired by call to `fopen()` at line 3004, column 28 is not released after line 3015, column 1. + 3013. if ( rand( ) % 2 )// L18 + 3014. { + 3015. return ;// L19 + ^ + 3016. } + 3017. } + +Found 2 issues + Issue Type(ISSUED_TYPE_ID): # + Resource Leak(RESOURCE_LEAK): 2 diff --git a/fonda/cpp_testsuite/varBugs/APACHE/infer-out/results.db b/fonda/cpp_testsuite/varBugs/APACHE/infer-out/results.db new file mode 100644 index 0000000000000000000000000000000000000000..f4259fe949228259dfb19ec1005cf66f78dc185c GIT binary patch literal 1310720 zcmeFa3t${o+5f*YdnQR+N(%)_DYWU821>h|WV1(@4i;(_8|SG3a?FD|p~v#F}hQ(SDb*$S{Nz-Iju2+(HzQ>?&Y z{ubC4oqS;8@Lz33gNtl?FCBhpsCnNfC(@GCcp%k025#WOn?b6 z0Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k025#WOn?b6 z0Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k025#WOn?b6 z0Vco%m;e)C0!)AjFaajO1egF5U;<3w{{(@N*22Q6bLJ=)PKx_l!hz1N)kjy1 zX~Ck}b#*lx>WVkiEN!kUPKy{{Z2ntN+#T)mdwW8y#T)82Zzx`~u5o3}x-G>k>b4ZG zTD_ro)yC%Lr0_yRIO6LJ6fbRFy)>VMFX9Ui#6mG|tf#Zn7abT?FdFFYipGy1R^lou znA$i;v4tY7f&SR;Fn%H2>+6Yk$zyMtMqX#y!MKriTH(~GQ-TlXA>CTsxC&L)thU7^Zc#9G#k^60rKt;UX-C=xE~RkltXaxM zE{QK$oLDNPW}r)*Pipc0*QR(p>g_((VTO4_hPu0Pn8ePjH-a5yk(l9DpDU~2uW(SWBQd7Y`S9nEbKHMtXMw~u!Gj|ngVCcp%k z025#WOn?b60Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k z025#WOn?b60Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k z025#WOn?b60Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k z025#WOn?b60Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz4Ue=mXYr24-9Uj12f zCcp%k025#WOn?b60Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@G zCcp%k025#WOn?b60Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@G zCcp%k025#WOn?b60Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@G zCcp%k025#WOn?b60Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>FU?T1I z(T@Ky0Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k025#W zOn?b60Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k025#W zOn?b60Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k025#W zOn?b60Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k02BD{ zB`}^;-}m3EKWokem;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k z025#WOn?b60Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k z025#WOn?b60Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k z025#WOn?b60Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k z025#WOn?YXq}@K+@joWO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k025#WOn?b6 z0Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k025#WOn?b6 z0Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k025#WOn?b6 z0Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k025#WOn?b6 z0Vco%m;e)C0{^`P#*^y%{(JRj&6xlbU;<2l2`~XBzyz286JP>NfC(@GCcp%k025#W zOn?b60Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k025#W zOn?b60Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k025#W zOn?b60Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k025#W zOn?b60Vco%m;e)C0!)Aj5CIL_jN!EuTrm9h@Lz_1Km42FSB764erEXb;U5iucle>< zuMdBD`0n95hCefW!|=7kR}No3{K4Uo;lbga;jZD(uzz^R@VQ0?lnMW10!)AjFaajO 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�ic7FE!*d4AY^7Cx*Vbc-!bLG$UZff#pUx{o*#-1bOpzMPNQg9v zQ1L^A3KKvlj#4)KwHbKoKy5LPOLU|2AWw8g1LlkIgvw*dR=!w_5aYTR!+=>kI*xGO z$>wZ(^0NvGa`Q5B3v=_b@^cF^3$rq8;Grzqq}!~ zGZA2jIWhWB@A~!e~GbPx$nlX|Oam z+Ac>6{wc*>;vTW57bS_0XT*$UmM;Fq~$lr2tbOoIv ze@hHt-H!Z_>j?QZ@!w zXo{J^4t{^)$R8=@gpj|nOUU2YEy&;4)5zbLJn}d8Jn}b6k{(Ubqn&>^)&L=C6D}dJ&*iY zYbE5blgQ6MrMNqZkYCXWago2F1Nk>M1sk`-;r#sm#F0Nz%n2bs4#4aJ=f9|1kpH5d zM*fSENB)a?9{Del$bXSUe*P&n>ETHu_9!|bF7nrRAU`j+#X)|4f8xj=DdvQbAE&`~ z0r|Id3-WL2Y2@FMJo0bpdF0ETI({EANSM*e-7d$$7lul2L4lNH}_ zke}Z>kROi!d~g8h-;HatVku0a=qFWYq!>p2Vw0^8!X0{k-UXUI{G5NAX>g5F6`n|8 ztP4OkKE=97f-V4S$Uzfq6zo;$4qt#|R$zD-E7ag@ttfp&qN>rk;w*7i7^aR!TTOFx zA>FJRt=S!2L8q$G8U?XHiNME8Ut)@E^of8*?OghWF$Gz0!MN%_USmgOWKOJ8m zfA9T_%(eV%FcsiXV8s^e#zkh0B$gUUEc{c-4-+Gn1ESS5vFrtXlFQtvOpJ|&mUToX z(utcy6=XB9l0E-zv_1b-gn1R&)AOIAGrWlg>jQNiBSuwyOOx#{Q>7*1_h{J(t`9_t zIiV4wx=SNQb+?Qd)jd68R3|@TR4a&}n-7+&mPAl3iGY7fO?sFZ5qtqEQbi}kMgEIB zkiW7nSbuSx5rf~KIPyn|IU(f73G-bLmnypj`73)G`74u0{>q+5{z{4bl@j^+r_`i} zCk^r|Iw3CdU(|v8!MesR!8pjz?@t{0BgLE$@^9)A@^9)ElXU%zc@T;#|5?m&L4m=i*N$bntp{2RLk`8W17@^4HY z`8W1F@^6&LzfmGT|CE~a@T5V0MJIS8Klv#h75I&><+8e0*X6D$Te*1I>cwjoRL;F< z_QfSTjW3^n^*J}^e7&sXHNbcCBR3^qmx7_4JVxI_- zUTZl{E*!pl<{hlng_y$o#%3w?`MPHD5)>7-T%U^6l*6+RG z6LV~HIIY>C0WJ}P*$*Hb)pgK|7|M#{@fm9#FvmB-ygVHNk)W6=NkvTLOoBaL*;~~n zai)U7PcDy8Z8ox8APH5R!&%^wIGRogc1fpV7R9}GH?87=%7{#%e^^&4mLqAWN6`4H zqA@s8tus`&o2gyGf1fEXqL@@c`zlMKFe?cU;uqrk2(K2G#q5DC6Y0^g5ar5$X#dkv%o8FM0yd`lfFQ~2TO-}ej# zw3l%GQbE0=KB}#@s23+OVZTOtM-hzQC8m;iCy&4Pc8hq44&@0>#c_x?dvwM75jq5; zut>MaBHj3OIE^6kqQeqyXDQL)I#bLk6_m7dI$R%(p^4HVrkpDxbjV&3EIM4*({#8l zc{*GZ4W%Kjwdn9Viw>{1=l}Ha3$)Uj=7wS1~M%G)6a9}iZM0~_M&Vah74MuL5Y`=1n0S&E|||j@OHc57E2(q z5FEn)h;cC7hB-^v6btDIwqVznsW1f_=5E)A0Ke^k(rP3F+}c_U4kx9w;k@W`wAVcI3NZZa32sJSH8kCv259V zmzV6e7fe`?l$hdnswut%t_5o6syeWpy4QH_RsmwQJc5SBAT*;^$&|Uz&Vs{(4hPoR~!L_rdZBc$(yJ<=H{hv(nob3CsI1`|3@djlygCZu|ZrY2&v!gvL zKwqF3oec3$Q_MuyiGN|@O~3EK2RHrxm;6+-T|OGjqvC+Lwy1>r?!9!2wB>|O|>cBMF-&zCn+G*H5|n7 zHb-W_`wu-HDywmCEe+osM(ZwCe#CH*5HgS3=f)Mqq8BQdWx^vX)nu5u=I0nq7$Kuh zq@av~WfVL~!GjcBP3_ne--L;bnv|ZXh%4(_x=C!y_qoA*xE@unpN9iQsA6)7HHt%W zk0m|_zKo#K+`gt@B6Wmpq_lvgNdkkWVZ01aE+(1SoXs&xRc<|lM=5+lK$tqTCj_4p_M``pSRw(eH+1ZxTY_G)hasg=rW3WWtSLLO3>J9?v^@R{X zujC1!SI-jwX6&?)P}6$Z1i%p@0D5)O5I{^<#36t$wT>VH;6VVRuq_BF2!P%?2q5Vp z00dwc;Ua+K#UNi73Bczob@SCOi9x;-IPX63A;6dPk@p%5;M}rA_YVO+n*w|`1#pBY zfL@(66cE!DaVX%j*5Q#M00?SJL23$c3PD{N0;mEaA{PZDEd%*J>ly|4KKqgzMY=)& zzR%XX3+WLV$oE;)Y@>4-$oE-~6M*kCivSRj^8gtE0r0Dng#co^A`SuUZaoY7`u$jl zW)5wMK(YGzC?6u*la+ubaPcwNpR@qv`?QPL|7mw%|EFIF_J5i@_J7***#D`G{h!*{ z&k@3YdUeuZe@s`z!T#Q@XJQt7%@nLwK@)M&)_dBF-X{ENj)v+G&e2SiwrwMgH21QkPay%oJlx6RKg%+`5#uQ+f};7h^9~En6l+Xa)2puYpHpa1c?bQUWrHx?W|>w%O)#oF+56d&seSU zKdf9pmZJfWJZC~(4!w4t@PWw{HQVYds4US}R$Sy#;a_2hEJHx)I0+R)IO4UX;;`Xd zU?`$08&uGlBEt~$P0%__!TK2`q8}ECaBpEu^wOzE&yhCMLoa#Nw$?LJhc4JZ9IUuu zvn`9$)?KHaYZ|?ycF21D&3I2fj`MJ(9ZNtX87aUeg(NM9`(7bFEFwBc%z>a-@aRwB8oTEYCTJ9dlAtT&C}TJ@Cb}!)Abx%8Fhcy(8S!lq zT!r{f0ldyad=Q?0e4>co9pX1mC{7&lU*6tbc>nThcS&8t`PYGV>*je|e+3 z3dv{VX&!wqM}KBAcxKHb+`_{N0dw5*>9+y_G>`cdB;l954cQzq55HN!>8t20O2`d3~(ZO)sh6EN0)5EVG}$#Zw6<$n8H#2I)WX&2=ME*SY;C zQM$mcVSNJJ{*#N{O-=y!Kk0eg|HQ`qPi)-h2;n}xI%#k}rYqv${w1wL2>1I*+_%}i z68D|_ervM)o^iiB82-n};Qq%u+<4S=)c<&myQHq6eq4tCafQ2z1d#sYo=5tRZKVI$ zMtY7A($lMx2I*tEA`a3wv<@Z_$3l8*&Y%);c!ADh_erBX$@W};i`yr!WBDiyw|+ewYl_f7pF8&WB%=jPqggGR}uRkNY3mxc{Mz`y3(M zr&lKp?#FaR9NfR8bzp~#lNC?K$vR;fN0#8ieW`!L1YTM>dYtCwu&eRCpA7E5-)%C^ z`#mq?yq~;`^M21G{rfi3zi%TwM+oWZ)k%Z&F*x>2d?*#Bm?@cp>joHvta`)~F<-oI(%{hK!4bA<4o zUY#^}AJY|a@V=?FFNyay-dm!MN`;x(=wSLuV?C)bWeF~xpS-a1MlwkM#_sMy`Zw0P zOX?cSkFU^qBj~Op0dD_B&tv@?HrBskV?9R*>*>`=gY_|85eMt{w4Uw|b~54$I~gY~ z?8qWqh@ZT$^LjFf|9bZcJFkCH!p`f-3p=m(Jo>+GqyOtR`g4TPpI)6b=pWM+anQe| z^)!dDlMz?g$vAOgM;75i|K!y=$C5$+W8Eg~9P4>u=UDQ>&as}y`(rlVAG7hEBZT+# z>ZHN@n68L}_f4&R9KudUJYgr}goPb0!G-k63p=kSgY>U{YR_Z+ zt2WlZYGXY|2souK4xVS(q**wB8fL9zi%ILYr^B_{c!=i?jJGY) z;9xN^i!?j`3F7-p$>94--Nxi!>K5I7eBu738@Y~elWb@~GDr#g~!;Qv4v&5NNvUq7hy z`+jgN$`l#?gG!3;Hcj)eIj&_Za!qd8TCsU+3p_C~`j`AXY#8O{&F%L4a5%fLpdhOt zr!YSwvmhrsH!C+Uvv6`lW2hB6EQwMLMOZt>*;gR)Px_MJH&G3FcS{=Fg8x&>X7b z66XFqTm-1an#GO;)QBB+Bj#B}gyu%2*kz}fZ>4CO6P+Ryl)bUQN^$wTs1&;!>Oe!9Bj=@@)BaW_9*)A4jt8H_rM$PFv?WRwpus+b&3Yx+TWk}4PI4D)Wd z1)7b6!tM@>E5tT*n#x>1Odh=Yy*6gB(^E`gFqo4CCtje(P*p~DVPRfwO?FjIVODlk zs4ye55+1f5Y}52xl$%A0L_n%d-R_FmkC1*)?MEo+v|2Ju^+Yr*a{^2TOQCnDv}V+b2;d0BQIGcfYFOj z=-M#gWk1>ffZ?W6Rd4bRp;Ge@k`AM!JOem*Ai1HzG{Yi|%b3Dt!0nYuElV1+$!!%i zC0`aZ7KZZrO-ih7M_VmSI3KlVz?0lCL!2Hyki}b*TDG2ZPGs~F{bdKv50^VOAW1)M zWtKPSPW-g#H!f85o@@nN$TgZ`C$(Al*@c{bqq5PAxM!(d$jxyy?TTW+9aa`0Az2)r z>qy>4#513q2F}*C3hFa;UU&>Vgub$!sIcEZ%Z1&-@H|I>;dU`FE@s_{Z*)+?>scF6 zx@@WETM5VV@O($L4E7Ciz+M$z;7Hy9_IzEtk-%2xjRW?I@Iq&S5^VK2scY>3`jH6G z>bhba8;U~DcF8VS8(!pW!p%R>wNg~{XQ~KUuUB>lQ|%Jd5WjVj>fPb&{KBlv?7Xb3 z+?@RUjJ(Xe?3`SK8LLBnYlz>V z=-+XNw435dWM3_FEpZWRJZ52c$Wm85jt)^Xir5ZmusZ~d&gzh5E*=!8LoNk6r&52Q zM|4fYkM93cq)RTxv+4Zo3dDADY%gMWajaEBToxrP=-T&m?Yl)R3Fz9R1_<+!A_Ls- zFmiqi<$qP?D|d+~?Y3h{&mq(QbyN4>9HH@pYgJ7DIbC~I*ZzqAVbNdL-UiL%=N%@R zp%{mTqB-x~4EgWd(RVLuN0b2xzK3cCM6_=fZ^1W1osVzTakb&l?T z2@Qdu9Qdm4e~cpjr*;41652V`WN04!q9a)RW^;AMhY1wS$=5b$?Ps+d$ zJ}7EGCT5>>Dp)&!kX>6|2kcpi{zNObwwP;mzzygL4PLy1C9pHMMJXr zaS?EN11^E<3|wPy-H0m#7m@YXP4RnEyaiXMxcN0MAFju6{U@$ZPg%%|iW;l%fhd&JleU^>azsr-CCEgnz2UCl zI-gH}3)iE^qLefcuyS69&+7?Q$a-;j68~7P3*4pgWVFb%X85iddM8%LBRDJ1O#{!G zV$59o*cOG3fFW1SQm?>H{lKr3gT3Uk?zyIFXZiVJgcv~rDi!st(%G&{G{rVpOE7i2 z2DSv#zE2F?Xilks>Sl9YLuIgzzTX%D07!KK-j-!^@W8W555OpXglxLoRq+uTAPjt% zQ8%2HVW!mtYwNBtbAg3l2%FWBot1iThaf@Td z7D&?ENFKTYC-CS>f-y+w@PI6`77fMt!#CN4w zDISttQRebEaYU>*DoRBOq^Entcu~eRu0;<{HpG0Ep%$3H5b;x)x!mO^BjVUyTo)Ek ziF?JpQsafjJgr7n$cs4cMmNP+1Ds0SOMPhK;40McyeYmyzb`)=`ZRr+@pZ<^xARLxrmFt$TlI4-_H0S2Ap0?J=glqE6LvuY2999c9_ z2c9;?|CNhBQPC(2sB&CfK*3^EID|&wK|JOT=5Pp)ywZ8|FKEPr1HZtpz+KsS^HVg? zndH3rDIO}xdGphhikvq;OR30rGe^jG^OKakq||IPi=b@0m4*XNC&ek!AeuHu4mKn? z0z_{0X?Wh>L=s)=i|ASW3PMnTTKsPc&_~C`ixi-nOmRIyFo%M<48S}N=X1D#!-ZTl zq-X(o1b-+EP#zbp6x@VP7(lsKaoW`!uIYhJa18O>3Iy=6UF>o!qidUWZ4HKI^qV7n znfQ@fB1n?Ep+5se=JaQBExOh~gECy_zK@p|;F@IO6e#pN<|-zgQ*{tGAiC#`dE$8_ z#fLd!i1)pnOMB2ga(N8Tw_M(uk~((HclubvbEvAJe!De34~iO}r||g9DF_Ccs?XoC zdibW#*ZUv1wjPTbpfO&R6vna)>;Jl7YE}zTbemxsceEsTk1|YX*0ZTH`dl~=2W~4gW@vRx>LXeX;!G;JzM`tRqOmDd6~cic+z?)?LGm?n870yMSu%NZ2%eeH z#f`x#xnzQ+8|q;ZDt8yp4X>}D0R_F*EEj@!6$go%%G`;$EsZg4;Uyg;w-#*NZE38C zX$vp#ApLc6ktmX$+k*72w(wdH5`PWrBF=A}xwWCbBKCVPvf#XLwLAGVO78lUi>;L3 zTj@^81-D>rt~pp=-At|L4qsv=KeEc5e0uD+S!yNyja+Dpz&8W^9Q|FES!rLEOMj8H zQ=`Ahax39ma&az_aC&`cbFig$dx-muo4UeE`r-1ZrpA7{l`<)m3QOE+XDGhgDm!sM zx&9Yv!_?@Hw%SfPLM}!|Qcees)w)}|#!fqFg}VvUV?V-$cG}!^hOUj3OMj8VC40sA zCC|`FfBda$&FK})c+_I9u5m-Pz)wu92}UuvGM4nk2rkts8nY$(}?SdT5F` z$iC^1n?CkUDsKGpMtp9HPps(w&?v*1>CBOLtms>GzJYxDnkinkqAy~|v7)~-#j{rQ zDVkWyv_Iq3L~4on4^tero<5AT46W$>rZ_}Vx#V{@);e!Rv;IbpATuZy0B^(V4_IJ& z+!S||vf2+40>+bRzG9cxGhXr2E;K4!$4igk{r z;u%>dRi~VRbj-%0Pai@ni*FTw6)%bxk^3jg+^h;O!K#t?nCdB_Kq|!}l$FR>%nMds z_%Q$G^{PQ!HD+v>woNt-z93ZvV+^vMr-jZ8#!iRn$pONSGl}+#Wb&2zj7~` zw%z;#u^Wgtlj=rQKUP-7-BW5B;)1A7xjUSLL!mNpZc}c4Wh{M8thC9L#e+kpP#1OY(!F-)jYzfKH8nS@LCj$5$A~DNp6E}g#f+LjN3e_sAz@$vJjvQC@$=P`%Ro^!^Z2iM@`slQV_aH+u47X0b*Eo2p2{q{W6Z)<(NUU%bK z60Ls2io}F<(;tH2f2cm3j=(a0bri$;f?`NNnCyn5j(MJxHoupd7Obvr3QwevZC&L_ z>-J&K5Zds^0o2(LqwW@`NyR@N^DG%{h_dy};5tiavZsFwURPbGK0_M~El)X>fkO&J ze`$AuM{~tcE*NK>l0|4XO%e`3Vuf#3NUw@{BCWaU-&P9DCMWNFwpS^pimBE_Pyd#3 za*)tO4~M{#G1$nW_pUX^H<5@s0pXq?>?N~v@^Z6-1%(BevO>R^laZ5|l?U6^U{yXH zG`k0fic{|jKY;m`a`r|hlwBzK8mH-G5WUHL;+{UTUCaYYxMlLF6J^PWj!)h#mY)if z9$lT?GAJVpR9NWrcG}U+by=Zejy$AmT?g5HZ=~zgt*}i-)o&$;b6h5)Y-C$bC{g4% ztoRN|1)TufpUrJ?P_SigJKJST2|$N+4bZE)F~GC*`^*CXr82 z(VeV|>i5S#9rzkkydYaBO*`*bq7;*o(zJ7l%T9{1@;+q|5|ZUE-{LIW$k$NU6l38itvuCc-w==UgD8z!-RXb)K5LBj(bj|sJwevhTr(!UMejR~!m{w-2n zky;BeN>zr~1C)vk-yWb;WbH;zic8qq4bSk9tlT&mS+w0x$(A5;A4Qhh5i)VRk289l ztn3RpbYoas@b}aGf_^7TBS*Kc?6+!NSyI9WzSalC$mq}HfB1C%nPh_r6&ZB>M@{i7 zBpPChKjFuZYZR_xC?HL7C6xHMxeuFp@N)pyZfGCzQ-upAn%XQHHw(#(vy@R$kRM*(fKuEB5 z3fL3)CFPVg2mXZwpZI(MoLLfRI)=jM_>8b=*;LT-cCnOZX_Z;iM${46HQb$mOSHyrT;(64_-SQN@xA)}PS+Qj){9F{YSRD$d21W}zCq=Mc6u ziPNZ9FX37n8?|-S83YJ5pC0lD_O59Fy5|XOJFPLJGDK=A4ETDAmYfT#y zo^12)Fzjv36E|G)Og&a!r!goTh1SO}S7h`!;lZ6!89ewJ7(F>O@T_cL&;xi}9!LW_D!=@&9I zPK-Cik4(`_zmFjR|0RwsR#H$5j1m13;l#`e!B@3W#4+h$(y^dc;;Y&iih!-k2)L?- zNuB2+!CDt1q$WO3eQaXWB#jO+s|GH2fDuk6j>E(Zd~7ofB;qm?+Y(_8UMBLyH^K(m zBUVJ1PxM(avHgbhUTkM`>rAkn8+J>!V>@9{vYi_0T#N1e#bP@Lz;+rtWjn(oY=_HW zwqs4o?X9p%4DLC$GdwZ2GomYO=jM)>YIHrtOoXrlGU7Tvzie$tKkT-n&BrktBL8iIIO0o zbq4$y-*Bm9HJ0Q=i@8n#CyfLg2cvl-DMmAt7)_)I<}++90QPH0o0~6~&%mrS5%FeN zSNO~sQ8?RmJ~J$ukh;WY;<_HuhV>Mq8QLkMiQllH32>UB(H+!vPBSFxt9>z?2C8q# zY0j`Y%`ltOaD+I`(36_e#Ppjtr}^r{*6CQSxcwrmR$NS8Ff3jZyIR3-JGf2C9X_9S zF?RAS!Zj>ftie1d^USSH=0qxz=0{Vkh_$09T~_I4F)qR^9yqFG77SSSvi@xH885qs>!Gh78KNEVYy+GDbA%%pyh_Z z+n&n}T_|~Lg3Aqox0G>E+7BAR14Zc~ks%ADfRn4rct*ol33^vzR&8RZOiza5Iz^Ru^Q9{3el<>tU zUn|54OZgf!#2P4H*Rt|;9nD3>TQZY-afo!UUVUh5rQPb+4&A9oKDX}l41-K)c@r`A zTMBF2wtLmfLv@P1$lB>r@eH6%aWg`wdWEf&?r(~p@S_3P*vS!W^~aH@NHho`=GL?? zSsbC@5CvbS0Gia};vy<87 z#1W%Z7_t}&+AXDkr=U`ZZ6V!&{+ z2tZ=XnU~rz;DO@EVCep`o(6*7i^qJO8Jb1cMw(dz)C+AL;X@{v4Nb z{$F&Mm5&DN9rZh;0>Cb03G|MSnnoLG<)icffd#*Ml_mI4cp|0(Ayz*Q<YR6asIT2>3VgTF8hh=qE-U(DQMp5!|b^hTnG>h!} zDOaV3l%qN8A$1d5?OgT%v#6BL>;ZUWKAURv8kzOGmCQ*pmCiMm4Pug*WR1+a>CGy8 zS;LB#?!X$Er_}D+<H$BR=aPp zSG#YGh-?Y3cHd*_T5tMj_{f%AcCSh6&nOqGnY7lO!Z!~@*18|WGkA$Xf^Q)a)*Xf{%(!WFWOn)Z-qi^&v937Ex z2*ZVsO;KrzZP9~tmZb8J;Ot%}9ZJgLqRw4KwMzZ)<`BEfI&;RA-4F6KykLTL<& zCQ89_)nTmCv0S-OC0DL7MUWIcAWN~XG*X}#Ddvi5%a)XcMlYFBJ2B(Y7E{b4s3Thi zwG+1>jp||8GlgUoSQz%Q4i$ZQdH4XFrik7UOf8!t_ewX-q_qc?W0>Us3e^h>ctv1} zH&Po&Ixfc0PNqmq<yF~ud%y|S7o=s{(x#y z;t|U~nfU%`gohFH1j{SWLYF?NtsU4jH>PWJEf0M7ba=ZH8tS>xUVlPv??bU-`ioxom1p{%rFdP0O&){synFsHqEXrjKEo2XCAX7YGfI zJz*xkt*IUxWF6CMdOrrXIn?FU?0c2n?P&IRazlAQZj6ntP@E=PTI4pdrE)zDOuu4^ z98^uCqNwButS_;f6i==*#qT(By(~6H*nCI4ZpnfFKxh8V5O0GOyu-5K-%arvinvqe zjMemck(RLB0=Z?*4o#m&KDXR>25NrPR`vZLA~(9{wQ*E^aJi;U1myTbY%G3Ybs16i zJ%MMW`_#235!=AArw|Kq>}iA~B35u%&f!cBCvym!OG`$)&oF**TSNYE)EQod{ zu>mE#|7rI_Kr$C0a&J6|^0Fv_@~?3CN|M@3y7pW8{XboM58dh(E3Z;9Q`$P5^k6|X zF#)0u)B1<+>px3JvmsvoQabgSi4hv}FH?{|PFNX{pYv*5SK}h*eTQ)U!W7>$7Kv{H zVMwmLR?3ync*>Ptgo$qRkSnj--8v<8#IoB?XSs4~!*+Yc4o4vP1TNA?(*B}}5DDou zA*7Tnb@=tsZozWhmAKX%Q%II2ELoOXlI4xIWLee7Gv$>Yk|k*`T{=wdW>XAXZl&fa zgzR21h-EvsED+UHmLJPZw@f;T^G$i}(SMrbnlr-_nlo7{9R>}frLvSlsZ~uOC!e~r zav_puA$b-s-+j_~*4Ur*5Q(Iy!5L+w(^E7@WdWl)$LhI2W zlp+P#-G?zXX94yS=t*l2i_P+`S|!e69b`X?vrubqEEQlA&IVLqYD(g=m?o;kO;$~L z@=><9NL*<>Iv1g#Jve8Dn>q1pd*oK`4FDO(# zi)A#&vM9mCc$Wu975JG7Asjzru(Cw$S88+HQ3R`w(x5uJM-+=*2=hcA?!9@)eF3g4 z2%mH8Zjn5`-aV2>sY58ff_mf*B_0|WS8d5-92P>+ zJ=kl5-sVUeJ`P7FAjEhHy~}Z0bi;T_X3e6%V!X`h{_&E>H8OK0bqEiL-=N`)%v@Pz zLT0WUq2UlqdY)#ko1(_Ib4Zbi(PApWjNcV-`hlT0dW6eTVWo3~(pJHp90sUbQ@qM< z=H3E_Gs?i_-bRmN{HexuE81o09-c60e@ z#Kp;<`KDdBPS zf~*AW=vF0z20KnzvvP~Fg%V=7YPw_TtQ49R)^|WuDk>wks4k@w&5B!buhy)53@v;F zT6HZ_v(k6-KWgCpnl&p~bQp|`?ZIhRHKDBB>R?S?L0)BbWlpHNDwu`ic5s$LuqqV1 z3>(~Zhi_jGP|&3#Sh+I5Qm%}}xP}Qgb~8xjin?vGALqO5WoW8q?L|gEenQYuKb9oi zkM1qW&Qnj0$ep@w;Q(9Uz?6q}+KZzgR%DJ`wa4zo%t$Y0?y1bL%*=z2qJpYmZgzfF zc5Y#IL19j2W*(eOVL2Gfz*tl;1@F?QbztvabRlLKTgbiA%C4K^R#Q;dNxQ210Mq#d zlO*d-JFj17E1N@Oq$=zJL?x>`={U<^$^&8v#WEKZ?IZxsQwV_MN*zA>A{8Foq#80U zRSk|)VDJxM#*tM~(TR%fV4MR%$UXFlkk5}z@dMdrsbo{1LpO)(wiJxt}{FdG8kFv@!X<^35ZsF>%-B9}x-3N*NpFHeur z#jPkl2c`YfGP3ahE21b~>M~9CP!yLV@Bf*)KMUUpe`uThoc~4)%l~-$8NNAg-k_U+ z4@qH*j+kbOax0%62#8*QWiTG&tPuYSPM{-J&#@H5$j!DMNJR*>vcHkTH5|$(=Wu)s zh1!2{_(u-G=J4ce9JX=@@gGm<^c(SKo=ann4Z9G9JHKbIzLwDLe4);-hPL2T7( z`_88)*tv{w7>8)~5&TI7_4W3A{5H%~c|LwC&A!R_LAw>{q=NbuN<|84KJA9|)AXd6 zxAW68N(b`?erl4|n$wZ8n$wxf5R<3kU`M|O^#dPTqw#4sEAiw;svM`+Xkjka%UWWq zd-5O1)B}?-=?|pofwSqiTo0V5nEd}iCCNa&-4%%)XjBJ$pudh1l9E{*haX*~JAnSk7A*j0lE?f<8zk#1MxMrH-zwiUo4F6NO z=-ivv(H{Zi7RD+BAc`;)7=HmlA2D=ovbPr9gYP1nhZgC{xz-c#qKF4*{u}*d9UykU|Whu*Iwc@ z)?%buYmrH+2)64LGi+7FG_}?O>>yi=7FeUQwG!!KzML*dzAAOlr@>HomVAsACQ3}E z!J7_;#YU-&ScBUoxLqV~H>z|KwG6{-R!_i`u-;`UjP-6=RaRK64vWjI%ChCdbFsN4 zEE=tc=Oy4fO#6y*V3tEj=i2Z)9KOS}Ym|a+LK+Io%fSUiN%l&=T)UHAZY$vLpHPj) zuWOWwigtbt)$l0UcDHJnNAatb?UTvfOQ0S4i4x4KAD~vzyte!{)ZtJY7v zW4WQ?Nw2yVsheevNB@Z9WlLkzZc8|pgcH&ECfN33tyXE%KVw!Tr967>z7 zx(&A%G7sHG0r)GsC5ih5NVlOqx_qwv1)QTrbyZ;|_MGKrS7(L_D}y;1p{%Oh!u(Km zR(5_~UQPz-Hp)!#2STVgmEaR7bQ@}*W!Jf_nOQ49h9%Lz zALV9~V<%dHeQ{@m;!+fMx&#~Mbs(dCN@4`$6Rny3bj<9@>}aNHX74tU<~iPcCA>Hl zPOFV{_f_7LyakS#ROeIs5z^Y|DkTu@%!-)rjRz1(+0ra^P3`$ZE>ulkHF8RHYXq<> zy+7n4Bz%YxCio$*jQb%^4EJf`vs*S=PVKK$b|A1ot=|##SmAPeh4x&I%3LY zihDScjdd@M&^)U*$8u%IxhKpt(;SBbH{?w7d`PQuris-bT7jdJ6Y)z^%?Wa=4JUz^O^N`5E7| z+UE0qQvbff&#px5LyldA*ry!ZhmfYAA8~k$!{2cD6o=pC5T+(b6XdV}q4=DF=P9@u zZNa&MJ?bk?yMiWqWc~CNn%~i4?=>{Plny>=Bv;44nMk|H$6{4!_snmz{I(?`FlLx+R_)<^!^iOJB-4|V@{4O20T zyg!LqWM^^}>WM##>{Kp5394D7{~g`G8{H}X2~?SZYXdGQ$}Tm<4UkKb3sc2=@G}h0 zUpK`O{9s`4pNDG;u4TA@;m;e(aI%`eDU3PeqjJvZ$BArSYu_FW2Vccw&UoLT)`^%i zK5NK1;}&}ZXsoLQ%o(>d;nP@i#zFgFndQgH5Vv9d`@>_3Ib-o*n*Z4r{VkC>qby~e z$D9!(fqUWVB(vxb3(KT`k!k{Xp?TN{iz))VjAw!HD!7Sefn=RUoyUQJqtAijWDPZ0 z^bd=bH0$$yZotVgKgqj7vzoh2QA2&gGVKoafvPxy8?95nq|vX<-{tDRhrOl9-{;!?Bh2)Mni`ln!ysQq z_GG}tb!C1H{83~SVnUFG=|NQvd{pG3>7h_2od^44F_?u#TE`lK3+sy`Xz+u#M3!}y zyUuduL3X=R@Q}$@xsFgpFJ7589A82X5i$Sn%s=+!XVa(tE=*YRh5-Fm04B1 zJnVDMl-0$@Orhk`x;nA!x3w;XIj^cM10!+oTfoWLrugp&vTgGgD3^m5^Nc4!xqDk2 zwFWJ#cCD-Eyv=}Yu9Ud9DKUrfuVXRI_Nr)YTUZynZDEC?XV#&vOe{LHsNLe-Gb_6y zYPTrc-41l_>MH7b*Gjr{J+cZQlv8)vAI(b%)f{)93Hyp&X?Ob|kXo~{`P}Vi!JHr* z7E9prpUHiLd)1oP=vSj%JdN$FT}^S@MfNGWw!_)5rcN8yWH&5!hptwm961bKd&0!- zUr5H-3LqA6BN7 zn~O;Eg>xHG%wiNgL>A>%5pfsoP=0%YOZQu2k6UpTZYK>KNWZINo$jB4R{cvNAjo2u zvIVvsjQXu9#-e?B5-Rs}w(TfPdc@gM=J70E;uL&^TgNicP}>K)o>A%oS*l`M>(Lgb z*yw5P;d%F&x}U`~8f!}^AnPP`8CG-p0K+4j2B}FF^L49^G2W7OQP=w)Cjt6rb<+QG zY<5e~y8mkAS|aN!)}=;;Igk{wZ5Xtzl2fEj!Bm5A7 zFtc115UaX}*Iu#EDqsb=b%i08gK@0nf>vS2D)RqOW>zc{s38MY$Q-eH0zx;KD0{+b zl%aC{5u>aK0C#tcE{Zh&~^NH7qxWQ z|L<1r901?(&tenCk!-@K`|}~Tj-!()gXo3bN}|T%K9=i!5@e5+CEdR_tOsC|b3gtc zHtv&K0*Or$+;FgiGcd&&j2KuzgZ4{|MAwei{a?Y#AAMFV9P9pXQU>c!4~!JgK{xW2 ztT$S5BsPe(%-YvKQdBk@?g(&(y&jlk`KZEjG>nSK6BYP09pi5O>49me21*&Eolakc zUeCY{_Op>ThPJhlUy9>`R5sY_gy2aEU0Y*DdNq6GW`enKw`YWDp z>VZ-Ca`SN2Nbai#MpIwt{&zWii^Jbzj+Q~SP2#dAa|lq6;14<)sC;Tjdqg^>Jy18W zjtN48rDNKSbkcwU-70lVyC@aunCOY6W5P2^M@lA6M@pt0l#Y~4JGeB`GT{*=BR$hj zDvnGUwo|ed9HC0dgaME6Y%OBjDAhVdS}4_eM4BnG0THM)Xp2MHY~lk^e{F{5yUVSr z3hdVdttNW#GCj~tzxaO;S}K&{D4-1A-$O~2{45hSuzMiXfzKIph-jyiY~~2KP)9|b>F5Cx(;-X2$ zOZc6O-)C@*VzUYCtD~c)b?pXR+i@+x^)RkyaY0A+Hh#`Tt|pW;-PnKtJx@n5klMBg zGLlh@Zwa-ww^qzU)I~PP0EUmd#u+TRdPr+Jv|`thpNqOizv zoUxR+M=IQql)B6s&O4T9^~ynthn8NJ zUYv8!48-U8haZ}e*1Quh65L%JhXN%nh!*`iH)_XOyYjwJkP zBDCo$q+6+TR!Pf#GYy2<9G*yF_tEESqE8Va%3cJ&CsD3ZVrrs9xz-d*h>!$J^c1rx zboGf+sPwYa8HKK1rozm20@(nCj+THZD0Gz)Zl=t$k(Vg5kbb{{&2jX*9|4FH)OuWu zNrpmK*%Z3QrqIO;dBH{gCixGi?iey zIn0p@3Vt3NN7i29IIxu5^2h^2i^Vi#vd<_L6F7Cj;3t=x;~Ja86B?WM(1J%1S5PF* z=L&8*Y)-AHAYKLkee4_ASs|zxe;$MKgH!e$C^!L)N^I9|a&KxuKnehw9WQ-hi);|aR5gAVX zo$7&8J#eZAPW8a49yrwlr+VO251i_OQ$2912Tt|CsUA4h1E+eR(;m2TUF+P`3G1&u zXYZ)SmMu-8V0A@kXRYmYehBglT;wB^RQ}VPX`maiREpX!@V**OLa)d5C51|H%7mic z=43v!yn;^kn-+DFK?!uWDcevab$KN&yKiY7iKL{mV~u(mbs{wpj+$Zrg5SuYbpAJMR24~u8|(F8 z^4JT88*ni_nGXk{vV`SLy2xc5euV)yaiUyW6XG~9tm#bi6^9L{Gewx4``>I(RY^K( zv4mSGdf^CfqeS$BTW&nCR(zuU{(1BpDZ)HflfF8zbq-c}Z@&QO)r4Kj_TkqtdmrRm zYKyEp`?l!)`?WuQ_x@9I7!v;FapABIY_A2$>oRhF#B<=(Uyvi(;-Eu>nlKQ z?P4I-pwIlq$T7~7*0L+}Gqb8gIR%;7`MLR7HQ5C@g~4EDb#7i>UN9#_x^>t9MNWql zA?5NdS^IaP`06Z1U*_|nRa@-l^}YY33)AXnNC*oL{j)LfspHC4}^S8_K4dClx%msIuM2% z%p%<;sU7Cc9{Hlpn*|&NoJsxkam2XUZDtwAxLKIuAhO~QyVMYpGXTr9SxdETzrl@v z$M1TZ;zf@1L5L-k=P39w1$R<#D+PNgxQNP|6W^$TOv`jODof!ol|w9L9XWD@?aM?^ zF1To-1}xo#wSx%JQVW?oAV#Um5UZwC*u#hjp1{6LM&JquwyA9Dr5u@?Tq84_O5qF# zjG4$`C&vg~ChC+!mFq;vPWcqgIf6=EId8!)-&Wm>G!KF@yH;pp=f z8^r)`)N*H$f*g<&=ie4y=TpokszA>%kIHi4mHse* zQm@GM*>RP}Q_QhD!)ZHtZB`mR6^X%ct3-bu3!`aVWC;z9@DC;?m%`{gft68BD~mdr zTashv1K%uDNi(ZH*Bk{ z1LETk_PV8=9I75``=FIXL1~aZzz7sa9+zQ*WY97qxyKb)$t3E{ryv=-B&~#KkSsyV zhz4o5aVbT}lT|6xpiNU$f%O+-m(+w!C)BH07QJ4436TgTB3>rO-#AS!V?)H+f>V4= zi2#AyWGlsJtPUGDDpuG2`-CU;3mSPjT?tC&V|qG+V1t|7>C z8={V)&F(7N>1&W>kmYDdK^;XsPaPOYBy|w)X6oPwQ3t(B%xdq8rjD3?i9;P{wU(t0 zp0~e-slysTP6P4_Ttp;vkjHrNfBG2K`0+K1Hfj>34LiS!G>YV~+I_f|Jjn11mlj_}Ub zQVbpD5a=9g8|`CmVuudA>mZNR_n>e1zR#C(A+8aMp`(}i)&CoaSucdED zqiU!qrj#PnQd-#>A9_Rbmi$$le>=1dDSIq!gOHYSh8TkEwzlCj92#qB8{o%443YC% z>_KI-G?Fnqbq^_*D(7N}lF(fEo|L{Nu_%V z*x^~AIHG&-$R0=c;GWuAx`!?Rh)K^)k*-q%Vfmo*XrsiE*xiVhllVv2JA4uLVTkYY z2!Su8uEqkkKO}YDaM(+h9KDlP41n+9#Xi-VS`^<{yY%rua`P z7#Y=DAbBTxIXp{Is!kL!DZApj5fe8+5!){;26$G+qtzMc!|-A;QZ_mE^uCmxN`i;V z0s4jMXeFFq!KjfVmIfzA|571VT03xqhPV(~>2C8+|G4tU$B$? z9&x8t$-RcS89KoO z;lEA{;Ekz+cw;J516jyBUut8}VI~v;)PD=%G=w8KlVPTPSo9Lxua&mc6rb{IxEj*H z#*u>@UyzY3PVYfT+ZdrRM(Cp{;Oi8;Lcx<1JWK)Wc&?x-*L6+3Luw!UIB4i_jo92CbiF5~m{E=9i%H^mP8=;RTK zTtK~un~AtK;+lhNGx<(mEbh{^E#V`yDTrnTho_`ync`L5EV^QiI47+YGzbV^INcia;rIcWu>`^R0VR{1| zMFEK%Y#;C5DGe1U=4Q5t;yTZc5ER)+LJ`vrhsj-fxX2LlRHLZI97A z@#nSjk+S_#<)`JL)4iPLvBz70{IVjvefv&Tam<7vfkk+50?sPULt>2q8*ea??Hg5v zwliSZygwGlu#uW+BCg@s(>)o&7`WAd&d-7!Z1d=1=h7TkspipQx1}M1G+2iE#iiW2 z0us83g$a+%Yeb0HwU)v=b&0q+0__kYiAwfYh#f$kXu2G(>KLS>l;R*1$DqYEaKvSb zG%O>giC`EnyvS<18fI^@x^hEnaq1b1u3ihW3T|t*WqLB3rx`E((u{WkzeL4W&Dsli zQ3b*NMqK;cL`A7Q)SIr7c>NZR!;V7NiT(Ma523sz+5`GxF2@V$13o1}Nn~&%y-8k- zqKIsq7$$}}M5_^m)@^9Ua@E%WChAbUSYE`U7m6vHy4yvbNxDZvb!{2f@4` z^+vFRm$eq97JcbK_~>hB4At++%*@Ql&&$rs%gD&f&&|a#RvCqtS?D|gNChB#XX82( zxRORWj4%#qip?VlL}u(W8?602lsHa@DpknM;nDq@Sb?TX4`o!F6=o#Y|cwSK0! zF7hq@C!W7a^-F6iIE*v|~&q{kM`! zp!2ygBz4~lwfWTr?LJ1LsmHEaNoqoZiijdWMUCy5z!tej|{9H`Qxycld*?b|Kj}xl6p|sNW&oE%MeZ ze}$(Q$2|Ry*+J&*^n-&RMW9-{SrkBUuv831nByBBQ)qzDF*gTEWgv6_m;YYn>44ma zd&E>)#{CE_<|HoJq^g{H`E82^Lw2st;>d#3~m41^8f zNUQ+G5W4Rn2h0x8xrsE3yZo^6Z)EJ1N}Qrcd7@06MW0+p4&;^H>LN_711OaP`5XP& z9l$PX09ZsT%PYoT!3*+g_7}uW(rWgFPYFX+DMP++FxUf@Vt3y??ZylY@6w z*RG00N4Wua@gzPyW;7wai_));DfJ|+7*|>$00eQR@e^ZoDymw`n~ui0NW`0lPJ}fw z(&pUmh-m=iXI&FCpI4zoG^&YXlZ8&_dNo|odq>N)hMMN++8z`K))xf81A4MPZb%Qz z%4pWHGR#snMvZY-VnTW=l{`mu!?c7UbB`cx7?)u!DE-4@@eFHzUT#B4ac*sCS-7qs zx3;zbRp$tKc_lU>Ll3?VMuSOSE5hx z4aID$xE#z(7qWAWqhdxKL+kat%$*g0fJiLYKX%H$odaVy%aRweAbn8ZEk4bZZLsdT(%_HjEm={1deoSYx=B(Vyr0B7_Dw z>TbSukb9md*=&1>?+_@1NfeXoZgoF7SCKP`oN43$(<3vV0azeSyD6r2LV1~2|ED`B z;yh5ONbW)3MA{#c^A0(za{3br0f1M1DcL?egX6>zg!{7FkKF@#PUk5-gb9MD^w3E( z=MpXiWfYmx5o*OfOzENZ6bn;20=R=IT>_ZULkwMFJ`Xj~doUkJ^IgIpIFWe?b9Dm_ zlIGbqHb>)~YIUJ*oJJiCg`xiF9>d|D+~K%~Id}s15TxkvH!Nc{R+MN)Z*|C$(VLFC z!cl)h#38u$!i8Dq278*i!7|1~@mc^P8booZlz{pAvZCh0pyY5%PnoaXbd!`E7&wZ3 zch9jvps=B$TL}=Tw|6Da)FV?PP*iS0gen}KqSFGJVj87iE6`LH2Q*FkUjQ`K$KU{( zxBth0rcGdazEPm*V*m90e-CK-`L_*d`c157{eK5E!7BN8K+~75O~8l*XaXGe zRe`3Z!pn6MXbQ_)DS@U{UlC}6`F0=BgvHalFlkxFDIU;ts^p@RK+^^C*8c#|1QTks z)5tQQ4CAV+qzyE+pf(bLrn_Q5(@*fUf|DjdN`R(&5DH_GXQ1gmJp48RO)vld12paX zRe`47-&&yQ?4ssFvxY7?f79u`R!2^1g7wPU#;~^sYCjij@=VN*j*CLQQP^DbMnt;- ztn3P0i*_Zmu}NE@64Qz2V!!?!QIk5O(tb#S!ncex9fLrJCGCis^xxVMHL3GEq9!Jk z@*CI@HPIC~jYCM3Bn){H1xT$OBJ;OYtv#t;f+fDQi<=Jt;ardrPdMJjs1$_L5JxyS zfpBgH(VT#5StkjH)9DJ~K=9k@VXD0-GXZKhIGT@y%Syr{3ALwl=;oH5hC z(IQI zGpc>YLGHW>r_*$kkW5#}#@%g|dNXc3*_3pKY)Ud_`&*^!WK*)*pHkPzCiQNrlJ)*? zq(L_&-#p!vcyv?Z(G3TPZs^gsj&72wBn92%H%|oJoPUbUIJFH;kw%YG)6$K^h@%@Y zX`N%#m~PsW=?dMXCYJb}>xG@+(~1(hQo6K~%%>IpxA?Te&hu#n38nl7_%xi$ArnoJ zM=*sHAcDc7X_^G{-`<;>R4*y0W^D5WqMF7ys`1#gV5*7d(ynu<=2&oPX<2$`rqjMe!kZyT78nhrG^EO6#B-ILJC&P z?Zfe`R-;P_#UO=Yog;;IR?8!Wc2>IOc1Zf9F!~gKMW;JCBvZoZqx~s$jS^C_ zQlrEEPoyz7jQ-|n09#arl^X5Q00)Q$=+U=^29l~Gmb5AY_Q1^7# zQaVim;GW`A@y!M8+!K8u9Re8I83Gu($=|2CP5?uf`BUl|0i@=RhDQ9~NP_}~e)AMC z)T4l*9tCiKD1aV)YbYS8DuOBC>^+-{$W&YvW`Ww(9xIfj3P;bVSGxWFT#WozVbq_6 zYl3FvA9qFRcxPBs?eewJ9CAHdKVCBN9Y0|MrB7EK+N}wjB;#!T7$aRwWtAhH~O$Yf~$K#34kd5;5!OJ-c9NuW~M5EQw z!V{GQ^F&FNk%AgR&4ok_#Y_zzH>9J6cs}TKml|e*8p=9H4M}`Z*Qp`LqXuueFeW6V zriPp@T1@m2L(W$)me@`VDVd_2&Kpb2`R2(W$0LIrj|@0KWI&I;MP!gv87auXY%U-R ziKR>iE<==LArXT)4Ib{4(CiYyjLs3kP&bvYXGR$A(SW!1mnIDi&#?VtPM2nc;a>|8 zq-KnUcb*D{fAdr@+@pfw9u;tasDK`Qi>M%}GJ>h#ieb(9-6~JdxV;-r^IpGtRqfi7 z^GZwd3yO;h@`?(|iec$LH?P1mY>|!r4>TyFKQ1zCku9&-(E`m&4(2qEa`t>56tfI3 z{}|U&&Ga$+sIhm%9q21Z3a630phox*bV$5Ye?4q=#IPCNoME-$aAP!wT#Z=^nMPWW zPp}KUA&^|Jy7P8E+DXDY36r_ALjEQzp;))#99!Bc=xuZ$qiLQ&i;VxYpZh?T826Wb zg0RGReH6#TjueB8vV{kgsymj$x=p*!DqX^D0P8T?-3Dmgs^5pLw_8!^+am6613akw z;|t=q!_+oJ3JVI+Q?L=RG+djXn_F0zTbP$$oL^T^TVGO$ZGflYtZS-WGRSD%8n_Lx z3n^dd-$xL*4bb|bw%k&M9UEi}cs+%|3jdZp*I-2#3izO-PLEZcz7VcK#(+FZ5z{fq zcr_CMT1fvHx3Fm$Wb8sgKZFW)#|0&Wi~;$Rg8B_I%2vrK*cweqv&vO|f|Y8Z;&_D3 zyoPmi>QgVy#YSt%A)k6--K_0W3=#CxZJ?YRoff}=66Oc2o3u$tN#;kV$3?R zr^0X@&)Mp6)XbAyGfz3{5xlis-b%K` znUby&ZE;%0KG=gHpRtTyNEa6FaFf1d8T&exk%fErrDKva;Jf~sC6k;_dL}thlFpjs z{55h^vl!phc%2J8CC({2)?qM^S5=xCY{?@QiL;jUP8T>T-BnalzW+9q{UL z(Y~1XalM4=Q%8MfFH)ab#%EDfmb%3*hYgMjRE}j}b;}hi6U~MO4SskHoS>b-nT~hn zk^#eR=F=I+oxkLOL;pVd=sqL%Dd~0>ZhZImT@C!Ns(}l_&4*`|t-Wj*EOol)Nv?tw zvy;f4S`FwMFyq%L;UnN(~Ra`oQ{V43xir99<6 z3uMeP|3}->w!$<;9J9Jv-b`W(Q!&iy9(lkXwdz89%eEUUPY6^}3@jpqhBYQQ&`U^?OI%M*c21V7zW5XA3!}kOT85 zyXinWn7HpOGX~D6Rrsv`xO`Tof!Uk*tjr9L&q4^dh|T(v0>oxSHhz=br7IoC^jsnXI)@L^?q1!Xm ziR#U0tBp!vL+1|#b1VUU59JErShg6=bF&WHaP>UhIKMp7)U+{n^2%U$s3+y;y)o36 zC6BW13sg}u+GqX>qdj!gtcP)3yena}r)^^8GQ>Ut3*|;;52wR)tK)Dy4?@(^`+fod zI<6J6z-fV+mc|A2zkX~BH|P78zJL{D6dWtYaLIVDf`(6_>Vt2ijYe^F_nlET!I6Xg zGl{C^k5}(>OQkBSu`Q}48Ks=g@v3-&>4_cvRcZ#M7li?)gJf2LU7qbq(W$=p3!Gi{ z){Z$cW^_Ee91qL;GBkQqOi%3)-kB+e52Wj8is{*fDTb}elNm5=J6-LlRZYvU}4^O0z76EkQF7YQ;TFvzY)u%GC>D%`WpaSdBH4?g z2h6u8_^}CNsfBY{9LoTnbto@l`O%5hI>K$o7>q`Oz%ctxanuq=K^X;;?mA$2d=|+E zNcTWogf~F9tr-W&He1FpnuJ%&B>YO?BplRpQP_Y<_<~iHqTtH$}CK9elt>+_0O*)by@$? z4k9vcbUZJ{OI_AKwZm~|ro?olF6*CNm=akI_=h%s-Vj+82kf^`7p~N$e>KH)(M73C z{~i5wVd*1Fc{Ebj=h~LGzbUCJAa~we;h$aF=Zb(*CC(N9SER1b-TA=!7mf6UZvWGp z4-k^+z+$V;Bz19sq%N}j95f4j8>Oy*z85^;-%i#16zIs+4>rm{#6L*ESYl`VR-bY1lcL)p$`1NyQayfgj#;RWQ`F|{ z=+s0OY9^s2Q1{5Ds?@)mf`^*vQ#Xm7QPZ`mw2V?Es<4^3<7Y9N}@ zGVYdl=lkA;vQNGm@2a#E+NuC5Ek&%-0@Pv*-r6Z|E%cQ#RV{mL^djGP;@D_?sT0{~ z=!$rd%d0WSeuQ8 zw`P80tCzV}VCwf-r1rVIq0@+)=J2G%;N%#OTWhFY!5g0(=dx{wESx=aPUVbgv!~Q7 zoIP#!v<1`3XHHvET~#w{;ezTT0aC{wx)DgaZB#fpV`_k{x}n+jjBd?y&zKU!XY^5= zEroM1EOW3!nnd`651_h6_eFMF*}atAi`gYqj?Wf`JDbBWjEFE; z)p)D^FH!IOd1u$f$l!lBRz?a|QldCLInLfTt)sQdLfVI(NcUHg-$dc4h=Q%AZ2Slx|lL(*S-aFIPFiu zx1)qGkcJM9b(GK=x1-?w7ArJ>`v5N&TAv}}NmW+p030;K-%&%YP&2-whFGDg=rN%_ z-m0M$!seshRtSWQE&+4}?%V8Qyh1lv#BM#`xsF}w639QEI($c-9>!r#&E(YRfG>2L zx6xyutjX?3YHG{Csng_*7H^DrW5pXM-gxnH#mf^fU%UeG3dJiDuUNbi@k;;uy=fNu z5QeH&J|~@fSh_>iWN)krJaHR$XaZp?9p%i>OT)8@h~}6e9~- z`2JWY`YhIo9&kGmXchh9dhQq1w2aLC;tRZW4IUWP7*;IfZ_=O8E0r~et%XxJ>2Il? z^_iky%d&Ij}y!*tvU%a1+_cQSx5br_p9un{8;yo-LT84VvBjTY#FxB85 z4%4>2$(c*~1tukj)NiGSq&eQmEJGC^`)jcc<3Rsvm#Vht#2`fGNr|IYV`k7Ta^c9j z&@EPIUy9`5A7(1G!cv(S`YaQt)S2jW<}J8zz>SGB3C-W(`YZY&7(8<$eDEsfIq;|B zYCss{Ug!q+^Wks7g}F5Zjcc6fX@xLZLD}0fU$l>aW2s)zR@*WkMmFJxJ`7wXvjT(- zycV!Zc5|QRSy?5kf4Ns8Xxh}cF%C67C;>GsN&x;OGS!X1ti3(}Y+3=8mOF6e?@Cx5 zqshG-1pAd>)3*pV4bI1m^pf{*Q-N<}qWPnvdQG*}{$D3>I*bnJ?i6rZl>nE{M1`s8 zI9pC8wRGyvE1a4mW7WHknkiEs%noT3XBP5^SHUCRdsxBsL8aB`_ZZk3v1y=V%}nck zt<>wFBaF$I<~w>?ceeXU1eH?x=aP`|w)Vg=2v%_?y8BO?W_1?A(Dt9TyD1UEtSc%k zEv=0-G!*8SmX_s}mWFc+>dQ*Yit>w!>Lc~_fH1cJ!aS83Qid@9s6E?`pq5HtKfTl? z>MSUnkxay>iaz>I2!be#{vkv-V4Pjd?QJf`>FL7swAFqr6T1-Sbl;)53=zDQ0*IOA z)0$x*hC#V0IF1$t(7&1jhne9!ftE43$z5+6OzX2_HLcH!3(2X!sONF;SO<}l06Be{ z(sSqd6jKS1TjZXBh>CerTc^}ZW~2a~_JBTOEQ@aj;&IR>J6)m)9;g3UN<40^Pt}II z!ESAqrL6Olv02`VH&cB<-9Z0pif(YY55(yJj++98?ci9o=)dJ{zSBRILX`Uu)XkLf zUD}b!whZWs(vD=ySR(Jv^Sui^u0Z9ws8f-x3Nii^GnK)t_*lH zecy@0EF+2`Bv)Aygtx%igz&5Fw zLnj zs%4ZR1=`jZJ0&z;hlG2}AN4e;`rxfM<=g)40kQSEu1z170TITijS<_s+V9hP9Tqw6 zv5Y?;_B9flX6SOFDg8T_?y!ub-Q@w=U$ziug0`=}0skcMue%ha7PybT z)PX*!^*9BUcR<9`%vNl%_I2HC0?1^}ESbhpAT zx{*ky2)X?g^_$qAWftS!Q}}I}B?vuFMAjQWaApLgHxdkYtMTM4CZ~=Z76}Or1x9ct zyC<+ai`}8@;@B!Y-IG%L6oMIf;#6bGClPDdbRoRGJR0G`Xj}vbO=d$i=z=b`4&YZ(N1oWX!j=FBFSzy zy-DaK2WV&IZcd`A9hAJB1by>TTw4JCQTQxe#UAI5+f!`I+-8}l;&zkmVnu)w&lNGh z+%hAmeHT=`gHyX5QEwKu+A^=hkGb@NbqXx=N8SEmJ*49>$%>9in%?l*1RO0!+A zp_&XCf~Q*Mzo=z^rkNkLx6FU0LU=WR{85d*g=e<`v$f1uJB1sE4wMA(erT`R5YcQJ zA&A8OW}~sy04vm2S{iMRzUH;`W1K%I3FAZ%x@noakisZWFtS299w>MKW$)EEQ1CrO z%&oG_mz@>}KZO09A+J#$N@rs=jwK_&L*>*JMp~infPT!^V$hHIDz`BMItBnX^aCPx z%Q&80#sy8m1#jg$_mOML{UbO$mfak7d*geS@ddgGMgexaQ|r_E5qmwv<8=nw_RTl< z5pQ4ddWpB6c)i8jU%Woz9Uxxcc(i915$abT2wG*Gf=2>cr@%-c>lAcH(4J0oz0f3X z+Up&K=J-BZHUz5yt76?Qbj=jo3SDP~&Ue(c%+W~qKyzI#Apps@dtC;{FQaz({O8bO zPWR`IddTfEp*wM?X8X_(x)sgP%TX8M4Yd0pD|8R}2V0@1$scHiX!!zoUM;&vu{)LB zKIEFxs951cn1=`R6%M0E;|_NP6T<`g>Sk`ki`czb8fJ@lQSr8lw@tiD#Jf~HUUaaG z%jFj@J6Oh*Uv;REhNJeP6{b!N=3p8U|A5YAVBglq00`D*;2|~Rdsb){f(hu{T|wwv zLjpS2(+b^%?n<+SjOssxPw3qJxZ=^dlkhDX;LnEdqH~1CnTO-|HSnu&9fGF*H~c=h z_aOY|?L}~`&_j&OVe=Teux0KOjLZdy9e52zwyDVezq$7gXr7ssckKI#n}uuQV7UV^ z?<-vU;G&Jf`F>cAVp6Jt$sKr7MuzonM#lah;hMV(pPiavM;#YJ|5`A)mk5&!$i!SH zExgaetl|N=mjTGl__hObwBxWeHaGz7(*SIc254QA83{}e3w!_@mVq#Tb;k*`7(7<1 z(E_veq6Q4wqGr9W6=qX%v`#k8b6?-M+K#FwY_%GQ95E07nwCdqZnvAOw1#8Y_LQ{! z?7C|t>%i$(91?FNE3YuGC|p;P+Yl)WhwJk4$|Cs%k+Qn{(%jPeaHOCVKpVu*5}Lmm zH+xOX#uG5sg_N&K*GSgywB?p!PVtGYu}yMa$j;r4S{5tl@22X;FaU&mLsrp0ggl9Q z7=Fa7xruOQetvN{uOY7}QXeiTYA7i!4ClihS$#pIzM-f%T+)DAe%u8J2f9j-kX-g- zBS|hm=vQiN1+0age48n|$j@)J^}_;MwWH3ZSRKh{zn!HkZyVmke!nZ!k*cTa3Gp)U zW84W3AoEglu!9o=*O(0dUH}%HU)E++qR;YSUvZeG3^PxSG4QQjC^-uwVe<{=(I|zF@#*7HX-DHa}n~P z$jiq-$ibZL)sB+yjT3@U{6~=F5UFBw09WUuT*di#_6t0#;(L!Fw3I`SBNXNkphiX$ zma)s|gE@-B!^kC7Gq}HD7XUTF53qYVyHR#eWp@d?x$JTZq&AC8X8@J>hA?QPtQfyi z3}31+LFYlhaYN5d4>*a<9-`K#k^IP{<=JuLUO1SIbk61AdM zXdmc`O7&bz#WDekz-?w1)wf%%Bj)(C$~@d&Mbnc@*z z`!c6Sa4l|8a)hJ5M9~PZeTkxxaxdMfa7erNMY^>Rffp#S$O|0F0s3ZD^<+<*&iof6 zU(mP?Ewn=OP}QLsF0dP_wyn?+RtUQUtq>NoLRnTQ-wNe*4#Qn5=-kVAzb+ob4b8Mk z2JS<6jH?11qQw#ykQ>a|+KjhOCPAC>1>*uxd!Q(Atk6ozR&gA5`x@e$1*i`hRO1-C z?JvEAzJ1Yb95O*41XOeeN!^E8p|i;!g?xb>4`FE+eVn>OsF+>u{hWuJn z?4nzNeyZ3#obO!B?h1D6*`3R-Ab%kW8(*;dJ~Cn%FH%Qh=Oyk_zh?Jkc7Ma}Z`u7F zyRWeOD!Z?-`#QUCu={&(dLOeq}UaPVU zUaYbV_1`BSf-qh3Aq~(o+IA%;%ygihj=%LccXYWiFdPjKNRm4@op9GHn&byDc9*0 zpoIx)CR)vS2i0|1j3m@Hki-m2ZN?K=Ho;OKRawMRKOjGBspVW_s+7uwDT3SqOuu*qWf)*5K zv866bcP$HRLdN-V#P9_s2=xR{5TexZCKnF173fV!F6`8;;dV3!ws6i*yjFQ8uk2H!`^qc8Bp5$efdxx-IG z5AYpi1#!St!#xSv!Xgs&6;s?g?iFUecwzA(;x&l3T)bn&TOry2c|+j-RfhhUlTE4uKB=H;}EnR`~zQP{n)Y=BY#j~$A$H) z5JUymG>3c@`WwQ%aAD#IT?U`l!*;-Lz}1X!Eqn+dp*8TKDuLMq^oiejAf1EYqjy@_ zxQ@m(1sC26eQF;C$Fi13TWu@!ds!b-e+ph73jkW|!1Xa_P4f(_k3Bp+QFA@ckZuR- zV-%BWN!G{qekLO$G(RI_uR}93y5F@+vp!aV@g*He&}Zs{CvTb4pU^Cid3nG*lTOm! z@)!?@lIkugqATtPZ4;GR}E+aI^3>C26%NO>_^0gcQsG9=yqJ(X#cFE*7z3P zj^gjh!8bgbZN}Jy!R%s{C+ly0DO-W-Z_jDrLBT2lG|J-E-!4XzR6+g>L|zZbv$7Aegut}iYqs;>=~7S$H#Hq_RIi|fit>Y(plS6^R-2EsP~cD?my z1J~cWkn#iRuD?B{Ew@x*!1`Mkvh!>78tP)a(D+oU^*8-PS${iV(7*wS>u;q6^KJOfFDfdrJ^ao z0lU^dmT?&PI%6DEZpPx20NY>uwTSk$ieiQ3Y`siG1?%Erl5~GhM6*SMc_C~8k zr(%J@?E;T$Yqkvo$E*~qMJvIgRmbx9c;IRgw519qnyeP-zm{^f$Pd_aZ+J|bXDRF= z|3Y7^H_S$csXOT3P0=0vYi%8@7LnH08L@iNe+#BQmIY=+3Q_Jiyg~VXR685kfK)wG z9}mjA{?)Y(O?^BqZ~2XEq^f0avFJ!&9^)2^^rcQ(EP}$hEEXAW#TJVe`x-BJvB>x+ z$<)VR7_-J=k@1OV>f=*yYr$tyM!%^K)Qo>?0l@L!@%94PAZY`{Ysy=Gb04WjBd=!s z=TgPhjGjo7YQ{X!TSn_2tC_=nD>cD2W9Fa-?u&67e+Uu4Vwoeox-m!L9&`e6Z?u$d zvTv-#2IMd=nH+(7T;wg8tiX>YvSdQ$F{a?{QhD32+`&U-W!HyFb23uTic!zgUv0@G zo>8_;s*E=!>Dao7{sTO;4(4_E?DBQ%RxDo)#UxdNLf1>71J;SUI6q*6HMVrb3jIuQ zp)GSAOh-7D*{!`CJd5k!!JyhVwn1X68VLJI=;1JAt;VRm9kmbzx)`4Z`a^#RJqgb; zquf`pV|UEL!KGJMKEqGnAYl z5&%eKo##o4N9#OKaB74|Ji)0EPEGfCb?0%4Mc~6@6d>?{1GKpF7^jal9X-^Lal0RC zFh8-(_o$-ZuuQBxpsM_!gK<;<=s?Xd2(=8*!7SmmLxlMsI%;SDbo`N5?0&*UtK|!D zU5+b^>r7nur148!*z|7n$2AOD*b{ysuFnzfjcX##nQ|2Mh2^*lK+jx@>tN9w>Pa*s<9C z+$R?%%G1T+viiD`aHJ?wT3ZjBqG1F|3JUA$%Zh7(We}`%3%2K9(Jrn1Tw7AHFxo_W zK3oflaUpDUfPt{8~p+cDC&j|B6ANF9ZOMJ)u$=dqp>&oK#JN- zVQ+LKRi*yj6oO}fz0s~!B^1USwJlaX`pm>sR$+5!yrcfmLG-xVWQ|pQqEea3=0>l? zX_52+RL#${)k+vdDs!V?g^fdFS^QZb2Js_D{X(J%2BH62N({oUX2>$&PqlfL!ulbD zc8yh-8(l)>)xVpfD|E`-=nbfsQ)2a^|CXn*s(&h_(AXQjUps|>ExOm!SiMi)O|mzd z+P=YK@|GXENL9_As2yl;R9~gXdKe+)>a@YpLV3@RXiI%mbyOcEarF_Pud1I5;%XorebvP%<@r=+ z@Xv$?Ra>rs9E6tQ-XnYutC5kYN{Tbb&mGYlbfHbK%K(gvjIkC8{ z{YOIjx6D>t50JzU|4!ztD@lrkAyUiyAqo7nK|c&#P0PHZQ(A}S%a25D8#%}OPx>s5 z-euFGV;=wuVAW}Z9zKHRbp({y#M!zAZ(ZSu29T2>8;~VZ#oNhUQvq0%A=3nuM3pNI zV7EIUi7k%o99OqU3Y3MmT)QLHq3-9M>$q3)@$MSKYb=i{0k>nfq6rvS(}hBRQ+4m9KSc-kmWA3!iXM_q#& zbyf62tGx~sueREkzfg?Wd9e-@I*B?^s0r7an0RT0R*BWqM_E&KgT$uKoI6Lg@@Lc_ zD+E*2Rw!G#8M-OjJe0%kV0M8gqlbLXE?^*pLELa}VfQR@jUTXkE8khg?sRqsv3nr9 zS@<9ZI5afCPj*?)8Q=^xGQlkD6^mCQUa5Fx;!O~5qIi?UJ4C!g#XC$qe2da7{~CKv z%2A3mr={nR;xq=X)=u}F&_&#?e?=uh1NuX1&bJY^)FrkR`q&D+iXR1z!k8nS0$RxL z#5&3sv5xX2T2Mxs(9N76RC7YDv5um$sH3P55*rfNQT~mgCIq_#7-~e1?O{aPAD_4% z5l8YTNtu%s*@j>%J$0G;+D+HqOD!B~VfQL_d2|TLR3($z7knS;*NDj|u+LrrKkdL? z!A@?|N2O_hA>L!+Juco8;yo!|T8faI=C9<1Hu0Vp?}e|i^Q1ZKNH?O+Bi#tYj*LIJ zlY0CK0A`a+lrFK<;picLIM#eT0FDhkXoZF&y6xZ}co%h=r3N8WVxIIT@S*%=eu)dH ztN9^%+8(%y5WWyT6uh8-YlXo2gf=34B>el}LyChTTPs9LV5BTI1lL};M&sGrWTNzK zOO1)P+LrkOG74X11*5J3@(ErGKwW#VfrHYFjjx_C;rQEXcQ0NtXUkznPWZTFd*Ri2 zzZv&n&c_EF+T)cB9D(ltyLw=AZPq~x?w))4z{W^zc;$-K5y4y8T!KR6p167d7#-m~ zr<#*EJ@Cx@Lq^7)kK(G`m4M08mZN2FJ?dnyZCtZzZBull`0lCdzT_BHL<_jeR8hMH zV;lR;~!`lxz?nzDvq|NF3Y zI2$dxM>csUH-wAo%W{kA>cge=1qFqrwc)(Ff}(IqenDO&l3zzKFi`4yq*725`g~A( zb}8*$@huu1GIK%TC#0ql3=FV())aSten;wAgSA~T*7n(sa#zI#8yl=`uy~*^qV|wn z`SDH$YX)fFmgs&Ho$XcCtkMxUHb83-H$|h*@!7b9f(|u$&=6`FCHUT$ zSkvmi26&7u8t9)&fy#ZlDw`?m2WST|6l|IYk4=|%{b(papyHVM&r+EGWGxhEfsMwi zi{y<29j-PI%CwZl45OHfW5qnEMmH*RPns@c26v>gnwrMQ3F}uhMrwFWuWgEiYib)C zYd4~OFqOatJ&!T5X$FNpNUO0RJq)1gFqO&OXB1vO2n!cuY?wKOL5}FwL)~+00=}sB zgFR|g09I7aJ- z)2=S3dKrdXW2b~M2&Kj!LJ+HP?`f`^9tc5|!I;JOz>HzRnw~<5!GMT{&~pe~#Gzlo zC86ycc28h;KD(H&aeo-QJ>f#Z9?sL`{DK?^;*Pok9P`(yw!x@~@q{oow#$P+rK`#^ z9;2L6mhNQtHg+$=v^5NQ!0}+@4q*2n=GA3C6Tk~Wqq4ySI;2A}9Crkb8ZIysZI(qb z1&$g*(Fl$j!qG_1!!6t+ZX7ajIb%=*C>C+$93W;Kd$4$)Yiyfq_q&+g!b*0z4I%+I zJ7OL`Anq?kqQ3*36?CVAss7I;hd0?M-eaRK;0C#n-HX^|3v+4ekryF+1`E4s&UxF>hW z&*Du!n~-1S3|i*T0X3rglQC+`xEM3wV-N;cfq}bjH=-dy&;mHOp77sjFQ{MHr;;d5+K2UinBAaB}EENA;V* z@)u6o&6bxCkCT*iRX-NsO0FDvi!%%n)<$#4R9Ac^W&Y3>Ewc)1YcMz# z@DPj$1c#D`2ak>?$?EltX`Jg9bq=jsFX0Yy4e zS7bCoGY+lzOH_3WOo;1$ZxZe2po4J5m;2PiH&f})*Ag*C@d3n_5_fr!Lq^9D80e@| zIdHI}S|maLuB%pcC$x^#4qI)9fVV?kp>E(zKqYsJt!`mEg12HL64J_*_x;LVBz1F4|h$(tG}b6)L5he7}WqP7yGk}<+ua34$o-9?t|f7 z^~R6mD2i(zzJNlL$bqP^TRlq-@zn~;fsR@V)~f5gJva^=P5=hgI0S)%c*ck#bQaEE zUJ1XH@wck&D1gQ0(1ny1jMd0Q%o+5Y7CWQD z&%7DuTd+TeH{xPftMBWG4+_l2XodAs;=?*W=b*L@qaH_pj&Nf}t7R-j8L?kpeSznL zaUBQ!H+YL2b-AM&u{eYuCj!Q@XDA%4a8eZ2Xj{ghKprcIvhf;-$j;#J$2)VcAJ<%y zwg1dVGK9x+87%5E@eI~5VzB5vdA?6JwnA?Q|1}i+*PXkN^wbPH>bQavsIr^$`1wwD z!-|zqB94v}-$lP;NePziFz_vCHdT#)*}0ELTAZPE>l>oka89N<`v8s)(V2NEAM4Xw z_@{LPqt5WvbsL)^(Gl#OoR9ZLxq_(5!HZGmKF~uUso{^gC1iKp$d0Atfu*_DuF4{Peus9s8LXzlMTiqz{_&2`M6qI>-!06uF zRzH%L{7PlKQ;Mu{YWgZLq3dGRaz-%!a(L(X7obSU=o#9KwsFtonRh6dmOgZrN{8@V z4@eibdQFPwSCC{To8U=J@!khk7c1VG+U&Tnq}oaGJkE1@q)Cv-nw62&%bSj+EIR~9 zO2PCgNx_KaCu6Vren{sWs8>435@z(V?q;e2uyh4<7`-6(nffo|fKUv!u7>(N-wEa| zJMWr;^VXwkI2uI%wo6@ypnT(OwFd;6?o4HSIqC=`>ng%6@FURF5%tLd?U80$=*vhu zU>WdUGGIB=11x970Lw)__&tTXUX)D{M(C?v!jR3Pn_qJ~Z&-T}*$K&|AfekDrq)h%Y`dq00WUIfc4EG^2*%`M0)C@d>3%*QT) z`r6$3qQb(4g1ox?2sYbW#%Ydatf#($x;{I&^G-#yQ{#KDoXsvmX3dJ#P1Jiijnup6 zaU_syy*l7)OtZ1w^Ng2YCk3AD+b|mS#NMtH`bQ|uju?TQqb)YJ6<&=x(LWR*|9;6> z!VUo@hW_o_C$P`UtzUgwE@?oh%0i>>!DImf&PP+fARq7}=-k2dNlA1+><{AP6{$NZ z6M%ZkE6Aw~ESj4goCdA-^iwMLUjHIztIUU8Xah3?ZSc1a+5k2Lf=4;C2U2*wgA_2# z_26M{tJ)W(!4NkEi<3dE$|X$H;st#!x79M2KF_pO9n)pK11y+!9WxtbnPbSd3MVkb zH-9sMFSH?$RC3>5fQnsUtNCc_g`5!B+v!N?PML*fPm81BiZ~r0Z-M3H zr5B5rUNUJd3I?haWD>Gd#RUiuF1ymo5eNFhu{Jt4NVxpeZKJQJ6P>^sY=Clf^YFkac_s8+mhnOM8)j?*?NEeGldaewHh0QqBoq={>pGw>T~ zxd>r#ir2qPsFsn;Xd(@`6WPVu4x;o-M{tF($ZG_dn<2uHNSS$_jXR4GIGqAZyueZf znh^(rVQg{d?z=E5R94F3PUac-=EFyT)xXCwZ=`%?k#jFC&is-E4=l<&VwtUU<7bHb zxMlvr-C%qxe%=e!T+4K9urqf}yK5_rI$$~b3j;2l6B@*OTIO9SFiRbl`8q(_kpj}@ zP_ixj9oE*%JQrzxh)@2AQ=CF6Wc&v#9VBb|fErFy$}mY@4V8Oiu`4{PCc8JsIM5g_ zpi`#!G~OZjF4ghlaIrTI&b{Qck@F@Ti1!ryl!NQoy`EhtLE_;(f$`R>xa0bPKbzJFbu`YKM-w_BRK!q>kJU<8#I?f6mD}v_W@*Q`G<}hI>8E!N3o&ohlY6t{(kTQGMGSg%%^aT#5D<5H7+dpm`CHnw`uo> zxfjT{%u%1i`!TMCxX{N9vL&z_7cD%$i)%VA?7yZpq7V=@^9y?^94jJ>4(eZ%I5?-B4B+Dagx<6c>d{p)Ut>VR=QlFc?-^SXftAR!9pQ zQ?PvGO?uYYfJqO#W;>tqf_P13C4%~a(h zw4L5oKNU?=^)m-@BCwtZq=bo5hgzZ*xV-yPC_{q1WD7UyCM422&%Ki*5mbww zMvz~aXcw>p-b)m))ozim)tfQ#+Rq*biq|mFte^}-f3$Xjf`6<`1bf)(FAhV`FsrFZ z+edv0^J3(G1_#sj^W@M>t$sib&+jxfE6ml7nwkzTMe}wh&%;^lLOX<~#&T#xjG!r$ zwu6nMNskn8#`4riMoh-?)QE}J!ZDYke=~++k%Bx2$TrDnie6cTDJ}7@#cqt74e``B z>!}sGF6mc<=x}ht6g7Z4F8w*UEMpW@U65CGHPsDumoNY=M>RRr^L~r?u&whCczqpp zhCNfAfklmItF2ZebMUSWoXdhbG~NoB%g#Qa`RJ?zW}iQs=CT#*JOy;pYlxr9hVw%z zfXrm(MTl?-G|sdMRKZ|3i^O> zrx?i+F!8?pP6bVTnVSGcRnhUp!ds%NpsxkYY?+(ZY1@#a2M9EAGg|?6(7B_IOmCT+ z7U|MUYkG^m$aX7u!?}k^`i8_fRA-YGwUyDZ-EKv>4=blZEpt=AptjV3f*VNoXa{zJ z;4g!=Ir%kkK&d6<0NHl1b0X!M9n%}AG83wlBJ^x>sSV7r@)>$NM`}5i%?lc*;Q(kS{B7{VMA68Wb*>5C73kMvYVHJG|n4z z`oI&`t!Zp>xx6IO;D=O)E@>2lG`4{(`rxuOq|x(ph;`ZZ*q2e;7#%78$pxoI!R8H* zrNy1S%5gVkl=JYx4v`5{SpP+X3|E&chZWLkt*IZsSE=@oUux>b@dqw{2T)?twxr1jP!KjriLg-)o;+Xz09QLz6C7m>siMH^z|CqNv4iLv!F+JOYYIsQ_+dDj-ddi zmaKZ}vf3W&U$a%y6^1BS;}WYa2-bo%anLVU;amRMqra{&+>srxJ8#0FE$Gf*<#X%` zm7~U?BfC8*BT-ZdDsFHeK0DNW6t)kPeM7oG0W4zn^X^-(48)%59UR*8RzJ0Xs zK{*WQKp7h{s%=H8(^~3L zK4Zh`gb%b);m9u0!Cs%QjF;5xmW&PM39r}+xF}SIZQ>#@irXsUsKdx_fP+CDvixo} zi0B}_kv(Gr`Y~t%K4_!T^{dEFcT_)9t;eVR#Bgw8zKI5q%QIA%C;*r&mc2o^GN2y= zI%tg_(8r@QlH8t+YgntU9#W9O^yVcP$}g~8G6)*Vx%(nd9sxX#Z^7=Fc{Q$c(jkE1 zu@t!XSD=8@hueEU52}aUVvcaKMTs&xQhbey0n{}|)J&UGGkMy~YUGLOfE^nPQ}m~Y z3vdKH4bGL|lrm0mRH2WGz#|LKl#+^0$e5GRSkfCirlL6-DmtMtA+fKUicZ*=@PUr0 z=!9e{`kqTgC%aU1ic3YLebyB!I>Du)6I?1{A5=v5)8mbmH?$G@2SA zX*4x5SF=B?89OfP4Vq_K_X z%d~cosq<}hE_gt5j<#YX$5@N}N}9CEdO_xFZIjySR!3p|$X2&GYA*S=JL*{Se?(dw z@b7?wVT2YhuowvkSOmD#WX_a;kPt&4AYp_pOoXk>tkNv)=G z>uT$dU%wXKx`<5PkDy3K#$TOF+x)Sk(Sp+avcmk_;*$Kr{KDKk?D;J!9=T?1q_MVX zP2(X{rH}{`zA=WsvA&`G1F}B@A5aItu1iAn(O&e(>M&=g%FB)#wm2#FSc*+5lI^Ki z$KvNLON!5#;rL$ilVi~jtw|AmZBrxXW=bsjjAN3bb8gnvZiuw!W@;?{kw+%Q=iG37 zFE`U-(IbnJqK~7(p4hmeDK7o#u@@STPI`g!BQJO#m=TMA8kW8i>OL;MSKgVi_!lls zil1FmvliRGxngF;B7PrhX$c8S#C(n@7JR7nZ<-zuv4A7aiKX}xn3~q6SjZ9Q#v-;( z4TxC85f6_=e0GW^BBaC>t2yGlSj1NrBt;xuQ@_5krhd)J^{XWI{8;RF<|f6?seux1 zWHoFFfj35E}{8-}sI08TB zc|Ydh2e2tgU0D!9SlL$lNk{>D)+xWQkM#c_G< z2^>*DLE&W|(ebkPIM^gZOU9*+x__E#;danrC{fxSHstlU`Zz+PvbzdYF01YbY))C8bY=7MHT2Ec#4P z)psrNedCv?Mc*#q8`2d1^*~vwtwi_iM>$LlSs7Mw3JC$rwAn}}M@lN|w8dKfJb0bf zuX-8Vrxyg8;EZ~FvHkFiB5n5E-Fn**bvb3OTuRy%*3NOz2|7Z@t1|3H=k3XV4(abH}b` zpmEj1QG3%Dph=1SWE`U35PWmUnM}@nIApO0!OzKgnVbtKH}&br#Uvg3RR-wJ9+*{0 z%glsMqj4f{zRJL%2{ijn!0oZqEps?!ggyYb#6N zR-P+;TN6p>CXEB2?d25?S)eVEXj9yqtbI^Q(a87*HfD=^%@32BK zRhq;9s9lc(mq%E@F0}7hT!-Vj5pbo0Jx;JM?5Ll>1DLwrQO6?$T71-=r5*(_Mx|15 z+6otYb|C@)=moEs8k-ebf)7sk5au=Z^_AlcrUT|pXb-p=xaI1^V?xRzWu=Anm>2VkO6nuEC582+WrcM`^$i7uk%oF^ znj0}eu4dVY>_B8zX)_?lgv=%~s-Z?wrkWlYnOMj!X69VxAu*GHuh`30`$nUl{+zpw z-_H#5mY51{j-~oF8jpOUCU2EMIZy`u>v6m|Z_WwSc#O@)T`Vz1q#079fq7|j4+d#d z55rDa2a)4g+97nFW zhdAnXdI7K=Tx_~mq(M0vA$YIxEzFsJ;Q)rce{i4@E;yf0$=OBD-Q-}!V7I!G9LyTn zvD7t|D8|2JLMK4d zf;qEls^`s{GtWk^8l+Hu=27v|)<>c=6;vR2<}}O&+{RRuv z$KYrKnPl)3_m9HFH4vRZHSLTgc-=JCfkT}#PYQP~hcV3{yf4-D7ILm3=Wpb^fG?^a z5?i>8oEqi|k72i#-8y#b*$uNBVHZqgE7d7!%5|mY!AeTagM-vIK>(*X&(A3uk66b2 zT)VCefN-_?m2P|>4spKv7gsX)2deVlqB+nV7`}K69(wGH@QB?bsr!4lw&21l(3|#j z^`>ReGLXwOC8;k3jT7i+=mR=dZfmG{QC88)>yArc<(e8d#_@6kTwZQpmzOJy=ela# zxKt`(=CWP|GxrlHlgz=@Z5KZMbue?nMhG`oLfl+nF1`_VZiExW&Y|4G#1(gui7Ur} zbHv0=zyLQ*n7Di$6NiznikY~H&^?$+Ok8#g)wzz|yF8JJ3)j~cVU@1|Oj}`LeMzLOtfUtEPx9*vBX#+?WrTdL0u#4_ z$0%mv^f0Bz#I1Etc5|6HePm+dx|o?WI%4Ad2uO^9?c(RIa`AmSS}ju#YBFL%r;@85 zs~=Y0Wq)*Oe4hI1->Wz)74A#2aVW#`Q9pb1CbJQIA9#RVc*T7L# z1#whQ!`@UZx5Ysm74(q95=%HL{f9c>sH)K$RIl#2~j`+9PlTB>I6 zR8^`Htke!z=&ok2r4Drk<+?Stn#p|CEZWq9?FCFyhOWm$4M-8!YQnaIA_Y?B9YLH(5A`cb z%W*l8i*Ps$R(4T z7iNubxZ#upHYAP*>F4qw9-frv<3T7Q6~;xAhJgY35=hcoTmyG~0}RMGVnFm+_}|KX zZU1pZmzu%I$vcBLG6`HsiHVlDUtf`jX<( zx}q?=TI_Z$D#$CtNwWoo#kqN9B_+w+N3J#l0o;c^GI1YW%uI*ehXz6#r_HfczXn3$ zvt{ETB>n51hmg8h;``$vBz;~y2IZBgaEXba+5OG^w7H5R!f$Z%PR1 z4^SzHZ>g^?K}d&r08;tP zdDZ1ri)%WBk@PLwM&p0_FcS1Md@#}k<-tght^`KH_BVl%Ab1IkbSQn|8;6l-FD-LI z`NR=KN`0pc6R;2P^=j%Wp?f*GAn%pL(sItgum z5^Qi0r*kaqyZ}bBjAOclB#i@WaE1>_IvIQgou_C3>~W>z!Tfmwt->Pi<|25RhbLWv zAAqscAi|TrCwLMi>r7JzQKb{NwUpgO?1GcSode*~hU(pFJ30R*=ePKvx`Vi_FgYGp zMB(MkgdNN73U-fU_jq;zYPNdZSy!5X@FZ>mVpMf)ktUwB(=vXF0{gkRUk7nj<^|y7 zF3n8fOF9B`(Z-^)&@gQ@A{fJIi?0dl5&z6IWGrQUu9LW zd-bSeot(AnupclIj*fBzya%a|P@v<}`GY1&OOTvA0*iZUAK*RPA*9g!;R3etTSHYf z$V*jvM{+Qpl!N^>E=PBW4o^bYkVQd!U`D0FAcMcamB5kO2}B0|j@h`Q9mN_!u331J zcSmR$leBobL*MM%FOiq4g+ciGqSE@}`r5Lh!rX9fQAvJTS){%oH?J6nMiqmX+W;h~ zu^mau(Plt+x%1UV=t#(9t)?Qk`pCq~bulv+c7!DPc{zexu&T^FH?pHYK8>-Upl$>) z?ldV7-p>x=K1O4gg~SrLMgO4=xQ`^bWtg_}*y;%vZh6vC$Ds46r^L({G%wX@^czqH zjp-Z736oPwqkE_JbYu>riIRYYkr=jkIvqg)T9nD508OUDab?Slsg<;s_#|!h1Xe2@ z=r*+>cm8pDgnpb>D`-m!^6rk)>Qi+&az!QrE_Bomhc>m8VA-HV-5y1>Ai+AI8c~V> z!FuaK&GUipI|CDjV;F62YFx9?{Z49p-;GPzm-tzK#i0B&uzd&Dvaf4Uj>q>0CFA>X zxd5K?^{Z>7iSOei4ch+c0!6S@M5A`XzBWXe$hgs9G%8EV2N6Y~JCA2CaEKkErIK`q z*jYZDKH!YF6v`H?a4<+aCQ25j`0(HM!{ORZEM@9nPa!Q<`&OM}aQUIV`)*7e;Oinq z1(8T`US4itSwT@g#B}IKMvC)mb4&1~9+qDLQ*Bq9+6Q=jZrapPhRd%|X92X8u?{1m zJ~9vRUCYdsNdr6|R~PUhsbaq^BO3Gjx#m%j!-3kip)sG1+0ZI2{50N7^}#`7{y0am z#S~@An6Lj(2V?%^M2YhtZEv>K%kG#DUHf_>ir-4n{RdM*b@Y3x$<(j^O~wF#~ZOEEA)vkXf-xkYSSd^jQi&WdUkjz+1POu6BJ@v%Ov@5$+n2tfzBqYIe zZIcAAt9C6vk^xyVUR~9=SPl*JGb6v$Gb5I<4`~CVi17s>3fbMS^eO}zo#6Vz28gAzdV!3@fUgPZ4N9k$`}UhNFZs`X8glWLoq8f&nj zt7+p}&t%qMcLksq{JjCcmw77yNiQISZVs(AU{zogQo)p#TD2=de#EHR{eYWbyMn zq&`zpp5#-ZGL^QuZFRS!hNJ4#J@RIf8OAbI>`uiKZ8ZTR`Xru?fr}Q{>QQ;g&$^_l zZEq)pA6{=a!x&K2NoE*dbM=*X?WphJ_@eKrccQIi6Nzmowg%cM2VSp4%7UBAIAC=KK zeA%?44m{$$1wWbj+~k&t+e)u1x;6if@%N8u9r;N1wxP9yMi2P1-}8O0?Olw>-~D}8 z1K-uacQx=`4SZJv-_^i(HSk>xd{+bi=WAeFx8@VG4qmh!CY1r6tY})XD&pCrrOg`( zmuHW5WGn(n07U^nYFDnuA)f5TS>~*85C4QYosp7z#6b31NMa!o8KPKU1{Mn<%ceTnYb2eK z;`3>s<6Jmplq{GZz;C&)LahUT3?e3DDHZWM+0B0eZJnk#ejt2e{#z?gd-8BcyJMHY zke!JAan@LlpgSLzI< zl;`g=biy)OjL;K?dI+2Jnex^F*k*p3`qYpd_vCYT@yPsCUqmuN0$U|nID&Af+Cy4Ncc2N> z&Oc8lSD$D*b{i8c_Tg><+L7tid@t1eCmm+1+RIk*23+$)EujM)8A_%^2qqcksF@rX z?x-_3kd1AP9LSNOL1$dl)C6FrxOLgPp0Qt%ad?Oh&-oEcJ(|WlU0U zsyAiL9Hsk5;Ao*0}FA#gdF|3<1lOfWe%B1OfrpriH*i2op*|NQ4s-(nTsE z%?e3KBR%8~NyztmZ)Wdy?{-gjvYkKQ_i@tB&F${Y&YOKR^WK|RVATm11(1=Yw9iE{ zwSID9r`{6USKMp`4< zzmy10LuX;X3^F+6y1Lj@gU^wLiuN|2!j72+^UhLoMWX$K3c?kM_E*Zl6^Zs2s=>!4G7chGG{!Y-N3yI8NY9BRLx#tJ?tne1GTQje%o zN?d570^Rql?%P5VL(F}ra1Z%w+i42KyYoSS_z`^J1uK^&*w1|!;a47pp=%g@Zy@@h zr*~72A&62QQp0QOIxa^Pu^Z}`7DAA5rR@?IMGS-xt`hX}4&SRFlUhLu!85tfdqh#j`oUL{_x2m|Y^Li&O46*?SgY7sUGbM zk@AUkKh&G>@!AQ>n0u8gBJn&_>afzd2INV`T=xl4U{V>3$B4!Bu!M0T5LU>b0hYm< z%E0Q_Pp1(R7vfR@Z<2^uS%f>CgJ6VP+Z9rxFM{W;Z_ysXB^=sr9C4adAS))m z)lf$RGP8+@X$XbFRm z!D!h4?O|wTS`O|5VV9{Ysgr0v&WFJP0reJHDqAhr)_bW zoV|t&*U{G@V@;w-51B2g44ExyhVx~((P3^I@bP12OTbxE-^NUS%$TX))f|u;rWh?- zb~qoA#Aw-a_D9PWYqV^!Mhjtk9+R+*pb0k_2NVx1$yDxDE@ovh0dbV`MmPmw(P+RL6DOc=@ZfmE3oYt+P(WGRfAlu5Es zDx)Tpw#Yei_kGxewmWO;+d7kwBnve;ACbf|6FU0?2K<#=WYPN2Uu!=A^42Aj^tY!DFS=WHo(D=mq&0)$S!XwZ*`u-HW7S zVEZ{IKyB2HiewnnaT)=2EI;0?6ql^^Fc`rgH3V602;yL(4S{4=ry_K zlB>ohYZ!2bh5=nlZWy=+y>`eYS>T0+CmHT~9uP4dM;4CEE{H+mx*`Gkw|6uV`VUd) zZxL7S=x-;jniTpY)|)mpdGwDGRu=jzYAFTuhx{*j^xv@0iAsIP{tcU)HT4bq6H-eX zwmBb>1m15r`*^>>!ut&t-gAcVo-Vy-@IJ0965xGnMNE<9tLCNMCjKk-o}8`YH?QIYUTKm)d z>&GJeD7AiEgdZi=k3#&&v3`)NUuc}l=1_p+$<~jF_%X)%F%mxzra|5|7(e=3Khp8T zCx3`{;jUR_-+~KgmHmT>c)4)g2X#m|tmsi^e@gCgxkB#qk=yN+mFXxRk0&c!JWQY*%XQb?0O*;x!`=U6U}4;uE$&* z?I>4ka7X(Ky0es$_#npNa9(jPtf;aP-zPseKRc%=H?N>@W+ZsBiBcTuxesvvj(p+1 z%MTaPK+n1i^sGJRYOKrPKP4ILc@KOW!hmWmKP1&)&kJoWzJ_Xe)D>wA8lNH?kmx={qq>?i zAAtTaXBHrZ5;IhZdk~4wFvU5E&2-o#2BBTFM->6AJ+25~?J>%L0Mlni}`#v&4067JS@OXqK)`tvma%PQ#1!raFB22(Ay=G}gUZ9y4cob) z_C2jlMi^0-Mu-tML)o!vz&+?``UVC5bXmL8^e*CMbmXgb11xi=oT6ZEQDLw+gjp(7 zn_n0R)fW^M7UUr$SzSS49jtpqO~l<9km8uD{UJx!8bSli{W{!*!OAnm=e8Y30ak^6HKw1I;S_oPSX{HZhna{p@eDUHmb%l>@;0xHWplAUV>q#70y;URMk-$N};!deVauC}-5IF0m#WbIVXMx3D=s-w;dKXcFS<5(B}o*;dIb z-qsai@mX<;xFupTdE66kL_3*GPBO$x@N-4I0edxS-Iq;qguY*f85^BUU@m#gwXYJI zOM(vJc<$mgX*Vi$Dy1KqdBn)mWG&}@3kiGhcMZh6*zN@=4+FTAdk_hN@R{xhHM}o zqzsurnmnl^qB=d$@#!>n#F#k_)qQ@`6z^aO)d|~Z%0@Y-txB8wET8n)HO23_Zdtur z6DA?L2iAl~5D5WpWliyIQ(R*TXrm*_)!*Tl8}2S|7H@^w?B!u^yF?G1MqhZW4z~t6 zwqtd;cPq(G8k;XqusYCH>Jzy-WURyLa5okwY@X^bpK_C(oFEBGnZdCQ^z+DzHYQN3 zmZg}hpEjj0g(z>pi^8l)za3y^w!mO3Je^WD8XIB4lcL*FLZ)E&NN22bPJ}UdiLw@% zZglWG`k483Iyeta3u&-o|$4D96wohVliGDpZK)az}_~_?H|C0%5|Af4vGr!#%-ZsI4vBf2PVED2AVg;#$Pk3>6dv zz&{jc7v+WOi%N<^1@Pk#BInsRn_``W#Iq%|c%8-*KFSN3!;6Cl$g;OJy#`zr*Sax}>4|ByE@5OCt*dAetDGG8h;X01KYl`P19edsu zw{}_lK?Jgrnwr+o?mZ2yp_;%hM7ImHhw5qqt*wFma^!`@IPe2KhWHub&3Ue^m%zfg z#AK1qkW7aUhOr=H15S$N^POJj%~#+y;W_b~95do8 z7-C<;5c@j00)?+iu<+bJ6yF=a&o{-_IWtN4v33r@smZWP=TlQC0uJ3Y6)6_OpHuQG zCEuomJraDJa@SE3#B?XJlUjSRo~H9kn!zdD65vdKo-K9XNb->lf8SZOFk?2_cF|j{0}`Bc`uAdzj!S2*XMTBXH4FB)0Nl=4>bm`LlSDWG(pILwcQeFR`d=+ z1G(6158^HyS_6)_jS@^X=l-thI&<>=aOQqx8Xi-PofWiczw#38)S49$>+r-zdzoD2 zLc(0ck`gn^#bk7Q5+>nmV)oeNz;?PBaWij){c(YuIC-6f(&g&YFhN=pnOu|57+D>o z&MW8AgeKvuVxTm{4y7C0piIIqQzqd%={5JoBz%<`-M%$ybo*9QhISHH^U%ati~V#O zF(%=yaMw#+0jm2JM9YXBpHrP1zC5l>+=ZJ_ktx7=A*}^(0U63X5e)O#`9Ngs#3{rTax$caZyRGXv>@RFm17$W)fM@@Aq zqoz8o!ucxtK5VM%oi(MRZ4w;1ny zVB-2E!GM|FQ3rp2jsc^@m~sC8BC8Arv$e>iJX~fvYH_SFybXY9MadaYf3z%5Wwb2s zs|iy4BD4H7Opv0ZC9$T;^3+X`mY@CMvfLUj%dO$U85%Bh>Ag8z;`+sVxID74BM7s- zZ!9L!3-eWKu*CTtQJ14bW!MrBZ54<-(g7EmZ@8>1g>TODn^Rj5NF)o163tJy)x&ZS zte{GwA{Q50h@)fX;=SX4Z)UbNT!Hu?lsaVdBS_R!GBg zyafLKd{;hEE@PV=!W%d0590Q<1c`JAw3eFTF0v)pg8d*I0Wa7e6q*u0Z*oX_m_uI! z0>HJ448gKRS=j0 z7=GtT2xY`D>X|IphAQkJbe)Q0q#*|ME`=Fnib6y84U+J!al8d75vx`kaJ@*x{L@#t z;k9fOxiGzOZsw*n3OjBv%Il+nGKtBYbd~$6e`y23N>wShZ_rG3&Ucj zm`q<2fumHP>$EEo2c0oRNf!%IVit}G=#)87rwAV{QWD14$6(V5LDLZ2TXxk-$4t$G zw#uWcJ_$e{h;-F#*JTM!a)e3>0EF4DAW#58-S;`!idF6llJ2_QI(CH#j0>|lQL zS#WTK^=7#4s}Yt)TgK zkr$R~8R(#2M_%6CZEkqZg78XH*96_@w$hH1Q|#PLZpFK)i3a5R+1OE*k9t`6G1q!F z8Si0+8qM$=4!l2#bx8~gR|`ZkTxIB*^2O^ETr-jyfb_KbRf8a9X{19gNHiI_UsR+4 zRuYRepmC+Gl4#)64T$Vf#M216R)Zc_#1?vLp6iZS+#W?{eQSufCuy!wuVtR=K$EWp zU46cqE2g0YO`g+vCt@bg6I2^E9mGmNaIJ*E>EN6@opjeuuhVZc#m6F@p6xY-JjzIM z6w$wks6?k^yFwj<24B(#29{Wh2uR_9qR@JEUoZ zj`7bxD!xkz`61VR(>Yzl=}}Ja=Jat&wH8iIPNC0;GtYARL$pfQPErT&rDPv($?fO# z3QiAjdL^egnw!fXHr!|5LJ5+$!w@@F8x9BSI#T=6}eevH$5t%rPwA0ozx-Smh9sQDIt z#%$!CS*82`M?RxT_tVBIo&m#UblJZs)y8pJ%jtD^SSda11V7*@PCv!z)0{qo?E-w_ zF_86({1=dz$;8eia IjQrVzl-QX>24}D{>4(w?gi+*W-Jh$f!}cWdxDk%l{p?$M zIWjZ3x)q$G>Z;W_b0spfsk&91;p$c+JBy#X205TZsks)JEV^wSGE*ocM+q_;`3#SV zibW8$#C|#rU)od7Em3if?*EsGF8!PC|1Iu!Y>euD_j$5g*T(DGDBO-Qe>&_L(3CZ% zsi7wSVTg*+y8qJvRQG=o$KyCw;kXt@JB~^mKyUw0l>HKpAdU_kYjFG?M>&oQF@;v) z*pA~>9OUTz5ghw)kXBbQ4ygD0U&pcA!2GmZ_x~bHn?|~SY-HCcR_WGDxPW4qr;RiM z!tq&o&xVfLew7E)K6M!j_v&^vG=&Zn7Zwy2LvWGx0Q8a?m*JE&U=bZNL|CY $24v0>t8UlT3VYMTiU}j<+qXt zCh?FMF=4C@F9RK!G)tufo&N*NaS%iIsr@ z3+vNd*I;I!;zfT>C9h5yd3V8}Yd>pFg*tJ#|1_ir3W9<9{G7VN+`Pj4x&p+q2^5#) z1?qx1fs(qqg1UTYL^Wf-mU@V|YJHk3QA`?9eW>|LyCzgX%#?jn;iUDL;4Z~`l5dDw z63-Cb-6i%iJt+1XVq-VGPvU>@k{e{xA4a@Z%CSI3&-CucNihN$eydKUHP)B&kizlp z&LF@XL%EV(VOdni&AqsyW(T4TB*tZmRta)rq7iqC;UHu)ra+TNO3M3Zv8cSht{_;F zT~HgWD-P!6Y&b@6AI`+6dLjikb~IkVLo+-DZsJd z%!g%XEq0ERlL&kCW7WOCFvKZ5{^u-xeI2|hNSA`0V!9MO8Z@2lK5 zgOK|g&Mo0{Uq|jT&V2*94$gfOxtlomEu=)1U&|?6jv~L3Q_!-=gWp3s5GiRs_J}W2 z@**Xlq*rn$$o9SjT>`NW?M9>nI3398If}FJebL6Eg7naRe<{~}phIL+@nAHG)GUDv zSZFh;9!sl{^5~VWt}f;lbo7hVZDfj^bQ`BJd5`UB9z7QU7JWHrh)C6AbGoS^c(uCgB6XYYm3WK zFIObS=-NV8+DzBL)l(-?4{GOeN-tRV{hiYva2nIgxZ2F;S8&>oQ%DVPp15;Tn?=um zh>{!mW!}W;VNP%6^cGH!aC$4JVNQ>7dK;&=b9x5@Pcz_+5|#>G!_%p`d7RGW6z^6{ zp(mPL>KLcTZM|$dV66d}ldJR9 zxy{yKKHhqI6yLOgbSDl7AbsD* zk%40@j;Sa;0^fP~PQ!6NjwLt_;@FAfCS1G4SdB#24u`u8uzG->zF+fX?Yx#&6ax)u zq@jh*&&oky(MI@xlh%5o;fmniExDJhUijEbAeHqC!M=e4;PXXZ{Wo49h^meD&# z>>AoOa4&9s|MPwiyx#-=Z|i|u2OK&FaR@#(10nmGTFBp(rTrTphd^DYsY1$S(%*r3 z91N)SXK{S+6y}n}X-3#ot2hYkxX4g5tcOq~yfQB|Sv$*8v$8}fGp9auw>h~joY}^P zaZ+F2idC%it>hdFa*{Ny7Cd-arI}UV+=>`z;hFNAqZ7~O$CQfcQUEjD9@rQHX=(?F z_EANQ_~v3sIS_Rqu+>ve5}b(P^#Uq(qLP^GwErMPE@es~&B1bvEqr{uRJ6o?S2jly z(ayaPHxbPa?1xWLA{w#Jl~GJZM3ebe{;z3mgW(!PG;Ig!i|PxCvqL#Kb=ld0qJrX_ z{JPw_P+fjbeW*B8Tpt2Ue-IW&)bk{w5&K;EVq)q0Q1cNxL+>G?A;v=Nb%k4Y;bO;5 zd{iD%8j**16i*-zS>)gRtpH z;_}3yh2etwqq2o8$Pkyi_B3Od6lBC%pxce~h^-gxuJ~?d%|?;Sw1z#6vSWZKFE>5RUmT#Qt*ziQ1Uz__fm2v zC1CP<1Q=DsPzO!l2c}YTb1*@NXj3wMVn6X|VEVAbM%)~jKIFP^4m=-ZpOWW824}EW zBs16x5|`8M3*C*;Tb(q#uS)k_Y?{#Np;)!}F42AS5Tq0};EzA}st_$6Bz-DV7iynE zxJ@5Z{ZX$r>Ao3&MLfjbNhhR0{6$-VejT55A1rGYAu%^@aBEg~7;U=uZ0j$BZ zaNj>p#jnG|Pc?r8=6<1Ib5mVgc$Uhj9g=8ma-}rof?Of{3JWql$ZL_bg>TRxk5T^X zZ7bsd`^pG*8F-5J%}I;jywE=DI#b92-uue9z!bT1>Vo{8jo8#OsXgyKiCGfSs1md5 zPKI{>-2Im8gX~~!Np49f5Go4fmz2PmI~S7gyg*TLeNiA-AB6T6c8w*SApCGk^1SB~ znPROwoXg`Z*)h%?44V10&$z-XZ|{A1^eCR{@|YrUcbS4CX%JQ6(E_zJdR&#@c`S{q z2r+tD8nsWmiq5+UWl6@5rLjih7cY(4r(JtFm8DU8))nCm@eQ>!!YLXrjo*^MrL;7P zpU6V-E2CEj_O>#5l#5*%v5>P^R=kz^x~Rpiiz2cv>ZW)OZ$kH_o8o(%$uPxFI0Jba zEq_=fl@-|Ng|X_TTe6Mxj1rEmg6i{E|Fi!|X@O>8Hhd{C?r z5UT$Oi{5Bc{2O1BO>sTezU#3H(%QFMu6@Tm*FG=Y_Fnt0+jD3D`E(wOh5 zo#`4{Zkf}yVM$CWS`mbRvI6^JXS3F(x|3M!eAuZ@K3Ge0Urpum;$jsw2c1@*NpXAO z@0en!nqhewOu`wxZifhqF1z?{pb~KsYkD9JNroA zW+8o>h4h>uq^C>o8KjTviUdgCd?-UjuOO^cOuieXv*UD7o+urzz(MImeFjk7$xu4G zQ^EM%XDoWf?*BsciruM4uh@O|QGU0D^1CgR=M14dU3$-;d|X!~K>4Oa>4fsf>H*Rp&)Hm8bq0^YgtU)1~(e#>aI<0*v2vNY5CyL}9#|;|BtvNsvp3PlDX3z*pN8 zZ{d4>vQ&*#-hu9^&+t1_LHC_!Eb!>gGeXlO_WH6jb)shH*~j;t7QXMa@SQV+?{w)s zgYR)&;f?RN^* zHKf(DBcL*gkB5>$85b-kC4-Earl>3z)9GHNS@13#R;c|G^F);xBKNSNI?j3qqo`i5 z-IR=3uEOPH7pGmOV8=?*6%6)qGu*AuU|vpcPGL?# zPELMFUTt=EZhc8@C^tmP1~-@@L@$fB1u|xO?xggg<~y9bDX#V)w40JK!&S~N`_Z}K zE0qo8JEFa(GU_(>;t3S;odSEMklzOYzi5i%k*;%Zh1yZ^XrlyivBRMP?P;H2`;tGOr$4Q<;D39<3xPhDf3~qV*Dnpv; zg6Kf53+J$Xl>v=7-o8SHPGSE_o`NbronoiNG6Mzv46IckR>~`|8x;G2UR-sIuE(8F zS|%NjXUJR?-#6*LYg|GP9CqL3LbxiJIOAigKkCuXlD!4CuU=p;saUiQq25WPyaBTd zQ$V-qBiJOwkGVMNajd|Bm->)VEgsT+Ewq;vmU~&B_1w$y8dc~HV5pH63%arL#!-j- z2sjX4!o*Nhz>?_`{bN_;fF0d-T%`&mr6h<$_;p&EKZK*~6snKWs2mx1O(V8pJ4m30 z?Mj2gR*j@vOsT?A&hs+5OPZ%n9e(+z%*^^dO~LSVO4-+4#1k=7E|PbU#o)exJ|2XN zRI6Ng5`>G^L-wtt_LzigV(sUrMVCO&O?jE26&6#T*5kT9r$U!Ze_;k#v8WPcVQnxs zzaD0(wS{oipG%giIr$-&s+JVj=Y(nlpi2UnMXfbQ>+z&Z`cQLI5_AczPT0=dN-aPS zoO0~}FI!ePp@NVk)LPR7Wgrm6aGl8SnJQZEHuSprGBhBdna1AuKoi2}nAdZ;=f}&1 zYKok~UE%`^^lO?{6*#|m%@LPj2wgMGmx?6W5 zR92l>LtvQv2cWtI;$fL$3(r>2JG-Ae&{c>+VTKK~jJ!ZAMk>~5U-Rfk@2TlF{g4L# zwTe#*1lt>$n^fg-{%bMA$Q!7&@+RidPJuuBDUN%SouFnqYT`L+q3JqDO?c}!cY(XY zW5Hb^W$wzU{SB7RQ6G&0i`Rlx7>LN?5l>7ur&1kRR0SC#$1rH4>{{TYXo0ukt_5ym z(9(}EgLX09d-@Do`mL@*K#rK+rH5GSY6#pC%?9!5SnkfIkoUVC~km_-;{ zjU&KBt>Zn4Cs22bW6($&ybl0^LHkUk>)e3=gH{P`aE~@h5R+lh*v1`8g-1mS*rXV= zJ^%^^?RUKcN^0*O?UR7Ub7=dan?x0(;LWZ`pg1%Y=&BbME&b-iEZVIR7R}>nNwH|@ zhh2xg!JL_7(JnB>B0vRAXbE^6i&i7nDefs?h)v+0E@AEo$~J3J>Oxs6o<&R8yKyYq z1L9uwkcSL$3=esLAM&6HuSU9WbuuiP#{=V8G;n5MPf%@L>MUA|)Q(4SQyk|?z?nfa z54B;h9xU2-Ilm{uqFrtZcu~S-V$49aB1fKcCUTC0{q&GC1!C0Fh{E_eB|oO*OO!l8 z$(@v3LytU@JX-o;MVX}EN(2cglk_7*hY)FkTo=xPHc7vQ?t+RTGIR<&nmh#_jZQI- zCNtpC(r>03lIGE#)_o5XZ+4^ZyPCd_>%O~E;n8Nr^Jp)Cp^xLyCQBae91i>j9_^=i z7JL@@w&SSAfw!u7wB1SZXkNn#-QmHb9cew}1CRExH1KFU8n=hq6%`cEqw!T>ha!Q} ze+4o1UC_4wI*yN=is#WLeW@eY%tEF0yS9gC%5S1$Ao!-UcobEZhzeQ|+WrM|>dw&q za267$1so`UqH)~Z(n4e+#n9)I*xGVjPKb@i5qU#b;q@({ab za*^=&cXhUbsZEDkqj%s^a)4PldP{|!M+|1y=M)wPL&YW8+4X^f!caj`QE^EqH;`MO z8!X}Ar8hbJ2nih?E&I7f5r#}PEM2U+U&k~IgStMnz+_%B3^RWf#*{pxxP~!>$69ji z$lj^Y&J5Spv>O~ZxwLdeJ*W%cVJ-6h3|B^ySK|tV5vBWhF^+NRP99CgzHY`>@SDYv z1=piNaF8-Zd6Jz$4p9N-Ea^#Bc|nh7JpJje=w(nuN)lorV!3FP$X4mF=IRtpC&i`W z5=ASu8lr}U+1pI8XV7)WG%zPE-WbE*&$TN}g7jTkDAwYH87$KN{&a?%DP|;Gl5z1*z^0Zo^am}$TX66u82wm>*lF~A zg-$!gG4h76+k^{w!%w-pmAt`3G2M3+qW#gLOs*%!!|DQG0w$!a|9>5RU@!7PgkyaW zmWg2$@DM+EjV1ugrly;U+T?3pcAaxjv!`SlSu084Nh7$6bxVWw`D##-U;GN98aE z2hK{#=OC)Vb7dQLwd?!gnZsj%*_`vuhp*5vO6chyR_j((QoO#h1(-wgL@ykXe^`Ut zW4Z}SBatP5f0)NC3%Thyl%-&17~_Tj;r{{pu0w(`SU?GUeI*^}-am|n8;o+0>5_wz zGa#7xQgWIU9q{dJq5)3n-6S{IEs&R5jGq)V1LmggsHcIwl!M{(a6@V46zzgypSDl|qt!8o6rCI{n0Q(RmwK;tH{_uxO@6)h7k zakde-E@EM74a149D`!%}Q0YVr{o17`Ez8o9!cd?vzdkRJ695?r4-CPg-1-2FN@3Vl z90-;`+y=I2IdwhhL-;3pirZ4G^{OQH9B7Z%pU5+z)3UUS6a_fYPSo*&-_toE$lEc0 z9xyUGfg_Bvn!)P=pt1|{&V~WfjrpR0n^uw4o z8!q3h(|rRvexf_-J!>an-P;Q4$r0&7h4FE}Sw7t}_92!dmD{rnaRYMzF6rz|{*h+^J z4|t8dUEHDsTpu>XQ5J692B`!}C}p532Lr%fBPrr^-!YZkXNt{{*E_*={4$rc(B#RL z`#$1L-6S3dj01YH7q^jaK_4(G;5O10_yJ@LbXLDfdO> z*^=ZX3n2j`S8ZS=4g>n_y6+y{caVNwiJ$ntkNrPd-Uoe$(JxFy>c0J4K{*qR6LIHL zaKv~UuEKZxVAN_txCTR8z=ckNM>tMfINiwUd`|N@9gbA|gAy<*ruZcBDC;O$&y30j zPB(J8iPO!TUcxE7+2hVFr`3Uyhhg81iM#C$KzicEFmYQGko{8?9412^tNVUtijCB7 zKf~ES>%KqgzV9K|%^gD8le&-0xvB4H@0WV1pYHpG86Q?aya?$T1_E{9H)S8IK1AQ3 zC%?k!lbqg8UG^p=@9=NhIVOQ5rI<0$fPU0BPf*gy-Si}<-rn@-&S&|a=T56byOPF8 z5T>!8PQ#aW*vTkrIl7hw-cXy2V+PGK^kc2Ak-nFMw1ta!w}k~AAK{=I0e0!`ODCWVf-Y~A?gWy(gUeCmLAQ873uyLz?+DZQ$$nVeKc<@v_w>q$S zY*n>rF}Y10{j=&K8?8 zR>;O~u03clY^|>#Xqd=8cZ1tdiKPPrmbPN4!=d~&v{nyx1=$c+n_?0@fhL|X-ABTMr`8nw-P78krF?QYLlyvsfH*q$u(8gHH)g2(WJ|L z#|e5y>fp`2_byyCnwJ@W-*T{T15ONOGdUU8rU5hF-BB4LZ)?z zH77;6SV-Gl!VncKM%jc_#t=)GJ6mds62tOqROtv{7TF3ESBAx}#1-NSDRjaMD)z)1 z0kv(KgT)_}+aXizL6?X>n<7l#e=)^f7#w1x#9ya~mIIY#6uI_Q;y`8aCCB0|mbiZc z4US_7bVPRq1-37QVHDrZpapHY?K+f*Uyd4Up0SeYe* z&<#b-<7Hzgr;wg@b#?LTk&&%dkBkps!lkW@3``DSslY!Whf`pmGKwifO5yVbCImo~Tc1)y54j(Qu#sGV?{K4#>P zx_X&7MeEX|rue;y*jwVers!bRONescHpLNadK?k&;Qe1z=RV{l%O%^p7?`SvF&ey5&a<%d;!`g3P#X=w?-_TQd#NvpfUAoI-1_v=Y18Y^J zGD+br!~!6fCUi_07x$XaMX~Eft{e}gjuA+tjwtpR_mIwjI5AlE55y*pD~6yUbRy@I zj9{Q)h$Jd415(6(I??3l{ur)0@#Z`?yaAke_-rwS-u(F#s}7cZViFB8$esj)C~(CXiD11G40+HSqhT&IihV8eJ*WDF`W-|f zOug>nm%x$j2?j%LaE3fnhkhKIVAqD#TNf zjX)D}T-VwNx!`eKk_)HNhD%c?9oTxH7t%pwCsv6B>A;b$lyFyMyDo>kkS9qxhznd1 z!VtG8pNK~!ZuE(CxL20-A|3XG#lxaav=Qk*rX|8XjwQvO#3iO$(DD8^piFZ_y~{ zG~ehp&4WDX%Lq2bUugK!$K;g)-hM?lEft_qer$>z&{i?Ue$qf8UiLSpxDG_Zb>g>S zCKB%Vls9?dGWx)SNH~0T#}yfqH-2P*eGO4d)KDxJ0*7ToZ=b`_bhR+-#KJHhH&)^p zeab;7q`ELrf3Qf%Ol1ie9kT>XJj+W!_IqIofO_Qr`4X_{|MN@0O=<}^d>Tu@-MuaW z52U&TJnmcqKB<-ftPE#k3FuNwz>8`L0M~csmVocRN0)%N|NBco+W*lKa9e)Ie(;IM zujD0QSM&A;%RJAGPvq-_0do59_aLVKx4>4+fpy;NvC}{AW^!P)av4KhEH@R47^!C| zi2bL*9x~%4mqiv`@%9hqhMM*vyY+;*;YS22Q(lcROQM;Mh6ljF(ky6$H0-ZR= zR5DTsEU9u?H&m0UP}aqZziDRIKr@~jQnP(mb8TRkf#qwGz`fiUQ%rvmE3QwhguHw) znt2>bv|Nj-3j3t^NO{OID7i1e@>Obxa)?J3;OBh#a|wP|jPUmp1cbJUQmIuJo&%b*da3b3|rkQ!&~rMu-tM;pbR_4V37bzH>JH1HT;W zN*9F+;eaI@0ba7}3&5Zj1re1u5X`MB%qs~%n;o1D)FHB|0kjb!s(ayV+^*)B2DV~XR z^YSfjq^&Y!<59zqB^7HFvnF(#@$Qzpw!WJ&nPHfQ{q)grHq?7u(LoZGOC8!YEc{vO ziun+^rIR`d$=)(xF2xz;0mi8=-zBa+DfS>}2FZVSi_5uTSo3!p;sDEkuQUB|P-YNblekpzlh*vIi>qdGFq{8F&8YuD#M6!_=v2v?h4N5ylyiNDuLOxda9k4{;q(d``pLG>dQp&*Yv((if(|{fd_DK@jIDsLFvaKCZ%0m*46uST5 z0x43k?yJCIkiN+RQ{;n8@`+VAb4R7_!%6`Q?y3_<4fNQ3IBt|ZCK-R(47NU4PAz}| zU61$}X2C3a!c=}vCa2Rlh2^3pL?^{3$qlb1MwhtZYGQPm8?MG}k{w<}cM&_hlJ0^O z9V%SU9@?1sV~Y;teQ0s5|mke)uK;*-A* zH4T6wqgT@K!4BR@@W;q)V9`1R?1W#~NbWI~3cTF|VPcvw*18NhOeif=%x#?f)nhV2 zSr69v?j;@j;Md@(Ohq>Z1G_@1@_4@nL}$NNl4Ot@0q9FyBlLcWg2*sFC-2P&eb5x-myj zFBQWiNj2S0ok0fyA4yWJ1`V|`N<(4uaTC)}3*2ca5u_pK2XnM#C7Uy26roq$0{{3w z<+^gn$!?{CW^xOO*K7(EsvF>!E{4X%6rG5(+sJ0tRrC=06m!()=Z;;bwnO_ zU2Gt8R@PI?9dwF$QYuDQic8Vf$6U!OrI<>s<)u$8n9Cd*sc7rDiC!)GUP)&?p92R2 z6{|e2$~UmevDA0c8oKmOSa&@v9!AMWz3G)@;3LpQNzyCB%;Vy#hIkpPrvFjbHKm)7 z(ctwG8WX9~D~n>{&HEpA#X3X$3NleVN4$YpYV-}uz|FEJR>Zg>d$LSi3Ilv)61de6 zTX@TUD-beb61ddSd#pwOm@9N-1!tKAE^)kP))}uz@TS@D@9PnCe8T&cEK2E>K$p6j zYNc25glnVKD|tXnR)oxSyqK{dVrCj}XV+_x`txKc`aIdaRgPgI$@y}u9)qY2z0mXi zPS-Ig+edc7BdS*%Gqa@6qj3KjGIJnQoSPlUFR0I{L*%a7l7igg+`63X+QRJOA_Tz< zW?u#3fXvY+Qxj;HV>G&=)3qxYFVANc_Nan{*ow7oiv(|xW1``gN|wcaZ`e*W>_XWv zwCYLMiR2`Vy*)27rG0@i4j7HMmJj0qo^Q@UI3TqAYT0s+jX3PvqkBGt0D1hs9M3u7 zKJ#M71cV(?oY|=L2-=-PXeDcR+SzuATd<`(LP`j6Tj}eJJRV-xvKDo1L%sUJlZe;ZFoVp z!KqOaS=)5qCiLr$#`%mW zG35ySpZ5mAc>SpLVD7+%gfoPv7_|KoHGQQ&1}6*7-X%2%o36G;P?1xPEP9Sk&j zmq_{_@tHD3j6Ff>z)N&3oi4p=iXpo1ZQb`4{rUsbM9|@XL-+lPPV}G?ey{s}tNVTc z@QzW%rMmB@=m|;YOa_^AK9f1RHjxVa6DKCA6PY-njW@}g6gpIc#0z29q1(u$4kEd0 zx#hYBWfsz1pP>7oaZdgCDpCZ~M1oR1@NkI)dOx^=-a>jIr;9jU%jx}`eh3wj6$ZL> zJ0&}q-Du$SGER4Lx{K3BPMbJw=Cp;=-JG^Ec(f-!4^ngjBMr?R#|=M$+{VSa1~D5o ze4(yQk`0ITM-PQqLmSgD{bf=kuI1{k+k(%rm;@33fKZEa) zIMR{t#PKMOJve6J7>9%WRt_@7pYWA|+g9WI6=M|=U0VaJ>N1!U^WdhuNF5aO;HJnP zdys!|+MbMEI~w-XUlY7`?Udq|bALQ-%8;yc)?~bfOYeW)?}7JwpqC!Faqyur{dOO` z>`3;(+_v_*`G~tm4ho=S)Lg#+(Rkb1Yl1rhtrs20$uBA_%z+p5qWtWi^t?c5`Y?O=~y{iP9)LTWzw7G_c__kQ!Pl=TwI-niwJ%dcb*i7pd0*D5-HD zv%8bS_myGcYk`+dX}}`p*o7XGQTX^t^mATKP3@kBUF{7`(U*p90z1^Q;^;;5_O!Lm zYiJ7Y+EW*r7o0tNUeUbThW563jm?*bE`ZL+Vr(&y7m?#95!PGuhkqgRXoAJmT?*2& z<0#yi@-+{#(6&ufBc_Y#AYDpJJ6kG`iU~{~W*FeXAmM=Ap}(xiN#iodK{Rgs3nX9X z0qRwVGg@koio)-}$_HNP=+uXgLJ=9Dj36*dy9opXbooe8&QBc=wqZOpwDDBsQ9RBB zrm5m6#Gvpo!k(YVBXb$*5O>0r6n)=CHTH;d!}vlE_yf?KE(R~6#$3=CYTwaZH)%(p zZBkS7q=v?pU7<$kSO&<2X*ij80`jFl(J%v;dKpO63(+o3L|K%XEm#iCh4QN$UnGCE zQ3ljX`g9tr9R!8=9E@B|TyT&P@clYJ*wQkutu;8WeMf8a-kQCwftHp~Yug1lt!M!h zy&jJimzgl-6s_d?wp`?jwlFQ|ptLNnuNPxPrsF_(@3gG0PV{Fl*hl4oN=6!*<@~Jt z(4Ir1`vnhfJ~G~IM&h|BAO4Q>@{5bIiwkpdvx^JzpysHiqBUp%O+_U*Xe!EaOhr^$ zO+tAtm6&+9P;8B_-Q+2V8mgus3T^paOhJenqPfL0kH_G%(3ZHV2kko>QxC!2Nr?dt z_x-8o{i!FlsV8>g$x3G8c>y|%n0Tfqp; zhaOx3b@cZ7w)ykr_ko;(!u(wL&&w;wgW#Gl}*`6nq}D$O||gb|Gd8?_V~`%xvG$&}M{Fs^2*~!0<2fWI34Sh<4B@ zSbAfKk*Sgxu~}q@p*$0K5D6O>AMHQeL3r#dF03icpS!D}Y0tj7+ne@C8bo#ys1P@L zg14~COm60fj}p)`YHI4+;MoVlA#`hgPC@~vTa_kw*U_gXloC~U?pEwUSvbVz#VQ8Mp4v3>jr~wesUvG-BXoa|e1ors; z5Pa&>_l?xF9zhZ@_ADd@f@(-01XFYb?k758qogDFs~o?2ry~|p--?IC?Rc!6iZH}P zH(7*5Jv=NvNP~C}d}xt3Rmj}S;W_DQIf$DhgLpZH08tM#mS%KO@1}%9322E&_Z=G9 zZ_~li-K(QR8uliwf%fLs3uoly78HPnD9J4;$;~f<6-<7~OhrcIqA3G#OvQ1&bJ&H$ zhz1p3FjB3FK9aQzhn25>ZCcvUFXAYV9or<>TXxLEKEG{b&Zw`c4O|{**u~>+`HSeP zjb`f4UlvpCbW~g48VYf(D`c%=)bg0S=;7FS-Py*sRjb=FSH#>#m9;foAuC&{?#ii- zzpFm-$W`jDit9Xa~~>d-`^s;Vf~BYQmX8xm4@(R zpE_=`!2lw5kEOYZUwWB(-a`pr;zD)TiNr6lT;2BhgfFo|-Szc^FL9B&>xT(nVx_w4 zR|#L@Vs+PF6TieNc^jm=v2QWvB`vXT9F*uSEtPKxK7rJ05@F`64RJH;2-w$J-A7W- zLX2isJBWXwofzksicKzA(sIv#%$YScErHfRV@-B=P9#g>2i=GH?-4PQY7&`>L?=Jp z_^?o4_pJv~=swUopE${Asr#1W{p-Gkrg*?Qvj*>)m4!ZLo!Nxfs{0CH9c-Pc!7F69 zrAMqYA-pc#H{BFBSZ8*!gU(5&xW+oO8?OOdWH2JJ&g?~p>%O7KNKAn?@&@i+>tY8w z8G2V3J0}_KvBxGAFYuzEz4{NpBK}UYU@j}(G_gf3v%fUODV2p%;j1e9JyUe6>^DsD zvdX?>iY}FX!4%J_?9-;`RN4PA#m7m57Hupw#3L?h9=h*kH1vljX`t)AuSsDFI<*rW zUrGtY-9G;El6s`N7`YNO@ou2uHYn;TgckcDNl8dRUkr)R7vCf0u(wUP7-}{M7U5^Y zBnwo=03n#l7|b4YVNuFtmUADnyPL!_k=lNb+O#3qf#j+*N#oEhq>k7NdTSF*@iSYw zDy4*YT+(pdI^G`7jtZ+1LMo?IaEv0=->@ixH|SQ3TdS%Tq5rucdEVc3NT|1#`x43aJBAq%B zXh}`4?j2}9ZR7pk{*?7RhF4-_3D)uF=`x-h3zN*guqdw}KR>^u1lHsEMfu>!W;)1W zEC+M3^35$3=eZ1aMUd%Q9zBc^q!e6@1mLP}Ic`Zct{lfo91Cz{lN;4V8_AaievUrj5!E)?6Q64L*g)2)P(KH#BwNY5EAy^(nt&iEC$ak$v z0+uHMOPjsqPY9Ov5|*Fp+P$dR($!;Fe<`uve~s?X$2CN+pmw4un3>-CxvoV z)`CTw>I%y)3zp^KrLnMVj>1CgDzH)4Yzr$q%TbFi=^Ym6+v}QbY1K6z(U(eCKB)W2 zUHq$dSXL=mCh2}6(p1?9ESp?mIc~wSBD^dXmMsxj{8I>)MQG7-`x9FUmaR#^vc}Z? zBkU!wrjj)hmPd5|#i)6({rU|GmMYy3H}IM&8-e9kS6E)PV5tr-kA-Dh6qbzy3zYk{ zL-r?roLUq}0+t&A%TjyEr>SJEgr!^eLp4G>*M9v41xu@r_Cb|GUW>r;k{c}AU<;O& z;T5s41f#GVAy`OB=F|2k^5R>U1T3EiEC=l+e@C!{BrMPA{>M;rh5h{cHVSt zSqv=ybcLndf~7QEZG+_+Ing6#fi7N`JCM5gg$ak}pv?vN1$ID0I_5gL>15D>MgVTPT_UF{vA*4Ic;WL8_UHfHkdyu}gzeBnLLsCpcto@>w2KrQl-yAH?AIKF`69iS07OYK%1U&8SpAkG#XH{rkx;J=+r ztyhX0b^je<>N5kAoKXrbJj1dpIeW6tdkPPYfM5Qn`@!CXwa1 z>tC3bHV~Vf1O9UgbX3%rlaye=coo9Sp`maHtXz|)eIB^G#Eva-YiPfJ$Ti@;OK%EW04Je4d>Boufm zQCcE_r+A1ZGP5TAc7U1L5@_EMo=z!S0)3jyuw3n}pW{LAWvc3H!x^{ zZ7?9~6u*R8?CVlA^b`F29towsBL(0j$MT7PnBtp|vB6gjVRLol@?A*X#KU}Yopln% zsFgT-%o4nbd-(eL==EU`zClHW>fb=(Hv$AIn9B0$c2_A_nZsiIZQQ?@4AiY)7rL*E zJI-xWFHC+SbB~55nv>ynYHHhoU~vHyz;f#A0)^N*sjscC%Lx_)5QDm)h+>SvEL-<& zhGFSDuGTB1!Y?^9r>QwRD->_LYNSJPN60eH%{Ee`7jL`jx69iXJIpm)tl8P_PZ^Ng zY}$)D(HmkEHv7heD`70coTO9yV^Z`84%BK$%SBQZz&-%i0|LiHvrm-jF9tjYTl50wn!W(?hacWz4(`Fkx?ne>s(6 zHM#@yS$Px#y4) zZw9vxNLO*Xlv4`j#U?~O6hwsW_GsB^Q8X;RBgp?p_9CYGr>_=g> zFm>%!fEcD0Qd7X0BE6E+R%!=4*Y*hTF>nV1)@vNIUgJ5P!0ALz!Ki|p>LO+g?-$b| zG(52S63Yb}7x6aEaC~0m=q@t(r*kIxzr!hM@XvR#jf=XCZ2tK+vibi9-9|S5Z&3zz zQsQrvfti%}Gga@!j-@#jQFU!Ih9$T$t%_`UOn`0Y#wx@$ZZnP9t^2xkpAUDVCtdvK z^}0Bs>tCTshCU|$0Z06kbl>;U4dNLD|Hd67aMa=WG7g+Nh_7R&0AuGng5xBPpPJ%+ zW4X8=LN&azE<=2}tIGgC2!_r#)F@l1_^UWi0Ul!xHDHt)Y1}M(vhwhbL&M>zwcj0U z4=y3rO{$?C$R$mc?2?lFoV(bK14{$tv3XQV!dsrCl+v3EUC0999sHJ9f|J*9ZuR^|$Gpv2q1lh*SBxD=ZImzpu zwKp_|+FC+E?oM=meo=9LQFeA-2~^OEN?;UGY|Mz>LmM2Bo|R&&(gJuo8ByR4+NiP4 z5&WPZaK=_va?7NE21pVqpwZCmvlPA36(&~1eYcZ(?&I*QL4Vevf3lquY4q+JJfI<@Pw z*g;#H49y~O#0{F8U7)Fmfd=~fZtqUq#7GPQB{%sQZ)m!#b zgjmL@gT9NIN03E6rZUpRSi~8aaIE7@2Gl(`)6XQ&Fu13`TE%?>pn}0?U|v8A%xjdG zl-xoI2{gq@N+tnA1$kue!!k%qlFf3V36mXGBeG+lwFp1)yMljX9pbB%@@p}l#EOEY zA@}k!B3?lXGY!?{G1ot{{?M>~8xD^A?MQ2`k5K*-(tYZ{uG`Iar} zmRnalYM};FKo-7dtGef7E938x?+gz32u*6lEdb&g&TkV3EFhk&bd-a)_nIc?f$!w| z0;=-QfgrR&N)2eWK&@5xd`+rCT5!-kk@pc)_q;0g4Xt|!);+2_>eMa2tTsd lGW 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 literal 0 HcmV?d00001 diff --git a/fonda/cpp_testsuite/varBugs/APACHE/infer-out/results.db-wal b/fonda/cpp_testsuite/varBugs/APACHE/infer-out/results.db-wal new file mode 100644 index 0000000000000000000000000000000000000000..1f186d4e0ff8da704e4ed066c611e00956fbab75 GIT binary patch literal 3443192 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

qy8P@cz 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 literal 0 HcmV?d00001 diff --git a/fonda/cpp_testsuite/varBugs/APACHE/infer-out/tmp/clang_command_.tmp.5962e4.txt b/fonda/cpp_testsuite/varBugs/APACHE/infer-out/tmp/clang_command_.tmp.5962e4.txt new file mode 100644 index 00000000..6299a6d2 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/infer-out/tmp/clang_command_.tmp.5962e4.txt @@ -0,0 +1,11 @@ +'-###' +'-c' +'test.c' +'-fno-cxx-modules' +'-Qunused-arguments' +'-Wno-ignored-optimization-argument' +'-fno-addrsig' +'-fembed-bitcode=off' +'-include' +'/usr/local/lib/infer/infer/bin/../lib/clang_wrappers/global_defines.h' +'-Wno-everything' diff --git a/fonda/cpp_testsuite/varBugs/APACHE/infer-out/tmp/clang_command_.tmp.b9e75d.txt b/fonda/cpp_testsuite/varBugs/APACHE/infer-out/tmp/clang_command_.tmp.b9e75d.txt new file mode 100644 index 00000000..a170227a --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/infer-out/tmp/clang_command_.tmp.b9e75d.txt @@ -0,0 +1,62 @@ +"-cc1" +"-load" +"/usr/local/lib/infer/infer/bin/../../facebook-clang-plugins/libtooling/build/FacebookClangPlugin.dylib" +"-add-plugin" +"BiniouASTExporter" +"-plugin-arg-BiniouASTExporter" +"-" +"-plugin-arg-BiniouASTExporter" +"PREPEND_CURRENT_DIR=1" +"-plugin-arg-BiniouASTExporter" +"MAX_STRING_SIZE=65535" +"-cc1" +"-triple" +"x86_64-unknown-linux-gnu" +"-emit-obj" +"-mrelax-all" +"-disable-free" +"-disable-llvm-verifier" +"-discard-value-names" +"-main-file-name" +"test.c" +"-mrelocation-model" +"static" +"-mframe-pointer=all" +"-fmath-errno" +"-fno-rounding-math" +"-mconstructor-aliases" +"-munwind-tables" +"-target-cpu" +"x86-64" +"-fno-split-dwarf-inlining" +"-debugger-tuning=gdb" +"-resource-dir" +"/usr/local/lib/infer/facebook-clang-plugins/clang/install/lib/clang/11.1.0" +"-include" +"/usr/local/lib/infer/infer/bin/../lib/clang_wrappers/global_defines.h" +"-internal-isystem" +"/usr/local/include" +"-internal-isystem" +"/usr/local/lib/infer/facebook-clang-plugins/clang/install/lib/clang/11.1.0/include" +"-internal-externc-isystem" +"/usr/include/x86_64-linux-gnu" +"-internal-externc-isystem" +"/include" +"-internal-externc-isystem" +"/usr/include" +"-Wno-ignored-optimization-argument" +"-Wno-everything" +"-fdebug-compilation-dir" +"/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE" +"-ferror-limit" +"19" +"-fgnuc-version=4.2.1" +"-o" +"test.o" +"-x" +"c" +"test.c" +"-O0" +"-include" +"/usr/local/lib/infer/infer/bin/../lib/clang_wrappers/global_defines.h" +"-Wno-everything" diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.desugared.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.desugared.clangres new file mode 100644 index 00000000..91e72a3b --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.desugared.clangres @@ -0,0 +1,4 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.desugared.c:51:2: warning: Value stored to '__gdp_0' is never read [deadcode.DeadStores] + __gdp_0 = "group_desc" ; // L7 + ^ ~~~~~~~~~~~~ +1 warning generated. diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.desugared.inferres new file mode 100644 index 00000000..21371a43 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.desugared.inferres @@ -0,0 +1,14 @@ + +BUSYBOX/0301ffab3d9.desugared.c:51: error: Dead Store + The value written to &__gdp_0 (type char*) is never used. + 49. char * (__gdp_0);// L4 + 50. + 51. __gdp_0 = "group_desc" ; // L7 + ^ + 52. { int __j_1= 0;// L8 + 53. for ( ; __j_1 < 10 ; __j_1 ++ ) // L8 + + +Found 1 issue + Issue Type(ISSUED_TYPE_ID): # + Dead Store(DEAD_STORE): 1 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.clangres new file mode 100644 index 00000000..ab6ee38c --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.clangres @@ -0,0 +1,4 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.c:21:14: error: use of undeclared label 'expected_hwif_error' + goto expected_hwif_error; //ERROR + ^ +1 error generated. diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.c index be331ab2..b547ba83 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.c @@ -2928,7 +2928,7 @@ if (__static_condition_default_2045) { -int __r_2038= __rand_1609 ( ) % 2;// L6 +int __r_2038= rand( ) % 2;// L6 char * (__p_2040);// L7 @@ -3095,7 +3095,7 @@ if (__static_condition_default_2058) { -int __r_2038= __rand_1609 ( ) % 2;// L6 +int __r_2038= rand( ) % 2;// L6 char * (__p_2040);// L7 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.clangres new file mode 100644 index 00000000..8ddfad93 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.clangres @@ -0,0 +1,7 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.c:3063:2: warning: Value stored to '__p_2040' is never read [deadcode.DeadStores] + __p_2040 = * __argv_2037 ++ , -- __argc_2036 ; // L16 + ^ ~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.c:3230:2: warning: Value stored to '__p_2040' is never read [deadcode.DeadStores] + __p_2040 = * __argv_2037 ++ , -- __argc_2036 ; // L16 + ^ ~~~~~~~~~~~~~~~~~~ +2 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.inferres new file mode 100644 index 00000000..8548cdd0 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.inferres @@ -0,0 +1,51 @@ + +BUSYBOX/061fd0a353e.desugared.c:3063: error: Dead Store + The value written to &__argc_2036 (type int) is never used. + 3061. if ( __r_2038 )// L15 + 3062. { + 3063. __p_2040 = * __argv_2037 ++ , -- __argc_2036 ; // L16 + ^ + 3064. } + 3065. } + +BUSYBOX/061fd0a353e.desugared.c:3063: error: Dead Store + The value written to &__argv_2037 (type char**) is never used. + 3061. if ( __r_2038 )// L15 + 3062. { + 3063. __p_2040 = * __argv_2037 ++ , -- __argc_2036 ; // L16 + ^ + 3064. } + 3065. } + +BUSYBOX/061fd0a353e.desugared.c:2941: error: Uninitialized Value + The value read from __c_2041 was never initialized. + 2939. switch ( __c_2041 )// L12 + 2940. { + 2941. case 'W' : + ^ + 2942. { + 2943. + +BUSYBOX/061fd0a353e.desugared.c:2959: error: Uninitialized Value + The value read from __c_2041 was never initialized. + 2957. switch ( __c_2041 )// L12 + 2958. { + 2959. case 'W' : + ^ + 2960. { + 2961. + +BUSYBOX/061fd0a353e.desugared.c:2972: error: Uninitialized Value + The value read from __c_2041 was never initialized. + 2970. break ; // L17 + 2971. } + 2972. case 'U' : + ^ + 2973. { + 2974. + + +Found 40 issues (console output truncated to 5, see '/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/infer-out/report.txt' for the full list) + Issue Type(ISSUED_TYPE_ID): # + Uninitialized Value(UNINITIALIZED_VALUE): 36 + Dead Store(DEAD_STORE): 4 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/192c35f6eb2.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/192c35f6eb2.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/192c35f6eb2.desugared.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/192c35f6eb2.desugared.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/192c35f6eb2.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/192c35f6eb2.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/192c35f6eb2.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/192c35f6eb2.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/192c35f6eb2.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/192c35f6eb2.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.clangres new file mode 100644 index 00000000..351340d1 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.clangres @@ -0,0 +1,4 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.c:21:3: warning: Null pointer passed to 2nd parameter expecting 'nonnull' [core.NonNullParamChecker] + strcat(buf, dt); // ERROR + ^~~~~~~~~~~~~~~ +1 warning generated. diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.c index 1367340c..4398b7e8 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.c @@ -3189,7 +3189,7 @@ if (__static_condition_default_2394) { char * (__dt_2390)= ( ( void * ) 0 );// L7 if (__static_condition_default_2395) { -if ( __rand_1609 ( ) % 2 )// L9 +if ( rand( ) % 2 )// L9 { { @@ -3225,7 +3225,7 @@ if (__static_condition_default_2397) { char * (__dt_2390)= ( ( void * ) 0 );// L7 if (__static_condition_default_2398) { -if ( __rand_1609 ( ) % 2 )// L9 +if ( rand( ) % 2 )// L9 { { @@ -3272,7 +3272,7 @@ if (__static_condition_default_2400) { char * (__dt_2390)= ( ( void * ) 0 );// L7 if (__static_condition_default_2401) { -if ( __rand_1609 ( ) % 2 )// L9 +if ( rand( ) % 2 )// L9 { { @@ -3308,7 +3308,7 @@ if (__static_condition_default_2403) { char * (__dt_2390)= ( ( void * ) 0 );// L7 if (__static_condition_default_2404) { -if ( __rand_1609 ( ) % 2 )// L9 +if ( rand( ) % 2 )// L9 { { diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.clangres new file mode 100644 index 00000000..d40e425d --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.clangres @@ -0,0 +1,4 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.c:3283:2: warning: Value stored to '__dt_2390' is never read [deadcode.DeadStores] + __dt_2390 = "-i" ; // L10 + ^ ~~~~ +1 warning generated. diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.inferres new file mode 100644 index 00000000..28fbf99c --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.inferres @@ -0,0 +1,14 @@ + +BUSYBOX/199501f2a00.desugared.c:3283: error: Dead Store + The value written to &__dt_2390 (type char*) is never used. + 3281. + 3282. + 3283. __dt_2390 = "-i" ; // L10 + ^ + 3284. } + 3285. } + + +Found 1 issue + Issue Type(ISSUED_TYPE_ID): # + Dead Store(DEAD_STORE): 1 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.inferres new file mode 100644 index 00000000..1064ec89 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.inferres @@ -0,0 +1,14 @@ + +BUSYBOX/199501f2a00.c:21: error: Null Dereference + pointer `dt` last assigned on line 7 could be null and is dereferenced by call to `strcat()` at line 21, column 3. + 19. strcpy(buf, "module option(s): "); + 20. + 21. strcat(buf, dt); // ERROR + ^ + 22. #endif + 23. } + + +Found 1 issue + Issue Type(ISSUED_TYPE_ID): # + Null Dereference(NULL_DEREFERENCE): 1 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.clangres new file mode 100644 index 00000000..9f489997 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.clangres @@ -0,0 +1,4 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.c:14:22: warning: Dereference of null pointer (loaded from variable 'scontext') [core.NullDereference] + printf(" %lc\n", *scontext); // ERROR + ^~~~~~~~~ +1 warning generated. diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.c index d4344efe..bcafe467 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.c @@ -2932,7 +2932,7 @@ if (__static_condition_default_2043) { char * (__scontext_2038)= ( ( void * ) 0 );// L7 if (__static_condition_default_2044) { -if ( __rand_1609 ( ) % 2 )// L13 +if ( rand( ) % 2 )// L13 { if (__static_condition_default_2045) { __printf_421 (" %lc\n",* __scontext_2038 ) ; // L14 @@ -2989,7 +2989,7 @@ if (__static_condition_default_2052) { char * (__scontext_2038)= ( ( void * ) 0 );// L7 if (__static_condition_default_2053) { -if ( __rand_1609 ( ) % 2 )// L13 +if ( rand( ) % 2 )// L13 { if (__static_condition_default_2054) { __printf_421 (" %lc\n",* __scontext_2038 ) ; // L14 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.clangres new file mode 100644 index 00000000..7995bfda --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.clangres @@ -0,0 +1,7 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.c:2938:26: warning: Dereference of null pointer (loaded from variable '__scontext_2038') [core.NullDereference] + __printf_421 (" %lc\n",* __scontext_2038 ) ; // L14 + ^~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.c:2995:26: warning: Dereference of null pointer (loaded from variable '__scontext_2038') [core.NullDereference] + __printf_421 (" %lc\n",* __scontext_2038 ) ; // L14 + ^~~~~~~~~~~~~~~~~~ +2 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.inferres new file mode 100644 index 00000000..65149181 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.inferres @@ -0,0 +1,23 @@ + +BUSYBOX/1b487ea8a69.desugared.c:2938: error: Null Dereference + pointer `__scontext_2038` last assigned on line 2932 could be null and is dereferenced at line 2938, column 26. + 2936. { + 2937. if (__static_condition_default_2045) { + 2938. __printf_421 (" %lc\n",* __scontext_2038 ) ; // L14 + ^ + 2939. } + 2940. if (__static_condition_default_2046) { + +BUSYBOX/1b487ea8a69.desugared.c:2995: error: Null Dereference + pointer `__scontext_2038` last assigned on line 2989 could be null and is dereferenced at line 2995, column 26. + 2993. { + 2994. if (__static_condition_default_2054) { + 2995. __printf_421 (" %lc\n",* __scontext_2038 ) ; // L14 + ^ + 2996. } + 2997. if (__static_condition_default_2055) { + + +Found 2 issues + Issue Type(ISSUED_TYPE_ID): # + Null Dereference(NULL_DEREFERENCE): 2 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.inferres new file mode 100644 index 00000000..e007757f --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.inferres @@ -0,0 +1,14 @@ + +BUSYBOX/1b487ea8a69.c:14: error: Null Dereference + pointer `scontext` last assigned on line 7 could be null and is dereferenced at line 14, column 22. + 12. #ifdef ENABLE_SELINUX + 13. if(rand() % 2) + 14. printf(" %lc\n", *scontext); // ERROR + ^ + 15. #endif + 16. + + +Found 1 issue + Issue Type(ISSUED_TYPE_ID): # + Null Dereference(NULL_DEREFERENCE): 1 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.clangres new file mode 100644 index 00000000..a379ab58 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.clangres @@ -0,0 +1,4 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.c:67:16: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] + curr->next = head; + ^ ~~~~ +1 warning generated. diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c index b0c5d1e0..9bbb3e7f 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c @@ -3184,7 +3184,7 @@ if (__static_condition_default_2087) { __static_type_error("type error") ; // L65 } if (__static_condition_default_2088) { - __curr_2072 -> __val_2038 = __rand_1609 ( ) % 10 ; // L66 + __curr_2072 -> __val_2038 = rand( ) % 10 ; // L66 } if (__static_condition_default_2089) { __static_type_error("type error") ; // L66 @@ -3197,7 +3197,7 @@ __static_type_error("type error") ; // L66 } } if (__static_condition_default_2090) { -if ( __rand_1609 ( ) % 2 )// L72 +if ( rand( ) % 2 )// L72 { { @@ -3268,7 +3268,7 @@ if (__static_condition_default_2099) { __static_type_error("type error") ; // L65 } if (__static_condition_default_2100) { - __curr_2072 -> __val_2038 = __rand_1609 ( ) % 10 ; // L66 + __curr_2072 -> __val_2038 = rand( ) % 10 ; // L66 } if (__static_condition_default_2101) { __static_type_error("type error") ; // L66 @@ -3281,7 +3281,7 @@ __static_type_error("type error") ; // L66 } } if (__static_condition_default_2102) { -if ( __rand_1609 ( ) % 2 )// L72 +if ( rand( ) % 2 )// L72 { { diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.clangres new file mode 100644 index 00000000..b6b205e6 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.clangres @@ -0,0 +1,43 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3172:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] + __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 + ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3175:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] + __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 + ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3178:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] + __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 + ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3181:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] + __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 + ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3187:29: warning: Dereference of undefined pointer value [core.NullDereference] + __curr_2072 -> __val_2038 = rand( ) % 10 ; // L66 + ~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3192:30: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] + __curr_2072 -> __next_2039 = __head_2073 ; // L67 + ^ ~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3192:30: warning: Dereference of undefined pointer value [core.NullDereference] + __curr_2072 -> __next_2039 = __head_2073 ; // L67 + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3256:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] + __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 + ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3259:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] + __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 + ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3262:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] + __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 + ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3265:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] + __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 + ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3271:29: warning: Dereference of undefined pointer value [core.NullDereference] + __curr_2072 -> __val_2038 = rand( ) % 10 ; // L66 + ~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3276:30: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] + __curr_2072 -> __next_2039 = __head_2073 ; // L67 + ^ ~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3276:30: warning: Dereference of undefined pointer value [core.NullDereference] + __curr_2072 -> __next_2039 = __head_2073 ; // L67 + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~ +14 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.inferres new file mode 100644 index 00000000..aec8ea86 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.inferres @@ -0,0 +1,51 @@ + +BUSYBOX/2631486f1bf.desugared.c:3193: error: Uninitialized Value + The value read from __curr_2072 was never initialized. + 3191. } + 3192. __curr_2072 -> __next_2039 = __head_2073 ; // L67 + 3193. __head_2073 = __curr_2072 ; // L68 + ^ + 3194. __arr_2075 [ ( __size_2074 - 1 ) - __i_2076 ] = __curr_2072 ; // L69 + 3195. } + +BUSYBOX/2631486f1bf.desugared.c:3194: error: Uninitialized Value + The value read from __curr_2072 was never initialized. + 3192. __curr_2072 -> __next_2039 = __head_2073 ; // L67 + 3193. __head_2073 = __curr_2072 ; // L68 + 3194. __arr_2075 [ ( __size_2074 - 1 ) - __i_2076 ] = __curr_2072 ; // L69 + ^ + 3195. } + 3196. } + +BUSYBOX/2631486f1bf.desugared.c:3192: error: Uninitialized Value + The value read from __head_2073 was never initialized. + 3190. __static_type_error("type error") ; // L66 + 3191. } + 3192. __curr_2072 -> __next_2039 = __head_2073 ; // L67 + ^ + 3193. __head_2073 = __curr_2072 ; // L68 + 3194. __arr_2075 [ ( __size_2074 - 1 ) - __i_2076 ] = __curr_2072 ; // L69 + +BUSYBOX/2631486f1bf.desugared.c:3277: error: Uninitialized Value + The value read from __curr_2072 was never initialized. + 3275. } + 3276. __curr_2072 -> __next_2039 = __head_2073 ; // L67 + 3277. __head_2073 = __curr_2072 ; // L68 + ^ + 3278. __arr_2075 [ ( __size_2074 - 1 ) - __i_2076 ] = __curr_2072 ; // L69 + 3279. } + +BUSYBOX/2631486f1bf.desugared.c:3278: error: Uninitialized Value + The value read from __curr_2072 was never initialized. + 3276. __curr_2072 -> __next_2039 = __head_2073 ; // L67 + 3277. __head_2073 = __curr_2072 ; // L68 + 3278. __arr_2075 [ ( __size_2074 - 1 ) - __i_2076 ] = __curr_2072 ; // L69 + ^ + 3279. } + 3280. } + + +Found 7 issues (console output truncated to 5, see '/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/infer-out/report.txt' for the full list) + Issue Type(ISSUED_TYPE_ID): # + Uninitialized Value(UNINITIALIZED_VALUE): 6 + Pointer To Integral Implicit Cast(POINTER_TO_INTEGRAL_IMPLICIT_CAST): 1 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.inferres new file mode 100644 index 00000000..3179d9ee --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.inferres @@ -0,0 +1,34 @@ + +BUSYBOX/2631486f1bf.c:66: error: Null Dereference + pointer `curr` last assigned on line 65 could be null and is dereferenced at line 66, column 5. + 64. for (int i = 0; i < size; i++) { + 65. curr = (struct dnode *) malloc(sizeof(struct dnode)); + 66. curr->val = rand() % 10; + ^ + 67. curr->next = head; + 68. head = curr; + +BUSYBOX/2631486f1bf.c:67: error: Uninitialized Value + The value read from head was never initialized. + 65. curr = (struct dnode *) malloc(sizeof(struct dnode)); + 66. curr->val = rand() % 10; + 67. curr->next = head; + ^ + 68. head = curr; + 69. arr[(size-1)-i] = curr; + +BUSYBOX/2631486f1bf.c:51: warning: Pointer To Integral Implicit Cast + Implicit conversion from `int**` to `int` in usage of `temp` at line 51, column 17. + 49. temp=*arr[i]; + 50. *arr[i]=*arr[j]; + 51. *arr[j]=temp; + ^ + 52. } + 53. } + + +Found 3 issues + Issue Type(ISSUED_TYPE_ID): # + Uninitialized Value(UNINITIALIZED_VALUE): 1 + Pointer To Integral Implicit Cast(POINTER_TO_INTEGRAL_IMPLICIT_CAST): 1 + Null Dereference(NULL_DEREFERENCE): 1 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.clangres new file mode 100644 index 00000000..4160fb4b --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.clangres @@ -0,0 +1,4 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.c:25:5: error: use of undeclared identifier 'k_crcs' + k_crcs = someInt; + ^ +1 error generated. diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c index 7c930300..287c11ba 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c @@ -2912,7 +2912,7 @@ if (__static_condition_default_2047) { -int __r_2038= __rand_1609 ( ) % 2;// L6 +int __r_2038= rand( ) % 2;// L6 int __m_has_modinfo_2040;// L7 @@ -3052,7 +3052,7 @@ if (__static_condition_default_2059) { -int __r_2038= __rand_1609 ( ) % 2;// L6 +int __r_2038= rand( ) % 2;// L6 int __m_has_modinfo_2040;// L7 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.clangres new file mode 100644 index 00000000..020783f4 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.clangres @@ -0,0 +1,40 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:2929:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] + __m_has_modinfo_2040 = 0 ; // L16 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:2935:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] + __m_has_modinfo_2040 = 1 ; // L18 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:2943:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] + __m_has_modinfo_2040 = 0 ; // L16 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:2949:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] + __m_has_modinfo_2040 = 1 ; // L18 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:2954:2: warning: Value stored to '__k_crcs_2043' is never read [deadcode.DeadStores] + __k_crcs_2043 = 0 ; // L21 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3005:2: warning: Value stored to '__k_crcs_2043' is never read [deadcode.DeadStores] + __k_crcs_2043 = __someInt_2042 ; // L25 + ^ ~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3069:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] + __m_has_modinfo_2040 = 0 ; // L16 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3075:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] + __m_has_modinfo_2040 = 1 ; // L18 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3083:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] + __m_has_modinfo_2040 = 0 ; // L16 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3089:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] + __m_has_modinfo_2040 = 1 ; // L18 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3094:2: warning: Value stored to '__k_crcs_2043' is never read [deadcode.DeadStores] + __k_crcs_2043 = 0 ; // L21 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3145:2: warning: Value stored to '__k_crcs_2043' is never read [deadcode.DeadStores] + __k_crcs_2043 = __someInt_2042 ; // L25 + ^ ~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3209:2: warning: Value stored to '__k_crcs_2043' is never read [deadcode.DeadStores] + __k_crcs_2043 = 0 ; // L21 + ^ ~ +13 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.inferres new file mode 100644 index 00000000..cc4794e5 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.inferres @@ -0,0 +1,50 @@ + +BUSYBOX/5275b1e49f6.desugared.c:3005: error: Dead Store + The value written to &__k_crcs_2043 (type int) is never used. + 3003. + 3004. + 3005. __k_crcs_2043 = __someInt_2042 ; // L25 + ^ + 3006. } + 3007. } + +BUSYBOX/5275b1e49f6.desugared.c:2935: error: Dead Store + The value written to &__m_has_modinfo_2040 (type int) is never used. + 2933. { + 2934. if (__static_condition_default_2048) { + 2935. __m_has_modinfo_2040 = 1 ; // L18 + ^ + 2936. } + 2937. } + +BUSYBOX/5275b1e49f6.desugared.c:2949: error: Dead Store + The value written to &__m_has_modinfo_2040 (type int) is never used. + 2947. { + 2948. if (__static_condition_default_2050) { + 2949. __m_has_modinfo_2040 = 1 ; // L18 + ^ + 2950. } + 2951. } + +BUSYBOX/5275b1e49f6.desugared.c:3145: error: Dead Store + The value written to &__k_crcs_2043 (type int) is never used. + 3143. + 3144. + 3145. __k_crcs_2043 = __someInt_2042 ; // L25 + ^ + 3146. } + 3147. } + +BUSYBOX/5275b1e49f6.desugared.c:3075: error: Dead Store + The value written to &__m_has_modinfo_2040 (type int) is never used. + 3073. { + 3074. if (__static_condition_default_2060) { + 3075. __m_has_modinfo_2040 = 1 ; // L18 + ^ + 3076. } + 3077. } + + +Found 7 issues (console output truncated to 5, see '/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/infer-out/report.txt' for the full list) + Issue Type(ISSUED_TYPE_ID): # + Dead Store(DEAD_STORE): 7 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/5cd6461b6fb.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/5cd6461b6fb.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/5cd6461b6fb.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/5cd6461b6fb.desugared.c index c7922adb..db3ac14f 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/5cd6461b6fb.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/5cd6461b6fb.desugared.c @@ -2955,7 +2955,7 @@ if (__static_condition_default_2056) { -int __random_2051= __rand_1609 ( ) % 2;// L27 +int __random_2051= rand( ) % 2;// L27 if (__static_condition_default_2052) { __static_type_error("invalid declaration of random under this presence condition"); @@ -2997,7 +2997,7 @@ if (__static_condition_default_2059) { -int __random_2051= __rand_1609 ( ) % 2;// L27 +int __random_2051= rand( ) % 2;// L27 if (__static_condition_default_2052) { __static_type_error("invalid declaration of random under this presence condition"); diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/5cd6461b6fb.desugared.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/5cd6461b6fb.desugared.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/5cd6461b6fb.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/5cd6461b6fb.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/5cd6461b6fb.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/5cd6461b6fb.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/5cd6461b6fb.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/5cd6461b6fb.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.clangres new file mode 100644 index 00000000..9ac3944b --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.clangres @@ -0,0 +1,7 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.c:15:15: error: initializer element is not a compile-time constant +char *iobuf = malloc(IOBUF_SIZE); + ^~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.c:23:30: error: use of undeclared identifier 'HTTP_OK' + mime_type = responseNum == HTTP_OK ? "application/octet-stream" : "text/html"; + ^ +2 errors generated. diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.clangres new file mode 100644 index 00000000..6095d9b5 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.clangres @@ -0,0 +1,25 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c:3292:25: error: initializer element is not a compile-time constant +char * (__iobuf_2392)= malloc (8192);// L15 + ^~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c:3293:25: error: initializer element is not a compile-time constant +char * (__iobuf_2393)= malloc (8192);// L15 + ^~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c:3294:25: error: initializer element is not a compile-time constant +char * (__iobuf_2394)= malloc (8192);// L15 + ^~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c:3295:25: error: initializer element is not a compile-time constant +char * (__iobuf_2395)= malloc (8192);// L15 + ^~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c:3296:25: error: initializer element is not a compile-time constant +char * (__iobuf_2397)= malloc (8192);// L15 + ^~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c:3297:25: error: initializer element is not a compile-time constant +char * (__iobuf_2398)= malloc (8192);// L15 + ^~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c:3298:25: error: initializer element is not a compile-time constant +char * (__iobuf_2399)= malloc (8192);// L15 + ^~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c:3299:25: error: initializer element is not a compile-time constant +char * (__iobuf_2400)= malloc (8192);// L15 + ^~~~~~~~~~~~~ +8 errors generated. diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.clangres new file mode 100644 index 00000000..43cb4241 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.clangres @@ -0,0 +1,4 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.c:16:5: warning: 2nd function call argument is an uninitialized value [core.CallAndMessage] + printf("%d", info); // ERROR + ^~~~~~~~~~~~~~~~~~ +1 warning generated. diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.c index 11d9779b..09cf1bc4 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.c @@ -2931,7 +2931,7 @@ if (__static_condition_default_2042) { __info_2036 = 0 ; // L11 } if (__static_condition_default_2043) { -if ( __rand_1609 ( ) % 2 )// L15 +if ( rand( ) % 2 )// L15 { if (__static_condition_default_2044) { __printf_421 ("%d", __info_2036 ) ; // L16 @@ -2942,7 +2942,7 @@ __static_type_error("type error") ; // L16 } } if (__static_condition_default_2046) { -if ( __rand_1609 ( ) % 2 )// L15 +if ( rand( ) % 2 )// L15 { if (__static_condition_default_2047) { __printf_421 ("%d", __info_2036 ) ; // L16 @@ -3002,7 +3002,7 @@ if (__static_condition_default_2052) { __info_2036 = 0 ; // L11 } if (__static_condition_default_2053) { -if ( __rand_1609 ( ) % 2 )// L15 +if ( rand( ) % 2 )// L15 { if (__static_condition_default_2054) { __printf_421 ("%d", __info_2036 ) ; // L16 @@ -3013,7 +3013,7 @@ __static_type_error("type error") ; // L16 } } if (__static_condition_default_2056) { -if ( __rand_1609 ( ) % 2 )// L15 +if ( rand( ) % 2 )// L15 { if (__static_condition_default_2057) { __printf_421 ("%d", __info_2036 ) ; // L16 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.clangres new file mode 100644 index 00000000..c744fc0c --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.clangres @@ -0,0 +1,16 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.c:2937:2: warning: 2nd function call argument is an uninitialized value [core.CallAndMessage] + __printf_421 ("%d", __info_2036 ) ; // L16 + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.c:2948:2: warning: 2nd function call argument is an uninitialized value [core.CallAndMessage] + __printf_421 ("%d", __info_2036 ) ; // L16 + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.c:3008:2: warning: 2nd function call argument is an uninitialized value [core.CallAndMessage] + __printf_421 ("%d", __info_2036 ) ; // L16 + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.c:3019:2: warning: 2nd function call argument is an uninitialized value [core.CallAndMessage] + __printf_421 ("%d", __info_2036 ) ; // L16 + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.c:3073:2: warning: Value stored to '__info_2036' is never read [deadcode.DeadStores] + __info_2036 = 0 ; // L11 + ^ ~ +5 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.inferres new file mode 100644 index 00000000..0513a99e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.inferres @@ -0,0 +1,41 @@ + +BUSYBOX/b273d665181.desugared.c:2937: error: Uninitialized Value + The value read from __info_2036 was never initialized. + 2935. { + 2936. if (__static_condition_default_2044) { + 2937. __printf_421 ("%d", __info_2036 ) ; // L16 + ^ + 2938. } + 2939. if (__static_condition_default_2045) { + +BUSYBOX/b273d665181.desugared.c:2948: error: Uninitialized Value + The value read from __info_2036 was never initialized. + 2946. { + 2947. if (__static_condition_default_2047) { + 2948. __printf_421 ("%d", __info_2036 ) ; // L16 + ^ + 2949. } + 2950. if (__static_condition_default_2048) { + +BUSYBOX/b273d665181.desugared.c:3008: error: Uninitialized Value + The value read from __info_2036 was never initialized. + 3006. { + 3007. if (__static_condition_default_2054) { + 3008. __printf_421 ("%d", __info_2036 ) ; // L16 + ^ + 3009. } + 3010. if (__static_condition_default_2055) { + +BUSYBOX/b273d665181.desugared.c:3019: error: Uninitialized Value + The value read from __info_2036 was never initialized. + 3017. { + 3018. if (__static_condition_default_2057) { + 3019. __printf_421 ("%d", __info_2036 ) ; // L16 + ^ + 3020. } + 3021. if (__static_condition_default_2058) { + + +Found 4 issues + Issue Type(ISSUED_TYPE_ID): # + Uninitialized Value(UNINITIALIZED_VALUE): 4 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.inferres new file mode 100644 index 00000000..adc228f5 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.inferres @@ -0,0 +1,14 @@ + +BUSYBOX/b273d665181.c:16: error: Uninitialized Value + The value read from info was never initialized. + 14. #ifdef BB_FEATURE_LS_FILETYPES + 15. if (rand() % 2) + 16. printf("%d", info); // ERROR + ^ + 17. #endif + 18. } + + +Found 1 issue + Issue Type(ISSUED_TYPE_ID): # + Uninitialized Value(UNINITIALIZED_VALUE): 1 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.clangres new file mode 100644 index 00000000..341fd15b --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.clangres @@ -0,0 +1,7 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.c:14:9: warning: Value stored to 'a' during its initialization is never read [deadcode.DeadStores] + char *a = val; + ^ ~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.c:16:3: warning: Value stored to 'val' is never read [deadcode.DeadStores] + val = (s && s[1]) ? s+1 : NULL; + ^ ~~~~~~~~~~~~~~~~~~~~~~~~ +2 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c index e98f1a42..44baf0e8 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c @@ -3257,7 +3257,7 @@ while ( * __s_2391 )// L23 * __p_2392 = * __s_2391 ; // L24 if (__static_condition_default_2403) { -if ( __rand_1609 ( ) % 2 )// L26 +if ( rand( ) % 2 )// L26 { { @@ -3352,7 +3352,7 @@ while ( * __s_2391 )// L23 * __p_2392 = * __s_2391 ; // L24 if (__static_condition_default_2411) { -if ( __rand_1609 ( ) % 2 )// L26 +if ( rand( ) % 2 )// L26 { { @@ -3389,7 +3389,7 @@ int (__main_2415) (int __argc_2413, char * (* (__argv_2414))) { if (__static_condition_default_2416) { -if ( __rand_1609 ( ) % 2 )// L43 +if ( rand( ) % 2 )// L43 { if (__static_condition_default_2417) { __make_device_2395 ( ) ; // L44 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.clangres new file mode 100644 index 00000000..b91364d7 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.clangres @@ -0,0 +1,43 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3213:1: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] +char * (__a_2393)= __val_2390 ;// L14 +^~~~~~~~~~~~~~~~~ ~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3213:10: warning: Value stored to '__a_2393' during its initialization is never read [deadcode.DeadStores] +char * (__a_2393)= __val_2390 ;// L14 + ^~~~~~~~ ~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3219:2: warning: Value stored to '__val_2390' is never read [deadcode.DeadStores] + __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 + ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3219:19: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] + __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 + ^~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3246:2: warning: Value stored to '__val_2390' is never read [deadcode.DeadStores] + __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 + ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3246:19: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] + __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 + ^~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3258:14: warning: Dereference of undefined pointer value [core.NullDereference] +* __p_2392 = * __s_2391 ; // L24 +~~~~~~~~~~~~~^~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3308:1: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] +char * (__a_2393)= __val_2390 ;// L14 +^~~~~~~~~~~~~~~~~ ~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3308:10: warning: Value stored to '__a_2393' during its initialization is never read [deadcode.DeadStores] +char * (__a_2393)= __val_2390 ;// L14 + ^~~~~~~~ ~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3314:2: warning: Value stored to '__val_2390' is never read [deadcode.DeadStores] + __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 + ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3314:19: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] + __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 + ^~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3341:2: warning: Value stored to '__val_2390' is never read [deadcode.DeadStores] + __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 + ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3341:19: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] + __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 + ^~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3353:14: warning: Dereference of undefined pointer value [core.NullDereference] +* __p_2392 = * __s_2391 ; // L24 +~~~~~~~~~~~~~^~~~~~~~~~~~~ +14 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.inferres new file mode 100644 index 00000000..ab7a9b6e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.inferres @@ -0,0 +1,51 @@ + +BUSYBOX/b62bd7b261b.desugared.c:3213: error: Dead Store + The value written to &__a_2393 (type char*) is never used. + 3211. __val_2390 = "mode - device permissions" ; // L12 + 3212. } + 3213. char * (__a_2393)= __val_2390 ;// L14 + ^ + 3214. + 3215. if (__static_condition_default_2399) { + +BUSYBOX/b62bd7b261b.desugared.c:3219: error: Dead Store + The value written to &__val_2390 (type char*) is never used. + 3217. } + 3218. if (__static_condition_default_2400) { + 3219. __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 + ^ + 3220. } + 3221. } + +BUSYBOX/b62bd7b261b.desugared.c:3246: error: Dead Store + The value written to &__val_2390 (type char*) is never used. + 3244. __s_2391 = __strchr_2169 ( __val_2390 ,' ') ; // L15 + 3245. } + 3246. __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 + ^ + 3247. int __n_2394= 0;// L20 + 3248. + +BUSYBOX/b62bd7b261b.desugared.c:3269: error: Uninitialized Value + The value read from __p_2392 was never initialized. + 3267. + 3268. __n_2394 ++ ; // L27 + 3269. __p_2392 += __n_2394 - 1 ; // L28 + ^ + 3270. } + 3271. } + +BUSYBOX/b62bd7b261b.desugared.c:3277: error: Uninitialized Value + The value read from __p_2392 was never initialized. + 3275. __static_type_error("invalid type found in if statement"); + 3276. } + 3277. __p_2392 ++ ; // L31 + ^ + 3278. __s_2391 ++ ; // L32 + 3279. } + + +Found 20 issues (console output truncated to 5, see '/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/infer-out/report.txt' for the full list) + Issue Type(ISSUED_TYPE_ID): # + Uninitialized Value(UNINITIALIZED_VALUE): 14 + Dead Store(DEAD_STORE): 6 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.inferres new file mode 100644 index 00000000..c5909fa5 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.inferres @@ -0,0 +1,23 @@ + +BUSYBOX/b62bd7b261b.c:14: error: Dead Store + The value written to &a (type char*) is never used. + 12. val = "mode - device permissions"; + 13. + 14. char *a = val; + ^ + 15. s = strchr(val, ' '); + 16. val = (s && s[1]) ? s+1 : NULL; + +BUSYBOX/b62bd7b261b.c:16: error: Dead Store + The value written to &val (type char*) is never used. + 14. char *a = val; + 15. s = strchr(val, ' '); + 16. val = (s && s[1]) ? s+1 : NULL; + ^ + 17. + 18. #ifdef ENABLE_FEATURE_MDEV_RENAME_REGEXP + + +Found 2 issues + Issue Type(ISSUED_TYPE_ID): # + Dead Store(DEAD_STORE): 2 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.clangres new file mode 100644 index 00000000..b2457089 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.clangres @@ -0,0 +1,10 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.c:7:23: error: invalid token in macro parameter list +#define LIST_FILENAME(1U<<11) + ^ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.c:13:13: error: use of undeclared identifier 'LIST_FILENAME' + all_fmt = LIST_FILENAME; + ^ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.c:16:17: error: use of undeclared identifier 'TIME_MASK' + all_fmt &= ~TIME_MASK; + ^ +3 errors generated. diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.desugared.c index 32640ac2..1fe304fd 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.desugared.c @@ -1308,7 +1308,7 @@ int (__main_803) (int __argc_801, char * (* (__argv_802))) { __static_type_error("type error : no valid expression"); // L13 if (__static_condition_default_804) { -if ( __rand_465 ( ) % 2 )// L15 +if ( rand( ) % 2 )// L15 { { diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.desugared.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.desugared.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.clangres new file mode 100644 index 00000000..bde91b29 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.clangres @@ -0,0 +1,4 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.c:43:29: warning: Use of memory after it is freed [unix.Malloc] + for (ch = clist; ch; ch = ch->next) // ERROR + ^~~~~~~~ +1 warning generated. diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.clangres new file mode 100644 index 00000000..cbc5ed53 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.clangres @@ -0,0 +1,37 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3381:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_2394', which is incompatible with sizeof operand type 'struct (anonymous struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3338:1)' [unix.MallocSizeof] + __ch_2419 = malloc (sizeof(__sizeofStandin_2423)) ; // L29 + ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3384:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_2394', which is incompatible with sizeof operand type 'struct (anonymous struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3338:1)' [unix.MallocSizeof] + __ch_2419 = malloc (sizeof(__sizeofStandin_2423)) ; // L29 + ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3386:5: warning: Potential leak of memory pointed to by '__ch_2419' [unix.Malloc] +if (__static_condition_default_2438) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3389:30: warning: Dereference of undefined pointer value [core.NullDereference] + __ch_2419 -> __ifname_2393 = __ifname_2418 ; // L30 + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3448:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_2395', which is incompatible with sizeof operand type 'struct (anonymous struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3406:1)' [unix.MallocSizeof] + __ch_2420 = malloc (sizeof(__sizeofStandin_2426)) ; // L29 + ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3451:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_2395', which is incompatible with sizeof operand type 'struct (anonymous struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3406:1)' [unix.MallocSizeof] + __ch_2420 = malloc (sizeof(__sizeofStandin_2426)) ; // L29 + ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3453:5: warning: Potential leak of memory pointed to by '__ch_2420' [unix.Malloc] +if (__static_condition_default_2448) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3456:30: warning: Dereference of undefined pointer value [core.NullDereference] + __ch_2420 -> __ifname_2393 = __ifname_2418 ; // L30 + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3487:39: warning: Potential leak of memory pointed to by '__ch_2453' [unix.Malloc] +for ( __ch_2453 = __clist_2451 ; __ch_2453 ; __ch_2453 = __ch_2453 -> __next_2392 )// L43 + ^~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3492:5: warning: Potential leak of memory pointed to by '__clist_2451' [unix.Malloc] +if (__static_condition_default_2457) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3493:39: warning: Potential leak of memory pointed to by '__ch_2454' [unix.Malloc] +for ( __ch_2454 = __clist_2452 ; __ch_2454 ; __ch_2454 = __ch_2454 -> __next_2392 )// L43 + ^~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3498:5: warning: Potential leak of memory pointed to by '__clist_2452' [unix.Malloc] +if (__static_condition_default_2458) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +12 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.inferres new file mode 100644 index 00000000..57061ec8 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.inferres @@ -0,0 +1,23 @@ + +BUSYBOX/bc0ffc0e971.desugared.c:3391: error: Uninitialized Value + The value read from __ch_2419 was never initialized. + 3389. __ch_2419 -> __ifname_2393 = __ifname_2418 ; // L30 + 3390. __ch_2419 -> __next_2392 = * __clist_2416 ; // L31 + 3391. * __clist_2416 = __ch_2419 ; // L32 + ^ + 3392. } + 3393. } + +BUSYBOX/bc0ffc0e971.desugared.c:3458: error: Uninitialized Value + The value read from __ch_2420 was never initialized. + 3456. __ch_2420 -> __ifname_2393 = __ifname_2418 ; // L30 + 3457. __ch_2420 -> __next_2392 = * __clist_2417 ; // L31 + 3458. * __clist_2417 = __ch_2420 ; // L32 + ^ + 3459. } + 3460. } + + +Found 2 issues + Issue Type(ISSUED_TYPE_ID): # + Uninitialized Value(UNINITIALIZED_VALUE): 2 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.inferres new file mode 100644 index 00000000..f7cf7004 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.inferres @@ -0,0 +1,14 @@ + +BUSYBOX/bc0ffc0e971.c:30: error: Null Dereference + pointer `ch` last assigned on line 29 could be null and is dereferenced at line 30, column 3. + 28. printf("interface name '%s' too long", ifname); + 29. ch = malloc(sizeof(*ch)); + 30. ch->ifname = ifname; + ^ + 31. ch->next = *clist; + 32. *clist = ch; + + +Found 1 issue + Issue Type(ISSUED_TYPE_ID): # + Null Dereference(NULL_DEREFERENCE): 1 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/cc3f20b9bdf.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/cc3f20b9bdf.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/cc3f20b9bdf.desugared.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/cc3f20b9bdf.desugared.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/cc3f20b9bdf.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/cc3f20b9bdf.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/cc3f20b9bdf.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/cc3f20b9bdf.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/cc3f20b9bdf.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/cc3f20b9bdf.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/cf1f2ace391.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/cf1f2ace391.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/cf1f2ace391.desugared.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/cf1f2ace391.desugared.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/cf1f2ace391.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/cf1f2ace391.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/cf1f2ace391.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/cf1f2ace391.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/cf1f2ace391.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/cf1f2ace391.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/df7b6577c6a.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/df7b6577c6a.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/df7b6577c6a.desugared.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/df7b6577c6a.desugared.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/df7b6577c6a.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/df7b6577c6a.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/df7b6577c6a.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/df7b6577c6a.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/df7b6577c6a.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/df7b6577c6a.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.c index 7bcf4b40..fe02b302 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.c @@ -2906,13 +2906,13 @@ int __src_2042;// L14 int __dst_2043;// L14 if (__static_condition_default_2046) { - __src_2042 = __rand_1609 ( ) % 100 ; // L15 + __src_2042 = rand( ) % 100 ; // L15 } if (__static_condition_default_2047) { __static_type_error("type error") ; // L15 } if (__static_condition_default_2048) { - __dst_2043 = __rand_1609 ( ) % 200 ; // L16 + __dst_2043 = rand( ) % 200 ; // L16 } if (__static_condition_default_2049) { __static_type_error("type error") ; // L16 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.clangres new file mode 100644 index 00000000..16f35fdd --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.clangres @@ -0,0 +1,7 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.c:2921:2: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] + __copySubFile_2038 ( __src_2042 , __dst_2043 ) ; // L18 + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.c:2921:2: warning: 2nd function call argument is an uninitialized value [core.CallAndMessage] + __copySubFile_2038 ( __src_2042 , __dst_2043 ) ; // L18 + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +2 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.inferres new file mode 100644 index 00000000..338ce5d8 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.inferres @@ -0,0 +1,23 @@ + +BUSYBOX/ebee301c8b0.desugared.c:2921: error: Uninitialized Value + The value read from __dst_2043 was never initialized. + 2919. } + 2920. if (__static_condition_default_2050) { + 2921. __copySubFile_2038 ( __src_2042 , __dst_2043 ) ; // L18 + ^ + 2922. } + 2923. if (__static_condition_default_2051) { + +BUSYBOX/ebee301c8b0.desugared.c:2921: error: Uninitialized Value + The value read from __src_2042 was never initialized. + 2919. } + 2920. if (__static_condition_default_2050) { + 2921. __copySubFile_2038 ( __src_2042 , __dst_2043 ) ; // L18 + ^ + 2922. } + 2923. if (__static_condition_default_2051) { + + +Found 2 issues + Issue Type(ISSUED_TYPE_ID): # + Uninitialized Value(UNINITIALIZED_VALUE): 2 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.clangres new file mode 100644 index 00000000..9bec800f --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.clangres @@ -0,0 +1,4 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.c:30:7: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] + if (buf) { //WARNING + ^~~ +1 warning generated. diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.clangres new file mode 100644 index 00000000..26a23e1a --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.clangres @@ -0,0 +1,19 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c:1687:5: warning: Potential leak of memory pointed to by '__buf_964' [unix.Malloc] +if (__static_condition_default_972) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c:1693:7: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] +if ( __buf_964 )// L30 + ^~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c:1704:5: warning: Potential leak of memory pointed to by '__buf_964' [unix.Malloc] +if (__static_condition_default_974) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c:1750:2: warning: Value stored to '__buf_964' is never read [deadcode.DeadStores] + __buf_964 = malloc ( __bufsize_965 ) ; // L26 + ^ ~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c:1753:2: warning: Value stored to '__buf_964' is never read [deadcode.DeadStores] + __buf_964 = malloc ( __bufsize_965 ) ; // L26 + ^ ~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c:1755:5: warning: Potential leak of memory pointed to by '__buf_964' [unix.Malloc] +if (__static_condition_default_978) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +6 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.inferres new file mode 100644 index 00000000..4bae94cb --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.inferres @@ -0,0 +1,33 @@ + +BUSYBOX/eef2317b9f5.desugared.c:1750: error: Dead Store + The value written to &__buf_964 (type char*) is never used. + 1748. } + 1749. if (__static_condition_default_976) { + 1750. __buf_964 = malloc ( __bufsize_965 ) ; // L26 + ^ + 1751. } + 1752. if (__static_condition_default_977) { + +BUSYBOX/eef2317b9f5.desugared.c:1753: error: Dead Store + The value written to &__buf_964 (type char*) is never used. + 1751. } + 1752. if (__static_condition_default_977) { + 1753. __buf_964 = malloc ( __bufsize_965 ) ; // L26 + ^ + 1754. } + 1755. if (__static_condition_default_978) { + +BUSYBOX/eef2317b9f5.desugared.c:1693: error: Uninitialized Value + The value read from __buf_964 was never initialized. + 1691. all_done_0: + 1692. { + 1693. if ( __buf_964 )// L30 + ^ + 1694. { + 1695. + + +Found 3 issues + Issue Type(ISSUED_TYPE_ID): # + Dead Store(DEAD_STORE): 2 + Uninitialized Value(UNINITIALIZED_VALUE): 1 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.inferres new file mode 100644 index 00000000..19b17f14 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.inferres @@ -0,0 +1,14 @@ + +BUSYBOX/eef2317b9f5.c:30: error: Uninitialized Value + The value read from buf was never initialized. + 28. all_done: + 29. #ifdef CONFIG_FEATURE_CLEAN_UP + 30. if (buf) { //WARNING + ^ + 31. free(buf); //ERROR + 32. } + + +Found 1 issue + Issue Type(ISSUED_TYPE_ID): # + Uninitialized Value(UNINITIALIZED_VALUE): 1 diff --git a/fonda/cpp_testsuite/varBugs/LINUX/0988c4c7fb5.clangres b/fonda/cpp_testsuite/varBugs/LINUX/0988c4c7fb5.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/0988c4c7fb5.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/0988c4c7fb5.desugared.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/0988c4c7fb5.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/0988c4c7fb5.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/0988c4c7fb5.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/0988c4c7fb5.inferres b/fonda/cpp_testsuite/varBugs/LINUX/0988c4c7fb5.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/0988c4c7fb5.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.clangres b/fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.desugared.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.inferres b/fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.clangres b/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.clangres new file mode 100644 index 00000000..e72f9cd9 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.clangres @@ -0,0 +1,14 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.c:26:21: error: use of undeclared identifier 'PAGE_SHIFT' +int* kmalloc_caches[KMALLOC_SHIFT_HIGH + 1]; + ^ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.c:18:42: note: expanded from macro 'KMALLOC_SHIFT_HIGH' +#define KMALLOC_SHIFT_HIGH ((MAX_ORDER + PAGE_SHIFT - 1) <= 25 ? \ + ^ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.c:26:21: error: use of undeclared identifier 'PAGE_SHIFT' +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.c:19:41: note: expanded from macro 'KMALLOC_SHIFT_HIGH' + (MAX_ORDER + PAGE_SHIFT - 1) : 25) + ^ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.c:34:19: error: use of undeclared identifier 'PAGE_SHIFT' + for (i = 1; i < PAGE_SHIFT + MAX_ORDER; i++) + ^ +3 errors generated. diff --git a/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.desugared.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.inferres b/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/1c17e4d4437.clangres b/fonda/cpp_testsuite/varBugs/LINUX/1c17e4d4437.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/1c17e4d4437.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/1c17e4d4437.desugared.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/1c17e4d4437.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/1c17e4d4437.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/1c17e4d4437.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/1c17e4d4437.inferres b/fonda/cpp_testsuite/varBugs/LINUX/1c17e4d4437.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/1c17e4d4437.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/1f758a4341a.clangres b/fonda/cpp_testsuite/varBugs/LINUX/1f758a4341a.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/1f758a4341a.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/1f758a4341a.desugared.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/1f758a4341a.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/1f758a4341a.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/1f758a4341a.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/1f758a4341a.inferres b/fonda/cpp_testsuite/varBugs/LINUX/1f758a4341a.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/1f758a4341a.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/208d89843b7.clangres b/fonda/cpp_testsuite/varBugs/LINUX/208d89843b7.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/208d89843b7.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/208d89843b7.desugared.c index 3d00d805..72de361c 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/208d89843b7.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/208d89843b7.desugared.c @@ -1443,7 +1443,7 @@ unsigned int (__skb_checksum_811) () { unsigned int __csum_810= 0;// L37 if (__static_condition_default_812) { -while ( __rand_465 ( ) % 2 )// L39 +while ( rand( ) % 2 )// L39 { { @@ -1451,7 +1451,7 @@ while ( __rand_465 ( ) % 2 )// L39 -if ( __rand_465 ( ) % 2 )// L40 +if ( rand( ) % 2 )// L40 { { @@ -1508,7 +1508,7 @@ if (__static_condition_default_803) { __spin_lock_irq_800 ( ) ; // L57 } if (__static_condition_default_812) { -while ( __rand_465 ( ) % 2 )// L58 +while ( rand( ) % 2 )// L58 { { diff --git a/fonda/cpp_testsuite/varBugs/LINUX/208d89843b7.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/208d89843b7.desugared.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/208d89843b7.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/208d89843b7.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/208d89843b7.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/208d89843b7.inferres b/fonda/cpp_testsuite/varBugs/LINUX/208d89843b7.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/208d89843b7.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/218ad12f42e.clangres b/fonda/cpp_testsuite/varBugs/LINUX/218ad12f42e.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/218ad12f42e.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/218ad12f42e.desugared.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/218ad12f42e.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/218ad12f42e.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/218ad12f42e.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/218ad12f42e.inferres b/fonda/cpp_testsuite/varBugs/LINUX/218ad12f42e.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/218ad12f42e.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/221ac329e93.clangres b/fonda/cpp_testsuite/varBugs/LINUX/221ac329e93.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/221ac329e93.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/221ac329e93.desugared.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/221ac329e93.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/221ac329e93.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/221ac329e93.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/221ac329e93.inferres b/fonda/cpp_testsuite/varBugs/LINUX/221ac329e93.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/221ac329e93.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/242f1a34377.clangres b/fonda/cpp_testsuite/varBugs/LINUX/242f1a34377.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/242f1a34377.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/242f1a34377.desugared.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/242f1a34377.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/242f1a34377.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/242f1a34377.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/242f1a34377.inferres b/fonda/cpp_testsuite/varBugs/LINUX/242f1a34377.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/242f1a34377.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/2f02c15a5d9.clangres b/fonda/cpp_testsuite/varBugs/LINUX/2f02c15a5d9.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/2f02c15a5d9.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/2f02c15a5d9.desugared.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/2f02c15a5d9.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/2f02c15a5d9.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/2f02c15a5d9.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/2f02c15a5d9.inferres b/fonda/cpp_testsuite/varBugs/LINUX/2f02c15a5d9.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/2f02c15a5d9.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.clangres b/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.clangres new file mode 100644 index 00000000..8c821689 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.clangres @@ -0,0 +1,7 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.c:31:3: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] + int x = *length; // (6) ERROR + ^~~~~ ~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.c:31:7: warning: Value stored to 'x' during its initialization is never read [deadcode.DeadStores] + int x = *length; // (6) ERROR + ^ ~~~~~~~ +2 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.desugared.clangres new file mode 100644 index 00000000..8f8bb9ee --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.desugared.clangres @@ -0,0 +1,10 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.desugared.c:111:7: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] +if ( __error_8 )// L26 + ^~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.desugared.c:124:1: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] +int __x_9= * __length_7 ;// L31 +^~~~~~~~~~ ~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.desugared.c:124:6: warning: Value stored to '__x_9' during its initialization is never read [deadcode.DeadStores] +int __x_9= * __length_7 ;// L31 + ^~~~~ ~~~~~~~~~~~~~ +3 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.desugared.inferres new file mode 100644 index 00000000..6e4cb4c8 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.desugared.inferres @@ -0,0 +1,33 @@ + +LINUX/30e053248da.desugared.c:124: error: Dead Store + The value written to &__x_9 (type int) is never used. + 122. } + 123. } + 124. int __x_9= * __length_7 ;// L31 + ^ + 125. + 126. return 0 ;// L33 + +LINUX/30e053248da.desugared.c:111: error: Uninitialized Value + The value read from __error_8 was never initialized. + 109. __error_8 = __security_old_inode_init_security_4 ( __length_7 ) ; // L24 + 110. } + 111. if ( __error_8 )// L26 + ^ + 112. { + 113. + +LINUX/30e053248da.desugared.c:120: error: Uninitialized Value + The value read from __error_8 was never initialized. + 118. + 119. * __length_7 = 0 ; // L27 + 120. return __error_8 ;// L28 + ^ + 121. } + 122. } + + +Found 3 issues + Issue Type(ISSUED_TYPE_ID): # + Uninitialized Value(UNINITIALIZED_VALUE): 2 + Dead Store(DEAD_STORE): 1 diff --git a/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.inferres b/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.inferres new file mode 100644 index 00000000..d018973b --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.inferres @@ -0,0 +1,14 @@ + +LINUX/30e053248da.c:31: error: Dead Store + The value written to &x (type int) is never used. + 29. } + 30. + 31. int x = *length; // (6) ERROR + ^ + 32. + 33. return 0; + + +Found 1 issue + Issue Type(ISSUED_TYPE_ID): # + Dead Store(DEAD_STORE): 1 diff --git a/fonda/cpp_testsuite/varBugs/LINUX/36855dcfc98.clangres b/fonda/cpp_testsuite/varBugs/LINUX/36855dcfc98.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/36855dcfc98.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/36855dcfc98.desugared.clangres new file mode 100644 index 00000000..067a7081 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/36855dcfc98.desugared.clangres @@ -0,0 +1,4 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/36855dcfc98.desugared.c:32:2: warning: Value stored to '__wakeup_0' is never read [deadcode.DeadStores] + __wakeup_0 = 0 ; // L6 + ^ ~ +1 warning generated. diff --git a/fonda/cpp_testsuite/varBugs/LINUX/36855dcfc98.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/36855dcfc98.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/36855dcfc98.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/36855dcfc98.inferres b/fonda/cpp_testsuite/varBugs/LINUX/36855dcfc98.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/36855dcfc98.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/472a474c663.clangres b/fonda/cpp_testsuite/varBugs/LINUX/472a474c663.clangres new file mode 100644 index 00000000..c483e27f --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/472a474c663.clangres @@ -0,0 +1,4 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/472a474c663.c:14:8: warning: Dereference of null pointer (loaded from variable 'ptr') [core.NullDereference] + *ptr = 'a'; + ~~~ ^ +1 warning generated. diff --git a/fonda/cpp_testsuite/varBugs/LINUX/472a474c663.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/472a474c663.desugared.clangres new file mode 100644 index 00000000..69fcc4af --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/472a474c663.desugared.clangres @@ -0,0 +1,4 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/472a474c663.desugared.c:87:13: warning: Dereference of null pointer (loaded from variable '__ptr_3') [core.NullDereference] +* __ptr_3 = 'a' ; // L14 + ~~~~~~~ ^ +1 warning generated. diff --git a/fonda/cpp_testsuite/varBugs/LINUX/472a474c663.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/472a474c663.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/472a474c663.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/472a474c663.inferres b/fonda/cpp_testsuite/varBugs/LINUX/472a474c663.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/472a474c663.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.clangres b/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.clangres new file mode 100644 index 00000000..bc21d33f --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.clangres @@ -0,0 +1,10 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.c:216:1: warning: Undefined or garbage value returned to caller [core.uninitialized.UndefReturn] +return __tmp_38 ;// L45 +^~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.c:256:1: warning: Undefined or garbage value returned to caller [core.uninitialized.UndefReturn] +return __expires_47 ;// L60 +^~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.c:300:1: warning: Undefined or garbage value returned to caller [core.uninitialized.UndefReturn] +return __expires_47 ;// L60 +^~~~~~~~~~~~~~~~~~~~ +3 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.inferres new file mode 100644 index 00000000..b3fab957 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.inferres @@ -0,0 +1,32 @@ + +LINUX/51fd36f3fad.desugared.c:216: error: Uninitialized Value + The value read from __tmp_38 was never initialized. + 214. } + 215. } + 216. return __tmp_38 ;// L45 + ^ + 217. } + 218. } + +LINUX/51fd36f3fad.desugared.c:256: error: Uninitialized Value + The value read from __expires_47 was never initialized. + 254. } + 255. if (__static_condition_default_54) { + 256. return __expires_47 ;// L60 + ^ + 257. } + 258. if (__static_condition_default_55) { + +LINUX/51fd36f3fad.desugared.c:300: error: Uninitialized Value + The value read from __expires_47 was never initialized. + 298. } + 299. if (__static_condition_default_60) { + 300. return __expires_47 ;// L60 + ^ + 301. } + 302. if (__static_condition_default_61) { + + +Found 3 issues + Issue Type(ISSUED_TYPE_ID): # + Uninitialized Value(UNINITIALIZED_VALUE): 3 diff --git a/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.inferres b/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.clangres b/fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.desugared.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.inferres b/fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.clangres b/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.clangres new file mode 100644 index 00000000..d62aecde --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.clangres @@ -0,0 +1,7 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.c:12:7: warning: Value stored to 'irq' during its initialization is never read [deadcode.DeadStores] + int irq = *ops; // (4) ERROR + ^~~ ~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.c:12:13: warning: Dereference of null pointer (loaded from variable 'ops') [core.NullDereference] + int irq = *ops; // (4) ERROR + ^~~~ +2 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.desugared.clangres new file mode 100644 index 00000000..b264f7e4 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.desugared.clangres @@ -0,0 +1,7 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.desugared.c:49:6: warning: Value stored to '__irq_2' during its initialization is never read [deadcode.DeadStores] +int __irq_2= * __ops_1 ;// L12 + ^~~~~~~ ~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.desugared.c:49:15: warning: Dereference of null pointer (loaded from variable '__ops_1') [core.NullDereference] +int __irq_2= * __ops_1 ;// L12 + ^~~~~~~~~~ +2 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.desugared.inferres new file mode 100644 index 00000000..a93f28f2 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.desugared.inferres @@ -0,0 +1,14 @@ + +LINUX/6252547b8a7.desugared.c:49: error: Dead Store + The value written to &__irq_2 (type int) is never used. + 47. + 48. + 49. int __irq_2= * __ops_1 ;// L12 + ^ + 50. + 51. } + + +Found 1 issue + Issue Type(ISSUED_TYPE_ID): # + Dead Store(DEAD_STORE): 1 diff --git a/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.inferres b/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.inferres new file mode 100644 index 00000000..3be79683 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.inferres @@ -0,0 +1,24 @@ + +LINUX/6252547b8a7.c:12: error: Dead Store + The value written to &irq (type int) is never used. + 10. void irq_domain_add(int *ops) + 11. { + 12. int irq = *ops; // (4) ERROR + ^ + 13. } + 14. #endif + +LINUX/6252547b8a7.c:25: error: Null Dereference + pointer `ops` last assigned on line 19 could be null and is dereferenced by call to `irq_domain_add()` at line 25, column 3. + 23. #endif + 24. + 25. irq_domain_add(ops); // (3) + ^ + 26. } + 27. #endif + + +Found 2 issues + Issue Type(ISSUED_TYPE_ID): # + Null Dereference(NULL_DEREFERENCE): 1 + Dead Store(DEAD_STORE): 1 diff --git a/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.clangres b/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.desugared.clangres new file mode 100644 index 00000000..e1a9bd4e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.desugared.clangres @@ -0,0 +1,4 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.desugared.c:159:1: warning: Undefined or garbage value returned to caller [core.uninitialized.UndefReturn] +return __v_16 ;// L40 +^~~~~~~~~~~~~~ +1 warning generated. diff --git a/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.desugared.inferres new file mode 100644 index 00000000..1e55e64c --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.desugared.inferres @@ -0,0 +1,14 @@ + +LINUX/63878acfafb.desugared.c:159: error: Uninitialized Value + The value read from __v_16 was never initialized. + 157. __v_16 = __omap3_core_dpll_m2_set_rate_13 ( ) ; // L38 + 158. } + 159. return __v_16 ;// L40 + ^ + 160. } + 161. } + + +Found 1 issue + Issue Type(ISSUED_TYPE_ID): # + Uninitialized Value(UNINITIALIZED_VALUE): 1 diff --git a/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.inferres b/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/6515e48932c.clangres b/fonda/cpp_testsuite/varBugs/LINUX/6515e48932c.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/6515e48932c.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/6515e48932c.desugared.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/6515e48932c.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/6515e48932c.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/6515e48932c.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/6515e48932c.inferres b/fonda/cpp_testsuite/varBugs/LINUX/6515e48932c.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/6515e48932c.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/657e9649e74.clangres b/fonda/cpp_testsuite/varBugs/LINUX/657e9649e74.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/657e9649e74.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/657e9649e74.desugared.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/657e9649e74.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/657e9649e74.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/657e9649e74.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/657e9649e74.inferres b/fonda/cpp_testsuite/varBugs/LINUX/657e9649e74.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/657e9649e74.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.clangres b/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.clangres new file mode 100644 index 00000000..f01d99d3 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.clangres @@ -0,0 +1,4 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.c:24:24: error: use of undeclared identifier 'i2c_master_send' + int codec_hw_write = i2c_master_send; // ERROR + ^ +1 error generated. diff --git a/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.desugared.clangres new file mode 100644 index 00000000..84e906c5 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.desugared.clangres @@ -0,0 +1,7 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.desugared.c:48:6: warning: Value stored to '__codec_hw_write_1' during its initialization is never read [deadcode.DeadStores] +int __codec_hw_write_1= __i2c_master_send_0 ;// L16 + ^~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.desugared.c:70:6: warning: Value stored to '__codec_hw_write_5' during its initialization is never read [deadcode.DeadStores] +int __codec_hw_write_5= __i2c_master_send_0 ;// L24 + ^~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~ +2 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.desugared.inferres new file mode 100644 index 00000000..25f8482c --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.desugared.inferres @@ -0,0 +1,23 @@ + +LINUX/66517915e09.desugared.c:48: error: Dead Store + The value written to &__codec_hw_write_1 (type int) is never used. + 46. + 47. + 48. int __codec_hw_write_1= __i2c_master_send_0 ;// L16 + ^ + 49. + 50. if (__static_condition_default_2) { + +LINUX/66517915e09.desugared.c:70: error: Dead Store + The value written to &__codec_hw_write_5 (type int) is never used. + 68. + 69. + 70. int __codec_hw_write_5= __i2c_master_send_0 ;// L24 + ^ + 71. + 72. if (__static_condition_default_6) { + + +Found 2 issues + Issue Type(ISSUED_TYPE_ID): # + Dead Store(DEAD_STORE): 2 diff --git a/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.inferres b/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.clangres b/fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.clangres new file mode 100644 index 00000000..16dd03f3 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.clangres @@ -0,0 +1,7 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.c:9:5: error: redefinition of 'i2c_dw_init' +int i2c_dw_init()// ERROR + ^ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.c:2:5: note: previous definition is here +int i2c_dw_init() + ^ +1 error generated. diff --git a/fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.desugared.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.inferres b/fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.clangres b/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.clangres new file mode 100644 index 00000000..5c177b9c --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.clangres @@ -0,0 +1,16 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.c:95:9: warning: Potential leak of memory pointed to by '__ptr_11' [unix.Malloc] +if ( ! __ptr_11 )// L39 + ^~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.c:121:10: warning: Value stored to '__dest_12' during its initialization is never read [deadcode.DeadStores] +void * (__dest_12)= ( __mod_9 [ 1 ] );// L46 + ^~~~~~~~~ ~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.c:146:1: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] +free (( __mod_9 [ 1 ] )) ; // L60 +^~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.c:153:1: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] +free (( __mod_9 [ 0 ] )) ; // L63 +^~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.c:182:9: warning: Potential leak of memory pointed to by '__mod_9' [unix.Malloc] +return __err_10 ;// L69 + ^~~~~~~~ +5 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.inferres new file mode 100644 index 00000000..6f2678eb --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.inferres @@ -0,0 +1,14 @@ + +LINUX/6e2b75740be.desugared.c:121: error: Dead Store + The value written to &__dest_12 (type void*) is never used. + 119. + 120. + 121. void * (__dest_12)= ( __mod_9 [ 1 ] );// L46 + ^ + 122. + 123. __static_type_error("type error : no valid expression"); // L47 + + +Found 1 issue + Issue Type(ISSUED_TYPE_ID): # + Dead Store(DEAD_STORE): 1 diff --git a/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.inferres b/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/76baeebf7df.clangres b/fonda/cpp_testsuite/varBugs/LINUX/76baeebf7df.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/76baeebf7df.inferres b/fonda/cpp_testsuite/varBugs/LINUX/76baeebf7df.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/76baeebf7df.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.clangres b/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.clangres new file mode 100644 index 00000000..72b0cc11 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.clangres @@ -0,0 +1,10 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.c:8:7: warning: Value stored to 'x' during its initialization is never read [deadcode.DeadStores] + int x = *inode; // ERROR (7) + ^ ~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.c:39:3: warning: Value stored to 'driver_data' is never read [deadcode.DeadStores] + driver_data = &some_int; + ^ ~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.c:44:3: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] + tty_release(driver_data); // (3) + ^~~~~~~~~~~~~~~~~~~~~~~~ +3 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.desugared.clangres new file mode 100644 index 00000000..948ba074 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.desugared.clangres @@ -0,0 +1,10 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.desugared.c:77:6: warning: Value stored to '__x_3' during its initialization is never read [deadcode.DeadStores] +int __x_3= * __inode_2 ;// L8 + ^~~~~ ~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.desugared.c:170:2: warning: Value stored to '__driver_data_15' is never read [deadcode.DeadStores] + __driver_data_15 = & __some_int_1 ; // L39 + ^ ~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.desugared.c:175:2: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] + __tty_release_14 ( __driver_data_15 ) ; // L44 + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +3 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.desugared.inferres new file mode 100644 index 00000000..d8b7481d --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.desugared.inferres @@ -0,0 +1,23 @@ + +LINUX/7acf6cd80b2.desugared.c:77: error: Dead Store + The value written to &__x_3 (type int) is never used. + 75. + 76. + 77. int __x_3= * __inode_2 ;// L8 + ^ + 78. + 79. } + +LINUX/7acf6cd80b2.desugared.c:170: error: Dead Store + The value written to &__driver_data_15 (type int*) is never used. + 168. } + 169. } + 170. __driver_data_15 = & __some_int_1 ; // L39 + ^ + 171. return 0 ;// L41 + 172. + + +Found 2 issues + Issue Type(ISSUED_TYPE_ID): # + Dead Store(DEAD_STORE): 2 diff --git a/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.inferres b/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.inferres new file mode 100644 index 00000000..4d015dcf --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.inferres @@ -0,0 +1,23 @@ + +LINUX/7acf6cd80b2.c:8: error: Dead Store + The value written to &x (type int) is never used. + 6. { + 7. #ifdef CONFIG_DEVPTS_MULTIPLE_INSTANCES + 8. int x = *inode; // ERROR (7) + ^ + 9. #endif + 10. } + +LINUX/7acf6cd80b2.c:39: error: Dead Store + The value written to &driver_data (type int*) is never used. + 37. } + 38. + 39. driver_data = &some_int; + ^ + 40. + 41. return 0; + + +Found 2 issues + Issue Type(ISSUED_TYPE_ID): # + Dead Store(DEAD_STORE): 2 diff --git a/fonda/cpp_testsuite/varBugs/LINUX/7c6048b7c83.clangres b/fonda/cpp_testsuite/varBugs/LINUX/7c6048b7c83.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/7c6048b7c83.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/7c6048b7c83.desugared.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/7c6048b7c83.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/7c6048b7c83.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/7c6048b7c83.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/7c6048b7c83.inferres b/fonda/cpp_testsuite/varBugs/LINUX/7c6048b7c83.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/7c6048b7c83.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/809e660f438.clangres b/fonda/cpp_testsuite/varBugs/LINUX/809e660f438.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/809e660f438.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/809e660f438.desugared.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/809e660f438.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/809e660f438.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/809e660f438.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/809e660f438.inferres b/fonda/cpp_testsuite/varBugs/LINUX/809e660f438.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/809e660f438.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/8c8296223f3.clangres b/fonda/cpp_testsuite/varBugs/LINUX/8c8296223f3.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/8c8296223f3.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/8c8296223f3.desugared.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/8c8296223f3.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/8c8296223f3.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/8c8296223f3.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/8c8296223f3.inferres b/fonda/cpp_testsuite/varBugs/LINUX/8c8296223f3.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/8c8296223f3.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/91ea8207168.clangres b/fonda/cpp_testsuite/varBugs/LINUX/91ea8207168.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/91ea8207168.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/91ea8207168.desugared.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/91ea8207168.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/91ea8207168.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/91ea8207168.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/91ea8207168.inferres b/fonda/cpp_testsuite/varBugs/LINUX/91ea8207168.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/91ea8207168.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.clangres b/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.desugared.clangres new file mode 100644 index 00000000..309f2384 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.desugared.clangres @@ -0,0 +1,7 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.desugared.c:284:15: warning: The left operand of '!=' is a garbage value [core.UndefinedBinaryOperatorResult] +( ( __r_236 != 0xff ) ? ( void ) ( 0 ) : ____assert_fail_4 ("r != 0xff","/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.c",19, __PRETTY_FUNCTION__ ) ) ; // L19:L91 + ~~~~~~~ ^ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.desugared.c:289:1: warning: Undefined or garbage value returned to caller [core.uninitialized.UndefReturn] +return ( int ) __r_236 ;// L21 +^~~~~~~~~~~~~~~~~~~~~~~~~ +2 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.desugared.inferres new file mode 100644 index 00000000..c30b7acc --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.desugared.inferres @@ -0,0 +1,23 @@ + +LINUX/ae249b5fa27.desugared.c:284: error: Uninitialized Value + The value read from __r_236 was never initialized. + 282. } + 283. if (__static_condition_default_245) { + 284. ( ( __r_236 != 0xff ) ? ( void ) ( 0 ) : ____assert_fail_4 ("r != 0xff","/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.c",19, __PRETTY_FUNCTION__ ) ) ; // L19:L91 + ^ + 285. } + 286. if (__static_condition_default_246) { + +LINUX/ae249b5fa27.desugared.c:289: error: Uninitialized Value + The value read from __r_236 was never initialized. + 287. __static_type_error("type error") ; // L19:L91 + 288. } + 289. return ( int ) __r_236 ;// L21 + ^ + 290. } + 291. } + + +Found 2 issues + Issue Type(ISSUED_TYPE_ID): # + Uninitialized Value(UNINITIALIZED_VALUE): 2 diff --git a/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.inferres b/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/bc8cec0dff0.clangres b/fonda/cpp_testsuite/varBugs/LINUX/bc8cec0dff0.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/bc8cec0dff0.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/bc8cec0dff0.desugared.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/bc8cec0dff0.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/bc8cec0dff0.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/bc8cec0dff0.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/bc8cec0dff0.inferres b/fonda/cpp_testsuite/varBugs/LINUX/bc8cec0dff0.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/bc8cec0dff0.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/c708c57e247.clangres b/fonda/cpp_testsuite/varBugs/LINUX/c708c57e247.clangres new file mode 100644 index 00000000..58816526 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/c708c57e247.clangres @@ -0,0 +1,4 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/c708c57e247.c:18:28: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] + *((__u64 *)parm_block) ^= *((__u64 *)buf+i*8); // ERROR + ^ ~~~~~~~~~~~~~~~~~~~ +1 warning generated. diff --git a/fonda/cpp_testsuite/varBugs/LINUX/c708c57e247.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/c708c57e247.desugared.clangres new file mode 100644 index 00000000..7e75bafb --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/c708c57e247.desugared.clangres @@ -0,0 +1,4 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/c708c57e247.desugared.c:74:41: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] +* ( ( ____u64_0 * ) __parm_block_1 ) ^= * ( ( ____u64_0 * ) __buf_3 + __i_4 * 8 ) ; // L18 + ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +1 warning generated. diff --git a/fonda/cpp_testsuite/varBugs/LINUX/c708c57e247.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/c708c57e247.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/c708c57e247.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/c708c57e247.inferres b/fonda/cpp_testsuite/varBugs/LINUX/c708c57e247.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/c708c57e247.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d530db0db90.clangres b/fonda/cpp_testsuite/varBugs/LINUX/d530db0db90.clangres new file mode 100644 index 00000000..a7186cf9 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/d530db0db90.clangres @@ -0,0 +1,4 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/d530db0db90.c:18:25: error: invalid operands to binary expression ('void' and 'int') + if (*VORTEX_PCI(vp) < 0) // ERROR + ~~~~~~~~~~~~~~~ ^ ~ +1 error generated. diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d530db0db90.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/d530db0db90.desugared.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d530db0db90.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/d530db0db90.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/d530db0db90.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d530db0db90.inferres b/fonda/cpp_testsuite/varBugs/LINUX/d530db0db90.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.clangres b/fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.desugared.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.inferres b/fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d6c7e113959.clangres b/fonda/cpp_testsuite/varBugs/LINUX/d6c7e113959.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d6c7e113959.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/d6c7e113959.desugared.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d6c7e113959.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/d6c7e113959.desugared.inferres new file mode 100644 index 00000000..9d3b7228 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/d6c7e113959.desugared.inferres @@ -0,0 +1,14 @@ + +LINUX/d6c7e113959.desugared.c:45: error: Dead Store + The value written to &__pdata_0 (type int*) is never used. + 43. + 44. + 45. * __pdata_0 ++ ; // L5 + ^ + 46. return 0 ;// L6 + 47. } + + +Found 1 issue + Issue Type(ISSUED_TYPE_ID): # + Dead Store(DEAD_STORE): 1 diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d6c7e113959.inferres b/fonda/cpp_testsuite/varBugs/LINUX/d6c7e113959.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/d6c7e113959.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.clangres b/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.clangres new file mode 100644 index 00000000..25e6ee53 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.clangres @@ -0,0 +1,4 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.c:30:7: warning: Value stored to 'reserved' is never read [deadcode.DeadStores] + reserved = 1; + ^ ~ +1 warning generated. diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.desugared.c index 926397b0..547b9620 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.desugared.c @@ -1349,7 +1349,7 @@ for ( __i_804 = 0 ; __i_804 < 10 ; __i_804 ++ )// L21 __static_type_error("type error : no valid expression"); // L22 if (__static_condition_default_810) { -if ( __rand_465 ( ) % 2 )// L23 +if ( rand( ) % 2 )// L23 { { @@ -1379,7 +1379,7 @@ for ( __i_805 = 0 ; __i_805 < 10 ; __i_805 ++ )// L21 __static_type_error("type error : no valid expression"); // L22 if (__static_condition_default_812) { -if ( __rand_465 ( ) % 2 )// L23 +if ( rand( ) % 2 )// L23 { { diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.desugared.clangres new file mode 100644 index 00000000..73c83b83 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.desugared.clangres @@ -0,0 +1,4 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.desugared.c:1398:2: warning: Value stored to '__reserved_803' is never read [deadcode.DeadStores] + __reserved_803 = 1 ; // L30 + ^ ~ +1 warning generated. diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.desugared.inferres new file mode 100644 index 00000000..282a3a4c --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.desugared.inferres @@ -0,0 +1,14 @@ + +LINUX/d7e9711760a.desugared.c:1398: error: Dead Store + The value written to &__reserved_803 (type int) is never used. + 1396. if ( __inode_get_rsv_space_802 ( ) > 0 )// L29 + 1397. { + 1398. __reserved_803 = 1 ; // L30 + ^ + 1399. } + 1400. __static_type_error("type error : no valid expression"); // L33 + + +Found 1 issue + Issue Type(ISSUED_TYPE_ID): # + Dead Store(DEAD_STORE): 1 diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.inferres b/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.inferres new file mode 100644 index 00000000..051967c6 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.inferres @@ -0,0 +1,14 @@ + +LINUX/d7e9711760a.c:30: error: Dead Store + The value written to &reserved (type int) is never used. + 28. #ifdef CONFIG_QUOTA_DEBUG + 29. if (inode_get_rsv_space() > 0) // (3) + 30. reserved = 1; + ^ + 31. #endif + 32. + + +Found 1 issue + Issue Type(ISSUED_TYPE_ID): # + Dead Store(DEAD_STORE): 1 diff --git a/fonda/cpp_testsuite/varBugs/LINUX/e1fbd9210d5.clangres b/fonda/cpp_testsuite/varBugs/LINUX/e1fbd9210d5.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/e1fbd9210d5.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/e1fbd9210d5.desugared.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/e1fbd9210d5.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/e1fbd9210d5.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/e1fbd9210d5.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/e1fbd9210d5.inferres b/fonda/cpp_testsuite/varBugs/LINUX/e1fbd9210d5.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/e1fbd9210d5.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.clangres b/fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.clangres new file mode 100644 index 00000000..308bd0b4 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.clangres @@ -0,0 +1,4 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.c:17:3: warning: Undefined or garbage value returned to caller [core.uninitialized.UndefReturn] + return err; // ERROR (3) + ^~~~~~~~~~ +1 warning generated. diff --git a/fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.desugared.clangres new file mode 100644 index 00000000..67dfa0da --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.desugared.clangres @@ -0,0 +1,4 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.desugared.c:77:1: warning: Undefined or garbage value returned to caller [core.uninitialized.UndefReturn] +return __err_1 ;// L17 +^~~~~~~~~~~~~~~ +1 warning generated. diff --git a/fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.desugared.inferres new file mode 100644 index 00000000..4c906bd1 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.desugared.inferres @@ -0,0 +1,14 @@ + +LINUX/e39363a9def.desugared.c:77: error: Uninitialized Value + The value read from __err_1 was never initialized. + 75. put_0: + 76. { + 77. return __err_1 ;// L17 + ^ + 78. } + 79. } + + +Found 1 issue + Issue Type(ISSUED_TYPE_ID): # + Uninitialized Value(UNINITIALIZED_VALUE): 1 diff --git a/fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.inferres b/fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.inferres new file mode 100644 index 00000000..35ee0b4d --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.inferres @@ -0,0 +1,14 @@ + +LINUX/e39363a9def.c:17: error: Uninitialized Value + The value read from err was never initialized. + 15. + 16. put: + 17. return err; // ERROR (3) + ^ + 18. } + 19. #endif + + +Found 1 issue + Issue Type(ISSUED_TYPE_ID): # + Uninitialized Value(UNINITIALIZED_VALUE): 1 diff --git a/fonda/cpp_testsuite/varBugs/LINUX/e67bc51e574.clangres b/fonda/cpp_testsuite/varBugs/LINUX/e67bc51e574.clangres new file mode 100644 index 00000000..32db88f4 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/e67bc51e574.clangres @@ -0,0 +1,7 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/e67bc51e574.c:11:20: error: too many arguments to function call, expected 0, have 1 + trace_dump_stack(0); // ERROR + ~~~~~~~~~~~~~~~~ ^ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/e67bc51e574.c:7:20: note: 'trace_dump_stack' declared here +static inline void trace_dump_stack(void) { } + ^ +1 error generated. diff --git a/fonda/cpp_testsuite/varBugs/LINUX/e67bc51e574.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/e67bc51e574.desugared.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/e67bc51e574.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/e67bc51e574.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/e67bc51e574.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/e67bc51e574.inferres b/fonda/cpp_testsuite/varBugs/LINUX/e67bc51e574.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.clangres b/fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.desugared.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.inferres b/fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.clangres b/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.clangres new file mode 100644 index 00000000..efb2a1df --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.clangres @@ -0,0 +1,4 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.c:44:11: warning: Value stored to 'rt' during its initialization is never read [deadcode.DeadStores] + char *rt =(char *) dst; // (3) + ^~ ~~~~~~~~~~~~ +1 warning generated. diff --git a/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.desugared.clangres new file mode 100644 index 00000000..551112f6 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.desugared.clangres @@ -0,0 +1,7 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.desugared.c:1495:3: warning: Dereference of null pointer (loaded from variable '__rt_814') [core.NullDereference] +( ( * __rt_814 ) ++ ) ; // L23:L45 + ^~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.desugared.c:1516:3: warning: Dereference of null pointer (loaded from variable '__rt_814') [core.NullDereference] +( ( * __rt_814 ) ++ ) ; // L23:L45 + ^~~~~~~~~~~~~~~~~~~ +2 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.inferres b/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.inferres new file mode 100644 index 00000000..2956df92 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.inferres @@ -0,0 +1,14 @@ + +LINUX/ee3f34e8572.c:44: error: Dead Store + The value written to &rt (type char*) is never used. + 42. } + 43. if (!IS_ERR(dst)) { + 44. char *rt =(char *) dst; // (3) + ^ + 45. SCTP_DEBUG_PRINTK(rt); // (4) ERROR + 46. } + + +Found 1 issue + Issue Type(ISSUED_TYPE_ID): # + Dead Store(DEAD_STORE): 1 diff --git a/fonda/cpp_testsuite/varBugs/LINUX/f3d83e24154.clangres b/fonda/cpp_testsuite/varBugs/LINUX/f3d83e24154.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/f3d83e24154.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/f3d83e24154.desugared.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/f3d83e24154.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/f3d83e24154.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/f3d83e24154.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/f3d83e24154.inferres b/fonda/cpp_testsuite/varBugs/LINUX/f3d83e24154.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/f3d83e24154.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/f48ec1d7885.clangres b/fonda/cpp_testsuite/varBugs/LINUX/f48ec1d7885.clangres new file mode 100644 index 00000000..aee68bad --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/f48ec1d7885.clangres @@ -0,0 +1,4 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/f48ec1d7885.c:9:11: error: use of undeclared identifier 'CFQ_WEIGHT_DEFAULT' + d = d * CFQ_WEIGHT_DEFAULT; // ERROR + ^ +1 error generated. diff --git a/fonda/cpp_testsuite/varBugs/LINUX/f48ec1d7885.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/f48ec1d7885.desugared.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/f48ec1d7885.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/f48ec1d7885.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/f48ec1d7885.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/f48ec1d7885.inferres b/fonda/cpp_testsuite/varBugs/LINUX/f48ec1d7885.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/f7ab9b407b3.clangres b/fonda/cpp_testsuite/varBugs/LINUX/f7ab9b407b3.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/f7ab9b407b3.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/f7ab9b407b3.desugared.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/f7ab9b407b3.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/f7ab9b407b3.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/f7ab9b407b3.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/f7ab9b407b3.inferres b/fonda/cpp_testsuite/varBugs/LINUX/f7ab9b407b3.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/f7ab9b407b3.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/2d22902d080.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/2d22902d080.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/2d22902d080.desugared.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/2d22902d080.desugared.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/2d22902d080.desugared.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/2d22902d080.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/2d22902d080.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/2d22902d080.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/2d22902d080.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/2d22902d080.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/2db384a21d6.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/2db384a21d6.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/2db384a21d6.desugared.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/2db384a21d6.desugared.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/2db384a21d6.desugared.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/2db384a21d6.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/2db384a21d6.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/2db384a21d6.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/2db384a21d6.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/2db384a21d6.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/30248214c7f.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/30248214c7f.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/30248214c7f.desugared.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/30248214c7f.desugared.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/30248214c7f.desugared.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/30248214c7f.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/30248214c7f.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/30248214c7f.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/30248214c7f.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/30248214c7f.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.clangres new file mode 100644 index 00000000..0e229ac3 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.clangres @@ -0,0 +1,35 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.c:7:3: error: unknown type name 'int16_t'; did you mean '__int16_t'? + int16_t xx=x*10; + ^~~~~~~ + __int16_t +/usr/include/x86_64-linux-gnu/bits/types.h:38:26: note: '__int16_t' declared here +typedef signed short int __int16_t; + ^ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.c:8:3: error: use of undeclared identifier 'conv' + conv[0]=(xx>=0)?'+':'-'; + ^ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.c:10:3: error: use of undeclared identifier 'conv' + conv[1]=(xx/10000)%10+'0'; + ^ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.c:11:3: error: use of undeclared identifier 'conv' + conv[2]=(xx/1000)%10+'0'; + ^ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.c:12:3: error: use of undeclared identifier 'conv' + conv[3]=(xx/100)%10+'0'; + ^ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.c:13:3: error: use of undeclared identifier 'conv' + conv[4]=(xx/10)%10+'0'; + ^ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.c:14:3: error: use of undeclared identifier 'conv' + conv[5]='.'; + ^ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.c:15:3: error: use of undeclared identifier 'conv' + conv[6]=(xx)%10+'0'; + ^ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.c:16:3: error: use of undeclared identifier 'conv' + conv[7]=0; + ^ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.c:17:10: error: use of undeclared identifier 'conv' + return conv; + ^ +10 errors generated. diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.desugared.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.desugared.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.desugared.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.clangres new file mode 100644 index 00000000..07e773b3 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.clangres @@ -0,0 +1,9 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.c:1:10: error: 'util/delay.h' file not found with include; use "quotes" instead +#include // http://download.savannah.gnu.org/releases/avr-libc/binary-releases/ for the util/delay library + ^~~~~~~~~~~~~~ + "util/delay.h" +In file included from /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.c:1: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/util/delay.h:45:10: fatal error: 'util/delay_basic.h' file not found +#include + ^~~~~~~~~~~~~~~~~~~~ +2 errors generated. diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.desugared.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.desugared.clangres new file mode 100644 index 00000000..03b03eed --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.desugared.clangres @@ -0,0 +1,7 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.desugared.c:1914:55: error: invalid output constraint '=w' in asm +__asm__ volatile ( "1: sbiw %0,1""\n\t""brne 1b" : "=w" ( ____count_120 ) : "0" ( ____count_120 ) ); + ^ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.desugared.c:1930:55: error: invalid output constraint '=w' in asm +__asm__ volatile ( "1: sbiw %0,1""\n\t""brne 1b" : "=w" ( ____count_120 ) : "0" ( ____count_120 ) ); + ^ +2 errors generated. diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.desugared.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.desugared.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/7336e6df070.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/7336e6df070.clangres new file mode 100644 index 00000000..d16c7169 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/7336e6df070.clangres @@ -0,0 +1,8 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/7336e6df070.c:44:8: error: use of undeclared identifier 'old_z_max_endstop'; did you mean 'old_z2_max_endstop'? + if (!old_z_max_endstop && !locked_z_motor) WRITE; + ^~~~~~~~~~~~~~~~~ + old_z2_max_endstop +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/7336e6df070.c:37:13: note: 'old_z2_max_endstop' declared here +static bool old_z2_max_endstop = false; + ^ +1 error generated. diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/7336e6df070.desugared.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/7336e6df070.desugared.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/7336e6df070.desugared.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/7336e6df070.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/7336e6df070.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/7336e6df070.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/7336e6df070.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.clangres new file mode 100644 index 00000000..5aebd26c --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.clangres @@ -0,0 +1,10 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.c:15:23: error: too many arguments to function call, expected single argument 'message', have 2 arguments + lcd_setstatus(time, true); // ERROR + ~~~~~~~~~~~~~ ^~~~ +/usr/lib/llvm-11/lib/clang/11.1.0/include/stdbool.h:16:14: note: expanded from macro 'true' +#define true 1 + ^ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.c:7:6: note: 'lcd_setstatus' declared here +void lcd_setstatus(const char* message) {}; + ^ +1 error generated. diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.desugared.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.desugared.clangres new file mode 100644 index 00000000..0636af1c --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.desugared.clangres @@ -0,0 +1,4 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.desugared.c:81:7: warning: Value stored to '__time_7' during its initialization is never read [deadcode.DeadStores] +char __time_7[30]= "time_here";// L14 + ^~~~~~~~ ~~~~~~~~~~~ +1 warning generated. diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.desugared.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.desugared.inferres new file mode 100644 index 00000000..cf135195 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.desugared.inferres @@ -0,0 +1,14 @@ + +MARLIN/831016b09f7.desugared.c:81: error: Dead Store + The value written to &__time_7 (type char[30*1]) is never used. + 79. + 80. + 81. char __time_7[30]= "time_here";// L14 + ^ + 82. + 83. __static_type_error("type error : no valid expression"); // L15 + + +Found 1 issue + Issue Type(ISSUED_TYPE_ID): # + Dead Store(DEAD_STORE): 1 diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.clangres new file mode 100644 index 00000000..eb034fa8 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.clangres @@ -0,0 +1,4 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.c:16:20: error: called object type 'void' is not a function or function pointer + SERIAL_ECHO_START(" PIDDEBUG "); // ERROR + ~~~~~~~~~~~~~~~~~^ +1 error generated. diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.clangres new file mode 100644 index 00000000..1a58c3bb --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.clangres @@ -0,0 +1,7 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.c:94:2: warning: Value stored to '__pid_output_4' is never read [deadcode.DeadStores] + __pid_output_4 = 0 ; // L19 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.c:138:2: warning: Value stored to '__pid_output_4' is never read [deadcode.DeadStores] + __pid_output_4 = 0 ; // L19 + ^ ~ +2 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.inferres new file mode 100644 index 00000000..188bb775 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.inferres @@ -0,0 +1,41 @@ + +MARLIN/8c4377dd635.desugared.c:72: error: Dead Store + The value written to &__pid_output_4 (type float) is never used. + 70. + 71. + 72. float __pid_output_4= 1;// L11 + ^ + 73. + 74. int __e_5= 0;// L12 + +MARLIN/8c4377dd635.desugared.c:89: error: Dead Store + The value written to &__pid_output_4 (type float) is never used. + 87. + 88. + 89. float __pid_output_4= 1;// L11 + ^ + 90. + 91. int __e_5= 0;// L12 + +MARLIN/8c4377dd635.desugared.c:116: error: Dead Store + The value written to &__pid_output_4 (type float) is never used. + 114. + 115. + 116. float __pid_output_4= 1;// L11 + ^ + 117. + 118. int __e_5= 0;// L12 + +MARLIN/8c4377dd635.desugared.c:133: error: Dead Store + The value written to &__pid_output_4 (type float) is never used. + 131. + 132. + 133. float __pid_output_4= 1;// L11 + ^ + 134. + 135. int __e_5= 0;// L12 + + +Found 4 issues + Issue Type(ISSUED_TYPE_ID): # + Dead Store(DEAD_STORE): 4 diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.clangres new file mode 100644 index 00000000..88e1cde3 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.clangres @@ -0,0 +1,10 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.c:200:6: warning: Value stored to '__len_217' during its initialization is never read [deadcode.DeadStores] +int __len_217= __strlen_108 ( __prepend_216 ) + 13 + 1;// L10 + ^~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.c:202:6: warning: Value stored to '__len_218' during its initialization is never read [deadcode.DeadStores] +int __len_218= __strlen_109 ( __prepend_216 ) + 13 + 1;// L10 + ^~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.c:212:7: warning: Value stored to '__lfilename_221' during its initialization is never read [deadcode.DeadStores] +char __lfilename_221[13]= "FOLDERNAME12\0";// L15 + ^~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~ +3 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.inferres new file mode 100644 index 00000000..152d7751 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.inferres @@ -0,0 +1,32 @@ + +MARLIN/a7fc1f83c81.desugared.c:200: error: Dead Store + The value written to &__len_217 (type int) is never used. + 198. + 199. + 200. int __len_217= __strlen_108 ( __prepend_216 ) + 13 + 1;// L10 + ^ + 201. + 202. int __len_218= __strlen_109 ( __prepend_216 ) + 13 + 1;// L10 + +MARLIN/a7fc1f83c81.desugared.c:202: error: Dead Store + The value written to &__len_218 (type int) is never used. + 200. int __len_217= __strlen_108 ( __prepend_216 ) + 13 + 1;// L10 + 201. + 202. int __len_218= __strlen_109 ( __prepend_216 ) + 13 + 1;// L10 + ^ + 203. + 204. if (__static_condition_default_219) { + +MARLIN/a7fc1f83c81.desugared.c:212: error: Dead Store + The value written to &__lfilename_221 (type char[13*1]) is never used. + 210. } + 211. + 212. char __lfilename_221[13]= "FOLDERNAME12\0";// L15 + ^ + 213. + 214. __static_type_error("type error : no valid expression"); // L19 + + +Found 3 issues + Issue Type(ISSUED_TYPE_ID): # + Dead Store(DEAD_STORE): 3 diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/b8e79dce897.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/b8e79dce897.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/b8e79dce897.desugared.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/b8e79dce897.desugared.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/b8e79dce897.desugared.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/b8e79dce897.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/b8e79dce897.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/b8e79dce897.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/b8e79dce897.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/b8e79dce897.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.clangres new file mode 100644 index 00000000..13a6e406 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.clangres @@ -0,0 +1,4 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.c:24:7: warning: Value stored to 'xGridSpacing' during its initialization is never read [deadcode.DeadStores] + int xGridSpacing = left_probe_bed_position; + ^~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~ +1 warning generated. diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.desugared.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.desugared.clangres new file mode 100644 index 00000000..b73337f1 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.desugared.clangres @@ -0,0 +1,4 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.desugared.c:48:6: warning: Value stored to '__xGridSpacing_1' during its initialization is never read [deadcode.DeadStores] +int __xGridSpacing_1= __left_probe_bed_position_0 ;// L24 + ^~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~ +1 warning generated. diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.desugared.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.desugared.inferres new file mode 100644 index 00000000..24cb0fd6 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.desugared.inferres @@ -0,0 +1,14 @@ + +MARLIN/e30bfedce4d.desugared.c:48: error: Dead Store + The value written to &__xGridSpacing_1 (type int) is never used. + 46. int __left_probe_bed_position_0= 15;// L21 + 47. + 48. int __xGridSpacing_1= __left_probe_bed_position_0 ;// L24 + ^ + 49. + 50. } + + +Found 1 issue + Issue Type(ISSUED_TYPE_ID): # + Dead Store(DEAD_STORE): 1 diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.inferres new file mode 100644 index 00000000..fc454a92 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.inferres @@ -0,0 +1,14 @@ + +MARLIN/e30bfedce4d.c:24: error: Dead Store + The value written to &xGridSpacing (type int) is never used. + 22. + 23. #ifdef AUTO_BED_LEVELING_GRID + 24. int xGridSpacing = left_probe_bed_position; + ^ + 25. #else + 26. float z_at_pt_1, z_at_pt_2, z_at_pt_3; + + +Found 1 issue + Issue Type(ISSUED_TYPE_ID): # + Dead Store(DEAD_STORE): 1 diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/f87c80889fe.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/f87c80889fe.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/f87c80889fe.desugared.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/f87c80889fe.desugared.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/f87c80889fe.desugared.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/f87c80889fe.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/f87c80889fe.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/f87c80889fe.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/f87c80889fe.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/f87c80889fe.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/fc3c76fc164.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/fc3c76fc164.clangres new file mode 100644 index 00000000..eba9bceb --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/fc3c76fc164.clangres @@ -0,0 +1,5 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/fc3c76fc164.c:11:8: error: must use 'enum' tag to refer to type 'TRState' +static TRState thermal_runaway_bed_state_machine = { TRInactive, TRInactive, TRInactive, TRInactive }; + ^ + enum +1 error generated. diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/fc3c76fc164.desugared.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/fc3c76fc164.desugared.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/fc3c76fc164.desugared.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/fc3c76fc164.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/fc3c76fc164.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/fc3c76fc164.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/fc3c76fc164.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/fdac8f6cece.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/fdac8f6cece.clangres new file mode 100644 index 00000000..32676dcf --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/fdac8f6cece.clangres @@ -0,0 +1,4 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/fdac8f6cece.c:9:21: error: use of undeclared identifier 'Z_PROBE_OFFSET_FROM_EXTRUDER' + zprobe_zoffset = -Z_PROBE_OFFSET_FROM_EXTRUDER; // ERROR + ^ +1 error generated. diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/fdac8f6cece.desugared.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/fdac8f6cece.desugared.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/fdac8f6cece.desugared.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/fdac8f6cece.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/fdac8f6cece.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/fdac8f6cece.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/fdac8f6cece.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/a.out b/fonda/cpp_testsuite/varBugs/a.out new file mode 100755 index 0000000000000000000000000000000000000000..bd1fabfdcb66676c5ef0a98869754ffb0a1d929a GIT binary patch literal 8376 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 QaqID4r2h|4gdfE literal 0 HcmV?d00001 diff --git a/fonda/cpp_testsuite/varBugs/configs.json b/fonda/cpp_testsuite/varBugs/configs.json index 4bb8b3e4..a9628f63 100644 --- a/fonda/cpp_testsuite/varBugs/configs.json +++ b/fonda/cpp_testsuite/varBugs/configs.json @@ -1 +1 @@ -{"/APACHE/0900800fbab.c": "-U HAVE_SYSLOG", "/APACHE/0ddfa412ee9.c": "-U HAVE_TLS_ALPN", "/APACHE/1a3c8e3d840.c": "-U HAVE_TLSV1_X", "/APACHE/1b48bb3c1af.c": "-D APU_HAS_LDAP -D APR_HAS_SHARED_MEMORY", "/APACHE/1f46088b38d.c": "-U SIGPIPE", "/APACHE/2a6cbfa00e0.c": "-U SHARED_MODULE", "/APACHE/3407eccc321.c": "-D __STDC_VERSION__=199902L -D APLOG_MAX_LOGLEVEL", "/APACHE/35ae2e259e4.c": "-D HAVE_ECC", "/APACHE/4202d5fee3e.c": "-D APR_HASD_LDAP -D APR_HAS_LDAP_NETSCAPE_SSL", "/APACHE/4945115b2e7.c": "-D DEBUG_CGI", "/APACHE/56d9881993f.c": "-U APR_HAS_SENDFILE", "/APACHE/581635e28f1.c": "-U APR_HAVE_IPV6", "/APACHE/6338509eb37.c": "-U HAVE_FIPS", "/APACHE/664e3aac6dd.c": "-D WIN32", "/APACHE/9327311d30f.c": "-D APR_HAS_SHARED_MEMORY", "/APACHE/97ecbec1237.c": "-D APU_HAS_LDAP -D APR_HAS_SHARED_MEMORY", "/APACHE/b833f064550.c": "-U HAVE_TIMES", "/APACHE/bbeb0516cf0.c": "-D APR_FILES_AS_SOCKETS", "/APACHE/c76df14dfb4.c": "-D CROSS_COMPILE -D OS2", "/APACHE/d0040a07aec.c": "-D RLIMIT_NPROC -U RLIMIT_CPU -U RLIMIT_DATA -U RLIMIT_VMEM -U RLIMIT_AS", "/APACHE/d05e574ec26.c": "-D APR_HAS_SHARED_MEMORY", "/APACHE/dbafef17dd1.c": "-D HAS_APACHE_REGEX_LIB", "/BUSYBOX/0301ffab3d9.c": "-U EXT2FS_ENABLE_SWAPFS", "/BUSYBOX/061fd0a353e.c": "-D CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF -U CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF", "/BUSYBOX/192c35f6eb2.c": "-U CONFIG_FEATURE_REMOTE_LOG", "/BUSYBOX/199501f2a00.c": "-U ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS", "/BUSYBOX/1b487ea8a69.c": "-D ENABLE_SELINUX -U ENABLE_FEATURE_STAT_FORMAT", "/BUSYBOX/2631486f1bf.c": "-D CONFIG_FEATURE_LS_SORTFILES -D CONFIG_FEATURE_LS_RECURSIVE", "/BUSYBOX/5275b1e49f6.c": "-U CONFIG_FEATURE_INSMOD_VERSION_CHECKING", "/BUSYBOX/5cd6461b6fb.c": "-D CONFIG_LFS -D CONFIG_FEATURE_HTTPD_CGI", "/BUSYBOX/95755181b82.c": "-D BB_MMU -D ENABLE_FEATURE_HTTPD_GZIP -D ENABLE_FEATURE_HTTPD_BASIC_AUTH", "/BUSYBOX/b273d665181.c": "-D BB_FEATURE_LS_FILETYPES -U BB_FEATURE_LS_USERNAME", "/BUSYBOX/b62bd7b261b.c": "-D ENABLE_FEATURE_MDEV_CONF -D ENABLE_FEATURE_MDEV_RENAME -U ENABLE_FEATURE_MDEV_RENAME_REGEXP", "/BUSYBOX/b7ebc61b54f.c": "-U CONFIG_FEATURE_LS_TIMESTAMPS", "/BUSYBOX/bc0ffc0e971.c": "-D ENABLE_FEATURE_CLEAN_UP", "/BUSYBOX/cc3f20b9bdf.c": "", "/BUSYBOX/cf1f2ace391.c": "-D ENABLE_DEBUG_INIT", "/BUSYBOX/df7b6577c6a.c": "-U ENABLE_DESKTOP", "/BUSYBOX/ebee301c8b0.c": "-D BB_CP_MV -U BB_AR", "/BUSYBOX/eef2317b9f5.c": "-D CONFIG_FEATURE_CLEAN_UP", "/LINUX/0988c4c7fb5.c": "-U CONFIG_VLAN_8021Q", "/LINUX/0dc77b6dabe.c": "-D CONFIG_ANDROID -D CONFIG_EXTCON", "/LINUX/0f8f8094d28.c": "-D CONFIG_LOCKDEP -D CONFIG_SLAB -U CONFIG_SLOB -D CONFIG_PPC_256K_PAGES -D CONFIG_FORCE_MAX_ZONEORDER=11", "/LINUX/1c17e4d4437.c": "-D CONFIG_TREE_RCU -D CONFIG_RCU_CPU_STALL_INFO -U RCU_FAST_NO_HZ", "/LINUX/1f758a4341a.c": "-D CONFIG_EP93XX_ETH -U CONFIG_ZONE_DMA", "/LINUX/208d89843b7.c": "-D CONFIG_HIGHMEM", "/LINUX/218ad12f42e.c": "-D CONFIG_NUMA -D CONFIG_SMP", "/LINUX/221ac329e93.c": "-U PPC64 -D CONFIG_KPROBES -U CONFIG_KGDB -U CONFIG_XMON -U CONFIG_BDI_SWITCH", "/LINUX/242f1a34377.c": "-D CONFIG_CRYPTO_TEST -U CONFIG_CRYPTO_BLKCIPHER", "/LINUX/2f02c15a5d9.c": "-D CONFIG_BCM47XX -U CONFIG_SSB_DRIVER_EXTIF", "/LINUX/30e053248da.c": "-D CONFIG_REISERFS_FS_SECURITY -U CONFIG_SECURITY", "/LINUX/36855dcfc98.c": "-D PM -D CONFIG_BF60x", "/LINUX/472a474c663.c": "-D X86 -D CONFIG_SMP", "/LINUX/51fd36f3fad.c": "-U CONFIG_64BIT -U CONFIG_KTIME_SCALAR", "/LINUX/60e233a5660.c": "-U CONFIG_HOTPLUG", "/LINUX/6252547b8a7.c": "-D CONFIG_TWL4030_CORE -U CONFIG_OF_IRQ", "/LINUX/63878acfafb.c": "-D CONFIG_ARCH_OMAP3 -U CONFIG_PM", "/LINUX/6515e48932c.c": "-D CONFIG_MACH_OMAP_H4 -U CONFIG_ARCH_OMAP2420", "/LINUX/657e9649e74.c": "-D CONFIG_PREEMPT -D CONFIG_TCP_MD5SIG", "/LINUX/66517915e09.c": "-D CONFIG_SND_FSI_AK4642 -U CONFIG_I2C", "/LINUX/68bb91baa0.c": "-D CONFIG_I2C_DESIGNWARE_PLATFORM -D CONFIG_I2C_DESIGNWARE_PCI", "/LINUX/6e2b75740be.c": "-D CONFIG_MODULE_UNLOAD -D CONFIG_SMP", "/LINUX/76baeebf7df.c": "-D CONFIG_X86_32 -D CONFIG_NUMA -D CONFIG_PCI", "/LINUX/7acf6cd80b2.c": "-D CONFIG_UNIX98_PTYS -D CONFIG_DEVPTS_MULTIPLE_INSTANCES", "/LINUX/7c6048b7c83.c": "-D CONFIG_STUB_POULSBO -D CONFIG_ACPI -U CONFIG_BACKLIGHT_CLASS_DEVICE", "/LINUX/809e660f438.c": "-D CONFIG_ARM_LPAE", "/LINUX/8c8296223f3.c": "-D CONFIG_PROC_PAGE_MONITOR", "/LINUX/91ea8207168.c": "-D CONFIG_PARISC -D DISCONTIGMEM -D CONFIG_PROC_PAGE_MONITOR", "/LINUX/ae249b5fa27.c": "-D PARISC -D CONFIG_DISCONTIGMEM -D CONFIG_PROC_PAGE_MONITOR", "/LINUX/bc8cec0dff0.c": "-D CONFIG_JFFS2_FS_WBUF_VERIFY", "/LINUX/c708c57e247.c": "-D CONFIG_S390_PRNG -D CONFIG_S390", "/LINUX/d530db0db90.c": "-D CONFIG_VORTEX -U CONFIG_PCI", "/LINUX/d549f55f2e1.c": "-D CONFIG_IPV6 -U CONFIG_VLAN_8021Q", "/LINUX/d6c7e113959.c": "-D CONFIG_REGULATOR_MAX8660 -U CONFIG_OF", "/LINUX/d7e9711760a.c": "-D CONFIG_QUOTA_DEBUG", "/LINUX/e1fbd9210d5.c": "-D CONFIG_LBDAF -D CONFIG_AMIGA_Z2RAM", "/LINUX/e39363a9def.c": "-D CONFIG_NETPOLL -U CONFIG_IPV6", "/LINUX/e67bc51e574.c": "-U CONFIG_TRACING", "/LINUX/eb91f1d0a53.c": "-D CONFIG_SLAB -D CONFIG_LOCKDEP -D CONFIG_TRACE_IRQFLAGS -D CONFIG_PROVE_LOCKING -D CONFIG_NUMA", "/LINUX/ee3f34e8572.c": "-D CONFIG_IP_SCTP -D CONFIG_IPV6 -D SCTP_DBG_MSG", "/LINUX/f3d83e24154.c": "-D CONFIG_X86 -D CONFIG_ACPI_WMI", "/LINUX/f48ec1d7885.c": "-D CONFIG_IOSCHED_CFQ -U CONFIG_BLK_CGROUP", "/LINUX/f7ab9b407b3.c": "-U CONFIG_TMPFS -D CONFIG_SHMEM -D CONFIG_DRM_I915", "/MARLIN/2d22902d080.c": "-D SDSUPPORT", "/MARLIN/2db384a21d6.c": "-D MESH_BED_LEVELING -U DISABLE_M503", "/MARLIN/30248214c7f.c": "-D THERMAL_RUNAWAY_PROTECTION_PERIOD=1", "/MARLIN/31873ec707d.c": "-D ULTRA_LCD", "/MARLIN/53be0f3399e.c": "-D BABYSTEPPING -D DELTA", "/MARLIN/7336e6df070.c": "-D Z_DUAL_STEPPER_DRIVERS", "/MARLIN/831016b09f7.c": "-U ULTRA_LCD -D SDSUPPORT", "/MARLIN/8c4377dd635.c": "-D PIDTEMP -D PID_DEBUG", "/MARLIN/a7fc1f83c81.c": "-D SDSUPPORT", "/MARLIN/b8e79dce897.c": "-D ULTRA_LCD -U ENCODER_RATE_MULTIPLIER -D TEMP_SENSOR=1", "/MARLIN/e30bfedce4d.c": "-D ENABLE_AUTO_BED_LEVELING -U AUTO_BED_LEVELING_GRID", "/MARLIN/f87c80889fe.c": "", "/MARLIN/fc3c76fc164.c": "-D HAS_BED_THERMAL_PROTECTION", "/MARLIN/fdac8f6cece.c": "-U ENABLE_AUTO_BED_LEVELING"} \ No newline at end of file +{"/APACHE/0900800fbab.c": "-U HAVE_SYSLOG", "/APACHE/0ddfa412ee9.c": "-U HAVE_TLS_ALPN", "/APACHE/1a3c8e3d840.c": "-U HAVE_TLSV1_X", "/APACHE/1b48bb3c1af.c": "-D APU_HAS_LDAP -D APR_HAS_SHARED_MEMORY", "/APACHE/1f46088b38d.c": "-U SIGPIPE", "/APACHE/2a6cbfa00e0.c": "-U SHARED_MODULE", "/APACHE/3407eccc321.c": "-D __STDC_VERSION__=199902L -D APLOG_MAX_LOGLEVEL", "/APACHE/35ae2e259e4.c": "-D HAVE_ECC", "/APACHE/4202d5fee3e.c": "-D APR_HASD_LDAP -D APR_HAS_LDAP_NETSCAPE_SSL", "/APACHE/4945115b2e7.c": "-D DEBUG_CGI", "/APACHE/56d9881993f.c": "-U APR_HAS_SENDFILE", "/APACHE/581635e28f1.c": "-U APR_HAVE_IPV6", "/APACHE/6338509eb37.c": "-U HAVE_FIPS", "/APACHE/664e3aac6dd.c": "-D WIN32", "/APACHE/9327311d30f.c": "-D APR_HAS_SHARED_MEMORY", "/APACHE/97ecbec1237.c": "-D APU_HAS_LDAP -D APR_HAS_SHARED_MEMORY", "/APACHE/b833f064550.c": "-U HAVE_TIMES", "/APACHE/bbeb0516cf0.c": "-D APR_FILES_AS_SOCKETS", "/APACHE/c76df14dfb4.c": "-D CROSS_COMPILE -D OS2", "/APACHE/d0040a07aec.c": "-D RLIMIT_NPROC -U RLIMIT_CPU -U RLIMIT_DATA -U RLIMIT_VMEM -U RLIMIT_AS", "/APACHE/d05e574ec26.c": "-D APR_HAS_SHARED_MEMORY", "/APACHE/dbafef17dd1.c": "-D HAS_APACHE_REGEX_LIB", "/APACHE/test.c": "", "/BUSYBOX/0301ffab3d9.c": "-U EXT2FS_ENABLE_SWAPFS", "/BUSYBOX/061fd0a353e.c": "-D CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF -U CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF", "/BUSYBOX/192c35f6eb2.c": "-U CONFIG_FEATURE_REMOTE_LOG", "/BUSYBOX/199501f2a00.c": "-U ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS", "/BUSYBOX/1b487ea8a69.c": "-D ENABLE_SELINUX -U ENABLE_FEATURE_STAT_FORMAT", "/BUSYBOX/2631486f1bf.c": "-D CONFIG_FEATURE_LS_SORTFILES -D CONFIG_FEATURE_LS_RECURSIVE", "/BUSYBOX/5275b1e49f6.c": "-U CONFIG_FEATURE_INSMOD_VERSION_CHECKING", "/BUSYBOX/5cd6461b6fb.c": "-D CONFIG_LFS -D CONFIG_FEATURE_HTTPD_CGI", "/BUSYBOX/95755181b82.c": "-D BB_MMU -D ENABLE_FEATURE_HTTPD_GZIP -D ENABLE_FEATURE_HTTPD_BASIC_AUTH", "/BUSYBOX/b273d665181.c": "-D BB_FEATURE_LS_FILETYPES -U BB_FEATURE_LS_USERNAME", "/BUSYBOX/b62bd7b261b.c": "-D ENABLE_FEATURE_MDEV_CONF -D ENABLE_FEATURE_MDEV_RENAME -U ENABLE_FEATURE_MDEV_RENAME_REGEXP", "/BUSYBOX/b7ebc61b54f.c": "-U CONFIG_FEATURE_LS_TIMESTAMPS", "/BUSYBOX/bc0ffc0e971.c": "-D ENABLE_FEATURE_CLEAN_UP", "/BUSYBOX/cc3f20b9bdf.c": "", "/BUSYBOX/cf1f2ace391.c": "-D ENABLE_DEBUG_INIT", "/BUSYBOX/df7b6577c6a.c": "-U ENABLE_DESKTOP", "/BUSYBOX/ebee301c8b0.c": "-D BB_CP_MV -U BB_AR", "/BUSYBOX/eef2317b9f5.c": "-D CONFIG_FEATURE_CLEAN_UP", "/LINUX/0988c4c7fb5.c": "-U CONFIG_VLAN_8021Q", "/LINUX/0dc77b6dabe.c": "-D CONFIG_ANDROID -D CONFIG_EXTCON", "/LINUX/0f8f8094d28.c": "-D CONFIG_LOCKDEP -D CONFIG_SLAB -U CONFIG_SLOB -D CONFIG_PPC_256K_PAGES -D CONFIG_FORCE_MAX_ZONEORDER=11", "/LINUX/1c17e4d4437.c": "-D CONFIG_TREE_RCU -D CONFIG_RCU_CPU_STALL_INFO -U RCU_FAST_NO_HZ", "/LINUX/1f758a4341a.c": "-D CONFIG_EP93XX_ETH -U CONFIG_ZONE_DMA", "/LINUX/208d89843b7.c": "-D CONFIG_HIGHMEM", "/LINUX/218ad12f42e.c": "-D CONFIG_NUMA -D CONFIG_SMP", "/LINUX/221ac329e93.c": "-U PPC64 -D CONFIG_KPROBES -U CONFIG_KGDB -U CONFIG_XMON -U CONFIG_BDI_SWITCH", "/LINUX/242f1a34377.c": "-D CONFIG_CRYPTO_TEST -U CONFIG_CRYPTO_BLKCIPHER", "/LINUX/2f02c15a5d9.c": "-D CONFIG_BCM47XX -U CONFIG_SSB_DRIVER_EXTIF", "/LINUX/30e053248da.c": "-D CONFIG_REISERFS_FS_SECURITY -U CONFIG_SECURITY", "/LINUX/36855dcfc98.c": "-D PM -D CONFIG_BF60x", "/LINUX/472a474c663.c": "-D X86 -D CONFIG_SMP", "/LINUX/51fd36f3fad.c": "-U CONFIG_64BIT -U CONFIG_KTIME_SCALAR", "/LINUX/60e233a5660.c": "-U CONFIG_HOTPLUG", "/LINUX/6252547b8a7.c": "-D CONFIG_TWL4030_CORE -U CONFIG_OF_IRQ", "/LINUX/63878acfafb.c": "-D CONFIG_ARCH_OMAP3 -U CONFIG_PM", "/LINUX/6515e48932c.c": "-D CONFIG_MACH_OMAP_H4 -U CONFIG_ARCH_OMAP2420", "/LINUX/657e9649e74.c": "-D CONFIG_PREEMPT -D CONFIG_TCP_MD5SIG", "/LINUX/66517915e09.c": "-D CONFIG_SND_FSI_AK4642 -U CONFIG_I2C", "/LINUX/68bb91baa0.c": "-D CONFIG_I2C_DESIGNWARE_PLATFORM -D CONFIG_I2C_DESIGNWARE_PCI", "/LINUX/6e2b75740be.c": "-D CONFIG_MODULE_UNLOAD -D CONFIG_SMP", "/LINUX/76baeebf7df.c": "-D CONFIG_X86_32 -D CONFIG_NUMA -D CONFIG_PCI", "/LINUX/7acf6cd80b2.c": "-D CONFIG_UNIX98_PTYS -D CONFIG_DEVPTS_MULTIPLE_INSTANCES", "/LINUX/7c6048b7c83.c": "-D CONFIG_STUB_POULSBO -D CONFIG_ACPI -U CONFIG_BACKLIGHT_CLASS_DEVICE", "/LINUX/809e660f438.c": "-D CONFIG_ARM_LPAE", "/LINUX/8c8296223f3.c": "-D CONFIG_PROC_PAGE_MONITOR", "/LINUX/91ea8207168.c": "-D CONFIG_PARISC -D DISCONTIGMEM -D CONFIG_PROC_PAGE_MONITOR", "/LINUX/ae249b5fa27.c": "-D PARISC -D CONFIG_DISCONTIGMEM -D CONFIG_PROC_PAGE_MONITOR", "/LINUX/bc8cec0dff0.c": "-D CONFIG_JFFS2_FS_WBUF_VERIFY", "/LINUX/c708c57e247.c": "-D CONFIG_S390_PRNG -D CONFIG_S390", "/LINUX/d530db0db90.c": "-D CONFIG_VORTEX -U CONFIG_PCI", "/LINUX/d549f55f2e1.c": "-D CONFIG_IPV6 -U CONFIG_VLAN_8021Q", "/LINUX/d6c7e113959.c": "-D CONFIG_REGULATOR_MAX8660 -U CONFIG_OF", "/LINUX/d7e9711760a.c": "-D CONFIG_QUOTA_DEBUG", "/LINUX/e1fbd9210d5.c": "-D CONFIG_LBDAF -D CONFIG_AMIGA_Z2RAM", "/LINUX/e39363a9def.c": "-D CONFIG_NETPOLL -U CONFIG_IPV6", "/LINUX/e67bc51e574.c": "-U CONFIG_TRACING", "/LINUX/eb91f1d0a53.c": "-D CONFIG_SLAB -D CONFIG_LOCKDEP -D CONFIG_TRACE_IRQFLAGS -D CONFIG_PROVE_LOCKING -D CONFIG_NUMA", "/LINUX/ee3f34e8572.c": "-D CONFIG_IP_SCTP -D CONFIG_IPV6 -D SCTP_DBG_MSG", "/LINUX/f3d83e24154.c": "-D CONFIG_X86 -D CONFIG_ACPI_WMI", "/LINUX/f48ec1d7885.c": "-D CONFIG_IOSCHED_CFQ -U CONFIG_BLK_CGROUP", "/LINUX/f7ab9b407b3.c": "-U CONFIG_TMPFS -D CONFIG_SHMEM -D CONFIG_DRM_I915", "/MARLIN/2d22902d080.c": "-D SDSUPPORT", "/MARLIN/2db384a21d6.c": "-D MESH_BED_LEVELING -U DISABLE_M503", "/MARLIN/30248214c7f.c": "-D THERMAL_RUNAWAY_PROTECTION_PERIOD=1", "/MARLIN/31873ec707d.c": "-D ULTRA_LCD", "/MARLIN/53be0f3399e.c": "-D BABYSTEPPING -D DELTA", "/MARLIN/7336e6df070.c": "-D Z_DUAL_STEPPER_DRIVERS", "/MARLIN/831016b09f7.c": "-U ULTRA_LCD -D SDSUPPORT", "/MARLIN/8c4377dd635.c": "-D PIDTEMP -D PID_DEBUG", "/MARLIN/a7fc1f83c81.c": "-D SDSUPPORT", "/MARLIN/b8e79dce897.c": "-D ULTRA_LCD -U ENCODER_RATE_MULTIPLIER -D TEMP_SENSOR=1", "/MARLIN/e30bfedce4d.c": "-D ENABLE_AUTO_BED_LEVELING -U AUTO_BED_LEVELING_GRID", "/MARLIN/f87c80889fe.c": "", "/MARLIN/fc3c76fc164.c": "-D HAS_BED_THERMAL_PROTECTION", "/MARLIN/fdac8f6cece.c": "-U ENABLE_AUTO_BED_LEVELING"} \ No newline at end of file diff --git a/fonda/cpp_testsuite/varBugs/infer-out/.infer_runstate.json b/fonda/cpp_testsuite/varBugs/infer-out/.infer_runstate.json new file mode 100644 index 00000000..f36f4b5c --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/infer-out/.infer_runstate.json @@ -0,0 +1 @@ +{"run_sequence":[{"date":"2022-03-21 00:46:02.718721-05:00","command":"run","infer_version":{"major":1,"minor":1,"patch":0,"commit":"unknown"}}],"results_dir_format":"db_filename: infer-out/results.db\ndb_schema: \n CREATE TABLE IF NOT EXISTS procedures\n ( proc_uid TEXT PRIMARY KEY NOT NULL\n , proc_name BLOB NOT NULL\n , attr_kind INTEGER NOT NULL\n , source_file TEXT NOT NULL\n , proc_attributes BLOB NOT NULL\n , cfg BLOB\n , callees BLOB NOT NULL\n )\n ;\n\n CREATE TABLE IF NOT EXISTS source_files\n ( source_file TEXT PRIMARY KEY\n , type_environment BLOB NOT NULL\n , integer_type_widths BLOB\n , procedure_names BLOB NOT NULL\n , freshly_captured INT NOT NULL )\n ;\n\n CREATE TABLE IF NOT EXISTS specs\n ( proc_uid TEXT PRIMARY KEY NOT NULL\n , proc_name BLOB NOT NULL\n , analysis_summary BLOB NOT NULL\n , report_summary BLOB NOT NULL\n )\n ;\n\n CREATE TABLE IF NOT EXISTS model_specs\n ( proc_uid TEXT PRIMARY KEY NOT NULL\n , proc_name BLOB NOT NULL\n , analysis_summary BLOB NOT NULL\n , report_summary BLOB NOT NULL\n )\n ","should_merge_capture":false} \ No newline at end of file diff --git a/fonda/cpp_testsuite/varBugs/infer-out/bugs.txt b/fonda/cpp_testsuite/varBugs/infer-out/bugs.txt new file mode 100644 index 00000000..f77b18e4 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/infer-out/bugs.txt @@ -0,0 +1 @@ +The contents of this file have moved to report.txt. diff --git a/fonda/cpp_testsuite/varBugs/infer-out/config-impact-report.json b/fonda/cpp_testsuite/varBugs/infer-out/config-impact-report.json new file mode 100644 index 00000000..fe51488c --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/infer-out/config-impact-report.json @@ -0,0 +1 @@ +[] diff --git a/fonda/cpp_testsuite/varBugs/infer-out/costs-report.json b/fonda/cpp_testsuite/varBugs/infer-out/costs-report.json new file mode 100644 index 00000000..fe51488c --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/infer-out/costs-report.json @@ -0,0 +1 @@ +[] diff --git a/fonda/cpp_testsuite/varBugs/infer-out/logs b/fonda/cpp_testsuite/varBugs/infer-out/logs new file mode 100644 index 00000000..4e96aea1 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/infer-out/logs @@ -0,0 +1,115 @@ +[15397][ debug] Loading models took 23.7ms +[15398][ debug] Sqlite write daemon: starting up +[15398][ debug] Sqlite write daemon: set up complete, waiting for connections +[15397][environment] CWD = /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs +[15397][environment] No .inferconfig file found +[15397][environment] Project root = /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs +[15397][environment] INFER_ARGS = +[15397][environment] command line arguments: infer -- clang -c +[15397][environment] /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c +[15397][environment] Available memory at startup: 29163 MB +[15397][environment] Active checkers: self-in-block (C/C++/ObjC), starvation (C/C++/ObjC, Java), uninit (C/C++/ObjC), siof (C/C++/ObjC), dotnet-resource-leak (C#/.Net), racerd (C/C++/ObjC, Java), liveness (C/C++/ObjC), inefficient-keyset-iterator (Java), fragment-retains-view (Java), biabduction (C/C++/ObjC, Java, C#/.Net) +[15397][environment] Scheduler: file +[15397][environment] Cores used: 10 +[15397][environment] Infer version v1.1.0-unknown +[15397][environment] Copyright 2009 - present Facebook. All Rights Reserved. +[15397][environment] +[15397][ progress] Capturing in make/cc mode... +[15397][ debug] +[15397][ debug] *** Beginning capture of file /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c *** +[15397][ debug] Loading the following linters files: /usr/local/lib/infer/infer/bin/../lib/linter_rules/linters.al +[15397][ debug] Elapsed: 122ms. +[15397][ debug] GC stats for capture: +[15397][ debug] minor_words: 1.07253e+07 +[15397][ debug] promoted_words: 656126 +[15397][ debug] major_words: 706444 +[15397][ debug] minor_collections: 13 +[15397][ debug] major_collections: 2 +[15397][ debug] compactions: 0 +[15397][ debug] top_heap_words: 1006592 +[15397][ debug] +[15397][environment] Parallel jobs: 10 +[15397][ progress] Found 1 source file to analyze in /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/infer-out +[15403][ progress] APACHE/1b48bb3c1af.desugared.c starting +[15403][ progress] APACHE/1b48bb3c1af.desugared.c DONE +[15397][ debug] Backend stats: +[15397][ debug] summary_file_try_load= 2679 +[15397][ debug] summary_read_from_disk= 0 +[15397][ debug] summary_cache_hits= 171 (6%) +[15397][ debug] summary_cache_misses= 2679 +[15397][ debug] ondemand_procs_analyzed= 7 +[15397][ debug] ondemand_local_cache_hits= 2028 (99%) +[15397][ debug] ondemand_local_cache_misses= 12 +[15397][ debug] proc_locker_lock_time_user= 0.00000000 +[15397][ debug] proc_locker_lock_time_sys= 0.00000000 +[15397][ debug] proc_locker_lock_time_wall= 0.00000000 +[15397][ debug] proc_locker_unlock_time_user= 0.00000000 +[15397][ debug] proc_locker_unlock_time_sys= 0.00000000 +[15397][ debug] proc_locker_unlock_time_wall= 0.00000000 +[15397][ debug] restart_scheduler_useful_time_user= 0.00000000 +[15397][ debug] restart_scheduler_useful_time_sys= 0.00000000 +[15397][ debug] restart_scheduler_useful_time_wall= 0.00000000 +[15397][ debug] restart_scheduler_total_time_user= 0.00000000 +[15397][ debug] restart_scheduler_total_time_sys= 0.00000000 +[15397][ debug] restart_scheduler_total_time_wall= 0.00000000 +[15397][ debug] +[15397][ debug] GC stats for backend_stats.gc_stats_add.: +[15397][ debug] minor_words: 6.35079e+09 +[15397][ debug] promoted_words: 2.43975e+07 +[15397][ debug] major_words: 2.47058e+07 +[15397][ debug] minor_collections: 6067 +[15397][ debug] major_collections: 21 +[15397][ debug] compactions: 0 +[15397][ debug] top_heap_words: 14452224 +[15397][ debug] +[15397][ debug] GC stats for backend_stats.gc_stats_max.: +[15397][ debug] minor_words: 6.35079e+09 +[15397][ debug] promoted_words: 2.43975e+07 +[15397][ debug] major_words: 2.47058e+07 +[15397][ debug] minor_collections: 6067 +[15397][ debug] major_collections: 21 +[15397][ debug] compactions: 0 +[15397][ debug] top_heap_words: 5392896 +[15397][ debug] +[15397][ debug] Average over 10 processes +[15397][ debug] GC stats for backend_stats.gc_stats_average.: +[15397][ debug] minor_words: 6.35079e+08 +[15397][ debug] promoted_words: 2.43975e+06 +[15397][ debug] major_words: 2.47058e+06 +[15397][ debug] minor_collections: 606 +[15397][ debug] major_collections: 2 +[15397][ debug] compactions: 0 +[15397][ debug] top_heap_words: 1445222 +[15397][ debug] +[15397][ debug] Analysis phase finished in 10.169s +[15397][ debug] backend_stats.scheduler_process_analysis_time_user= 0.07088500 +[15397][ debug] backend_stats.scheduler_process_analysis_time_sys= 0.03188100 +[15397][ debug] backend_stats.scheduler_process_analysis_time_wall= 10.16869117 +[15397][ debug] GC stats for analysis_scheduler: +[15397][ debug] minor_words: 4.55928e+06 +[15397][ debug] promoted_words: 6754 +[15397][ debug] major_words: 15460 +[15397][ debug] minor_collections: 5 +[15397][ debug] major_collections: 2 +[15397][ debug] compactions: 1 +[15397][ debug] top_heap_words: 1006592 +[15397][ debug] +[15397][ debug] GC stats for report: +[15397][ debug] minor_words: 3037 +[15397][ debug] promoted_words: 0 +[15397][ debug] major_words: 0 +[15397][ debug] minor_collections: 0 +[15397][ debug] major_collections: 0 +[15397][ debug] compactions: 0 +[15397][ debug] top_heap_words: 1006592 +[15397][ debug] +[15397][ debug] GC stats for main_process_full: +[15397][ debug] minor_words: 1.70925e+07 +[15397][ debug] promoted_words: 840140 +[15397][ debug] major_words: 1.10105e+06 +[15397][ debug] minor_collections: 23 +[15397][ debug] major_collections: 6 +[15397][ debug] compactions: 2 +[15397][ debug] top_heap_words: 1006592 +[15397][ debug] +[15398][ debug] Sqlite write daemon: terminating diff --git a/fonda/cpp_testsuite/varBugs/infer-out/report.json b/fonda/cpp_testsuite/varBugs/infer-out/report.json new file mode 100644 index 00000000..fe51488c --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/infer-out/report.json @@ -0,0 +1 @@ +[] diff --git a/fonda/cpp_testsuite/varBugs/infer-out/report.txt b/fonda/cpp_testsuite/varBugs/infer-out/report.txt new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/infer-out/results.db b/fonda/cpp_testsuite/varBugs/infer-out/results.db new file mode 100644 index 0000000000000000000000000000000000000000..f4259fe949228259dfb19ec1005cf66f78dc185c GIT binary patch literal 1310720 zcmeFa3t${o+5f*YdnQR+N(%)_DYWU821>h|WV1(@4i;(_8|SG3a?FD|p~v#F}hQ(SDb*$S{Nz-Iju2+(HzQ>?&Y z{ubC4oqS;8@Lz33gNtl?FCBhpsCnNfC(@GCcp%k025#WOn?b6 z0Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k025#WOn?b6 z0Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k025#WOn?b6 z0Vco%m;e)C0!)AjFaajO1egF5U;<3w{{(@N*22Q6bLJ=)PKx_l!hz1N)kjy1 zX~Ck}b#*lx>WVkiEN!kUPKy{{Z2ntN+#T)mdwW8y#T)82Zzx`~u5o3}x-G>k>b4ZG zTD_ro)yC%Lr0_yRIO6LJ6fbRFy)>VMFX9Ui#6mG|tf#Zn7abT?FdFFYipGy1R^lou znA$i;v4tY7f&SR;Fn%H2>+6Yk$zyMtMqX#y!MKriTH(~GQ-TlXA>CTsxC&L)thU7^Zc#9G#k^60rKt;UX-C=xE~RkltXaxM zE{QK$oLDNPW}r)*Pipc0*QR(p>g_((VTO4_hPu0Pn8ePjH-a5yk(l9DpDU~2uW(SWBQd7Y`S9nEbKHMtXMw~u!Gj|ngVCcp%k z025#WOn?b60Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k z025#WOn?b60Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k z025#WOn?b60Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k z025#WOn?b60Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz4Ue=mXYr24-9Uj12f zCcp%k025#WOn?b60Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@G zCcp%k025#WOn?b60Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@G zCcp%k025#WOn?b60Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@G zCcp%k025#WOn?b60Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>FU?T1I z(T@Ky0Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k025#W zOn?b60Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k025#W zOn?b60Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k025#W zOn?b60Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k02BD{ zB`}^;-}m3EKWokem;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k z025#WOn?b60Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k z025#WOn?b60Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k z025#WOn?b60Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k z025#WOn?YXq}@K+@joWO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k025#WOn?b6 z0Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k025#WOn?b6 z0Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k025#WOn?b6 z0Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k025#WOn?b6 z0Vco%m;e)C0{^`P#*^y%{(JRj&6xlbU;<2l2`~XBzyz286JP>NfC(@GCcp%k025#W zOn?b60Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k025#W zOn?b60Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k025#W zOn?b60Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k025#W zOn?b60Vco%m;e)C0!)Aj5CIL_jN!EuTrm9h@Lz_1Km42FSB764erEXb;U5iucle>< zuMdBD`0n95hCefW!|=7kR}No3{K4Uo;lbga;jZD(uzz^R@VQ0?lnMW10!)AjFaajO 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�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 $24v0>t8UlT3VYMTiU}j<+qXt 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 lGW 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 NBMt9z6M^3gd;tFhGC%+T literal 0 HcmV?d00001 diff --git a/fonda/cpp_testsuite/varBugs/infer-out/results.db-wal b/fonda/cpp_testsuite/varBugs/infer-out/results.db-wal new file mode 100644 index 0000000000000000000000000000000000000000..5470c0d3c2055f7aa78da9ee78a617e6fd1c287d GIT binary patch literal 1901968 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 literal 0 HcmV?d00001 diff --git a/fonda/cpp_testsuite/varBugs/infer-out/tmp/clang_command_.tmp.42174c.txt b/fonda/cpp_testsuite/varBugs/infer-out/tmp/clang_command_.tmp.42174c.txt new file mode 100644 index 00000000..a1d97b4f --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/infer-out/tmp/clang_command_.tmp.42174c.txt @@ -0,0 +1,11 @@ +'-###' +'-c' +'/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c' +'-fno-cxx-modules' +'-Qunused-arguments' +'-Wno-ignored-optimization-argument' +'-fno-addrsig' +'-fembed-bitcode=off' +'-include' +'/usr/local/lib/infer/infer/bin/../lib/clang_wrappers/global_defines.h' +'-Wno-everything' diff --git a/fonda/cpp_testsuite/varBugs/infer-out/tmp/clang_command_.tmp.e34e32.txt b/fonda/cpp_testsuite/varBugs/infer-out/tmp/clang_command_.tmp.e34e32.txt new file mode 100644 index 00000000..bb21c681 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/infer-out/tmp/clang_command_.tmp.e34e32.txt @@ -0,0 +1,62 @@ +"-cc1" +"-load" +"/usr/local/lib/infer/infer/bin/../../facebook-clang-plugins/libtooling/build/FacebookClangPlugin.dylib" +"-add-plugin" +"BiniouASTExporter" +"-plugin-arg-BiniouASTExporter" +"-" +"-plugin-arg-BiniouASTExporter" +"PREPEND_CURRENT_DIR=1" +"-plugin-arg-BiniouASTExporter" +"MAX_STRING_SIZE=65535" +"-cc1" +"-triple" +"x86_64-unknown-linux-gnu" +"-emit-obj" +"-mrelax-all" +"-disable-free" +"-disable-llvm-verifier" +"-discard-value-names" +"-main-file-name" +"1b48bb3c1af.desugared.c" +"-mrelocation-model" +"static" +"-mframe-pointer=all" +"-fmath-errno" +"-fno-rounding-math" +"-mconstructor-aliases" +"-munwind-tables" +"-target-cpu" +"x86-64" +"-fno-split-dwarf-inlining" +"-debugger-tuning=gdb" +"-resource-dir" +"/usr/local/lib/infer/facebook-clang-plugins/clang/install/lib/clang/11.1.0" +"-include" +"/usr/local/lib/infer/infer/bin/../lib/clang_wrappers/global_defines.h" +"-internal-isystem" +"/usr/local/include" +"-internal-isystem" +"/usr/local/lib/infer/facebook-clang-plugins/clang/install/lib/clang/11.1.0/include" +"-internal-externc-isystem" +"/usr/include/x86_64-linux-gnu" +"-internal-externc-isystem" +"/include" +"-internal-externc-isystem" +"/usr/include" +"-Wno-ignored-optimization-argument" +"-Wno-everything" +"-fdebug-compilation-dir" +"/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs" +"-ferror-limit" +"19" +"-fgnuc-version=4.2.1" +"-o" +"1b48bb3c1af.desugared.o" +"-x" +"c" +"/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c" +"-O0" +"-include" +"/usr/local/lib/infer/infer/bin/../lib/clang_wrappers/global_defines.h" +"-Wno-everything" diff --git a/fonda/cpp_testsuite/varBugs/runTests.py b/fonda/cpp_testsuite/varBugs/runTests.py index 992505e9..22be67fb 100644 --- a/fonda/cpp_testsuite/varBugs/runTests.py +++ b/fonda/cpp_testsuite/varBugs/runTests.py @@ -21,13 +21,12 @@ def sanitize(self): def tostr(self): return ' '.join([self.sanitize(),str(self.line),str(self.lineA),str(self.lineB)]) - - + def areEq(self,inner): print(self.tostr() + ' ||' + inner.tostr()) return self.sanitize() == inner.sanitize() and inner.line >= self.lineA and inner.line <= self.lineB -def getAlarm(fi): +def getClangAlarm(fi): orig = fi + ".clangres" desug = fi + ".desugared.clangres" warningsO = [] @@ -63,6 +62,8 @@ def getAlarm(fi): i = i+1 f.close() i = 0 + if len(warningsO) == 0: + return 'none ', len(warningsO), len(warningsD) while i < len(warningsO): found = False for d in warningsD: @@ -70,9 +71,59 @@ def getAlarm(fi): found = True break if not found: - return 'missing: ' + warningsO[i].msg + return 'missing', len(warningsO), len(warningsD) i = i+1 - return 'match' + return 'match ', len(warningsO), len(warningsD) + +def getInferAlarm(fi,firel): + orig = fi + ".inferres" + desug = fi + ".desugared.inferres" + warningsO = [] + warningsD = [] + f = open(orig) + for x in f: + if firel in x and 'error:' in x: + x = x.rstrip() + y = Warning() + y.msg = x.split('error:')[1] + y.line = int(x.split(':')[1]) + warningsO.append(y) + f.close() + f = open(desug) + lines = [] + for x in f: + lines.append(x.rstrip()) + i = 0 + while i < len(lines) - 4: + l = lines[i] + if firel in l and 'error:' in l and '// L' in lines[i+4]: + z = Warning() + z.msg = l.split('error:')[1] + linestr = lines[i+4].split('// L')[1] + if ':L' in linestr: + z.lineA = int(linestr.split(':L')[0]) + z.lineB = int(linestr.split(':L')[1]) + else: + z.lineA = int(linestr) + z.lineB = int(linestr) + warningsD.append(z) + i = i+1 + i = i+1 + f.close() + i = 0 + if len(warningsO) == 0: + return 'none ', len(warningsO), len(warningsD) + while i < len(warningsO): + found = False + for d in warningsD: + if d.areEq(warningsO[i]): + found = True + break + if not found: + return 'missing', len(warningsO), len(warningsD) + i = i+1 + return 'match ', len(warningsO), len(warningsD) + def remove_prefix(text, prefix): return text[text.startswith(prefix) and len(prefix):] @@ -99,7 +150,7 @@ def main(): if len(sumTOut + dirFiles) > maxC: maxC = len(sumTOut + dirFiles) - sumTable.write('File' + (maxC - 4)*' ' + 'Status Clang\n'+(4)*'-'+ (maxC - 4)*' '+'------ -----\n') + sumTable.write('File' + (maxC - 4)*' ' + 'Status Clang Infer\n'+(4)*'-'+ (maxC - 4)*' '+'------ ----- -----\n') jsFile = open('configs.json','r+') if os.stat('configs.json').st_size == 0: @@ -136,6 +187,7 @@ def main(): js[filewobase] = inc os.system('clang --analyze ' + inc + ' ' + curDir + '/' + dirFiles + " 2> " + curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.clangres') + os.system('infer -- clang -c ' + inc + ' ' + curDir + '/' + dirFiles + " > " + curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.inferres') if os.path.getsize(curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.desugared.c') <= 32: sumTable.write(sumTOut + (maxC - len(sumTOut))*' ' + 'SuperC failed *\n') @@ -143,10 +195,12 @@ def main(): else: os.system('clang -Wno-everything -emit-llvm -c ' + curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.desugared.c') os.system('clang --analyze ' + curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.desugared.c 2> ' + curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.desugared.clangres') + os.system('infer -- clang -c ' + curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.desugared.c > ' + curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.desugared.inferres') if os.path.exists(os.getcwd() + '/' + dirFiles[:len(dirFiles) - 2] + '.desugared.bc'): os.system('mv ' + dirFiles[:len(dirFiles) - 2] + '.desugared.bc ' + curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.desugared.bc') - alarm = getAlarm(curDir + '/' + dirFiles[:len(dirFiles) - 2]) - sumTable.write(sumTOut + (maxC - len(sumTOut))*' ' +'BC generated ' + alarm + '\n') + alarmc , origsc, desugc = getClangAlarm(curDir + '/' + dirFiles[:len(dirFiles) - 2]) + alarmi , origsi, desugi = getInferAlarm(curDir + '/' + dirFiles[:len(dirFiles) - 2],sumTOut) + sumTable.write(sumTOut + (maxC - len(sumTOut))*' ' +'BC generated ' + alarmc + ' ' + str(origsc) + '/' + str(desugc) + (' ' if desugc > 9 else ' ') + alarmi + ' ' + str(origsi) + '/' + str(desugi) + '\n') else: sumTable.write(sumTOut + (maxC - len(sumTOut))*' ' +'BC failed *\n') diff --git a/fonda/cpp_testsuite/varBugs/summaryTable.txt b/fonda/cpp_testsuite/varBugs/summaryTable.txt index de8dc8e6..ee021ebc 100644 --- a/fonda/cpp_testsuite/varBugs/summaryTable.txt +++ b/fonda/cpp_testsuite/varBugs/summaryTable.txt @@ -1,101 +1,103 @@ -File Status Clang ----- ------ ----- -MARLIN/f87c80889fe BC generated match +File Status Clang Infer +---- ------ ----- ----- +MARLIN/f87c80889fe BC generated none 0/0 none 0/0 MARLIN/53be0f3399e BC failed * -MARLIN/31873ec707d BC generated match -MARLIN/2d22902d080 BC generated match -MARLIN/a7fc1f83c81 BC generated match -MARLIN/30248214c7f BC generated match -MARLIN/2db384a21d6 BC generated match -MARLIN/b8e79dce897 BC generated match -MARLIN/8c4377dd635 BC generated match -MARLIN/fc3c76fc164 BC generated match -MARLIN/831016b09f7 BC generated match -MARLIN/e30bfedce4d BC generated match -MARLIN/7336e6df070 BC generated match -MARLIN/fdac8f6cece BC generated match -LINUX/d530db0db90 BC generated match -LINUX/bc8cec0dff0 BC generated match -LINUX/d7e9711760a BC generated match -LINUX/221ac329e93 BC generated match -LINUX/51fd36f3fad BC generated match -LINUX/208d89843b7 BC generated match -LINUX/ee3f34e8572 BC generated missing: Value stored to 'rt' during its initialization is never read -LINUX/472a474c663 BC generated match -LINUX/657e9649e74 BC generated match -LINUX/f7ab9b407b3 BC generated match -LINUX/36855dcfc98 BC generated match -LINUX/e1fbd9210d5 BC generated match -LINUX/66517915e09 BC generated match -LINUX/7c6048b7c83 BC generated match -LINUX/f3d83e24154 BC generated match -LINUX/eb91f1d0a53 BC generated match -LINUX/1f758a4341a BC generated match -LINUX/0988c4c7fb5 BC generated match -LINUX/242f1a34377 BC generated match -LINUX/2f02c15a5d9 BC generated match -LINUX/8c8296223f3 BC generated match -LINUX/68bb91baa0 BC generated match -LINUX/1c17e4d4437 BC generated match -LINUX/f48ec1d7885 BC generated match -LINUX/0dc77b6dabe BC generated match -LINUX/6515e48932c BC generated match -LINUX/91ea8207168 BC generated match -LINUX/6e2b75740be BC generated match +MARLIN/31873ec707d BC generated none 0/0 none 0/0 +MARLIN/2d22902d080 BC generated none 0/0 none 0/0 +MARLIN/a7fc1f83c81 BC generated none 0/3 none 0/3 +MARLIN/30248214c7f BC generated none 0/0 none 0/0 +MARLIN/2db384a21d6 BC generated none 0/0 none 0/0 +MARLIN/b8e79dce897 BC generated none 0/0 none 0/0 +MARLIN/8c4377dd635 BC generated none 0/2 none 0/4 +MARLIN/fc3c76fc164 BC generated none 0/0 none 0/0 +MARLIN/831016b09f7 BC generated none 0/1 none 0/1 +MARLIN/e30bfedce4d BC generated match 1/1 match 1/1 +MARLIN/7336e6df070 BC generated none 0/0 none 0/0 +MARLIN/fdac8f6cece BC generated none 0/0 none 0/0 +LINUX/d530db0db90 BC generated none 0/0 none 0/0 +LINUX/bc8cec0dff0 BC generated none 0/0 none 0/0 +LINUX/d7e9711760a BC generated match 1/1 match 1/1 +LINUX/221ac329e93 BC generated none 0/0 none 0/0 +LINUX/51fd36f3fad BC generated none 0/3 none 0/3 +LINUX/208d89843b7 BC generated none 0/0 none 0/0 +LINUX/ee3f34e8572 BC generated missing 1/2 missing 1/0 +LINUX/472a474c663 BC generated match 1/1 none 0/0 +LINUX/657e9649e74 BC generated none 0/0 none 0/0 +LINUX/f7ab9b407b3 BC generated none 0/0 none 0/0 +LINUX/36855dcfc98 BC generated none 0/1 none 0/0 +LINUX/e1fbd9210d5 BC generated none 0/0 none 0/0 +LINUX/66517915e09 BC generated none 0/2 none 0/2 +LINUX/7c6048b7c83 BC generated none 0/0 none 0/0 +LINUX/f3d83e24154 BC generated none 0/0 none 0/0 +LINUX/eb91f1d0a53 BC generated none 0/0 none 0/0 +LINUX/1f758a4341a BC generated none 0/0 none 0/0 +LINUX/0988c4c7fb5 BC generated none 0/0 none 0/0 +LINUX/242f1a34377 BC generated none 0/0 none 0/0 +LINUX/2f02c15a5d9 BC generated none 0/0 none 0/0 +LINUX/8c8296223f3 BC generated none 0/0 none 0/0 +LINUX/68bb91baa0 BC generated none 0/0 none 0/0 +LINUX/1c17e4d4437 BC generated none 0/0 none 0/0 +LINUX/f48ec1d7885 BC generated none 0/0 none 0/0 +LINUX/0dc77b6dabe BC generated none 0/0 none 0/0 +LINUX/6515e48932c BC generated none 0/0 none 0/0 +LINUX/91ea8207168 BC generated none 0/0 none 0/0 +LINUX/6e2b75740be BC generated none 0/5 none 0/1 LINUX/76baeebf7df SuperC failed * LINUX/76baeebf7df BC failed * -LINUX/218ad12f42e BC generated match -LINUX/ae249b5fa27 BC generated match -LINUX/e67bc51e574 BC generated match -LINUX/c708c57e247 BC generated match -LINUX/809e660f438 BC generated match -LINUX/0f8f8094d28 BC generated match -LINUX/6252547b8a7 BC generated match -LINUX/d6c7e113959 BC generated match -LINUX/e39363a9def BC generated match -LINUX/30e053248da BC generated match -LINUX/d549f55f2e1 BC generated match -LINUX/7acf6cd80b2 BC generated match -LINUX/60e233a5660 BC generated match -LINUX/63878acfafb BC generated match -BUSYBOX/5275b1e49f6 BC generated match -BUSYBOX/5cd6461b6fb BC generated match -BUSYBOX/1b487ea8a69 BC generated match -BUSYBOX/b7ebc61b54f BC generated match -BUSYBOX/ebee301c8b0 BC generated match -BUSYBOX/b273d665181 BC generated match -BUSYBOX/df7b6577c6a BC generated match -BUSYBOX/061fd0a353e BC generated match -BUSYBOX/eef2317b9f5 BC generated match -BUSYBOX/192c35f6eb2 BC generated match -BUSYBOX/2631486f1bf BC generated match +LINUX/218ad12f42e BC generated none 0/0 none 0/0 +LINUX/ae249b5fa27 BC generated none 0/2 none 0/2 +LINUX/e67bc51e574 BC generated none 0/0 none 0/0 +LINUX/c708c57e247 BC generated match 1/1 none 0/0 +LINUX/809e660f438 BC generated none 0/0 none 0/0 +LINUX/0f8f8094d28 BC generated none 0/0 none 0/0 +LINUX/6252547b8a7 BC generated match 2/2 missing 2/1 +LINUX/d6c7e113959 BC generated none 0/0 none 0/1 +LINUX/e39363a9def BC generated match 1/1 match 1/1 +LINUX/30e053248da BC generated match 2/3 match 1/3 +LINUX/d549f55f2e1 BC generated none 0/0 none 0/0 +LINUX/7acf6cd80b2 BC generated match 3/3 match 2/2 +LINUX/60e233a5660 BC generated none 0/0 none 0/0 +LINUX/63878acfafb BC generated none 0/1 none 0/1 +BUSYBOX/5275b1e49f6 BC generated none 0/13 none 0/5 +BUSYBOX/5cd6461b6fb BC generated none 0/0 none 0/0 +BUSYBOX/1b487ea8a69 BC generated match 1/2 match 1/2 +BUSYBOX/b7ebc61b54f BC generated none 0/0 none 0/0 +BUSYBOX/ebee301c8b0 BC generated none 0/2 none 0/2 +BUSYBOX/b273d665181 BC generated match 1/5 match 1/4 +BUSYBOX/df7b6577c6a BC generated none 0/0 none 0/0 +BUSYBOX/061fd0a353e BC generated none 0/2 none 0/2 +BUSYBOX/eef2317b9f5 BC generated match 1/3 match 1/3 +BUSYBOX/192c35f6eb2 BC generated none 0/0 none 0/0 +BUSYBOX/2631486f1bf BC generated match 1/14 missing 2/5 BUSYBOX/95755181b82 BC failed * -BUSYBOX/cc3f20b9bdf BC generated match -BUSYBOX/cf1f2ace391 BC generated match -BUSYBOX/bc0ffc0e971 BC generated match -BUSYBOX/b62bd7b261b BC generated match -BUSYBOX/0301ffab3d9 BC generated match -BUSYBOX/199501f2a00 BC generated missing: Null pointer passed to 2nd parameter expecting 'nonnull' -APACHE/d0040a07aec BC generated match -APACHE/c76df14dfb4 BC generated match -APACHE/97ecbec1237 BC generated match -APACHE/bbeb0516cf0 BC generated missing: Null pointer passed to 1st parameter expecting 'nonnull' -APACHE/1f46088b38d BC generated match -APACHE/9327311d30f BC generated match -APACHE/35ae2e259e4 BC generated missing: Potential leak of memory pointed to by 'eckey' -APACHE/4202d5fee3e BC generated match +BUSYBOX/cc3f20b9bdf BC generated none 0/0 none 0/0 +BUSYBOX/cf1f2ace391 BC generated none 0/0 none 0/0 +BUSYBOX/bc0ffc0e971 BC generated missing 1/8 missing 1/2 +BUSYBOX/b62bd7b261b BC generated match 2/14 match 2/5 +BUSYBOX/0301ffab3d9 BC generated none 0/1 none 0/1 +BUSYBOX/199501f2a00 BC generated missing 1/1 missing 1/1 +APACHE/d0040a07aec BC generated none 0/0 none 0/0 +APACHE/c76df14dfb4 BC generated match 1/4 match 1/4 +APACHE/97ecbec1237 BC generated none 0/0 none 0/0 +APACHE/bbeb0516cf0 BC generated missing 1/0 missing 1/0 +APACHE/1f46088b38d BC generated none 0/0 none 0/0 +APACHE/9327311d30f BC generated none 0/0 none 0/0 +APACHE/35ae2e259e4 BC generated missing 1/6 match 2/5 +APACHE/4202d5fee3e BC generated none 0/0 none 0/0 APACHE/b833f064550 SuperC failed * APACHE/b833f064550 BC failed * -APACHE/581635e28f1 BC generated match -APACHE/2a6cbfa00e0 BC generated missing: Potential leak of memory pointed to by 'sc' -APACHE/1a3c8e3d840 BC generated match -APACHE/dbafef17dd1 BC generated match -APACHE/3407eccc321 BC generated match -APACHE/664e3aac6dd BC generated match -APACHE/d05e574ec26 BC generated missing: Potential leak of memory pointed to by 'buf' -APACHE/6338509eb37 BC generated match -APACHE/0900800fbab BC generated match -APACHE/0ddfa412ee9 BC generated match -APACHE/4945115b2e7 BC generated match -APACHE/56d9881993f BC generated match -APACHE/1b48bb3c1af BC generated match +APACHE/581635e28f1 BC generated none 0/0 none 0/1 +APACHE/2a6cbfa00e0 BC generated missing 1/0 missing 1/0 +APACHE/1a3c8e3d840 BC generated none 0/2 none 0/2 +APACHE/test SuperC failed * +APACHE/test BC failed * +APACHE/dbafef17dd1 BC generated none 0/0 none 0/0 +APACHE/3407eccc321 BC generated none 0/0 none 0/0 +APACHE/664e3aac6dd BC generated none 0/0 none 0/0 +APACHE/d05e574ec26 BC generated missing 1/7 none 0/4 +APACHE/6338509eb37 BC generated none 0/0 none 0/0 +APACHE/0900800fbab BC generated none 0/0 none 0/0 +APACHE/0ddfa412ee9 BC generated none 0/0 none 0/0 +APACHE/4945115b2e7 BC generated none 0/0 missing 2/0 +APACHE/56d9881993f BC generated none 0/0 none 0/0 +APACHE/1b48bb3c1af BC generated match 1/3 none 0/0 diff --git a/src/superc/SugarC.java b/src/superc/SugarC.java index c8a96da4..0bf727c7 100644 --- a/src/superc/SugarC.java +++ b/src/superc/SugarC.java @@ -216,7 +216,10 @@ public void init() { bool("make-main", "make-main", false, "Create a main function to call main variants."). bool("keep-mem", "keep-mem", false, - "Retains free and alloc function naming for static analysis."). + "Retains naming for memory related functions used in static analysis."). + bool("hide-static-error", "hide-static-error", false, + "Adds a macro definition to replace static type error functions with empty space"). + // Output and debugging bool("printAST", "printAST", false, "Print the parsed AST."). @@ -568,6 +571,10 @@ public Node parse(Reader in, File file) throws IOException, ParseException { // write the user-defined types at the top of the scope. System.out.print(scope.getDeclarations(pcTrue)); + + if (runtime.test("hide-static-error")) { + System.out.print("#define __static_type_error(msg) ;"); + } // write the transformed C System.out.print(CContext.getOutput()); diff --git a/src/superc/cdesugarer/CActions.java b/src/superc/cdesugarer/CActions.java index 999a596e..0989ecd9 100644 --- a/src/superc/cdesugarer/CActions.java +++ b/src/superc/cdesugarer/CActions.java @@ -8355,7 +8355,7 @@ public void dispatch(int id, Subparser subparser) { boolean wrotePrologue = false; static boolean keepMem = false; -static String memNames[] = {"malloc", "calloc", "free"}; +static String memNames[] = {"malloc", "calloc", "free", "fopen", "fclose", "rand"}; public static void keepMemoryNames(boolean f) { keepMem = f; diff --git a/src/superc/cdesugarer/desugarer.y b/src/superc/cdesugarer/desugarer.y index 108273b0..9207b72a 100644 --- a/src/superc/cdesugarer/desugarer.y +++ b/src/superc/cdesugarer/desugarer.y @@ -8217,7 +8217,7 @@ AsmKeyword: // ADDED boolean wrotePrologue = false; static boolean keepMem = false; -static String memNames[] = {"malloc", "calloc", "free"}; +static String memNames[] = {"malloc", "calloc", "free", "fopen", "fclose", "rand"}; public static void keepMemoryNames(boolean f) { keepMem = f; From a44a6026581e6721c5b84b5e643ab79ebf01f667 Mon Sep 17 00:00:00 2001 From: pattersonz Date: Tue, 21 Jun 2022 11:18:57 -0500 Subject: [PATCH 15/77] update --- .../varBugs/APACHE-0900800fbab.report | 10 + .../varBugs/APACHE-0ddfa412ee9.report | 6 + .../varBugs/APACHE-1a3c8e3d840.report | 19 + .../varBugs/APACHE-1b48bb3c1af.report | 22 + .../varBugs/APACHE-1f46088b38d.report | 6 + .../varBugs/APACHE-2a6cbfa00e0.report | 26 + .../varBugs/APACHE-3407eccc321.report | 6 + .../varBugs/APACHE-35ae2e259e4.report | 38 + .../varBugs/APACHE-4202d5fee3e.report | 10 + .../varBugs/APACHE-4945115b2e7.report | 10 + .../varBugs/APACHE-56d9881993f.report | 6 + .../varBugs/APACHE-581635e28f1.report | 6 + .../varBugs/APACHE-6338509eb37.report | 6 + .../varBugs/APACHE-664e3aac6dd.report | 6 + .../varBugs/APACHE-9327311d30f.report | 6 + .../varBugs/APACHE-97ecbec1237.report | 6 + .../varBugs/APACHE-b833f064550.report | 5 + .../varBugs/APACHE-bbeb0516cf0.report | 6 + .../varBugs/APACHE-c76df14dfb4.report | 29 + .../varBugs/APACHE-d0040a07aec.report | 10 + .../varBugs/APACHE-d05e574ec26.report | 43 + .../varBugs/APACHE-dbafef17dd1.report | 6 + .../cpp_testsuite/varBugs/APACHE-test.report | 16 + .../varBugs/APACHE/0900800fbab.desugared.c | 60 +- .../varBugs/APACHE/0ddfa412ee9.desugared.c | 2 +- .../varBugs/APACHE/1a3c8e3d840.desugared.c | 1554 +--- .../APACHE/1a3c8e3d840.desugared.clangres | 16 +- .../APACHE/1a3c8e3d840.desugared.inferres | 54 +- .../varBugs/APACHE/1b48bb3c1af.c.desugared.c | 109 + .../varBugs/APACHE/1b48bb3c1af.desugared.c | 2118 ++--- .../APACHE/1b48bb3c1af.desugared.c.clangres | 59 + .../1b48bb3c1af.desugared.c.desugared.c | 0 ...1b48bb3c1af.desugared.c.desugared.clangres | 0 ...1b48bb3c1af.desugared.c.desugared.inferres | 2 + .../APACHE/1b48bb3c1af.desugared.c.inferres | 0 .../APACHE/1b48bb3c1af.desugared.clangres | 13 +- .../varBugs/APACHE/1b48bb3c1afx.desugared.c | 1475 +++ .../varBugs/APACHE/1f46088b38d.desugared.c | 2067 ++--- .../varBugs/APACHE/2a6cbfa00e0.desugared.c | 1103 ++- .../APACHE/2a6cbfa00e0.desugared.clangres | 19 +- .../APACHE/2a6cbfa00e0.desugared.inferres | 14 +- .../varBugs/APACHE/3407eccc321.desugared.c | 4048 ++++----- .../varBugs/APACHE/35ae2e259e4.clangres | 9 +- .../varBugs/APACHE/35ae2e259e4.desugared.c | 141 +- .../APACHE/35ae2e259e4.desugared.clangres | 18 +- .../APACHE/35ae2e259e4.desugared.inferres | 52 +- .../varBugs/APACHE/4202d5fee3e.clangres | 8 + .../varBugs/APACHE/4202d5fee3e.desugared.c | 491 +- .../varBugs/APACHE/4945115b2e7.desugared.c | 3686 ++------ .../varBugs/APACHE/56d9881993f.desugared.c | 2 +- .../varBugs/APACHE/6338509eb37.desugared.c | 2066 ++--- .../varBugs/APACHE/664e3aac6dd.desugared.c | 375 +- .../varBugs/APACHE/9327311d30f.desugared.c | 222 +- .../varBugs/APACHE/97ecbec1237.desugared.c | 1621 +--- .../varBugs/APACHE/bbeb0516cf0.clangres | 4 - .../varBugs/APACHE/bbeb0516cf0.desugared.c | 381 +- .../varBugs/APACHE/c76df14dfb4.clangres | 9 +- .../varBugs/APACHE/c76df14dfb4.desugared.c | 4552 ++++------ .../APACHE/c76df14dfb4.desugared.clangres | 16 +- .../APACHE/c76df14dfb4.desugared.inferres | 56 +- .../varBugs/APACHE/d0040a07aec.clangres | 6 +- .../varBugs/APACHE/d0040a07aec.desugared.c | 625 +- .../varBugs/APACHE/d05e574ec26.clangres | 4 - .../varBugs/APACHE/d05e574ec26.desugared.c | 617 +- .../APACHE/d05e574ec26.desugared.clangres | 24 +- .../APACHE/d05e574ec26.desugared.inferres | 48 +- .../varBugs/APACHE/dbafef17dd1.desugared.c | 397 +- .../APACHE/infer-out/.infer_runstate.json | 1 - .../varBugs/APACHE/infer-out/bugs.txt | 1 - .../infer-out/config-impact-report.json | 1 - .../APACHE/infer-out/costs-report.json | 1 - .../varBugs/APACHE/infer-out/logs | 114 - .../varBugs/APACHE/infer-out/report.json | 1 - .../varBugs/APACHE/infer-out/report.txt | 23 - .../varBugs/APACHE/infer-out/results.db | Bin 1310720 -> 0 bytes .../varBugs/APACHE/infer-out/results.db-shm | Bin 32768 -> 0 bytes .../varBugs/APACHE/infer-out/results.db-wal | Bin 3443192 -> 0 bytes .../tmp/clang_command_.tmp.5962e4.txt | 11 - .../tmp/clang_command_.tmp.b9e75d.txt | 62 - fonda/cpp_testsuite/varBugs/APACHE/test.c | 15 + .../varBugs/APACHE/test.clangres | 4 + .../varBugs/APACHE/test.desugared.c | 32 + .../varBugs/APACHE/test.desugared.clangres | 0 .../varBugs/APACHE/test.desugared.inferres | 2 + .../varBugs/APACHE/test.inferres | 0 .../varBugs/BUSYBOX-0301ffab3d9.report | 6 + .../varBugs/BUSYBOX-061fd0a353e.report | 21 + .../varBugs/BUSYBOX-192c35f6eb2.report | 6 + .../varBugs/BUSYBOX-199501f2a00.report | 17 + .../varBugs/BUSYBOX-1b487ea8a69.report | 22 + .../varBugs/BUSYBOX-2631486f1bf.report | 42 + .../varBugs/BUSYBOX-5275b1e49f6.report | 49 + .../varBugs/BUSYBOX-5cd6461b6fb.report | 16 + .../varBugs/BUSYBOX-95755181b82.report | 15 + .../varBugs/BUSYBOX-b273d665181.report | 31 + .../varBugs/BUSYBOX-b62bd7b261b.report | 66 + .../varBugs/BUSYBOX-b7ebc61b54f.report | 6 + .../varBugs/BUSYBOX-bc0ffc0e971.report | 47 + .../varBugs/BUSYBOX-cc3f20b9bdf.report | 4 + .../varBugs/BUSYBOX-cf1f2ace391.report | 6 + .../varBugs/BUSYBOX-df7b6577c6a.report | 6 + .../varBugs/BUSYBOX-ebee301c8b0.report | 13 + .../varBugs/BUSYBOX-eef2317b9f5.report | 9 + .../varBugs/BUSYBOX/0301ffab3d9.desugared.c | 56 +- .../BUSYBOX/0301ffab3d9.desugared.clangres | 4 - .../BUSYBOX/0301ffab3d9.desugared.inferres | 14 +- .../varBugs/BUSYBOX/061fd0a353e.clangres | 14 +- .../varBugs/BUSYBOX/061fd0a353e.desugared.c | 3405 ------- .../BUSYBOX/061fd0a353e.desugared.clangres | 7 - .../BUSYBOX/061fd0a353e.desugared.inferres | 85 +- .../varBugs/BUSYBOX/192c35f6eb2.desugared.c | 841 +- .../varBugs/BUSYBOX/199501f2a00.desugared.c | 3644 ++------ .../BUSYBOX/199501f2a00.desugared.clangres | 9 +- .../BUSYBOX/199501f2a00.desugared.inferres | 27 +- .../varBugs/BUSYBOX/1b487ea8a69.clangres | 4 - .../varBugs/BUSYBOX/1b487ea8a69.desugared.c | 657 +- .../BUSYBOX/1b487ea8a69.desugared.clangres | 4 +- .../BUSYBOX/1b487ea8a69.desugared.inferres | 28 +- .../varBugs/BUSYBOX/2631486f1bf.desugared.c | 3995 +++------ .../BUSYBOX/2631486f1bf.desugared.clangres | 62 +- .../BUSYBOX/2631486f1bf.desugared.inferres | 78 +- .../varBugs/BUSYBOX/5275b1e49f6.desugared.c | 3708 ++------ .../BUSYBOX/5275b1e49f6.desugared.clangres | 83 +- .../BUSYBOX/5275b1e49f6.desugared.inferres | 74 +- .../varBugs/BUSYBOX/5cd6461b6fb.desugared.c | 4126 ++++----- .../varBugs/BUSYBOX/95755181b82.clangres | 5 +- .../varBugs/BUSYBOX/95755181b82.desugared.c | 5046 +++++------ .../BUSYBOX/95755181b82.desugared.clangres | 32 +- .../varBugs/BUSYBOX/b273d665181.clangres | 4 - .../varBugs/BUSYBOX/b273d665181.desugared.c | 651 +- .../BUSYBOX/b273d665181.desugared.clangres | 10 +- .../BUSYBOX/b273d665181.desugared.inferres | 48 +- .../varBugs/BUSYBOX/b62bd7b261b.clangres | 7 - .../varBugs/BUSYBOX/b62bd7b261b.desugared.c | 3792 +++----- .../BUSYBOX/b62bd7b261b.desugared.clangres | 56 +- .../BUSYBOX/b62bd7b261b.desugared.inferres | 74 +- .../varBugs/BUSYBOX/b7ebc61b54f.desugared.c | 1509 +--- .../varBugs/BUSYBOX/bc0ffc0e971.clangres | 6 +- .../varBugs/BUSYBOX/bc0ffc0e971.desugared.c | 4732 ++++------ .../BUSYBOX/bc0ffc0e971.desugared.clangres | 52 +- .../BUSYBOX/bc0ffc0e971.desugared.inferres | 28 +- .../varBugs/BUSYBOX/cf1f2ace391.desugared.c | 4770 +++++----- .../varBugs/BUSYBOX/df7b6577c6a.desugared.c | 2144 ++--- .../varBugs/BUSYBOX/ebee301c8b0.clangres | 5 + .../varBugs/BUSYBOX/ebee301c8b0.desugared.c | 631 +- .../BUSYBOX/ebee301c8b0.desugared.clangres | 4 +- .../BUSYBOX/ebee301c8b0.desugared.inferres | 24 +- .../varBugs/BUSYBOX/eef2317b9f5.clangres | 11 +- .../varBugs/BUSYBOX/eef2317b9f5.desugared.c | 1770 ---- .../BUSYBOX/eef2317b9f5.desugared.clangres | 23 +- .../BUSYBOX/eef2317b9f5.desugared.inferres | 45 +- .../varBugs/LINUX-0988c4c7fb5.report | 10 + .../varBugs/LINUX-0dc77b6dabe.report | 24 + .../varBugs/LINUX-0f8f8094d28.report | 34 + .../varBugs/LINUX-1c17e4d4437.report | 10 + .../varBugs/LINUX-1f758a4341a.report | 10 + .../varBugs/LINUX-208d89843b7.report | 6 + .../varBugs/LINUX-218ad12f42e.report | 6 + .../varBugs/LINUX-221ac329e93.report | 6 + .../varBugs/LINUX-242f1a34377.report | 10 + .../varBugs/LINUX-2f02c15a5d9.report | 10 + .../varBugs/LINUX-30e053248da.report | 23 + .../varBugs/LINUX-36855dcfc98.report | 15 + .../varBugs/LINUX-472a474c663.report | 10 + .../varBugs/LINUX-51fd36f3fad.report | 6 + .../varBugs/LINUX-60e233a5660.report | 6 + .../varBugs/LINUX-6252547b8a7.report | 49 + .../varBugs/LINUX-63878acfafb.report | 20 + .../varBugs/LINUX-6515e48932c.report | 10 + .../varBugs/LINUX-657e9649e74.report | 10 + .../varBugs/LINUX-66517915e09.report | 91 + .../varBugs/LINUX-68bb91baa0.report | 16 + .../varBugs/LINUX-6e2b75740be.report | 22 + .../varBugs/LINUX-76baeebf7df.report | 33 + .../varBugs/LINUX-7acf6cd80b2.report | 40 + .../varBugs/LINUX-7c6048b7c83.report | 16 + .../varBugs/LINUX-809e660f438.report | 6 + .../varBugs/LINUX-8c8296223f3.report | 6 + .../varBugs/LINUX-91ea8207168.report | 16 + .../varBugs/LINUX-ae249b5fa27.report | 17 + .../varBugs/LINUX-bc8cec0dff0.report | 6 + .../varBugs/LINUX-c708c57e247.report | 10 + .../varBugs/LINUX-d530db0db90.report | 10 + .../varBugs/LINUX-d549f55f2e1.report | 10 + .../varBugs/LINUX-d6c7e113959.report | 10 + .../varBugs/LINUX-d7e9711760a.report | 5 + .../varBugs/LINUX-e1fbd9210d5.report | 10 + .../varBugs/LINUX-e39363a9def.report | 19 + .../varBugs/LINUX-e67bc51e574.report | 6 + .../varBugs/LINUX-eb91f1d0a53.report | 24 + .../varBugs/LINUX-ee3f34e8572.report | 23 + .../varBugs/LINUX-f3d83e24154.report | 6 + .../varBugs/LINUX-f48ec1d7885.report | 10 + .../varBugs/LINUX-f7ab9b407b3.report | 16 + .../varBugs/LINUX/0988c4c7fb5.desugared.c | 14 +- .../varBugs/LINUX/0dc77b6dabe.clangres | 5 + .../varBugs/LINUX/0dc77b6dabe.desugared.c | 8 +- .../varBugs/LINUX/0f8f8094d28.clangres | 17 +- .../varBugs/LINUX/0f8f8094d28.desugared.c | 87 +- .../varBugs/LINUX/1c17e4d4437.desugared.c | 10 +- .../varBugs/LINUX/1f758a4341a.desugared.c | 4 +- .../varBugs/LINUX/208d89843b7.desugared.c | 1617 +--- .../varBugs/LINUX/218ad12f42e.desugared.c | 4 +- .../varBugs/LINUX/221ac329e93.desugared.c | 7887 ++++++++--------- .../varBugs/LINUX/242f1a34377.desugared.c | 4 +- .../varBugs/LINUX/2f02c15a5d9.desugared.c | 6 +- .../varBugs/LINUX/30e053248da.desugared.c | 2 +- .../varBugs/LINUX/36855dcfc98.clangres | 4 + .../varBugs/LINUX/472a474c663.clangres | 4 - .../varBugs/LINUX/472a474c663.desugared.c | 6 +- .../varBugs/LINUX/51fd36f3fad.desugared.c | 172 +- .../LINUX/51fd36f3fad.desugared.clangres | 10 - .../LINUX/51fd36f3fad.desugared.inferres | 41 +- .../varBugs/LINUX/60e233a5660.clangres | 5 + .../varBugs/LINUX/60e233a5660.desugared.c | 503 +- .../varBugs/LINUX/6252547b8a7.clangres | 7 - .../varBugs/LINUX/6252547b8a7.desugared.c | 4 +- .../varBugs/LINUX/63878acfafb.clangres | 5 + .../varBugs/LINUX/63878acfafb.desugared.c | 18 +- .../varBugs/LINUX/6515e48932c.clangres | 5 + .../varBugs/LINUX/6515e48932c.desugared.c | 4 +- .../varBugs/LINUX/657e9649e74.desugared.c | 129 +- .../varBugs/LINUX/66517915e09.clangres | 5 +- .../varBugs/LINUX/66517915e09.desugared.c | 6 +- .../varBugs/LINUX/68bb91baa0.clangres | 10 +- .../varBugs/LINUX/68bb91baa0.desugared.c | 12 +- .../varBugs/LINUX/6e2b75740be.clangres | 5 + .../varBugs/LINUX/6e2b75740be.desugared.c | 4 +- .../varBugs/LINUX/7acf6cd80b2.desugared.c | 6 +- .../varBugs/LINUX/7c6048b7c83.clangres | 5 + .../varBugs/LINUX/7c6048b7c83.desugared.c | 8 +- .../varBugs/LINUX/809e660f438.desugared.c | 2 +- .../varBugs/LINUX/8c8296223f3.desugared.c | 101 +- .../varBugs/LINUX/91ea8207168.desugared.c | 348 +- .../varBugs/LINUX/ae249b5fa27.desugared.c | 61 +- .../LINUX/ae249b5fa27.desugared.clangres | 4 +- .../LINUX/ae249b5fa27.desugared.inferres | 22 +- .../varBugs/LINUX/bc8cec0dff0.desugared.c | 4 +- .../varBugs/LINUX/c708c57e247.clangres | 4 - .../varBugs/LINUX/d530db0db90.clangres | 4 - .../varBugs/LINUX/d530db0db90.desugared.c | 101 +- .../varBugs/LINUX/d549f55f2e1.clangres | 5 + .../varBugs/LINUX/d549f55f2e1.desugared.c | 1542 +--- .../varBugs/LINUX/d6c7e113959.desugared.c | 6 +- .../varBugs/LINUX/d7e9711760a.clangres | 4 - .../varBugs/LINUX/d7e9711760a.desugared.c | 1424 --- .../LINUX/d7e9711760a.desugared.clangres | 2 +- .../LINUX/d7e9711760a.desugared.inferres | 12 +- .../varBugs/LINUX/e1fbd9210d5.desugared.c | 499 +- .../varBugs/LINUX/e39363a9def.clangres | 4 - .../varBugs/LINUX/e39363a9def.desugared.c | 6 +- .../varBugs/LINUX/e67bc51e574.desugared.c | 38 +- .../varBugs/LINUX/eb91f1d0a53.clangres | 5 + .../varBugs/LINUX/eb91f1d0a53.desugared.c | 40 +- .../varBugs/LINUX/ee3f34e8572.clangres | 9 +- .../varBugs/LINUX/ee3f34e8572.desugared.c | 131 +- .../LINUX/ee3f34e8572.desugared.clangres | 4 +- .../varBugs/LINUX/f3d83e24154.clangres | 5 + .../varBugs/LINUX/f3d83e24154.desugared.c | 23 +- .../varBugs/LINUX/f48ec1d7885.desugared.c | 52 +- .../varBugs/LINUX/f7ab9b407b3.desugared.c | 4 +- .../varBugs/MARLIN-2d22902d080.report | 6 + .../varBugs/MARLIN-2db384a21d6.report | 10 + .../varBugs/MARLIN-30248214c7f.report | 6 + .../varBugs/MARLIN-31873ec707d.report | 6 + .../varBugs/MARLIN-53be0f3399e.report | 10 + .../varBugs/MARLIN-7336e6df070.report | 24 + .../varBugs/MARLIN-831016b09f7.report | 10 + .../varBugs/MARLIN-8c4377dd635.report | 37 + .../varBugs/MARLIN-a7fc1f83c81.report | 6 + .../varBugs/MARLIN-b8e79dce897.report | 16 + .../varBugs/MARLIN-e30bfedce4d.report | 22 + .../varBugs/MARLIN-f87c80889fe.report | 6 + .../varBugs/MARLIN-fc3c76fc164.report | 10 + .../varBugs/MARLIN-fdac8f6cece.report | 6 + .../varBugs/MARLIN/2d22902d080.desugared.c | 228 +- .../varBugs/MARLIN/2db384a21d6.desugared.c | 31 +- .../varBugs/MARLIN/30248214c7f.clangres | 5 + .../varBugs/MARLIN/30248214c7f.desugared.c | 2100 ++--- .../varBugs/MARLIN/31873ec707d.clangres | 35 - .../varBugs/MARLIN/31873ec707d.desugared.c | 1443 +-- .../varBugs/MARLIN/53be0f3399e.desugared.c | 4275 +++------ .../MARLIN/53be0f3399e.desugared.clangres | 7 - .../MARLIN/53be0f3399e.desugared.inferres | 2 + .../varBugs/MARLIN/7336e6df070.desugared.c | 521 +- .../varBugs/MARLIN/831016b09f7.clangres | 10 - .../varBugs/MARLIN/831016b09f7.desugared.c | 38 +- .../MARLIN/831016b09f7.desugared.clangres | 4 - .../MARLIN/831016b09f7.desugared.inferres | 14 +- .../varBugs/MARLIN/8c4377dd635.clangres | 8 +- .../varBugs/MARLIN/8c4377dd635.desugared.c | 132 +- .../MARLIN/8c4377dd635.desugared.clangres | 9 +- .../MARLIN/8c4377dd635.desugared.inferres | 50 +- .../varBugs/MARLIN/a7fc1f83c81.desugared.c | 322 +- .../MARLIN/a7fc1f83c81.desugared.clangres | 10 - .../MARLIN/a7fc1f83c81.desugared.inferres | 32 +- .../varBugs/MARLIN/b8e79dce897.desugared.c | 519 +- .../varBugs/MARLIN/e30bfedce4d.desugared.c | 2 +- .../varBugs/MARLIN/f87c80889fe.desugared.c | 947 +- .../varBugs/MARLIN/fc3c76fc164.desugared.c | 3 +- .../varBugs/MARLIN/fdac8f6cece.desugared.c | 13 +- fonda/cpp_testsuite/varBugs/RecursiveConfig.h | 350 + fonda/cpp_testsuite/varBugs/configs.json | 2 +- .../varBugs/infer-out/.infer_runstate.json | 2 +- fonda/cpp_testsuite/varBugs/infer-out/logs | 230 +- .../varBugs/infer-out/results.db-shm | Bin 32768 -> 32768 bytes .../varBugs/infer-out/results.db-wal | Bin 1901968 -> 1672424 bytes ...174c.txt => clang_command_.tmp.3490f2.txt} | 0 ...4e32.txt => clang_command_.tmp.403c06.txt} | 0 fonda/cpp_testsuite/varBugs/runTests.py | 194 +- fonda/cpp_testsuite/varBugs/summaryTable.txt | 1672 +++- .../cpp_testsuite/varBugs/summaryTableRec.txt | 825 ++ .../cpp_testsuite/varBugs/summaryTableReg.txt | 1051 +++ fonda/cpp_testsuite/varBugs/test.c | 2 + 314 files changed, 40801 insertions(+), 65775 deletions(-) create mode 100644 fonda/cpp_testsuite/varBugs/APACHE-0900800fbab.report create mode 100644 fonda/cpp_testsuite/varBugs/APACHE-0ddfa412ee9.report create mode 100644 fonda/cpp_testsuite/varBugs/APACHE-1a3c8e3d840.report create mode 100644 fonda/cpp_testsuite/varBugs/APACHE-1b48bb3c1af.report create mode 100644 fonda/cpp_testsuite/varBugs/APACHE-1f46088b38d.report create mode 100644 fonda/cpp_testsuite/varBugs/APACHE-2a6cbfa00e0.report create mode 100644 fonda/cpp_testsuite/varBugs/APACHE-3407eccc321.report create mode 100644 fonda/cpp_testsuite/varBugs/APACHE-35ae2e259e4.report create mode 100644 fonda/cpp_testsuite/varBugs/APACHE-4202d5fee3e.report create mode 100644 fonda/cpp_testsuite/varBugs/APACHE-4945115b2e7.report create mode 100644 fonda/cpp_testsuite/varBugs/APACHE-56d9881993f.report create mode 100644 fonda/cpp_testsuite/varBugs/APACHE-581635e28f1.report create mode 100644 fonda/cpp_testsuite/varBugs/APACHE-6338509eb37.report create mode 100644 fonda/cpp_testsuite/varBugs/APACHE-664e3aac6dd.report create mode 100644 fonda/cpp_testsuite/varBugs/APACHE-9327311d30f.report create mode 100644 fonda/cpp_testsuite/varBugs/APACHE-97ecbec1237.report create mode 100644 fonda/cpp_testsuite/varBugs/APACHE-b833f064550.report create mode 100644 fonda/cpp_testsuite/varBugs/APACHE-bbeb0516cf0.report create mode 100644 fonda/cpp_testsuite/varBugs/APACHE-c76df14dfb4.report create mode 100644 fonda/cpp_testsuite/varBugs/APACHE-d0040a07aec.report create mode 100644 fonda/cpp_testsuite/varBugs/APACHE-d05e574ec26.report create mode 100644 fonda/cpp_testsuite/varBugs/APACHE-dbafef17dd1.report create mode 100644 fonda/cpp_testsuite/varBugs/APACHE-test.report create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.c.desugared.c create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c.clangres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c.desugared.c create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1afx.desugared.c delete mode 100644 fonda/cpp_testsuite/varBugs/APACHE/infer-out/.infer_runstate.json delete mode 100644 fonda/cpp_testsuite/varBugs/APACHE/infer-out/bugs.txt delete mode 100644 fonda/cpp_testsuite/varBugs/APACHE/infer-out/config-impact-report.json delete mode 100644 fonda/cpp_testsuite/varBugs/APACHE/infer-out/costs-report.json delete mode 100644 fonda/cpp_testsuite/varBugs/APACHE/infer-out/logs delete mode 100644 fonda/cpp_testsuite/varBugs/APACHE/infer-out/report.json delete mode 100644 fonda/cpp_testsuite/varBugs/APACHE/infer-out/report.txt delete mode 100644 fonda/cpp_testsuite/varBugs/APACHE/infer-out/results.db delete mode 100644 fonda/cpp_testsuite/varBugs/APACHE/infer-out/results.db-shm delete mode 100644 fonda/cpp_testsuite/varBugs/APACHE/infer-out/results.db-wal delete mode 100644 fonda/cpp_testsuite/varBugs/APACHE/infer-out/tmp/clang_command_.tmp.5962e4.txt delete mode 100644 fonda/cpp_testsuite/varBugs/APACHE/infer-out/tmp/clang_command_.tmp.b9e75d.txt create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/test.c create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/test.clangres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/test.desugared.c create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/test.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/test.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/test.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX-0301ffab3d9.report create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX-061fd0a353e.report create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX-192c35f6eb2.report create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX-199501f2a00.report create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX-1b487ea8a69.report create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX-2631486f1bf.report create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX-5275b1e49f6.report create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX-5cd6461b6fb.report create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX-95755181b82.report create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX-b273d665181.report create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX-b62bd7b261b.report create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX-b7ebc61b54f.report create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX-bc0ffc0e971.report create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX-cc3f20b9bdf.report create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX-cf1f2ace391.report create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX-df7b6577c6a.report create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX-ebee301c8b0.report create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX-eef2317b9f5.report create mode 100644 fonda/cpp_testsuite/varBugs/LINUX-0988c4c7fb5.report create mode 100644 fonda/cpp_testsuite/varBugs/LINUX-0dc77b6dabe.report create mode 100644 fonda/cpp_testsuite/varBugs/LINUX-0f8f8094d28.report create mode 100644 fonda/cpp_testsuite/varBugs/LINUX-1c17e4d4437.report create mode 100644 fonda/cpp_testsuite/varBugs/LINUX-1f758a4341a.report create mode 100644 fonda/cpp_testsuite/varBugs/LINUX-208d89843b7.report create mode 100644 fonda/cpp_testsuite/varBugs/LINUX-218ad12f42e.report create mode 100644 fonda/cpp_testsuite/varBugs/LINUX-221ac329e93.report create mode 100644 fonda/cpp_testsuite/varBugs/LINUX-242f1a34377.report create mode 100644 fonda/cpp_testsuite/varBugs/LINUX-2f02c15a5d9.report create mode 100644 fonda/cpp_testsuite/varBugs/LINUX-30e053248da.report create mode 100644 fonda/cpp_testsuite/varBugs/LINUX-36855dcfc98.report create mode 100644 fonda/cpp_testsuite/varBugs/LINUX-472a474c663.report create mode 100644 fonda/cpp_testsuite/varBugs/LINUX-51fd36f3fad.report create mode 100644 fonda/cpp_testsuite/varBugs/LINUX-60e233a5660.report create mode 100644 fonda/cpp_testsuite/varBugs/LINUX-6252547b8a7.report create mode 100644 fonda/cpp_testsuite/varBugs/LINUX-63878acfafb.report create mode 100644 fonda/cpp_testsuite/varBugs/LINUX-6515e48932c.report create mode 100644 fonda/cpp_testsuite/varBugs/LINUX-657e9649e74.report create mode 100644 fonda/cpp_testsuite/varBugs/LINUX-66517915e09.report create mode 100644 fonda/cpp_testsuite/varBugs/LINUX-68bb91baa0.report create mode 100644 fonda/cpp_testsuite/varBugs/LINUX-6e2b75740be.report create mode 100644 fonda/cpp_testsuite/varBugs/LINUX-76baeebf7df.report create mode 100644 fonda/cpp_testsuite/varBugs/LINUX-7acf6cd80b2.report create mode 100644 fonda/cpp_testsuite/varBugs/LINUX-7c6048b7c83.report create mode 100644 fonda/cpp_testsuite/varBugs/LINUX-809e660f438.report create mode 100644 fonda/cpp_testsuite/varBugs/LINUX-8c8296223f3.report create mode 100644 fonda/cpp_testsuite/varBugs/LINUX-91ea8207168.report create mode 100644 fonda/cpp_testsuite/varBugs/LINUX-ae249b5fa27.report create mode 100644 fonda/cpp_testsuite/varBugs/LINUX-bc8cec0dff0.report create mode 100644 fonda/cpp_testsuite/varBugs/LINUX-c708c57e247.report create mode 100644 fonda/cpp_testsuite/varBugs/LINUX-d530db0db90.report create mode 100644 fonda/cpp_testsuite/varBugs/LINUX-d549f55f2e1.report create mode 100644 fonda/cpp_testsuite/varBugs/LINUX-d6c7e113959.report create mode 100644 fonda/cpp_testsuite/varBugs/LINUX-d7e9711760a.report create mode 100644 fonda/cpp_testsuite/varBugs/LINUX-e1fbd9210d5.report create mode 100644 fonda/cpp_testsuite/varBugs/LINUX-e39363a9def.report create mode 100644 fonda/cpp_testsuite/varBugs/LINUX-e67bc51e574.report create mode 100644 fonda/cpp_testsuite/varBugs/LINUX-eb91f1d0a53.report create mode 100644 fonda/cpp_testsuite/varBugs/LINUX-ee3f34e8572.report create mode 100644 fonda/cpp_testsuite/varBugs/LINUX-f3d83e24154.report create mode 100644 fonda/cpp_testsuite/varBugs/LINUX-f48ec1d7885.report create mode 100644 fonda/cpp_testsuite/varBugs/LINUX-f7ab9b407b3.report create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN-2d22902d080.report create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN-2db384a21d6.report create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN-30248214c7f.report create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN-31873ec707d.report create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN-53be0f3399e.report create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN-7336e6df070.report create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN-831016b09f7.report create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN-8c4377dd635.report create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN-a7fc1f83c81.report create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN-b8e79dce897.report create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN-e30bfedce4d.report create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN-f87c80889fe.report create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN-fc3c76fc164.report create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN-fdac8f6cece.report create mode 100644 fonda/cpp_testsuite/varBugs/RecursiveConfig.h rename fonda/cpp_testsuite/varBugs/infer-out/tmp/{clang_command_.tmp.42174c.txt => clang_command_.tmp.3490f2.txt} (100%) rename fonda/cpp_testsuite/varBugs/infer-out/tmp/{clang_command_.tmp.e34e32.txt => clang_command_.tmp.403c06.txt} (100%) create mode 100644 fonda/cpp_testsuite/varBugs/summaryTableRec.txt create mode 100644 fonda/cpp_testsuite/varBugs/summaryTableReg.txt create mode 100644 fonda/cpp_testsuite/varBugs/test.c diff --git a/fonda/cpp_testsuite/varBugs/APACHE-0900800fbab.report b/fonda/cpp_testsuite/varBugs/APACHE-0900800fbab.report new file mode 100644 index 00000000..1003ecf7 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE-0900800fbab.report @@ -0,0 +1,10 @@ +APACHE 0900800fbab.c +Macros: + HAVE_SYSLOG + APLOG_MAX_LOGLEVEL +[-UHAVE_SYSLOG -UAPLOG_MAX_LOGLEVEL ] +[-DHAVE_SYSLOG=1 -UAPLOG_MAX_LOGLEVEL ] +[-UHAVE_SYSLOG -DAPLOG_MAX_LOGLEVEL=1 ] +[-DHAVE_SYSLOG=1 -DAPLOG_MAX_LOGLEVEL=1 ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/APACHE-0ddfa412ee9.report b/fonda/cpp_testsuite/varBugs/APACHE-0ddfa412ee9.report new file mode 100644 index 00000000..2180db40 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE-0ddfa412ee9.report @@ -0,0 +1,6 @@ +APACHE 0ddfa412ee9.c +Macros: + HAVE_TLS_ALPN +[-UHAVE_TLS_ALPN ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/APACHE-1a3c8e3d840.report b/fonda/cpp_testsuite/varBugs/APACHE-1a3c8e3d840.report new file mode 100644 index 00000000..f5408078 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE-1a3c8e3d840.report @@ -0,0 +1,19 @@ +APACHE 1a3c8e3d840.c +Macros: + HAVE_TLSV1_X +[-UHAVE_TLSV1_X ] +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.c:273:2: warning: Value stored to '__thisopt_252' is never read [deadcode.DeadStores] + __thisopt_252 = ( 1 << 3 ) ; // L4:L13 + ^ ~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.c:287:2: warning: Value stored to '__thisopt_252' is never read [deadcode.DeadStores] + __thisopt_252 = ( 1 << 3 ) ; // L4:L13 + ^ ~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.c:318:2: warning: Value stored to '__thisopt_252' is never read [deadcode.DeadStores] + __thisopt_252 = ( 1 << 3 ) ; // L4:L13 + ^ ~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.c:332:2: warning: Value stored to '__thisopt_252' is never read [deadcode.DeadStores] + __thisopt_252 = ( 1 << 3 ) ; // L4:L13 + ^ ~~~~~~~~~~ +4 warnings generated. +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/APACHE-1b48bb3c1af.report b/fonda/cpp_testsuite/varBugs/APACHE-1b48bb3c1af.report new file mode 100644 index 00000000..f2b0a106 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE-1b48bb3c1af.report @@ -0,0 +1,22 @@ +APACHE 1b48bb3c1af.c +Macros: + APU_HAS_LDAP + APR_HAS_SHARED_MEMORY +[-UAPU_HAS_LDAP -UAPR_HAS_SHARED_MEMORY ] +[-DAPU_HAS_LDAP=1 -UAPR_HAS_SHARED_MEMORY ] +[-UAPU_HAS_LDAP -DAPR_HAS_SHARED_MEMORY=1 ] +[-DAPU_HAS_LDAP=1 -DAPR_HAS_SHARED_MEMORY=1 ] +103 :: Line:14 + 1st function call argument is an uninitialized value [core.CallAndMessage] +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c:1273:2: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] + __apr_rmm_init_1019 ( __rmm_lock_1023 ) ; // L14 + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c:1276:2: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] + __apr_rmm_init_1020 ( __rmm_lock_1023 ) ; // L14 + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +2 warnings generated. +Matches: + 103 has a match! +Unmatched ids: + None! diff --git a/fonda/cpp_testsuite/varBugs/APACHE-1f46088b38d.report b/fonda/cpp_testsuite/varBugs/APACHE-1f46088b38d.report new file mode 100644 index 00000000..ce5d903c --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE-1f46088b38d.report @@ -0,0 +1,6 @@ +APACHE 1f46088b38d.c +Macros: + SIGPIPE +[-USIGPIPE ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/APACHE-2a6cbfa00e0.report b/fonda/cpp_testsuite/varBugs/APACHE-2a6cbfa00e0.report new file mode 100644 index 00000000..0cd04f44 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE-2a6cbfa00e0.report @@ -0,0 +1,26 @@ +APACHE 2a6cbfa00e0.c +Macros: + SHARED_MODULE +[-USHARED_MODULE ] +97 :: Line:16 + Potential leak of memory pointed to by 'sc' [unix.Malloc] +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c:1496:5: warning: Potential leak of memory pointed to by '__sc_1019' [unix.Malloc] +if (__static_condition_default_1028) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c:1499:5: warning: Potential leak of memory pointed to by '__sc_1018' [unix.Malloc] +if (__static_condition_default_1029) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c:1525:10: warning: Value stored to '__sc_1021' during its initialization is never read [deadcode.DeadStores] +char * (__sc_1021)= malloc (sizeof(char) * 45);// L6 + ^~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c:1527:1: warning: Potential leak of memory pointed to by '__sc_1021' [unix.Malloc] +__static_type_error("type error") ; // L9 +^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c:1531:5: warning: Potential leak of memory pointed to by '__sc_1020' [unix.Malloc] +if (__static_condition_default_1034) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +5 warnings generated. +Matches: +Unmatched ids: + 97 diff --git a/fonda/cpp_testsuite/varBugs/APACHE-3407eccc321.report b/fonda/cpp_testsuite/varBugs/APACHE-3407eccc321.report new file mode 100644 index 00000000..16586262 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE-3407eccc321.report @@ -0,0 +1,6 @@ +APACHE 3407eccc321.c +Macros: + __STDC_VERSION__ +[-U__STDC_VERSION__ ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/APACHE-35ae2e259e4.report b/fonda/cpp_testsuite/varBugs/APACHE-35ae2e259e4.report new file mode 100644 index 00000000..48f86f8f --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE-35ae2e259e4.report @@ -0,0 +1,38 @@ +APACHE 35ae2e259e4.c +Macros: + HAVE_ECC + defined +[-UHAVE_ECC -Udefined ] +[-DHAVE_ECC=1 -Udefined ] +[-UHAVE_ECC -Ddefined=1 ] +[-DHAVE_ECC=1 -Ddefined=1 ] +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1373:17: warning: Dereference of undefined pointer value [core.NullDereference] +* __eckey_798 = 30 ; // L12 +~~~~~~~~~~~~~~~~^~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1397:17: warning: Dereference of undefined pointer value [core.NullDereference] +* __eckey_798 = 15 ; // L17 +~~~~~~~~~~~~~~~~^~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1403:5: warning: Potential leak of memory pointed to by '__eckey_798' [unix.Malloc] +if (__static_condition_default_809) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1442:17: warning: Dereference of undefined pointer value [core.NullDereference] +* __eckey_798 = 30 ; // L12 +~~~~~~~~~~~~~~~~^~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1466:17: warning: Dereference of undefined pointer value [core.NullDereference] +* __eckey_798 = 15 ; // L17 +~~~~~~~~~~~~~~~~^~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1472:5: warning: Potential leak of memory pointed to by '__eckey_798' [unix.Malloc] +if (__static_condition_default_818) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1496:2: warning: Value stored to '__eckey_798' is never read [deadcode.DeadStores] + __eckey_798 = malloc (sizeof(int)) ; // L10 + ^ ~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1499:2: warning: Value stored to '__eckey_798' is never read [deadcode.DeadStores] + __eckey_798 = malloc (sizeof(int)) ; // L10 + ^ ~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1501:5: warning: Potential leak of memory pointed to by '__eckey_798' [unix.Malloc] +if (__static_condition_default_823) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +9 warnings generated. +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/APACHE-4202d5fee3e.report b/fonda/cpp_testsuite/varBugs/APACHE-4202d5fee3e.report new file mode 100644 index 00000000..5ddc5d01 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE-4202d5fee3e.report @@ -0,0 +1,10 @@ +APACHE 4202d5fee3e.c +Macros: + APU_HAS_LDAP + APU_HAS_LDAP_NETSCAPE_SSL +[-UAPU_HAS_LDAP -UAPU_HAS_LDAP_NETSCAPE_SSL ] +[-DAPU_HAS_LDAP=1 -UAPU_HAS_LDAP_NETSCAPE_SSL ] +[-UAPU_HAS_LDAP -DAPU_HAS_LDAP_NETSCAPE_SSL=1 ] +[-DAPU_HAS_LDAP=1 -DAPU_HAS_LDAP_NETSCAPE_SSL=1 ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/APACHE-4945115b2e7.report b/fonda/cpp_testsuite/varBugs/APACHE-4945115b2e7.report new file mode 100644 index 00000000..4ef96384 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE-4945115b2e7.report @@ -0,0 +1,10 @@ +APACHE 4945115b2e7.c +Macros: + DEBUG_CGI + OS2 +[-UDEBUG_CGI -UOS2 ] +[-DDEBUG_CGI=1 -UOS2 ] +[-UDEBUG_CGI -DOS2=1 ] +[-DDEBUG_CGI=1 -DOS2=1 ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/APACHE-56d9881993f.report b/fonda/cpp_testsuite/varBugs/APACHE-56d9881993f.report new file mode 100644 index 00000000..15ced9c4 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE-56d9881993f.report @@ -0,0 +1,6 @@ +APACHE 56d9881993f.c +Macros: + APR_HAS_SENDFILE +[-UAPR_HAS_SENDFILE ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/APACHE-581635e28f1.report b/fonda/cpp_testsuite/varBugs/APACHE-581635e28f1.report new file mode 100644 index 00000000..e8e848ba --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE-581635e28f1.report @@ -0,0 +1,6 @@ +APACHE 581635e28f1.c +Macros: + APR_HAVE_IPV6 +[-UAPR_HAVE_IPV6 ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/APACHE-6338509eb37.report b/fonda/cpp_testsuite/varBugs/APACHE-6338509eb37.report new file mode 100644 index 00000000..0a7c2e98 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE-6338509eb37.report @@ -0,0 +1,6 @@ +APACHE 6338509eb37.c +Macros: + HAVE_FIPS +[-UHAVE_FIPS ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/APACHE-664e3aac6dd.report b/fonda/cpp_testsuite/varBugs/APACHE-664e3aac6dd.report new file mode 100644 index 00000000..3af5000b --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE-664e3aac6dd.report @@ -0,0 +1,6 @@ +APACHE 664e3aac6dd.c +Macros: + WIN32X +[-UWIN32X ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/APACHE-9327311d30f.report b/fonda/cpp_testsuite/varBugs/APACHE-9327311d30f.report new file mode 100644 index 00000000..2349fb60 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE-9327311d30f.report @@ -0,0 +1,6 @@ +APACHE 9327311d30f.c +Macros: + APR_HAS_SHARED_MEMORY +[-UAPR_HAS_SHARED_MEMORY ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/APACHE-97ecbec1237.report b/fonda/cpp_testsuite/varBugs/APACHE-97ecbec1237.report new file mode 100644 index 00000000..c3c09430 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE-97ecbec1237.report @@ -0,0 +1,6 @@ +APACHE 97ecbec1237.c +Macros: + APR_HAS_SHARED_MEMORY +[-UAPR_HAS_SHARED_MEMORY ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/APACHE-b833f064550.report b/fonda/cpp_testsuite/varBugs/APACHE-b833f064550.report new file mode 100644 index 00000000..1e3fae45 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE-b833f064550.report @@ -0,0 +1,5 @@ +APACHE b833f064550.c +Macros: + HAVE_TIMES +[-UHAVE_TIMES ] +File Failed diff --git a/fonda/cpp_testsuite/varBugs/APACHE-bbeb0516cf0.report b/fonda/cpp_testsuite/varBugs/APACHE-bbeb0516cf0.report new file mode 100644 index 00000000..8266ffb4 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE-bbeb0516cf0.report @@ -0,0 +1,6 @@ +APACHE bbeb0516cf0.c +Macros: + APR_FILES_AS_SOCKETS +[-UAPR_FILES_AS_SOCKETS ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/APACHE-c76df14dfb4.report b/fonda/cpp_testsuite/varBugs/APACHE-c76df14dfb4.report new file mode 100644 index 00000000..d7172b18 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE-c76df14dfb4.report @@ -0,0 +1,29 @@ +APACHE c76df14dfb4.c +Macros: + CROSS_COMPILE + defined + NEED_ENHANCED_ESCAPES +[-UCROSS_COMPILE -Udefined -UNEED_ENHANCED_ESCAPES ] +[-DCROSS_COMPILE=1 -Udefined -UNEED_ENHANCED_ESCAPES ] +[-UCROSS_COMPILE -Ddefined=1 -UNEED_ENHANCED_ESCAPES ] +[-DCROSS_COMPILE=1 -Ddefined=1 -UNEED_ENHANCED_ESCAPES ] +[-UCROSS_COMPILE -Udefined -DNEED_ENHANCED_ESCAPES=1 ] +[-DCROSS_COMPILE=1 -Udefined -DNEED_ENHANCED_ESCAPES=1 ] +[-UCROSS_COMPILE -Ddefined=1 -DNEED_ENHANCED_ESCAPES=1 ] +[-DCROSS_COMPILE=1 -Ddefined=1 -DNEED_ENHANCED_ESCAPES=1 ] +[-UCROSS_COMPILE -Udefined -UNEED_ENHANCED_ESCAPES ] +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c:2149:2: warning: Value stored to '__flags_1818' is never read [deadcode.DeadStores] + __flags_1818 |= ( 0x01 ) ; // L4:L42 + ^ ~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c:2213:2: warning: Value stored to '__flags_1818' is never read [deadcode.DeadStores] + __flags_1818 |= ( 0x01 ) ; // L4:L42 + ^ ~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c:2305:2: warning: Value stored to '__flags_1818' is never read [deadcode.DeadStores] + __flags_1818 |= ( 0x01 ) ; // L4:L42 + ^ ~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c:2397:2: warning: Value stored to '__flags_1818' is never read [deadcode.DeadStores] + __flags_1818 |= ( 0x01 ) ; // L4:L42 + ^ ~~~~~~~~ +4 warnings generated. +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/APACHE-d0040a07aec.report b/fonda/cpp_testsuite/varBugs/APACHE-d0040a07aec.report new file mode 100644 index 00000000..2f8a81a7 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE-d0040a07aec.report @@ -0,0 +1,10 @@ +APACHE d0040a07aec.c +Macros: + defined + RLIMIT_NPROC +[-Udefined -URLIMIT_NPROC ] +[-Ddefined=1 -URLIMIT_NPROC ] +[-Udefined -DRLIMIT_NPROC=1 ] +[-Ddefined=1 -DRLIMIT_NPROC=1 ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/APACHE-d05e574ec26.report b/fonda/cpp_testsuite/varBugs/APACHE-d05e574ec26.report new file mode 100644 index 00000000..d38d3b18 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE-d05e574ec26.report @@ -0,0 +1,43 @@ +APACHE d05e574ec26.c +Macros: + APR_HAS_SHARED_MEMORY +[-UAPR_HAS_SHARED_MEMORY ] +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2919:10: warning: Value stored to '__buf_2043' during its initialization is never read [deadcode.DeadStores] +char * (__buf_2043)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2037 ,sizeof(char)));// L16 + ^~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2921:10: warning: Value stored to '__buf_2044' during its initialization is never read [deadcode.DeadStores] +char * (__buf_2044)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2038 ,sizeof(char)));// L16 + ^~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2921:62: warning: Potential leak of memory pointed to by '__buf_2043' [unix.Malloc] +char * (__buf_2044)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2038 ,sizeof(char)));// L16 + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2923:62: warning: Potential leak of memory pointed to by '__buf_2044' [unix.Malloc] +char * (__buf_2045)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2036 ,sizeof(char)));// L16 + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2927:10: warning: Value stored to '__buf_2047' during its initialization is never read [deadcode.DeadStores] +char * (__buf_2047)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2036 ,sizeof(char)));// L16 + ^~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2929:10: warning: Value stored to '__buf_2048' during its initialization is never read [deadcode.DeadStores] +char * (__buf_2048)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2038 ,sizeof(char)));// L16 + ^~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2929:62: warning: Potential leak of memory pointed to by '__buf_2047' [unix.Malloc] +char * (__buf_2048)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2038 ,sizeof(char)));// L16 + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2935:5: warning: Potential leak of memory pointed to by '__buf_2048' [unix.Malloc] +if (__static_condition_default_2053) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2938:5: warning: Potential leak of memory pointed to by '__buf_2041' [unix.Malloc] +if (__static_condition_default_2054) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2941:5: warning: Potential leak of memory pointed to by '__buf_2042' [unix.Malloc] +if (__static_condition_default_2055) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2944:5: warning: Potential leak of memory pointed to by '__buf_2045' [unix.Malloc] +if (__static_condition_default_2056) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2947:5: warning: Potential leak of memory pointed to by '__buf_2046' [unix.Malloc] +if (__static_condition_default_2057) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +12 warnings generated. +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/APACHE-dbafef17dd1.report b/fonda/cpp_testsuite/varBugs/APACHE-dbafef17dd1.report new file mode 100644 index 00000000..4efe630e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE-dbafef17dd1.report @@ -0,0 +1,6 @@ +APACHE dbafef17dd1.c +Macros: + HAS_APACHE_REGEX_LIB +[-UHAS_APACHE_REGEX_LIB ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/APACHE-test.report b/fonda/cpp_testsuite/varBugs/APACHE-test.report new file mode 100644 index 00000000..c23ad083 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE-test.report @@ -0,0 +1,16 @@ +APACHE test.c +Macros: + XX + YY + ZZ +[-UXX -UYY -UZZ ] +[-DXX=1 -UYY -UZZ ] +[-UXX -DYY=1 -UZZ ] +[-DXX=1 -DYY=1 -UZZ ] +[-UXX -UYY -DZZ=1 ] +[-DXX=1 -UYY -DZZ=1 ] +[-UXX -DYY=1 -DZZ=1 ] +[-DXX=1 -DYY=1 -DZZ=1 ] +[-UXX -UYY -UZZ ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/APACHE/0900800fbab.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/0900800fbab.desugared.c index 8a1892c4..e3fcfb6e 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/0900800fbab.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/0900800fbab.desugared.c @@ -7,81 +7,42 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); +extern const bool __static_condition_default_3; +extern const bool __static_condition_default_2; extern const bool __static_condition_default_4; extern const bool __static_condition_default_5; -extern const bool __static_condition_default_9; -extern const bool __static_condition_default_7; -extern const bool __static_condition_default_10; -extern const bool __static_condition_default_8; -extern const bool __static_condition_default_3; -extern const bool __static_condition_default_6; void __static_initializer_default() { __static_renaming("__ap_get_server_module_loglevel_0", "ap_get_server_module_loglevel"); __static_renaming("__main_1", "main"); -__static_renaming("__main_2", "main"); -__static_condition_renaming("__static_condition_default_3", "!(defined HAVE_SYSLOG)"); -__static_condition_renaming("__static_condition_default_4", "!(defined HAVE_SYSLOG) && !(defined APLOG_MAX_LOGLEVEL)"); -__static_condition_renaming("__static_condition_default_5", "!(defined HAVE_SYSLOG) && (defined APLOG_MAX_LOGLEVEL)"); -__static_condition_renaming("__static_condition_default_6", "(defined HAVE_SYSLOG)"); -__static_condition_renaming("__static_condition_default_7", "(defined HAVE_SYSLOG) && (defined AP_DEBUG) && !(defined APLOG_MAX_LOGLEVEL)"); -__static_condition_renaming("__static_condition_default_8", "(defined HAVE_SYSLOG) && (defined AP_DEBUG) && (defined APLOG_MAX_LOGLEVEL)"); -__static_condition_renaming("__static_condition_default_9", "(defined HAVE_SYSLOG) && !(defined AP_DEBUG) && !(defined APLOG_MAX_LOGLEVEL)"); -__static_condition_renaming("__static_condition_default_10", "(defined HAVE_SYSLOG) && !(defined AP_DEBUG) && (defined APLOG_MAX_LOGLEVEL)"); +__static_condition_renaming("__static_condition_default_2", "(defined AP_DEBUG) && !(defined APLOG_MAX_LOGLEVEL)"); +__static_condition_renaming("__static_condition_default_3", "(defined AP_DEBUG) && (defined APLOG_MAX_LOGLEVEL)"); +__static_condition_renaming("__static_condition_default_4", "!(defined AP_DEBUG) && !(defined APLOG_MAX_LOGLEVEL)"); +__static_condition_renaming("__static_condition_default_5", "!(defined AP_DEBUG) && (defined APLOG_MAX_LOGLEVEL)"); }; void (__ap_get_server_module_loglevel_0) ();// L7 int (__main_1) (void ) { -if (__static_condition_default_3) { - -{ -{ - - - -if (__static_condition_default_4) { -if ( 1 <= 2 )// L16 -{ -__static_type_error("type error") ; // L17 -} -} -if (__static_condition_default_5) { -if ( 1 <= 3 )// L16 -{ -__static_type_error("type error") ; // L20 -} -} -return 0 ;// L23 -} -} - - -} -} -int (__main_2) (void ) { - -if (__static_condition_default_6) { - { { -if (__static_condition_default_7) { +if (__static_condition_default_2) { if ( 1 <= 2 )// L16 { __ap_get_server_module_loglevel_0 ( ) ; // L17 } } -if (__static_condition_default_8) { +if (__static_condition_default_3) { if ( 1 <= 3 )// L16 { __ap_get_server_module_loglevel_0 ( ) ; // L20 } } -if (__static_condition_default_9) { +if (__static_condition_default_4) { if ( 1 <= 2 )// L16 { do @@ -98,7 +59,7 @@ do while( 0 );// L9:L17 } } -if (__static_condition_default_10) { +if (__static_condition_default_5) { if ( 1 <= 3 )// L16 { do @@ -121,5 +82,4 @@ return 0 ;// L23 } -} diff --git a/fonda/cpp_testsuite/varBugs/APACHE/0ddfa412ee9.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/0ddfa412ee9.desugared.c index cfae7068..24e0b1b9 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/0ddfa412ee9.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/0ddfa412ee9.desugared.c @@ -8,8 +8,8 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); extern const bool __static_condition_default_2; -extern const bool __static_condition_default_7; extern const bool __static_condition_default_6; +extern const bool __static_condition_default_7; void __static_initializer_default() { __static_renaming("__ssl_array_index_0", "ssl_array_index"); __static_renaming("__ssl_cmp_alpn_protos_1", "ssl_cmp_alpn_protos"); diff --git a/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.c index 6350349f..30fc2316 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.c @@ -7,1320 +7,306 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_67; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_276; -extern const bool __static_condition_default_273; -extern const bool __static_condition_default_252; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_414; -extern const bool __static_condition_default_394; -extern const bool __static_condition_default_429; -extern const bool __static_condition_default_629; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_581; -extern const bool __static_condition_default_810; -extern const bool __static_condition_default_361; -extern const bool __static_condition_default_423; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_352; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_261; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_285; -extern const bool __static_condition_default_420; -extern const bool __static_condition_default_237; -extern const bool __static_condition_default_378; -extern const bool __static_condition_default_594; -extern const bool __static_condition_default_627; -extern const bool __static_condition_default_814; -extern const bool __static_condition_default_595; -extern const bool __static_condition_default_379; -extern const bool __static_condition_default_349; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_806; -extern const bool __static_condition_default_579; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_426; -extern const bool __static_condition_default_804; -extern const bool __static_condition_default_325; -extern const bool __static_condition_default_308; -extern const bool __static_condition_default_279; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_243; -extern const bool __static_condition_default_812; -extern const bool __static_condition_default_808; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_302; -extern const bool __static_condition_default_604; -extern const bool __static_condition_default_234; +extern const bool __static_condition_default_109; +extern const bool __static_condition_default_151; extern const bool __static_condition_default_255; -extern const bool __static_condition_default_60; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_802; -extern const bool __static_condition_default_215; -extern const bool __static_condition_default_240; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_803; -extern const bool __static_condition_default_305; -extern const bool __static_condition_default_805; +extern const bool __static_condition_default_260; +extern const bool __static_condition_default_130; +extern const bool __static_condition_default_149; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_132; +extern const bool __static_condition_default_107; +extern const bool __static_condition_default_190; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_157; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_256; +extern const bool __static_condition_default_155; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_122; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); __static_renaming("__wchar_t_2", "wchar_t"); -__static_renaming("__idtype_t_8", "idtype_t"); -__static_renaming("____u_char_9", "__u_char"); -__static_renaming("____u_short_10", "__u_short"); -__static_renaming("____u_int_11", "__u_int"); -__static_renaming("____u_long_12", "__u_long"); -__static_renaming("____int8_t_13", "__int8_t"); -__static_renaming("____uint8_t_14", "__uint8_t"); -__static_renaming("____int16_t_15", "__int16_t"); -__static_renaming("____uint16_t_16", "__uint16_t"); -__static_renaming("____int32_t_17", "__int32_t"); -__static_renaming("____uint32_t_18", "__uint32_t"); -__static_renaming("____int64_t_19", "__int64_t"); -__static_renaming("____uint64_t_20", "__uint64_t"); -__static_renaming("____quad_t_21", "__quad_t"); -__static_renaming("____u_quad_t_22", "__u_quad_t"); -__static_renaming("____dev_t_23", "__dev_t"); -__static_renaming("____uid_t_24", "__uid_t"); -__static_renaming("____gid_t_25", "__gid_t"); -__static_renaming("____ino_t_26", "__ino_t"); -__static_renaming("____ino64_t_27", "__ino64_t"); -__static_renaming("____mode_t_28", "__mode_t"); -__static_renaming("____nlink_t_29", "__nlink_t"); -__static_renaming("____off_t_30", "__off_t"); -__static_renaming("____off64_t_31", "__off64_t"); -__static_renaming("____pid_t_32", "__pid_t"); -__static_renaming("____fsid_t_36", "__fsid_t"); -__static_renaming("____clock_t_37", "__clock_t"); -__static_renaming("____rlim_t_38", "__rlim_t"); -__static_renaming("____rlim64_t_39", "__rlim64_t"); -__static_renaming("____id_t_40", "__id_t"); -__static_renaming("____time_t_41", "__time_t"); -__static_renaming("____useconds_t_42", "__useconds_t"); -__static_renaming("____suseconds_t_43", "__suseconds_t"); -__static_renaming("____daddr_t_44", "__daddr_t"); -__static_renaming("____key_t_45", "__key_t"); -__static_renaming("____clockid_t_46", "__clockid_t"); -__static_renaming("____timer_t_47", "__timer_t"); -__static_renaming("____blksize_t_48", "__blksize_t"); -__static_renaming("____blkcnt_t_49", "__blkcnt_t"); -__static_renaming("____blkcnt64_t_50", "__blkcnt64_t"); -__static_renaming("____fsblkcnt_t_51", "__fsblkcnt_t"); -__static_renaming("____fsblkcnt64_t_52", "__fsblkcnt64_t"); -__static_renaming("____fsfilcnt_t_53", "__fsfilcnt_t"); -__static_renaming("____fsfilcnt64_t_54", "__fsfilcnt64_t"); -__static_renaming("____fsword_t_55", "__fsword_t"); -__static_renaming("____ssize_t_56", "__ssize_t"); -__static_renaming("____syscall_slong_t_57", "__syscall_slong_t"); -__static_renaming("____syscall_ulong_t_58", "__syscall_ulong_t"); -__static_renaming("____loff_t_59", "__loff_t"); -__static_renaming("____qaddr_t_61", "__qaddr_t"); -__static_renaming("____caddr_t_62", "__caddr_t"); -__static_renaming("____intptr_t_63", "__intptr_t"); -__static_renaming("____socklen_t_64", "__socklen_t"); -__static_renaming("____bswap_32_66", "__bswap_32"); -__static_renaming("____bswap_64_69", "__bswap_64"); -__static_renaming("____WAIT_STATUS_89", "__WAIT_STATUS"); -__static_renaming("__div_t_94", "div_t"); -__static_renaming("__ldiv_t_99", "ldiv_t"); -__static_renaming("__lldiv_t_104", "lldiv_t"); -__static_renaming("____ctype_get_mb_cur_max_105", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_106", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_107", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_108", "__ctype_get_mb_cur_max"); -__static_renaming("__atof_110", "atof"); -__static_renaming("__atof_111", "atof"); -__static_renaming("__atoi_113", "atoi"); -__static_renaming("__atoi_114", "atoi"); -__static_renaming("__atol_116", "atol"); -__static_renaming("__atol_117", "atol"); -__static_renaming("__atoll_119", "atoll"); -__static_renaming("__atoll_120", "atoll"); -__static_renaming("__strtod_123", "strtod"); -__static_renaming("__strtof_126", "strtof"); -__static_renaming("__strtold_129", "strtold"); -__static_renaming("__strtol_133", "strtol"); -__static_renaming("__strtoul_137", "strtoul"); -__static_renaming("__strtoq_141", "strtoq"); -__static_renaming("__strtouq_145", "strtouq"); -__static_renaming("__strtoll_149", "strtoll"); -__static_renaming("__strtoll_150", "strtoll"); -__static_renaming("__strtoull_154", "strtoull"); -__static_renaming("__l64a_159", "l64a"); -__static_renaming("__l64a_160", "l64a"); -__static_renaming("__a64l_162", "a64l"); -__static_renaming("__a64l_163", "a64l"); -__static_renaming("____u_char_164", "__u_char"); -__static_renaming("____u_short_165", "__u_short"); -__static_renaming("____u_int_166", "__u_int"); -__static_renaming("____u_long_167", "__u_long"); -__static_renaming("____int8_t_168", "__int8_t"); -__static_renaming("____uint8_t_169", "__uint8_t"); -__static_renaming("____int16_t_170", "__int16_t"); -__static_renaming("____uint16_t_171", "__uint16_t"); -__static_renaming("____int32_t_172", "__int32_t"); -__static_renaming("____uint32_t_173", "__uint32_t"); -__static_renaming("____int64_t_174", "__int64_t"); -__static_renaming("____uint64_t_175", "__uint64_t"); -__static_renaming("____quad_t_176", "__quad_t"); -__static_renaming("____u_quad_t_177", "__u_quad_t"); -__static_renaming("____dev_t_178", "__dev_t"); -__static_renaming("____uid_t_179", "__uid_t"); -__static_renaming("____gid_t_180", "__gid_t"); -__static_renaming("____ino_t_181", "__ino_t"); -__static_renaming("____ino64_t_182", "__ino64_t"); -__static_renaming("____mode_t_183", "__mode_t"); -__static_renaming("____nlink_t_184", "__nlink_t"); -__static_renaming("____off_t_185", "__off_t"); -__static_renaming("____off64_t_186", "__off64_t"); -__static_renaming("____pid_t_187", "__pid_t"); -__static_renaming("____fsid_t_191", "__fsid_t"); -__static_renaming("____clock_t_192", "__clock_t"); -__static_renaming("____rlim_t_193", "__rlim_t"); -__static_renaming("____rlim64_t_194", "__rlim64_t"); -__static_renaming("____id_t_195", "__id_t"); -__static_renaming("____time_t_196", "__time_t"); -__static_renaming("____useconds_t_197", "__useconds_t"); -__static_renaming("____suseconds_t_198", "__suseconds_t"); -__static_renaming("____daddr_t_199", "__daddr_t"); -__static_renaming("____key_t_200", "__key_t"); -__static_renaming("____clockid_t_201", "__clockid_t"); -__static_renaming("____timer_t_202", "__timer_t"); -__static_renaming("____blksize_t_203", "__blksize_t"); -__static_renaming("____blkcnt_t_204", "__blkcnt_t"); -__static_renaming("____blkcnt64_t_205", "__blkcnt64_t"); -__static_renaming("____fsblkcnt_t_206", "__fsblkcnt_t"); -__static_renaming("____fsblkcnt64_t_207", "__fsblkcnt64_t"); -__static_renaming("____fsfilcnt_t_208", "__fsfilcnt_t"); -__static_renaming("____fsfilcnt64_t_209", "__fsfilcnt64_t"); -__static_renaming("____fsword_t_210", "__fsword_t"); -__static_renaming("____ssize_t_211", "__ssize_t"); -__static_renaming("____syscall_slong_t_212", "__syscall_slong_t"); -__static_renaming("____syscall_ulong_t_213", "__syscall_ulong_t"); -__static_renaming("____loff_t_214", "__loff_t"); -__static_renaming("____qaddr_t_216", "__qaddr_t"); -__static_renaming("____caddr_t_217", "__caddr_t"); -__static_renaming("____intptr_t_218", "__intptr_t"); -__static_renaming("____socklen_t_219", "__socklen_t"); -__static_renaming("__u_char_220", "u_char"); -__static_renaming("__u_char_221", "u_char"); -__static_renaming("__u_short_222", "u_short"); -__static_renaming("__u_short_223", "u_short"); -__static_renaming("__u_int_224", "u_int"); -__static_renaming("__u_int_225", "u_int"); -__static_renaming("__u_long_226", "u_long"); -__static_renaming("__u_long_227", "u_long"); -__static_renaming("__quad_t_228", "quad_t"); -__static_renaming("__quad_t_229", "quad_t"); -__static_renaming("__u_quad_t_230", "u_quad_t"); -__static_renaming("__u_quad_t_231", "u_quad_t"); -__static_renaming("__fsid_t_232", "fsid_t"); -__static_renaming("__fsid_t_233", "fsid_t"); -__static_renaming("__loff_t_235", "loff_t"); -__static_renaming("__loff_t_236", "loff_t"); -__static_renaming("__loff_t_238", "loff_t"); -__static_renaming("__loff_t_239", "loff_t"); -__static_renaming("__ino_t_241", "ino_t"); -__static_renaming("__ino_t_242", "ino_t"); -__static_renaming("__ino_t_244", "ino_t"); -__static_renaming("__ino_t_245", "ino_t"); -__static_renaming("__dev_t_247", "dev_t"); -__static_renaming("__dev_t_248", "dev_t"); -__static_renaming("__gid_t_250", "gid_t"); -__static_renaming("__gid_t_251", "gid_t"); -__static_renaming("__gid_t_253", "gid_t"); -__static_renaming("__gid_t_254", "gid_t"); -__static_renaming("__mode_t_256", "mode_t"); -__static_renaming("__mode_t_257", "mode_t"); -__static_renaming("__nlink_t_259", "nlink_t"); -__static_renaming("__nlink_t_260", "nlink_t"); -__static_renaming("__uid_t_262", "uid_t"); -__static_renaming("__uid_t_263", "uid_t"); -__static_renaming("__uid_t_265", "uid_t"); -__static_renaming("__uid_t_266", "uid_t"); -__static_renaming("__off_t_268", "off_t"); -__static_renaming("__off_t_269", "off_t"); -__static_renaming("__off_t_271", "off_t"); -__static_renaming("__off_t_272", "off_t"); -__static_renaming("__pid_t_274", "pid_t"); -__static_renaming("__pid_t_275", "pid_t"); -__static_renaming("__pid_t_277", "pid_t"); -__static_renaming("__pid_t_278", "pid_t"); -__static_renaming("__id_t_280", "id_t"); -__static_renaming("__id_t_281", "id_t"); -__static_renaming("__ssize_t_283", "ssize_t"); -__static_renaming("__ssize_t_284", "ssize_t"); -__static_renaming("__daddr_t_286", "daddr_t"); -__static_renaming("__daddr_t_287", "daddr_t"); -__static_renaming("__caddr_t_289", "caddr_t"); -__static_renaming("__caddr_t_290", "caddr_t"); -__static_renaming("__key_t_291", "key_t"); -__static_renaming("__key_t_292", "key_t"); -__static_renaming("__key_t_294", "key_t"); -__static_renaming("__key_t_295", "key_t"); -__static_renaming("__clock_t_297", "clock_t"); -__static_renaming("__clock_t_298", "clock_t"); -__static_renaming("__time_t_300", "time_t"); -__static_renaming("__time_t_301", "time_t"); -__static_renaming("__clockid_t_303", "clockid_t"); -__static_renaming("__clockid_t_304", "clockid_t"); -__static_renaming("__timer_t_306", "timer_t"); -__static_renaming("__timer_t_307", "timer_t"); -__static_renaming("__ulong_309", "ulong"); -__static_renaming("__ulong_310", "ulong"); -__static_renaming("__ulong_311", "ulong"); -__static_renaming("__ushort_312", "ushort"); -__static_renaming("__uint_313", "uint"); -__static_renaming("__int8_t_314", "int8_t"); -__static_renaming("__int16_t_315", "int16_t"); -__static_renaming("__int32_t_316", "int32_t"); -__static_renaming("__int64_t_317", "int64_t"); -__static_renaming("__u_int8_t_318", "u_int8_t"); -__static_renaming("__u_int16_t_319", "u_int16_t"); -__static_renaming("__u_int32_t_320", "u_int32_t"); -__static_renaming("__u_int64_t_321", "u_int64_t"); -__static_renaming("__register_t_322", "register_t"); -__static_renaming("____bswap_32_324", "__bswap_32"); -__static_renaming("____bswap_64_327", "__bswap_64"); -__static_renaming("____sig_atomic_t_328", "__sig_atomic_t"); -__static_renaming("____sigset_t_332", "__sigset_t"); -__static_renaming("__sigset_t_333", "sigset_t"); -__static_renaming("__suseconds_t_350", "suseconds_t"); -__static_renaming("__suseconds_t_351", "suseconds_t"); -__static_renaming("____fd_mask_353", "__fd_mask"); -__static_renaming("____fd_mask_354", "__fd_mask"); -__static_renaming("__fd_set_362", "fd_set"); -__static_renaming("__fd_mask_363", "fd_mask"); -__static_renaming("__fd_mask_364", "fd_mask"); -__static_renaming("__select_376", "select"); -__static_renaming("__select_377", "select"); -__static_renaming("__pselect_392", "pselect"); -__static_renaming("__pselect_393", "pselect"); -__static_renaming("____fdelt_chk_397", "__fdelt_chk"); -__static_renaming("____fdelt_warn_399", "__fdelt_warn"); -__static_renaming("__gnu_dev_major_401", "gnu_dev_major"); -__static_renaming("__gnu_dev_major_402", "gnu_dev_major"); -__static_renaming("__gnu_dev_minor_404", "gnu_dev_minor"); -__static_renaming("__gnu_dev_makedev_407", "gnu_dev_makedev"); -__static_renaming("__blksize_t_412", "blksize_t"); -__static_renaming("__blksize_t_413", "blksize_t"); -__static_renaming("__blkcnt_t_415", "blkcnt_t"); -__static_renaming("__blkcnt_t_416", "blkcnt_t"); -__static_renaming("__fsblkcnt_t_418", "fsblkcnt_t"); -__static_renaming("__fsblkcnt_t_419", "fsblkcnt_t"); -__static_renaming("__blkcnt_t_421", "blkcnt_t"); -__static_renaming("__blkcnt_t_422", "blkcnt_t"); -__static_renaming("__fsblkcnt_t_424", "fsblkcnt_t"); -__static_renaming("__fsblkcnt_t_425", "fsblkcnt_t"); -__static_renaming("__fsfilcnt_t_427", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_428", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_430", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_431", "fsfilcnt_t"); -__static_renaming("__pthread_t_433", "pthread_t"); -__static_renaming("__pthread_attr_t_437", "pthread_attr_t"); -__static_renaming("____pthread_list_t_442", "__pthread_list_t"); -__static_renaming("____pthread_list_t_443", "__pthread_list_t"); -__static_renaming("__pthread_mutex_t_459", "pthread_mutex_t"); -__static_renaming("__pthread_mutexattr_t_464", "pthread_mutexattr_t"); -__static_renaming("__rand_465", "rand"); -__static_renaming("__srand_467", "srand"); -__static_renaming("__rand_r_469", "rand_r"); -__static_renaming("__drand48_470", "drand48"); -__static_renaming("__erand48_472", "erand48"); -__static_renaming("__lrand48_473", "lrand48"); -__static_renaming("__nrand48_475", "nrand48"); -__static_renaming("__mrand48_476", "mrand48"); -__static_renaming("__jrand48_478", "jrand48"); -__static_renaming("__srand48_480", "srand48"); -__static_renaming("__seed48_482", "seed48"); -__static_renaming("__lcong48_484", "lcong48"); -__static_renaming("__malloc_486", "malloc"); -__static_renaming("__malloc_487", "malloc"); -__static_renaming("__calloc_490", "calloc"); -__static_renaming("__calloc_491", "calloc"); -__static_renaming("__realloc_494", "realloc"); -__static_renaming("__free_496", "free"); -__static_renaming("__cfree_498", "cfree"); -__static_renaming("__alloca_500", "alloca"); -__static_renaming("__valloc_502", "valloc"); -__static_renaming("__valloc_503", "valloc"); -__static_renaming("__posix_memalign_507", "posix_memalign"); -__static_renaming("__posix_memalign_508", "posix_memalign"); -__static_renaming("__aligned_alloc_511", "aligned_alloc"); -__static_renaming("__aligned_alloc_512", "aligned_alloc"); -__static_renaming("__aligned_alloc_513", "aligned_alloc"); -__static_renaming("__aligned_alloc_514", "aligned_alloc"); -__static_renaming("__abort_515", "abort"); -__static_renaming("__atexit_517", "atexit"); -__static_renaming("__at_quick_exit_519", "at_quick_exit"); -__static_renaming("__on_exit_524", "on_exit"); -__static_renaming("__exit_526", "exit"); -__static_renaming("__exit_527", "exit"); -__static_renaming("__quick_exit_529", "quick_exit"); -__static_renaming("___Exit_531", "_Exit"); -__static_renaming("__getenv_533", "getenv"); -__static_renaming("__getenv_534", "getenv"); -__static_renaming("__putenv_536", "putenv"); -__static_renaming("__setenv_540", "setenv"); -__static_renaming("__unsetenv_542", "unsetenv"); -__static_renaming("__clearenv_543", "clearenv"); -__static_renaming("__mktemp_545", "mktemp"); -__static_renaming("__mkstemp_548", "mkstemp"); -__static_renaming("__mkstemp_549", "mkstemp"); -__static_renaming("__mkstemp_550", "mkstemp"); -__static_renaming("__mkstemp_551", "mkstemp"); -__static_renaming("__mkstemps_556", "mkstemps"); -__static_renaming("__mkstemps_557", "mkstemps"); -__static_renaming("__mkstemps_558", "mkstemps"); -__static_renaming("__mkstemps_559", "mkstemps"); -__static_renaming("__mkdtemp_561", "mkdtemp"); -__static_renaming("__mkdtemp_562", "mkdtemp"); -__static_renaming("__system_564", "system"); -__static_renaming("__system_565", "system"); -__static_renaming("__system_566", "system"); -__static_renaming("__system_567", "system"); -__static_renaming("__realpath_570", "realpath"); -__static_renaming("__realpath_571", "realpath"); -__static_renaming("____compar_fn_t_572", "__compar_fn_t"); -__static_renaming("__bsearch_580", "bsearch"); -__static_renaming("__bsearch_582", "bsearch"); -__static_renaming("____l_589", "__l"); -__static_renaming("____u_590", "__u"); -__static_renaming("____idx_591", "__idx"); -__static_renaming("____p_592", "__p"); -__static_renaming("____comparison_593", "__comparison"); -__static_renaming("__qsort_601", "qsort"); -__static_renaming("__qsort_603", "qsort"); -__static_renaming("__abs_606", "abs"); -__static_renaming("__abs_607", "abs"); -__static_renaming("__labs_609", "labs"); -__static_renaming("__labs_610", "labs"); -__static_renaming("__llabs_612", "llabs"); -__static_renaming("__llabs_613", "llabs"); -__static_renaming("__div_616", "div"); -__static_renaming("__div_617", "div"); -__static_renaming("__ldiv_620", "ldiv"); -__static_renaming("__ldiv_622", "ldiv"); -__static_renaming("__lldiv_626", "lldiv"); -__static_renaming("__lldiv_628", "lldiv"); -__static_renaming("__ecvt_634", "ecvt"); -__static_renaming("__ecvt_635", "ecvt"); -__static_renaming("__fcvt_640", "fcvt"); -__static_renaming("__fcvt_641", "fcvt"); -__static_renaming("__gcvt_645", "gcvt"); -__static_renaming("__gcvt_646", "gcvt"); -__static_renaming("__qecvt_651", "qecvt"); -__static_renaming("__qecvt_652", "qecvt"); -__static_renaming("__qfcvt_657", "qfcvt"); -__static_renaming("__qfcvt_658", "qfcvt"); -__static_renaming("__qgcvt_662", "qgcvt"); -__static_renaming("__qgcvt_663", "qgcvt"); -__static_renaming("__ecvt_r_670", "ecvt_r"); -__static_renaming("__fcvt_r_677", "fcvt_r"); -__static_renaming("__qecvt_r_684", "qecvt_r"); -__static_renaming("__qfcvt_r_691", "qfcvt_r"); -__static_renaming("__mblen_694", "mblen"); -__static_renaming("__mblen_695", "mblen"); -__static_renaming("__mbtowc_699", "mbtowc"); -__static_renaming("__wctomb_702", "wctomb"); -__static_renaming("__mbstowcs_706", "mbstowcs"); -__static_renaming("__wcstombs_710", "wcstombs"); -__static_renaming("__rpmatch_712", "rpmatch"); -__static_renaming("__rpmatch_713", "rpmatch"); -__static_renaming("__getsubopt_717", "getsubopt"); -__static_renaming("__getsubopt_718", "getsubopt"); -__static_renaming("__getloadavg_721", "getloadavg"); -__static_renaming("____realpath_chk_726", "__realpath_chk"); -__static_renaming("____realpath_alias_729", "__realpath_alias"); -__static_renaming("____realpath_chk_warn_733", "__realpath_chk_warn"); -__static_renaming("____ptsname_r_chk_741", "__ptsname_r_chk"); -__static_renaming("____ptsname_r_alias_745", "__ptsname_r_alias"); -__static_renaming("____ptsname_r_chk_warn_750", "__ptsname_r_chk_warn"); -__static_renaming("____wctomb_chk_758", "__wctomb_chk"); -__static_renaming("____wctomb_alias_761", "__wctomb_alias"); -__static_renaming("____mbstowcs_chk_768", "__mbstowcs_chk"); -__static_renaming("____mbstowcs_alias_772", "__mbstowcs_alias"); -__static_renaming("____mbstowcs_chk_warn_777", "__mbstowcs_chk_warn"); -__static_renaming("____wcstombs_chk_785", "__wcstombs_chk"); -__static_renaming("____wcstombs_alias_789", "__wcstombs_alias"); -__static_renaming("____wcstombs_chk_warn_794", "__wcstombs_chk_warn"); -__static_renaming("__thisopt_798", "thisopt"); -__static_renaming("__ssl_cmd_protocol_parse_799", "ssl_cmd_protocol_parse"); -__static_renaming("__ssl_cmd_protocol_parse_800", "ssl_cmd_protocol_parse"); -__static_renaming("__ssl_cmd_protocol_parse_801", "ssl_cmd_protocol_parse"); -__static_renaming("__main_811", "main"); - -__static_condition_renaming("__static_condition_default_60", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_67", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_215", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_234", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __u_char_defined)"); -__static_condition_renaming("__static_condition_default_237", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __u_char_defined)"); -__static_condition_renaming("__static_condition_default_240", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __u_char_defined)"); -__static_condition_renaming("__static_condition_default_243", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ino_t_defined)"); -__static_condition_renaming("__static_condition_default_246", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ino_t_defined) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ino_t_defined)"); -__static_condition_renaming("__static_condition_default_249", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_252", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_255", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_258", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_261", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __nlink_t_defined)"); -__static_condition_renaming("__static_condition_default_264", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __nlink_t_defined)"); -__static_condition_renaming("__static_condition_default_267", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __nlink_t_defined)"); -__static_condition_renaming("__static_condition_default_270", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_273", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_276", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_279", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_282", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __id_t_defined)"); -__static_condition_renaming("__static_condition_default_285", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_288", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_293", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_296", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_299", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __clock_t_defined)"); -__static_condition_renaming("__static_condition_default_302", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __time_t_defined)"); -__static_condition_renaming("__static_condition_default_305", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __clockid_t_defined)"); -__static_condition_renaming("__static_condition_default_308", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __timer_t_defined)"); -__static_condition_renaming("__static_condition_default_325", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_341", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_349", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_352", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __suseconds_t_defined)"); -__static_condition_renaming("__static_condition_default_361", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_378", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_379", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_394", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_395", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_414", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blksize_t_defined)"); -__static_condition_renaming("__static_condition_default_417", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blkcnt_t_defined) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blkcnt_t_defined)"); -__static_condition_renaming("__static_condition_default_420", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_423", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blkcnt_t_defined)"); -__static_condition_renaming("__static_condition_default_426", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_429", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_432", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_579", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_581", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_594", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __USE_EXTERN_INLINES) && !(defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_595", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_602", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_604", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_621", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_623", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_627", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_629", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_736", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_802", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_803", "!(defined _STDLIB_H) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_804", "!(defined _STDLIB_H) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined HAVE_TLSV1_X) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined HAVE_TLSV1_X) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined HAVE_TLSV1_X) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined HAVE_TLSV1_X)"); -__static_condition_renaming("__static_condition_default_805", "!(defined _STDLIB_H) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && !(defined HAVE_TLSV1_X) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && !(defined HAVE_TLSV1_X) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && !(defined HAVE_TLSV1_X) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && !(defined HAVE_TLSV1_X)"); -__static_condition_renaming("__static_condition_default_806", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_807", "!(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_808", "!(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined HAVE_TLSV1_X)"); -__static_condition_renaming("__static_condition_default_809", "!(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && !(defined HAVE_TLSV1_X)"); -__static_condition_renaming("__static_condition_default_810", "!(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_812", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_813", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_814", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc)"); +__static_renaming("__div_t_7", "div_t"); +__static_renaming("__ldiv_t_12", "ldiv_t"); +__static_renaming("__lldiv_t_17", "lldiv_t"); +__static_renaming("____ctype_get_mb_cur_max_18", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_19", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_20", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_21", "__ctype_get_mb_cur_max"); +__static_renaming("__atof_23", "atof"); +__static_renaming("__atof_24", "atof"); +__static_renaming("__atoi_26", "atoi"); +__static_renaming("__atoi_27", "atoi"); +__static_renaming("__atol_29", "atol"); +__static_renaming("__atol_30", "atol"); +__static_renaming("__atoll_32", "atoll"); +__static_renaming("__atoll_33", "atoll"); +__static_renaming("__strtod_36", "strtod"); +__static_renaming("__strtof_39", "strtof"); +__static_renaming("__strtold_42", "strtold"); +__static_renaming("__strtol_46", "strtol"); +__static_renaming("__strtoul_50", "strtoul"); +__static_renaming("__strtoll_54", "strtoll"); +__static_renaming("__strtoull_58", "strtoull"); +__static_renaming("__rand_62", "rand"); +__static_renaming("__rand_63", "rand"); +__static_renaming("__srand_65", "srand"); +__static_renaming("__malloc_67", "malloc"); +__static_renaming("__malloc_68", "malloc"); +__static_renaming("__calloc_71", "calloc"); +__static_renaming("__calloc_72", "calloc"); +__static_renaming("__realloc_75", "realloc"); +__static_renaming("__realloc_76", "realloc"); +__static_renaming("__free_78", "free"); +__static_renaming("__aligned_alloc_81", "aligned_alloc"); +__static_renaming("__aligned_alloc_82", "aligned_alloc"); +__static_renaming("__abort_83", "abort"); +__static_renaming("__atexit_85", "atexit"); +__static_renaming("__at_quick_exit_87", "at_quick_exit"); +__static_renaming("__exit_89", "exit"); +__static_renaming("__quick_exit_91", "quick_exit"); +__static_renaming("___Exit_93", "_Exit"); +__static_renaming("__getenv_95", "getenv"); +__static_renaming("__getenv_96", "getenv"); +__static_renaming("__system_98", "system"); +__static_renaming("__system_99", "system"); +__static_renaming("____compar_fn_t_100", "__compar_fn_t"); +__static_renaming("__bsearch_108", "bsearch"); +__static_renaming("__bsearch_110", "bsearch"); +__static_renaming("____l_117", "__l"); +__static_renaming("____u_118", "__u"); +__static_renaming("____idx_119", "__idx"); +__static_renaming("____p_120", "__p"); +__static_renaming("____comparison_121", "__comparison"); +__static_renaming("__qsort_129", "qsort"); +__static_renaming("__qsort_131", "qsort"); +__static_renaming("__abs_134", "abs"); +__static_renaming("__abs_135", "abs"); +__static_renaming("__labs_137", "labs"); +__static_renaming("__labs_138", "labs"); +__static_renaming("__llabs_140", "llabs"); +__static_renaming("__llabs_141", "llabs"); +__static_renaming("__div_144", "div"); +__static_renaming("__div_145", "div"); +__static_renaming("__ldiv_148", "ldiv"); +__static_renaming("__ldiv_150", "ldiv"); +__static_renaming("__lldiv_154", "lldiv"); +__static_renaming("__lldiv_156", "lldiv"); +__static_renaming("__mblen_160", "mblen"); +__static_renaming("__mbtowc_164", "mbtowc"); +__static_renaming("__wctomb_167", "wctomb"); +__static_renaming("__mbstowcs_171", "mbstowcs"); +__static_renaming("__wcstombs_175", "wcstombs"); +__static_renaming("____realpath_chk_180", "__realpath_chk"); +__static_renaming("____realpath_alias_183", "__realpath_alias"); +__static_renaming("____realpath_chk_warn_187", "__realpath_chk_warn"); +__static_renaming("____ptsname_r_chk_195", "__ptsname_r_chk"); +__static_renaming("____ptsname_r_alias_199", "__ptsname_r_alias"); +__static_renaming("____ptsname_r_chk_warn_204", "__ptsname_r_chk_warn"); +__static_renaming("____wctomb_chk_212", "__wctomb_chk"); +__static_renaming("____wctomb_alias_215", "__wctomb_alias"); +__static_renaming("____mbstowcs_chk_222", "__mbstowcs_chk"); +__static_renaming("____mbstowcs_alias_226", "__mbstowcs_alias"); +__static_renaming("____mbstowcs_chk_warn_231", "__mbstowcs_chk_warn"); +__static_renaming("____wcstombs_chk_239", "__wcstombs_chk"); +__static_renaming("____wcstombs_alias_243", "__wcstombs_alias"); +__static_renaming("____wcstombs_chk_warn_248", "__wcstombs_chk_warn"); +__static_renaming("__thisopt_252", "thisopt"); +__static_renaming("__ssl_cmd_protocol_parse_253", "ssl_cmd_protocol_parse"); +__static_renaming("__ssl_cmd_protocol_parse_254", "ssl_cmd_protocol_parse"); +__static_renaming("__main_261", "main"); + +__static_condition_renaming("__static_condition_default_107", "!(defined _FORTIFY_SOURCE) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_109", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_122", "(defined __USE_EXTERN_INLINES) && !(defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_123", "(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_130", "!(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_132", "(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_149", "!(defined _FORTIFY_SOURCE) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_151", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_155", "!(defined _FORTIFY_SOURCE) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_157", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_190", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_255", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_256", "!(defined _FORTIFY_SOURCE) && !(defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_257", "!(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_258", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_259", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_260", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); -if (__static_condition_default_814) -{ -__static_parse_error("Unable to parse"); -} }; typedef long int __ptrdiff_t_0;// L143:L324 typedef long unsigned int __size_t_1;// L177:L209 typedef int __wchar_t_2;// L243:L321 -enum ____anonymous_tag_6_7 { -__P_ALL_3, -__P_PID_4, -__P_PGID_5, -}; -typedef enum ____anonymous_tag_6_7 __idtype_t_8;// L50:L55 -typedef unsigned char ____u_char_9;// L30 -typedef unsigned short int ____u_short_10;// L31 -typedef unsigned int ____u_int_11;// L32 -typedef unsigned long int ____u_long_12;// L33 -typedef signed char ____int8_t_13;// L36 -typedef unsigned char ____uint8_t_14;// L37 -typedef signed short int ____int16_t_15;// L38 -typedef unsigned short int ____uint16_t_16;// L39 -typedef signed int ____int32_t_17;// L40 -typedef unsigned int ____uint32_t_18;// L41 -typedef signed long int ____int64_t_19;// L43 -typedef unsigned long int ____uint64_t_20;// L44 -typedef long int ____quad_t_21;// L52 -typedef unsigned long int ____u_quad_t_22;// L53 -typedef unsigned long int ____dev_t_23;// L109:L124 -typedef unsigned int ____uid_t_24;// L92:L125 -typedef unsigned int ____gid_t_25;// L92:L126 -typedef unsigned long int ____ino_t_26;// L94:L127 -typedef unsigned long int ____ino64_t_27;// L109:L128 -typedef unsigned int ____mode_t_28;// L92:L129 -typedef unsigned long int ____nlink_t_29;// L94:L130 -typedef long int ____off_t_30;// L93:L131 -typedef long int ____off64_t_31;// L108:L132 -typedef int ____pid_t_32;// L91:L133 -struct ____anonymous_tag_33_34 { -int ____val_35[2];// L72 -}; -typedef struct ____anonymous_tag_33_34 ____fsid_t_36;// L72:L134 -typedef long int ____clock_t_37;// L93:L135 -typedef unsigned long int ____rlim_t_38;// L94:L136 -typedef unsigned long int ____rlim64_t_39;// L109:L137 -typedef unsigned int ____id_t_40;// L92:L138 -typedef long int ____time_t_41;// L93:L139 -typedef unsigned int ____useconds_t_42;// L92:L140 -typedef long int ____suseconds_t_43;// L93:L141 -typedef int ____daddr_t_44;// L91:L143 -typedef int ____key_t_45;// L91:L144 -typedef int ____clockid_t_46;// L91:L147 -typedef void * (____timer_t_47);// L70:L150 -typedef long int ____blksize_t_48;// L93:L153 -typedef long int ____blkcnt_t_49;// L93:L158 -typedef long int ____blkcnt64_t_50;// L108:L159 -typedef unsigned long int ____fsblkcnt_t_51;// L94:L162 -typedef unsigned long int ____fsblkcnt64_t_52;// L109:L163 -typedef unsigned long int ____fsfilcnt_t_53;// L94:L166 -typedef unsigned long int ____fsfilcnt64_t_54;// L109:L167 -typedef long int ____fsword_t_55;// L93:L170 -typedef long int ____ssize_t_56;// L110:L172 -typedef long int ____syscall_slong_t_57;// L93:L175 -typedef unsigned long int ____syscall_ulong_t_58;// L94:L177 -typedef ____off64_t_31 ____loff_t_59;// L181 -typedef ____quad_t_21 * (____qaddr_t_61);// L182 -typedef char * (____caddr_t_62);// L183 -typedef long int ____intptr_t_63;// L110:L186 -typedef unsigned int ____socklen_t_64;// L92:L189 -struct ____anonymous_tag_70_71 { -unsigned int ____w_termsig_72 : 7;// L72 -unsigned int ____w_coredump_73 : 1;// L73 -unsigned int ____w_retcode_74 : 8;// L74 -unsigned int __anon_id_0_75 : 16;// L75 -}; -struct ____anonymous_tag_76_77 { -unsigned int ____w_stopval_78 : 8;// L87 -unsigned int ____w_stopsig_79 : 8;// L88 -unsigned int __anon_id_1_80 : 16;// L89 -}; -union __wait_81 { -int __w_status_82;// L68 -struct ____anonymous_tag_70_71 ____wait_terminated_83;// L69 -struct ____anonymous_tag_76_77 ____wait_stopped_84;// L84 -}; -union ____anonymous_tag_85_86 { -union __wait_81 * (____uptr_87);// L69 -int * (____iptr_88);// L70 -}; -typedef union ____anonymous_tag_85_86 ____WAIT_STATUS_89;// L67:L71 -struct ____anonymous_tag_90_91 { -int __quot_92;// L99 -int __rem_93;// L100 -}; -typedef struct ____anonymous_tag_90_91 __div_t_94;// L97:L101 -struct ____anonymous_tag_95_96 { -long int __quot_97;// L107 -long int __rem_98;// L108 -}; -typedef struct ____anonymous_tag_95_96 __ldiv_t_99;// L105:L109 -struct ____anonymous_tag_100_101 { -long long int __quot_102;// L119 -long long int __rem_103;// L120 -}; -typedef struct ____anonymous_tag_100_101 __lldiv_t_104;// L117:L121 -typedef unsigned char ____u_char_164;// L30 -typedef unsigned short int ____u_short_165;// L31 -typedef unsigned int ____u_int_166;// L32 -typedef unsigned long int ____u_long_167;// L33 -typedef signed char ____int8_t_168;// L36 -typedef unsigned char ____uint8_t_169;// L37 -typedef signed short int ____int16_t_170;// L38 -typedef unsigned short int ____uint16_t_171;// L39 -typedef signed int ____int32_t_172;// L40 -typedef unsigned int ____uint32_t_173;// L41 -typedef signed long int ____int64_t_174;// L43 -typedef unsigned long int ____uint64_t_175;// L44 -typedef long int ____quad_t_176;// L52 -typedef unsigned long int ____u_quad_t_177;// L53 -typedef unsigned long int ____dev_t_178;// L109:L124 -typedef unsigned int ____uid_t_179;// L92:L125 -typedef unsigned int ____gid_t_180;// L92:L126 -typedef unsigned long int ____ino_t_181;// L94:L127 -typedef unsigned long int ____ino64_t_182;// L109:L128 -typedef unsigned int ____mode_t_183;// L92:L129 -typedef unsigned long int ____nlink_t_184;// L94:L130 -typedef long int ____off_t_185;// L93:L131 -typedef long int ____off64_t_186;// L108:L132 -typedef int ____pid_t_187;// L91:L133 -struct ____anonymous_tag_188_189 { -int ____val_190[2];// L72 -}; -typedef struct ____anonymous_tag_188_189 ____fsid_t_191;// L72:L134 -typedef long int ____clock_t_192;// L93:L135 -typedef unsigned long int ____rlim_t_193;// L94:L136 -typedef unsigned long int ____rlim64_t_194;// L109:L137 -typedef unsigned int ____id_t_195;// L92:L138 -typedef long int ____time_t_196;// L93:L139 -typedef unsigned int ____useconds_t_197;// L92:L140 -typedef long int ____suseconds_t_198;// L93:L141 -typedef int ____daddr_t_199;// L91:L143 -typedef int ____key_t_200;// L91:L144 -typedef int ____clockid_t_201;// L91:L147 -typedef void * (____timer_t_202);// L70:L150 -typedef long int ____blksize_t_203;// L93:L153 -typedef long int ____blkcnt_t_204;// L93:L158 -typedef long int ____blkcnt64_t_205;// L108:L159 -typedef unsigned long int ____fsblkcnt_t_206;// L94:L162 -typedef unsigned long int ____fsblkcnt64_t_207;// L109:L163 -typedef unsigned long int ____fsfilcnt_t_208;// L94:L166 -typedef unsigned long int ____fsfilcnt64_t_209;// L109:L167 -typedef long int ____fsword_t_210;// L93:L170 -typedef long int ____ssize_t_211;// L110:L172 -typedef long int ____syscall_slong_t_212;// L93:L175 -typedef unsigned long int ____syscall_ulong_t_213;// L94:L177 -typedef ____off64_t_186 ____loff_t_214;// L181 -typedef ____quad_t_176 * (____qaddr_t_216);// L182 -typedef char * (____caddr_t_217);// L183 -typedef long int ____intptr_t_218;// L110:L186 -typedef unsigned int ____socklen_t_219;// L92:L189 -typedef ____u_char_9 __u_char_220;// L33 -typedef ____u_char_164 __u_char_221;// L33 -typedef ____u_short_10 __u_short_222;// L34 -typedef ____u_short_165 __u_short_223;// L34 -typedef ____u_int_11 __u_int_224;// L35 -typedef ____u_int_166 __u_int_225;// L35 -typedef ____u_long_12 __u_long_226;// L36 -typedef ____u_long_167 __u_long_227;// L36 -typedef ____quad_t_21 __quad_t_228;// L37 -typedef ____quad_t_176 __quad_t_229;// L37 -typedef ____u_quad_t_22 __u_quad_t_230;// L38 -typedef ____u_quad_t_177 __u_quad_t_231;// L38 -typedef ____fsid_t_36 __fsid_t_232;// L39 -typedef ____fsid_t_191 __fsid_t_233;// L39 -typedef ____loff_t_59 __loff_t_235;// L44 -typedef ____loff_t_214 __loff_t_236;// L44 -typedef ____loff_t_59 __loff_t_238;// L44 -typedef ____loff_t_214 __loff_t_239;// L44 -typedef ____ino64_t_27 __ino_t_241;// L50 -typedef ____ino64_t_182 __ino_t_242;// L50 -typedef ____ino_t_26 __ino_t_244;// L48 -typedef ____ino_t_181 __ino_t_245;// L48 -typedef ____dev_t_23 __dev_t_247;// L60 -typedef ____dev_t_178 __dev_t_248;// L60 -typedef ____gid_t_25 __gid_t_250;// L65 -typedef ____gid_t_180 __gid_t_251;// L65 -typedef ____gid_t_25 __gid_t_253;// L65 -typedef ____gid_t_180 __gid_t_254;// L65 -typedef ____mode_t_28 __mode_t_256;// L70 -typedef ____mode_t_183 __mode_t_257;// L70 -typedef ____nlink_t_29 __nlink_t_259;// L75 -typedef ____nlink_t_184 __nlink_t_260;// L75 -typedef ____uid_t_24 __uid_t_262;// L80 -typedef ____uid_t_179 __uid_t_263;// L80 -typedef ____uid_t_24 __uid_t_265;// L80 -typedef ____uid_t_179 __uid_t_266;// L80 -typedef ____off64_t_31 __off_t_268;// L88 -typedef ____off64_t_186 __off_t_269;// L88 -typedef ____off_t_30 __off_t_271;// L86 -typedef ____off_t_185 __off_t_272;// L86 -typedef ____pid_t_32 __pid_t_274;// L98 -typedef ____pid_t_187 __pid_t_275;// L98 -typedef ____pid_t_32 __pid_t_277;// L98 -typedef ____pid_t_187 __pid_t_278;// L98 -typedef ____id_t_40 __id_t_280;// L104 -typedef ____id_t_195 __id_t_281;// L104 -typedef ____ssize_t_56 __ssize_t_283;// L109 -typedef ____ssize_t_211 __ssize_t_284;// L109 -typedef ____daddr_t_44 __daddr_t_286;// L115 -typedef ____daddr_t_199 __daddr_t_287;// L115 -typedef ____caddr_t_62 __caddr_t_289;// L116 -typedef ____caddr_t_217 __caddr_t_290;// L116 -typedef ____key_t_45 __key_t_291;// L122 -typedef ____key_t_200 __key_t_292;// L122 -typedef ____key_t_45 __key_t_294;// L122 -typedef ____key_t_200 __key_t_295;// L122 -typedef ____clock_t_37 __clock_t_297;// L59 -typedef ____clock_t_192 __clock_t_298;// L59 -typedef ____time_t_41 __time_t_300;// L75 -typedef ____time_t_196 __time_t_301;// L75 -typedef ____clockid_t_46 __clockid_t_303;// L91 -typedef ____clockid_t_201 __clockid_t_304;// L91 -typedef ____timer_t_47 __timer_t_306;// L103 -typedef ____timer_t_202 __timer_t_307;// L103 -typedef unsigned long int __ulong_309;// L150 -typedef unsigned long int __ulong_310;// L150 -typedef unsigned long int __ulong_311;// L150 -typedef unsigned short int __ushort_312;// L151 -typedef unsigned int __uint_313;// L152 -typedef int __int8_t_314;// L188:L194 -typedef int __int16_t_315;// L188:L195 -typedef int __int32_t_316;// L188:L196 -typedef int __int64_t_317;// L188:L197 -typedef unsigned int __u_int8_t_318;// L190:L200 -typedef unsigned int __u_int16_t_319;// L190:L201 -typedef unsigned int __u_int32_t_320;// L190:L202 -typedef unsigned int __u_int64_t_321;// L190:L203 -typedef int __register_t_322;// L205 -typedef int ____sig_atomic_t_328;// L22 -struct ____anonymous_tag_329_330 { -unsigned long int ____val_331[( 1024 / ( 8 * sizeof(unsigned long) ) )];// L29 -}; -typedef struct ____anonymous_tag_329_330 ____sigset_t_332;// L27:L30 -typedef ____sigset_t_332 __sigset_t_333;// L37 -struct __timespec_334 { -____time_t_41 __tv_sec_335;// L0 -____time_t_196 __tv_sec_336;// L0 -____syscall_slong_t_57 __tv_nsec_338;// L0 -____syscall_slong_t_212 __tv_nsec_339;// L0 -}; -struct __timeval_342 { -____time_t_41 __tv_sec_343;// L0 -____time_t_196 __tv_sec_344;// L0 -____suseconds_t_43 __tv_usec_346;// L0 -____suseconds_t_198 __tv_usec_347;// L0 -}; -typedef ____suseconds_t_43 __suseconds_t_350;// L48 -typedef ____suseconds_t_198 __suseconds_t_351;// L48 -typedef long int ____fd_mask_353;// L54 -typedef long int ____fd_mask_354;// L54 -struct ____anonymous_tag_355_356 { -____fd_mask_353 ____fds_bits_357[1024 / ( 8 * ( int ) sizeof(long) )];// L0 -____fd_mask_354 ____fds_bits_359[1024 / ( 8 * ( int ) sizeof(long) )];// L0 -}; -typedef struct ____anonymous_tag_355_356 __fd_set_362;// L64:L75 -typedef ____fd_mask_353 __fd_mask_363;// L82 -typedef ____fd_mask_354 __fd_mask_364;// L82 -typedef ____blksize_t_48 __blksize_t_412;// L228 -typedef ____blksize_t_203 __blksize_t_413;// L228 -typedef ____blkcnt_t_49 __blkcnt_t_415;// L235 -typedef ____blkcnt_t_204 __blkcnt_t_416;// L235 -typedef ____fsblkcnt_t_51 __fsblkcnt_t_418;// L239 -typedef ____fsblkcnt_t_206 __fsblkcnt_t_419;// L239 -typedef ____blkcnt64_t_50 __blkcnt_t_421;// L248 -typedef ____blkcnt64_t_205 __blkcnt_t_422;// L248 -typedef ____fsblkcnt64_t_52 __fsblkcnt_t_424;// L252 -typedef ____fsblkcnt64_t_207 __fsblkcnt_t_425;// L252 -typedef ____fsfilcnt_t_53 __fsfilcnt_t_427;// L243 -typedef ____fsfilcnt_t_208 __fsfilcnt_t_428;// L243 -typedef ____fsfilcnt64_t_54 __fsfilcnt_t_430;// L256 -typedef ____fsfilcnt64_t_209 __fsfilcnt_t_431;// L256 -typedef unsigned long int __pthread_t_433;// L60 -union __pthread_attr_t_434 { -char ____size_435[56];// L65 -long int ____align_436;// L66 -}; -typedef union __pthread_attr_t_434 __pthread_attr_t_437;// L69 -struct ____pthread_internal_list_439 { -struct __forward_tag_reference_438 * (____prev_440);// L0 -struct __forward_tag_reference_438 * (____next_441);// L0 +struct ____anonymous_tag_3_4 { +int __quot_5;// L99 +int __rem_6;// L100 }; -typedef struct ____pthread_internal_list_439 ____pthread_list_t_442;// L75:L79 -typedef struct ____pthread_internal_list_439 ____pthread_list_t_443;// L75:L79 -struct ____pthread_mutex_s_444 { -int ____lock_445;// L94 -unsigned int ____count_446;// L95 -int ____owner_447;// L96 -unsigned int ____nusers_448;// L98 -int ____kind_449;// L102 -short ____spins_450;// L104 -short ____elision_451;// L105 -____pthread_list_t_442 ____list_452;// L0 -____pthread_list_t_443 ____list_453;// L0 +typedef struct ____anonymous_tag_3_4 __div_t_7;// L97:L101 +struct ____anonymous_tag_8_9 { +long int __quot_10;// L107 +long int __rem_11;// L108 }; -union ____anonymous_tag_454_455 { -struct ____pthread_mutex_s_444 ____data_456;// L92 -char ____size_457[40];// L126 -long int ____align_458;// L127 +typedef struct ____anonymous_tag_8_9 __ldiv_t_12;// L105:L109 +struct ____anonymous_tag_13_14 { +long long int __quot_15;// L119 +long long int __rem_16;// L120 }; -typedef union ____anonymous_tag_454_455 __pthread_mutex_t_459;// L90:L128 -union ____anonymous_tag_460_461 { -char ____size_462[4];// L132 -int ____align_463;// L133 -}; -typedef union ____anonymous_tag_460_461 __pthread_mutexattr_t_464;// L130:L134 -typedef int (* (____compar_fn_t_572)) (const void *, const void *);// L741 +typedef struct ____anonymous_tag_13_14 __lldiv_t_17;// L117:L121 +typedef int (* (____compar_fn_t_100)) (const void *, const void *);// L741 -struct __forward_tag_reference_438 { // generated union of struct variations -union { -}; -}; - -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -static __inline unsigned int (____bswap_32_66) (unsigned int ____bsx_65) { +extern __size_t_1 (____ctype_get_mb_cur_max_18) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_19) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_20) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_21) (void );// L139 +extern double (__atof_23) (const char * (____nptr_22));// L144:L145 +extern double (__atof_24) (const char * (____nptr_22));// L144:L145 +extern int (__atoi_26) (const char * (____nptr_25));// L147:L148 +extern int (__atoi_27) (const char * (____nptr_25));// L147:L148 +extern long int (__atol_29) (const char * (____nptr_28));// L150:L151 +extern long int (__atol_30) (const char * (____nptr_28));// L150:L151 +extern long long int (__atoll_32) (const char * (____nptr_31));// L157:L158 +extern long long int (__atoll_33) (const char * (____nptr_31));// L157:L158 +extern double (__strtod_36) (const char * __restrict ____nptr_34, char * (* __restrict ____endptr_35));// L164:L166 +extern float (__strtof_39) (const char * __restrict ____nptr_37, char * (* __restrict ____endptr_38));// L172:L173 +extern long double (__strtold_42) (const char * __restrict ____nptr_40, char * (* __restrict ____endptr_41));// L175:L177 +extern long int (__strtol_46) (const char * __restrict ____nptr_43, char * (* __restrict ____endptr_44), int ____base_45);// L183:L185 +extern unsigned long int (__strtoul_50) (const char * __restrict ____nptr_47, char * (* __restrict ____endptr_48), int ____base_49);// L187:L189 +extern long long int (__strtoll_54) (const char * __restrict ____nptr_51, char * (* __restrict ____endptr_52), int ____base_53);// L209:L211 +extern unsigned long long int (__strtoull_58) (const char * __restrict ____nptr_55, char * (* __restrict ____endptr_56), int ____base_57);// L214:L216 +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +__extension__/* no function due to type errors in the function prototype */ +extern int (__rand_62) (void );// L374 +extern int (__rand_63) (void );// L374 +extern void (__srand_65) (unsigned int ____seed_64);// L376 +extern void * ((__malloc_67) (__size_t_1 ____size_66));// L466 +extern void * ((__malloc_68) (__size_t_1 ____size_66));// L466 +extern void * ((__calloc_71) (__size_t_1 ____nmemb_69, __size_t_1 ____size_70));// L468:L469 +extern void * ((__calloc_72) (__size_t_1 ____nmemb_69, __size_t_1 ____size_70));// L468:L469 +extern void * ((__realloc_75) (void * (____ptr_73), __size_t_1 ____size_74));// L480:L481 +extern void * ((__realloc_76) (void * (____ptr_73), __size_t_1 ____size_74));// L480:L481 +extern void (__free_78) (void * (____ptr_77));// L483 +extern void * ((__aligned_alloc_81) (__size_t_1 ____alignment_79, __size_t_1 ____size_80));// L509:L510 +extern void * ((__aligned_alloc_82) (__size_t_1 ____alignment_79, __size_t_1 ____size_80));// L509:L510 +extern void (__abort_83) (void );// L515 +extern int (__atexit_85) (void (* (____func_84)) (void ));// L519 +extern int (__at_quick_exit_87) (void (* (____func_86)) (void ));// L527 +extern void (__exit_89) (int ____status_88);// L543 +extern void (__quick_exit_91) (int ____status_90);// L549 +extern void (___Exit_93) (int ____status_92);// L557 +extern char * ((__getenv_95) (const char * (____name_94)));// L564 +extern char * ((__getenv_96) (const char * (____name_94)));// L564 +extern int (__system_98) (const char * (____command_97));// L716 +extern int (__system_99) (const char * (____command_97));// L716 +// typedef moved to top of scope +extern void * ((__bsearch_108) (const void * (____key_101), const void * (____base_102), __size_t_1 ____nmemb_103, __size_t_1 ____size_104, ____compar_fn_t_100 ____compar_105));// L754:L756 +extern void * ((__bsearch_110) (const void * (____key_101), const void * (____base_102), __size_t_1 ____nmemb_103, __size_t_1 ____size_104, ____compar_fn_t_100 ____compar_105));// L754:L756 +/* no function due to type errors in the function prototype */ +extern void (__qsort_129) (void * (____base_124), __size_t_1 ____nmemb_125, __size_t_1 ____size_126, ____compar_fn_t_100 ____compar_127);// L764:L765 +extern void (__qsort_131) (void * (____base_124), __size_t_1 ____nmemb_125, __size_t_1 ____size_126, ____compar_fn_t_100 ____compar_127);// L764:L765 +extern int (__abs_134) (int ____x_133);// L774 +extern int (__abs_135) (int ____x_133);// L774 +extern long int (__labs_137) (long int ____x_136);// L775 +extern long int (__labs_138) (long int ____x_136);// L775 +extern long long int (__llabs_140) (long long int ____x_139);// L779:L780 +extern long long int (__llabs_141) (long long int ____x_139);// L779:L780 +extern __div_t_7 (__div_144) (int ____numer_142, int ____denom_143);// L788:L789 +extern __div_t_7 (__div_145) (int ____numer_142, int ____denom_143);// L788:L789 +extern __ldiv_t_12 (__ldiv_148) (long int ____numer_146, long int ____denom_147);// L790:L791 +extern __ldiv_t_12 (__ldiv_150) (long int ____numer_146, long int ____denom_147);// L790:L791 +extern __lldiv_t_17 (__lldiv_154) (long long int ____numer_152, long long int ____denom_153);// L796:L798 +extern __lldiv_t_17 (__lldiv_156) (long long int ____numer_152, long long int ____denom_153);// L796:L798 +extern int (__mblen_160) (const char * (____s_158), __size_t_1 ____n_159);// L862 +extern int (__mbtowc_164) (__wchar_t_2 * __restrict ____pwc_161, const char * __restrict ____s_162, __size_t_1 ____n_163);// L865:L866 +extern int (__wctomb_167) (char * (____s_165), __wchar_t_2 ____wchar_166);// L869 +extern __size_t_1 (__mbstowcs_171) (__wchar_t_2 * __restrict ____pwcs_168, const char * __restrict ____s_169, __size_t_1 ____n_170);// L873:L874 +extern __size_t_1 (__wcstombs_175) (char * __restrict ____s_172, const __wchar_t_2 * __restrict ____pwcs_173, __size_t_1 ____n_174);// L876:L878 +/* no function due to type errors in the function prototype */ +extern char * ((____realpath_chk_180) (const char * __restrict ____name_177, char * __restrict ____resolved_178, __size_t_1 ____resolvedlen_179));// L23:L25 +extern char * ((____realpath_alias_183) (const char * __restrict ____name_181, char * __restrict ____resolved_182));// L26:L28 +extern char * ((____realpath_chk_warn_187) (const char * __restrict ____name_184, char * __restrict ____resolved_185, __size_t_1 ____resolvedlen_186));// L29:L34 +/* no function due to type errors in the function prototype */ +extern int (____ptsname_r_chk_195) (int ____fd_191, char * (____buf_192), __size_t_1 ____buflen_193, __size_t_1 ____nreal_194);// L52:L53 +extern int (____ptsname_r_alias_199) (int ____fd_196, char * (____buf_197), __size_t_1 ____buflen_198);// L54:L56 +extern int (____ptsname_r_chk_warn_204) (int ____fd_200, char * (____buf_201), __size_t_1 ____buflen_202, __size_t_1 ____nreal_203);// L57:L61 +/* no function due to type errors in the function prototype */ +extern int (____wctomb_chk_212) (char * (____s_209), __wchar_t_2 ____wchar_210, __size_t_1 ____buflen_211);// L77:L78 +extern int (____wctomb_alias_215) (char * (____s_213), __wchar_t_2 ____wchar_214);// L79:L80 +/* no function due to type errors in the function prototype */ +extern __size_t_1 (____mbstowcs_chk_222) (__wchar_t_2 * __restrict ____dst_218, const char * __restrict ____src_219, __size_t_1 ____len_220, __size_t_1 ____dstlen_221);// L98:L100 +extern __size_t_1 (____mbstowcs_alias_226) (__wchar_t_2 * __restrict ____dst_223, const char * __restrict ____src_224, __size_t_1 ____len_225);// L101:L104 +extern __size_t_1 (____mbstowcs_chk_warn_231) (__wchar_t_2 * __restrict ____dst_227, const char * __restrict ____src_228, __size_t_1 ____len_229, __size_t_1 ____dstlen_230);// L105:L110 +/* no function due to type errors in the function prototype */ +extern __size_t_1 (____wcstombs_chk_239) (char * __restrict ____dst_235, const __wchar_t_2 * __restrict ____src_236, __size_t_1 ____len_237, __size_t_1 ____dstlen_238);// L130:L132 +extern __size_t_1 (____wcstombs_alias_243) (char * __restrict ____dst_240, const __wchar_t_2 * __restrict ____src_241, __size_t_1 ____len_242);// L133:L136 +extern __size_t_1 (____wcstombs_chk_warn_248) (char * __restrict ____dst_244, const __wchar_t_2 * __restrict ____src_245, __size_t_1 ____len_246, __size_t_1 ____dstlen_247);// L137:L141 +/* no function due to type errors in the function prototype */ +void (__ssl_cmd_protocol_parse_253) () { -if (__static_condition_default_67) { +if (__static_condition_default_255) { { { -__static_type_error("invalid type found in return expression"); -} -} - - -} -} -static __inline ____uint64_t_20 (____bswap_64_69) (____uint64_t_20 ____bsx_68) { +int __thisopt_252;// L9 -if (__static_condition_default_67) { +if (__static_condition_default_256) { +if ( rand( ) % 2 )// L11 +{ { { -__static_type_error("invalid type found in return expression"); + __thisopt_252 = ( 1 << 3 ) ; // L4:L13 } } - - } } -union __wait_81 ;// L66 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern __size_t_1 (____ctype_get_mb_cur_max_105) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_106) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_107) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_108) (void );// L139 -extern double (__atof_110) (const char * (____nptr_109));// L144:L145 -extern double (__atof_111) (const char * (____nptr_109));// L144:L145 -extern int (__atoi_113) (const char * (____nptr_112));// L147:L148 -extern int (__atoi_114) (const char * (____nptr_112));// L147:L148 -extern long int (__atol_116) (const char * (____nptr_115));// L150:L151 -extern long int (__atol_117) (const char * (____nptr_115));// L150:L151 -extern long long int (__atoll_119) (const char * (____nptr_118));// L157:L158 -extern long long int (__atoll_120) (const char * (____nptr_118));// L157:L158 -extern double (__strtod_123) (const char * __restrict ____nptr_121, char * (* __restrict ____endptr_122));// L164:L166 -extern float (__strtof_126) (const char * __restrict ____nptr_124, char * (* __restrict ____endptr_125));// L172:L173 -extern long double (__strtold_129) (const char * __restrict ____nptr_127, char * (* __restrict ____endptr_128));// L175:L177 -extern long int (__strtol_133) (const char * __restrict ____nptr_130, char * (* __restrict ____endptr_131), int ____base_132);// L183:L185 -extern unsigned long int (__strtoul_137) (const char * __restrict ____nptr_134, char * (* __restrict ____endptr_135), int ____base_136);// L187:L189 -extern long long int (__strtoq_141) (const char * __restrict ____nptr_138, char * (* __restrict ____endptr_139), int ____base_140);// L195:L197 -extern unsigned long long int (__strtouq_145) (const char * __restrict ____nptr_142, char * (* __restrict ____endptr_143), int ____base_144);// L200:L202 -extern long long int (__strtoll_149) (const char * __restrict ____nptr_146, char * (* __restrict ____endptr_147), int ____base_148);// L209:L211 -extern long long int (__strtoll_150) (const char * __restrict ____nptr_146, char * (* __restrict ____endptr_147), int ____base_148);// L209:L211 -extern unsigned long long int (__strtoull_154) (const char * __restrict ____nptr_151, char * (* __restrict ____endptr_152), int ____base_153);// L214:L216 -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -__extension__/* no function due to type errors in the function prototype */ -extern char * ((__l64a_159) (long int ____n_158));// L305 -extern char * ((__l64a_160) (long int ____n_158));// L305 -extern long int (__a64l_162) (const char * (____s_161));// L308:L309 -extern long int (__a64l_163) (const char * (____s_161));// L308:L309 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -static __inline unsigned int (____bswap_32_324) (unsigned int ____bsx_323) { - -if (__static_condition_default_325) { +if (__static_condition_default_257) { +if ( rand( ) % 2 )// L11 +{ { { -__static_type_error("invalid type found in return expression"); + __thisopt_252 = ( 1 << 3 ) ; // L4:L13 } } - - } } -static __inline ____uint64_t_175 (____bswap_64_327) (____uint64_t_175 ____bsx_326) { - -if (__static_condition_default_325) { - -{ -{ - - - -__static_type_error("invalid type found in return expression"); } } } } -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -struct __timespec_334 ;// L120 +void (__ssl_cmd_protocol_parse_254) () { -struct __timeval_342 ;// L30 - -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern int (__select_376) (int ____nfds_365, __fd_set_362 * __restrict ____readfds_366, __fd_set_362 * __restrict ____writefds_368, __fd_set_362 * __restrict ____exceptfds_370, struct __timeval_342 * __restrict ____timeout_373);// L106:L109 -extern int (__select_377) (int ____nfds_365, __fd_set_362 * __restrict ____readfds_366, __fd_set_362 * __restrict ____writefds_368, __fd_set_362 * __restrict ____exceptfds_370, struct __forward_tag_reference_372 * __restrict ____timeout_375);// L106:L109 -extern int (__pselect_392) (int ____nfds_380, __fd_set_362 * __restrict ____readfds_381, __fd_set_362 * __restrict ____writefds_383, __fd_set_362 * __restrict ____exceptfds_385, const struct __timespec_334 * __restrict ____timeout_388, const ____sigset_t_332 * __restrict ____sigmask_391);// L118:L122 -extern int (__pselect_393) (int ____nfds_380, __fd_set_362 * __restrict ____readfds_381, __fd_set_362 * __restrict ____writefds_383, __fd_set_362 * __restrict ____exceptfds_385, const struct __forward_tag_reference_387 * __restrict ____timeout_390, const ____sigset_t_332 * __restrict ____sigmask_391);// L118:L122 -extern long int (____fdelt_chk_397) (long int ____d_396);// L24 -extern long int (____fdelt_warn_399) (long int ____d_398);// L25:L26 -extern unsigned int (__gnu_dev_major_401) (unsigned long long int ____dev_400);// L27:L28 -extern unsigned int (__gnu_dev_major_402) (unsigned long long int ____dev_400);// L27:L28 -extern unsigned int (__gnu_dev_minor_404) (unsigned long long int ____dev_403);// L30:L31 -extern unsigned long long int (__gnu_dev_makedev_407) (unsigned int ____major_405, unsigned int ____minor_406);// L33:L35 -__extension__/* no function due to type errors in the function prototype */ -__extension__/* no function due to type errors in the function prototype */ -__extension__/* no function due to type errors in the function prototype */ -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -union __pthread_attr_t_434 ;// L63 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern int (__rand_465) (void );// L374 -extern void (__srand_467) (unsigned int ____seed_466);// L376 -extern int (__rand_r_469) (unsigned int * (____seed_468));// L381 -extern double (__drand48_470) (void );// L389 -extern double (__erand48_472) (unsigned short int ____xsubi_471[3]);// L390 -extern long int (__lrand48_473) (void );// L393 -extern long int (__nrand48_475) (unsigned short int ____xsubi_474[3]);// L394:L395 -extern long int (__mrand48_476) (void );// L398 -extern long int (__jrand48_478) (unsigned short int ____xsubi_477[3]);// L399:L400 -extern void (__srand48_480) (long int ____seedval_479);// L403 -extern unsigned short int * ((__seed48_482) (unsigned short int ____seed16v_481[3]));// L404:L405 -extern void (__lcong48_484) (unsigned short int ____param_483[7]);// L406 -extern void * ((__malloc_486) (__size_t_1 ____size_485));// L466 -extern void * ((__malloc_487) (__size_t_1 ____size_485));// L466 -extern void * ((__calloc_490) (__size_t_1 ____nmemb_488, __size_t_1 ____size_489));// L468:L469 -extern void * ((__calloc_491) (__size_t_1 ____nmemb_488, __size_t_1 ____size_489));// L468:L469 -extern void * ((__realloc_494) (void * (____ptr_492), __size_t_1 ____size_493));// L480:L481 -extern void (__free_496) (void * (____ptr_495));// L483 -extern void (__cfree_498) (void * (____ptr_497));// L488 -extern void * ((__alloca_500) (__size_t_1 ____size_499));// L32 -extern void * ((__valloc_502) (__size_t_1 ____size_501));// L498 -extern void * ((__valloc_503) (__size_t_1 ____size_501));// L498 -extern int (__posix_memalign_507) (void * (* (____memptr_504)), __size_t_1 ____alignment_505, __size_t_1 ____size_506);// L503:L504 -extern int (__posix_memalign_508) (void * (* (____memptr_504)), __size_t_1 ____alignment_505, __size_t_1 ____size_506);// L503:L504 -extern void * ((__aligned_alloc_511) (__size_t_1 ____alignment_509, __size_t_1 ____size_510));// L509:L510 -extern void * ((__aligned_alloc_512) (__size_t_1 ____alignment_509, __size_t_1 ____size_510));// L509:L510 -extern void * ((__aligned_alloc_513) (__size_t_1 ____alignment_509, __size_t_1 ____size_510));// L509:L510 -extern void * ((__aligned_alloc_514) (__size_t_1 ____alignment_509, __size_t_1 ____size_510));// L509:L510 -extern void (__abort_515) (void );// L515 -extern int (__atexit_517) (void (* (____func_516)) (void ));// L519 -extern int (__at_quick_exit_519) (void (* (____func_518)) (void ));// L527 -extern int (__on_exit_524) (void (* (____func_522)) (int ____status_520, void * (____arg_521)), void * (____arg_523));// L535:L536 -extern void (__exit_526) (int ____status_525);// L543 -extern void (__exit_527) (int ____status_525);// L543 -extern void (__quick_exit_529) (int ____status_528);// L549 -extern void (___Exit_531) (int ____status_530);// L557 -extern char * ((__getenv_533) (const char * (____name_532)));// L564 -extern char * ((__getenv_534) (const char * (____name_532)));// L564 -extern int (__putenv_536) (char * (____string_535));// L578 -extern int (__setenv_540) (const char * (____name_537), const char * (____value_538), int ____replace_539);// L584:L585 -extern int (__unsetenv_542) (const char * (____name_541));// L588 -extern int (__clearenv_543) (void );// L595 -extern char * ((__mktemp_545) (char * (____template_544)));// L606 -extern int (__mkstemp_548) (char * (____template_546));// L619 -extern int (__mkstemp_550) (char * (____template_546));// L619 -extern int (__mkstemp_549) (char * (____template_547));// L622:L623 -extern int (__mkstemp_551) (char * (____template_547));// L622:L623 -extern int (__mkstemps_556) (char * (____template_552), int ____suffixlen_553);// L641 -extern int (__mkstemps_557) (char * (____template_554), int ____suffixlen_555);// L644:L645 -extern int (__mkstemps_558) (char * (____template_552), int ____suffixlen_553);// L641 -extern int (__mkstemps_559) (char * (____template_554), int ____suffixlen_555);// L644:L645 -extern char * ((__mkdtemp_561) (char * (____template_560)));// L662 -extern char * ((__mkdtemp_562) (char * (____template_560)));// L662 -extern int (__system_564) (const char * (____command_563));// L716 -extern int (__system_565) (const char * (____command_563));// L716 -extern int (__system_566) (const char * (____command_563));// L716 -extern int (__system_567) (const char * (____command_563));// L716 -extern char * ((__realpath_570) (const char * __restrict ____name_568, char * __restrict ____resolved_569));// L733:L734 -extern char * ((__realpath_571) (const char * __restrict ____name_568, char * __restrict ____resolved_569));// L733:L734 -// typedef moved to top of scope -extern void * ((__bsearch_580) (const void * (____key_573), const void * (____base_574), __size_t_1 ____nmemb_575, __size_t_1 ____size_576, ____compar_fn_t_572 ____compar_577));// L754:L756 -extern void * ((__bsearch_582) (const void * (____key_573), const void * (____base_574), __size_t_1 ____nmemb_575, __size_t_1 ____size_576, ____compar_fn_t_572 ____compar_577));// L754:L756 -/* no function due to type errors in the function prototype */ -extern void (__qsort_601) (void * (____base_596), __size_t_1 ____nmemb_597, __size_t_1 ____size_598, ____compar_fn_t_572 ____compar_599);// L764:L765 -extern void (__qsort_603) (void * (____base_596), __size_t_1 ____nmemb_597, __size_t_1 ____size_598, ____compar_fn_t_572 ____compar_599);// L764:L765 -extern int (__abs_606) (int ____x_605);// L774 -extern int (__abs_607) (int ____x_605);// L774 -extern long int (__labs_609) (long int ____x_608);// L775 -extern long int (__labs_610) (long int ____x_608);// L775 -extern long long int (__llabs_612) (long long int ____x_611);// L779:L780 -extern long long int (__llabs_613) (long long int ____x_611);// L779:L780 -extern __div_t_94 (__div_616) (int ____numer_614, int ____denom_615);// L788:L789 -extern __div_t_94 (__div_617) (int ____numer_614, int ____denom_615);// L788:L789 -extern __ldiv_t_99 (__ldiv_620) (long int ____numer_618, long int ____denom_619);// L790:L791 -extern __ldiv_t_99 (__ldiv_622) (long int ____numer_618, long int ____denom_619);// L790:L791 -extern __lldiv_t_104 (__lldiv_626) (long long int ____numer_624, long long int ____denom_625);// L796:L798 -extern __lldiv_t_104 (__lldiv_628) (long long int ____numer_624, long long int ____denom_625);// L796:L798 -extern char * ((__ecvt_634) (double ____value_630, int ____ndigit_631, int * __restrict ____decpt_632, int * __restrict ____sign_633));// L811:L812 -extern char * ((__ecvt_635) (double ____value_630, int ____ndigit_631, int * __restrict ____decpt_632, int * __restrict ____sign_633));// L811:L812 -extern char * ((__fcvt_640) (double ____value_636, int ____ndigit_637, int * __restrict ____decpt_638, int * __restrict ____sign_639));// L817:L818 -extern char * ((__fcvt_641) (double ____value_636, int ____ndigit_637, int * __restrict ____decpt_638, int * __restrict ____sign_639));// L817:L818 -extern char * ((__gcvt_645) (double ____value_642, int ____ndigit_643, char * (____buf_644)));// L823:L824 -extern char * ((__gcvt_646) (double ____value_642, int ____ndigit_643, char * (____buf_644)));// L823:L824 -extern char * ((__qecvt_651) (long double ____value_647, int ____ndigit_648, int * __restrict ____decpt_649, int * __restrict ____sign_650));// L829:L831 -extern char * ((__qecvt_652) (long double ____value_647, int ____ndigit_648, int * __restrict ____decpt_649, int * __restrict ____sign_650));// L829:L831 -extern char * ((__qfcvt_657) (long double ____value_653, int ____ndigit_654, int * __restrict ____decpt_655, int * __restrict ____sign_656));// L832:L834 -extern char * ((__qfcvt_658) (long double ____value_653, int ____ndigit_654, int * __restrict ____decpt_655, int * __restrict ____sign_656));// L832:L834 -extern char * ((__qgcvt_662) (long double ____value_659, int ____ndigit_660, char * (____buf_661)));// L835:L836 -extern char * ((__qgcvt_663) (long double ____value_659, int ____ndigit_660, char * (____buf_661)));// L835:L836 -extern int (__ecvt_r_670) (double ____value_664, int ____ndigit_665, int * __restrict ____decpt_666, int * __restrict ____sign_667, char * __restrict ____buf_668, __size_t_1 ____len_669);// L841:L843 -extern int (__fcvt_r_677) (double ____value_671, int ____ndigit_672, int * __restrict ____decpt_673, int * __restrict ____sign_674, char * __restrict ____buf_675, __size_t_1 ____len_676);// L844:L846 -extern int (__qecvt_r_684) (long double ____value_678, int ____ndigit_679, int * __restrict ____decpt_680, int * __restrict ____sign_681, char * __restrict ____buf_682, __size_t_1 ____len_683);// L848:L851 -extern int (__qfcvt_r_691) (long double ____value_685, int ____ndigit_686, int * __restrict ____decpt_687, int * __restrict ____sign_688, char * __restrict ____buf_689, __size_t_1 ____len_690);// L852:L855 -extern int (__mblen_694) (const char * (____s_692), __size_t_1 ____n_693);// L862 -extern int (__mblen_695) (const char * (____s_692), __size_t_1 ____n_693);// L862 -extern int (__mbtowc_699) (__wchar_t_2 * __restrict ____pwc_696, const char * __restrict ____s_697, __size_t_1 ____n_698);// L865:L866 -extern int (__wctomb_702) (char * (____s_700), __wchar_t_2 ____wchar_701);// L869 -extern __size_t_1 (__mbstowcs_706) (__wchar_t_2 * __restrict ____pwcs_703, const char * __restrict ____s_704, __size_t_1 ____n_705);// L873:L874 -extern __size_t_1 (__wcstombs_710) (char * __restrict ____s_707, const __wchar_t_2 * __restrict ____pwcs_708, __size_t_1 ____n_709);// L876:L878 -extern int (__rpmatch_713) (const char * (____response_711));// L887 -extern int (__rpmatch_712) (const char * (____response_711));// L887 -extern int (__getsubopt_718) (char * (* __restrict ____optionp_714), char * const * __restrict ____tokens_715, char * (* __restrict ____valuep_716));// L898:L901 -extern int (__getsubopt_717) (char * (* __restrict ____optionp_714), char * const * __restrict ____tokens_715, char * (* __restrict ____valuep_716));// L898:L901 -extern int (__getloadavg_721) (double ____loadavg_719[], int ____nelem_720);// L950:L951 -/* no function due to type errors in the function prototype */ -extern char * ((____realpath_chk_726) (const char * __restrict ____name_723, char * __restrict ____resolved_724, __size_t_1 ____resolvedlen_725));// L23:L25 -extern char * ((____realpath_alias_729) (const char * __restrict ____name_727, char * __restrict ____resolved_728));// L26:L28 -extern char * ((____realpath_chk_warn_733) (const char * __restrict ____name_730, char * __restrict ____resolved_731, __size_t_1 ____resolvedlen_732));// L29:L34 -/* no function due to type errors in the function prototype */ -extern int (____ptsname_r_chk_741) (int ____fd_737, char * (____buf_738), __size_t_1 ____buflen_739, __size_t_1 ____nreal_740);// L52:L53 -extern int (____ptsname_r_alias_745) (int ____fd_742, char * (____buf_743), __size_t_1 ____buflen_744);// L54:L56 -extern int (____ptsname_r_chk_warn_750) (int ____fd_746, char * (____buf_747), __size_t_1 ____buflen_748, __size_t_1 ____nreal_749);// L57:L61 -/* no function due to type errors in the function prototype */ -extern int (____wctomb_chk_758) (char * (____s_755), __wchar_t_2 ____wchar_756, __size_t_1 ____buflen_757);// L77:L78 -extern int (____wctomb_alias_761) (char * (____s_759), __wchar_t_2 ____wchar_760);// L79:L80 -/* no function due to type errors in the function prototype */ -extern __size_t_1 (____mbstowcs_chk_768) (__wchar_t_2 * __restrict ____dst_764, const char * __restrict ____src_765, __size_t_1 ____len_766, __size_t_1 ____dstlen_767);// L98:L100 -extern __size_t_1 (____mbstowcs_alias_772) (__wchar_t_2 * __restrict ____dst_769, const char * __restrict ____src_770, __size_t_1 ____len_771);// L101:L104 -extern __size_t_1 (____mbstowcs_chk_warn_777) (__wchar_t_2 * __restrict ____dst_773, const char * __restrict ____src_774, __size_t_1 ____len_775, __size_t_1 ____dstlen_776);// L105:L110 -/* no function due to type errors in the function prototype */ -extern __size_t_1 (____wcstombs_chk_785) (char * __restrict ____dst_781, const __wchar_t_2 * __restrict ____src_782, __size_t_1 ____len_783, __size_t_1 ____dstlen_784);// L130:L132 -extern __size_t_1 (____wcstombs_alias_789) (char * __restrict ____dst_786, const __wchar_t_2 * __restrict ____src_787, __size_t_1 ____len_788);// L133:L136 -extern __size_t_1 (____wcstombs_chk_warn_794) (char * __restrict ____dst_790, const __wchar_t_2 * __restrict ____src_791, __size_t_1 ____len_792, __size_t_1 ____dstlen_793);// L137:L141 -/* no function due to type errors in the function prototype */ -void (__ssl_cmd_protocol_parse_799) () { - -if (__static_condition_default_802) { +if (__static_condition_default_258) { { { -int __thisopt_798;// L9 +int __thisopt_252;// L9 -if (__static_condition_default_803) { +if (__static_condition_default_259) { if ( rand( ) % 2 )// L11 { @@ -1329,34 +315,12 @@ if ( rand( ) % 2 )// L11 -if (__static_condition_default_804) { - __thisopt_798 = ( 1 << 3 ) ; // L4:L13 -} -if (__static_condition_default_805) { -__static_type_error("type error : no valid expression"); // L13 -} -} -} + __thisopt_252 = ( 1 << 3 ) ; // L4:L13 } } } } - - -} -} -void (__ssl_cmd_protocol_parse_800) () { - -if (__static_condition_default_806) { - -{ -{ - - - -int __thisopt_798;// L9 - -if (__static_condition_default_807) { +if (__static_condition_default_260) { if ( rand( ) % 2 )// L11 { @@ -1365,12 +329,7 @@ if ( rand( ) % 2 )// L11 -if (__static_condition_default_808) { - __thisopt_798 = ( 1 << 3 ) ; // L4:L13 -} -if (__static_condition_default_809) { -__static_type_error("type error : no valid expression"); // L13 -} + __thisopt_252 = ( 1 << 3 ) ; // L4:L13 } } } @@ -1381,39 +340,18 @@ __static_type_error("type error : no valid expression"); // L13 } } -void (__ssl_cmd_protocol_parse_801) () { - -if (__static_condition_default_810) { +int (__main_261) (void ) { { { -int __thisopt_798;// L9 - -__static_type_error("invalid type found in if statement"); -} -} - - -} -} -int (__main_811) (void ) { - -{ -{ - - - -if (__static_condition_default_812) { - __ssl_cmd_protocol_parse_799 ( ) ; // L19 -} -if (__static_condition_default_813) { - __ssl_cmd_protocol_parse_800 ( ) ; // L19 +if (__static_condition_default_255) { + __ssl_cmd_protocol_parse_253 ( ) ; // L19 } -if (__static_condition_default_810) { - __ssl_cmd_protocol_parse_801 ( ) ; // L19 +if (__static_condition_default_258) { + __ssl_cmd_protocol_parse_254 ( ) ; // L19 } return 0 ;// L20 } diff --git a/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.clangres b/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.clangres index 98274ace..eae8581b 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.clangres @@ -1,7 +1,13 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.c:1333:2: warning: Value stored to '__thisopt_798' is never read [deadcode.DeadStores] - __thisopt_798 = ( 1 << 3 ) ; // L4:L13 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.c:273:2: warning: Value stored to '__thisopt_252' is never read [deadcode.DeadStores] + __thisopt_252 = ( 1 << 3 ) ; // L4:L13 ^ ~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.c:1369:2: warning: Value stored to '__thisopt_798' is never read [deadcode.DeadStores] - __thisopt_798 = ( 1 << 3 ) ; // L4:L13 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.c:287:2: warning: Value stored to '__thisopt_252' is never read [deadcode.DeadStores] + __thisopt_252 = ( 1 << 3 ) ; // L4:L13 ^ ~~~~~~~~~~ -2 warnings generated. +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.c:318:2: warning: Value stored to '__thisopt_252' is never read [deadcode.DeadStores] + __thisopt_252 = ( 1 << 3 ) ; // L4:L13 + ^ ~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.c:332:2: warning: Value stored to '__thisopt_252' is never read [deadcode.DeadStores] + __thisopt_252 = ( 1 << 3 ) ; // L4:L13 + ^ ~~~~~~~~~~ +4 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.inferres index 0d9412d9..e56293cd 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.inferres +++ b/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.inferres @@ -1,23 +1,41 @@ -APACHE/1a3c8e3d840.desugared.c:1333: error: Dead Store - The value written to &__thisopt_798 (type int) is never used. - 1331. - 1332. if (__static_condition_default_804) { - 1333. __thisopt_798 = ( 1 << 3 ) ; // L4:L13 - ^ - 1334. } - 1335. if (__static_condition_default_805) { +APACHE/1a3c8e3d840.desugared.c:273: error: Dead Store + The value written to &__thisopt_252 (type int) is never used. + 271. + 272. + 273. __thisopt_252 = ( 1 << 3 ) ; // L4:L13 + ^ + 274. } + 275. } -APACHE/1a3c8e3d840.desugared.c:1369: error: Dead Store - The value written to &__thisopt_798 (type int) is never used. - 1367. - 1368. if (__static_condition_default_808) { - 1369. __thisopt_798 = ( 1 << 3 ) ; // L4:L13 - ^ - 1370. } - 1371. if (__static_condition_default_809) { +APACHE/1a3c8e3d840.desugared.c:287: error: Dead Store + The value written to &__thisopt_252 (type int) is never used. + 285. + 286. + 287. __thisopt_252 = ( 1 << 3 ) ; // L4:L13 + ^ + 288. } + 289. } +APACHE/1a3c8e3d840.desugared.c:318: error: Dead Store + The value written to &__thisopt_252 (type int) is never used. + 316. + 317. + 318. __thisopt_252 = ( 1 << 3 ) ; // L4:L13 + ^ + 319. } + 320. } -Found 2 issues +APACHE/1a3c8e3d840.desugared.c:332: error: Dead Store + The value written to &__thisopt_252 (type int) is never used. + 330. + 331. + 332. __thisopt_252 = ( 1 << 3 ) ; // L4:L13 + ^ + 333. } + 334. } + + +Found 4 issues Issue Type(ISSUED_TYPE_ID): # - Dead Store(DEAD_STORE): 2 + Dead Store(DEAD_STORE): 4 diff --git a/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.c.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.c.desugared.c new file mode 100644 index 00000000..3a3ec0bc --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.c.desugared.c @@ -0,0 +1,109 @@ +#include + +extern void __static_parse_error(char *msg); +extern void __static_type_error(char *msg); +extern void __static_renaming(char *renaming, char *original); +extern void __static_condition_renaming(char *expression, char *renaming); + +void __static_initializer_default(); + +extern const bool __static_condition_default_4; +extern const bool __static_condition_default_9; +extern const bool __static_condition_default_5; +extern const bool __static_condition_default_8; +void __static_initializer_default() { +__static_renaming("__apr_rmm_init_1", "apr_rmm_init"); +__static_renaming("__rmm_lock_2", "rmm_lock"); +__static_renaming("__util_ldap_cache_init_3", "util_ldap_cache_init"); +__static_renaming("__main_6", "main"); +__static_renaming("__main_7", "main"); + +__static_condition_renaming("__static_condition_default_4", "(defined APU_HAS_LDAP) && !(defined APR_HAS_SHARED_MEMORY)"); +__static_condition_renaming("__static_condition_default_5", "(defined APU_HAS_LDAP) && (defined APR_HAS_SHARED_MEMORY)"); +__static_condition_renaming("__static_condition_default_8", "!(defined APU_HAS_LDAP)"); +__static_condition_renaming("__static_condition_default_9", "(defined APU_HAS_LDAP)"); + +}; + +void (__apr_rmm_init_1) (char * (__rmm_lock_0)) { + +{ +{ + + + +__static_type_error("type error : no valid expression"); // L5 +} +} + + +} +void (__util_ldap_cache_init_3) () { + +{ +if (__static_condition_default_4) { + +{ +{ + + + +char * (__rmm_lock_2);// L11 + +} +} + + +} + +if (__static_condition_default_5) { + +{ +{ + + + +char * (__rmm_lock_2);// L11 + + __apr_rmm_init_1 ( __rmm_lock_2 ) ; // L14 +} +} + + +} + +}} +int (__main_6) (void ) { + +if (__static_condition_default_8) { + +{ +{ + + + +return 0 ;// L24 +} +} + + +} +} +int (__main_7) (void ) { + +if (__static_condition_default_9) { + +{ +{ + + + + __util_ldap_cache_init_3 ( ) ; // L22 +return 0 ;// L24 +} +} + + +} +} + diff --git a/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c index c5775460..bdf9b4d2 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c @@ -7,284 +7,217 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_382; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_380; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_198; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_1102; -extern const bool __static_condition_default_1105; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_963; -extern const bool __static_condition_default_1103; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_1108; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_1109; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_583; -extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_204; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_543; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_747; -extern const bool __static_condition_default_512; -extern const bool __static_condition_default_649; +extern const bool __static_condition_default_870; +extern const bool __static_condition_default_820; +extern const bool __static_condition_default_74; +extern const bool __static_condition_default_338; +extern const bool __static_condition_default_474; extern const bool __static_condition_default_684; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_894; -extern const bool __static_condition_default_1110; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_541; +extern const bool __static_condition_default_499; extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_408; -extern const bool __static_condition_default_311; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_1098; +extern const bool __static_condition_default_577; +extern const bool __static_condition_default_707; +extern const bool __static_condition_default_924; +extern const bool __static_condition_default_162; +extern const bool __static_condition_default_626; extern const bool __static_condition_default_395; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_701; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_955; -extern const bool __static_condition_default_914; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_613; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_549; -extern const bool __static_condition_default_793; -extern const bool __static_condition_default_559; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_488; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_755; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_645; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_419; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_646; -extern const bool __static_condition_default_842; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_248; -extern const bool __static_condition_default_891; -extern const bool __static_condition_default_315; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_1101; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_685; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_1072; extern const bool __static_condition_default_473; -extern const bool __static_condition_default_702; -extern const bool __static_condition_default_461; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_345; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_308; +extern const bool __static_condition_default_551; +extern const bool __static_condition_default_236; +extern const bool __static_condition_default_743; +extern const bool __static_condition_default_318; extern const bool __static_condition_default_991; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_929; -extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_1097; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_313; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_803; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_521; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_564; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_1096; -extern const bool __static_condition_default_761; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_536; -extern const bool __static_condition_default_658; +extern const bool __static_condition_default_435; +extern const bool __static_condition_default_575; +extern const bool __static_condition_default_774; +extern const bool __static_condition_default_790; extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_846; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_670; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_907; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_357; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_957; -extern const bool __static_condition_default_347; -extern const bool __static_condition_default_769; -extern const bool __static_condition_default_386; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_76; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_677; extern const bool __static_condition_default_296; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_217; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_779; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_412; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_290; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_438; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_367; -extern const bool __static_condition_default_709; -extern const bool __static_condition_default_875; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_402; -extern const bool __static_condition_default_393; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_780; -extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_53; -extern const bool __static_condition_default_789; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_751; +extern const bool __static_condition_default_680; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_714; +extern const bool __static_condition_default_933; +extern const bool __static_condition_default_762; +extern const bool __static_condition_default_686; extern const bool __static_condition_default_223; -extern const bool __static_condition_default_602; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_969; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_881; +extern const bool __static_condition_default_234; +extern const bool __static_condition_default_772; +extern const bool __static_condition_default_336; +extern const bool __static_condition_default_320; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_719; +extern const bool __static_condition_default_586; +extern const bool __static_condition_default_733; +extern const bool __static_condition_default_641; +extern const bool __static_condition_default_356; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_495; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_343; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_276; +extern const bool __static_condition_default_706; +extern const bool __static_condition_default_695; +extern const bool __static_condition_default_605; +extern const bool __static_condition_default_528; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_961; +extern const bool __static_condition_default_788; extern const bool __static_condition_default_431; -extern const bool __static_condition_default_497; +extern const bool __static_condition_default_766; +extern const bool __static_condition_default_905; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_540; +extern const bool __static_condition_default_457; +extern const bool __static_condition_default_421; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_226; +extern const bool __static_condition_default_379; +extern const bool __static_condition_default_595; +extern const bool __static_condition_default_225; +extern const bool __static_condition_default_400; +extern const bool __static_condition_default_935; +extern const bool __static_condition_default_784; +extern const bool __static_condition_default_696; +extern const bool __static_condition_default_496; +extern const bool __static_condition_default_556; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_567; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_374; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_358; +extern const bool __static_condition_default_501; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_893; +extern const bool __static_condition_default_500; +extern const bool __static_condition_default_1025; +extern const bool __static_condition_default_300; +extern const bool __static_condition_default_349; +extern const bool __static_condition_default_953; +extern const bool __static_condition_default_508; extern const bool __static_condition_default_745; -extern const bool __static_condition_default_590; -extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_638; -extern const bool __static_condition_default_388; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_693; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_887; -extern const bool __static_condition_default_787; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_187; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_956; -extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_568; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_369; +extern const bool __static_condition_default_446; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_992; +extern const bool __static_condition_default_332; +extern const bool __static_condition_default_451; +extern const bool __static_condition_default_502; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_1026; +extern const bool __static_condition_default_304; +extern const bool __static_condition_default_1033; +extern const bool __static_condition_default_562; +extern const bool __static_condition_default_507; +extern const bool __static_condition_default_1017; extern const bool __static_condition_default_235; -extern const bool __static_condition_default_317; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_333; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_632; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_848; -extern const bool __static_condition_default_1104; -extern const bool __static_condition_default_872; -extern const bool __static_condition_default_978; +extern const bool __static_condition_default_482; +extern const bool __static_condition_default_517; +extern const bool __static_condition_default_749; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_330; +extern const bool __static_condition_default_448; +extern const bool __static_condition_default_889; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_161; +extern const bool __static_condition_default_165; +extern const bool __static_condition_default_470; +extern const bool __static_condition_default_254; +extern const bool __static_condition_default_720; +extern const bool __static_condition_default_906; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_694; +extern const bool __static_condition_default_459; +extern const bool __static_condition_default_983; +extern const bool __static_condition_default_882; +extern const bool __static_condition_default_968; extern const bool __static_condition_default_278; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_753; -extern const bool __static_condition_default_858; +extern const bool __static_condition_default_118; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_798; +extern const bool __static_condition_default_833; +extern const bool __static_condition_default_954; +extern const bool __static_condition_default_381; +extern const bool __static_condition_default_579; +extern const bool __static_condition_default_672; +extern const bool __static_condition_default_1021; +extern const bool __static_condition_default_904; +extern const bool __static_condition_default_610; +extern const bool __static_condition_default_612; +extern const bool __static_condition_default_648; +extern const bool __static_condition_default_962; +extern const bool __static_condition_default_688; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_917; +extern const bool __static_condition_default_227; +extern const bool __static_condition_default_588; +extern const bool __static_condition_default_294; +extern const bool __static_condition_default_898; +extern const bool __static_condition_default_328; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_729; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_739; +extern const bool __static_condition_default_453; +extern const bool __static_condition_default_984; +extern const bool __static_condition_default_1016; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_639; +extern const bool __static_condition_default_976; +extern const bool __static_condition_default_370; +extern const bool __static_condition_default_449; +extern const bool __static_condition_default_778; +extern const bool __static_condition_default_480; +extern const bool __static_condition_default_454; +extern const bool __static_condition_default_256; +extern const bool __static_condition_default_640; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_230; +extern const bool __static_condition_default_948; +extern const bool __static_condition_default_232; +extern const bool __static_condition_default_310; +extern const bool __static_condition_default_999; +extern const bool __static_condition_default_394; +extern const bool __static_condition_default_977; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_931; +extern const bool __static_condition_default_429; +extern const bool __static_condition_default_603; +extern const bool __static_condition_default_642; +extern const bool __static_condition_default_533; +extern const bool __static_condition_default_351; +extern const bool __static_condition_default_627; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_941; +extern const bool __static_condition_default_1031; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_716; +extern const bool __static_condition_default_624; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_804; +extern const bool __static_condition_default_718; +extern const bool __static_condition_default_794; +extern const bool __static_condition_default_326; +extern const bool __static_condition_default_855; +extern const bool __static_condition_default_1006; +extern const bool __static_condition_default_655; +extern const bool __static_condition_default_1032; +extern const bool __static_condition_default_1015; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -336,511 +269,439 @@ __static_renaming("____ssize_t_49", "__ssize_t"); __static_renaming("____syscall_slong_t_50", "__syscall_slong_t"); __static_renaming("____syscall_ulong_t_51", "__syscall_ulong_t"); __static_renaming("____loff_t_52", "__loff_t"); -__static_renaming("____qaddr_t_54", "__qaddr_t"); -__static_renaming("____caddr_t_55", "__caddr_t"); -__static_renaming("____intptr_t_56", "__intptr_t"); -__static_renaming("____socklen_t_57", "__socklen_t"); -__static_renaming("__FILE_59", "FILE"); -__static_renaming("____FILE_60", "__FILE"); -__static_renaming("____mbstate_t_69", "__mbstate_t"); -__static_renaming("___G_fpos_t_77", "_G_fpos_t"); -__static_renaming("___G_fpos64_t_85", "_G_fpos64_t"); -__static_renaming("____gnuc_va_list_86", "__gnuc_va_list"); -__static_renaming("___IO_lock_t_88", "_IO_lock_t"); -__static_renaming("___IO_FILE_171", "_IO_FILE"); -__static_renaming("___IO_FILE_172", "_IO_FILE"); -__static_renaming("___IO_2_1_stdin__175", "_IO_2_1_stdin_"); -__static_renaming("___IO_2_1_stdout__176", "_IO_2_1_stdout_"); -__static_renaming("___IO_2_1_stderr__177", "_IO_2_1_stderr_"); -__static_renaming("____io_read_fn_181", "__io_read_fn"); -__static_renaming("____io_write_fn_186", "__io_write_fn"); -__static_renaming("____io_seek_fn_192", "__io_seek_fn"); -__static_renaming("____io_close_fn_195", "__io_close_fn"); -__static_renaming("____underflow_196", "__underflow"); -__static_renaming("____underflow_197", "__underflow"); -__static_renaming("____uflow_199", "__uflow"); -__static_renaming("____uflow_200", "__uflow"); -__static_renaming("____overflow_202", "__overflow"); -__static_renaming("____overflow_203", "__overflow"); -__static_renaming("___IO_getc_208", "_IO_getc"); -__static_renaming("___IO_getc_209", "_IO_getc"); -__static_renaming("___IO_putc_215", "_IO_putc"); -__static_renaming("___IO_putc_216", "_IO_putc"); -__static_renaming("___IO_feof_221", "_IO_feof"); -__static_renaming("___IO_feof_222", "_IO_feof"); -__static_renaming("___IO_ferror_227", "_IO_ferror"); -__static_renaming("___IO_ferror_228", "_IO_ferror"); -__static_renaming("___IO_peekc_locked_233", "_IO_peekc_locked"); -__static_renaming("___IO_peekc_locked_234", "_IO_peekc_locked"); -__static_renaming("___IO_flockfile_236", "_IO_flockfile"); -__static_renaming("___IO_flockfile_237", "_IO_flockfile"); -__static_renaming("___IO_funlockfile_239", "_IO_funlockfile"); -__static_renaming("___IO_funlockfile_240", "_IO_funlockfile"); -__static_renaming("___IO_ftrylockfile_242", "_IO_ftrylockfile"); -__static_renaming("___IO_ftrylockfile_243", "_IO_ftrylockfile"); -__static_renaming("___IO_vfscanf_245", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_247", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_251", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_252", "_IO_vfscanf"); -__static_renaming("___IO_vfprintf_254", "_IO_vfprintf"); -__static_renaming("___IO_vfprintf_256", "_IO_vfprintf"); -__static_renaming("___IO_vfprintf_260", "_IO_vfprintf"); -__static_renaming("___IO_padn_261", "_IO_padn"); -__static_renaming("___IO_padn_262", "_IO_padn"); -__static_renaming("___IO_sgetn_265", "_IO_sgetn"); -__static_renaming("___IO_sgetn_266", "_IO_sgetn"); -__static_renaming("___IO_seekoff_268", "_IO_seekoff"); -__static_renaming("___IO_seekoff_269", "_IO_seekoff"); -__static_renaming("___IO_seekpos_272", "_IO_seekpos"); -__static_renaming("___IO_seekpos_273", "_IO_seekpos"); -__static_renaming("___IO_free_backup_area_276", "_IO_free_backup_area"); -__static_renaming("___IO_free_backup_area_277", "_IO_free_backup_area"); -__static_renaming("__va_list_279", "va_list"); -__static_renaming("__off_t_281", "off_t"); -__static_renaming("__off_t_283", "off_t"); -__static_renaming("__ssize_t_285", "ssize_t"); -__static_renaming("__fpos_t_287", "fpos_t"); -__static_renaming("__fpos_t_289", "fpos_t"); -__static_renaming("__stdin_291", "stdin"); -__static_renaming("__stdin_292", "stdin"); -__static_renaming("__stdout_294", "stdout"); -__static_renaming("__stdout_295", "stdout"); -__static_renaming("__stderr_297", "stderr"); -__static_renaming("__stderr_298", "stderr"); -__static_renaming("__remove_301", "remove"); -__static_renaming("__rename_304", "rename"); -__static_renaming("__renameat_309", "renameat"); -__static_renaming("__tmpfile_310", "tmpfile"); -__static_renaming("__tmpfile_312", "tmpfile"); -__static_renaming("__tmpfile_314", "tmpfile"); -__static_renaming("__tmpfile_316", "tmpfile"); -__static_renaming("__tmpnam_319", "tmpnam"); -__static_renaming("__tmpnam_320", "tmpnam"); -__static_renaming("__tmpnam_r_322", "tmpnam_r"); -__static_renaming("__tmpnam_r_323", "tmpnam_r"); -__static_renaming("__tempnam_326", "tempnam"); -__static_renaming("__tempnam_327", "tempnam"); -__static_renaming("__fclose_330", "fclose"); -__static_renaming("__fclose_332", "fclose"); -__static_renaming("__fflush_336", "fflush"); -__static_renaming("__fflush_unlocked_340", "fflush_unlocked"); -__static_renaming("__fopen_344", "fopen"); -__static_renaming("__fopen_346", "fopen"); -__static_renaming("__fopen_354", "fopen"); -__static_renaming("__fopen_356", "fopen"); -__static_renaming("__freopen_362", "freopen"); -__static_renaming("__freopen_364", "freopen"); -__static_renaming("__freopen_366", "freopen"); -__static_renaming("__freopen_368", "freopen"); -__static_renaming("__fdopen_372", "fdopen"); -__static_renaming("__fdopen_374", "fdopen"); -__static_renaming("__fmemopen_379", "fmemopen"); -__static_renaming("__fmemopen_381", "fmemopen"); -__static_renaming("__open_memstream_385", "open_memstream"); -__static_renaming("__open_memstream_387", "open_memstream"); -__static_renaming("__setbuf_392", "setbuf"); -__static_renaming("__setbuf_394", "setbuf"); -__static_renaming("__setvbuf_401", "setvbuf"); -__static_renaming("__setbuffer_407", "setbuffer"); -__static_renaming("__setlinebuf_411", "setlinebuf"); -__static_renaming("__fprintf_416", "fprintf"); -__static_renaming("__fprintf_418", "fprintf"); -__static_renaming("__printf_421", "printf"); -__static_renaming("__sprintf_424", "sprintf"); -__static_renaming("__vfprintf_430", "vfprintf"); -__static_renaming("__vprintf_437", "vprintf"); -__static_renaming("__vsprintf_443", "vsprintf"); -__static_renaming("__snprintf_448", "snprintf"); -__static_renaming("__vsnprintf_454", "vsnprintf"); -__static_renaming("__vdprintf_460", "vdprintf"); -__static_renaming("__dprintf_464", "dprintf"); -__static_renaming("__fscanf_468", "fscanf"); -__static_renaming("__fscanf_470", "fscanf"); -__static_renaming("__fscanf_472", "fscanf"); -__static_renaming("__fscanf_474", "fscanf"); -__static_renaming("__scanf_477", "scanf"); -__static_renaming("__scanf_478", "scanf"); -__static_renaming("__sscanf_481", "sscanf"); -__static_renaming("__vfscanf_509", "vfscanf"); -__static_renaming("__vfscanf_513", "vfscanf"); -__static_renaming("__vscanf_520", "vscanf"); -__static_renaming("__vscanf_522", "vscanf"); -__static_renaming("__vsscanf_528", "vsscanf"); -__static_renaming("__fgetc_563", "fgetc"); -__static_renaming("__getc_567", "getc"); -__static_renaming("__getchar_569", "getchar"); -__static_renaming("__getc_unlocked_572", "getc_unlocked"); -__static_renaming("__getchar_unlocked_574", "getchar_unlocked"); -__static_renaming("__fgetc_unlocked_577", "fgetc_unlocked"); -__static_renaming("__fputc_582", "fputc"); -__static_renaming("__fputc_584", "fputc"); -__static_renaming("__putc_589", "putc"); -__static_renaming("__putchar_592", "putchar"); -__static_renaming("__fputc_unlocked_596", "fputc_unlocked"); -__static_renaming("__putc_unlocked_601", "putc_unlocked"); -__static_renaming("__putchar_unlocked_604", "putchar_unlocked"); -__static_renaming("__getw_607", "getw"); -__static_renaming("__putw_612", "putw"); -__static_renaming("__fgets_618", "fgets"); -__static_renaming("__fgets_620", "fgets"); -__static_renaming("__fgets_622", "fgets"); -__static_renaming("__fgets_624", "fgets"); -__static_renaming("____getdelim_631", "__getdelim"); -__static_renaming("____getdelim_635", "__getdelim"); -__static_renaming("__getdelim_644", "getdelim"); -__static_renaming("__getdelim_648", "getdelim"); -__static_renaming("__getline_656", "getline"); -__static_renaming("__getline_660", "getline"); -__static_renaming("__fputs_667", "fputs"); -__static_renaming("__fputs_669", "fputs"); -__static_renaming("__puts_672", "puts"); -__static_renaming("__ungetc_676", "ungetc"); -__static_renaming("__fseek_714", "fseek"); -__static_renaming("__fseek_716", "fseek"); -__static_renaming("__ftell_720", "ftell"); -__static_renaming("__ftell_722", "ftell"); -__static_renaming("__rewind_726", "rewind"); -__static_renaming("__fseeko_733", "fseeko"); -__static_renaming("__fseeko_744", "fseeko"); -__static_renaming("__ftello_750", "ftello"); -__static_renaming("__ftello_754", "ftello"); -__static_renaming("__ftello_758", "ftello"); -__static_renaming("__fgetpos_766", "fgetpos"); -__static_renaming("__fgetpos_778", "fgetpos"); -__static_renaming("__fsetpos_786", "fsetpos"); -__static_renaming("__fsetpos_790", "fsetpos"); -__static_renaming("__clearerr_796", "clearerr"); -__static_renaming("__feof_800", "feof"); -__static_renaming("__feof_802", "feof"); -__static_renaming("__ferror_806", "ferror"); -__static_renaming("__ferror_808", "ferror"); -__static_renaming("__clearerr_unlocked_812", "clearerr_unlocked"); -__static_renaming("__feof_unlocked_816", "feof_unlocked"); -__static_renaming("__feof_unlocked_818", "feof_unlocked"); -__static_renaming("__ferror_unlocked_822", "ferror_unlocked"); -__static_renaming("__ferror_unlocked_824", "ferror_unlocked"); -__static_renaming("__perror_827", "perror"); -__static_renaming("__perror_828", "perror"); -__static_renaming("__sys_nerr_829", "sys_nerr"); -__static_renaming("__sys_errlist_830", "sys_errlist"); -__static_renaming("__fileno_833", "fileno"); -__static_renaming("__fileno_835", "fileno"); -__static_renaming("__fileno_unlocked_839", "fileno_unlocked"); -__static_renaming("__fileno_unlocked_841", "fileno_unlocked"); -__static_renaming("__popen_845", "popen"); -__static_renaming("__popen_847", "popen"); -__static_renaming("__pclose_851", "pclose"); -__static_renaming("__ctermid_854", "ctermid"); -__static_renaming("__flockfile_857", "flockfile"); -__static_renaming("__ftrylockfile_861", "ftrylockfile"); -__static_renaming("__ftrylockfile_863", "ftrylockfile"); -__static_renaming("__funlockfile_867", "funlockfile"); -__static_renaming("____sprintf_chk_899", "__sprintf_chk"); -__static_renaming("____vsprintf_chk_906", "__vsprintf_chk"); -__static_renaming("____snprintf_chk_920", "__snprintf_chk"); -__static_renaming("____vsnprintf_chk_928", "__vsnprintf_chk"); -__static_renaming("____fprintf_chk_943", "__fprintf_chk"); -__static_renaming("____printf_chk_947", "__printf_chk"); -__static_renaming("____vfprintf_chk_954", "__vfprintf_chk"); -__static_renaming("____vprintf_chk_962", "__vprintf_chk"); -__static_renaming("____dprintf_chk_984", "__dprintf_chk"); -__static_renaming("____vdprintf_chk_990", "__vdprintf_chk"); -__static_renaming("____fgets_chk_1004", "__fgets_chk"); -__static_renaming("____fgets_chk_1006", "__fgets_chk"); -__static_renaming("____fgets_chk_1008", "__fgets_chk"); -__static_renaming("____fgets_alias_1014", "__fgets_alias"); -__static_renaming("____fgets_chk_warn_1021", "__fgets_chk_warn"); -__static_renaming("____cnt_1087", "__cnt"); -__static_renaming("____cptr_1088", "__cptr"); -__static_renaming("__apr_rmm_init_1093", "apr_rmm_init"); -__static_renaming("__apr_rmm_init_1094", "apr_rmm_init"); -__static_renaming("__apr_rmm_init_1095", "apr_rmm_init"); -__static_renaming("__rmm_lock_1099", "rmm_lock"); -__static_renaming("__util_ldap_cache_init_1100", "util_ldap_cache_init"); -__static_renaming("__main_1106", "main"); -__static_renaming("__main_1107", "main"); - -__static_condition_renaming("__static_condition_default_53", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_76", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_84", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_123", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_169", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_170", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_173", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_182", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_187", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_193", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_198", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_201", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_204", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_210", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_217", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_223", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_229", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_235", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_238", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_241", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_244", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_246", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_248", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_249", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_250", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_253", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_255", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_257", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_258", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_259", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_263", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_264", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_267", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_270", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_271", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_274", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_275", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_278", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_280", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); -__static_condition_renaming("__static_condition_default_282", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_284", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_286", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_288", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_290", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_293", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_296", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_299", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_311", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_313", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_315", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_317", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_331", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_333", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_337", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_341", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_345", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_347", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_355", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_357", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_363", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_365", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_367", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_369", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_373", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_375", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_380", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_382", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_386", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_388", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_393", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_395", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_402", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_408", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_412", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_417", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_419", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_431", "!(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_432", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_433", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_438", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_444", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_455", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_461", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_469", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_471", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_473", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_475", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_486", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_488", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_489", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_491", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_493", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_494", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_497", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_499", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_503", "!(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_510", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_511", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_512", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_514", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_515", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_516", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_521", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_523", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_529", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_536", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_537", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_538", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_539", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_541", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_542", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_543", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_544", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_549", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_550", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_552", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_553", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_559", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_560", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_564", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_568", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_573", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_578", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_583", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_585", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_590", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_597", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_602", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_608", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_613", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_619", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_621", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_623", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_625", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_632", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_633", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_634", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_636", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_637", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_638", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_645", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_646", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_647", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_649", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_650", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_651", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_657", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_658", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_659", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_661", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_662", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_663", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_668", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_670", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_677", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_683", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_684", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_685", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_686", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_692", "!(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_693", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_699", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_700", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_701", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_702", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_708", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_709", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_715", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_717", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_721", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_723", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_727", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_734", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_735", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_736", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_745", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_746", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_747", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_751", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_752", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_753", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_755", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_756", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_757", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_759", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_760", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_761", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_767", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_768", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_769", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_779", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_780", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_781", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_787", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_788", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_789", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_791", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_792", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_793", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_797", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_801", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_803", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_807", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_809", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_813", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_817", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_819", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_823", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_825", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_834", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_836", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_840", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_842", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_846", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_848", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_852", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_858", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_862", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_864", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_868", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_872", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_875", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_878", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_883", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_887", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_891", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_894", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_907", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_914", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_929", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_938", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_944", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_955", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_956", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_957", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_963", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_967", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_972", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_978", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_979", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_980", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_991", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_998", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1005", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1007", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1009", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1015", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1022", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1027", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1028", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1035", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1036", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1042", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1043", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1050", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1051", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1057", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1058", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1065", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1066", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1072", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1073", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1080", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1081", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1089", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_1090", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1091", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1096", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) || !(defined __need___FILE) && (defined __STRICT_ANSI__)"); -__static_condition_renaming("__static_condition_default_1097", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1098", "(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_1101", "(defined APU_HAS_LDAP) && !(defined APR_HAS_SHARED_MEMORY)"); -__static_condition_renaming("__static_condition_default_1102", "(defined APU_HAS_LDAP) && (defined APR_HAS_SHARED_MEMORY)"); -__static_condition_renaming("__static_condition_default_1103", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined APU_HAS_LDAP) && (defined APR_HAS_SHARED_MEMORY) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined APU_HAS_LDAP) && (defined APR_HAS_SHARED_MEMORY) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined APU_HAS_LDAP) && (defined APR_HAS_SHARED_MEMORY) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined APU_HAS_LDAP) && (defined APR_HAS_SHARED_MEMORY) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined APU_HAS_LDAP) && (defined APR_HAS_SHARED_MEMORY)"); -__static_condition_renaming("__static_condition_default_1104", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined APU_HAS_LDAP) && (defined APR_HAS_SHARED_MEMORY)"); -__static_condition_renaming("__static_condition_default_1105", "(defined __need___FILE) && (defined APU_HAS_LDAP) && (defined APR_HAS_SHARED_MEMORY)"); -__static_condition_renaming("__static_condition_default_1108", "!(defined APU_HAS_LDAP)"); -__static_condition_renaming("__static_condition_default_1109", "(defined APU_HAS_LDAP)"); -__static_condition_renaming("__static_condition_default_1110", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); - -if (__static_condition_default_1110) -{ +__static_renaming("____qaddr_t_53", "__qaddr_t"); +__static_renaming("____caddr_t_54", "__caddr_t"); +__static_renaming("____intptr_t_55", "__intptr_t"); +__static_renaming("____socklen_t_56", "__socklen_t"); +__static_renaming("__FILE_58", "FILE"); +__static_renaming("____FILE_59", "__FILE"); +__static_renaming("____mbstate_t_68", "__mbstate_t"); +__static_renaming("___G_fpos_t_75", "_G_fpos_t"); +__static_renaming("___G_fpos64_t_81", "_G_fpos64_t"); +__static_renaming("____gnuc_va_list_82", "__gnuc_va_list"); +__static_renaming("___IO_lock_t_84", "_IO_lock_t"); +__static_renaming("___IO_FILE_163", "_IO_FILE"); +__static_renaming("___IO_FILE_164", "_IO_FILE"); +__static_renaming("___IO_2_1_stdin__167", "_IO_2_1_stdin_"); +__static_renaming("___IO_2_1_stdout__168", "_IO_2_1_stdout_"); +__static_renaming("___IO_2_1_stderr__169", "_IO_2_1_stderr_"); +__static_renaming("____io_read_fn_173", "__io_read_fn"); +__static_renaming("____io_write_fn_177", "__io_write_fn"); +__static_renaming("____io_seek_fn_181", "__io_seek_fn"); +__static_renaming("____io_close_fn_183", "__io_close_fn"); +__static_renaming("____underflow_184", "__underflow"); +__static_renaming("____underflow_185", "__underflow"); +__static_renaming("____uflow_186", "__uflow"); +__static_renaming("____uflow_187", "__uflow"); +__static_renaming("____overflow_188", "__overflow"); +__static_renaming("____overflow_189", "__overflow"); +__static_renaming("___IO_getc_193", "_IO_getc"); +__static_renaming("___IO_getc_194", "_IO_getc"); +__static_renaming("___IO_putc_199", "_IO_putc"); +__static_renaming("___IO_putc_200", "_IO_putc"); +__static_renaming("___IO_feof_204", "_IO_feof"); +__static_renaming("___IO_feof_205", "_IO_feof"); +__static_renaming("___IO_ferror_209", "_IO_ferror"); +__static_renaming("___IO_ferror_210", "_IO_ferror"); +__static_renaming("___IO_peekc_locked_214", "_IO_peekc_locked"); +__static_renaming("___IO_peekc_locked_215", "_IO_peekc_locked"); +__static_renaming("___IO_flockfile_216", "_IO_flockfile"); +__static_renaming("___IO_flockfile_217", "_IO_flockfile"); +__static_renaming("___IO_funlockfile_218", "_IO_funlockfile"); +__static_renaming("___IO_funlockfile_219", "_IO_funlockfile"); +__static_renaming("___IO_ftrylockfile_220", "_IO_ftrylockfile"); +__static_renaming("___IO_ftrylockfile_221", "_IO_ftrylockfile"); +__static_renaming("___IO_vfscanf_222", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_224", "_IO_vfscanf"); +__static_renaming("___IO_vfprintf_231", "_IO_vfprintf"); +__static_renaming("___IO_vfprintf_233", "_IO_vfprintf"); +__static_renaming("___IO_padn_238", "_IO_padn"); +__static_renaming("___IO_padn_239", "_IO_padn"); +__static_renaming("___IO_sgetn_240", "_IO_sgetn"); +__static_renaming("___IO_sgetn_241", "_IO_sgetn"); +__static_renaming("___IO_seekoff_242", "_IO_seekoff"); +__static_renaming("___IO_seekoff_243", "_IO_seekoff"); +__static_renaming("___IO_seekpos_244", "_IO_seekpos"); +__static_renaming("___IO_seekpos_245", "_IO_seekpos"); +__static_renaming("___IO_free_backup_area_246", "_IO_free_backup_area"); +__static_renaming("___IO_free_backup_area_247", "_IO_free_backup_area"); +__static_renaming("__va_list_248", "va_list"); +__static_renaming("__off_t_250", "off_t"); +__static_renaming("__off_t_251", "off_t"); +__static_renaming("__ssize_t_252", "ssize_t"); +__static_renaming("__fpos_t_253", "fpos_t"); +__static_renaming("__fpos_t_255", "fpos_t"); +__static_renaming("__stdin_257", "stdin"); +__static_renaming("__stdin_258", "stdin"); +__static_renaming("__stdout_259", "stdout"); +__static_renaming("__stdout_260", "stdout"); +__static_renaming("__stderr_261", "stderr"); +__static_renaming("__stderr_262", "stderr"); +__static_renaming("__remove_264", "remove"); +__static_renaming("__rename_267", "rename"); +__static_renaming("__renameat_272", "renameat"); +__static_renaming("__tmpfile_273", "tmpfile"); +__static_renaming("__tmpfile_275", "tmpfile"); +__static_renaming("__tmpfile_277", "tmpfile"); +__static_renaming("__tmpfile_279", "tmpfile"); +__static_renaming("__tmpnam_282", "tmpnam"); +__static_renaming("__tmpnam_283", "tmpnam"); +__static_renaming("__tmpnam_r_285", "tmpnam_r"); +__static_renaming("__tmpnam_r_286", "tmpnam_r"); +__static_renaming("__tempnam_289", "tempnam"); +__static_renaming("__tempnam_290", "tempnam"); +__static_renaming("__fclose_293", "fclose"); +__static_renaming("__fclose_295", "fclose"); +__static_renaming("__fflush_299", "fflush"); +__static_renaming("__fflush_unlocked_303", "fflush_unlocked"); +__static_renaming("__fopen_307", "fopen"); +__static_renaming("__fopen_309", "fopen"); +__static_renaming("__fopen_317", "fopen"); +__static_renaming("__fopen_319", "fopen"); +__static_renaming("__freopen_325", "freopen"); +__static_renaming("__freopen_327", "freopen"); +__static_renaming("__freopen_329", "freopen"); +__static_renaming("__freopen_331", "freopen"); +__static_renaming("__fdopen_335", "fdopen"); +__static_renaming("__fdopen_337", "fdopen"); +__static_renaming("__fmemopen_342", "fmemopen"); +__static_renaming("__fmemopen_344", "fmemopen"); +__static_renaming("__open_memstream_348", "open_memstream"); +__static_renaming("__open_memstream_350", "open_memstream"); +__static_renaming("__setbuf_355", "setbuf"); +__static_renaming("__setbuf_357", "setbuf"); +__static_renaming("__setvbuf_364", "setvbuf"); +__static_renaming("__setbuffer_369", "setbuffer"); +__static_renaming("__setlinebuf_373", "setlinebuf"); +__static_renaming("__fprintf_378", "fprintf"); +__static_renaming("__fprintf_380", "fprintf"); +__static_renaming("__printf_383", "printf"); +__static_renaming("__sprintf_386", "sprintf"); +__static_renaming("__vfprintf_392", "vfprintf"); +__static_renaming("__vprintf_399", "vprintf"); +__static_renaming("__vsprintf_405", "vsprintf"); +__static_renaming("__snprintf_409", "snprintf"); +__static_renaming("__vsnprintf_415", "vsnprintf"); +__static_renaming("__vdprintf_420", "vdprintf"); +__static_renaming("__dprintf_424", "dprintf"); +__static_renaming("__fscanf_428", "fscanf"); +__static_renaming("__fscanf_430", "fscanf"); +__static_renaming("__fscanf_432", "fscanf"); +__static_renaming("__fscanf_434", "fscanf"); +__static_renaming("__scanf_437", "scanf"); +__static_renaming("__scanf_438", "scanf"); +__static_renaming("__sscanf_441", "sscanf"); +__static_renaming("__vfscanf_468", "vfscanf"); +__static_renaming("__vfscanf_472", "vfscanf"); +__static_renaming("__vscanf_479", "vscanf"); +__static_renaming("__vscanf_481", "vscanf"); +__static_renaming("__vsscanf_487", "vsscanf"); +__static_renaming("__fgetc_520", "fgetc"); +__static_renaming("__getc_523", "getc"); +__static_renaming("__getchar_524", "getchar"); +__static_renaming("__getc_unlocked_527", "getc_unlocked"); +__static_renaming("__getchar_unlocked_529", "getchar_unlocked"); +__static_renaming("__fgetc_unlocked_532", "fgetc_unlocked"); +__static_renaming("__fputc_537", "fputc"); +__static_renaming("__fputc_539", "fputc"); +__static_renaming("__putc_544", "putc"); +__static_renaming("__putchar_546", "putchar"); +__static_renaming("__fputc_unlocked_550", "fputc_unlocked"); +__static_renaming("__putc_unlocked_555", "putc_unlocked"); +__static_renaming("__putchar_unlocked_558", "putchar_unlocked"); +__static_renaming("__getw_561", "getw"); +__static_renaming("__putw_566", "putw"); +__static_renaming("__fgets_572", "fgets"); +__static_renaming("__fgets_574", "fgets"); +__static_renaming("__fgets_576", "fgets"); +__static_renaming("__fgets_578", "fgets"); +__static_renaming("____getdelim_585", "__getdelim"); +__static_renaming("____getdelim_587", "__getdelim"); +__static_renaming("__getdelim_594", "getdelim"); +__static_renaming("__getdelim_596", "getdelim"); +__static_renaming("__getline_602", "getline"); +__static_renaming("__getline_604", "getline"); +__static_renaming("__fputs_609", "fputs"); +__static_renaming("__fputs_611", "fputs"); +__static_renaming("__puts_614", "puts"); +__static_renaming("__ungetc_618", "ungetc"); +__static_renaming("__fseek_654", "fseek"); +__static_renaming("__fseek_656", "fseek"); +__static_renaming("__ftell_660", "ftell"); +__static_renaming("__ftell_662", "ftell"); +__static_renaming("__rewind_666", "rewind"); +__static_renaming("__fseeko_671", "fseeko"); +__static_renaming("__fseeko_679", "fseeko"); +__static_renaming("__ftello_683", "ftello"); +__static_renaming("__ftello_685", "ftello"); +__static_renaming("__ftello_687", "ftello"); +__static_renaming("__fgetpos_693", "fgetpos"); +__static_renaming("__fgetpos_705", "fgetpos"); +__static_renaming("__fsetpos_713", "fsetpos"); +__static_renaming("__fsetpos_717", "fsetpos"); +__static_renaming("__clearerr_723", "clearerr"); +__static_renaming("__feof_726", "feof"); +__static_renaming("__feof_728", "feof"); +__static_renaming("__ferror_732", "ferror"); +__static_renaming("__ferror_734", "ferror"); +__static_renaming("__clearerr_unlocked_738", "clearerr_unlocked"); +__static_renaming("__feof_unlocked_742", "feof_unlocked"); +__static_renaming("__feof_unlocked_744", "feof_unlocked"); +__static_renaming("__ferror_unlocked_748", "ferror_unlocked"); +__static_renaming("__ferror_unlocked_750", "ferror_unlocked"); +__static_renaming("__perror_753", "perror"); +__static_renaming("__perror_754", "perror"); +__static_renaming("__sys_nerr_755", "sys_nerr"); +__static_renaming("__sys_errlist_756", "sys_errlist"); +__static_renaming("__fileno_759", "fileno"); +__static_renaming("__fileno_761", "fileno"); +__static_renaming("__fileno_unlocked_765", "fileno_unlocked"); +__static_renaming("__fileno_unlocked_767", "fileno_unlocked"); +__static_renaming("__popen_771", "popen"); +__static_renaming("__popen_773", "popen"); +__static_renaming("__pclose_777", "pclose"); +__static_renaming("__ctermid_780", "ctermid"); +__static_renaming("__flockfile_783", "flockfile"); +__static_renaming("__ftrylockfile_787", "ftrylockfile"); +__static_renaming("__ftrylockfile_789", "ftrylockfile"); +__static_renaming("__funlockfile_793", "funlockfile"); +__static_renaming("____sprintf_chk_825", "__sprintf_chk"); +__static_renaming("____vsprintf_chk_832", "__vsprintf_chk"); +__static_renaming("____snprintf_chk_846", "__snprintf_chk"); +__static_renaming("____vsnprintf_chk_854", "__vsnprintf_chk"); +__static_renaming("____fprintf_chk_869", "__fprintf_chk"); +__static_renaming("____printf_chk_873", "__printf_chk"); +__static_renaming("____vfprintf_chk_880", "__vfprintf_chk"); +__static_renaming("____vprintf_chk_888", "__vprintf_chk"); +__static_renaming("____dprintf_chk_910", "__dprintf_chk"); +__static_renaming("____vdprintf_chk_916", "__vdprintf_chk"); +__static_renaming("____fgets_chk_930", "__fgets_chk"); +__static_renaming("____fgets_chk_932", "__fgets_chk"); +__static_renaming("____fgets_chk_934", "__fgets_chk"); +__static_renaming("____fgets_alias_940", "__fgets_alias"); +__static_renaming("____fgets_chk_warn_947", "__fgets_chk_warn"); +__static_renaming("____cnt_1013", "__cnt"); +__static_renaming("____cptr_1014", "__cptr"); +__static_renaming("__apr_rmm_init_1019", "apr_rmm_init"); +__static_renaming("__apr_rmm_init_1020", "apr_rmm_init"); +__static_renaming("__rmm_lock_1023", "rmm_lock"); +__static_renaming("__util_ldap_cache_init_1024", "util_ldap_cache_init"); +__static_renaming("__main_1029", "main"); +__static_renaming("__main_1030", "main"); + +__static_condition_renaming("__static_condition_default_74", "(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_118", "(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_161", "(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_162", "(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_165", "(defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_223", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_225", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_226", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_227", "(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_230", "(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_232", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_234", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_235", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_236", "(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_249", "!(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); +__static_condition_renaming("__static_condition_default_254", "!(defined _FILE_OFFSET_BITS) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_256", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_274", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_276", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_278", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_280", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_294", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_296", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_300", "(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_304", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_308", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_310", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_318", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_320", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_326", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_328", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_330", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_332", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_336", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_338", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_343", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_345", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_349", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_351", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_356", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_358", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_370", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_374", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_379", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_381", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_393", "!(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_394", "(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_395", "(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_400", "!(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_421", "!(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_429", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_431", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_433", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_435", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_446", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_448", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_449", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_451", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_453", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_454", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_457", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_459", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_469", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_470", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_471", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_473", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_474", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_475", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_480", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_482", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_494", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_495", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_496", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_497", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_499", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_500", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_501", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_502", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_507", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_508", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_510", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_511", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_517", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_528", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_533", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_538", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_540", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_551", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_556", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_562", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_567", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_573", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_575", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_577", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_579", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_586", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_588", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_595", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_597", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_603", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_605", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_610", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_612", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_624", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_625", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_626", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_627", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_633", "!(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_639", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_640", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_641", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_642", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_648", "!(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_649", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_655", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_657", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_661", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_663", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_672", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_680", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_684", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_686", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_688", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_694", "!(defined _FILE_OFFSET_BITS) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_695", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_696", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_706", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_707", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_708", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_714", "!(defined _FILE_OFFSET_BITS) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_715", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_716", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_718", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_719", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_720", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_727", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_729", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_733", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_735", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_739", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_743", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_745", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_749", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_751", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_760", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_762", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_766", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_768", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_772", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_774", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_778", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_784", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_788", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_790", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_794", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_798", "!(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_801", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_804", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_809", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_813", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_817", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_820", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_833", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_840", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_855", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_864", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_870", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_881", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_882", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_883", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_889", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_893", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_898", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_904", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_905", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_906", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_917", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_924", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_931", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_933", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_935", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_941", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_948", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_953", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_954", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_961", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_962", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_968", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_969", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_976", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_977", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_983", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_984", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_991", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_992", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_998", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_999", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1006", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1007", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1015", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_1016", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1017", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1021", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) || (defined __STRICT_ANSI__)"); +__static_condition_renaming("__static_condition_default_1022", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1025", "(defined APU_HAS_LDAP) && !(defined APR_HAS_SHARED_MEMORY)"); +__static_condition_renaming("__static_condition_default_1026", "(defined APU_HAS_LDAP) && (defined APR_HAS_SHARED_MEMORY)"); +__static_condition_renaming("__static_condition_default_1027", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined APU_HAS_LDAP) && (defined APR_HAS_SHARED_MEMORY) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined APU_HAS_LDAP) && (defined APR_HAS_SHARED_MEMORY) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined APU_HAS_LDAP) && (defined APR_HAS_SHARED_MEMORY) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined APU_HAS_LDAP) && (defined APR_HAS_SHARED_MEMORY) || (defined __STRICT_ANSI__) && (defined APU_HAS_LDAP) && (defined APR_HAS_SHARED_MEMORY)"); +__static_condition_renaming("__static_condition_default_1028", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined APU_HAS_LDAP) && (defined APR_HAS_SHARED_MEMORY)"); +__static_condition_renaming("__static_condition_default_1031", "!(defined APU_HAS_LDAP)"); +__static_condition_renaming("__static_condition_default_1032", "(defined APU_HAS_LDAP)"); +__static_condition_renaming("__static_condition_default_1033", "(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); + +if (__static_condition_default_1033) { __static_parse_error("Unable to parse"); } }; @@ -897,142 +758,142 @@ typedef long int ____ssize_t_49;// L110:L172 typedef long int ____syscall_slong_t_50;// L93:L175 typedef unsigned long int ____syscall_ulong_t_51;// L94:L177 typedef ____off64_t_24 ____loff_t_52;// L181 -typedef ____quad_t_14 * (____qaddr_t_54);// L182 -typedef char * (____caddr_t_55);// L183 -typedef long int ____intptr_t_56;// L110:L186 -typedef unsigned int ____socklen_t_57;// L92:L189 -typedef struct __forward_tag_reference_58 __FILE_59;// L48 -typedef struct __forward_tag_reference_58 ____FILE_60;// L64 -union ____anonymous_tag_61_62 { -unsigned int ____wch_63;// L265 -char ____wchb_64[4];// L92 +typedef ____quad_t_14 * (____qaddr_t_53);// L182 +typedef char * (____caddr_t_54);// L183 +typedef long int ____intptr_t_55;// L110:L186 +typedef unsigned int ____socklen_t_56;// L92:L189 +typedef struct __forward_tag_reference_57 __FILE_58;// L48 +typedef struct __forward_tag_reference_57 ____FILE_59;// L64 +union ____anonymous_tag_60_61 { +unsigned int ____wch_62;// L265 +char ____wchb_63[4];// L92 }; -struct ____anonymous_tag_65_66 { -int ____count_67;// L84 -union ____anonymous_tag_61_62 ____value_68;// L85 +struct ____anonymous_tag_64_65 { +int ____count_66;// L84 +union ____anonymous_tag_60_61 ____value_67;// L85 }; -typedef struct ____anonymous_tag_65_66 ____mbstate_t_69;// L82:L94 -struct ____anonymous_tag_70_71 { -____off_t_23 ____pos_72;// L0 -____mbstate_t_69 ____state_74;// L0 +typedef struct ____anonymous_tag_64_65 ____mbstate_t_68;// L82:L94 +struct ____anonymous_tag_69_70 { +____off_t_23 ____pos_71;// L0 +____mbstate_t_68 ____state_72;// L0 }; -typedef struct ____anonymous_tag_70_71 ___G_fpos_t_77;// L21:L25 -struct ____anonymous_tag_78_79 { -____off64_t_24 ____pos_80;// L0 -____mbstate_t_69 ____state_82;// L0 +typedef struct ____anonymous_tag_69_70 ___G_fpos_t_75;// L21:L25 +struct ____anonymous_tag_76_77 { +____off64_t_24 ____pos_78;// L0 +____mbstate_t_68 ____state_79;// L0 }; -typedef struct ____anonymous_tag_78_79 ___G_fpos64_t_85;// L26:L30 -typedef __builtin_va_list ____gnuc_va_list_86;// L40 -typedef void ___IO_lock_t_88;// L150 -struct ___IO_marker_90 { -struct __forward_tag_reference_89 * (___next_91);// L0 -struct __forward_tag_reference_58 * (___sbuf_92);// L0 -int ___pos_93;// L162 +typedef struct ____anonymous_tag_76_77 ___G_fpos64_t_81;// L26:L30 +typedef __builtin_va_list ____gnuc_va_list_82;// L40 +typedef void ___IO_lock_t_84;// L150 +struct ___IO_marker_86 { +struct __forward_tag_reference_85 * (___next_87);// L0 +struct __forward_tag_reference_57 * (___sbuf_88);// L0 +int ___pos_89;// L162 }; -enum ____codecvt_result_98 { -____codecvt_ok_94, -____codecvt_partial_95, -____codecvt_error_96, -____codecvt_noconv_97, +enum ____codecvt_result_94 { +____codecvt_ok_90, +____codecvt_partial_91, +____codecvt_error_92, +____codecvt_noconv_93, }; -struct ___IO_FILE_99 { -int ___flags_100;// L242 -char * (___IO_read_ptr_101);// L247 -char * (___IO_read_end_102);// L248 -char * (___IO_read_base_103);// L249 -char * (___IO_write_base_104);// L250 -char * (___IO_write_ptr_105);// L251 -char * (___IO_write_end_106);// L252 -char * (___IO_buf_base_107);// L253 -char * (___IO_buf_end_108);// L254 -char * (___IO_save_base_109);// L256 -char * (___IO_backup_base_110);// L257 -char * (___IO_save_end_111);// L258 -struct ___IO_marker_90 * (___markers_112);// L260 -struct __forward_tag_reference_58 * (___chain_113);// L0 -int ___fileno_114;// L264 -int ___flags2_115;// L268 -____off_t_23 ___old_offset_116;// L0 -unsigned short ___cur_column_118;// L274 -signed char ___vtable_offset_119;// L275 -char ___shortbuf_120[1];// L276 -___IO_lock_t_88 * (___lock_121);// L0 +struct ___IO_FILE_95 { +int ___flags_96;// L242 +char * (___IO_read_ptr_97);// L247 +char * (___IO_read_end_98);// L248 +char * (___IO_read_base_99);// L249 +char * (___IO_write_base_100);// L250 +char * (___IO_write_ptr_101);// L251 +char * (___IO_write_end_102);// L252 +char * (___IO_buf_base_103);// L253 +char * (___IO_buf_end_104);// L254 +char * (___IO_save_base_105);// L256 +char * (___IO_backup_base_106);// L257 +char * (___IO_save_end_107);// L258 +struct ___IO_marker_86 * (___markers_108);// L260 +struct __forward_tag_reference_57 * (___chain_109);// L0 +int ___fileno_110;// L264 +int ___flags2_111;// L268 +____off_t_23 ___old_offset_112;// L0 +unsigned short ___cur_column_113;// L274 +signed char ___vtable_offset_114;// L275 +char ___shortbuf_115[1];// L276 +___IO_lock_t_84 * (___lock_116);// L0 }; -struct ___IO_FILE_124 { -int ___flags_125;// L242 -char * (___IO_read_ptr_126);// L247 -char * (___IO_read_end_127);// L248 -char * (___IO_read_base_128);// L249 -char * (___IO_write_base_129);// L250 -char * (___IO_write_ptr_130);// L251 -char * (___IO_write_end_131);// L252 -char * (___IO_buf_base_132);// L253 -char * (___IO_buf_end_133);// L254 -char * (___IO_save_base_134);// L256 -char * (___IO_backup_base_135);// L257 -char * (___IO_save_end_136);// L258 -struct ___IO_marker_90 * (___markers_137);// L260 -struct __forward_tag_reference_58 * (___chain_138);// L0 -int ___fileno_139;// L264 -int ___flags2_140;// L268 -____off_t_23 ___old_offset_141;// L0 -unsigned short ___cur_column_143;// L274 -signed char ___vtable_offset_144;// L275 -char ___shortbuf_145[1];// L276 -___IO_lock_t_88 * (___lock_146);// L0 -____off64_t_24 ___offset_148;// L0 -void * (____pad1_150);// L297 -void * (____pad2_151);// L298 -void * (____pad3_152);// L299 -void * (____pad4_153);// L300 -__size_t_1 ____pad5_154;// L0 -int ___mode_155;// L303 -char ___unused2_156[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +struct ___IO_FILE_119 { +int ___flags_120;// L242 +char * (___IO_read_ptr_121);// L247 +char * (___IO_read_end_122);// L248 +char * (___IO_read_base_123);// L249 +char * (___IO_write_base_124);// L250 +char * (___IO_write_ptr_125);// L251 +char * (___IO_write_end_126);// L252 +char * (___IO_buf_base_127);// L253 +char * (___IO_buf_end_128);// L254 +char * (___IO_save_base_129);// L256 +char * (___IO_backup_base_130);// L257 +char * (___IO_save_end_131);// L258 +struct ___IO_marker_86 * (___markers_132);// L260 +struct __forward_tag_reference_57 * (___chain_133);// L0 +int ___fileno_134;// L264 +int ___flags2_135;// L268 +____off_t_23 ___old_offset_136;// L0 +unsigned short ___cur_column_137;// L274 +signed char ___vtable_offset_138;// L275 +char ___shortbuf_139[1];// L276 +___IO_lock_t_84 * (___lock_140);// L0 +____off64_t_24 ___offset_142;// L0 +void * (____pad1_143);// L297 +void * (____pad2_144);// L298 +void * (____pad3_145);// L299 +void * (____pad4_146);// L300 +__size_t_1 ____pad5_147;// L0 +int ___mode_148;// L303 +char ___unused2_149[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -struct ___IO_FILE_complete_157 { -struct ___IO_FILE_99 ___file_158;// L286 -____off64_t_24 ___offset_160;// L0 -void * (____pad1_162);// L297 -void * (____pad2_163);// L298 -void * (____pad3_164);// L299 -void * (____pad4_165);// L300 -__size_t_1 ____pad5_166;// L0 -int ___mode_167;// L303 -char ___unused2_168[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +struct ___IO_FILE_complete_150 { +struct ___IO_FILE_95 ___file_151;// L286 +____off64_t_24 ___offset_153;// L0 +void * (____pad1_154);// L297 +void * (____pad2_155);// L298 +void * (____pad3_156);// L299 +void * (____pad4_157);// L300 +__size_t_1 ____pad5_158;// L0 +int ___mode_159;// L303 +char ___unused2_160[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -typedef struct ___IO_FILE_99 ___IO_FILE_171;// L310 -typedef struct ___IO_FILE_124 ___IO_FILE_172;// L310 -typedef ____ssize_t_49 (____io_read_fn_181) (void * (____cookie_178), char * (____buf_179), __size_t_1 ____nbytes_180);// L333 -typedef ____ssize_t_49 (____io_write_fn_186) (void * (____cookie_183), const char * (____buf_184), __size_t_1 ____n_185);// L341:L342 -typedef int (____io_seek_fn_192) (void * (____cookie_188), ____off64_t_24 * (____pos_189), int ____w_191);// L350 -typedef int (____io_close_fn_195) (void * (____cookie_194));// L353 -typedef ____gnuc_va_list_86 __va_list_279;// L79 -typedef ____off_t_23 __off_t_281;// L90 -typedef ____off64_t_24 __off_t_283;// L92 -typedef ____ssize_t_49 __ssize_t_285;// L102 -typedef ___G_fpos_t_77 __fpos_t_287;// L110 -typedef ___G_fpos64_t_85 __fpos_t_289;// L112 -extern const char * const __sys_errlist_830[];// L27 - -struct __forward_tag_reference_89 { // generated union of struct variations +typedef struct ___IO_FILE_95 ___IO_FILE_163;// L310 +typedef struct ___IO_FILE_119 ___IO_FILE_164;// L310 +typedef ____ssize_t_49 (____io_read_fn_173) (void * (____cookie_170), char * (____buf_171), __size_t_1 ____nbytes_172);// L333 +typedef ____ssize_t_49 (____io_write_fn_177) (void * (____cookie_174), const char * (____buf_175), __size_t_1 ____n_176);// L341:L342 +typedef int (____io_seek_fn_181) (void * (____cookie_178), ____off64_t_24 * (____pos_179), int ____w_180);// L350 +typedef int (____io_close_fn_183) (void * (____cookie_182));// L353 +typedef ____gnuc_va_list_82 __va_list_248;// L79 +typedef ____off_t_23 __off_t_250;// L90 +typedef ____off64_t_24 __off_t_251;// L92 +typedef ____ssize_t_49 __ssize_t_252;// L102 +typedef ___G_fpos_t_75 __fpos_t_253;// L110 +typedef ___G_fpos64_t_81 __fpos_t_255;// L112 +extern const char * const __sys_errlist_756[];// L27 + +struct __forward_tag_reference_57 { // generated union of struct variations union { -struct ___IO_marker_90 ___IO_marker_90; +struct ___IO_FILE_95 ___IO_FILE_95; +struct ___IO_FILE_119 ___IO_FILE_119; }; }; -struct __forward_tag_reference_58 { // generated union of struct variations +struct __forward_tag_reference_85 { // generated union of struct variations union { -struct ___IO_FILE_99 ___IO_FILE_99; -struct ___IO_FILE_124 ___IO_FILE_124; +struct ___IO_marker_86 ___IO_marker_86; }; }; -struct __forward_tag_reference_87 { // generated union of struct variations +struct __forward_tag_reference_83 { // generated union of struct variations union { }; }; -struct __forward_tag_reference_174 { // generated union of struct variations +struct __forward_tag_reference_166 { // generated union of struct variations union { }; }; @@ -1091,225 +952,225 @@ union { // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_58 ;// L0 +struct __forward_tag_reference_57 ;// L0 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_87 ;// L0 -struct __forward_tag_reference_87 ;// L0 -struct __forward_tag_reference_58 ;// L0 +struct __forward_tag_reference_83 ;// L0 +struct __forward_tag_reference_83 ;// L0 +struct __forward_tag_reference_57 ;// L0 // typedef moved to top of scope -struct ___IO_marker_90 ;// L156 -enum ____codecvt_result_98 ;// L176 -struct ___IO_FILE_99 ;// L241 +struct ___IO_marker_86 ;// L156 +enum ____codecvt_result_94 ;// L176 +struct ___IO_FILE_95 ;// L241 -struct ___IO_FILE_124 ;// L241 -struct ___IO_FILE_complete_157 ;// L241 +struct ___IO_FILE_119 ;// L241 +struct ___IO_FILE_complete_150 ;// L241 // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_174 ;// L0 -extern struct __forward_tag_reference_174 ___IO_2_1_stdin__175;// L315 -extern struct __forward_tag_reference_174 ___IO_2_1_stdout__176;// L316 -extern struct __forward_tag_reference_174 ___IO_2_1_stderr__177;// L317 +struct __forward_tag_reference_166 ;// L0 +extern struct __forward_tag_reference_166 ___IO_2_1_stdin__167;// L315 +extern struct __forward_tag_reference_166 ___IO_2_1_stdout__168;// L316 +extern struct __forward_tag_reference_166 ___IO_2_1_stderr__169;// L317 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern int (____underflow_196) (___IO_FILE_171 *);// L385 -extern int (____underflow_197) (___IO_FILE_172 *);// L385 -extern int (____uflow_199) (___IO_FILE_171 *);// L386 -extern int (____uflow_200) (___IO_FILE_172 *);// L386 -extern int (____overflow_202) (___IO_FILE_171 *, int );// L387 -extern int (____overflow_203) (___IO_FILE_172 *, int );// L387 -extern int (___IO_getc_208) (___IO_FILE_171 * (____fp_205));// L429 -extern int (___IO_getc_209) (___IO_FILE_172 * (____fp_206));// L429 -extern int (___IO_putc_215) (int ____c_211, ___IO_FILE_171 * (____fp_212));// L430 -extern int (___IO_putc_216) (int ____c_211, ___IO_FILE_172 * (____fp_213));// L430 -extern int (___IO_feof_221) (___IO_FILE_171 * (____fp_218));// L431 -extern int (___IO_feof_222) (___IO_FILE_172 * (____fp_219));// L431 -extern int (___IO_ferror_227) (___IO_FILE_171 * (____fp_224));// L432 -extern int (___IO_ferror_228) (___IO_FILE_172 * (____fp_225));// L432 -extern int (___IO_peekc_locked_233) (___IO_FILE_171 * (____fp_230));// L434 -extern int (___IO_peekc_locked_234) (___IO_FILE_172 * (____fp_231));// L434 -extern void (___IO_flockfile_236) (___IO_FILE_171 *);// L440 -extern void (___IO_flockfile_237) (___IO_FILE_172 *);// L440 -extern void (___IO_funlockfile_239) (___IO_FILE_171 *);// L441 -extern void (___IO_funlockfile_240) (___IO_FILE_172 *);// L441 -extern int (___IO_ftrylockfile_242) (___IO_FILE_171 *);// L442 -extern int (___IO_ftrylockfile_243) (___IO_FILE_172 *);// L442 -extern int (___IO_vfscanf_245) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_247) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_251) (___IO_FILE_171 * __restrict , const char * __restrict , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_252) (___IO_FILE_172 * __restrict , const char * __restrict , int * __restrict );// L459:L460 -extern int (___IO_vfprintf_254) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 -extern int (___IO_vfprintf_256) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 -extern int (___IO_vfprintf_260) ();// L461:L462 -extern ____ssize_t_49 (___IO_padn_261) (___IO_FILE_171 *, int , ____ssize_t_49 );// L463 -extern ____ssize_t_49 (___IO_padn_262) (___IO_FILE_172 *, int , ____ssize_t_49 );// L463 -extern __size_t_1 (___IO_sgetn_265) (___IO_FILE_171 *, void *, __size_t_1 );// L464 -extern __size_t_1 (___IO_sgetn_266) (___IO_FILE_172 *, void *, __size_t_1 );// L464 -extern ____off64_t_24 (___IO_seekoff_268) (___IO_FILE_171 *, ____off64_t_24 , int , int );// L466 -extern ____off64_t_24 (___IO_seekoff_269) (___IO_FILE_172 *, ____off64_t_24 , int , int );// L466 -extern ____off64_t_24 (___IO_seekpos_272) (___IO_FILE_171 *, ____off64_t_24 , int );// L467 -extern ____off64_t_24 (___IO_seekpos_273) (___IO_FILE_172 *, ____off64_t_24 , int );// L467 -extern void (___IO_free_backup_area_276) (___IO_FILE_171 *);// L469 -extern void (___IO_free_backup_area_277) (___IO_FILE_172 *);// L469 +extern int (____underflow_184) (___IO_FILE_163 *);// L385 +extern int (____underflow_185) (___IO_FILE_164 *);// L385 +extern int (____uflow_186) (___IO_FILE_163 *);// L386 +extern int (____uflow_187) (___IO_FILE_164 *);// L386 +extern int (____overflow_188) (___IO_FILE_163 *, int );// L387 +extern int (____overflow_189) (___IO_FILE_164 *, int );// L387 +extern int (___IO_getc_193) (___IO_FILE_163 * (____fp_190));// L429 +extern int (___IO_getc_194) (___IO_FILE_164 * (____fp_191));// L429 +extern int (___IO_putc_199) (int ____c_195, ___IO_FILE_163 * (____fp_196));// L430 +extern int (___IO_putc_200) (int ____c_195, ___IO_FILE_164 * (____fp_197));// L430 +extern int (___IO_feof_204) (___IO_FILE_163 * (____fp_201));// L431 +extern int (___IO_feof_205) (___IO_FILE_164 * (____fp_202));// L431 +extern int (___IO_ferror_209) (___IO_FILE_163 * (____fp_206));// L432 +extern int (___IO_ferror_210) (___IO_FILE_164 * (____fp_207));// L432 +extern int (___IO_peekc_locked_214) (___IO_FILE_163 * (____fp_211));// L434 +extern int (___IO_peekc_locked_215) (___IO_FILE_164 * (____fp_212));// L434 +extern void (___IO_flockfile_216) (___IO_FILE_163 *);// L440 +extern void (___IO_flockfile_217) (___IO_FILE_164 *);// L440 +extern void (___IO_funlockfile_218) (___IO_FILE_163 *);// L441 +extern void (___IO_funlockfile_219) (___IO_FILE_164 *);// L441 +extern int (___IO_ftrylockfile_220) (___IO_FILE_163 *);// L442 +extern int (___IO_ftrylockfile_221) (___IO_FILE_164 *);// L442 +extern int (___IO_vfscanf_222) (___IO_FILE_163 * __restrict , const char * __restrict , ____gnuc_va_list_82 , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_224) (___IO_FILE_164 * __restrict , const char * __restrict , ____gnuc_va_list_82 , int * __restrict );// L459:L460 + + +extern int (___IO_vfprintf_231) (___IO_FILE_163 * __restrict , const char * __restrict , ____gnuc_va_list_82 );// L461:L462 +extern int (___IO_vfprintf_233) (___IO_FILE_164 * __restrict , const char * __restrict , ____gnuc_va_list_82 );// L461:L462 + +extern ____ssize_t_49 (___IO_padn_238) (___IO_FILE_163 *, int , ____ssize_t_49 );// L463 +extern ____ssize_t_49 (___IO_padn_239) (___IO_FILE_164 *, int , ____ssize_t_49 );// L463 +extern __size_t_1 (___IO_sgetn_240) (___IO_FILE_163 *, void *, __size_t_1 );// L464 +extern __size_t_1 (___IO_sgetn_241) (___IO_FILE_164 *, void *, __size_t_1 );// L464 +extern ____off64_t_24 (___IO_seekoff_242) (___IO_FILE_163 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekoff_243) (___IO_FILE_164 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekpos_244) (___IO_FILE_163 *, ____off64_t_24 , int );// L467 +extern ____off64_t_24 (___IO_seekpos_245) (___IO_FILE_164 *, ____off64_t_24 , int );// L467 +extern void (___IO_free_backup_area_246) (___IO_FILE_163 *);// L469 +extern void (___IO_free_backup_area_247) (___IO_FILE_164 *);// L469 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern struct ___IO_FILE_99 * (__stdin_291);// L168 -extern struct ___IO_FILE_124 * (__stdin_292);// L168 -extern struct ___IO_FILE_99 * (__stdout_294);// L169 -extern struct ___IO_FILE_124 * (__stdout_295);// L169 -extern struct ___IO_FILE_99 * (__stderr_297);// L170 -extern struct ___IO_FILE_124 * (__stderr_298);// L170 -extern int (__remove_301) (const char * (____filename_300));// L178 -extern int (__rename_304) (const char * (____old_302), const char * (____new_303));// L180 -extern int (__renameat_309) (int ____oldfd_305, const char * (____old_306), int ____newfd_307, const char * (____new_308));// L185:L186 -extern __FILE_59 * ((__tmpfile_310) (void ));// L195 -extern __FILE_59 * ((__tmpfile_316) (void ));// L198 -extern __FILE_59 * ((__tmpfile_314) (void ));// L195 -extern __FILE_59 * ((__tmpfile_312) (void ));// L198 -extern char * ((__tmpnam_319) (char * (____s_318)));// L209 -extern char * ((__tmpnam_320) (char * (____s_318)));// L209 -extern char * ((__tmpnam_r_322) (char * (____s_321)));// L215 -extern char * ((__tmpnam_r_323) (char * (____s_321)));// L215 -extern char * ((__tempnam_326) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 -extern char * ((__tempnam_327) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 -extern int (__fclose_330) (__FILE_59 * (____stream_328));// L237 -extern int (__fclose_332) (__FILE_59 * (____stream_328));// L237 -extern int (__fflush_336) (__FILE_59 * (____stream_334));// L242 -extern int (__fflush_unlocked_340) (__FILE_59 * (____stream_338));// L252 -extern __FILE_59 * ((__fopen_344) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 -extern __FILE_59 * ((__fopen_346) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 -extern __FILE_59 * ((__fopen_354) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 -extern __FILE_59 * ((__fopen_356) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 -extern __FILE_59 * ((__freopen_362) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 -extern __FILE_59 * ((__freopen_368) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 -extern __FILE_59 * ((__freopen_366) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 -extern __FILE_59 * ((__freopen_364) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 -extern __FILE_59 * ((__fdopen_372) (int ____fd_370, const char * (____modes_371)));// L306 -extern __FILE_59 * ((__fdopen_374) (int ____fd_370, const char * (____modes_371)));// L306 -extern __FILE_59 * ((__fmemopen_379) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 -extern __FILE_59 * ((__fmemopen_381) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 -extern __FILE_59 * ((__open_memstream_385) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 -extern __FILE_59 * ((__open_memstream_387) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 -extern void (__setbuf_392) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 -extern void (__setbuf_394) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 -extern int (__setvbuf_401) (__FILE_59 * __restrict ____stream_396, char * __restrict ____buf_398, int ____modes_399, __size_t_1 ____n_400);// L336:L337 -extern void (__setbuffer_407) (__FILE_59 * __restrict ____stream_403, char * __restrict ____buf_405, __size_t_1 ____size_406);// L343:L344 -extern void (__setlinebuf_411) (__FILE_59 * (____stream_409));// L347 -extern int (__fprintf_416) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 -extern int (__fprintf_418) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 -extern int (__printf_421) (const char * __restrict ____format_420, ... );// L362 -extern int (__sprintf_424) (char * __restrict ____s_422, const char * __restrict ____format_423, ... );// L364:L365 -extern int (__vfprintf_430) (__FILE_59 * __restrict ____s_425, const char * __restrict ____format_427, ____gnuc_va_list_86 ____arg_428);// L371:L372 -extern int (__vprintf_437) (const char * __restrict ____format_434, ____gnuc_va_list_86 ____arg_435);// L377 -extern int (__vsprintf_443) (char * __restrict ____s_439, const char * __restrict ____format_440, ____gnuc_va_list_86 ____arg_441);// L379:L380 -extern int (__snprintf_448) (char * __restrict ____s_445, __size_t_1 ____maxlen_446, const char * __restrict ____format_447, ... );// L386:L388 -extern int (__vsnprintf_454) (char * __restrict ____s_449, __size_t_1 ____maxlen_450, const char * __restrict ____format_451, ____gnuc_va_list_86 ____arg_452);// L390:L392 -extern int (__vdprintf_460) (int ____fd_456, const char * __restrict ____fmt_457, ____gnuc_va_list_86 ____arg_458);// L412:L414 -extern int (__dprintf_464) (int ____fd_462, const char * __restrict ____fmt_463, ... );// L415:L416 -extern int (__fscanf_468) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__fscanf_470) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__fscanf_472) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__fscanf_474) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__scanf_477) (const char * __restrict ____format_476, ... );// L431 -extern int (__scanf_478) (const char * __restrict ____format_476, ... );// L431 -extern int (__sscanf_481) (const char * __restrict ____s_479, const char * __restrict ____format_480, ... );// L433:L434 - - - - - - - -extern int (__vfscanf_509) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 -extern int (__vfscanf_513) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 -extern int (__vscanf_520) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 -extern int (__vscanf_522) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 -extern int (__vsscanf_528) (const char * __restrict ____s_524, const char * __restrict ____format_525, ____gnuc_va_list_86 ____arg_526);// L483:L485 - - - - - -extern int (__fgetc_563) (__FILE_59 * (____stream_561));// L531 -extern int (__getc_567) (__FILE_59 * (____stream_565));// L532 -extern int (__getchar_569) (void );// L538 -extern int (__getc_unlocked_572) (__FILE_59 * (____stream_570));// L550 -extern int (__getchar_unlocked_574) (void );// L551 -extern int (__fgetc_unlocked_577) (__FILE_59 * (____stream_575));// L561 -extern int (__fputc_582) (int ____c_579, __FILE_59 * (____stream_580));// L573 -extern int (__fputc_584) (int ____c_579, __FILE_59 * (____stream_580));// L573 -extern int (__putc_589) (int ____c_586, __FILE_59 * (____stream_587));// L574 -extern int (__putchar_592) (int ____c_591);// L580 -extern int (__fputc_unlocked_596) (int ____c_593, __FILE_59 * (____stream_594));// L594 -extern int (__putc_unlocked_601) (int ____c_598, __FILE_59 * (____stream_599));// L602 -extern int (__putchar_unlocked_604) (int ____c_603);// L603 -extern int (__getw_607) (__FILE_59 * (____stream_605));// L610 -extern int (__putw_612) (int ____w_609, __FILE_59 * (____stream_610));// L613 -extern char * ((__fgets_618) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern char * ((__fgets_620) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern char * ((__fgets_622) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern char * ((__fgets_624) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern ____ssize_t_49 (____getdelim_631) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 -extern ____ssize_t_49 (____getdelim_635) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 -extern ____ssize_t_49 (__getdelim_644) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 -extern ____ssize_t_49 (__getdelim_648) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 -extern ____ssize_t_49 (__getline_656) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 -extern ____ssize_t_49 (__getline_660) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 -extern int (__fputs_667) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 -extern int (__fputs_669) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 -extern int (__puts_672) (const char * (____s_671));// L695 -extern int (__ungetc_676) (int ____c_673, __FILE_59 * (____stream_674));// L702 -extern int (__fseek_714) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 -extern int (__fseek_716) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 -extern long int (__ftell_720) (__FILE_59 * (____stream_718));// L754 -extern long int (__ftell_722) (__FILE_59 * (____stream_718));// L754 -extern void (__rewind_726) (__FILE_59 * (____stream_724));// L759 -extern int (__fseeko_733) (__FILE_59 * (____stream_728), ____off_t_23 ____off_730, int ____whence_732);// L773 -extern int (__fseeko_744) (__FILE_59 * (____stream_739), ____off64_t_24 ____off_741, int ____whence_743);// L781:L783 -extern ____off_t_23 (__ftello_758) (__FILE_59 * (____stream_737));// L778 -extern ____off_t_23 (__ftello_750) (__FILE_59 * (____stream_737));// L778 -extern int (__fgetpos_766) (__FILE_59 * __restrict ____stream_762, __fpos_t_287 * __restrict ____pos_764);// L798 -extern ____off64_t_24 (__ftello_754) (__FILE_59 * (____stream_748));// L784 -extern int (__fgetpos_778) (__FILE_59 * __restrict ____stream_774, __fpos_t_289 * __restrict ____pos_776);// L806:L807 -extern int (__fsetpos_786) (__FILE_59 * (____stream_770), const __fpos_t_287 * (____pos_772));// L803 -extern int (__fsetpos_790) (__FILE_59 * (____stream_782), const __fpos_t_289 * (____pos_784));// L808:L809 -extern void (__clearerr_796) (__FILE_59 * (____stream_794));// L826 -extern int (__feof_800) (__FILE_59 * (____stream_798));// L828 -extern int (__feof_802) (__FILE_59 * (____stream_798));// L828 -extern int (__ferror_806) (__FILE_59 * (____stream_804));// L830 -extern int (__ferror_808) (__FILE_59 * (____stream_804));// L830 -extern void (__clearerr_unlocked_812) (__FILE_59 * (____stream_810));// L835 -extern int (__feof_unlocked_816) (__FILE_59 * (____stream_814));// L836 -extern int (__feof_unlocked_818) (__FILE_59 * (____stream_814));// L836 -extern int (__ferror_unlocked_822) (__FILE_59 * (____stream_820));// L837 -extern int (__ferror_unlocked_824) (__FILE_59 * (____stream_820));// L837 -extern void (__perror_827) (const char * (____s_826));// L846 -extern void (__perror_828) (const char * (____s_826));// L846 -extern int __sys_nerr_829;// L26 - -extern int (__fileno_835) (__FILE_59 * (____stream_831));// L858 -extern int (__fileno_833) (__FILE_59 * (____stream_831));// L858 -extern int (__fileno_unlocked_841) (__FILE_59 * (____stream_837));// L863 -extern int (__fileno_unlocked_839) (__FILE_59 * (____stream_837));// L863 -extern __FILE_59 * ((__popen_845) (const char * (____command_843), const char * (____modes_844)));// L872 -extern __FILE_59 * ((__popen_847) (const char * (____command_843), const char * (____modes_844)));// L872 -extern int (__pclose_851) (__FILE_59 * (____stream_849));// L878 -extern char * ((__ctermid_854) (char * (____s_853)));// L884 -extern void (__flockfile_857) (__FILE_59 * (____stream_855));// L912 -extern int (__ftrylockfile_861) (__FILE_59 * (____stream_859));// L916 -extern int (__ftrylockfile_863) (__FILE_59 * (____stream_859));// L916 -extern void (__funlockfile_867) (__FILE_59 * (____stream_865));// L919 +extern struct ___IO_FILE_95 * (__stdin_257);// L168 +extern struct ___IO_FILE_119 * (__stdin_258);// L168 +extern struct ___IO_FILE_95 * (__stdout_259);// L169 +extern struct ___IO_FILE_119 * (__stdout_260);// L169 +extern struct ___IO_FILE_95 * (__stderr_261);// L170 +extern struct ___IO_FILE_119 * (__stderr_262);// L170 +extern int (__remove_264) (const char * (____filename_263));// L178 +extern int (__rename_267) (const char * (____old_265), const char * (____new_266));// L180 +extern int (__renameat_272) (int ____oldfd_268, const char * (____old_269), int ____newfd_270, const char * (____new_271));// L185:L186 +extern __FILE_58 * ((__tmpfile_273) (void ));// L195 +extern __FILE_58 * ((__tmpfile_279) (void ));// L198 +extern __FILE_58 * ((__tmpfile_277) (void ));// L198 +extern __FILE_58 * ((__tmpfile_275) (void ));// L195 +extern char * ((__tmpnam_282) (char * (____s_281)));// L209 +extern char * ((__tmpnam_283) (char * (____s_281)));// L209 +extern char * ((__tmpnam_r_285) (char * (____s_284)));// L215 +extern char * ((__tmpnam_r_286) (char * (____s_284)));// L215 +extern char * ((__tempnam_289) (const char * (____dir_287), const char * (____pfx_288)));// L227:L228 +extern char * ((__tempnam_290) (const char * (____dir_287), const char * (____pfx_288)));// L227:L228 +extern int (__fclose_293) (__FILE_58 * (____stream_291));// L237 +extern int (__fclose_295) (__FILE_58 * (____stream_291));// L237 +extern int (__fflush_299) (__FILE_58 * (____stream_297));// L242 +extern int (__fflush_unlocked_303) (__FILE_58 * (____stream_301));// L252 +extern __FILE_58 * ((__fopen_307) (const char * __restrict ____filename_305, const char * __restrict ____modes_306));// L272:L273 +extern __FILE_58 * ((__fopen_309) (const char * __restrict ____filename_305, const char * __restrict ____modes_306));// L272:L273 +extern __FILE_58 * ((__fopen_317) (const char * __restrict ____filename_315, const char * __restrict ____modes_316));// L283:L285 +extern __FILE_58 * ((__fopen_319) (const char * __restrict ____filename_315, const char * __restrict ____modes_316));// L283:L285 +extern __FILE_58 * ((__freopen_325) (const char * __restrict ____filename_311, const char * __restrict ____modes_312, __FILE_58 * __restrict ____stream_313));// L278:L280 +extern __FILE_58 * ((__freopen_331) (const char * __restrict ____filename_321, const char * __restrict ____modes_322, __FILE_58 * __restrict ____stream_323));// L286:L289 +extern __FILE_58 * ((__freopen_329) (const char * __restrict ____filename_321, const char * __restrict ____modes_322, __FILE_58 * __restrict ____stream_323));// L286:L289 +extern __FILE_58 * ((__freopen_327) (const char * __restrict ____filename_311, const char * __restrict ____modes_312, __FILE_58 * __restrict ____stream_313));// L278:L280 +extern __FILE_58 * ((__fdopen_335) (int ____fd_333, const char * (____modes_334)));// L306 +extern __FILE_58 * ((__fdopen_337) (int ____fd_333, const char * (____modes_334)));// L306 +extern __FILE_58 * ((__fmemopen_342) (void * (____s_339), __size_t_1 ____len_340, const char * (____modes_341)));// L319:L320 +extern __FILE_58 * ((__fmemopen_344) (void * (____s_339), __size_t_1 ____len_340, const char * (____modes_341)));// L319:L320 +extern __FILE_58 * ((__open_memstream_348) (char * (* (____bufloc_346)), __size_t_1 * (____sizeloc_347)));// L325 +extern __FILE_58 * ((__open_memstream_350) (char * (* (____bufloc_346)), __size_t_1 * (____sizeloc_347)));// L325 +extern void (__setbuf_355) (__FILE_58 * __restrict ____stream_352, char * __restrict ____buf_354);// L332 +extern void (__setbuf_357) (__FILE_58 * __restrict ____stream_352, char * __restrict ____buf_354);// L332 +extern int (__setvbuf_364) (__FILE_58 * __restrict ____stream_359, char * __restrict ____buf_361, int ____modes_362, __size_t_1 ____n_363);// L336:L337 +extern void (__setbuffer_369) (__FILE_58 * __restrict ____stream_365, char * __restrict ____buf_367, __size_t_1 ____size_368);// L343:L344 +extern void (__setlinebuf_373) (__FILE_58 * (____stream_371));// L347 +extern int (__fprintf_378) (__FILE_58 * __restrict ____stream_375, const char * __restrict ____format_377, ... );// L356:L357 +extern int (__fprintf_380) (__FILE_58 * __restrict ____stream_375, const char * __restrict ____format_377, ... );// L356:L357 +extern int (__printf_383) (const char * __restrict ____format_382, ... );// L362 +extern int (__sprintf_386) (char * __restrict ____s_384, const char * __restrict ____format_385, ... );// L364:L365 +extern int (__vfprintf_392) (__FILE_58 * __restrict ____s_387, const char * __restrict ____format_389, ____gnuc_va_list_82 ____arg_390);// L371:L372 +extern int (__vprintf_399) (const char * __restrict ____format_396, ____gnuc_va_list_82 ____arg_397);// L377 +extern int (__vsprintf_405) (char * __restrict ____s_401, const char * __restrict ____format_402, ____gnuc_va_list_82 ____arg_403);// L379:L380 +extern int (__snprintf_409) (char * __restrict ____s_406, __size_t_1 ____maxlen_407, const char * __restrict ____format_408, ... );// L386:L388 +extern int (__vsnprintf_415) (char * __restrict ____s_410, __size_t_1 ____maxlen_411, const char * __restrict ____format_412, ____gnuc_va_list_82 ____arg_413);// L390:L392 +extern int (__vdprintf_420) (int ____fd_416, const char * __restrict ____fmt_417, ____gnuc_va_list_82 ____arg_418);// L412:L414 +extern int (__dprintf_424) (int ____fd_422, const char * __restrict ____fmt_423, ... );// L415:L416 +extern int (__fscanf_428) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 +extern int (__fscanf_430) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 +extern int (__fscanf_432) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 +extern int (__fscanf_434) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 +extern int (__scanf_437) (const char * __restrict ____format_436, ... );// L431 +extern int (__scanf_438) (const char * __restrict ____format_436, ... );// L431 +extern int (__sscanf_441) (const char * __restrict ____s_439, const char * __restrict ____format_440, ... );// L433:L434 + + + + + + + +extern int (__vfscanf_468) (__FILE_58 * __restrict ____s_463, const char * __restrict ____format_465, ____gnuc_va_list_82 ____arg_466);// L471:L473 +extern int (__vfscanf_472) (__FILE_58 * __restrict ____s_463, const char * __restrict ____format_465, ____gnuc_va_list_82 ____arg_466);// L471:L473 +extern int (__vscanf_479) (const char * __restrict ____format_476, ____gnuc_va_list_82 ____arg_477);// L479:L480 +extern int (__vscanf_481) (const char * __restrict ____format_476, ____gnuc_va_list_82 ____arg_477);// L479:L480 +extern int (__vsscanf_487) (const char * __restrict ____s_483, const char * __restrict ____format_484, ____gnuc_va_list_82 ____arg_485);// L483:L485 + + + + + +extern int (__fgetc_520) (__FILE_58 * (____stream_518));// L531 +extern int (__getc_523) (__FILE_58 * (____stream_521));// L532 +extern int (__getchar_524) (void );// L538 +extern int (__getc_unlocked_527) (__FILE_58 * (____stream_525));// L550 +extern int (__getchar_unlocked_529) (void );// L551 +extern int (__fgetc_unlocked_532) (__FILE_58 * (____stream_530));// L561 +extern int (__fputc_537) (int ____c_534, __FILE_58 * (____stream_535));// L573 +extern int (__fputc_539) (int ____c_534, __FILE_58 * (____stream_535));// L573 +extern int (__putc_544) (int ____c_541, __FILE_58 * (____stream_542));// L574 +extern int (__putchar_546) (int ____c_545);// L580 +extern int (__fputc_unlocked_550) (int ____c_547, __FILE_58 * (____stream_548));// L594 +extern int (__putc_unlocked_555) (int ____c_552, __FILE_58 * (____stream_553));// L602 +extern int (__putchar_unlocked_558) (int ____c_557);// L603 +extern int (__getw_561) (__FILE_58 * (____stream_559));// L610 +extern int (__putw_566) (int ____w_563, __FILE_58 * (____stream_564));// L613 +extern char * ((__fgets_572) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 +extern char * ((__fgets_574) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 +extern char * ((__fgets_576) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 +extern char * ((__fgets_578) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 +extern ____ssize_t_49 (____getdelim_585) (char * (* __restrict ____lineptr_580), __size_t_1 * __restrict ____n_581, int ____delimiter_582, __FILE_58 * __restrict ____stream_583);// L665:L667 +extern ____ssize_t_49 (____getdelim_587) (char * (* __restrict ____lineptr_580), __size_t_1 * __restrict ____n_581, int ____delimiter_582, __FILE_58 * __restrict ____stream_583);// L665:L667 +extern ____ssize_t_49 (__getdelim_594) (char * (* __restrict ____lineptr_589), __size_t_1 * __restrict ____n_590, int ____delimiter_591, __FILE_58 * __restrict ____stream_592);// L668:L670 +extern ____ssize_t_49 (__getdelim_596) (char * (* __restrict ____lineptr_589), __size_t_1 * __restrict ____n_590, int ____delimiter_591, __FILE_58 * __restrict ____stream_592);// L668:L670 +extern ____ssize_t_49 (__getline_602) (char * (* __restrict ____lineptr_598), __size_t_1 * __restrict ____n_599, __FILE_58 * __restrict ____stream_600);// L678:L680 +extern ____ssize_t_49 (__getline_604) (char * (* __restrict ____lineptr_598), __size_t_1 * __restrict ____n_599, __FILE_58 * __restrict ____stream_600);// L678:L680 +extern int (__fputs_609) (const char * __restrict ____s_606, __FILE_58 * __restrict ____stream_607);// L689 +extern int (__fputs_611) (const char * __restrict ____s_606, __FILE_58 * __restrict ____stream_607);// L689 +extern int (__puts_614) (const char * (____s_613));// L695 +extern int (__ungetc_618) (int ____c_615, __FILE_58 * (____stream_616));// L702 +extern int (__fseek_654) (__FILE_58 * (____stream_650), long int ____off_652, int ____whence_653);// L749 +extern int (__fseek_656) (__FILE_58 * (____stream_650), long int ____off_652, int ____whence_653);// L749 +extern long int (__ftell_660) (__FILE_58 * (____stream_658));// L754 +extern long int (__ftell_662) (__FILE_58 * (____stream_658));// L754 +extern void (__rewind_666) (__FILE_58 * (____stream_664));// L759 +extern int (__fseeko_671) (__FILE_58 * (____stream_667), ____off_t_23 ____off_669, int ____whence_670);// L773 +extern int (__fseeko_679) (__FILE_58 * (____stream_675), ____off64_t_24 ____off_677, int ____whence_678);// L781:L783 +extern ____off_t_23 (__ftello_683) (__FILE_58 * (____stream_673));// L778 +extern ____off_t_23 (__ftello_685) (__FILE_58 * (____stream_673));// L778 +extern int (__fgetpos_693) (__FILE_58 * __restrict ____stream_689, __fpos_t_253 * __restrict ____pos_691);// L798 +extern ____off64_t_24 (__ftello_687) (__FILE_58 * (____stream_681));// L784 +extern int (__fgetpos_705) (__FILE_58 * __restrict ____stream_701, __fpos_t_255 * __restrict ____pos_703);// L806:L807 +extern int (__fsetpos_713) (__FILE_58 * (____stream_697), const __fpos_t_253 * (____pos_699));// L803 +extern int (__fsetpos_717) (__FILE_58 * (____stream_709), const __fpos_t_255 * (____pos_711));// L808:L809 +extern void (__clearerr_723) (__FILE_58 * (____stream_721));// L826 +extern int (__feof_726) (__FILE_58 * (____stream_724));// L828 +extern int (__feof_728) (__FILE_58 * (____stream_724));// L828 +extern int (__ferror_732) (__FILE_58 * (____stream_730));// L830 +extern int (__ferror_734) (__FILE_58 * (____stream_730));// L830 +extern void (__clearerr_unlocked_738) (__FILE_58 * (____stream_736));// L835 +extern int (__feof_unlocked_742) (__FILE_58 * (____stream_740));// L836 +extern int (__feof_unlocked_744) (__FILE_58 * (____stream_740));// L836 +extern int (__ferror_unlocked_748) (__FILE_58 * (____stream_746));// L837 +extern int (__ferror_unlocked_750) (__FILE_58 * (____stream_746));// L837 +extern void (__perror_753) (const char * (____s_752));// L846 +extern void (__perror_754) (const char * (____s_752));// L846 +extern int __sys_nerr_755;// L26 + +extern int (__fileno_761) (__FILE_58 * (____stream_757));// L858 +extern int (__fileno_759) (__FILE_58 * (____stream_757));// L858 +extern int (__fileno_unlocked_767) (__FILE_58 * (____stream_763));// L863 +extern int (__fileno_unlocked_765) (__FILE_58 * (____stream_763));// L863 +extern __FILE_58 * ((__popen_771) (const char * (____command_769), const char * (____modes_770)));// L872 +extern __FILE_58 * ((__popen_773) (const char * (____command_769), const char * (____modes_770)));// L872 +extern int (__pclose_777) (__FILE_58 * (____stream_775));// L878 +extern char * ((__ctermid_780) (char * (____s_779)));// L884 +extern void (__flockfile_783) (__FILE_58 * (____stream_781));// L912 +extern int (__ftrylockfile_787) (__FILE_58 * (____stream_785));// L916 +extern int (__ftrylockfile_789) (__FILE_58 * (____stream_785));// L916 +extern void (__funlockfile_793) (__FILE_58 * (____stream_791));// L919 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ @@ -1321,93 +1182,77 @@ extern void (__funlockfile_867) (__FILE_59 * (____stream_865));// L919 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____sprintf_chk_899) (char * __restrict ____s_895, int ____flag_896, __size_t_1 ____slen_897, const char * __restrict ____format_898, ... );// L23:L24 -extern int (____vsprintf_chk_906) (char * __restrict ____s_900, int ____flag_901, __size_t_1 ____slen_902, const char * __restrict ____format_903, ____gnuc_va_list_86 ____ap_904);// L25:L27 +extern int (____sprintf_chk_825) (char * __restrict ____s_821, int ____flag_822, __size_t_1 ____slen_823, const char * __restrict ____format_824, ... );// L23:L24 +extern int (____vsprintf_chk_832) (char * __restrict ____s_826, int ____flag_827, __size_t_1 ____slen_828, const char * __restrict ____format_829, ____gnuc_va_list_82 ____ap_830);// L25:L27 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____snprintf_chk_920) (char * __restrict ____s_915, __size_t_1 ____n_916, int ____flag_917, __size_t_1 ____slen_918, const char * __restrict ____format_919, ... );// L52:L54 -extern int (____vsnprintf_chk_928) (char * __restrict ____s_921, __size_t_1 ____n_922, int ____flag_923, __size_t_1 ____slen_924, const char * __restrict ____format_925, ____gnuc_va_list_86 ____ap_926);// L55:L57 +extern int (____snprintf_chk_846) (char * __restrict ____s_841, __size_t_1 ____n_842, int ____flag_843, __size_t_1 ____slen_844, const char * __restrict ____format_845, ... );// L52:L54 +extern int (____vsnprintf_chk_854) (char * __restrict ____s_847, __size_t_1 ____n_848, int ____flag_849, __size_t_1 ____slen_850, const char * __restrict ____format_851, ____gnuc_va_list_82 ____ap_852);// L55:L57 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____fprintf_chk_943) (__FILE_59 * __restrict ____stream_939, int ____flag_941, const char * __restrict ____format_942, ... );// L85:L86 -extern int (____printf_chk_947) (int ____flag_945, const char * __restrict ____format_946, ... );// L87 -extern int (____vfprintf_chk_954) (__FILE_59 * __restrict ____stream_948, int ____flag_950, const char * __restrict ____format_951, ____gnuc_va_list_86 ____ap_952);// L88:L89 -extern int (____vprintf_chk_962) (int ____flag_958, const char * __restrict ____format_959, ____gnuc_va_list_86 ____ap_960);// L90:L91 +extern int (____fprintf_chk_869) (__FILE_58 * __restrict ____stream_865, int ____flag_867, const char * __restrict ____format_868, ... );// L85:L86 +extern int (____printf_chk_873) (int ____flag_871, const char * __restrict ____format_872, ... );// L87 +extern int (____vfprintf_chk_880) (__FILE_58 * __restrict ____stream_874, int ____flag_876, const char * __restrict ____format_877, ____gnuc_va_list_82 ____ap_878);// L88:L89 +extern int (____vprintf_chk_888) (int ____flag_884, const char * __restrict ____format_885, ____gnuc_va_list_82 ____ap_886);// L90:L91 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____dprintf_chk_984) (int ____fd_981, int ____flag_982, const char * __restrict ____fmt_983, ... );// L131:L132 -extern int (____vdprintf_chk_990) (int ____fd_985, int ____flag_986, const char * __restrict ____fmt_987, ____gnuc_va_list_86 ____arg_988);// L133:L135 +extern int (____dprintf_chk_910) (int ____fd_907, int ____flag_908, const char * __restrict ____fmt_909, ... );// L131:L132 +extern int (____vdprintf_chk_916) (int ____fd_911, int ____flag_912, const char * __restrict ____fmt_913, ____gnuc_va_list_82 ____arg_914);// L133:L135 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern char * ((____fgets_chk_1004) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 -extern char * ((____fgets_chk_1006) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 -extern char * ((____fgets_chk_1008) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 -extern char * ((____fgets_alias_1014) (char * __restrict ____s_1010, int ____n_1011, __FILE_59 * __restrict ____stream_1012));// L243:L245 -extern char * ((____fgets_chk_warn_1021) (char * __restrict ____s_1016, __size_t_1 ____size_1017, int ____n_1018, __FILE_59 * __restrict ____stream_1019));// L246:L250 +extern char * ((____fgets_chk_930) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 +extern char * ((____fgets_chk_932) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 +extern char * ((____fgets_chk_934) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 +extern char * ((____fgets_alias_940) (char * __restrict ____s_936, int ____n_937, __FILE_58 * __restrict ____stream_938));// L243:L245 +extern char * ((____fgets_chk_warn_947) (char * __restrict ____s_942, __size_t_1 ____size_943, int ____n_944, __FILE_58 * __restrict ____stream_945));// L246:L250 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -void (__apr_rmm_init_1093) (char * (__rmm_lock_1092)) { - -if (__static_condition_default_1096) { +void (__apr_rmm_init_1019) (char * (__rmm_lock_1018)) { -{ -{ - - - - __printf_421 ("%s\n", __rmm_lock_1092 ) ; // L5 -} -} - - -} -} -void (__apr_rmm_init_1094) (char * (__rmm_lock_1092)) { - -if (__static_condition_default_1097) { +if (__static_condition_default_1021) { { { - __printf_421 ("%s\n", __rmm_lock_1092 ) ; // L5 + __printf_383 ("%s\n", __rmm_lock_1018 ) ; // L5 } } } } -void (__apr_rmm_init_1095) (char * (__rmm_lock_1092)) { +void (__apr_rmm_init_1020) (char * (__rmm_lock_1018)) { -if (__static_condition_default_1098) { +if (__static_condition_default_1022) { { { -__static_type_error("type error") ; // L5 + __printf_383 ("%s\n", __rmm_lock_1018 ) ; // L5 } } } } -void (__util_ldap_cache_init_1100) () { +void (__util_ldap_cache_init_1024) () { { -if (__static_condition_default_1101) { +if (__static_condition_default_1025) { { { -char * (__rmm_lock_1099);// L11 +char * (__rmm_lock_1023);// L11 } } @@ -1415,23 +1260,20 @@ char * (__rmm_lock_1099);// L11 } -if (__static_condition_default_1102) { +if (__static_condition_default_1026) { { { -char * (__rmm_lock_1099);// L11 +char * (__rmm_lock_1023);// L11 -if (__static_condition_default_1103) { - __apr_rmm_init_1093 ( __rmm_lock_1099 ) ; // L14 -} -if (__static_condition_default_1104) { - __apr_rmm_init_1094 ( __rmm_lock_1099 ) ; // L14 +if (__static_condition_default_1027) { + __apr_rmm_init_1019 ( __rmm_lock_1023 ) ; // L14 } -if (__static_condition_default_1105) { - __apr_rmm_init_1095 ( __rmm_lock_1099 ) ; // L14 +if (__static_condition_default_1028) { + __apr_rmm_init_1020 ( __rmm_lock_1023 ) ; // L14 } } } @@ -1440,9 +1282,9 @@ if (__static_condition_default_1105) { } }} -int (__main_1106) (void ) { +int (__main_1029) (void ) { -if (__static_condition_default_1108) { +if (__static_condition_default_1031) { { { @@ -1456,16 +1298,16 @@ return 0 ;// L24 } } -int (__main_1107) (void ) { +int (__main_1030) (void ) { -if (__static_condition_default_1109) { +if (__static_condition_default_1032) { { { - __util_ldap_cache_init_1100 ( ) ; // L22 + __util_ldap_cache_init_1024 ( ) ; // L22 return 0 ;// L24 } } diff --git a/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c.clangres b/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c.clangres new file mode 100644 index 00000000..455a2978 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c.clangres @@ -0,0 +1,59 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c.c:1:11: error: use of undeclared identifier 'DEF___need___FILE' +int varis[DEF___need___FILE]; + ^ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c.c:2:11: error: use of undeclared identifier 'DEF__BITS_TYPESIZES_H' +int varis[DEF__BITS_TYPESIZES_H]; + ^ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c.c:3:11: error: use of undeclared identifier 'DEF_____mbstate_t_defined' +int varis[DEF_____mbstate_t_defined]; + ^ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c.c:4:11: error: use of undeclared identifier 'DEF__IO_MTSAFE_IO' +int varis[DEF__IO_MTSAFE_IO]; + ^ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c.c:5:11: error: use of undeclared identifier 'DEF__IO_USE_OLD_IO_FILE' +int varis[DEF__IO_USE_OLD_IO_FILE]; + ^ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c.c:6:11: error: use of undeclared identifier 'DEF___GNUC_VA_LIST' +int varis[DEF___GNUC_VA_LIST]; + ^ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c.c:7:11: error: use of undeclared identifier 'DEF__ANSI_STDARG_H_' +int varis[DEF__ANSI_STDARG_H_]; + ^ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c.c:8:11: error: use of undeclared identifier 'DEF___STRICT_ANSI__' +int varis[DEF___STRICT_ANSI__]; + ^ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c.c:9:11: error: use of undeclared identifier 'DEF__VA_LIST_DEFINED' +int varis[DEF__VA_LIST_DEFINED]; + ^ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c.c:10:11: error: use of undeclared identifier 'DEF__FILE_OFFSET_BITS' +int varis[DEF__FILE_OFFSET_BITS]; + ^ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c.c:11:11: error: use of undeclared identifier 'DEF___off_t_defined' +int varis[DEF___off_t_defined]; + ^ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c.c:12:11: error: use of undeclared identifier 'USE__FILE_OFFSET_BITS' +int varis[USE__FILE_OFFSET_BITS]; + ^ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c.c:13:11: error: use of undeclared identifier 'DEF___ssize_t_defined' +int varis[DEF___ssize_t_defined]; + ^ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c.c:14:11: error: use of undeclared identifier 'DEF__FORTIFY_SOURCE' +int varis[DEF__FORTIFY_SOURCE]; + ^ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c.c:15:11: error: use of undeclared identifier 'USE__FORTIFY_SOURCE' +int varis[USE__FORTIFY_SOURCE]; + ^ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c.c:16:11: error: use of undeclared identifier 'DEF___OPTIMIZE__' +int varis[DEF___OPTIMIZE__]; + ^ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c.c:17:11: error: use of undeclared identifier 'USE___OPTIMIZE__' +int varis[USE___OPTIMIZE__]; + ^ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c.c:18:11: error: use of undeclared identifier 'DEF___FILE_defined' +int varis[DEF___FILE_defined]; + ^ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c.c:19:11: error: use of undeclared identifier 'DEF___USE_EXTERN_INLINES' +int varis[DEF___USE_EXTERN_INLINES]; + ^ +fatal error: too many errors emitted, stopping now [-ferror-limit=] +20 errors generated. diff --git a/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c.desugared.c new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c.desugared.clangres b/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c.desugared.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c.inferres b/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.clangres b/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.clangres index d9373d03..4e829d65 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.clangres @@ -1,10 +1,7 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c:1428:2: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] - __apr_rmm_init_1093 ( __rmm_lock_1099 ) ; // L14 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c:1273:2: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] + __apr_rmm_init_1019 ( __rmm_lock_1023 ) ; // L14 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c:1431:2: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] - __apr_rmm_init_1094 ( __rmm_lock_1099 ) ; // L14 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c:1276:2: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] + __apr_rmm_init_1020 ( __rmm_lock_1023 ) ; // L14 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c:1434:2: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] - __apr_rmm_init_1095 ( __rmm_lock_1099 ) ; // L14 - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -3 warnings generated. +2 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1afx.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1afx.desugared.c new file mode 100644 index 00000000..dd5cf6ee --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1afx.desugared.c @@ -0,0 +1,1475 @@ +#include + +extern void __static_parse_error(char *msg); +extern void __static_type_error(char *msg); +extern void __static_renaming(char *renaming, char *original); +extern void __static_condition_renaming(char *expression, char *renaming); + +void __static_initializer_default(); + +extern const bool __static_condition_default_382; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_380; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_721; +extern const bool __static_condition_default_365; +extern const bool __static_condition_default_1102; +extern const bool __static_condition_default_1105; +extern const bool __static_condition_default_791; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_963; +extern const bool __static_condition_default_1103; +extern const bool __static_condition_default_619; +extern const bool __static_condition_default_1108; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_1109; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_583; +extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_204; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_747; +extern const bool __static_condition_default_512; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_894; +extern const bool __static_condition_default_1110; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_311; +extern const bool __static_condition_default_550; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_1098; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_955; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_613; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_549; +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_559; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_488; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_759; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_419; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_842; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_891; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_489; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_1101; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_702; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_929; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_1097; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_455; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_521; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_84; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_1096; +extern const bool __static_condition_default_761; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_536; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_846; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_670; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_907; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_347; +extern const bool __static_condition_default_769; +extern const bool __static_condition_default_386; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_76; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_677; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_544; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_779; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_290; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_367; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_875; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_789; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_388; +extern const bool __static_condition_default_337; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_187; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_568; +extern const bool __static_condition_default_636; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_333; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_834; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_1104; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_753; +extern const bool __static_condition_default_858; +void __static_initializer_default() { +__static_renaming("__ptrdiff_t_0", "ptrdiff_t"); +__static_renaming("__size_t_1", "size_t"); +__static_renaming("____u_char_2", "__u_char"); +__static_renaming("____u_short_3", "__u_short"); +__static_renaming("____u_int_4", "__u_int"); +__static_renaming("____u_long_5", "__u_long"); +__static_renaming("____int8_t_6", "__int8_t"); +__static_renaming("____uint8_t_7", "__uint8_t"); +__static_renaming("____int16_t_8", "__int16_t"); +__static_renaming("____uint16_t_9", "__uint16_t"); +__static_renaming("____int32_t_10", "__int32_t"); +__static_renaming("____uint32_t_11", "__uint32_t"); +__static_renaming("____int64_t_12", "__int64_t"); +__static_renaming("____uint64_t_13", "__uint64_t"); +__static_renaming("____quad_t_14", "__quad_t"); +__static_renaming("____u_quad_t_15", "__u_quad_t"); +__static_renaming("____dev_t_16", "__dev_t"); +__static_renaming("____uid_t_17", "__uid_t"); +__static_renaming("____gid_t_18", "__gid_t"); +__static_renaming("____ino_t_19", "__ino_t"); +__static_renaming("____ino64_t_20", "__ino64_t"); +__static_renaming("____mode_t_21", "__mode_t"); +__static_renaming("____nlink_t_22", "__nlink_t"); +__static_renaming("____off_t_23", "__off_t"); +__static_renaming("____off64_t_24", "__off64_t"); +__static_renaming("____pid_t_25", "__pid_t"); +__static_renaming("____fsid_t_29", "__fsid_t"); +__static_renaming("____clock_t_30", "__clock_t"); +__static_renaming("____rlim_t_31", "__rlim_t"); +__static_renaming("____rlim64_t_32", "__rlim64_t"); +__static_renaming("____id_t_33", "__id_t"); +__static_renaming("____time_t_34", "__time_t"); +__static_renaming("____useconds_t_35", "__useconds_t"); +__static_renaming("____suseconds_t_36", "__suseconds_t"); +__static_renaming("____daddr_t_37", "__daddr_t"); +__static_renaming("____key_t_38", "__key_t"); +__static_renaming("____clockid_t_39", "__clockid_t"); +__static_renaming("____timer_t_40", "__timer_t"); +__static_renaming("____blksize_t_41", "__blksize_t"); +__static_renaming("____blkcnt_t_42", "__blkcnt_t"); +__static_renaming("____blkcnt64_t_43", "__blkcnt64_t"); +__static_renaming("____fsblkcnt_t_44", "__fsblkcnt_t"); +__static_renaming("____fsblkcnt64_t_45", "__fsblkcnt64_t"); +__static_renaming("____fsfilcnt_t_46", "__fsfilcnt_t"); +__static_renaming("____fsfilcnt64_t_47", "__fsfilcnt64_t"); +__static_renaming("____fsword_t_48", "__fsword_t"); +__static_renaming("____ssize_t_49", "__ssize_t"); +__static_renaming("____syscall_slong_t_50", "__syscall_slong_t"); +__static_renaming("____syscall_ulong_t_51", "__syscall_ulong_t"); +__static_renaming("____loff_t_52", "__loff_t"); +__static_renaming("____qaddr_t_54", "__qaddr_t"); +__static_renaming("____caddr_t_55", "__caddr_t"); +__static_renaming("____intptr_t_56", "__intptr_t"); +__static_renaming("____socklen_t_57", "__socklen_t"); +__static_renaming("__FILE_59", "FILE"); +__static_renaming("____FILE_60", "__FILE"); +__static_renaming("____mbstate_t_69", "__mbstate_t"); +__static_renaming("___G_fpos_t_77", "_G_fpos_t"); +__static_renaming("___G_fpos64_t_85", "_G_fpos64_t"); +__static_renaming("____gnuc_va_list_86", "__gnuc_va_list"); +__static_renaming("___IO_lock_t_88", "_IO_lock_t"); +__static_renaming("___IO_FILE_171", "_IO_FILE"); +__static_renaming("___IO_FILE_172", "_IO_FILE"); +__static_renaming("___IO_2_1_stdin__175", "_IO_2_1_stdin_"); +__static_renaming("___IO_2_1_stdout__176", "_IO_2_1_stdout_"); +__static_renaming("___IO_2_1_stderr__177", "_IO_2_1_stderr_"); +__static_renaming("____io_read_fn_181", "__io_read_fn"); +__static_renaming("____io_write_fn_186", "__io_write_fn"); +__static_renaming("____io_seek_fn_192", "__io_seek_fn"); +__static_renaming("____io_close_fn_195", "__io_close_fn"); +__static_renaming("____underflow_196", "__underflow"); +__static_renaming("____underflow_197", "__underflow"); +__static_renaming("____uflow_199", "__uflow"); +__static_renaming("____uflow_200", "__uflow"); +__static_renaming("____overflow_202", "__overflow"); +__static_renaming("____overflow_203", "__overflow"); +__static_renaming("___IO_getc_208", "_IO_getc"); +__static_renaming("___IO_getc_209", "_IO_getc"); +__static_renaming("___IO_putc_215", "_IO_putc"); +__static_renaming("___IO_putc_216", "_IO_putc"); +__static_renaming("___IO_feof_221", "_IO_feof"); +__static_renaming("___IO_feof_222", "_IO_feof"); +__static_renaming("___IO_ferror_227", "_IO_ferror"); +__static_renaming("___IO_ferror_228", "_IO_ferror"); +__static_renaming("___IO_peekc_locked_233", "_IO_peekc_locked"); +__static_renaming("___IO_peekc_locked_234", "_IO_peekc_locked"); +__static_renaming("___IO_flockfile_236", "_IO_flockfile"); +__static_renaming("___IO_flockfile_237", "_IO_flockfile"); +__static_renaming("___IO_funlockfile_239", "_IO_funlockfile"); +__static_renaming("___IO_funlockfile_240", "_IO_funlockfile"); +__static_renaming("___IO_ftrylockfile_242", "_IO_ftrylockfile"); +__static_renaming("___IO_ftrylockfile_243", "_IO_ftrylockfile"); +__static_renaming("___IO_vfscanf_245", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_247", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_251", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_252", "_IO_vfscanf"); +__static_renaming("___IO_vfprintf_254", "_IO_vfprintf"); +__static_renaming("___IO_vfprintf_256", "_IO_vfprintf"); +__static_renaming("___IO_vfprintf_260", "_IO_vfprintf"); +__static_renaming("___IO_padn_261", "_IO_padn"); +__static_renaming("___IO_padn_262", "_IO_padn"); +__static_renaming("___IO_sgetn_265", "_IO_sgetn"); +__static_renaming("___IO_sgetn_266", "_IO_sgetn"); +__static_renaming("___IO_seekoff_268", "_IO_seekoff"); +__static_renaming("___IO_seekoff_269", "_IO_seekoff"); +__static_renaming("___IO_seekpos_272", "_IO_seekpos"); +__static_renaming("___IO_seekpos_273", "_IO_seekpos"); +__static_renaming("___IO_free_backup_area_276", "_IO_free_backup_area"); +__static_renaming("___IO_free_backup_area_277", "_IO_free_backup_area"); +__static_renaming("__va_list_279", "va_list"); +__static_renaming("__off_t_281", "off_t"); +__static_renaming("__off_t_283", "off_t"); +__static_renaming("__ssize_t_285", "ssize_t"); +__static_renaming("__fpos_t_287", "fpos_t"); +__static_renaming("__fpos_t_289", "fpos_t"); +__static_renaming("__stdin_291", "stdin"); +__static_renaming("__stdin_292", "stdin"); +__static_renaming("__stdout_294", "stdout"); +__static_renaming("__stdout_295", "stdout"); +__static_renaming("__stderr_297", "stderr"); +__static_renaming("__stderr_298", "stderr"); +__static_renaming("__remove_301", "remove"); +__static_renaming("__rename_304", "rename"); +__static_renaming("__renameat_309", "renameat"); +__static_renaming("__tmpfile_310", "tmpfile"); +__static_renaming("__tmpfile_312", "tmpfile"); +__static_renaming("__tmpfile_314", "tmpfile"); +__static_renaming("__tmpfile_316", "tmpfile"); +__static_renaming("__tmpnam_319", "tmpnam"); +__static_renaming("__tmpnam_320", "tmpnam"); +__static_renaming("__tmpnam_r_322", "tmpnam_r"); +__static_renaming("__tmpnam_r_323", "tmpnam_r"); +__static_renaming("__tempnam_326", "tempnam"); +__static_renaming("__tempnam_327", "tempnam"); +__static_renaming("__fclose_330", "fclose"); +__static_renaming("__fclose_332", "fclose"); +__static_renaming("__fflush_336", "fflush"); +__static_renaming("__fflush_unlocked_340", "fflush_unlocked"); +__static_renaming("__fopen_344", "fopen"); +__static_renaming("__fopen_346", "fopen"); +__static_renaming("__fopen_354", "fopen"); +__static_renaming("__fopen_356", "fopen"); +__static_renaming("__freopen_362", "freopen"); +__static_renaming("__freopen_364", "freopen"); +__static_renaming("__freopen_366", "freopen"); +__static_renaming("__freopen_368", "freopen"); +__static_renaming("__fdopen_372", "fdopen"); +__static_renaming("__fdopen_374", "fdopen"); +__static_renaming("__fmemopen_379", "fmemopen"); +__static_renaming("__fmemopen_381", "fmemopen"); +__static_renaming("__open_memstream_385", "open_memstream"); +__static_renaming("__open_memstream_387", "open_memstream"); +__static_renaming("__setbuf_392", "setbuf"); +__static_renaming("__setbuf_394", "setbuf"); +__static_renaming("__setvbuf_401", "setvbuf"); +__static_renaming("__setbuffer_407", "setbuffer"); +__static_renaming("__setlinebuf_411", "setlinebuf"); +__static_renaming("__fprintf_416", "fprintf"); +__static_renaming("__fprintf_418", "fprintf"); +__static_renaming("__printf_421", "printf"); +__static_renaming("__sprintf_424", "sprintf"); +__static_renaming("__vfprintf_430", "vfprintf"); +__static_renaming("__vprintf_437", "vprintf"); +__static_renaming("__vsprintf_443", "vsprintf"); +__static_renaming("__snprintf_448", "snprintf"); +__static_renaming("__vsnprintf_454", "vsnprintf"); +__static_renaming("__vdprintf_460", "vdprintf"); +__static_renaming("__dprintf_464", "dprintf"); +__static_renaming("__fscanf_468", "fscanf"); +__static_renaming("__fscanf_470", "fscanf"); +__static_renaming("__fscanf_472", "fscanf"); +__static_renaming("__fscanf_474", "fscanf"); +__static_renaming("__scanf_477", "scanf"); +__static_renaming("__scanf_478", "scanf"); +__static_renaming("__sscanf_481", "sscanf"); +__static_renaming("__vfscanf_509", "vfscanf"); +__static_renaming("__vfscanf_513", "vfscanf"); +__static_renaming("__vscanf_520", "vscanf"); +__static_renaming("__vscanf_522", "vscanf"); +__static_renaming("__vsscanf_528", "vsscanf"); +__static_renaming("__fgetc_563", "fgetc"); +__static_renaming("__getc_567", "getc"); +__static_renaming("__getchar_569", "getchar"); +__static_renaming("__getc_unlocked_572", "getc_unlocked"); +__static_renaming("__getchar_unlocked_574", "getchar_unlocked"); +__static_renaming("__fgetc_unlocked_577", "fgetc_unlocked"); +__static_renaming("__fputc_582", "fputc"); +__static_renaming("__fputc_584", "fputc"); +__static_renaming("__putc_589", "putc"); +__static_renaming("__putchar_592", "putchar"); +__static_renaming("__fputc_unlocked_596", "fputc_unlocked"); +__static_renaming("__putc_unlocked_601", "putc_unlocked"); +__static_renaming("__putchar_unlocked_604", "putchar_unlocked"); +__static_renaming("__getw_607", "getw"); +__static_renaming("__putw_612", "putw"); +__static_renaming("__fgets_618", "fgets"); +__static_renaming("__fgets_620", "fgets"); +__static_renaming("__fgets_622", "fgets"); +__static_renaming("__fgets_624", "fgets"); +__static_renaming("____getdelim_631", "__getdelim"); +__static_renaming("____getdelim_635", "__getdelim"); +__static_renaming("__getdelim_644", "getdelim"); +__static_renaming("__getdelim_648", "getdelim"); +__static_renaming("__getline_656", "getline"); +__static_renaming("__getline_660", "getline"); +__static_renaming("__fputs_667", "fputs"); +__static_renaming("__fputs_669", "fputs"); +__static_renaming("__puts_672", "puts"); +__static_renaming("__ungetc_676", "ungetc"); +__static_renaming("__fseek_714", "fseek"); +__static_renaming("__fseek_716", "fseek"); +__static_renaming("__ftell_720", "ftell"); +__static_renaming("__ftell_722", "ftell"); +__static_renaming("__rewind_726", "rewind"); +__static_renaming("__fseeko_733", "fseeko"); +__static_renaming("__fseeko_744", "fseeko"); +__static_renaming("__ftello_750", "ftello"); +__static_renaming("__ftello_754", "ftello"); +__static_renaming("__ftello_758", "ftello"); +__static_renaming("__fgetpos_766", "fgetpos"); +__static_renaming("__fgetpos_778", "fgetpos"); +__static_renaming("__fsetpos_786", "fsetpos"); +__static_renaming("__fsetpos_790", "fsetpos"); +__static_renaming("__clearerr_796", "clearerr"); +__static_renaming("__feof_800", "feof"); +__static_renaming("__feof_802", "feof"); +__static_renaming("__ferror_806", "ferror"); +__static_renaming("__ferror_808", "ferror"); +__static_renaming("__clearerr_unlocked_812", "clearerr_unlocked"); +__static_renaming("__feof_unlocked_816", "feof_unlocked"); +__static_renaming("__feof_unlocked_818", "feof_unlocked"); +__static_renaming("__ferror_unlocked_822", "ferror_unlocked"); +__static_renaming("__ferror_unlocked_824", "ferror_unlocked"); +__static_renaming("__perror_827", "perror"); +__static_renaming("__perror_828", "perror"); +__static_renaming("__sys_nerr_829", "sys_nerr"); +__static_renaming("__sys_errlist_830", "sys_errlist"); +__static_renaming("__fileno_833", "fileno"); +__static_renaming("__fileno_835", "fileno"); +__static_renaming("__fileno_unlocked_839", "fileno_unlocked"); +__static_renaming("__fileno_unlocked_841", "fileno_unlocked"); +__static_renaming("__popen_845", "popen"); +__static_renaming("__popen_847", "popen"); +__static_renaming("__pclose_851", "pclose"); +__static_renaming("__ctermid_854", "ctermid"); +__static_renaming("__flockfile_857", "flockfile"); +__static_renaming("__ftrylockfile_861", "ftrylockfile"); +__static_renaming("__ftrylockfile_863", "ftrylockfile"); +__static_renaming("__funlockfile_867", "funlockfile"); +__static_renaming("____sprintf_chk_899", "__sprintf_chk"); +__static_renaming("____vsprintf_chk_906", "__vsprintf_chk"); +__static_renaming("____snprintf_chk_920", "__snprintf_chk"); +__static_renaming("____vsnprintf_chk_928", "__vsnprintf_chk"); +__static_renaming("____fprintf_chk_943", "__fprintf_chk"); +__static_renaming("____printf_chk_947", "__printf_chk"); +__static_renaming("____vfprintf_chk_954", "__vfprintf_chk"); +__static_renaming("____vprintf_chk_962", "__vprintf_chk"); +__static_renaming("____dprintf_chk_984", "__dprintf_chk"); +__static_renaming("____vdprintf_chk_990", "__vdprintf_chk"); +__static_renaming("____fgets_chk_1004", "__fgets_chk"); +__static_renaming("____fgets_chk_1006", "__fgets_chk"); +__static_renaming("____fgets_chk_1008", "__fgets_chk"); +__static_renaming("____fgets_alias_1014", "__fgets_alias"); +__static_renaming("____fgets_chk_warn_1021", "__fgets_chk_warn"); +__static_renaming("____cnt_1087", "__cnt"); +__static_renaming("____cptr_1088", "__cptr"); +__static_renaming("__apr_rmm_init_1093", "apr_rmm_init"); +__static_renaming("__apr_rmm_init_1094", "apr_rmm_init"); +__static_renaming("__apr_rmm_init_1095", "apr_rmm_init"); +__static_renaming("__rmm_lock_1099", "rmm_lock"); +__static_renaming("__util_ldap_cache_init_1100", "util_ldap_cache_init"); +__static_renaming("__main_1106", "main"); +__static_renaming("__main_1107", "main"); + +__static_condition_renaming("__static_condition_default_53", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_76", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_84", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_123", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_169", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_170", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_173", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_182", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_187", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_193", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_198", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_201", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_204", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_210", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_217", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_223", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_229", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_235", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_238", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_241", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_244", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_246", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_248", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_249", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_250", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_253", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_255", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_257", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_258", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_259", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_263", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_264", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_267", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_270", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_271", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_274", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_275", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_278", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_280", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); +__static_condition_renaming("__static_condition_default_282", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_284", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_286", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_288", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_290", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_293", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_296", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_299", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_311", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_313", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_315", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_317", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_331", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_333", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_337", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_341", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_345", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_347", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_355", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_357", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_363", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_365", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_367", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_369", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_373", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_375", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_380", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_382", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_386", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_388", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_393", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_395", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_402", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_408", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_412", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_417", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_419", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_431", "!(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_432", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_433", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_438", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_444", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_455", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_461", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_469", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_471", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_473", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_475", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_486", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_488", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_489", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_491", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_493", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_494", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_497", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_499", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_503", "!(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_510", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_511", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_512", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_514", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_515", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_516", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_521", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_523", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_529", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_536", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_537", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_538", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_539", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_541", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_542", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_543", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_544", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_549", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_550", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_552", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_553", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_559", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_560", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_564", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_568", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_573", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_578", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_583", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_585", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_590", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_597", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_602", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_608", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_613", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_619", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_621", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_623", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_625", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_632", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_633", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_634", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_636", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_637", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_638", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_645", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_646", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_647", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_649", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_650", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_651", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_657", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_658", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_659", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_661", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_662", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_663", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_668", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_670", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_677", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_683", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_684", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_685", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_686", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_692", "!(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_693", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_699", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_700", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_701", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_702", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_708", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_709", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_715", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_717", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_721", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_723", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_727", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_734", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_735", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_736", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_745", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_746", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_747", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_751", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_752", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_753", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_755", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_756", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_757", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_759", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_760", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_761", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_767", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_768", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_769", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_779", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_780", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_781", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_787", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_788", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_789", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_791", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_792", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_793", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_797", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_801", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_803", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_807", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_809", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_813", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_817", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_819", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_823", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_825", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_834", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_836", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_840", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_842", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_846", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_848", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_852", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_858", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_862", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_864", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_868", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_872", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_875", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_878", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_883", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_887", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_891", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_894", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_907", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_914", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_929", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_938", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_944", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_955", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_956", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_957", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_963", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_967", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_972", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_978", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_979", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_980", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_991", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_998", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1005", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1007", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1009", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1015", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1022", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1027", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1028", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1035", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1036", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1042", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1043", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1050", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1051", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1057", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1058", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1065", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1066", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1072", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1073", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1080", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1081", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1089", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_1090", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1091", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1096", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) || !(defined __need___FILE) && (defined __STRICT_ANSI__)"); +__static_condition_renaming("__static_condition_default_1097", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1098", "(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_1101", "(defined APU_HAS_LDAP) && !(defined APR_HAS_SHARED_MEMORY)"); +__static_condition_renaming("__static_condition_default_1102", "(defined APU_HAS_LDAP) && (defined APR_HAS_SHARED_MEMORY)"); +__static_condition_renaming("__static_condition_default_1103", "(defined X) && (defined Y) || !(defined X) && (defined Z)"); +__static_condition_renaming("__static_condition_default_1104", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined APU_HAS_LDAP) && (defined APR_HAS_SHARED_MEMORY)"); +__static_condition_renaming("__static_condition_default_1105", "(defined __need___FILE) && (defined APU_HAS_LDAP) && (defined APR_HAS_SHARED_MEMORY)"); +__static_condition_renaming("__static_condition_default_1108", "!(defined APU_HAS_LDAP)"); +__static_condition_renaming("__static_condition_default_1109", "(defined APU_HAS_LDAP)"); +__static_condition_renaming("__static_condition_default_1110", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); + +if (__static_condition_default_1110) { +__static_parse_error("Unable to parse"); +} +}; +typedef long int __ptrdiff_t_0;// L143:L324 +typedef long unsigned int __size_t_1;// L177:L209 +typedef unsigned char ____u_char_2;// L30 +typedef unsigned short int ____u_short_3;// L31 +typedef unsigned int ____u_int_4;// L32 +typedef unsigned long int ____u_long_5;// L33 +typedef signed char ____int8_t_6;// L36 +typedef unsigned char ____uint8_t_7;// L37 +typedef signed short int ____int16_t_8;// L38 +typedef unsigned short int ____uint16_t_9;// L39 +typedef signed int ____int32_t_10;// L40 +typedef unsigned int ____uint32_t_11;// L41 +typedef signed long int ____int64_t_12;// L43 +typedef unsigned long int ____uint64_t_13;// L44 +typedef long int ____quad_t_14;// L52 +typedef unsigned long int ____u_quad_t_15;// L53 +typedef unsigned long int ____dev_t_16;// L109:L124 +typedef unsigned int ____uid_t_17;// L92:L125 +typedef unsigned int ____gid_t_18;// L92:L126 +typedef unsigned long int ____ino_t_19;// L94:L127 +typedef unsigned long int ____ino64_t_20;// L109:L128 +typedef unsigned int ____mode_t_21;// L92:L129 +typedef unsigned long int ____nlink_t_22;// L94:L130 +typedef long int ____off_t_23;// L93:L131 +typedef long int ____off64_t_24;// L108:L132 +typedef int ____pid_t_25;// L91:L133 +struct ____anonymous_tag_26_27 { +int ____val_28[2];// L72 +}; +typedef struct ____anonymous_tag_26_27 ____fsid_t_29;// L72:L134 +typedef long int ____clock_t_30;// L93:L135 +typedef unsigned long int ____rlim_t_31;// L94:L136 +typedef unsigned long int ____rlim64_t_32;// L109:L137 +typedef unsigned int ____id_t_33;// L92:L138 +typedef long int ____time_t_34;// L93:L139 +typedef unsigned int ____useconds_t_35;// L92:L140 +typedef long int ____suseconds_t_36;// L93:L141 +typedef int ____daddr_t_37;// L91:L143 +typedef int ____key_t_38;// L91:L144 +typedef int ____clockid_t_39;// L91:L147 +typedef void * (____timer_t_40);// L70:L150 +typedef long int ____blksize_t_41;// L93:L153 +typedef long int ____blkcnt_t_42;// L93:L158 +typedef long int ____blkcnt64_t_43;// L108:L159 +typedef unsigned long int ____fsblkcnt_t_44;// L94:L162 +typedef unsigned long int ____fsblkcnt64_t_45;// L109:L163 +typedef unsigned long int ____fsfilcnt_t_46;// L94:L166 +typedef unsigned long int ____fsfilcnt64_t_47;// L109:L167 +typedef long int ____fsword_t_48;// L93:L170 +typedef long int ____ssize_t_49;// L110:L172 +typedef long int ____syscall_slong_t_50;// L93:L175 +typedef unsigned long int ____syscall_ulong_t_51;// L94:L177 +typedef ____off64_t_24 ____loff_t_52;// L181 +typedef ____quad_t_14 * (____qaddr_t_54);// L182 +typedef char * (____caddr_t_55);// L183 +typedef long int ____intptr_t_56;// L110:L186 +typedef unsigned int ____socklen_t_57;// L92:L189 +typedef struct __forward_tag_reference_58 __FILE_59;// L48 +typedef struct __forward_tag_reference_58 ____FILE_60;// L64 +union ____anonymous_tag_61_62 { +unsigned int ____wch_63;// L265 +char ____wchb_64[4];// L92 +}; +struct ____anonymous_tag_65_66 { +int ____count_67;// L84 +union ____anonymous_tag_61_62 ____value_68;// L85 +}; +typedef struct ____anonymous_tag_65_66 ____mbstate_t_69;// L82:L94 +struct ____anonymous_tag_70_71 { +____off_t_23 ____pos_72;// L0 +____mbstate_t_69 ____state_74;// L0 +}; +typedef struct ____anonymous_tag_70_71 ___G_fpos_t_77;// L21:L25 +struct ____anonymous_tag_78_79 { +____off64_t_24 ____pos_80;// L0 +____mbstate_t_69 ____state_82;// L0 +}; +typedef struct ____anonymous_tag_78_79 ___G_fpos64_t_85;// L26:L30 +typedef __builtin_va_list ____gnuc_va_list_86;// L40 +typedef void ___IO_lock_t_88;// L150 +struct ___IO_marker_90 { +struct __forward_tag_reference_89 * (___next_91);// L0 +struct __forward_tag_reference_58 * (___sbuf_92);// L0 +int ___pos_93;// L162 +}; +enum ____codecvt_result_98 { +____codecvt_ok_94, +____codecvt_partial_95, +____codecvt_error_96, +____codecvt_noconv_97, +}; +struct ___IO_FILE_99 { +int ___flags_100;// L242 +char * (___IO_read_ptr_101);// L247 +char * (___IO_read_end_102);// L248 +char * (___IO_read_base_103);// L249 +char * (___IO_write_base_104);// L250 +char * (___IO_write_ptr_105);// L251 +char * (___IO_write_end_106);// L252 +char * (___IO_buf_base_107);// L253 +char * (___IO_buf_end_108);// L254 +char * (___IO_save_base_109);// L256 +char * (___IO_backup_base_110);// L257 +char * (___IO_save_end_111);// L258 +struct ___IO_marker_90 * (___markers_112);// L260 +struct __forward_tag_reference_58 * (___chain_113);// L0 +int ___fileno_114;// L264 +int ___flags2_115;// L268 +____off_t_23 ___old_offset_116;// L0 +unsigned short ___cur_column_118;// L274 +signed char ___vtable_offset_119;// L275 +char ___shortbuf_120[1];// L276 +___IO_lock_t_88 * (___lock_121);// L0 +}; +struct ___IO_FILE_124 { +int ___flags_125;// L242 +char * (___IO_read_ptr_126);// L247 +char * (___IO_read_end_127);// L248 +char * (___IO_read_base_128);// L249 +char * (___IO_write_base_129);// L250 +char * (___IO_write_ptr_130);// L251 +char * (___IO_write_end_131);// L252 +char * (___IO_buf_base_132);// L253 +char * (___IO_buf_end_133);// L254 +char * (___IO_save_base_134);// L256 +char * (___IO_backup_base_135);// L257 +char * (___IO_save_end_136);// L258 +struct ___IO_marker_90 * (___markers_137);// L260 +struct __forward_tag_reference_58 * (___chain_138);// L0 +int ___fileno_139;// L264 +int ___flags2_140;// L268 +____off_t_23 ___old_offset_141;// L0 +unsigned short ___cur_column_143;// L274 +signed char ___vtable_offset_144;// L275 +char ___shortbuf_145[1];// L276 +___IO_lock_t_88 * (___lock_146);// L0 +____off64_t_24 ___offset_148;// L0 +void * (____pad1_150);// L297 +void * (____pad2_151);// L298 +void * (____pad3_152);// L299 +void * (____pad4_153);// L300 +__size_t_1 ____pad5_154;// L0 +int ___mode_155;// L303 +char ___unused2_156[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +}; +struct ___IO_FILE_complete_157 { +struct ___IO_FILE_99 ___file_158;// L286 +____off64_t_24 ___offset_160;// L0 +void * (____pad1_162);// L297 +void * (____pad2_163);// L298 +void * (____pad3_164);// L299 +void * (____pad4_165);// L300 +__size_t_1 ____pad5_166;// L0 +int ___mode_167;// L303 +char ___unused2_168[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +}; +typedef struct ___IO_FILE_99 ___IO_FILE_171;// L310 +typedef struct ___IO_FILE_124 ___IO_FILE_172;// L310 +typedef ____ssize_t_49 (____io_read_fn_181) (void * (____cookie_178), char * (____buf_179), __size_t_1 ____nbytes_180);// L333 +typedef ____ssize_t_49 (____io_write_fn_186) (void * (____cookie_183), const char * (____buf_184), __size_t_1 ____n_185);// L341:L342 +typedef int (____io_seek_fn_192) (void * (____cookie_188), ____off64_t_24 * (____pos_189), int ____w_191);// L350 +typedef int (____io_close_fn_195) (void * (____cookie_194));// L353 +typedef ____gnuc_va_list_86 __va_list_279;// L79 +typedef ____off_t_23 __off_t_281;// L90 +typedef ____off64_t_24 __off_t_283;// L92 +typedef ____ssize_t_49 __ssize_t_285;// L102 +typedef ___G_fpos_t_77 __fpos_t_287;// L110 +typedef ___G_fpos64_t_85 __fpos_t_289;// L112 +extern const char * const __sys_errlist_830[];// L27 + +struct __forward_tag_reference_89 { // generated union of struct variations +union { +struct ___IO_marker_90 ___IO_marker_90; +}; +}; + +struct __forward_tag_reference_58 { // generated union of struct variations +union { +struct ___IO_FILE_99 ___IO_FILE_99; +struct ___IO_FILE_124 ___IO_FILE_124; +}; +}; + +struct __forward_tag_reference_87 { // generated union of struct variations +union { +}; +}; + +struct __forward_tag_reference_174 { // generated union of struct variations +union { +}; +}; + +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +struct __forward_tag_reference_58 ;// L0 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +struct __forward_tag_reference_87 ;// L0 +struct __forward_tag_reference_87 ;// L0 +struct __forward_tag_reference_58 ;// L0 +// typedef moved to top of scope +struct ___IO_marker_90 ;// L156 +enum ____codecvt_result_98 ;// L176 +struct ___IO_FILE_99 ;// L241 + +struct ___IO_FILE_124 ;// L241 +struct ___IO_FILE_complete_157 ;// L241 + +// typedef moved to top of scope +// typedef moved to top of scope +struct __forward_tag_reference_174 ;// L0 +extern struct __forward_tag_reference_174 ___IO_2_1_stdin__175;// L315 +extern struct __forward_tag_reference_174 ___IO_2_1_stdout__176;// L316 +extern struct __forward_tag_reference_174 ___IO_2_1_stderr__177;// L317 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern int (____underflow_196) (___IO_FILE_171 *);// L385 +extern int (____underflow_197) (___IO_FILE_172 *);// L385 +extern int (____uflow_199) (___IO_FILE_171 *);// L386 +extern int (____uflow_200) (___IO_FILE_172 *);// L386 +extern int (____overflow_202) (___IO_FILE_171 *, int );// L387 +extern int (____overflow_203) (___IO_FILE_172 *, int );// L387 +extern int (___IO_getc_208) (___IO_FILE_171 * (____fp_205));// L429 +extern int (___IO_getc_209) (___IO_FILE_172 * (____fp_206));// L429 +extern int (___IO_putc_215) (int ____c_211, ___IO_FILE_171 * (____fp_212));// L430 +extern int (___IO_putc_216) (int ____c_211, ___IO_FILE_172 * (____fp_213));// L430 +extern int (___IO_feof_221) (___IO_FILE_171 * (____fp_218));// L431 +extern int (___IO_feof_222) (___IO_FILE_172 * (____fp_219));// L431 +extern int (___IO_ferror_227) (___IO_FILE_171 * (____fp_224));// L432 +extern int (___IO_ferror_228) (___IO_FILE_172 * (____fp_225));// L432 +extern int (___IO_peekc_locked_233) (___IO_FILE_171 * (____fp_230));// L434 +extern int (___IO_peekc_locked_234) (___IO_FILE_172 * (____fp_231));// L434 +extern void (___IO_flockfile_236) (___IO_FILE_171 *);// L440 +extern void (___IO_flockfile_237) (___IO_FILE_172 *);// L440 +extern void (___IO_funlockfile_239) (___IO_FILE_171 *);// L441 +extern void (___IO_funlockfile_240) (___IO_FILE_172 *);// L441 +extern int (___IO_ftrylockfile_242) (___IO_FILE_171 *);// L442 +extern int (___IO_ftrylockfile_243) (___IO_FILE_172 *);// L442 +extern int (___IO_vfscanf_245) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_247) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_251) (___IO_FILE_171 * __restrict , const char * __restrict , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_252) (___IO_FILE_172 * __restrict , const char * __restrict , int * __restrict );// L459:L460 +extern int (___IO_vfprintf_254) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 +extern int (___IO_vfprintf_256) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 +extern int (___IO_vfprintf_260) ();// L461:L462 +extern ____ssize_t_49 (___IO_padn_261) (___IO_FILE_171 *, int , ____ssize_t_49 );// L463 +extern ____ssize_t_49 (___IO_padn_262) (___IO_FILE_172 *, int , ____ssize_t_49 );// L463 +extern __size_t_1 (___IO_sgetn_265) (___IO_FILE_171 *, void *, __size_t_1 );// L464 +extern __size_t_1 (___IO_sgetn_266) (___IO_FILE_172 *, void *, __size_t_1 );// L464 +extern ____off64_t_24 (___IO_seekoff_268) (___IO_FILE_171 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekoff_269) (___IO_FILE_172 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekpos_272) (___IO_FILE_171 *, ____off64_t_24 , int );// L467 +extern ____off64_t_24 (___IO_seekpos_273) (___IO_FILE_172 *, ____off64_t_24 , int );// L467 +extern void (___IO_free_backup_area_276) (___IO_FILE_171 *);// L469 +extern void (___IO_free_backup_area_277) (___IO_FILE_172 *);// L469 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern struct ___IO_FILE_99 * (__stdin_291);// L168 +extern struct ___IO_FILE_124 * (__stdin_292);// L168 +extern struct ___IO_FILE_99 * (__stdout_294);// L169 +extern struct ___IO_FILE_124 * (__stdout_295);// L169 +extern struct ___IO_FILE_99 * (__stderr_297);// L170 +extern struct ___IO_FILE_124 * (__stderr_298);// L170 +extern int (__remove_301) (const char * (____filename_300));// L178 +extern int (__rename_304) (const char * (____old_302), const char * (____new_303));// L180 +extern int (__renameat_309) (int ____oldfd_305, const char * (____old_306), int ____newfd_307, const char * (____new_308));// L185:L186 +extern __FILE_59 * ((__tmpfile_310) (void ));// L195 +extern __FILE_59 * ((__tmpfile_316) (void ));// L198 +extern __FILE_59 * ((__tmpfile_314) (void ));// L195 +extern __FILE_59 * ((__tmpfile_312) (void ));// L198 +extern char * ((__tmpnam_319) (char * (____s_318)));// L209 +extern char * ((__tmpnam_320) (char * (____s_318)));// L209 +extern char * ((__tmpnam_r_322) (char * (____s_321)));// L215 +extern char * ((__tmpnam_r_323) (char * (____s_321)));// L215 +extern char * ((__tempnam_326) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 +extern char * ((__tempnam_327) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 +extern int (__fclose_330) (__FILE_59 * (____stream_328));// L237 +extern int (__fclose_332) (__FILE_59 * (____stream_328));// L237 +extern int (__fflush_336) (__FILE_59 * (____stream_334));// L242 +extern int (__fflush_unlocked_340) (__FILE_59 * (____stream_338));// L252 +extern __FILE_59 * ((__fopen_344) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 +extern __FILE_59 * ((__fopen_346) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 +extern __FILE_59 * ((__fopen_354) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 +extern __FILE_59 * ((__fopen_356) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 +extern __FILE_59 * ((__freopen_362) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 +extern __FILE_59 * ((__freopen_368) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 +extern __FILE_59 * ((__freopen_366) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 +extern __FILE_59 * ((__freopen_364) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 +extern __FILE_59 * ((__fdopen_372) (int ____fd_370, const char * (____modes_371)));// L306 +extern __FILE_59 * ((__fdopen_374) (int ____fd_370, const char * (____modes_371)));// L306 +extern __FILE_59 * ((__fmemopen_379) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 +extern __FILE_59 * ((__fmemopen_381) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 +extern __FILE_59 * ((__open_memstream_385) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 +extern __FILE_59 * ((__open_memstream_387) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 +extern void (__setbuf_392) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 +extern void (__setbuf_394) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 +extern int (__setvbuf_401) (__FILE_59 * __restrict ____stream_396, char * __restrict ____buf_398, int ____modes_399, __size_t_1 ____n_400);// L336:L337 +extern void (__setbuffer_407) (__FILE_59 * __restrict ____stream_403, char * __restrict ____buf_405, __size_t_1 ____size_406);// L343:L344 +extern void (__setlinebuf_411) (__FILE_59 * (____stream_409));// L347 +extern int (__fprintf_416) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 +extern int (__fprintf_418) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 +extern int (__printf_421) (const char * __restrict ____format_420, ... );// L362 +extern int (__sprintf_424) (char * __restrict ____s_422, const char * __restrict ____format_423, ... );// L364:L365 +extern int (__vfprintf_430) (__FILE_59 * __restrict ____s_425, const char * __restrict ____format_427, ____gnuc_va_list_86 ____arg_428);// L371:L372 +extern int (__vprintf_437) (const char * __restrict ____format_434, ____gnuc_va_list_86 ____arg_435);// L377 +extern int (__vsprintf_443) (char * __restrict ____s_439, const char * __restrict ____format_440, ____gnuc_va_list_86 ____arg_441);// L379:L380 +extern int (__snprintf_448) (char * __restrict ____s_445, __size_t_1 ____maxlen_446, const char * __restrict ____format_447, ... );// L386:L388 +extern int (__vsnprintf_454) (char * __restrict ____s_449, __size_t_1 ____maxlen_450, const char * __restrict ____format_451, ____gnuc_va_list_86 ____arg_452);// L390:L392 +extern int (__vdprintf_460) (int ____fd_456, const char * __restrict ____fmt_457, ____gnuc_va_list_86 ____arg_458);// L412:L414 +extern int (__dprintf_464) (int ____fd_462, const char * __restrict ____fmt_463, ... );// L415:L416 +extern int (__fscanf_468) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_470) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_472) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_474) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__scanf_477) (const char * __restrict ____format_476, ... );// L431 +extern int (__scanf_478) (const char * __restrict ____format_476, ... );// L431 +extern int (__sscanf_481) (const char * __restrict ____s_479, const char * __restrict ____format_480, ... );// L433:L434 + + + + + + + +extern int (__vfscanf_509) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 +extern int (__vfscanf_513) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 +extern int (__vscanf_520) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 +extern int (__vscanf_522) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 +extern int (__vsscanf_528) (const char * __restrict ____s_524, const char * __restrict ____format_525, ____gnuc_va_list_86 ____arg_526);// L483:L485 + + + + + +extern int (__fgetc_563) (__FILE_59 * (____stream_561));// L531 +extern int (__getc_567) (__FILE_59 * (____stream_565));// L532 +extern int (__getchar_569) (void );// L538 +extern int (__getc_unlocked_572) (__FILE_59 * (____stream_570));// L550 +extern int (__getchar_unlocked_574) (void );// L551 +extern int (__fgetc_unlocked_577) (__FILE_59 * (____stream_575));// L561 +extern int (__fputc_582) (int ____c_579, __FILE_59 * (____stream_580));// L573 +extern int (__fputc_584) (int ____c_579, __FILE_59 * (____stream_580));// L573 +extern int (__putc_589) (int ____c_586, __FILE_59 * (____stream_587));// L574 +extern int (__putchar_592) (int ____c_591);// L580 +extern int (__fputc_unlocked_596) (int ____c_593, __FILE_59 * (____stream_594));// L594 +extern int (__putc_unlocked_601) (int ____c_598, __FILE_59 * (____stream_599));// L602 +extern int (__putchar_unlocked_604) (int ____c_603);// L603 +extern int (__getw_607) (__FILE_59 * (____stream_605));// L610 +extern int (__putw_612) (int ____w_609, __FILE_59 * (____stream_610));// L613 +extern char * ((__fgets_618) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_620) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_622) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_624) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern ____ssize_t_49 (____getdelim_631) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 +extern ____ssize_t_49 (____getdelim_635) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 +extern ____ssize_t_49 (__getdelim_644) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 +extern ____ssize_t_49 (__getdelim_648) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 +extern ____ssize_t_49 (__getline_656) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 +extern ____ssize_t_49 (__getline_660) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 +extern int (__fputs_667) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 +extern int (__fputs_669) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 +extern int (__puts_672) (const char * (____s_671));// L695 +extern int (__ungetc_676) (int ____c_673, __FILE_59 * (____stream_674));// L702 +extern int (__fseek_714) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 +extern int (__fseek_716) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 +extern long int (__ftell_720) (__FILE_59 * (____stream_718));// L754 +extern long int (__ftell_722) (__FILE_59 * (____stream_718));// L754 +extern void (__rewind_726) (__FILE_59 * (____stream_724));// L759 +extern int (__fseeko_733) (__FILE_59 * (____stream_728), ____off_t_23 ____off_730, int ____whence_732);// L773 +extern int (__fseeko_744) (__FILE_59 * (____stream_739), ____off64_t_24 ____off_741, int ____whence_743);// L781:L783 +extern ____off_t_23 (__ftello_758) (__FILE_59 * (____stream_737));// L778 +extern ____off_t_23 (__ftello_750) (__FILE_59 * (____stream_737));// L778 +extern int (__fgetpos_766) (__FILE_59 * __restrict ____stream_762, __fpos_t_287 * __restrict ____pos_764);// L798 +extern ____off64_t_24 (__ftello_754) (__FILE_59 * (____stream_748));// L784 +extern int (__fgetpos_778) (__FILE_59 * __restrict ____stream_774, __fpos_t_289 * __restrict ____pos_776);// L806:L807 +extern int (__fsetpos_786) (__FILE_59 * (____stream_770), const __fpos_t_287 * (____pos_772));// L803 +extern int (__fsetpos_790) (__FILE_59 * (____stream_782), const __fpos_t_289 * (____pos_784));// L808:L809 +extern void (__clearerr_796) (__FILE_59 * (____stream_794));// L826 +extern int (__feof_800) (__FILE_59 * (____stream_798));// L828 +extern int (__feof_802) (__FILE_59 * (____stream_798));// L828 +extern int (__ferror_806) (__FILE_59 * (____stream_804));// L830 +extern int (__ferror_808) (__FILE_59 * (____stream_804));// L830 +extern void (__clearerr_unlocked_812) (__FILE_59 * (____stream_810));// L835 +extern int (__feof_unlocked_816) (__FILE_59 * (____stream_814));// L836 +extern int (__feof_unlocked_818) (__FILE_59 * (____stream_814));// L836 +extern int (__ferror_unlocked_822) (__FILE_59 * (____stream_820));// L837 +extern int (__ferror_unlocked_824) (__FILE_59 * (____stream_820));// L837 +extern void (__perror_827) (const char * (____s_826));// L846 +extern void (__perror_828) (const char * (____s_826));// L846 +extern int __sys_nerr_829;// L26 + +extern int (__fileno_835) (__FILE_59 * (____stream_831));// L858 +extern int (__fileno_833) (__FILE_59 * (____stream_831));// L858 +extern int (__fileno_unlocked_841) (__FILE_59 * (____stream_837));// L863 +extern int (__fileno_unlocked_839) (__FILE_59 * (____stream_837));// L863 +extern __FILE_59 * ((__popen_845) (const char * (____command_843), const char * (____modes_844)));// L872 +extern __FILE_59 * ((__popen_847) (const char * (____command_843), const char * (____modes_844)));// L872 +extern int (__pclose_851) (__FILE_59 * (____stream_849));// L878 +extern char * ((__ctermid_854) (char * (____s_853)));// L884 +extern void (__flockfile_857) (__FILE_59 * (____stream_855));// L912 +extern int (__ftrylockfile_861) (__FILE_59 * (____stream_859));// L916 +extern int (__ftrylockfile_863) (__FILE_59 * (____stream_859));// L916 +extern void (__funlockfile_867) (__FILE_59 * (____stream_865));// L919 +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +extern int (____sprintf_chk_899) (char * __restrict ____s_895, int ____flag_896, __size_t_1 ____slen_897, const char * __restrict ____format_898, ... );// L23:L24 +extern int (____vsprintf_chk_906) (char * __restrict ____s_900, int ____flag_901, __size_t_1 ____slen_902, const char * __restrict ____format_903, ____gnuc_va_list_86 ____ap_904);// L25:L27 +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +extern int (____snprintf_chk_920) (char * __restrict ____s_915, __size_t_1 ____n_916, int ____flag_917, __size_t_1 ____slen_918, const char * __restrict ____format_919, ... );// L52:L54 +extern int (____vsnprintf_chk_928) (char * __restrict ____s_921, __size_t_1 ____n_922, int ____flag_923, __size_t_1 ____slen_924, const char * __restrict ____format_925, ____gnuc_va_list_86 ____ap_926);// L55:L57 +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +extern int (____fprintf_chk_943) (__FILE_59 * __restrict ____stream_939, int ____flag_941, const char * __restrict ____format_942, ... );// L85:L86 +extern int (____printf_chk_947) (int ____flag_945, const char * __restrict ____format_946, ... );// L87 +extern int (____vfprintf_chk_954) (__FILE_59 * __restrict ____stream_948, int ____flag_950, const char * __restrict ____format_951, ____gnuc_va_list_86 ____ap_952);// L88:L89 +extern int (____vprintf_chk_962) (int ____flag_958, const char * __restrict ____format_959, ____gnuc_va_list_86 ____ap_960);// L90:L91 +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +extern int (____dprintf_chk_984) (int ____fd_981, int ____flag_982, const char * __restrict ____fmt_983, ... );// L131:L132 +extern int (____vdprintf_chk_990) (int ____fd_985, int ____flag_986, const char * __restrict ____fmt_987, ____gnuc_va_list_86 ____arg_988);// L133:L135 +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +extern char * ((____fgets_chk_1004) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_chk_1006) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_chk_1008) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_alias_1014) (char * __restrict ____s_1010, int ____n_1011, __FILE_59 * __restrict ____stream_1012));// L243:L245 +extern char * ((____fgets_chk_warn_1021) (char * __restrict ____s_1016, __size_t_1 ____size_1017, int ____n_1018, __FILE_59 * __restrict ____stream_1019));// L246:L250 +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +void (__apr_rmm_init_1093) (char * (__rmm_lock_1092)) { + +if (__static_condition_default_1096) { + +{ +{ + + + + __printf_421 ("%s\n", __rmm_lock_1092 ) ; // L5 +} +} + + +} +} +void (__apr_rmm_init_1094) (char * (__rmm_lock_1092)) { + +if (__static_condition_default_1097) { + +{ +{ + + + + __printf_421 ("%s\n", __rmm_lock_1092 ) ; // L5 +} +} + + +} +} +void (__apr_rmm_init_1095) (char * (__rmm_lock_1092)) { + +if (__static_condition_default_1098) { + +{ +{ + + + +__static_type_error("type error") ; // L5 +} +} + + +} +} +void (__util_ldap_cache_init_1100) () { + +{ +if (__static_condition_default_1101) { + +{ +{ + + + +char * (__rmm_lock_1099);// L11 + +} +} + + +} + +if (__static_condition_default_1102) { + +{ +{ + + + +char * (__rmm_lock_1099);// L11 + +if (__static_condition_default_1103) { + __apr_rmm_init_1093 ( __rmm_lock_1099 ) ; // L14 +} +if (__static_condition_default_1104) { + __apr_rmm_init_1094 ( __rmm_lock_1099 ) ; // L14 +} +if (__static_condition_default_1105) { + __apr_rmm_init_1095 ( __rmm_lock_1099 ) ; // L14 +} +} +} + + +} + +}} +int (__main_1106) (void ) { + +if (__static_condition_default_1108) { + +{ +{ + + + +return 0 ;// L24 +} +} + + +} +} +int (__main_1107) (void ) { + +if (__static_condition_default_1109) { + +{ +{ + + + + __util_ldap_cache_init_1100 ( ) ; // L22 +return 0 ;// L24 +} +} + + +} +} + diff --git a/fonda/cpp_testsuite/varBugs/APACHE/1f46088b38d.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/1f46088b38d.desugared.c index 817e993d..cf671e20 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/1f46088b38d.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/1f46088b38d.desugared.c @@ -7,281 +7,211 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); +extern const bool __static_condition_default_394; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_501; +extern const bool __static_condition_default_586; +extern const bool __static_condition_default_906; +extern const bool __static_condition_default_680; +extern const bool __static_condition_default_772; +extern const bool __static_condition_default_400; +extern const bool __static_condition_default_655; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_833; +extern const bool __static_condition_default_696; +extern const bool __static_condition_default_641; +extern const bool __static_condition_default_603; +extern const bool __static_condition_default_435; +extern const bool __static_condition_default_161; +extern const bool __static_condition_default_577; +extern const bool __static_condition_default_820; extern const bool __static_condition_default_473; -extern const bool __static_condition_default_367; -extern const bool __static_condition_default_846; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_929; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_564; -extern const bool __static_condition_default_543; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_333; -extern const bool __static_condition_default_590; -extern const bool __static_condition_default_613; -extern const bool __static_condition_default_848; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_872; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_536; -extern const bool __static_condition_default_793; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_685; -extern const bool __static_condition_default_568; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_747; -extern const bool __static_condition_default_402; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_701; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_388; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_632; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_412; -extern const bool __static_condition_default_955; -extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_438; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_488; -extern const bool __static_condition_default_382; -extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_248; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_393; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_1097; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_907; -extern const bool __static_condition_default_761; -extern const bool __static_condition_default_780; -extern const bool __static_condition_default_753; -extern const bool __static_condition_default_702; -extern const bool __static_condition_default_1100; +extern const bool __static_condition_default_1006; +extern const bool __static_condition_default_556; +extern const bool __static_condition_default_778; +extern const bool __static_condition_default_310; +extern const bool __static_condition_default_718; +extern const bool __static_condition_default_330; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_429; +extern const bool __static_condition_default_695; +extern const bool __static_condition_default_162; +extern const bool __static_condition_default_421; +extern const bool __static_condition_default_474; +extern const bool __static_condition_default_508; +extern const bool __static_condition_default_480; +extern const bool __static_condition_default_672; +extern const bool __static_condition_default_739; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_727; extern const bool __static_condition_default_760; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_559; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_709; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_198; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_963; +extern const bool __static_condition_default_533; +extern const bool __static_condition_default_790; +extern const bool __static_condition_default_118; +extern const bool __static_condition_default_308; extern const bool __static_condition_default_469; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_1101; -extern const bool __static_condition_default_217; -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_803; -extern const bool __static_condition_default_408; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_512; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_858; -extern const bool __static_condition_default_313; -extern const bool __static_condition_default_779; -extern const bool __static_condition_default_891; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_431; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_53; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_1096; -extern const bool __static_condition_default_1104; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_521; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_357; -extern const bool __static_condition_default_693; -extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_347; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_375; +extern const bool __static_condition_default_905; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_254; +extern const bool __static_condition_default_716; +extern const bool __static_condition_default_296; extern const bool __static_condition_default_345; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_638; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_187; -extern const bool __static_condition_default_549; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_583; -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_315; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_612; +extern const bool __static_condition_default_794; +extern const bool __static_condition_default_482; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_381; +extern const bool __static_condition_default_517; extern const bool __static_condition_default_991; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_290; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_875; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_894; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_646; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_264; +extern const bool __static_condition_default_225; +extern const bool __static_condition_default_318; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_904; extern const bool __static_condition_default_768; -extern const bool __static_condition_default_789; -extern const bool __static_condition_default_317; -extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_1091; extern const bool __static_condition_default_813; -extern const bool __static_condition_default_1098; -extern const bool __static_condition_default_956; -extern const bool __static_condition_default_386; -extern const bool __static_condition_default_887; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_419; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_461; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_842; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_1102; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_957; -extern const bool __static_condition_default_311; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_76; -extern const bool __static_condition_default_787; -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_677; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_670; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_337; +extern const bool __static_condition_default_351; +extern const bool __static_condition_default_567; +extern const bool __static_condition_default_528; +extern const bool __static_condition_default_889; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_234; extern const bool __static_condition_default_809; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_645; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_515; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_749; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_893; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_328; extern const bool __static_condition_default_649; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_836; +extern const bool __static_condition_default_326; +extern const bool __static_condition_default_451; +extern const bool __static_condition_default_500; +extern const bool __static_condition_default_976; +extern const bool __static_condition_default_459; +extern const bool __static_condition_default_935; +extern const bool __static_condition_default_962; +extern const bool __static_condition_default_358; +extern const bool __static_condition_default_230; +extern const bool __static_condition_default_733; +extern const bool __static_condition_default_784; +extern const bool __static_condition_default_694; +extern const bool __static_condition_default_236; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_446; +extern const bool __static_condition_default_502; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_720; +extern const bool __static_condition_default_343; +extern const bool __static_condition_default_610; +extern const bool __static_condition_default_374; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_640; +extern const bool __static_condition_default_648; +extern const bool __static_condition_default_507; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_304; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_551; +extern const bool __static_condition_default_954; +extern const bool __static_condition_default_968; +extern const bool __static_condition_default_931; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_540; +extern const bool __static_condition_default_232; +extern const bool __static_condition_default_562; +extern const bool __static_condition_default_729; +extern const bool __static_condition_default_762; +extern const bool __static_condition_default_448; +extern const bool __static_condition_default_626; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_1021; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_294; +extern const bool __static_condition_default_595; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_457; +extern const bool __static_condition_default_227; +extern const bool __static_condition_default_449; +extern const bool __static_condition_default_332; +extern const bool __static_condition_default_870; +extern const bool __static_condition_default_349; +extern const bool __static_condition_default_605; +extern const bool __static_condition_default_855; +extern const bool __static_condition_default_336; +extern const bool __static_condition_default_276; +extern const bool __static_condition_default_470; +extern const bool __static_condition_default_1016; +extern const bool __static_condition_default_917; +extern const bool __static_condition_default_941; +extern const bool __static_condition_default_495; +extern const bool __static_condition_default_627; +extern const bool __static_condition_default_961; +extern const bool __static_condition_default_454; +extern const bool __static_condition_default_983; +extern const bool __static_condition_default_624; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_706; +extern const bool __static_condition_default_924; +extern const bool __static_condition_default_881; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_320; +extern const bool __static_condition_default_453; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_999; extern const bool __static_condition_default_433; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_1103; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_992; +extern const bool __static_condition_default_338; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_984; +extern const bool __static_condition_default_804; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_743; +extern const bool __static_condition_default_1017; +extern const bool __static_condition_default_639; +extern const bool __static_condition_default_300; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_575; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_953; +extern const bool __static_condition_default_977; +extern const bool __static_condition_default_165; +extern const bool __static_condition_default_74; +extern const bool __static_condition_default_579; extern const bool __static_condition_default_573; -extern const bool __static_condition_default_914; -extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_204; -extern const bool __static_condition_default_769; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_223; +extern const bool __static_condition_default_714; +extern const bool __static_condition_default_642; +extern const bool __static_condition_default_933; +extern const bool __static_condition_default_1024; +extern const bool __static_condition_default_370; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_688; +extern const bool __static_condition_default_969; +extern const bool __static_condition_default_379; +extern const bool __static_condition_default_948; +extern const bool __static_condition_default_393; extern const bool __static_condition_default_735; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_755; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_380; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_882; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_719; +extern const bool __static_condition_default_766; +extern const bool __static_condition_default_898; +extern const bool __static_condition_default_356; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_496; +extern const bool __static_condition_default_256; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_774; +extern const bool __static_condition_default_226; +extern const bool __static_condition_default_588; +extern const bool __static_condition_default_707; +extern const bool __static_condition_default_798; +extern const bool __static_condition_default_538; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -333,505 +263,430 @@ __static_renaming("____ssize_t_49", "__ssize_t"); __static_renaming("____syscall_slong_t_50", "__syscall_slong_t"); __static_renaming("____syscall_ulong_t_51", "__syscall_ulong_t"); __static_renaming("____loff_t_52", "__loff_t"); -__static_renaming("____qaddr_t_54", "__qaddr_t"); -__static_renaming("____caddr_t_55", "__caddr_t"); -__static_renaming("____intptr_t_56", "__intptr_t"); -__static_renaming("____socklen_t_57", "__socklen_t"); -__static_renaming("__FILE_59", "FILE"); -__static_renaming("____FILE_60", "__FILE"); -__static_renaming("____mbstate_t_69", "__mbstate_t"); -__static_renaming("___G_fpos_t_77", "_G_fpos_t"); -__static_renaming("___G_fpos64_t_85", "_G_fpos64_t"); -__static_renaming("____gnuc_va_list_86", "__gnuc_va_list"); -__static_renaming("___IO_lock_t_88", "_IO_lock_t"); -__static_renaming("___IO_FILE_171", "_IO_FILE"); -__static_renaming("___IO_FILE_172", "_IO_FILE"); -__static_renaming("___IO_2_1_stdin__175", "_IO_2_1_stdin_"); -__static_renaming("___IO_2_1_stdout__176", "_IO_2_1_stdout_"); -__static_renaming("___IO_2_1_stderr__177", "_IO_2_1_stderr_"); -__static_renaming("____io_read_fn_181", "__io_read_fn"); -__static_renaming("____io_write_fn_186", "__io_write_fn"); -__static_renaming("____io_seek_fn_192", "__io_seek_fn"); -__static_renaming("____io_close_fn_195", "__io_close_fn"); -__static_renaming("____underflow_196", "__underflow"); -__static_renaming("____underflow_197", "__underflow"); -__static_renaming("____uflow_199", "__uflow"); -__static_renaming("____uflow_200", "__uflow"); -__static_renaming("____overflow_202", "__overflow"); -__static_renaming("____overflow_203", "__overflow"); -__static_renaming("___IO_getc_208", "_IO_getc"); -__static_renaming("___IO_getc_209", "_IO_getc"); -__static_renaming("___IO_putc_215", "_IO_putc"); -__static_renaming("___IO_putc_216", "_IO_putc"); -__static_renaming("___IO_feof_221", "_IO_feof"); -__static_renaming("___IO_feof_222", "_IO_feof"); -__static_renaming("___IO_ferror_227", "_IO_ferror"); -__static_renaming("___IO_ferror_228", "_IO_ferror"); -__static_renaming("___IO_peekc_locked_233", "_IO_peekc_locked"); -__static_renaming("___IO_peekc_locked_234", "_IO_peekc_locked"); -__static_renaming("___IO_flockfile_236", "_IO_flockfile"); -__static_renaming("___IO_flockfile_237", "_IO_flockfile"); -__static_renaming("___IO_funlockfile_239", "_IO_funlockfile"); -__static_renaming("___IO_funlockfile_240", "_IO_funlockfile"); -__static_renaming("___IO_ftrylockfile_242", "_IO_ftrylockfile"); -__static_renaming("___IO_ftrylockfile_243", "_IO_ftrylockfile"); -__static_renaming("___IO_vfscanf_245", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_247", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_251", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_252", "_IO_vfscanf"); -__static_renaming("___IO_vfprintf_254", "_IO_vfprintf"); -__static_renaming("___IO_vfprintf_256", "_IO_vfprintf"); -__static_renaming("___IO_vfprintf_260", "_IO_vfprintf"); -__static_renaming("___IO_padn_261", "_IO_padn"); -__static_renaming("___IO_padn_262", "_IO_padn"); -__static_renaming("___IO_sgetn_265", "_IO_sgetn"); -__static_renaming("___IO_sgetn_266", "_IO_sgetn"); -__static_renaming("___IO_seekoff_268", "_IO_seekoff"); -__static_renaming("___IO_seekoff_269", "_IO_seekoff"); -__static_renaming("___IO_seekpos_272", "_IO_seekpos"); -__static_renaming("___IO_seekpos_273", "_IO_seekpos"); -__static_renaming("___IO_free_backup_area_276", "_IO_free_backup_area"); -__static_renaming("___IO_free_backup_area_277", "_IO_free_backup_area"); -__static_renaming("__va_list_279", "va_list"); -__static_renaming("__off_t_281", "off_t"); -__static_renaming("__off_t_283", "off_t"); -__static_renaming("__ssize_t_285", "ssize_t"); -__static_renaming("__fpos_t_287", "fpos_t"); -__static_renaming("__fpos_t_289", "fpos_t"); -__static_renaming("__stdin_291", "stdin"); -__static_renaming("__stdin_292", "stdin"); -__static_renaming("__stdout_294", "stdout"); -__static_renaming("__stdout_295", "stdout"); -__static_renaming("__stderr_297", "stderr"); -__static_renaming("__stderr_298", "stderr"); -__static_renaming("__remove_301", "remove"); -__static_renaming("__rename_304", "rename"); -__static_renaming("__renameat_309", "renameat"); -__static_renaming("__tmpfile_310", "tmpfile"); -__static_renaming("__tmpfile_312", "tmpfile"); -__static_renaming("__tmpfile_314", "tmpfile"); -__static_renaming("__tmpfile_316", "tmpfile"); -__static_renaming("__tmpnam_319", "tmpnam"); -__static_renaming("__tmpnam_320", "tmpnam"); -__static_renaming("__tmpnam_r_322", "tmpnam_r"); -__static_renaming("__tmpnam_r_323", "tmpnam_r"); -__static_renaming("__tempnam_326", "tempnam"); -__static_renaming("__tempnam_327", "tempnam"); -__static_renaming("__fclose_330", "fclose"); -__static_renaming("__fclose_332", "fclose"); -__static_renaming("__fflush_336", "fflush"); -__static_renaming("__fflush_unlocked_340", "fflush_unlocked"); -__static_renaming("__fopen_344", "fopen"); -__static_renaming("__fopen_346", "fopen"); -__static_renaming("__fopen_354", "fopen"); -__static_renaming("__fopen_356", "fopen"); -__static_renaming("__freopen_362", "freopen"); -__static_renaming("__freopen_364", "freopen"); -__static_renaming("__freopen_366", "freopen"); -__static_renaming("__freopen_368", "freopen"); -__static_renaming("__fdopen_372", "fdopen"); -__static_renaming("__fdopen_374", "fdopen"); -__static_renaming("__fmemopen_379", "fmemopen"); -__static_renaming("__fmemopen_381", "fmemopen"); -__static_renaming("__open_memstream_385", "open_memstream"); -__static_renaming("__open_memstream_387", "open_memstream"); -__static_renaming("__setbuf_392", "setbuf"); -__static_renaming("__setbuf_394", "setbuf"); -__static_renaming("__setvbuf_401", "setvbuf"); -__static_renaming("__setbuffer_407", "setbuffer"); -__static_renaming("__setlinebuf_411", "setlinebuf"); -__static_renaming("__fprintf_416", "fprintf"); -__static_renaming("__fprintf_418", "fprintf"); -__static_renaming("__printf_421", "printf"); -__static_renaming("__sprintf_424", "sprintf"); -__static_renaming("__vfprintf_430", "vfprintf"); -__static_renaming("__vprintf_437", "vprintf"); -__static_renaming("__vsprintf_443", "vsprintf"); -__static_renaming("__snprintf_448", "snprintf"); -__static_renaming("__vsnprintf_454", "vsnprintf"); -__static_renaming("__vdprintf_460", "vdprintf"); -__static_renaming("__dprintf_464", "dprintf"); -__static_renaming("__fscanf_468", "fscanf"); -__static_renaming("__fscanf_470", "fscanf"); -__static_renaming("__fscanf_472", "fscanf"); -__static_renaming("__fscanf_474", "fscanf"); -__static_renaming("__scanf_477", "scanf"); -__static_renaming("__scanf_478", "scanf"); -__static_renaming("__sscanf_481", "sscanf"); -__static_renaming("__vfscanf_509", "vfscanf"); -__static_renaming("__vfscanf_513", "vfscanf"); -__static_renaming("__vscanf_520", "vscanf"); -__static_renaming("__vscanf_522", "vscanf"); -__static_renaming("__vsscanf_528", "vsscanf"); -__static_renaming("__fgetc_563", "fgetc"); -__static_renaming("__getc_567", "getc"); -__static_renaming("__getchar_569", "getchar"); -__static_renaming("__getc_unlocked_572", "getc_unlocked"); -__static_renaming("__getchar_unlocked_574", "getchar_unlocked"); -__static_renaming("__fgetc_unlocked_577", "fgetc_unlocked"); -__static_renaming("__fputc_582", "fputc"); -__static_renaming("__fputc_584", "fputc"); -__static_renaming("__putc_589", "putc"); -__static_renaming("__putchar_592", "putchar"); -__static_renaming("__fputc_unlocked_596", "fputc_unlocked"); -__static_renaming("__putc_unlocked_601", "putc_unlocked"); -__static_renaming("__putchar_unlocked_604", "putchar_unlocked"); -__static_renaming("__getw_607", "getw"); -__static_renaming("__putw_612", "putw"); -__static_renaming("__fgets_618", "fgets"); -__static_renaming("__fgets_620", "fgets"); -__static_renaming("__fgets_622", "fgets"); -__static_renaming("__fgets_624", "fgets"); -__static_renaming("____getdelim_631", "__getdelim"); -__static_renaming("____getdelim_635", "__getdelim"); -__static_renaming("__getdelim_644", "getdelim"); -__static_renaming("__getdelim_648", "getdelim"); -__static_renaming("__getline_656", "getline"); -__static_renaming("__getline_660", "getline"); -__static_renaming("__fputs_667", "fputs"); -__static_renaming("__fputs_669", "fputs"); -__static_renaming("__puts_672", "puts"); -__static_renaming("__ungetc_676", "ungetc"); -__static_renaming("__fseek_714", "fseek"); -__static_renaming("__fseek_716", "fseek"); -__static_renaming("__ftell_720", "ftell"); -__static_renaming("__ftell_722", "ftell"); -__static_renaming("__rewind_726", "rewind"); -__static_renaming("__fseeko_733", "fseeko"); -__static_renaming("__fseeko_744", "fseeko"); -__static_renaming("__ftello_750", "ftello"); -__static_renaming("__ftello_754", "ftello"); -__static_renaming("__ftello_758", "ftello"); -__static_renaming("__fgetpos_766", "fgetpos"); -__static_renaming("__fgetpos_778", "fgetpos"); -__static_renaming("__fsetpos_786", "fsetpos"); -__static_renaming("__fsetpos_790", "fsetpos"); -__static_renaming("__clearerr_796", "clearerr"); -__static_renaming("__feof_800", "feof"); -__static_renaming("__feof_802", "feof"); -__static_renaming("__ferror_806", "ferror"); -__static_renaming("__ferror_808", "ferror"); -__static_renaming("__clearerr_unlocked_812", "clearerr_unlocked"); -__static_renaming("__feof_unlocked_816", "feof_unlocked"); -__static_renaming("__feof_unlocked_818", "feof_unlocked"); -__static_renaming("__ferror_unlocked_822", "ferror_unlocked"); -__static_renaming("__ferror_unlocked_824", "ferror_unlocked"); -__static_renaming("__perror_827", "perror"); -__static_renaming("__perror_828", "perror"); -__static_renaming("__sys_nerr_829", "sys_nerr"); -__static_renaming("__sys_errlist_830", "sys_errlist"); -__static_renaming("__fileno_833", "fileno"); -__static_renaming("__fileno_835", "fileno"); -__static_renaming("__fileno_unlocked_839", "fileno_unlocked"); -__static_renaming("__fileno_unlocked_841", "fileno_unlocked"); -__static_renaming("__popen_845", "popen"); -__static_renaming("__popen_847", "popen"); -__static_renaming("__pclose_851", "pclose"); -__static_renaming("__ctermid_854", "ctermid"); -__static_renaming("__flockfile_857", "flockfile"); -__static_renaming("__ftrylockfile_861", "ftrylockfile"); -__static_renaming("__ftrylockfile_863", "ftrylockfile"); -__static_renaming("__funlockfile_867", "funlockfile"); -__static_renaming("____sprintf_chk_899", "__sprintf_chk"); -__static_renaming("____vsprintf_chk_906", "__vsprintf_chk"); -__static_renaming("____snprintf_chk_920", "__snprintf_chk"); -__static_renaming("____vsnprintf_chk_928", "__vsnprintf_chk"); -__static_renaming("____fprintf_chk_943", "__fprintf_chk"); -__static_renaming("____printf_chk_947", "__printf_chk"); -__static_renaming("____vfprintf_chk_954", "__vfprintf_chk"); -__static_renaming("____vprintf_chk_962", "__vprintf_chk"); -__static_renaming("____dprintf_chk_984", "__dprintf_chk"); -__static_renaming("____vdprintf_chk_990", "__vdprintf_chk"); -__static_renaming("____fgets_chk_1004", "__fgets_chk"); -__static_renaming("____fgets_chk_1006", "__fgets_chk"); -__static_renaming("____fgets_chk_1008", "__fgets_chk"); -__static_renaming("____fgets_alias_1014", "__fgets_alias"); -__static_renaming("____fgets_chk_warn_1021", "__fgets_chk_warn"); -__static_renaming("____cnt_1087", "__cnt"); -__static_renaming("____cptr_1088", "__cptr"); -__static_renaming("__apr_signal_block_1093", "apr_signal_block"); -__static_renaming("__apr_signal_block_1094", "apr_signal_block"); -__static_renaming("__apr_signal_block_1095", "apr_signal_block"); -__static_renaming("__main_1099", "main"); +__static_renaming("____qaddr_t_53", "__qaddr_t"); +__static_renaming("____caddr_t_54", "__caddr_t"); +__static_renaming("____intptr_t_55", "__intptr_t"); +__static_renaming("____socklen_t_56", "__socklen_t"); +__static_renaming("__FILE_58", "FILE"); +__static_renaming("____FILE_59", "__FILE"); +__static_renaming("____mbstate_t_68", "__mbstate_t"); +__static_renaming("___G_fpos_t_75", "_G_fpos_t"); +__static_renaming("___G_fpos64_t_81", "_G_fpos64_t"); +__static_renaming("____gnuc_va_list_82", "__gnuc_va_list"); +__static_renaming("___IO_lock_t_84", "_IO_lock_t"); +__static_renaming("___IO_FILE_163", "_IO_FILE"); +__static_renaming("___IO_FILE_164", "_IO_FILE"); +__static_renaming("___IO_2_1_stdin__167", "_IO_2_1_stdin_"); +__static_renaming("___IO_2_1_stdout__168", "_IO_2_1_stdout_"); +__static_renaming("___IO_2_1_stderr__169", "_IO_2_1_stderr_"); +__static_renaming("____io_read_fn_173", "__io_read_fn"); +__static_renaming("____io_write_fn_177", "__io_write_fn"); +__static_renaming("____io_seek_fn_181", "__io_seek_fn"); +__static_renaming("____io_close_fn_183", "__io_close_fn"); +__static_renaming("____underflow_184", "__underflow"); +__static_renaming("____underflow_185", "__underflow"); +__static_renaming("____uflow_186", "__uflow"); +__static_renaming("____uflow_187", "__uflow"); +__static_renaming("____overflow_188", "__overflow"); +__static_renaming("____overflow_189", "__overflow"); +__static_renaming("___IO_getc_193", "_IO_getc"); +__static_renaming("___IO_getc_194", "_IO_getc"); +__static_renaming("___IO_putc_199", "_IO_putc"); +__static_renaming("___IO_putc_200", "_IO_putc"); +__static_renaming("___IO_feof_204", "_IO_feof"); +__static_renaming("___IO_feof_205", "_IO_feof"); +__static_renaming("___IO_ferror_209", "_IO_ferror"); +__static_renaming("___IO_ferror_210", "_IO_ferror"); +__static_renaming("___IO_peekc_locked_214", "_IO_peekc_locked"); +__static_renaming("___IO_peekc_locked_215", "_IO_peekc_locked"); +__static_renaming("___IO_flockfile_216", "_IO_flockfile"); +__static_renaming("___IO_flockfile_217", "_IO_flockfile"); +__static_renaming("___IO_funlockfile_218", "_IO_funlockfile"); +__static_renaming("___IO_funlockfile_219", "_IO_funlockfile"); +__static_renaming("___IO_ftrylockfile_220", "_IO_ftrylockfile"); +__static_renaming("___IO_ftrylockfile_221", "_IO_ftrylockfile"); +__static_renaming("___IO_vfscanf_222", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_224", "_IO_vfscanf"); +__static_renaming("___IO_vfprintf_231", "_IO_vfprintf"); +__static_renaming("___IO_vfprintf_233", "_IO_vfprintf"); +__static_renaming("___IO_padn_238", "_IO_padn"); +__static_renaming("___IO_padn_239", "_IO_padn"); +__static_renaming("___IO_sgetn_240", "_IO_sgetn"); +__static_renaming("___IO_sgetn_241", "_IO_sgetn"); +__static_renaming("___IO_seekoff_242", "_IO_seekoff"); +__static_renaming("___IO_seekoff_243", "_IO_seekoff"); +__static_renaming("___IO_seekpos_244", "_IO_seekpos"); +__static_renaming("___IO_seekpos_245", "_IO_seekpos"); +__static_renaming("___IO_free_backup_area_246", "_IO_free_backup_area"); +__static_renaming("___IO_free_backup_area_247", "_IO_free_backup_area"); +__static_renaming("__va_list_248", "va_list"); +__static_renaming("__off_t_250", "off_t"); +__static_renaming("__off_t_251", "off_t"); +__static_renaming("__ssize_t_252", "ssize_t"); +__static_renaming("__fpos_t_253", "fpos_t"); +__static_renaming("__fpos_t_255", "fpos_t"); +__static_renaming("__stdin_257", "stdin"); +__static_renaming("__stdin_258", "stdin"); +__static_renaming("__stdout_259", "stdout"); +__static_renaming("__stdout_260", "stdout"); +__static_renaming("__stderr_261", "stderr"); +__static_renaming("__stderr_262", "stderr"); +__static_renaming("__remove_264", "remove"); +__static_renaming("__rename_267", "rename"); +__static_renaming("__renameat_272", "renameat"); +__static_renaming("__tmpfile_273", "tmpfile"); +__static_renaming("__tmpfile_275", "tmpfile"); +__static_renaming("__tmpfile_277", "tmpfile"); +__static_renaming("__tmpfile_279", "tmpfile"); +__static_renaming("__tmpnam_282", "tmpnam"); +__static_renaming("__tmpnam_283", "tmpnam"); +__static_renaming("__tmpnam_r_285", "tmpnam_r"); +__static_renaming("__tmpnam_r_286", "tmpnam_r"); +__static_renaming("__tempnam_289", "tempnam"); +__static_renaming("__tempnam_290", "tempnam"); +__static_renaming("__fclose_293", "fclose"); +__static_renaming("__fclose_295", "fclose"); +__static_renaming("__fflush_299", "fflush"); +__static_renaming("__fflush_unlocked_303", "fflush_unlocked"); +__static_renaming("__fopen_307", "fopen"); +__static_renaming("__fopen_309", "fopen"); +__static_renaming("__fopen_317", "fopen"); +__static_renaming("__fopen_319", "fopen"); +__static_renaming("__freopen_325", "freopen"); +__static_renaming("__freopen_327", "freopen"); +__static_renaming("__freopen_329", "freopen"); +__static_renaming("__freopen_331", "freopen"); +__static_renaming("__fdopen_335", "fdopen"); +__static_renaming("__fdopen_337", "fdopen"); +__static_renaming("__fmemopen_342", "fmemopen"); +__static_renaming("__fmemopen_344", "fmemopen"); +__static_renaming("__open_memstream_348", "open_memstream"); +__static_renaming("__open_memstream_350", "open_memstream"); +__static_renaming("__setbuf_355", "setbuf"); +__static_renaming("__setbuf_357", "setbuf"); +__static_renaming("__setvbuf_364", "setvbuf"); +__static_renaming("__setbuffer_369", "setbuffer"); +__static_renaming("__setlinebuf_373", "setlinebuf"); +__static_renaming("__fprintf_378", "fprintf"); +__static_renaming("__fprintf_380", "fprintf"); +__static_renaming("__printf_383", "printf"); +__static_renaming("__sprintf_386", "sprintf"); +__static_renaming("__vfprintf_392", "vfprintf"); +__static_renaming("__vprintf_399", "vprintf"); +__static_renaming("__vsprintf_405", "vsprintf"); +__static_renaming("__snprintf_409", "snprintf"); +__static_renaming("__vsnprintf_415", "vsnprintf"); +__static_renaming("__vdprintf_420", "vdprintf"); +__static_renaming("__dprintf_424", "dprintf"); +__static_renaming("__fscanf_428", "fscanf"); +__static_renaming("__fscanf_430", "fscanf"); +__static_renaming("__fscanf_432", "fscanf"); +__static_renaming("__fscanf_434", "fscanf"); +__static_renaming("__scanf_437", "scanf"); +__static_renaming("__scanf_438", "scanf"); +__static_renaming("__sscanf_441", "sscanf"); +__static_renaming("__vfscanf_468", "vfscanf"); +__static_renaming("__vfscanf_472", "vfscanf"); +__static_renaming("__vscanf_479", "vscanf"); +__static_renaming("__vscanf_481", "vscanf"); +__static_renaming("__vsscanf_487", "vsscanf"); +__static_renaming("__fgetc_520", "fgetc"); +__static_renaming("__getc_523", "getc"); +__static_renaming("__getchar_524", "getchar"); +__static_renaming("__getc_unlocked_527", "getc_unlocked"); +__static_renaming("__getchar_unlocked_529", "getchar_unlocked"); +__static_renaming("__fgetc_unlocked_532", "fgetc_unlocked"); +__static_renaming("__fputc_537", "fputc"); +__static_renaming("__fputc_539", "fputc"); +__static_renaming("__putc_544", "putc"); +__static_renaming("__putchar_546", "putchar"); +__static_renaming("__fputc_unlocked_550", "fputc_unlocked"); +__static_renaming("__putc_unlocked_555", "putc_unlocked"); +__static_renaming("__putchar_unlocked_558", "putchar_unlocked"); +__static_renaming("__getw_561", "getw"); +__static_renaming("__putw_566", "putw"); +__static_renaming("__fgets_572", "fgets"); +__static_renaming("__fgets_574", "fgets"); +__static_renaming("__fgets_576", "fgets"); +__static_renaming("__fgets_578", "fgets"); +__static_renaming("____getdelim_585", "__getdelim"); +__static_renaming("____getdelim_587", "__getdelim"); +__static_renaming("__getdelim_594", "getdelim"); +__static_renaming("__getdelim_596", "getdelim"); +__static_renaming("__getline_602", "getline"); +__static_renaming("__getline_604", "getline"); +__static_renaming("__fputs_609", "fputs"); +__static_renaming("__fputs_611", "fputs"); +__static_renaming("__puts_614", "puts"); +__static_renaming("__ungetc_618", "ungetc"); +__static_renaming("__fseek_654", "fseek"); +__static_renaming("__fseek_656", "fseek"); +__static_renaming("__ftell_660", "ftell"); +__static_renaming("__ftell_662", "ftell"); +__static_renaming("__rewind_666", "rewind"); +__static_renaming("__fseeko_671", "fseeko"); +__static_renaming("__fseeko_679", "fseeko"); +__static_renaming("__ftello_683", "ftello"); +__static_renaming("__ftello_685", "ftello"); +__static_renaming("__ftello_687", "ftello"); +__static_renaming("__fgetpos_693", "fgetpos"); +__static_renaming("__fgetpos_705", "fgetpos"); +__static_renaming("__fsetpos_713", "fsetpos"); +__static_renaming("__fsetpos_717", "fsetpos"); +__static_renaming("__clearerr_723", "clearerr"); +__static_renaming("__feof_726", "feof"); +__static_renaming("__feof_728", "feof"); +__static_renaming("__ferror_732", "ferror"); +__static_renaming("__ferror_734", "ferror"); +__static_renaming("__clearerr_unlocked_738", "clearerr_unlocked"); +__static_renaming("__feof_unlocked_742", "feof_unlocked"); +__static_renaming("__feof_unlocked_744", "feof_unlocked"); +__static_renaming("__ferror_unlocked_748", "ferror_unlocked"); +__static_renaming("__ferror_unlocked_750", "ferror_unlocked"); +__static_renaming("__perror_753", "perror"); +__static_renaming("__perror_754", "perror"); +__static_renaming("__sys_nerr_755", "sys_nerr"); +__static_renaming("__sys_errlist_756", "sys_errlist"); +__static_renaming("__fileno_759", "fileno"); +__static_renaming("__fileno_761", "fileno"); +__static_renaming("__fileno_unlocked_765", "fileno_unlocked"); +__static_renaming("__fileno_unlocked_767", "fileno_unlocked"); +__static_renaming("__popen_771", "popen"); +__static_renaming("__popen_773", "popen"); +__static_renaming("__pclose_777", "pclose"); +__static_renaming("__ctermid_780", "ctermid"); +__static_renaming("__flockfile_783", "flockfile"); +__static_renaming("__ftrylockfile_787", "ftrylockfile"); +__static_renaming("__ftrylockfile_789", "ftrylockfile"); +__static_renaming("__funlockfile_793", "funlockfile"); +__static_renaming("____sprintf_chk_825", "__sprintf_chk"); +__static_renaming("____vsprintf_chk_832", "__vsprintf_chk"); +__static_renaming("____snprintf_chk_846", "__snprintf_chk"); +__static_renaming("____vsnprintf_chk_854", "__vsnprintf_chk"); +__static_renaming("____fprintf_chk_869", "__fprintf_chk"); +__static_renaming("____printf_chk_873", "__printf_chk"); +__static_renaming("____vfprintf_chk_880", "__vfprintf_chk"); +__static_renaming("____vprintf_chk_888", "__vprintf_chk"); +__static_renaming("____dprintf_chk_910", "__dprintf_chk"); +__static_renaming("____vdprintf_chk_916", "__vdprintf_chk"); +__static_renaming("____fgets_chk_930", "__fgets_chk"); +__static_renaming("____fgets_chk_932", "__fgets_chk"); +__static_renaming("____fgets_chk_934", "__fgets_chk"); +__static_renaming("____fgets_alias_940", "__fgets_alias"); +__static_renaming("____fgets_chk_warn_947", "__fgets_chk_warn"); +__static_renaming("____cnt_1013", "__cnt"); +__static_renaming("____cptr_1014", "__cptr"); +__static_renaming("__apr_signal_block_1019", "apr_signal_block"); +__static_renaming("__apr_signal_block_1020", "apr_signal_block"); +__static_renaming("__main_1023", "main"); -__static_condition_renaming("__static_condition_default_53", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_76", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_84", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_123", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_169", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_170", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_173", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_182", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_187", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_193", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_198", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_201", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_204", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_210", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_217", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_223", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_229", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_235", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_238", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_241", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_244", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_246", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_248", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_249", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_250", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_253", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_255", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_257", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_258", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_259", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_263", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_264", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_267", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_270", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_271", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_274", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_275", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_278", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_280", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); -__static_condition_renaming("__static_condition_default_282", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_284", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_286", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_288", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_290", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_293", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_296", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_299", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_311", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_313", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_315", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_317", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_331", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_333", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_337", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_341", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_345", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_347", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_355", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_357", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_363", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_365", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_367", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_369", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_373", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_375", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_380", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_382", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_386", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_388", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_393", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_395", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_402", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_408", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_412", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_417", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_419", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_431", "!(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_432", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_433", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_438", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_444", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_455", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_461", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_469", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_471", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_473", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_475", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_486", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_488", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_489", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_491", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_493", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_494", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_497", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_499", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_503", "!(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_510", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_511", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_512", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_514", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_515", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_516", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_521", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_523", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_529", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_536", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_537", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_538", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_539", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_541", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_542", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_543", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_544", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_549", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_550", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_552", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_553", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_559", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_560", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_564", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_568", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_573", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_578", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_583", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_585", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_590", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_597", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_602", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_608", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_613", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_619", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_621", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_623", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_625", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_632", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_633", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_634", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_636", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_637", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_638", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_645", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_646", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_647", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_649", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_650", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_651", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_657", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_658", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_659", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_661", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_662", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_663", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_668", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_670", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_677", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_683", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_684", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_685", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_686", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_692", "!(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_693", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_699", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_700", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_701", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_702", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_708", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_709", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_715", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_717", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_721", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_723", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_727", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_734", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_735", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_736", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_745", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_746", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_747", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_751", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_752", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_753", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_755", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_756", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_757", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_759", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_760", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_761", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_767", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_768", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_769", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_779", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_780", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_781", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_787", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_788", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_789", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_791", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_792", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_793", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_797", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_801", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_803", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_807", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_809", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_813", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_817", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_819", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_823", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_825", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_834", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_836", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_840", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_842", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_846", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_848", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_852", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_858", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_862", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_864", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_868", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_872", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_875", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_878", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_883", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_887", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_891", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_894", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_907", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_914", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_929", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_938", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_944", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_955", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_956", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_957", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_963", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_967", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_972", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_978", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_979", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_980", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_991", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_998", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1005", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1007", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1009", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1015", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1022", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1027", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1028", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1035", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1036", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1042", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1043", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1050", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1051", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1057", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1058", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1065", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1066", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1072", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1073", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1080", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1081", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1089", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_1090", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1091", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1096", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) || !(defined __need___FILE) && (defined __STRICT_ANSI__)"); -__static_condition_renaming("__static_condition_default_1097", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1098", "(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_1100", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined SIGPIPE) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined SIGPIPE) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined SIGPIPE) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined SIGPIPE) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined SIGPIPE)"); -__static_condition_renaming("__static_condition_default_1101", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined SIGPIPE)"); -__static_condition_renaming("__static_condition_default_1102", "(defined __need___FILE) && (defined SIGPIPE)"); -__static_condition_renaming("__static_condition_default_1103", "!(defined SIGPIPE)"); -__static_condition_renaming("__static_condition_default_1104", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_74", "(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_118", "(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_161", "(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_162", "(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_165", "(defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_223", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_225", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_226", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_227", "(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_230", "(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_232", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_234", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_235", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_236", "(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_249", "!(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); +__static_condition_renaming("__static_condition_default_254", "!(defined _FILE_OFFSET_BITS) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_256", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_274", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_276", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_278", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_280", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_294", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_296", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_300", "(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_304", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_308", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_310", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_318", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_320", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_326", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_328", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_330", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_332", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_336", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_338", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_343", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_345", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_349", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_351", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_356", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_358", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_370", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_374", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_379", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_381", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_393", "!(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_394", "(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_395", "(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_400", "!(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_421", "!(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_429", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_431", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_433", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_435", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_446", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_448", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_449", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_451", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_453", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_454", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_457", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_459", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_469", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_470", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_471", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_473", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_474", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_475", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_480", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_482", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_494", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_495", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_496", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_497", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_499", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_500", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_501", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_502", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_507", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_508", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_510", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_511", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_517", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_528", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_533", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_538", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_540", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_551", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_556", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_562", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_567", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_573", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_575", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_577", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_579", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_586", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_588", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_595", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_597", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_603", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_605", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_610", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_612", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_624", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_625", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_626", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_627", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_633", "!(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_639", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_640", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_641", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_642", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_648", "!(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_649", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_655", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_657", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_661", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_663", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_672", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_680", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_684", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_686", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_688", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_694", "!(defined _FILE_OFFSET_BITS) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_695", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_696", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_706", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_707", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_708", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_714", "!(defined _FILE_OFFSET_BITS) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_715", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_716", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_718", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_719", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_720", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_727", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_729", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_733", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_735", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_739", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_743", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_745", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_749", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_751", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_760", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_762", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_766", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_768", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_772", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_774", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_778", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_784", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_788", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_790", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_794", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_798", "!(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_801", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_804", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_809", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_813", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_817", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_820", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_833", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_840", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_855", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_864", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_870", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_881", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_882", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_883", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_889", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_893", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_898", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_904", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_905", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_906", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_917", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_924", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_931", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_933", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_935", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_941", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_948", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_953", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_954", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_961", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_962", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_968", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_969", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_976", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_977", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_983", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_984", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_991", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_992", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_998", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_999", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1006", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1007", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1015", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_1016", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1017", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1021", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) || (defined __STRICT_ANSI__)"); +__static_condition_renaming("__static_condition_default_1022", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1024", "(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -if (__static_condition_default_1104) -{ +if (__static_condition_default_1024) { __static_parse_error("Unable to parse"); } }; @@ -888,142 +743,142 @@ typedef long int ____ssize_t_49;// L110:L172 typedef long int ____syscall_slong_t_50;// L93:L175 typedef unsigned long int ____syscall_ulong_t_51;// L94:L177 typedef ____off64_t_24 ____loff_t_52;// L181 -typedef ____quad_t_14 * (____qaddr_t_54);// L182 -typedef char * (____caddr_t_55);// L183 -typedef long int ____intptr_t_56;// L110:L186 -typedef unsigned int ____socklen_t_57;// L92:L189 -typedef struct __forward_tag_reference_58 __FILE_59;// L48 -typedef struct __forward_tag_reference_58 ____FILE_60;// L64 -union ____anonymous_tag_61_62 { -unsigned int ____wch_63;// L265 -char ____wchb_64[4];// L92 +typedef ____quad_t_14 * (____qaddr_t_53);// L182 +typedef char * (____caddr_t_54);// L183 +typedef long int ____intptr_t_55;// L110:L186 +typedef unsigned int ____socklen_t_56;// L92:L189 +typedef struct __forward_tag_reference_57 __FILE_58;// L48 +typedef struct __forward_tag_reference_57 ____FILE_59;// L64 +union ____anonymous_tag_60_61 { +unsigned int ____wch_62;// L265 +char ____wchb_63[4];// L92 }; -struct ____anonymous_tag_65_66 { -int ____count_67;// L84 -union ____anonymous_tag_61_62 ____value_68;// L85 +struct ____anonymous_tag_64_65 { +int ____count_66;// L84 +union ____anonymous_tag_60_61 ____value_67;// L85 }; -typedef struct ____anonymous_tag_65_66 ____mbstate_t_69;// L82:L94 -struct ____anonymous_tag_70_71 { -____off_t_23 ____pos_72;// L0 -____mbstate_t_69 ____state_74;// L0 +typedef struct ____anonymous_tag_64_65 ____mbstate_t_68;// L82:L94 +struct ____anonymous_tag_69_70 { +____off_t_23 ____pos_71;// L0 +____mbstate_t_68 ____state_72;// L0 }; -typedef struct ____anonymous_tag_70_71 ___G_fpos_t_77;// L21:L25 -struct ____anonymous_tag_78_79 { -____off64_t_24 ____pos_80;// L0 -____mbstate_t_69 ____state_82;// L0 +typedef struct ____anonymous_tag_69_70 ___G_fpos_t_75;// L21:L25 +struct ____anonymous_tag_76_77 { +____off64_t_24 ____pos_78;// L0 +____mbstate_t_68 ____state_79;// L0 }; -typedef struct ____anonymous_tag_78_79 ___G_fpos64_t_85;// L26:L30 -typedef __builtin_va_list ____gnuc_va_list_86;// L40 -typedef void ___IO_lock_t_88;// L150 -struct ___IO_marker_90 { -struct __forward_tag_reference_89 * (___next_91);// L0 -struct __forward_tag_reference_58 * (___sbuf_92);// L0 -int ___pos_93;// L162 +typedef struct ____anonymous_tag_76_77 ___G_fpos64_t_81;// L26:L30 +typedef __builtin_va_list ____gnuc_va_list_82;// L40 +typedef void ___IO_lock_t_84;// L150 +struct ___IO_marker_86 { +struct __forward_tag_reference_85 * (___next_87);// L0 +struct __forward_tag_reference_57 * (___sbuf_88);// L0 +int ___pos_89;// L162 }; -enum ____codecvt_result_98 { -____codecvt_ok_94, -____codecvt_partial_95, -____codecvt_error_96, -____codecvt_noconv_97, +enum ____codecvt_result_94 { +____codecvt_ok_90, +____codecvt_partial_91, +____codecvt_error_92, +____codecvt_noconv_93, }; -struct ___IO_FILE_99 { -int ___flags_100;// L242 -char * (___IO_read_ptr_101);// L247 -char * (___IO_read_end_102);// L248 -char * (___IO_read_base_103);// L249 -char * (___IO_write_base_104);// L250 -char * (___IO_write_ptr_105);// L251 -char * (___IO_write_end_106);// L252 -char * (___IO_buf_base_107);// L253 -char * (___IO_buf_end_108);// L254 -char * (___IO_save_base_109);// L256 -char * (___IO_backup_base_110);// L257 -char * (___IO_save_end_111);// L258 -struct ___IO_marker_90 * (___markers_112);// L260 -struct __forward_tag_reference_58 * (___chain_113);// L0 -int ___fileno_114;// L264 -int ___flags2_115;// L268 -____off_t_23 ___old_offset_116;// L0 -unsigned short ___cur_column_118;// L274 -signed char ___vtable_offset_119;// L275 -char ___shortbuf_120[1];// L276 -___IO_lock_t_88 * (___lock_121);// L0 +struct ___IO_FILE_95 { +int ___flags_96;// L242 +char * (___IO_read_ptr_97);// L247 +char * (___IO_read_end_98);// L248 +char * (___IO_read_base_99);// L249 +char * (___IO_write_base_100);// L250 +char * (___IO_write_ptr_101);// L251 +char * (___IO_write_end_102);// L252 +char * (___IO_buf_base_103);// L253 +char * (___IO_buf_end_104);// L254 +char * (___IO_save_base_105);// L256 +char * (___IO_backup_base_106);// L257 +char * (___IO_save_end_107);// L258 +struct ___IO_marker_86 * (___markers_108);// L260 +struct __forward_tag_reference_57 * (___chain_109);// L0 +int ___fileno_110;// L264 +int ___flags2_111;// L268 +____off_t_23 ___old_offset_112;// L0 +unsigned short ___cur_column_113;// L274 +signed char ___vtable_offset_114;// L275 +char ___shortbuf_115[1];// L276 +___IO_lock_t_84 * (___lock_116);// L0 }; -struct ___IO_FILE_124 { -int ___flags_125;// L242 -char * (___IO_read_ptr_126);// L247 -char * (___IO_read_end_127);// L248 -char * (___IO_read_base_128);// L249 -char * (___IO_write_base_129);// L250 -char * (___IO_write_ptr_130);// L251 -char * (___IO_write_end_131);// L252 -char * (___IO_buf_base_132);// L253 -char * (___IO_buf_end_133);// L254 -char * (___IO_save_base_134);// L256 -char * (___IO_backup_base_135);// L257 -char * (___IO_save_end_136);// L258 -struct ___IO_marker_90 * (___markers_137);// L260 -struct __forward_tag_reference_58 * (___chain_138);// L0 -int ___fileno_139;// L264 -int ___flags2_140;// L268 -____off_t_23 ___old_offset_141;// L0 -unsigned short ___cur_column_143;// L274 -signed char ___vtable_offset_144;// L275 -char ___shortbuf_145[1];// L276 -___IO_lock_t_88 * (___lock_146);// L0 -____off64_t_24 ___offset_148;// L0 -void * (____pad1_150);// L297 -void * (____pad2_151);// L298 -void * (____pad3_152);// L299 -void * (____pad4_153);// L300 -__size_t_1 ____pad5_154;// L0 -int ___mode_155;// L303 -char ___unused2_156[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +struct ___IO_FILE_119 { +int ___flags_120;// L242 +char * (___IO_read_ptr_121);// L247 +char * (___IO_read_end_122);// L248 +char * (___IO_read_base_123);// L249 +char * (___IO_write_base_124);// L250 +char * (___IO_write_ptr_125);// L251 +char * (___IO_write_end_126);// L252 +char * (___IO_buf_base_127);// L253 +char * (___IO_buf_end_128);// L254 +char * (___IO_save_base_129);// L256 +char * (___IO_backup_base_130);// L257 +char * (___IO_save_end_131);// L258 +struct ___IO_marker_86 * (___markers_132);// L260 +struct __forward_tag_reference_57 * (___chain_133);// L0 +int ___fileno_134;// L264 +int ___flags2_135;// L268 +____off_t_23 ___old_offset_136;// L0 +unsigned short ___cur_column_137;// L274 +signed char ___vtable_offset_138;// L275 +char ___shortbuf_139[1];// L276 +___IO_lock_t_84 * (___lock_140);// L0 +____off64_t_24 ___offset_142;// L0 +void * (____pad1_143);// L297 +void * (____pad2_144);// L298 +void * (____pad3_145);// L299 +void * (____pad4_146);// L300 +__size_t_1 ____pad5_147;// L0 +int ___mode_148;// L303 +char ___unused2_149[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -struct ___IO_FILE_complete_157 { -struct ___IO_FILE_99 ___file_158;// L286 -____off64_t_24 ___offset_160;// L0 -void * (____pad1_162);// L297 -void * (____pad2_163);// L298 -void * (____pad3_164);// L299 -void * (____pad4_165);// L300 -__size_t_1 ____pad5_166;// L0 -int ___mode_167;// L303 -char ___unused2_168[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +struct ___IO_FILE_complete_150 { +struct ___IO_FILE_95 ___file_151;// L286 +____off64_t_24 ___offset_153;// L0 +void * (____pad1_154);// L297 +void * (____pad2_155);// L298 +void * (____pad3_156);// L299 +void * (____pad4_157);// L300 +__size_t_1 ____pad5_158;// L0 +int ___mode_159;// L303 +char ___unused2_160[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -typedef struct ___IO_FILE_99 ___IO_FILE_171;// L310 -typedef struct ___IO_FILE_124 ___IO_FILE_172;// L310 -typedef ____ssize_t_49 (____io_read_fn_181) (void * (____cookie_178), char * (____buf_179), __size_t_1 ____nbytes_180);// L333 -typedef ____ssize_t_49 (____io_write_fn_186) (void * (____cookie_183), const char * (____buf_184), __size_t_1 ____n_185);// L341:L342 -typedef int (____io_seek_fn_192) (void * (____cookie_188), ____off64_t_24 * (____pos_189), int ____w_191);// L350 -typedef int (____io_close_fn_195) (void * (____cookie_194));// L353 -typedef ____gnuc_va_list_86 __va_list_279;// L79 -typedef ____off_t_23 __off_t_281;// L90 -typedef ____off64_t_24 __off_t_283;// L92 -typedef ____ssize_t_49 __ssize_t_285;// L102 -typedef ___G_fpos_t_77 __fpos_t_287;// L110 -typedef ___G_fpos64_t_85 __fpos_t_289;// L112 -extern const char * const __sys_errlist_830[];// L27 +typedef struct ___IO_FILE_95 ___IO_FILE_163;// L310 +typedef struct ___IO_FILE_119 ___IO_FILE_164;// L310 +typedef ____ssize_t_49 (____io_read_fn_173) (void * (____cookie_170), char * (____buf_171), __size_t_1 ____nbytes_172);// L333 +typedef ____ssize_t_49 (____io_write_fn_177) (void * (____cookie_174), const char * (____buf_175), __size_t_1 ____n_176);// L341:L342 +typedef int (____io_seek_fn_181) (void * (____cookie_178), ____off64_t_24 * (____pos_179), int ____w_180);// L350 +typedef int (____io_close_fn_183) (void * (____cookie_182));// L353 +typedef ____gnuc_va_list_82 __va_list_248;// L79 +typedef ____off_t_23 __off_t_250;// L90 +typedef ____off64_t_24 __off_t_251;// L92 +typedef ____ssize_t_49 __ssize_t_252;// L102 +typedef ___G_fpos_t_75 __fpos_t_253;// L110 +typedef ___G_fpos64_t_81 __fpos_t_255;// L112 +extern const char * const __sys_errlist_756[];// L27 -struct __forward_tag_reference_89 { // generated union of struct variations +struct __forward_tag_reference_57 { // generated union of struct variations union { -struct ___IO_marker_90 ___IO_marker_90; +struct ___IO_FILE_95 ___IO_FILE_95; +struct ___IO_FILE_119 ___IO_FILE_119; }; }; -struct __forward_tag_reference_58 { // generated union of struct variations +struct __forward_tag_reference_85 { // generated union of struct variations union { -struct ___IO_FILE_99 ___IO_FILE_99; -struct ___IO_FILE_124 ___IO_FILE_124; +struct ___IO_marker_86 ___IO_marker_86; }; }; -struct __forward_tag_reference_87 { // generated union of struct variations +struct __forward_tag_reference_83 { // generated union of struct variations union { }; }; -struct __forward_tag_reference_174 { // generated union of struct variations +struct __forward_tag_reference_166 { // generated union of struct variations union { }; }; @@ -1082,225 +937,225 @@ union { // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_58 ;// L0 +struct __forward_tag_reference_57 ;// L0 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_87 ;// L0 -struct __forward_tag_reference_87 ;// L0 -struct __forward_tag_reference_58 ;// L0 +struct __forward_tag_reference_83 ;// L0 +struct __forward_tag_reference_83 ;// L0 +struct __forward_tag_reference_57 ;// L0 // typedef moved to top of scope -struct ___IO_marker_90 ;// L156 -enum ____codecvt_result_98 ;// L176 -struct ___IO_FILE_99 ;// L241 +struct ___IO_marker_86 ;// L156 +enum ____codecvt_result_94 ;// L176 +struct ___IO_FILE_95 ;// L241 -struct ___IO_FILE_124 ;// L241 -struct ___IO_FILE_complete_157 ;// L241 +struct ___IO_FILE_119 ;// L241 +struct ___IO_FILE_complete_150 ;// L241 // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_174 ;// L0 -extern struct __forward_tag_reference_174 ___IO_2_1_stdin__175;// L315 -extern struct __forward_tag_reference_174 ___IO_2_1_stdout__176;// L316 -extern struct __forward_tag_reference_174 ___IO_2_1_stderr__177;// L317 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern int (____underflow_196) (___IO_FILE_171 *);// L385 -extern int (____underflow_197) (___IO_FILE_172 *);// L385 -extern int (____uflow_199) (___IO_FILE_171 *);// L386 -extern int (____uflow_200) (___IO_FILE_172 *);// L386 -extern int (____overflow_202) (___IO_FILE_171 *, int );// L387 -extern int (____overflow_203) (___IO_FILE_172 *, int );// L387 -extern int (___IO_getc_208) (___IO_FILE_171 * (____fp_205));// L429 -extern int (___IO_getc_209) (___IO_FILE_172 * (____fp_206));// L429 -extern int (___IO_putc_215) (int ____c_211, ___IO_FILE_171 * (____fp_212));// L430 -extern int (___IO_putc_216) (int ____c_211, ___IO_FILE_172 * (____fp_213));// L430 -extern int (___IO_feof_221) (___IO_FILE_171 * (____fp_218));// L431 -extern int (___IO_feof_222) (___IO_FILE_172 * (____fp_219));// L431 -extern int (___IO_ferror_227) (___IO_FILE_171 * (____fp_224));// L432 -extern int (___IO_ferror_228) (___IO_FILE_172 * (____fp_225));// L432 -extern int (___IO_peekc_locked_233) (___IO_FILE_171 * (____fp_230));// L434 -extern int (___IO_peekc_locked_234) (___IO_FILE_172 * (____fp_231));// L434 -extern void (___IO_flockfile_236) (___IO_FILE_171 *);// L440 -extern void (___IO_flockfile_237) (___IO_FILE_172 *);// L440 -extern void (___IO_funlockfile_239) (___IO_FILE_171 *);// L441 -extern void (___IO_funlockfile_240) (___IO_FILE_172 *);// L441 -extern int (___IO_ftrylockfile_242) (___IO_FILE_171 *);// L442 -extern int (___IO_ftrylockfile_243) (___IO_FILE_172 *);// L442 -extern int (___IO_vfscanf_245) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_247) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_251) (___IO_FILE_171 * __restrict , const char * __restrict , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_252) (___IO_FILE_172 * __restrict , const char * __restrict , int * __restrict );// L459:L460 -extern int (___IO_vfprintf_254) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 -extern int (___IO_vfprintf_256) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 -extern int (___IO_vfprintf_260) ();// L461:L462 -extern ____ssize_t_49 (___IO_padn_261) (___IO_FILE_171 *, int , ____ssize_t_49 );// L463 -extern ____ssize_t_49 (___IO_padn_262) (___IO_FILE_172 *, int , ____ssize_t_49 );// L463 -extern __size_t_1 (___IO_sgetn_265) (___IO_FILE_171 *, void *, __size_t_1 );// L464 -extern __size_t_1 (___IO_sgetn_266) (___IO_FILE_172 *, void *, __size_t_1 );// L464 -extern ____off64_t_24 (___IO_seekoff_268) (___IO_FILE_171 *, ____off64_t_24 , int , int );// L466 -extern ____off64_t_24 (___IO_seekoff_269) (___IO_FILE_172 *, ____off64_t_24 , int , int );// L466 -extern ____off64_t_24 (___IO_seekpos_272) (___IO_FILE_171 *, ____off64_t_24 , int );// L467 -extern ____off64_t_24 (___IO_seekpos_273) (___IO_FILE_172 *, ____off64_t_24 , int );// L467 -extern void (___IO_free_backup_area_276) (___IO_FILE_171 *);// L469 -extern void (___IO_free_backup_area_277) (___IO_FILE_172 *);// L469 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern struct ___IO_FILE_99 * (__stdin_291);// L168 -extern struct ___IO_FILE_124 * (__stdin_292);// L168 -extern struct ___IO_FILE_99 * (__stdout_294);// L169 -extern struct ___IO_FILE_124 * (__stdout_295);// L169 -extern struct ___IO_FILE_99 * (__stderr_297);// L170 -extern struct ___IO_FILE_124 * (__stderr_298);// L170 -extern int (__remove_301) (const char * (____filename_300));// L178 -extern int (__rename_304) (const char * (____old_302), const char * (____new_303));// L180 -extern int (__renameat_309) (int ____oldfd_305, const char * (____old_306), int ____newfd_307, const char * (____new_308));// L185:L186 -extern __FILE_59 * ((__tmpfile_310) (void ));// L195 -extern __FILE_59 * ((__tmpfile_316) (void ));// L198 -extern __FILE_59 * ((__tmpfile_314) (void ));// L195 -extern __FILE_59 * ((__tmpfile_312) (void ));// L198 -extern char * ((__tmpnam_319) (char * (____s_318)));// L209 -extern char * ((__tmpnam_320) (char * (____s_318)));// L209 -extern char * ((__tmpnam_r_322) (char * (____s_321)));// L215 -extern char * ((__tmpnam_r_323) (char * (____s_321)));// L215 -extern char * ((__tempnam_326) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 -extern char * ((__tempnam_327) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 -extern int (__fclose_330) (__FILE_59 * (____stream_328));// L237 -extern int (__fclose_332) (__FILE_59 * (____stream_328));// L237 -extern int (__fflush_336) (__FILE_59 * (____stream_334));// L242 -extern int (__fflush_unlocked_340) (__FILE_59 * (____stream_338));// L252 -extern __FILE_59 * ((__fopen_344) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 -extern __FILE_59 * ((__fopen_346) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 -extern __FILE_59 * ((__fopen_354) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 -extern __FILE_59 * ((__fopen_356) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 -extern __FILE_59 * ((__freopen_362) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 -extern __FILE_59 * ((__freopen_368) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 -extern __FILE_59 * ((__freopen_366) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 -extern __FILE_59 * ((__freopen_364) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 -extern __FILE_59 * ((__fdopen_372) (int ____fd_370, const char * (____modes_371)));// L306 -extern __FILE_59 * ((__fdopen_374) (int ____fd_370, const char * (____modes_371)));// L306 -extern __FILE_59 * ((__fmemopen_379) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 -extern __FILE_59 * ((__fmemopen_381) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 -extern __FILE_59 * ((__open_memstream_385) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 -extern __FILE_59 * ((__open_memstream_387) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 -extern void (__setbuf_392) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 -extern void (__setbuf_394) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 -extern int (__setvbuf_401) (__FILE_59 * __restrict ____stream_396, char * __restrict ____buf_398, int ____modes_399, __size_t_1 ____n_400);// L336:L337 -extern void (__setbuffer_407) (__FILE_59 * __restrict ____stream_403, char * __restrict ____buf_405, __size_t_1 ____size_406);// L343:L344 -extern void (__setlinebuf_411) (__FILE_59 * (____stream_409));// L347 -extern int (__fprintf_416) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 -extern int (__fprintf_418) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 -extern int (__printf_421) (const char * __restrict ____format_420, ... );// L362 -extern int (__sprintf_424) (char * __restrict ____s_422, const char * __restrict ____format_423, ... );// L364:L365 -extern int (__vfprintf_430) (__FILE_59 * __restrict ____s_425, const char * __restrict ____format_427, ____gnuc_va_list_86 ____arg_428);// L371:L372 -extern int (__vprintf_437) (const char * __restrict ____format_434, ____gnuc_va_list_86 ____arg_435);// L377 -extern int (__vsprintf_443) (char * __restrict ____s_439, const char * __restrict ____format_440, ____gnuc_va_list_86 ____arg_441);// L379:L380 -extern int (__snprintf_448) (char * __restrict ____s_445, __size_t_1 ____maxlen_446, const char * __restrict ____format_447, ... );// L386:L388 -extern int (__vsnprintf_454) (char * __restrict ____s_449, __size_t_1 ____maxlen_450, const char * __restrict ____format_451, ____gnuc_va_list_86 ____arg_452);// L390:L392 -extern int (__vdprintf_460) (int ____fd_456, const char * __restrict ____fmt_457, ____gnuc_va_list_86 ____arg_458);// L412:L414 -extern int (__dprintf_464) (int ____fd_462, const char * __restrict ____fmt_463, ... );// L415:L416 -extern int (__fscanf_468) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__fscanf_470) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__fscanf_472) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__fscanf_474) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__scanf_477) (const char * __restrict ____format_476, ... );// L431 -extern int (__scanf_478) (const char * __restrict ____format_476, ... );// L431 -extern int (__sscanf_481) (const char * __restrict ____s_479, const char * __restrict ____format_480, ... );// L433:L434 +struct __forward_tag_reference_166 ;// L0 +extern struct __forward_tag_reference_166 ___IO_2_1_stdin__167;// L315 +extern struct __forward_tag_reference_166 ___IO_2_1_stdout__168;// L316 +extern struct __forward_tag_reference_166 ___IO_2_1_stderr__169;// L317 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern int (____underflow_184) (___IO_FILE_163 *);// L385 +extern int (____underflow_185) (___IO_FILE_164 *);// L385 +extern int (____uflow_186) (___IO_FILE_163 *);// L386 +extern int (____uflow_187) (___IO_FILE_164 *);// L386 +extern int (____overflow_188) (___IO_FILE_163 *, int );// L387 +extern int (____overflow_189) (___IO_FILE_164 *, int );// L387 +extern int (___IO_getc_193) (___IO_FILE_163 * (____fp_190));// L429 +extern int (___IO_getc_194) (___IO_FILE_164 * (____fp_191));// L429 +extern int (___IO_putc_199) (int ____c_195, ___IO_FILE_163 * (____fp_196));// L430 +extern int (___IO_putc_200) (int ____c_195, ___IO_FILE_164 * (____fp_197));// L430 +extern int (___IO_feof_204) (___IO_FILE_163 * (____fp_201));// L431 +extern int (___IO_feof_205) (___IO_FILE_164 * (____fp_202));// L431 +extern int (___IO_ferror_209) (___IO_FILE_163 * (____fp_206));// L432 +extern int (___IO_ferror_210) (___IO_FILE_164 * (____fp_207));// L432 +extern int (___IO_peekc_locked_214) (___IO_FILE_163 * (____fp_211));// L434 +extern int (___IO_peekc_locked_215) (___IO_FILE_164 * (____fp_212));// L434 +extern void (___IO_flockfile_216) (___IO_FILE_163 *);// L440 +extern void (___IO_flockfile_217) (___IO_FILE_164 *);// L440 +extern void (___IO_funlockfile_218) (___IO_FILE_163 *);// L441 +extern void (___IO_funlockfile_219) (___IO_FILE_164 *);// L441 +extern int (___IO_ftrylockfile_220) (___IO_FILE_163 *);// L442 +extern int (___IO_ftrylockfile_221) (___IO_FILE_164 *);// L442 +extern int (___IO_vfscanf_222) (___IO_FILE_163 * __restrict , const char * __restrict , ____gnuc_va_list_82 , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_224) (___IO_FILE_164 * __restrict , const char * __restrict , ____gnuc_va_list_82 , int * __restrict );// L459:L460 +extern int (___IO_vfprintf_231) (___IO_FILE_163 * __restrict , const char * __restrict , ____gnuc_va_list_82 );// L461:L462 +extern int (___IO_vfprintf_233) (___IO_FILE_164 * __restrict , const char * __restrict , ____gnuc_va_list_82 );// L461:L462 +extern ____ssize_t_49 (___IO_padn_238) (___IO_FILE_163 *, int , ____ssize_t_49 );// L463 +extern ____ssize_t_49 (___IO_padn_239) (___IO_FILE_164 *, int , ____ssize_t_49 );// L463 +extern __size_t_1 (___IO_sgetn_240) (___IO_FILE_163 *, void *, __size_t_1 );// L464 +extern __size_t_1 (___IO_sgetn_241) (___IO_FILE_164 *, void *, __size_t_1 );// L464 +extern ____off64_t_24 (___IO_seekoff_242) (___IO_FILE_163 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekoff_243) (___IO_FILE_164 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekpos_244) (___IO_FILE_163 *, ____off64_t_24 , int );// L467 +extern ____off64_t_24 (___IO_seekpos_245) (___IO_FILE_164 *, ____off64_t_24 , int );// L467 +extern void (___IO_free_backup_area_246) (___IO_FILE_163 *);// L469 +extern void (___IO_free_backup_area_247) (___IO_FILE_164 *);// L469 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern struct ___IO_FILE_95 * (__stdin_257);// L168 +extern struct ___IO_FILE_119 * (__stdin_258);// L168 +extern struct ___IO_FILE_95 * (__stdout_259);// L169 +extern struct ___IO_FILE_119 * (__stdout_260);// L169 +extern struct ___IO_FILE_95 * (__stderr_261);// L170 +extern struct ___IO_FILE_119 * (__stderr_262);// L170 +extern int (__remove_264) (const char * (____filename_263));// L178 +extern int (__rename_267) (const char * (____old_265), const char * (____new_266));// L180 +extern int (__renameat_272) (int ____oldfd_268, const char * (____old_269), int ____newfd_270, const char * (____new_271));// L185:L186 +extern __FILE_58 * ((__tmpfile_273) (void ));// L195 +extern __FILE_58 * ((__tmpfile_279) (void ));// L198 +extern __FILE_58 * ((__tmpfile_277) (void ));// L198 +extern __FILE_58 * ((__tmpfile_275) (void ));// L195 +extern char * ((__tmpnam_282) (char * (____s_281)));// L209 +extern char * ((__tmpnam_283) (char * (____s_281)));// L209 +extern char * ((__tmpnam_r_285) (char * (____s_284)));// L215 +extern char * ((__tmpnam_r_286) (char * (____s_284)));// L215 +extern char * ((__tempnam_289) (const char * (____dir_287), const char * (____pfx_288)));// L227:L228 +extern char * ((__tempnam_290) (const char * (____dir_287), const char * (____pfx_288)));// L227:L228 +extern int (__fclose_293) (__FILE_58 * (____stream_291));// L237 +extern int (__fclose_295) (__FILE_58 * (____stream_291));// L237 +extern int (__fflush_299) (__FILE_58 * (____stream_297));// L242 +extern int (__fflush_unlocked_303) (__FILE_58 * (____stream_301));// L252 +extern __FILE_58 * ((__fopen_307) (const char * __restrict ____filename_305, const char * __restrict ____modes_306));// L272:L273 +extern __FILE_58 * ((__fopen_309) (const char * __restrict ____filename_305, const char * __restrict ____modes_306));// L272:L273 +extern __FILE_58 * ((__fopen_317) (const char * __restrict ____filename_315, const char * __restrict ____modes_316));// L283:L285 +extern __FILE_58 * ((__fopen_319) (const char * __restrict ____filename_315, const char * __restrict ____modes_316));// L283:L285 +extern __FILE_58 * ((__freopen_325) (const char * __restrict ____filename_311, const char * __restrict ____modes_312, __FILE_58 * __restrict ____stream_313));// L278:L280 +extern __FILE_58 * ((__freopen_331) (const char * __restrict ____filename_321, const char * __restrict ____modes_322, __FILE_58 * __restrict ____stream_323));// L286:L289 +extern __FILE_58 * ((__freopen_329) (const char * __restrict ____filename_321, const char * __restrict ____modes_322, __FILE_58 * __restrict ____stream_323));// L286:L289 +extern __FILE_58 * ((__freopen_327) (const char * __restrict ____filename_311, const char * __restrict ____modes_312, __FILE_58 * __restrict ____stream_313));// L278:L280 +extern __FILE_58 * ((__fdopen_335) (int ____fd_333, const char * (____modes_334)));// L306 +extern __FILE_58 * ((__fdopen_337) (int ____fd_333, const char * (____modes_334)));// L306 +extern __FILE_58 * ((__fmemopen_342) (void * (____s_339), __size_t_1 ____len_340, const char * (____modes_341)));// L319:L320 +extern __FILE_58 * ((__fmemopen_344) (void * (____s_339), __size_t_1 ____len_340, const char * (____modes_341)));// L319:L320 +extern __FILE_58 * ((__open_memstream_348) (char * (* (____bufloc_346)), __size_t_1 * (____sizeloc_347)));// L325 +extern __FILE_58 * ((__open_memstream_350) (char * (* (____bufloc_346)), __size_t_1 * (____sizeloc_347)));// L325 +extern void (__setbuf_355) (__FILE_58 * __restrict ____stream_352, char * __restrict ____buf_354);// L332 +extern void (__setbuf_357) (__FILE_58 * __restrict ____stream_352, char * __restrict ____buf_354);// L332 +extern int (__setvbuf_364) (__FILE_58 * __restrict ____stream_359, char * __restrict ____buf_361, int ____modes_362, __size_t_1 ____n_363);// L336:L337 +extern void (__setbuffer_369) (__FILE_58 * __restrict ____stream_365, char * __restrict ____buf_367, __size_t_1 ____size_368);// L343:L344 +extern void (__setlinebuf_373) (__FILE_58 * (____stream_371));// L347 +extern int (__fprintf_378) (__FILE_58 * __restrict ____stream_375, const char * __restrict ____format_377, ... );// L356:L357 +extern int (__fprintf_380) (__FILE_58 * __restrict ____stream_375, const char * __restrict ____format_377, ... );// L356:L357 +extern int (__printf_383) (const char * __restrict ____format_382, ... );// L362 +extern int (__sprintf_386) (char * __restrict ____s_384, const char * __restrict ____format_385, ... );// L364:L365 +extern int (__vfprintf_392) (__FILE_58 * __restrict ____s_387, const char * __restrict ____format_389, ____gnuc_va_list_82 ____arg_390);// L371:L372 +extern int (__vprintf_399) (const char * __restrict ____format_396, ____gnuc_va_list_82 ____arg_397);// L377 +extern int (__vsprintf_405) (char * __restrict ____s_401, const char * __restrict ____format_402, ____gnuc_va_list_82 ____arg_403);// L379:L380 +extern int (__snprintf_409) (char * __restrict ____s_406, __size_t_1 ____maxlen_407, const char * __restrict ____format_408, ... );// L386:L388 +extern int (__vsnprintf_415) (char * __restrict ____s_410, __size_t_1 ____maxlen_411, const char * __restrict ____format_412, ____gnuc_va_list_82 ____arg_413);// L390:L392 +extern int (__vdprintf_420) (int ____fd_416, const char * __restrict ____fmt_417, ____gnuc_va_list_82 ____arg_418);// L412:L414 +extern int (__dprintf_424) (int ____fd_422, const char * __restrict ____fmt_423, ... );// L415:L416 +extern int (__fscanf_428) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 +extern int (__fscanf_430) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 +extern int (__fscanf_432) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 +extern int (__fscanf_434) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 +extern int (__scanf_437) (const char * __restrict ____format_436, ... );// L431 +extern int (__scanf_438) (const char * __restrict ____format_436, ... );// L431 +extern int (__sscanf_441) (const char * __restrict ____s_439, const char * __restrict ____format_440, ... );// L433:L434 -extern int (__vfscanf_509) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 -extern int (__vfscanf_513) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 -extern int (__vscanf_520) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 -extern int (__vscanf_522) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 -extern int (__vsscanf_528) (const char * __restrict ____s_524, const char * __restrict ____format_525, ____gnuc_va_list_86 ____arg_526);// L483:L485 +extern int (__vfscanf_468) (__FILE_58 * __restrict ____s_463, const char * __restrict ____format_465, ____gnuc_va_list_82 ____arg_466);// L471:L473 +extern int (__vfscanf_472) (__FILE_58 * __restrict ____s_463, const char * __restrict ____format_465, ____gnuc_va_list_82 ____arg_466);// L471:L473 +extern int (__vscanf_479) (const char * __restrict ____format_476, ____gnuc_va_list_82 ____arg_477);// L479:L480 +extern int (__vscanf_481) (const char * __restrict ____format_476, ____gnuc_va_list_82 ____arg_477);// L479:L480 +extern int (__vsscanf_487) (const char * __restrict ____s_483, const char * __restrict ____format_484, ____gnuc_va_list_82 ____arg_485);// L483:L485 -extern int (__fgetc_563) (__FILE_59 * (____stream_561));// L531 -extern int (__getc_567) (__FILE_59 * (____stream_565));// L532 -extern int (__getchar_569) (void );// L538 -extern int (__getc_unlocked_572) (__FILE_59 * (____stream_570));// L550 -extern int (__getchar_unlocked_574) (void );// L551 -extern int (__fgetc_unlocked_577) (__FILE_59 * (____stream_575));// L561 -extern int (__fputc_582) (int ____c_579, __FILE_59 * (____stream_580));// L573 -extern int (__fputc_584) (int ____c_579, __FILE_59 * (____stream_580));// L573 -extern int (__putc_589) (int ____c_586, __FILE_59 * (____stream_587));// L574 -extern int (__putchar_592) (int ____c_591);// L580 -extern int (__fputc_unlocked_596) (int ____c_593, __FILE_59 * (____stream_594));// L594 -extern int (__putc_unlocked_601) (int ____c_598, __FILE_59 * (____stream_599));// L602 -extern int (__putchar_unlocked_604) (int ____c_603);// L603 -extern int (__getw_607) (__FILE_59 * (____stream_605));// L610 -extern int (__putw_612) (int ____w_609, __FILE_59 * (____stream_610));// L613 -extern char * ((__fgets_618) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern char * ((__fgets_620) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern char * ((__fgets_622) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern char * ((__fgets_624) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern ____ssize_t_49 (____getdelim_631) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 -extern ____ssize_t_49 (____getdelim_635) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 -extern ____ssize_t_49 (__getdelim_644) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 -extern ____ssize_t_49 (__getdelim_648) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 -extern ____ssize_t_49 (__getline_656) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 -extern ____ssize_t_49 (__getline_660) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 -extern int (__fputs_667) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 -extern int (__fputs_669) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 -extern int (__puts_672) (const char * (____s_671));// L695 -extern int (__ungetc_676) (int ____c_673, __FILE_59 * (____stream_674));// L702 -extern int (__fseek_714) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 -extern int (__fseek_716) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 -extern long int (__ftell_720) (__FILE_59 * (____stream_718));// L754 -extern long int (__ftell_722) (__FILE_59 * (____stream_718));// L754 -extern void (__rewind_726) (__FILE_59 * (____stream_724));// L759 -extern int (__fseeko_733) (__FILE_59 * (____stream_728), ____off_t_23 ____off_730, int ____whence_732);// L773 -extern int (__fseeko_744) (__FILE_59 * (____stream_739), ____off64_t_24 ____off_741, int ____whence_743);// L781:L783 -extern ____off_t_23 (__ftello_758) (__FILE_59 * (____stream_737));// L778 -extern ____off_t_23 (__ftello_750) (__FILE_59 * (____stream_737));// L778 -extern int (__fgetpos_766) (__FILE_59 * __restrict ____stream_762, __fpos_t_287 * __restrict ____pos_764);// L798 -extern ____off64_t_24 (__ftello_754) (__FILE_59 * (____stream_748));// L784 -extern int (__fgetpos_778) (__FILE_59 * __restrict ____stream_774, __fpos_t_289 * __restrict ____pos_776);// L806:L807 -extern int (__fsetpos_786) (__FILE_59 * (____stream_770), const __fpos_t_287 * (____pos_772));// L803 -extern int (__fsetpos_790) (__FILE_59 * (____stream_782), const __fpos_t_289 * (____pos_784));// L808:L809 -extern void (__clearerr_796) (__FILE_59 * (____stream_794));// L826 -extern int (__feof_800) (__FILE_59 * (____stream_798));// L828 -extern int (__feof_802) (__FILE_59 * (____stream_798));// L828 -extern int (__ferror_806) (__FILE_59 * (____stream_804));// L830 -extern int (__ferror_808) (__FILE_59 * (____stream_804));// L830 -extern void (__clearerr_unlocked_812) (__FILE_59 * (____stream_810));// L835 -extern int (__feof_unlocked_816) (__FILE_59 * (____stream_814));// L836 -extern int (__feof_unlocked_818) (__FILE_59 * (____stream_814));// L836 -extern int (__ferror_unlocked_822) (__FILE_59 * (____stream_820));// L837 -extern int (__ferror_unlocked_824) (__FILE_59 * (____stream_820));// L837 -extern void (__perror_827) (const char * (____s_826));// L846 -extern void (__perror_828) (const char * (____s_826));// L846 -extern int __sys_nerr_829;// L26 -extern int (__fileno_835) (__FILE_59 * (____stream_831));// L858 -extern int (__fileno_833) (__FILE_59 * (____stream_831));// L858 -extern int (__fileno_unlocked_841) (__FILE_59 * (____stream_837));// L863 -extern int (__fileno_unlocked_839) (__FILE_59 * (____stream_837));// L863 -extern __FILE_59 * ((__popen_845) (const char * (____command_843), const char * (____modes_844)));// L872 -extern __FILE_59 * ((__popen_847) (const char * (____command_843), const char * (____modes_844)));// L872 -extern int (__pclose_851) (__FILE_59 * (____stream_849));// L878 -extern char * ((__ctermid_854) (char * (____s_853)));// L884 -extern void (__flockfile_857) (__FILE_59 * (____stream_855));// L912 -extern int (__ftrylockfile_861) (__FILE_59 * (____stream_859));// L916 -extern int (__ftrylockfile_863) (__FILE_59 * (____stream_859));// L916 -extern void (__funlockfile_867) (__FILE_59 * (____stream_865));// L919 + + +extern int (__fgetc_520) (__FILE_58 * (____stream_518));// L531 +extern int (__getc_523) (__FILE_58 * (____stream_521));// L532 +extern int (__getchar_524) (void );// L538 +extern int (__getc_unlocked_527) (__FILE_58 * (____stream_525));// L550 +extern int (__getchar_unlocked_529) (void );// L551 +extern int (__fgetc_unlocked_532) (__FILE_58 * (____stream_530));// L561 +extern int (__fputc_537) (int ____c_534, __FILE_58 * (____stream_535));// L573 +extern int (__fputc_539) (int ____c_534, __FILE_58 * (____stream_535));// L573 +extern int (__putc_544) (int ____c_541, __FILE_58 * (____stream_542));// L574 +extern int (__putchar_546) (int ____c_545);// L580 +extern int (__fputc_unlocked_550) (int ____c_547, __FILE_58 * (____stream_548));// L594 +extern int (__putc_unlocked_555) (int ____c_552, __FILE_58 * (____stream_553));// L602 +extern int (__putchar_unlocked_558) (int ____c_557);// L603 +extern int (__getw_561) (__FILE_58 * (____stream_559));// L610 +extern int (__putw_566) (int ____w_563, __FILE_58 * (____stream_564));// L613 +extern char * ((__fgets_572) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 +extern char * ((__fgets_574) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 +extern char * ((__fgets_576) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 +extern char * ((__fgets_578) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 +extern ____ssize_t_49 (____getdelim_585) (char * (* __restrict ____lineptr_580), __size_t_1 * __restrict ____n_581, int ____delimiter_582, __FILE_58 * __restrict ____stream_583);// L665:L667 +extern ____ssize_t_49 (____getdelim_587) (char * (* __restrict ____lineptr_580), __size_t_1 * __restrict ____n_581, int ____delimiter_582, __FILE_58 * __restrict ____stream_583);// L665:L667 +extern ____ssize_t_49 (__getdelim_594) (char * (* __restrict ____lineptr_589), __size_t_1 * __restrict ____n_590, int ____delimiter_591, __FILE_58 * __restrict ____stream_592);// L668:L670 +extern ____ssize_t_49 (__getdelim_596) (char * (* __restrict ____lineptr_589), __size_t_1 * __restrict ____n_590, int ____delimiter_591, __FILE_58 * __restrict ____stream_592);// L668:L670 +extern ____ssize_t_49 (__getline_602) (char * (* __restrict ____lineptr_598), __size_t_1 * __restrict ____n_599, __FILE_58 * __restrict ____stream_600);// L678:L680 +extern ____ssize_t_49 (__getline_604) (char * (* __restrict ____lineptr_598), __size_t_1 * __restrict ____n_599, __FILE_58 * __restrict ____stream_600);// L678:L680 +extern int (__fputs_609) (const char * __restrict ____s_606, __FILE_58 * __restrict ____stream_607);// L689 +extern int (__fputs_611) (const char * __restrict ____s_606, __FILE_58 * __restrict ____stream_607);// L689 +extern int (__puts_614) (const char * (____s_613));// L695 +extern int (__ungetc_618) (int ____c_615, __FILE_58 * (____stream_616));// L702 +extern int (__fseek_654) (__FILE_58 * (____stream_650), long int ____off_652, int ____whence_653);// L749 +extern int (__fseek_656) (__FILE_58 * (____stream_650), long int ____off_652, int ____whence_653);// L749 +extern long int (__ftell_660) (__FILE_58 * (____stream_658));// L754 +extern long int (__ftell_662) (__FILE_58 * (____stream_658));// L754 +extern void (__rewind_666) (__FILE_58 * (____stream_664));// L759 +extern int (__fseeko_671) (__FILE_58 * (____stream_667), ____off_t_23 ____off_669, int ____whence_670);// L773 +extern int (__fseeko_679) (__FILE_58 * (____stream_675), ____off64_t_24 ____off_677, int ____whence_678);// L781:L783 +extern ____off_t_23 (__ftello_683) (__FILE_58 * (____stream_673));// L778 +extern ____off_t_23 (__ftello_685) (__FILE_58 * (____stream_673));// L778 +extern int (__fgetpos_693) (__FILE_58 * __restrict ____stream_689, __fpos_t_253 * __restrict ____pos_691);// L798 +extern ____off64_t_24 (__ftello_687) (__FILE_58 * (____stream_681));// L784 +extern int (__fgetpos_705) (__FILE_58 * __restrict ____stream_701, __fpos_t_255 * __restrict ____pos_703);// L806:L807 +extern int (__fsetpos_713) (__FILE_58 * (____stream_697), const __fpos_t_253 * (____pos_699));// L803 +extern int (__fsetpos_717) (__FILE_58 * (____stream_709), const __fpos_t_255 * (____pos_711));// L808:L809 +extern void (__clearerr_723) (__FILE_58 * (____stream_721));// L826 +extern int (__feof_726) (__FILE_58 * (____stream_724));// L828 +extern int (__feof_728) (__FILE_58 * (____stream_724));// L828 +extern int (__ferror_732) (__FILE_58 * (____stream_730));// L830 +extern int (__ferror_734) (__FILE_58 * (____stream_730));// L830 +extern void (__clearerr_unlocked_738) (__FILE_58 * (____stream_736));// L835 +extern int (__feof_unlocked_742) (__FILE_58 * (____stream_740));// L836 +extern int (__feof_unlocked_744) (__FILE_58 * (____stream_740));// L836 +extern int (__ferror_unlocked_748) (__FILE_58 * (____stream_746));// L837 +extern int (__ferror_unlocked_750) (__FILE_58 * (____stream_746));// L837 +extern void (__perror_753) (const char * (____s_752));// L846 +extern void (__perror_754) (const char * (____s_752));// L846 +extern int __sys_nerr_755;// L26 + +extern int (__fileno_761) (__FILE_58 * (____stream_757));// L858 +extern int (__fileno_759) (__FILE_58 * (____stream_757));// L858 +extern int (__fileno_unlocked_767) (__FILE_58 * (____stream_763));// L863 +extern int (__fileno_unlocked_765) (__FILE_58 * (____stream_763));// L863 +extern __FILE_58 * ((__popen_771) (const char * (____command_769), const char * (____modes_770)));// L872 +extern __FILE_58 * ((__popen_773) (const char * (____command_769), const char * (____modes_770)));// L872 +extern int (__pclose_777) (__FILE_58 * (____stream_775));// L878 +extern char * ((__ctermid_780) (char * (____s_779)));// L884 +extern void (__flockfile_783) (__FILE_58 * (____stream_781));// L912 +extern int (__ftrylockfile_787) (__FILE_58 * (____stream_785));// L916 +extern int (__ftrylockfile_789) (__FILE_58 * (____stream_785));// L916 +extern void (__funlockfile_793) (__FILE_58 * (____stream_791));// L919 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ @@ -1312,100 +1167,78 @@ extern void (__funlockfile_867) (__FILE_59 * (____stream_865));// L919 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____sprintf_chk_899) (char * __restrict ____s_895, int ____flag_896, __size_t_1 ____slen_897, const char * __restrict ____format_898, ... );// L23:L24 -extern int (____vsprintf_chk_906) (char * __restrict ____s_900, int ____flag_901, __size_t_1 ____slen_902, const char * __restrict ____format_903, ____gnuc_va_list_86 ____ap_904);// L25:L27 +extern int (____sprintf_chk_825) (char * __restrict ____s_821, int ____flag_822, __size_t_1 ____slen_823, const char * __restrict ____format_824, ... );// L23:L24 +extern int (____vsprintf_chk_832) (char * __restrict ____s_826, int ____flag_827, __size_t_1 ____slen_828, const char * __restrict ____format_829, ____gnuc_va_list_82 ____ap_830);// L25:L27 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____snprintf_chk_920) (char * __restrict ____s_915, __size_t_1 ____n_916, int ____flag_917, __size_t_1 ____slen_918, const char * __restrict ____format_919, ... );// L52:L54 -extern int (____vsnprintf_chk_928) (char * __restrict ____s_921, __size_t_1 ____n_922, int ____flag_923, __size_t_1 ____slen_924, const char * __restrict ____format_925, ____gnuc_va_list_86 ____ap_926);// L55:L57 +extern int (____snprintf_chk_846) (char * __restrict ____s_841, __size_t_1 ____n_842, int ____flag_843, __size_t_1 ____slen_844, const char * __restrict ____format_845, ... );// L52:L54 +extern int (____vsnprintf_chk_854) (char * __restrict ____s_847, __size_t_1 ____n_848, int ____flag_849, __size_t_1 ____slen_850, const char * __restrict ____format_851, ____gnuc_va_list_82 ____ap_852);// L55:L57 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____fprintf_chk_943) (__FILE_59 * __restrict ____stream_939, int ____flag_941, const char * __restrict ____format_942, ... );// L85:L86 -extern int (____printf_chk_947) (int ____flag_945, const char * __restrict ____format_946, ... );// L87 -extern int (____vfprintf_chk_954) (__FILE_59 * __restrict ____stream_948, int ____flag_950, const char * __restrict ____format_951, ____gnuc_va_list_86 ____ap_952);// L88:L89 -extern int (____vprintf_chk_962) (int ____flag_958, const char * __restrict ____format_959, ____gnuc_va_list_86 ____ap_960);// L90:L91 +extern int (____fprintf_chk_869) (__FILE_58 * __restrict ____stream_865, int ____flag_867, const char * __restrict ____format_868, ... );// L85:L86 +extern int (____printf_chk_873) (int ____flag_871, const char * __restrict ____format_872, ... );// L87 +extern int (____vfprintf_chk_880) (__FILE_58 * __restrict ____stream_874, int ____flag_876, const char * __restrict ____format_877, ____gnuc_va_list_82 ____ap_878);// L88:L89 +extern int (____vprintf_chk_888) (int ____flag_884, const char * __restrict ____format_885, ____gnuc_va_list_82 ____ap_886);// L90:L91 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____dprintf_chk_984) (int ____fd_981, int ____flag_982, const char * __restrict ____fmt_983, ... );// L131:L132 -extern int (____vdprintf_chk_990) (int ____fd_985, int ____flag_986, const char * __restrict ____fmt_987, ____gnuc_va_list_86 ____arg_988);// L133:L135 +extern int (____dprintf_chk_910) (int ____fd_907, int ____flag_908, const char * __restrict ____fmt_909, ... );// L131:L132 +extern int (____vdprintf_chk_916) (int ____fd_911, int ____flag_912, const char * __restrict ____fmt_913, ____gnuc_va_list_82 ____arg_914);// L133:L135 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern char * ((____fgets_chk_1004) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 -extern char * ((____fgets_chk_1006) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 -extern char * ((____fgets_chk_1008) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 -extern char * ((____fgets_alias_1014) (char * __restrict ____s_1010, int ____n_1011, __FILE_59 * __restrict ____stream_1012));// L243:L245 -extern char * ((____fgets_chk_warn_1021) (char * __restrict ____s_1016, __size_t_1 ____size_1017, int ____n_1018, __FILE_59 * __restrict ____stream_1019));// L246:L250 +extern char * ((____fgets_chk_930) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 +extern char * ((____fgets_chk_932) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 +extern char * ((____fgets_chk_934) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 +extern char * ((____fgets_alias_940) (char * __restrict ____s_936, int ____n_937, __FILE_58 * __restrict ____stream_938));// L243:L245 +extern char * ((____fgets_chk_warn_947) (char * __restrict ____s_942, __size_t_1 ____size_943, int ____n_944, __FILE_58 * __restrict ____stream_945));// L246:L250 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -void (__apr_signal_block_1093) (int __signal_1092) { +void (__apr_signal_block_1019) (int __signal_1018) { -if (__static_condition_default_1096) { +if (__static_condition_default_1021) { { { - __printf_421 ("%d\n", __signal_1092 ) ; // L9 + __printf_383 ("%d\n", __signal_1018 ) ; // L9 } } } } -void (__apr_signal_block_1094) (int __signal_1092) { +void (__apr_signal_block_1020) (int __signal_1018) { -if (__static_condition_default_1097) { +if (__static_condition_default_1022) { { { - __printf_421 ("%d\n", __signal_1092 ) ; // L9 + __printf_383 ("%d\n", __signal_1018 ) ; // L9 } } } } -void (__apr_signal_block_1095) (int __signal_1092) { - -if (__static_condition_default_1098) { +int (__main_1023) (void ) { { { -__static_type_error("type error") ; // L9 -} -} - - -} -} -int (__main_1099) (void ) { - -{ -{ - - - -if (__static_condition_default_1100) { - __apr_signal_block_1093 (1) ; // L14 -} -if (__static_condition_default_1101) { - __apr_signal_block_1094 (1) ; // L14 -} -if (__static_condition_default_1102) { - __apr_signal_block_1095 (1) ; // L14 +if (__static_condition_default_1021) { + __apr_signal_block_1019 (1) ; // L14 } -if (__static_condition_default_1103) { -__static_type_error("type error : no valid expression"); // L14 +if (__static_condition_default_1022) { + __apr_signal_block_1020 (1) ; // L14 } return 0 ;// L15 } diff --git a/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c index c26be910..3eb5e61b 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c @@ -7,95 +7,87 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_1024; -extern const bool __static_condition_default_243; -extern const bool __static_condition_default_1102; -extern const bool __static_condition_default_252; -extern const bool __static_condition_default_1096; -extern const bool __static_condition_default_352; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_1074; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_594; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_1053; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_420; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_1086; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_984; +extern const bool __static_condition_default_977; +extern const bool __static_condition_default_308; +extern const bool __static_condition_default_1013; +extern const bool __static_condition_default_429; +extern const bool __static_condition_default_1026; +extern const bool __static_condition_default_1027; extern const bool __static_condition_default_240; -extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_349; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_993; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_804; +extern const bool __static_condition_default_420; +extern const bool __static_condition_default_1032; extern const bool __static_condition_default_379; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_1100; -extern const bool __static_condition_default_806; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_1092; -extern const bool __static_condition_default_60; +extern const bool __static_condition_default_631; +extern const bool __static_condition_default_1038; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_738; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_581; +extern const bool __static_condition_default_361; +extern const bool __static_condition_default_352; +extern const bool __static_condition_default_325; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_1028; extern const bool __static_condition_default_1031; -extern const bool __static_condition_default_595; -extern const bool __static_condition_default_627; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_1097; -extern const bool __static_condition_default_818; -extern const bool __static_condition_default_1077; -extern const bool __static_condition_default_302; extern const bool __static_condition_default_237; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_1083; -extern const bool __static_condition_default_308; +extern const bool __static_condition_default_60; extern const bool __static_condition_default_629; -extern const bool __static_condition_default_1047; -extern const bool __static_condition_default_1054; -extern const bool __static_condition_default_1093; -extern const bool __static_condition_default_1099; -extern const bool __static_condition_default_215; -extern const bool __static_condition_default_378; -extern const bool __static_condition_default_1030; -extern const bool __static_condition_default_1037; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_394; +extern const bool __static_condition_default_302; +extern const bool __static_condition_default_1036; extern const bool __static_condition_default_432; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_804; -extern const bool __static_condition_default_429; -extern const bool __static_condition_default_426; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_261; +extern const bool __static_condition_default_1010; +extern const bool __static_condition_default_276; +extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_1034; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_279; +extern const bool __static_condition_default_583; +extern const bool __static_condition_default_243; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_1029; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_606; +extern const bool __static_condition_default_992; extern const bool __static_condition_default_305; -extern const bool __static_condition_default_349; -extern const bool __static_condition_default_1098; -extern const bool __static_condition_default_414; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_621; +extern const bool __static_condition_default_261; +extern const bool __static_condition_default_285; +extern const bool __static_condition_default_1017; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_1025; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_395; extern const bool __static_condition_default_234; +extern const bool __static_condition_default_67; +extern const bool __static_condition_default_596; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_378; +extern const bool __static_condition_default_423; +extern const bool __static_condition_default_394; +extern const bool __static_condition_default_215; +extern const bool __static_condition_default_997; +extern const bool __static_condition_default_252; +extern const bool __static_condition_default_1033; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_814; extern const bool __static_condition_default_273; -extern const bool __static_condition_default_1048; -extern const bool __static_condition_default_279; -extern const bool __static_condition_default_276; extern const bool __static_condition_default_604; -extern const bool __static_condition_default_1082; -extern const bool __static_condition_default_361; -extern const bool __static_condition_default_1095; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_423; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_1094; -extern const bool __static_condition_default_285; -extern const bool __static_condition_default_67; -extern const bool __static_condition_default_1025; -extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_426; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_270; extern const bool __static_condition_default_805; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_325; -extern const bool __static_condition_default_579; -extern const bool __static_condition_default_581; +extern const bool __static_condition_default_1030; +extern const bool __static_condition_default_414; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -371,294 +363,261 @@ __static_renaming("__seed48_482", "seed48"); __static_renaming("__lcong48_484", "lcong48"); __static_renaming("__malloc_486", "malloc"); __static_renaming("__malloc_487", "malloc"); -__static_renaming("__calloc_490", "calloc"); -__static_renaming("__calloc_491", "calloc"); -__static_renaming("__realloc_494", "realloc"); -__static_renaming("__free_496", "free"); -__static_renaming("__cfree_498", "cfree"); -__static_renaming("__alloca_500", "alloca"); -__static_renaming("__valloc_502", "valloc"); -__static_renaming("__valloc_503", "valloc"); -__static_renaming("__posix_memalign_507", "posix_memalign"); -__static_renaming("__posix_memalign_508", "posix_memalign"); -__static_renaming("__aligned_alloc_511", "aligned_alloc"); -__static_renaming("__aligned_alloc_512", "aligned_alloc"); +__static_renaming("__malloc_488", "malloc"); +__static_renaming("__malloc_489", "malloc"); +__static_renaming("__calloc_492", "calloc"); +__static_renaming("__calloc_493", "calloc"); +__static_renaming("__realloc_496", "realloc"); +__static_renaming("__free_498", "free"); +__static_renaming("__cfree_500", "cfree"); +__static_renaming("__alloca_502", "alloca"); +__static_renaming("__valloc_504", "valloc"); +__static_renaming("__valloc_505", "valloc"); +__static_renaming("__posix_memalign_509", "posix_memalign"); +__static_renaming("__posix_memalign_510", "posix_memalign"); __static_renaming("__aligned_alloc_513", "aligned_alloc"); __static_renaming("__aligned_alloc_514", "aligned_alloc"); -__static_renaming("__abort_515", "abort"); -__static_renaming("__atexit_517", "atexit"); -__static_renaming("__at_quick_exit_519", "at_quick_exit"); -__static_renaming("__on_exit_524", "on_exit"); -__static_renaming("__exit_526", "exit"); -__static_renaming("__exit_527", "exit"); -__static_renaming("__quick_exit_529", "quick_exit"); -__static_renaming("___Exit_531", "_Exit"); -__static_renaming("__getenv_533", "getenv"); -__static_renaming("__getenv_534", "getenv"); -__static_renaming("__putenv_536", "putenv"); -__static_renaming("__setenv_540", "setenv"); -__static_renaming("__unsetenv_542", "unsetenv"); -__static_renaming("__clearenv_543", "clearenv"); -__static_renaming("__mktemp_545", "mktemp"); -__static_renaming("__mkstemp_548", "mkstemp"); -__static_renaming("__mkstemp_549", "mkstemp"); +__static_renaming("__aligned_alloc_515", "aligned_alloc"); +__static_renaming("__aligned_alloc_516", "aligned_alloc"); +__static_renaming("__abort_517", "abort"); +__static_renaming("__atexit_519", "atexit"); +__static_renaming("__at_quick_exit_521", "at_quick_exit"); +__static_renaming("__on_exit_526", "on_exit"); +__static_renaming("__exit_528", "exit"); +__static_renaming("__exit_529", "exit"); +__static_renaming("__quick_exit_531", "quick_exit"); +__static_renaming("___Exit_533", "_Exit"); +__static_renaming("__getenv_535", "getenv"); +__static_renaming("__getenv_536", "getenv"); +__static_renaming("__putenv_538", "putenv"); +__static_renaming("__setenv_542", "setenv"); +__static_renaming("__unsetenv_544", "unsetenv"); +__static_renaming("__clearenv_545", "clearenv"); +__static_renaming("__mktemp_547", "mktemp"); __static_renaming("__mkstemp_550", "mkstemp"); __static_renaming("__mkstemp_551", "mkstemp"); -__static_renaming("__mkstemps_556", "mkstemps"); -__static_renaming("__mkstemps_557", "mkstemps"); +__static_renaming("__mkstemp_552", "mkstemp"); +__static_renaming("__mkstemp_553", "mkstemp"); __static_renaming("__mkstemps_558", "mkstemps"); __static_renaming("__mkstemps_559", "mkstemps"); -__static_renaming("__mkdtemp_561", "mkdtemp"); -__static_renaming("__mkdtemp_562", "mkdtemp"); -__static_renaming("__system_564", "system"); -__static_renaming("__system_565", "system"); +__static_renaming("__mkstemps_560", "mkstemps"); +__static_renaming("__mkstemps_561", "mkstemps"); +__static_renaming("__mkdtemp_563", "mkdtemp"); +__static_renaming("__mkdtemp_564", "mkdtemp"); __static_renaming("__system_566", "system"); __static_renaming("__system_567", "system"); -__static_renaming("__realpath_570", "realpath"); -__static_renaming("__realpath_571", "realpath"); -__static_renaming("____compar_fn_t_572", "__compar_fn_t"); -__static_renaming("__bsearch_580", "bsearch"); +__static_renaming("__system_568", "system"); +__static_renaming("__system_569", "system"); +__static_renaming("__realpath_572", "realpath"); +__static_renaming("__realpath_573", "realpath"); +__static_renaming("____compar_fn_t_574", "__compar_fn_t"); __static_renaming("__bsearch_582", "bsearch"); -__static_renaming("____l_589", "__l"); -__static_renaming("____u_590", "__u"); -__static_renaming("____idx_591", "__idx"); -__static_renaming("____p_592", "__p"); -__static_renaming("____comparison_593", "__comparison"); -__static_renaming("__qsort_601", "qsort"); +__static_renaming("__bsearch_584", "bsearch"); +__static_renaming("____l_591", "__l"); +__static_renaming("____u_592", "__u"); +__static_renaming("____idx_593", "__idx"); +__static_renaming("____p_594", "__p"); +__static_renaming("____comparison_595", "__comparison"); __static_renaming("__qsort_603", "qsort"); -__static_renaming("__abs_606", "abs"); -__static_renaming("__abs_607", "abs"); -__static_renaming("__labs_609", "labs"); -__static_renaming("__labs_610", "labs"); -__static_renaming("__llabs_612", "llabs"); -__static_renaming("__llabs_613", "llabs"); -__static_renaming("__div_616", "div"); -__static_renaming("__div_617", "div"); -__static_renaming("__ldiv_620", "ldiv"); +__static_renaming("__qsort_605", "qsort"); +__static_renaming("__abs_608", "abs"); +__static_renaming("__abs_609", "abs"); +__static_renaming("__labs_611", "labs"); +__static_renaming("__labs_612", "labs"); +__static_renaming("__llabs_614", "llabs"); +__static_renaming("__llabs_615", "llabs"); +__static_renaming("__div_618", "div"); +__static_renaming("__div_619", "div"); __static_renaming("__ldiv_622", "ldiv"); -__static_renaming("__lldiv_626", "lldiv"); +__static_renaming("__ldiv_624", "ldiv"); __static_renaming("__lldiv_628", "lldiv"); -__static_renaming("__ecvt_634", "ecvt"); -__static_renaming("__ecvt_635", "ecvt"); -__static_renaming("__fcvt_640", "fcvt"); -__static_renaming("__fcvt_641", "fcvt"); -__static_renaming("__gcvt_645", "gcvt"); -__static_renaming("__gcvt_646", "gcvt"); -__static_renaming("__qecvt_651", "qecvt"); -__static_renaming("__qecvt_652", "qecvt"); -__static_renaming("__qfcvt_657", "qfcvt"); -__static_renaming("__qfcvt_658", "qfcvt"); -__static_renaming("__qgcvt_662", "qgcvt"); -__static_renaming("__qgcvt_663", "qgcvt"); -__static_renaming("__ecvt_r_670", "ecvt_r"); -__static_renaming("__fcvt_r_677", "fcvt_r"); -__static_renaming("__qecvt_r_684", "qecvt_r"); -__static_renaming("__qfcvt_r_691", "qfcvt_r"); -__static_renaming("__mblen_694", "mblen"); -__static_renaming("__mblen_695", "mblen"); -__static_renaming("__mbtowc_699", "mbtowc"); -__static_renaming("__wctomb_702", "wctomb"); -__static_renaming("__mbstowcs_706", "mbstowcs"); -__static_renaming("__wcstombs_710", "wcstombs"); -__static_renaming("__rpmatch_712", "rpmatch"); -__static_renaming("__rpmatch_713", "rpmatch"); -__static_renaming("__getsubopt_717", "getsubopt"); -__static_renaming("__getsubopt_718", "getsubopt"); -__static_renaming("__getloadavg_721", "getloadavg"); -__static_renaming("____realpath_chk_726", "__realpath_chk"); -__static_renaming("____realpath_alias_729", "__realpath_alias"); -__static_renaming("____realpath_chk_warn_733", "__realpath_chk_warn"); -__static_renaming("____ptsname_r_chk_741", "__ptsname_r_chk"); -__static_renaming("____ptsname_r_alias_745", "__ptsname_r_alias"); -__static_renaming("____ptsname_r_chk_warn_750", "__ptsname_r_chk_warn"); -__static_renaming("____wctomb_chk_758", "__wctomb_chk"); -__static_renaming("____wctomb_alias_761", "__wctomb_alias"); -__static_renaming("____mbstowcs_chk_768", "__mbstowcs_chk"); -__static_renaming("____mbstowcs_alias_772", "__mbstowcs_alias"); -__static_renaming("____mbstowcs_chk_warn_777", "__mbstowcs_chk_warn"); -__static_renaming("____wcstombs_chk_785", "__wcstombs_chk"); -__static_renaming("____wcstombs_alias_789", "__wcstombs_alias"); -__static_renaming("____wcstombs_chk_warn_794", "__wcstombs_chk_warn"); -__static_renaming("__ptrdiff_t_798", "ptrdiff_t"); -__static_renaming("__size_t_799", "size_t"); -__static_renaming("__memmove_811", "memmove"); -__static_renaming("__memmove_812", "memmove"); -__static_renaming("__memset_824", "memset"); -__static_renaming("__memset_825", "memset"); -__static_renaming("__memset_826", "memset"); -__static_renaming("__memset_827", "memset"); -__static_renaming("__memcmp_832", "memcmp"); -__static_renaming("__memcmp_833", "memcmp"); -__static_renaming("__memchr_838", "memchr"); -__static_renaming("__memchr_839", "memchr"); -__static_renaming("__strcpy_842", "strcpy"); -__static_renaming("__strncpy_847", "strncpy"); -__static_renaming("__strncpy_848", "strncpy"); -__static_renaming("__strcat_851", "strcat"); -__static_renaming("__strncat_856", "strncat"); -__static_renaming("__strncat_857", "strncat"); -__static_renaming("__strcmp_860", "strcmp"); -__static_renaming("__strncmp_865", "strncmp"); -__static_renaming("__strncmp_866", "strncmp"); -__static_renaming("__strcoll_869", "strcoll"); -__static_renaming("__strxfrm_874", "strxfrm"); -__static_renaming("__strxfrm_875", "strxfrm"); -__static_renaming("____locale_t_883", "__locale_t"); -__static_renaming("__locale_t_884", "locale_t"); -__static_renaming("__strcoll_l_888", "strcoll_l"); -__static_renaming("__strxfrm_l_894", "strxfrm_l"); -__static_renaming("__strxfrm_l_895", "strxfrm_l"); -__static_renaming("__strdup_897", "strdup"); -__static_renaming("__strndup_901", "strndup"); -__static_renaming("__strndup_902", "strndup"); -__static_renaming("__strchr_905", "strchr"); -__static_renaming("__strrchr_908", "strrchr"); -__static_renaming("__strcspn_911", "strcspn"); -__static_renaming("__strcspn_912", "strcspn"); -__static_renaming("__strspn_915", "strspn"); -__static_renaming("__strspn_916", "strspn"); -__static_renaming("__strpbrk_919", "strpbrk"); -__static_renaming("__strstr_922", "strstr"); -__static_renaming("__strtok_925", "strtok"); -__static_renaming("____strtok_r_929", "__strtok_r"); -__static_renaming("__strtok_r_933", "strtok_r"); -__static_renaming("__strlen_935", "strlen"); -__static_renaming("__strlen_936", "strlen"); -__static_renaming("__strlen_937", "strlen"); -__static_renaming("__strlen_938", "strlen"); -__static_renaming("__strnlen_942", "strnlen"); -__static_renaming("__strnlen_943", "strnlen"); -__static_renaming("__strerror_945", "strerror"); -__static_renaming("__strerror_946", "strerror"); -__static_renaming("__strerror_r_951", "strerror_r"); -__static_renaming("__strerror_r_952", "strerror_r"); -__static_renaming("__strerror_l_955", "strerror_l"); -__static_renaming("____bzero_959", "__bzero"); -__static_renaming("____bzero_960", "__bzero"); -__static_renaming("____bzero_961", "__bzero"); -__static_renaming("____bzero_962", "__bzero"); -__static_renaming("__bcopy_967", "bcopy"); -__static_renaming("__bcopy_968", "bcopy"); -__static_renaming("__bzero_972", "bzero"); -__static_renaming("__bzero_973", "bzero"); -__static_renaming("__bcmp_978", "bcmp"); -__static_renaming("__bcmp_979", "bcmp"); -__static_renaming("__index_982", "index"); -__static_renaming("__rindex_985", "rindex"); -__static_renaming("__ffs_987", "ffs"); -__static_renaming("__strcasecmp_990", "strcasecmp"); -__static_renaming("__strncasecmp_995", "strncasecmp"); -__static_renaming("__strncasecmp_996", "strncasecmp"); -__static_renaming("__strsep_999", "strsep"); -__static_renaming("__strsignal_1001", "strsignal"); -__static_renaming("____stpcpy_1004", "__stpcpy"); -__static_renaming("__stpcpy_1007", "stpcpy"); -__static_renaming("____stpncpy_1012", "__stpncpy"); -__static_renaming("____stpncpy_1013", "__stpncpy"); -__static_renaming("__stpncpy_1018", "stpncpy"); -__static_renaming("__stpncpy_1019", "stpncpy"); -__static_renaming("____stpncpy_chk_1061", "__stpncpy_chk"); -__static_renaming("____stpncpy_chk_1062", "__stpncpy_chk"); -__static_renaming("____stpncpy_alias_1067", "__stpncpy_alias"); -__static_renaming("____stpncpy_alias_1068", "__stpncpy_alias"); -__static_renaming("__sc_1084", "sc"); -__static_renaming("__sc_1085", "sc"); -__static_renaming("__ssl_init_ModuleKill_1087", "ssl_init_ModuleKill"); -__static_renaming("__ssl_init_ModuleKill_1088", "ssl_init_ModuleKill"); -__static_renaming("__main_1101", "main"); +__static_renaming("__lldiv_630", "lldiv"); +__static_renaming("__ecvt_636", "ecvt"); +__static_renaming("__ecvt_637", "ecvt"); +__static_renaming("__fcvt_642", "fcvt"); +__static_renaming("__fcvt_643", "fcvt"); +__static_renaming("__gcvt_647", "gcvt"); +__static_renaming("__gcvt_648", "gcvt"); +__static_renaming("__qecvt_653", "qecvt"); +__static_renaming("__qecvt_654", "qecvt"); +__static_renaming("__qfcvt_659", "qfcvt"); +__static_renaming("__qfcvt_660", "qfcvt"); +__static_renaming("__qgcvt_664", "qgcvt"); +__static_renaming("__qgcvt_665", "qgcvt"); +__static_renaming("__ecvt_r_672", "ecvt_r"); +__static_renaming("__fcvt_r_679", "fcvt_r"); +__static_renaming("__qecvt_r_686", "qecvt_r"); +__static_renaming("__qfcvt_r_693", "qfcvt_r"); +__static_renaming("__mblen_696", "mblen"); +__static_renaming("__mblen_697", "mblen"); +__static_renaming("__mbtowc_701", "mbtowc"); +__static_renaming("__wctomb_704", "wctomb"); +__static_renaming("__mbstowcs_708", "mbstowcs"); +__static_renaming("__wcstombs_712", "wcstombs"); +__static_renaming("__rpmatch_714", "rpmatch"); +__static_renaming("__rpmatch_715", "rpmatch"); +__static_renaming("__getsubopt_719", "getsubopt"); +__static_renaming("__getsubopt_720", "getsubopt"); +__static_renaming("__getloadavg_723", "getloadavg"); +__static_renaming("____realpath_chk_728", "__realpath_chk"); +__static_renaming("____realpath_alias_731", "__realpath_alias"); +__static_renaming("____realpath_chk_warn_735", "__realpath_chk_warn"); +__static_renaming("____ptsname_r_chk_743", "__ptsname_r_chk"); +__static_renaming("____ptsname_r_alias_747", "__ptsname_r_alias"); +__static_renaming("____ptsname_r_chk_warn_752", "__ptsname_r_chk_warn"); +__static_renaming("____wctomb_chk_760", "__wctomb_chk"); +__static_renaming("____wctomb_alias_763", "__wctomb_alias"); +__static_renaming("____mbstowcs_chk_770", "__mbstowcs_chk"); +__static_renaming("____mbstowcs_alias_774", "__mbstowcs_alias"); +__static_renaming("____mbstowcs_chk_warn_779", "__mbstowcs_chk_warn"); +__static_renaming("____wcstombs_chk_787", "__wcstombs_chk"); +__static_renaming("____wcstombs_alias_791", "__wcstombs_alias"); +__static_renaming("____wcstombs_chk_warn_796", "__wcstombs_chk_warn"); +__static_renaming("__memmove_809", "memmove"); +__static_renaming("__memset_818", "memset"); +__static_renaming("__memset_819", "memset"); +__static_renaming("__memcmp_823", "memcmp"); +__static_renaming("__memchr_827", "memchr"); +__static_renaming("__strcpy_830", "strcpy"); +__static_renaming("__strncpy_834", "strncpy"); +__static_renaming("__strcat_837", "strcat"); +__static_renaming("__strncat_841", "strncat"); +__static_renaming("__strcmp_844", "strcmp"); +__static_renaming("__strncmp_848", "strncmp"); +__static_renaming("__strcoll_851", "strcoll"); +__static_renaming("__strxfrm_855", "strxfrm"); +__static_renaming("____locale_t_863", "__locale_t"); +__static_renaming("__locale_t_864", "locale_t"); +__static_renaming("__strcoll_l_868", "strcoll_l"); +__static_renaming("__strxfrm_l_873", "strxfrm_l"); +__static_renaming("__strdup_875", "strdup"); +__static_renaming("__strndup_878", "strndup"); +__static_renaming("__strchr_881", "strchr"); +__static_renaming("__strchr_882", "strchr"); +__static_renaming("__strrchr_885", "strrchr"); +__static_renaming("__strcspn_888", "strcspn"); +__static_renaming("__strspn_891", "strspn"); +__static_renaming("__strpbrk_894", "strpbrk"); +__static_renaming("__strstr_897", "strstr"); +__static_renaming("__strtok_900", "strtok"); +__static_renaming("____strtok_r_904", "__strtok_r"); +__static_renaming("__strtok_r_908", "strtok_r"); +__static_renaming("__strlen_910", "strlen"); +__static_renaming("__strlen_911", "strlen"); +__static_renaming("__strnlen_914", "strnlen"); +__static_renaming("__strerror_916", "strerror"); +__static_renaming("__strerror_917", "strerror"); +__static_renaming("__strerror_r_921", "strerror_r"); +__static_renaming("__strerror_l_924", "strerror_l"); +__static_renaming("____bzero_927", "__bzero"); +__static_renaming("____bzero_928", "__bzero"); +__static_renaming("__bcopy_932", "bcopy"); +__static_renaming("__bzero_935", "bzero"); +__static_renaming("__bcmp_939", "bcmp"); +__static_renaming("__index_942", "index"); +__static_renaming("__rindex_945", "rindex"); +__static_renaming("__ffs_947", "ffs"); +__static_renaming("__strcasecmp_950", "strcasecmp"); +__static_renaming("__strncasecmp_954", "strncasecmp"); +__static_renaming("__strsep_957", "strsep"); +__static_renaming("__strsignal_959", "strsignal"); +__static_renaming("____stpcpy_962", "__stpcpy"); +__static_renaming("__stpcpy_965", "stpcpy"); +__static_renaming("____stpncpy_969", "__stpncpy"); +__static_renaming("__stpncpy_973", "stpncpy"); +__static_renaming("____stpncpy_chk_1002", "__stpncpy_chk"); +__static_renaming("____stpncpy_alias_1006", "__stpncpy_alias"); +__static_renaming("__sc_1018", "sc"); +__static_renaming("__sc_1019", "sc"); +__static_renaming("__sc_1020", "sc"); +__static_renaming("__sc_1021", "sc"); +__static_renaming("__ssl_init_ModuleKill_1023", "ssl_init_ModuleKill"); +__static_renaming("__ssl_init_ModuleKill_1024", "ssl_init_ModuleKill"); +__static_renaming("__main_1037", "main"); -__static_condition_renaming("__static_condition_default_60", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_67", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_215", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_234", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __u_char_defined)"); -__static_condition_renaming("__static_condition_default_237", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __u_char_defined)"); -__static_condition_renaming("__static_condition_default_240", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __u_char_defined)"); -__static_condition_renaming("__static_condition_default_243", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ino_t_defined)"); -__static_condition_renaming("__static_condition_default_246", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ino_t_defined) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ino_t_defined)"); -__static_condition_renaming("__static_condition_default_249", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_252", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_255", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_258", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_261", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __nlink_t_defined)"); -__static_condition_renaming("__static_condition_default_264", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __nlink_t_defined)"); -__static_condition_renaming("__static_condition_default_267", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __nlink_t_defined)"); -__static_condition_renaming("__static_condition_default_270", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_273", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_276", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_279", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_282", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __id_t_defined)"); -__static_condition_renaming("__static_condition_default_285", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_288", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_293", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_296", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_299", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __clock_t_defined)"); -__static_condition_renaming("__static_condition_default_302", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __time_t_defined)"); -__static_condition_renaming("__static_condition_default_305", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __clockid_t_defined)"); -__static_condition_renaming("__static_condition_default_308", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __timer_t_defined)"); -__static_condition_renaming("__static_condition_default_325", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_341", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_349", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_352", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __suseconds_t_defined)"); -__static_condition_renaming("__static_condition_default_361", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_378", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_379", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_394", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_395", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_414", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blksize_t_defined)"); -__static_condition_renaming("__static_condition_default_417", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blkcnt_t_defined) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blkcnt_t_defined)"); -__static_condition_renaming("__static_condition_default_420", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_423", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blkcnt_t_defined)"); -__static_condition_renaming("__static_condition_default_426", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_429", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_432", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_579", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_581", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_594", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __USE_EXTERN_INLINES) && !(defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_595", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_602", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_604", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_621", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_623", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_627", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_629", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_736", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_804", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_805", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && (defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_806", "(defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_818", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__)"); -__static_condition_renaming("__static_condition_default_819", "(defined _STDLIB_H) && !(defined __STRICT_ANSI__)"); -__static_condition_renaming("__static_condition_default_1024", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1025", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1030", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1031", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1036", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1037", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1047", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1048", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1053", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1054", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1073", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1074", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1077", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1082", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1083", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1086", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined __malloc_and_calloc_defined) || (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_1089", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1090", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __malloc_and_calloc_defined) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __malloc_and_calloc_defined) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __malloc_and_calloc_defined) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __malloc_and_calloc_defined)"); -__static_condition_renaming("__static_condition_default_1091", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __malloc_and_calloc_defined) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __malloc_and_calloc_defined) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __malloc_and_calloc_defined) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __malloc_and_calloc_defined) || (defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) || (defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1092", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined SHARED_MODULE) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined SHARED_MODULE) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined SHARED_MODULE) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined SHARED_MODULE) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined SHARED_MODULE) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined SHARED_MODULE) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined SHARED_MODULE) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined SHARED_MODULE)"); -__static_condition_renaming("__static_condition_default_1093", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need_malloc_and_calloc) && (defined SHARED_MODULE) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need_malloc_and_calloc) && (defined SHARED_MODULE) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need_malloc_and_calloc) && (defined SHARED_MODULE) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && (defined SHARED_MODULE) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined SHARED_MODULE) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need_malloc_and_calloc) && (defined SHARED_MODULE) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined SHARED_MODULE) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need_malloc_and_calloc) && (defined SHARED_MODULE) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined SHARED_MODULE) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need_malloc_and_calloc) && (defined SHARED_MODULE) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined SHARED_MODULE) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && (defined SHARED_MODULE) || (defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && (defined SHARED_MODULE) || (defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined SHARED_MODULE) || (defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined SHARED_MODULE) || (defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined SHARED_MODULE)"); -__static_condition_renaming("__static_condition_default_1094", "!(defined _FORTIFY_SOURCE) && !(defined SHARED_MODULE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined SHARED_MODULE) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined SHARED_MODULE) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined SHARED_MODULE)"); -__static_condition_renaming("__static_condition_default_1095", "!(defined _FORTIFY_SOURCE) && (defined SHARED_MODULE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined SHARED_MODULE) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined SHARED_MODULE) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined SHARED_MODULE)"); -__static_condition_renaming("__static_condition_default_1096", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1097", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined SHARED_MODULE) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined SHARED_MODULE)"); -__static_condition_renaming("__static_condition_default_1098", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && (defined SHARED_MODULE) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined SHARED_MODULE) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && (defined SHARED_MODULE) || (defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined SHARED_MODULE)"); -__static_condition_renaming("__static_condition_default_1099", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined SHARED_MODULE)"); -__static_condition_renaming("__static_condition_default_1100", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined SHARED_MODULE)"); -__static_condition_renaming("__static_condition_default_1102", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined __need_malloc_and_calloc) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || (defined _STDLIB_H) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO)"); +__static_condition_renaming("__static_condition_default_60", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_67", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_215", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_234", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __u_char_defined)"); +__static_condition_renaming("__static_condition_default_237", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __u_char_defined)"); +__static_condition_renaming("__static_condition_default_240", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __u_char_defined)"); +__static_condition_renaming("__static_condition_default_243", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ino_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ino_t_defined)"); +__static_condition_renaming("__static_condition_default_246", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ino_t_defined)"); +__static_condition_renaming("__static_condition_default_249", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_252", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_255", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_258", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_261", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __nlink_t_defined)"); +__static_condition_renaming("__static_condition_default_264", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __nlink_t_defined)"); +__static_condition_renaming("__static_condition_default_267", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __nlink_t_defined)"); +__static_condition_renaming("__static_condition_default_270", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_273", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_276", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_279", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_282", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __id_t_defined)"); +__static_condition_renaming("__static_condition_default_285", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_288", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_293", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_296", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_299", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __clock_t_defined)"); +__static_condition_renaming("__static_condition_default_302", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __time_t_defined)"); +__static_condition_renaming("__static_condition_default_305", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __clockid_t_defined)"); +__static_condition_renaming("__static_condition_default_308", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __timer_t_defined)"); +__static_condition_renaming("__static_condition_default_325", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_341", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_349", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_352", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __suseconds_t_defined)"); +__static_condition_renaming("__static_condition_default_361", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_378", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_379", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_394", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_395", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_414", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blksize_t_defined)"); +__static_condition_renaming("__static_condition_default_417", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blkcnt_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blkcnt_t_defined)"); +__static_condition_renaming("__static_condition_default_420", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_423", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blkcnt_t_defined)"); +__static_condition_renaming("__static_condition_default_426", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_429", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_432", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_581", "!(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_583", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_596", "!(defined __need_malloc_and_calloc) && (defined __USE_EXTERN_INLINES) && !(defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_597", "!(defined __need_malloc_and_calloc) && (defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_604", "!(defined __need_malloc_and_calloc) && !(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_606", "!(defined __need_malloc_and_calloc) && (defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_623", "!(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_625", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_629", "!(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_631", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_738", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_803", "!(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_804", "(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_805", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_814", "!(defined __STRICT_ANSI__)"); +__static_condition_renaming("__static_condition_default_977", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_984", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_992", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_993", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_997", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1010", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1013", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1017", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1022", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1025", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1026", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1027", "!(defined _FORTIFY_SOURCE) && (defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1028", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined SHARED_MODULE) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined SHARED_MODULE) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined SHARED_MODULE) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined SHARED_MODULE)"); +__static_condition_renaming("__static_condition_default_1029", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined SHARED_MODULE) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined SHARED_MODULE) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined SHARED_MODULE) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined SHARED_MODULE) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need_malloc_and_calloc) && (defined SHARED_MODULE) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need_malloc_and_calloc) && (defined SHARED_MODULE) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need_malloc_and_calloc) && (defined SHARED_MODULE) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && (defined SHARED_MODULE)"); +__static_condition_renaming("__static_condition_default_1030", "!(defined _FORTIFY_SOURCE) && !(defined SHARED_MODULE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined SHARED_MODULE) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined SHARED_MODULE) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined SHARED_MODULE)"); +__static_condition_renaming("__static_condition_default_1031", "!(defined _FORTIFY_SOURCE) && (defined SHARED_MODULE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined SHARED_MODULE) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined SHARED_MODULE) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined SHARED_MODULE)"); +__static_condition_renaming("__static_condition_default_1032", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1033", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined SHARED_MODULE)"); +__static_condition_renaming("__static_condition_default_1034", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined SHARED_MODULE) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && (defined SHARED_MODULE)"); +__static_condition_renaming("__static_condition_default_1035", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined SHARED_MODULE)"); +__static_condition_renaming("__static_condition_default_1036", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined SHARED_MODULE)"); +__static_condition_renaming("__static_condition_default_1038", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc)"); -if (__static_condition_default_1102) -{ +if (__static_condition_default_1038) { __static_parse_error("Unable to parse"); } }; @@ -835,10 +794,10 @@ typedef ____loff_t_59 __loff_t_235;// L44 typedef ____loff_t_214 __loff_t_236;// L44 typedef ____loff_t_59 __loff_t_238;// L44 typedef ____loff_t_214 __loff_t_239;// L44 -typedef ____ino64_t_27 __ino_t_241;// L50 -typedef ____ino64_t_182 __ino_t_242;// L50 -typedef ____ino_t_26 __ino_t_244;// L48 -typedef ____ino_t_181 __ino_t_245;// L48 +typedef ____ino_t_26 __ino_t_241;// L48 +typedef ____ino_t_181 __ino_t_242;// L48 +typedef ____ino64_t_27 __ino_t_244;// L50 +typedef ____ino64_t_182 __ino_t_245;// L50 typedef ____dev_t_23 __dev_t_247;// L60 typedef ____dev_t_178 __dev_t_248;// L60 typedef ____gid_t_25 __gid_t_250;// L65 @@ -853,10 +812,10 @@ typedef ____uid_t_24 __uid_t_262;// L80 typedef ____uid_t_179 __uid_t_263;// L80 typedef ____uid_t_24 __uid_t_265;// L80 typedef ____uid_t_179 __uid_t_266;// L80 -typedef ____off64_t_31 __off_t_268;// L88 -typedef ____off64_t_186 __off_t_269;// L88 -typedef ____off_t_30 __off_t_271;// L86 -typedef ____off_t_185 __off_t_272;// L86 +typedef ____off_t_30 __off_t_268;// L86 +typedef ____off_t_185 __off_t_269;// L86 +typedef ____off64_t_31 __off_t_271;// L88 +typedef ____off64_t_186 __off_t_272;// L88 typedef ____pid_t_32 __pid_t_274;// L98 typedef ____pid_t_187 __pid_t_275;// L98 typedef ____pid_t_32 __pid_t_277;// L98 @@ -972,25 +931,23 @@ char ____size_462[4];// L132 int ____align_463;// L133 }; typedef union ____anonymous_tag_460_461 __pthread_mutexattr_t_464;// L130:L134 -typedef int (* (____compar_fn_t_572)) (const void *, const void *);// L741 -typedef long int __ptrdiff_t_798;// L143:L324 -typedef long unsigned int __size_t_799;// L177:L209 -struct ____locale_struct_877 { -struct __forward_tag_reference_876 * (____locales_878[13]);// L0 -const unsigned short int * (____ctype_b_879);// L33 -const int * (____ctype_tolower_880);// L34 -const int * (____ctype_toupper_881);// L35 -const char * (____names_882[13]);// L38 +typedef int (* (____compar_fn_t_574)) (const void *, const void *);// L741 +struct ____locale_struct_857 { +struct __forward_tag_reference_856 * (____locales_858[13]);// L0 +const unsigned short int * (____ctype_b_859);// L33 +const int * (____ctype_tolower_860);// L34 +const int * (____ctype_toupper_861);// L35 +const char * (____names_862[13]);// L38 }; -typedef struct ____locale_struct_877 * (____locale_t_883);// L27:L39 -typedef ____locale_t_883 __locale_t_884;// L42 +typedef struct ____locale_struct_857 * (____locale_t_863);// L27:L39 +typedef ____locale_t_863 __locale_t_864;// L42 struct __forward_tag_reference_438 { // generated union of struct variations union { }; }; -struct __forward_tag_reference_876 { // generated union of struct variations +struct __forward_tag_reference_856 { // generated union of struct variations union { }; }; @@ -1341,194 +1298,170 @@ extern unsigned short int * ((__seed48_482) (unsigned short int ____seed16v_48 extern void (__lcong48_484) (unsigned short int ____param_483[7]);// L406 extern void * ((__malloc_486) (__size_t_1 ____size_485));// L466 extern void * ((__malloc_487) (__size_t_1 ____size_485));// L466 -extern void * ((__calloc_490) (__size_t_1 ____nmemb_488, __size_t_1 ____size_489));// L468:L469 -extern void * ((__calloc_491) (__size_t_1 ____nmemb_488, __size_t_1 ____size_489));// L468:L469 -extern void * ((__realloc_494) (void * (____ptr_492), __size_t_1 ____size_493));// L480:L481 -extern void (__free_496) (void * (____ptr_495));// L483 -extern void (__cfree_498) (void * (____ptr_497));// L488 -extern void * ((__alloca_500) (__size_t_1 ____size_499));// L32 -extern void * ((__valloc_502) (__size_t_1 ____size_501));// L498 -extern void * ((__valloc_503) (__size_t_1 ____size_501));// L498 -extern int (__posix_memalign_507) (void * (* (____memptr_504)), __size_t_1 ____alignment_505, __size_t_1 ____size_506);// L503:L504 -extern int (__posix_memalign_508) (void * (* (____memptr_504)), __size_t_1 ____alignment_505, __size_t_1 ____size_506);// L503:L504 -extern void * ((__aligned_alloc_511) (__size_t_1 ____alignment_509, __size_t_1 ____size_510));// L509:L510 -extern void * ((__aligned_alloc_512) (__size_t_1 ____alignment_509, __size_t_1 ____size_510));// L509:L510 -extern void * ((__aligned_alloc_513) (__size_t_1 ____alignment_509, __size_t_1 ____size_510));// L509:L510 -extern void * ((__aligned_alloc_514) (__size_t_1 ____alignment_509, __size_t_1 ____size_510));// L509:L510 -extern void (__abort_515) (void );// L515 -extern int (__atexit_517) (void (* (____func_516)) (void ));// L519 -extern int (__at_quick_exit_519) (void (* (____func_518)) (void ));// L527 -extern int (__on_exit_524) (void (* (____func_522)) (int ____status_520, void * (____arg_521)), void * (____arg_523));// L535:L536 -extern void (__exit_526) (int ____status_525);// L543 -extern void (__exit_527) (int ____status_525);// L543 -extern void (__quick_exit_529) (int ____status_528);// L549 -extern void (___Exit_531) (int ____status_530);// L557 -extern char * ((__getenv_533) (const char * (____name_532)));// L564 -extern char * ((__getenv_534) (const char * (____name_532)));// L564 -extern int (__putenv_536) (char * (____string_535));// L578 -extern int (__setenv_540) (const char * (____name_537), const char * (____value_538), int ____replace_539);// L584:L585 -extern int (__unsetenv_542) (const char * (____name_541));// L588 -extern int (__clearenv_543) (void );// L595 -extern char * ((__mktemp_545) (char * (____template_544)));// L606 -extern int (__mkstemp_548) (char * (____template_546));// L619 -extern int (__mkstemp_550) (char * (____template_546));// L619 -extern int (__mkstemp_549) (char * (____template_547));// L622:L623 -extern int (__mkstemp_551) (char * (____template_547));// L622:L623 -extern int (__mkstemps_556) (char * (____template_552), int ____suffixlen_553);// L641 -extern int (__mkstemps_557) (char * (____template_554), int ____suffixlen_555);// L644:L645 -extern int (__mkstemps_558) (char * (____template_552), int ____suffixlen_553);// L641 -extern int (__mkstemps_559) (char * (____template_554), int ____suffixlen_555);// L644:L645 -extern char * ((__mkdtemp_561) (char * (____template_560)));// L662 -extern char * ((__mkdtemp_562) (char * (____template_560)));// L662 -extern int (__system_564) (const char * (____command_563));// L716 -extern int (__system_565) (const char * (____command_563));// L716 -extern int (__system_566) (const char * (____command_563));// L716 -extern int (__system_567) (const char * (____command_563));// L716 -extern char * ((__realpath_570) (const char * __restrict ____name_568, char * __restrict ____resolved_569));// L733:L734 -extern char * ((__realpath_571) (const char * __restrict ____name_568, char * __restrict ____resolved_569));// L733:L734 -// typedef moved to top of scope -extern void * ((__bsearch_580) (const void * (____key_573), const void * (____base_574), __size_t_1 ____nmemb_575, __size_t_1 ____size_576, ____compar_fn_t_572 ____compar_577));// L754:L756 -extern void * ((__bsearch_582) (const void * (____key_573), const void * (____base_574), __size_t_1 ____nmemb_575, __size_t_1 ____size_576, ____compar_fn_t_572 ____compar_577));// L754:L756 +extern void * ((__malloc_488) (__size_t_1 ____size_485));// L466 +extern void * ((__malloc_489) (__size_t_1 ____size_485));// L466 +extern void * ((__calloc_492) (__size_t_1 ____nmemb_490, __size_t_1 ____size_491));// L468:L469 +extern void * ((__calloc_493) (__size_t_1 ____nmemb_490, __size_t_1 ____size_491));// L468:L469 +extern void * ((__realloc_496) (void * (____ptr_494), __size_t_1 ____size_495));// L480:L481 +extern void (__free_498) (void * (____ptr_497));// L483 +extern void (__cfree_500) (void * (____ptr_499));// L488 +extern void * ((__alloca_502) (__size_t_1 ____size_501));// L32 +extern void * ((__valloc_504) (__size_t_1 ____size_503));// L498 +extern void * ((__valloc_505) (__size_t_1 ____size_503));// L498 +extern int (__posix_memalign_509) (void * (* (____memptr_506)), __size_t_1 ____alignment_507, __size_t_1 ____size_508);// L503:L504 +extern int (__posix_memalign_510) (void * (* (____memptr_506)), __size_t_1 ____alignment_507, __size_t_1 ____size_508);// L503:L504 +extern void * ((__aligned_alloc_513) (__size_t_1 ____alignment_511, __size_t_1 ____size_512));// L509:L510 +extern void * ((__aligned_alloc_514) (__size_t_1 ____alignment_511, __size_t_1 ____size_512));// L509:L510 +extern void * ((__aligned_alloc_515) (__size_t_1 ____alignment_511, __size_t_1 ____size_512));// L509:L510 +extern void * ((__aligned_alloc_516) (__size_t_1 ____alignment_511, __size_t_1 ____size_512));// L509:L510 +extern void (__abort_517) (void );// L515 +extern int (__atexit_519) (void (* (____func_518)) (void ));// L519 +extern int (__at_quick_exit_521) (void (* (____func_520)) (void ));// L527 +extern int (__on_exit_526) (void (* (____func_524)) (int ____status_522, void * (____arg_523)), void * (____arg_525));// L535:L536 +extern void (__exit_528) (int ____status_527);// L543 +extern void (__exit_529) (int ____status_527);// L543 +extern void (__quick_exit_531) (int ____status_530);// L549 +extern void (___Exit_533) (int ____status_532);// L557 +extern char * ((__getenv_535) (const char * (____name_534)));// L564 +extern char * ((__getenv_536) (const char * (____name_534)));// L564 +extern int (__putenv_538) (char * (____string_537));// L578 +extern int (__setenv_542) (const char * (____name_539), const char * (____value_540), int ____replace_541);// L584:L585 +extern int (__unsetenv_544) (const char * (____name_543));// L588 +extern int (__clearenv_545) (void );// L595 +extern char * ((__mktemp_547) (char * (____template_546)));// L606 +extern int (__mkstemp_550) (char * (____template_548));// L619 +extern int (__mkstemp_552) (char * (____template_548));// L619 +extern int (__mkstemp_551) (char * (____template_549));// L622:L623 +extern int (__mkstemp_553) (char * (____template_549));// L622:L623 +extern int (__mkstemps_558) (char * (____template_554), int ____suffixlen_555);// L641 +extern int (__mkstemps_559) (char * (____template_556), int ____suffixlen_557);// L644:L645 +extern int (__mkstemps_560) (char * (____template_554), int ____suffixlen_555);// L641 +extern int (__mkstemps_561) (char * (____template_556), int ____suffixlen_557);// L644:L645 +extern char * ((__mkdtemp_563) (char * (____template_562)));// L662 +extern char * ((__mkdtemp_564) (char * (____template_562)));// L662 +extern int (__system_566) (const char * (____command_565));// L716 +extern int (__system_567) (const char * (____command_565));// L716 +extern int (__system_568) (const char * (____command_565));// L716 +extern int (__system_569) (const char * (____command_565));// L716 +extern char * ((__realpath_572) (const char * __restrict ____name_570, char * __restrict ____resolved_571));// L733:L734 +extern char * ((__realpath_573) (const char * __restrict ____name_570, char * __restrict ____resolved_571));// L733:L734 +// typedef moved to top of scope +extern void * ((__bsearch_582) (const void * (____key_575), const void * (____base_576), __size_t_1 ____nmemb_577, __size_t_1 ____size_578, ____compar_fn_t_574 ____compar_579));// L754:L756 +extern void * ((__bsearch_584) (const void * (____key_575), const void * (____base_576), __size_t_1 ____nmemb_577, __size_t_1 ____size_578, ____compar_fn_t_574 ____compar_579));// L754:L756 /* no function due to type errors in the function prototype */ -extern void (__qsort_601) (void * (____base_596), __size_t_1 ____nmemb_597, __size_t_1 ____size_598, ____compar_fn_t_572 ____compar_599);// L764:L765 -extern void (__qsort_603) (void * (____base_596), __size_t_1 ____nmemb_597, __size_t_1 ____size_598, ____compar_fn_t_572 ____compar_599);// L764:L765 -extern int (__abs_606) (int ____x_605);// L774 -extern int (__abs_607) (int ____x_605);// L774 -extern long int (__labs_609) (long int ____x_608);// L775 -extern long int (__labs_610) (long int ____x_608);// L775 -extern long long int (__llabs_612) (long long int ____x_611);// L779:L780 -extern long long int (__llabs_613) (long long int ____x_611);// L779:L780 -extern __div_t_94 (__div_616) (int ____numer_614, int ____denom_615);// L788:L789 -extern __div_t_94 (__div_617) (int ____numer_614, int ____denom_615);// L788:L789 -extern __ldiv_t_99 (__ldiv_620) (long int ____numer_618, long int ____denom_619);// L790:L791 -extern __ldiv_t_99 (__ldiv_622) (long int ____numer_618, long int ____denom_619);// L790:L791 -extern __lldiv_t_104 (__lldiv_626) (long long int ____numer_624, long long int ____denom_625);// L796:L798 -extern __lldiv_t_104 (__lldiv_628) (long long int ____numer_624, long long int ____denom_625);// L796:L798 -extern char * ((__ecvt_634) (double ____value_630, int ____ndigit_631, int * __restrict ____decpt_632, int * __restrict ____sign_633));// L811:L812 -extern char * ((__ecvt_635) (double ____value_630, int ____ndigit_631, int * __restrict ____decpt_632, int * __restrict ____sign_633));// L811:L812 -extern char * ((__fcvt_640) (double ____value_636, int ____ndigit_637, int * __restrict ____decpt_638, int * __restrict ____sign_639));// L817:L818 -extern char * ((__fcvt_641) (double ____value_636, int ____ndigit_637, int * __restrict ____decpt_638, int * __restrict ____sign_639));// L817:L818 -extern char * ((__gcvt_645) (double ____value_642, int ____ndigit_643, char * (____buf_644)));// L823:L824 -extern char * ((__gcvt_646) (double ____value_642, int ____ndigit_643, char * (____buf_644)));// L823:L824 -extern char * ((__qecvt_651) (long double ____value_647, int ____ndigit_648, int * __restrict ____decpt_649, int * __restrict ____sign_650));// L829:L831 -extern char * ((__qecvt_652) (long double ____value_647, int ____ndigit_648, int * __restrict ____decpt_649, int * __restrict ____sign_650));// L829:L831 -extern char * ((__qfcvt_657) (long double ____value_653, int ____ndigit_654, int * __restrict ____decpt_655, int * __restrict ____sign_656));// L832:L834 -extern char * ((__qfcvt_658) (long double ____value_653, int ____ndigit_654, int * __restrict ____decpt_655, int * __restrict ____sign_656));// L832:L834 -extern char * ((__qgcvt_662) (long double ____value_659, int ____ndigit_660, char * (____buf_661)));// L835:L836 -extern char * ((__qgcvt_663) (long double ____value_659, int ____ndigit_660, char * (____buf_661)));// L835:L836 -extern int (__ecvt_r_670) (double ____value_664, int ____ndigit_665, int * __restrict ____decpt_666, int * __restrict ____sign_667, char * __restrict ____buf_668, __size_t_1 ____len_669);// L841:L843 -extern int (__fcvt_r_677) (double ____value_671, int ____ndigit_672, int * __restrict ____decpt_673, int * __restrict ____sign_674, char * __restrict ____buf_675, __size_t_1 ____len_676);// L844:L846 -extern int (__qecvt_r_684) (long double ____value_678, int ____ndigit_679, int * __restrict ____decpt_680, int * __restrict ____sign_681, char * __restrict ____buf_682, __size_t_1 ____len_683);// L848:L851 -extern int (__qfcvt_r_691) (long double ____value_685, int ____ndigit_686, int * __restrict ____decpt_687, int * __restrict ____sign_688, char * __restrict ____buf_689, __size_t_1 ____len_690);// L852:L855 -extern int (__mblen_694) (const char * (____s_692), __size_t_1 ____n_693);// L862 -extern int (__mblen_695) (const char * (____s_692), __size_t_1 ____n_693);// L862 -extern int (__mbtowc_699) (__wchar_t_2 * __restrict ____pwc_696, const char * __restrict ____s_697, __size_t_1 ____n_698);// L865:L866 -extern int (__wctomb_702) (char * (____s_700), __wchar_t_2 ____wchar_701);// L869 -extern __size_t_1 (__mbstowcs_706) (__wchar_t_2 * __restrict ____pwcs_703, const char * __restrict ____s_704, __size_t_1 ____n_705);// L873:L874 -extern __size_t_1 (__wcstombs_710) (char * __restrict ____s_707, const __wchar_t_2 * __restrict ____pwcs_708, __size_t_1 ____n_709);// L876:L878 -extern int (__rpmatch_713) (const char * (____response_711));// L887 -extern int (__rpmatch_712) (const char * (____response_711));// L887 -extern int (__getsubopt_718) (char * (* __restrict ____optionp_714), char * const * __restrict ____tokens_715, char * (* __restrict ____valuep_716));// L898:L901 -extern int (__getsubopt_717) (char * (* __restrict ____optionp_714), char * const * __restrict ____tokens_715, char * (* __restrict ____valuep_716));// L898:L901 -extern int (__getloadavg_721) (double ____loadavg_719[], int ____nelem_720);// L950:L951 +extern void (__qsort_603) (void * (____base_598), __size_t_1 ____nmemb_599, __size_t_1 ____size_600, ____compar_fn_t_574 ____compar_601);// L764:L765 +extern void (__qsort_605) (void * (____base_598), __size_t_1 ____nmemb_599, __size_t_1 ____size_600, ____compar_fn_t_574 ____compar_601);// L764:L765 +extern int (__abs_608) (int ____x_607);// L774 +extern int (__abs_609) (int ____x_607);// L774 +extern long int (__labs_611) (long int ____x_610);// L775 +extern long int (__labs_612) (long int ____x_610);// L775 +extern long long int (__llabs_614) (long long int ____x_613);// L779:L780 +extern long long int (__llabs_615) (long long int ____x_613);// L779:L780 +extern __div_t_94 (__div_618) (int ____numer_616, int ____denom_617);// L788:L789 +extern __div_t_94 (__div_619) (int ____numer_616, int ____denom_617);// L788:L789 +extern __ldiv_t_99 (__ldiv_622) (long int ____numer_620, long int ____denom_621);// L790:L791 +extern __ldiv_t_99 (__ldiv_624) (long int ____numer_620, long int ____denom_621);// L790:L791 +extern __lldiv_t_104 (__lldiv_628) (long long int ____numer_626, long long int ____denom_627);// L796:L798 +extern __lldiv_t_104 (__lldiv_630) (long long int ____numer_626, long long int ____denom_627);// L796:L798 +extern char * ((__ecvt_636) (double ____value_632, int ____ndigit_633, int * __restrict ____decpt_634, int * __restrict ____sign_635));// L811:L812 +extern char * ((__ecvt_637) (double ____value_632, int ____ndigit_633, int * __restrict ____decpt_634, int * __restrict ____sign_635));// L811:L812 +extern char * ((__fcvt_642) (double ____value_638, int ____ndigit_639, int * __restrict ____decpt_640, int * __restrict ____sign_641));// L817:L818 +extern char * ((__fcvt_643) (double ____value_638, int ____ndigit_639, int * __restrict ____decpt_640, int * __restrict ____sign_641));// L817:L818 +extern char * ((__gcvt_647) (double ____value_644, int ____ndigit_645, char * (____buf_646)));// L823:L824 +extern char * ((__gcvt_648) (double ____value_644, int ____ndigit_645, char * (____buf_646)));// L823:L824 +extern char * ((__qecvt_653) (long double ____value_649, int ____ndigit_650, int * __restrict ____decpt_651, int * __restrict ____sign_652));// L829:L831 +extern char * ((__qecvt_654) (long double ____value_649, int ____ndigit_650, int * __restrict ____decpt_651, int * __restrict ____sign_652));// L829:L831 +extern char * ((__qfcvt_659) (long double ____value_655, int ____ndigit_656, int * __restrict ____decpt_657, int * __restrict ____sign_658));// L832:L834 +extern char * ((__qfcvt_660) (long double ____value_655, int ____ndigit_656, int * __restrict ____decpt_657, int * __restrict ____sign_658));// L832:L834 +extern char * ((__qgcvt_664) (long double ____value_661, int ____ndigit_662, char * (____buf_663)));// L835:L836 +extern char * ((__qgcvt_665) (long double ____value_661, int ____ndigit_662, char * (____buf_663)));// L835:L836 +extern int (__ecvt_r_672) (double ____value_666, int ____ndigit_667, int * __restrict ____decpt_668, int * __restrict ____sign_669, char * __restrict ____buf_670, __size_t_1 ____len_671);// L841:L843 +extern int (__fcvt_r_679) (double ____value_673, int ____ndigit_674, int * __restrict ____decpt_675, int * __restrict ____sign_676, char * __restrict ____buf_677, __size_t_1 ____len_678);// L844:L846 +extern int (__qecvt_r_686) (long double ____value_680, int ____ndigit_681, int * __restrict ____decpt_682, int * __restrict ____sign_683, char * __restrict ____buf_684, __size_t_1 ____len_685);// L848:L851 +extern int (__qfcvt_r_693) (long double ____value_687, int ____ndigit_688, int * __restrict ____decpt_689, int * __restrict ____sign_690, char * __restrict ____buf_691, __size_t_1 ____len_692);// L852:L855 +extern int (__mblen_696) (const char * (____s_694), __size_t_1 ____n_695);// L862 +extern int (__mblen_697) (const char * (____s_694), __size_t_1 ____n_695);// L862 +extern int (__mbtowc_701) (__wchar_t_2 * __restrict ____pwc_698, const char * __restrict ____s_699, __size_t_1 ____n_700);// L865:L866 +extern int (__wctomb_704) (char * (____s_702), __wchar_t_2 ____wchar_703);// L869 +extern __size_t_1 (__mbstowcs_708) (__wchar_t_2 * __restrict ____pwcs_705, const char * __restrict ____s_706, __size_t_1 ____n_707);// L873:L874 +extern __size_t_1 (__wcstombs_712) (char * __restrict ____s_709, const __wchar_t_2 * __restrict ____pwcs_710, __size_t_1 ____n_711);// L876:L878 +extern int (__rpmatch_715) (const char * (____response_713));// L887 +extern int (__rpmatch_714) (const char * (____response_713));// L887 +extern int (__getsubopt_720) (char * (* __restrict ____optionp_716), char * const * __restrict ____tokens_717, char * (* __restrict ____valuep_718));// L898:L901 +extern int (__getsubopt_719) (char * (* __restrict ____optionp_716), char * const * __restrict ____tokens_717, char * (* __restrict ____valuep_718));// L898:L901 +extern int (__getloadavg_723) (double ____loadavg_721[], int ____nelem_722);// L950:L951 /* no function due to type errors in the function prototype */ -extern char * ((____realpath_chk_726) (const char * __restrict ____name_723, char * __restrict ____resolved_724, __size_t_1 ____resolvedlen_725));// L23:L25 -extern char * ((____realpath_alias_729) (const char * __restrict ____name_727, char * __restrict ____resolved_728));// L26:L28 -extern char * ((____realpath_chk_warn_733) (const char * __restrict ____name_730, char * __restrict ____resolved_731, __size_t_1 ____resolvedlen_732));// L29:L34 +extern char * ((____realpath_chk_728) (const char * __restrict ____name_725, char * __restrict ____resolved_726, __size_t_1 ____resolvedlen_727));// L23:L25 +extern char * ((____realpath_alias_731) (const char * __restrict ____name_729, char * __restrict ____resolved_730));// L26:L28 +extern char * ((____realpath_chk_warn_735) (const char * __restrict ____name_732, char * __restrict ____resolved_733, __size_t_1 ____resolvedlen_734));// L29:L34 /* no function due to type errors in the function prototype */ -extern int (____ptsname_r_chk_741) (int ____fd_737, char * (____buf_738), __size_t_1 ____buflen_739, __size_t_1 ____nreal_740);// L52:L53 -extern int (____ptsname_r_alias_745) (int ____fd_742, char * (____buf_743), __size_t_1 ____buflen_744);// L54:L56 -extern int (____ptsname_r_chk_warn_750) (int ____fd_746, char * (____buf_747), __size_t_1 ____buflen_748, __size_t_1 ____nreal_749);// L57:L61 +extern int (____ptsname_r_chk_743) (int ____fd_739, char * (____buf_740), __size_t_1 ____buflen_741, __size_t_1 ____nreal_742);// L52:L53 +extern int (____ptsname_r_alias_747) (int ____fd_744, char * (____buf_745), __size_t_1 ____buflen_746);// L54:L56 +extern int (____ptsname_r_chk_warn_752) (int ____fd_748, char * (____buf_749), __size_t_1 ____buflen_750, __size_t_1 ____nreal_751);// L57:L61 /* no function due to type errors in the function prototype */ -extern int (____wctomb_chk_758) (char * (____s_755), __wchar_t_2 ____wchar_756, __size_t_1 ____buflen_757);// L77:L78 -extern int (____wctomb_alias_761) (char * (____s_759), __wchar_t_2 ____wchar_760);// L79:L80 +extern int (____wctomb_chk_760) (char * (____s_757), __wchar_t_2 ____wchar_758, __size_t_1 ____buflen_759);// L77:L78 +extern int (____wctomb_alias_763) (char * (____s_761), __wchar_t_2 ____wchar_762);// L79:L80 /* no function due to type errors in the function prototype */ -extern __size_t_1 (____mbstowcs_chk_768) (__wchar_t_2 * __restrict ____dst_764, const char * __restrict ____src_765, __size_t_1 ____len_766, __size_t_1 ____dstlen_767);// L98:L100 -extern __size_t_1 (____mbstowcs_alias_772) (__wchar_t_2 * __restrict ____dst_769, const char * __restrict ____src_770, __size_t_1 ____len_771);// L101:L104 -extern __size_t_1 (____mbstowcs_chk_warn_777) (__wchar_t_2 * __restrict ____dst_773, const char * __restrict ____src_774, __size_t_1 ____len_775, __size_t_1 ____dstlen_776);// L105:L110 +extern __size_t_1 (____mbstowcs_chk_770) (__wchar_t_2 * __restrict ____dst_766, const char * __restrict ____src_767, __size_t_1 ____len_768, __size_t_1 ____dstlen_769);// L98:L100 +extern __size_t_1 (____mbstowcs_alias_774) (__wchar_t_2 * __restrict ____dst_771, const char * __restrict ____src_772, __size_t_1 ____len_773);// L101:L104 +extern __size_t_1 (____mbstowcs_chk_warn_779) (__wchar_t_2 * __restrict ____dst_775, const char * __restrict ____src_776, __size_t_1 ____len_777, __size_t_1 ____dstlen_778);// L105:L110 /* no function due to type errors in the function prototype */ -extern __size_t_1 (____wcstombs_chk_785) (char * __restrict ____dst_781, const __wchar_t_2 * __restrict ____src_782, __size_t_1 ____len_783, __size_t_1 ____dstlen_784);// L130:L132 -extern __size_t_1 (____wcstombs_alias_789) (char * __restrict ____dst_786, const __wchar_t_2 * __restrict ____src_787, __size_t_1 ____len_788);// L133:L136 -extern __size_t_1 (____wcstombs_chk_warn_794) (char * __restrict ____dst_790, const __wchar_t_2 * __restrict ____src_791, __size_t_1 ____len_792, __size_t_1 ____dstlen_793);// L137:L141 -// typedef moved to top of scope -// typedef moved to top of scope +extern __size_t_1 (____wcstombs_chk_787) (char * __restrict ____dst_783, const __wchar_t_2 * __restrict ____src_784, __size_t_1 ____len_785, __size_t_1 ____dstlen_786);// L130:L132 +extern __size_t_1 (____wcstombs_alias_791) (char * __restrict ____dst_788, const __wchar_t_2 * __restrict ____src_789, __size_t_1 ____len_790);// L133:L136 +extern __size_t_1 (____wcstombs_chk_warn_796) (char * __restrict ____dst_792, const __wchar_t_2 * __restrict ____src_793, __size_t_1 ____len_794, __size_t_1 ____dstlen_795);// L137:L141 /* no function due to type errors in the function prototype */ -extern void * ((__memmove_811) (void * (____dest_807), const void * (____src_808), __size_t_1 ____n_809));// L46:L47 -extern void * ((__memmove_812) (void * (____dest_807), const void * (____src_808), __size_t_799 ____n_810));// L46:L47 -extern void * ((__memset_824) (void * (____s_820), int ____c_821, __size_t_1 ____n_822));// L62 -extern void * ((__memset_825) (void * (____s_820), int ____c_821, __size_t_799 ____n_823));// L62 -extern void * ((__memset_826) (void * (____s_820), int ____c_821, __size_t_1 ____n_822));// L62 -extern void * ((__memset_827) (void * (____s_820), int ____c_821, __size_t_799 ____n_823));// L62 -extern int (__memcmp_832) (const void * (____s1_828), const void * (____s2_829), __size_t_1 ____n_830);// L65:L66 -extern int (__memcmp_833) (const void * (____s1_828), const void * (____s2_829), __size_t_799 ____n_831);// L65:L66 -extern void * ((__memchr_838) (const void * (____s_834), int ____c_835, __size_t_1 ____n_836));// L92:L93 -extern void * ((__memchr_839) (const void * (____s_834), int ____c_835, __size_t_799 ____n_837));// L92:L93 -extern char * ((__strcpy_842) (char * __restrict ____dest_840, const char * __restrict ____src_841));// L125:L126 -extern char * ((__strncpy_847) (char * __restrict ____dest_843, const char * __restrict ____src_844, __size_t_1 ____n_845));// L128:L130 -extern char * ((__strncpy_848) (char * __restrict ____dest_843, const char * __restrict ____src_844, __size_t_799 ____n_846));// L128:L130 -extern char * ((__strcat_851) (char * __restrict ____dest_849, const char * __restrict ____src_850));// L133:L134 -extern char * ((__strncat_856) (char * __restrict ____dest_852, const char * __restrict ____src_853, __size_t_1 ____n_854));// L136:L137 -extern char * ((__strncat_857) (char * __restrict ____dest_852, const char * __restrict ____src_853, __size_t_799 ____n_855));// L136:L137 -extern int (__strcmp_860) (const char * (____s1_858), const char * (____s2_859));// L140:L141 -extern int (__strncmp_865) (const char * (____s1_861), const char * (____s2_862), __size_t_1 ____n_863);// L143:L144 -extern int (__strncmp_866) (const char * (____s1_861), const char * (____s2_862), __size_t_799 ____n_864);// L143:L144 -extern int (__strcoll_869) (const char * (____s1_867), const char * (____s2_868));// L147:L148 -extern __size_t_1 (__strxfrm_874) (char * __restrict ____dest_870, const char * __restrict ____src_871, __size_t_1 ____n_872);// L150:L152 -extern __size_t_799 (__strxfrm_875) (char * __restrict ____dest_870, const char * __restrict ____src_871, __size_t_799 ____n_873);// L150:L152 -// typedef moved to top of scope -// typedef moved to top of scope -extern int (__strcoll_l_888) (const char * (____s1_885), const char * (____s2_886), ____locale_t_883 ____l_887);// L162:L163 -extern __size_t_1 (__strxfrm_l_894) (char * (____dest_889), const char * (____src_890), __size_t_1 ____n_891, ____locale_t_883 ____l_893);// L165:L166 -extern __size_t_799 (__strxfrm_l_895) (char * (____dest_889), const char * (____src_890), __size_t_799 ____n_892, ____locale_t_883 ____l_893);// L165:L166 -extern char * ((__strdup_897) (const char * (____s_896)));// L171:L172 -extern char * ((__strndup_901) (const char * (____string_898), __size_t_1 ____n_899));// L179:L180 -extern char * ((__strndup_902) (const char * (____string_898), __size_t_799 ____n_900));// L179:L180 -extern char * ((__strchr_905) (const char * (____s_903), int ____c_904));// L231:L232 -extern char * ((__strrchr_908) (const char * (____s_906), int ____c_907));// L258:L259 -extern __size_t_1 (__strcspn_911) (const char * (____s_909), const char * (____reject_910));// L280:L281 -extern __size_t_799 (__strcspn_912) (const char * (____s_909), const char * (____reject_910));// L280:L281 -extern __size_t_1 (__strspn_915) (const char * (____s_913), const char * (____accept_914));// L284:L285 -extern __size_t_799 (__strspn_916) (const char * (____s_913), const char * (____accept_914));// L284:L285 -extern char * ((__strpbrk_919) (const char * (____s_917), const char * (____accept_918)));// L310:L311 -extern char * ((__strstr_922) (const char * (____haystack_920), const char * (____needle_921)));// L337:L338 -extern char * ((__strtok_925) (char * __restrict ____s_923, const char * __restrict ____delim_924));// L343:L344 -extern char * ((____strtok_r_929) (char * __restrict ____s_926, const char * __restrict ____delim_927, char * (* __restrict ____save_ptr_928)));// L349:L352 -extern char * ((__strtok_r_933) (char * __restrict ____s_930, const char * __restrict ____delim_931, char * (* __restrict ____save_ptr_932)));// L354:L356 -extern __size_t_1 (__strlen_935) (const char * (____s_934));// L394:L395 -extern __size_t_799 (__strlen_936) (const char * (____s_934));// L394:L395 -extern __size_t_1 (__strlen_937) (const char * (____s_934));// L394:L395 -extern __size_t_799 (__strlen_938) (const char * (____s_934));// L394:L395 -extern __size_t_1 (__strnlen_942) (const char * (____string_939), __size_t_1 ____maxlen_940);// L401:L402 -extern __size_t_799 (__strnlen_943) (const char * (____string_939), __size_t_799 ____maxlen_941);// L401:L402 -extern char * ((__strerror_945) (int ____errnum_944));// L408 -extern char * ((__strerror_946) (int ____errnum_944));// L408 -extern int (__strerror_r_951) (int ____errnum_947, char * (____buf_948), __size_t_1 ____buflen_949);// L422:L424 -extern int (__strerror_r_952) (int ____errnum_947, char * (____buf_948), __size_t_799 ____buflen_950);// L422:L424 -extern char * ((__strerror_l_955) (int ____errnum_953, ____locale_t_883 ____l_954));// L440 -extern void (____bzero_959) (void * (____s_956), __size_t_1 ____n_957);// L446 -extern void (____bzero_960) (void * (____s_956), __size_t_799 ____n_958);// L446 -extern void (____bzero_961) (void * (____s_956), __size_t_1 ____n_957);// L446 -extern void (____bzero_962) (void * (____s_956), __size_t_799 ____n_958);// L446 -extern void (__bcopy_967) (const void * (____src_963), void * (____dest_964), __size_t_1 ____n_965);// L450:L451 -extern void (__bcopy_968) (const void * (____src_963), void * (____dest_964), __size_t_799 ____n_966);// L450:L451 -extern void (__bzero_972) (void * (____s_969), __size_t_1 ____n_970);// L454 -extern void (__bzero_973) (void * (____s_969), __size_t_799 ____n_971);// L454 -extern int (__bcmp_978) (const void * (____s1_974), const void * (____s2_975), __size_t_1 ____n_976);// L457:L458 -extern int (__bcmp_979) (const void * (____s1_974), const void * (____s2_975), __size_t_799 ____n_977);// L457:L458 -extern char * ((__index_982) (const char * (____s_980), int ____c_981));// L484:L485 -extern char * ((__rindex_985) (const char * (____s_983), int ____c_984));// L512:L513 -extern int (__ffs_987) (int ____i_986);// L518 -extern int (__strcasecmp_990) (const char * (____s1_988), const char * (____s2_989));// L529:L530 -extern int (__strncasecmp_995) (const char * (____s1_991), const char * (____s2_992), __size_t_1 ____n_993);// L533:L534 -extern int (__strncasecmp_996) (const char * (____s1_991), const char * (____s2_992), __size_t_799 ____n_994);// L533:L534 -extern char * ((__strsep_999) (char * (* __restrict ____stringp_997), const char * __restrict ____delim_998));// L552:L554 -extern char * ((__strsignal_1001) (int ____sig_1000));// L559 -extern char * ((____stpcpy_1004) (char * __restrict ____dest_1002, const char * __restrict ____src_1003));// L562:L563 -extern char * ((__stpcpy_1007) (char * __restrict ____dest_1005, const char * __restrict ____src_1006));// L564:L565 -extern char * ((____stpncpy_1012) (char * __restrict ____dest_1008, const char * __restrict ____src_1009, __size_t_1 ____n_1010));// L569:L571 -extern char * ((____stpncpy_1013) (char * __restrict ____dest_1008, const char * __restrict ____src_1009, __size_t_799 ____n_1011));// L569:L571 -extern char * ((__stpncpy_1018) (char * __restrict ____dest_1014, const char * __restrict ____src_1015, __size_t_1 ____n_1016));// L572:L574 -extern char * ((__stpncpy_1019) (char * __restrict ____dest_1014, const char * __restrict ____src_1015, __size_t_799 ____n_1017));// L572:L574 +extern void * ((__memmove_809) (void * (____dest_806), const void * (____src_807), __size_t_1 ____n_808));// L46:L47 +extern void * ((__memset_818) (void * (____s_815), int ____c_816, __size_t_1 ____n_817));// L62 +extern void * ((__memset_819) (void * (____s_815), int ____c_816, __size_t_1 ____n_817));// L62 +extern int (__memcmp_823) (const void * (____s1_820), const void * (____s2_821), __size_t_1 ____n_822);// L65:L66 +extern void * ((__memchr_827) (const void * (____s_824), int ____c_825, __size_t_1 ____n_826));// L92:L93 +extern char * ((__strcpy_830) (char * __restrict ____dest_828, const char * __restrict ____src_829));// L125:L126 +extern char * ((__strncpy_834) (char * __restrict ____dest_831, const char * __restrict ____src_832, __size_t_1 ____n_833));// L128:L130 +extern char * ((__strcat_837) (char * __restrict ____dest_835, const char * __restrict ____src_836));// L133:L134 +extern char * ((__strncat_841) (char * __restrict ____dest_838, const char * __restrict ____src_839, __size_t_1 ____n_840));// L136:L137 +extern int (__strcmp_844) (const char * (____s1_842), const char * (____s2_843));// L140:L141 +extern int (__strncmp_848) (const char * (____s1_845), const char * (____s2_846), __size_t_1 ____n_847);// L143:L144 +extern int (__strcoll_851) (const char * (____s1_849), const char * (____s2_850));// L147:L148 +extern __size_t_1 (__strxfrm_855) (char * __restrict ____dest_852, const char * __restrict ____src_853, __size_t_1 ____n_854);// L150:L152 +// typedef moved to top of scope +// typedef moved to top of scope +extern int (__strcoll_l_868) (const char * (____s1_865), const char * (____s2_866), ____locale_t_863 ____l_867);// L162:L163 +extern __size_t_1 (__strxfrm_l_873) (char * (____dest_869), const char * (____src_870), __size_t_1 ____n_871, ____locale_t_863 ____l_872);// L165:L166 +extern char * ((__strdup_875) (const char * (____s_874)));// L171:L172 +extern char * ((__strndup_878) (const char * (____string_876), __size_t_1 ____n_877));// L179:L180 +extern char * ((__strchr_881) (const char * (____s_879), int ____c_880));// L231:L232 +extern char * ((__strchr_882) (const char * (____s_879), int ____c_880));// L231:L232 +extern char * ((__strrchr_885) (const char * (____s_883), int ____c_884));// L258:L259 +extern __size_t_1 (__strcspn_888) (const char * (____s_886), const char * (____reject_887));// L280:L281 +extern __size_t_1 (__strspn_891) (const char * (____s_889), const char * (____accept_890));// L284:L285 +extern char * ((__strpbrk_894) (const char * (____s_892), const char * (____accept_893)));// L310:L311 +extern char * ((__strstr_897) (const char * (____haystack_895), const char * (____needle_896)));// L337:L338 +extern char * ((__strtok_900) (char * __restrict ____s_898, const char * __restrict ____delim_899));// L343:L344 +extern char * ((____strtok_r_904) (char * __restrict ____s_901, const char * __restrict ____delim_902, char * (* __restrict ____save_ptr_903)));// L349:L352 +extern char * ((__strtok_r_908) (char * __restrict ____s_905, const char * __restrict ____delim_906, char * (* __restrict ____save_ptr_907)));// L354:L356 +extern __size_t_1 (__strlen_910) (const char * (____s_909));// L394:L395 +extern __size_t_1 (__strlen_911) (const char * (____s_909));// L394:L395 +extern __size_t_1 (__strnlen_914) (const char * (____string_912), __size_t_1 ____maxlen_913);// L401:L402 +extern char * ((__strerror_916) (int ____errnum_915));// L408 +extern char * ((__strerror_917) (int ____errnum_915));// L408 +extern int (__strerror_r_921) (int ____errnum_918, char * (____buf_919), __size_t_1 ____buflen_920);// L422:L424 +extern char * ((__strerror_l_924) (int ____errnum_922, ____locale_t_863 ____l_923));// L440 +extern void (____bzero_927) (void * (____s_925), __size_t_1 ____n_926);// L446 +extern void (____bzero_928) (void * (____s_925), __size_t_1 ____n_926);// L446 +extern void (__bcopy_932) (const void * (____src_929), void * (____dest_930), __size_t_1 ____n_931);// L450:L451 +extern void (__bzero_935) (void * (____s_933), __size_t_1 ____n_934);// L454 +extern int (__bcmp_939) (const void * (____s1_936), const void * (____s2_937), __size_t_1 ____n_938);// L457:L458 +extern char * ((__index_942) (const char * (____s_940), int ____c_941));// L484:L485 +extern char * ((__rindex_945) (const char * (____s_943), int ____c_944));// L512:L513 +extern int (__ffs_947) (int ____i_946);// L518 +extern int (__strcasecmp_950) (const char * (____s1_948), const char * (____s2_949));// L529:L530 +extern int (__strncasecmp_954) (const char * (____s1_951), const char * (____s2_952), __size_t_1 ____n_953);// L533:L534 +extern char * ((__strsep_957) (char * (* __restrict ____stringp_955), const char * __restrict ____delim_956));// L552:L554 +extern char * ((__strsignal_959) (int ____sig_958));// L559 +extern char * ((____stpcpy_962) (char * __restrict ____dest_960, const char * __restrict ____src_961));// L562:L563 +extern char * ((__stpcpy_965) (char * __restrict ____dest_963, const char * __restrict ____src_964));// L564:L565 +extern char * ((____stpncpy_969) (char * __restrict ____dest_966, const char * __restrict ____src_967, __size_t_1 ____n_968));// L569:L571 +extern char * ((__stpncpy_973) (char * __restrict ____dest_970, const char * __restrict ____src_971, __size_t_1 ____n_972));// L572:L574 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ @@ -1536,44 +1469,40 @@ extern char * ((__stpncpy_1019) (char * __restrict ____dest_1014, const char /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern char * ((____stpncpy_chk_1061) (char * (____dest_1055), const char * (____src_1056), __size_t_1 ____n_1057, __size_t_1 ____destlen_1059));// L130:L131 -extern char * ((____stpncpy_chk_1062) (char * (____dest_1055), const char * (____src_1056), __size_t_799 ____n_1058, __size_t_799 ____destlen_1060));// L130:L131 -extern char * ((____stpncpy_alias_1067) (char * (____dest_1063), const char * (____src_1064), __size_t_1 ____n_1065));// L132:L133 -extern char * ((____stpncpy_alias_1068) (char * (____dest_1063), const char * (____src_1064), __size_t_799 ____n_1066));// L132:L133 +extern char * ((____stpncpy_chk_1002) (char * (____dest_998), const char * (____src_999), __size_t_1 ____n_1000, __size_t_1 ____destlen_1001));// L130:L131 +extern char * ((____stpncpy_alias_1006) (char * (____dest_1003), const char * (____src_1004), __size_t_1 ____n_1005));// L132:L133 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -void (__ssl_init_ModuleKill_1087) () { +void (__ssl_init_ModuleKill_1023) () { -if (__static_condition_default_1089) { +if (__static_condition_default_1025) { { { -char * (__sc_1084)= malloc (sizeof(char) * 45);// L6 +char * (__sc_1018)= malloc (sizeof(char) * 45);// L6 -if (__static_condition_default_1086) { -__static_type_error("invalid declaration of sc under this presence condition"); -} +char * (__sc_1019)= malloc (sizeof(char) * 45);// L6 -if (__static_condition_default_1090) { - __strcpy_842 ( __sc_1084 ,"something") ; // L9 +if (__static_condition_default_1026) { + __strcpy_830 ( __sc_1018 ,"something") ; // L9 } -if (__static_condition_default_1091) { -__static_type_error("type error") ; // L9 +if (__static_condition_default_1027) { + __strcpy_830 ( __sc_1019 ,"something") ; // L9 } -if (__static_condition_default_1092) { -free ( __sc_1084 ) ; // L12 +if (__static_condition_default_1028) { +free ( __sc_1018 ) ; // L12 } -if (__static_condition_default_1093) { +if (__static_condition_default_1029) { __static_type_error("type error") ; // L12 } -if (__static_condition_default_1094) { +if (__static_condition_default_1030) { return ;// L16 } -if (__static_condition_default_1095) { +if (__static_condition_default_1031) { return ;// L16 } } @@ -1582,32 +1511,30 @@ return ;// L16 } } -void (__ssl_init_ModuleKill_1088) () { +void (__ssl_init_ModuleKill_1024) () { -if (__static_condition_default_1096) { +if (__static_condition_default_1032) { { { -char * (__sc_1085)= malloc (sizeof(char) * 45);// L6 +char * (__sc_1020)= malloc (sizeof(char) * 45);// L6 -if (__static_condition_default_1086) { -__static_type_error("invalid declaration of sc under this presence condition"); -} +char * (__sc_1021)= malloc (sizeof(char) * 45);// L6 __static_type_error("type error") ; // L9 -if (__static_condition_default_1097) { -free ( __sc_1085 ) ; // L12 +if (__static_condition_default_1033) { +free ( __sc_1020 ) ; // L12 } -if (__static_condition_default_1098) { +if (__static_condition_default_1034) { __static_type_error("type error") ; // L12 } -if (__static_condition_default_1099) { +if (__static_condition_default_1035) { return ;// L16 } -if (__static_condition_default_1100) { +if (__static_condition_default_1036) { return ;// L16 } } @@ -1616,18 +1543,18 @@ return ;// L16 } } -int (__main_1101) (void ) { +int (__main_1037) (void ) { { { -if (__static_condition_default_1089) { - __ssl_init_ModuleKill_1087 ( ) ; // L21 +if (__static_condition_default_1025) { + __ssl_init_ModuleKill_1023 ( ) ; // L21 } -if (__static_condition_default_1096) { - __ssl_init_ModuleKill_1088 ( ) ; // L21 +if (__static_condition_default_1032) { + __ssl_init_ModuleKill_1024 ( ) ; // L21 } return 0 ;// L22 } diff --git a/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.clangres b/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.clangres index e7f2f34e..7b33cf35 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.clangres @@ -1,7 +1,16 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c:1570:5: warning: Potential leak of memory pointed to by '__sc_1084' [unix.Malloc] -if (__static_condition_default_1093) { +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c:1496:5: warning: Potential leak of memory pointed to by '__sc_1019' [unix.Malloc] +if (__static_condition_default_1028) { ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c:1604:5: warning: Potential leak of memory pointed to by '__sc_1085' [unix.Malloc] -if (__static_condition_default_1098) { +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c:1499:5: warning: Potential leak of memory pointed to by '__sc_1018' [unix.Malloc] +if (__static_condition_default_1029) { ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -2 warnings generated. +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c:1525:10: warning: Value stored to '__sc_1021' during its initialization is never read [deadcode.DeadStores] +char * (__sc_1021)= malloc (sizeof(char) * 45);// L6 + ^~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c:1527:1: warning: Potential leak of memory pointed to by '__sc_1021' [unix.Malloc] +__static_type_error("type error") ; // L9 +^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c:1531:5: warning: Potential leak of memory pointed to by '__sc_1020' [unix.Malloc] +if (__static_condition_default_1034) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +5 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.inferres index 11be972e..91e523d9 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.inferres +++ b/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.inferres @@ -1,2 +1,14 @@ - No issues found +APACHE/2a6cbfa00e0.desugared.c:1525: error: Dead Store + The value written to &__sc_1021 (type char*) is never used. + 1523. char * (__sc_1020)= malloc (sizeof(char) * 45);// L6 + 1524. + 1525. char * (__sc_1021)= malloc (sizeof(char) * 45);// L6 + ^ + 1526. + 1527. __static_type_error("type error") ; // L9 + + +Found 1 issue + Issue Type(ISSUED_TYPE_ID): # + Dead Store(DEAD_STORE): 1 diff --git a/fonda/cpp_testsuite/varBugs/APACHE/3407eccc321.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/3407eccc321.desugared.c index 30cd8cd3..02b42f05 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/3407eccc321.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/3407eccc321.desugared.c @@ -7,352 +7,225 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_402; -extern const bool __static_condition_default_1754; -extern const bool __static_condition_default_1164; -extern const bool __static_condition_default_1152; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_1402; -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_1475; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_549; +extern const bool __static_condition_default_567; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_1404; +extern const bool __static_condition_default_502; +extern const bool __static_condition_default_870; +extern const bool __static_condition_default_579; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_772; +extern const bool __static_condition_default_743; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_612; +extern const bool __static_condition_default_232; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_948; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_358; +extern const bool __static_condition_default_326; +extern const bool __static_condition_default_474; +extern const bool __static_condition_default_984; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_833; +extern const bool __static_condition_default_294; +extern const bool __static_condition_default_429; extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_2051; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_1388; -extern const bool __static_condition_default_2054; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_1428; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_1814; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_780; -extern const bool __static_condition_default_787; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_1341; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_412; -extern const bool __static_condition_default_789; -extern const bool __static_condition_default_1773; -extern const bool __static_condition_default_755; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_317; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_357; -extern const bool __static_condition_default_955; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_2045; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_701; -extern const bool __static_condition_default_646; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_1165; -extern const bool __static_condition_default_419; -extern const bool __static_condition_default_685; -extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_891; -extern const bool __static_condition_default_914; -extern const bool __static_condition_default_315; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_1564; -extern const bool __static_condition_default_1785; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_1458; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_2043; -extern const bool __static_condition_default_521; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_1365; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_1556; -extern const bool __static_condition_default_1436; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_53; -extern const bool __static_condition_default_408; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_1576; -extern const bool __static_condition_default_1787; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_761; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_1810; -extern const bool __static_condition_default_1944; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_752; +extern const bool __static_condition_default_451; +extern const bool __static_condition_default_533; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_893; extern const bool __static_condition_default_991; -extern const bool __static_condition_default_1416; -extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_583; -extern const bool __static_condition_default_634; +extern const bool __static_condition_default_496; +extern const bool __static_condition_default_648; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_459; +extern const bool __static_condition_default_435; +extern const bool __static_condition_default_1606; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_804; +extern const bool __static_condition_default_976; +extern const bool __static_condition_default_446; +extern const bool __static_condition_default_961; +extern const bool __static_condition_default_457; +extern const bool __static_condition_default_969; +extern const bool __static_condition_default_349; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_330; +extern const bool __static_condition_default_304; +extern const bool __static_condition_default_941; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_672; +extern const bool __static_condition_default_905; +extern const bool __static_condition_default_586; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_694; +extern const bool __static_condition_default_642; +extern const bool __static_condition_default_280; extern const bool __static_condition_default_817; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_187; -extern const bool __static_condition_default_2050; -extern const bool __static_condition_default_803; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_645; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_1531; -extern const bool __static_condition_default_388; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_2044; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_559; -extern const bool __static_condition_default_1568; -extern const bool __static_condition_default_1753; -extern const bool __static_condition_default_1345; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_386; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_1349; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_1453; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_1816; -extern const bool __static_condition_default_1385; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_1381; -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_613; -extern const bool __static_condition_default_1377; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_461; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_1532; -extern const bool __static_condition_default_2046; -extern const bool __static_condition_default_747; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_769; +extern const bool __static_condition_default_924; +extern const bool __static_condition_default_332; extern const bool __static_condition_default_649; -extern const bool __static_condition_default_1750; +extern const bool __static_condition_default_507; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_379; +extern const bool __static_condition_default_595; +extern const bool __static_condition_default_1016; +extern const bool __static_condition_default_1383; +extern const bool __static_condition_default_421; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_729; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_696; +extern const bool __static_condition_default_276; +extern const bool __static_condition_default_639; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_338; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_739; +extern const bool __static_condition_default_962; +extern const bool __static_condition_default_1167; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_556; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_1397; +extern const bool __static_condition_default_482; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_454; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_508; +extern const bool __static_condition_default_1423; +extern const bool __static_condition_default_784; +extern const bool __static_condition_default_162; extern const bool __static_condition_default_864; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_1485; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_537; +extern const bool __static_condition_default_790; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_453; +extern const bool __static_condition_default_118; +extern const bool __static_condition_default_762; +extern const bool __static_condition_default_720; +extern const bool __static_condition_default_517; +extern const bool __static_condition_default_933; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_500; +extern const bool __static_condition_default_706; +extern const bool __static_condition_default_400; +extern const bool __static_condition_default_624; +extern const bool __static_condition_default_641; +extern const bool __static_condition_default_1006; +extern const bool __static_condition_default_935; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_356; +extern const bool __static_condition_default_719; +extern const bool __static_condition_default_733; +extern const bool __static_condition_default_226; +extern const bool __static_condition_default_657; extern const bool __static_condition_default_708; -extern const bool __static_condition_default_957; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_1515; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_1789; -extern const bool __static_condition_default_702; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_1791; -extern const bool __static_condition_default_872; -extern const bool __static_condition_default_1489; -extern const bool __static_condition_default_1373; -extern const bool __static_condition_default_564; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_1405; -extern const bool __static_condition_default_488; -extern const bool __static_condition_default_1432; -extern const bool __static_condition_default_1808; -extern const bool __static_condition_default_2048; -extern const bool __static_condition_default_1560; -extern const bool __static_condition_default_1409; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_367; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_662; +extern const bool __static_condition_default_318; +extern const bool __static_condition_default_603; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_931; +extern const bool __static_condition_default_1017; +extern const bool __static_condition_default_351; +extern const bool __static_condition_default_370; +extern const bool __static_condition_default_889; +extern const bool __static_condition_default_336; +extern const bool __static_condition_default_749; +extern const bool __static_condition_default_501; +extern const bool __static_condition_default_766; extern const bool __static_condition_default_809; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_907; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_929; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_638; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_842; -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_887; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_1516; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_347; -extern const bool __static_condition_default_313; -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_1775; -extern const bool __static_condition_default_198; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_76; -extern const bool __static_condition_default_217; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_248; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_380; -extern const bool __static_condition_default_848; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_858; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_753; -extern const bool __static_condition_default_846; -extern const bool __static_condition_default_438; -extern const bool __static_condition_default_1353; -extern const bool __static_condition_default_1357; -extern const bool __static_condition_default_2042; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_1369; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_894; -extern const bool __static_condition_default_590; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_382; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_693; -extern const bool __static_condition_default_956; +extern const bool __static_condition_default_1425; +extern const bool __static_condition_default_310; +extern const bool __static_condition_default_540; +extern const bool __static_condition_default_480; +extern const bool __static_condition_default_577; +extern const bool __static_condition_default_448; +extern const bool __static_condition_default_227; +extern const bool __static_condition_default_551; +extern const bool __static_condition_default_718; +extern const bool __static_condition_default_296; extern const bool __static_condition_default_801; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_677; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_1315; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_2047; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_875; -extern const bool __static_condition_default_1459; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_670; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_311; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_170; +extern const bool __static_condition_default_968; extern const bool __static_condition_default_813; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_1572; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_568; -extern const bool __static_condition_default_1361; +extern const bool __static_condition_default_236; +extern const bool __static_condition_default_906; +extern const bool __static_condition_default_225; +extern const bool __static_condition_default_495; +extern const bool __static_condition_default_575; +extern const bool __static_condition_default_898; +extern const bool __static_condition_default_328; +extern const bool __static_condition_default_716; +extern const bool __static_condition_default_470; +extern const bool __static_condition_default_820; +extern const bool __static_condition_default_1406; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_714; +extern const bool __static_condition_default_798; +extern const bool __static_condition_default_999; +extern const bool __static_condition_default_688; +extern const bool __static_condition_default_343; +extern const bool __static_condition_default_904; +extern const bool __static_condition_default_1605; +extern const bool __static_condition_default_381; +extern const bool __static_condition_default_695; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_1396; +extern const bool __static_condition_default_954; +extern const bool __static_condition_default_1604; +extern const bool __static_condition_default_1608; +extern const bool __static_condition_default_300; +extern const bool __static_condition_default_562; +extern const bool __static_condition_default_640; +extern const bool __static_condition_default_1538; +extern const bool __static_condition_default_374; +extern const bool __static_condition_default_707; +extern const bool __static_condition_default_528; +extern const bool __static_condition_default_1431; +extern const bool __static_condition_default_1381; +extern const bool __static_condition_default_977; +extern const bool __static_condition_default_882; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_778; +extern const bool __static_condition_default_74; +extern const bool __static_condition_default_394; +extern const bool __static_condition_default_983; +extern const bool __static_condition_default_627; +extern const bool __static_condition_default_254; +extern const bool __static_condition_default_588; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_320; +extern const bool __static_condition_default_680; +extern const bool __static_condition_default_794; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_774; +extern const bool __static_condition_default_917; +extern const bool __static_condition_default_610; +extern const bool __static_condition_default_234; +extern const bool __static_condition_default_230; +extern const bool __static_condition_default_308; +extern const bool __static_condition_default_1429; +extern const bool __static_condition_default_992; +extern const bool __static_condition_default_626; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_449; +extern const bool __static_condition_default_605; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_165; +extern const bool __static_condition_default_953; +extern const bool __static_condition_default_655; +extern const bool __static_condition_default_497; extern const bool __static_condition_default_393; -extern const bool __static_condition_default_793; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_1498; -extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_1774; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_512; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_1776; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_431; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_1552; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_963; -extern const bool __static_condition_default_709; -extern const bool __static_condition_default_2052; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_333; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_1159; -extern const bool __static_condition_default_1395; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_543; -extern const bool __static_condition_default_1391; -extern const bool __static_condition_default_779; -extern const bool __static_condition_default_1398; -extern const bool __static_condition_default_1420; -extern const bool __static_condition_default_290; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_536; -extern const bool __static_condition_default_632; -extern const bool __static_condition_default_2040; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_2053; -extern const bool __static_condition_default_2041; -extern const bool __static_condition_default_1424; -extern const bool __static_condition_default_1749; -extern const bool __static_condition_default_204; +extern const bool __static_condition_default_881; +extern const bool __static_condition_default_256; +extern const bool __static_condition_default_855; +extern const bool __static_condition_default_161; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -404,1042 +277,677 @@ __static_renaming("____ssize_t_49", "__ssize_t"); __static_renaming("____syscall_slong_t_50", "__syscall_slong_t"); __static_renaming("____syscall_ulong_t_51", "__syscall_ulong_t"); __static_renaming("____loff_t_52", "__loff_t"); -__static_renaming("____qaddr_t_54", "__qaddr_t"); -__static_renaming("____caddr_t_55", "__caddr_t"); -__static_renaming("____intptr_t_56", "__intptr_t"); -__static_renaming("____socklen_t_57", "__socklen_t"); -__static_renaming("__FILE_59", "FILE"); -__static_renaming("____FILE_60", "__FILE"); -__static_renaming("____mbstate_t_69", "__mbstate_t"); -__static_renaming("___G_fpos_t_77", "_G_fpos_t"); -__static_renaming("___G_fpos64_t_85", "_G_fpos64_t"); -__static_renaming("____gnuc_va_list_86", "__gnuc_va_list"); -__static_renaming("___IO_lock_t_88", "_IO_lock_t"); -__static_renaming("___IO_FILE_171", "_IO_FILE"); -__static_renaming("___IO_FILE_172", "_IO_FILE"); -__static_renaming("___IO_2_1_stdin__175", "_IO_2_1_stdin_"); -__static_renaming("___IO_2_1_stdout__176", "_IO_2_1_stdout_"); -__static_renaming("___IO_2_1_stderr__177", "_IO_2_1_stderr_"); -__static_renaming("____io_read_fn_181", "__io_read_fn"); -__static_renaming("____io_write_fn_186", "__io_write_fn"); -__static_renaming("____io_seek_fn_192", "__io_seek_fn"); -__static_renaming("____io_close_fn_195", "__io_close_fn"); -__static_renaming("____underflow_196", "__underflow"); -__static_renaming("____underflow_197", "__underflow"); -__static_renaming("____uflow_199", "__uflow"); -__static_renaming("____uflow_200", "__uflow"); -__static_renaming("____overflow_202", "__overflow"); -__static_renaming("____overflow_203", "__overflow"); -__static_renaming("___IO_getc_208", "_IO_getc"); -__static_renaming("___IO_getc_209", "_IO_getc"); -__static_renaming("___IO_putc_215", "_IO_putc"); -__static_renaming("___IO_putc_216", "_IO_putc"); -__static_renaming("___IO_feof_221", "_IO_feof"); -__static_renaming("___IO_feof_222", "_IO_feof"); -__static_renaming("___IO_ferror_227", "_IO_ferror"); -__static_renaming("___IO_ferror_228", "_IO_ferror"); -__static_renaming("___IO_peekc_locked_233", "_IO_peekc_locked"); -__static_renaming("___IO_peekc_locked_234", "_IO_peekc_locked"); -__static_renaming("___IO_flockfile_236", "_IO_flockfile"); -__static_renaming("___IO_flockfile_237", "_IO_flockfile"); -__static_renaming("___IO_funlockfile_239", "_IO_funlockfile"); -__static_renaming("___IO_funlockfile_240", "_IO_funlockfile"); -__static_renaming("___IO_ftrylockfile_242", "_IO_ftrylockfile"); -__static_renaming("___IO_ftrylockfile_243", "_IO_ftrylockfile"); -__static_renaming("___IO_vfscanf_245", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_247", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_251", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_252", "_IO_vfscanf"); -__static_renaming("___IO_vfprintf_254", "_IO_vfprintf"); -__static_renaming("___IO_vfprintf_256", "_IO_vfprintf"); -__static_renaming("___IO_vfprintf_260", "_IO_vfprintf"); -__static_renaming("___IO_padn_261", "_IO_padn"); -__static_renaming("___IO_padn_262", "_IO_padn"); -__static_renaming("___IO_sgetn_265", "_IO_sgetn"); -__static_renaming("___IO_sgetn_266", "_IO_sgetn"); -__static_renaming("___IO_seekoff_268", "_IO_seekoff"); -__static_renaming("___IO_seekoff_269", "_IO_seekoff"); -__static_renaming("___IO_seekpos_272", "_IO_seekpos"); -__static_renaming("___IO_seekpos_273", "_IO_seekpos"); -__static_renaming("___IO_free_backup_area_276", "_IO_free_backup_area"); -__static_renaming("___IO_free_backup_area_277", "_IO_free_backup_area"); -__static_renaming("__va_list_279", "va_list"); -__static_renaming("__off_t_281", "off_t"); -__static_renaming("__off_t_283", "off_t"); -__static_renaming("__ssize_t_285", "ssize_t"); -__static_renaming("__fpos_t_287", "fpos_t"); -__static_renaming("__fpos_t_289", "fpos_t"); -__static_renaming("__stdin_291", "stdin"); -__static_renaming("__stdin_292", "stdin"); -__static_renaming("__stdout_294", "stdout"); -__static_renaming("__stdout_295", "stdout"); -__static_renaming("__stderr_297", "stderr"); -__static_renaming("__stderr_298", "stderr"); -__static_renaming("__remove_301", "remove"); -__static_renaming("__rename_304", "rename"); -__static_renaming("__renameat_309", "renameat"); -__static_renaming("__tmpfile_310", "tmpfile"); -__static_renaming("__tmpfile_312", "tmpfile"); -__static_renaming("__tmpfile_314", "tmpfile"); -__static_renaming("__tmpfile_316", "tmpfile"); -__static_renaming("__tmpnam_319", "tmpnam"); -__static_renaming("__tmpnam_320", "tmpnam"); -__static_renaming("__tmpnam_r_322", "tmpnam_r"); -__static_renaming("__tmpnam_r_323", "tmpnam_r"); -__static_renaming("__tempnam_326", "tempnam"); -__static_renaming("__tempnam_327", "tempnam"); -__static_renaming("__fclose_330", "fclose"); -__static_renaming("__fclose_332", "fclose"); -__static_renaming("__fflush_336", "fflush"); -__static_renaming("__fflush_unlocked_340", "fflush_unlocked"); -__static_renaming("__fopen_344", "fopen"); -__static_renaming("__fopen_346", "fopen"); -__static_renaming("__fopen_354", "fopen"); -__static_renaming("__fopen_356", "fopen"); -__static_renaming("__freopen_362", "freopen"); -__static_renaming("__freopen_364", "freopen"); -__static_renaming("__freopen_366", "freopen"); -__static_renaming("__freopen_368", "freopen"); -__static_renaming("__fdopen_372", "fdopen"); -__static_renaming("__fdopen_374", "fdopen"); -__static_renaming("__fmemopen_379", "fmemopen"); -__static_renaming("__fmemopen_381", "fmemopen"); -__static_renaming("__open_memstream_385", "open_memstream"); -__static_renaming("__open_memstream_387", "open_memstream"); -__static_renaming("__setbuf_392", "setbuf"); -__static_renaming("__setbuf_394", "setbuf"); -__static_renaming("__setvbuf_401", "setvbuf"); -__static_renaming("__setbuffer_407", "setbuffer"); -__static_renaming("__setlinebuf_411", "setlinebuf"); -__static_renaming("__fprintf_416", "fprintf"); -__static_renaming("__fprintf_418", "fprintf"); -__static_renaming("__printf_421", "printf"); -__static_renaming("__sprintf_424", "sprintf"); -__static_renaming("__vfprintf_430", "vfprintf"); -__static_renaming("__vprintf_437", "vprintf"); -__static_renaming("__vsprintf_443", "vsprintf"); -__static_renaming("__snprintf_448", "snprintf"); -__static_renaming("__vsnprintf_454", "vsnprintf"); -__static_renaming("__vdprintf_460", "vdprintf"); -__static_renaming("__dprintf_464", "dprintf"); -__static_renaming("__fscanf_468", "fscanf"); -__static_renaming("__fscanf_470", "fscanf"); -__static_renaming("__fscanf_472", "fscanf"); -__static_renaming("__fscanf_474", "fscanf"); -__static_renaming("__scanf_477", "scanf"); -__static_renaming("__scanf_478", "scanf"); -__static_renaming("__sscanf_481", "sscanf"); -__static_renaming("__vfscanf_509", "vfscanf"); -__static_renaming("__vfscanf_513", "vfscanf"); -__static_renaming("__vscanf_520", "vscanf"); -__static_renaming("__vscanf_522", "vscanf"); -__static_renaming("__vsscanf_528", "vsscanf"); -__static_renaming("__fgetc_563", "fgetc"); -__static_renaming("__getc_567", "getc"); -__static_renaming("__getchar_569", "getchar"); -__static_renaming("__getc_unlocked_572", "getc_unlocked"); -__static_renaming("__getchar_unlocked_574", "getchar_unlocked"); -__static_renaming("__fgetc_unlocked_577", "fgetc_unlocked"); -__static_renaming("__fputc_582", "fputc"); -__static_renaming("__fputc_584", "fputc"); -__static_renaming("__putc_589", "putc"); -__static_renaming("__putchar_592", "putchar"); -__static_renaming("__fputc_unlocked_596", "fputc_unlocked"); -__static_renaming("__putc_unlocked_601", "putc_unlocked"); -__static_renaming("__putchar_unlocked_604", "putchar_unlocked"); -__static_renaming("__getw_607", "getw"); -__static_renaming("__putw_612", "putw"); -__static_renaming("__fgets_618", "fgets"); -__static_renaming("__fgets_620", "fgets"); -__static_renaming("__fgets_622", "fgets"); -__static_renaming("__fgets_624", "fgets"); -__static_renaming("____getdelim_631", "__getdelim"); -__static_renaming("____getdelim_635", "__getdelim"); -__static_renaming("__getdelim_644", "getdelim"); -__static_renaming("__getdelim_648", "getdelim"); -__static_renaming("__getline_656", "getline"); -__static_renaming("__getline_660", "getline"); -__static_renaming("__fputs_667", "fputs"); -__static_renaming("__fputs_669", "fputs"); -__static_renaming("__puts_672", "puts"); -__static_renaming("__ungetc_676", "ungetc"); -__static_renaming("__fseek_714", "fseek"); -__static_renaming("__fseek_716", "fseek"); -__static_renaming("__ftell_720", "ftell"); -__static_renaming("__ftell_722", "ftell"); -__static_renaming("__rewind_726", "rewind"); -__static_renaming("__fseeko_733", "fseeko"); -__static_renaming("__fseeko_744", "fseeko"); -__static_renaming("__ftello_750", "ftello"); -__static_renaming("__ftello_754", "ftello"); -__static_renaming("__ftello_758", "ftello"); -__static_renaming("__fgetpos_766", "fgetpos"); -__static_renaming("__fgetpos_778", "fgetpos"); -__static_renaming("__fsetpos_786", "fsetpos"); -__static_renaming("__fsetpos_790", "fsetpos"); -__static_renaming("__clearerr_796", "clearerr"); -__static_renaming("__feof_800", "feof"); -__static_renaming("__feof_802", "feof"); -__static_renaming("__ferror_806", "ferror"); -__static_renaming("__ferror_808", "ferror"); -__static_renaming("__clearerr_unlocked_812", "clearerr_unlocked"); -__static_renaming("__feof_unlocked_816", "feof_unlocked"); -__static_renaming("__feof_unlocked_818", "feof_unlocked"); -__static_renaming("__ferror_unlocked_822", "ferror_unlocked"); -__static_renaming("__ferror_unlocked_824", "ferror_unlocked"); -__static_renaming("__perror_827", "perror"); -__static_renaming("__perror_828", "perror"); -__static_renaming("__sys_nerr_829", "sys_nerr"); -__static_renaming("__sys_errlist_830", "sys_errlist"); -__static_renaming("__fileno_833", "fileno"); -__static_renaming("__fileno_835", "fileno"); -__static_renaming("__fileno_unlocked_839", "fileno_unlocked"); -__static_renaming("__fileno_unlocked_841", "fileno_unlocked"); -__static_renaming("__popen_845", "popen"); -__static_renaming("__popen_847", "popen"); -__static_renaming("__pclose_851", "pclose"); -__static_renaming("__ctermid_854", "ctermid"); -__static_renaming("__flockfile_857", "flockfile"); -__static_renaming("__ftrylockfile_861", "ftrylockfile"); -__static_renaming("__ftrylockfile_863", "ftrylockfile"); -__static_renaming("__funlockfile_867", "funlockfile"); -__static_renaming("____sprintf_chk_899", "__sprintf_chk"); -__static_renaming("____vsprintf_chk_906", "__vsprintf_chk"); -__static_renaming("____snprintf_chk_920", "__snprintf_chk"); -__static_renaming("____vsnprintf_chk_928", "__vsnprintf_chk"); -__static_renaming("____fprintf_chk_943", "__fprintf_chk"); -__static_renaming("____printf_chk_947", "__printf_chk"); -__static_renaming("____vfprintf_chk_954", "__vfprintf_chk"); -__static_renaming("____vprintf_chk_962", "__vprintf_chk"); -__static_renaming("____dprintf_chk_984", "__dprintf_chk"); -__static_renaming("____vdprintf_chk_990", "__vdprintf_chk"); -__static_renaming("____fgets_chk_1004", "__fgets_chk"); -__static_renaming("____fgets_chk_1006", "__fgets_chk"); -__static_renaming("____fgets_chk_1008", "__fgets_chk"); -__static_renaming("____fgets_alias_1014", "__fgets_alias"); -__static_renaming("____fgets_chk_warn_1021", "__fgets_chk_warn"); -__static_renaming("____cnt_1087", "__cnt"); -__static_renaming("____cptr_1088", "__cptr"); -__static_renaming("__ptrdiff_t_1092", "ptrdiff_t"); -__static_renaming("__size_t_1093", "size_t"); -__static_renaming("__wchar_t_1094", "wchar_t"); -__static_renaming("__idtype_t_1100", "idtype_t"); -__static_renaming("____u_char_1101", "__u_char"); -__static_renaming("____u_short_1102", "__u_short"); -__static_renaming("____u_int_1103", "__u_int"); -__static_renaming("____u_long_1104", "__u_long"); -__static_renaming("____int8_t_1105", "__int8_t"); -__static_renaming("____uint8_t_1106", "__uint8_t"); -__static_renaming("____int16_t_1107", "__int16_t"); -__static_renaming("____uint16_t_1108", "__uint16_t"); -__static_renaming("____int32_t_1109", "__int32_t"); -__static_renaming("____uint32_t_1110", "__uint32_t"); -__static_renaming("____int64_t_1111", "__int64_t"); -__static_renaming("____uint64_t_1112", "__uint64_t"); -__static_renaming("____quad_t_1113", "__quad_t"); -__static_renaming("____u_quad_t_1114", "__u_quad_t"); -__static_renaming("____dev_t_1115", "__dev_t"); -__static_renaming("____uid_t_1116", "__uid_t"); -__static_renaming("____gid_t_1117", "__gid_t"); -__static_renaming("____ino_t_1118", "__ino_t"); -__static_renaming("____ino64_t_1119", "__ino64_t"); -__static_renaming("____mode_t_1120", "__mode_t"); -__static_renaming("____nlink_t_1121", "__nlink_t"); -__static_renaming("____off_t_1122", "__off_t"); -__static_renaming("____off64_t_1123", "__off64_t"); -__static_renaming("____pid_t_1124", "__pid_t"); -__static_renaming("____fsid_t_1128", "__fsid_t"); -__static_renaming("____clock_t_1129", "__clock_t"); -__static_renaming("____rlim_t_1130", "__rlim_t"); -__static_renaming("____rlim64_t_1131", "__rlim64_t"); -__static_renaming("____id_t_1132", "__id_t"); -__static_renaming("____time_t_1133", "__time_t"); -__static_renaming("____useconds_t_1134", "__useconds_t"); -__static_renaming("____suseconds_t_1135", "__suseconds_t"); -__static_renaming("____daddr_t_1136", "__daddr_t"); -__static_renaming("____key_t_1137", "__key_t"); -__static_renaming("____clockid_t_1138", "__clockid_t"); -__static_renaming("____timer_t_1139", "__timer_t"); -__static_renaming("____blksize_t_1140", "__blksize_t"); -__static_renaming("____blkcnt_t_1141", "__blkcnt_t"); -__static_renaming("____blkcnt64_t_1142", "__blkcnt64_t"); -__static_renaming("____fsblkcnt_t_1143", "__fsblkcnt_t"); -__static_renaming("____fsblkcnt64_t_1144", "__fsblkcnt64_t"); -__static_renaming("____fsfilcnt_t_1145", "__fsfilcnt_t"); -__static_renaming("____fsfilcnt64_t_1146", "__fsfilcnt64_t"); -__static_renaming("____fsword_t_1147", "__fsword_t"); -__static_renaming("____ssize_t_1148", "__ssize_t"); -__static_renaming("____syscall_slong_t_1149", "__syscall_slong_t"); -__static_renaming("____syscall_ulong_t_1150", "__syscall_ulong_t"); -__static_renaming("____loff_t_1151", "__loff_t"); -__static_renaming("____qaddr_t_1153", "__qaddr_t"); -__static_renaming("____caddr_t_1154", "__caddr_t"); -__static_renaming("____intptr_t_1155", "__intptr_t"); -__static_renaming("____socklen_t_1156", "__socklen_t"); -__static_renaming("____bswap_32_1158", "__bswap_32"); -__static_renaming("____bswap_64_1162", "__bswap_64"); -__static_renaming("____bswap_64_1163", "__bswap_64"); -__static_renaming("____WAIT_STATUS_1185", "__WAIT_STATUS"); -__static_renaming("__div_t_1190", "div_t"); -__static_renaming("__ldiv_t_1195", "ldiv_t"); -__static_renaming("__lldiv_t_1200", "lldiv_t"); -__static_renaming("____ctype_get_mb_cur_max_1201", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1202", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1203", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1204", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1205", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1206", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1207", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1208", "__ctype_get_mb_cur_max"); -__static_renaming("__atof_1210", "atof"); -__static_renaming("__atof_1211", "atof"); -__static_renaming("__atoi_1213", "atoi"); -__static_renaming("__atoi_1214", "atoi"); -__static_renaming("__atol_1216", "atol"); -__static_renaming("__atol_1217", "atol"); -__static_renaming("__atoll_1219", "atoll"); -__static_renaming("__atoll_1220", "atoll"); -__static_renaming("__strtod_1223", "strtod"); -__static_renaming("__strtof_1226", "strtof"); -__static_renaming("__strtold_1229", "strtold"); -__static_renaming("__strtol_1233", "strtol"); -__static_renaming("__strtoul_1237", "strtoul"); -__static_renaming("__strtoq_1241", "strtoq"); -__static_renaming("__strtouq_1245", "strtouq"); -__static_renaming("__strtoll_1249", "strtoll"); -__static_renaming("__strtoll_1250", "strtoll"); -__static_renaming("__strtoull_1254", "strtoull"); -__static_renaming("__l64a_1259", "l64a"); -__static_renaming("__l64a_1260", "l64a"); -__static_renaming("__a64l_1262", "a64l"); -__static_renaming("__a64l_1263", "a64l"); -__static_renaming("____u_char_1264", "__u_char"); -__static_renaming("____u_short_1265", "__u_short"); -__static_renaming("____u_int_1266", "__u_int"); -__static_renaming("____u_long_1267", "__u_long"); -__static_renaming("____int8_t_1268", "__int8_t"); -__static_renaming("____uint8_t_1269", "__uint8_t"); -__static_renaming("____int16_t_1270", "__int16_t"); -__static_renaming("____uint16_t_1271", "__uint16_t"); -__static_renaming("____int32_t_1272", "__int32_t"); -__static_renaming("____uint32_t_1273", "__uint32_t"); -__static_renaming("____int64_t_1274", "__int64_t"); -__static_renaming("____uint64_t_1275", "__uint64_t"); -__static_renaming("____quad_t_1276", "__quad_t"); -__static_renaming("____u_quad_t_1277", "__u_quad_t"); -__static_renaming("____dev_t_1278", "__dev_t"); -__static_renaming("____uid_t_1279", "__uid_t"); -__static_renaming("____gid_t_1280", "__gid_t"); -__static_renaming("____ino_t_1281", "__ino_t"); -__static_renaming("____ino64_t_1282", "__ino64_t"); -__static_renaming("____mode_t_1283", "__mode_t"); -__static_renaming("____nlink_t_1284", "__nlink_t"); -__static_renaming("____off_t_1285", "__off_t"); -__static_renaming("____off64_t_1286", "__off64_t"); -__static_renaming("____pid_t_1287", "__pid_t"); -__static_renaming("____fsid_t_1291", "__fsid_t"); -__static_renaming("____clock_t_1292", "__clock_t"); -__static_renaming("____rlim_t_1293", "__rlim_t"); -__static_renaming("____rlim64_t_1294", "__rlim64_t"); -__static_renaming("____id_t_1295", "__id_t"); -__static_renaming("____time_t_1296", "__time_t"); -__static_renaming("____useconds_t_1297", "__useconds_t"); -__static_renaming("____suseconds_t_1298", "__suseconds_t"); -__static_renaming("____daddr_t_1299", "__daddr_t"); -__static_renaming("____key_t_1300", "__key_t"); -__static_renaming("____clockid_t_1301", "__clockid_t"); -__static_renaming("____timer_t_1302", "__timer_t"); -__static_renaming("____blksize_t_1303", "__blksize_t"); -__static_renaming("____blkcnt_t_1304", "__blkcnt_t"); -__static_renaming("____blkcnt64_t_1305", "__blkcnt64_t"); -__static_renaming("____fsblkcnt_t_1306", "__fsblkcnt_t"); -__static_renaming("____fsblkcnt64_t_1307", "__fsblkcnt64_t"); -__static_renaming("____fsfilcnt_t_1308", "__fsfilcnt_t"); -__static_renaming("____fsfilcnt64_t_1309", "__fsfilcnt64_t"); -__static_renaming("____fsword_t_1310", "__fsword_t"); -__static_renaming("____ssize_t_1311", "__ssize_t"); -__static_renaming("____syscall_slong_t_1312", "__syscall_slong_t"); -__static_renaming("____syscall_ulong_t_1313", "__syscall_ulong_t"); -__static_renaming("____loff_t_1314", "__loff_t"); -__static_renaming("____qaddr_t_1316", "__qaddr_t"); -__static_renaming("____caddr_t_1317", "__caddr_t"); -__static_renaming("____intptr_t_1318", "__intptr_t"); -__static_renaming("____socklen_t_1319", "__socklen_t"); -__static_renaming("__u_char_1320", "u_char"); -__static_renaming("__u_char_1321", "u_char"); -__static_renaming("__u_char_1322", "u_char"); -__static_renaming("__u_short_1323", "u_short"); -__static_renaming("__u_short_1324", "u_short"); -__static_renaming("__u_short_1325", "u_short"); -__static_renaming("__u_int_1326", "u_int"); -__static_renaming("__u_int_1327", "u_int"); -__static_renaming("__u_int_1328", "u_int"); -__static_renaming("__u_long_1329", "u_long"); -__static_renaming("__u_long_1330", "u_long"); -__static_renaming("__u_long_1331", "u_long"); -__static_renaming("__quad_t_1332", "quad_t"); -__static_renaming("__quad_t_1333", "quad_t"); -__static_renaming("__quad_t_1334", "quad_t"); -__static_renaming("__u_quad_t_1335", "u_quad_t"); -__static_renaming("__u_quad_t_1336", "u_quad_t"); -__static_renaming("__u_quad_t_1337", "u_quad_t"); -__static_renaming("__fsid_t_1338", "fsid_t"); -__static_renaming("__fsid_t_1339", "fsid_t"); -__static_renaming("__fsid_t_1340", "fsid_t"); -__static_renaming("__loff_t_1342", "loff_t"); -__static_renaming("__loff_t_1343", "loff_t"); -__static_renaming("__loff_t_1344", "loff_t"); -__static_renaming("__loff_t_1346", "loff_t"); -__static_renaming("__loff_t_1347", "loff_t"); -__static_renaming("__loff_t_1348", "loff_t"); -__static_renaming("__ino_t_1350", "ino_t"); -__static_renaming("__ino_t_1351", "ino_t"); -__static_renaming("__ino_t_1352", "ino_t"); -__static_renaming("__ino_t_1354", "ino_t"); -__static_renaming("__ino_t_1355", "ino_t"); -__static_renaming("__ino_t_1356", "ino_t"); -__static_renaming("__dev_t_1358", "dev_t"); -__static_renaming("__dev_t_1359", "dev_t"); -__static_renaming("__dev_t_1360", "dev_t"); -__static_renaming("__gid_t_1362", "gid_t"); -__static_renaming("__gid_t_1363", "gid_t"); -__static_renaming("__gid_t_1364", "gid_t"); -__static_renaming("__gid_t_1366", "gid_t"); -__static_renaming("__gid_t_1367", "gid_t"); -__static_renaming("__gid_t_1368", "gid_t"); -__static_renaming("__mode_t_1370", "mode_t"); -__static_renaming("__mode_t_1371", "mode_t"); -__static_renaming("__mode_t_1372", "mode_t"); -__static_renaming("__nlink_t_1374", "nlink_t"); -__static_renaming("__nlink_t_1375", "nlink_t"); -__static_renaming("__nlink_t_1376", "nlink_t"); -__static_renaming("__uid_t_1378", "uid_t"); -__static_renaming("__uid_t_1379", "uid_t"); -__static_renaming("__uid_t_1380", "uid_t"); -__static_renaming("__uid_t_1382", "uid_t"); -__static_renaming("__uid_t_1383", "uid_t"); -__static_renaming("__uid_t_1384", "uid_t"); -__static_renaming("__off_t_1386", "off_t"); -__static_renaming("__off_t_1387", "off_t"); -__static_renaming("__off_t_1389", "off_t"); -__static_renaming("__off_t_1390", "off_t"); -__static_renaming("__pid_t_1392", "pid_t"); -__static_renaming("__pid_t_1393", "pid_t"); -__static_renaming("__pid_t_1394", "pid_t"); -__static_renaming("__pid_t_1396", "pid_t"); -__static_renaming("__pid_t_1397", "pid_t"); -__static_renaming("__id_t_1399", "id_t"); -__static_renaming("__id_t_1400", "id_t"); -__static_renaming("__id_t_1401", "id_t"); -__static_renaming("__ssize_t_1403", "ssize_t"); -__static_renaming("__ssize_t_1404", "ssize_t"); -__static_renaming("__daddr_t_1406", "daddr_t"); -__static_renaming("__daddr_t_1407", "daddr_t"); -__static_renaming("__daddr_t_1408", "daddr_t"); -__static_renaming("__caddr_t_1410", "caddr_t"); -__static_renaming("__caddr_t_1411", "caddr_t"); -__static_renaming("__caddr_t_1412", "caddr_t"); -__static_renaming("__key_t_1413", "key_t"); -__static_renaming("__key_t_1414", "key_t"); -__static_renaming("__key_t_1415", "key_t"); -__static_renaming("__key_t_1417", "key_t"); -__static_renaming("__key_t_1418", "key_t"); -__static_renaming("__key_t_1419", "key_t"); -__static_renaming("__clock_t_1421", "clock_t"); -__static_renaming("__clock_t_1422", "clock_t"); -__static_renaming("__clock_t_1423", "clock_t"); -__static_renaming("__time_t_1425", "time_t"); -__static_renaming("__time_t_1426", "time_t"); -__static_renaming("__time_t_1427", "time_t"); -__static_renaming("__clockid_t_1429", "clockid_t"); -__static_renaming("__clockid_t_1430", "clockid_t"); -__static_renaming("__clockid_t_1431", "clockid_t"); -__static_renaming("__timer_t_1433", "timer_t"); -__static_renaming("__timer_t_1434", "timer_t"); -__static_renaming("__timer_t_1435", "timer_t"); -__static_renaming("__ulong_1437", "ulong"); -__static_renaming("__ulong_1438", "ulong"); -__static_renaming("__ulong_1439", "ulong"); -__static_renaming("__ushort_1440", "ushort"); -__static_renaming("__uint_1441", "uint"); -__static_renaming("__int8_t_1442", "int8_t"); -__static_renaming("__int16_t_1443", "int16_t"); -__static_renaming("__int32_t_1444", "int32_t"); -__static_renaming("__int64_t_1445", "int64_t"); -__static_renaming("__u_int8_t_1446", "u_int8_t"); -__static_renaming("__u_int16_t_1447", "u_int16_t"); -__static_renaming("__u_int32_t_1448", "u_int32_t"); -__static_renaming("__u_int64_t_1449", "u_int64_t"); -__static_renaming("__register_t_1450", "register_t"); -__static_renaming("____bswap_32_1452", "__bswap_32"); -__static_renaming("____bswap_64_1456", "__bswap_64"); -__static_renaming("____bswap_64_1457", "__bswap_64"); -__static_renaming("____sig_atomic_t_1460", "__sig_atomic_t"); -__static_renaming("____sigset_t_1464", "__sigset_t"); -__static_renaming("__sigset_t_1465", "sigset_t"); -__static_renaming("__suseconds_t_1486", "suseconds_t"); -__static_renaming("__suseconds_t_1487", "suseconds_t"); -__static_renaming("__suseconds_t_1488", "suseconds_t"); -__static_renaming("____fd_mask_1490", "__fd_mask"); -__static_renaming("____fd_mask_1491", "__fd_mask"); -__static_renaming("__fd_set_1499", "fd_set"); -__static_renaming("__fd_mask_1500", "fd_mask"); -__static_renaming("__fd_mask_1501", "fd_mask"); -__static_renaming("__select_1513", "select"); -__static_renaming("__select_1514", "select"); -__static_renaming("__pselect_1529", "pselect"); -__static_renaming("__pselect_1530", "pselect"); -__static_renaming("____fdelt_chk_1534", "__fdelt_chk"); -__static_renaming("____fdelt_warn_1536", "__fdelt_warn"); -__static_renaming("__gnu_dev_major_1538", "gnu_dev_major"); -__static_renaming("__gnu_dev_major_1539", "gnu_dev_major"); -__static_renaming("__gnu_dev_minor_1541", "gnu_dev_minor"); -__static_renaming("__gnu_dev_makedev_1544", "gnu_dev_makedev"); -__static_renaming("__blksize_t_1549", "blksize_t"); -__static_renaming("__blksize_t_1550", "blksize_t"); -__static_renaming("__blksize_t_1551", "blksize_t"); -__static_renaming("__blkcnt_t_1553", "blkcnt_t"); -__static_renaming("__blkcnt_t_1554", "blkcnt_t"); -__static_renaming("__blkcnt_t_1555", "blkcnt_t"); -__static_renaming("__fsblkcnt_t_1557", "fsblkcnt_t"); -__static_renaming("__fsblkcnt_t_1558", "fsblkcnt_t"); -__static_renaming("__fsblkcnt_t_1559", "fsblkcnt_t"); -__static_renaming("__blkcnt_t_1561", "blkcnt_t"); -__static_renaming("__blkcnt_t_1562", "blkcnt_t"); -__static_renaming("__blkcnt_t_1563", "blkcnt_t"); -__static_renaming("__fsblkcnt_t_1565", "fsblkcnt_t"); -__static_renaming("__fsblkcnt_t_1566", "fsblkcnt_t"); -__static_renaming("__fsblkcnt_t_1567", "fsblkcnt_t"); -__static_renaming("__fsfilcnt_t_1569", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_1570", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_1571", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_1573", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_1574", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_1575", "fsfilcnt_t"); -__static_renaming("__pthread_t_1577", "pthread_t"); -__static_renaming("__pthread_attr_t_1581", "pthread_attr_t"); -__static_renaming("____pthread_list_t_1586", "__pthread_list_t"); -__static_renaming("____pthread_list_t_1587", "__pthread_list_t"); -__static_renaming("__pthread_mutex_t_1603", "pthread_mutex_t"); -__static_renaming("__pthread_mutexattr_t_1608", "pthread_mutexattr_t"); -__static_renaming("__rand_1609", "rand"); -__static_renaming("__srand_1611", "srand"); -__static_renaming("__rand_r_1613", "rand_r"); -__static_renaming("__drand48_1614", "drand48"); -__static_renaming("__erand48_1616", "erand48"); -__static_renaming("__lrand48_1617", "lrand48"); -__static_renaming("__nrand48_1619", "nrand48"); -__static_renaming("__mrand48_1620", "mrand48"); -__static_renaming("__jrand48_1622", "jrand48"); -__static_renaming("__srand48_1624", "srand48"); -__static_renaming("__seed48_1626", "seed48"); -__static_renaming("__lcong48_1628", "lcong48"); -__static_renaming("__malloc_1631", "malloc"); -__static_renaming("__malloc_1632", "malloc"); -__static_renaming("__malloc_1633", "malloc"); -__static_renaming("__malloc_1634", "malloc"); -__static_renaming("__calloc_1639", "calloc"); -__static_renaming("__calloc_1640", "calloc"); -__static_renaming("__calloc_1641", "calloc"); -__static_renaming("__calloc_1642", "calloc"); -__static_renaming("__realloc_1646", "realloc"); -__static_renaming("__realloc_1647", "realloc"); -__static_renaming("__free_1649", "free"); -__static_renaming("__cfree_1651", "cfree"); -__static_renaming("__alloca_1654", "alloca"); -__static_renaming("__alloca_1655", "alloca"); -__static_renaming("__valloc_1658", "valloc"); -__static_renaming("__valloc_1659", "valloc"); -__static_renaming("__valloc_1660", "valloc"); -__static_renaming("__valloc_1661", "valloc"); -__static_renaming("__posix_memalign_1667", "posix_memalign"); -__static_renaming("__posix_memalign_1668", "posix_memalign"); -__static_renaming("__posix_memalign_1669", "posix_memalign"); -__static_renaming("__posix_memalign_1670", "posix_memalign"); -__static_renaming("__aligned_alloc_1675", "aligned_alloc"); -__static_renaming("__aligned_alloc_1676", "aligned_alloc"); -__static_renaming("__aligned_alloc_1677", "aligned_alloc"); -__static_renaming("__aligned_alloc_1678", "aligned_alloc"); -__static_renaming("__aligned_alloc_1679", "aligned_alloc"); -__static_renaming("__aligned_alloc_1680", "aligned_alloc"); -__static_renaming("__aligned_alloc_1681", "aligned_alloc"); -__static_renaming("__aligned_alloc_1682", "aligned_alloc"); -__static_renaming("__abort_1683", "abort"); -__static_renaming("__atexit_1685", "atexit"); -__static_renaming("__at_quick_exit_1687", "at_quick_exit"); -__static_renaming("__on_exit_1692", "on_exit"); -__static_renaming("__exit_1694", "exit"); -__static_renaming("__exit_1695", "exit"); -__static_renaming("__quick_exit_1697", "quick_exit"); -__static_renaming("___Exit_1699", "_Exit"); -__static_renaming("__getenv_1701", "getenv"); -__static_renaming("__getenv_1702", "getenv"); -__static_renaming("__putenv_1704", "putenv"); -__static_renaming("__setenv_1708", "setenv"); -__static_renaming("__unsetenv_1710", "unsetenv"); -__static_renaming("__clearenv_1711", "clearenv"); -__static_renaming("__mktemp_1713", "mktemp"); -__static_renaming("__mkstemp_1716", "mkstemp"); -__static_renaming("__mkstemp_1717", "mkstemp"); -__static_renaming("__mkstemp_1718", "mkstemp"); -__static_renaming("__mkstemp_1719", "mkstemp"); -__static_renaming("__mkstemps_1724", "mkstemps"); -__static_renaming("__mkstemps_1725", "mkstemps"); -__static_renaming("__mkstemps_1726", "mkstemps"); -__static_renaming("__mkstemps_1727", "mkstemps"); -__static_renaming("__mkdtemp_1729", "mkdtemp"); -__static_renaming("__mkdtemp_1730", "mkdtemp"); -__static_renaming("__system_1732", "system"); -__static_renaming("__system_1733", "system"); -__static_renaming("__system_1734", "system"); -__static_renaming("__system_1735", "system"); -__static_renaming("__realpath_1738", "realpath"); -__static_renaming("__realpath_1739", "realpath"); -__static_renaming("____compar_fn_t_1740", "__compar_fn_t"); -__static_renaming("__bsearch_1751", "bsearch"); -__static_renaming("__bsearch_1752", "bsearch"); -__static_renaming("__bsearch_1755", "bsearch"); -__static_renaming("__bsearch_1756", "bsearch"); -__static_renaming("____l_1765", "__l"); -__static_renaming("____l_1766", "__l"); -__static_renaming("____u_1767", "__u"); -__static_renaming("____u_1768", "__u"); -__static_renaming("____idx_1769", "__idx"); -__static_renaming("____idx_1770", "__idx"); -__static_renaming("____p_1771", "__p"); -__static_renaming("____comparison_1772", "__comparison"); -__static_renaming("__qsort_1784", "qsort"); -__static_renaming("__qsort_1786", "qsort"); -__static_renaming("__qsort_1788", "qsort"); -__static_renaming("__qsort_1790", "qsort"); -__static_renaming("__abs_1793", "abs"); -__static_renaming("__abs_1794", "abs"); -__static_renaming("__labs_1796", "labs"); -__static_renaming("__labs_1797", "labs"); -__static_renaming("__llabs_1799", "llabs"); -__static_renaming("__llabs_1800", "llabs"); -__static_renaming("__div_1803", "div"); -__static_renaming("__div_1804", "div"); -__static_renaming("__ldiv_1807", "ldiv"); -__static_renaming("__ldiv_1809", "ldiv"); -__static_renaming("__lldiv_1813", "lldiv"); -__static_renaming("__lldiv_1815", "lldiv"); -__static_renaming("__ecvt_1821", "ecvt"); -__static_renaming("__ecvt_1822", "ecvt"); -__static_renaming("__fcvt_1827", "fcvt"); -__static_renaming("__fcvt_1828", "fcvt"); -__static_renaming("__gcvt_1832", "gcvt"); -__static_renaming("__gcvt_1833", "gcvt"); -__static_renaming("__qecvt_1838", "qecvt"); -__static_renaming("__qecvt_1839", "qecvt"); -__static_renaming("__qfcvt_1844", "qfcvt"); -__static_renaming("__qfcvt_1845", "qfcvt"); -__static_renaming("__qgcvt_1849", "qgcvt"); -__static_renaming("__qgcvt_1850", "qgcvt"); -__static_renaming("__ecvt_r_1858", "ecvt_r"); -__static_renaming("__ecvt_r_1859", "ecvt_r"); -__static_renaming("__fcvt_r_1867", "fcvt_r"); -__static_renaming("__fcvt_r_1868", "fcvt_r"); -__static_renaming("__qecvt_r_1876", "qecvt_r"); -__static_renaming("__qecvt_r_1877", "qecvt_r"); -__static_renaming("__qfcvt_r_1885", "qfcvt_r"); -__static_renaming("__qfcvt_r_1886", "qfcvt_r"); -__static_renaming("__mblen_1890", "mblen"); -__static_renaming("__mblen_1891", "mblen"); -__static_renaming("__mblen_1892", "mblen"); -__static_renaming("__mblen_1893", "mblen"); -__static_renaming("__mbtowc_1898", "mbtowc"); -__static_renaming("__mbtowc_1899", "mbtowc"); -__static_renaming("__wctomb_1902", "wctomb"); -__static_renaming("__mbstowcs_1907", "mbstowcs"); -__static_renaming("__mbstowcs_1908", "mbstowcs"); -__static_renaming("__wcstombs_1913", "wcstombs"); -__static_renaming("__wcstombs_1914", "wcstombs"); -__static_renaming("__rpmatch_1916", "rpmatch"); -__static_renaming("__rpmatch_1917", "rpmatch"); -__static_renaming("__getsubopt_1921", "getsubopt"); -__static_renaming("__getsubopt_1922", "getsubopt"); -__static_renaming("__getloadavg_1925", "getloadavg"); -__static_renaming("____realpath_chk_1931", "__realpath_chk"); -__static_renaming("____realpath_chk_1932", "__realpath_chk"); -__static_renaming("____realpath_alias_1935", "__realpath_alias"); -__static_renaming("____realpath_chk_warn_1940", "__realpath_chk_warn"); -__static_renaming("____realpath_chk_warn_1941", "__realpath_chk_warn"); -__static_renaming("____ptsname_r_chk_1951", "__ptsname_r_chk"); -__static_renaming("____ptsname_r_chk_1952", "__ptsname_r_chk"); -__static_renaming("____ptsname_r_alias_1957", "__ptsname_r_alias"); -__static_renaming("____ptsname_r_alias_1958", "__ptsname_r_alias"); -__static_renaming("____ptsname_r_chk_warn_1965", "__ptsname_r_chk_warn"); -__static_renaming("____ptsname_r_chk_warn_1966", "__ptsname_r_chk_warn"); -__static_renaming("____wctomb_chk_1977", "__wctomb_chk"); -__static_renaming("____wctomb_chk_1978", "__wctomb_chk"); -__static_renaming("____wctomb_alias_1981", "__wctomb_alias"); -__static_renaming("____mbstowcs_chk_1990", "__mbstowcs_chk"); -__static_renaming("____mbstowcs_chk_1991", "__mbstowcs_chk"); -__static_renaming("____mbstowcs_alias_1996", "__mbstowcs_alias"); -__static_renaming("____mbstowcs_alias_1997", "__mbstowcs_alias"); -__static_renaming("____mbstowcs_chk_warn_2004", "__mbstowcs_chk_warn"); -__static_renaming("____mbstowcs_chk_warn_2005", "__mbstowcs_chk_warn"); -__static_renaming("____wcstombs_chk_2016", "__wcstombs_chk"); -__static_renaming("____wcstombs_chk_2017", "__wcstombs_chk"); -__static_renaming("____wcstombs_alias_2022", "__wcstombs_alias"); -__static_renaming("____wcstombs_alias_2023", "__wcstombs_alias"); -__static_renaming("____wcstombs_chk_warn_2030", "__wcstombs_chk_warn"); -__static_renaming("____wcstombs_chk_warn_2031", "__wcstombs_chk_warn"); -__static_renaming("__ap_log_perror__2037", "ap_log_perror_"); -__static_renaming("__ap_log_perror__2038", "ap_log_perror_"); -__static_renaming("__ap_log_perror__2039", "ap_log_perror_"); -__static_renaming("__main_2049", "main"); - -__static_condition_renaming("__static_condition_default_53", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_76", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_84", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_123", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_169", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_170", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_173", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_182", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_187", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_193", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_198", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_201", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_204", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_210", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_217", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_223", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_229", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_235", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_238", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_241", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_244", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_246", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_248", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_249", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_250", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_253", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_255", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_257", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_258", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_259", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_263", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_264", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_267", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_270", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_271", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_274", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_275", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_278", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_280", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); -__static_condition_renaming("__static_condition_default_282", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_284", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_286", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_288", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_290", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_293", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_296", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_299", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_311", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_313", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_315", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_317", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_331", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_333", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_337", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_341", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_345", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_347", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_355", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_357", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_363", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_365", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_367", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_369", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_373", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_375", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_380", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_382", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_386", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_388", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_393", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_395", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_402", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_408", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_412", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_417", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_419", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_431", "!(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_432", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_433", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_438", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_444", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_455", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_461", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_469", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_471", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_473", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_475", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_486", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_488", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_489", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_491", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_493", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_494", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_497", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_499", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_503", "!(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_510", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_511", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_512", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_514", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_515", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_516", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_521", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_523", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_529", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_536", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_537", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_538", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_539", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_541", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_542", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_543", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_544", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_549", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_550", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_552", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_553", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_559", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_560", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_564", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_568", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_573", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_578", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_583", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_585", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_590", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_597", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_602", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_608", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_613", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_619", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_621", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_623", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_625", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_632", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_633", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_634", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_636", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_637", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_638", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_645", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_646", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_647", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_649", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_650", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_651", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_657", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_658", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_659", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_661", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_662", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_663", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_668", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_670", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_677", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_683", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_684", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_685", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_686", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_692", "!(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_693", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_699", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_700", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_701", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_702", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_708", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_709", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_715", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_717", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_721", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_723", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_727", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_734", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_735", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_736", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_745", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_746", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_747", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_751", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_752", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_753", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_755", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_756", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_757", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_759", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_760", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_761", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_767", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_768", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_769", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_779", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_780", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_781", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_787", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_788", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_789", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_791", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_792", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_793", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_797", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_801", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_803", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_807", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_809", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_813", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_817", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_819", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_823", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_825", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_834", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_836", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_840", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_842", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_846", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_848", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_852", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_858", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_862", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_864", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_868", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_872", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_875", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_878", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_883", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_887", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_891", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_894", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_907", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_914", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_929", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_938", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_944", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_955", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_956", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_957", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_963", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_967", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_972", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_978", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_979", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_980", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_991", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_998", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1005", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1007", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1009", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1015", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1022", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1027", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1028", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1035", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1036", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1042", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1043", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1050", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1051", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1057", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1058", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1065", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1066", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1072", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1073", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1080", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1081", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1089", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_1090", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1091", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1152", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1159", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1164", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1165", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1315", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1341", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __u_char_defined)"); -__static_condition_renaming("__static_condition_default_1345", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __u_char_defined)"); -__static_condition_renaming("__static_condition_default_1349", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __u_char_defined)"); -__static_condition_renaming("__static_condition_default_1353", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined)"); -__static_condition_renaming("__static_condition_default_1357", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined)"); -__static_condition_renaming("__static_condition_default_1361", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_1365", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_1369", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_1373", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1377", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __nlink_t_defined)"); -__static_condition_renaming("__static_condition_default_1381", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __nlink_t_defined)"); -__static_condition_renaming("__static_condition_default_1385", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __nlink_t_defined)"); -__static_condition_renaming("__static_condition_default_1388", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1391", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1395", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && (defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1398", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1402", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __id_t_defined)"); -__static_condition_renaming("__static_condition_default_1405", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1409", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_1416", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_1420", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_1424", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __clock_t_defined)"); -__static_condition_renaming("__static_condition_default_1428", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __time_t_defined)"); -__static_condition_renaming("__static_condition_default_1432", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __clockid_t_defined)"); -__static_condition_renaming("__static_condition_default_1436", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timer_t_defined)"); -__static_condition_renaming("__static_condition_default_1453", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1458", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1459", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1475", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_1485", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_1489", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __suseconds_t_defined)"); -__static_condition_renaming("__static_condition_default_1498", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1515", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_1516", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_1531", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_1532", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_1552", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blksize_t_defined)"); -__static_condition_renaming("__static_condition_default_1556", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined)"); -__static_condition_renaming("__static_condition_default_1560", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1564", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined)"); -__static_condition_renaming("__static_condition_default_1568", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1572", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1576", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1749", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1750", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1753", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1754", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1773", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1774", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1775", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1776", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1785", "!(defined __need___FILE) && !(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1787", "(defined __need___FILE) && !(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1789", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1791", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1808", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1810", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1814", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1816", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1944", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_2040", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_2041", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_2042", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_2043", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_2044", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_2045", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_2046", "!(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2047", "!(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2048", "(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2050", "(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined APLOG_MAX_LOGLEVEL)"); -__static_condition_renaming("__static_condition_default_2051", "!(defined __STRICT_ANSI__) && (defined APLOG_MAX_LOGLEVEL) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined APLOG_MAX_LOGLEVEL) || (defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined APLOG_MAX_LOGLEVEL)"); -__static_condition_renaming("__static_condition_default_2052", "(defined APLOG_MAX_LOGLEVEL)"); -__static_condition_renaming("__static_condition_default_2053", "!(defined APLOG_MAX_LOGLEVEL)"); -__static_condition_renaming("__static_condition_default_2054", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); - -if (__static_condition_default_2054) -{ +__static_renaming("____qaddr_t_53", "__qaddr_t"); +__static_renaming("____caddr_t_54", "__caddr_t"); +__static_renaming("____intptr_t_55", "__intptr_t"); +__static_renaming("____socklen_t_56", "__socklen_t"); +__static_renaming("__FILE_58", "FILE"); +__static_renaming("____FILE_59", "__FILE"); +__static_renaming("____mbstate_t_68", "__mbstate_t"); +__static_renaming("___G_fpos_t_75", "_G_fpos_t"); +__static_renaming("___G_fpos64_t_81", "_G_fpos64_t"); +__static_renaming("____gnuc_va_list_82", "__gnuc_va_list"); +__static_renaming("___IO_lock_t_84", "_IO_lock_t"); +__static_renaming("___IO_FILE_163", "_IO_FILE"); +__static_renaming("___IO_FILE_164", "_IO_FILE"); +__static_renaming("___IO_2_1_stdin__167", "_IO_2_1_stdin_"); +__static_renaming("___IO_2_1_stdout__168", "_IO_2_1_stdout_"); +__static_renaming("___IO_2_1_stderr__169", "_IO_2_1_stderr_"); +__static_renaming("____io_read_fn_173", "__io_read_fn"); +__static_renaming("____io_write_fn_177", "__io_write_fn"); +__static_renaming("____io_seek_fn_181", "__io_seek_fn"); +__static_renaming("____io_close_fn_183", "__io_close_fn"); +__static_renaming("____underflow_184", "__underflow"); +__static_renaming("____underflow_185", "__underflow"); +__static_renaming("____uflow_186", "__uflow"); +__static_renaming("____uflow_187", "__uflow"); +__static_renaming("____overflow_188", "__overflow"); +__static_renaming("____overflow_189", "__overflow"); +__static_renaming("___IO_getc_193", "_IO_getc"); +__static_renaming("___IO_getc_194", "_IO_getc"); +__static_renaming("___IO_putc_199", "_IO_putc"); +__static_renaming("___IO_putc_200", "_IO_putc"); +__static_renaming("___IO_feof_204", "_IO_feof"); +__static_renaming("___IO_feof_205", "_IO_feof"); +__static_renaming("___IO_ferror_209", "_IO_ferror"); +__static_renaming("___IO_ferror_210", "_IO_ferror"); +__static_renaming("___IO_peekc_locked_214", "_IO_peekc_locked"); +__static_renaming("___IO_peekc_locked_215", "_IO_peekc_locked"); +__static_renaming("___IO_flockfile_216", "_IO_flockfile"); +__static_renaming("___IO_flockfile_217", "_IO_flockfile"); +__static_renaming("___IO_funlockfile_218", "_IO_funlockfile"); +__static_renaming("___IO_funlockfile_219", "_IO_funlockfile"); +__static_renaming("___IO_ftrylockfile_220", "_IO_ftrylockfile"); +__static_renaming("___IO_ftrylockfile_221", "_IO_ftrylockfile"); +__static_renaming("___IO_vfscanf_222", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_224", "_IO_vfscanf"); +__static_renaming("___IO_vfprintf_231", "_IO_vfprintf"); +__static_renaming("___IO_vfprintf_233", "_IO_vfprintf"); +__static_renaming("___IO_padn_238", "_IO_padn"); +__static_renaming("___IO_padn_239", "_IO_padn"); +__static_renaming("___IO_sgetn_240", "_IO_sgetn"); +__static_renaming("___IO_sgetn_241", "_IO_sgetn"); +__static_renaming("___IO_seekoff_242", "_IO_seekoff"); +__static_renaming("___IO_seekoff_243", "_IO_seekoff"); +__static_renaming("___IO_seekpos_244", "_IO_seekpos"); +__static_renaming("___IO_seekpos_245", "_IO_seekpos"); +__static_renaming("___IO_free_backup_area_246", "_IO_free_backup_area"); +__static_renaming("___IO_free_backup_area_247", "_IO_free_backup_area"); +__static_renaming("__va_list_248", "va_list"); +__static_renaming("__off_t_250", "off_t"); +__static_renaming("__off_t_251", "off_t"); +__static_renaming("__ssize_t_252", "ssize_t"); +__static_renaming("__fpos_t_253", "fpos_t"); +__static_renaming("__fpos_t_255", "fpos_t"); +__static_renaming("__stdin_257", "stdin"); +__static_renaming("__stdin_258", "stdin"); +__static_renaming("__stdout_259", "stdout"); +__static_renaming("__stdout_260", "stdout"); +__static_renaming("__stderr_261", "stderr"); +__static_renaming("__stderr_262", "stderr"); +__static_renaming("__remove_264", "remove"); +__static_renaming("__rename_267", "rename"); +__static_renaming("__renameat_272", "renameat"); +__static_renaming("__tmpfile_273", "tmpfile"); +__static_renaming("__tmpfile_275", "tmpfile"); +__static_renaming("__tmpfile_277", "tmpfile"); +__static_renaming("__tmpfile_279", "tmpfile"); +__static_renaming("__tmpnam_282", "tmpnam"); +__static_renaming("__tmpnam_283", "tmpnam"); +__static_renaming("__tmpnam_r_285", "tmpnam_r"); +__static_renaming("__tmpnam_r_286", "tmpnam_r"); +__static_renaming("__tempnam_289", "tempnam"); +__static_renaming("__tempnam_290", "tempnam"); +__static_renaming("__fclose_293", "fclose"); +__static_renaming("__fclose_295", "fclose"); +__static_renaming("__fflush_299", "fflush"); +__static_renaming("__fflush_unlocked_303", "fflush_unlocked"); +__static_renaming("__fopen_307", "fopen"); +__static_renaming("__fopen_309", "fopen"); +__static_renaming("__fopen_317", "fopen"); +__static_renaming("__fopen_319", "fopen"); +__static_renaming("__freopen_325", "freopen"); +__static_renaming("__freopen_327", "freopen"); +__static_renaming("__freopen_329", "freopen"); +__static_renaming("__freopen_331", "freopen"); +__static_renaming("__fdopen_335", "fdopen"); +__static_renaming("__fdopen_337", "fdopen"); +__static_renaming("__fmemopen_342", "fmemopen"); +__static_renaming("__fmemopen_344", "fmemopen"); +__static_renaming("__open_memstream_348", "open_memstream"); +__static_renaming("__open_memstream_350", "open_memstream"); +__static_renaming("__setbuf_355", "setbuf"); +__static_renaming("__setbuf_357", "setbuf"); +__static_renaming("__setvbuf_364", "setvbuf"); +__static_renaming("__setbuffer_369", "setbuffer"); +__static_renaming("__setlinebuf_373", "setlinebuf"); +__static_renaming("__fprintf_378", "fprintf"); +__static_renaming("__fprintf_380", "fprintf"); +__static_renaming("__printf_383", "printf"); +__static_renaming("__sprintf_386", "sprintf"); +__static_renaming("__vfprintf_392", "vfprintf"); +__static_renaming("__vprintf_399", "vprintf"); +__static_renaming("__vsprintf_405", "vsprintf"); +__static_renaming("__snprintf_409", "snprintf"); +__static_renaming("__vsnprintf_415", "vsnprintf"); +__static_renaming("__vdprintf_420", "vdprintf"); +__static_renaming("__dprintf_424", "dprintf"); +__static_renaming("__fscanf_428", "fscanf"); +__static_renaming("__fscanf_430", "fscanf"); +__static_renaming("__fscanf_432", "fscanf"); +__static_renaming("__fscanf_434", "fscanf"); +__static_renaming("__scanf_437", "scanf"); +__static_renaming("__scanf_438", "scanf"); +__static_renaming("__sscanf_441", "sscanf"); +__static_renaming("__vfscanf_468", "vfscanf"); +__static_renaming("__vfscanf_472", "vfscanf"); +__static_renaming("__vscanf_479", "vscanf"); +__static_renaming("__vscanf_481", "vscanf"); +__static_renaming("__vsscanf_487", "vsscanf"); +__static_renaming("__fgetc_520", "fgetc"); +__static_renaming("__getc_523", "getc"); +__static_renaming("__getchar_524", "getchar"); +__static_renaming("__getc_unlocked_527", "getc_unlocked"); +__static_renaming("__getchar_unlocked_529", "getchar_unlocked"); +__static_renaming("__fgetc_unlocked_532", "fgetc_unlocked"); +__static_renaming("__fputc_537", "fputc"); +__static_renaming("__fputc_539", "fputc"); +__static_renaming("__putc_544", "putc"); +__static_renaming("__putchar_546", "putchar"); +__static_renaming("__fputc_unlocked_550", "fputc_unlocked"); +__static_renaming("__putc_unlocked_555", "putc_unlocked"); +__static_renaming("__putchar_unlocked_558", "putchar_unlocked"); +__static_renaming("__getw_561", "getw"); +__static_renaming("__putw_566", "putw"); +__static_renaming("__fgets_572", "fgets"); +__static_renaming("__fgets_574", "fgets"); +__static_renaming("__fgets_576", "fgets"); +__static_renaming("__fgets_578", "fgets"); +__static_renaming("____getdelim_585", "__getdelim"); +__static_renaming("____getdelim_587", "__getdelim"); +__static_renaming("__getdelim_594", "getdelim"); +__static_renaming("__getdelim_596", "getdelim"); +__static_renaming("__getline_602", "getline"); +__static_renaming("__getline_604", "getline"); +__static_renaming("__fputs_609", "fputs"); +__static_renaming("__fputs_611", "fputs"); +__static_renaming("__puts_614", "puts"); +__static_renaming("__ungetc_618", "ungetc"); +__static_renaming("__fseek_654", "fseek"); +__static_renaming("__fseek_656", "fseek"); +__static_renaming("__ftell_660", "ftell"); +__static_renaming("__ftell_662", "ftell"); +__static_renaming("__rewind_666", "rewind"); +__static_renaming("__fseeko_671", "fseeko"); +__static_renaming("__fseeko_679", "fseeko"); +__static_renaming("__ftello_683", "ftello"); +__static_renaming("__ftello_685", "ftello"); +__static_renaming("__ftello_687", "ftello"); +__static_renaming("__fgetpos_693", "fgetpos"); +__static_renaming("__fgetpos_705", "fgetpos"); +__static_renaming("__fsetpos_713", "fsetpos"); +__static_renaming("__fsetpos_717", "fsetpos"); +__static_renaming("__clearerr_723", "clearerr"); +__static_renaming("__feof_726", "feof"); +__static_renaming("__feof_728", "feof"); +__static_renaming("__ferror_732", "ferror"); +__static_renaming("__ferror_734", "ferror"); +__static_renaming("__clearerr_unlocked_738", "clearerr_unlocked"); +__static_renaming("__feof_unlocked_742", "feof_unlocked"); +__static_renaming("__feof_unlocked_744", "feof_unlocked"); +__static_renaming("__ferror_unlocked_748", "ferror_unlocked"); +__static_renaming("__ferror_unlocked_750", "ferror_unlocked"); +__static_renaming("__perror_753", "perror"); +__static_renaming("__perror_754", "perror"); +__static_renaming("__sys_nerr_755", "sys_nerr"); +__static_renaming("__sys_errlist_756", "sys_errlist"); +__static_renaming("__fileno_759", "fileno"); +__static_renaming("__fileno_761", "fileno"); +__static_renaming("__fileno_unlocked_765", "fileno_unlocked"); +__static_renaming("__fileno_unlocked_767", "fileno_unlocked"); +__static_renaming("__popen_771", "popen"); +__static_renaming("__popen_773", "popen"); +__static_renaming("__pclose_777", "pclose"); +__static_renaming("__ctermid_780", "ctermid"); +__static_renaming("__flockfile_783", "flockfile"); +__static_renaming("__ftrylockfile_787", "ftrylockfile"); +__static_renaming("__ftrylockfile_789", "ftrylockfile"); +__static_renaming("__funlockfile_793", "funlockfile"); +__static_renaming("____sprintf_chk_825", "__sprintf_chk"); +__static_renaming("____vsprintf_chk_832", "__vsprintf_chk"); +__static_renaming("____snprintf_chk_846", "__snprintf_chk"); +__static_renaming("____vsnprintf_chk_854", "__vsnprintf_chk"); +__static_renaming("____fprintf_chk_869", "__fprintf_chk"); +__static_renaming("____printf_chk_873", "__printf_chk"); +__static_renaming("____vfprintf_chk_880", "__vfprintf_chk"); +__static_renaming("____vprintf_chk_888", "__vprintf_chk"); +__static_renaming("____dprintf_chk_910", "__dprintf_chk"); +__static_renaming("____vdprintf_chk_916", "__vdprintf_chk"); +__static_renaming("____fgets_chk_930", "__fgets_chk"); +__static_renaming("____fgets_chk_932", "__fgets_chk"); +__static_renaming("____fgets_chk_934", "__fgets_chk"); +__static_renaming("____fgets_alias_940", "__fgets_alias"); +__static_renaming("____fgets_chk_warn_947", "__fgets_chk_warn"); +__static_renaming("____cnt_1013", "__cnt"); +__static_renaming("____cptr_1014", "__cptr"); +__static_renaming("__wchar_t_1018", "wchar_t"); +__static_renaming("__idtype_t_1024", "idtype_t"); +__static_renaming("____bswap_32_1026", "__bswap_32"); +__static_renaming("____bswap_64_1029", "__bswap_64"); +__static_renaming("____WAIT_STATUS_1049", "__WAIT_STATUS"); +__static_renaming("__div_t_1054", "div_t"); +__static_renaming("__ldiv_t_1059", "ldiv_t"); +__static_renaming("__lldiv_t_1064", "lldiv_t"); +__static_renaming("____ctype_get_mb_cur_max_1065", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1066", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1067", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1068", "__ctype_get_mb_cur_max"); +__static_renaming("__atof_1070", "atof"); +__static_renaming("__atof_1071", "atof"); +__static_renaming("__atoi_1073", "atoi"); +__static_renaming("__atoi_1074", "atoi"); +__static_renaming("__atol_1076", "atol"); +__static_renaming("__atol_1077", "atol"); +__static_renaming("__atoll_1079", "atoll"); +__static_renaming("__atoll_1080", "atoll"); +__static_renaming("__strtod_1083", "strtod"); +__static_renaming("__strtof_1086", "strtof"); +__static_renaming("__strtold_1089", "strtold"); +__static_renaming("__strtol_1093", "strtol"); +__static_renaming("__strtoul_1097", "strtoul"); +__static_renaming("__strtoq_1101", "strtoq"); +__static_renaming("__strtouq_1105", "strtouq"); +__static_renaming("__strtoll_1109", "strtoll"); +__static_renaming("__strtoll_1110", "strtoll"); +__static_renaming("__strtoull_1114", "strtoull"); +__static_renaming("__l64a_1119", "l64a"); +__static_renaming("__l64a_1120", "l64a"); +__static_renaming("__a64l_1122", "a64l"); +__static_renaming("__a64l_1123", "a64l"); +__static_renaming("__u_char_1124", "u_char"); +__static_renaming("__u_short_1125", "u_short"); +__static_renaming("__u_int_1126", "u_int"); +__static_renaming("__u_long_1127", "u_long"); +__static_renaming("__quad_t_1128", "quad_t"); +__static_renaming("__u_quad_t_1129", "u_quad_t"); +__static_renaming("__fsid_t_1130", "fsid_t"); +__static_renaming("__loff_t_1131", "loff_t"); +__static_renaming("__ino_t_1132", "ino_t"); +__static_renaming("__ino_t_1133", "ino_t"); +__static_renaming("__dev_t_1134", "dev_t"); +__static_renaming("__gid_t_1135", "gid_t"); +__static_renaming("__gid_t_1136", "gid_t"); +__static_renaming("__mode_t_1137", "mode_t"); +__static_renaming("__nlink_t_1138", "nlink_t"); +__static_renaming("__uid_t_1139", "uid_t"); +__static_renaming("__uid_t_1140", "uid_t"); +__static_renaming("__pid_t_1141", "pid_t"); +__static_renaming("__id_t_1142", "id_t"); +__static_renaming("__daddr_t_1143", "daddr_t"); +__static_renaming("__caddr_t_1144", "caddr_t"); +__static_renaming("__key_t_1145", "key_t"); +__static_renaming("__key_t_1146", "key_t"); +__static_renaming("__clock_t_1147", "clock_t"); +__static_renaming("__time_t_1148", "time_t"); +__static_renaming("__clockid_t_1149", "clockid_t"); +__static_renaming("__timer_t_1150", "timer_t"); +__static_renaming("__ulong_1151", "ulong"); +__static_renaming("__ulong_1152", "ulong"); +__static_renaming("__ulong_1153", "ulong"); +__static_renaming("__ushort_1154", "ushort"); +__static_renaming("__uint_1155", "uint"); +__static_renaming("__int8_t_1156", "int8_t"); +__static_renaming("__int16_t_1157", "int16_t"); +__static_renaming("__int32_t_1158", "int32_t"); +__static_renaming("__int64_t_1159", "int64_t"); +__static_renaming("__u_int8_t_1160", "u_int8_t"); +__static_renaming("__u_int16_t_1161", "u_int16_t"); +__static_renaming("__u_int32_t_1162", "u_int32_t"); +__static_renaming("__u_int64_t_1163", "u_int64_t"); +__static_renaming("__register_t_1164", "register_t"); +__static_renaming("____bswap_32_1166", "__bswap_32"); +__static_renaming("____bswap_64_1169", "__bswap_64"); +__static_renaming("____sig_atomic_t_1170", "__sig_atomic_t"); +__static_renaming("____sigset_t_1174", "__sigset_t"); +__static_renaming("__sigset_t_1175", "sigset_t"); +__static_renaming("__suseconds_t_1182", "suseconds_t"); +__static_renaming("____fd_mask_1183", "__fd_mask"); +__static_renaming("____fd_mask_1184", "__fd_mask"); +__static_renaming("__fd_set_1189", "fd_set"); +__static_renaming("__fd_mask_1190", "fd_mask"); +__static_renaming("__fd_mask_1191", "fd_mask"); +__static_renaming("__select_1199", "select"); +__static_renaming("__select_1200", "select"); +__static_renaming("__pselect_1209", "pselect"); +__static_renaming("__pselect_1210", "pselect"); +__static_renaming("____fdelt_chk_1212", "__fdelt_chk"); +__static_renaming("____fdelt_warn_1214", "__fdelt_warn"); +__static_renaming("__gnu_dev_major_1216", "gnu_dev_major"); +__static_renaming("__gnu_dev_major_1217", "gnu_dev_major"); +__static_renaming("__gnu_dev_minor_1219", "gnu_dev_minor"); +__static_renaming("__gnu_dev_makedev_1222", "gnu_dev_makedev"); +__static_renaming("__blksize_t_1227", "blksize_t"); +__static_renaming("__blkcnt_t_1228", "blkcnt_t"); +__static_renaming("__fsblkcnt_t_1229", "fsblkcnt_t"); +__static_renaming("__blkcnt_t_1230", "blkcnt_t"); +__static_renaming("__fsblkcnt_t_1231", "fsblkcnt_t"); +__static_renaming("__fsfilcnt_t_1232", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_1233", "fsfilcnt_t"); +__static_renaming("__pthread_t_1234", "pthread_t"); +__static_renaming("__pthread_attr_t_1238", "pthread_attr_t"); +__static_renaming("____pthread_list_t_1243", "__pthread_list_t"); +__static_renaming("____pthread_list_t_1244", "__pthread_list_t"); +__static_renaming("__pthread_mutex_t_1260", "pthread_mutex_t"); +__static_renaming("__pthread_mutexattr_t_1265", "pthread_mutexattr_t"); +__static_renaming("__rand_1266", "rand"); +__static_renaming("__srand_1268", "srand"); +__static_renaming("__rand_r_1270", "rand_r"); +__static_renaming("__drand48_1271", "drand48"); +__static_renaming("__erand48_1273", "erand48"); +__static_renaming("__lrand48_1274", "lrand48"); +__static_renaming("__nrand48_1276", "nrand48"); +__static_renaming("__mrand48_1277", "mrand48"); +__static_renaming("__jrand48_1279", "jrand48"); +__static_renaming("__srand48_1281", "srand48"); +__static_renaming("__seed48_1283", "seed48"); +__static_renaming("__lcong48_1285", "lcong48"); +__static_renaming("__malloc_1287", "malloc"); +__static_renaming("__malloc_1288", "malloc"); +__static_renaming("__calloc_1291", "calloc"); +__static_renaming("__calloc_1292", "calloc"); +__static_renaming("__realloc_1295", "realloc"); +__static_renaming("__realloc_1296", "realloc"); +__static_renaming("__free_1298", "free"); +__static_renaming("__cfree_1300", "cfree"); +__static_renaming("__alloca_1302", "alloca"); +__static_renaming("__valloc_1304", "valloc"); +__static_renaming("__valloc_1305", "valloc"); +__static_renaming("__posix_memalign_1309", "posix_memalign"); +__static_renaming("__posix_memalign_1310", "posix_memalign"); +__static_renaming("__aligned_alloc_1313", "aligned_alloc"); +__static_renaming("__aligned_alloc_1314", "aligned_alloc"); +__static_renaming("__aligned_alloc_1315", "aligned_alloc"); +__static_renaming("__aligned_alloc_1316", "aligned_alloc"); +__static_renaming("__abort_1317", "abort"); +__static_renaming("__atexit_1319", "atexit"); +__static_renaming("__at_quick_exit_1321", "at_quick_exit"); +__static_renaming("__on_exit_1326", "on_exit"); +__static_renaming("__exit_1328", "exit"); +__static_renaming("__exit_1329", "exit"); +__static_renaming("__quick_exit_1331", "quick_exit"); +__static_renaming("___Exit_1333", "_Exit"); +__static_renaming("__getenv_1335", "getenv"); +__static_renaming("__getenv_1336", "getenv"); +__static_renaming("__putenv_1338", "putenv"); +__static_renaming("__setenv_1342", "setenv"); +__static_renaming("__unsetenv_1344", "unsetenv"); +__static_renaming("__clearenv_1345", "clearenv"); +__static_renaming("__mktemp_1347", "mktemp"); +__static_renaming("__mkstemp_1350", "mkstemp"); +__static_renaming("__mkstemp_1351", "mkstemp"); +__static_renaming("__mkstemp_1352", "mkstemp"); +__static_renaming("__mkstemp_1353", "mkstemp"); +__static_renaming("__mkstemps_1358", "mkstemps"); +__static_renaming("__mkstemps_1359", "mkstemps"); +__static_renaming("__mkstemps_1360", "mkstemps"); +__static_renaming("__mkstemps_1361", "mkstemps"); +__static_renaming("__mkdtemp_1363", "mkdtemp"); +__static_renaming("__mkdtemp_1364", "mkdtemp"); +__static_renaming("__system_1366", "system"); +__static_renaming("__system_1367", "system"); +__static_renaming("__system_1368", "system"); +__static_renaming("__system_1369", "system"); +__static_renaming("__realpath_1372", "realpath"); +__static_renaming("__realpath_1373", "realpath"); +__static_renaming("____compar_fn_t_1374", "__compar_fn_t"); +__static_renaming("__bsearch_1382", "bsearch"); +__static_renaming("__bsearch_1384", "bsearch"); +__static_renaming("____l_1391", "__l"); +__static_renaming("____u_1392", "__u"); +__static_renaming("____idx_1393", "__idx"); +__static_renaming("____p_1394", "__p"); +__static_renaming("____comparison_1395", "__comparison"); +__static_renaming("__qsort_1403", "qsort"); +__static_renaming("__qsort_1405", "qsort"); +__static_renaming("__abs_1408", "abs"); +__static_renaming("__abs_1409", "abs"); +__static_renaming("__labs_1411", "labs"); +__static_renaming("__labs_1412", "labs"); +__static_renaming("__llabs_1414", "llabs"); +__static_renaming("__llabs_1415", "llabs"); +__static_renaming("__div_1418", "div"); +__static_renaming("__div_1419", "div"); +__static_renaming("__ldiv_1422", "ldiv"); +__static_renaming("__ldiv_1424", "ldiv"); +__static_renaming("__lldiv_1428", "lldiv"); +__static_renaming("__lldiv_1430", "lldiv"); +__static_renaming("__ecvt_1436", "ecvt"); +__static_renaming("__ecvt_1437", "ecvt"); +__static_renaming("__fcvt_1442", "fcvt"); +__static_renaming("__fcvt_1443", "fcvt"); +__static_renaming("__gcvt_1447", "gcvt"); +__static_renaming("__gcvt_1448", "gcvt"); +__static_renaming("__qecvt_1453", "qecvt"); +__static_renaming("__qecvt_1454", "qecvt"); +__static_renaming("__qfcvt_1459", "qfcvt"); +__static_renaming("__qfcvt_1460", "qfcvt"); +__static_renaming("__qgcvt_1464", "qgcvt"); +__static_renaming("__qgcvt_1465", "qgcvt"); +__static_renaming("__ecvt_r_1472", "ecvt_r"); +__static_renaming("__fcvt_r_1479", "fcvt_r"); +__static_renaming("__qecvt_r_1486", "qecvt_r"); +__static_renaming("__qfcvt_r_1493", "qfcvt_r"); +__static_renaming("__mblen_1496", "mblen"); +__static_renaming("__mblen_1497", "mblen"); +__static_renaming("__mbtowc_1501", "mbtowc"); +__static_renaming("__wctomb_1504", "wctomb"); +__static_renaming("__mbstowcs_1508", "mbstowcs"); +__static_renaming("__wcstombs_1512", "wcstombs"); +__static_renaming("__rpmatch_1514", "rpmatch"); +__static_renaming("__rpmatch_1515", "rpmatch"); +__static_renaming("__getsubopt_1519", "getsubopt"); +__static_renaming("__getsubopt_1520", "getsubopt"); +__static_renaming("__getloadavg_1523", "getloadavg"); +__static_renaming("____realpath_chk_1528", "__realpath_chk"); +__static_renaming("____realpath_alias_1531", "__realpath_alias"); +__static_renaming("____realpath_chk_warn_1535", "__realpath_chk_warn"); +__static_renaming("____ptsname_r_chk_1543", "__ptsname_r_chk"); +__static_renaming("____ptsname_r_alias_1547", "__ptsname_r_alias"); +__static_renaming("____ptsname_r_chk_warn_1552", "__ptsname_r_chk_warn"); +__static_renaming("____wctomb_chk_1560", "__wctomb_chk"); +__static_renaming("____wctomb_alias_1563", "__wctomb_alias"); +__static_renaming("____mbstowcs_chk_1570", "__mbstowcs_chk"); +__static_renaming("____mbstowcs_alias_1574", "__mbstowcs_alias"); +__static_renaming("____mbstowcs_chk_warn_1579", "__mbstowcs_chk_warn"); +__static_renaming("____wcstombs_chk_1587", "__wcstombs_chk"); +__static_renaming("____wcstombs_alias_1591", "__wcstombs_alias"); +__static_renaming("____wcstombs_chk_warn_1596", "__wcstombs_chk_warn"); +__static_renaming("__ap_log_perror__1601", "ap_log_perror_"); +__static_renaming("__ap_log_perror__1602", "ap_log_perror_"); +__static_renaming("__ap_log_perror__1603", "ap_log_perror_"); +__static_renaming("__main_1607", "main"); + +__static_condition_renaming("__static_condition_default_74", "(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_118", "(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_161", "(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_162", "(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_165", "(defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_223", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_225", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_226", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_227", "(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_230", "(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_232", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_234", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_235", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_236", "(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_249", "!(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); +__static_condition_renaming("__static_condition_default_254", "!(defined _FILE_OFFSET_BITS) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_256", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_274", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_276", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_278", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_280", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_294", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_296", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_300", "(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_304", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_308", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_310", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_318", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_320", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_326", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_328", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_330", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_332", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_336", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_338", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_343", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_345", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_349", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_351", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_356", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_358", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_370", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_374", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_379", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_381", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_393", "!(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_394", "(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_395", "(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_400", "!(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_421", "!(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_429", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_431", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_433", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_435", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_446", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_448", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_449", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_451", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_453", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_454", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_457", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_459", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_469", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_470", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_471", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_473", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_474", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_475", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_480", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_482", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_494", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_495", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_496", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_497", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_499", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_500", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_501", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_502", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_507", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_508", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_510", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_511", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_517", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_528", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_533", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_538", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_540", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_551", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_556", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_562", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_567", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_573", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_575", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_577", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_579", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_586", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_588", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_595", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_597", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_603", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_605", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_610", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_612", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_624", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_625", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_626", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_627", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_633", "!(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_639", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_640", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_641", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_642", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_648", "!(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_649", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_655", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_657", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_661", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_663", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_672", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_680", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_684", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_686", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_688", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_694", "!(defined _FILE_OFFSET_BITS) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_695", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_696", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_706", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_707", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_708", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_714", "!(defined _FILE_OFFSET_BITS) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_715", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_716", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_718", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_719", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_720", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_727", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_729", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_733", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_735", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_739", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_743", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_745", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_749", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_751", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_760", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_762", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_766", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_768", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_772", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_774", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_778", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_784", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_788", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_790", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_794", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_798", "!(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_801", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_804", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_809", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_813", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_817", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_820", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_833", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_840", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_855", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_864", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_870", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_881", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_882", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_883", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_889", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_893", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_898", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_904", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_905", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_906", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_917", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_924", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_931", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_933", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_935", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_941", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_948", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_953", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_954", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_961", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_962", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_968", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_969", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_976", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_977", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_983", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_984", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_991", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_992", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_998", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_999", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1006", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1007", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1015", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_1016", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1017", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1027", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1167", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1381", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1383", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1396", "(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1397", "(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1404", "!(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1406", "(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1423", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1425", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1429", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1431", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1538", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1604", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1605", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1606", "!(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_1608", "!(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); + +if (__static_condition_default_1608) { __static_parse_error("Unable to parse"); } }; @@ -1496,498 +1004,297 @@ typedef long int ____ssize_t_49;// L110:L172 typedef long int ____syscall_slong_t_50;// L93:L175 typedef unsigned long int ____syscall_ulong_t_51;// L94:L177 typedef ____off64_t_24 ____loff_t_52;// L181 -typedef ____quad_t_14 * (____qaddr_t_54);// L182 -typedef char * (____caddr_t_55);// L183 -typedef long int ____intptr_t_56;// L110:L186 -typedef unsigned int ____socklen_t_57;// L92:L189 -typedef struct __forward_tag_reference_58 __FILE_59;// L48 -typedef struct __forward_tag_reference_58 ____FILE_60;// L64 -union ____anonymous_tag_61_62 { -unsigned int ____wch_63;// L265 -char ____wchb_64[4];// L92 -}; -struct ____anonymous_tag_65_66 { -int ____count_67;// L84 -union ____anonymous_tag_61_62 ____value_68;// L85 -}; -typedef struct ____anonymous_tag_65_66 ____mbstate_t_69;// L82:L94 -struct ____anonymous_tag_70_71 { -____off_t_23 ____pos_72;// L0 -____mbstate_t_69 ____state_74;// L0 +typedef ____quad_t_14 * (____qaddr_t_53);// L182 +typedef char * (____caddr_t_54);// L183 +typedef long int ____intptr_t_55;// L110:L186 +typedef unsigned int ____socklen_t_56;// L92:L189 +typedef struct __forward_tag_reference_57 __FILE_58;// L48 +typedef struct __forward_tag_reference_57 ____FILE_59;// L64 +union ____anonymous_tag_60_61 { +unsigned int ____wch_62;// L265 +char ____wchb_63[4];// L92 }; -typedef struct ____anonymous_tag_70_71 ___G_fpos_t_77;// L21:L25 -struct ____anonymous_tag_78_79 { -____off64_t_24 ____pos_80;// L0 -____mbstate_t_69 ____state_82;// L0 +struct ____anonymous_tag_64_65 { +int ____count_66;// L84 +union ____anonymous_tag_60_61 ____value_67;// L85 }; -typedef struct ____anonymous_tag_78_79 ___G_fpos64_t_85;// L26:L30 -typedef __builtin_va_list ____gnuc_va_list_86;// L40 -typedef void ___IO_lock_t_88;// L150 -struct ___IO_marker_90 { -struct __forward_tag_reference_89 * (___next_91);// L0 -struct __forward_tag_reference_58 * (___sbuf_92);// L0 -int ___pos_93;// L162 +typedef struct ____anonymous_tag_64_65 ____mbstate_t_68;// L82:L94 +struct ____anonymous_tag_69_70 { +____off_t_23 ____pos_71;// L0 +____mbstate_t_68 ____state_72;// L0 }; -enum ____codecvt_result_98 { -____codecvt_ok_94, -____codecvt_partial_95, -____codecvt_error_96, -____codecvt_noconv_97, +typedef struct ____anonymous_tag_69_70 ___G_fpos_t_75;// L21:L25 +struct ____anonymous_tag_76_77 { +____off64_t_24 ____pos_78;// L0 +____mbstate_t_68 ____state_79;// L0 }; -struct ___IO_FILE_99 { -int ___flags_100;// L242 -char * (___IO_read_ptr_101);// L247 -char * (___IO_read_end_102);// L248 -char * (___IO_read_base_103);// L249 -char * (___IO_write_base_104);// L250 -char * (___IO_write_ptr_105);// L251 -char * (___IO_write_end_106);// L252 -char * (___IO_buf_base_107);// L253 -char * (___IO_buf_end_108);// L254 -char * (___IO_save_base_109);// L256 -char * (___IO_backup_base_110);// L257 -char * (___IO_save_end_111);// L258 -struct ___IO_marker_90 * (___markers_112);// L260 -struct __forward_tag_reference_58 * (___chain_113);// L0 -int ___fileno_114;// L264 -int ___flags2_115;// L268 -____off_t_23 ___old_offset_116;// L0 -unsigned short ___cur_column_118;// L274 -signed char ___vtable_offset_119;// L275 -char ___shortbuf_120[1];// L276 -___IO_lock_t_88 * (___lock_121);// L0 +typedef struct ____anonymous_tag_76_77 ___G_fpos64_t_81;// L26:L30 +typedef __builtin_va_list ____gnuc_va_list_82;// L40 +typedef void ___IO_lock_t_84;// L150 +struct ___IO_marker_86 { +struct __forward_tag_reference_85 * (___next_87);// L0 +struct __forward_tag_reference_57 * (___sbuf_88);// L0 +int ___pos_89;// L162 }; -struct ___IO_FILE_124 { -int ___flags_125;// L242 -char * (___IO_read_ptr_126);// L247 -char * (___IO_read_end_127);// L248 -char * (___IO_read_base_128);// L249 -char * (___IO_write_base_129);// L250 -char * (___IO_write_ptr_130);// L251 -char * (___IO_write_end_131);// L252 -char * (___IO_buf_base_132);// L253 -char * (___IO_buf_end_133);// L254 -char * (___IO_save_base_134);// L256 -char * (___IO_backup_base_135);// L257 -char * (___IO_save_end_136);// L258 -struct ___IO_marker_90 * (___markers_137);// L260 -struct __forward_tag_reference_58 * (___chain_138);// L0 -int ___fileno_139;// L264 -int ___flags2_140;// L268 -____off_t_23 ___old_offset_141;// L0 -unsigned short ___cur_column_143;// L274 -signed char ___vtable_offset_144;// L275 -char ___shortbuf_145[1];// L276 -___IO_lock_t_88 * (___lock_146);// L0 -____off64_t_24 ___offset_148;// L0 -void * (____pad1_150);// L297 -void * (____pad2_151);// L298 -void * (____pad3_152);// L299 -void * (____pad4_153);// L300 -__size_t_1 ____pad5_154;// L0 -int ___mode_155;// L303 -char ___unused2_156[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +enum ____codecvt_result_94 { +____codecvt_ok_90, +____codecvt_partial_91, +____codecvt_error_92, +____codecvt_noconv_93, }; -struct ___IO_FILE_complete_157 { -struct ___IO_FILE_99 ___file_158;// L286 -____off64_t_24 ___offset_160;// L0 -void * (____pad1_162);// L297 -void * (____pad2_163);// L298 -void * (____pad3_164);// L299 -void * (____pad4_165);// L300 -__size_t_1 ____pad5_166;// L0 -int ___mode_167;// L303 -char ___unused2_168[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +struct ___IO_FILE_95 { +int ___flags_96;// L242 +char * (___IO_read_ptr_97);// L247 +char * (___IO_read_end_98);// L248 +char * (___IO_read_base_99);// L249 +char * (___IO_write_base_100);// L250 +char * (___IO_write_ptr_101);// L251 +char * (___IO_write_end_102);// L252 +char * (___IO_buf_base_103);// L253 +char * (___IO_buf_end_104);// L254 +char * (___IO_save_base_105);// L256 +char * (___IO_backup_base_106);// L257 +char * (___IO_save_end_107);// L258 +struct ___IO_marker_86 * (___markers_108);// L260 +struct __forward_tag_reference_57 * (___chain_109);// L0 +int ___fileno_110;// L264 +int ___flags2_111;// L268 +____off_t_23 ___old_offset_112;// L0 +unsigned short ___cur_column_113;// L274 +signed char ___vtable_offset_114;// L275 +char ___shortbuf_115[1];// L276 +___IO_lock_t_84 * (___lock_116);// L0 }; -typedef struct ___IO_FILE_99 ___IO_FILE_171;// L310 -typedef struct ___IO_FILE_124 ___IO_FILE_172;// L310 -typedef ____ssize_t_49 (____io_read_fn_181) (void * (____cookie_178), char * (____buf_179), __size_t_1 ____nbytes_180);// L333 -typedef ____ssize_t_49 (____io_write_fn_186) (void * (____cookie_183), const char * (____buf_184), __size_t_1 ____n_185);// L341:L342 -typedef int (____io_seek_fn_192) (void * (____cookie_188), ____off64_t_24 * (____pos_189), int ____w_191);// L350 -typedef int (____io_close_fn_195) (void * (____cookie_194));// L353 -typedef ____gnuc_va_list_86 __va_list_279;// L79 -typedef ____off_t_23 __off_t_281;// L90 -typedef ____off64_t_24 __off_t_283;// L92 -typedef ____ssize_t_49 __ssize_t_285;// L102 -typedef ___G_fpos_t_77 __fpos_t_287;// L110 -typedef ___G_fpos64_t_85 __fpos_t_289;// L112 -extern const char * const __sys_errlist_830[];// L27 -typedef long int __ptrdiff_t_1092;// L143:L324 -typedef long unsigned int __size_t_1093;// L177:L209 -typedef int __wchar_t_1094;// L243:L321 -enum ____anonymous_tag_1098_1099 { -__P_ALL_1095, -__P_PID_1096, -__P_PGID_1097, +struct ___IO_FILE_119 { +int ___flags_120;// L242 +char * (___IO_read_ptr_121);// L247 +char * (___IO_read_end_122);// L248 +char * (___IO_read_base_123);// L249 +char * (___IO_write_base_124);// L250 +char * (___IO_write_ptr_125);// L251 +char * (___IO_write_end_126);// L252 +char * (___IO_buf_base_127);// L253 +char * (___IO_buf_end_128);// L254 +char * (___IO_save_base_129);// L256 +char * (___IO_backup_base_130);// L257 +char * (___IO_save_end_131);// L258 +struct ___IO_marker_86 * (___markers_132);// L260 +struct __forward_tag_reference_57 * (___chain_133);// L0 +int ___fileno_134;// L264 +int ___flags2_135;// L268 +____off_t_23 ___old_offset_136;// L0 +unsigned short ___cur_column_137;// L274 +signed char ___vtable_offset_138;// L275 +char ___shortbuf_139[1];// L276 +___IO_lock_t_84 * (___lock_140);// L0 +____off64_t_24 ___offset_142;// L0 +void * (____pad1_143);// L297 +void * (____pad2_144);// L298 +void * (____pad3_145);// L299 +void * (____pad4_146);// L300 +__size_t_1 ____pad5_147;// L0 +int ___mode_148;// L303 +char ___unused2_149[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -typedef enum ____anonymous_tag_1098_1099 __idtype_t_1100;// L50:L55 -typedef unsigned char ____u_char_1101;// L30 -typedef unsigned short int ____u_short_1102;// L31 -typedef unsigned int ____u_int_1103;// L32 -typedef unsigned long int ____u_long_1104;// L33 -typedef signed char ____int8_t_1105;// L36 -typedef unsigned char ____uint8_t_1106;// L37 -typedef signed short int ____int16_t_1107;// L38 -typedef unsigned short int ____uint16_t_1108;// L39 -typedef signed int ____int32_t_1109;// L40 -typedef unsigned int ____uint32_t_1110;// L41 -typedef signed long int ____int64_t_1111;// L43 -typedef unsigned long int ____uint64_t_1112;// L44 -typedef long int ____quad_t_1113;// L52 -typedef unsigned long int ____u_quad_t_1114;// L53 -typedef unsigned long int ____dev_t_1115;// L109:L124 -typedef unsigned int ____uid_t_1116;// L92:L125 -typedef unsigned int ____gid_t_1117;// L92:L126 -typedef unsigned long int ____ino_t_1118;// L94:L127 -typedef unsigned long int ____ino64_t_1119;// L109:L128 -typedef unsigned int ____mode_t_1120;// L92:L129 -typedef unsigned long int ____nlink_t_1121;// L94:L130 -typedef long int ____off_t_1122;// L93:L131 -typedef long int ____off64_t_1123;// L108:L132 -typedef int ____pid_t_1124;// L91:L133 -struct ____anonymous_tag_1125_1126 { -int ____val_1127[2];// L72 +struct ___IO_FILE_complete_150 { +struct ___IO_FILE_95 ___file_151;// L286 +____off64_t_24 ___offset_153;// L0 +void * (____pad1_154);// L297 +void * (____pad2_155);// L298 +void * (____pad3_156);// L299 +void * (____pad4_157);// L300 +__size_t_1 ____pad5_158;// L0 +int ___mode_159;// L303 +char ___unused2_160[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -typedef struct ____anonymous_tag_1125_1126 ____fsid_t_1128;// L72:L134 -typedef long int ____clock_t_1129;// L93:L135 -typedef unsigned long int ____rlim_t_1130;// L94:L136 -typedef unsigned long int ____rlim64_t_1131;// L109:L137 -typedef unsigned int ____id_t_1132;// L92:L138 -typedef long int ____time_t_1133;// L93:L139 -typedef unsigned int ____useconds_t_1134;// L92:L140 -typedef long int ____suseconds_t_1135;// L93:L141 -typedef int ____daddr_t_1136;// L91:L143 -typedef int ____key_t_1137;// L91:L144 -typedef int ____clockid_t_1138;// L91:L147 -typedef void * (____timer_t_1139);// L70:L150 -typedef long int ____blksize_t_1140;// L93:L153 -typedef long int ____blkcnt_t_1141;// L93:L158 -typedef long int ____blkcnt64_t_1142;// L108:L159 -typedef unsigned long int ____fsblkcnt_t_1143;// L94:L162 -typedef unsigned long int ____fsblkcnt64_t_1144;// L109:L163 -typedef unsigned long int ____fsfilcnt_t_1145;// L94:L166 -typedef unsigned long int ____fsfilcnt64_t_1146;// L109:L167 -typedef long int ____fsword_t_1147;// L93:L170 -typedef long int ____ssize_t_1148;// L110:L172 -typedef long int ____syscall_slong_t_1149;// L93:L175 -typedef unsigned long int ____syscall_ulong_t_1150;// L94:L177 -typedef ____off64_t_1123 ____loff_t_1151;// L181 -typedef ____quad_t_1113 * (____qaddr_t_1153);// L182 -typedef char * (____caddr_t_1154);// L183 -typedef long int ____intptr_t_1155;// L110:L186 -typedef unsigned int ____socklen_t_1156;// L92:L189 -struct ____anonymous_tag_1166_1167 { -unsigned int ____w_termsig_1168 : 7;// L72 -unsigned int ____w_coredump_1169 : 1;// L73 -unsigned int ____w_retcode_1170 : 8;// L74 -unsigned int __anon_id_0_1171 : 16;// L75 +typedef struct ___IO_FILE_95 ___IO_FILE_163;// L310 +typedef struct ___IO_FILE_119 ___IO_FILE_164;// L310 +typedef ____ssize_t_49 (____io_read_fn_173) (void * (____cookie_170), char * (____buf_171), __size_t_1 ____nbytes_172);// L333 +typedef ____ssize_t_49 (____io_write_fn_177) (void * (____cookie_174), const char * (____buf_175), __size_t_1 ____n_176);// L341:L342 +typedef int (____io_seek_fn_181) (void * (____cookie_178), ____off64_t_24 * (____pos_179), int ____w_180);// L350 +typedef int (____io_close_fn_183) (void * (____cookie_182));// L353 +typedef ____gnuc_va_list_82 __va_list_248;// L79 +typedef ____off_t_23 __off_t_250;// L90 +typedef ____off64_t_24 __off_t_251;// L92 +typedef ____ssize_t_49 __ssize_t_252;// L102 +typedef ___G_fpos_t_75 __fpos_t_253;// L110 +typedef ___G_fpos64_t_81 __fpos_t_255;// L112 +extern const char * const __sys_errlist_756[];// L27 +typedef int __wchar_t_1018;// L243:L321 +enum ____anonymous_tag_1022_1023 { +__P_ALL_1019, +__P_PID_1020, +__P_PGID_1021, }; -struct ____anonymous_tag_1172_1173 { -unsigned int ____w_stopval_1174 : 8;// L87 -unsigned int ____w_stopsig_1175 : 8;// L88 -unsigned int __anon_id_1_1176 : 16;// L89 +typedef enum ____anonymous_tag_1022_1023 __idtype_t_1024;// L50:L55 +struct ____anonymous_tag_1030_1031 { +unsigned int ____w_termsig_1032 : 7;// L72 +unsigned int ____w_coredump_1033 : 1;// L73 +unsigned int ____w_retcode_1034 : 8;// L74 +unsigned int __anon_id_0_1035 : 16;// L75 }; -union __wait_1177 { -int __w_status_1178;// L68 -struct ____anonymous_tag_1166_1167 ____wait_terminated_1179;// L69 -struct ____anonymous_tag_1172_1173 ____wait_stopped_1180;// L84 +struct ____anonymous_tag_1036_1037 { +unsigned int ____w_stopval_1038 : 8;// L87 +unsigned int ____w_stopsig_1039 : 8;// L88 +unsigned int __anon_id_1_1040 : 16;// L89 }; -union ____anonymous_tag_1181_1182 { -union __wait_1177 * (____uptr_1183);// L69 -int * (____iptr_1184);// L70 +union __wait_1041 { +int __w_status_1042;// L68 +struct ____anonymous_tag_1030_1031 ____wait_terminated_1043;// L69 +struct ____anonymous_tag_1036_1037 ____wait_stopped_1044;// L84 }; -typedef union ____anonymous_tag_1181_1182 ____WAIT_STATUS_1185;// L67:L71 -struct ____anonymous_tag_1186_1187 { -int __quot_1188;// L99 -int __rem_1189;// L100 +union ____anonymous_tag_1045_1046 { +union __wait_1041 * (____uptr_1047);// L69 +int * (____iptr_1048);// L70 }; -typedef struct ____anonymous_tag_1186_1187 __div_t_1190;// L97:L101 -struct ____anonymous_tag_1191_1192 { -long int __quot_1193;// L107 -long int __rem_1194;// L108 +typedef union ____anonymous_tag_1045_1046 ____WAIT_STATUS_1049;// L67:L71 +struct ____anonymous_tag_1050_1051 { +int __quot_1052;// L99 +int __rem_1053;// L100 }; -typedef struct ____anonymous_tag_1191_1192 __ldiv_t_1195;// L105:L109 -struct ____anonymous_tag_1196_1197 { -long long int __quot_1198;// L119 -long long int __rem_1199;// L120 +typedef struct ____anonymous_tag_1050_1051 __div_t_1054;// L97:L101 +struct ____anonymous_tag_1055_1056 { +long int __quot_1057;// L107 +long int __rem_1058;// L108 }; -typedef struct ____anonymous_tag_1196_1197 __lldiv_t_1200;// L117:L121 -typedef unsigned char ____u_char_1264;// L30 -typedef unsigned short int ____u_short_1265;// L31 -typedef unsigned int ____u_int_1266;// L32 -typedef unsigned long int ____u_long_1267;// L33 -typedef signed char ____int8_t_1268;// L36 -typedef unsigned char ____uint8_t_1269;// L37 -typedef signed short int ____int16_t_1270;// L38 -typedef unsigned short int ____uint16_t_1271;// L39 -typedef signed int ____int32_t_1272;// L40 -typedef unsigned int ____uint32_t_1273;// L41 -typedef signed long int ____int64_t_1274;// L43 -typedef unsigned long int ____uint64_t_1275;// L44 -typedef long int ____quad_t_1276;// L52 -typedef unsigned long int ____u_quad_t_1277;// L53 -typedef unsigned long int ____dev_t_1278;// L109:L124 -typedef unsigned int ____uid_t_1279;// L92:L125 -typedef unsigned int ____gid_t_1280;// L92:L126 -typedef unsigned long int ____ino_t_1281;// L94:L127 -typedef unsigned long int ____ino64_t_1282;// L109:L128 -typedef unsigned int ____mode_t_1283;// L92:L129 -typedef unsigned long int ____nlink_t_1284;// L94:L130 -typedef long int ____off_t_1285;// L93:L131 -typedef long int ____off64_t_1286;// L108:L132 -typedef int ____pid_t_1287;// L91:L133 -struct ____anonymous_tag_1288_1289 { -int ____val_1290[2];// L72 +typedef struct ____anonymous_tag_1055_1056 __ldiv_t_1059;// L105:L109 +struct ____anonymous_tag_1060_1061 { +long long int __quot_1062;// L119 +long long int __rem_1063;// L120 }; -typedef struct ____anonymous_tag_1288_1289 ____fsid_t_1291;// L72:L134 -typedef long int ____clock_t_1292;// L93:L135 -typedef unsigned long int ____rlim_t_1293;// L94:L136 -typedef unsigned long int ____rlim64_t_1294;// L109:L137 -typedef unsigned int ____id_t_1295;// L92:L138 -typedef long int ____time_t_1296;// L93:L139 -typedef unsigned int ____useconds_t_1297;// L92:L140 -typedef long int ____suseconds_t_1298;// L93:L141 -typedef int ____daddr_t_1299;// L91:L143 -typedef int ____key_t_1300;// L91:L144 -typedef int ____clockid_t_1301;// L91:L147 -typedef void * (____timer_t_1302);// L70:L150 -typedef long int ____blksize_t_1303;// L93:L153 -typedef long int ____blkcnt_t_1304;// L93:L158 -typedef long int ____blkcnt64_t_1305;// L108:L159 -typedef unsigned long int ____fsblkcnt_t_1306;// L94:L162 -typedef unsigned long int ____fsblkcnt64_t_1307;// L109:L163 -typedef unsigned long int ____fsfilcnt_t_1308;// L94:L166 -typedef unsigned long int ____fsfilcnt64_t_1309;// L109:L167 -typedef long int ____fsword_t_1310;// L93:L170 -typedef long int ____ssize_t_1311;// L110:L172 -typedef long int ____syscall_slong_t_1312;// L93:L175 -typedef unsigned long int ____syscall_ulong_t_1313;// L94:L177 -typedef ____off64_t_1286 ____loff_t_1314;// L181 -typedef ____quad_t_1276 * (____qaddr_t_1316);// L182 -typedef char * (____caddr_t_1317);// L183 -typedef long int ____intptr_t_1318;// L110:L186 -typedef unsigned int ____socklen_t_1319;// L92:L189 -typedef ____u_char_2 __u_char_1320;// L33 -typedef ____u_char_1101 __u_char_1321;// L33 -typedef ____u_char_1264 __u_char_1322;// L33 -typedef ____u_short_3 __u_short_1323;// L34 -typedef ____u_short_1102 __u_short_1324;// L34 -typedef ____u_short_1265 __u_short_1325;// L34 -typedef ____u_int_4 __u_int_1326;// L35 -typedef ____u_int_1103 __u_int_1327;// L35 -typedef ____u_int_1266 __u_int_1328;// L35 -typedef ____u_long_5 __u_long_1329;// L36 -typedef ____u_long_1104 __u_long_1330;// L36 -typedef ____u_long_1267 __u_long_1331;// L36 -typedef ____quad_t_14 __quad_t_1332;// L37 -typedef ____quad_t_1113 __quad_t_1333;// L37 -typedef ____quad_t_1276 __quad_t_1334;// L37 -typedef ____u_quad_t_15 __u_quad_t_1335;// L38 -typedef ____u_quad_t_1114 __u_quad_t_1336;// L38 -typedef ____u_quad_t_1277 __u_quad_t_1337;// L38 -typedef ____fsid_t_29 __fsid_t_1338;// L39 -typedef ____fsid_t_1128 __fsid_t_1339;// L39 -typedef ____fsid_t_1291 __fsid_t_1340;// L39 -typedef ____loff_t_52 __loff_t_1342;// L44 -typedef ____loff_t_1151 __loff_t_1343;// L44 -typedef ____loff_t_1314 __loff_t_1344;// L44 -typedef ____loff_t_52 __loff_t_1346;// L44 -typedef ____loff_t_1151 __loff_t_1347;// L44 -typedef ____loff_t_1314 __loff_t_1348;// L44 -typedef ____ino64_t_20 __ino_t_1350;// L50 -typedef ____ino64_t_1119 __ino_t_1351;// L50 -typedef ____ino64_t_1282 __ino_t_1352;// L50 -typedef ____ino_t_19 __ino_t_1354;// L48 -typedef ____ino_t_1118 __ino_t_1355;// L48 -typedef ____ino_t_1281 __ino_t_1356;// L48 -typedef ____dev_t_16 __dev_t_1358;// L60 -typedef ____dev_t_1115 __dev_t_1359;// L60 -typedef ____dev_t_1278 __dev_t_1360;// L60 -typedef ____gid_t_18 __gid_t_1362;// L65 -typedef ____gid_t_1117 __gid_t_1363;// L65 -typedef ____gid_t_1280 __gid_t_1364;// L65 -typedef ____gid_t_18 __gid_t_1366;// L65 -typedef ____gid_t_1117 __gid_t_1367;// L65 -typedef ____gid_t_1280 __gid_t_1368;// L65 -typedef ____mode_t_21 __mode_t_1370;// L70 -typedef ____mode_t_1120 __mode_t_1371;// L70 -typedef ____mode_t_1283 __mode_t_1372;// L70 -typedef ____nlink_t_22 __nlink_t_1374;// L75 -typedef ____nlink_t_1121 __nlink_t_1375;// L75 -typedef ____nlink_t_1284 __nlink_t_1376;// L75 -typedef ____uid_t_17 __uid_t_1378;// L80 -typedef ____uid_t_1116 __uid_t_1379;// L80 -typedef ____uid_t_1279 __uid_t_1380;// L80 -typedef ____uid_t_17 __uid_t_1382;// L80 -typedef ____uid_t_1116 __uid_t_1383;// L80 -typedef ____uid_t_1279 __uid_t_1384;// L80 -typedef ____off64_t_1123 __off_t_1386;// L88 -typedef ____off64_t_1286 __off_t_1387;// L88 -typedef ____off_t_1122 __off_t_1389;// L86 -typedef ____off_t_1285 __off_t_1390;// L86 -typedef ____pid_t_25 __pid_t_1392;// L98 -typedef ____pid_t_1124 __pid_t_1393;// L98 -typedef ____pid_t_1287 __pid_t_1394;// L98 -typedef ____pid_t_1124 __pid_t_1396;// L98 -typedef ____pid_t_1287 __pid_t_1397;// L98 -typedef ____id_t_33 __id_t_1399;// L104 -typedef ____id_t_1132 __id_t_1400;// L104 -typedef ____id_t_1295 __id_t_1401;// L104 -typedef ____ssize_t_1148 __ssize_t_1403;// L109 -typedef ____ssize_t_1311 __ssize_t_1404;// L109 -typedef ____daddr_t_37 __daddr_t_1406;// L115 -typedef ____daddr_t_1136 __daddr_t_1407;// L115 -typedef ____daddr_t_1299 __daddr_t_1408;// L115 -typedef ____caddr_t_55 __caddr_t_1410;// L116 -typedef ____caddr_t_1154 __caddr_t_1411;// L116 -typedef ____caddr_t_1317 __caddr_t_1412;// L116 -typedef ____key_t_38 __key_t_1413;// L122 -typedef ____key_t_1137 __key_t_1414;// L122 -typedef ____key_t_1300 __key_t_1415;// L122 -typedef ____key_t_38 __key_t_1417;// L122 -typedef ____key_t_1137 __key_t_1418;// L122 -typedef ____key_t_1300 __key_t_1419;// L122 -typedef ____clock_t_30 __clock_t_1421;// L59 -typedef ____clock_t_1129 __clock_t_1422;// L59 -typedef ____clock_t_1292 __clock_t_1423;// L59 -typedef ____time_t_34 __time_t_1425;// L75 -typedef ____time_t_1133 __time_t_1426;// L75 -typedef ____time_t_1296 __time_t_1427;// L75 -typedef ____clockid_t_39 __clockid_t_1429;// L91 -typedef ____clockid_t_1138 __clockid_t_1430;// L91 -typedef ____clockid_t_1301 __clockid_t_1431;// L91 -typedef ____timer_t_40 __timer_t_1433;// L103 -typedef ____timer_t_1139 __timer_t_1434;// L103 -typedef ____timer_t_1302 __timer_t_1435;// L103 -typedef unsigned long int __ulong_1437;// L150 -typedef unsigned long int __ulong_1438;// L150 -typedef unsigned long int __ulong_1439;// L150 -typedef unsigned short int __ushort_1440;// L151 -typedef unsigned int __uint_1441;// L152 -typedef int __int8_t_1442;// L188:L194 -typedef int __int16_t_1443;// L188:L195 -typedef int __int32_t_1444;// L188:L196 -typedef int __int64_t_1445;// L188:L197 -typedef unsigned int __u_int8_t_1446;// L190:L200 -typedef unsigned int __u_int16_t_1447;// L190:L201 -typedef unsigned int __u_int32_t_1448;// L190:L202 -typedef unsigned int __u_int64_t_1449;// L190:L203 -typedef int __register_t_1450;// L205 -typedef int ____sig_atomic_t_1460;// L22 -struct ____anonymous_tag_1461_1462 { -unsigned long int ____val_1463[( 1024 / ( 8 * sizeof(unsigned long) ) )];// L29 +typedef struct ____anonymous_tag_1060_1061 __lldiv_t_1064;// L117:L121 +typedef ____u_char_2 __u_char_1124;// L33 +typedef ____u_short_3 __u_short_1125;// L34 +typedef ____u_int_4 __u_int_1126;// L35 +typedef ____u_long_5 __u_long_1127;// L36 +typedef ____quad_t_14 __quad_t_1128;// L37 +typedef ____u_quad_t_15 __u_quad_t_1129;// L38 +typedef ____fsid_t_29 __fsid_t_1130;// L39 +typedef ____loff_t_52 __loff_t_1131;// L44 +typedef ____ino64_t_20 __ino_t_1132;// L50 +typedef ____ino_t_19 __ino_t_1133;// L48 +typedef ____dev_t_16 __dev_t_1134;// L60 +typedef ____gid_t_18 __gid_t_1135;// L65 +typedef ____gid_t_18 __gid_t_1136;// L65 +typedef ____mode_t_21 __mode_t_1137;// L70 +typedef ____nlink_t_22 __nlink_t_1138;// L75 +typedef ____uid_t_17 __uid_t_1139;// L80 +typedef ____uid_t_17 __uid_t_1140;// L80 +typedef ____pid_t_25 __pid_t_1141;// L98 +typedef ____id_t_33 __id_t_1142;// L104 +typedef ____daddr_t_37 __daddr_t_1143;// L115 +typedef ____caddr_t_54 __caddr_t_1144;// L116 +typedef ____key_t_38 __key_t_1145;// L122 +typedef ____key_t_38 __key_t_1146;// L122 +typedef ____clock_t_30 __clock_t_1147;// L59 +typedef ____time_t_34 __time_t_1148;// L75 +typedef ____clockid_t_39 __clockid_t_1149;// L91 +typedef ____timer_t_40 __timer_t_1150;// L103 +typedef unsigned long int __ulong_1151;// L150 +typedef unsigned long int __ulong_1152;// L150 +typedef unsigned long int __ulong_1153;// L150 +typedef unsigned short int __ushort_1154;// L151 +typedef unsigned int __uint_1155;// L152 +typedef int __int8_t_1156;// L188:L194 +typedef int __int16_t_1157;// L188:L195 +typedef int __int32_t_1158;// L188:L196 +typedef int __int64_t_1159;// L188:L197 +typedef unsigned int __u_int8_t_1160;// L190:L200 +typedef unsigned int __u_int16_t_1161;// L190:L201 +typedef unsigned int __u_int32_t_1162;// L190:L202 +typedef unsigned int __u_int64_t_1163;// L190:L203 +typedef int __register_t_1164;// L205 +typedef int ____sig_atomic_t_1170;// L22 +struct ____anonymous_tag_1171_1172 { +unsigned long int ____val_1173[( 1024 / ( 8 * sizeof(unsigned long) ) )];// L29 }; -typedef struct ____anonymous_tag_1461_1462 ____sigset_t_1464;// L27:L30 -typedef ____sigset_t_1464 __sigset_t_1465;// L37 -struct __timespec_1466 { -____time_t_34 __tv_sec_1467;// L0 -____time_t_1133 __tv_sec_1468;// L0 -____time_t_1296 __tv_sec_1469;// L0 -____syscall_slong_t_50 __tv_nsec_1471;// L0 -____syscall_slong_t_1149 __tv_nsec_1472;// L0 -____syscall_slong_t_1312 __tv_nsec_1473;// L0 +typedef struct ____anonymous_tag_1171_1172 ____sigset_t_1174;// L27:L30 +typedef ____sigset_t_1174 __sigset_t_1175;// L37 +struct __timespec_1176 { +____time_t_34 __tv_sec_1177;// L0 +____syscall_slong_t_50 __tv_nsec_1178;// L0 }; -struct __timeval_1476 { -____time_t_34 __tv_sec_1477;// L0 -____time_t_1133 __tv_sec_1478;// L0 -____time_t_1296 __tv_sec_1479;// L0 -____suseconds_t_36 __tv_usec_1481;// L0 -____suseconds_t_1135 __tv_usec_1482;// L0 -____suseconds_t_1298 __tv_usec_1483;// L0 +struct __timeval_1179 { +____time_t_34 __tv_sec_1180;// L0 +____suseconds_t_36 __tv_usec_1181;// L0 }; -typedef ____suseconds_t_36 __suseconds_t_1486;// L48 -typedef ____suseconds_t_1135 __suseconds_t_1487;// L48 -typedef ____suseconds_t_1298 __suseconds_t_1488;// L48 -typedef long int ____fd_mask_1490;// L54 -typedef long int ____fd_mask_1491;// L54 -struct ____anonymous_tag_1492_1493 { -____fd_mask_1490 ____fds_bits_1494[1024 / ( 8 * ( int ) sizeof(long) )];// L0 -____fd_mask_1491 ____fds_bits_1496[1024 / ( 8 * ( int ) sizeof(long) )];// L0 +typedef ____suseconds_t_36 __suseconds_t_1182;// L48 +typedef long int ____fd_mask_1183;// L54 +typedef long int ____fd_mask_1184;// L54 +struct ____anonymous_tag_1185_1186 { +____fd_mask_1183 ____fds_bits_1187[1024 / ( 8 * ( int ) sizeof(long) )];// L0 +____fd_mask_1184 ____fds_bits_1188[1024 / ( 8 * ( int ) sizeof(long) )];// L0 }; -typedef struct ____anonymous_tag_1492_1493 __fd_set_1499;// L64:L75 -typedef ____fd_mask_1490 __fd_mask_1500;// L82 -typedef ____fd_mask_1491 __fd_mask_1501;// L82 -typedef ____blksize_t_41 __blksize_t_1549;// L228 -typedef ____blksize_t_1140 __blksize_t_1550;// L228 -typedef ____blksize_t_1303 __blksize_t_1551;// L228 -typedef ____blkcnt_t_42 __blkcnt_t_1553;// L235 -typedef ____blkcnt_t_1141 __blkcnt_t_1554;// L235 -typedef ____blkcnt_t_1304 __blkcnt_t_1555;// L235 -typedef ____fsblkcnt_t_44 __fsblkcnt_t_1557;// L239 -typedef ____fsblkcnt_t_1143 __fsblkcnt_t_1558;// L239 -typedef ____fsblkcnt_t_1306 __fsblkcnt_t_1559;// L239 -typedef ____blkcnt64_t_43 __blkcnt_t_1561;// L248 -typedef ____blkcnt64_t_1142 __blkcnt_t_1562;// L248 -typedef ____blkcnt64_t_1305 __blkcnt_t_1563;// L248 -typedef ____fsblkcnt64_t_45 __fsblkcnt_t_1565;// L252 -typedef ____fsblkcnt64_t_1144 __fsblkcnt_t_1566;// L252 -typedef ____fsblkcnt64_t_1307 __fsblkcnt_t_1567;// L252 -typedef ____fsfilcnt_t_46 __fsfilcnt_t_1569;// L243 -typedef ____fsfilcnt_t_1145 __fsfilcnt_t_1570;// L243 -typedef ____fsfilcnt_t_1308 __fsfilcnt_t_1571;// L243 -typedef ____fsfilcnt64_t_47 __fsfilcnt_t_1573;// L256 -typedef ____fsfilcnt64_t_1146 __fsfilcnt_t_1574;// L256 -typedef ____fsfilcnt64_t_1309 __fsfilcnt_t_1575;// L256 -typedef unsigned long int __pthread_t_1577;// L60 -union __pthread_attr_t_1578 { -char ____size_1579[56];// L65 -long int ____align_1580;// L66 +typedef struct ____anonymous_tag_1185_1186 __fd_set_1189;// L64:L75 +typedef ____fd_mask_1183 __fd_mask_1190;// L82 +typedef ____fd_mask_1184 __fd_mask_1191;// L82 +typedef ____blksize_t_41 __blksize_t_1227;// L228 +typedef ____blkcnt_t_42 __blkcnt_t_1228;// L235 +typedef ____fsblkcnt_t_44 __fsblkcnt_t_1229;// L239 +typedef ____blkcnt64_t_43 __blkcnt_t_1230;// L248 +typedef ____fsblkcnt64_t_45 __fsblkcnt_t_1231;// L252 +typedef ____fsfilcnt_t_46 __fsfilcnt_t_1232;// L243 +typedef ____fsfilcnt64_t_47 __fsfilcnt_t_1233;// L256 +typedef unsigned long int __pthread_t_1234;// L60 +union __pthread_attr_t_1235 { +char ____size_1236[56];// L65 +long int ____align_1237;// L66 }; -typedef union __pthread_attr_t_1578 __pthread_attr_t_1581;// L69 -struct ____pthread_internal_list_1583 { -struct __forward_tag_reference_1582 * (____prev_1584);// L0 -struct __forward_tag_reference_1582 * (____next_1585);// L0 +typedef union __pthread_attr_t_1235 __pthread_attr_t_1238;// L69 +struct ____pthread_internal_list_1240 { +struct __forward_tag_reference_1239 * (____prev_1241);// L0 +struct __forward_tag_reference_1239 * (____next_1242);// L0 }; -typedef struct ____pthread_internal_list_1583 ____pthread_list_t_1586;// L75:L79 -typedef struct ____pthread_internal_list_1583 ____pthread_list_t_1587;// L75:L79 -struct ____pthread_mutex_s_1588 { -int ____lock_1589;// L94 -unsigned int ____count_1590;// L95 -int ____owner_1591;// L96 -unsigned int ____nusers_1592;// L98 -int ____kind_1593;// L102 -short ____spins_1594;// L104 -short ____elision_1595;// L105 -____pthread_list_t_1586 ____list_1596;// L0 -____pthread_list_t_1587 ____list_1597;// L0 +typedef struct ____pthread_internal_list_1240 ____pthread_list_t_1243;// L75:L79 +typedef struct ____pthread_internal_list_1240 ____pthread_list_t_1244;// L75:L79 +struct ____pthread_mutex_s_1245 { +int ____lock_1246;// L94 +unsigned int ____count_1247;// L95 +int ____owner_1248;// L96 +unsigned int ____nusers_1249;// L98 +int ____kind_1250;// L102 +short ____spins_1251;// L104 +short ____elision_1252;// L105 +____pthread_list_t_1243 ____list_1253;// L0 +____pthread_list_t_1244 ____list_1254;// L0 }; -union ____anonymous_tag_1598_1599 { -struct ____pthread_mutex_s_1588 ____data_1600;// L92 -char ____size_1601[40];// L126 -long int ____align_1602;// L127 +union ____anonymous_tag_1255_1256 { +struct ____pthread_mutex_s_1245 ____data_1257;// L92 +char ____size_1258[40];// L126 +long int ____align_1259;// L127 }; -typedef union ____anonymous_tag_1598_1599 __pthread_mutex_t_1603;// L90:L128 -union ____anonymous_tag_1604_1605 { -char ____size_1606[4];// L132 -int ____align_1607;// L133 +typedef union ____anonymous_tag_1255_1256 __pthread_mutex_t_1260;// L90:L128 +union ____anonymous_tag_1261_1262 { +char ____size_1263[4];// L132 +int ____align_1264;// L133 }; -typedef union ____anonymous_tag_1604_1605 __pthread_mutexattr_t_1608;// L130:L134 -typedef int (* (____compar_fn_t_1740)) (const void *, const void *);// L741 +typedef union ____anonymous_tag_1261_1262 __pthread_mutexattr_t_1265;// L130:L134 +typedef int (* (____compar_fn_t_1374)) (const void *, const void *);// L741 -struct __forward_tag_reference_89 { // generated union of struct variations +struct __forward_tag_reference_57 { // generated union of struct variations union { -struct ___IO_marker_90 ___IO_marker_90; +struct ___IO_FILE_95 ___IO_FILE_95; +struct ___IO_FILE_119 ___IO_FILE_119; }; }; -struct __forward_tag_reference_1582 { // generated union of struct variations +struct __forward_tag_reference_85 { // generated union of struct variations union { +struct ___IO_marker_86 ___IO_marker_86; }; }; -struct __forward_tag_reference_58 { // generated union of struct variations +struct __forward_tag_reference_1239 { // generated union of struct variations union { -struct ___IO_FILE_99 ___IO_FILE_99; -struct ___IO_FILE_124 ___IO_FILE_124; }; }; -struct __forward_tag_reference_87 { // generated union of struct variations +struct __forward_tag_reference_83 { // generated union of struct variations union { }; }; -struct __forward_tag_reference_174 { // generated union of struct variations +struct __forward_tag_reference_166 { // generated union of struct variations union { }; }; @@ -2046,225 +1353,225 @@ union { // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_58 ;// L0 +struct __forward_tag_reference_57 ;// L0 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_87 ;// L0 -struct __forward_tag_reference_87 ;// L0 -struct __forward_tag_reference_58 ;// L0 +struct __forward_tag_reference_83 ;// L0 +struct __forward_tag_reference_83 ;// L0 +struct __forward_tag_reference_57 ;// L0 // typedef moved to top of scope -struct ___IO_marker_90 ;// L156 -enum ____codecvt_result_98 ;// L176 -struct ___IO_FILE_99 ;// L241 +struct ___IO_marker_86 ;// L156 +enum ____codecvt_result_94 ;// L176 +struct ___IO_FILE_95 ;// L241 -struct ___IO_FILE_124 ;// L241 -struct ___IO_FILE_complete_157 ;// L241 +struct ___IO_FILE_119 ;// L241 +struct ___IO_FILE_complete_150 ;// L241 // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_174 ;// L0 -extern struct __forward_tag_reference_174 ___IO_2_1_stdin__175;// L315 -extern struct __forward_tag_reference_174 ___IO_2_1_stdout__176;// L316 -extern struct __forward_tag_reference_174 ___IO_2_1_stderr__177;// L317 +struct __forward_tag_reference_166 ;// L0 +extern struct __forward_tag_reference_166 ___IO_2_1_stdin__167;// L315 +extern struct __forward_tag_reference_166 ___IO_2_1_stdout__168;// L316 +extern struct __forward_tag_reference_166 ___IO_2_1_stderr__169;// L317 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern int (____underflow_196) (___IO_FILE_171 *);// L385 -extern int (____underflow_197) (___IO_FILE_172 *);// L385 -extern int (____uflow_199) (___IO_FILE_171 *);// L386 -extern int (____uflow_200) (___IO_FILE_172 *);// L386 -extern int (____overflow_202) (___IO_FILE_171 *, int );// L387 -extern int (____overflow_203) (___IO_FILE_172 *, int );// L387 -extern int (___IO_getc_208) (___IO_FILE_171 * (____fp_205));// L429 -extern int (___IO_getc_209) (___IO_FILE_172 * (____fp_206));// L429 -extern int (___IO_putc_215) (int ____c_211, ___IO_FILE_171 * (____fp_212));// L430 -extern int (___IO_putc_216) (int ____c_211, ___IO_FILE_172 * (____fp_213));// L430 -extern int (___IO_feof_221) (___IO_FILE_171 * (____fp_218));// L431 -extern int (___IO_feof_222) (___IO_FILE_172 * (____fp_219));// L431 -extern int (___IO_ferror_227) (___IO_FILE_171 * (____fp_224));// L432 -extern int (___IO_ferror_228) (___IO_FILE_172 * (____fp_225));// L432 -extern int (___IO_peekc_locked_233) (___IO_FILE_171 * (____fp_230));// L434 -extern int (___IO_peekc_locked_234) (___IO_FILE_172 * (____fp_231));// L434 -extern void (___IO_flockfile_236) (___IO_FILE_171 *);// L440 -extern void (___IO_flockfile_237) (___IO_FILE_172 *);// L440 -extern void (___IO_funlockfile_239) (___IO_FILE_171 *);// L441 -extern void (___IO_funlockfile_240) (___IO_FILE_172 *);// L441 -extern int (___IO_ftrylockfile_242) (___IO_FILE_171 *);// L442 -extern int (___IO_ftrylockfile_243) (___IO_FILE_172 *);// L442 -extern int (___IO_vfscanf_245) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_247) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_251) (___IO_FILE_171 * __restrict , const char * __restrict , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_252) (___IO_FILE_172 * __restrict , const char * __restrict , int * __restrict );// L459:L460 -extern int (___IO_vfprintf_254) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 -extern int (___IO_vfprintf_256) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 -extern int (___IO_vfprintf_260) ();// L461:L462 -extern ____ssize_t_49 (___IO_padn_261) (___IO_FILE_171 *, int , ____ssize_t_49 );// L463 -extern ____ssize_t_49 (___IO_padn_262) (___IO_FILE_172 *, int , ____ssize_t_49 );// L463 -extern __size_t_1 (___IO_sgetn_265) (___IO_FILE_171 *, void *, __size_t_1 );// L464 -extern __size_t_1 (___IO_sgetn_266) (___IO_FILE_172 *, void *, __size_t_1 );// L464 -extern ____off64_t_24 (___IO_seekoff_268) (___IO_FILE_171 *, ____off64_t_24 , int , int );// L466 -extern ____off64_t_24 (___IO_seekoff_269) (___IO_FILE_172 *, ____off64_t_24 , int , int );// L466 -extern ____off64_t_24 (___IO_seekpos_272) (___IO_FILE_171 *, ____off64_t_24 , int );// L467 -extern ____off64_t_24 (___IO_seekpos_273) (___IO_FILE_172 *, ____off64_t_24 , int );// L467 -extern void (___IO_free_backup_area_276) (___IO_FILE_171 *);// L469 -extern void (___IO_free_backup_area_277) (___IO_FILE_172 *);// L469 +extern int (____underflow_184) (___IO_FILE_163 *);// L385 +extern int (____underflow_185) (___IO_FILE_164 *);// L385 +extern int (____uflow_186) (___IO_FILE_163 *);// L386 +extern int (____uflow_187) (___IO_FILE_164 *);// L386 +extern int (____overflow_188) (___IO_FILE_163 *, int );// L387 +extern int (____overflow_189) (___IO_FILE_164 *, int );// L387 +extern int (___IO_getc_193) (___IO_FILE_163 * (____fp_190));// L429 +extern int (___IO_getc_194) (___IO_FILE_164 * (____fp_191));// L429 +extern int (___IO_putc_199) (int ____c_195, ___IO_FILE_163 * (____fp_196));// L430 +extern int (___IO_putc_200) (int ____c_195, ___IO_FILE_164 * (____fp_197));// L430 +extern int (___IO_feof_204) (___IO_FILE_163 * (____fp_201));// L431 +extern int (___IO_feof_205) (___IO_FILE_164 * (____fp_202));// L431 +extern int (___IO_ferror_209) (___IO_FILE_163 * (____fp_206));// L432 +extern int (___IO_ferror_210) (___IO_FILE_164 * (____fp_207));// L432 +extern int (___IO_peekc_locked_214) (___IO_FILE_163 * (____fp_211));// L434 +extern int (___IO_peekc_locked_215) (___IO_FILE_164 * (____fp_212));// L434 +extern void (___IO_flockfile_216) (___IO_FILE_163 *);// L440 +extern void (___IO_flockfile_217) (___IO_FILE_164 *);// L440 +extern void (___IO_funlockfile_218) (___IO_FILE_163 *);// L441 +extern void (___IO_funlockfile_219) (___IO_FILE_164 *);// L441 +extern int (___IO_ftrylockfile_220) (___IO_FILE_163 *);// L442 +extern int (___IO_ftrylockfile_221) (___IO_FILE_164 *);// L442 +extern int (___IO_vfscanf_222) (___IO_FILE_163 * __restrict , const char * __restrict , ____gnuc_va_list_82 , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_224) (___IO_FILE_164 * __restrict , const char * __restrict , ____gnuc_va_list_82 , int * __restrict );// L459:L460 + + +extern int (___IO_vfprintf_231) (___IO_FILE_163 * __restrict , const char * __restrict , ____gnuc_va_list_82 );// L461:L462 +extern int (___IO_vfprintf_233) (___IO_FILE_164 * __restrict , const char * __restrict , ____gnuc_va_list_82 );// L461:L462 + +extern ____ssize_t_49 (___IO_padn_238) (___IO_FILE_163 *, int , ____ssize_t_49 );// L463 +extern ____ssize_t_49 (___IO_padn_239) (___IO_FILE_164 *, int , ____ssize_t_49 );// L463 +extern __size_t_1 (___IO_sgetn_240) (___IO_FILE_163 *, void *, __size_t_1 );// L464 +extern __size_t_1 (___IO_sgetn_241) (___IO_FILE_164 *, void *, __size_t_1 );// L464 +extern ____off64_t_24 (___IO_seekoff_242) (___IO_FILE_163 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekoff_243) (___IO_FILE_164 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekpos_244) (___IO_FILE_163 *, ____off64_t_24 , int );// L467 +extern ____off64_t_24 (___IO_seekpos_245) (___IO_FILE_164 *, ____off64_t_24 , int );// L467 +extern void (___IO_free_backup_area_246) (___IO_FILE_163 *);// L469 +extern void (___IO_free_backup_area_247) (___IO_FILE_164 *);// L469 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern struct ___IO_FILE_99 * (__stdin_291);// L168 -extern struct ___IO_FILE_124 * (__stdin_292);// L168 -extern struct ___IO_FILE_99 * (__stdout_294);// L169 -extern struct ___IO_FILE_124 * (__stdout_295);// L169 -extern struct ___IO_FILE_99 * (__stderr_297);// L170 -extern struct ___IO_FILE_124 * (__stderr_298);// L170 -extern int (__remove_301) (const char * (____filename_300));// L178 -extern int (__rename_304) (const char * (____old_302), const char * (____new_303));// L180 -extern int (__renameat_309) (int ____oldfd_305, const char * (____old_306), int ____newfd_307, const char * (____new_308));// L185:L186 -extern __FILE_59 * ((__tmpfile_310) (void ));// L195 -extern __FILE_59 * ((__tmpfile_316) (void ));// L198 -extern __FILE_59 * ((__tmpfile_314) (void ));// L195 -extern __FILE_59 * ((__tmpfile_312) (void ));// L198 -extern char * ((__tmpnam_319) (char * (____s_318)));// L209 -extern char * ((__tmpnam_320) (char * (____s_318)));// L209 -extern char * ((__tmpnam_r_322) (char * (____s_321)));// L215 -extern char * ((__tmpnam_r_323) (char * (____s_321)));// L215 -extern char * ((__tempnam_326) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 -extern char * ((__tempnam_327) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 -extern int (__fclose_330) (__FILE_59 * (____stream_328));// L237 -extern int (__fclose_332) (__FILE_59 * (____stream_328));// L237 -extern int (__fflush_336) (__FILE_59 * (____stream_334));// L242 -extern int (__fflush_unlocked_340) (__FILE_59 * (____stream_338));// L252 -extern __FILE_59 * ((__fopen_344) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 -extern __FILE_59 * ((__fopen_346) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 -extern __FILE_59 * ((__fopen_354) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 -extern __FILE_59 * ((__fopen_356) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 -extern __FILE_59 * ((__freopen_362) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 -extern __FILE_59 * ((__freopen_368) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 -extern __FILE_59 * ((__freopen_366) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 -extern __FILE_59 * ((__freopen_364) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 -extern __FILE_59 * ((__fdopen_372) (int ____fd_370, const char * (____modes_371)));// L306 -extern __FILE_59 * ((__fdopen_374) (int ____fd_370, const char * (____modes_371)));// L306 -extern __FILE_59 * ((__fmemopen_379) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 -extern __FILE_59 * ((__fmemopen_381) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 -extern __FILE_59 * ((__open_memstream_385) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 -extern __FILE_59 * ((__open_memstream_387) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 -extern void (__setbuf_392) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 -extern void (__setbuf_394) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 -extern int (__setvbuf_401) (__FILE_59 * __restrict ____stream_396, char * __restrict ____buf_398, int ____modes_399, __size_t_1 ____n_400);// L336:L337 -extern void (__setbuffer_407) (__FILE_59 * __restrict ____stream_403, char * __restrict ____buf_405, __size_t_1 ____size_406);// L343:L344 -extern void (__setlinebuf_411) (__FILE_59 * (____stream_409));// L347 -extern int (__fprintf_416) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 -extern int (__fprintf_418) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 -extern int (__printf_421) (const char * __restrict ____format_420, ... );// L362 -extern int (__sprintf_424) (char * __restrict ____s_422, const char * __restrict ____format_423, ... );// L364:L365 -extern int (__vfprintf_430) (__FILE_59 * __restrict ____s_425, const char * __restrict ____format_427, ____gnuc_va_list_86 ____arg_428);// L371:L372 -extern int (__vprintf_437) (const char * __restrict ____format_434, ____gnuc_va_list_86 ____arg_435);// L377 -extern int (__vsprintf_443) (char * __restrict ____s_439, const char * __restrict ____format_440, ____gnuc_va_list_86 ____arg_441);// L379:L380 -extern int (__snprintf_448) (char * __restrict ____s_445, __size_t_1 ____maxlen_446, const char * __restrict ____format_447, ... );// L386:L388 -extern int (__vsnprintf_454) (char * __restrict ____s_449, __size_t_1 ____maxlen_450, const char * __restrict ____format_451, ____gnuc_va_list_86 ____arg_452);// L390:L392 -extern int (__vdprintf_460) (int ____fd_456, const char * __restrict ____fmt_457, ____gnuc_va_list_86 ____arg_458);// L412:L414 -extern int (__dprintf_464) (int ____fd_462, const char * __restrict ____fmt_463, ... );// L415:L416 -extern int (__fscanf_468) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__fscanf_470) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__fscanf_472) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__fscanf_474) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__scanf_477) (const char * __restrict ____format_476, ... );// L431 -extern int (__scanf_478) (const char * __restrict ____format_476, ... );// L431 -extern int (__sscanf_481) (const char * __restrict ____s_479, const char * __restrict ____format_480, ... );// L433:L434 - - - - - - - -extern int (__vfscanf_509) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 -extern int (__vfscanf_513) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 -extern int (__vscanf_520) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 -extern int (__vscanf_522) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 -extern int (__vsscanf_528) (const char * __restrict ____s_524, const char * __restrict ____format_525, ____gnuc_va_list_86 ____arg_526);// L483:L485 - - - - - -extern int (__fgetc_563) (__FILE_59 * (____stream_561));// L531 -extern int (__getc_567) (__FILE_59 * (____stream_565));// L532 -extern int (__getchar_569) (void );// L538 -extern int (__getc_unlocked_572) (__FILE_59 * (____stream_570));// L550 -extern int (__getchar_unlocked_574) (void );// L551 -extern int (__fgetc_unlocked_577) (__FILE_59 * (____stream_575));// L561 -extern int (__fputc_582) (int ____c_579, __FILE_59 * (____stream_580));// L573 -extern int (__fputc_584) (int ____c_579, __FILE_59 * (____stream_580));// L573 -extern int (__putc_589) (int ____c_586, __FILE_59 * (____stream_587));// L574 -extern int (__putchar_592) (int ____c_591);// L580 -extern int (__fputc_unlocked_596) (int ____c_593, __FILE_59 * (____stream_594));// L594 -extern int (__putc_unlocked_601) (int ____c_598, __FILE_59 * (____stream_599));// L602 -extern int (__putchar_unlocked_604) (int ____c_603);// L603 -extern int (__getw_607) (__FILE_59 * (____stream_605));// L610 -extern int (__putw_612) (int ____w_609, __FILE_59 * (____stream_610));// L613 -extern char * ((__fgets_618) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern char * ((__fgets_620) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern char * ((__fgets_622) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern char * ((__fgets_624) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern ____ssize_t_49 (____getdelim_631) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 -extern ____ssize_t_49 (____getdelim_635) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 -extern ____ssize_t_49 (__getdelim_644) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 -extern ____ssize_t_49 (__getdelim_648) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 -extern ____ssize_t_49 (__getline_656) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 -extern ____ssize_t_49 (__getline_660) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 -extern int (__fputs_667) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 -extern int (__fputs_669) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 -extern int (__puts_672) (const char * (____s_671));// L695 -extern int (__ungetc_676) (int ____c_673, __FILE_59 * (____stream_674));// L702 -extern int (__fseek_714) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 -extern int (__fseek_716) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 -extern long int (__ftell_720) (__FILE_59 * (____stream_718));// L754 -extern long int (__ftell_722) (__FILE_59 * (____stream_718));// L754 -extern void (__rewind_726) (__FILE_59 * (____stream_724));// L759 -extern int (__fseeko_733) (__FILE_59 * (____stream_728), ____off_t_23 ____off_730, int ____whence_732);// L773 -extern int (__fseeko_744) (__FILE_59 * (____stream_739), ____off64_t_24 ____off_741, int ____whence_743);// L781:L783 -extern ____off_t_23 (__ftello_758) (__FILE_59 * (____stream_737));// L778 -extern ____off_t_23 (__ftello_750) (__FILE_59 * (____stream_737));// L778 -extern int (__fgetpos_766) (__FILE_59 * __restrict ____stream_762, __fpos_t_287 * __restrict ____pos_764);// L798 -extern ____off64_t_24 (__ftello_754) (__FILE_59 * (____stream_748));// L784 -extern int (__fgetpos_778) (__FILE_59 * __restrict ____stream_774, __fpos_t_289 * __restrict ____pos_776);// L806:L807 -extern int (__fsetpos_786) (__FILE_59 * (____stream_770), const __fpos_t_287 * (____pos_772));// L803 -extern int (__fsetpos_790) (__FILE_59 * (____stream_782), const __fpos_t_289 * (____pos_784));// L808:L809 -extern void (__clearerr_796) (__FILE_59 * (____stream_794));// L826 -extern int (__feof_800) (__FILE_59 * (____stream_798));// L828 -extern int (__feof_802) (__FILE_59 * (____stream_798));// L828 -extern int (__ferror_806) (__FILE_59 * (____stream_804));// L830 -extern int (__ferror_808) (__FILE_59 * (____stream_804));// L830 -extern void (__clearerr_unlocked_812) (__FILE_59 * (____stream_810));// L835 -extern int (__feof_unlocked_816) (__FILE_59 * (____stream_814));// L836 -extern int (__feof_unlocked_818) (__FILE_59 * (____stream_814));// L836 -extern int (__ferror_unlocked_822) (__FILE_59 * (____stream_820));// L837 -extern int (__ferror_unlocked_824) (__FILE_59 * (____stream_820));// L837 -extern void (__perror_827) (const char * (____s_826));// L846 -extern void (__perror_828) (const char * (____s_826));// L846 -extern int __sys_nerr_829;// L26 - -extern int (__fileno_835) (__FILE_59 * (____stream_831));// L858 -extern int (__fileno_833) (__FILE_59 * (____stream_831));// L858 -extern int (__fileno_unlocked_841) (__FILE_59 * (____stream_837));// L863 -extern int (__fileno_unlocked_839) (__FILE_59 * (____stream_837));// L863 -extern __FILE_59 * ((__popen_845) (const char * (____command_843), const char * (____modes_844)));// L872 -extern __FILE_59 * ((__popen_847) (const char * (____command_843), const char * (____modes_844)));// L872 -extern int (__pclose_851) (__FILE_59 * (____stream_849));// L878 -extern char * ((__ctermid_854) (char * (____s_853)));// L884 -extern void (__flockfile_857) (__FILE_59 * (____stream_855));// L912 -extern int (__ftrylockfile_861) (__FILE_59 * (____stream_859));// L916 -extern int (__ftrylockfile_863) (__FILE_59 * (____stream_859));// L916 -extern void (__funlockfile_867) (__FILE_59 * (____stream_865));// L919 +extern struct ___IO_FILE_95 * (__stdin_257);// L168 +extern struct ___IO_FILE_119 * (__stdin_258);// L168 +extern struct ___IO_FILE_95 * (__stdout_259);// L169 +extern struct ___IO_FILE_119 * (__stdout_260);// L169 +extern struct ___IO_FILE_95 * (__stderr_261);// L170 +extern struct ___IO_FILE_119 * (__stderr_262);// L170 +extern int (__remove_264) (const char * (____filename_263));// L178 +extern int (__rename_267) (const char * (____old_265), const char * (____new_266));// L180 +extern int (__renameat_272) (int ____oldfd_268, const char * (____old_269), int ____newfd_270, const char * (____new_271));// L185:L186 +extern __FILE_58 * ((__tmpfile_273) (void ));// L195 +extern __FILE_58 * ((__tmpfile_279) (void ));// L198 +extern __FILE_58 * ((__tmpfile_277) (void ));// L198 +extern __FILE_58 * ((__tmpfile_275) (void ));// L195 +extern char * ((__tmpnam_282) (char * (____s_281)));// L209 +extern char * ((__tmpnam_283) (char * (____s_281)));// L209 +extern char * ((__tmpnam_r_285) (char * (____s_284)));// L215 +extern char * ((__tmpnam_r_286) (char * (____s_284)));// L215 +extern char * ((__tempnam_289) (const char * (____dir_287), const char * (____pfx_288)));// L227:L228 +extern char * ((__tempnam_290) (const char * (____dir_287), const char * (____pfx_288)));// L227:L228 +extern int (__fclose_293) (__FILE_58 * (____stream_291));// L237 +extern int (__fclose_295) (__FILE_58 * (____stream_291));// L237 +extern int (__fflush_299) (__FILE_58 * (____stream_297));// L242 +extern int (__fflush_unlocked_303) (__FILE_58 * (____stream_301));// L252 +extern __FILE_58 * ((__fopen_307) (const char * __restrict ____filename_305, const char * __restrict ____modes_306));// L272:L273 +extern __FILE_58 * ((__fopen_309) (const char * __restrict ____filename_305, const char * __restrict ____modes_306));// L272:L273 +extern __FILE_58 * ((__fopen_317) (const char * __restrict ____filename_315, const char * __restrict ____modes_316));// L283:L285 +extern __FILE_58 * ((__fopen_319) (const char * __restrict ____filename_315, const char * __restrict ____modes_316));// L283:L285 +extern __FILE_58 * ((__freopen_325) (const char * __restrict ____filename_311, const char * __restrict ____modes_312, __FILE_58 * __restrict ____stream_313));// L278:L280 +extern __FILE_58 * ((__freopen_331) (const char * __restrict ____filename_321, const char * __restrict ____modes_322, __FILE_58 * __restrict ____stream_323));// L286:L289 +extern __FILE_58 * ((__freopen_329) (const char * __restrict ____filename_321, const char * __restrict ____modes_322, __FILE_58 * __restrict ____stream_323));// L286:L289 +extern __FILE_58 * ((__freopen_327) (const char * __restrict ____filename_311, const char * __restrict ____modes_312, __FILE_58 * __restrict ____stream_313));// L278:L280 +extern __FILE_58 * ((__fdopen_335) (int ____fd_333, const char * (____modes_334)));// L306 +extern __FILE_58 * ((__fdopen_337) (int ____fd_333, const char * (____modes_334)));// L306 +extern __FILE_58 * ((__fmemopen_342) (void * (____s_339), __size_t_1 ____len_340, const char * (____modes_341)));// L319:L320 +extern __FILE_58 * ((__fmemopen_344) (void * (____s_339), __size_t_1 ____len_340, const char * (____modes_341)));// L319:L320 +extern __FILE_58 * ((__open_memstream_348) (char * (* (____bufloc_346)), __size_t_1 * (____sizeloc_347)));// L325 +extern __FILE_58 * ((__open_memstream_350) (char * (* (____bufloc_346)), __size_t_1 * (____sizeloc_347)));// L325 +extern void (__setbuf_355) (__FILE_58 * __restrict ____stream_352, char * __restrict ____buf_354);// L332 +extern void (__setbuf_357) (__FILE_58 * __restrict ____stream_352, char * __restrict ____buf_354);// L332 +extern int (__setvbuf_364) (__FILE_58 * __restrict ____stream_359, char * __restrict ____buf_361, int ____modes_362, __size_t_1 ____n_363);// L336:L337 +extern void (__setbuffer_369) (__FILE_58 * __restrict ____stream_365, char * __restrict ____buf_367, __size_t_1 ____size_368);// L343:L344 +extern void (__setlinebuf_373) (__FILE_58 * (____stream_371));// L347 +extern int (__fprintf_378) (__FILE_58 * __restrict ____stream_375, const char * __restrict ____format_377, ... );// L356:L357 +extern int (__fprintf_380) (__FILE_58 * __restrict ____stream_375, const char * __restrict ____format_377, ... );// L356:L357 +extern int (__printf_383) (const char * __restrict ____format_382, ... );// L362 +extern int (__sprintf_386) (char * __restrict ____s_384, const char * __restrict ____format_385, ... );// L364:L365 +extern int (__vfprintf_392) (__FILE_58 * __restrict ____s_387, const char * __restrict ____format_389, ____gnuc_va_list_82 ____arg_390);// L371:L372 +extern int (__vprintf_399) (const char * __restrict ____format_396, ____gnuc_va_list_82 ____arg_397);// L377 +extern int (__vsprintf_405) (char * __restrict ____s_401, const char * __restrict ____format_402, ____gnuc_va_list_82 ____arg_403);// L379:L380 +extern int (__snprintf_409) (char * __restrict ____s_406, __size_t_1 ____maxlen_407, const char * __restrict ____format_408, ... );// L386:L388 +extern int (__vsnprintf_415) (char * __restrict ____s_410, __size_t_1 ____maxlen_411, const char * __restrict ____format_412, ____gnuc_va_list_82 ____arg_413);// L390:L392 +extern int (__vdprintf_420) (int ____fd_416, const char * __restrict ____fmt_417, ____gnuc_va_list_82 ____arg_418);// L412:L414 +extern int (__dprintf_424) (int ____fd_422, const char * __restrict ____fmt_423, ... );// L415:L416 +extern int (__fscanf_428) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 +extern int (__fscanf_430) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 +extern int (__fscanf_432) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 +extern int (__fscanf_434) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 +extern int (__scanf_437) (const char * __restrict ____format_436, ... );// L431 +extern int (__scanf_438) (const char * __restrict ____format_436, ... );// L431 +extern int (__sscanf_441) (const char * __restrict ____s_439, const char * __restrict ____format_440, ... );// L433:L434 + + + + + + + +extern int (__vfscanf_468) (__FILE_58 * __restrict ____s_463, const char * __restrict ____format_465, ____gnuc_va_list_82 ____arg_466);// L471:L473 +extern int (__vfscanf_472) (__FILE_58 * __restrict ____s_463, const char * __restrict ____format_465, ____gnuc_va_list_82 ____arg_466);// L471:L473 +extern int (__vscanf_479) (const char * __restrict ____format_476, ____gnuc_va_list_82 ____arg_477);// L479:L480 +extern int (__vscanf_481) (const char * __restrict ____format_476, ____gnuc_va_list_82 ____arg_477);// L479:L480 +extern int (__vsscanf_487) (const char * __restrict ____s_483, const char * __restrict ____format_484, ____gnuc_va_list_82 ____arg_485);// L483:L485 + + + + + +extern int (__fgetc_520) (__FILE_58 * (____stream_518));// L531 +extern int (__getc_523) (__FILE_58 * (____stream_521));// L532 +extern int (__getchar_524) (void );// L538 +extern int (__getc_unlocked_527) (__FILE_58 * (____stream_525));// L550 +extern int (__getchar_unlocked_529) (void );// L551 +extern int (__fgetc_unlocked_532) (__FILE_58 * (____stream_530));// L561 +extern int (__fputc_537) (int ____c_534, __FILE_58 * (____stream_535));// L573 +extern int (__fputc_539) (int ____c_534, __FILE_58 * (____stream_535));// L573 +extern int (__putc_544) (int ____c_541, __FILE_58 * (____stream_542));// L574 +extern int (__putchar_546) (int ____c_545);// L580 +extern int (__fputc_unlocked_550) (int ____c_547, __FILE_58 * (____stream_548));// L594 +extern int (__putc_unlocked_555) (int ____c_552, __FILE_58 * (____stream_553));// L602 +extern int (__putchar_unlocked_558) (int ____c_557);// L603 +extern int (__getw_561) (__FILE_58 * (____stream_559));// L610 +extern int (__putw_566) (int ____w_563, __FILE_58 * (____stream_564));// L613 +extern char * ((__fgets_572) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 +extern char * ((__fgets_574) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 +extern char * ((__fgets_576) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 +extern char * ((__fgets_578) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 +extern ____ssize_t_49 (____getdelim_585) (char * (* __restrict ____lineptr_580), __size_t_1 * __restrict ____n_581, int ____delimiter_582, __FILE_58 * __restrict ____stream_583);// L665:L667 +extern ____ssize_t_49 (____getdelim_587) (char * (* __restrict ____lineptr_580), __size_t_1 * __restrict ____n_581, int ____delimiter_582, __FILE_58 * __restrict ____stream_583);// L665:L667 +extern ____ssize_t_49 (__getdelim_594) (char * (* __restrict ____lineptr_589), __size_t_1 * __restrict ____n_590, int ____delimiter_591, __FILE_58 * __restrict ____stream_592);// L668:L670 +extern ____ssize_t_49 (__getdelim_596) (char * (* __restrict ____lineptr_589), __size_t_1 * __restrict ____n_590, int ____delimiter_591, __FILE_58 * __restrict ____stream_592);// L668:L670 +extern ____ssize_t_49 (__getline_602) (char * (* __restrict ____lineptr_598), __size_t_1 * __restrict ____n_599, __FILE_58 * __restrict ____stream_600);// L678:L680 +extern ____ssize_t_49 (__getline_604) (char * (* __restrict ____lineptr_598), __size_t_1 * __restrict ____n_599, __FILE_58 * __restrict ____stream_600);// L678:L680 +extern int (__fputs_609) (const char * __restrict ____s_606, __FILE_58 * __restrict ____stream_607);// L689 +extern int (__fputs_611) (const char * __restrict ____s_606, __FILE_58 * __restrict ____stream_607);// L689 +extern int (__puts_614) (const char * (____s_613));// L695 +extern int (__ungetc_618) (int ____c_615, __FILE_58 * (____stream_616));// L702 +extern int (__fseek_654) (__FILE_58 * (____stream_650), long int ____off_652, int ____whence_653);// L749 +extern int (__fseek_656) (__FILE_58 * (____stream_650), long int ____off_652, int ____whence_653);// L749 +extern long int (__ftell_660) (__FILE_58 * (____stream_658));// L754 +extern long int (__ftell_662) (__FILE_58 * (____stream_658));// L754 +extern void (__rewind_666) (__FILE_58 * (____stream_664));// L759 +extern int (__fseeko_671) (__FILE_58 * (____stream_667), ____off_t_23 ____off_669, int ____whence_670);// L773 +extern int (__fseeko_679) (__FILE_58 * (____stream_675), ____off64_t_24 ____off_677, int ____whence_678);// L781:L783 +extern ____off_t_23 (__ftello_683) (__FILE_58 * (____stream_673));// L778 +extern ____off_t_23 (__ftello_685) (__FILE_58 * (____stream_673));// L778 +extern int (__fgetpos_693) (__FILE_58 * __restrict ____stream_689, __fpos_t_253 * __restrict ____pos_691);// L798 +extern ____off64_t_24 (__ftello_687) (__FILE_58 * (____stream_681));// L784 +extern int (__fgetpos_705) (__FILE_58 * __restrict ____stream_701, __fpos_t_255 * __restrict ____pos_703);// L806:L807 +extern int (__fsetpos_713) (__FILE_58 * (____stream_697), const __fpos_t_253 * (____pos_699));// L803 +extern int (__fsetpos_717) (__FILE_58 * (____stream_709), const __fpos_t_255 * (____pos_711));// L808:L809 +extern void (__clearerr_723) (__FILE_58 * (____stream_721));// L826 +extern int (__feof_726) (__FILE_58 * (____stream_724));// L828 +extern int (__feof_728) (__FILE_58 * (____stream_724));// L828 +extern int (__ferror_732) (__FILE_58 * (____stream_730));// L830 +extern int (__ferror_734) (__FILE_58 * (____stream_730));// L830 +extern void (__clearerr_unlocked_738) (__FILE_58 * (____stream_736));// L835 +extern int (__feof_unlocked_742) (__FILE_58 * (____stream_740));// L836 +extern int (__feof_unlocked_744) (__FILE_58 * (____stream_740));// L836 +extern int (__ferror_unlocked_748) (__FILE_58 * (____stream_746));// L837 +extern int (__ferror_unlocked_750) (__FILE_58 * (____stream_746));// L837 +extern void (__perror_753) (const char * (____s_752));// L846 +extern void (__perror_754) (const char * (____s_752));// L846 +extern int __sys_nerr_755;// L26 + +extern int (__fileno_761) (__FILE_58 * (____stream_757));// L858 +extern int (__fileno_759) (__FILE_58 * (____stream_757));// L858 +extern int (__fileno_unlocked_767) (__FILE_58 * (____stream_763));// L863 +extern int (__fileno_unlocked_765) (__FILE_58 * (____stream_763));// L863 +extern __FILE_58 * ((__popen_771) (const char * (____command_769), const char * (____modes_770)));// L872 +extern __FILE_58 * ((__popen_773) (const char * (____command_769), const char * (____modes_770)));// L872 +extern int (__pclose_777) (__FILE_58 * (____stream_775));// L878 +extern char * ((__ctermid_780) (char * (____s_779)));// L884 +extern void (__flockfile_783) (__FILE_58 * (____stream_781));// L912 +extern int (__ftrylockfile_787) (__FILE_58 * (____stream_785));// L916 +extern int (__ftrylockfile_789) (__FILE_58 * (____stream_785));// L916 +extern void (__funlockfile_793) (__FILE_58 * (____stream_791));// L919 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ @@ -2276,109 +1583,39 @@ extern void (__funlockfile_867) (__FILE_59 * (____stream_865));// L919 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____sprintf_chk_899) (char * __restrict ____s_895, int ____flag_896, __size_t_1 ____slen_897, const char * __restrict ____format_898, ... );// L23:L24 -extern int (____vsprintf_chk_906) (char * __restrict ____s_900, int ____flag_901, __size_t_1 ____slen_902, const char * __restrict ____format_903, ____gnuc_va_list_86 ____ap_904);// L25:L27 +extern int (____sprintf_chk_825) (char * __restrict ____s_821, int ____flag_822, __size_t_1 ____slen_823, const char * __restrict ____format_824, ... );// L23:L24 +extern int (____vsprintf_chk_832) (char * __restrict ____s_826, int ____flag_827, __size_t_1 ____slen_828, const char * __restrict ____format_829, ____gnuc_va_list_82 ____ap_830);// L25:L27 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____snprintf_chk_920) (char * __restrict ____s_915, __size_t_1 ____n_916, int ____flag_917, __size_t_1 ____slen_918, const char * __restrict ____format_919, ... );// L52:L54 -extern int (____vsnprintf_chk_928) (char * __restrict ____s_921, __size_t_1 ____n_922, int ____flag_923, __size_t_1 ____slen_924, const char * __restrict ____format_925, ____gnuc_va_list_86 ____ap_926);// L55:L57 +extern int (____snprintf_chk_846) (char * __restrict ____s_841, __size_t_1 ____n_842, int ____flag_843, __size_t_1 ____slen_844, const char * __restrict ____format_845, ... );// L52:L54 +extern int (____vsnprintf_chk_854) (char * __restrict ____s_847, __size_t_1 ____n_848, int ____flag_849, __size_t_1 ____slen_850, const char * __restrict ____format_851, ____gnuc_va_list_82 ____ap_852);// L55:L57 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____fprintf_chk_943) (__FILE_59 * __restrict ____stream_939, int ____flag_941, const char * __restrict ____format_942, ... );// L85:L86 -extern int (____printf_chk_947) (int ____flag_945, const char * __restrict ____format_946, ... );// L87 -extern int (____vfprintf_chk_954) (__FILE_59 * __restrict ____stream_948, int ____flag_950, const char * __restrict ____format_951, ____gnuc_va_list_86 ____ap_952);// L88:L89 -extern int (____vprintf_chk_962) (int ____flag_958, const char * __restrict ____format_959, ____gnuc_va_list_86 ____ap_960);// L90:L91 +extern int (____fprintf_chk_869) (__FILE_58 * __restrict ____stream_865, int ____flag_867, const char * __restrict ____format_868, ... );// L85:L86 +extern int (____printf_chk_873) (int ____flag_871, const char * __restrict ____format_872, ... );// L87 +extern int (____vfprintf_chk_880) (__FILE_58 * __restrict ____stream_874, int ____flag_876, const char * __restrict ____format_877, ____gnuc_va_list_82 ____ap_878);// L88:L89 +extern int (____vprintf_chk_888) (int ____flag_884, const char * __restrict ____format_885, ____gnuc_va_list_82 ____ap_886);// L90:L91 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____dprintf_chk_984) (int ____fd_981, int ____flag_982, const char * __restrict ____fmt_983, ... );// L131:L132 -extern int (____vdprintf_chk_990) (int ____fd_985, int ____flag_986, const char * __restrict ____fmt_987, ____gnuc_va_list_86 ____arg_988);// L133:L135 +extern int (____dprintf_chk_910) (int ____fd_907, int ____flag_908, const char * __restrict ____fmt_909, ... );// L131:L132 +extern int (____vdprintf_chk_916) (int ____fd_911, int ____flag_912, const char * __restrict ____fmt_913, ____gnuc_va_list_82 ____arg_914);// L133:L135 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern char * ((____fgets_chk_1004) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 -extern char * ((____fgets_chk_1006) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 -extern char * ((____fgets_chk_1008) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 -extern char * ((____fgets_alias_1014) (char * __restrict ____s_1010, int ____n_1011, __FILE_59 * __restrict ____stream_1012));// L243:L245 -extern char * ((____fgets_chk_warn_1021) (char * __restrict ____s_1016, __size_t_1 ____size_1017, int ____n_1018, __FILE_59 * __restrict ____stream_1019));// L246:L250 +extern char * ((____fgets_chk_930) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 +extern char * ((____fgets_chk_932) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 +extern char * ((____fgets_chk_934) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 +extern char * ((____fgets_alias_940) (char * __restrict ____s_936, int ____n_937, __FILE_58 * __restrict ____stream_938));// L243:L245 +extern char * ((____fgets_chk_warn_947) (char * __restrict ____s_942, __size_t_1 ____size_943, int ____n_944, __FILE_58 * __restrict ____stream_945));// L246:L250 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ // typedef moved to top of scope // typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -static __inline unsigned int (____bswap_32_1158) (unsigned int ____bsx_1157) { - -if (__static_condition_default_1159) { - -{ -{ +static __inline unsigned int (____bswap_32_1026) (unsigned int ____bsx_1025) { - - -__static_type_error("invalid type found in return expression"); -} -} - - -} -} -static __inline ____uint64_t_13 (____bswap_64_1162) (____uint64_t_13 ____bsx_1160) { - -if (__static_condition_default_1164) { +if (__static_condition_default_1027) { { { @@ -2392,9 +1629,9 @@ __static_type_error("invalid type found in return expression"); } } -static __inline ____uint64_t_1112 (____bswap_64_1163) (____uint64_t_1112 ____bsx_1161) { +static __inline ____uint64_t_13 (____bswap_64_1029) (____uint64_t_13 ____bsx_1028) { -if (__static_condition_default_1165) { +if (__static_condition_default_1027) { { { @@ -2408,52 +1645,40 @@ __static_type_error("invalid type found in return expression"); } } -union __wait_1177 ;// L66 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern __size_t_1 (____ctype_get_mb_cur_max_1201) (void );// L139 -extern __size_t_1093 (____ctype_get_mb_cur_max_1202) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_1203) (void );// L139 -extern __size_t_1093 (____ctype_get_mb_cur_max_1204) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_1205) (void );// L139 -extern __size_t_1093 (____ctype_get_mb_cur_max_1206) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_1207) (void );// L139 -extern __size_t_1093 (____ctype_get_mb_cur_max_1208) (void );// L139 -extern double (__atof_1210) (const char * (____nptr_1209));// L144:L145 -extern double (__atof_1211) (const char * (____nptr_1209));// L144:L145 -extern int (__atoi_1213) (const char * (____nptr_1212));// L147:L148 -extern int (__atoi_1214) (const char * (____nptr_1212));// L147:L148 -extern long int (__atol_1216) (const char * (____nptr_1215));// L150:L151 -extern long int (__atol_1217) (const char * (____nptr_1215));// L150:L151 -extern long long int (__atoll_1219) (const char * (____nptr_1218));// L157:L158 -extern long long int (__atoll_1220) (const char * (____nptr_1218));// L157:L158 -extern double (__strtod_1223) (const char * __restrict ____nptr_1221, char * (* __restrict ____endptr_1222));// L164:L166 -extern float (__strtof_1226) (const char * __restrict ____nptr_1224, char * (* __restrict ____endptr_1225));// L172:L173 -extern long double (__strtold_1229) (const char * __restrict ____nptr_1227, char * (* __restrict ____endptr_1228));// L175:L177 -extern long int (__strtol_1233) (const char * __restrict ____nptr_1230, char * (* __restrict ____endptr_1231), int ____base_1232);// L183:L185 -extern unsigned long int (__strtoul_1237) (const char * __restrict ____nptr_1234, char * (* __restrict ____endptr_1235), int ____base_1236);// L187:L189 -extern long long int (__strtoq_1241) (const char * __restrict ____nptr_1238, char * (* __restrict ____endptr_1239), int ____base_1240);// L195:L197 -extern unsigned long long int (__strtouq_1245) (const char * __restrict ____nptr_1242, char * (* __restrict ____endptr_1243), int ____base_1244);// L200:L202 -extern long long int (__strtoll_1249) (const char * __restrict ____nptr_1246, char * (* __restrict ____endptr_1247), int ____base_1248);// L209:L211 -extern long long int (__strtoll_1250) (const char * __restrict ____nptr_1246, char * (* __restrict ____endptr_1247), int ____base_1248);// L209:L211 -extern unsigned long long int (__strtoull_1254) (const char * __restrict ____nptr_1251, char * (* __restrict ____endptr_1252), int ____base_1253);// L214:L216 +union __wait_1041 ;// L66 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern __size_t_1 (____ctype_get_mb_cur_max_1065) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_1066) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_1067) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_1068) (void );// L139 +extern double (__atof_1070) (const char * (____nptr_1069));// L144:L145 +extern double (__atof_1071) (const char * (____nptr_1069));// L144:L145 +extern int (__atoi_1073) (const char * (____nptr_1072));// L147:L148 +extern int (__atoi_1074) (const char * (____nptr_1072));// L147:L148 +extern long int (__atol_1076) (const char * (____nptr_1075));// L150:L151 +extern long int (__atol_1077) (const char * (____nptr_1075));// L150:L151 +extern long long int (__atoll_1079) (const char * (____nptr_1078));// L157:L158 +extern long long int (__atoll_1080) (const char * (____nptr_1078));// L157:L158 +extern double (__strtod_1083) (const char * __restrict ____nptr_1081, char * (* __restrict ____endptr_1082));// L164:L166 +extern float (__strtof_1086) (const char * __restrict ____nptr_1084, char * (* __restrict ____endptr_1085));// L172:L173 +extern long double (__strtold_1089) (const char * __restrict ____nptr_1087, char * (* __restrict ____endptr_1088));// L175:L177 +extern long int (__strtol_1093) (const char * __restrict ____nptr_1090, char * (* __restrict ____endptr_1091), int ____base_1092);// L183:L185 +extern unsigned long int (__strtoul_1097) (const char * __restrict ____nptr_1094, char * (* __restrict ____endptr_1095), int ____base_1096);// L187:L189 +extern long long int (__strtoq_1101) (const char * __restrict ____nptr_1098, char * (* __restrict ____endptr_1099), int ____base_1100);// L195:L197 +extern unsigned long long int (__strtouq_1105) (const char * __restrict ____nptr_1102, char * (* __restrict ____endptr_1103), int ____base_1104);// L200:L202 +extern long long int (__strtoll_1109) (const char * __restrict ____nptr_1106, char * (* __restrict ____endptr_1107), int ____base_1108);// L209:L211 +extern long long int (__strtoll_1110) (const char * __restrict ____nptr_1106, char * (* __restrict ____endptr_1107), int ____base_1108);// L209:L211 +extern unsigned long long int (__strtoull_1114) (const char * __restrict ____nptr_1111, char * (* __restrict ____endptr_1112), int ____base_1113);// L214:L216 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ __extension__/* no function due to type errors in the function prototype */ -extern char * ((__l64a_1259) (long int ____n_1258));// L305 -extern char * ((__l64a_1260) (long int ____n_1258));// L305 -extern long int (__a64l_1262) (const char * (____s_1261));// L308:L309 -extern long int (__a64l_1263) (const char * (____s_1261));// L308:L309 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope +extern char * ((__l64a_1119) (long int ____n_1118));// L305 +extern char * ((__l64a_1120) (long int ____n_1118));// L305 +extern long int (__a64l_1122) (const char * (____s_1121));// L308:L309 +extern long int (__a64l_1123) (const char * (____s_1121));// L308:L309 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope @@ -2495,118 +1720,9 @@ extern long int (__a64l_1263) (const char * (____s_1261));// L308:L309 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -static __inline unsigned int (____bswap_32_1452) (unsigned int ____bsx_1451) { +static __inline unsigned int (____bswap_32_1166) (unsigned int ____bsx_1165) { -if (__static_condition_default_1453) { +if (__static_condition_default_1167) { { { @@ -2620,9 +1736,9 @@ __static_type_error("invalid type found in return expression"); } } -static __inline ____uint64_t_13 (____bswap_64_1456) (____uint64_t_13 ____bsx_1454) { +static __inline ____uint64_t_13 (____bswap_64_1169) (____uint64_t_13 ____bsx_1168) { -if (__static_condition_default_1458) { +if (__static_condition_default_1167) { { { @@ -2636,47 +1752,27 @@ __static_type_error("invalid type found in return expression"); } } -static __inline ____uint64_t_1275 (____bswap_64_1457) (____uint64_t_1275 ____bsx_1455) { - -if (__static_condition_default_1459) { - -{ -{ - - - -__static_type_error("invalid type found in return expression"); -} -} - - -} -} -// typedef moved to top of scope -// typedef moved to top of scope // typedef moved to top of scope -struct __timespec_1466 ;// L120 - -struct __timeval_1476 ;// L30 - // typedef moved to top of scope // typedef moved to top of scope +struct __timespec_1176 ;// L120 +struct __timeval_1179 ;// L30 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern int (__select_1513) (int ____nfds_1502, __fd_set_1499 * __restrict ____readfds_1503, __fd_set_1499 * __restrict ____writefds_1505, __fd_set_1499 * __restrict ____exceptfds_1507, struct __timeval_1476 * __restrict ____timeout_1510);// L106:L109 -extern int (__select_1514) (int ____nfds_1502, __fd_set_1499 * __restrict ____readfds_1503, __fd_set_1499 * __restrict ____writefds_1505, __fd_set_1499 * __restrict ____exceptfds_1507, struct __forward_tag_reference_1509 * __restrict ____timeout_1512);// L106:L109 -extern int (__pselect_1529) (int ____nfds_1517, __fd_set_1499 * __restrict ____readfds_1518, __fd_set_1499 * __restrict ____writefds_1520, __fd_set_1499 * __restrict ____exceptfds_1522, const struct __timespec_1466 * __restrict ____timeout_1525, const ____sigset_t_1464 * __restrict ____sigmask_1528);// L118:L122 -extern int (__pselect_1530) (int ____nfds_1517, __fd_set_1499 * __restrict ____readfds_1518, __fd_set_1499 * __restrict ____writefds_1520, __fd_set_1499 * __restrict ____exceptfds_1522, const struct __forward_tag_reference_1524 * __restrict ____timeout_1527, const ____sigset_t_1464 * __restrict ____sigmask_1528);// L118:L122 -extern long int (____fdelt_chk_1534) (long int ____d_1533);// L24 -extern long int (____fdelt_warn_1536) (long int ____d_1535);// L25:L26 -extern unsigned int (__gnu_dev_major_1538) (unsigned long long int ____dev_1537);// L27:L28 -extern unsigned int (__gnu_dev_major_1539) (unsigned long long int ____dev_1537);// L27:L28 -extern unsigned int (__gnu_dev_minor_1541) (unsigned long long int ____dev_1540);// L30:L31 -extern unsigned long long int (__gnu_dev_makedev_1544) (unsigned int ____major_1542, unsigned int ____minor_1543);// L33:L35 +extern int (__select_1199) (int ____nfds_1192, __fd_set_1189 * __restrict ____readfds_1193, __fd_set_1189 * __restrict ____writefds_1194, __fd_set_1189 * __restrict ____exceptfds_1195, struct __timeval_1179 * __restrict ____timeout_1197);// L106:L109 +extern int (__select_1200) (int ____nfds_1192, __fd_set_1189 * __restrict ____readfds_1193, __fd_set_1189 * __restrict ____writefds_1194, __fd_set_1189 * __restrict ____exceptfds_1195, struct __forward_tag_reference_1196 * __restrict ____timeout_1198);// L106:L109 +extern int (__pselect_1209) (int ____nfds_1201, __fd_set_1189 * __restrict ____readfds_1202, __fd_set_1189 * __restrict ____writefds_1203, __fd_set_1189 * __restrict ____exceptfds_1204, const struct __timespec_1176 * __restrict ____timeout_1206, const ____sigset_t_1174 * __restrict ____sigmask_1208);// L118:L122 +extern int (__pselect_1210) (int ____nfds_1201, __fd_set_1189 * __restrict ____readfds_1202, __fd_set_1189 * __restrict ____writefds_1203, __fd_set_1189 * __restrict ____exceptfds_1204, const struct __forward_tag_reference_1205 * __restrict ____timeout_1207, const ____sigset_t_1174 * __restrict ____sigmask_1208);// L118:L122 +extern long int (____fdelt_chk_1212) (long int ____d_1211);// L24 +extern long int (____fdelt_warn_1214) (long int ____d_1213);// L25:L26 +extern unsigned int (__gnu_dev_major_1216) (unsigned long long int ____dev_1215);// L27:L28 +extern unsigned int (__gnu_dev_major_1217) (unsigned long long int ____dev_1215);// L27:L28 +extern unsigned int (__gnu_dev_minor_1219) (unsigned long long int ____dev_1218);// L30:L31 +extern unsigned long long int (__gnu_dev_makedev_1222) (unsigned int ____major_1220, unsigned int ____minor_1221);// L33:L35 __extension__/* no function due to type errors in the function prototype */ __extension__/* no function due to type errors in the function prototype */ __extension__/* no function due to type errors in the function prototype */ @@ -2688,286 +1784,194 @@ __extension__/* no function due to type errors in the function prototype */ // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -union __pthread_attr_t_1578 ;// L63 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern int (__rand_1609) (void );// L374 -extern void (__srand_1611) (unsigned int ____seed_1610);// L376 -extern int (__rand_r_1613) (unsigned int * (____seed_1612));// L381 -extern double (__drand48_1614) (void );// L389 -extern double (__erand48_1616) (unsigned short int ____xsubi_1615[3]);// L390 -extern long int (__lrand48_1617) (void );// L393 -extern long int (__nrand48_1619) (unsigned short int ____xsubi_1618[3]);// L394:L395 -extern long int (__mrand48_1620) (void );// L398 -extern long int (__jrand48_1622) (unsigned short int ____xsubi_1621[3]);// L399:L400 -extern void (__srand48_1624) (long int ____seedval_1623);// L403 -extern unsigned short int * ((__seed48_1626) (unsigned short int ____seed16v_1625[3]));// L404:L405 -extern void (__lcong48_1628) (unsigned short int ____param_1627[7]);// L406 -extern void * ((__malloc_1631) (__size_t_1 ____size_1629));// L466 -extern void * ((__malloc_1632) (__size_t_1093 ____size_1630));// L466 -extern void * ((__malloc_1633) (__size_t_1 ____size_1629));// L466 -extern void * ((__malloc_1634) (__size_t_1093 ____size_1630));// L466 -extern void * ((__calloc_1639) (__size_t_1 ____nmemb_1635, __size_t_1 ____size_1637));// L468:L469 -extern void * ((__calloc_1640) (__size_t_1093 ____nmemb_1636, __size_t_1093 ____size_1638));// L468:L469 -extern void * ((__calloc_1641) (__size_t_1 ____nmemb_1635, __size_t_1 ____size_1637));// L468:L469 -extern void * ((__calloc_1642) (__size_t_1093 ____nmemb_1636, __size_t_1093 ____size_1638));// L468:L469 -extern void * ((__realloc_1646) (void * (____ptr_1643), __size_t_1 ____size_1644));// L480:L481 -extern void * ((__realloc_1647) (void * (____ptr_1643), __size_t_1093 ____size_1645));// L480:L481 -extern void (__free_1649) (void * (____ptr_1648));// L483 -extern void (__cfree_1651) (void * (____ptr_1650));// L488 -extern void * ((__alloca_1654) (__size_t_1 ____size_1652));// L32 -extern void * ((__alloca_1655) (__size_t_1093 ____size_1653));// L32 -extern void * ((__valloc_1658) (__size_t_1 ____size_1656));// L498 -extern void * ((__valloc_1659) (__size_t_1093 ____size_1657));// L498 -extern void * ((__valloc_1660) (__size_t_1 ____size_1656));// L498 -extern void * ((__valloc_1661) (__size_t_1093 ____size_1657));// L498 -extern int (__posix_memalign_1667) (void * (* (____memptr_1662)), __size_t_1 ____alignment_1663, __size_t_1 ____size_1665);// L503:L504 -extern int (__posix_memalign_1668) (void * (* (____memptr_1662)), __size_t_1093 ____alignment_1664, __size_t_1093 ____size_1666);// L503:L504 -extern int (__posix_memalign_1669) (void * (* (____memptr_1662)), __size_t_1 ____alignment_1663, __size_t_1 ____size_1665);// L503:L504 -extern int (__posix_memalign_1670) (void * (* (____memptr_1662)), __size_t_1093 ____alignment_1664, __size_t_1093 ____size_1666);// L503:L504 -extern void * ((__aligned_alloc_1675) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 -extern void * ((__aligned_alloc_1676) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 -extern void * ((__aligned_alloc_1677) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 -extern void * ((__aligned_alloc_1678) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 -extern void * ((__aligned_alloc_1679) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 -extern void * ((__aligned_alloc_1680) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 -extern void * ((__aligned_alloc_1681) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 -extern void * ((__aligned_alloc_1682) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 -extern void (__abort_1683) (void );// L515 -extern int (__atexit_1685) (void (* (____func_1684)) (void ));// L519 -extern int (__at_quick_exit_1687) (void (* (____func_1686)) (void ));// L527 -extern int (__on_exit_1692) (void (* (____func_1690)) (int ____status_1688, void * (____arg_1689)), void * (____arg_1691));// L535:L536 -extern void (__exit_1694) (int ____status_1693);// L543 -extern void (__exit_1695) (int ____status_1693);// L543 -extern void (__quick_exit_1697) (int ____status_1696);// L549 -extern void (___Exit_1699) (int ____status_1698);// L557 -extern char * ((__getenv_1701) (const char * (____name_1700)));// L564 -extern char * ((__getenv_1702) (const char * (____name_1700)));// L564 -extern int (__putenv_1704) (char * (____string_1703));// L578 -extern int (__setenv_1708) (const char * (____name_1705), const char * (____value_1706), int ____replace_1707);// L584:L585 -extern int (__unsetenv_1710) (const char * (____name_1709));// L588 -extern int (__clearenv_1711) (void );// L595 -extern char * ((__mktemp_1713) (char * (____template_1712)));// L606 -extern int (__mkstemp_1716) (char * (____template_1714));// L619 -extern int (__mkstemp_1718) (char * (____template_1714));// L619 -extern int (__mkstemp_1717) (char * (____template_1715));// L622:L623 -extern int (__mkstemp_1719) (char * (____template_1715));// L622:L623 -extern int (__mkstemps_1724) (char * (____template_1720), int ____suffixlen_1721);// L641 -extern int (__mkstemps_1725) (char * (____template_1722), int ____suffixlen_1723);// L644:L645 -extern int (__mkstemps_1726) (char * (____template_1720), int ____suffixlen_1721);// L641 -extern int (__mkstemps_1727) (char * (____template_1722), int ____suffixlen_1723);// L644:L645 -extern char * ((__mkdtemp_1729) (char * (____template_1728)));// L662 -extern char * ((__mkdtemp_1730) (char * (____template_1728)));// L662 -extern int (__system_1732) (const char * (____command_1731));// L716 -extern int (__system_1733) (const char * (____command_1731));// L716 -extern int (__system_1734) (const char * (____command_1731));// L716 -extern int (__system_1735) (const char * (____command_1731));// L716 -extern char * ((__realpath_1738) (const char * __restrict ____name_1736, char * __restrict ____resolved_1737));// L733:L734 -extern char * ((__realpath_1739) (const char * __restrict ____name_1736, char * __restrict ____resolved_1737));// L733:L734 -// typedef moved to top of scope -extern void * ((__bsearch_1751) (const void * (____key_1741), const void * (____base_1742), __size_t_1 ____nmemb_1743, __size_t_1 ____size_1745, ____compar_fn_t_1740 ____compar_1747));// L754:L756 -extern void * ((__bsearch_1752) (const void * (____key_1741), const void * (____base_1742), __size_t_1093 ____nmemb_1744, __size_t_1093 ____size_1746, ____compar_fn_t_1740 ____compar_1747));// L754:L756 -extern void * ((__bsearch_1755) (const void * (____key_1741), const void * (____base_1742), __size_t_1 ____nmemb_1743, __size_t_1 ____size_1745, ____compar_fn_t_1740 ____compar_1747));// L754:L756 -extern void * ((__bsearch_1756) (const void * (____key_1741), const void * (____base_1742), __size_t_1093 ____nmemb_1744, __size_t_1093 ____size_1746, ____compar_fn_t_1740 ____compar_1747));// L754:L756 +union __pthread_attr_t_1235 ;// L63 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern int (__rand_1266) (void );// L374 +extern void (__srand_1268) (unsigned int ____seed_1267);// L376 +extern int (__rand_r_1270) (unsigned int * (____seed_1269));// L381 +extern double (__drand48_1271) (void );// L389 +extern double (__erand48_1273) (unsigned short int ____xsubi_1272[3]);// L390 +extern long int (__lrand48_1274) (void );// L393 +extern long int (__nrand48_1276) (unsigned short int ____xsubi_1275[3]);// L394:L395 +extern long int (__mrand48_1277) (void );// L398 +extern long int (__jrand48_1279) (unsigned short int ____xsubi_1278[3]);// L399:L400 +extern void (__srand48_1281) (long int ____seedval_1280);// L403 +extern unsigned short int * ((__seed48_1283) (unsigned short int ____seed16v_1282[3]));// L404:L405 +extern void (__lcong48_1285) (unsigned short int ____param_1284[7]);// L406 +extern void * ((__malloc_1287) (__size_t_1 ____size_1286));// L466 +extern void * ((__malloc_1288) (__size_t_1 ____size_1286));// L466 +extern void * ((__calloc_1291) (__size_t_1 ____nmemb_1289, __size_t_1 ____size_1290));// L468:L469 +extern void * ((__calloc_1292) (__size_t_1 ____nmemb_1289, __size_t_1 ____size_1290));// L468:L469 +extern void * ((__realloc_1295) (void * (____ptr_1293), __size_t_1 ____size_1294));// L480:L481 +extern void * ((__realloc_1296) (void * (____ptr_1293), __size_t_1 ____size_1294));// L480:L481 +extern void (__free_1298) (void * (____ptr_1297));// L483 +extern void (__cfree_1300) (void * (____ptr_1299));// L488 +extern void * ((__alloca_1302) (__size_t_1 ____size_1301));// L32 +extern void * ((__valloc_1304) (__size_t_1 ____size_1303));// L498 +extern void * ((__valloc_1305) (__size_t_1 ____size_1303));// L498 +extern int (__posix_memalign_1309) (void * (* (____memptr_1306)), __size_t_1 ____alignment_1307, __size_t_1 ____size_1308);// L503:L504 +extern int (__posix_memalign_1310) (void * (* (____memptr_1306)), __size_t_1 ____alignment_1307, __size_t_1 ____size_1308);// L503:L504 +extern void * ((__aligned_alloc_1313) (__size_t_1 ____alignment_1311, __size_t_1 ____size_1312));// L509:L510 +extern void * ((__aligned_alloc_1314) (__size_t_1 ____alignment_1311, __size_t_1 ____size_1312));// L509:L510 +extern void * ((__aligned_alloc_1315) (__size_t_1 ____alignment_1311, __size_t_1 ____size_1312));// L509:L510 +extern void * ((__aligned_alloc_1316) (__size_t_1 ____alignment_1311, __size_t_1 ____size_1312));// L509:L510 +extern void (__abort_1317) (void );// L515 +extern int (__atexit_1319) (void (* (____func_1318)) (void ));// L519 +extern int (__at_quick_exit_1321) (void (* (____func_1320)) (void ));// L527 +extern int (__on_exit_1326) (void (* (____func_1324)) (int ____status_1322, void * (____arg_1323)), void * (____arg_1325));// L535:L536 +extern void (__exit_1328) (int ____status_1327);// L543 +extern void (__exit_1329) (int ____status_1327);// L543 +extern void (__quick_exit_1331) (int ____status_1330);// L549 +extern void (___Exit_1333) (int ____status_1332);// L557 +extern char * ((__getenv_1335) (const char * (____name_1334)));// L564 +extern char * ((__getenv_1336) (const char * (____name_1334)));// L564 +extern int (__putenv_1338) (char * (____string_1337));// L578 +extern int (__setenv_1342) (const char * (____name_1339), const char * (____value_1340), int ____replace_1341);// L584:L585 +extern int (__unsetenv_1344) (const char * (____name_1343));// L588 +extern int (__clearenv_1345) (void );// L595 +extern char * ((__mktemp_1347) (char * (____template_1346)));// L606 +extern int (__mkstemp_1350) (char * (____template_1348));// L619 +extern int (__mkstemp_1352) (char * (____template_1348));// L619 +extern int (__mkstemp_1351) (char * (____template_1349));// L622:L623 +extern int (__mkstemp_1353) (char * (____template_1349));// L622:L623 +extern int (__mkstemps_1358) (char * (____template_1354), int ____suffixlen_1355);// L641 +extern int (__mkstemps_1359) (char * (____template_1356), int ____suffixlen_1357);// L644:L645 +extern int (__mkstemps_1360) (char * (____template_1354), int ____suffixlen_1355);// L641 +extern int (__mkstemps_1361) (char * (____template_1356), int ____suffixlen_1357);// L644:L645 +extern char * ((__mkdtemp_1363) (char * (____template_1362)));// L662 +extern char * ((__mkdtemp_1364) (char * (____template_1362)));// L662 +extern int (__system_1366) (const char * (____command_1365));// L716 +extern int (__system_1367) (const char * (____command_1365));// L716 +extern int (__system_1368) (const char * (____command_1365));// L716 +extern int (__system_1369) (const char * (____command_1365));// L716 +extern char * ((__realpath_1372) (const char * __restrict ____name_1370, char * __restrict ____resolved_1371));// L733:L734 +extern char * ((__realpath_1373) (const char * __restrict ____name_1370, char * __restrict ____resolved_1371));// L733:L734 +// typedef moved to top of scope +extern void * ((__bsearch_1382) (const void * (____key_1375), const void * (____base_1376), __size_t_1 ____nmemb_1377, __size_t_1 ____size_1378, ____compar_fn_t_1374 ____compar_1379));// L754:L756 +extern void * ((__bsearch_1384) (const void * (____key_1375), const void * (____base_1376), __size_t_1 ____nmemb_1377, __size_t_1 ____size_1378, ____compar_fn_t_1374 ____compar_1379));// L754:L756 /* no function due to type errors in the function prototype */ -extern void (__qsort_1784) (void * (____base_1777), __size_t_1 ____nmemb_1778, __size_t_1 ____size_1780, ____compar_fn_t_1740 ____compar_1782);// L764:L765 -extern void (__qsort_1786) (void * (____base_1777), __size_t_1093 ____nmemb_1779, __size_t_1093 ____size_1781, ____compar_fn_t_1740 ____compar_1782);// L764:L765 -extern void (__qsort_1788) (void * (____base_1777), __size_t_1 ____nmemb_1778, __size_t_1 ____size_1780, ____compar_fn_t_1740 ____compar_1782);// L764:L765 -extern void (__qsort_1790) (void * (____base_1777), __size_t_1093 ____nmemb_1779, __size_t_1093 ____size_1781, ____compar_fn_t_1740 ____compar_1782);// L764:L765 -extern int (__abs_1793) (int ____x_1792);// L774 -extern int (__abs_1794) (int ____x_1792);// L774 -extern long int (__labs_1796) (long int ____x_1795);// L775 -extern long int (__labs_1797) (long int ____x_1795);// L775 -extern long long int (__llabs_1799) (long long int ____x_1798);// L779:L780 -extern long long int (__llabs_1800) (long long int ____x_1798);// L779:L780 -extern __div_t_1190 (__div_1803) (int ____numer_1801, int ____denom_1802);// L788:L789 -extern __div_t_1190 (__div_1804) (int ____numer_1801, int ____denom_1802);// L788:L789 -extern __ldiv_t_1195 (__ldiv_1807) (long int ____numer_1805, long int ____denom_1806);// L790:L791 -extern __ldiv_t_1195 (__ldiv_1809) (long int ____numer_1805, long int ____denom_1806);// L790:L791 -extern __lldiv_t_1200 (__lldiv_1813) (long long int ____numer_1811, long long int ____denom_1812);// L796:L798 -extern __lldiv_t_1200 (__lldiv_1815) (long long int ____numer_1811, long long int ____denom_1812);// L796:L798 -extern char * ((__ecvt_1821) (double ____value_1817, int ____ndigit_1818, int * __restrict ____decpt_1819, int * __restrict ____sign_1820));// L811:L812 -extern char * ((__ecvt_1822) (double ____value_1817, int ____ndigit_1818, int * __restrict ____decpt_1819, int * __restrict ____sign_1820));// L811:L812 -extern char * ((__fcvt_1827) (double ____value_1823, int ____ndigit_1824, int * __restrict ____decpt_1825, int * __restrict ____sign_1826));// L817:L818 -extern char * ((__fcvt_1828) (double ____value_1823, int ____ndigit_1824, int * __restrict ____decpt_1825, int * __restrict ____sign_1826));// L817:L818 -extern char * ((__gcvt_1832) (double ____value_1829, int ____ndigit_1830, char * (____buf_1831)));// L823:L824 -extern char * ((__gcvt_1833) (double ____value_1829, int ____ndigit_1830, char * (____buf_1831)));// L823:L824 -extern char * ((__qecvt_1838) (long double ____value_1834, int ____ndigit_1835, int * __restrict ____decpt_1836, int * __restrict ____sign_1837));// L829:L831 -extern char * ((__qecvt_1839) (long double ____value_1834, int ____ndigit_1835, int * __restrict ____decpt_1836, int * __restrict ____sign_1837));// L829:L831 -extern char * ((__qfcvt_1844) (long double ____value_1840, int ____ndigit_1841, int * __restrict ____decpt_1842, int * __restrict ____sign_1843));// L832:L834 -extern char * ((__qfcvt_1845) (long double ____value_1840, int ____ndigit_1841, int * __restrict ____decpt_1842, int * __restrict ____sign_1843));// L832:L834 -extern char * ((__qgcvt_1849) (long double ____value_1846, int ____ndigit_1847, char * (____buf_1848)));// L835:L836 -extern char * ((__qgcvt_1850) (long double ____value_1846, int ____ndigit_1847, char * (____buf_1848)));// L835:L836 -extern int (__ecvt_r_1858) (double ____value_1851, int ____ndigit_1852, int * __restrict ____decpt_1853, int * __restrict ____sign_1854, char * __restrict ____buf_1855, __size_t_1 ____len_1856);// L841:L843 -extern int (__ecvt_r_1859) (double ____value_1851, int ____ndigit_1852, int * __restrict ____decpt_1853, int * __restrict ____sign_1854, char * __restrict ____buf_1855, __size_t_1093 ____len_1857);// L841:L843 -extern int (__fcvt_r_1867) (double ____value_1860, int ____ndigit_1861, int * __restrict ____decpt_1862, int * __restrict ____sign_1863, char * __restrict ____buf_1864, __size_t_1 ____len_1865);// L844:L846 -extern int (__fcvt_r_1868) (double ____value_1860, int ____ndigit_1861, int * __restrict ____decpt_1862, int * __restrict ____sign_1863, char * __restrict ____buf_1864, __size_t_1093 ____len_1866);// L844:L846 -extern int (__qecvt_r_1876) (long double ____value_1869, int ____ndigit_1870, int * __restrict ____decpt_1871, int * __restrict ____sign_1872, char * __restrict ____buf_1873, __size_t_1 ____len_1874);// L848:L851 -extern int (__qecvt_r_1877) (long double ____value_1869, int ____ndigit_1870, int * __restrict ____decpt_1871, int * __restrict ____sign_1872, char * __restrict ____buf_1873, __size_t_1093 ____len_1875);// L848:L851 -extern int (__qfcvt_r_1885) (long double ____value_1878, int ____ndigit_1879, int * __restrict ____decpt_1880, int * __restrict ____sign_1881, char * __restrict ____buf_1882, __size_t_1 ____len_1883);// L852:L855 -extern int (__qfcvt_r_1886) (long double ____value_1878, int ____ndigit_1879, int * __restrict ____decpt_1880, int * __restrict ____sign_1881, char * __restrict ____buf_1882, __size_t_1093 ____len_1884);// L852:L855 -extern int (__mblen_1890) (const char * (____s_1887), __size_t_1 ____n_1888);// L862 -extern int (__mblen_1891) (const char * (____s_1887), __size_t_1093 ____n_1889);// L862 -extern int (__mblen_1892) (const char * (____s_1887), __size_t_1 ____n_1888);// L862 -extern int (__mblen_1893) (const char * (____s_1887), __size_t_1093 ____n_1889);// L862 -extern int (__mbtowc_1898) (__wchar_t_1094 * __restrict ____pwc_1894, const char * __restrict ____s_1895, __size_t_1 ____n_1896);// L865:L866 -extern int (__mbtowc_1899) (__wchar_t_1094 * __restrict ____pwc_1894, const char * __restrict ____s_1895, __size_t_1093 ____n_1897);// L865:L866 -extern int (__wctomb_1902) (char * (____s_1900), __wchar_t_1094 ____wchar_1901);// L869 -extern __size_t_1 (__mbstowcs_1907) (__wchar_t_1094 * __restrict ____pwcs_1903, const char * __restrict ____s_1904, __size_t_1 ____n_1905);// L873:L874 -extern __size_t_1093 (__mbstowcs_1908) (__wchar_t_1094 * __restrict ____pwcs_1903, const char * __restrict ____s_1904, __size_t_1093 ____n_1906);// L873:L874 -extern __size_t_1 (__wcstombs_1913) (char * __restrict ____s_1909, const __wchar_t_1094 * __restrict ____pwcs_1910, __size_t_1 ____n_1911);// L876:L878 -extern __size_t_1093 (__wcstombs_1914) (char * __restrict ____s_1909, const __wchar_t_1094 * __restrict ____pwcs_1910, __size_t_1093 ____n_1912);// L876:L878 -extern int (__rpmatch_1917) (const char * (____response_1915));// L887 -extern int (__rpmatch_1916) (const char * (____response_1915));// L887 -extern int (__getsubopt_1922) (char * (* __restrict ____optionp_1918), char * const * __restrict ____tokens_1919, char * (* __restrict ____valuep_1920));// L898:L901 -extern int (__getsubopt_1921) (char * (* __restrict ____optionp_1918), char * const * __restrict ____tokens_1919, char * (* __restrict ____valuep_1920));// L898:L901 -extern int (__getloadavg_1925) (double ____loadavg_1923[], int ____nelem_1924);// L950:L951 +extern void (__qsort_1403) (void * (____base_1398), __size_t_1 ____nmemb_1399, __size_t_1 ____size_1400, ____compar_fn_t_1374 ____compar_1401);// L764:L765 +extern void (__qsort_1405) (void * (____base_1398), __size_t_1 ____nmemb_1399, __size_t_1 ____size_1400, ____compar_fn_t_1374 ____compar_1401);// L764:L765 +extern int (__abs_1408) (int ____x_1407);// L774 +extern int (__abs_1409) (int ____x_1407);// L774 +extern long int (__labs_1411) (long int ____x_1410);// L775 +extern long int (__labs_1412) (long int ____x_1410);// L775 +extern long long int (__llabs_1414) (long long int ____x_1413);// L779:L780 +extern long long int (__llabs_1415) (long long int ____x_1413);// L779:L780 +extern __div_t_1054 (__div_1418) (int ____numer_1416, int ____denom_1417);// L788:L789 +extern __div_t_1054 (__div_1419) (int ____numer_1416, int ____denom_1417);// L788:L789 +extern __ldiv_t_1059 (__ldiv_1422) (long int ____numer_1420, long int ____denom_1421);// L790:L791 +extern __ldiv_t_1059 (__ldiv_1424) (long int ____numer_1420, long int ____denom_1421);// L790:L791 +extern __lldiv_t_1064 (__lldiv_1428) (long long int ____numer_1426, long long int ____denom_1427);// L796:L798 +extern __lldiv_t_1064 (__lldiv_1430) (long long int ____numer_1426, long long int ____denom_1427);// L796:L798 +extern char * ((__ecvt_1436) (double ____value_1432, int ____ndigit_1433, int * __restrict ____decpt_1434, int * __restrict ____sign_1435));// L811:L812 +extern char * ((__ecvt_1437) (double ____value_1432, int ____ndigit_1433, int * __restrict ____decpt_1434, int * __restrict ____sign_1435));// L811:L812 +extern char * ((__fcvt_1442) (double ____value_1438, int ____ndigit_1439, int * __restrict ____decpt_1440, int * __restrict ____sign_1441));// L817:L818 +extern char * ((__fcvt_1443) (double ____value_1438, int ____ndigit_1439, int * __restrict ____decpt_1440, int * __restrict ____sign_1441));// L817:L818 +extern char * ((__gcvt_1447) (double ____value_1444, int ____ndigit_1445, char * (____buf_1446)));// L823:L824 +extern char * ((__gcvt_1448) (double ____value_1444, int ____ndigit_1445, char * (____buf_1446)));// L823:L824 +extern char * ((__qecvt_1453) (long double ____value_1449, int ____ndigit_1450, int * __restrict ____decpt_1451, int * __restrict ____sign_1452));// L829:L831 +extern char * ((__qecvt_1454) (long double ____value_1449, int ____ndigit_1450, int * __restrict ____decpt_1451, int * __restrict ____sign_1452));// L829:L831 +extern char * ((__qfcvt_1459) (long double ____value_1455, int ____ndigit_1456, int * __restrict ____decpt_1457, int * __restrict ____sign_1458));// L832:L834 +extern char * ((__qfcvt_1460) (long double ____value_1455, int ____ndigit_1456, int * __restrict ____decpt_1457, int * __restrict ____sign_1458));// L832:L834 +extern char * ((__qgcvt_1464) (long double ____value_1461, int ____ndigit_1462, char * (____buf_1463)));// L835:L836 +extern char * ((__qgcvt_1465) (long double ____value_1461, int ____ndigit_1462, char * (____buf_1463)));// L835:L836 +extern int (__ecvt_r_1472) (double ____value_1466, int ____ndigit_1467, int * __restrict ____decpt_1468, int * __restrict ____sign_1469, char * __restrict ____buf_1470, __size_t_1 ____len_1471);// L841:L843 +extern int (__fcvt_r_1479) (double ____value_1473, int ____ndigit_1474, int * __restrict ____decpt_1475, int * __restrict ____sign_1476, char * __restrict ____buf_1477, __size_t_1 ____len_1478);// L844:L846 +extern int (__qecvt_r_1486) (long double ____value_1480, int ____ndigit_1481, int * __restrict ____decpt_1482, int * __restrict ____sign_1483, char * __restrict ____buf_1484, __size_t_1 ____len_1485);// L848:L851 +extern int (__qfcvt_r_1493) (long double ____value_1487, int ____ndigit_1488, int * __restrict ____decpt_1489, int * __restrict ____sign_1490, char * __restrict ____buf_1491, __size_t_1 ____len_1492);// L852:L855 +extern int (__mblen_1496) (const char * (____s_1494), __size_t_1 ____n_1495);// L862 +extern int (__mblen_1497) (const char * (____s_1494), __size_t_1 ____n_1495);// L862 +extern int (__mbtowc_1501) (__wchar_t_1018 * __restrict ____pwc_1498, const char * __restrict ____s_1499, __size_t_1 ____n_1500);// L865:L866 +extern int (__wctomb_1504) (char * (____s_1502), __wchar_t_1018 ____wchar_1503);// L869 +extern __size_t_1 (__mbstowcs_1508) (__wchar_t_1018 * __restrict ____pwcs_1505, const char * __restrict ____s_1506, __size_t_1 ____n_1507);// L873:L874 +extern __size_t_1 (__wcstombs_1512) (char * __restrict ____s_1509, const __wchar_t_1018 * __restrict ____pwcs_1510, __size_t_1 ____n_1511);// L876:L878 +extern int (__rpmatch_1515) (const char * (____response_1513));// L887 +extern int (__rpmatch_1514) (const char * (____response_1513));// L887 +extern int (__getsubopt_1520) (char * (* __restrict ____optionp_1516), char * const * __restrict ____tokens_1517, char * (* __restrict ____valuep_1518));// L898:L901 +extern int (__getsubopt_1519) (char * (* __restrict ____optionp_1516), char * const * __restrict ____tokens_1517, char * (* __restrict ____valuep_1518));// L898:L901 +extern int (__getloadavg_1523) (double ____loadavg_1521[], int ____nelem_1522);// L950:L951 /* no function due to type errors in the function prototype */ -extern char * ((____realpath_chk_1931) (const char * __restrict ____name_1927, char * __restrict ____resolved_1928, __size_t_1 ____resolvedlen_1929));// L23:L25 -extern char * ((____realpath_chk_1932) (const char * __restrict ____name_1927, char * __restrict ____resolved_1928, __size_t_1093 ____resolvedlen_1930));// L23:L25 -extern char * ((____realpath_alias_1935) (const char * __restrict ____name_1933, char * __restrict ____resolved_1934));// L26:L28 -extern char * ((____realpath_chk_warn_1940) (const char * __restrict ____name_1936, char * __restrict ____resolved_1937, __size_t_1 ____resolvedlen_1938));// L29:L34 -extern char * ((____realpath_chk_warn_1941) (const char * __restrict ____name_1936, char * __restrict ____resolved_1937, __size_t_1093 ____resolvedlen_1939));// L29:L34 +extern char * ((____realpath_chk_1528) (const char * __restrict ____name_1525, char * __restrict ____resolved_1526, __size_t_1 ____resolvedlen_1527));// L23:L25 +extern char * ((____realpath_alias_1531) (const char * __restrict ____name_1529, char * __restrict ____resolved_1530));// L26:L28 +extern char * ((____realpath_chk_warn_1535) (const char * __restrict ____name_1532, char * __restrict ____resolved_1533, __size_t_1 ____resolvedlen_1534));// L29:L34 /* no function due to type errors in the function prototype */ -extern int (____ptsname_r_chk_1951) (int ____fd_1945, char * (____buf_1946), __size_t_1 ____buflen_1947, __size_t_1 ____nreal_1949);// L52:L53 -extern int (____ptsname_r_chk_1952) (int ____fd_1945, char * (____buf_1946), __size_t_1093 ____buflen_1948, __size_t_1093 ____nreal_1950);// L52:L53 -extern int (____ptsname_r_alias_1957) (int ____fd_1953, char * (____buf_1954), __size_t_1 ____buflen_1955);// L54:L56 -extern int (____ptsname_r_alias_1958) (int ____fd_1953, char * (____buf_1954), __size_t_1093 ____buflen_1956);// L54:L56 -extern int (____ptsname_r_chk_warn_1965) (int ____fd_1959, char * (____buf_1960), __size_t_1 ____buflen_1961, __size_t_1 ____nreal_1963);// L57:L61 -extern int (____ptsname_r_chk_warn_1966) (int ____fd_1959, char * (____buf_1960), __size_t_1093 ____buflen_1962, __size_t_1093 ____nreal_1964);// L57:L61 +extern int (____ptsname_r_chk_1543) (int ____fd_1539, char * (____buf_1540), __size_t_1 ____buflen_1541, __size_t_1 ____nreal_1542);// L52:L53 +extern int (____ptsname_r_alias_1547) (int ____fd_1544, char * (____buf_1545), __size_t_1 ____buflen_1546);// L54:L56 +extern int (____ptsname_r_chk_warn_1552) (int ____fd_1548, char * (____buf_1549), __size_t_1 ____buflen_1550, __size_t_1 ____nreal_1551);// L57:L61 /* no function due to type errors in the function prototype */ -extern int (____wctomb_chk_1977) (char * (____s_1973), __wchar_t_1094 ____wchar_1974, __size_t_1 ____buflen_1975);// L77:L78 -extern int (____wctomb_chk_1978) (char * (____s_1973), __wchar_t_1094 ____wchar_1974, __size_t_1093 ____buflen_1976);// L77:L78 -extern int (____wctomb_alias_1981) (char * (____s_1979), __wchar_t_1094 ____wchar_1980);// L79:L80 +extern int (____wctomb_chk_1560) (char * (____s_1557), __wchar_t_1018 ____wchar_1558, __size_t_1 ____buflen_1559);// L77:L78 +extern int (____wctomb_alias_1563) (char * (____s_1561), __wchar_t_1018 ____wchar_1562);// L79:L80 /* no function due to type errors in the function prototype */ -extern __size_t_1 (____mbstowcs_chk_1990) (__wchar_t_1094 * __restrict ____dst_1984, const char * __restrict ____src_1985, __size_t_1 ____len_1986, __size_t_1 ____dstlen_1988);// L98:L100 -extern __size_t_1093 (____mbstowcs_chk_1991) (__wchar_t_1094 * __restrict ____dst_1984, const char * __restrict ____src_1985, __size_t_1093 ____len_1987, __size_t_1093 ____dstlen_1989);// L98:L100 -extern __size_t_1 (____mbstowcs_alias_1996) (__wchar_t_1094 * __restrict ____dst_1992, const char * __restrict ____src_1993, __size_t_1 ____len_1994);// L101:L104 -extern __size_t_1093 (____mbstowcs_alias_1997) (__wchar_t_1094 * __restrict ____dst_1992, const char * __restrict ____src_1993, __size_t_1093 ____len_1995);// L101:L104 -extern __size_t_1 (____mbstowcs_chk_warn_2004) (__wchar_t_1094 * __restrict ____dst_1998, const char * __restrict ____src_1999, __size_t_1 ____len_2000, __size_t_1 ____dstlen_2002);// L105:L110 -extern __size_t_1093 (____mbstowcs_chk_warn_2005) (__wchar_t_1094 * __restrict ____dst_1998, const char * __restrict ____src_1999, __size_t_1093 ____len_2001, __size_t_1093 ____dstlen_2003);// L105:L110 +extern __size_t_1 (____mbstowcs_chk_1570) (__wchar_t_1018 * __restrict ____dst_1566, const char * __restrict ____src_1567, __size_t_1 ____len_1568, __size_t_1 ____dstlen_1569);// L98:L100 +extern __size_t_1 (____mbstowcs_alias_1574) (__wchar_t_1018 * __restrict ____dst_1571, const char * __restrict ____src_1572, __size_t_1 ____len_1573);// L101:L104 +extern __size_t_1 (____mbstowcs_chk_warn_1579) (__wchar_t_1018 * __restrict ____dst_1575, const char * __restrict ____src_1576, __size_t_1 ____len_1577, __size_t_1 ____dstlen_1578);// L105:L110 /* no function due to type errors in the function prototype */ -extern __size_t_1 (____wcstombs_chk_2016) (char * __restrict ____dst_2010, const __wchar_t_1094 * __restrict ____src_2011, __size_t_1 ____len_2012, __size_t_1 ____dstlen_2014);// L130:L132 -extern __size_t_1093 (____wcstombs_chk_2017) (char * __restrict ____dst_2010, const __wchar_t_1094 * __restrict ____src_2011, __size_t_1093 ____len_2013, __size_t_1093 ____dstlen_2015);// L130:L132 -extern __size_t_1 (____wcstombs_alias_2022) (char * __restrict ____dst_2018, const __wchar_t_1094 * __restrict ____src_2019, __size_t_1 ____len_2020);// L133:L136 -extern __size_t_1093 (____wcstombs_alias_2023) (char * __restrict ____dst_2018, const __wchar_t_1094 * __restrict ____src_2019, __size_t_1093 ____len_2021);// L133:L136 -extern __size_t_1 (____wcstombs_chk_warn_2030) (char * __restrict ____dst_2024, const __wchar_t_1094 * __restrict ____src_2025, __size_t_1 ____len_2026, __size_t_1 ____dstlen_2028);// L137:L141 -extern __size_t_1093 (____wcstombs_chk_warn_2031) (char * __restrict ____dst_2024, const __wchar_t_1094 * __restrict ____src_2025, __size_t_1093 ____len_2027, __size_t_1093 ____dstlen_2029);// L137:L141 +extern __size_t_1 (____wcstombs_chk_1587) (char * __restrict ____dst_1583, const __wchar_t_1018 * __restrict ____src_1584, __size_t_1 ____len_1585, __size_t_1 ____dstlen_1586);// L130:L132 +extern __size_t_1 (____wcstombs_alias_1591) (char * __restrict ____dst_1588, const __wchar_t_1018 * __restrict ____src_1589, __size_t_1 ____len_1590);// L133:L136 +extern __size_t_1 (____wcstombs_chk_warn_1596) (char * __restrict ____dst_1592, const __wchar_t_1018 * __restrict ____src_1593, __size_t_1 ____len_1594, __size_t_1 ____dstlen_1595);// L137:L141 /* no function due to type errors in the function prototype */ -void (__ap_log_perror__2037) (int __level_2036) { +void (__ap_log_perror__1601) (int __level_1600) { -if (__static_condition_default_2040) { +if (__static_condition_default_1604) { { { -if (__static_condition_default_2041) { - __printf_421 ("%d\n", __level_2036 ) ; // L6 -} -if (__static_condition_default_2042) { -__static_type_error("type error") ; // L6 -} + __printf_383 ("%d\n", __level_1600 ) ; // L6 } } } } -void (__ap_log_perror__2038) (int __level_2036) { +void (__ap_log_perror__1602) (int __level_1600) { -if (__static_condition_default_2043) { +if (__static_condition_default_1605) { { { -if (__static_condition_default_2044) { - __printf_421 ("%d\n", __level_2036 ) ; // L6 -} -if (__static_condition_default_2045) { -__static_type_error("type error") ; // L6 -} + __printf_383 ("%d\n", __level_1600 ) ; // L6 } } } } -void (__ap_log_perror__2039) (int __level_2036) { +void (__ap_log_perror__1603) (int __level_1600) { -if (__static_condition_default_2046) { +if (__static_condition_default_1606) { { { -if (__static_condition_default_2047) { - __printf_421 ("%d\n", __level_2036 ) ; // L6 -} -if (__static_condition_default_2048) { -__static_type_error("type error") ; // L6 -} + __printf_383 ("%d\n", __level_1600 ) ; // L6 } } } } -int (__main_2049) (void ) { +int (__main_1607) (void ) { { { -if (__static_condition_default_2050) { -if ( rand( ) % 2 )// L11 -{ - -{ -{ - - - -__static_type_error("type error : no valid expression"); // L11 -} -} -} -} -if (__static_condition_default_2051) { -__static_type_error("invalid type found in if statement"); -} -if (__static_condition_default_2052) { - ; // L17 -} -if (__static_condition_default_2053) { return 0 ;// L19 } -if (__static_condition_default_2052) { -return 0 ;// L19 -} -} } diff --git a/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.clangres b/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.clangres index f35f7adc..54a04e27 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.clangres @@ -1,4 +1,5 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.c:24:10: warning: Potential leak of memory pointed to by 'eckey' [unix.Malloc] - return 0; - ^ -1 warning generated. +In file included from :342: +:2:9: error: 'defined' cannot be used as a macro name +#define defined 1 + ^ +1 error generated. diff --git a/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c index b99c19de..b82a1bcb 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c @@ -7,89 +7,89 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_818; extern const bool __static_condition_default_276; -extern const bool __static_condition_default_60; -extern const bool __static_condition_default_808; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_581; -extern const bool __static_condition_default_67; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_414; -extern const bool __static_condition_default_378; -extern const bool __static_condition_default_285; -extern const bool __static_condition_default_426; -extern const bool __static_condition_default_824; -extern const bool __static_condition_default_394; -extern const bool __static_condition_default_379; -extern const bool __static_condition_default_822; -extern const bool __static_condition_default_805; +extern const bool __static_condition_default_818; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_215; +extern const bool __static_condition_default_803; extern const bool __static_condition_default_325; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_579; extern const bool __static_condition_default_361; +extern const bool __static_condition_default_820; +extern const bool __static_condition_default_805; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_828; +extern const bool __static_condition_default_240; +extern const bool __static_condition_default_414; +extern const bool __static_condition_default_378; +extern const bool __static_condition_default_420; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_305; extern const bool __static_condition_default_237; +extern const bool __static_condition_default_627; +extern const bool __static_condition_default_816; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_829; +extern const bool __static_condition_default_308; +extern const bool __static_condition_default_423; extern const bool __static_condition_default_812; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_820; -extern const bool __static_condition_default_815; +extern const bool __static_condition_default_252; extern const bool __static_condition_default_264; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_261; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_296; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_349; +extern const bool __static_condition_default_341; extern const bool __static_condition_default_813; -extern const bool __static_condition_default_826; -extern const bool __static_condition_default_423; -extern const bool __static_condition_default_803; -extern const bool __static_condition_default_293; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_285; +extern const bool __static_condition_default_394; extern const bool __static_condition_default_621; -extern const bool __static_condition_default_215; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_806; -extern const bool __static_condition_default_279; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_595; -extern const bool __static_condition_default_308; -extern const bool __static_condition_default_833; -extern const bool __static_condition_default_804; -extern const bool __static_condition_default_234; -extern const bool __static_condition_default_243; -extern const bool __static_condition_default_270; extern const bool __static_condition_default_736; +extern const bool __static_condition_default_808; +extern const bool __static_condition_default_629; +extern const bool __static_condition_default_815; +extern const bool __static_condition_default_243; +extern const bool __static_condition_default_595; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_821; +extern const bool __static_condition_default_623; extern const bool __static_condition_default_807; -extern const bool __static_condition_default_420; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_811; +extern const bool __static_condition_default_814; extern const bool __static_condition_default_302; -extern const bool __static_condition_default_429; -extern const bool __static_condition_default_816; -extern const bool __static_condition_default_240; -extern const bool __static_condition_default_305; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_819; +extern const bool __static_condition_default_234; +extern const bool __static_condition_default_261; +extern const bool __static_condition_default_579; +extern const bool __static_condition_default_804; +extern const bool __static_condition_default_822; +extern const bool __static_condition_default_802; extern const bool __static_condition_default_267; -extern const bool __static_condition_default_810; -extern const bool __static_condition_default_252; -extern const bool __static_condition_default_629; -extern const bool __static_condition_default_814; -extern const bool __static_condition_default_273; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_349; extern const bool __static_condition_default_352; -extern const bool __static_condition_default_604; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_627; -extern const bool __static_condition_default_802; -extern const bool __static_condition_default_821; -extern const bool __static_condition_default_828; -extern const bool __static_condition_default_594; -extern const bool __static_condition_default_829; +extern const bool __static_condition_default_273; +extern const bool __static_condition_default_246; extern const bool __static_condition_default_288; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_594; +extern const bool __static_condition_default_581; +extern const bool __static_condition_default_806; +extern const bool __static_condition_default_810; +extern const bool __static_condition_default_826; +extern const bool __static_condition_default_279; +extern const bool __static_condition_default_604; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_429; +extern const bool __static_condition_default_824; +extern const bool __static_condition_default_67; +extern const bool __static_condition_default_426; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_379; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_811; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_60; +extern const bool __static_condition_default_833; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -566,8 +566,7 @@ __static_condition_renaming("__static_condition_default_828", "!(defined _STDLIB __static_condition_renaming("__static_condition_default_829", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); __static_condition_renaming("__static_condition_default_833", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc)"); -if (__static_condition_default_833) -{ +if (__static_condition_default_833) { __static_parse_error("Unable to parse"); } }; diff --git a/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.clangres b/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.clangres index e5dacadb..48e366a1 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.clangres @@ -1,28 +1,28 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1374:17: warning: Dereference of undefined pointer value [core.NullDereference] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1373:17: warning: Dereference of undefined pointer value [core.NullDereference] * __eckey_798 = 30 ; // L12 ~~~~~~~~~~~~~~~~^~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1398:17: warning: Dereference of undefined pointer value [core.NullDereference] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1397:17: warning: Dereference of undefined pointer value [core.NullDereference] * __eckey_798 = 15 ; // L17 ~~~~~~~~~~~~~~~~^~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1404:5: warning: Potential leak of memory pointed to by '__eckey_798' [unix.Malloc] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1403:5: warning: Potential leak of memory pointed to by '__eckey_798' [unix.Malloc] if (__static_condition_default_809) { ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1443:17: warning: Dereference of undefined pointer value [core.NullDereference] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1442:17: warning: Dereference of undefined pointer value [core.NullDereference] * __eckey_798 = 30 ; // L12 ~~~~~~~~~~~~~~~~^~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1467:17: warning: Dereference of undefined pointer value [core.NullDereference] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1466:17: warning: Dereference of undefined pointer value [core.NullDereference] * __eckey_798 = 15 ; // L17 ~~~~~~~~~~~~~~~~^~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1473:5: warning: Potential leak of memory pointed to by '__eckey_798' [unix.Malloc] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1472:5: warning: Potential leak of memory pointed to by '__eckey_798' [unix.Malloc] if (__static_condition_default_818) { ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1497:2: warning: Value stored to '__eckey_798' is never read [deadcode.DeadStores] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1496:2: warning: Value stored to '__eckey_798' is never read [deadcode.DeadStores] __eckey_798 = malloc (sizeof(int)) ; // L10 ^ ~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1500:2: warning: Value stored to '__eckey_798' is never read [deadcode.DeadStores] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1499:2: warning: Value stored to '__eckey_798' is never read [deadcode.DeadStores] __eckey_798 = malloc (sizeof(int)) ; // L10 ^ ~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1502:5: warning: Potential leak of memory pointed to by '__eckey_798' [unix.Malloc] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1501:5: warning: Potential leak of memory pointed to by '__eckey_798' [unix.Malloc] if (__static_condition_default_823) { ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 9 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.inferres index b9cc2e83..68dc4f85 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.inferres +++ b/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.inferres @@ -1,48 +1,48 @@ -APACHE/35ae2e259e4.desugared.c:1374: error: Null Dereference - pointer `__eckey_798` last assigned on line 1359 could be null and is dereferenced at line 1374, column 1. +APACHE/35ae2e259e4.desugared.c:1373: error: Null Dereference + pointer `__eckey_798` last assigned on line 1358 could be null and is dereferenced at line 1373, column 1. + 1371. 1372. - 1373. - 1374. * __eckey_798 = 30 ; // L12 + 1373. * __eckey_798 = 30 ; // L12 ^ + 1374. } 1375. } - 1376. } -APACHE/35ae2e259e4.desugared.c:1398: error: Null Dereference - pointer `__eckey_798` last assigned on line 1359 could be null and is dereferenced at line 1398, column 1. +APACHE/35ae2e259e4.desugared.c:1397: error: Null Dereference + pointer `__eckey_798` last assigned on line 1358 could be null and is dereferenced at line 1397, column 1. + 1395. 1396. - 1397. - 1398. * __eckey_798 = 15 ; // L17 + 1397. * __eckey_798 = 15 ; // L17 ^ + 1398. } 1399. } - 1400. } -APACHE/35ae2e259e4.desugared.c:1443: error: Null Dereference - pointer `__eckey_798` last assigned on line 1428 could be null and is dereferenced at line 1443, column 1. +APACHE/35ae2e259e4.desugared.c:1442: error: Null Dereference + pointer `__eckey_798` last assigned on line 1427 could be null and is dereferenced at line 1442, column 1. + 1440. 1441. - 1442. - 1443. * __eckey_798 = 30 ; // L12 + 1442. * __eckey_798 = 30 ; // L12 ^ + 1443. } 1444. } - 1445. } -APACHE/35ae2e259e4.desugared.c:1467: error: Null Dereference - pointer `__eckey_798` last assigned on line 1428 could be null and is dereferenced at line 1467, column 1. +APACHE/35ae2e259e4.desugared.c:1466: error: Null Dereference + pointer `__eckey_798` last assigned on line 1427 could be null and is dereferenced at line 1466, column 1. + 1464. 1465. - 1466. - 1467. * __eckey_798 = 15 ; // L17 + 1466. * __eckey_798 = 15 ; // L17 ^ + 1467. } 1468. } - 1469. } -APACHE/35ae2e259e4.desugared.c:1497: error: Dead Store +APACHE/35ae2e259e4.desugared.c:1496: error: Dead Store The value written to &__eckey_798 (type int*) is never used. - 1495. - 1496. if (__static_condition_default_821) { - 1497. __eckey_798 = malloc (sizeof(int)) ; // L10 + 1494. + 1495. if (__static_condition_default_821) { + 1496. __eckey_798 = malloc (sizeof(int)) ; // L10 ^ - 1498. } - 1499. if (__static_condition_default_822) { + 1497. } + 1498. if (__static_condition_default_822) { Found 6 issues (console output truncated to 5, see '/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/infer-out/report.txt' for the full list) diff --git a/fonda/cpp_testsuite/varBugs/APACHE/4202d5fee3e.clangres b/fonda/cpp_testsuite/varBugs/APACHE/4202d5fee3e.clangres index e69de29b..4e2d06e6 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/4202d5fee3e.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/4202d5fee3e.clangres @@ -0,0 +1,8 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/4202d5fee3e.c:9:16: error: use of undeclared identifier 'certdb'; did you mean 'certtdb'? + printf("%c", certdb); // ERROR: certdb undeclared + ^~~~~~ + certtdb +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/4202d5fee3e.c:4:6: note: 'certtdb' declared here +char certtdb = 'A'; + ^ +1 error generated. diff --git a/fonda/cpp_testsuite/varBugs/APACHE/4202d5fee3e.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/4202d5fee3e.desugared.c index 7e5cb92a..981b9f41 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/4202d5fee3e.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/4202d5fee3e.desugared.c @@ -7,278 +7,278 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_883; +extern const bool __static_condition_default_568; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_521; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_512; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_846; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_419; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_759; extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_685; -extern const bool __static_condition_default_217; -extern const bool __static_condition_default_357; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_402; -extern const bool __static_condition_default_313; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_803; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_761; -extern const bool __static_condition_default_677; -extern const bool __static_condition_default_560; +extern const bool __static_condition_default_382; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_963; extern const bool __static_condition_default_801; -extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_53; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_914; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_848; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_248; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_431; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_583; +extern const bool __static_condition_default_182; extern const bool __static_condition_default_538; -extern const bool __static_condition_default_613; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_76; -extern const bool __static_condition_default_638; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_549; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_590; -extern const bool __static_condition_default_769; -extern const bool __static_condition_default_957; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_267; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_661; extern const bool __static_condition_default_967; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_858; -extern const bool __static_condition_default_1095; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_568; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_432; +extern const bool __static_condition_default_651; extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_412; -extern const bool __static_condition_default_419; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_521; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_347; -extern const bool __static_condition_default_235; +extern const bool __static_condition_default_1035; extern const bool __static_condition_default_290; -extern const bool __static_condition_default_187; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_767; +extern const bool __static_condition_default_204; extern const bool __static_condition_default_455; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_747; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_1099; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_907; -extern const bool __static_condition_default_1100; -extern const bool __static_condition_default_529; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_875; +extern const bool __static_condition_default_646; extern const bool __static_condition_default_650; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_204; -extern const bool __static_condition_default_956; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_670; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_461; +extern const bool __static_condition_default_613; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_549; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_333; +extern const bool __static_condition_default_536; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_123; extern const bool __static_condition_default_686; -extern const bool __static_condition_default_701; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_583; -extern const bool __static_condition_default_980; +extern const bool __static_condition_default_1015; extern const bool __static_condition_default_311; -extern const bool __static_condition_default_367; -extern const bool __static_condition_default_241; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_489; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_659; extern const bool __static_condition_default_693; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_488; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_515; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_891; +extern const bool __static_condition_default_761; +extern const bool __static_condition_default_169; extern const bool __static_condition_default_386; -extern const bool __static_condition_default_875; -extern const bool __static_condition_default_315; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_367; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_747; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_955; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_769; extern const bool __static_condition_default_647; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_894; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_842; -extern const bool __static_condition_default_709; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_1098; -extern const bool __static_condition_default_393; -extern const bool __static_condition_default_963; -extern const bool __static_condition_default_1050; extern const bool __static_condition_default_753; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_486; extern const bool __static_condition_default_780; -extern const bool __static_condition_default_512; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_929; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_317; -extern const bool __static_condition_default_543; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_955; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_646; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_408; -extern const bool __static_condition_default_781; +extern const bool __static_condition_default_388; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_791; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_1100; extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_789; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_516; extern const bool __static_condition_default_715; -extern const bool __static_condition_default_497; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_1095; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_842; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_1051; extern const bool __static_condition_default_862; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_382; -extern const bool __static_condition_default_632; -extern const bool __static_condition_default_380; -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_846; -extern const bool __static_condition_default_198; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_333; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_523; +extern const bool __static_condition_default_270; extern const bool __static_condition_default_752; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_536; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_645; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_787; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_872; -extern const bool __static_condition_default_793; -extern const bool __static_condition_default_388; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_76; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_702; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_1099; +extern const bool __static_condition_default_894; extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_337; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_365; +extern const bool __static_condition_default_677; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_497; extern const bool __static_condition_default_633; -extern const bool __static_condition_default_779; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_264; extern const bool __static_condition_default_809; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_891; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_755; -extern const bool __static_condition_default_559; +extern const bool __static_condition_default_544; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_619; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_550; +extern const bool __static_condition_default_636; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_929; extern const bool __static_condition_default_700; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_347; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_488; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_1098; +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_187; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_852; extern const bool __static_condition_default_84; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_702; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_553; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_907; +extern const bool __static_condition_default_1028; extern const bool __static_condition_default_887; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_670; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_721; extern const bool __static_condition_default_979; -extern const bool __static_condition_default_789; -extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_438; -extern const bool __static_condition_default_564; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_779; +extern const bool __static_condition_default_559; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_284; extern const bool __static_condition_default_373; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_341; extern const bool __static_condition_default_1094; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_834; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_380; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -824,8 +824,7 @@ __static_condition_renaming("__static_condition_default_1098", "!(defined APU_HA __static_condition_renaming("__static_condition_default_1099", "(defined APU_HAS_LDAP)"); __static_condition_renaming("__static_condition_default_1100", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -if (__static_condition_default_1100) -{ +if (__static_condition_default_1100) { __static_parse_error("Unable to parse"); } }; diff --git a/fonda/cpp_testsuite/varBugs/APACHE/4945115b2e7.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/4945115b2e7.desugared.c index 6ad64a5e..6f2905d7 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/4945115b2e7.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/4945115b2e7.desugared.c @@ -7,408 +7,220 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_1754; -extern const bool __static_condition_default_1164; -extern const bool __static_condition_default_2113; -extern const bool __static_condition_default_1402; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_2104; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_1428; -extern const bool __static_condition_default_2098; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_780; -extern const bool __static_condition_default_1341; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_2116; -extern const bool __static_condition_default_789; -extern const bool __static_condition_default_2088; -extern const bool __static_condition_default_1773; -extern const bool __static_condition_default_755; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_2110; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_701; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_914; +extern const bool __static_condition_default_577; +extern const bool __static_condition_default_1133; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_726; +extern const bool __static_condition_default_343; +extern const bool __static_condition_default_518; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_300; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_434; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_1135; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_531; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_741; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_1124; +extern const bool __static_condition_default_551; +extern const bool __static_condition_default_1119; +extern const bool __static_condition_default_1115; +extern const bool __static_condition_default_748; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_319; extern const bool __static_condition_default_315; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_2058; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_1436; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_53; -extern const bool __static_condition_default_2056; -extern const bool __static_condition_default_2089; -extern const bool __static_condition_default_1787; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_1810; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_2041; -extern const bool __static_condition_default_1416; -extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_2076; -extern const bool __static_condition_default_2111; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_2095; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_645; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_2072; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_1753; -extern const bool __static_condition_default_1345; -extern const bool __static_condition_default_2060; -extern const bool __static_condition_default_386; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_2085; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_911; +extern const bool __static_condition_default_707; +extern const bool __static_condition_default_415; +extern const bool __static_condition_default_1120; +extern const bool __static_condition_default_921; +extern const bool __static_condition_default_1107; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_1114; +extern const bool __static_condition_default_339; +extern const bool __static_condition_default_439; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_1130; +extern const bool __static_condition_default_1101; +extern const bool __static_condition_default_348; +extern const bool __static_condition_default_1121; +extern const bool __static_condition_default_681; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_440; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_396; +extern const bool __static_condition_default_923; +extern const bool __static_condition_default_1118; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_492; +extern const bool __static_condition_default_498; +extern const bool __static_condition_default_1108; +extern const bool __static_condition_default_583; +extern const bool __static_condition_default_605; +extern const bool __static_condition_default_285; +extern const bool __static_condition_default_588; +extern const bool __static_condition_default_1125; +extern const bool __static_condition_default_436; +extern const bool __static_condition_default_76; +extern const bool __static_condition_default_912; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_427; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_910; +extern const bool __static_condition_default_589; +extern const bool __static_condition_default_890; +extern const bool __static_condition_default_302; +extern const bool __static_condition_default_304; +extern const bool __static_condition_default_298; +extern const bool __static_condition_default_675; +extern const bool __static_condition_default_593; +extern const bool __static_condition_default_329; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_749; +extern const bool __static_condition_default_603; extern const bool __static_condition_default_123; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_1453; -extern const bool __static_condition_default_781; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_713; +extern const bool __static_condition_default_733; +extern const bool __static_condition_default_1113; +extern const bool __static_condition_default_453; +extern const bool __static_condition_default_374; +extern const bool __static_condition_default_673; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_952; +extern const bool __static_condition_default_484; extern const bool __static_condition_default_503; -extern const bool __static_condition_default_2057; -extern const bool __static_condition_default_2087; -extern const bool __static_condition_default_2090; -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_613; -extern const bool __static_condition_default_1377; -extern const bool __static_condition_default_647; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_465; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_674; +extern const bool __static_condition_default_1129; +extern const bool __static_condition_default_1116; +extern const bool __static_condition_default_84; +extern const bool __static_condition_default_385; +extern const bool __static_condition_default_697; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_1132; +extern const bool __static_condition_default_533; +extern const bool __static_condition_default_321; +extern const bool __static_condition_default_1102; +extern const bool __static_condition_default_1127; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_946; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_1111; +extern const bool __static_condition_default_690; +extern const bool __static_condition_default_1122; +extern const bool __static_condition_default_1137; +extern const bool __static_condition_default_360; +extern const bool __static_condition_default_889; +extern const bool __static_condition_default_1139; +extern const bool __static_condition_default_1143; +extern const bool __static_condition_default_758; +extern const bool __static_condition_default_599; +extern const bool __static_condition_default_534; +extern const bool __static_condition_default_740; +extern const bool __static_condition_default_885; extern const bool __static_condition_default_461; -extern const bool __static_condition_default_2069; -extern const bool __static_condition_default_747; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_769; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_1515; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_1789; -extern const bool __static_condition_default_702; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_872; -extern const bool __static_condition_default_564; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_1432; -extern const bool __static_condition_default_1409; -extern const bool __static_condition_default_2059; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_367; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_2070; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_907; +extern const bool __static_condition_default_696; +extern const bool __static_condition_default_466; +extern const bool __static_condition_default_525; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_460; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_925; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_418; +extern const bool __static_condition_default_445; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_927; +extern const bool __static_condition_default_1128; +extern const bool __static_condition_default_1134; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_462; +extern const bool __static_condition_default_1136; +extern const bool __static_condition_default_258; extern const bool __static_condition_default_267; -extern const bool __static_condition_default_638; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_842; -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_887; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_347; -extern const bool __static_condition_default_313; -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_2047; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_2083; -extern const bool __static_condition_default_76; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_2052; -extern const bool __static_condition_default_248; -extern const bool __static_condition_default_2051; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_187; +extern const bool __static_condition_default_467; +extern const bool __static_condition_default_476; extern const bool __static_condition_default_541; -extern const bool __static_condition_default_848; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_2079; -extern const bool __static_condition_default_438; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_894; -extern const bool __static_condition_default_590; -extern const bool __static_condition_default_2040; -extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_382; -extern const bool __static_condition_default_693; -extern const bool __static_condition_default_2055; -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_875; -extern const bool __static_condition_default_1459; -extern const bool __static_condition_default_670; -extern const bool __static_condition_default_657; +extern const bool __static_condition_default_540; +extern const bool __static_condition_default_587; +extern const bool __static_condition_default_513; +extern const bool __static_condition_default_423; +extern const bool __static_condition_default_1126; extern const bool __static_condition_default_311; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_2091; -extern const bool __static_condition_default_1572; -extern const bool __static_condition_default_2086; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_2054; -extern const bool __static_condition_default_568; -extern const bool __static_condition_default_1361; -extern const bool __static_condition_default_793; -extern const bool __static_condition_default_1498; -extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_1774; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_512; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_431; -extern const bool __static_condition_default_963; -extern const bool __static_condition_default_709; -extern const bool __static_condition_default_333; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_1159; -extern const bool __static_condition_default_2075; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_1391; -extern const bool __static_condition_default_2094; -extern const bool __static_condition_default_1398; -extern const bool __static_condition_default_1420; -extern const bool __static_condition_default_2109; -extern const bool __static_condition_default_290; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_536; -extern const bool __static_condition_default_632; -extern const bool __static_condition_default_2068; -extern const bool __static_condition_default_1424; -extern const bool __static_condition_default_1749; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_611; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_468; +extern const bool __static_condition_default_886; +extern const bool __static_condition_default_563; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_414; +extern const bool __static_condition_default_720; +extern const bool __static_condition_default_565; +extern const bool __static_condition_default_725; +extern const bool __static_condition_default_401; +extern const bool __static_condition_default_557; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_950; +extern const bool __static_condition_default_1138; +extern const bool __static_condition_default_1131; +extern const bool __static_condition_default_584; +extern const bool __static_condition_default_1123; extern const bool __static_condition_default_204; -extern const bool __static_condition_default_402; -extern const bool __static_condition_default_1152; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_2073; -extern const bool __static_condition_default_2107; -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_2096; -extern const bool __static_condition_default_1475; -extern const bool __static_condition_default_2115; -extern const bool __static_condition_default_549; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_1388; -extern const bool __static_condition_default_2093; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_1814; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_2067; -extern const bool __static_condition_default_787; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_412; -extern const bool __static_condition_default_317; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_357; -extern const bool __static_condition_default_955; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_646; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_1165; -extern const bool __static_condition_default_419; -extern const bool __static_condition_default_2077; +extern const bool __static_condition_default_1140; +extern const bool __static_condition_default_532; +extern const bool __static_condition_default_1117; +extern const bool __static_condition_default_447; extern const bool __static_condition_default_685; -extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_891; -extern const bool __static_condition_default_1564; -extern const bool __static_condition_default_1785; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_2080; -extern const bool __static_condition_default_1458; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_521; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_1365; -extern const bool __static_condition_default_2074; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_1556; -extern const bool __static_condition_default_408; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_1576; -extern const bool __static_condition_default_2078; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_761; -extern const bool __static_condition_default_1944; -extern const bool __static_condition_default_2118; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_2084; -extern const bool __static_condition_default_583; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_187; -extern const bool __static_condition_default_803; -extern const bool __static_condition_default_2046; -extern const bool __static_condition_default_1531; -extern const bool __static_condition_default_388; -extern const bool __static_condition_default_2100; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_559; -extern const bool __static_condition_default_1568; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_1349; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_2066; -extern const bool __static_condition_default_1816; -extern const bool __static_condition_default_1385; -extern const bool __static_condition_default_246; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_474; +extern const bool __static_condition_default_379; +extern const bool __static_condition_default_435; +extern const bool __static_condition_default_656; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_909; +extern const bool __static_condition_default_421; +extern const bool __static_condition_default_291; +extern const bool __static_condition_default_173; extern const bool __static_condition_default_210; -extern const bool __static_condition_default_1381; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_1532; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_1750; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_2102; -extern const bool __static_condition_default_1485; +extern const bool __static_condition_default_698; +extern const bool __static_condition_default_372; +extern const bool __static_condition_default_483; +extern const bool __static_condition_default_576; +extern const bool __static_condition_default_705; +extern const bool __static_condition_default_477; +extern const bool __static_condition_default_575; +extern const bool __static_condition_default_553; extern const bool __static_condition_default_250; -extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_2071; -extern const bool __static_condition_default_957; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_1791; -extern const bool __static_condition_default_1489; -extern const bool __static_condition_default_1373; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_1405; -extern const bool __static_condition_default_488; -extern const bool __static_condition_default_1808; -extern const bool __static_condition_default_2065; -extern const bool __static_condition_default_1560; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_2097; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_2062; -extern const bool __static_condition_default_929; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_2103; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_686; +extern const bool __static_condition_default_547; extern const bool __static_condition_default_337; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_1516; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_2106; -extern const bool __static_condition_default_2112; -extern const bool __static_condition_default_1775; -extern const bool __static_condition_default_198; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_2108; -extern const bool __static_condition_default_217; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_380; -extern const bool __static_condition_default_2099; -extern const bool __static_condition_default_858; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_753; -extern const bool __static_condition_default_846; -extern const bool __static_condition_default_1353; -extern const bool __static_condition_default_1357; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_1369; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_956; -extern const bool __static_condition_default_2105; -extern const bool __static_condition_default_677; -extern const bool __static_condition_default_1315; -extern const bool __static_condition_default_2063; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_2082; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_393; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_2053; -extern const bool __static_condition_default_2061; -extern const bool __static_condition_default_2064; -extern const bool __static_condition_default_2092; -extern const bool __static_condition_default_1776; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_2081; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_1552; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_1395; -extern const bool __static_condition_default_543; -extern const bool __static_condition_default_779; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_2101; +extern const bool __static_condition_default_403; +extern const bool __static_condition_default_488; +extern const bool __static_condition_default_463; +extern const bool __static_condition_default_1112; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -519,642 +331,229 @@ __static_renaming("___IO_seekpos_272", "_IO_seekpos"); __static_renaming("___IO_seekpos_273", "_IO_seekpos"); __static_renaming("___IO_free_backup_area_276", "_IO_free_backup_area"); __static_renaming("___IO_free_backup_area_277", "_IO_free_backup_area"); -__static_renaming("__va_list_279", "va_list"); -__static_renaming("__off_t_281", "off_t"); -__static_renaming("__off_t_283", "off_t"); -__static_renaming("__ssize_t_285", "ssize_t"); -__static_renaming("__fpos_t_287", "fpos_t"); -__static_renaming("__fpos_t_289", "fpos_t"); -__static_renaming("__stdin_291", "stdin"); -__static_renaming("__stdin_292", "stdin"); -__static_renaming("__stdout_294", "stdout"); -__static_renaming("__stdout_295", "stdout"); -__static_renaming("__stderr_297", "stderr"); -__static_renaming("__stderr_298", "stderr"); -__static_renaming("__remove_301", "remove"); -__static_renaming("__rename_304", "rename"); -__static_renaming("__renameat_309", "renameat"); -__static_renaming("__tmpfile_310", "tmpfile"); -__static_renaming("__tmpfile_312", "tmpfile"); -__static_renaming("__tmpfile_314", "tmpfile"); -__static_renaming("__tmpfile_316", "tmpfile"); -__static_renaming("__tmpnam_319", "tmpnam"); -__static_renaming("__tmpnam_320", "tmpnam"); -__static_renaming("__tmpnam_r_322", "tmpnam_r"); -__static_renaming("__tmpnam_r_323", "tmpnam_r"); -__static_renaming("__tempnam_326", "tempnam"); -__static_renaming("__tempnam_327", "tempnam"); -__static_renaming("__fclose_330", "fclose"); -__static_renaming("__fclose_332", "fclose"); -__static_renaming("__fflush_336", "fflush"); -__static_renaming("__fflush_unlocked_340", "fflush_unlocked"); -__static_renaming("__fopen_344", "fopen"); -__static_renaming("__fopen_346", "fopen"); -__static_renaming("__fopen_354", "fopen"); -__static_renaming("__fopen_356", "fopen"); -__static_renaming("__freopen_362", "freopen"); -__static_renaming("__freopen_364", "freopen"); -__static_renaming("__freopen_366", "freopen"); -__static_renaming("__freopen_368", "freopen"); -__static_renaming("__fdopen_372", "fdopen"); -__static_renaming("__fdopen_374", "fdopen"); -__static_renaming("__fmemopen_379", "fmemopen"); -__static_renaming("__fmemopen_381", "fmemopen"); -__static_renaming("__open_memstream_385", "open_memstream"); -__static_renaming("__open_memstream_387", "open_memstream"); -__static_renaming("__setbuf_392", "setbuf"); -__static_renaming("__setbuf_394", "setbuf"); -__static_renaming("__setvbuf_401", "setvbuf"); -__static_renaming("__setbuffer_407", "setbuffer"); -__static_renaming("__setlinebuf_411", "setlinebuf"); -__static_renaming("__fprintf_416", "fprintf"); -__static_renaming("__fprintf_418", "fprintf"); -__static_renaming("__printf_421", "printf"); -__static_renaming("__sprintf_424", "sprintf"); -__static_renaming("__vfprintf_430", "vfprintf"); -__static_renaming("__vprintf_437", "vprintf"); -__static_renaming("__vsprintf_443", "vsprintf"); -__static_renaming("__snprintf_448", "snprintf"); -__static_renaming("__vsnprintf_454", "vsnprintf"); -__static_renaming("__vdprintf_460", "vdprintf"); -__static_renaming("__dprintf_464", "dprintf"); -__static_renaming("__fscanf_468", "fscanf"); -__static_renaming("__fscanf_470", "fscanf"); -__static_renaming("__fscanf_472", "fscanf"); -__static_renaming("__fscanf_474", "fscanf"); -__static_renaming("__scanf_477", "scanf"); -__static_renaming("__scanf_478", "scanf"); -__static_renaming("__sscanf_481", "sscanf"); -__static_renaming("__vfscanf_509", "vfscanf"); -__static_renaming("__vfscanf_513", "vfscanf"); -__static_renaming("__vscanf_520", "vscanf"); -__static_renaming("__vscanf_522", "vscanf"); -__static_renaming("__vsscanf_528", "vsscanf"); -__static_renaming("__fgetc_563", "fgetc"); -__static_renaming("__getc_567", "getc"); -__static_renaming("__getchar_569", "getchar"); -__static_renaming("__getc_unlocked_572", "getc_unlocked"); -__static_renaming("__getchar_unlocked_574", "getchar_unlocked"); -__static_renaming("__fgetc_unlocked_577", "fgetc_unlocked"); -__static_renaming("__fputc_582", "fputc"); -__static_renaming("__fputc_584", "fputc"); -__static_renaming("__putc_589", "putc"); -__static_renaming("__putchar_592", "putchar"); -__static_renaming("__fputc_unlocked_596", "fputc_unlocked"); -__static_renaming("__putc_unlocked_601", "putc_unlocked"); -__static_renaming("__putchar_unlocked_604", "putchar_unlocked"); -__static_renaming("__getw_607", "getw"); -__static_renaming("__putw_612", "putw"); -__static_renaming("__fgets_618", "fgets"); -__static_renaming("__fgets_620", "fgets"); -__static_renaming("__fgets_622", "fgets"); -__static_renaming("__fgets_624", "fgets"); -__static_renaming("____getdelim_631", "__getdelim"); -__static_renaming("____getdelim_635", "__getdelim"); -__static_renaming("__getdelim_644", "getdelim"); -__static_renaming("__getdelim_648", "getdelim"); -__static_renaming("__getline_656", "getline"); -__static_renaming("__getline_660", "getline"); -__static_renaming("__fputs_667", "fputs"); -__static_renaming("__fputs_669", "fputs"); -__static_renaming("__puts_672", "puts"); -__static_renaming("__ungetc_676", "ungetc"); -__static_renaming("__fseek_714", "fseek"); -__static_renaming("__fseek_716", "fseek"); -__static_renaming("__ftell_720", "ftell"); -__static_renaming("__ftell_722", "ftell"); -__static_renaming("__rewind_726", "rewind"); -__static_renaming("__fseeko_733", "fseeko"); -__static_renaming("__fseeko_744", "fseeko"); -__static_renaming("__ftello_750", "ftello"); -__static_renaming("__ftello_754", "ftello"); -__static_renaming("__ftello_758", "ftello"); -__static_renaming("__fgetpos_766", "fgetpos"); -__static_renaming("__fgetpos_778", "fgetpos"); -__static_renaming("__fsetpos_786", "fsetpos"); -__static_renaming("__fsetpos_790", "fsetpos"); -__static_renaming("__clearerr_796", "clearerr"); -__static_renaming("__feof_800", "feof"); -__static_renaming("__feof_802", "feof"); -__static_renaming("__ferror_806", "ferror"); -__static_renaming("__ferror_808", "ferror"); -__static_renaming("__clearerr_unlocked_812", "clearerr_unlocked"); -__static_renaming("__feof_unlocked_816", "feof_unlocked"); -__static_renaming("__feof_unlocked_818", "feof_unlocked"); -__static_renaming("__ferror_unlocked_822", "ferror_unlocked"); -__static_renaming("__ferror_unlocked_824", "ferror_unlocked"); -__static_renaming("__perror_827", "perror"); -__static_renaming("__perror_828", "perror"); -__static_renaming("__sys_nerr_829", "sys_nerr"); -__static_renaming("__sys_errlist_830", "sys_errlist"); -__static_renaming("__fileno_833", "fileno"); -__static_renaming("__fileno_835", "fileno"); -__static_renaming("__fileno_unlocked_839", "fileno_unlocked"); -__static_renaming("__fileno_unlocked_841", "fileno_unlocked"); -__static_renaming("__popen_845", "popen"); -__static_renaming("__popen_847", "popen"); -__static_renaming("__pclose_851", "pclose"); -__static_renaming("__ctermid_854", "ctermid"); -__static_renaming("__flockfile_857", "flockfile"); -__static_renaming("__ftrylockfile_861", "ftrylockfile"); -__static_renaming("__ftrylockfile_863", "ftrylockfile"); -__static_renaming("__funlockfile_867", "funlockfile"); -__static_renaming("____sprintf_chk_899", "__sprintf_chk"); -__static_renaming("____vsprintf_chk_906", "__vsprintf_chk"); -__static_renaming("____snprintf_chk_920", "__snprintf_chk"); -__static_renaming("____vsnprintf_chk_928", "__vsnprintf_chk"); -__static_renaming("____fprintf_chk_943", "__fprintf_chk"); -__static_renaming("____printf_chk_947", "__printf_chk"); -__static_renaming("____vfprintf_chk_954", "__vfprintf_chk"); -__static_renaming("____vprintf_chk_962", "__vprintf_chk"); -__static_renaming("____dprintf_chk_984", "__dprintf_chk"); -__static_renaming("____vdprintf_chk_990", "__vdprintf_chk"); -__static_renaming("____fgets_chk_1004", "__fgets_chk"); -__static_renaming("____fgets_chk_1006", "__fgets_chk"); -__static_renaming("____fgets_chk_1008", "__fgets_chk"); -__static_renaming("____fgets_alias_1014", "__fgets_alias"); -__static_renaming("____fgets_chk_warn_1021", "__fgets_chk_warn"); -__static_renaming("____cnt_1087", "__cnt"); -__static_renaming("____cptr_1088", "__cptr"); -__static_renaming("__ptrdiff_t_1092", "ptrdiff_t"); -__static_renaming("__size_t_1093", "size_t"); -__static_renaming("__wchar_t_1094", "wchar_t"); -__static_renaming("__idtype_t_1100", "idtype_t"); -__static_renaming("____u_char_1101", "__u_char"); -__static_renaming("____u_short_1102", "__u_short"); -__static_renaming("____u_int_1103", "__u_int"); -__static_renaming("____u_long_1104", "__u_long"); -__static_renaming("____int8_t_1105", "__int8_t"); -__static_renaming("____uint8_t_1106", "__uint8_t"); -__static_renaming("____int16_t_1107", "__int16_t"); -__static_renaming("____uint16_t_1108", "__uint16_t"); -__static_renaming("____int32_t_1109", "__int32_t"); -__static_renaming("____uint32_t_1110", "__uint32_t"); -__static_renaming("____int64_t_1111", "__int64_t"); -__static_renaming("____uint64_t_1112", "__uint64_t"); -__static_renaming("____quad_t_1113", "__quad_t"); -__static_renaming("____u_quad_t_1114", "__u_quad_t"); -__static_renaming("____dev_t_1115", "__dev_t"); -__static_renaming("____uid_t_1116", "__uid_t"); -__static_renaming("____gid_t_1117", "__gid_t"); -__static_renaming("____ino_t_1118", "__ino_t"); -__static_renaming("____ino64_t_1119", "__ino64_t"); -__static_renaming("____mode_t_1120", "__mode_t"); -__static_renaming("____nlink_t_1121", "__nlink_t"); -__static_renaming("____off_t_1122", "__off_t"); -__static_renaming("____off64_t_1123", "__off64_t"); -__static_renaming("____pid_t_1124", "__pid_t"); -__static_renaming("____fsid_t_1128", "__fsid_t"); -__static_renaming("____clock_t_1129", "__clock_t"); -__static_renaming("____rlim_t_1130", "__rlim_t"); -__static_renaming("____rlim64_t_1131", "__rlim64_t"); -__static_renaming("____id_t_1132", "__id_t"); -__static_renaming("____time_t_1133", "__time_t"); -__static_renaming("____useconds_t_1134", "__useconds_t"); -__static_renaming("____suseconds_t_1135", "__suseconds_t"); -__static_renaming("____daddr_t_1136", "__daddr_t"); -__static_renaming("____key_t_1137", "__key_t"); -__static_renaming("____clockid_t_1138", "__clockid_t"); -__static_renaming("____timer_t_1139", "__timer_t"); -__static_renaming("____blksize_t_1140", "__blksize_t"); -__static_renaming("____blkcnt_t_1141", "__blkcnt_t"); -__static_renaming("____blkcnt64_t_1142", "__blkcnt64_t"); -__static_renaming("____fsblkcnt_t_1143", "__fsblkcnt_t"); -__static_renaming("____fsblkcnt64_t_1144", "__fsblkcnt64_t"); -__static_renaming("____fsfilcnt_t_1145", "__fsfilcnt_t"); -__static_renaming("____fsfilcnt64_t_1146", "__fsfilcnt64_t"); -__static_renaming("____fsword_t_1147", "__fsword_t"); -__static_renaming("____ssize_t_1148", "__ssize_t"); -__static_renaming("____syscall_slong_t_1149", "__syscall_slong_t"); -__static_renaming("____syscall_ulong_t_1150", "__syscall_ulong_t"); -__static_renaming("____loff_t_1151", "__loff_t"); -__static_renaming("____qaddr_t_1153", "__qaddr_t"); -__static_renaming("____caddr_t_1154", "__caddr_t"); -__static_renaming("____intptr_t_1155", "__intptr_t"); -__static_renaming("____socklen_t_1156", "__socklen_t"); -__static_renaming("____bswap_32_1158", "__bswap_32"); -__static_renaming("____bswap_64_1162", "__bswap_64"); -__static_renaming("____bswap_64_1163", "__bswap_64"); -__static_renaming("____WAIT_STATUS_1185", "__WAIT_STATUS"); -__static_renaming("__div_t_1190", "div_t"); -__static_renaming("__ldiv_t_1195", "ldiv_t"); -__static_renaming("__lldiv_t_1200", "lldiv_t"); -__static_renaming("____ctype_get_mb_cur_max_1201", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1202", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1203", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1204", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1205", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1206", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1207", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1208", "__ctype_get_mb_cur_max"); -__static_renaming("__atof_1210", "atof"); -__static_renaming("__atof_1211", "atof"); -__static_renaming("__atoi_1213", "atoi"); -__static_renaming("__atoi_1214", "atoi"); -__static_renaming("__atol_1216", "atol"); -__static_renaming("__atol_1217", "atol"); -__static_renaming("__atoll_1219", "atoll"); -__static_renaming("__atoll_1220", "atoll"); -__static_renaming("__strtod_1223", "strtod"); -__static_renaming("__strtof_1226", "strtof"); -__static_renaming("__strtold_1229", "strtold"); -__static_renaming("__strtol_1233", "strtol"); -__static_renaming("__strtoul_1237", "strtoul"); -__static_renaming("__strtoq_1241", "strtoq"); -__static_renaming("__strtouq_1245", "strtouq"); -__static_renaming("__strtoll_1249", "strtoll"); -__static_renaming("__strtoll_1250", "strtoll"); -__static_renaming("__strtoull_1254", "strtoull"); -__static_renaming("__l64a_1259", "l64a"); -__static_renaming("__l64a_1260", "l64a"); -__static_renaming("__a64l_1262", "a64l"); -__static_renaming("__a64l_1263", "a64l"); -__static_renaming("____u_char_1264", "__u_char"); -__static_renaming("____u_short_1265", "__u_short"); -__static_renaming("____u_int_1266", "__u_int"); -__static_renaming("____u_long_1267", "__u_long"); -__static_renaming("____int8_t_1268", "__int8_t"); -__static_renaming("____uint8_t_1269", "__uint8_t"); -__static_renaming("____int16_t_1270", "__int16_t"); -__static_renaming("____uint16_t_1271", "__uint16_t"); -__static_renaming("____int32_t_1272", "__int32_t"); -__static_renaming("____uint32_t_1273", "__uint32_t"); -__static_renaming("____int64_t_1274", "__int64_t"); -__static_renaming("____uint64_t_1275", "__uint64_t"); -__static_renaming("____quad_t_1276", "__quad_t"); -__static_renaming("____u_quad_t_1277", "__u_quad_t"); -__static_renaming("____dev_t_1278", "__dev_t"); -__static_renaming("____uid_t_1279", "__uid_t"); -__static_renaming("____gid_t_1280", "__gid_t"); -__static_renaming("____ino_t_1281", "__ino_t"); -__static_renaming("____ino64_t_1282", "__ino64_t"); -__static_renaming("____mode_t_1283", "__mode_t"); -__static_renaming("____nlink_t_1284", "__nlink_t"); -__static_renaming("____off_t_1285", "__off_t"); -__static_renaming("____off64_t_1286", "__off64_t"); -__static_renaming("____pid_t_1287", "__pid_t"); -__static_renaming("____fsid_t_1291", "__fsid_t"); -__static_renaming("____clock_t_1292", "__clock_t"); -__static_renaming("____rlim_t_1293", "__rlim_t"); -__static_renaming("____rlim64_t_1294", "__rlim64_t"); -__static_renaming("____id_t_1295", "__id_t"); -__static_renaming("____time_t_1296", "__time_t"); -__static_renaming("____useconds_t_1297", "__useconds_t"); -__static_renaming("____suseconds_t_1298", "__suseconds_t"); -__static_renaming("____daddr_t_1299", "__daddr_t"); -__static_renaming("____key_t_1300", "__key_t"); -__static_renaming("____clockid_t_1301", "__clockid_t"); -__static_renaming("____timer_t_1302", "__timer_t"); -__static_renaming("____blksize_t_1303", "__blksize_t"); -__static_renaming("____blkcnt_t_1304", "__blkcnt_t"); -__static_renaming("____blkcnt64_t_1305", "__blkcnt64_t"); -__static_renaming("____fsblkcnt_t_1306", "__fsblkcnt_t"); -__static_renaming("____fsblkcnt64_t_1307", "__fsblkcnt64_t"); -__static_renaming("____fsfilcnt_t_1308", "__fsfilcnt_t"); -__static_renaming("____fsfilcnt64_t_1309", "__fsfilcnt64_t"); -__static_renaming("____fsword_t_1310", "__fsword_t"); -__static_renaming("____ssize_t_1311", "__ssize_t"); -__static_renaming("____syscall_slong_t_1312", "__syscall_slong_t"); -__static_renaming("____syscall_ulong_t_1313", "__syscall_ulong_t"); -__static_renaming("____loff_t_1314", "__loff_t"); -__static_renaming("____qaddr_t_1316", "__qaddr_t"); -__static_renaming("____caddr_t_1317", "__caddr_t"); -__static_renaming("____intptr_t_1318", "__intptr_t"); -__static_renaming("____socklen_t_1319", "__socklen_t"); -__static_renaming("__u_char_1320", "u_char"); -__static_renaming("__u_char_1321", "u_char"); -__static_renaming("__u_char_1322", "u_char"); -__static_renaming("__u_short_1323", "u_short"); -__static_renaming("__u_short_1324", "u_short"); -__static_renaming("__u_short_1325", "u_short"); -__static_renaming("__u_int_1326", "u_int"); -__static_renaming("__u_int_1327", "u_int"); -__static_renaming("__u_int_1328", "u_int"); -__static_renaming("__u_long_1329", "u_long"); -__static_renaming("__u_long_1330", "u_long"); -__static_renaming("__u_long_1331", "u_long"); -__static_renaming("__quad_t_1332", "quad_t"); -__static_renaming("__quad_t_1333", "quad_t"); -__static_renaming("__quad_t_1334", "quad_t"); -__static_renaming("__u_quad_t_1335", "u_quad_t"); -__static_renaming("__u_quad_t_1336", "u_quad_t"); -__static_renaming("__u_quad_t_1337", "u_quad_t"); -__static_renaming("__fsid_t_1338", "fsid_t"); -__static_renaming("__fsid_t_1339", "fsid_t"); -__static_renaming("__fsid_t_1340", "fsid_t"); -__static_renaming("__loff_t_1342", "loff_t"); -__static_renaming("__loff_t_1343", "loff_t"); -__static_renaming("__loff_t_1344", "loff_t"); -__static_renaming("__loff_t_1346", "loff_t"); -__static_renaming("__loff_t_1347", "loff_t"); -__static_renaming("__loff_t_1348", "loff_t"); -__static_renaming("__ino_t_1350", "ino_t"); -__static_renaming("__ino_t_1351", "ino_t"); -__static_renaming("__ino_t_1352", "ino_t"); -__static_renaming("__ino_t_1354", "ino_t"); -__static_renaming("__ino_t_1355", "ino_t"); -__static_renaming("__ino_t_1356", "ino_t"); -__static_renaming("__dev_t_1358", "dev_t"); -__static_renaming("__dev_t_1359", "dev_t"); -__static_renaming("__dev_t_1360", "dev_t"); -__static_renaming("__gid_t_1362", "gid_t"); -__static_renaming("__gid_t_1363", "gid_t"); -__static_renaming("__gid_t_1364", "gid_t"); -__static_renaming("__gid_t_1366", "gid_t"); -__static_renaming("__gid_t_1367", "gid_t"); -__static_renaming("__gid_t_1368", "gid_t"); -__static_renaming("__mode_t_1370", "mode_t"); -__static_renaming("__mode_t_1371", "mode_t"); -__static_renaming("__mode_t_1372", "mode_t"); -__static_renaming("__nlink_t_1374", "nlink_t"); -__static_renaming("__nlink_t_1375", "nlink_t"); -__static_renaming("__nlink_t_1376", "nlink_t"); -__static_renaming("__uid_t_1378", "uid_t"); -__static_renaming("__uid_t_1379", "uid_t"); -__static_renaming("__uid_t_1380", "uid_t"); -__static_renaming("__uid_t_1382", "uid_t"); -__static_renaming("__uid_t_1383", "uid_t"); -__static_renaming("__uid_t_1384", "uid_t"); -__static_renaming("__off_t_1386", "off_t"); -__static_renaming("__off_t_1387", "off_t"); -__static_renaming("__off_t_1389", "off_t"); -__static_renaming("__off_t_1390", "off_t"); -__static_renaming("__pid_t_1392", "pid_t"); -__static_renaming("__pid_t_1393", "pid_t"); -__static_renaming("__pid_t_1394", "pid_t"); -__static_renaming("__pid_t_1396", "pid_t"); -__static_renaming("__pid_t_1397", "pid_t"); -__static_renaming("__id_t_1399", "id_t"); -__static_renaming("__id_t_1400", "id_t"); -__static_renaming("__id_t_1401", "id_t"); -__static_renaming("__ssize_t_1403", "ssize_t"); -__static_renaming("__ssize_t_1404", "ssize_t"); -__static_renaming("__daddr_t_1406", "daddr_t"); -__static_renaming("__daddr_t_1407", "daddr_t"); -__static_renaming("__daddr_t_1408", "daddr_t"); -__static_renaming("__caddr_t_1410", "caddr_t"); -__static_renaming("__caddr_t_1411", "caddr_t"); -__static_renaming("__caddr_t_1412", "caddr_t"); -__static_renaming("__key_t_1413", "key_t"); -__static_renaming("__key_t_1414", "key_t"); -__static_renaming("__key_t_1415", "key_t"); -__static_renaming("__key_t_1417", "key_t"); -__static_renaming("__key_t_1418", "key_t"); -__static_renaming("__key_t_1419", "key_t"); -__static_renaming("__clock_t_1421", "clock_t"); -__static_renaming("__clock_t_1422", "clock_t"); -__static_renaming("__clock_t_1423", "clock_t"); -__static_renaming("__time_t_1425", "time_t"); -__static_renaming("__time_t_1426", "time_t"); -__static_renaming("__time_t_1427", "time_t"); -__static_renaming("__clockid_t_1429", "clockid_t"); -__static_renaming("__clockid_t_1430", "clockid_t"); -__static_renaming("__clockid_t_1431", "clockid_t"); -__static_renaming("__timer_t_1433", "timer_t"); -__static_renaming("__timer_t_1434", "timer_t"); -__static_renaming("__timer_t_1435", "timer_t"); -__static_renaming("__ulong_1437", "ulong"); -__static_renaming("__ulong_1438", "ulong"); -__static_renaming("__ulong_1439", "ulong"); -__static_renaming("__ushort_1440", "ushort"); -__static_renaming("__uint_1441", "uint"); -__static_renaming("__int8_t_1442", "int8_t"); -__static_renaming("__int16_t_1443", "int16_t"); -__static_renaming("__int32_t_1444", "int32_t"); -__static_renaming("__int64_t_1445", "int64_t"); -__static_renaming("__u_int8_t_1446", "u_int8_t"); -__static_renaming("__u_int16_t_1447", "u_int16_t"); -__static_renaming("__u_int32_t_1448", "u_int32_t"); -__static_renaming("__u_int64_t_1449", "u_int64_t"); -__static_renaming("__register_t_1450", "register_t"); -__static_renaming("____bswap_32_1452", "__bswap_32"); -__static_renaming("____bswap_64_1456", "__bswap_64"); -__static_renaming("____bswap_64_1457", "__bswap_64"); -__static_renaming("____sig_atomic_t_1460", "__sig_atomic_t"); -__static_renaming("____sigset_t_1464", "__sigset_t"); -__static_renaming("__sigset_t_1465", "sigset_t"); -__static_renaming("__suseconds_t_1486", "suseconds_t"); -__static_renaming("__suseconds_t_1487", "suseconds_t"); -__static_renaming("__suseconds_t_1488", "suseconds_t"); -__static_renaming("____fd_mask_1490", "__fd_mask"); -__static_renaming("____fd_mask_1491", "__fd_mask"); -__static_renaming("__fd_set_1499", "fd_set"); -__static_renaming("__fd_mask_1500", "fd_mask"); -__static_renaming("__fd_mask_1501", "fd_mask"); -__static_renaming("__select_1513", "select"); -__static_renaming("__select_1514", "select"); -__static_renaming("__pselect_1529", "pselect"); -__static_renaming("__pselect_1530", "pselect"); -__static_renaming("____fdelt_chk_1534", "__fdelt_chk"); -__static_renaming("____fdelt_warn_1536", "__fdelt_warn"); -__static_renaming("__gnu_dev_major_1538", "gnu_dev_major"); -__static_renaming("__gnu_dev_major_1539", "gnu_dev_major"); -__static_renaming("__gnu_dev_minor_1541", "gnu_dev_minor"); -__static_renaming("__gnu_dev_makedev_1544", "gnu_dev_makedev"); -__static_renaming("__blksize_t_1549", "blksize_t"); -__static_renaming("__blksize_t_1550", "blksize_t"); -__static_renaming("__blksize_t_1551", "blksize_t"); -__static_renaming("__blkcnt_t_1553", "blkcnt_t"); -__static_renaming("__blkcnt_t_1554", "blkcnt_t"); -__static_renaming("__blkcnt_t_1555", "blkcnt_t"); -__static_renaming("__fsblkcnt_t_1557", "fsblkcnt_t"); -__static_renaming("__fsblkcnt_t_1558", "fsblkcnt_t"); -__static_renaming("__fsblkcnt_t_1559", "fsblkcnt_t"); -__static_renaming("__blkcnt_t_1561", "blkcnt_t"); -__static_renaming("__blkcnt_t_1562", "blkcnt_t"); -__static_renaming("__blkcnt_t_1563", "blkcnt_t"); -__static_renaming("__fsblkcnt_t_1565", "fsblkcnt_t"); -__static_renaming("__fsblkcnt_t_1566", "fsblkcnt_t"); -__static_renaming("__fsblkcnt_t_1567", "fsblkcnt_t"); -__static_renaming("__fsfilcnt_t_1569", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_1570", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_1571", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_1573", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_1574", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_1575", "fsfilcnt_t"); -__static_renaming("__pthread_t_1577", "pthread_t"); -__static_renaming("__pthread_attr_t_1581", "pthread_attr_t"); -__static_renaming("____pthread_list_t_1586", "__pthread_list_t"); -__static_renaming("____pthread_list_t_1587", "__pthread_list_t"); -__static_renaming("__pthread_mutex_t_1603", "pthread_mutex_t"); -__static_renaming("__pthread_mutexattr_t_1608", "pthread_mutexattr_t"); -__static_renaming("__rand_1609", "rand"); -__static_renaming("__srand_1611", "srand"); -__static_renaming("__rand_r_1613", "rand_r"); -__static_renaming("__drand48_1614", "drand48"); -__static_renaming("__erand48_1616", "erand48"); -__static_renaming("__lrand48_1617", "lrand48"); -__static_renaming("__nrand48_1619", "nrand48"); -__static_renaming("__mrand48_1620", "mrand48"); -__static_renaming("__jrand48_1622", "jrand48"); -__static_renaming("__srand48_1624", "srand48"); -__static_renaming("__seed48_1626", "seed48"); -__static_renaming("__lcong48_1628", "lcong48"); -__static_renaming("__malloc_1631", "malloc"); -__static_renaming("__malloc_1632", "malloc"); -__static_renaming("__malloc_1633", "malloc"); -__static_renaming("__malloc_1634", "malloc"); -__static_renaming("__calloc_1639", "calloc"); -__static_renaming("__calloc_1640", "calloc"); -__static_renaming("__calloc_1641", "calloc"); -__static_renaming("__calloc_1642", "calloc"); -__static_renaming("__realloc_1646", "realloc"); -__static_renaming("__realloc_1647", "realloc"); -__static_renaming("__free_1649", "free"); -__static_renaming("__cfree_1651", "cfree"); -__static_renaming("__alloca_1654", "alloca"); -__static_renaming("__alloca_1655", "alloca"); -__static_renaming("__valloc_1658", "valloc"); -__static_renaming("__valloc_1659", "valloc"); -__static_renaming("__valloc_1660", "valloc"); -__static_renaming("__valloc_1661", "valloc"); -__static_renaming("__posix_memalign_1667", "posix_memalign"); -__static_renaming("__posix_memalign_1668", "posix_memalign"); -__static_renaming("__posix_memalign_1669", "posix_memalign"); -__static_renaming("__posix_memalign_1670", "posix_memalign"); -__static_renaming("__aligned_alloc_1675", "aligned_alloc"); -__static_renaming("__aligned_alloc_1676", "aligned_alloc"); -__static_renaming("__aligned_alloc_1677", "aligned_alloc"); -__static_renaming("__aligned_alloc_1678", "aligned_alloc"); -__static_renaming("__aligned_alloc_1679", "aligned_alloc"); -__static_renaming("__aligned_alloc_1680", "aligned_alloc"); -__static_renaming("__aligned_alloc_1681", "aligned_alloc"); -__static_renaming("__aligned_alloc_1682", "aligned_alloc"); -__static_renaming("__abort_1683", "abort"); -__static_renaming("__atexit_1685", "atexit"); -__static_renaming("__at_quick_exit_1687", "at_quick_exit"); -__static_renaming("__on_exit_1692", "on_exit"); -__static_renaming("__exit_1694", "exit"); -__static_renaming("__exit_1695", "exit"); -__static_renaming("__quick_exit_1697", "quick_exit"); -__static_renaming("___Exit_1699", "_Exit"); -__static_renaming("__getenv_1701", "getenv"); -__static_renaming("__getenv_1702", "getenv"); -__static_renaming("__putenv_1704", "putenv"); -__static_renaming("__setenv_1708", "setenv"); -__static_renaming("__unsetenv_1710", "unsetenv"); -__static_renaming("__clearenv_1711", "clearenv"); -__static_renaming("__mktemp_1713", "mktemp"); -__static_renaming("__mkstemp_1716", "mkstemp"); -__static_renaming("__mkstemp_1717", "mkstemp"); -__static_renaming("__mkstemp_1718", "mkstemp"); -__static_renaming("__mkstemp_1719", "mkstemp"); -__static_renaming("__mkstemps_1724", "mkstemps"); -__static_renaming("__mkstemps_1725", "mkstemps"); -__static_renaming("__mkstemps_1726", "mkstemps"); -__static_renaming("__mkstemps_1727", "mkstemps"); -__static_renaming("__mkdtemp_1729", "mkdtemp"); -__static_renaming("__mkdtemp_1730", "mkdtemp"); -__static_renaming("__system_1732", "system"); -__static_renaming("__system_1733", "system"); -__static_renaming("__system_1734", "system"); -__static_renaming("__system_1735", "system"); -__static_renaming("__realpath_1738", "realpath"); -__static_renaming("__realpath_1739", "realpath"); -__static_renaming("____compar_fn_t_1740", "__compar_fn_t"); -__static_renaming("__bsearch_1751", "bsearch"); -__static_renaming("__bsearch_1752", "bsearch"); -__static_renaming("__bsearch_1755", "bsearch"); -__static_renaming("__bsearch_1756", "bsearch"); -__static_renaming("____l_1765", "__l"); -__static_renaming("____l_1766", "__l"); -__static_renaming("____u_1767", "__u"); -__static_renaming("____u_1768", "__u"); -__static_renaming("____idx_1769", "__idx"); -__static_renaming("____idx_1770", "__idx"); -__static_renaming("____p_1771", "__p"); -__static_renaming("____comparison_1772", "__comparison"); -__static_renaming("__qsort_1784", "qsort"); -__static_renaming("__qsort_1786", "qsort"); -__static_renaming("__qsort_1788", "qsort"); -__static_renaming("__qsort_1790", "qsort"); -__static_renaming("__abs_1793", "abs"); -__static_renaming("__abs_1794", "abs"); -__static_renaming("__labs_1796", "labs"); -__static_renaming("__labs_1797", "labs"); -__static_renaming("__llabs_1799", "llabs"); -__static_renaming("__llabs_1800", "llabs"); -__static_renaming("__div_1803", "div"); -__static_renaming("__div_1804", "div"); -__static_renaming("__ldiv_1807", "ldiv"); -__static_renaming("__ldiv_1809", "ldiv"); -__static_renaming("__lldiv_1813", "lldiv"); -__static_renaming("__lldiv_1815", "lldiv"); -__static_renaming("__ecvt_1821", "ecvt"); -__static_renaming("__ecvt_1822", "ecvt"); -__static_renaming("__fcvt_1827", "fcvt"); -__static_renaming("__fcvt_1828", "fcvt"); -__static_renaming("__gcvt_1832", "gcvt"); -__static_renaming("__gcvt_1833", "gcvt"); -__static_renaming("__qecvt_1838", "qecvt"); -__static_renaming("__qecvt_1839", "qecvt"); -__static_renaming("__qfcvt_1844", "qfcvt"); -__static_renaming("__qfcvt_1845", "qfcvt"); -__static_renaming("__qgcvt_1849", "qgcvt"); -__static_renaming("__qgcvt_1850", "qgcvt"); -__static_renaming("__ecvt_r_1858", "ecvt_r"); -__static_renaming("__ecvt_r_1859", "ecvt_r"); -__static_renaming("__fcvt_r_1867", "fcvt_r"); -__static_renaming("__fcvt_r_1868", "fcvt_r"); -__static_renaming("__qecvt_r_1876", "qecvt_r"); -__static_renaming("__qecvt_r_1877", "qecvt_r"); -__static_renaming("__qfcvt_r_1885", "qfcvt_r"); -__static_renaming("__qfcvt_r_1886", "qfcvt_r"); -__static_renaming("__mblen_1890", "mblen"); -__static_renaming("__mblen_1891", "mblen"); -__static_renaming("__mblen_1892", "mblen"); -__static_renaming("__mblen_1893", "mblen"); -__static_renaming("__mbtowc_1898", "mbtowc"); -__static_renaming("__mbtowc_1899", "mbtowc"); -__static_renaming("__wctomb_1902", "wctomb"); -__static_renaming("__mbstowcs_1907", "mbstowcs"); -__static_renaming("__mbstowcs_1908", "mbstowcs"); -__static_renaming("__wcstombs_1913", "wcstombs"); -__static_renaming("__wcstombs_1914", "wcstombs"); -__static_renaming("__rpmatch_1916", "rpmatch"); -__static_renaming("__rpmatch_1917", "rpmatch"); -__static_renaming("__getsubopt_1921", "getsubopt"); -__static_renaming("__getsubopt_1922", "getsubopt"); -__static_renaming("__getloadavg_1925", "getloadavg"); -__static_renaming("____realpath_chk_1931", "__realpath_chk"); -__static_renaming("____realpath_chk_1932", "__realpath_chk"); -__static_renaming("____realpath_alias_1935", "__realpath_alias"); -__static_renaming("____realpath_chk_warn_1940", "__realpath_chk_warn"); -__static_renaming("____realpath_chk_warn_1941", "__realpath_chk_warn"); -__static_renaming("____ptsname_r_chk_1951", "__ptsname_r_chk"); -__static_renaming("____ptsname_r_chk_1952", "__ptsname_r_chk"); -__static_renaming("____ptsname_r_alias_1957", "__ptsname_r_alias"); -__static_renaming("____ptsname_r_alias_1958", "__ptsname_r_alias"); -__static_renaming("____ptsname_r_chk_warn_1965", "__ptsname_r_chk_warn"); -__static_renaming("____ptsname_r_chk_warn_1966", "__ptsname_r_chk_warn"); -__static_renaming("____wctomb_chk_1977", "__wctomb_chk"); -__static_renaming("____wctomb_chk_1978", "__wctomb_chk"); -__static_renaming("____wctomb_alias_1981", "__wctomb_alias"); -__static_renaming("____mbstowcs_chk_1990", "__mbstowcs_chk"); -__static_renaming("____mbstowcs_chk_1991", "__mbstowcs_chk"); -__static_renaming("____mbstowcs_alias_1996", "__mbstowcs_alias"); -__static_renaming("____mbstowcs_alias_1997", "__mbstowcs_alias"); -__static_renaming("____mbstowcs_chk_warn_2004", "__mbstowcs_chk_warn"); -__static_renaming("____mbstowcs_chk_warn_2005", "__mbstowcs_chk_warn"); -__static_renaming("____wcstombs_chk_2016", "__wcstombs_chk"); -__static_renaming("____wcstombs_chk_2017", "__wcstombs_chk"); -__static_renaming("____wcstombs_alias_2022", "__wcstombs_alias"); -__static_renaming("____wcstombs_alias_2023", "__wcstombs_alias"); -__static_renaming("____wcstombs_chk_warn_2030", "__wcstombs_chk_warn"); -__static_renaming("____wcstombs_chk_warn_2031", "__wcstombs_chk_warn"); -__static_renaming("__dbg_2036", "dbg"); -__static_renaming("__dbg_2037", "dbg"); -__static_renaming("__dbg_2038", "dbg"); -__static_renaming("__dbg_2039", "dbg"); -__static_renaming("__dbg_2042", "dbg"); -__static_renaming("__dbg_2043", "dbg"); -__static_renaming("__dbg_2044", "dbg"); -__static_renaming("__dbg_2045", "dbg"); -__static_renaming("__run_cgi_child_2048", "run_cgi_child"); -__static_renaming("__run_cgi_child_2049", "run_cgi_child"); -__static_renaming("__run_cgi_child_2050", "run_cgi_child"); -__static_renaming("__cgi_handler_2114", "cgi_handler"); -__static_renaming("__main_2117", "main"); +__static_renaming("__fpos_t_279", "fpos_t"); +__static_renaming("__fpos_t_281", "fpos_t"); +__static_renaming("__stdin_283", "stdin"); +__static_renaming("__stdin_284", "stdin"); +__static_renaming("__stdout_286", "stdout"); +__static_renaming("__stdout_287", "stdout"); +__static_renaming("__stderr_289", "stderr"); +__static_renaming("__stderr_290", "stderr"); +__static_renaming("__remove_293", "remove"); +__static_renaming("__rename_296", "rename"); +__static_renaming("__tmpfile_297", "tmpfile"); +__static_renaming("__tmpfile_299", "tmpfile"); +__static_renaming("__tmpfile_301", "tmpfile"); +__static_renaming("__tmpfile_303", "tmpfile"); +__static_renaming("__tmpnam_306", "tmpnam"); +__static_renaming("__tmpnam_307", "tmpnam"); +__static_renaming("__fclose_310", "fclose"); +__static_renaming("__fflush_314", "fflush"); +__static_renaming("__fopen_318", "fopen"); +__static_renaming("__fopen_320", "fopen"); +__static_renaming("__fopen_328", "fopen"); +__static_renaming("__fopen_330", "fopen"); +__static_renaming("__freopen_336", "freopen"); +__static_renaming("__freopen_338", "freopen"); +__static_renaming("__freopen_340", "freopen"); +__static_renaming("__freopen_342", "freopen"); +__static_renaming("__setbuf_347", "setbuf"); +__static_renaming("__setvbuf_354", "setvbuf"); +__static_renaming("__fprintf_359", "fprintf"); +__static_renaming("__printf_362", "printf"); +__static_renaming("__sprintf_365", "sprintf"); +__static_renaming("__vfprintf_371", "vfprintf"); +__static_renaming("__vprintf_378", "vprintf"); +__static_renaming("__vsprintf_384", "vsprintf"); +__static_renaming("__snprintf_389", "snprintf"); +__static_renaming("__vsnprintf_395", "vsnprintf"); +__static_renaming("__fscanf_400", "fscanf"); +__static_renaming("__fscanf_402", "fscanf"); +__static_renaming("__scanf_405", "scanf"); +__static_renaming("__scanf_406", "scanf"); +__static_renaming("__sscanf_409", "sscanf"); +__static_renaming("__vfscanf_433", "vfscanf"); +__static_renaming("__vfscanf_437", "vfscanf"); +__static_renaming("__vscanf_444", "vscanf"); +__static_renaming("__vscanf_446", "vscanf"); +__static_renaming("__vsscanf_452", "vsscanf"); +__static_renaming("__fgetc_487", "fgetc"); +__static_renaming("__getc_491", "getc"); +__static_renaming("__getchar_493", "getchar"); +__static_renaming("__fputc_497", "fputc"); +__static_renaming("__putc_502", "putc"); +__static_renaming("__putchar_505", "putchar"); +__static_renaming("__fgets_510", "fgets"); +__static_renaming("__fgets_512", "fgets"); +__static_renaming("__fputs_517", "fputs"); +__static_renaming("__puts_520", "puts"); +__static_renaming("__ungetc_524", "ungetc"); +__static_renaming("__fseek_546", "fseek"); +__static_renaming("__ftell_550", "ftell"); +__static_renaming("__ftell_552", "ftell"); +__static_renaming("__rewind_556", "rewind"); +__static_renaming("__fgetpos_562", "fgetpos"); +__static_renaming("__fgetpos_574", "fgetpos"); +__static_renaming("__fsetpos_582", "fsetpos"); +__static_renaming("__fsetpos_586", "fsetpos"); +__static_renaming("__clearerr_592", "clearerr"); +__static_renaming("__feof_596", "feof"); +__static_renaming("__feof_598", "feof"); +__static_renaming("__ferror_602", "ferror"); +__static_renaming("__ferror_604", "ferror"); +__static_renaming("__perror_607", "perror"); +__static_renaming("____sprintf_chk_617", "__sprintf_chk"); +__static_renaming("____vsprintf_chk_624", "__vsprintf_chk"); +__static_renaming("____snprintf_chk_638", "__snprintf_chk"); +__static_renaming("____vsnprintf_chk_646", "__vsnprintf_chk"); +__static_renaming("____fprintf_chk_661", "__fprintf_chk"); +__static_renaming("____printf_chk_665", "__printf_chk"); +__static_renaming("____vfprintf_chk_672", "__vfprintf_chk"); +__static_renaming("____vprintf_chk_680", "__vprintf_chk"); +__static_renaming("____fgets_chk_704", "__fgets_chk"); +__static_renaming("____fgets_chk_706", "__fgets_chk"); +__static_renaming("____fgets_alias_712", "__fgets_alias"); +__static_renaming("____fgets_chk_warn_719", "__fgets_chk_warn"); +__static_renaming("__ptrdiff_t_755", "ptrdiff_t"); +__static_renaming("__size_t_756", "size_t"); +__static_renaming("__wchar_t_759", "wchar_t"); +__static_renaming("__wchar_t_760", "wchar_t"); +__static_renaming("__div_t_765", "div_t"); +__static_renaming("__ldiv_t_770", "ldiv_t"); +__static_renaming("__lldiv_t_775", "lldiv_t"); +__static_renaming("____ctype_get_mb_cur_max_776", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_777", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_778", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_779", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_780", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_781", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_782", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_783", "__ctype_get_mb_cur_max"); +__static_renaming("__atof_785", "atof"); +__static_renaming("__atof_786", "atof"); +__static_renaming("__atoi_788", "atoi"); +__static_renaming("__atoi_789", "atoi"); +__static_renaming("__atol_791", "atol"); +__static_renaming("__atol_792", "atol"); +__static_renaming("__atoll_794", "atoll"); +__static_renaming("__atoll_795", "atoll"); +__static_renaming("__strtod_798", "strtod"); +__static_renaming("__strtof_801", "strtof"); +__static_renaming("__strtold_804", "strtold"); +__static_renaming("__strtol_808", "strtol"); +__static_renaming("__strtoul_812", "strtoul"); +__static_renaming("__strtoll_816", "strtoll"); +__static_renaming("__strtoull_820", "strtoull"); +__static_renaming("__rand_824", "rand"); +__static_renaming("__rand_825", "rand"); +__static_renaming("__srand_827", "srand"); +__static_renaming("__malloc_830", "malloc"); +__static_renaming("__malloc_831", "malloc"); +__static_renaming("__malloc_832", "malloc"); +__static_renaming("__malloc_833", "malloc"); +__static_renaming("__calloc_838", "calloc"); +__static_renaming("__calloc_839", "calloc"); +__static_renaming("__calloc_840", "calloc"); +__static_renaming("__calloc_841", "calloc"); +__static_renaming("__realloc_845", "realloc"); +__static_renaming("__realloc_846", "realloc"); +__static_renaming("__realloc_847", "realloc"); +__static_renaming("__realloc_848", "realloc"); +__static_renaming("__free_850", "free"); +__static_renaming("__aligned_alloc_855", "aligned_alloc"); +__static_renaming("__aligned_alloc_856", "aligned_alloc"); +__static_renaming("__aligned_alloc_857", "aligned_alloc"); +__static_renaming("__aligned_alloc_858", "aligned_alloc"); +__static_renaming("__abort_859", "abort"); +__static_renaming("__atexit_861", "atexit"); +__static_renaming("__at_quick_exit_863", "at_quick_exit"); +__static_renaming("__exit_865", "exit"); +__static_renaming("__quick_exit_867", "quick_exit"); +__static_renaming("___Exit_869", "_Exit"); +__static_renaming("__getenv_871", "getenv"); +__static_renaming("__getenv_872", "getenv"); +__static_renaming("__system_874", "system"); +__static_renaming("__system_875", "system"); +__static_renaming("____compar_fn_t_876", "__compar_fn_t"); +__static_renaming("__bsearch_887", "bsearch"); +__static_renaming("__bsearch_888", "bsearch"); +__static_renaming("__bsearch_891", "bsearch"); +__static_renaming("__bsearch_892", "bsearch"); +__static_renaming("____l_901", "__l"); +__static_renaming("____l_902", "__l"); +__static_renaming("____u_903", "__u"); +__static_renaming("____u_904", "__u"); +__static_renaming("____idx_905", "__idx"); +__static_renaming("____idx_906", "__idx"); +__static_renaming("____p_907", "__p"); +__static_renaming("____comparison_908", "__comparison"); +__static_renaming("__qsort_920", "qsort"); +__static_renaming("__qsort_922", "qsort"); +__static_renaming("__qsort_924", "qsort"); +__static_renaming("__qsort_926", "qsort"); +__static_renaming("__abs_929", "abs"); +__static_renaming("__abs_930", "abs"); +__static_renaming("__labs_932", "labs"); +__static_renaming("__labs_933", "labs"); +__static_renaming("__llabs_935", "llabs"); +__static_renaming("__llabs_936", "llabs"); +__static_renaming("__div_939", "div"); +__static_renaming("__div_940", "div"); +__static_renaming("__ldiv_943", "ldiv"); +__static_renaming("__ldiv_945", "ldiv"); +__static_renaming("__lldiv_949", "lldiv"); +__static_renaming("__lldiv_951", "lldiv"); +__static_renaming("__mblen_956", "mblen"); +__static_renaming("__mblen_957", "mblen"); +__static_renaming("__mbtowc_963", "mbtowc"); +__static_renaming("__mbtowc_964", "mbtowc"); +__static_renaming("__mbtowc_965", "mbtowc"); +__static_renaming("__wctomb_969", "wctomb"); +__static_renaming("__wctomb_970", "wctomb"); +__static_renaming("__mbstowcs_976", "mbstowcs"); +__static_renaming("__mbstowcs_977", "mbstowcs"); +__static_renaming("__mbstowcs_978", "mbstowcs"); +__static_renaming("__wcstombs_984", "wcstombs"); +__static_renaming("__wcstombs_985", "wcstombs"); +__static_renaming("__wcstombs_986", "wcstombs"); +__static_renaming("____realpath_chk_992", "__realpath_chk"); +__static_renaming("____realpath_chk_993", "__realpath_chk"); +__static_renaming("____realpath_alias_996", "__realpath_alias"); +__static_renaming("____realpath_chk_warn_1001", "__realpath_chk_warn"); +__static_renaming("____realpath_chk_warn_1002", "__realpath_chk_warn"); +__static_renaming("____ptsname_r_chk_1012", "__ptsname_r_chk"); +__static_renaming("____ptsname_r_chk_1013", "__ptsname_r_chk"); +__static_renaming("____ptsname_r_alias_1018", "__ptsname_r_alias"); +__static_renaming("____ptsname_r_alias_1019", "__ptsname_r_alias"); +__static_renaming("____ptsname_r_chk_warn_1026", "__ptsname_r_chk_warn"); +__static_renaming("____ptsname_r_chk_warn_1027", "__ptsname_r_chk_warn"); +__static_renaming("____wctomb_chk_1038", "__wctomb_chk"); +__static_renaming("____wctomb_chk_1039", "__wctomb_chk"); +__static_renaming("____wctomb_alias_1042", "__wctomb_alias"); +__static_renaming("____mbstowcs_chk_1051", "__mbstowcs_chk"); +__static_renaming("____mbstowcs_chk_1052", "__mbstowcs_chk"); +__static_renaming("____mbstowcs_alias_1057", "__mbstowcs_alias"); +__static_renaming("____mbstowcs_alias_1058", "__mbstowcs_alias"); +__static_renaming("____mbstowcs_chk_warn_1065", "__mbstowcs_chk_warn"); +__static_renaming("____mbstowcs_chk_warn_1066", "__mbstowcs_chk_warn"); +__static_renaming("____wcstombs_chk_1077", "__wcstombs_chk"); +__static_renaming("____wcstombs_chk_1078", "__wcstombs_chk"); +__static_renaming("____wcstombs_alias_1083", "__wcstombs_alias"); +__static_renaming("____wcstombs_alias_1084", "__wcstombs_alias"); +__static_renaming("____wcstombs_chk_warn_1091", "__wcstombs_chk_warn"); +__static_renaming("____wcstombs_chk_warn_1092", "__wcstombs_chk_warn"); +__static_renaming("__dbg_1097", "dbg"); +__static_renaming("__dbg_1098", "dbg"); +__static_renaming("__dbg_1099", "dbg"); +__static_renaming("__dbg_1100", "dbg"); +__static_renaming("__dbg_1103", "dbg"); +__static_renaming("__dbg_1104", "dbg"); +__static_renaming("__dbg_1105", "dbg"); +__static_renaming("__dbg_1106", "dbg"); +__static_renaming("__run_cgi_child_1109", "run_cgi_child"); +__static_renaming("__run_cgi_child_1110", "run_cgi_child"); +__static_renaming("__cgi_handler_1141", "cgi_handler"); +__static_renaming("__main_1142", "main"); __static_condition_renaming("__static_condition_default_53", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); __static_condition_renaming("__static_condition_default_76", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); @@ -1194,373 +593,184 @@ __static_condition_renaming("__static_condition_default_271", "!(defined __need_ __static_condition_renaming("__static_condition_default_274", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); __static_condition_renaming("__static_condition_default_275", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); __static_condition_renaming("__static_condition_default_278", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_280", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); -__static_condition_renaming("__static_condition_default_282", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_284", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_286", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_288", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_290", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_293", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_296", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_299", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_311", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_313", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_315", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_317", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_331", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_333", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_337", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_341", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_345", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_347", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_355", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_357", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_363", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_365", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_367", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_369", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_373", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_375", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_380", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_382", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_386", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_388", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_393", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_395", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_402", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_408", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_412", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_417", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_419", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_431", "!(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_432", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_433", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_438", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_444", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_455", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_461", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_469", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_471", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_473", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_475", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_486", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_488", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_489", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_491", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_493", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_494", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_497", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_499", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_503", "!(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_510", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_511", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_512", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_514", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_515", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_516", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_521", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_523", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_529", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_536", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_537", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_538", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_539", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_541", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_542", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_543", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_544", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_549", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_550", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_552", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_553", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_559", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_560", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_564", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_568", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_573", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_578", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_583", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_585", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_590", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_597", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_602", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_608", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_613", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_619", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_621", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_623", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_625", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_632", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_633", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_634", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_636", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_637", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_638", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_645", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_646", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_647", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_649", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_650", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_651", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_657", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_658", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_659", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_661", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_662", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_663", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_668", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_670", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_677", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_683", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_684", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_685", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_686", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_692", "!(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_693", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_699", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_700", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_701", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_702", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_708", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_709", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_715", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_717", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_721", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_723", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_727", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_734", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_735", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_736", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_745", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_746", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_747", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_751", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_752", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_753", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_755", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_756", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_757", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_759", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_760", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_761", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_767", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_768", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_769", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_779", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_780", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_781", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_787", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_788", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_789", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_791", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_792", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_793", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_797", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_801", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_803", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_807", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_809", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_813", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_817", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_819", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_823", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_825", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_834", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_836", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_840", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_842", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_846", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_848", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_852", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_858", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_862", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_864", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_868", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_872", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_875", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_878", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_883", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_887", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_891", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_894", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_907", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_914", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_929", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_938", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_944", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_955", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_956", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_957", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_963", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_967", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_972", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_978", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_979", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_980", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_991", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_998", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1005", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1007", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1009", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1015", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1022", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1027", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1028", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1035", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1036", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1042", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1043", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1050", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1051", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1057", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1058", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1065", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1066", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1072", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1073", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1080", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1081", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1089", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_1090", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1091", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1152", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1159", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1164", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1165", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1315", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1341", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __u_char_defined)"); -__static_condition_renaming("__static_condition_default_1345", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __u_char_defined)"); -__static_condition_renaming("__static_condition_default_1349", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __u_char_defined)"); -__static_condition_renaming("__static_condition_default_1353", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined)"); -__static_condition_renaming("__static_condition_default_1357", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined)"); -__static_condition_renaming("__static_condition_default_1361", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_1365", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_1369", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_1373", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1377", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __nlink_t_defined)"); -__static_condition_renaming("__static_condition_default_1381", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __nlink_t_defined)"); -__static_condition_renaming("__static_condition_default_1385", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __nlink_t_defined)"); -__static_condition_renaming("__static_condition_default_1388", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1391", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1395", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && (defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1398", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1402", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __id_t_defined)"); -__static_condition_renaming("__static_condition_default_1405", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1409", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_1416", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_1420", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_1424", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __clock_t_defined)"); -__static_condition_renaming("__static_condition_default_1428", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __time_t_defined)"); -__static_condition_renaming("__static_condition_default_1432", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __clockid_t_defined)"); -__static_condition_renaming("__static_condition_default_1436", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timer_t_defined)"); -__static_condition_renaming("__static_condition_default_1453", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1458", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1459", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1475", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_1485", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_1489", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __suseconds_t_defined)"); -__static_condition_renaming("__static_condition_default_1498", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1515", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_1516", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_1531", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_1532", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_1552", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blksize_t_defined)"); -__static_condition_renaming("__static_condition_default_1556", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined)"); -__static_condition_renaming("__static_condition_default_1560", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1564", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined)"); -__static_condition_renaming("__static_condition_default_1568", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1572", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1576", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1749", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1750", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1753", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1754", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1773", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1774", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1775", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1776", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1785", "!(defined __need___FILE) && !(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1787", "(defined __need___FILE) && !(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1789", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1791", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1808", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1810", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1814", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1816", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1944", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_2040", "!(defined __need___FILE) && (defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2)"); -__static_condition_renaming("__static_condition_default_2041", "(defined __need___FILE) && (defined DEBUG_CGI) && (defined OS2)"); -__static_condition_renaming("__static_condition_default_2046", "!(defined __need___FILE) && (defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2)"); -__static_condition_renaming("__static_condition_default_2047", "(defined __need___FILE) && (defined DEBUG_CGI) && !(defined OS2)"); -__static_condition_renaming("__static_condition_default_2051", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_2052", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2)"); -__static_condition_renaming("__static_condition_default_2053", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2)"); -__static_condition_renaming("__static_condition_default_2054", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2)"); -__static_condition_renaming("__static_condition_default_2055", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2)"); -__static_condition_renaming("__static_condition_default_2056", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) || (defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI)"); -__static_condition_renaming("__static_condition_default_2057", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI)"); -__static_condition_renaming("__static_condition_default_2058", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2)"); -__static_condition_renaming("__static_condition_default_2059", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2)"); -__static_condition_renaming("__static_condition_default_2060", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2)"); -__static_condition_renaming("__static_condition_default_2061", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2)"); -__static_condition_renaming("__static_condition_default_2062", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) || (defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI)"); -__static_condition_renaming("__static_condition_default_2063", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined DEBUG_CGI) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined DEBUG_CGI) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined DEBUG_CGI) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined DEBUG_CGI)"); -__static_condition_renaming("__static_condition_default_2064", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_2065", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2)"); -__static_condition_renaming("__static_condition_default_2066", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2)"); -__static_condition_renaming("__static_condition_default_2067", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2)"); -__static_condition_renaming("__static_condition_default_2068", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2)"); -__static_condition_renaming("__static_condition_default_2069", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI)"); -__static_condition_renaming("__static_condition_default_2070", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI)"); -__static_condition_renaming("__static_condition_default_2071", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2)"); -__static_condition_renaming("__static_condition_default_2072", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2)"); -__static_condition_renaming("__static_condition_default_2073", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2)"); -__static_condition_renaming("__static_condition_default_2074", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2)"); -__static_condition_renaming("__static_condition_default_2075", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI)"); -__static_condition_renaming("__static_condition_default_2076", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined DEBUG_CGI)"); -__static_condition_renaming("__static_condition_default_2077", "!(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2078", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2)"); -__static_condition_renaming("__static_condition_default_2079", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2)"); -__static_condition_renaming("__static_condition_default_2080", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2)"); -__static_condition_renaming("__static_condition_default_2081", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2)"); -__static_condition_renaming("__static_condition_default_2082", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2)"); -__static_condition_renaming("__static_condition_default_2083", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2)"); -__static_condition_renaming("__static_condition_default_2084", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2)"); -__static_condition_renaming("__static_condition_default_2085", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2)"); -__static_condition_renaming("__static_condition_default_2086", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2)"); -__static_condition_renaming("__static_condition_default_2087", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2)"); -__static_condition_renaming("__static_condition_default_2088", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2)"); -__static_condition_renaming("__static_condition_default_2089", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2)"); -__static_condition_renaming("__static_condition_default_2090", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2)"); -__static_condition_renaming("__static_condition_default_2091", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2)"); -__static_condition_renaming("__static_condition_default_2092", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2)"); -__static_condition_renaming("__static_condition_default_2093", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2)"); -__static_condition_renaming("__static_condition_default_2094", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) || !(defined __need___FILE) && (defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) || (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) || (defined __need___FILE) && (defined _STDLIB_H) && (defined DEBUG_CGI)"); -__static_condition_renaming("__static_condition_default_2095", "!(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) || (defined _STDLIB_H) && (defined DEBUG_CGI)"); -__static_condition_renaming("__static_condition_default_2096", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2)"); -__static_condition_renaming("__static_condition_default_2097", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2)"); -__static_condition_renaming("__static_condition_default_2098", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2)"); -__static_condition_renaming("__static_condition_default_2099", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2)"); -__static_condition_renaming("__static_condition_default_2100", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2)"); -__static_condition_renaming("__static_condition_default_2101", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2)"); -__static_condition_renaming("__static_condition_default_2102", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2)"); -__static_condition_renaming("__static_condition_default_2103", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2)"); -__static_condition_renaming("__static_condition_default_2104", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2)"); -__static_condition_renaming("__static_condition_default_2105", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2)"); -__static_condition_renaming("__static_condition_default_2106", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2)"); -__static_condition_renaming("__static_condition_default_2107", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2)"); -__static_condition_renaming("__static_condition_default_2108", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2)"); -__static_condition_renaming("__static_condition_default_2109", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2)"); -__static_condition_renaming("__static_condition_default_2110", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2)"); -__static_condition_renaming("__static_condition_default_2111", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2)"); -__static_condition_renaming("__static_condition_default_2112", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) || !(defined __need___FILE) && (defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) || (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) || (defined __need___FILE) && (defined _STDLIB_H) && (defined DEBUG_CGI)"); -__static_condition_renaming("__static_condition_default_2113", "!(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined DEBUG_CGI) || (defined _STDLIB_H) && !(defined DEBUG_CGI)"); -__static_condition_renaming("__static_condition_default_2115", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_2116", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_2118", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); - -if (__static_condition_default_2118) -{ +__static_condition_renaming("__static_condition_default_280", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_282", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_285", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_288", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_291", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_298", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_300", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_302", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_304", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_311", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_315", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_319", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_321", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_329", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_331", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_337", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_339", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_341", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_343", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_348", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_355", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_360", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_372", "!(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_373", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_374", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_379", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_385", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_396", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_401", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_403", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_414", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_415", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_417", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_418", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_421", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_423", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_427", "!(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_434", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_435", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_436", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_438", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_439", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_440", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_445", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_447", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_453", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_460", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_461", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_462", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_463", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_465", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_466", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_467", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_468", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_473", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_474", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_476", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_477", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_483", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_484", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_488", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_492", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_498", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_503", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_511", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_513", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_518", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_525", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_531", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_532", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_533", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_534", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_540", "!(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_541", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_547", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_551", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_553", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_557", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_563", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_564", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_565", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_575", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_576", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_577", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_583", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_584", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_585", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_587", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_588", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_589", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_593", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_597", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_599", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_603", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_605", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_611", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_625", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_632", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_647", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_656", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_662", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_673", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_674", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_675", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_681", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_685", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_690", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_696", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_697", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_698", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_705", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_707", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_713", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_720", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_725", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_726", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_733", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_734", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_740", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_741", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_748", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_749", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_757", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_758", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_885", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_886", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_889", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_890", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_909", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_910", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_911", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_912", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_921", "!(defined __need___FILE) && !(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_923", "(defined __need___FILE) && !(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_925", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_927", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_944", "!(defined _FORTIFY_SOURCE) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_946", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_950", "!(defined _FORTIFY_SOURCE) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_952", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1005", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1101", "!(defined __need___FILE) && (defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2)"); +__static_condition_renaming("__static_condition_default_1102", "(defined __need___FILE) && (defined DEBUG_CGI) && (defined OS2)"); +__static_condition_renaming("__static_condition_default_1107", "!(defined __need___FILE) && (defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2)"); +__static_condition_renaming("__static_condition_default_1108", "(defined __need___FILE) && (defined DEBUG_CGI) && !(defined OS2)"); +__static_condition_renaming("__static_condition_default_1111", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1112", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2)"); +__static_condition_renaming("__static_condition_default_1113", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2)"); +__static_condition_renaming("__static_condition_default_1114", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2)"); +__static_condition_renaming("__static_condition_default_1115", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2)"); +__static_condition_renaming("__static_condition_default_1116", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined DEBUG_CGI) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined DEBUG_CGI) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined DEBUG_CGI) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined DEBUG_CGI) || (defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined DEBUG_CGI) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined DEBUG_CGI) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined DEBUG_CGI) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined DEBUG_CGI)"); +__static_condition_renaming("__static_condition_default_1117", "!(defined _FORTIFY_SOURCE) && !(defined __USE_EXTERN_INLINES) && (defined DEBUG_CGI) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __USE_EXTERN_INLINES) && (defined DEBUG_CGI) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __USE_EXTERN_INLINES) && (defined DEBUG_CGI) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __USE_EXTERN_INLINES) && (defined DEBUG_CGI)"); +__static_condition_renaming("__static_condition_default_1118", "!(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined DEBUG_CGI) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined DEBUG_CGI) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined DEBUG_CGI) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined DEBUG_CGI)"); +__static_condition_renaming("__static_condition_default_1119", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2)"); +__static_condition_renaming("__static_condition_default_1120", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2)"); +__static_condition_renaming("__static_condition_default_1121", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2)"); +__static_condition_renaming("__static_condition_default_1122", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2)"); +__static_condition_renaming("__static_condition_default_1123", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined DEBUG_CGI) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined DEBUG_CGI) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined DEBUG_CGI) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined DEBUG_CGI) || (defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined DEBUG_CGI) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined DEBUG_CGI) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined DEBUG_CGI) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined DEBUG_CGI)"); +__static_condition_renaming("__static_condition_default_1124", "!(defined _FORTIFY_SOURCE) && !(defined __USE_EXTERN_INLINES) && !(defined DEBUG_CGI) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __USE_EXTERN_INLINES) && !(defined DEBUG_CGI) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __USE_EXTERN_INLINES) && !(defined DEBUG_CGI) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __USE_EXTERN_INLINES) && !(defined DEBUG_CGI)"); +__static_condition_renaming("__static_condition_default_1125", "!(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined DEBUG_CGI) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined DEBUG_CGI) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined DEBUG_CGI) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined DEBUG_CGI)"); +__static_condition_renaming("__static_condition_default_1126", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1127", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2)"); +__static_condition_renaming("__static_condition_default_1128", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2)"); +__static_condition_renaming("__static_condition_default_1129", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2)"); +__static_condition_renaming("__static_condition_default_1130", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2)"); +__static_condition_renaming("__static_condition_default_1131", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined DEBUG_CGI) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined DEBUG_CGI)"); +__static_condition_renaming("__static_condition_default_1132", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __USE_EXTERN_INLINES) && (defined DEBUG_CGI)"); +__static_condition_renaming("__static_condition_default_1133", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined DEBUG_CGI)"); +__static_condition_renaming("__static_condition_default_1134", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2)"); +__static_condition_renaming("__static_condition_default_1135", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2)"); +__static_condition_renaming("__static_condition_default_1136", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2)"); +__static_condition_renaming("__static_condition_default_1137", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2)"); +__static_condition_renaming("__static_condition_default_1138", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined DEBUG_CGI) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined DEBUG_CGI)"); +__static_condition_renaming("__static_condition_default_1139", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __USE_EXTERN_INLINES) && !(defined DEBUG_CGI)"); +__static_condition_renaming("__static_condition_default_1140", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined DEBUG_CGI)"); +__static_condition_renaming("__static_condition_default_1143", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); + +if (__static_condition_default_1143) { __static_parse_error("Unable to parse"); } }; @@ -1726,364 +936,28 @@ typedef ____ssize_t_49 (____io_read_fn_181) (void * (____cookie_178), char * typedef ____ssize_t_49 (____io_write_fn_186) (void * (____cookie_183), const char * (____buf_184), __size_t_1 ____n_185);// L341:L342 typedef int (____io_seek_fn_192) (void * (____cookie_188), ____off64_t_24 * (____pos_189), int ____w_191);// L350 typedef int (____io_close_fn_195) (void * (____cookie_194));// L353 -typedef ____gnuc_va_list_86 __va_list_279;// L79 -typedef ____off_t_23 __off_t_281;// L90 -typedef ____off64_t_24 __off_t_283;// L92 -typedef ____ssize_t_49 __ssize_t_285;// L102 -typedef ___G_fpos_t_77 __fpos_t_287;// L110 -typedef ___G_fpos64_t_85 __fpos_t_289;// L112 -extern const char * const __sys_errlist_830[];// L27 -typedef long int __ptrdiff_t_1092;// L143:L324 -typedef long unsigned int __size_t_1093;// L177:L209 -typedef int __wchar_t_1094;// L243:L321 -enum ____anonymous_tag_1098_1099 { -__P_ALL_1095, -__P_PID_1096, -__P_PGID_1097, -}; -typedef enum ____anonymous_tag_1098_1099 __idtype_t_1100;// L50:L55 -typedef unsigned char ____u_char_1101;// L30 -typedef unsigned short int ____u_short_1102;// L31 -typedef unsigned int ____u_int_1103;// L32 -typedef unsigned long int ____u_long_1104;// L33 -typedef signed char ____int8_t_1105;// L36 -typedef unsigned char ____uint8_t_1106;// L37 -typedef signed short int ____int16_t_1107;// L38 -typedef unsigned short int ____uint16_t_1108;// L39 -typedef signed int ____int32_t_1109;// L40 -typedef unsigned int ____uint32_t_1110;// L41 -typedef signed long int ____int64_t_1111;// L43 -typedef unsigned long int ____uint64_t_1112;// L44 -typedef long int ____quad_t_1113;// L52 -typedef unsigned long int ____u_quad_t_1114;// L53 -typedef unsigned long int ____dev_t_1115;// L109:L124 -typedef unsigned int ____uid_t_1116;// L92:L125 -typedef unsigned int ____gid_t_1117;// L92:L126 -typedef unsigned long int ____ino_t_1118;// L94:L127 -typedef unsigned long int ____ino64_t_1119;// L109:L128 -typedef unsigned int ____mode_t_1120;// L92:L129 -typedef unsigned long int ____nlink_t_1121;// L94:L130 -typedef long int ____off_t_1122;// L93:L131 -typedef long int ____off64_t_1123;// L108:L132 -typedef int ____pid_t_1124;// L91:L133 -struct ____anonymous_tag_1125_1126 { -int ____val_1127[2];// L72 -}; -typedef struct ____anonymous_tag_1125_1126 ____fsid_t_1128;// L72:L134 -typedef long int ____clock_t_1129;// L93:L135 -typedef unsigned long int ____rlim_t_1130;// L94:L136 -typedef unsigned long int ____rlim64_t_1131;// L109:L137 -typedef unsigned int ____id_t_1132;// L92:L138 -typedef long int ____time_t_1133;// L93:L139 -typedef unsigned int ____useconds_t_1134;// L92:L140 -typedef long int ____suseconds_t_1135;// L93:L141 -typedef int ____daddr_t_1136;// L91:L143 -typedef int ____key_t_1137;// L91:L144 -typedef int ____clockid_t_1138;// L91:L147 -typedef void * (____timer_t_1139);// L70:L150 -typedef long int ____blksize_t_1140;// L93:L153 -typedef long int ____blkcnt_t_1141;// L93:L158 -typedef long int ____blkcnt64_t_1142;// L108:L159 -typedef unsigned long int ____fsblkcnt_t_1143;// L94:L162 -typedef unsigned long int ____fsblkcnt64_t_1144;// L109:L163 -typedef unsigned long int ____fsfilcnt_t_1145;// L94:L166 -typedef unsigned long int ____fsfilcnt64_t_1146;// L109:L167 -typedef long int ____fsword_t_1147;// L93:L170 -typedef long int ____ssize_t_1148;// L110:L172 -typedef long int ____syscall_slong_t_1149;// L93:L175 -typedef unsigned long int ____syscall_ulong_t_1150;// L94:L177 -typedef ____off64_t_1123 ____loff_t_1151;// L181 -typedef ____quad_t_1113 * (____qaddr_t_1153);// L182 -typedef char * (____caddr_t_1154);// L183 -typedef long int ____intptr_t_1155;// L110:L186 -typedef unsigned int ____socklen_t_1156;// L92:L189 -struct ____anonymous_tag_1166_1167 { -unsigned int ____w_termsig_1168 : 7;// L72 -unsigned int ____w_coredump_1169 : 1;// L73 -unsigned int ____w_retcode_1170 : 8;// L74 -unsigned int __anon_id_0_1171 : 16;// L75 -}; -struct ____anonymous_tag_1172_1173 { -unsigned int ____w_stopval_1174 : 8;// L87 -unsigned int ____w_stopsig_1175 : 8;// L88 -unsigned int __anon_id_1_1176 : 16;// L89 -}; -union __wait_1177 { -int __w_status_1178;// L68 -struct ____anonymous_tag_1166_1167 ____wait_terminated_1179;// L69 -struct ____anonymous_tag_1172_1173 ____wait_stopped_1180;// L84 -}; -union ____anonymous_tag_1181_1182 { -union __wait_1177 * (____uptr_1183);// L69 -int * (____iptr_1184);// L70 -}; -typedef union ____anonymous_tag_1181_1182 ____WAIT_STATUS_1185;// L67:L71 -struct ____anonymous_tag_1186_1187 { -int __quot_1188;// L99 -int __rem_1189;// L100 -}; -typedef struct ____anonymous_tag_1186_1187 __div_t_1190;// L97:L101 -struct ____anonymous_tag_1191_1192 { -long int __quot_1193;// L107 -long int __rem_1194;// L108 -}; -typedef struct ____anonymous_tag_1191_1192 __ldiv_t_1195;// L105:L109 -struct ____anonymous_tag_1196_1197 { -long long int __quot_1198;// L119 -long long int __rem_1199;// L120 -}; -typedef struct ____anonymous_tag_1196_1197 __lldiv_t_1200;// L117:L121 -typedef unsigned char ____u_char_1264;// L30 -typedef unsigned short int ____u_short_1265;// L31 -typedef unsigned int ____u_int_1266;// L32 -typedef unsigned long int ____u_long_1267;// L33 -typedef signed char ____int8_t_1268;// L36 -typedef unsigned char ____uint8_t_1269;// L37 -typedef signed short int ____int16_t_1270;// L38 -typedef unsigned short int ____uint16_t_1271;// L39 -typedef signed int ____int32_t_1272;// L40 -typedef unsigned int ____uint32_t_1273;// L41 -typedef signed long int ____int64_t_1274;// L43 -typedef unsigned long int ____uint64_t_1275;// L44 -typedef long int ____quad_t_1276;// L52 -typedef unsigned long int ____u_quad_t_1277;// L53 -typedef unsigned long int ____dev_t_1278;// L109:L124 -typedef unsigned int ____uid_t_1279;// L92:L125 -typedef unsigned int ____gid_t_1280;// L92:L126 -typedef unsigned long int ____ino_t_1281;// L94:L127 -typedef unsigned long int ____ino64_t_1282;// L109:L128 -typedef unsigned int ____mode_t_1283;// L92:L129 -typedef unsigned long int ____nlink_t_1284;// L94:L130 -typedef long int ____off_t_1285;// L93:L131 -typedef long int ____off64_t_1286;// L108:L132 -typedef int ____pid_t_1287;// L91:L133 -struct ____anonymous_tag_1288_1289 { -int ____val_1290[2];// L72 -}; -typedef struct ____anonymous_tag_1288_1289 ____fsid_t_1291;// L72:L134 -typedef long int ____clock_t_1292;// L93:L135 -typedef unsigned long int ____rlim_t_1293;// L94:L136 -typedef unsigned long int ____rlim64_t_1294;// L109:L137 -typedef unsigned int ____id_t_1295;// L92:L138 -typedef long int ____time_t_1296;// L93:L139 -typedef unsigned int ____useconds_t_1297;// L92:L140 -typedef long int ____suseconds_t_1298;// L93:L141 -typedef int ____daddr_t_1299;// L91:L143 -typedef int ____key_t_1300;// L91:L144 -typedef int ____clockid_t_1301;// L91:L147 -typedef void * (____timer_t_1302);// L70:L150 -typedef long int ____blksize_t_1303;// L93:L153 -typedef long int ____blkcnt_t_1304;// L93:L158 -typedef long int ____blkcnt64_t_1305;// L108:L159 -typedef unsigned long int ____fsblkcnt_t_1306;// L94:L162 -typedef unsigned long int ____fsblkcnt64_t_1307;// L109:L163 -typedef unsigned long int ____fsfilcnt_t_1308;// L94:L166 -typedef unsigned long int ____fsfilcnt64_t_1309;// L109:L167 -typedef long int ____fsword_t_1310;// L93:L170 -typedef long int ____ssize_t_1311;// L110:L172 -typedef long int ____syscall_slong_t_1312;// L93:L175 -typedef unsigned long int ____syscall_ulong_t_1313;// L94:L177 -typedef ____off64_t_1286 ____loff_t_1314;// L181 -typedef ____quad_t_1276 * (____qaddr_t_1316);// L182 -typedef char * (____caddr_t_1317);// L183 -typedef long int ____intptr_t_1318;// L110:L186 -typedef unsigned int ____socklen_t_1319;// L92:L189 -typedef ____u_char_2 __u_char_1320;// L33 -typedef ____u_char_1101 __u_char_1321;// L33 -typedef ____u_char_1264 __u_char_1322;// L33 -typedef ____u_short_3 __u_short_1323;// L34 -typedef ____u_short_1102 __u_short_1324;// L34 -typedef ____u_short_1265 __u_short_1325;// L34 -typedef ____u_int_4 __u_int_1326;// L35 -typedef ____u_int_1103 __u_int_1327;// L35 -typedef ____u_int_1266 __u_int_1328;// L35 -typedef ____u_long_5 __u_long_1329;// L36 -typedef ____u_long_1104 __u_long_1330;// L36 -typedef ____u_long_1267 __u_long_1331;// L36 -typedef ____quad_t_14 __quad_t_1332;// L37 -typedef ____quad_t_1113 __quad_t_1333;// L37 -typedef ____quad_t_1276 __quad_t_1334;// L37 -typedef ____u_quad_t_15 __u_quad_t_1335;// L38 -typedef ____u_quad_t_1114 __u_quad_t_1336;// L38 -typedef ____u_quad_t_1277 __u_quad_t_1337;// L38 -typedef ____fsid_t_29 __fsid_t_1338;// L39 -typedef ____fsid_t_1128 __fsid_t_1339;// L39 -typedef ____fsid_t_1291 __fsid_t_1340;// L39 -typedef ____loff_t_52 __loff_t_1342;// L44 -typedef ____loff_t_1151 __loff_t_1343;// L44 -typedef ____loff_t_1314 __loff_t_1344;// L44 -typedef ____loff_t_52 __loff_t_1346;// L44 -typedef ____loff_t_1151 __loff_t_1347;// L44 -typedef ____loff_t_1314 __loff_t_1348;// L44 -typedef ____ino64_t_20 __ino_t_1350;// L50 -typedef ____ino64_t_1119 __ino_t_1351;// L50 -typedef ____ino64_t_1282 __ino_t_1352;// L50 -typedef ____ino_t_19 __ino_t_1354;// L48 -typedef ____ino_t_1118 __ino_t_1355;// L48 -typedef ____ino_t_1281 __ino_t_1356;// L48 -typedef ____dev_t_16 __dev_t_1358;// L60 -typedef ____dev_t_1115 __dev_t_1359;// L60 -typedef ____dev_t_1278 __dev_t_1360;// L60 -typedef ____gid_t_18 __gid_t_1362;// L65 -typedef ____gid_t_1117 __gid_t_1363;// L65 -typedef ____gid_t_1280 __gid_t_1364;// L65 -typedef ____gid_t_18 __gid_t_1366;// L65 -typedef ____gid_t_1117 __gid_t_1367;// L65 -typedef ____gid_t_1280 __gid_t_1368;// L65 -typedef ____mode_t_21 __mode_t_1370;// L70 -typedef ____mode_t_1120 __mode_t_1371;// L70 -typedef ____mode_t_1283 __mode_t_1372;// L70 -typedef ____nlink_t_22 __nlink_t_1374;// L75 -typedef ____nlink_t_1121 __nlink_t_1375;// L75 -typedef ____nlink_t_1284 __nlink_t_1376;// L75 -typedef ____uid_t_17 __uid_t_1378;// L80 -typedef ____uid_t_1116 __uid_t_1379;// L80 -typedef ____uid_t_1279 __uid_t_1380;// L80 -typedef ____uid_t_17 __uid_t_1382;// L80 -typedef ____uid_t_1116 __uid_t_1383;// L80 -typedef ____uid_t_1279 __uid_t_1384;// L80 -typedef ____off64_t_1123 __off_t_1386;// L88 -typedef ____off64_t_1286 __off_t_1387;// L88 -typedef ____off_t_1122 __off_t_1389;// L86 -typedef ____off_t_1285 __off_t_1390;// L86 -typedef ____pid_t_25 __pid_t_1392;// L98 -typedef ____pid_t_1124 __pid_t_1393;// L98 -typedef ____pid_t_1287 __pid_t_1394;// L98 -typedef ____pid_t_1124 __pid_t_1396;// L98 -typedef ____pid_t_1287 __pid_t_1397;// L98 -typedef ____id_t_33 __id_t_1399;// L104 -typedef ____id_t_1132 __id_t_1400;// L104 -typedef ____id_t_1295 __id_t_1401;// L104 -typedef ____ssize_t_1148 __ssize_t_1403;// L109 -typedef ____ssize_t_1311 __ssize_t_1404;// L109 -typedef ____daddr_t_37 __daddr_t_1406;// L115 -typedef ____daddr_t_1136 __daddr_t_1407;// L115 -typedef ____daddr_t_1299 __daddr_t_1408;// L115 -typedef ____caddr_t_55 __caddr_t_1410;// L116 -typedef ____caddr_t_1154 __caddr_t_1411;// L116 -typedef ____caddr_t_1317 __caddr_t_1412;// L116 -typedef ____key_t_38 __key_t_1413;// L122 -typedef ____key_t_1137 __key_t_1414;// L122 -typedef ____key_t_1300 __key_t_1415;// L122 -typedef ____key_t_38 __key_t_1417;// L122 -typedef ____key_t_1137 __key_t_1418;// L122 -typedef ____key_t_1300 __key_t_1419;// L122 -typedef ____clock_t_30 __clock_t_1421;// L59 -typedef ____clock_t_1129 __clock_t_1422;// L59 -typedef ____clock_t_1292 __clock_t_1423;// L59 -typedef ____time_t_34 __time_t_1425;// L75 -typedef ____time_t_1133 __time_t_1426;// L75 -typedef ____time_t_1296 __time_t_1427;// L75 -typedef ____clockid_t_39 __clockid_t_1429;// L91 -typedef ____clockid_t_1138 __clockid_t_1430;// L91 -typedef ____clockid_t_1301 __clockid_t_1431;// L91 -typedef ____timer_t_40 __timer_t_1433;// L103 -typedef ____timer_t_1139 __timer_t_1434;// L103 -typedef ____timer_t_1302 __timer_t_1435;// L103 -typedef unsigned long int __ulong_1437;// L150 -typedef unsigned long int __ulong_1438;// L150 -typedef unsigned long int __ulong_1439;// L150 -typedef unsigned short int __ushort_1440;// L151 -typedef unsigned int __uint_1441;// L152 -typedef int __int8_t_1442;// L188:L194 -typedef int __int16_t_1443;// L188:L195 -typedef int __int32_t_1444;// L188:L196 -typedef int __int64_t_1445;// L188:L197 -typedef unsigned int __u_int8_t_1446;// L190:L200 -typedef unsigned int __u_int16_t_1447;// L190:L201 -typedef unsigned int __u_int32_t_1448;// L190:L202 -typedef unsigned int __u_int64_t_1449;// L190:L203 -typedef int __register_t_1450;// L205 -typedef int ____sig_atomic_t_1460;// L22 -struct ____anonymous_tag_1461_1462 { -unsigned long int ____val_1463[( 1024 / ( 8 * sizeof(unsigned long) ) )];// L29 -}; -typedef struct ____anonymous_tag_1461_1462 ____sigset_t_1464;// L27:L30 -typedef ____sigset_t_1464 __sigset_t_1465;// L37 -struct __timespec_1466 { -____time_t_34 __tv_sec_1467;// L0 -____time_t_1133 __tv_sec_1468;// L0 -____time_t_1296 __tv_sec_1469;// L0 -____syscall_slong_t_50 __tv_nsec_1471;// L0 -____syscall_slong_t_1149 __tv_nsec_1472;// L0 -____syscall_slong_t_1312 __tv_nsec_1473;// L0 +typedef ___G_fpos_t_77 __fpos_t_279;// L110 +typedef ___G_fpos64_t_85 __fpos_t_281;// L112 +typedef long int __ptrdiff_t_755;// L143:L324 +typedef long unsigned int __size_t_756;// L177:L209 +typedef int __wchar_t_759;// L243:L321 +typedef int __wchar_t_760;// L243:L321 +struct ____anonymous_tag_761_762 { +int __quot_763;// L99 +int __rem_764;// L100 }; -struct __timeval_1476 { -____time_t_34 __tv_sec_1477;// L0 -____time_t_1133 __tv_sec_1478;// L0 -____time_t_1296 __tv_sec_1479;// L0 -____suseconds_t_36 __tv_usec_1481;// L0 -____suseconds_t_1135 __tv_usec_1482;// L0 -____suseconds_t_1298 __tv_usec_1483;// L0 +typedef struct ____anonymous_tag_761_762 __div_t_765;// L97:L101 +struct ____anonymous_tag_766_767 { +long int __quot_768;// L107 +long int __rem_769;// L108 }; -typedef ____suseconds_t_36 __suseconds_t_1486;// L48 -typedef ____suseconds_t_1135 __suseconds_t_1487;// L48 -typedef ____suseconds_t_1298 __suseconds_t_1488;// L48 -typedef long int ____fd_mask_1490;// L54 -typedef long int ____fd_mask_1491;// L54 -struct ____anonymous_tag_1492_1493 { -____fd_mask_1490 ____fds_bits_1494[1024 / ( 8 * ( int ) sizeof(long) )];// L0 -____fd_mask_1491 ____fds_bits_1496[1024 / ( 8 * ( int ) sizeof(long) )];// L0 +typedef struct ____anonymous_tag_766_767 __ldiv_t_770;// L105:L109 +struct ____anonymous_tag_771_772 { +long long int __quot_773;// L119 +long long int __rem_774;// L120 }; -typedef struct ____anonymous_tag_1492_1493 __fd_set_1499;// L64:L75 -typedef ____fd_mask_1490 __fd_mask_1500;// L82 -typedef ____fd_mask_1491 __fd_mask_1501;// L82 -typedef ____blksize_t_41 __blksize_t_1549;// L228 -typedef ____blksize_t_1140 __blksize_t_1550;// L228 -typedef ____blksize_t_1303 __blksize_t_1551;// L228 -typedef ____blkcnt_t_42 __blkcnt_t_1553;// L235 -typedef ____blkcnt_t_1141 __blkcnt_t_1554;// L235 -typedef ____blkcnt_t_1304 __blkcnt_t_1555;// L235 -typedef ____fsblkcnt_t_44 __fsblkcnt_t_1557;// L239 -typedef ____fsblkcnt_t_1143 __fsblkcnt_t_1558;// L239 -typedef ____fsblkcnt_t_1306 __fsblkcnt_t_1559;// L239 -typedef ____blkcnt64_t_43 __blkcnt_t_1561;// L248 -typedef ____blkcnt64_t_1142 __blkcnt_t_1562;// L248 -typedef ____blkcnt64_t_1305 __blkcnt_t_1563;// L248 -typedef ____fsblkcnt64_t_45 __fsblkcnt_t_1565;// L252 -typedef ____fsblkcnt64_t_1144 __fsblkcnt_t_1566;// L252 -typedef ____fsblkcnt64_t_1307 __fsblkcnt_t_1567;// L252 -typedef ____fsfilcnt_t_46 __fsfilcnt_t_1569;// L243 -typedef ____fsfilcnt_t_1145 __fsfilcnt_t_1570;// L243 -typedef ____fsfilcnt_t_1308 __fsfilcnt_t_1571;// L243 -typedef ____fsfilcnt64_t_47 __fsfilcnt_t_1573;// L256 -typedef ____fsfilcnt64_t_1146 __fsfilcnt_t_1574;// L256 -typedef ____fsfilcnt64_t_1309 __fsfilcnt_t_1575;// L256 -typedef unsigned long int __pthread_t_1577;// L60 -union __pthread_attr_t_1578 { -char ____size_1579[56];// L65 -long int ____align_1580;// L66 -}; -typedef union __pthread_attr_t_1578 __pthread_attr_t_1581;// L69 -struct ____pthread_internal_list_1583 { -struct __forward_tag_reference_1582 * (____prev_1584);// L0 -struct __forward_tag_reference_1582 * (____next_1585);// L0 -}; -typedef struct ____pthread_internal_list_1583 ____pthread_list_t_1586;// L75:L79 -typedef struct ____pthread_internal_list_1583 ____pthread_list_t_1587;// L75:L79 -struct ____pthread_mutex_s_1588 { -int ____lock_1589;// L94 -unsigned int ____count_1590;// L95 -int ____owner_1591;// L96 -unsigned int ____nusers_1592;// L98 -int ____kind_1593;// L102 -short ____spins_1594;// L104 -short ____elision_1595;// L105 -____pthread_list_t_1586 ____list_1596;// L0 -____pthread_list_t_1587 ____list_1597;// L0 -}; -union ____anonymous_tag_1598_1599 { -struct ____pthread_mutex_s_1588 ____data_1600;// L92 -char ____size_1601[40];// L126 -long int ____align_1602;// L127 -}; -typedef union ____anonymous_tag_1598_1599 __pthread_mutex_t_1603;// L90:L128 -union ____anonymous_tag_1604_1605 { -char ____size_1606[4];// L132 -int ____align_1607;// L133 -}; -typedef union ____anonymous_tag_1604_1605 __pthread_mutexattr_t_1608;// L130:L134 -typedef int (* (____compar_fn_t_1740)) (const void *, const void *);// L741 +typedef struct ____anonymous_tag_771_772 __lldiv_t_775;// L117:L121 +typedef int (* (____compar_fn_t_876)) (const void *, const void *);// L741 struct __forward_tag_reference_89 { // generated union of struct variations union { @@ -2091,11 +965,6 @@ struct ___IO_marker_90 ___IO_marker_90; }; }; -struct __forward_tag_reference_1582 { // generated union of struct variations -union { -}; -}; - struct __forward_tag_reference_58 { // generated union of struct variations union { struct ___IO_FILE_99 ___IO_FILE_99; @@ -2236,914 +1105,416 @@ extern void (___IO_free_backup_area_276) (___IO_FILE_171 *);// L469 extern void (___IO_free_backup_area_277) (___IO_FILE_172 *);// L469 // typedef moved to top of scope // typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern struct ___IO_FILE_99 * (__stdin_291);// L168 -extern struct ___IO_FILE_124 * (__stdin_292);// L168 -extern struct ___IO_FILE_99 * (__stdout_294);// L169 -extern struct ___IO_FILE_124 * (__stdout_295);// L169 -extern struct ___IO_FILE_99 * (__stderr_297);// L170 -extern struct ___IO_FILE_124 * (__stderr_298);// L170 -extern int (__remove_301) (const char * (____filename_300));// L178 -extern int (__rename_304) (const char * (____old_302), const char * (____new_303));// L180 -extern int (__renameat_309) (int ____oldfd_305, const char * (____old_306), int ____newfd_307, const char * (____new_308));// L185:L186 -extern __FILE_59 * ((__tmpfile_310) (void ));// L195 -extern __FILE_59 * ((__tmpfile_316) (void ));// L198 -extern __FILE_59 * ((__tmpfile_314) (void ));// L195 -extern __FILE_59 * ((__tmpfile_312) (void ));// L198 -extern char * ((__tmpnam_319) (char * (____s_318)));// L209 -extern char * ((__tmpnam_320) (char * (____s_318)));// L209 -extern char * ((__tmpnam_r_322) (char * (____s_321)));// L215 -extern char * ((__tmpnam_r_323) (char * (____s_321)));// L215 -extern char * ((__tempnam_326) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 -extern char * ((__tempnam_327) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 -extern int (__fclose_330) (__FILE_59 * (____stream_328));// L237 -extern int (__fclose_332) (__FILE_59 * (____stream_328));// L237 -extern int (__fflush_336) (__FILE_59 * (____stream_334));// L242 -extern int (__fflush_unlocked_340) (__FILE_59 * (____stream_338));// L252 -extern __FILE_59 * ((__fopen_344) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 -extern __FILE_59 * ((__fopen_346) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 -extern __FILE_59 * ((__fopen_354) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 -extern __FILE_59 * ((__fopen_356) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 -extern __FILE_59 * ((__freopen_362) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 -extern __FILE_59 * ((__freopen_368) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 -extern __FILE_59 * ((__freopen_366) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 -extern __FILE_59 * ((__freopen_364) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 -extern __FILE_59 * ((__fdopen_372) (int ____fd_370, const char * (____modes_371)));// L306 -extern __FILE_59 * ((__fdopen_374) (int ____fd_370, const char * (____modes_371)));// L306 -extern __FILE_59 * ((__fmemopen_379) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 -extern __FILE_59 * ((__fmemopen_381) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 -extern __FILE_59 * ((__open_memstream_385) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 -extern __FILE_59 * ((__open_memstream_387) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 -extern void (__setbuf_392) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 -extern void (__setbuf_394) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 -extern int (__setvbuf_401) (__FILE_59 * __restrict ____stream_396, char * __restrict ____buf_398, int ____modes_399, __size_t_1 ____n_400);// L336:L337 -extern void (__setbuffer_407) (__FILE_59 * __restrict ____stream_403, char * __restrict ____buf_405, __size_t_1 ____size_406);// L343:L344 -extern void (__setlinebuf_411) (__FILE_59 * (____stream_409));// L347 -extern int (__fprintf_416) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 -extern int (__fprintf_418) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 -extern int (__printf_421) (const char * __restrict ____format_420, ... );// L362 -extern int (__sprintf_424) (char * __restrict ____s_422, const char * __restrict ____format_423, ... );// L364:L365 -extern int (__vfprintf_430) (__FILE_59 * __restrict ____s_425, const char * __restrict ____format_427, ____gnuc_va_list_86 ____arg_428);// L371:L372 -extern int (__vprintf_437) (const char * __restrict ____format_434, ____gnuc_va_list_86 ____arg_435);// L377 -extern int (__vsprintf_443) (char * __restrict ____s_439, const char * __restrict ____format_440, ____gnuc_va_list_86 ____arg_441);// L379:L380 -extern int (__snprintf_448) (char * __restrict ____s_445, __size_t_1 ____maxlen_446, const char * __restrict ____format_447, ... );// L386:L388 -extern int (__vsnprintf_454) (char * __restrict ____s_449, __size_t_1 ____maxlen_450, const char * __restrict ____format_451, ____gnuc_va_list_86 ____arg_452);// L390:L392 -extern int (__vdprintf_460) (int ____fd_456, const char * __restrict ____fmt_457, ____gnuc_va_list_86 ____arg_458);// L412:L414 -extern int (__dprintf_464) (int ____fd_462, const char * __restrict ____fmt_463, ... );// L415:L416 -extern int (__fscanf_468) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__fscanf_470) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__fscanf_472) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__fscanf_474) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__scanf_477) (const char * __restrict ____format_476, ... );// L431 -extern int (__scanf_478) (const char * __restrict ____format_476, ... );// L431 -extern int (__sscanf_481) (const char * __restrict ____s_479, const char * __restrict ____format_480, ... );// L433:L434 - - - - - - - -extern int (__vfscanf_509) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 -extern int (__vfscanf_513) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 -extern int (__vscanf_520) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 -extern int (__vscanf_522) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 -extern int (__vsscanf_528) (const char * __restrict ____s_524, const char * __restrict ____format_525, ____gnuc_va_list_86 ____arg_526);// L483:L485 - - - - - -extern int (__fgetc_563) (__FILE_59 * (____stream_561));// L531 -extern int (__getc_567) (__FILE_59 * (____stream_565));// L532 -extern int (__getchar_569) (void );// L538 -extern int (__getc_unlocked_572) (__FILE_59 * (____stream_570));// L550 -extern int (__getchar_unlocked_574) (void );// L551 -extern int (__fgetc_unlocked_577) (__FILE_59 * (____stream_575));// L561 -extern int (__fputc_582) (int ____c_579, __FILE_59 * (____stream_580));// L573 -extern int (__fputc_584) (int ____c_579, __FILE_59 * (____stream_580));// L573 -extern int (__putc_589) (int ____c_586, __FILE_59 * (____stream_587));// L574 -extern int (__putchar_592) (int ____c_591);// L580 -extern int (__fputc_unlocked_596) (int ____c_593, __FILE_59 * (____stream_594));// L594 -extern int (__putc_unlocked_601) (int ____c_598, __FILE_59 * (____stream_599));// L602 -extern int (__putchar_unlocked_604) (int ____c_603);// L603 -extern int (__getw_607) (__FILE_59 * (____stream_605));// L610 -extern int (__putw_612) (int ____w_609, __FILE_59 * (____stream_610));// L613 -extern char * ((__fgets_618) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern char * ((__fgets_620) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern char * ((__fgets_622) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern char * ((__fgets_624) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern ____ssize_t_49 (____getdelim_631) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 -extern ____ssize_t_49 (____getdelim_635) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 -extern ____ssize_t_49 (__getdelim_644) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 -extern ____ssize_t_49 (__getdelim_648) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 -extern ____ssize_t_49 (__getline_656) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 -extern ____ssize_t_49 (__getline_660) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 -extern int (__fputs_667) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 -extern int (__fputs_669) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 -extern int (__puts_672) (const char * (____s_671));// L695 -extern int (__ungetc_676) (int ____c_673, __FILE_59 * (____stream_674));// L702 -extern int (__fseek_714) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 -extern int (__fseek_716) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 -extern long int (__ftell_720) (__FILE_59 * (____stream_718));// L754 -extern long int (__ftell_722) (__FILE_59 * (____stream_718));// L754 -extern void (__rewind_726) (__FILE_59 * (____stream_724));// L759 -extern int (__fseeko_733) (__FILE_59 * (____stream_728), ____off_t_23 ____off_730, int ____whence_732);// L773 -extern int (__fseeko_744) (__FILE_59 * (____stream_739), ____off64_t_24 ____off_741, int ____whence_743);// L781:L783 -extern ____off_t_23 (__ftello_758) (__FILE_59 * (____stream_737));// L778 -extern ____off_t_23 (__ftello_750) (__FILE_59 * (____stream_737));// L778 -extern int (__fgetpos_766) (__FILE_59 * __restrict ____stream_762, __fpos_t_287 * __restrict ____pos_764);// L798 -extern ____off64_t_24 (__ftello_754) (__FILE_59 * (____stream_748));// L784 -extern int (__fgetpos_778) (__FILE_59 * __restrict ____stream_774, __fpos_t_289 * __restrict ____pos_776);// L806:L807 -extern int (__fsetpos_786) (__FILE_59 * (____stream_770), const __fpos_t_287 * (____pos_772));// L803 -extern int (__fsetpos_790) (__FILE_59 * (____stream_782), const __fpos_t_289 * (____pos_784));// L808:L809 -extern void (__clearerr_796) (__FILE_59 * (____stream_794));// L826 -extern int (__feof_800) (__FILE_59 * (____stream_798));// L828 -extern int (__feof_802) (__FILE_59 * (____stream_798));// L828 -extern int (__ferror_806) (__FILE_59 * (____stream_804));// L830 -extern int (__ferror_808) (__FILE_59 * (____stream_804));// L830 -extern void (__clearerr_unlocked_812) (__FILE_59 * (____stream_810));// L835 -extern int (__feof_unlocked_816) (__FILE_59 * (____stream_814));// L836 -extern int (__feof_unlocked_818) (__FILE_59 * (____stream_814));// L836 -extern int (__ferror_unlocked_822) (__FILE_59 * (____stream_820));// L837 -extern int (__ferror_unlocked_824) (__FILE_59 * (____stream_820));// L837 -extern void (__perror_827) (const char * (____s_826));// L846 -extern void (__perror_828) (const char * (____s_826));// L846 -extern int __sys_nerr_829;// L26 - -extern int (__fileno_835) (__FILE_59 * (____stream_831));// L858 -extern int (__fileno_833) (__FILE_59 * (____stream_831));// L858 -extern int (__fileno_unlocked_841) (__FILE_59 * (____stream_837));// L863 -extern int (__fileno_unlocked_839) (__FILE_59 * (____stream_837));// L863 -extern __FILE_59 * ((__popen_845) (const char * (____command_843), const char * (____modes_844)));// L872 -extern __FILE_59 * ((__popen_847) (const char * (____command_843), const char * (____modes_844)));// L872 -extern int (__pclose_851) (__FILE_59 * (____stream_849));// L878 -extern char * ((__ctermid_854) (char * (____s_853)));// L884 -extern void (__flockfile_857) (__FILE_59 * (____stream_855));// L912 -extern int (__ftrylockfile_861) (__FILE_59 * (____stream_859));// L916 -extern int (__ftrylockfile_863) (__FILE_59 * (____stream_859));// L916 -extern void (__funlockfile_867) (__FILE_59 * (____stream_865));// L919 -/* no function due to type errors in the function prototype */ +extern struct ___IO_FILE_99 * (__stdin_283);// L168 +extern struct ___IO_FILE_124 * (__stdin_284);// L168 +extern struct ___IO_FILE_99 * (__stdout_286);// L169 +extern struct ___IO_FILE_124 * (__stdout_287);// L169 +extern struct ___IO_FILE_99 * (__stderr_289);// L170 +extern struct ___IO_FILE_124 * (__stderr_290);// L170 +extern int (__remove_293) (const char * (____filename_292));// L178 +extern int (__rename_296) (const char * (____old_294), const char * (____new_295));// L180 +extern __FILE_59 * ((__tmpfile_297) (void ));// L195 +extern __FILE_59 * ((__tmpfile_303) (void ));// L198 +extern __FILE_59 * ((__tmpfile_301) (void ));// L195 +extern __FILE_59 * ((__tmpfile_299) (void ));// L198 +extern char * ((__tmpnam_306) (char * (____s_305)));// L209 +extern char * ((__tmpnam_307) (char * (____s_305)));// L209 +extern int (__fclose_310) (__FILE_59 * (____stream_308));// L237 +extern int (__fflush_314) (__FILE_59 * (____stream_312));// L242 +extern __FILE_59 * ((__fopen_318) (const char * __restrict ____filename_316, const char * __restrict ____modes_317));// L272:L273 +extern __FILE_59 * ((__fopen_320) (const char * __restrict ____filename_316, const char * __restrict ____modes_317));// L272:L273 +extern __FILE_59 * ((__fopen_328) (const char * __restrict ____filename_326, const char * __restrict ____modes_327));// L283:L285 +extern __FILE_59 * ((__fopen_330) (const char * __restrict ____filename_326, const char * __restrict ____modes_327));// L283:L285 +extern __FILE_59 * ((__freopen_336) (const char * __restrict ____filename_322, const char * __restrict ____modes_323, __FILE_59 * __restrict ____stream_324));// L278:L280 +extern __FILE_59 * ((__freopen_342) (const char * __restrict ____filename_332, const char * __restrict ____modes_333, __FILE_59 * __restrict ____stream_334));// L286:L289 +extern __FILE_59 * ((__freopen_340) (const char * __restrict ____filename_322, const char * __restrict ____modes_323, __FILE_59 * __restrict ____stream_324));// L278:L280 +extern __FILE_59 * ((__freopen_338) (const char * __restrict ____filename_332, const char * __restrict ____modes_333, __FILE_59 * __restrict ____stream_334));// L286:L289 +extern void (__setbuf_347) (__FILE_59 * __restrict ____stream_344, char * __restrict ____buf_346);// L332 +extern int (__setvbuf_354) (__FILE_59 * __restrict ____stream_349, char * __restrict ____buf_351, int ____modes_352, __size_t_1 ____n_353);// L336:L337 +extern int (__fprintf_359) (__FILE_59 * __restrict ____stream_356, const char * __restrict ____format_358, ... );// L356:L357 +extern int (__printf_362) (const char * __restrict ____format_361, ... );// L362 +extern int (__sprintf_365) (char * __restrict ____s_363, const char * __restrict ____format_364, ... );// L364:L365 +extern int (__vfprintf_371) (__FILE_59 * __restrict ____s_366, const char * __restrict ____format_368, ____gnuc_va_list_86 ____arg_369);// L371:L372 +extern int (__vprintf_378) (const char * __restrict ____format_375, ____gnuc_va_list_86 ____arg_376);// L377 +extern int (__vsprintf_384) (char * __restrict ____s_380, const char * __restrict ____format_381, ____gnuc_va_list_86 ____arg_382);// L379:L380 +extern int (__snprintf_389) (char * __restrict ____s_386, __size_t_1 ____maxlen_387, const char * __restrict ____format_388, ... );// L386:L388 +extern int (__vsnprintf_395) (char * __restrict ____s_390, __size_t_1 ____maxlen_391, const char * __restrict ____format_392, ____gnuc_va_list_86 ____arg_393);// L390:L392 +extern int (__fscanf_400) (__FILE_59 * __restrict ____stream_397, const char * __restrict ____format_399, ... );// L425:L426 +extern int (__fscanf_402) (__FILE_59 * __restrict ____stream_397, const char * __restrict ____format_399, ... );// L425:L426 +extern int (__scanf_405) (const char * __restrict ____format_404, ... );// L431 +extern int (__scanf_406) (const char * __restrict ____format_404, ... );// L431 +extern int (__sscanf_409) (const char * __restrict ____s_407, const char * __restrict ____format_408, ... );// L433:L434 + + + + + +extern int (__vfscanf_433) (__FILE_59 * __restrict ____s_428, const char * __restrict ____format_430, ____gnuc_va_list_86 ____arg_431);// L471:L473 +extern int (__vfscanf_437) (__FILE_59 * __restrict ____s_428, const char * __restrict ____format_430, ____gnuc_va_list_86 ____arg_431);// L471:L473 +extern int (__vscanf_444) (const char * __restrict ____format_441, ____gnuc_va_list_86 ____arg_442);// L479:L480 +extern int (__vscanf_446) (const char * __restrict ____format_441, ____gnuc_va_list_86 ____arg_442);// L479:L480 +extern int (__vsscanf_452) (const char * __restrict ____s_448, const char * __restrict ____format_449, ____gnuc_va_list_86 ____arg_450);// L483:L485 + + + + + +extern int (__fgetc_487) (__FILE_59 * (____stream_485));// L531 +extern int (__getc_491) (__FILE_59 * (____stream_489));// L532 +extern int (__getchar_493) (void );// L538 +extern int (__fputc_497) (int ____c_494, __FILE_59 * (____stream_495));// L573 +extern int (__putc_502) (int ____c_499, __FILE_59 * (____stream_500));// L574 +extern int (__putchar_505) (int ____c_504);// L580 +extern char * ((__fgets_510) (char * __restrict ____s_506, int ____n_507, __FILE_59 * __restrict ____stream_508));// L622:L623 +extern char * ((__fgets_512) (char * __restrict ____s_506, int ____n_507, __FILE_59 * __restrict ____stream_508));// L622:L623 +extern int (__fputs_517) (const char * __restrict ____s_514, __FILE_59 * __restrict ____stream_515);// L689 +extern int (__puts_520) (const char * (____s_519));// L695 +extern int (__ungetc_524) (int ____c_521, __FILE_59 * (____stream_522));// L702 +extern int (__fseek_546) (__FILE_59 * (____stream_542), long int ____off_544, int ____whence_545);// L749 +extern long int (__ftell_550) (__FILE_59 * (____stream_548));// L754 +extern long int (__ftell_552) (__FILE_59 * (____stream_548));// L754 +extern void (__rewind_556) (__FILE_59 * (____stream_554));// L759 +extern int (__fgetpos_562) (__FILE_59 * __restrict ____stream_558, __fpos_t_279 * __restrict ____pos_560);// L798 +extern int (__fgetpos_574) (__FILE_59 * __restrict ____stream_570, __fpos_t_281 * __restrict ____pos_572);// L806:L807 +extern int (__fsetpos_582) (__FILE_59 * (____stream_566), const __fpos_t_279 * (____pos_568));// L803 +extern int (__fsetpos_586) (__FILE_59 * (____stream_578), const __fpos_t_281 * (____pos_580));// L808:L809 +extern void (__clearerr_592) (__FILE_59 * (____stream_590));// L826 +extern int (__feof_596) (__FILE_59 * (____stream_594));// L828 +extern int (__feof_598) (__FILE_59 * (____stream_594));// L828 +extern int (__ferror_602) (__FILE_59 * (____stream_600));// L830 +extern int (__ferror_604) (__FILE_59 * (____stream_600));// L830 +extern void (__perror_607) (const char * (____s_606));// L846 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ +extern int (____sprintf_chk_617) (char * __restrict ____s_613, int ____flag_614, __size_t_1 ____slen_615, const char * __restrict ____format_616, ... );// L23:L24 +extern int (____vsprintf_chk_624) (char * __restrict ____s_618, int ____flag_619, __size_t_1 ____slen_620, const char * __restrict ____format_621, ____gnuc_va_list_86 ____ap_622);// L25:L27 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ +extern int (____snprintf_chk_638) (char * __restrict ____s_633, __size_t_1 ____n_634, int ____flag_635, __size_t_1 ____slen_636, const char * __restrict ____format_637, ... );// L52:L54 +extern int (____vsnprintf_chk_646) (char * __restrict ____s_639, __size_t_1 ____n_640, int ____flag_641, __size_t_1 ____slen_642, const char * __restrict ____format_643, ____gnuc_va_list_86 ____ap_644);// L55:L57 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ +extern int (____fprintf_chk_661) (__FILE_59 * __restrict ____stream_657, int ____flag_659, const char * __restrict ____format_660, ... );// L85:L86 +extern int (____printf_chk_665) (int ____flag_663, const char * __restrict ____format_664, ... );// L87 +extern int (____vfprintf_chk_672) (__FILE_59 * __restrict ____stream_666, int ____flag_668, const char * __restrict ____format_669, ____gnuc_va_list_86 ____ap_670);// L88:L89 +extern int (____vprintf_chk_680) (int ____flag_676, const char * __restrict ____format_677, ____gnuc_va_list_86 ____ap_678);// L90:L91 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____sprintf_chk_899) (char * __restrict ____s_895, int ____flag_896, __size_t_1 ____slen_897, const char * __restrict ____format_898, ... );// L23:L24 -extern int (____vsprintf_chk_906) (char * __restrict ____s_900, int ____flag_901, __size_t_1 ____slen_902, const char * __restrict ____format_903, ____gnuc_va_list_86 ____ap_904);// L25:L27 /* no function due to type errors in the function prototype */ +extern char * ((____fgets_chk_704) (char * __restrict ____s_699, __size_t_1 ____size_700, int ____n_701, __FILE_59 * __restrict ____stream_702));// L241:L242 +extern char * ((____fgets_chk_706) (char * __restrict ____s_699, __size_t_1 ____size_700, int ____n_701, __FILE_59 * __restrict ____stream_702));// L241:L242 +extern char * ((____fgets_alias_712) (char * __restrict ____s_708, int ____n_709, __FILE_59 * __restrict ____stream_710));// L243:L245 +extern char * ((____fgets_chk_warn_719) (char * __restrict ____s_714, __size_t_1 ____size_715, int ____n_716, __FILE_59 * __restrict ____stream_717));// L246:L250 /* no function due to type errors in the function prototype */ -extern int (____snprintf_chk_920) (char * __restrict ____s_915, __size_t_1 ____n_916, int ____flag_917, __size_t_1 ____slen_918, const char * __restrict ____format_919, ... );// L52:L54 -extern int (____vsnprintf_chk_928) (char * __restrict ____s_921, __size_t_1 ____n_922, int ____flag_923, __size_t_1 ____slen_924, const char * __restrict ____format_925, ____gnuc_va_list_86 ____ap_926);// L55:L57 -/* no function due to type errors in the function prototype */ +// typedef moved to top of scope +// typedef moved to top of scope /* no function due to type errors in the function prototype */ -extern int (____fprintf_chk_943) (__FILE_59 * __restrict ____stream_939, int ____flag_941, const char * __restrict ____format_942, ... );// L85:L86 -extern int (____printf_chk_947) (int ____flag_945, const char * __restrict ____format_946, ... );// L87 -extern int (____vfprintf_chk_954) (__FILE_59 * __restrict ____stream_948, int ____flag_950, const char * __restrict ____format_951, ____gnuc_va_list_86 ____ap_952);// L88:L89 -extern int (____vprintf_chk_962) (int ____flag_958, const char * __restrict ____format_959, ____gnuc_va_list_86 ____ap_960);// L90:L91 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern __size_t_1 (____ctype_get_mb_cur_max_776) (void );// L139 +extern __size_t_756 (____ctype_get_mb_cur_max_777) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_778) (void );// L139 +extern __size_t_756 (____ctype_get_mb_cur_max_779) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_780) (void );// L139 +extern __size_t_756 (____ctype_get_mb_cur_max_781) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_782) (void );// L139 +extern __size_t_756 (____ctype_get_mb_cur_max_783) (void );// L139 +extern double (__atof_785) (const char * (____nptr_784));// L144:L145 +extern double (__atof_786) (const char * (____nptr_784));// L144:L145 +extern int (__atoi_788) (const char * (____nptr_787));// L147:L148 +extern int (__atoi_789) (const char * (____nptr_787));// L147:L148 +extern long int (__atol_791) (const char * (____nptr_790));// L150:L151 +extern long int (__atol_792) (const char * (____nptr_790));// L150:L151 +extern long long int (__atoll_794) (const char * (____nptr_793));// L157:L158 +extern long long int (__atoll_795) (const char * (____nptr_793));// L157:L158 +extern double (__strtod_798) (const char * __restrict ____nptr_796, char * (* __restrict ____endptr_797));// L164:L166 +extern float (__strtof_801) (const char * __restrict ____nptr_799, char * (* __restrict ____endptr_800));// L172:L173 +extern long double (__strtold_804) (const char * __restrict ____nptr_802, char * (* __restrict ____endptr_803));// L175:L177 +extern long int (__strtol_808) (const char * __restrict ____nptr_805, char * (* __restrict ____endptr_806), int ____base_807);// L183:L185 +extern unsigned long int (__strtoul_812) (const char * __restrict ____nptr_809, char * (* __restrict ____endptr_810), int ____base_811);// L187:L189 +extern long long int (__strtoll_816) (const char * __restrict ____nptr_813, char * (* __restrict ____endptr_814), int ____base_815);// L209:L211 +extern unsigned long long int (__strtoull_820) (const char * __restrict ____nptr_817, char * (* __restrict ____endptr_818), int ____base_819);// L214:L216 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ +__extension__/* no function due to type errors in the function prototype */ +extern int (__rand_824) (void );// L374 +extern int (__rand_825) (void );// L374 +extern void (__srand_827) (unsigned int ____seed_826);// L376 +extern void * ((__malloc_830) (__size_t_1 ____size_828));// L466 +extern void * ((__malloc_831) (__size_t_756 ____size_829));// L466 +extern void * ((__malloc_832) (__size_t_1 ____size_828));// L466 +extern void * ((__malloc_833) (__size_t_756 ____size_829));// L466 +extern void * ((__calloc_838) (__size_t_1 ____nmemb_834, __size_t_1 ____size_836));// L468:L469 +extern void * ((__calloc_839) (__size_t_756 ____nmemb_835, __size_t_756 ____size_837));// L468:L469 +extern void * ((__calloc_840) (__size_t_1 ____nmemb_834, __size_t_1 ____size_836));// L468:L469 +extern void * ((__calloc_841) (__size_t_756 ____nmemb_835, __size_t_756 ____size_837));// L468:L469 +extern void * ((__realloc_845) (void * (____ptr_842), __size_t_1 ____size_843));// L480:L481 +extern void * ((__realloc_846) (void * (____ptr_842), __size_t_756 ____size_844));// L480:L481 +extern void * ((__realloc_847) (void * (____ptr_842), __size_t_1 ____size_843));// L480:L481 +extern void * ((__realloc_848) (void * (____ptr_842), __size_t_756 ____size_844));// L480:L481 +extern void (__free_850) (void * (____ptr_849));// L483 +extern void * ((__aligned_alloc_855) (__size_t_1 ____alignment_851, __size_t_1 ____size_853));// L509:L510 +extern void * ((__aligned_alloc_856) (__size_t_756 ____alignment_852, __size_t_756 ____size_854));// L509:L510 +extern void * ((__aligned_alloc_857) (__size_t_1 ____alignment_851, __size_t_1 ____size_853));// L509:L510 +extern void * ((__aligned_alloc_858) (__size_t_756 ____alignment_852, __size_t_756 ____size_854));// L509:L510 +extern void (__abort_859) (void );// L515 +extern int (__atexit_861) (void (* (____func_860)) (void ));// L519 +extern int (__at_quick_exit_863) (void (* (____func_862)) (void ));// L527 +extern void (__exit_865) (int ____status_864);// L543 +extern void (__quick_exit_867) (int ____status_866);// L549 +extern void (___Exit_869) (int ____status_868);// L557 +extern char * ((__getenv_871) (const char * (____name_870)));// L564 +extern char * ((__getenv_872) (const char * (____name_870)));// L564 +extern int (__system_874) (const char * (____command_873));// L716 +extern int (__system_875) (const char * (____command_873));// L716 +// typedef moved to top of scope +extern void * ((__bsearch_887) (const void * (____key_877), const void * (____base_878), __size_t_1 ____nmemb_879, __size_t_1 ____size_881, ____compar_fn_t_876 ____compar_883));// L754:L756 +extern void * ((__bsearch_888) (const void * (____key_877), const void * (____base_878), __size_t_756 ____nmemb_880, __size_t_756 ____size_882, ____compar_fn_t_876 ____compar_883));// L754:L756 +extern void * ((__bsearch_891) (const void * (____key_877), const void * (____base_878), __size_t_1 ____nmemb_879, __size_t_1 ____size_881, ____compar_fn_t_876 ____compar_883));// L754:L756 +extern void * ((__bsearch_892) (const void * (____key_877), const void * (____base_878), __size_t_756 ____nmemb_880, __size_t_756 ____size_882, ____compar_fn_t_876 ____compar_883));// L754:L756 /* no function due to type errors in the function prototype */ +extern void (__qsort_920) (void * (____base_913), __size_t_1 ____nmemb_914, __size_t_1 ____size_916, ____compar_fn_t_876 ____compar_918);// L764:L765 +extern void (__qsort_922) (void * (____base_913), __size_t_756 ____nmemb_915, __size_t_756 ____size_917, ____compar_fn_t_876 ____compar_918);// L764:L765 +extern void (__qsort_924) (void * (____base_913), __size_t_1 ____nmemb_914, __size_t_1 ____size_916, ____compar_fn_t_876 ____compar_918);// L764:L765 +extern void (__qsort_926) (void * (____base_913), __size_t_756 ____nmemb_915, __size_t_756 ____size_917, ____compar_fn_t_876 ____compar_918);// L764:L765 +extern int (__abs_929) (int ____x_928);// L774 +extern int (__abs_930) (int ____x_928);// L774 +extern long int (__labs_932) (long int ____x_931);// L775 +extern long int (__labs_933) (long int ____x_931);// L775 +extern long long int (__llabs_935) (long long int ____x_934);// L779:L780 +extern long long int (__llabs_936) (long long int ____x_934);// L779:L780 +extern __div_t_765 (__div_939) (int ____numer_937, int ____denom_938);// L788:L789 +extern __div_t_765 (__div_940) (int ____numer_937, int ____denom_938);// L788:L789 +extern __ldiv_t_770 (__ldiv_943) (long int ____numer_941, long int ____denom_942);// L790:L791 +extern __ldiv_t_770 (__ldiv_945) (long int ____numer_941, long int ____denom_942);// L790:L791 +extern __lldiv_t_775 (__lldiv_949) (long long int ____numer_947, long long int ____denom_948);// L796:L798 +extern __lldiv_t_775 (__lldiv_951) (long long int ____numer_947, long long int ____denom_948);// L796:L798 +extern int (__mblen_956) (const char * (____s_953), __size_t_1 ____n_954);// L862 +extern int (__mblen_957) (const char * (____s_953), __size_t_756 ____n_955);// L862 +extern int (__mbtowc_963) (__wchar_t_759 * __restrict ____pwc_958, const char * __restrict ____s_960, __size_t_1 ____n_961);// L865:L866 +extern int (__mbtowc_964) (__wchar_t_760 * __restrict ____pwc_959, const char * __restrict ____s_960, __size_t_1 ____n_961);// L865:L866 +extern int (__mbtowc_965) (__wchar_t_760 * __restrict ____pwc_959, const char * __restrict ____s_960, __size_t_756 ____n_962);// L865:L866 +extern int (__wctomb_969) (char * (____s_966), __wchar_t_759 ____wchar_967);// L869 +extern int (__wctomb_970) (char * (____s_966), __wchar_t_760 ____wchar_968);// L869 +extern __size_t_1 (__mbstowcs_976) (__wchar_t_759 * __restrict ____pwcs_971, const char * __restrict ____s_973, __size_t_1 ____n_974);// L873:L874 +extern __size_t_1 (__mbstowcs_977) (__wchar_t_760 * __restrict ____pwcs_972, const char * __restrict ____s_973, __size_t_1 ____n_974);// L873:L874 +extern __size_t_756 (__mbstowcs_978) (__wchar_t_760 * __restrict ____pwcs_972, const char * __restrict ____s_973, __size_t_756 ____n_975);// L873:L874 +extern __size_t_1 (__wcstombs_984) (char * __restrict ____s_979, const __wchar_t_759 * __restrict ____pwcs_980, __size_t_1 ____n_982);// L876:L878 +extern __size_t_1 (__wcstombs_985) (char * __restrict ____s_979, const __wchar_t_760 * __restrict ____pwcs_981, __size_t_1 ____n_982);// L876:L878 +extern __size_t_756 (__wcstombs_986) (char * __restrict ____s_979, const __wchar_t_760 * __restrict ____pwcs_981, __size_t_756 ____n_983);// L876:L878 /* no function due to type errors in the function prototype */ -extern int (____dprintf_chk_984) (int ____fd_981, int ____flag_982, const char * __restrict ____fmt_983, ... );// L131:L132 -extern int (____vdprintf_chk_990) (int ____fd_985, int ____flag_986, const char * __restrict ____fmt_987, ____gnuc_va_list_86 ____arg_988);// L133:L135 +extern char * ((____realpath_chk_992) (const char * __restrict ____name_988, char * __restrict ____resolved_989, __size_t_1 ____resolvedlen_990));// L23:L25 +extern char * ((____realpath_chk_993) (const char * __restrict ____name_988, char * __restrict ____resolved_989, __size_t_756 ____resolvedlen_991));// L23:L25 +extern char * ((____realpath_alias_996) (const char * __restrict ____name_994, char * __restrict ____resolved_995));// L26:L28 +extern char * ((____realpath_chk_warn_1001) (const char * __restrict ____name_997, char * __restrict ____resolved_998, __size_t_1 ____resolvedlen_999));// L29:L34 +extern char * ((____realpath_chk_warn_1002) (const char * __restrict ____name_997, char * __restrict ____resolved_998, __size_t_756 ____resolvedlen_1000));// L29:L34 /* no function due to type errors in the function prototype */ +extern int (____ptsname_r_chk_1012) (int ____fd_1006, char * (____buf_1007), __size_t_1 ____buflen_1008, __size_t_1 ____nreal_1010);// L52:L53 +extern int (____ptsname_r_chk_1013) (int ____fd_1006, char * (____buf_1007), __size_t_756 ____buflen_1009, __size_t_756 ____nreal_1011);// L52:L53 +extern int (____ptsname_r_alias_1018) (int ____fd_1014, char * (____buf_1015), __size_t_1 ____buflen_1016);// L54:L56 +extern int (____ptsname_r_alias_1019) (int ____fd_1014, char * (____buf_1015), __size_t_756 ____buflen_1017);// L54:L56 +extern int (____ptsname_r_chk_warn_1026) (int ____fd_1020, char * (____buf_1021), __size_t_1 ____buflen_1022, __size_t_1 ____nreal_1024);// L57:L61 +extern int (____ptsname_r_chk_warn_1027) (int ____fd_1020, char * (____buf_1021), __size_t_756 ____buflen_1023, __size_t_756 ____nreal_1025);// L57:L61 /* no function due to type errors in the function prototype */ -extern char * ((____fgets_chk_1004) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 -extern char * ((____fgets_chk_1006) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 -extern char * ((____fgets_chk_1008) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 -extern char * ((____fgets_alias_1014) (char * __restrict ____s_1010, int ____n_1011, __FILE_59 * __restrict ____stream_1012));// L243:L245 -extern char * ((____fgets_chk_warn_1021) (char * __restrict ____s_1016, __size_t_1 ____size_1017, int ____n_1018, __FILE_59 * __restrict ____stream_1019));// L246:L250 +extern int (____wctomb_chk_1038) (char * (____s_1034), __wchar_t_760 ____wchar_1035, __size_t_1 ____buflen_1036);// L77:L78 +extern int (____wctomb_chk_1039) (char * (____s_1034), __wchar_t_760 ____wchar_1035, __size_t_756 ____buflen_1037);// L77:L78 +extern int (____wctomb_alias_1042) (char * (____s_1040), __wchar_t_760 ____wchar_1041);// L79:L80 /* no function due to type errors in the function prototype */ +extern __size_t_1 (____mbstowcs_chk_1051) (__wchar_t_760 * __restrict ____dst_1045, const char * __restrict ____src_1046, __size_t_1 ____len_1047, __size_t_1 ____dstlen_1049);// L98:L100 +extern __size_t_756 (____mbstowcs_chk_1052) (__wchar_t_760 * __restrict ____dst_1045, const char * __restrict ____src_1046, __size_t_756 ____len_1048, __size_t_756 ____dstlen_1050);// L98:L100 +extern __size_t_1 (____mbstowcs_alias_1057) (__wchar_t_760 * __restrict ____dst_1053, const char * __restrict ____src_1054, __size_t_1 ____len_1055);// L101:L104 +extern __size_t_756 (____mbstowcs_alias_1058) (__wchar_t_760 * __restrict ____dst_1053, const char * __restrict ____src_1054, __size_t_756 ____len_1056);// L101:L104 +extern __size_t_1 (____mbstowcs_chk_warn_1065) (__wchar_t_760 * __restrict ____dst_1059, const char * __restrict ____src_1060, __size_t_1 ____len_1061, __size_t_1 ____dstlen_1063);// L105:L110 +extern __size_t_756 (____mbstowcs_chk_warn_1066) (__wchar_t_760 * __restrict ____dst_1059, const char * __restrict ____src_1060, __size_t_756 ____len_1062, __size_t_756 ____dstlen_1064);// L105:L110 /* no function due to type errors in the function prototype */ +extern __size_t_1 (____wcstombs_chk_1077) (char * __restrict ____dst_1071, const __wchar_t_760 * __restrict ____src_1072, __size_t_1 ____len_1073, __size_t_1 ____dstlen_1075);// L130:L132 +extern __size_t_756 (____wcstombs_chk_1078) (char * __restrict ____dst_1071, const __wchar_t_760 * __restrict ____src_1072, __size_t_756 ____len_1074, __size_t_756 ____dstlen_1076);// L130:L132 +extern __size_t_1 (____wcstombs_alias_1083) (char * __restrict ____dst_1079, const __wchar_t_760 * __restrict ____src_1080, __size_t_1 ____len_1081);// L133:L136 +extern __size_t_756 (____wcstombs_alias_1084) (char * __restrict ____dst_1079, const __wchar_t_760 * __restrict ____src_1080, __size_t_756 ____len_1082);// L133:L136 +extern __size_t_1 (____wcstombs_chk_warn_1091) (char * __restrict ____dst_1085, const __wchar_t_760 * __restrict ____src_1086, __size_t_1 ____len_1087, __size_t_1 ____dstlen_1089);// L137:L141 +extern __size_t_756 (____wcstombs_chk_warn_1092) (char * __restrict ____dst_1085, const __wchar_t_760 * __restrict ____src_1086, __size_t_756 ____len_1088, __size_t_756 ____dstlen_1090);// L137:L141 /* no function due to type errors in the function prototype */ -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -static __inline unsigned int (____bswap_32_1158) (unsigned int ____bsx_1157) { +void (__run_cgi_child_1109) () { -if (__static_condition_default_1159) { +if (__static_condition_default_1111) { { { -__static_type_error("invalid type found in return expression"); -} -} +__FILE_59 * (__dbg_1097)= fopen ("con","w");// L8 +__FILE_59 * (__dbg_1099)= fopen ("con","w");// L8 +if (__static_condition_default_1101) { +__static_type_error("invalid declaration of dbg under this presence condition"); } + +if (__static_condition_default_1102) { +__static_type_error("invalid declaration of dbg under this presence condition"); } -static __inline ____uint64_t_13 (____bswap_64_1162) (____uint64_t_13 ____bsx_1160) { -if (__static_condition_default_1164) { +__FILE_59 * (__dbg_1103)= fopen ("/dev/tty","w");// L10 -{ -{ +__FILE_59 * (__dbg_1105)= fopen ("/dev/tty","w");// L10 +if (__static_condition_default_1107) { +__static_type_error("invalid declaration of dbg under this presence condition"); +} +if (__static_condition_default_1108) { +__static_type_error("invalid declaration of dbg under this presence condition"); +} -__static_type_error("invalid type found in return expression"); +if (__static_condition_default_1112) { + __fprintf_359 ( __dbg_1097 ,"Environment\n") ; // L15 +} +if (__static_condition_default_1113) { + __fprintf_359 ( __dbg_1099 ,"Environment\n") ; // L15 +} +if (__static_condition_default_1114) { + __fprintf_359 ( __dbg_1103 ,"Environment\n") ; // L15 +} +if (__static_condition_default_1115) { + __fprintf_359 ( __dbg_1105 ,"Environment\n") ; // L15 +} +if (__static_condition_default_1116) { +__static_type_error("type error") ; // L15 +} +if (__static_condition_default_1117) { +if ( rand( ) % 2 )// L18 +{ +return ;// L19 +} +} +if (__static_condition_default_1118) { +if ( rand( ) % 2 )// L18 +{ +return ;// L19 +} +} +if (__static_condition_default_1119) { +fclose ( __dbg_1097 ) ; // L22 +} +if (__static_condition_default_1120) { +fclose ( __dbg_1099 ) ; // L22 +} +if (__static_condition_default_1121) { +fclose ( __dbg_1103 ) ; // L22 +} +if (__static_condition_default_1122) { +fclose ( __dbg_1105 ) ; // L22 +} +if (__static_condition_default_1123) { +__static_type_error("type error") ; // L22 +} +if (__static_condition_default_1124) { +if ( rand( ) % 2 )// L18 +{ +return ;// L19 +} +} +if (__static_condition_default_1125) { +if ( rand( ) % 2 )// L18 +{ +return ;// L19 +} +} +return ;// L24 } } } } -static __inline ____uint64_t_1112 (____bswap_64_1163) (____uint64_t_1112 ____bsx_1161) { +void (__run_cgi_child_1110) () { -if (__static_condition_default_1165) { +if (__static_condition_default_1126) { { { -__static_type_error("invalid type found in return expression"); -} -} +__FILE_59 * (__dbg_1098)= fopen ("con","w");// L8 +__FILE_59 * (__dbg_1100)= fopen ("con","w");// L8 +if (__static_condition_default_1101) { +__static_type_error("invalid declaration of dbg under this presence condition"); } + +if (__static_condition_default_1102) { +__static_type_error("invalid declaration of dbg under this presence condition"); } -union __wait_1177 ;// L66 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern __size_t_1 (____ctype_get_mb_cur_max_1201) (void );// L139 -extern __size_t_1093 (____ctype_get_mb_cur_max_1202) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_1203) (void );// L139 -extern __size_t_1093 (____ctype_get_mb_cur_max_1204) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_1205) (void );// L139 -extern __size_t_1093 (____ctype_get_mb_cur_max_1206) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_1207) (void );// L139 -extern __size_t_1093 (____ctype_get_mb_cur_max_1208) (void );// L139 -extern double (__atof_1210) (const char * (____nptr_1209));// L144:L145 -extern double (__atof_1211) (const char * (____nptr_1209));// L144:L145 -extern int (__atoi_1213) (const char * (____nptr_1212));// L147:L148 -extern int (__atoi_1214) (const char * (____nptr_1212));// L147:L148 -extern long int (__atol_1216) (const char * (____nptr_1215));// L150:L151 -extern long int (__atol_1217) (const char * (____nptr_1215));// L150:L151 -extern long long int (__atoll_1219) (const char * (____nptr_1218));// L157:L158 -extern long long int (__atoll_1220) (const char * (____nptr_1218));// L157:L158 -extern double (__strtod_1223) (const char * __restrict ____nptr_1221, char * (* __restrict ____endptr_1222));// L164:L166 -extern float (__strtof_1226) (const char * __restrict ____nptr_1224, char * (* __restrict ____endptr_1225));// L172:L173 -extern long double (__strtold_1229) (const char * __restrict ____nptr_1227, char * (* __restrict ____endptr_1228));// L175:L177 -extern long int (__strtol_1233) (const char * __restrict ____nptr_1230, char * (* __restrict ____endptr_1231), int ____base_1232);// L183:L185 -extern unsigned long int (__strtoul_1237) (const char * __restrict ____nptr_1234, char * (* __restrict ____endptr_1235), int ____base_1236);// L187:L189 -extern long long int (__strtoq_1241) (const char * __restrict ____nptr_1238, char * (* __restrict ____endptr_1239), int ____base_1240);// L195:L197 -extern unsigned long long int (__strtouq_1245) (const char * __restrict ____nptr_1242, char * (* __restrict ____endptr_1243), int ____base_1244);// L200:L202 -extern long long int (__strtoll_1249) (const char * __restrict ____nptr_1246, char * (* __restrict ____endptr_1247), int ____base_1248);// L209:L211 -extern long long int (__strtoll_1250) (const char * __restrict ____nptr_1246, char * (* __restrict ____endptr_1247), int ____base_1248);// L209:L211 -extern unsigned long long int (__strtoull_1254) (const char * __restrict ____nptr_1251, char * (* __restrict ____endptr_1252), int ____base_1253);// L214:L216 -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -__extension__/* no function due to type errors in the function prototype */ -extern char * ((__l64a_1259) (long int ____n_1258));// L305 -extern char * ((__l64a_1260) (long int ____n_1258));// L305 -extern long int (__a64l_1262) (const char * (____s_1261));// L308:L309 -extern long int (__a64l_1263) (const char * (____s_1261));// L308:L309 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -static __inline unsigned int (____bswap_32_1452) (unsigned int ____bsx_1451) { - -if (__static_condition_default_1453) { - -{ -{ - - - -__static_type_error("invalid type found in return expression"); -} -} - - -} -} -static __inline ____uint64_t_13 (____bswap_64_1456) (____uint64_t_13 ____bsx_1454) { - -if (__static_condition_default_1458) { - -{ -{ - - - -__static_type_error("invalid type found in return expression"); -} -} - - -} -} -static __inline ____uint64_t_1275 (____bswap_64_1457) (____uint64_t_1275 ____bsx_1455) { - -if (__static_condition_default_1459) { - -{ -{ +__FILE_59 * (__dbg_1104)= fopen ("/dev/tty","w");// L10 +__FILE_59 * (__dbg_1106)= fopen ("/dev/tty","w");// L10 -__static_type_error("invalid type found in return expression"); -} -} - - -} -} -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -struct __timespec_1466 ;// L120 - -struct __timeval_1476 ;// L30 - -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern int (__select_1513) (int ____nfds_1502, __fd_set_1499 * __restrict ____readfds_1503, __fd_set_1499 * __restrict ____writefds_1505, __fd_set_1499 * __restrict ____exceptfds_1507, struct __timeval_1476 * __restrict ____timeout_1510);// L106:L109 -extern int (__select_1514) (int ____nfds_1502, __fd_set_1499 * __restrict ____readfds_1503, __fd_set_1499 * __restrict ____writefds_1505, __fd_set_1499 * __restrict ____exceptfds_1507, struct __forward_tag_reference_1509 * __restrict ____timeout_1512);// L106:L109 -extern int (__pselect_1529) (int ____nfds_1517, __fd_set_1499 * __restrict ____readfds_1518, __fd_set_1499 * __restrict ____writefds_1520, __fd_set_1499 * __restrict ____exceptfds_1522, const struct __timespec_1466 * __restrict ____timeout_1525, const ____sigset_t_1464 * __restrict ____sigmask_1528);// L118:L122 -extern int (__pselect_1530) (int ____nfds_1517, __fd_set_1499 * __restrict ____readfds_1518, __fd_set_1499 * __restrict ____writefds_1520, __fd_set_1499 * __restrict ____exceptfds_1522, const struct __forward_tag_reference_1524 * __restrict ____timeout_1527, const ____sigset_t_1464 * __restrict ____sigmask_1528);// L118:L122 -extern long int (____fdelt_chk_1534) (long int ____d_1533);// L24 -extern long int (____fdelt_warn_1536) (long int ____d_1535);// L25:L26 -extern unsigned int (__gnu_dev_major_1538) (unsigned long long int ____dev_1537);// L27:L28 -extern unsigned int (__gnu_dev_major_1539) (unsigned long long int ____dev_1537);// L27:L28 -extern unsigned int (__gnu_dev_minor_1541) (unsigned long long int ____dev_1540);// L30:L31 -extern unsigned long long int (__gnu_dev_makedev_1544) (unsigned int ____major_1542, unsigned int ____minor_1543);// L33:L35 -__extension__/* no function due to type errors in the function prototype */ -__extension__/* no function due to type errors in the function prototype */ -__extension__/* no function due to type errors in the function prototype */ -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -union __pthread_attr_t_1578 ;// L63 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern int (__rand_1609) (void );// L374 -extern void (__srand_1611) (unsigned int ____seed_1610);// L376 -extern int (__rand_r_1613) (unsigned int * (____seed_1612));// L381 -extern double (__drand48_1614) (void );// L389 -extern double (__erand48_1616) (unsigned short int ____xsubi_1615[3]);// L390 -extern long int (__lrand48_1617) (void );// L393 -extern long int (__nrand48_1619) (unsigned short int ____xsubi_1618[3]);// L394:L395 -extern long int (__mrand48_1620) (void );// L398 -extern long int (__jrand48_1622) (unsigned short int ____xsubi_1621[3]);// L399:L400 -extern void (__srand48_1624) (long int ____seedval_1623);// L403 -extern unsigned short int * ((__seed48_1626) (unsigned short int ____seed16v_1625[3]));// L404:L405 -extern void (__lcong48_1628) (unsigned short int ____param_1627[7]);// L406 -extern void * ((__malloc_1631) (__size_t_1 ____size_1629));// L466 -extern void * ((__malloc_1632) (__size_t_1093 ____size_1630));// L466 -extern void * ((__malloc_1633) (__size_t_1 ____size_1629));// L466 -extern void * ((__malloc_1634) (__size_t_1093 ____size_1630));// L466 -extern void * ((__calloc_1639) (__size_t_1 ____nmemb_1635, __size_t_1 ____size_1637));// L468:L469 -extern void * ((__calloc_1640) (__size_t_1093 ____nmemb_1636, __size_t_1093 ____size_1638));// L468:L469 -extern void * ((__calloc_1641) (__size_t_1 ____nmemb_1635, __size_t_1 ____size_1637));// L468:L469 -extern void * ((__calloc_1642) (__size_t_1093 ____nmemb_1636, __size_t_1093 ____size_1638));// L468:L469 -extern void * ((__realloc_1646) (void * (____ptr_1643), __size_t_1 ____size_1644));// L480:L481 -extern void * ((__realloc_1647) (void * (____ptr_1643), __size_t_1093 ____size_1645));// L480:L481 -extern void (__free_1649) (void * (____ptr_1648));// L483 -extern void (__cfree_1651) (void * (____ptr_1650));// L488 -extern void * ((__alloca_1654) (__size_t_1 ____size_1652));// L32 -extern void * ((__alloca_1655) (__size_t_1093 ____size_1653));// L32 -extern void * ((__valloc_1658) (__size_t_1 ____size_1656));// L498 -extern void * ((__valloc_1659) (__size_t_1093 ____size_1657));// L498 -extern void * ((__valloc_1660) (__size_t_1 ____size_1656));// L498 -extern void * ((__valloc_1661) (__size_t_1093 ____size_1657));// L498 -extern int (__posix_memalign_1667) (void * (* (____memptr_1662)), __size_t_1 ____alignment_1663, __size_t_1 ____size_1665);// L503:L504 -extern int (__posix_memalign_1668) (void * (* (____memptr_1662)), __size_t_1093 ____alignment_1664, __size_t_1093 ____size_1666);// L503:L504 -extern int (__posix_memalign_1669) (void * (* (____memptr_1662)), __size_t_1 ____alignment_1663, __size_t_1 ____size_1665);// L503:L504 -extern int (__posix_memalign_1670) (void * (* (____memptr_1662)), __size_t_1093 ____alignment_1664, __size_t_1093 ____size_1666);// L503:L504 -extern void * ((__aligned_alloc_1675) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 -extern void * ((__aligned_alloc_1676) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 -extern void * ((__aligned_alloc_1677) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 -extern void * ((__aligned_alloc_1678) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 -extern void * ((__aligned_alloc_1679) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 -extern void * ((__aligned_alloc_1680) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 -extern void * ((__aligned_alloc_1681) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 -extern void * ((__aligned_alloc_1682) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 -extern void (__abort_1683) (void );// L515 -extern int (__atexit_1685) (void (* (____func_1684)) (void ));// L519 -extern int (__at_quick_exit_1687) (void (* (____func_1686)) (void ));// L527 -extern int (__on_exit_1692) (void (* (____func_1690)) (int ____status_1688, void * (____arg_1689)), void * (____arg_1691));// L535:L536 -extern void (__exit_1694) (int ____status_1693);// L543 -extern void (__exit_1695) (int ____status_1693);// L543 -extern void (__quick_exit_1697) (int ____status_1696);// L549 -extern void (___Exit_1699) (int ____status_1698);// L557 -extern char * ((__getenv_1701) (const char * (____name_1700)));// L564 -extern char * ((__getenv_1702) (const char * (____name_1700)));// L564 -extern int (__putenv_1704) (char * (____string_1703));// L578 -extern int (__setenv_1708) (const char * (____name_1705), const char * (____value_1706), int ____replace_1707);// L584:L585 -extern int (__unsetenv_1710) (const char * (____name_1709));// L588 -extern int (__clearenv_1711) (void );// L595 -extern char * ((__mktemp_1713) (char * (____template_1712)));// L606 -extern int (__mkstemp_1716) (char * (____template_1714));// L619 -extern int (__mkstemp_1718) (char * (____template_1714));// L619 -extern int (__mkstemp_1717) (char * (____template_1715));// L622:L623 -extern int (__mkstemp_1719) (char * (____template_1715));// L622:L623 -extern int (__mkstemps_1724) (char * (____template_1720), int ____suffixlen_1721);// L641 -extern int (__mkstemps_1725) (char * (____template_1722), int ____suffixlen_1723);// L644:L645 -extern int (__mkstemps_1726) (char * (____template_1720), int ____suffixlen_1721);// L641 -extern int (__mkstemps_1727) (char * (____template_1722), int ____suffixlen_1723);// L644:L645 -extern char * ((__mkdtemp_1729) (char * (____template_1728)));// L662 -extern char * ((__mkdtemp_1730) (char * (____template_1728)));// L662 -extern int (__system_1732) (const char * (____command_1731));// L716 -extern int (__system_1733) (const char * (____command_1731));// L716 -extern int (__system_1734) (const char * (____command_1731));// L716 -extern int (__system_1735) (const char * (____command_1731));// L716 -extern char * ((__realpath_1738) (const char * __restrict ____name_1736, char * __restrict ____resolved_1737));// L733:L734 -extern char * ((__realpath_1739) (const char * __restrict ____name_1736, char * __restrict ____resolved_1737));// L733:L734 -// typedef moved to top of scope -extern void * ((__bsearch_1751) (const void * (____key_1741), const void * (____base_1742), __size_t_1 ____nmemb_1743, __size_t_1 ____size_1745, ____compar_fn_t_1740 ____compar_1747));// L754:L756 -extern void * ((__bsearch_1752) (const void * (____key_1741), const void * (____base_1742), __size_t_1093 ____nmemb_1744, __size_t_1093 ____size_1746, ____compar_fn_t_1740 ____compar_1747));// L754:L756 -extern void * ((__bsearch_1755) (const void * (____key_1741), const void * (____base_1742), __size_t_1 ____nmemb_1743, __size_t_1 ____size_1745, ____compar_fn_t_1740 ____compar_1747));// L754:L756 -extern void * ((__bsearch_1756) (const void * (____key_1741), const void * (____base_1742), __size_t_1093 ____nmemb_1744, __size_t_1093 ____size_1746, ____compar_fn_t_1740 ____compar_1747));// L754:L756 -/* no function due to type errors in the function prototype */ -extern void (__qsort_1784) (void * (____base_1777), __size_t_1 ____nmemb_1778, __size_t_1 ____size_1780, ____compar_fn_t_1740 ____compar_1782);// L764:L765 -extern void (__qsort_1786) (void * (____base_1777), __size_t_1093 ____nmemb_1779, __size_t_1093 ____size_1781, ____compar_fn_t_1740 ____compar_1782);// L764:L765 -extern void (__qsort_1788) (void * (____base_1777), __size_t_1 ____nmemb_1778, __size_t_1 ____size_1780, ____compar_fn_t_1740 ____compar_1782);// L764:L765 -extern void (__qsort_1790) (void * (____base_1777), __size_t_1093 ____nmemb_1779, __size_t_1093 ____size_1781, ____compar_fn_t_1740 ____compar_1782);// L764:L765 -extern int (__abs_1793) (int ____x_1792);// L774 -extern int (__abs_1794) (int ____x_1792);// L774 -extern long int (__labs_1796) (long int ____x_1795);// L775 -extern long int (__labs_1797) (long int ____x_1795);// L775 -extern long long int (__llabs_1799) (long long int ____x_1798);// L779:L780 -extern long long int (__llabs_1800) (long long int ____x_1798);// L779:L780 -extern __div_t_1190 (__div_1803) (int ____numer_1801, int ____denom_1802);// L788:L789 -extern __div_t_1190 (__div_1804) (int ____numer_1801, int ____denom_1802);// L788:L789 -extern __ldiv_t_1195 (__ldiv_1807) (long int ____numer_1805, long int ____denom_1806);// L790:L791 -extern __ldiv_t_1195 (__ldiv_1809) (long int ____numer_1805, long int ____denom_1806);// L790:L791 -extern __lldiv_t_1200 (__lldiv_1813) (long long int ____numer_1811, long long int ____denom_1812);// L796:L798 -extern __lldiv_t_1200 (__lldiv_1815) (long long int ____numer_1811, long long int ____denom_1812);// L796:L798 -extern char * ((__ecvt_1821) (double ____value_1817, int ____ndigit_1818, int * __restrict ____decpt_1819, int * __restrict ____sign_1820));// L811:L812 -extern char * ((__ecvt_1822) (double ____value_1817, int ____ndigit_1818, int * __restrict ____decpt_1819, int * __restrict ____sign_1820));// L811:L812 -extern char * ((__fcvt_1827) (double ____value_1823, int ____ndigit_1824, int * __restrict ____decpt_1825, int * __restrict ____sign_1826));// L817:L818 -extern char * ((__fcvt_1828) (double ____value_1823, int ____ndigit_1824, int * __restrict ____decpt_1825, int * __restrict ____sign_1826));// L817:L818 -extern char * ((__gcvt_1832) (double ____value_1829, int ____ndigit_1830, char * (____buf_1831)));// L823:L824 -extern char * ((__gcvt_1833) (double ____value_1829, int ____ndigit_1830, char * (____buf_1831)));// L823:L824 -extern char * ((__qecvt_1838) (long double ____value_1834, int ____ndigit_1835, int * __restrict ____decpt_1836, int * __restrict ____sign_1837));// L829:L831 -extern char * ((__qecvt_1839) (long double ____value_1834, int ____ndigit_1835, int * __restrict ____decpt_1836, int * __restrict ____sign_1837));// L829:L831 -extern char * ((__qfcvt_1844) (long double ____value_1840, int ____ndigit_1841, int * __restrict ____decpt_1842, int * __restrict ____sign_1843));// L832:L834 -extern char * ((__qfcvt_1845) (long double ____value_1840, int ____ndigit_1841, int * __restrict ____decpt_1842, int * __restrict ____sign_1843));// L832:L834 -extern char * ((__qgcvt_1849) (long double ____value_1846, int ____ndigit_1847, char * (____buf_1848)));// L835:L836 -extern char * ((__qgcvt_1850) (long double ____value_1846, int ____ndigit_1847, char * (____buf_1848)));// L835:L836 -extern int (__ecvt_r_1858) (double ____value_1851, int ____ndigit_1852, int * __restrict ____decpt_1853, int * __restrict ____sign_1854, char * __restrict ____buf_1855, __size_t_1 ____len_1856);// L841:L843 -extern int (__ecvt_r_1859) (double ____value_1851, int ____ndigit_1852, int * __restrict ____decpt_1853, int * __restrict ____sign_1854, char * __restrict ____buf_1855, __size_t_1093 ____len_1857);// L841:L843 -extern int (__fcvt_r_1867) (double ____value_1860, int ____ndigit_1861, int * __restrict ____decpt_1862, int * __restrict ____sign_1863, char * __restrict ____buf_1864, __size_t_1 ____len_1865);// L844:L846 -extern int (__fcvt_r_1868) (double ____value_1860, int ____ndigit_1861, int * __restrict ____decpt_1862, int * __restrict ____sign_1863, char * __restrict ____buf_1864, __size_t_1093 ____len_1866);// L844:L846 -extern int (__qecvt_r_1876) (long double ____value_1869, int ____ndigit_1870, int * __restrict ____decpt_1871, int * __restrict ____sign_1872, char * __restrict ____buf_1873, __size_t_1 ____len_1874);// L848:L851 -extern int (__qecvt_r_1877) (long double ____value_1869, int ____ndigit_1870, int * __restrict ____decpt_1871, int * __restrict ____sign_1872, char * __restrict ____buf_1873, __size_t_1093 ____len_1875);// L848:L851 -extern int (__qfcvt_r_1885) (long double ____value_1878, int ____ndigit_1879, int * __restrict ____decpt_1880, int * __restrict ____sign_1881, char * __restrict ____buf_1882, __size_t_1 ____len_1883);// L852:L855 -extern int (__qfcvt_r_1886) (long double ____value_1878, int ____ndigit_1879, int * __restrict ____decpt_1880, int * __restrict ____sign_1881, char * __restrict ____buf_1882, __size_t_1093 ____len_1884);// L852:L855 -extern int (__mblen_1890) (const char * (____s_1887), __size_t_1 ____n_1888);// L862 -extern int (__mblen_1891) (const char * (____s_1887), __size_t_1093 ____n_1889);// L862 -extern int (__mblen_1892) (const char * (____s_1887), __size_t_1 ____n_1888);// L862 -extern int (__mblen_1893) (const char * (____s_1887), __size_t_1093 ____n_1889);// L862 -extern int (__mbtowc_1898) (__wchar_t_1094 * __restrict ____pwc_1894, const char * __restrict ____s_1895, __size_t_1 ____n_1896);// L865:L866 -extern int (__mbtowc_1899) (__wchar_t_1094 * __restrict ____pwc_1894, const char * __restrict ____s_1895, __size_t_1093 ____n_1897);// L865:L866 -extern int (__wctomb_1902) (char * (____s_1900), __wchar_t_1094 ____wchar_1901);// L869 -extern __size_t_1 (__mbstowcs_1907) (__wchar_t_1094 * __restrict ____pwcs_1903, const char * __restrict ____s_1904, __size_t_1 ____n_1905);// L873:L874 -extern __size_t_1093 (__mbstowcs_1908) (__wchar_t_1094 * __restrict ____pwcs_1903, const char * __restrict ____s_1904, __size_t_1093 ____n_1906);// L873:L874 -extern __size_t_1 (__wcstombs_1913) (char * __restrict ____s_1909, const __wchar_t_1094 * __restrict ____pwcs_1910, __size_t_1 ____n_1911);// L876:L878 -extern __size_t_1093 (__wcstombs_1914) (char * __restrict ____s_1909, const __wchar_t_1094 * __restrict ____pwcs_1910, __size_t_1093 ____n_1912);// L876:L878 -extern int (__rpmatch_1917) (const char * (____response_1915));// L887 -extern int (__rpmatch_1916) (const char * (____response_1915));// L887 -extern int (__getsubopt_1922) (char * (* __restrict ____optionp_1918), char * const * __restrict ____tokens_1919, char * (* __restrict ____valuep_1920));// L898:L901 -extern int (__getsubopt_1921) (char * (* __restrict ____optionp_1918), char * const * __restrict ____tokens_1919, char * (* __restrict ____valuep_1920));// L898:L901 -extern int (__getloadavg_1925) (double ____loadavg_1923[], int ____nelem_1924);// L950:L951 -/* no function due to type errors in the function prototype */ -extern char * ((____realpath_chk_1931) (const char * __restrict ____name_1927, char * __restrict ____resolved_1928, __size_t_1 ____resolvedlen_1929));// L23:L25 -extern char * ((____realpath_chk_1932) (const char * __restrict ____name_1927, char * __restrict ____resolved_1928, __size_t_1093 ____resolvedlen_1930));// L23:L25 -extern char * ((____realpath_alias_1935) (const char * __restrict ____name_1933, char * __restrict ____resolved_1934));// L26:L28 -extern char * ((____realpath_chk_warn_1940) (const char * __restrict ____name_1936, char * __restrict ____resolved_1937, __size_t_1 ____resolvedlen_1938));// L29:L34 -extern char * ((____realpath_chk_warn_1941) (const char * __restrict ____name_1936, char * __restrict ____resolved_1937, __size_t_1093 ____resolvedlen_1939));// L29:L34 -/* no function due to type errors in the function prototype */ -extern int (____ptsname_r_chk_1951) (int ____fd_1945, char * (____buf_1946), __size_t_1 ____buflen_1947, __size_t_1 ____nreal_1949);// L52:L53 -extern int (____ptsname_r_chk_1952) (int ____fd_1945, char * (____buf_1946), __size_t_1093 ____buflen_1948, __size_t_1093 ____nreal_1950);// L52:L53 -extern int (____ptsname_r_alias_1957) (int ____fd_1953, char * (____buf_1954), __size_t_1 ____buflen_1955);// L54:L56 -extern int (____ptsname_r_alias_1958) (int ____fd_1953, char * (____buf_1954), __size_t_1093 ____buflen_1956);// L54:L56 -extern int (____ptsname_r_chk_warn_1965) (int ____fd_1959, char * (____buf_1960), __size_t_1 ____buflen_1961, __size_t_1 ____nreal_1963);// L57:L61 -extern int (____ptsname_r_chk_warn_1966) (int ____fd_1959, char * (____buf_1960), __size_t_1093 ____buflen_1962, __size_t_1093 ____nreal_1964);// L57:L61 -/* no function due to type errors in the function prototype */ -extern int (____wctomb_chk_1977) (char * (____s_1973), __wchar_t_1094 ____wchar_1974, __size_t_1 ____buflen_1975);// L77:L78 -extern int (____wctomb_chk_1978) (char * (____s_1973), __wchar_t_1094 ____wchar_1974, __size_t_1093 ____buflen_1976);// L77:L78 -extern int (____wctomb_alias_1981) (char * (____s_1979), __wchar_t_1094 ____wchar_1980);// L79:L80 -/* no function due to type errors in the function prototype */ -extern __size_t_1 (____mbstowcs_chk_1990) (__wchar_t_1094 * __restrict ____dst_1984, const char * __restrict ____src_1985, __size_t_1 ____len_1986, __size_t_1 ____dstlen_1988);// L98:L100 -extern __size_t_1093 (____mbstowcs_chk_1991) (__wchar_t_1094 * __restrict ____dst_1984, const char * __restrict ____src_1985, __size_t_1093 ____len_1987, __size_t_1093 ____dstlen_1989);// L98:L100 -extern __size_t_1 (____mbstowcs_alias_1996) (__wchar_t_1094 * __restrict ____dst_1992, const char * __restrict ____src_1993, __size_t_1 ____len_1994);// L101:L104 -extern __size_t_1093 (____mbstowcs_alias_1997) (__wchar_t_1094 * __restrict ____dst_1992, const char * __restrict ____src_1993, __size_t_1093 ____len_1995);// L101:L104 -extern __size_t_1 (____mbstowcs_chk_warn_2004) (__wchar_t_1094 * __restrict ____dst_1998, const char * __restrict ____src_1999, __size_t_1 ____len_2000, __size_t_1 ____dstlen_2002);// L105:L110 -extern __size_t_1093 (____mbstowcs_chk_warn_2005) (__wchar_t_1094 * __restrict ____dst_1998, const char * __restrict ____src_1999, __size_t_1093 ____len_2001, __size_t_1093 ____dstlen_2003);// L105:L110 -/* no function due to type errors in the function prototype */ -extern __size_t_1 (____wcstombs_chk_2016) (char * __restrict ____dst_2010, const __wchar_t_1094 * __restrict ____src_2011, __size_t_1 ____len_2012, __size_t_1 ____dstlen_2014);// L130:L132 -extern __size_t_1093 (____wcstombs_chk_2017) (char * __restrict ____dst_2010, const __wchar_t_1094 * __restrict ____src_2011, __size_t_1093 ____len_2013, __size_t_1093 ____dstlen_2015);// L130:L132 -extern __size_t_1 (____wcstombs_alias_2022) (char * __restrict ____dst_2018, const __wchar_t_1094 * __restrict ____src_2019, __size_t_1 ____len_2020);// L133:L136 -extern __size_t_1093 (____wcstombs_alias_2023) (char * __restrict ____dst_2018, const __wchar_t_1094 * __restrict ____src_2019, __size_t_1093 ____len_2021);// L133:L136 -extern __size_t_1 (____wcstombs_chk_warn_2030) (char * __restrict ____dst_2024, const __wchar_t_1094 * __restrict ____src_2025, __size_t_1 ____len_2026, __size_t_1 ____dstlen_2028);// L137:L141 -extern __size_t_1093 (____wcstombs_chk_warn_2031) (char * __restrict ____dst_2024, const __wchar_t_1094 * __restrict ____src_2025, __size_t_1093 ____len_2027, __size_t_1093 ____dstlen_2029);// L137:L141 -/* no function due to type errors in the function prototype */ -void (__run_cgi_child_2048) () { - -if (__static_condition_default_2051) { - -{ -{ - - - -__FILE_59 * (__dbg_2036)= fopen ("con","w");// L8 - -__FILE_59 * (__dbg_2038)= fopen ("con","w");// L8 - -if (__static_condition_default_2040) { -__static_type_error("invalid declaration of dbg under this presence condition"); -} - -if (__static_condition_default_2041) { -__static_type_error("invalid declaration of dbg under this presence condition"); -} - -__FILE_59 * (__dbg_2042)= fopen ("/dev/tty","w");// L10 - -__FILE_59 * (__dbg_2044)= fopen ("/dev/tty","w");// L10 - -if (__static_condition_default_2046) { +if (__static_condition_default_1107) { __static_type_error("invalid declaration of dbg under this presence condition"); } -if (__static_condition_default_2047) { +if (__static_condition_default_1108) { __static_type_error("invalid declaration of dbg under this presence condition"); } -if (__static_condition_default_2052) { - __fprintf_416 ( __dbg_2036 ,"Environment\n") ; // L15 +if (__static_condition_default_1127) { + __fprintf_359 ( __dbg_1098 ,"Environment\n") ; // L15 } -if (__static_condition_default_2053) { - __fprintf_416 ( __dbg_2038 ,"Environment\n") ; // L15 +if (__static_condition_default_1128) { + __fprintf_359 ( __dbg_1100 ,"Environment\n") ; // L15 } -if (__static_condition_default_2054) { - __fprintf_416 ( __dbg_2042 ,"Environment\n") ; // L15 +if (__static_condition_default_1129) { + __fprintf_359 ( __dbg_1104 ,"Environment\n") ; // L15 } -if (__static_condition_default_2055) { - __fprintf_416 ( __dbg_2044 ,"Environment\n") ; // L15 +if (__static_condition_default_1130) { + __fprintf_359 ( __dbg_1106 ,"Environment\n") ; // L15 } -if (__static_condition_default_2056) { +if (__static_condition_default_1131) { __static_type_error("type error") ; // L15 } -if (__static_condition_default_2057) { +if (__static_condition_default_1132) { if ( rand( ) % 2 )// L18 { return ;// L19 } } -if (__static_condition_default_2058) { -fclose ( __dbg_2036 ) ; // L22 -} -if (__static_condition_default_2059) { -fclose ( __dbg_2038 ) ; // L22 -} -if (__static_condition_default_2060) { -fclose ( __dbg_2042 ) ; // L22 -} -if (__static_condition_default_2061) { -fclose ( __dbg_2044 ) ; // L22 -} -if (__static_condition_default_2062) { -__static_type_error("type error") ; // L22 -} -if (__static_condition_default_2063) { +if (__static_condition_default_1133) { if ( rand( ) % 2 )// L18 { return ;// L19 } } -return ;// L24 -} +if (__static_condition_default_1134) { +fclose ( __dbg_1098 ) ; // L22 } - - +if (__static_condition_default_1135) { +fclose ( __dbg_1100 ) ; // L22 } +if (__static_condition_default_1136) { +fclose ( __dbg_1104 ) ; // L22 } -void (__run_cgi_child_2049) () { - -if (__static_condition_default_2064) { - -{ -{ - - - -__FILE_59 * (__dbg_2037)= fopen ("con","w");// L8 - -__FILE_59 * (__dbg_2039)= fopen ("con","w");// L8 - -if (__static_condition_default_2040) { -__static_type_error("invalid declaration of dbg under this presence condition"); +if (__static_condition_default_1137) { +fclose ( __dbg_1106 ) ; // L22 } - -if (__static_condition_default_2041) { -__static_type_error("invalid declaration of dbg under this presence condition"); -} - -__FILE_59 * (__dbg_2043)= fopen ("/dev/tty","w");// L10 - -__FILE_59 * (__dbg_2045)= fopen ("/dev/tty","w");// L10 - -if (__static_condition_default_2046) { -__static_type_error("invalid declaration of dbg under this presence condition"); -} - -if (__static_condition_default_2047) { -__static_type_error("invalid declaration of dbg under this presence condition"); -} - -if (__static_condition_default_2065) { - __fprintf_416 ( __dbg_2037 ,"Environment\n") ; // L15 -} -if (__static_condition_default_2066) { - __fprintf_416 ( __dbg_2039 ,"Environment\n") ; // L15 -} -if (__static_condition_default_2067) { - __fprintf_416 ( __dbg_2043 ,"Environment\n") ; // L15 -} -if (__static_condition_default_2068) { - __fprintf_416 ( __dbg_2045 ,"Environment\n") ; // L15 -} -if (__static_condition_default_2069) { -__static_type_error("type error") ; // L15 +if (__static_condition_default_1138) { +__static_type_error("type error") ; // L22 } -if (__static_condition_default_2070) { +if (__static_condition_default_1139) { if ( rand( ) % 2 )// L18 { return ;// L19 } } -if (__static_condition_default_2071) { -fclose ( __dbg_2037 ) ; // L22 -} -if (__static_condition_default_2072) { -fclose ( __dbg_2039 ) ; // L22 -} -if (__static_condition_default_2073) { -fclose ( __dbg_2043 ) ; // L22 -} -if (__static_condition_default_2074) { -fclose ( __dbg_2045 ) ; // L22 -} -if (__static_condition_default_2075) { -__static_type_error("type error") ; // L22 -} -if (__static_condition_default_2076) { +if (__static_condition_default_1140) { if ( rand( ) % 2 )// L18 { return ;// L19 @@ -3156,191 +1527,32 @@ return ;// L24 } } -void (__run_cgi_child_2050) () { - -if (__static_condition_default_2077) { +void (__cgi_handler_1141) () { { { -__FILE_59 * (__dbg_2036)= fopen ("con","w");// L8 - -__FILE_59 * (__dbg_2037)= fopen ("con","w");// L8 - -__FILE_59 * (__dbg_2038)= fopen ("con","w");// L8 - -__FILE_59 * (__dbg_2039)= fopen ("con","w");// L8 - -if (__static_condition_default_2040) { -__static_type_error("invalid declaration of dbg under this presence condition"); -} - -if (__static_condition_default_2041) { -__static_type_error("invalid declaration of dbg under this presence condition"); -} - -__FILE_59 * (__dbg_2042)= fopen ("/dev/tty","w");// L10 - -__FILE_59 * (__dbg_2043)= fopen ("/dev/tty","w");// L10 - -__FILE_59 * (__dbg_2044)= fopen ("/dev/tty","w");// L10 - -__FILE_59 * (__dbg_2045)= fopen ("/dev/tty","w");// L10 - -if (__static_condition_default_2046) { -__static_type_error("invalid declaration of dbg under this presence condition"); -} - -if (__static_condition_default_2047) { -__static_type_error("invalid declaration of dbg under this presence condition"); -} - -if (__static_condition_default_2078) { - __fprintf_416 ( __dbg_2036 ,"Environment\n") ; // L15 -} -if (__static_condition_default_2079) { - __fprintf_416 ( __dbg_2037 ,"Environment\n") ; // L15 -} -if (__static_condition_default_2080) { - __fprintf_416 ( __dbg_2038 ,"Environment\n") ; // L15 -} -if (__static_condition_default_2081) { - __fprintf_416 ( __dbg_2039 ,"Environment\n") ; // L15 -} -if (__static_condition_default_2082) { - __fprintf_416 ( __dbg_2042 ,"Environment\n") ; // L15 -} -if (__static_condition_default_2083) { - __fprintf_416 ( __dbg_2043 ,"Environment\n") ; // L15 -} -if (__static_condition_default_2084) { - __fprintf_416 ( __dbg_2044 ,"Environment\n") ; // L15 -} -if (__static_condition_default_2085) { - __fprintf_416 ( __dbg_2045 ,"Environment\n") ; // L15 -} -if (__static_condition_default_2086) { - __fprintf_418 ( __dbg_2036 ,"Environment\n") ; // L15 -} -if (__static_condition_default_2087) { - __fprintf_418 ( __dbg_2037 ,"Environment\n") ; // L15 -} -if (__static_condition_default_2088) { - __fprintf_418 ( __dbg_2038 ,"Environment\n") ; // L15 -} -if (__static_condition_default_2089) { - __fprintf_418 ( __dbg_2039 ,"Environment\n") ; // L15 -} -if (__static_condition_default_2090) { - __fprintf_418 ( __dbg_2042 ,"Environment\n") ; // L15 -} -if (__static_condition_default_2091) { - __fprintf_418 ( __dbg_2043 ,"Environment\n") ; // L15 -} -if (__static_condition_default_2092) { - __fprintf_418 ( __dbg_2044 ,"Environment\n") ; // L15 -} -if (__static_condition_default_2093) { - __fprintf_418 ( __dbg_2045 ,"Environment\n") ; // L15 -} -if (__static_condition_default_2094) { -__static_type_error("type error") ; // L15 -} -if (__static_condition_default_2095) { -__static_type_error("invalid type found in if statement"); -} -if (__static_condition_default_2096) { -fclose ( __dbg_2036 ) ; // L22 -} -if (__static_condition_default_2097) { -fclose ( __dbg_2037 ) ; // L22 -} -if (__static_condition_default_2098) { -fclose ( __dbg_2038 ) ; // L22 -} -if (__static_condition_default_2099) { -fclose ( __dbg_2039 ) ; // L22 -} -if (__static_condition_default_2100) { -fclose ( __dbg_2042 ) ; // L22 -} -if (__static_condition_default_2101) { -fclose ( __dbg_2043 ) ; // L22 -} -if (__static_condition_default_2102) { -fclose ( __dbg_2044 ) ; // L22 -} -if (__static_condition_default_2103) { -fclose ( __dbg_2045 ) ; // L22 -} -if (__static_condition_default_2104) { -fclose ( __dbg_2036 ) ; // L22 -} -if (__static_condition_default_2105) { -fclose ( __dbg_2037 ) ; // L22 -} -if (__static_condition_default_2106) { -fclose ( __dbg_2038 ) ; // L22 -} -if (__static_condition_default_2107) { -fclose ( __dbg_2039 ) ; // L22 -} -if (__static_condition_default_2108) { -fclose ( __dbg_2042 ) ; // L22 -} -if (__static_condition_default_2109) { -fclose ( __dbg_2043 ) ; // L22 -} -if (__static_condition_default_2110) { -fclose ( __dbg_2044 ) ; // L22 -} -if (__static_condition_default_2111) { -fclose ( __dbg_2045 ) ; // L22 -} -if (__static_condition_default_2112) { -__static_type_error("type error") ; // L22 -} -if (__static_condition_default_2113) { -__static_type_error("invalid type found in if statement"); -} -return ;// L24 -} -} - - -} -} -void (__cgi_handler_2114) () { - -{ -{ - - - -if (__static_condition_default_2115) { - __run_cgi_child_2048 ( ) ; // L29 -} -if (__static_condition_default_2116) { - __run_cgi_child_2049 ( ) ; // L29 +if (__static_condition_default_1111) { + __run_cgi_child_1109 ( ) ; // L29 } -if (__static_condition_default_2077) { - __run_cgi_child_2050 ( ) ; // L29 +if (__static_condition_default_1126) { + __run_cgi_child_1110 ( ) ; // L29 } } } } -int (__main_2117) (void ) { +int (__main_1142) (void ) { { { - __cgi_handler_2114 ( ) ; // L34 + __cgi_handler_1141 ( ) ; // L34 return 0 ;// L35 } } diff --git a/fonda/cpp_testsuite/varBugs/APACHE/56d9881993f.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/56d9881993f.desugared.c index bea4dd8d..147a5f1c 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/56d9881993f.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/56d9881993f.desugared.c @@ -7,8 +7,8 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_3; extern const bool __static_condition_default_2; +extern const bool __static_condition_default_3; void __static_initializer_default() { __static_renaming("__sendfile_nonblocking_0", "sendfile_nonblocking"); __static_renaming("__send_brigade_nonblocking_1", "send_brigade_nonblocking"); diff --git a/fonda/cpp_testsuite/varBugs/APACHE/6338509eb37.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/6338509eb37.desugared.c index aa9d4965..c473f7e0 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/6338509eb37.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/6338509eb37.desugared.c @@ -7,278 +7,211 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_842; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_488; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_685; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_512; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_536; -extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_645; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_523; +extern const bool __static_condition_default_394; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_501; +extern const bool __static_condition_default_586; +extern const bool __static_condition_default_680; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_400; +extern const bool __static_condition_default_655; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_696; +extern const bool __static_condition_default_881; +extern const bool __static_condition_default_641; +extern const bool __static_condition_default_603; +extern const bool __static_condition_default_906; +extern const bool __static_condition_default_435; +extern const bool __static_condition_default_161; +extern const bool __static_condition_default_577; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_977; +extern const bool __static_condition_default_556; +extern const bool __static_condition_default_310; +extern const bool __static_condition_default_718; +extern const bool __static_condition_default_330; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_429; +extern const bool __static_condition_default_695; +extern const bool __static_condition_default_162; +extern const bool __static_condition_default_421; +extern const bool __static_condition_default_474; +extern const bool __static_condition_default_933; +extern const bool __static_condition_default_508; +extern const bool __static_condition_default_855; +extern const bool __static_condition_default_870; +extern const bool __static_condition_default_480; +extern const bool __static_condition_default_672; +extern const bool __static_condition_default_739; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_533; +extern const bool __static_condition_default_118; +extern const bool __static_condition_default_308; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_904; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_794; +extern const bool __static_condition_default_254; +extern const bool __static_condition_default_716; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_612; +extern const bool __static_condition_default_790; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_482; +extern const bool __static_condition_default_381; +extern const bool __static_condition_default_954; +extern const bool __static_condition_default_517; +extern const bool __static_condition_default_225; +extern const bool __static_condition_default_318; +extern const bool __static_condition_default_969; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_991; extern const bool __static_condition_default_510; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_638; +extern const bool __static_condition_default_898; +extern const bool __static_condition_default_351; +extern const bool __static_condition_default_567; +extern const bool __static_condition_default_528; +extern const bool __static_condition_default_234; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_749; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_1006; extern const bool __static_condition_default_431; +extern const bool __static_condition_default_328; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_326; +extern const bool __static_condition_default_451; +extern const bool __static_condition_default_500; +extern const bool __static_condition_default_962; +extern const bool __static_condition_default_459; +extern const bool __static_condition_default_882; +extern const bool __static_condition_default_917; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_358; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_230; +extern const bool __static_condition_default_733; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_694; +extern const bool __static_condition_default_236; +extern const bool __static_condition_default_446; +extern const bool __static_condition_default_893; +extern const bool __static_condition_default_931; +extern const bool __static_condition_default_935; +extern const bool __static_condition_default_992; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_502; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_720; +extern const bool __static_condition_default_343; +extern const bool __static_condition_default_610; +extern const bool __static_condition_default_374; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_984; +extern const bool __static_condition_default_640; +extern const bool __static_condition_default_648; +extern const bool __static_condition_default_507; extern const bool __static_condition_default_657; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_709; -extern const bool __static_condition_default_769; +extern const bool __static_condition_default_304; +extern const bool __static_condition_default_961; extern const bool __static_condition_default_686; -extern const bool __static_condition_default_1100; -extern const bool __static_condition_default_693; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_367; -extern const bool __static_condition_default_1098; -extern const bool __static_condition_default_347; -extern const bool __static_condition_default_543; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_333; -extern const bool __static_condition_default_787; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_963; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_393; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_701; -extern const bool __static_condition_default_259; +extern const bool __static_condition_default_953; +extern const bool __static_condition_default_551; +extern const bool __static_condition_default_778; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_540; +extern const bool __static_condition_default_232; +extern const bool __static_condition_default_562; +extern const bool __static_condition_default_729; +extern const bool __static_condition_default_448; +extern const bool __static_condition_default_626; +extern const bool __static_condition_default_1021; extern const bool __static_condition_default_511; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_419; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_875; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_613; -extern const bool __static_condition_default_1096; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_753; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_955; -extern const bool __static_condition_default_781; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_294; +extern const bool __static_condition_default_595; +extern const bool __static_condition_default_999; +extern const bool __static_condition_default_457; +extern const bool __static_condition_default_227; +extern const bool __static_condition_default_449; +extern const bool __static_condition_default_332; +extern const bool __static_condition_default_349; +extern const bool __static_condition_default_605; +extern const bool __static_condition_default_798; +extern const bool __static_condition_default_772; +extern const bool __static_condition_default_336; +extern const bool __static_condition_default_784; +extern const bool __static_condition_default_941; +extern const bool __static_condition_default_276; +extern const bool __static_condition_default_470; +extern const bool __static_condition_default_766; +extern const bool __static_condition_default_1016; +extern const bool __static_condition_default_820; +extern const bool __static_condition_default_495; +extern const bool __static_condition_default_627; +extern const bool __static_condition_default_833; +extern const bool __static_condition_default_454; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_804; +extern const bool __static_condition_default_924; +extern const bool __static_condition_default_624; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_706; +extern const bool __static_condition_default_905; extern const bool __static_condition_default_249; -extern const bool __static_condition_default_290; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_887; -extern const bool __static_condition_default_380; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_382; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_755; -extern const bool __static_condition_default_858; -extern const bool __static_condition_default_914; -extern const bool __static_condition_default_779; -extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_702; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_76; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_646; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_780; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_848; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_388; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_412; -extern const bool __static_condition_default_568; -extern const bool __static_condition_default_677; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_583; +extern const bool __static_condition_default_320; +extern const bool __static_condition_default_983; +extern const bool __static_condition_default_453; +extern const bool __static_condition_default_813; extern const bool __static_condition_default_494; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_803; -extern const bool __static_condition_default_521; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_386; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_891; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_559; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_670; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_747; -extern const bool __static_condition_default_751; +extern const bool __static_condition_default_762; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_338; extern const bool __static_condition_default_471; -extern const bool __static_condition_default_793; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_846; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_743; +extern const bool __static_condition_default_1024; +extern const bool __static_condition_default_639; +extern const bool __static_condition_default_300; +extern const bool __static_condition_default_575; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_889; +extern const bool __static_condition_default_165; +extern const bool __static_condition_default_774; +extern const bool __static_condition_default_1017; +extern const bool __static_condition_default_74; +extern const bool __static_condition_default_579; extern const bool __static_condition_default_573; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_313; -extern const bool __static_condition_default_357; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_789; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_217; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_198; -extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_1097; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_1095; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_461; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_187; -extern const bool __static_condition_default_317; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_248; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_315; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_714; +extern const bool __static_condition_default_968; +extern const bool __static_condition_default_642; +extern const bool __static_condition_default_370; +extern const bool __static_condition_default_976; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_688; +extern const bool __static_condition_default_379; +extern const bool __static_condition_default_948; +extern const bool __static_condition_default_393; extern const bool __static_condition_default_735; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_761; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_438; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_408; -extern const bool __static_condition_default_632; -extern const bool __static_condition_default_402; -extern const bool __static_condition_default_894; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_311; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_956; -extern const bool __static_condition_default_564; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_872; -extern const bool __static_condition_default_907; -extern const bool __static_condition_default_929; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_549; -extern const bool __static_condition_default_590; -extern const bool __static_condition_default_204; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_53; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_957; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_719; +extern const bool __static_condition_default_356; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_496; +extern const bool __static_condition_default_256; +extern const bool __static_condition_default_226; +extern const bool __static_condition_default_588; +extern const bool __static_condition_default_707; +extern const bool __static_condition_default_538; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -330,502 +263,431 @@ __static_renaming("____ssize_t_49", "__ssize_t"); __static_renaming("____syscall_slong_t_50", "__syscall_slong_t"); __static_renaming("____syscall_ulong_t_51", "__syscall_ulong_t"); __static_renaming("____loff_t_52", "__loff_t"); -__static_renaming("____qaddr_t_54", "__qaddr_t"); -__static_renaming("____caddr_t_55", "__caddr_t"); -__static_renaming("____intptr_t_56", "__intptr_t"); -__static_renaming("____socklen_t_57", "__socklen_t"); -__static_renaming("__FILE_59", "FILE"); -__static_renaming("____FILE_60", "__FILE"); -__static_renaming("____mbstate_t_69", "__mbstate_t"); -__static_renaming("___G_fpos_t_77", "_G_fpos_t"); -__static_renaming("___G_fpos64_t_85", "_G_fpos64_t"); -__static_renaming("____gnuc_va_list_86", "__gnuc_va_list"); -__static_renaming("___IO_lock_t_88", "_IO_lock_t"); -__static_renaming("___IO_FILE_171", "_IO_FILE"); -__static_renaming("___IO_FILE_172", "_IO_FILE"); -__static_renaming("___IO_2_1_stdin__175", "_IO_2_1_stdin_"); -__static_renaming("___IO_2_1_stdout__176", "_IO_2_1_stdout_"); -__static_renaming("___IO_2_1_stderr__177", "_IO_2_1_stderr_"); -__static_renaming("____io_read_fn_181", "__io_read_fn"); -__static_renaming("____io_write_fn_186", "__io_write_fn"); -__static_renaming("____io_seek_fn_192", "__io_seek_fn"); -__static_renaming("____io_close_fn_195", "__io_close_fn"); -__static_renaming("____underflow_196", "__underflow"); -__static_renaming("____underflow_197", "__underflow"); -__static_renaming("____uflow_199", "__uflow"); -__static_renaming("____uflow_200", "__uflow"); -__static_renaming("____overflow_202", "__overflow"); -__static_renaming("____overflow_203", "__overflow"); -__static_renaming("___IO_getc_208", "_IO_getc"); -__static_renaming("___IO_getc_209", "_IO_getc"); -__static_renaming("___IO_putc_215", "_IO_putc"); -__static_renaming("___IO_putc_216", "_IO_putc"); -__static_renaming("___IO_feof_221", "_IO_feof"); -__static_renaming("___IO_feof_222", "_IO_feof"); -__static_renaming("___IO_ferror_227", "_IO_ferror"); -__static_renaming("___IO_ferror_228", "_IO_ferror"); -__static_renaming("___IO_peekc_locked_233", "_IO_peekc_locked"); -__static_renaming("___IO_peekc_locked_234", "_IO_peekc_locked"); -__static_renaming("___IO_flockfile_236", "_IO_flockfile"); -__static_renaming("___IO_flockfile_237", "_IO_flockfile"); -__static_renaming("___IO_funlockfile_239", "_IO_funlockfile"); -__static_renaming("___IO_funlockfile_240", "_IO_funlockfile"); -__static_renaming("___IO_ftrylockfile_242", "_IO_ftrylockfile"); -__static_renaming("___IO_ftrylockfile_243", "_IO_ftrylockfile"); -__static_renaming("___IO_vfscanf_245", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_247", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_251", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_252", "_IO_vfscanf"); -__static_renaming("___IO_vfprintf_254", "_IO_vfprintf"); -__static_renaming("___IO_vfprintf_256", "_IO_vfprintf"); -__static_renaming("___IO_vfprintf_260", "_IO_vfprintf"); -__static_renaming("___IO_padn_261", "_IO_padn"); -__static_renaming("___IO_padn_262", "_IO_padn"); -__static_renaming("___IO_sgetn_265", "_IO_sgetn"); -__static_renaming("___IO_sgetn_266", "_IO_sgetn"); -__static_renaming("___IO_seekoff_268", "_IO_seekoff"); -__static_renaming("___IO_seekoff_269", "_IO_seekoff"); -__static_renaming("___IO_seekpos_272", "_IO_seekpos"); -__static_renaming("___IO_seekpos_273", "_IO_seekpos"); -__static_renaming("___IO_free_backup_area_276", "_IO_free_backup_area"); -__static_renaming("___IO_free_backup_area_277", "_IO_free_backup_area"); -__static_renaming("__va_list_279", "va_list"); -__static_renaming("__off_t_281", "off_t"); -__static_renaming("__off_t_283", "off_t"); -__static_renaming("__ssize_t_285", "ssize_t"); -__static_renaming("__fpos_t_287", "fpos_t"); -__static_renaming("__fpos_t_289", "fpos_t"); -__static_renaming("__stdin_291", "stdin"); -__static_renaming("__stdin_292", "stdin"); -__static_renaming("__stdout_294", "stdout"); -__static_renaming("__stdout_295", "stdout"); -__static_renaming("__stderr_297", "stderr"); -__static_renaming("__stderr_298", "stderr"); -__static_renaming("__remove_301", "remove"); -__static_renaming("__rename_304", "rename"); -__static_renaming("__renameat_309", "renameat"); -__static_renaming("__tmpfile_310", "tmpfile"); -__static_renaming("__tmpfile_312", "tmpfile"); -__static_renaming("__tmpfile_314", "tmpfile"); -__static_renaming("__tmpfile_316", "tmpfile"); -__static_renaming("__tmpnam_319", "tmpnam"); -__static_renaming("__tmpnam_320", "tmpnam"); -__static_renaming("__tmpnam_r_322", "tmpnam_r"); -__static_renaming("__tmpnam_r_323", "tmpnam_r"); -__static_renaming("__tempnam_326", "tempnam"); -__static_renaming("__tempnam_327", "tempnam"); -__static_renaming("__fclose_330", "fclose"); -__static_renaming("__fclose_332", "fclose"); -__static_renaming("__fflush_336", "fflush"); -__static_renaming("__fflush_unlocked_340", "fflush_unlocked"); -__static_renaming("__fopen_344", "fopen"); -__static_renaming("__fopen_346", "fopen"); -__static_renaming("__fopen_354", "fopen"); -__static_renaming("__fopen_356", "fopen"); -__static_renaming("__freopen_362", "freopen"); -__static_renaming("__freopen_364", "freopen"); -__static_renaming("__freopen_366", "freopen"); -__static_renaming("__freopen_368", "freopen"); -__static_renaming("__fdopen_372", "fdopen"); -__static_renaming("__fdopen_374", "fdopen"); -__static_renaming("__fmemopen_379", "fmemopen"); -__static_renaming("__fmemopen_381", "fmemopen"); -__static_renaming("__open_memstream_385", "open_memstream"); -__static_renaming("__open_memstream_387", "open_memstream"); -__static_renaming("__setbuf_392", "setbuf"); -__static_renaming("__setbuf_394", "setbuf"); -__static_renaming("__setvbuf_401", "setvbuf"); -__static_renaming("__setbuffer_407", "setbuffer"); -__static_renaming("__setlinebuf_411", "setlinebuf"); -__static_renaming("__fprintf_416", "fprintf"); -__static_renaming("__fprintf_418", "fprintf"); -__static_renaming("__printf_421", "printf"); -__static_renaming("__sprintf_424", "sprintf"); -__static_renaming("__vfprintf_430", "vfprintf"); -__static_renaming("__vprintf_437", "vprintf"); -__static_renaming("__vsprintf_443", "vsprintf"); -__static_renaming("__snprintf_448", "snprintf"); -__static_renaming("__vsnprintf_454", "vsnprintf"); -__static_renaming("__vdprintf_460", "vdprintf"); -__static_renaming("__dprintf_464", "dprintf"); -__static_renaming("__fscanf_468", "fscanf"); -__static_renaming("__fscanf_470", "fscanf"); -__static_renaming("__fscanf_472", "fscanf"); -__static_renaming("__fscanf_474", "fscanf"); -__static_renaming("__scanf_477", "scanf"); -__static_renaming("__scanf_478", "scanf"); -__static_renaming("__sscanf_481", "sscanf"); -__static_renaming("__vfscanf_509", "vfscanf"); -__static_renaming("__vfscanf_513", "vfscanf"); -__static_renaming("__vscanf_520", "vscanf"); -__static_renaming("__vscanf_522", "vscanf"); -__static_renaming("__vsscanf_528", "vsscanf"); -__static_renaming("__fgetc_563", "fgetc"); -__static_renaming("__getc_567", "getc"); -__static_renaming("__getchar_569", "getchar"); -__static_renaming("__getc_unlocked_572", "getc_unlocked"); -__static_renaming("__getchar_unlocked_574", "getchar_unlocked"); -__static_renaming("__fgetc_unlocked_577", "fgetc_unlocked"); -__static_renaming("__fputc_582", "fputc"); -__static_renaming("__fputc_584", "fputc"); -__static_renaming("__putc_589", "putc"); -__static_renaming("__putchar_592", "putchar"); -__static_renaming("__fputc_unlocked_596", "fputc_unlocked"); -__static_renaming("__putc_unlocked_601", "putc_unlocked"); -__static_renaming("__putchar_unlocked_604", "putchar_unlocked"); -__static_renaming("__getw_607", "getw"); -__static_renaming("__putw_612", "putw"); -__static_renaming("__fgets_618", "fgets"); -__static_renaming("__fgets_620", "fgets"); -__static_renaming("__fgets_622", "fgets"); -__static_renaming("__fgets_624", "fgets"); -__static_renaming("____getdelim_631", "__getdelim"); -__static_renaming("____getdelim_635", "__getdelim"); -__static_renaming("__getdelim_644", "getdelim"); -__static_renaming("__getdelim_648", "getdelim"); -__static_renaming("__getline_656", "getline"); -__static_renaming("__getline_660", "getline"); -__static_renaming("__fputs_667", "fputs"); -__static_renaming("__fputs_669", "fputs"); -__static_renaming("__puts_672", "puts"); -__static_renaming("__ungetc_676", "ungetc"); -__static_renaming("__fseek_714", "fseek"); -__static_renaming("__fseek_716", "fseek"); -__static_renaming("__ftell_720", "ftell"); -__static_renaming("__ftell_722", "ftell"); -__static_renaming("__rewind_726", "rewind"); -__static_renaming("__fseeko_733", "fseeko"); -__static_renaming("__fseeko_744", "fseeko"); -__static_renaming("__ftello_750", "ftello"); -__static_renaming("__ftello_754", "ftello"); -__static_renaming("__ftello_758", "ftello"); -__static_renaming("__fgetpos_766", "fgetpos"); -__static_renaming("__fgetpos_778", "fgetpos"); -__static_renaming("__fsetpos_786", "fsetpos"); -__static_renaming("__fsetpos_790", "fsetpos"); -__static_renaming("__clearerr_796", "clearerr"); -__static_renaming("__feof_800", "feof"); -__static_renaming("__feof_802", "feof"); -__static_renaming("__ferror_806", "ferror"); -__static_renaming("__ferror_808", "ferror"); -__static_renaming("__clearerr_unlocked_812", "clearerr_unlocked"); -__static_renaming("__feof_unlocked_816", "feof_unlocked"); -__static_renaming("__feof_unlocked_818", "feof_unlocked"); -__static_renaming("__ferror_unlocked_822", "ferror_unlocked"); -__static_renaming("__ferror_unlocked_824", "ferror_unlocked"); -__static_renaming("__perror_827", "perror"); -__static_renaming("__perror_828", "perror"); -__static_renaming("__sys_nerr_829", "sys_nerr"); -__static_renaming("__sys_errlist_830", "sys_errlist"); -__static_renaming("__fileno_833", "fileno"); -__static_renaming("__fileno_835", "fileno"); -__static_renaming("__fileno_unlocked_839", "fileno_unlocked"); -__static_renaming("__fileno_unlocked_841", "fileno_unlocked"); -__static_renaming("__popen_845", "popen"); -__static_renaming("__popen_847", "popen"); -__static_renaming("__pclose_851", "pclose"); -__static_renaming("__ctermid_854", "ctermid"); -__static_renaming("__flockfile_857", "flockfile"); -__static_renaming("__ftrylockfile_861", "ftrylockfile"); -__static_renaming("__ftrylockfile_863", "ftrylockfile"); -__static_renaming("__funlockfile_867", "funlockfile"); -__static_renaming("____sprintf_chk_899", "__sprintf_chk"); -__static_renaming("____vsprintf_chk_906", "__vsprintf_chk"); -__static_renaming("____snprintf_chk_920", "__snprintf_chk"); -__static_renaming("____vsnprintf_chk_928", "__vsnprintf_chk"); -__static_renaming("____fprintf_chk_943", "__fprintf_chk"); -__static_renaming("____printf_chk_947", "__printf_chk"); -__static_renaming("____vfprintf_chk_954", "__vfprintf_chk"); -__static_renaming("____vprintf_chk_962", "__vprintf_chk"); -__static_renaming("____dprintf_chk_984", "__dprintf_chk"); -__static_renaming("____vdprintf_chk_990", "__vdprintf_chk"); -__static_renaming("____fgets_chk_1004", "__fgets_chk"); -__static_renaming("____fgets_chk_1006", "__fgets_chk"); -__static_renaming("____fgets_chk_1008", "__fgets_chk"); -__static_renaming("____fgets_alias_1014", "__fgets_alias"); -__static_renaming("____fgets_chk_warn_1021", "__fgets_chk_warn"); -__static_renaming("____cnt_1087", "__cnt"); -__static_renaming("____cptr_1088", "__cptr"); -__static_renaming("__fips_1092", "fips"); -__static_renaming("__ssl_init_Module_1093", "ssl_init_Module"); -__static_renaming("__ssl_init_Module_1094", "ssl_init_Module"); -__static_renaming("__main_1099", "main"); +__static_renaming("____qaddr_t_53", "__qaddr_t"); +__static_renaming("____caddr_t_54", "__caddr_t"); +__static_renaming("____intptr_t_55", "__intptr_t"); +__static_renaming("____socklen_t_56", "__socklen_t"); +__static_renaming("__FILE_58", "FILE"); +__static_renaming("____FILE_59", "__FILE"); +__static_renaming("____mbstate_t_68", "__mbstate_t"); +__static_renaming("___G_fpos_t_75", "_G_fpos_t"); +__static_renaming("___G_fpos64_t_81", "_G_fpos64_t"); +__static_renaming("____gnuc_va_list_82", "__gnuc_va_list"); +__static_renaming("___IO_lock_t_84", "_IO_lock_t"); +__static_renaming("___IO_FILE_163", "_IO_FILE"); +__static_renaming("___IO_FILE_164", "_IO_FILE"); +__static_renaming("___IO_2_1_stdin__167", "_IO_2_1_stdin_"); +__static_renaming("___IO_2_1_stdout__168", "_IO_2_1_stdout_"); +__static_renaming("___IO_2_1_stderr__169", "_IO_2_1_stderr_"); +__static_renaming("____io_read_fn_173", "__io_read_fn"); +__static_renaming("____io_write_fn_177", "__io_write_fn"); +__static_renaming("____io_seek_fn_181", "__io_seek_fn"); +__static_renaming("____io_close_fn_183", "__io_close_fn"); +__static_renaming("____underflow_184", "__underflow"); +__static_renaming("____underflow_185", "__underflow"); +__static_renaming("____uflow_186", "__uflow"); +__static_renaming("____uflow_187", "__uflow"); +__static_renaming("____overflow_188", "__overflow"); +__static_renaming("____overflow_189", "__overflow"); +__static_renaming("___IO_getc_193", "_IO_getc"); +__static_renaming("___IO_getc_194", "_IO_getc"); +__static_renaming("___IO_putc_199", "_IO_putc"); +__static_renaming("___IO_putc_200", "_IO_putc"); +__static_renaming("___IO_feof_204", "_IO_feof"); +__static_renaming("___IO_feof_205", "_IO_feof"); +__static_renaming("___IO_ferror_209", "_IO_ferror"); +__static_renaming("___IO_ferror_210", "_IO_ferror"); +__static_renaming("___IO_peekc_locked_214", "_IO_peekc_locked"); +__static_renaming("___IO_peekc_locked_215", "_IO_peekc_locked"); +__static_renaming("___IO_flockfile_216", "_IO_flockfile"); +__static_renaming("___IO_flockfile_217", "_IO_flockfile"); +__static_renaming("___IO_funlockfile_218", "_IO_funlockfile"); +__static_renaming("___IO_funlockfile_219", "_IO_funlockfile"); +__static_renaming("___IO_ftrylockfile_220", "_IO_ftrylockfile"); +__static_renaming("___IO_ftrylockfile_221", "_IO_ftrylockfile"); +__static_renaming("___IO_vfscanf_222", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_224", "_IO_vfscanf"); +__static_renaming("___IO_vfprintf_231", "_IO_vfprintf"); +__static_renaming("___IO_vfprintf_233", "_IO_vfprintf"); +__static_renaming("___IO_padn_238", "_IO_padn"); +__static_renaming("___IO_padn_239", "_IO_padn"); +__static_renaming("___IO_sgetn_240", "_IO_sgetn"); +__static_renaming("___IO_sgetn_241", "_IO_sgetn"); +__static_renaming("___IO_seekoff_242", "_IO_seekoff"); +__static_renaming("___IO_seekoff_243", "_IO_seekoff"); +__static_renaming("___IO_seekpos_244", "_IO_seekpos"); +__static_renaming("___IO_seekpos_245", "_IO_seekpos"); +__static_renaming("___IO_free_backup_area_246", "_IO_free_backup_area"); +__static_renaming("___IO_free_backup_area_247", "_IO_free_backup_area"); +__static_renaming("__va_list_248", "va_list"); +__static_renaming("__off_t_250", "off_t"); +__static_renaming("__off_t_251", "off_t"); +__static_renaming("__ssize_t_252", "ssize_t"); +__static_renaming("__fpos_t_253", "fpos_t"); +__static_renaming("__fpos_t_255", "fpos_t"); +__static_renaming("__stdin_257", "stdin"); +__static_renaming("__stdin_258", "stdin"); +__static_renaming("__stdout_259", "stdout"); +__static_renaming("__stdout_260", "stdout"); +__static_renaming("__stderr_261", "stderr"); +__static_renaming("__stderr_262", "stderr"); +__static_renaming("__remove_264", "remove"); +__static_renaming("__rename_267", "rename"); +__static_renaming("__renameat_272", "renameat"); +__static_renaming("__tmpfile_273", "tmpfile"); +__static_renaming("__tmpfile_275", "tmpfile"); +__static_renaming("__tmpfile_277", "tmpfile"); +__static_renaming("__tmpfile_279", "tmpfile"); +__static_renaming("__tmpnam_282", "tmpnam"); +__static_renaming("__tmpnam_283", "tmpnam"); +__static_renaming("__tmpnam_r_285", "tmpnam_r"); +__static_renaming("__tmpnam_r_286", "tmpnam_r"); +__static_renaming("__tempnam_289", "tempnam"); +__static_renaming("__tempnam_290", "tempnam"); +__static_renaming("__fclose_293", "fclose"); +__static_renaming("__fclose_295", "fclose"); +__static_renaming("__fflush_299", "fflush"); +__static_renaming("__fflush_unlocked_303", "fflush_unlocked"); +__static_renaming("__fopen_307", "fopen"); +__static_renaming("__fopen_309", "fopen"); +__static_renaming("__fopen_317", "fopen"); +__static_renaming("__fopen_319", "fopen"); +__static_renaming("__freopen_325", "freopen"); +__static_renaming("__freopen_327", "freopen"); +__static_renaming("__freopen_329", "freopen"); +__static_renaming("__freopen_331", "freopen"); +__static_renaming("__fdopen_335", "fdopen"); +__static_renaming("__fdopen_337", "fdopen"); +__static_renaming("__fmemopen_342", "fmemopen"); +__static_renaming("__fmemopen_344", "fmemopen"); +__static_renaming("__open_memstream_348", "open_memstream"); +__static_renaming("__open_memstream_350", "open_memstream"); +__static_renaming("__setbuf_355", "setbuf"); +__static_renaming("__setbuf_357", "setbuf"); +__static_renaming("__setvbuf_364", "setvbuf"); +__static_renaming("__setbuffer_369", "setbuffer"); +__static_renaming("__setlinebuf_373", "setlinebuf"); +__static_renaming("__fprintf_378", "fprintf"); +__static_renaming("__fprintf_380", "fprintf"); +__static_renaming("__printf_383", "printf"); +__static_renaming("__sprintf_386", "sprintf"); +__static_renaming("__vfprintf_392", "vfprintf"); +__static_renaming("__vprintf_399", "vprintf"); +__static_renaming("__vsprintf_405", "vsprintf"); +__static_renaming("__snprintf_409", "snprintf"); +__static_renaming("__vsnprintf_415", "vsnprintf"); +__static_renaming("__vdprintf_420", "vdprintf"); +__static_renaming("__dprintf_424", "dprintf"); +__static_renaming("__fscanf_428", "fscanf"); +__static_renaming("__fscanf_430", "fscanf"); +__static_renaming("__fscanf_432", "fscanf"); +__static_renaming("__fscanf_434", "fscanf"); +__static_renaming("__scanf_437", "scanf"); +__static_renaming("__scanf_438", "scanf"); +__static_renaming("__sscanf_441", "sscanf"); +__static_renaming("__vfscanf_468", "vfscanf"); +__static_renaming("__vfscanf_472", "vfscanf"); +__static_renaming("__vscanf_479", "vscanf"); +__static_renaming("__vscanf_481", "vscanf"); +__static_renaming("__vsscanf_487", "vsscanf"); +__static_renaming("__fgetc_520", "fgetc"); +__static_renaming("__getc_523", "getc"); +__static_renaming("__getchar_524", "getchar"); +__static_renaming("__getc_unlocked_527", "getc_unlocked"); +__static_renaming("__getchar_unlocked_529", "getchar_unlocked"); +__static_renaming("__fgetc_unlocked_532", "fgetc_unlocked"); +__static_renaming("__fputc_537", "fputc"); +__static_renaming("__fputc_539", "fputc"); +__static_renaming("__putc_544", "putc"); +__static_renaming("__putchar_546", "putchar"); +__static_renaming("__fputc_unlocked_550", "fputc_unlocked"); +__static_renaming("__putc_unlocked_555", "putc_unlocked"); +__static_renaming("__putchar_unlocked_558", "putchar_unlocked"); +__static_renaming("__getw_561", "getw"); +__static_renaming("__putw_566", "putw"); +__static_renaming("__fgets_572", "fgets"); +__static_renaming("__fgets_574", "fgets"); +__static_renaming("__fgets_576", "fgets"); +__static_renaming("__fgets_578", "fgets"); +__static_renaming("____getdelim_585", "__getdelim"); +__static_renaming("____getdelim_587", "__getdelim"); +__static_renaming("__getdelim_594", "getdelim"); +__static_renaming("__getdelim_596", "getdelim"); +__static_renaming("__getline_602", "getline"); +__static_renaming("__getline_604", "getline"); +__static_renaming("__fputs_609", "fputs"); +__static_renaming("__fputs_611", "fputs"); +__static_renaming("__puts_614", "puts"); +__static_renaming("__ungetc_618", "ungetc"); +__static_renaming("__fseek_654", "fseek"); +__static_renaming("__fseek_656", "fseek"); +__static_renaming("__ftell_660", "ftell"); +__static_renaming("__ftell_662", "ftell"); +__static_renaming("__rewind_666", "rewind"); +__static_renaming("__fseeko_671", "fseeko"); +__static_renaming("__fseeko_679", "fseeko"); +__static_renaming("__ftello_683", "ftello"); +__static_renaming("__ftello_685", "ftello"); +__static_renaming("__ftello_687", "ftello"); +__static_renaming("__fgetpos_693", "fgetpos"); +__static_renaming("__fgetpos_705", "fgetpos"); +__static_renaming("__fsetpos_713", "fsetpos"); +__static_renaming("__fsetpos_717", "fsetpos"); +__static_renaming("__clearerr_723", "clearerr"); +__static_renaming("__feof_726", "feof"); +__static_renaming("__feof_728", "feof"); +__static_renaming("__ferror_732", "ferror"); +__static_renaming("__ferror_734", "ferror"); +__static_renaming("__clearerr_unlocked_738", "clearerr_unlocked"); +__static_renaming("__feof_unlocked_742", "feof_unlocked"); +__static_renaming("__feof_unlocked_744", "feof_unlocked"); +__static_renaming("__ferror_unlocked_748", "ferror_unlocked"); +__static_renaming("__ferror_unlocked_750", "ferror_unlocked"); +__static_renaming("__perror_753", "perror"); +__static_renaming("__perror_754", "perror"); +__static_renaming("__sys_nerr_755", "sys_nerr"); +__static_renaming("__sys_errlist_756", "sys_errlist"); +__static_renaming("__fileno_759", "fileno"); +__static_renaming("__fileno_761", "fileno"); +__static_renaming("__fileno_unlocked_765", "fileno_unlocked"); +__static_renaming("__fileno_unlocked_767", "fileno_unlocked"); +__static_renaming("__popen_771", "popen"); +__static_renaming("__popen_773", "popen"); +__static_renaming("__pclose_777", "pclose"); +__static_renaming("__ctermid_780", "ctermid"); +__static_renaming("__flockfile_783", "flockfile"); +__static_renaming("__ftrylockfile_787", "ftrylockfile"); +__static_renaming("__ftrylockfile_789", "ftrylockfile"); +__static_renaming("__funlockfile_793", "funlockfile"); +__static_renaming("____sprintf_chk_825", "__sprintf_chk"); +__static_renaming("____vsprintf_chk_832", "__vsprintf_chk"); +__static_renaming("____snprintf_chk_846", "__snprintf_chk"); +__static_renaming("____vsnprintf_chk_854", "__vsnprintf_chk"); +__static_renaming("____fprintf_chk_869", "__fprintf_chk"); +__static_renaming("____printf_chk_873", "__printf_chk"); +__static_renaming("____vfprintf_chk_880", "__vfprintf_chk"); +__static_renaming("____vprintf_chk_888", "__vprintf_chk"); +__static_renaming("____dprintf_chk_910", "__dprintf_chk"); +__static_renaming("____vdprintf_chk_916", "__vdprintf_chk"); +__static_renaming("____fgets_chk_930", "__fgets_chk"); +__static_renaming("____fgets_chk_932", "__fgets_chk"); +__static_renaming("____fgets_chk_934", "__fgets_chk"); +__static_renaming("____fgets_alias_940", "__fgets_alias"); +__static_renaming("____fgets_chk_warn_947", "__fgets_chk_warn"); +__static_renaming("____cnt_1013", "__cnt"); +__static_renaming("____cptr_1014", "__cptr"); +__static_renaming("__fips_1018", "fips"); +__static_renaming("__fips_1019", "fips"); +__static_renaming("__ssl_init_Module_1020", "ssl_init_Module"); +__static_renaming("__main_1023", "main"); -__static_condition_renaming("__static_condition_default_53", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_76", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_84", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_123", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_169", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_170", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_173", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_182", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_187", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_193", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_198", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_201", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_204", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_210", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_217", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_223", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_229", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_235", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_238", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_241", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_244", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_246", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_248", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_249", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_250", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_253", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_255", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_257", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_258", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_259", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_263", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_264", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_267", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_270", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_271", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_274", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_275", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_278", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_280", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); -__static_condition_renaming("__static_condition_default_282", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_284", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_286", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_288", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_290", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_293", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_296", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_299", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_311", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_313", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_315", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_317", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_331", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_333", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_337", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_341", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_345", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_347", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_355", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_357", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_363", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_365", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_367", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_369", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_373", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_375", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_380", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_382", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_386", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_388", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_393", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_395", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_402", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_408", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_412", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_417", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_419", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_431", "!(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_432", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_433", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_438", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_444", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_455", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_461", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_469", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_471", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_473", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_475", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_486", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_488", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_489", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_491", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_493", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_494", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_497", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_499", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_503", "!(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_510", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_511", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_512", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_514", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_515", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_516", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_521", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_523", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_529", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_536", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_537", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_538", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_539", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_541", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_542", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_543", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_544", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_549", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_550", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_552", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_553", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_559", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_560", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_564", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_568", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_573", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_578", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_583", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_585", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_590", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_597", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_602", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_608", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_613", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_619", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_621", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_623", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_625", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_632", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_633", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_634", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_636", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_637", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_638", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_645", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_646", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_647", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_649", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_650", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_651", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_657", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_658", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_659", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_661", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_662", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_663", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_668", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_670", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_677", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_683", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_684", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_685", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_686", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_692", "!(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_693", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_699", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_700", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_701", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_702", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_708", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_709", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_715", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_717", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_721", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_723", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_727", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_734", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_735", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_736", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_745", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_746", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_747", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_751", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_752", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_753", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_755", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_756", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_757", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_759", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_760", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_761", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_767", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_768", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_769", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_779", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_780", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_781", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_787", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_788", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_789", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_791", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_792", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_793", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_797", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_801", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_803", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_807", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_809", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_813", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_817", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_819", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_823", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_825", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_834", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_836", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_840", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_842", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_846", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_848", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_852", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_858", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_862", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_864", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_868", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_872", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_875", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_878", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_883", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_887", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_891", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_894", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_907", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_914", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_929", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_938", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_944", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_955", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_956", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_957", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_963", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_967", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_972", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_978", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_979", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_980", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_991", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_998", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1005", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1007", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1009", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1015", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1022", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1027", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1028", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1035", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1036", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1042", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1043", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1050", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1051", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1057", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1058", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1065", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1066", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1072", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1073", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1080", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1081", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1089", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_1090", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1091", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1095", "!(defined HAVE_FIPS)"); -__static_condition_renaming("__static_condition_default_1096", "(defined HAVE_FIPS)"); -__static_condition_renaming("__static_condition_default_1097", "!(defined __need___FILE) && (defined HAVE_FIPS)"); -__static_condition_renaming("__static_condition_default_1098", "(defined __need___FILE) && (defined HAVE_FIPS)"); -__static_condition_renaming("__static_condition_default_1100", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_74", "(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_118", "(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_161", "(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_162", "(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_165", "(defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_223", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_225", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_226", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_227", "(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_230", "(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_232", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_234", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_235", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_236", "(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_249", "!(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); +__static_condition_renaming("__static_condition_default_254", "!(defined _FILE_OFFSET_BITS) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_256", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_274", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_276", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_278", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_280", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_294", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_296", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_300", "(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_304", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_308", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_310", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_318", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_320", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_326", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_328", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_330", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_332", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_336", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_338", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_343", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_345", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_349", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_351", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_356", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_358", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_370", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_374", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_379", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_381", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_393", "!(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_394", "(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_395", "(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_400", "!(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_421", "!(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_429", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_431", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_433", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_435", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_446", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_448", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_449", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_451", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_453", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_454", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_457", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_459", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_469", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_470", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_471", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_473", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_474", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_475", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_480", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_482", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_494", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_495", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_496", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_497", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_499", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_500", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_501", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_502", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_507", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_508", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_510", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_511", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_517", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_528", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_533", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_538", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_540", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_551", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_556", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_562", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_567", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_573", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_575", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_577", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_579", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_586", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_588", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_595", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_597", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_603", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_605", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_610", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_612", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_624", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_625", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_626", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_627", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_633", "!(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_639", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_640", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_641", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_642", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_648", "!(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_649", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_655", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_657", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_661", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_663", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_672", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_680", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_684", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_686", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_688", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_694", "!(defined _FILE_OFFSET_BITS) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_695", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_696", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_706", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_707", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_708", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_714", "!(defined _FILE_OFFSET_BITS) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_715", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_716", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_718", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_719", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_720", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_727", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_729", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_733", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_735", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_739", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_743", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_745", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_749", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_751", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_760", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_762", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_766", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_768", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_772", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_774", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_778", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_784", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_788", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_790", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_794", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_798", "!(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_801", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_804", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_809", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_813", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_817", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_820", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_833", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_840", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_855", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_864", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_870", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_881", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_882", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_883", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_889", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_893", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_898", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_904", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_905", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_906", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_917", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_924", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_931", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_933", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_935", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_941", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_948", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_953", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_954", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_961", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_962", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_968", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_969", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_976", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_977", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_983", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_984", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_991", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_992", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_998", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_999", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1006", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1007", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1015", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_1016", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1017", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1021", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) || (defined __STRICT_ANSI__)"); +__static_condition_renaming("__static_condition_default_1022", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1024", "(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -if (__static_condition_default_1100) -{ +if (__static_condition_default_1024) { __static_parse_error("Unable to parse"); } }; @@ -882,142 +744,142 @@ typedef long int ____ssize_t_49;// L110:L172 typedef long int ____syscall_slong_t_50;// L93:L175 typedef unsigned long int ____syscall_ulong_t_51;// L94:L177 typedef ____off64_t_24 ____loff_t_52;// L181 -typedef ____quad_t_14 * (____qaddr_t_54);// L182 -typedef char * (____caddr_t_55);// L183 -typedef long int ____intptr_t_56;// L110:L186 -typedef unsigned int ____socklen_t_57;// L92:L189 -typedef struct __forward_tag_reference_58 __FILE_59;// L48 -typedef struct __forward_tag_reference_58 ____FILE_60;// L64 -union ____anonymous_tag_61_62 { -unsigned int ____wch_63;// L265 -char ____wchb_64[4];// L92 +typedef ____quad_t_14 * (____qaddr_t_53);// L182 +typedef char * (____caddr_t_54);// L183 +typedef long int ____intptr_t_55;// L110:L186 +typedef unsigned int ____socklen_t_56;// L92:L189 +typedef struct __forward_tag_reference_57 __FILE_58;// L48 +typedef struct __forward_tag_reference_57 ____FILE_59;// L64 +union ____anonymous_tag_60_61 { +unsigned int ____wch_62;// L265 +char ____wchb_63[4];// L92 }; -struct ____anonymous_tag_65_66 { -int ____count_67;// L84 -union ____anonymous_tag_61_62 ____value_68;// L85 +struct ____anonymous_tag_64_65 { +int ____count_66;// L84 +union ____anonymous_tag_60_61 ____value_67;// L85 }; -typedef struct ____anonymous_tag_65_66 ____mbstate_t_69;// L82:L94 -struct ____anonymous_tag_70_71 { -____off_t_23 ____pos_72;// L0 -____mbstate_t_69 ____state_74;// L0 +typedef struct ____anonymous_tag_64_65 ____mbstate_t_68;// L82:L94 +struct ____anonymous_tag_69_70 { +____off_t_23 ____pos_71;// L0 +____mbstate_t_68 ____state_72;// L0 }; -typedef struct ____anonymous_tag_70_71 ___G_fpos_t_77;// L21:L25 -struct ____anonymous_tag_78_79 { -____off64_t_24 ____pos_80;// L0 -____mbstate_t_69 ____state_82;// L0 +typedef struct ____anonymous_tag_69_70 ___G_fpos_t_75;// L21:L25 +struct ____anonymous_tag_76_77 { +____off64_t_24 ____pos_78;// L0 +____mbstate_t_68 ____state_79;// L0 }; -typedef struct ____anonymous_tag_78_79 ___G_fpos64_t_85;// L26:L30 -typedef __builtin_va_list ____gnuc_va_list_86;// L40 -typedef void ___IO_lock_t_88;// L150 -struct ___IO_marker_90 { -struct __forward_tag_reference_89 * (___next_91);// L0 -struct __forward_tag_reference_58 * (___sbuf_92);// L0 -int ___pos_93;// L162 +typedef struct ____anonymous_tag_76_77 ___G_fpos64_t_81;// L26:L30 +typedef __builtin_va_list ____gnuc_va_list_82;// L40 +typedef void ___IO_lock_t_84;// L150 +struct ___IO_marker_86 { +struct __forward_tag_reference_85 * (___next_87);// L0 +struct __forward_tag_reference_57 * (___sbuf_88);// L0 +int ___pos_89;// L162 }; -enum ____codecvt_result_98 { -____codecvt_ok_94, -____codecvt_partial_95, -____codecvt_error_96, -____codecvt_noconv_97, +enum ____codecvt_result_94 { +____codecvt_ok_90, +____codecvt_partial_91, +____codecvt_error_92, +____codecvt_noconv_93, }; -struct ___IO_FILE_99 { -int ___flags_100;// L242 -char * (___IO_read_ptr_101);// L247 -char * (___IO_read_end_102);// L248 -char * (___IO_read_base_103);// L249 -char * (___IO_write_base_104);// L250 -char * (___IO_write_ptr_105);// L251 -char * (___IO_write_end_106);// L252 -char * (___IO_buf_base_107);// L253 -char * (___IO_buf_end_108);// L254 -char * (___IO_save_base_109);// L256 -char * (___IO_backup_base_110);// L257 -char * (___IO_save_end_111);// L258 -struct ___IO_marker_90 * (___markers_112);// L260 -struct __forward_tag_reference_58 * (___chain_113);// L0 -int ___fileno_114;// L264 -int ___flags2_115;// L268 -____off_t_23 ___old_offset_116;// L0 -unsigned short ___cur_column_118;// L274 -signed char ___vtable_offset_119;// L275 -char ___shortbuf_120[1];// L276 -___IO_lock_t_88 * (___lock_121);// L0 +struct ___IO_FILE_95 { +int ___flags_96;// L242 +char * (___IO_read_ptr_97);// L247 +char * (___IO_read_end_98);// L248 +char * (___IO_read_base_99);// L249 +char * (___IO_write_base_100);// L250 +char * (___IO_write_ptr_101);// L251 +char * (___IO_write_end_102);// L252 +char * (___IO_buf_base_103);// L253 +char * (___IO_buf_end_104);// L254 +char * (___IO_save_base_105);// L256 +char * (___IO_backup_base_106);// L257 +char * (___IO_save_end_107);// L258 +struct ___IO_marker_86 * (___markers_108);// L260 +struct __forward_tag_reference_57 * (___chain_109);// L0 +int ___fileno_110;// L264 +int ___flags2_111;// L268 +____off_t_23 ___old_offset_112;// L0 +unsigned short ___cur_column_113;// L274 +signed char ___vtable_offset_114;// L275 +char ___shortbuf_115[1];// L276 +___IO_lock_t_84 * (___lock_116);// L0 }; -struct ___IO_FILE_124 { -int ___flags_125;// L242 -char * (___IO_read_ptr_126);// L247 -char * (___IO_read_end_127);// L248 -char * (___IO_read_base_128);// L249 -char * (___IO_write_base_129);// L250 -char * (___IO_write_ptr_130);// L251 -char * (___IO_write_end_131);// L252 -char * (___IO_buf_base_132);// L253 -char * (___IO_buf_end_133);// L254 -char * (___IO_save_base_134);// L256 -char * (___IO_backup_base_135);// L257 -char * (___IO_save_end_136);// L258 -struct ___IO_marker_90 * (___markers_137);// L260 -struct __forward_tag_reference_58 * (___chain_138);// L0 -int ___fileno_139;// L264 -int ___flags2_140;// L268 -____off_t_23 ___old_offset_141;// L0 -unsigned short ___cur_column_143;// L274 -signed char ___vtable_offset_144;// L275 -char ___shortbuf_145[1];// L276 -___IO_lock_t_88 * (___lock_146);// L0 -____off64_t_24 ___offset_148;// L0 -void * (____pad1_150);// L297 -void * (____pad2_151);// L298 -void * (____pad3_152);// L299 -void * (____pad4_153);// L300 -__size_t_1 ____pad5_154;// L0 -int ___mode_155;// L303 -char ___unused2_156[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +struct ___IO_FILE_119 { +int ___flags_120;// L242 +char * (___IO_read_ptr_121);// L247 +char * (___IO_read_end_122);// L248 +char * (___IO_read_base_123);// L249 +char * (___IO_write_base_124);// L250 +char * (___IO_write_ptr_125);// L251 +char * (___IO_write_end_126);// L252 +char * (___IO_buf_base_127);// L253 +char * (___IO_buf_end_128);// L254 +char * (___IO_save_base_129);// L256 +char * (___IO_backup_base_130);// L257 +char * (___IO_save_end_131);// L258 +struct ___IO_marker_86 * (___markers_132);// L260 +struct __forward_tag_reference_57 * (___chain_133);// L0 +int ___fileno_134;// L264 +int ___flags2_135;// L268 +____off_t_23 ___old_offset_136;// L0 +unsigned short ___cur_column_137;// L274 +signed char ___vtable_offset_138;// L275 +char ___shortbuf_139[1];// L276 +___IO_lock_t_84 * (___lock_140);// L0 +____off64_t_24 ___offset_142;// L0 +void * (____pad1_143);// L297 +void * (____pad2_144);// L298 +void * (____pad3_145);// L299 +void * (____pad4_146);// L300 +__size_t_1 ____pad5_147;// L0 +int ___mode_148;// L303 +char ___unused2_149[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -struct ___IO_FILE_complete_157 { -struct ___IO_FILE_99 ___file_158;// L286 -____off64_t_24 ___offset_160;// L0 -void * (____pad1_162);// L297 -void * (____pad2_163);// L298 -void * (____pad3_164);// L299 -void * (____pad4_165);// L300 -__size_t_1 ____pad5_166;// L0 -int ___mode_167;// L303 -char ___unused2_168[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +struct ___IO_FILE_complete_150 { +struct ___IO_FILE_95 ___file_151;// L286 +____off64_t_24 ___offset_153;// L0 +void * (____pad1_154);// L297 +void * (____pad2_155);// L298 +void * (____pad3_156);// L299 +void * (____pad4_157);// L300 +__size_t_1 ____pad5_158;// L0 +int ___mode_159;// L303 +char ___unused2_160[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -typedef struct ___IO_FILE_99 ___IO_FILE_171;// L310 -typedef struct ___IO_FILE_124 ___IO_FILE_172;// L310 -typedef ____ssize_t_49 (____io_read_fn_181) (void * (____cookie_178), char * (____buf_179), __size_t_1 ____nbytes_180);// L333 -typedef ____ssize_t_49 (____io_write_fn_186) (void * (____cookie_183), const char * (____buf_184), __size_t_1 ____n_185);// L341:L342 -typedef int (____io_seek_fn_192) (void * (____cookie_188), ____off64_t_24 * (____pos_189), int ____w_191);// L350 -typedef int (____io_close_fn_195) (void * (____cookie_194));// L353 -typedef ____gnuc_va_list_86 __va_list_279;// L79 -typedef ____off_t_23 __off_t_281;// L90 -typedef ____off64_t_24 __off_t_283;// L92 -typedef ____ssize_t_49 __ssize_t_285;// L102 -typedef ___G_fpos_t_77 __fpos_t_287;// L110 -typedef ___G_fpos64_t_85 __fpos_t_289;// L112 -extern const char * const __sys_errlist_830[];// L27 +typedef struct ___IO_FILE_95 ___IO_FILE_163;// L310 +typedef struct ___IO_FILE_119 ___IO_FILE_164;// L310 +typedef ____ssize_t_49 (____io_read_fn_173) (void * (____cookie_170), char * (____buf_171), __size_t_1 ____nbytes_172);// L333 +typedef ____ssize_t_49 (____io_write_fn_177) (void * (____cookie_174), const char * (____buf_175), __size_t_1 ____n_176);// L341:L342 +typedef int (____io_seek_fn_181) (void * (____cookie_178), ____off64_t_24 * (____pos_179), int ____w_180);// L350 +typedef int (____io_close_fn_183) (void * (____cookie_182));// L353 +typedef ____gnuc_va_list_82 __va_list_248;// L79 +typedef ____off_t_23 __off_t_250;// L90 +typedef ____off64_t_24 __off_t_251;// L92 +typedef ____ssize_t_49 __ssize_t_252;// L102 +typedef ___G_fpos_t_75 __fpos_t_253;// L110 +typedef ___G_fpos64_t_81 __fpos_t_255;// L112 +extern const char * const __sys_errlist_756[];// L27 -struct __forward_tag_reference_89 { // generated union of struct variations +struct __forward_tag_reference_57 { // generated union of struct variations union { -struct ___IO_marker_90 ___IO_marker_90; +struct ___IO_FILE_95 ___IO_FILE_95; +struct ___IO_FILE_119 ___IO_FILE_119; }; }; -struct __forward_tag_reference_58 { // generated union of struct variations +struct __forward_tag_reference_85 { // generated union of struct variations union { -struct ___IO_FILE_99 ___IO_FILE_99; -struct ___IO_FILE_124 ___IO_FILE_124; +struct ___IO_marker_86 ___IO_marker_86; }; }; -struct __forward_tag_reference_87 { // generated union of struct variations +struct __forward_tag_reference_83 { // generated union of struct variations union { }; }; -struct __forward_tag_reference_174 { // generated union of struct variations +struct __forward_tag_reference_166 { // generated union of struct variations union { }; }; @@ -1076,225 +938,225 @@ union { // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_58 ;// L0 +struct __forward_tag_reference_57 ;// L0 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_87 ;// L0 -struct __forward_tag_reference_87 ;// L0 -struct __forward_tag_reference_58 ;// L0 +struct __forward_tag_reference_83 ;// L0 +struct __forward_tag_reference_83 ;// L0 +struct __forward_tag_reference_57 ;// L0 // typedef moved to top of scope -struct ___IO_marker_90 ;// L156 -enum ____codecvt_result_98 ;// L176 -struct ___IO_FILE_99 ;// L241 +struct ___IO_marker_86 ;// L156 +enum ____codecvt_result_94 ;// L176 +struct ___IO_FILE_95 ;// L241 -struct ___IO_FILE_124 ;// L241 -struct ___IO_FILE_complete_157 ;// L241 +struct ___IO_FILE_119 ;// L241 +struct ___IO_FILE_complete_150 ;// L241 // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_174 ;// L0 -extern struct __forward_tag_reference_174 ___IO_2_1_stdin__175;// L315 -extern struct __forward_tag_reference_174 ___IO_2_1_stdout__176;// L316 -extern struct __forward_tag_reference_174 ___IO_2_1_stderr__177;// L317 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern int (____underflow_196) (___IO_FILE_171 *);// L385 -extern int (____underflow_197) (___IO_FILE_172 *);// L385 -extern int (____uflow_199) (___IO_FILE_171 *);// L386 -extern int (____uflow_200) (___IO_FILE_172 *);// L386 -extern int (____overflow_202) (___IO_FILE_171 *, int );// L387 -extern int (____overflow_203) (___IO_FILE_172 *, int );// L387 -extern int (___IO_getc_208) (___IO_FILE_171 * (____fp_205));// L429 -extern int (___IO_getc_209) (___IO_FILE_172 * (____fp_206));// L429 -extern int (___IO_putc_215) (int ____c_211, ___IO_FILE_171 * (____fp_212));// L430 -extern int (___IO_putc_216) (int ____c_211, ___IO_FILE_172 * (____fp_213));// L430 -extern int (___IO_feof_221) (___IO_FILE_171 * (____fp_218));// L431 -extern int (___IO_feof_222) (___IO_FILE_172 * (____fp_219));// L431 -extern int (___IO_ferror_227) (___IO_FILE_171 * (____fp_224));// L432 -extern int (___IO_ferror_228) (___IO_FILE_172 * (____fp_225));// L432 -extern int (___IO_peekc_locked_233) (___IO_FILE_171 * (____fp_230));// L434 -extern int (___IO_peekc_locked_234) (___IO_FILE_172 * (____fp_231));// L434 -extern void (___IO_flockfile_236) (___IO_FILE_171 *);// L440 -extern void (___IO_flockfile_237) (___IO_FILE_172 *);// L440 -extern void (___IO_funlockfile_239) (___IO_FILE_171 *);// L441 -extern void (___IO_funlockfile_240) (___IO_FILE_172 *);// L441 -extern int (___IO_ftrylockfile_242) (___IO_FILE_171 *);// L442 -extern int (___IO_ftrylockfile_243) (___IO_FILE_172 *);// L442 -extern int (___IO_vfscanf_245) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_247) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_251) (___IO_FILE_171 * __restrict , const char * __restrict , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_252) (___IO_FILE_172 * __restrict , const char * __restrict , int * __restrict );// L459:L460 -extern int (___IO_vfprintf_254) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 -extern int (___IO_vfprintf_256) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 -extern int (___IO_vfprintf_260) ();// L461:L462 -extern ____ssize_t_49 (___IO_padn_261) (___IO_FILE_171 *, int , ____ssize_t_49 );// L463 -extern ____ssize_t_49 (___IO_padn_262) (___IO_FILE_172 *, int , ____ssize_t_49 );// L463 -extern __size_t_1 (___IO_sgetn_265) (___IO_FILE_171 *, void *, __size_t_1 );// L464 -extern __size_t_1 (___IO_sgetn_266) (___IO_FILE_172 *, void *, __size_t_1 );// L464 -extern ____off64_t_24 (___IO_seekoff_268) (___IO_FILE_171 *, ____off64_t_24 , int , int );// L466 -extern ____off64_t_24 (___IO_seekoff_269) (___IO_FILE_172 *, ____off64_t_24 , int , int );// L466 -extern ____off64_t_24 (___IO_seekpos_272) (___IO_FILE_171 *, ____off64_t_24 , int );// L467 -extern ____off64_t_24 (___IO_seekpos_273) (___IO_FILE_172 *, ____off64_t_24 , int );// L467 -extern void (___IO_free_backup_area_276) (___IO_FILE_171 *);// L469 -extern void (___IO_free_backup_area_277) (___IO_FILE_172 *);// L469 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern struct ___IO_FILE_99 * (__stdin_291);// L168 -extern struct ___IO_FILE_124 * (__stdin_292);// L168 -extern struct ___IO_FILE_99 * (__stdout_294);// L169 -extern struct ___IO_FILE_124 * (__stdout_295);// L169 -extern struct ___IO_FILE_99 * (__stderr_297);// L170 -extern struct ___IO_FILE_124 * (__stderr_298);// L170 -extern int (__remove_301) (const char * (____filename_300));// L178 -extern int (__rename_304) (const char * (____old_302), const char * (____new_303));// L180 -extern int (__renameat_309) (int ____oldfd_305, const char * (____old_306), int ____newfd_307, const char * (____new_308));// L185:L186 -extern __FILE_59 * ((__tmpfile_310) (void ));// L195 -extern __FILE_59 * ((__tmpfile_316) (void ));// L198 -extern __FILE_59 * ((__tmpfile_314) (void ));// L195 -extern __FILE_59 * ((__tmpfile_312) (void ));// L198 -extern char * ((__tmpnam_319) (char * (____s_318)));// L209 -extern char * ((__tmpnam_320) (char * (____s_318)));// L209 -extern char * ((__tmpnam_r_322) (char * (____s_321)));// L215 -extern char * ((__tmpnam_r_323) (char * (____s_321)));// L215 -extern char * ((__tempnam_326) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 -extern char * ((__tempnam_327) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 -extern int (__fclose_330) (__FILE_59 * (____stream_328));// L237 -extern int (__fclose_332) (__FILE_59 * (____stream_328));// L237 -extern int (__fflush_336) (__FILE_59 * (____stream_334));// L242 -extern int (__fflush_unlocked_340) (__FILE_59 * (____stream_338));// L252 -extern __FILE_59 * ((__fopen_344) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 -extern __FILE_59 * ((__fopen_346) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 -extern __FILE_59 * ((__fopen_354) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 -extern __FILE_59 * ((__fopen_356) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 -extern __FILE_59 * ((__freopen_362) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 -extern __FILE_59 * ((__freopen_368) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 -extern __FILE_59 * ((__freopen_366) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 -extern __FILE_59 * ((__freopen_364) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 -extern __FILE_59 * ((__fdopen_372) (int ____fd_370, const char * (____modes_371)));// L306 -extern __FILE_59 * ((__fdopen_374) (int ____fd_370, const char * (____modes_371)));// L306 -extern __FILE_59 * ((__fmemopen_379) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 -extern __FILE_59 * ((__fmemopen_381) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 -extern __FILE_59 * ((__open_memstream_385) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 -extern __FILE_59 * ((__open_memstream_387) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 -extern void (__setbuf_392) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 -extern void (__setbuf_394) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 -extern int (__setvbuf_401) (__FILE_59 * __restrict ____stream_396, char * __restrict ____buf_398, int ____modes_399, __size_t_1 ____n_400);// L336:L337 -extern void (__setbuffer_407) (__FILE_59 * __restrict ____stream_403, char * __restrict ____buf_405, __size_t_1 ____size_406);// L343:L344 -extern void (__setlinebuf_411) (__FILE_59 * (____stream_409));// L347 -extern int (__fprintf_416) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 -extern int (__fprintf_418) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 -extern int (__printf_421) (const char * __restrict ____format_420, ... );// L362 -extern int (__sprintf_424) (char * __restrict ____s_422, const char * __restrict ____format_423, ... );// L364:L365 -extern int (__vfprintf_430) (__FILE_59 * __restrict ____s_425, const char * __restrict ____format_427, ____gnuc_va_list_86 ____arg_428);// L371:L372 -extern int (__vprintf_437) (const char * __restrict ____format_434, ____gnuc_va_list_86 ____arg_435);// L377 -extern int (__vsprintf_443) (char * __restrict ____s_439, const char * __restrict ____format_440, ____gnuc_va_list_86 ____arg_441);// L379:L380 -extern int (__snprintf_448) (char * __restrict ____s_445, __size_t_1 ____maxlen_446, const char * __restrict ____format_447, ... );// L386:L388 -extern int (__vsnprintf_454) (char * __restrict ____s_449, __size_t_1 ____maxlen_450, const char * __restrict ____format_451, ____gnuc_va_list_86 ____arg_452);// L390:L392 -extern int (__vdprintf_460) (int ____fd_456, const char * __restrict ____fmt_457, ____gnuc_va_list_86 ____arg_458);// L412:L414 -extern int (__dprintf_464) (int ____fd_462, const char * __restrict ____fmt_463, ... );// L415:L416 -extern int (__fscanf_468) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__fscanf_470) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__fscanf_472) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__fscanf_474) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__scanf_477) (const char * __restrict ____format_476, ... );// L431 -extern int (__scanf_478) (const char * __restrict ____format_476, ... );// L431 -extern int (__sscanf_481) (const char * __restrict ____s_479, const char * __restrict ____format_480, ... );// L433:L434 +struct __forward_tag_reference_166 ;// L0 +extern struct __forward_tag_reference_166 ___IO_2_1_stdin__167;// L315 +extern struct __forward_tag_reference_166 ___IO_2_1_stdout__168;// L316 +extern struct __forward_tag_reference_166 ___IO_2_1_stderr__169;// L317 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern int (____underflow_184) (___IO_FILE_163 *);// L385 +extern int (____underflow_185) (___IO_FILE_164 *);// L385 +extern int (____uflow_186) (___IO_FILE_163 *);// L386 +extern int (____uflow_187) (___IO_FILE_164 *);// L386 +extern int (____overflow_188) (___IO_FILE_163 *, int );// L387 +extern int (____overflow_189) (___IO_FILE_164 *, int );// L387 +extern int (___IO_getc_193) (___IO_FILE_163 * (____fp_190));// L429 +extern int (___IO_getc_194) (___IO_FILE_164 * (____fp_191));// L429 +extern int (___IO_putc_199) (int ____c_195, ___IO_FILE_163 * (____fp_196));// L430 +extern int (___IO_putc_200) (int ____c_195, ___IO_FILE_164 * (____fp_197));// L430 +extern int (___IO_feof_204) (___IO_FILE_163 * (____fp_201));// L431 +extern int (___IO_feof_205) (___IO_FILE_164 * (____fp_202));// L431 +extern int (___IO_ferror_209) (___IO_FILE_163 * (____fp_206));// L432 +extern int (___IO_ferror_210) (___IO_FILE_164 * (____fp_207));// L432 +extern int (___IO_peekc_locked_214) (___IO_FILE_163 * (____fp_211));// L434 +extern int (___IO_peekc_locked_215) (___IO_FILE_164 * (____fp_212));// L434 +extern void (___IO_flockfile_216) (___IO_FILE_163 *);// L440 +extern void (___IO_flockfile_217) (___IO_FILE_164 *);// L440 +extern void (___IO_funlockfile_218) (___IO_FILE_163 *);// L441 +extern void (___IO_funlockfile_219) (___IO_FILE_164 *);// L441 +extern int (___IO_ftrylockfile_220) (___IO_FILE_163 *);// L442 +extern int (___IO_ftrylockfile_221) (___IO_FILE_164 *);// L442 +extern int (___IO_vfscanf_222) (___IO_FILE_163 * __restrict , const char * __restrict , ____gnuc_va_list_82 , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_224) (___IO_FILE_164 * __restrict , const char * __restrict , ____gnuc_va_list_82 , int * __restrict );// L459:L460 + +extern int (___IO_vfprintf_231) (___IO_FILE_163 * __restrict , const char * __restrict , ____gnuc_va_list_82 );// L461:L462 +extern int (___IO_vfprintf_233) (___IO_FILE_164 * __restrict , const char * __restrict , ____gnuc_va_list_82 );// L461:L462 +extern ____ssize_t_49 (___IO_padn_238) (___IO_FILE_163 *, int , ____ssize_t_49 );// L463 +extern ____ssize_t_49 (___IO_padn_239) (___IO_FILE_164 *, int , ____ssize_t_49 );// L463 +extern __size_t_1 (___IO_sgetn_240) (___IO_FILE_163 *, void *, __size_t_1 );// L464 +extern __size_t_1 (___IO_sgetn_241) (___IO_FILE_164 *, void *, __size_t_1 );// L464 +extern ____off64_t_24 (___IO_seekoff_242) (___IO_FILE_163 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekoff_243) (___IO_FILE_164 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekpos_244) (___IO_FILE_163 *, ____off64_t_24 , int );// L467 +extern ____off64_t_24 (___IO_seekpos_245) (___IO_FILE_164 *, ____off64_t_24 , int );// L467 +extern void (___IO_free_backup_area_246) (___IO_FILE_163 *);// L469 +extern void (___IO_free_backup_area_247) (___IO_FILE_164 *);// L469 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern struct ___IO_FILE_95 * (__stdin_257);// L168 +extern struct ___IO_FILE_119 * (__stdin_258);// L168 +extern struct ___IO_FILE_95 * (__stdout_259);// L169 +extern struct ___IO_FILE_119 * (__stdout_260);// L169 +extern struct ___IO_FILE_95 * (__stderr_261);// L170 +extern struct ___IO_FILE_119 * (__stderr_262);// L170 +extern int (__remove_264) (const char * (____filename_263));// L178 +extern int (__rename_267) (const char * (____old_265), const char * (____new_266));// L180 +extern int (__renameat_272) (int ____oldfd_268, const char * (____old_269), int ____newfd_270, const char * (____new_271));// L185:L186 +extern __FILE_58 * ((__tmpfile_273) (void ));// L195 +extern __FILE_58 * ((__tmpfile_279) (void ));// L198 +extern __FILE_58 * ((__tmpfile_277) (void ));// L198 +extern __FILE_58 * ((__tmpfile_275) (void ));// L195 +extern char * ((__tmpnam_282) (char * (____s_281)));// L209 +extern char * ((__tmpnam_283) (char * (____s_281)));// L209 +extern char * ((__tmpnam_r_285) (char * (____s_284)));// L215 +extern char * ((__tmpnam_r_286) (char * (____s_284)));// L215 +extern char * ((__tempnam_289) (const char * (____dir_287), const char * (____pfx_288)));// L227:L228 +extern char * ((__tempnam_290) (const char * (____dir_287), const char * (____pfx_288)));// L227:L228 +extern int (__fclose_293) (__FILE_58 * (____stream_291));// L237 +extern int (__fclose_295) (__FILE_58 * (____stream_291));// L237 +extern int (__fflush_299) (__FILE_58 * (____stream_297));// L242 +extern int (__fflush_unlocked_303) (__FILE_58 * (____stream_301));// L252 +extern __FILE_58 * ((__fopen_307) (const char * __restrict ____filename_305, const char * __restrict ____modes_306));// L272:L273 +extern __FILE_58 * ((__fopen_309) (const char * __restrict ____filename_305, const char * __restrict ____modes_306));// L272:L273 +extern __FILE_58 * ((__fopen_317) (const char * __restrict ____filename_315, const char * __restrict ____modes_316));// L283:L285 +extern __FILE_58 * ((__fopen_319) (const char * __restrict ____filename_315, const char * __restrict ____modes_316));// L283:L285 +extern __FILE_58 * ((__freopen_325) (const char * __restrict ____filename_311, const char * __restrict ____modes_312, __FILE_58 * __restrict ____stream_313));// L278:L280 +extern __FILE_58 * ((__freopen_331) (const char * __restrict ____filename_321, const char * __restrict ____modes_322, __FILE_58 * __restrict ____stream_323));// L286:L289 +extern __FILE_58 * ((__freopen_329) (const char * __restrict ____filename_321, const char * __restrict ____modes_322, __FILE_58 * __restrict ____stream_323));// L286:L289 +extern __FILE_58 * ((__freopen_327) (const char * __restrict ____filename_311, const char * __restrict ____modes_312, __FILE_58 * __restrict ____stream_313));// L278:L280 +extern __FILE_58 * ((__fdopen_335) (int ____fd_333, const char * (____modes_334)));// L306 +extern __FILE_58 * ((__fdopen_337) (int ____fd_333, const char * (____modes_334)));// L306 +extern __FILE_58 * ((__fmemopen_342) (void * (____s_339), __size_t_1 ____len_340, const char * (____modes_341)));// L319:L320 +extern __FILE_58 * ((__fmemopen_344) (void * (____s_339), __size_t_1 ____len_340, const char * (____modes_341)));// L319:L320 +extern __FILE_58 * ((__open_memstream_348) (char * (* (____bufloc_346)), __size_t_1 * (____sizeloc_347)));// L325 +extern __FILE_58 * ((__open_memstream_350) (char * (* (____bufloc_346)), __size_t_1 * (____sizeloc_347)));// L325 +extern void (__setbuf_355) (__FILE_58 * __restrict ____stream_352, char * __restrict ____buf_354);// L332 +extern void (__setbuf_357) (__FILE_58 * __restrict ____stream_352, char * __restrict ____buf_354);// L332 +extern int (__setvbuf_364) (__FILE_58 * __restrict ____stream_359, char * __restrict ____buf_361, int ____modes_362, __size_t_1 ____n_363);// L336:L337 +extern void (__setbuffer_369) (__FILE_58 * __restrict ____stream_365, char * __restrict ____buf_367, __size_t_1 ____size_368);// L343:L344 +extern void (__setlinebuf_373) (__FILE_58 * (____stream_371));// L347 +extern int (__fprintf_378) (__FILE_58 * __restrict ____stream_375, const char * __restrict ____format_377, ... );// L356:L357 +extern int (__fprintf_380) (__FILE_58 * __restrict ____stream_375, const char * __restrict ____format_377, ... );// L356:L357 +extern int (__printf_383) (const char * __restrict ____format_382, ... );// L362 +extern int (__sprintf_386) (char * __restrict ____s_384, const char * __restrict ____format_385, ... );// L364:L365 +extern int (__vfprintf_392) (__FILE_58 * __restrict ____s_387, const char * __restrict ____format_389, ____gnuc_va_list_82 ____arg_390);// L371:L372 +extern int (__vprintf_399) (const char * __restrict ____format_396, ____gnuc_va_list_82 ____arg_397);// L377 +extern int (__vsprintf_405) (char * __restrict ____s_401, const char * __restrict ____format_402, ____gnuc_va_list_82 ____arg_403);// L379:L380 +extern int (__snprintf_409) (char * __restrict ____s_406, __size_t_1 ____maxlen_407, const char * __restrict ____format_408, ... );// L386:L388 +extern int (__vsnprintf_415) (char * __restrict ____s_410, __size_t_1 ____maxlen_411, const char * __restrict ____format_412, ____gnuc_va_list_82 ____arg_413);// L390:L392 +extern int (__vdprintf_420) (int ____fd_416, const char * __restrict ____fmt_417, ____gnuc_va_list_82 ____arg_418);// L412:L414 +extern int (__dprintf_424) (int ____fd_422, const char * __restrict ____fmt_423, ... );// L415:L416 +extern int (__fscanf_428) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 +extern int (__fscanf_430) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 +extern int (__fscanf_432) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 +extern int (__fscanf_434) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 +extern int (__scanf_437) (const char * __restrict ____format_436, ... );// L431 +extern int (__scanf_438) (const char * __restrict ____format_436, ... );// L431 +extern int (__sscanf_441) (const char * __restrict ____s_439, const char * __restrict ____format_440, ... );// L433:L434 -extern int (__vfscanf_509) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 -extern int (__vfscanf_513) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 -extern int (__vscanf_520) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 -extern int (__vscanf_522) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 -extern int (__vsscanf_528) (const char * __restrict ____s_524, const char * __restrict ____format_525, ____gnuc_va_list_86 ____arg_526);// L483:L485 +extern int (__vfscanf_468) (__FILE_58 * __restrict ____s_463, const char * __restrict ____format_465, ____gnuc_va_list_82 ____arg_466);// L471:L473 +extern int (__vfscanf_472) (__FILE_58 * __restrict ____s_463, const char * __restrict ____format_465, ____gnuc_va_list_82 ____arg_466);// L471:L473 +extern int (__vscanf_479) (const char * __restrict ____format_476, ____gnuc_va_list_82 ____arg_477);// L479:L480 +extern int (__vscanf_481) (const char * __restrict ____format_476, ____gnuc_va_list_82 ____arg_477);// L479:L480 +extern int (__vsscanf_487) (const char * __restrict ____s_483, const char * __restrict ____format_484, ____gnuc_va_list_82 ____arg_485);// L483:L485 -extern int (__fgetc_563) (__FILE_59 * (____stream_561));// L531 -extern int (__getc_567) (__FILE_59 * (____stream_565));// L532 -extern int (__getchar_569) (void );// L538 -extern int (__getc_unlocked_572) (__FILE_59 * (____stream_570));// L550 -extern int (__getchar_unlocked_574) (void );// L551 -extern int (__fgetc_unlocked_577) (__FILE_59 * (____stream_575));// L561 -extern int (__fputc_582) (int ____c_579, __FILE_59 * (____stream_580));// L573 -extern int (__fputc_584) (int ____c_579, __FILE_59 * (____stream_580));// L573 -extern int (__putc_589) (int ____c_586, __FILE_59 * (____stream_587));// L574 -extern int (__putchar_592) (int ____c_591);// L580 -extern int (__fputc_unlocked_596) (int ____c_593, __FILE_59 * (____stream_594));// L594 -extern int (__putc_unlocked_601) (int ____c_598, __FILE_59 * (____stream_599));// L602 -extern int (__putchar_unlocked_604) (int ____c_603);// L603 -extern int (__getw_607) (__FILE_59 * (____stream_605));// L610 -extern int (__putw_612) (int ____w_609, __FILE_59 * (____stream_610));// L613 -extern char * ((__fgets_618) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern char * ((__fgets_620) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern char * ((__fgets_622) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern char * ((__fgets_624) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern ____ssize_t_49 (____getdelim_631) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 -extern ____ssize_t_49 (____getdelim_635) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 -extern ____ssize_t_49 (__getdelim_644) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 -extern ____ssize_t_49 (__getdelim_648) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 -extern ____ssize_t_49 (__getline_656) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 -extern ____ssize_t_49 (__getline_660) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 -extern int (__fputs_667) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 -extern int (__fputs_669) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 -extern int (__puts_672) (const char * (____s_671));// L695 -extern int (__ungetc_676) (int ____c_673, __FILE_59 * (____stream_674));// L702 -extern int (__fseek_714) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 -extern int (__fseek_716) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 -extern long int (__ftell_720) (__FILE_59 * (____stream_718));// L754 -extern long int (__ftell_722) (__FILE_59 * (____stream_718));// L754 -extern void (__rewind_726) (__FILE_59 * (____stream_724));// L759 -extern int (__fseeko_733) (__FILE_59 * (____stream_728), ____off_t_23 ____off_730, int ____whence_732);// L773 -extern int (__fseeko_744) (__FILE_59 * (____stream_739), ____off64_t_24 ____off_741, int ____whence_743);// L781:L783 -extern ____off_t_23 (__ftello_758) (__FILE_59 * (____stream_737));// L778 -extern ____off_t_23 (__ftello_750) (__FILE_59 * (____stream_737));// L778 -extern int (__fgetpos_766) (__FILE_59 * __restrict ____stream_762, __fpos_t_287 * __restrict ____pos_764);// L798 -extern ____off64_t_24 (__ftello_754) (__FILE_59 * (____stream_748));// L784 -extern int (__fgetpos_778) (__FILE_59 * __restrict ____stream_774, __fpos_t_289 * __restrict ____pos_776);// L806:L807 -extern int (__fsetpos_786) (__FILE_59 * (____stream_770), const __fpos_t_287 * (____pos_772));// L803 -extern int (__fsetpos_790) (__FILE_59 * (____stream_782), const __fpos_t_289 * (____pos_784));// L808:L809 -extern void (__clearerr_796) (__FILE_59 * (____stream_794));// L826 -extern int (__feof_800) (__FILE_59 * (____stream_798));// L828 -extern int (__feof_802) (__FILE_59 * (____stream_798));// L828 -extern int (__ferror_806) (__FILE_59 * (____stream_804));// L830 -extern int (__ferror_808) (__FILE_59 * (____stream_804));// L830 -extern void (__clearerr_unlocked_812) (__FILE_59 * (____stream_810));// L835 -extern int (__feof_unlocked_816) (__FILE_59 * (____stream_814));// L836 -extern int (__feof_unlocked_818) (__FILE_59 * (____stream_814));// L836 -extern int (__ferror_unlocked_822) (__FILE_59 * (____stream_820));// L837 -extern int (__ferror_unlocked_824) (__FILE_59 * (____stream_820));// L837 -extern void (__perror_827) (const char * (____s_826));// L846 -extern void (__perror_828) (const char * (____s_826));// L846 -extern int __sys_nerr_829;// L26 -extern int (__fileno_835) (__FILE_59 * (____stream_831));// L858 -extern int (__fileno_833) (__FILE_59 * (____stream_831));// L858 -extern int (__fileno_unlocked_841) (__FILE_59 * (____stream_837));// L863 -extern int (__fileno_unlocked_839) (__FILE_59 * (____stream_837));// L863 -extern __FILE_59 * ((__popen_845) (const char * (____command_843), const char * (____modes_844)));// L872 -extern __FILE_59 * ((__popen_847) (const char * (____command_843), const char * (____modes_844)));// L872 -extern int (__pclose_851) (__FILE_59 * (____stream_849));// L878 -extern char * ((__ctermid_854) (char * (____s_853)));// L884 -extern void (__flockfile_857) (__FILE_59 * (____stream_855));// L912 -extern int (__ftrylockfile_861) (__FILE_59 * (____stream_859));// L916 -extern int (__ftrylockfile_863) (__FILE_59 * (____stream_859));// L916 -extern void (__funlockfile_867) (__FILE_59 * (____stream_865));// L919 + +extern int (__fgetc_520) (__FILE_58 * (____stream_518));// L531 +extern int (__getc_523) (__FILE_58 * (____stream_521));// L532 +extern int (__getchar_524) (void );// L538 +extern int (__getc_unlocked_527) (__FILE_58 * (____stream_525));// L550 +extern int (__getchar_unlocked_529) (void );// L551 +extern int (__fgetc_unlocked_532) (__FILE_58 * (____stream_530));// L561 +extern int (__fputc_537) (int ____c_534, __FILE_58 * (____stream_535));// L573 +extern int (__fputc_539) (int ____c_534, __FILE_58 * (____stream_535));// L573 +extern int (__putc_544) (int ____c_541, __FILE_58 * (____stream_542));// L574 +extern int (__putchar_546) (int ____c_545);// L580 +extern int (__fputc_unlocked_550) (int ____c_547, __FILE_58 * (____stream_548));// L594 +extern int (__putc_unlocked_555) (int ____c_552, __FILE_58 * (____stream_553));// L602 +extern int (__putchar_unlocked_558) (int ____c_557);// L603 +extern int (__getw_561) (__FILE_58 * (____stream_559));// L610 +extern int (__putw_566) (int ____w_563, __FILE_58 * (____stream_564));// L613 +extern char * ((__fgets_572) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 +extern char * ((__fgets_574) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 +extern char * ((__fgets_576) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 +extern char * ((__fgets_578) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 +extern ____ssize_t_49 (____getdelim_585) (char * (* __restrict ____lineptr_580), __size_t_1 * __restrict ____n_581, int ____delimiter_582, __FILE_58 * __restrict ____stream_583);// L665:L667 +extern ____ssize_t_49 (____getdelim_587) (char * (* __restrict ____lineptr_580), __size_t_1 * __restrict ____n_581, int ____delimiter_582, __FILE_58 * __restrict ____stream_583);// L665:L667 +extern ____ssize_t_49 (__getdelim_594) (char * (* __restrict ____lineptr_589), __size_t_1 * __restrict ____n_590, int ____delimiter_591, __FILE_58 * __restrict ____stream_592);// L668:L670 +extern ____ssize_t_49 (__getdelim_596) (char * (* __restrict ____lineptr_589), __size_t_1 * __restrict ____n_590, int ____delimiter_591, __FILE_58 * __restrict ____stream_592);// L668:L670 +extern ____ssize_t_49 (__getline_602) (char * (* __restrict ____lineptr_598), __size_t_1 * __restrict ____n_599, __FILE_58 * __restrict ____stream_600);// L678:L680 +extern ____ssize_t_49 (__getline_604) (char * (* __restrict ____lineptr_598), __size_t_1 * __restrict ____n_599, __FILE_58 * __restrict ____stream_600);// L678:L680 +extern int (__fputs_609) (const char * __restrict ____s_606, __FILE_58 * __restrict ____stream_607);// L689 +extern int (__fputs_611) (const char * __restrict ____s_606, __FILE_58 * __restrict ____stream_607);// L689 +extern int (__puts_614) (const char * (____s_613));// L695 +extern int (__ungetc_618) (int ____c_615, __FILE_58 * (____stream_616));// L702 +extern int (__fseek_654) (__FILE_58 * (____stream_650), long int ____off_652, int ____whence_653);// L749 +extern int (__fseek_656) (__FILE_58 * (____stream_650), long int ____off_652, int ____whence_653);// L749 +extern long int (__ftell_660) (__FILE_58 * (____stream_658));// L754 +extern long int (__ftell_662) (__FILE_58 * (____stream_658));// L754 +extern void (__rewind_666) (__FILE_58 * (____stream_664));// L759 +extern int (__fseeko_671) (__FILE_58 * (____stream_667), ____off_t_23 ____off_669, int ____whence_670);// L773 +extern int (__fseeko_679) (__FILE_58 * (____stream_675), ____off64_t_24 ____off_677, int ____whence_678);// L781:L783 +extern ____off_t_23 (__ftello_683) (__FILE_58 * (____stream_673));// L778 +extern ____off_t_23 (__ftello_685) (__FILE_58 * (____stream_673));// L778 +extern int (__fgetpos_693) (__FILE_58 * __restrict ____stream_689, __fpos_t_253 * __restrict ____pos_691);// L798 +extern ____off64_t_24 (__ftello_687) (__FILE_58 * (____stream_681));// L784 +extern int (__fgetpos_705) (__FILE_58 * __restrict ____stream_701, __fpos_t_255 * __restrict ____pos_703);// L806:L807 +extern int (__fsetpos_713) (__FILE_58 * (____stream_697), const __fpos_t_253 * (____pos_699));// L803 +extern int (__fsetpos_717) (__FILE_58 * (____stream_709), const __fpos_t_255 * (____pos_711));// L808:L809 +extern void (__clearerr_723) (__FILE_58 * (____stream_721));// L826 +extern int (__feof_726) (__FILE_58 * (____stream_724));// L828 +extern int (__feof_728) (__FILE_58 * (____stream_724));// L828 +extern int (__ferror_732) (__FILE_58 * (____stream_730));// L830 +extern int (__ferror_734) (__FILE_58 * (____stream_730));// L830 +extern void (__clearerr_unlocked_738) (__FILE_58 * (____stream_736));// L835 +extern int (__feof_unlocked_742) (__FILE_58 * (____stream_740));// L836 +extern int (__feof_unlocked_744) (__FILE_58 * (____stream_740));// L836 +extern int (__ferror_unlocked_748) (__FILE_58 * (____stream_746));// L837 +extern int (__ferror_unlocked_750) (__FILE_58 * (____stream_746));// L837 +extern void (__perror_753) (const char * (____s_752));// L846 +extern void (__perror_754) (const char * (____s_752));// L846 +extern int __sys_nerr_755;// L26 + +extern int (__fileno_761) (__FILE_58 * (____stream_757));// L858 +extern int (__fileno_759) (__FILE_58 * (____stream_757));// L858 +extern int (__fileno_unlocked_767) (__FILE_58 * (____stream_763));// L863 +extern int (__fileno_unlocked_765) (__FILE_58 * (____stream_763));// L863 +extern __FILE_58 * ((__popen_771) (const char * (____command_769), const char * (____modes_770)));// L872 +extern __FILE_58 * ((__popen_773) (const char * (____command_769), const char * (____modes_770)));// L872 +extern int (__pclose_777) (__FILE_58 * (____stream_775));// L878 +extern char * ((__ctermid_780) (char * (____s_779)));// L884 +extern void (__flockfile_783) (__FILE_58 * (____stream_781));// L912 +extern int (__ftrylockfile_787) (__FILE_58 * (____stream_785));// L916 +extern int (__ftrylockfile_789) (__FILE_58 * (____stream_785));// L916 +extern void (__funlockfile_793) (__FILE_58 * (____stream_791));// L919 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ @@ -1306,67 +1168,53 @@ extern void (__funlockfile_867) (__FILE_59 * (____stream_865));// L919 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____sprintf_chk_899) (char * __restrict ____s_895, int ____flag_896, __size_t_1 ____slen_897, const char * __restrict ____format_898, ... );// L23:L24 -extern int (____vsprintf_chk_906) (char * __restrict ____s_900, int ____flag_901, __size_t_1 ____slen_902, const char * __restrict ____format_903, ____gnuc_va_list_86 ____ap_904);// L25:L27 +extern int (____sprintf_chk_825) (char * __restrict ____s_821, int ____flag_822, __size_t_1 ____slen_823, const char * __restrict ____format_824, ... );// L23:L24 +extern int (____vsprintf_chk_832) (char * __restrict ____s_826, int ____flag_827, __size_t_1 ____slen_828, const char * __restrict ____format_829, ____gnuc_va_list_82 ____ap_830);// L25:L27 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____snprintf_chk_920) (char * __restrict ____s_915, __size_t_1 ____n_916, int ____flag_917, __size_t_1 ____slen_918, const char * __restrict ____format_919, ... );// L52:L54 -extern int (____vsnprintf_chk_928) (char * __restrict ____s_921, __size_t_1 ____n_922, int ____flag_923, __size_t_1 ____slen_924, const char * __restrict ____format_925, ____gnuc_va_list_86 ____ap_926);// L55:L57 +extern int (____snprintf_chk_846) (char * __restrict ____s_841, __size_t_1 ____n_842, int ____flag_843, __size_t_1 ____slen_844, const char * __restrict ____format_845, ... );// L52:L54 +extern int (____vsnprintf_chk_854) (char * __restrict ____s_847, __size_t_1 ____n_848, int ____flag_849, __size_t_1 ____slen_850, const char * __restrict ____format_851, ____gnuc_va_list_82 ____ap_852);// L55:L57 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____fprintf_chk_943) (__FILE_59 * __restrict ____stream_939, int ____flag_941, const char * __restrict ____format_942, ... );// L85:L86 -extern int (____printf_chk_947) (int ____flag_945, const char * __restrict ____format_946, ... );// L87 -extern int (____vfprintf_chk_954) (__FILE_59 * __restrict ____stream_948, int ____flag_950, const char * __restrict ____format_951, ____gnuc_va_list_86 ____ap_952);// L88:L89 -extern int (____vprintf_chk_962) (int ____flag_958, const char * __restrict ____format_959, ____gnuc_va_list_86 ____ap_960);// L90:L91 +extern int (____fprintf_chk_869) (__FILE_58 * __restrict ____stream_865, int ____flag_867, const char * __restrict ____format_868, ... );// L85:L86 +extern int (____printf_chk_873) (int ____flag_871, const char * __restrict ____format_872, ... );// L87 +extern int (____vfprintf_chk_880) (__FILE_58 * __restrict ____stream_874, int ____flag_876, const char * __restrict ____format_877, ____gnuc_va_list_82 ____ap_878);// L88:L89 +extern int (____vprintf_chk_888) (int ____flag_884, const char * __restrict ____format_885, ____gnuc_va_list_82 ____ap_886);// L90:L91 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____dprintf_chk_984) (int ____fd_981, int ____flag_982, const char * __restrict ____fmt_983, ... );// L131:L132 -extern int (____vdprintf_chk_990) (int ____fd_985, int ____flag_986, const char * __restrict ____fmt_987, ____gnuc_va_list_86 ____arg_988);// L133:L135 +extern int (____dprintf_chk_910) (int ____fd_907, int ____flag_908, const char * __restrict ____fmt_909, ... );// L131:L132 +extern int (____vdprintf_chk_916) (int ____fd_911, int ____flag_912, const char * __restrict ____fmt_913, ____gnuc_va_list_82 ____arg_914);// L133:L135 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern char * ((____fgets_chk_1004) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 -extern char * ((____fgets_chk_1006) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 -extern char * ((____fgets_chk_1008) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 -extern char * ((____fgets_alias_1014) (char * __restrict ____s_1010, int ____n_1011, __FILE_59 * __restrict ____stream_1012));// L243:L245 -extern char * ((____fgets_chk_warn_1021) (char * __restrict ____s_1016, __size_t_1 ____size_1017, int ____n_1018, __FILE_59 * __restrict ____stream_1019));// L246:L250 +extern char * ((____fgets_chk_930) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 +extern char * ((____fgets_chk_932) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 +extern char * ((____fgets_chk_934) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 +extern char * ((____fgets_alias_940) (char * __restrict ____s_936, int ____n_937, __FILE_58 * __restrict ____stream_938));// L243:L245 +extern char * ((____fgets_chk_warn_947) (char * __restrict ____s_942, __size_t_1 ____size_943, int ____n_944, __FILE_58 * __restrict ____stream_945));// L246:L250 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -int __fips_1092;// L4 -void (__ssl_init_Module_1093) () { - -if (__static_condition_default_1095) { +int __fips_1018;// L4 +int __fips_1019;// L4 +void (__ssl_init_Module_1020) () { { { -__static_type_error("invalid type found in if statement"); -} -} - - +if (__static_condition_default_1021) { +if ( __fips_1018 == 0 )// L9 +{ + __printf_383 ("Something") ; // L10 } } -void (__ssl_init_Module_1094) () { - -if (__static_condition_default_1096) { - +if (__static_condition_default_1022) { +if ( __fips_1019 == 0 )// L9 { -{ - - - -if ( __fips_1092 == 0 )// L9 -{ -if (__static_condition_default_1097) { - __printf_421 ("Something") ; // L10 -} -if (__static_condition_default_1098) { -__static_type_error("type error") ; // L10 + __printf_383 ("Something") ; // L10 } } } @@ -1374,20 +1222,14 @@ __static_type_error("type error") ; // L10 } -} -int (__main_1099) (void ) { +int (__main_1023) (void ) { { { -if (__static_condition_default_1095) { - __ssl_init_Module_1093 ( ) ; // L15 -} -if (__static_condition_default_1096) { - __ssl_init_Module_1094 ( ) ; // L15 -} + __ssl_init_Module_1020 ( ) ; // L15 return 0 ;// L16 } } diff --git a/fonda/cpp_testsuite/varBugs/APACHE/664e3aac6dd.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/664e3aac6dd.desugared.c index cf08fffc..a24eb866 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/664e3aac6dd.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/664e3aac6dd.desugared.c @@ -7,87 +7,87 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_305; +extern const bool __static_condition_default_627; +extern const bool __static_condition_default_288; extern const bool __static_condition_default_246; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_243; -extern const bool __static_condition_default_252; -extern const bool __static_condition_default_818; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_352; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_1082; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_594; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_420; +extern const bool __static_condition_default_604; +extern const bool __static_condition_default_1090; extern const bool __static_condition_default_296; -extern const bool __static_condition_default_240; -extern const bool __static_condition_default_1077; -extern const bool __static_condition_default_379; -extern const bool __static_condition_default_299; +extern const bool __static_condition_default_67; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_804; extern const bool __static_condition_default_1094; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_60; -extern const bool __static_condition_default_1074; -extern const bool __static_condition_default_595; -extern const bool __static_condition_default_627; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_1088; -extern const bool __static_condition_default_1054; -extern const bool __static_condition_default_302; -extern const bool __static_condition_default_1024; -extern const bool __static_condition_default_237; -extern const bool __static_condition_default_1092; +extern const bool __static_condition_default_1048; +extern const bool __static_condition_default_1078; +extern const bool __static_condition_default_264; extern const bool __static_condition_default_293; -extern const bool __static_condition_default_805; -extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_1083; +extern const bool __static_condition_default_1037; extern const bool __static_condition_default_308; -extern const bool __static_condition_default_629; -extern const bool __static_condition_default_215; -extern const bool __static_condition_default_378; -extern const bool __static_condition_default_1025; extern const bool __static_condition_default_341; -extern const bool __static_condition_default_394; -extern const bool __static_condition_default_432; +extern const bool __static_condition_default_1038; +extern const bool __static_condition_default_215; +extern const bool __static_condition_default_276; extern const bool __static_condition_default_249; -extern const bool __static_condition_default_429; -extern const bool __static_condition_default_1053; -extern const bool __static_condition_default_1093; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_378; extern const bool __static_condition_default_426; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_261; -extern const bool __static_condition_default_305; -extern const bool __static_condition_default_349; -extern const bool __static_condition_default_414; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_234; -extern const bool __static_condition_default_273; -extern const bool __static_condition_default_1083; -extern const bool __static_condition_default_1048; +extern const bool __static_condition_default_325; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_1088; +extern const bool __static_condition_default_429; extern const bool __static_condition_default_279; -extern const bool __static_condition_default_276; -extern const bool __static_condition_default_1037; -extern const bool __static_condition_default_604; +extern const bool __static_condition_default_1049; +extern const bool __static_condition_default_594; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_273; +extern const bool __static_condition_default_234; +extern const bool __static_condition_default_352; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_1075; extern const bool __static_condition_default_361; +extern const bool __static_condition_default_1031; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_252; +extern const bool __static_condition_default_1025; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_285; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_1032; +extern const bool __static_condition_default_60; +extern const bool __static_condition_default_629; +extern const bool __static_condition_default_1095; +extern const bool __static_condition_default_1074; +extern const bool __static_condition_default_243; extern const bool __static_condition_default_255; -extern const bool __static_condition_default_423; extern const bool __static_condition_default_623; -extern const bool __static_condition_default_285; -extern const bool __static_condition_default_1087; -extern const bool __static_condition_default_67; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_1047; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_806; -extern const bool __static_condition_default_1030; -extern const bool __static_condition_default_325; +extern const bool __static_condition_default_1026; +extern const bool __static_condition_default_1093; +extern const bool __static_condition_default_240; +extern const bool __static_condition_default_621; extern const bool __static_condition_default_579; +extern const bool __static_condition_default_423; +extern const bool __static_condition_default_394; +extern const bool __static_condition_default_420; +extern const bool __static_condition_default_1084; +extern const bool __static_condition_default_302; extern const bool __static_condition_default_581; -extern const bool __static_condition_default_804; -extern const bool __static_condition_default_1031; +extern const bool __static_condition_default_237; +extern const bool __static_condition_default_261; +extern const bool __static_condition_default_818; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_805; +extern const bool __static_condition_default_379; +extern const bool __static_condition_default_595; +extern const bool __static_condition_default_806; +extern const bool __static_condition_default_349; +extern const bool __static_condition_default_1054; +extern const bool __static_condition_default_414; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_1055; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -504,60 +504,61 @@ __static_renaming("__strdup_897", "strdup"); __static_renaming("__strndup_901", "strndup"); __static_renaming("__strndup_902", "strndup"); __static_renaming("__strchr_905", "strchr"); -__static_renaming("__strrchr_908", "strrchr"); -__static_renaming("__strcspn_911", "strcspn"); +__static_renaming("__strchr_906", "strchr"); +__static_renaming("__strrchr_909", "strrchr"); __static_renaming("__strcspn_912", "strcspn"); -__static_renaming("__strspn_915", "strspn"); +__static_renaming("__strcspn_913", "strcspn"); __static_renaming("__strspn_916", "strspn"); -__static_renaming("__strpbrk_919", "strpbrk"); -__static_renaming("__strstr_922", "strstr"); -__static_renaming("__strtok_925", "strtok"); -__static_renaming("____strtok_r_929", "__strtok_r"); -__static_renaming("__strtok_r_933", "strtok_r"); -__static_renaming("__strlen_935", "strlen"); +__static_renaming("__strspn_917", "strspn"); +__static_renaming("__strpbrk_920", "strpbrk"); +__static_renaming("__strstr_923", "strstr"); +__static_renaming("__strtok_926", "strtok"); +__static_renaming("____strtok_r_930", "__strtok_r"); +__static_renaming("__strtok_r_934", "strtok_r"); __static_renaming("__strlen_936", "strlen"); __static_renaming("__strlen_937", "strlen"); __static_renaming("__strlen_938", "strlen"); -__static_renaming("__strnlen_942", "strnlen"); +__static_renaming("__strlen_939", "strlen"); __static_renaming("__strnlen_943", "strnlen"); -__static_renaming("__strerror_945", "strerror"); +__static_renaming("__strnlen_944", "strnlen"); __static_renaming("__strerror_946", "strerror"); -__static_renaming("__strerror_r_951", "strerror_r"); +__static_renaming("__strerror_947", "strerror"); __static_renaming("__strerror_r_952", "strerror_r"); -__static_renaming("__strerror_l_955", "strerror_l"); -__static_renaming("____bzero_959", "__bzero"); +__static_renaming("__strerror_r_953", "strerror_r"); +__static_renaming("__strerror_l_956", "strerror_l"); __static_renaming("____bzero_960", "__bzero"); __static_renaming("____bzero_961", "__bzero"); __static_renaming("____bzero_962", "__bzero"); -__static_renaming("__bcopy_967", "bcopy"); +__static_renaming("____bzero_963", "__bzero"); __static_renaming("__bcopy_968", "bcopy"); -__static_renaming("__bzero_972", "bzero"); +__static_renaming("__bcopy_969", "bcopy"); __static_renaming("__bzero_973", "bzero"); -__static_renaming("__bcmp_978", "bcmp"); +__static_renaming("__bzero_974", "bzero"); __static_renaming("__bcmp_979", "bcmp"); -__static_renaming("__index_982", "index"); -__static_renaming("__rindex_985", "rindex"); -__static_renaming("__ffs_987", "ffs"); -__static_renaming("__strcasecmp_990", "strcasecmp"); -__static_renaming("__strncasecmp_995", "strncasecmp"); +__static_renaming("__bcmp_980", "bcmp"); +__static_renaming("__index_983", "index"); +__static_renaming("__rindex_986", "rindex"); +__static_renaming("__ffs_988", "ffs"); +__static_renaming("__strcasecmp_991", "strcasecmp"); __static_renaming("__strncasecmp_996", "strncasecmp"); -__static_renaming("__strsep_999", "strsep"); -__static_renaming("__strsignal_1001", "strsignal"); -__static_renaming("____stpcpy_1004", "__stpcpy"); -__static_renaming("__stpcpy_1007", "stpcpy"); -__static_renaming("____stpncpy_1012", "__stpncpy"); +__static_renaming("__strncasecmp_997", "strncasecmp"); +__static_renaming("__strsep_1000", "strsep"); +__static_renaming("__strsignal_1002", "strsignal"); +__static_renaming("____stpcpy_1005", "__stpcpy"); +__static_renaming("__stpcpy_1008", "stpcpy"); __static_renaming("____stpncpy_1013", "__stpncpy"); -__static_renaming("__stpncpy_1018", "stpncpy"); +__static_renaming("____stpncpy_1014", "__stpncpy"); __static_renaming("__stpncpy_1019", "stpncpy"); -__static_renaming("____stpncpy_chk_1061", "__stpncpy_chk"); +__static_renaming("__stpncpy_1020", "stpncpy"); __static_renaming("____stpncpy_chk_1062", "__stpncpy_chk"); -__static_renaming("____stpncpy_alias_1067", "__stpncpy_alias"); +__static_renaming("____stpncpy_chk_1063", "__stpncpy_chk"); __static_renaming("____stpncpy_alias_1068", "__stpncpy_alias"); -__static_renaming("__buffer_1084", "buffer"); -__static_renaming("__i_1085", "i"); -__static_renaming("__ap_get_win32_interpreter_1086", "ap_get_win32_interpreter"); -__static_renaming("__main_1090", "main"); +__static_renaming("____stpncpy_alias_1069", "__stpncpy_alias"); +__static_renaming("__buffer_1085", "buffer"); +__static_renaming("__i_1086", "i"); +__static_renaming("__ap_get_win32_interpreter_1087", "ap_get_win32_interpreter"); __static_renaming("__main_1091", "main"); +__static_renaming("__main_1092", "main"); __static_condition_renaming("__static_condition_default_60", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H) && (defined _BITS_TYPESIZES_H)"); __static_condition_renaming("__static_condition_default_67", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); @@ -619,30 +620,29 @@ __static_condition_renaming("__static_condition_default_805", "!(defined _STDLIB __static_condition_renaming("__static_condition_default_806", "(defined _STDLIB_H)"); __static_condition_renaming("__static_condition_default_818", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__)"); __static_condition_renaming("__static_condition_default_819", "(defined _STDLIB_H) && !(defined __STRICT_ANSI__)"); -__static_condition_renaming("__static_condition_default_1024", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1025", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1030", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1031", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1036", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1037", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1047", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1048", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1053", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1054", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1073", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1074", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1077", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1082", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1083", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1087", "(defined WIN32X)"); -__static_condition_renaming("__static_condition_default_1088", "!(defined _STDLIB_H) && (defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined WIN32X)"); -__static_condition_renaming("__static_condition_default_1089", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined WIN32X) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined __need_malloc_and_calloc) && (defined WIN32X) || (defined _STDLIB_H) && (defined WIN32X)"); -__static_condition_renaming("__static_condition_default_1092", "!(defined WIN32X)"); -__static_condition_renaming("__static_condition_default_1093", "(defined WIN32X)"); -__static_condition_renaming("__static_condition_default_1094", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined __need_malloc_and_calloc) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || (defined _STDLIB_H) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO)"); - -if (__static_condition_default_1094) -{ +__static_condition_renaming("__static_condition_default_1025", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1026", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1031", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1032", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1037", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1038", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1048", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1049", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1054", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1055", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1074", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1075", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1078", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1083", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1084", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1088", "(defined WIN32X)"); +__static_condition_renaming("__static_condition_default_1089", "!(defined _STDLIB_H) && (defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined WIN32X)"); +__static_condition_renaming("__static_condition_default_1090", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined WIN32X) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined __need_malloc_and_calloc) && (defined WIN32X) || (defined _STDLIB_H) && (defined WIN32X)"); +__static_condition_renaming("__static_condition_default_1093", "!(defined WIN32X)"); +__static_condition_renaming("__static_condition_default_1094", "(defined WIN32X)"); +__static_condition_renaming("__static_condition_default_1095", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc)"); + +if (__static_condition_default_1095) { __static_parse_error("Unable to parse"); } }; @@ -1468,51 +1468,52 @@ extern char * ((__strdup_897) (const char * (____s_896)));// L171:L172 extern char * ((__strndup_901) (const char * (____string_898), __size_t_1 ____n_899));// L179:L180 extern char * ((__strndup_902) (const char * (____string_898), __size_t_799 ____n_900));// L179:L180 extern char * ((__strchr_905) (const char * (____s_903), int ____c_904));// L231:L232 -extern char * ((__strrchr_908) (const char * (____s_906), int ____c_907));// L258:L259 -extern __size_t_1 (__strcspn_911) (const char * (____s_909), const char * (____reject_910));// L280:L281 -extern __size_t_799 (__strcspn_912) (const char * (____s_909), const char * (____reject_910));// L280:L281 -extern __size_t_1 (__strspn_915) (const char * (____s_913), const char * (____accept_914));// L284:L285 -extern __size_t_799 (__strspn_916) (const char * (____s_913), const char * (____accept_914));// L284:L285 -extern char * ((__strpbrk_919) (const char * (____s_917), const char * (____accept_918)));// L310:L311 -extern char * ((__strstr_922) (const char * (____haystack_920), const char * (____needle_921)));// L337:L338 -extern char * ((__strtok_925) (char * __restrict ____s_923, const char * __restrict ____delim_924));// L343:L344 -extern char * ((____strtok_r_929) (char * __restrict ____s_926, const char * __restrict ____delim_927, char * (* __restrict ____save_ptr_928)));// L349:L352 -extern char * ((__strtok_r_933) (char * __restrict ____s_930, const char * __restrict ____delim_931, char * (* __restrict ____save_ptr_932)));// L354:L356 -extern __size_t_1 (__strlen_935) (const char * (____s_934));// L394:L395 -extern __size_t_799 (__strlen_936) (const char * (____s_934));// L394:L395 -extern __size_t_1 (__strlen_937) (const char * (____s_934));// L394:L395 -extern __size_t_799 (__strlen_938) (const char * (____s_934));// L394:L395 -extern __size_t_1 (__strnlen_942) (const char * (____string_939), __size_t_1 ____maxlen_940);// L401:L402 -extern __size_t_799 (__strnlen_943) (const char * (____string_939), __size_t_799 ____maxlen_941);// L401:L402 -extern char * ((__strerror_945) (int ____errnum_944));// L408 -extern char * ((__strerror_946) (int ____errnum_944));// L408 -extern int (__strerror_r_951) (int ____errnum_947, char * (____buf_948), __size_t_1 ____buflen_949);// L422:L424 -extern int (__strerror_r_952) (int ____errnum_947, char * (____buf_948), __size_t_799 ____buflen_950);// L422:L424 -extern char * ((__strerror_l_955) (int ____errnum_953, ____locale_t_883 ____l_954));// L440 -extern void (____bzero_959) (void * (____s_956), __size_t_1 ____n_957);// L446 -extern void (____bzero_960) (void * (____s_956), __size_t_799 ____n_958);// L446 -extern void (____bzero_961) (void * (____s_956), __size_t_1 ____n_957);// L446 -extern void (____bzero_962) (void * (____s_956), __size_t_799 ____n_958);// L446 -extern void (__bcopy_967) (const void * (____src_963), void * (____dest_964), __size_t_1 ____n_965);// L450:L451 -extern void (__bcopy_968) (const void * (____src_963), void * (____dest_964), __size_t_799 ____n_966);// L450:L451 -extern void (__bzero_972) (void * (____s_969), __size_t_1 ____n_970);// L454 -extern void (__bzero_973) (void * (____s_969), __size_t_799 ____n_971);// L454 -extern int (__bcmp_978) (const void * (____s1_974), const void * (____s2_975), __size_t_1 ____n_976);// L457:L458 -extern int (__bcmp_979) (const void * (____s1_974), const void * (____s2_975), __size_t_799 ____n_977);// L457:L458 -extern char * ((__index_982) (const char * (____s_980), int ____c_981));// L484:L485 -extern char * ((__rindex_985) (const char * (____s_983), int ____c_984));// L512:L513 -extern int (__ffs_987) (int ____i_986);// L518 -extern int (__strcasecmp_990) (const char * (____s1_988), const char * (____s2_989));// L529:L530 -extern int (__strncasecmp_995) (const char * (____s1_991), const char * (____s2_992), __size_t_1 ____n_993);// L533:L534 -extern int (__strncasecmp_996) (const char * (____s1_991), const char * (____s2_992), __size_t_799 ____n_994);// L533:L534 -extern char * ((__strsep_999) (char * (* __restrict ____stringp_997), const char * __restrict ____delim_998));// L552:L554 -extern char * ((__strsignal_1001) (int ____sig_1000));// L559 -extern char * ((____stpcpy_1004) (char * __restrict ____dest_1002, const char * __restrict ____src_1003));// L562:L563 -extern char * ((__stpcpy_1007) (char * __restrict ____dest_1005, const char * __restrict ____src_1006));// L564:L565 -extern char * ((____stpncpy_1012) (char * __restrict ____dest_1008, const char * __restrict ____src_1009, __size_t_1 ____n_1010));// L569:L571 -extern char * ((____stpncpy_1013) (char * __restrict ____dest_1008, const char * __restrict ____src_1009, __size_t_799 ____n_1011));// L569:L571 -extern char * ((__stpncpy_1018) (char * __restrict ____dest_1014, const char * __restrict ____src_1015, __size_t_1 ____n_1016));// L572:L574 -extern char * ((__stpncpy_1019) (char * __restrict ____dest_1014, const char * __restrict ____src_1015, __size_t_799 ____n_1017));// L572:L574 +extern char * ((__strchr_906) (const char * (____s_903), int ____c_904));// L231:L232 +extern char * ((__strrchr_909) (const char * (____s_907), int ____c_908));// L258:L259 +extern __size_t_1 (__strcspn_912) (const char * (____s_910), const char * (____reject_911));// L280:L281 +extern __size_t_799 (__strcspn_913) (const char * (____s_910), const char * (____reject_911));// L280:L281 +extern __size_t_1 (__strspn_916) (const char * (____s_914), const char * (____accept_915));// L284:L285 +extern __size_t_799 (__strspn_917) (const char * (____s_914), const char * (____accept_915));// L284:L285 +extern char * ((__strpbrk_920) (const char * (____s_918), const char * (____accept_919)));// L310:L311 +extern char * ((__strstr_923) (const char * (____haystack_921), const char * (____needle_922)));// L337:L338 +extern char * ((__strtok_926) (char * __restrict ____s_924, const char * __restrict ____delim_925));// L343:L344 +extern char * ((____strtok_r_930) (char * __restrict ____s_927, const char * __restrict ____delim_928, char * (* __restrict ____save_ptr_929)));// L349:L352 +extern char * ((__strtok_r_934) (char * __restrict ____s_931, const char * __restrict ____delim_932, char * (* __restrict ____save_ptr_933)));// L354:L356 +extern __size_t_1 (__strlen_936) (const char * (____s_935));// L394:L395 +extern __size_t_799 (__strlen_937) (const char * (____s_935));// L394:L395 +extern __size_t_1 (__strlen_938) (const char * (____s_935));// L394:L395 +extern __size_t_799 (__strlen_939) (const char * (____s_935));// L394:L395 +extern __size_t_1 (__strnlen_943) (const char * (____string_940), __size_t_1 ____maxlen_941);// L401:L402 +extern __size_t_799 (__strnlen_944) (const char * (____string_940), __size_t_799 ____maxlen_942);// L401:L402 +extern char * ((__strerror_946) (int ____errnum_945));// L408 +extern char * ((__strerror_947) (int ____errnum_945));// L408 +extern int (__strerror_r_952) (int ____errnum_948, char * (____buf_949), __size_t_1 ____buflen_950);// L422:L424 +extern int (__strerror_r_953) (int ____errnum_948, char * (____buf_949), __size_t_799 ____buflen_951);// L422:L424 +extern char * ((__strerror_l_956) (int ____errnum_954, ____locale_t_883 ____l_955));// L440 +extern void (____bzero_960) (void * (____s_957), __size_t_1 ____n_958);// L446 +extern void (____bzero_961) (void * (____s_957), __size_t_799 ____n_959);// L446 +extern void (____bzero_962) (void * (____s_957), __size_t_1 ____n_958);// L446 +extern void (____bzero_963) (void * (____s_957), __size_t_799 ____n_959);// L446 +extern void (__bcopy_968) (const void * (____src_964), void * (____dest_965), __size_t_1 ____n_966);// L450:L451 +extern void (__bcopy_969) (const void * (____src_964), void * (____dest_965), __size_t_799 ____n_967);// L450:L451 +extern void (__bzero_973) (void * (____s_970), __size_t_1 ____n_971);// L454 +extern void (__bzero_974) (void * (____s_970), __size_t_799 ____n_972);// L454 +extern int (__bcmp_979) (const void * (____s1_975), const void * (____s2_976), __size_t_1 ____n_977);// L457:L458 +extern int (__bcmp_980) (const void * (____s1_975), const void * (____s2_976), __size_t_799 ____n_978);// L457:L458 +extern char * ((__index_983) (const char * (____s_981), int ____c_982));// L484:L485 +extern char * ((__rindex_986) (const char * (____s_984), int ____c_985));// L512:L513 +extern int (__ffs_988) (int ____i_987);// L518 +extern int (__strcasecmp_991) (const char * (____s1_989), const char * (____s2_990));// L529:L530 +extern int (__strncasecmp_996) (const char * (____s1_992), const char * (____s2_993), __size_t_1 ____n_994);// L533:L534 +extern int (__strncasecmp_997) (const char * (____s1_992), const char * (____s2_993), __size_t_799 ____n_995);// L533:L534 +extern char * ((__strsep_1000) (char * (* __restrict ____stringp_998), const char * __restrict ____delim_999));// L552:L554 +extern char * ((__strsignal_1002) (int ____sig_1001));// L559 +extern char * ((____stpcpy_1005) (char * __restrict ____dest_1003, const char * __restrict ____src_1004));// L562:L563 +extern char * ((__stpcpy_1008) (char * __restrict ____dest_1006, const char * __restrict ____src_1007));// L564:L565 +extern char * ((____stpncpy_1013) (char * __restrict ____dest_1009, const char * __restrict ____src_1010, __size_t_1 ____n_1011));// L569:L571 +extern char * ((____stpncpy_1014) (char * __restrict ____dest_1009, const char * __restrict ____src_1010, __size_t_799 ____n_1012));// L569:L571 +extern char * ((__stpncpy_1019) (char * __restrict ____dest_1015, const char * __restrict ____src_1016, __size_t_1 ____n_1017));// L572:L574 +extern char * ((__stpncpy_1020) (char * __restrict ____dest_1015, const char * __restrict ____src_1016, __size_t_799 ____n_1018));// L572:L574 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ @@ -1520,27 +1521,27 @@ extern char * ((__stpncpy_1019) (char * __restrict ____dest_1014, const char /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern char * ((____stpncpy_chk_1061) (char * (____dest_1055), const char * (____src_1056), __size_t_1 ____n_1057, __size_t_1 ____destlen_1059));// L130:L131 -extern char * ((____stpncpy_chk_1062) (char * (____dest_1055), const char * (____src_1056), __size_t_799 ____n_1058, __size_t_799 ____destlen_1060));// L130:L131 -extern char * ((____stpncpy_alias_1067) (char * (____dest_1063), const char * (____src_1064), __size_t_1 ____n_1065));// L132:L133 -extern char * ((____stpncpy_alias_1068) (char * (____dest_1063), const char * (____src_1064), __size_t_799 ____n_1066));// L132:L133 +extern char * ((____stpncpy_chk_1062) (char * (____dest_1056), const char * (____src_1057), __size_t_1 ____n_1058, __size_t_1 ____destlen_1060));// L130:L131 +extern char * ((____stpncpy_chk_1063) (char * (____dest_1056), const char * (____src_1057), __size_t_799 ____n_1059, __size_t_799 ____destlen_1061));// L130:L131 +extern char * ((____stpncpy_alias_1068) (char * (____dest_1064), const char * (____src_1065), __size_t_1 ____n_1066));// L132:L133 +extern char * ((____stpncpy_alias_1069) (char * (____dest_1064), const char * (____src_1065), __size_t_799 ____n_1067));// L132:L133 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -void (__ap_get_win32_interpreter_1086) () { +void (__ap_get_win32_interpreter_1087) () { -if (__static_condition_default_1087) { +if (__static_condition_default_1088) { { { -char __buffer_1084[1024];// L7 +char __buffer_1085[1024];// L7 -int __i_1085;// L9 +int __i_1086;// L9 -if (__static_condition_default_1088) { +if (__static_condition_default_1089) { if ( rand( ) % 2 )// L10 { @@ -1549,7 +1550,7 @@ if ( rand( ) % 2 )// L10 -for ( __i_1085 = 0 ; __i_1085 < sizeof(( __buffer_1084 )) ; __i_1085 ++ )// L11 +for ( __i_1086 = 0 ; __i_1086 < sizeof(( __buffer_1085 )) ; __i_1086 ++ )// L11 { { @@ -1560,12 +1561,12 @@ for ( __i_1085 = 0 ; __i_1085 < sizeof(( __buffer_1084 )) ; __i_1085 ++ } } } - __buffer_1084 [ __i_1085 ] = '\0' ; // L14 + __buffer_1085 [ __i_1086 ] = '\0' ; // L14 } } } } -if (__static_condition_default_1089) { +if (__static_condition_default_1090) { __static_type_error("invalid type found in if statement"); } } @@ -1574,9 +1575,9 @@ __static_type_error("invalid type found in if statement"); } } -int (__main_1090) (void ) { +int (__main_1091) (void ) { -if (__static_condition_default_1092) { +if (__static_condition_default_1093) { { { @@ -1590,16 +1591,16 @@ return 0 ;// L24 } } -int (__main_1091) (void ) { +int (__main_1092) (void ) { -if (__static_condition_default_1093) { +if (__static_condition_default_1094) { { { - __ap_get_win32_interpreter_1086 ( ) ; // L22 + __ap_get_win32_interpreter_1087 ( ) ; // L22 return 0 ;// L24 } } diff --git a/fonda/cpp_testsuite/varBugs/APACHE/9327311d30f.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/9327311d30f.desugared.c index 89ffa1a4..d2d18849 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/9327311d30f.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/9327311d30f.desugared.c @@ -7,22 +7,21 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); +extern const bool __static_condition_default_183; +extern const bool __static_condition_default_221; +extern const bool __static_condition_default_209; extern const bool __static_condition_default_223; -extern const bool __static_condition_default_220; +extern const bool __static_condition_default_192; +extern const bool __static_condition_default_212; extern const bool __static_condition_default_222; -extern const bool __static_condition_default_190; -extern const bool __static_condition_default_13; -extern const bool __static_condition_default_228; -extern const bool __static_condition_default_227; -extern const bool __static_condition_default_175; extern const bool __static_condition_default_229; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_211; -extern const bool __static_condition_default_215; -extern const bool __static_condition_default_195; -extern const bool __static_condition_default_208; -extern const bool __static_condition_default_221; +extern const bool __static_condition_default_224; +extern const bool __static_condition_default_228; extern const bool __static_condition_default_191; +extern const bool __static_condition_default_216; +extern const bool __static_condition_default_13; +extern const bool __static_condition_default_196; +extern const bool __static_condition_default_176; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -46,66 +45,62 @@ __static_renaming("__strxfrm_l_72", "strxfrm_l"); __static_renaming("__strdup_74", "strdup"); __static_renaming("__strndup_77", "strndup"); __static_renaming("__strchr_80", "strchr"); -__static_renaming("__strrchr_83", "strrchr"); -__static_renaming("__strcspn_86", "strcspn"); -__static_renaming("__strspn_89", "strspn"); -__static_renaming("__strpbrk_92", "strpbrk"); -__static_renaming("__strstr_95", "strstr"); -__static_renaming("__strtok_98", "strtok"); -__static_renaming("____strtok_r_102", "__strtok_r"); -__static_renaming("__strtok_r_106", "strtok_r"); -__static_renaming("__strlen_108", "strlen"); +__static_renaming("__strchr_81", "strchr"); +__static_renaming("__strrchr_84", "strrchr"); +__static_renaming("__strcspn_87", "strcspn"); +__static_renaming("__strspn_90", "strspn"); +__static_renaming("__strpbrk_93", "strpbrk"); +__static_renaming("__strstr_96", "strstr"); +__static_renaming("__strtok_99", "strtok"); +__static_renaming("____strtok_r_103", "__strtok_r"); +__static_renaming("__strtok_r_107", "strtok_r"); __static_renaming("__strlen_109", "strlen"); -__static_renaming("__strnlen_112", "strnlen"); -__static_renaming("__strerror_114", "strerror"); +__static_renaming("__strlen_110", "strlen"); +__static_renaming("__strnlen_113", "strnlen"); __static_renaming("__strerror_115", "strerror"); -__static_renaming("__strerror_r_119", "strerror_r"); -__static_renaming("__strerror_l_122", "strerror_l"); -__static_renaming("____bzero_125", "__bzero"); +__static_renaming("__strerror_116", "strerror"); +__static_renaming("__strerror_r_120", "strerror_r"); +__static_renaming("__strerror_l_123", "strerror_l"); __static_renaming("____bzero_126", "__bzero"); -__static_renaming("__bcopy_130", "bcopy"); -__static_renaming("__bzero_133", "bzero"); -__static_renaming("__bcmp_137", "bcmp"); -__static_renaming("__index_140", "index"); -__static_renaming("__rindex_143", "rindex"); -__static_renaming("__ffs_145", "ffs"); -__static_renaming("__strcasecmp_148", "strcasecmp"); -__static_renaming("__strncasecmp_152", "strncasecmp"); -__static_renaming("__strsep_155", "strsep"); -__static_renaming("__strsignal_157", "strsignal"); -__static_renaming("____stpcpy_160", "__stpcpy"); -__static_renaming("__stpcpy_163", "stpcpy"); -__static_renaming("____stpncpy_167", "__stpncpy"); -__static_renaming("__stpncpy_171", "stpncpy"); -__static_renaming("____stpncpy_chk_200", "__stpncpy_chk"); -__static_renaming("____stpncpy_alias_204", "__stpncpy_alias"); -__static_renaming("__rmm_addr_216", "rmm_addr"); +__static_renaming("____bzero_127", "__bzero"); +__static_renaming("__bcopy_131", "bcopy"); +__static_renaming("__bzero_134", "bzero"); +__static_renaming("__bcmp_138", "bcmp"); +__static_renaming("__index_141", "index"); +__static_renaming("__rindex_144", "rindex"); +__static_renaming("__ffs_146", "ffs"); +__static_renaming("__strcasecmp_149", "strcasecmp"); +__static_renaming("__strncasecmp_153", "strncasecmp"); +__static_renaming("__strsep_156", "strsep"); +__static_renaming("__strsignal_158", "strsignal"); +__static_renaming("____stpcpy_161", "__stpcpy"); +__static_renaming("__stpcpy_164", "stpcpy"); +__static_renaming("____stpncpy_168", "__stpncpy"); +__static_renaming("__stpncpy_172", "stpncpy"); +__static_renaming("____stpncpy_chk_201", "__stpncpy_chk"); +__static_renaming("____stpncpy_alias_205", "__stpncpy_alias"); __static_renaming("__rmm_addr_217", "rmm_addr"); -__static_renaming("__util_ald_create_cache_219", "util_ald_create_cache"); -__static_renaming("__util_ald_create_caches_225", "util_ald_create_caches"); -__static_renaming("__main_226", "main"); +__static_renaming("__rmm_addr_218", "rmm_addr"); +__static_renaming("__util_ald_create_cache_220", "util_ald_create_cache"); +__static_renaming("__util_ald_create_caches_226", "util_ald_create_caches"); +__static_renaming("__main_227", "main"); __static_condition_renaming("__static_condition_default_13", "!(defined __STRICT_ANSI__)"); -__static_condition_renaming("__static_condition_default_175", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_182", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_190", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_191", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_195", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_208", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_211", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_215", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_220", "!APR_HAS_SHARED_MEMORY"); -__static_condition_renaming("__static_condition_default_221", "APR_HAS_SHARED_MEMORY"); -__static_condition_renaming("__static_condition_default_222", "!(defined _FORTIFY_SOURCE) && APR_HAS_SHARED_MEMORY || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && APR_HAS_SHARED_MEMORY || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && APR_HAS_SHARED_MEMORY || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && APR_HAS_SHARED_MEMORY"); -__static_condition_renaming("__static_condition_default_223", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && APR_HAS_SHARED_MEMORY"); -__static_condition_renaming("__static_condition_default_227", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_228", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_229", "(defined __CORRECT_ISO_CPP_STRING_H_PROTO)"); - -if (__static_condition_default_229) -{ -__static_parse_error("Unable to parse"); -} +__static_condition_renaming("__static_condition_default_176", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_183", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_191", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_192", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_196", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_209", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_212", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_216", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_221", "!APR_HAS_SHARED_MEMORY"); +__static_condition_renaming("__static_condition_default_222", "APR_HAS_SHARED_MEMORY"); +__static_condition_renaming("__static_condition_default_223", "!(defined _FORTIFY_SOURCE) && APR_HAS_SHARED_MEMORY || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && APR_HAS_SHARED_MEMORY || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && APR_HAS_SHARED_MEMORY || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && APR_HAS_SHARED_MEMORY"); +__static_condition_renaming("__static_condition_default_224", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && APR_HAS_SHARED_MEMORY"); +__static_condition_renaming("__static_condition_default_228", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_229", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); + }; typedef long int __ptrdiff_t_0;// L143:L324 typedef long unsigned int __size_t_1;// L177:L209 @@ -146,37 +141,38 @@ extern __size_t_1 (__strxfrm_l_72) (char * (____dest_68), const char * (____s extern char * ((__strdup_74) (const char * (____s_73)));// L171:L172 extern char * ((__strndup_77) (const char * (____string_75), __size_t_1 ____n_76));// L179:L180 extern char * ((__strchr_80) (const char * (____s_78), int ____c_79));// L231:L232 -extern char * ((__strrchr_83) (const char * (____s_81), int ____c_82));// L258:L259 -extern __size_t_1 (__strcspn_86) (const char * (____s_84), const char * (____reject_85));// L280:L281 -extern __size_t_1 (__strspn_89) (const char * (____s_87), const char * (____accept_88));// L284:L285 -extern char * ((__strpbrk_92) (const char * (____s_90), const char * (____accept_91)));// L310:L311 -extern char * ((__strstr_95) (const char * (____haystack_93), const char * (____needle_94)));// L337:L338 -extern char * ((__strtok_98) (char * __restrict ____s_96, const char * __restrict ____delim_97));// L343:L344 -extern char * ((____strtok_r_102) (char * __restrict ____s_99, const char * __restrict ____delim_100, char * (* __restrict ____save_ptr_101)));// L349:L352 -extern char * ((__strtok_r_106) (char * __restrict ____s_103, const char * __restrict ____delim_104, char * (* __restrict ____save_ptr_105)));// L354:L356 -extern __size_t_1 (__strlen_108) (const char * (____s_107));// L394:L395 -extern __size_t_1 (__strlen_109) (const char * (____s_107));// L394:L395 -extern __size_t_1 (__strnlen_112) (const char * (____string_110), __size_t_1 ____maxlen_111);// L401:L402 -extern char * ((__strerror_114) (int ____errnum_113));// L408 -extern char * ((__strerror_115) (int ____errnum_113));// L408 -extern int (__strerror_r_119) (int ____errnum_116, char * (____buf_117), __size_t_1 ____buflen_118);// L422:L424 -extern char * ((__strerror_l_122) (int ____errnum_120, ____locale_t_62 ____l_121));// L440 -extern void (____bzero_125) (void * (____s_123), __size_t_1 ____n_124);// L446 -extern void (____bzero_126) (void * (____s_123), __size_t_1 ____n_124);// L446 -extern void (__bcopy_130) (const void * (____src_127), void * (____dest_128), __size_t_1 ____n_129);// L450:L451 -extern void (__bzero_133) (void * (____s_131), __size_t_1 ____n_132);// L454 -extern int (__bcmp_137) (const void * (____s1_134), const void * (____s2_135), __size_t_1 ____n_136);// L457:L458 -extern char * ((__index_140) (const char * (____s_138), int ____c_139));// L484:L485 -extern char * ((__rindex_143) (const char * (____s_141), int ____c_142));// L512:L513 -extern int (__ffs_145) (int ____i_144);// L518 -extern int (__strcasecmp_148) (const char * (____s1_146), const char * (____s2_147));// L529:L530 -extern int (__strncasecmp_152) (const char * (____s1_149), const char * (____s2_150), __size_t_1 ____n_151);// L533:L534 -extern char * ((__strsep_155) (char * (* __restrict ____stringp_153), const char * __restrict ____delim_154));// L552:L554 -extern char * ((__strsignal_157) (int ____sig_156));// L559 -extern char * ((____stpcpy_160) (char * __restrict ____dest_158, const char * __restrict ____src_159));// L562:L563 -extern char * ((__stpcpy_163) (char * __restrict ____dest_161, const char * __restrict ____src_162));// L564:L565 -extern char * ((____stpncpy_167) (char * __restrict ____dest_164, const char * __restrict ____src_165, __size_t_1 ____n_166));// L569:L571 -extern char * ((__stpncpy_171) (char * __restrict ____dest_168, const char * __restrict ____src_169, __size_t_1 ____n_170));// L572:L574 +extern char * ((__strchr_81) (const char * (____s_78), int ____c_79));// L231:L232 +extern char * ((__strrchr_84) (const char * (____s_82), int ____c_83));// L258:L259 +extern __size_t_1 (__strcspn_87) (const char * (____s_85), const char * (____reject_86));// L280:L281 +extern __size_t_1 (__strspn_90) (const char * (____s_88), const char * (____accept_89));// L284:L285 +extern char * ((__strpbrk_93) (const char * (____s_91), const char * (____accept_92)));// L310:L311 +extern char * ((__strstr_96) (const char * (____haystack_94), const char * (____needle_95)));// L337:L338 +extern char * ((__strtok_99) (char * __restrict ____s_97, const char * __restrict ____delim_98));// L343:L344 +extern char * ((____strtok_r_103) (char * __restrict ____s_100, const char * __restrict ____delim_101, char * (* __restrict ____save_ptr_102)));// L349:L352 +extern char * ((__strtok_r_107) (char * __restrict ____s_104, const char * __restrict ____delim_105, char * (* __restrict ____save_ptr_106)));// L354:L356 +extern __size_t_1 (__strlen_109) (const char * (____s_108));// L394:L395 +extern __size_t_1 (__strlen_110) (const char * (____s_108));// L394:L395 +extern __size_t_1 (__strnlen_113) (const char * (____string_111), __size_t_1 ____maxlen_112);// L401:L402 +extern char * ((__strerror_115) (int ____errnum_114));// L408 +extern char * ((__strerror_116) (int ____errnum_114));// L408 +extern int (__strerror_r_120) (int ____errnum_117, char * (____buf_118), __size_t_1 ____buflen_119);// L422:L424 +extern char * ((__strerror_l_123) (int ____errnum_121, ____locale_t_62 ____l_122));// L440 +extern void (____bzero_126) (void * (____s_124), __size_t_1 ____n_125);// L446 +extern void (____bzero_127) (void * (____s_124), __size_t_1 ____n_125);// L446 +extern void (__bcopy_131) (const void * (____src_128), void * (____dest_129), __size_t_1 ____n_130);// L450:L451 +extern void (__bzero_134) (void * (____s_132), __size_t_1 ____n_133);// L454 +extern int (__bcmp_138) (const void * (____s1_135), const void * (____s2_136), __size_t_1 ____n_137);// L457:L458 +extern char * ((__index_141) (const char * (____s_139), int ____c_140));// L484:L485 +extern char * ((__rindex_144) (const char * (____s_142), int ____c_143));// L512:L513 +extern int (__ffs_146) (int ____i_145);// L518 +extern int (__strcasecmp_149) (const char * (____s1_147), const char * (____s2_148));// L529:L530 +extern int (__strncasecmp_153) (const char * (____s1_150), const char * (____s2_151), __size_t_1 ____n_152);// L533:L534 +extern char * ((__strsep_156) (char * (* __restrict ____stringp_154), const char * __restrict ____delim_155));// L552:L554 +extern char * ((__strsignal_158) (int ____sig_157));// L559 +extern char * ((____stpcpy_161) (char * __restrict ____dest_159, const char * __restrict ____src_160));// L562:L563 +extern char * ((__stpcpy_164) (char * __restrict ____dest_162, const char * __restrict ____src_163));// L564:L565 +extern char * ((____stpncpy_168) (char * __restrict ____dest_165, const char * __restrict ____src_166, __size_t_1 ____n_167));// L569:L571 +extern char * ((__stpncpy_172) (char * __restrict ____dest_169, const char * __restrict ____src_170, __size_t_1 ____n_171));// L572:L574 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ @@ -184,17 +180,17 @@ extern char * ((__stpncpy_171) (char * __restrict ____dest_168, const char * /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern char * ((____stpncpy_chk_200) (char * (____dest_196), const char * (____src_197), __size_t_1 ____n_198, __size_t_1 ____destlen_199));// L130:L131 -extern char * ((____stpncpy_alias_204) (char * (____dest_201), const char * (____src_202), __size_t_1 ____n_203));// L132:L133 +extern char * ((____stpncpy_chk_201) (char * (____dest_197), const char * (____src_198), __size_t_1 ____n_199, __size_t_1 ____destlen_200));// L130:L131 +extern char * ((____stpncpy_alias_205) (char * (____dest_202), const char * (____src_203), __size_t_1 ____n_204));// L132:L133 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -char * (__rmm_addr_216);// L3 char * (__rmm_addr_217);// L3 -void (__util_ald_create_cache_219) (char * (__rmm_addr_218)) { +char * (__rmm_addr_218);// L3 +void (__util_ald_create_cache_220) (char * (__rmm_addr_219)) { { -if (__static_condition_default_220) { +if (__static_condition_default_221) { { { @@ -207,17 +203,17 @@ if (__static_condition_default_220) { } -if (__static_condition_default_221) { +if (__static_condition_default_222) { { { -if (__static_condition_default_222) { - __strcat_36 ( __rmm_addr_218 ,"something") ; // L8 -} if (__static_condition_default_223) { + __strcat_36 ( __rmm_addr_219 ,"something") ; // L8 +} +if (__static_condition_default_224) { __static_type_error("type error") ; // L8 } } @@ -227,31 +223,31 @@ __static_type_error("type error") ; // L8 } }} -void (__util_ald_create_caches_225) (char * (__rmm_addr_224)) { +void (__util_ald_create_caches_226) (char * (__rmm_addr_225)) { { { - __util_ald_create_cache_219 ( __rmm_addr_224 ) ; // L16 + __util_ald_create_cache_220 ( __rmm_addr_225 ) ; // L16 } } } -int (__main_226) (void ) { +int (__main_227) (void ) { { { -if (__static_condition_default_227) { - __util_ald_create_caches_225 ( __rmm_addr_216 ) ; // L21 -} if (__static_condition_default_228) { - __util_ald_create_caches_225 ( __rmm_addr_217 ) ; // L21 + __util_ald_create_caches_226 ( __rmm_addr_217 ) ; // L21 +} +if (__static_condition_default_229) { + __util_ald_create_caches_226 ( __rmm_addr_218 ) ; // L21 } return 0 ;// L22 } diff --git a/fonda/cpp_testsuite/varBugs/APACHE/97ecbec1237.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/97ecbec1237.desugared.c index 1ba13b03..1354f0e8 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/97ecbec1237.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/97ecbec1237.desugared.c @@ -7,1339 +7,271 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_276; -extern const bool __static_condition_default_815; -extern const bool __static_condition_default_827; -extern const bool __static_condition_default_60; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_581; -extern const bool __static_condition_default_67; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_414; -extern const bool __static_condition_default_812; -extern const bool __static_condition_default_816; -extern const bool __static_condition_default_378; -extern const bool __static_condition_default_811; -extern const bool __static_condition_default_285; -extern const bool __static_condition_default_426; -extern const bool __static_condition_default_820; -extern const bool __static_condition_default_394; -extern const bool __static_condition_default_814; -extern const bool __static_condition_default_379; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_325; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_579; -extern const bool __static_condition_default_361; -extern const bool __static_condition_default_237; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_261; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_423; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_805; -extern const bool __static_condition_default_824; -extern const bool __static_condition_default_215; -extern const bool __static_condition_default_804; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_279; -extern const bool __static_condition_default_595; -extern const bool __static_condition_default_308; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_234; -extern const bool __static_condition_default_243; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_420; -extern const bool __static_condition_default_822; -extern const bool __static_condition_default_302; -extern const bool __static_condition_default_429; -extern const bool __static_condition_default_806; -extern const bool __static_condition_default_240; -extern const bool __static_condition_default_305; -extern const bool __static_condition_default_623; +extern const bool __static_condition_default_129; +extern const bool __static_condition_default_131; +extern const bool __static_condition_default_268; +extern const bool __static_condition_default_108; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_106; +extern const bool __static_condition_default_265; +extern const bool __static_condition_default_154; extern const bool __static_condition_default_267; -extern const bool __static_condition_default_252; -extern const bool __static_condition_default_629; -extern const bool __static_condition_default_810; -extern const bool __static_condition_default_273; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_349; -extern const bool __static_condition_default_352; -extern const bool __static_condition_default_604; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_627; -extern const bool __static_condition_default_594; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_800; -extern const bool __static_condition_default_826; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_122; +extern const bool __static_condition_default_156; +extern const bool __static_condition_default_269; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_121; +extern const bool __static_condition_default_189; +extern const bool __static_condition_default_148; +extern const bool __static_condition_default_150; +extern const bool __static_condition_default_266; +extern const bool __static_condition_default_262; +extern const bool __static_condition_default_256; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); __static_renaming("__wchar_t_2", "wchar_t"); -__static_renaming("__idtype_t_8", "idtype_t"); -__static_renaming("____u_char_9", "__u_char"); -__static_renaming("____u_short_10", "__u_short"); -__static_renaming("____u_int_11", "__u_int"); -__static_renaming("____u_long_12", "__u_long"); -__static_renaming("____int8_t_13", "__int8_t"); -__static_renaming("____uint8_t_14", "__uint8_t"); -__static_renaming("____int16_t_15", "__int16_t"); -__static_renaming("____uint16_t_16", "__uint16_t"); -__static_renaming("____int32_t_17", "__int32_t"); -__static_renaming("____uint32_t_18", "__uint32_t"); -__static_renaming("____int64_t_19", "__int64_t"); -__static_renaming("____uint64_t_20", "__uint64_t"); -__static_renaming("____quad_t_21", "__quad_t"); -__static_renaming("____u_quad_t_22", "__u_quad_t"); -__static_renaming("____dev_t_23", "__dev_t"); -__static_renaming("____uid_t_24", "__uid_t"); -__static_renaming("____gid_t_25", "__gid_t"); -__static_renaming("____ino_t_26", "__ino_t"); -__static_renaming("____ino64_t_27", "__ino64_t"); -__static_renaming("____mode_t_28", "__mode_t"); -__static_renaming("____nlink_t_29", "__nlink_t"); -__static_renaming("____off_t_30", "__off_t"); -__static_renaming("____off64_t_31", "__off64_t"); -__static_renaming("____pid_t_32", "__pid_t"); -__static_renaming("____fsid_t_36", "__fsid_t"); -__static_renaming("____clock_t_37", "__clock_t"); -__static_renaming("____rlim_t_38", "__rlim_t"); -__static_renaming("____rlim64_t_39", "__rlim64_t"); -__static_renaming("____id_t_40", "__id_t"); -__static_renaming("____time_t_41", "__time_t"); -__static_renaming("____useconds_t_42", "__useconds_t"); -__static_renaming("____suseconds_t_43", "__suseconds_t"); -__static_renaming("____daddr_t_44", "__daddr_t"); -__static_renaming("____key_t_45", "__key_t"); -__static_renaming("____clockid_t_46", "__clockid_t"); -__static_renaming("____timer_t_47", "__timer_t"); -__static_renaming("____blksize_t_48", "__blksize_t"); -__static_renaming("____blkcnt_t_49", "__blkcnt_t"); -__static_renaming("____blkcnt64_t_50", "__blkcnt64_t"); -__static_renaming("____fsblkcnt_t_51", "__fsblkcnt_t"); -__static_renaming("____fsblkcnt64_t_52", "__fsblkcnt64_t"); -__static_renaming("____fsfilcnt_t_53", "__fsfilcnt_t"); -__static_renaming("____fsfilcnt64_t_54", "__fsfilcnt64_t"); -__static_renaming("____fsword_t_55", "__fsword_t"); -__static_renaming("____ssize_t_56", "__ssize_t"); -__static_renaming("____syscall_slong_t_57", "__syscall_slong_t"); -__static_renaming("____syscall_ulong_t_58", "__syscall_ulong_t"); -__static_renaming("____loff_t_59", "__loff_t"); -__static_renaming("____qaddr_t_61", "__qaddr_t"); -__static_renaming("____caddr_t_62", "__caddr_t"); -__static_renaming("____intptr_t_63", "__intptr_t"); -__static_renaming("____socklen_t_64", "__socklen_t"); -__static_renaming("____bswap_32_66", "__bswap_32"); -__static_renaming("____bswap_64_69", "__bswap_64"); -__static_renaming("____WAIT_STATUS_89", "__WAIT_STATUS"); -__static_renaming("__div_t_94", "div_t"); -__static_renaming("__ldiv_t_99", "ldiv_t"); -__static_renaming("__lldiv_t_104", "lldiv_t"); -__static_renaming("____ctype_get_mb_cur_max_105", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_106", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_107", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_108", "__ctype_get_mb_cur_max"); -__static_renaming("__atof_110", "atof"); -__static_renaming("__atof_111", "atof"); -__static_renaming("__atoi_113", "atoi"); -__static_renaming("__atoi_114", "atoi"); -__static_renaming("__atol_116", "atol"); -__static_renaming("__atol_117", "atol"); -__static_renaming("__atoll_119", "atoll"); -__static_renaming("__atoll_120", "atoll"); -__static_renaming("__strtod_123", "strtod"); -__static_renaming("__strtof_126", "strtof"); -__static_renaming("__strtold_129", "strtold"); -__static_renaming("__strtol_133", "strtol"); -__static_renaming("__strtoul_137", "strtoul"); -__static_renaming("__strtoq_141", "strtoq"); -__static_renaming("__strtouq_145", "strtouq"); -__static_renaming("__strtoll_149", "strtoll"); -__static_renaming("__strtoll_150", "strtoll"); -__static_renaming("__strtoull_154", "strtoull"); -__static_renaming("__l64a_159", "l64a"); -__static_renaming("__l64a_160", "l64a"); -__static_renaming("__a64l_162", "a64l"); -__static_renaming("__a64l_163", "a64l"); -__static_renaming("____u_char_164", "__u_char"); -__static_renaming("____u_short_165", "__u_short"); -__static_renaming("____u_int_166", "__u_int"); -__static_renaming("____u_long_167", "__u_long"); -__static_renaming("____int8_t_168", "__int8_t"); -__static_renaming("____uint8_t_169", "__uint8_t"); -__static_renaming("____int16_t_170", "__int16_t"); -__static_renaming("____uint16_t_171", "__uint16_t"); -__static_renaming("____int32_t_172", "__int32_t"); -__static_renaming("____uint32_t_173", "__uint32_t"); -__static_renaming("____int64_t_174", "__int64_t"); -__static_renaming("____uint64_t_175", "__uint64_t"); -__static_renaming("____quad_t_176", "__quad_t"); -__static_renaming("____u_quad_t_177", "__u_quad_t"); -__static_renaming("____dev_t_178", "__dev_t"); -__static_renaming("____uid_t_179", "__uid_t"); -__static_renaming("____gid_t_180", "__gid_t"); -__static_renaming("____ino_t_181", "__ino_t"); -__static_renaming("____ino64_t_182", "__ino64_t"); -__static_renaming("____mode_t_183", "__mode_t"); -__static_renaming("____nlink_t_184", "__nlink_t"); -__static_renaming("____off_t_185", "__off_t"); -__static_renaming("____off64_t_186", "__off64_t"); -__static_renaming("____pid_t_187", "__pid_t"); -__static_renaming("____fsid_t_191", "__fsid_t"); -__static_renaming("____clock_t_192", "__clock_t"); -__static_renaming("____rlim_t_193", "__rlim_t"); -__static_renaming("____rlim64_t_194", "__rlim64_t"); -__static_renaming("____id_t_195", "__id_t"); -__static_renaming("____time_t_196", "__time_t"); -__static_renaming("____useconds_t_197", "__useconds_t"); -__static_renaming("____suseconds_t_198", "__suseconds_t"); -__static_renaming("____daddr_t_199", "__daddr_t"); -__static_renaming("____key_t_200", "__key_t"); -__static_renaming("____clockid_t_201", "__clockid_t"); -__static_renaming("____timer_t_202", "__timer_t"); -__static_renaming("____blksize_t_203", "__blksize_t"); -__static_renaming("____blkcnt_t_204", "__blkcnt_t"); -__static_renaming("____blkcnt64_t_205", "__blkcnt64_t"); -__static_renaming("____fsblkcnt_t_206", "__fsblkcnt_t"); -__static_renaming("____fsblkcnt64_t_207", "__fsblkcnt64_t"); -__static_renaming("____fsfilcnt_t_208", "__fsfilcnt_t"); -__static_renaming("____fsfilcnt64_t_209", "__fsfilcnt64_t"); -__static_renaming("____fsword_t_210", "__fsword_t"); -__static_renaming("____ssize_t_211", "__ssize_t"); -__static_renaming("____syscall_slong_t_212", "__syscall_slong_t"); -__static_renaming("____syscall_ulong_t_213", "__syscall_ulong_t"); -__static_renaming("____loff_t_214", "__loff_t"); -__static_renaming("____qaddr_t_216", "__qaddr_t"); -__static_renaming("____caddr_t_217", "__caddr_t"); -__static_renaming("____intptr_t_218", "__intptr_t"); -__static_renaming("____socklen_t_219", "__socklen_t"); -__static_renaming("__u_char_220", "u_char"); -__static_renaming("__u_char_221", "u_char"); -__static_renaming("__u_short_222", "u_short"); -__static_renaming("__u_short_223", "u_short"); -__static_renaming("__u_int_224", "u_int"); -__static_renaming("__u_int_225", "u_int"); -__static_renaming("__u_long_226", "u_long"); -__static_renaming("__u_long_227", "u_long"); -__static_renaming("__quad_t_228", "quad_t"); -__static_renaming("__quad_t_229", "quad_t"); -__static_renaming("__u_quad_t_230", "u_quad_t"); -__static_renaming("__u_quad_t_231", "u_quad_t"); -__static_renaming("__fsid_t_232", "fsid_t"); -__static_renaming("__fsid_t_233", "fsid_t"); -__static_renaming("__loff_t_235", "loff_t"); -__static_renaming("__loff_t_236", "loff_t"); -__static_renaming("__loff_t_238", "loff_t"); -__static_renaming("__loff_t_239", "loff_t"); -__static_renaming("__ino_t_241", "ino_t"); -__static_renaming("__ino_t_242", "ino_t"); -__static_renaming("__ino_t_244", "ino_t"); -__static_renaming("__ino_t_245", "ino_t"); -__static_renaming("__dev_t_247", "dev_t"); -__static_renaming("__dev_t_248", "dev_t"); -__static_renaming("__gid_t_250", "gid_t"); -__static_renaming("__gid_t_251", "gid_t"); -__static_renaming("__gid_t_253", "gid_t"); -__static_renaming("__gid_t_254", "gid_t"); -__static_renaming("__mode_t_256", "mode_t"); -__static_renaming("__mode_t_257", "mode_t"); -__static_renaming("__nlink_t_259", "nlink_t"); -__static_renaming("__nlink_t_260", "nlink_t"); -__static_renaming("__uid_t_262", "uid_t"); -__static_renaming("__uid_t_263", "uid_t"); -__static_renaming("__uid_t_265", "uid_t"); -__static_renaming("__uid_t_266", "uid_t"); -__static_renaming("__off_t_268", "off_t"); -__static_renaming("__off_t_269", "off_t"); -__static_renaming("__off_t_271", "off_t"); -__static_renaming("__off_t_272", "off_t"); -__static_renaming("__pid_t_274", "pid_t"); -__static_renaming("__pid_t_275", "pid_t"); -__static_renaming("__pid_t_277", "pid_t"); -__static_renaming("__pid_t_278", "pid_t"); -__static_renaming("__id_t_280", "id_t"); -__static_renaming("__id_t_281", "id_t"); -__static_renaming("__ssize_t_283", "ssize_t"); -__static_renaming("__ssize_t_284", "ssize_t"); -__static_renaming("__daddr_t_286", "daddr_t"); -__static_renaming("__daddr_t_287", "daddr_t"); -__static_renaming("__caddr_t_289", "caddr_t"); -__static_renaming("__caddr_t_290", "caddr_t"); -__static_renaming("__key_t_291", "key_t"); -__static_renaming("__key_t_292", "key_t"); -__static_renaming("__key_t_294", "key_t"); -__static_renaming("__key_t_295", "key_t"); -__static_renaming("__clock_t_297", "clock_t"); -__static_renaming("__clock_t_298", "clock_t"); -__static_renaming("__time_t_300", "time_t"); -__static_renaming("__time_t_301", "time_t"); -__static_renaming("__clockid_t_303", "clockid_t"); -__static_renaming("__clockid_t_304", "clockid_t"); -__static_renaming("__timer_t_306", "timer_t"); -__static_renaming("__timer_t_307", "timer_t"); -__static_renaming("__ulong_309", "ulong"); -__static_renaming("__ulong_310", "ulong"); -__static_renaming("__ulong_311", "ulong"); -__static_renaming("__ushort_312", "ushort"); -__static_renaming("__uint_313", "uint"); -__static_renaming("__int8_t_314", "int8_t"); -__static_renaming("__int16_t_315", "int16_t"); -__static_renaming("__int32_t_316", "int32_t"); -__static_renaming("__int64_t_317", "int64_t"); -__static_renaming("__u_int8_t_318", "u_int8_t"); -__static_renaming("__u_int16_t_319", "u_int16_t"); -__static_renaming("__u_int32_t_320", "u_int32_t"); -__static_renaming("__u_int64_t_321", "u_int64_t"); -__static_renaming("__register_t_322", "register_t"); -__static_renaming("____bswap_32_324", "__bswap_32"); -__static_renaming("____bswap_64_327", "__bswap_64"); -__static_renaming("____sig_atomic_t_328", "__sig_atomic_t"); -__static_renaming("____sigset_t_332", "__sigset_t"); -__static_renaming("__sigset_t_333", "sigset_t"); -__static_renaming("__suseconds_t_350", "suseconds_t"); -__static_renaming("__suseconds_t_351", "suseconds_t"); -__static_renaming("____fd_mask_353", "__fd_mask"); -__static_renaming("____fd_mask_354", "__fd_mask"); -__static_renaming("__fd_set_362", "fd_set"); -__static_renaming("__fd_mask_363", "fd_mask"); -__static_renaming("__fd_mask_364", "fd_mask"); -__static_renaming("__select_376", "select"); -__static_renaming("__select_377", "select"); -__static_renaming("__pselect_392", "pselect"); -__static_renaming("__pselect_393", "pselect"); -__static_renaming("____fdelt_chk_397", "__fdelt_chk"); -__static_renaming("____fdelt_warn_399", "__fdelt_warn"); -__static_renaming("__gnu_dev_major_401", "gnu_dev_major"); -__static_renaming("__gnu_dev_major_402", "gnu_dev_major"); -__static_renaming("__gnu_dev_minor_404", "gnu_dev_minor"); -__static_renaming("__gnu_dev_makedev_407", "gnu_dev_makedev"); -__static_renaming("__blksize_t_412", "blksize_t"); -__static_renaming("__blksize_t_413", "blksize_t"); -__static_renaming("__blkcnt_t_415", "blkcnt_t"); -__static_renaming("__blkcnt_t_416", "blkcnt_t"); -__static_renaming("__fsblkcnt_t_418", "fsblkcnt_t"); -__static_renaming("__fsblkcnt_t_419", "fsblkcnt_t"); -__static_renaming("__blkcnt_t_421", "blkcnt_t"); -__static_renaming("__blkcnt_t_422", "blkcnt_t"); -__static_renaming("__fsblkcnt_t_424", "fsblkcnt_t"); -__static_renaming("__fsblkcnt_t_425", "fsblkcnt_t"); -__static_renaming("__fsfilcnt_t_427", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_428", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_430", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_431", "fsfilcnt_t"); -__static_renaming("__pthread_t_433", "pthread_t"); -__static_renaming("__pthread_attr_t_437", "pthread_attr_t"); -__static_renaming("____pthread_list_t_442", "__pthread_list_t"); -__static_renaming("____pthread_list_t_443", "__pthread_list_t"); -__static_renaming("__pthread_mutex_t_459", "pthread_mutex_t"); -__static_renaming("__pthread_mutexattr_t_464", "pthread_mutexattr_t"); -__static_renaming("__rand_465", "rand"); -__static_renaming("__srand_467", "srand"); -__static_renaming("__rand_r_469", "rand_r"); -__static_renaming("__drand48_470", "drand48"); -__static_renaming("__erand48_472", "erand48"); -__static_renaming("__lrand48_473", "lrand48"); -__static_renaming("__nrand48_475", "nrand48"); -__static_renaming("__mrand48_476", "mrand48"); -__static_renaming("__jrand48_478", "jrand48"); -__static_renaming("__srand48_480", "srand48"); -__static_renaming("__seed48_482", "seed48"); -__static_renaming("__lcong48_484", "lcong48"); -__static_renaming("__malloc_486", "malloc"); -__static_renaming("__malloc_487", "malloc"); -__static_renaming("__calloc_490", "calloc"); -__static_renaming("__calloc_491", "calloc"); -__static_renaming("__realloc_494", "realloc"); -__static_renaming("__free_496", "free"); -__static_renaming("__cfree_498", "cfree"); -__static_renaming("__alloca_500", "alloca"); -__static_renaming("__valloc_502", "valloc"); -__static_renaming("__valloc_503", "valloc"); -__static_renaming("__posix_memalign_507", "posix_memalign"); -__static_renaming("__posix_memalign_508", "posix_memalign"); -__static_renaming("__aligned_alloc_511", "aligned_alloc"); -__static_renaming("__aligned_alloc_512", "aligned_alloc"); -__static_renaming("__aligned_alloc_513", "aligned_alloc"); -__static_renaming("__aligned_alloc_514", "aligned_alloc"); -__static_renaming("__abort_515", "abort"); -__static_renaming("__atexit_517", "atexit"); -__static_renaming("__at_quick_exit_519", "at_quick_exit"); -__static_renaming("__on_exit_524", "on_exit"); -__static_renaming("__exit_526", "exit"); -__static_renaming("__exit_527", "exit"); -__static_renaming("__quick_exit_529", "quick_exit"); -__static_renaming("___Exit_531", "_Exit"); -__static_renaming("__getenv_533", "getenv"); -__static_renaming("__getenv_534", "getenv"); -__static_renaming("__putenv_536", "putenv"); -__static_renaming("__setenv_540", "setenv"); -__static_renaming("__unsetenv_542", "unsetenv"); -__static_renaming("__clearenv_543", "clearenv"); -__static_renaming("__mktemp_545", "mktemp"); -__static_renaming("__mkstemp_548", "mkstemp"); -__static_renaming("__mkstemp_549", "mkstemp"); -__static_renaming("__mkstemp_550", "mkstemp"); -__static_renaming("__mkstemp_551", "mkstemp"); -__static_renaming("__mkstemps_556", "mkstemps"); -__static_renaming("__mkstemps_557", "mkstemps"); -__static_renaming("__mkstemps_558", "mkstemps"); -__static_renaming("__mkstemps_559", "mkstemps"); -__static_renaming("__mkdtemp_561", "mkdtemp"); -__static_renaming("__mkdtemp_562", "mkdtemp"); -__static_renaming("__system_564", "system"); -__static_renaming("__system_565", "system"); -__static_renaming("__system_566", "system"); -__static_renaming("__system_567", "system"); -__static_renaming("__realpath_570", "realpath"); -__static_renaming("__realpath_571", "realpath"); -__static_renaming("____compar_fn_t_572", "__compar_fn_t"); -__static_renaming("__bsearch_580", "bsearch"); -__static_renaming("__bsearch_582", "bsearch"); -__static_renaming("____l_589", "__l"); -__static_renaming("____u_590", "__u"); -__static_renaming("____idx_591", "__idx"); -__static_renaming("____p_592", "__p"); -__static_renaming("____comparison_593", "__comparison"); -__static_renaming("__qsort_601", "qsort"); -__static_renaming("__qsort_603", "qsort"); -__static_renaming("__abs_606", "abs"); -__static_renaming("__abs_607", "abs"); -__static_renaming("__labs_609", "labs"); -__static_renaming("__labs_610", "labs"); -__static_renaming("__llabs_612", "llabs"); -__static_renaming("__llabs_613", "llabs"); -__static_renaming("__div_616", "div"); -__static_renaming("__div_617", "div"); -__static_renaming("__ldiv_620", "ldiv"); -__static_renaming("__ldiv_622", "ldiv"); -__static_renaming("__lldiv_626", "lldiv"); -__static_renaming("__lldiv_628", "lldiv"); -__static_renaming("__ecvt_634", "ecvt"); -__static_renaming("__ecvt_635", "ecvt"); -__static_renaming("__fcvt_640", "fcvt"); -__static_renaming("__fcvt_641", "fcvt"); -__static_renaming("__gcvt_645", "gcvt"); -__static_renaming("__gcvt_646", "gcvt"); -__static_renaming("__qecvt_651", "qecvt"); -__static_renaming("__qecvt_652", "qecvt"); -__static_renaming("__qfcvt_657", "qfcvt"); -__static_renaming("__qfcvt_658", "qfcvt"); -__static_renaming("__qgcvt_662", "qgcvt"); -__static_renaming("__qgcvt_663", "qgcvt"); -__static_renaming("__ecvt_r_670", "ecvt_r"); -__static_renaming("__fcvt_r_677", "fcvt_r"); -__static_renaming("__qecvt_r_684", "qecvt_r"); -__static_renaming("__qfcvt_r_691", "qfcvt_r"); -__static_renaming("__mblen_694", "mblen"); -__static_renaming("__mblen_695", "mblen"); -__static_renaming("__mbtowc_699", "mbtowc"); -__static_renaming("__wctomb_702", "wctomb"); -__static_renaming("__mbstowcs_706", "mbstowcs"); -__static_renaming("__wcstombs_710", "wcstombs"); -__static_renaming("__rpmatch_712", "rpmatch"); -__static_renaming("__rpmatch_713", "rpmatch"); -__static_renaming("__getsubopt_717", "getsubopt"); -__static_renaming("__getsubopt_718", "getsubopt"); -__static_renaming("__getloadavg_721", "getloadavg"); -__static_renaming("____realpath_chk_726", "__realpath_chk"); -__static_renaming("____realpath_alias_729", "__realpath_alias"); -__static_renaming("____realpath_chk_warn_733", "__realpath_chk_warn"); -__static_renaming("____ptsname_r_chk_741", "__ptsname_r_chk"); -__static_renaming("____ptsname_r_alias_745", "__ptsname_r_alias"); -__static_renaming("____ptsname_r_chk_warn_750", "__ptsname_r_chk_warn"); -__static_renaming("____wctomb_chk_758", "__wctomb_chk"); -__static_renaming("____wctomb_alias_761", "__wctomb_alias"); -__static_renaming("____mbstowcs_chk_768", "__mbstowcs_chk"); -__static_renaming("____mbstowcs_alias_772", "__mbstowcs_alias"); -__static_renaming("____mbstowcs_chk_warn_777", "__mbstowcs_chk_warn"); -__static_renaming("____wcstombs_chk_785", "__wcstombs_chk"); -__static_renaming("____wcstombs_alias_789", "__wcstombs_alias"); -__static_renaming("____wcstombs_chk_warn_794", "__wcstombs_chk_warn"); -__static_renaming("__cache_798", "cache"); -__static_renaming("__cache_799", "cache"); -__static_renaming("__util_ldap_shm_801", "util_ldap_shm"); -__static_renaming("__apr_shm_attach_803", "apr_shm_attach"); -__static_renaming("__apr_shm_create_808", "apr_shm_create"); -__static_renaming("__result_817", "result"); -__static_renaming("__util_ldap_cache_init_818", "util_ldap_cache_init"); -__static_renaming("__main_821", "main"); - -__static_condition_renaming("__static_condition_default_60", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_67", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_215", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_234", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __u_char_defined)"); -__static_condition_renaming("__static_condition_default_237", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __u_char_defined)"); -__static_condition_renaming("__static_condition_default_240", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __u_char_defined)"); -__static_condition_renaming("__static_condition_default_243", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ino_t_defined)"); -__static_condition_renaming("__static_condition_default_246", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ino_t_defined) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ino_t_defined)"); -__static_condition_renaming("__static_condition_default_249", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_252", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_255", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_258", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_261", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __nlink_t_defined)"); -__static_condition_renaming("__static_condition_default_264", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __nlink_t_defined)"); -__static_condition_renaming("__static_condition_default_267", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __nlink_t_defined)"); -__static_condition_renaming("__static_condition_default_270", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_273", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_276", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_279", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_282", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __id_t_defined)"); -__static_condition_renaming("__static_condition_default_285", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_288", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_293", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_296", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_299", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __clock_t_defined)"); -__static_condition_renaming("__static_condition_default_302", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __time_t_defined)"); -__static_condition_renaming("__static_condition_default_305", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __clockid_t_defined)"); -__static_condition_renaming("__static_condition_default_308", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __timer_t_defined)"); -__static_condition_renaming("__static_condition_default_325", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_341", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_349", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_352", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __suseconds_t_defined)"); -__static_condition_renaming("__static_condition_default_361", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_378", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_379", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_394", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_395", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_414", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blksize_t_defined)"); -__static_condition_renaming("__static_condition_default_417", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blkcnt_t_defined) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blkcnt_t_defined)"); -__static_condition_renaming("__static_condition_default_420", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_423", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blkcnt_t_defined)"); -__static_condition_renaming("__static_condition_default_426", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_429", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_432", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_579", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_581", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_594", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __USE_EXTERN_INLINES) && !(defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_595", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_602", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_604", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_621", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_623", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_627", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_629", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_736", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_800", "!(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_804", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_805", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_806", "!(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_809", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_810", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_811", "!(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_812", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined)"); -__static_condition_renaming("__static_condition_default_813", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined)"); -__static_condition_renaming("__static_condition_default_814", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined __need_malloc_and_calloc) || (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_815", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_816", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_819", "APR_HAS_SHARED_MEMORY"); -__static_condition_renaming("__static_condition_default_820", "!APR_HAS_SHARED_MEMORY"); -__static_condition_renaming("__static_condition_default_822", "!(defined _STDLIB_H) && (defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_823", "!(defined _STDLIB_H) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined)"); -__static_condition_renaming("__static_condition_default_824", "!(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined)"); -__static_condition_renaming("__static_condition_default_825", "!(defined _STDLIB_H) && (defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined)"); -__static_condition_renaming("__static_condition_default_826", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined __need_malloc_and_calloc) || (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_827", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc)"); +__static_renaming("__div_t_7", "div_t"); +__static_renaming("__ldiv_t_12", "ldiv_t"); +__static_renaming("__lldiv_t_17", "lldiv_t"); +__static_renaming("____ctype_get_mb_cur_max_18", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_19", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_20", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_21", "__ctype_get_mb_cur_max"); +__static_renaming("__atof_23", "atof"); +__static_renaming("__atof_24", "atof"); +__static_renaming("__atoi_26", "atoi"); +__static_renaming("__atoi_27", "atoi"); +__static_renaming("__atol_29", "atol"); +__static_renaming("__atol_30", "atol"); +__static_renaming("__atoll_32", "atoll"); +__static_renaming("__atoll_33", "atoll"); +__static_renaming("__strtod_36", "strtod"); +__static_renaming("__strtof_39", "strtof"); +__static_renaming("__strtold_42", "strtold"); +__static_renaming("__strtol_46", "strtol"); +__static_renaming("__strtoul_50", "strtoul"); +__static_renaming("__strtoll_54", "strtoll"); +__static_renaming("__strtoull_58", "strtoull"); +__static_renaming("__rand_62", "rand"); +__static_renaming("__rand_63", "rand"); +__static_renaming("__srand_65", "srand"); +__static_renaming("__malloc_67", "malloc"); +__static_renaming("__malloc_68", "malloc"); +__static_renaming("__calloc_71", "calloc"); +__static_renaming("__calloc_72", "calloc"); +__static_renaming("__realloc_75", "realloc"); +__static_renaming("__free_77", "free"); +__static_renaming("__aligned_alloc_80", "aligned_alloc"); +__static_renaming("__aligned_alloc_81", "aligned_alloc"); +__static_renaming("__abort_82", "abort"); +__static_renaming("__atexit_84", "atexit"); +__static_renaming("__at_quick_exit_86", "at_quick_exit"); +__static_renaming("__exit_88", "exit"); +__static_renaming("__quick_exit_90", "quick_exit"); +__static_renaming("___Exit_92", "_Exit"); +__static_renaming("__getenv_94", "getenv"); +__static_renaming("__getenv_95", "getenv"); +__static_renaming("__system_97", "system"); +__static_renaming("__system_98", "system"); +__static_renaming("____compar_fn_t_99", "__compar_fn_t"); +__static_renaming("__bsearch_107", "bsearch"); +__static_renaming("__bsearch_109", "bsearch"); +__static_renaming("____l_116", "__l"); +__static_renaming("____u_117", "__u"); +__static_renaming("____idx_118", "__idx"); +__static_renaming("____p_119", "__p"); +__static_renaming("____comparison_120", "__comparison"); +__static_renaming("__qsort_128", "qsort"); +__static_renaming("__qsort_130", "qsort"); +__static_renaming("__abs_133", "abs"); +__static_renaming("__abs_134", "abs"); +__static_renaming("__labs_136", "labs"); +__static_renaming("__labs_137", "labs"); +__static_renaming("__llabs_139", "llabs"); +__static_renaming("__llabs_140", "llabs"); +__static_renaming("__div_143", "div"); +__static_renaming("__div_144", "div"); +__static_renaming("__ldiv_147", "ldiv"); +__static_renaming("__ldiv_149", "ldiv"); +__static_renaming("__lldiv_153", "lldiv"); +__static_renaming("__lldiv_155", "lldiv"); +__static_renaming("__mblen_159", "mblen"); +__static_renaming("__mbtowc_163", "mbtowc"); +__static_renaming("__wctomb_166", "wctomb"); +__static_renaming("__mbstowcs_170", "mbstowcs"); +__static_renaming("__wcstombs_174", "wcstombs"); +__static_renaming("____realpath_chk_179", "__realpath_chk"); +__static_renaming("____realpath_alias_182", "__realpath_alias"); +__static_renaming("____realpath_chk_warn_186", "__realpath_chk_warn"); +__static_renaming("____ptsname_r_chk_194", "__ptsname_r_chk"); +__static_renaming("____ptsname_r_alias_198", "__ptsname_r_alias"); +__static_renaming("____ptsname_r_chk_warn_203", "__ptsname_r_chk_warn"); +__static_renaming("____wctomb_chk_211", "__wctomb_chk"); +__static_renaming("____wctomb_alias_214", "__wctomb_alias"); +__static_renaming("____mbstowcs_chk_221", "__mbstowcs_chk"); +__static_renaming("____mbstowcs_alias_225", "__mbstowcs_alias"); +__static_renaming("____mbstowcs_chk_warn_230", "__mbstowcs_chk_warn"); +__static_renaming("____wcstombs_chk_238", "__wcstombs_chk"); +__static_renaming("____wcstombs_alias_242", "__wcstombs_alias"); +__static_renaming("____wcstombs_chk_warn_247", "__wcstombs_chk_warn"); +__static_renaming("__cache_251", "cache"); +__static_renaming("__cache_252", "cache"); +__static_renaming("__util_ldap_shm_253", "util_ldap_shm"); +__static_renaming("__apr_shm_attach_255", "apr_shm_attach"); +__static_renaming("__apr_shm_create_259", "apr_shm_create"); +__static_renaming("__result_260", "result"); +__static_renaming("__util_ldap_cache_init_261", "util_ldap_cache_init"); +__static_renaming("__main_264", "main"); + +__static_condition_renaming("__static_condition_default_106", "!(defined _FORTIFY_SOURCE) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_108", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_121", "(defined __USE_EXTERN_INLINES) && !(defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_122", "(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_129", "!(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_131", "(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_148", "!(defined _FORTIFY_SOURCE) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_150", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_154", "!(defined _FORTIFY_SOURCE) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_156", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_189", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_256", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_257", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_262", "APR_HAS_SHARED_MEMORY"); +__static_condition_renaming("__static_condition_default_263", "!APR_HAS_SHARED_MEMORY"); +__static_condition_renaming("__static_condition_default_265", "!(defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_266", "!(defined _FORTIFY_SOURCE) && !(defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_267", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_268", "(defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_269", "!(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_270", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); -if (__static_condition_default_827) -{ -__static_parse_error("Unable to parse"); -} }; typedef long int __ptrdiff_t_0;// L143:L324 typedef long unsigned int __size_t_1;// L177:L209 typedef int __wchar_t_2;// L243:L321 -enum ____anonymous_tag_6_7 { -__P_ALL_3, -__P_PID_4, -__P_PGID_5, -}; -typedef enum ____anonymous_tag_6_7 __idtype_t_8;// L50:L55 -typedef unsigned char ____u_char_9;// L30 -typedef unsigned short int ____u_short_10;// L31 -typedef unsigned int ____u_int_11;// L32 -typedef unsigned long int ____u_long_12;// L33 -typedef signed char ____int8_t_13;// L36 -typedef unsigned char ____uint8_t_14;// L37 -typedef signed short int ____int16_t_15;// L38 -typedef unsigned short int ____uint16_t_16;// L39 -typedef signed int ____int32_t_17;// L40 -typedef unsigned int ____uint32_t_18;// L41 -typedef signed long int ____int64_t_19;// L43 -typedef unsigned long int ____uint64_t_20;// L44 -typedef long int ____quad_t_21;// L52 -typedef unsigned long int ____u_quad_t_22;// L53 -typedef unsigned long int ____dev_t_23;// L109:L124 -typedef unsigned int ____uid_t_24;// L92:L125 -typedef unsigned int ____gid_t_25;// L92:L126 -typedef unsigned long int ____ino_t_26;// L94:L127 -typedef unsigned long int ____ino64_t_27;// L109:L128 -typedef unsigned int ____mode_t_28;// L92:L129 -typedef unsigned long int ____nlink_t_29;// L94:L130 -typedef long int ____off_t_30;// L93:L131 -typedef long int ____off64_t_31;// L108:L132 -typedef int ____pid_t_32;// L91:L133 -struct ____anonymous_tag_33_34 { -int ____val_35[2];// L72 -}; -typedef struct ____anonymous_tag_33_34 ____fsid_t_36;// L72:L134 -typedef long int ____clock_t_37;// L93:L135 -typedef unsigned long int ____rlim_t_38;// L94:L136 -typedef unsigned long int ____rlim64_t_39;// L109:L137 -typedef unsigned int ____id_t_40;// L92:L138 -typedef long int ____time_t_41;// L93:L139 -typedef unsigned int ____useconds_t_42;// L92:L140 -typedef long int ____suseconds_t_43;// L93:L141 -typedef int ____daddr_t_44;// L91:L143 -typedef int ____key_t_45;// L91:L144 -typedef int ____clockid_t_46;// L91:L147 -typedef void * (____timer_t_47);// L70:L150 -typedef long int ____blksize_t_48;// L93:L153 -typedef long int ____blkcnt_t_49;// L93:L158 -typedef long int ____blkcnt64_t_50;// L108:L159 -typedef unsigned long int ____fsblkcnt_t_51;// L94:L162 -typedef unsigned long int ____fsblkcnt64_t_52;// L109:L163 -typedef unsigned long int ____fsfilcnt_t_53;// L94:L166 -typedef unsigned long int ____fsfilcnt64_t_54;// L109:L167 -typedef long int ____fsword_t_55;// L93:L170 -typedef long int ____ssize_t_56;// L110:L172 -typedef long int ____syscall_slong_t_57;// L93:L175 -typedef unsigned long int ____syscall_ulong_t_58;// L94:L177 -typedef ____off64_t_31 ____loff_t_59;// L181 -typedef ____quad_t_21 * (____qaddr_t_61);// L182 -typedef char * (____caddr_t_62);// L183 -typedef long int ____intptr_t_63;// L110:L186 -typedef unsigned int ____socklen_t_64;// L92:L189 -struct ____anonymous_tag_70_71 { -unsigned int ____w_termsig_72 : 7;// L72 -unsigned int ____w_coredump_73 : 1;// L73 -unsigned int ____w_retcode_74 : 8;// L74 -unsigned int __anon_id_0_75 : 16;// L75 -}; -struct ____anonymous_tag_76_77 { -unsigned int ____w_stopval_78 : 8;// L87 -unsigned int ____w_stopsig_79 : 8;// L88 -unsigned int __anon_id_1_80 : 16;// L89 -}; -union __wait_81 { -int __w_status_82;// L68 -struct ____anonymous_tag_70_71 ____wait_terminated_83;// L69 -struct ____anonymous_tag_76_77 ____wait_stopped_84;// L84 -}; -union ____anonymous_tag_85_86 { -union __wait_81 * (____uptr_87);// L69 -int * (____iptr_88);// L70 -}; -typedef union ____anonymous_tag_85_86 ____WAIT_STATUS_89;// L67:L71 -struct ____anonymous_tag_90_91 { -int __quot_92;// L99 -int __rem_93;// L100 -}; -typedef struct ____anonymous_tag_90_91 __div_t_94;// L97:L101 -struct ____anonymous_tag_95_96 { -long int __quot_97;// L107 -long int __rem_98;// L108 -}; -typedef struct ____anonymous_tag_95_96 __ldiv_t_99;// L105:L109 -struct ____anonymous_tag_100_101 { -long long int __quot_102;// L119 -long long int __rem_103;// L120 -}; -typedef struct ____anonymous_tag_100_101 __lldiv_t_104;// L117:L121 -typedef unsigned char ____u_char_164;// L30 -typedef unsigned short int ____u_short_165;// L31 -typedef unsigned int ____u_int_166;// L32 -typedef unsigned long int ____u_long_167;// L33 -typedef signed char ____int8_t_168;// L36 -typedef unsigned char ____uint8_t_169;// L37 -typedef signed short int ____int16_t_170;// L38 -typedef unsigned short int ____uint16_t_171;// L39 -typedef signed int ____int32_t_172;// L40 -typedef unsigned int ____uint32_t_173;// L41 -typedef signed long int ____int64_t_174;// L43 -typedef unsigned long int ____uint64_t_175;// L44 -typedef long int ____quad_t_176;// L52 -typedef unsigned long int ____u_quad_t_177;// L53 -typedef unsigned long int ____dev_t_178;// L109:L124 -typedef unsigned int ____uid_t_179;// L92:L125 -typedef unsigned int ____gid_t_180;// L92:L126 -typedef unsigned long int ____ino_t_181;// L94:L127 -typedef unsigned long int ____ino64_t_182;// L109:L128 -typedef unsigned int ____mode_t_183;// L92:L129 -typedef unsigned long int ____nlink_t_184;// L94:L130 -typedef long int ____off_t_185;// L93:L131 -typedef long int ____off64_t_186;// L108:L132 -typedef int ____pid_t_187;// L91:L133 -struct ____anonymous_tag_188_189 { -int ____val_190[2];// L72 -}; -typedef struct ____anonymous_tag_188_189 ____fsid_t_191;// L72:L134 -typedef long int ____clock_t_192;// L93:L135 -typedef unsigned long int ____rlim_t_193;// L94:L136 -typedef unsigned long int ____rlim64_t_194;// L109:L137 -typedef unsigned int ____id_t_195;// L92:L138 -typedef long int ____time_t_196;// L93:L139 -typedef unsigned int ____useconds_t_197;// L92:L140 -typedef long int ____suseconds_t_198;// L93:L141 -typedef int ____daddr_t_199;// L91:L143 -typedef int ____key_t_200;// L91:L144 -typedef int ____clockid_t_201;// L91:L147 -typedef void * (____timer_t_202);// L70:L150 -typedef long int ____blksize_t_203;// L93:L153 -typedef long int ____blkcnt_t_204;// L93:L158 -typedef long int ____blkcnt64_t_205;// L108:L159 -typedef unsigned long int ____fsblkcnt_t_206;// L94:L162 -typedef unsigned long int ____fsblkcnt64_t_207;// L109:L163 -typedef unsigned long int ____fsfilcnt_t_208;// L94:L166 -typedef unsigned long int ____fsfilcnt64_t_209;// L109:L167 -typedef long int ____fsword_t_210;// L93:L170 -typedef long int ____ssize_t_211;// L110:L172 -typedef long int ____syscall_slong_t_212;// L93:L175 -typedef unsigned long int ____syscall_ulong_t_213;// L94:L177 -typedef ____off64_t_186 ____loff_t_214;// L181 -typedef ____quad_t_176 * (____qaddr_t_216);// L182 -typedef char * (____caddr_t_217);// L183 -typedef long int ____intptr_t_218;// L110:L186 -typedef unsigned int ____socklen_t_219;// L92:L189 -typedef ____u_char_9 __u_char_220;// L33 -typedef ____u_char_164 __u_char_221;// L33 -typedef ____u_short_10 __u_short_222;// L34 -typedef ____u_short_165 __u_short_223;// L34 -typedef ____u_int_11 __u_int_224;// L35 -typedef ____u_int_166 __u_int_225;// L35 -typedef ____u_long_12 __u_long_226;// L36 -typedef ____u_long_167 __u_long_227;// L36 -typedef ____quad_t_21 __quad_t_228;// L37 -typedef ____quad_t_176 __quad_t_229;// L37 -typedef ____u_quad_t_22 __u_quad_t_230;// L38 -typedef ____u_quad_t_177 __u_quad_t_231;// L38 -typedef ____fsid_t_36 __fsid_t_232;// L39 -typedef ____fsid_t_191 __fsid_t_233;// L39 -typedef ____loff_t_59 __loff_t_235;// L44 -typedef ____loff_t_214 __loff_t_236;// L44 -typedef ____loff_t_59 __loff_t_238;// L44 -typedef ____loff_t_214 __loff_t_239;// L44 -typedef ____ino64_t_27 __ino_t_241;// L50 -typedef ____ino64_t_182 __ino_t_242;// L50 -typedef ____ino_t_26 __ino_t_244;// L48 -typedef ____ino_t_181 __ino_t_245;// L48 -typedef ____dev_t_23 __dev_t_247;// L60 -typedef ____dev_t_178 __dev_t_248;// L60 -typedef ____gid_t_25 __gid_t_250;// L65 -typedef ____gid_t_180 __gid_t_251;// L65 -typedef ____gid_t_25 __gid_t_253;// L65 -typedef ____gid_t_180 __gid_t_254;// L65 -typedef ____mode_t_28 __mode_t_256;// L70 -typedef ____mode_t_183 __mode_t_257;// L70 -typedef ____nlink_t_29 __nlink_t_259;// L75 -typedef ____nlink_t_184 __nlink_t_260;// L75 -typedef ____uid_t_24 __uid_t_262;// L80 -typedef ____uid_t_179 __uid_t_263;// L80 -typedef ____uid_t_24 __uid_t_265;// L80 -typedef ____uid_t_179 __uid_t_266;// L80 -typedef ____off64_t_31 __off_t_268;// L88 -typedef ____off64_t_186 __off_t_269;// L88 -typedef ____off_t_30 __off_t_271;// L86 -typedef ____off_t_185 __off_t_272;// L86 -typedef ____pid_t_32 __pid_t_274;// L98 -typedef ____pid_t_187 __pid_t_275;// L98 -typedef ____pid_t_32 __pid_t_277;// L98 -typedef ____pid_t_187 __pid_t_278;// L98 -typedef ____id_t_40 __id_t_280;// L104 -typedef ____id_t_195 __id_t_281;// L104 -typedef ____ssize_t_56 __ssize_t_283;// L109 -typedef ____ssize_t_211 __ssize_t_284;// L109 -typedef ____daddr_t_44 __daddr_t_286;// L115 -typedef ____daddr_t_199 __daddr_t_287;// L115 -typedef ____caddr_t_62 __caddr_t_289;// L116 -typedef ____caddr_t_217 __caddr_t_290;// L116 -typedef ____key_t_45 __key_t_291;// L122 -typedef ____key_t_200 __key_t_292;// L122 -typedef ____key_t_45 __key_t_294;// L122 -typedef ____key_t_200 __key_t_295;// L122 -typedef ____clock_t_37 __clock_t_297;// L59 -typedef ____clock_t_192 __clock_t_298;// L59 -typedef ____time_t_41 __time_t_300;// L75 -typedef ____time_t_196 __time_t_301;// L75 -typedef ____clockid_t_46 __clockid_t_303;// L91 -typedef ____clockid_t_201 __clockid_t_304;// L91 -typedef ____timer_t_47 __timer_t_306;// L103 -typedef ____timer_t_202 __timer_t_307;// L103 -typedef unsigned long int __ulong_309;// L150 -typedef unsigned long int __ulong_310;// L150 -typedef unsigned long int __ulong_311;// L150 -typedef unsigned short int __ushort_312;// L151 -typedef unsigned int __uint_313;// L152 -typedef int __int8_t_314;// L188:L194 -typedef int __int16_t_315;// L188:L195 -typedef int __int32_t_316;// L188:L196 -typedef int __int64_t_317;// L188:L197 -typedef unsigned int __u_int8_t_318;// L190:L200 -typedef unsigned int __u_int16_t_319;// L190:L201 -typedef unsigned int __u_int32_t_320;// L190:L202 -typedef unsigned int __u_int64_t_321;// L190:L203 -typedef int __register_t_322;// L205 -typedef int ____sig_atomic_t_328;// L22 -struct ____anonymous_tag_329_330 { -unsigned long int ____val_331[( 1024 / ( 8 * sizeof(unsigned long) ) )];// L29 -}; -typedef struct ____anonymous_tag_329_330 ____sigset_t_332;// L27:L30 -typedef ____sigset_t_332 __sigset_t_333;// L37 -struct __timespec_334 { -____time_t_41 __tv_sec_335;// L0 -____time_t_196 __tv_sec_336;// L0 -____syscall_slong_t_57 __tv_nsec_338;// L0 -____syscall_slong_t_212 __tv_nsec_339;// L0 -}; -struct __timeval_342 { -____time_t_41 __tv_sec_343;// L0 -____time_t_196 __tv_sec_344;// L0 -____suseconds_t_43 __tv_usec_346;// L0 -____suseconds_t_198 __tv_usec_347;// L0 -}; -typedef ____suseconds_t_43 __suseconds_t_350;// L48 -typedef ____suseconds_t_198 __suseconds_t_351;// L48 -typedef long int ____fd_mask_353;// L54 -typedef long int ____fd_mask_354;// L54 -struct ____anonymous_tag_355_356 { -____fd_mask_353 ____fds_bits_357[1024 / ( 8 * ( int ) sizeof(long) )];// L0 -____fd_mask_354 ____fds_bits_359[1024 / ( 8 * ( int ) sizeof(long) )];// L0 -}; -typedef struct ____anonymous_tag_355_356 __fd_set_362;// L64:L75 -typedef ____fd_mask_353 __fd_mask_363;// L82 -typedef ____fd_mask_354 __fd_mask_364;// L82 -typedef ____blksize_t_48 __blksize_t_412;// L228 -typedef ____blksize_t_203 __blksize_t_413;// L228 -typedef ____blkcnt_t_49 __blkcnt_t_415;// L235 -typedef ____blkcnt_t_204 __blkcnt_t_416;// L235 -typedef ____fsblkcnt_t_51 __fsblkcnt_t_418;// L239 -typedef ____fsblkcnt_t_206 __fsblkcnt_t_419;// L239 -typedef ____blkcnt64_t_50 __blkcnt_t_421;// L248 -typedef ____blkcnt64_t_205 __blkcnt_t_422;// L248 -typedef ____fsblkcnt64_t_52 __fsblkcnt_t_424;// L252 -typedef ____fsblkcnt64_t_207 __fsblkcnt_t_425;// L252 -typedef ____fsfilcnt_t_53 __fsfilcnt_t_427;// L243 -typedef ____fsfilcnt_t_208 __fsfilcnt_t_428;// L243 -typedef ____fsfilcnt64_t_54 __fsfilcnt_t_430;// L256 -typedef ____fsfilcnt64_t_209 __fsfilcnt_t_431;// L256 -typedef unsigned long int __pthread_t_433;// L60 -union __pthread_attr_t_434 { -char ____size_435[56];// L65 -long int ____align_436;// L66 -}; -typedef union __pthread_attr_t_434 __pthread_attr_t_437;// L69 -struct ____pthread_internal_list_439 { -struct __forward_tag_reference_438 * (____prev_440);// L0 -struct __forward_tag_reference_438 * (____next_441);// L0 +struct ____anonymous_tag_3_4 { +int __quot_5;// L99 +int __rem_6;// L100 }; -typedef struct ____pthread_internal_list_439 ____pthread_list_t_442;// L75:L79 -typedef struct ____pthread_internal_list_439 ____pthread_list_t_443;// L75:L79 -struct ____pthread_mutex_s_444 { -int ____lock_445;// L94 -unsigned int ____count_446;// L95 -int ____owner_447;// L96 -unsigned int ____nusers_448;// L98 -int ____kind_449;// L102 -short ____spins_450;// L104 -short ____elision_451;// L105 -____pthread_list_t_442 ____list_452;// L0 -____pthread_list_t_443 ____list_453;// L0 +typedef struct ____anonymous_tag_3_4 __div_t_7;// L97:L101 +struct ____anonymous_tag_8_9 { +long int __quot_10;// L107 +long int __rem_11;// L108 }; -union ____anonymous_tag_454_455 { -struct ____pthread_mutex_s_444 ____data_456;// L92 -char ____size_457[40];// L126 -long int ____align_458;// L127 +typedef struct ____anonymous_tag_8_9 __ldiv_t_12;// L105:L109 +struct ____anonymous_tag_13_14 { +long long int __quot_15;// L119 +long long int __rem_16;// L120 }; -typedef union ____anonymous_tag_454_455 __pthread_mutex_t_459;// L90:L128 -union ____anonymous_tag_460_461 { -char ____size_462[4];// L132 -int ____align_463;// L133 -}; -typedef union ____anonymous_tag_460_461 __pthread_mutexattr_t_464;// L130:L134 -typedef int (* (____compar_fn_t_572)) (const void *, const void *);// L741 +typedef struct ____anonymous_tag_13_14 __lldiv_t_17;// L117:L121 +typedef int (* (____compar_fn_t_99)) (const void *, const void *);// L741 -struct __forward_tag_reference_438 { // generated union of struct variations -union { -}; -}; - -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -static __inline unsigned int (____bswap_32_66) (unsigned int ____bsx_65) { - -if (__static_condition_default_67) { - -{ -{ - - - -__static_type_error("invalid type found in return expression"); -} -} - - -} -} -static __inline ____uint64_t_20 (____bswap_64_69) (____uint64_t_20 ____bsx_68) { - -if (__static_condition_default_67) { - -{ -{ - - - -__static_type_error("invalid type found in return expression"); -} -} - - -} -} -union __wait_81 ;// L66 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern __size_t_1 (____ctype_get_mb_cur_max_105) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_106) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_107) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_108) (void );// L139 -extern double (__atof_110) (const char * (____nptr_109));// L144:L145 -extern double (__atof_111) (const char * (____nptr_109));// L144:L145 -extern int (__atoi_113) (const char * (____nptr_112));// L147:L148 -extern int (__atoi_114) (const char * (____nptr_112));// L147:L148 -extern long int (__atol_116) (const char * (____nptr_115));// L150:L151 -extern long int (__atol_117) (const char * (____nptr_115));// L150:L151 -extern long long int (__atoll_119) (const char * (____nptr_118));// L157:L158 -extern long long int (__atoll_120) (const char * (____nptr_118));// L157:L158 -extern double (__strtod_123) (const char * __restrict ____nptr_121, char * (* __restrict ____endptr_122));// L164:L166 -extern float (__strtof_126) (const char * __restrict ____nptr_124, char * (* __restrict ____endptr_125));// L172:L173 -extern long double (__strtold_129) (const char * __restrict ____nptr_127, char * (* __restrict ____endptr_128));// L175:L177 -extern long int (__strtol_133) (const char * __restrict ____nptr_130, char * (* __restrict ____endptr_131), int ____base_132);// L183:L185 -extern unsigned long int (__strtoul_137) (const char * __restrict ____nptr_134, char * (* __restrict ____endptr_135), int ____base_136);// L187:L189 -extern long long int (__strtoq_141) (const char * __restrict ____nptr_138, char * (* __restrict ____endptr_139), int ____base_140);// L195:L197 -extern unsigned long long int (__strtouq_145) (const char * __restrict ____nptr_142, char * (* __restrict ____endptr_143), int ____base_144);// L200:L202 -extern long long int (__strtoll_149) (const char * __restrict ____nptr_146, char * (* __restrict ____endptr_147), int ____base_148);// L209:L211 -extern long long int (__strtoll_150) (const char * __restrict ____nptr_146, char * (* __restrict ____endptr_147), int ____base_148);// L209:L211 -extern unsigned long long int (__strtoull_154) (const char * __restrict ____nptr_151, char * (* __restrict ____endptr_152), int ____base_153);// L214:L216 +extern __size_t_1 (____ctype_get_mb_cur_max_18) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_19) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_20) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_21) (void );// L139 +extern double (__atof_23) (const char * (____nptr_22));// L144:L145 +extern double (__atof_24) (const char * (____nptr_22));// L144:L145 +extern int (__atoi_26) (const char * (____nptr_25));// L147:L148 +extern int (__atoi_27) (const char * (____nptr_25));// L147:L148 +extern long int (__atol_29) (const char * (____nptr_28));// L150:L151 +extern long int (__atol_30) (const char * (____nptr_28));// L150:L151 +extern long long int (__atoll_32) (const char * (____nptr_31));// L157:L158 +extern long long int (__atoll_33) (const char * (____nptr_31));// L157:L158 +extern double (__strtod_36) (const char * __restrict ____nptr_34, char * (* __restrict ____endptr_35));// L164:L166 +extern float (__strtof_39) (const char * __restrict ____nptr_37, char * (* __restrict ____endptr_38));// L172:L173 +extern long double (__strtold_42) (const char * __restrict ____nptr_40, char * (* __restrict ____endptr_41));// L175:L177 +extern long int (__strtol_46) (const char * __restrict ____nptr_43, char * (* __restrict ____endptr_44), int ____base_45);// L183:L185 +extern unsigned long int (__strtoul_50) (const char * __restrict ____nptr_47, char * (* __restrict ____endptr_48), int ____base_49);// L187:L189 +extern long long int (__strtoll_54) (const char * __restrict ____nptr_51, char * (* __restrict ____endptr_52), int ____base_53);// L209:L211 +extern unsigned long long int (__strtoull_58) (const char * __restrict ____nptr_55, char * (* __restrict ____endptr_56), int ____base_57);// L214:L216 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ __extension__/* no function due to type errors in the function prototype */ -extern char * ((__l64a_159) (long int ____n_158));// L305 -extern char * ((__l64a_160) (long int ____n_158));// L305 -extern long int (__a64l_162) (const char * (____s_161));// L308:L309 -extern long int (__a64l_163) (const char * (____s_161));// L308:L309 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -static __inline unsigned int (____bswap_32_324) (unsigned int ____bsx_323) { - -if (__static_condition_default_325) { - -{ -{ - - - -__static_type_error("invalid type found in return expression"); -} -} - - -} -} -static __inline ____uint64_t_175 (____bswap_64_327) (____uint64_t_175 ____bsx_326) { - -if (__static_condition_default_325) { - -{ -{ - - - -__static_type_error("invalid type found in return expression"); -} -} - - -} -} -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -struct __timespec_334 ;// L120 - -struct __timeval_342 ;// L30 - -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern int (__select_376) (int ____nfds_365, __fd_set_362 * __restrict ____readfds_366, __fd_set_362 * __restrict ____writefds_368, __fd_set_362 * __restrict ____exceptfds_370, struct __timeval_342 * __restrict ____timeout_373);// L106:L109 -extern int (__select_377) (int ____nfds_365, __fd_set_362 * __restrict ____readfds_366, __fd_set_362 * __restrict ____writefds_368, __fd_set_362 * __restrict ____exceptfds_370, struct __forward_tag_reference_372 * __restrict ____timeout_375);// L106:L109 -extern int (__pselect_392) (int ____nfds_380, __fd_set_362 * __restrict ____readfds_381, __fd_set_362 * __restrict ____writefds_383, __fd_set_362 * __restrict ____exceptfds_385, const struct __timespec_334 * __restrict ____timeout_388, const ____sigset_t_332 * __restrict ____sigmask_391);// L118:L122 -extern int (__pselect_393) (int ____nfds_380, __fd_set_362 * __restrict ____readfds_381, __fd_set_362 * __restrict ____writefds_383, __fd_set_362 * __restrict ____exceptfds_385, const struct __forward_tag_reference_387 * __restrict ____timeout_390, const ____sigset_t_332 * __restrict ____sigmask_391);// L118:L122 -extern long int (____fdelt_chk_397) (long int ____d_396);// L24 -extern long int (____fdelt_warn_399) (long int ____d_398);// L25:L26 -extern unsigned int (__gnu_dev_major_401) (unsigned long long int ____dev_400);// L27:L28 -extern unsigned int (__gnu_dev_major_402) (unsigned long long int ____dev_400);// L27:L28 -extern unsigned int (__gnu_dev_minor_404) (unsigned long long int ____dev_403);// L30:L31 -extern unsigned long long int (__gnu_dev_makedev_407) (unsigned int ____major_405, unsigned int ____minor_406);// L33:L35 -__extension__/* no function due to type errors in the function prototype */ -__extension__/* no function due to type errors in the function prototype */ -__extension__/* no function due to type errors in the function prototype */ -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -union __pthread_attr_t_434 ;// L63 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern int (__rand_465) (void );// L374 -extern void (__srand_467) (unsigned int ____seed_466);// L376 -extern int (__rand_r_469) (unsigned int * (____seed_468));// L381 -extern double (__drand48_470) (void );// L389 -extern double (__erand48_472) (unsigned short int ____xsubi_471[3]);// L390 -extern long int (__lrand48_473) (void );// L393 -extern long int (__nrand48_475) (unsigned short int ____xsubi_474[3]);// L394:L395 -extern long int (__mrand48_476) (void );// L398 -extern long int (__jrand48_478) (unsigned short int ____xsubi_477[3]);// L399:L400 -extern void (__srand48_480) (long int ____seedval_479);// L403 -extern unsigned short int * ((__seed48_482) (unsigned short int ____seed16v_481[3]));// L404:L405 -extern void (__lcong48_484) (unsigned short int ____param_483[7]);// L406 -extern void * ((__malloc_486) (__size_t_1 ____size_485));// L466 -extern void * ((__malloc_487) (__size_t_1 ____size_485));// L466 -extern void * ((__calloc_490) (__size_t_1 ____nmemb_488, __size_t_1 ____size_489));// L468:L469 -extern void * ((__calloc_491) (__size_t_1 ____nmemb_488, __size_t_1 ____size_489));// L468:L469 -extern void * ((__realloc_494) (void * (____ptr_492), __size_t_1 ____size_493));// L480:L481 -extern void (__free_496) (void * (____ptr_495));// L483 -extern void (__cfree_498) (void * (____ptr_497));// L488 -extern void * ((__alloca_500) (__size_t_1 ____size_499));// L32 -extern void * ((__valloc_502) (__size_t_1 ____size_501));// L498 -extern void * ((__valloc_503) (__size_t_1 ____size_501));// L498 -extern int (__posix_memalign_507) (void * (* (____memptr_504)), __size_t_1 ____alignment_505, __size_t_1 ____size_506);// L503:L504 -extern int (__posix_memalign_508) (void * (* (____memptr_504)), __size_t_1 ____alignment_505, __size_t_1 ____size_506);// L503:L504 -extern void * ((__aligned_alloc_511) (__size_t_1 ____alignment_509, __size_t_1 ____size_510));// L509:L510 -extern void * ((__aligned_alloc_512) (__size_t_1 ____alignment_509, __size_t_1 ____size_510));// L509:L510 -extern void * ((__aligned_alloc_513) (__size_t_1 ____alignment_509, __size_t_1 ____size_510));// L509:L510 -extern void * ((__aligned_alloc_514) (__size_t_1 ____alignment_509, __size_t_1 ____size_510));// L509:L510 -extern void (__abort_515) (void );// L515 -extern int (__atexit_517) (void (* (____func_516)) (void ));// L519 -extern int (__at_quick_exit_519) (void (* (____func_518)) (void ));// L527 -extern int (__on_exit_524) (void (* (____func_522)) (int ____status_520, void * (____arg_521)), void * (____arg_523));// L535:L536 -extern void (__exit_526) (int ____status_525);// L543 -extern void (__exit_527) (int ____status_525);// L543 -extern void (__quick_exit_529) (int ____status_528);// L549 -extern void (___Exit_531) (int ____status_530);// L557 -extern char * ((__getenv_533) (const char * (____name_532)));// L564 -extern char * ((__getenv_534) (const char * (____name_532)));// L564 -extern int (__putenv_536) (char * (____string_535));// L578 -extern int (__setenv_540) (const char * (____name_537), const char * (____value_538), int ____replace_539);// L584:L585 -extern int (__unsetenv_542) (const char * (____name_541));// L588 -extern int (__clearenv_543) (void );// L595 -extern char * ((__mktemp_545) (char * (____template_544)));// L606 -extern int (__mkstemp_548) (char * (____template_546));// L619 -extern int (__mkstemp_550) (char * (____template_546));// L619 -extern int (__mkstemp_549) (char * (____template_547));// L622:L623 -extern int (__mkstemp_551) (char * (____template_547));// L622:L623 -extern int (__mkstemps_556) (char * (____template_552), int ____suffixlen_553);// L641 -extern int (__mkstemps_557) (char * (____template_554), int ____suffixlen_555);// L644:L645 -extern int (__mkstemps_558) (char * (____template_552), int ____suffixlen_553);// L641 -extern int (__mkstemps_559) (char * (____template_554), int ____suffixlen_555);// L644:L645 -extern char * ((__mkdtemp_561) (char * (____template_560)));// L662 -extern char * ((__mkdtemp_562) (char * (____template_560)));// L662 -extern int (__system_564) (const char * (____command_563));// L716 -extern int (__system_565) (const char * (____command_563));// L716 -extern int (__system_566) (const char * (____command_563));// L716 -extern int (__system_567) (const char * (____command_563));// L716 -extern char * ((__realpath_570) (const char * __restrict ____name_568, char * __restrict ____resolved_569));// L733:L734 -extern char * ((__realpath_571) (const char * __restrict ____name_568, char * __restrict ____resolved_569));// L733:L734 -// typedef moved to top of scope -extern void * ((__bsearch_580) (const void * (____key_573), const void * (____base_574), __size_t_1 ____nmemb_575, __size_t_1 ____size_576, ____compar_fn_t_572 ____compar_577));// L754:L756 -extern void * ((__bsearch_582) (const void * (____key_573), const void * (____base_574), __size_t_1 ____nmemb_575, __size_t_1 ____size_576, ____compar_fn_t_572 ____compar_577));// L754:L756 +extern int (__rand_62) (void );// L374 +extern int (__rand_63) (void );// L374 +extern void (__srand_65) (unsigned int ____seed_64);// L376 +extern void * ((__malloc_67) (__size_t_1 ____size_66));// L466 +extern void * ((__malloc_68) (__size_t_1 ____size_66));// L466 +extern void * ((__calloc_71) (__size_t_1 ____nmemb_69, __size_t_1 ____size_70));// L468:L469 +extern void * ((__calloc_72) (__size_t_1 ____nmemb_69, __size_t_1 ____size_70));// L468:L469 +extern void * ((__realloc_75) (void * (____ptr_73), __size_t_1 ____size_74));// L480:L481 +extern void (__free_77) (void * (____ptr_76));// L483 +extern void * ((__aligned_alloc_80) (__size_t_1 ____alignment_78, __size_t_1 ____size_79));// L509:L510 +extern void * ((__aligned_alloc_81) (__size_t_1 ____alignment_78, __size_t_1 ____size_79));// L509:L510 +extern void (__abort_82) (void );// L515 +extern int (__atexit_84) (void (* (____func_83)) (void ));// L519 +extern int (__at_quick_exit_86) (void (* (____func_85)) (void ));// L527 +extern void (__exit_88) (int ____status_87);// L543 +extern void (__quick_exit_90) (int ____status_89);// L549 +extern void (___Exit_92) (int ____status_91);// L557 +extern char * ((__getenv_94) (const char * (____name_93)));// L564 +extern char * ((__getenv_95) (const char * (____name_93)));// L564 +extern int (__system_97) (const char * (____command_96));// L716 +extern int (__system_98) (const char * (____command_96));// L716 +// typedef moved to top of scope +extern void * ((__bsearch_107) (const void * (____key_100), const void * (____base_101), __size_t_1 ____nmemb_102, __size_t_1 ____size_103, ____compar_fn_t_99 ____compar_104));// L754:L756 +extern void * ((__bsearch_109) (const void * (____key_100), const void * (____base_101), __size_t_1 ____nmemb_102, __size_t_1 ____size_103, ____compar_fn_t_99 ____compar_104));// L754:L756 /* no function due to type errors in the function prototype */ -extern void (__qsort_601) (void * (____base_596), __size_t_1 ____nmemb_597, __size_t_1 ____size_598, ____compar_fn_t_572 ____compar_599);// L764:L765 -extern void (__qsort_603) (void * (____base_596), __size_t_1 ____nmemb_597, __size_t_1 ____size_598, ____compar_fn_t_572 ____compar_599);// L764:L765 -extern int (__abs_606) (int ____x_605);// L774 -extern int (__abs_607) (int ____x_605);// L774 -extern long int (__labs_609) (long int ____x_608);// L775 -extern long int (__labs_610) (long int ____x_608);// L775 -extern long long int (__llabs_612) (long long int ____x_611);// L779:L780 -extern long long int (__llabs_613) (long long int ____x_611);// L779:L780 -extern __div_t_94 (__div_616) (int ____numer_614, int ____denom_615);// L788:L789 -extern __div_t_94 (__div_617) (int ____numer_614, int ____denom_615);// L788:L789 -extern __ldiv_t_99 (__ldiv_620) (long int ____numer_618, long int ____denom_619);// L790:L791 -extern __ldiv_t_99 (__ldiv_622) (long int ____numer_618, long int ____denom_619);// L790:L791 -extern __lldiv_t_104 (__lldiv_626) (long long int ____numer_624, long long int ____denom_625);// L796:L798 -extern __lldiv_t_104 (__lldiv_628) (long long int ____numer_624, long long int ____denom_625);// L796:L798 -extern char * ((__ecvt_634) (double ____value_630, int ____ndigit_631, int * __restrict ____decpt_632, int * __restrict ____sign_633));// L811:L812 -extern char * ((__ecvt_635) (double ____value_630, int ____ndigit_631, int * __restrict ____decpt_632, int * __restrict ____sign_633));// L811:L812 -extern char * ((__fcvt_640) (double ____value_636, int ____ndigit_637, int * __restrict ____decpt_638, int * __restrict ____sign_639));// L817:L818 -extern char * ((__fcvt_641) (double ____value_636, int ____ndigit_637, int * __restrict ____decpt_638, int * __restrict ____sign_639));// L817:L818 -extern char * ((__gcvt_645) (double ____value_642, int ____ndigit_643, char * (____buf_644)));// L823:L824 -extern char * ((__gcvt_646) (double ____value_642, int ____ndigit_643, char * (____buf_644)));// L823:L824 -extern char * ((__qecvt_651) (long double ____value_647, int ____ndigit_648, int * __restrict ____decpt_649, int * __restrict ____sign_650));// L829:L831 -extern char * ((__qecvt_652) (long double ____value_647, int ____ndigit_648, int * __restrict ____decpt_649, int * __restrict ____sign_650));// L829:L831 -extern char * ((__qfcvt_657) (long double ____value_653, int ____ndigit_654, int * __restrict ____decpt_655, int * __restrict ____sign_656));// L832:L834 -extern char * ((__qfcvt_658) (long double ____value_653, int ____ndigit_654, int * __restrict ____decpt_655, int * __restrict ____sign_656));// L832:L834 -extern char * ((__qgcvt_662) (long double ____value_659, int ____ndigit_660, char * (____buf_661)));// L835:L836 -extern char * ((__qgcvt_663) (long double ____value_659, int ____ndigit_660, char * (____buf_661)));// L835:L836 -extern int (__ecvt_r_670) (double ____value_664, int ____ndigit_665, int * __restrict ____decpt_666, int * __restrict ____sign_667, char * __restrict ____buf_668, __size_t_1 ____len_669);// L841:L843 -extern int (__fcvt_r_677) (double ____value_671, int ____ndigit_672, int * __restrict ____decpt_673, int * __restrict ____sign_674, char * __restrict ____buf_675, __size_t_1 ____len_676);// L844:L846 -extern int (__qecvt_r_684) (long double ____value_678, int ____ndigit_679, int * __restrict ____decpt_680, int * __restrict ____sign_681, char * __restrict ____buf_682, __size_t_1 ____len_683);// L848:L851 -extern int (__qfcvt_r_691) (long double ____value_685, int ____ndigit_686, int * __restrict ____decpt_687, int * __restrict ____sign_688, char * __restrict ____buf_689, __size_t_1 ____len_690);// L852:L855 -extern int (__mblen_694) (const char * (____s_692), __size_t_1 ____n_693);// L862 -extern int (__mblen_695) (const char * (____s_692), __size_t_1 ____n_693);// L862 -extern int (__mbtowc_699) (__wchar_t_2 * __restrict ____pwc_696, const char * __restrict ____s_697, __size_t_1 ____n_698);// L865:L866 -extern int (__wctomb_702) (char * (____s_700), __wchar_t_2 ____wchar_701);// L869 -extern __size_t_1 (__mbstowcs_706) (__wchar_t_2 * __restrict ____pwcs_703, const char * __restrict ____s_704, __size_t_1 ____n_705);// L873:L874 -extern __size_t_1 (__wcstombs_710) (char * __restrict ____s_707, const __wchar_t_2 * __restrict ____pwcs_708, __size_t_1 ____n_709);// L876:L878 -extern int (__rpmatch_713) (const char * (____response_711));// L887 -extern int (__rpmatch_712) (const char * (____response_711));// L887 -extern int (__getsubopt_718) (char * (* __restrict ____optionp_714), char * const * __restrict ____tokens_715, char * (* __restrict ____valuep_716));// L898:L901 -extern int (__getsubopt_717) (char * (* __restrict ____optionp_714), char * const * __restrict ____tokens_715, char * (* __restrict ____valuep_716));// L898:L901 -extern int (__getloadavg_721) (double ____loadavg_719[], int ____nelem_720);// L950:L951 +extern void (__qsort_128) (void * (____base_123), __size_t_1 ____nmemb_124, __size_t_1 ____size_125, ____compar_fn_t_99 ____compar_126);// L764:L765 +extern void (__qsort_130) (void * (____base_123), __size_t_1 ____nmemb_124, __size_t_1 ____size_125, ____compar_fn_t_99 ____compar_126);// L764:L765 +extern int (__abs_133) (int ____x_132);// L774 +extern int (__abs_134) (int ____x_132);// L774 +extern long int (__labs_136) (long int ____x_135);// L775 +extern long int (__labs_137) (long int ____x_135);// L775 +extern long long int (__llabs_139) (long long int ____x_138);// L779:L780 +extern long long int (__llabs_140) (long long int ____x_138);// L779:L780 +extern __div_t_7 (__div_143) (int ____numer_141, int ____denom_142);// L788:L789 +extern __div_t_7 (__div_144) (int ____numer_141, int ____denom_142);// L788:L789 +extern __ldiv_t_12 (__ldiv_147) (long int ____numer_145, long int ____denom_146);// L790:L791 +extern __ldiv_t_12 (__ldiv_149) (long int ____numer_145, long int ____denom_146);// L790:L791 +extern __lldiv_t_17 (__lldiv_153) (long long int ____numer_151, long long int ____denom_152);// L796:L798 +extern __lldiv_t_17 (__lldiv_155) (long long int ____numer_151, long long int ____denom_152);// L796:L798 +extern int (__mblen_159) (const char * (____s_157), __size_t_1 ____n_158);// L862 +extern int (__mbtowc_163) (__wchar_t_2 * __restrict ____pwc_160, const char * __restrict ____s_161, __size_t_1 ____n_162);// L865:L866 +extern int (__wctomb_166) (char * (____s_164), __wchar_t_2 ____wchar_165);// L869 +extern __size_t_1 (__mbstowcs_170) (__wchar_t_2 * __restrict ____pwcs_167, const char * __restrict ____s_168, __size_t_1 ____n_169);// L873:L874 +extern __size_t_1 (__wcstombs_174) (char * __restrict ____s_171, const __wchar_t_2 * __restrict ____pwcs_172, __size_t_1 ____n_173);// L876:L878 /* no function due to type errors in the function prototype */ -extern char * ((____realpath_chk_726) (const char * __restrict ____name_723, char * __restrict ____resolved_724, __size_t_1 ____resolvedlen_725));// L23:L25 -extern char * ((____realpath_alias_729) (const char * __restrict ____name_727, char * __restrict ____resolved_728));// L26:L28 -extern char * ((____realpath_chk_warn_733) (const char * __restrict ____name_730, char * __restrict ____resolved_731, __size_t_1 ____resolvedlen_732));// L29:L34 +extern char * ((____realpath_chk_179) (const char * __restrict ____name_176, char * __restrict ____resolved_177, __size_t_1 ____resolvedlen_178));// L23:L25 +extern char * ((____realpath_alias_182) (const char * __restrict ____name_180, char * __restrict ____resolved_181));// L26:L28 +extern char * ((____realpath_chk_warn_186) (const char * __restrict ____name_183, char * __restrict ____resolved_184, __size_t_1 ____resolvedlen_185));// L29:L34 /* no function due to type errors in the function prototype */ -extern int (____ptsname_r_chk_741) (int ____fd_737, char * (____buf_738), __size_t_1 ____buflen_739, __size_t_1 ____nreal_740);// L52:L53 -extern int (____ptsname_r_alias_745) (int ____fd_742, char * (____buf_743), __size_t_1 ____buflen_744);// L54:L56 -extern int (____ptsname_r_chk_warn_750) (int ____fd_746, char * (____buf_747), __size_t_1 ____buflen_748, __size_t_1 ____nreal_749);// L57:L61 +extern int (____ptsname_r_chk_194) (int ____fd_190, char * (____buf_191), __size_t_1 ____buflen_192, __size_t_1 ____nreal_193);// L52:L53 +extern int (____ptsname_r_alias_198) (int ____fd_195, char * (____buf_196), __size_t_1 ____buflen_197);// L54:L56 +extern int (____ptsname_r_chk_warn_203) (int ____fd_199, char * (____buf_200), __size_t_1 ____buflen_201, __size_t_1 ____nreal_202);// L57:L61 /* no function due to type errors in the function prototype */ -extern int (____wctomb_chk_758) (char * (____s_755), __wchar_t_2 ____wchar_756, __size_t_1 ____buflen_757);// L77:L78 -extern int (____wctomb_alias_761) (char * (____s_759), __wchar_t_2 ____wchar_760);// L79:L80 +extern int (____wctomb_chk_211) (char * (____s_208), __wchar_t_2 ____wchar_209, __size_t_1 ____buflen_210);// L77:L78 +extern int (____wctomb_alias_214) (char * (____s_212), __wchar_t_2 ____wchar_213);// L79:L80 /* no function due to type errors in the function prototype */ -extern __size_t_1 (____mbstowcs_chk_768) (__wchar_t_2 * __restrict ____dst_764, const char * __restrict ____src_765, __size_t_1 ____len_766, __size_t_1 ____dstlen_767);// L98:L100 -extern __size_t_1 (____mbstowcs_alias_772) (__wchar_t_2 * __restrict ____dst_769, const char * __restrict ____src_770, __size_t_1 ____len_771);// L101:L104 -extern __size_t_1 (____mbstowcs_chk_warn_777) (__wchar_t_2 * __restrict ____dst_773, const char * __restrict ____src_774, __size_t_1 ____len_775, __size_t_1 ____dstlen_776);// L105:L110 +extern __size_t_1 (____mbstowcs_chk_221) (__wchar_t_2 * __restrict ____dst_217, const char * __restrict ____src_218, __size_t_1 ____len_219, __size_t_1 ____dstlen_220);// L98:L100 +extern __size_t_1 (____mbstowcs_alias_225) (__wchar_t_2 * __restrict ____dst_222, const char * __restrict ____src_223, __size_t_1 ____len_224);// L101:L104 +extern __size_t_1 (____mbstowcs_chk_warn_230) (__wchar_t_2 * __restrict ____dst_226, const char * __restrict ____src_227, __size_t_1 ____len_228, __size_t_1 ____dstlen_229);// L105:L110 /* no function due to type errors in the function prototype */ -extern __size_t_1 (____wcstombs_chk_785) (char * __restrict ____dst_781, const __wchar_t_2 * __restrict ____src_782, __size_t_1 ____len_783, __size_t_1 ____dstlen_784);// L130:L132 -extern __size_t_1 (____wcstombs_alias_789) (char * __restrict ____dst_786, const __wchar_t_2 * __restrict ____src_787, __size_t_1 ____len_788);// L133:L136 -extern __size_t_1 (____wcstombs_chk_warn_794) (char * __restrict ____dst_790, const __wchar_t_2 * __restrict ____src_791, __size_t_1 ____len_792, __size_t_1 ____dstlen_793);// L137:L141 +extern __size_t_1 (____wcstombs_chk_238) (char * __restrict ____dst_234, const __wchar_t_2 * __restrict ____src_235, __size_t_1 ____len_236, __size_t_1 ____dstlen_237);// L130:L132 +extern __size_t_1 (____wcstombs_alias_242) (char * __restrict ____dst_239, const __wchar_t_2 * __restrict ____src_240, __size_t_1 ____len_241);// L133:L136 +extern __size_t_1 (____wcstombs_chk_warn_247) (char * __restrict ____dst_243, const __wchar_t_2 * __restrict ____src_244, __size_t_1 ____len_245, __size_t_1 ____dstlen_246);// L137:L141 /* no function due to type errors in the function prototype */ -int * (__cache_798)= ( ( void * ) 0 );// L6 -int * (__cache_799)= ( ( void * ) 0 );// L6 -int * (__util_ldap_shm_801);// L7 -int (__apr_shm_attach_803) (int * (* (__util_ldap_shm_802))) { +int * (__cache_251)= ( ( void * ) 0 );// L6 +int * (__cache_252)= ( ( void * ) 0 );// L6 +int * (__util_ldap_shm_253);// L7 +int (__apr_shm_attach_255) (int * (* (__util_ldap_shm_254))) { { { -if (__static_condition_default_804) { -if ( __cache_798 )// L11 +if (__static_condition_default_256) { +if ( __cache_251 )// L11 { { @@ -1347,14 +279,14 @@ if ( __cache_798 )// L11 -* __util_ldap_shm_802 = __cache_798 ; // L12 +* __util_ldap_shm_254 = __cache_251 ; // L12 return 0 ;// L13 } } } } -if (__static_condition_default_805) { -if ( __cache_799 )// L11 +if (__static_condition_default_257) { +if ( __cache_252 )// L11 { { @@ -1362,60 +294,48 @@ if ( __cache_799 )// L11 -* __util_ldap_shm_802 = __cache_799 ; // L12 +* __util_ldap_shm_254 = __cache_252 ; // L12 return 0 ;// L13 } } } } -if (__static_condition_default_806) { -__static_type_error("invalid type found in if statement"); -} return - 1 ;// L15 } } } -int (__apr_shm_create_808) (int * (* (__util_ldap_shm_807))) { +int (__apr_shm_create_259) (int * (* (__util_ldap_shm_258))) { { { -if (__static_condition_default_809) { -if ( __cache_798 )// L20 +if (__static_condition_default_256) { +if ( __cache_251 )// L20 { return 2 ;// L21 } } -if (__static_condition_default_810) { -if ( __cache_799 )// L20 +if (__static_condition_default_257) { +if ( __cache_252 )// L20 { return 2 ;// L21 } } -if (__static_condition_default_811) { -__static_type_error("invalid type found in if statement"); -} -if (__static_condition_default_812) { - __cache_798 = malloc (sizeof(int)) ; // L22 +if (__static_condition_default_256) { + __cache_251 = malloc (sizeof(int)) ; // L22 } -if (__static_condition_default_813) { - __cache_799 = malloc (sizeof(int)) ; // L22 +if (__static_condition_default_257) { + __cache_252 = malloc (sizeof(int)) ; // L22 } -if (__static_condition_default_814) { -__static_type_error("type error") ; // L22 +if (__static_condition_default_256) { +* __util_ldap_shm_258 = __cache_251 ; // L23 } -if (__static_condition_default_815) { -* __util_ldap_shm_807 = __cache_798 ; // L23 -} -if (__static_condition_default_816) { -* __util_ldap_shm_807 = __cache_799 ; // L23 -} -if (__static_condition_default_800) { -__static_type_error("type error") ; // L23 +if (__static_condition_default_257) { +* __util_ldap_shm_258 = __cache_252 ; // L23 } return 0 ;// L24 } @@ -1423,17 +343,17 @@ return 0 ;// L24 } -int (__util_ldap_cache_init_818) () { +int (__util_ldap_cache_init_261) () { { { -int __result_817= __apr_shm_create_808 (& __util_ldap_shm_801 );// L30 +int __result_260= __apr_shm_create_259 (& __util_ldap_shm_253 );// L30 -if (__static_condition_default_819) { -if ( __result_817 != 1 )// L31 +if (__static_condition_default_262) { +if ( __result_260 != 1 )// L31 { { @@ -1441,15 +361,15 @@ if ( __result_817 != 1 )// L31 -return __result_817 ;// L32 +return __result_260 ;// L32 } } } } -if (__static_condition_default_820) { +if (__static_condition_default_263) { return 1 ;// L35 } -if (__static_condition_default_819) { +if (__static_condition_default_262) { return 1 ;// L35 } } @@ -1457,14 +377,14 @@ return 1 ;// L35 } -int (__main_821) (void ) { +int (__main_264) (void ) { { { -if (__static_condition_default_822) { +if (__static_condition_default_265) { if ( rand( ) % 2 )// L40 { @@ -1473,23 +393,36 @@ if ( rand( ) % 2 )// L40 -if (__static_condition_default_823) { - __cache_798 = malloc (sizeof(int)) ; // L41 +if (__static_condition_default_266) { + __cache_251 = malloc (sizeof(int)) ; // L41 +} +if (__static_condition_default_267) { + __cache_252 = malloc (sizeof(int)) ; // L41 +} +} } -if (__static_condition_default_824) { - __cache_799 = malloc (sizeof(int)) ; // L41 } -if (__static_condition_default_825) { -__static_type_error("type error") ; // L41 } +if (__static_condition_default_268) { +if ( rand( ) % 2 )// L40 +{ + +{ +{ + + + +if (__static_condition_default_269) { + __cache_251 = malloc (sizeof(int)) ; // L41 +} +if (__static_condition_default_270) { + __cache_252 = malloc (sizeof(int)) ; // L41 } } } } -if (__static_condition_default_826) { -__static_type_error("invalid type found in if statement"); } - __util_ldap_cache_init_818 ( ) ; // L43 + __util_ldap_cache_init_261 ( ) ; // L43 return 0 ;// L44 } } diff --git a/fonda/cpp_testsuite/varBugs/APACHE/bbeb0516cf0.clangres b/fonda/cpp_testsuite/varBugs/APACHE/bbeb0516cf0.clangres index 4e88a806..e69de29b 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/bbeb0516cf0.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/bbeb0516cf0.clangres @@ -1,4 +0,0 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/bbeb0516cf0.c:6:3: warning: Null pointer passed to 1st parameter expecting 'nonnull' [core.NonNullParamChecker] - strcat(r, "something"); - ^~~~~~~~~~~~~~~~~~~~~~ -1 warning generated. diff --git a/fonda/cpp_testsuite/varBugs/APACHE/bbeb0516cf0.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/bbeb0516cf0.desugared.c index a1c34e94..5b38d3db 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/bbeb0516cf0.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/bbeb0516cf0.desugared.c @@ -7,88 +7,88 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); +extern const bool __static_condition_default_1048; +extern const bool __static_condition_default_305; +extern const bool __static_condition_default_627; +extern const bool __static_condition_default_288; extern const bool __static_condition_default_246; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_1093; -extern const bool __static_condition_default_1024; -extern const bool __static_condition_default_243; -extern const bool __static_condition_default_1094; -extern const bool __static_condition_default_252; -extern const bool __static_condition_default_1087; -extern const bool __static_condition_default_352; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_1074; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_594; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_1053; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_420; +extern const bool __static_condition_default_604; extern const bool __static_condition_default_296; -extern const bool __static_condition_default_240; -extern const bool __static_condition_default_379; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_806; -extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_60; +extern const bool __static_condition_default_67; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_293; extern const bool __static_condition_default_1031; -extern const bool __static_condition_default_595; -extern const bool __static_condition_default_627; -extern const bool __static_condition_default_288; +extern const bool __static_condition_default_1088; extern const bool __static_condition_default_818; -extern const bool __static_condition_default_1077; -extern const bool __static_condition_default_302; -extern const bool __static_condition_default_237; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_1083; +extern const bool __static_condition_default_1038; extern const bool __static_condition_default_308; -extern const bool __static_condition_default_629; -extern const bool __static_condition_default_1047; -extern const bool __static_condition_default_1054; -extern const bool __static_condition_default_215; -extern const bool __static_condition_default_378; -extern const bool __static_condition_default_1030; -extern const bool __static_condition_default_1037; extern const bool __static_condition_default_341; -extern const bool __static_condition_default_394; -extern const bool __static_condition_default_432; +extern const bool __static_condition_default_215; +extern const bool __static_condition_default_276; extern const bool __static_condition_default_249; -extern const bool __static_condition_default_804; -extern const bool __static_condition_default_429; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_378; extern const bool __static_condition_default_426; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_261; -extern const bool __static_condition_default_305; -extern const bool __static_condition_default_349; -extern const bool __static_condition_default_414; +extern const bool __static_condition_default_325; +extern const bool __static_condition_default_1032; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_805; +extern const bool __static_condition_default_1098; +extern const bool __static_condition_default_429; +extern const bool __static_condition_default_279; +extern const bool __static_condition_default_594; +extern const bool __static_condition_default_804; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_1037; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_273; extern const bool __static_condition_default_819; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_621; extern const bool __static_condition_default_234; -extern const bool __static_condition_default_273; -extern const bool __static_condition_default_1048; -extern const bool __static_condition_default_279; -extern const bool __static_condition_default_276; -extern const bool __static_condition_default_604; -extern const bool __static_condition_default_1097; -extern const bool __static_condition_default_1082; +extern const bool __static_condition_default_352; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_1095; extern const bool __static_condition_default_361; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_1026; +extern const bool __static_condition_default_1054; +extern const bool __static_condition_default_252; +extern const bool __static_condition_default_1055; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_1049; +extern const bool __static_condition_default_285; +extern const bool __static_condition_default_60; +extern const bool __static_condition_default_629; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_1093; +extern const bool __static_condition_default_1094; +extern const bool __static_condition_default_243; extern const bool __static_condition_default_255; -extern const bool __static_condition_default_423; extern const bool __static_condition_default_623; -extern const bool __static_condition_default_285; -extern const bool __static_condition_default_67; -extern const bool __static_condition_default_1025; -extern const bool __static_condition_default_805; -extern const bool __static_condition_default_1092; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_325; +extern const bool __static_condition_default_1084; +extern const bool __static_condition_default_240; +extern const bool __static_condition_default_621; extern const bool __static_condition_default_579; +extern const bool __static_condition_default_423; +extern const bool __static_condition_default_1074; +extern const bool __static_condition_default_394; +extern const bool __static_condition_default_420; +extern const bool __static_condition_default_1075; +extern const bool __static_condition_default_302; extern const bool __static_condition_default_581; -extern const bool __static_condition_default_1088; +extern const bool __static_condition_default_237; +extern const bool __static_condition_default_261; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_379; +extern const bool __static_condition_default_595; +extern const bool __static_condition_default_1078; +extern const bool __static_condition_default_349; +extern const bool __static_condition_default_1083; +extern const bool __static_condition_default_414; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_1025; +extern const bool __static_condition_default_806; +extern const bool __static_condition_default_1092; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -505,60 +505,61 @@ __static_renaming("__strdup_897", "strdup"); __static_renaming("__strndup_901", "strndup"); __static_renaming("__strndup_902", "strndup"); __static_renaming("__strchr_905", "strchr"); -__static_renaming("__strrchr_908", "strrchr"); -__static_renaming("__strcspn_911", "strcspn"); +__static_renaming("__strchr_906", "strchr"); +__static_renaming("__strrchr_909", "strrchr"); __static_renaming("__strcspn_912", "strcspn"); -__static_renaming("__strspn_915", "strspn"); +__static_renaming("__strcspn_913", "strcspn"); __static_renaming("__strspn_916", "strspn"); -__static_renaming("__strpbrk_919", "strpbrk"); -__static_renaming("__strstr_922", "strstr"); -__static_renaming("__strtok_925", "strtok"); -__static_renaming("____strtok_r_929", "__strtok_r"); -__static_renaming("__strtok_r_933", "strtok_r"); -__static_renaming("__strlen_935", "strlen"); +__static_renaming("__strspn_917", "strspn"); +__static_renaming("__strpbrk_920", "strpbrk"); +__static_renaming("__strstr_923", "strstr"); +__static_renaming("__strtok_926", "strtok"); +__static_renaming("____strtok_r_930", "__strtok_r"); +__static_renaming("__strtok_r_934", "strtok_r"); __static_renaming("__strlen_936", "strlen"); __static_renaming("__strlen_937", "strlen"); __static_renaming("__strlen_938", "strlen"); -__static_renaming("__strnlen_942", "strnlen"); +__static_renaming("__strlen_939", "strlen"); __static_renaming("__strnlen_943", "strnlen"); -__static_renaming("__strerror_945", "strerror"); +__static_renaming("__strnlen_944", "strnlen"); __static_renaming("__strerror_946", "strerror"); -__static_renaming("__strerror_r_951", "strerror_r"); +__static_renaming("__strerror_947", "strerror"); __static_renaming("__strerror_r_952", "strerror_r"); -__static_renaming("__strerror_l_955", "strerror_l"); -__static_renaming("____bzero_959", "__bzero"); +__static_renaming("__strerror_r_953", "strerror_r"); +__static_renaming("__strerror_l_956", "strerror_l"); __static_renaming("____bzero_960", "__bzero"); __static_renaming("____bzero_961", "__bzero"); __static_renaming("____bzero_962", "__bzero"); -__static_renaming("__bcopy_967", "bcopy"); +__static_renaming("____bzero_963", "__bzero"); __static_renaming("__bcopy_968", "bcopy"); -__static_renaming("__bzero_972", "bzero"); +__static_renaming("__bcopy_969", "bcopy"); __static_renaming("__bzero_973", "bzero"); -__static_renaming("__bcmp_978", "bcmp"); +__static_renaming("__bzero_974", "bzero"); __static_renaming("__bcmp_979", "bcmp"); -__static_renaming("__index_982", "index"); -__static_renaming("__rindex_985", "rindex"); -__static_renaming("__ffs_987", "ffs"); -__static_renaming("__strcasecmp_990", "strcasecmp"); -__static_renaming("__strncasecmp_995", "strncasecmp"); +__static_renaming("__bcmp_980", "bcmp"); +__static_renaming("__index_983", "index"); +__static_renaming("__rindex_986", "rindex"); +__static_renaming("__ffs_988", "ffs"); +__static_renaming("__strcasecmp_991", "strcasecmp"); __static_renaming("__strncasecmp_996", "strncasecmp"); -__static_renaming("__strsep_999", "strsep"); -__static_renaming("__strsignal_1001", "strsignal"); -__static_renaming("____stpcpy_1004", "__stpcpy"); -__static_renaming("__stpcpy_1007", "stpcpy"); -__static_renaming("____stpncpy_1012", "__stpncpy"); +__static_renaming("__strncasecmp_997", "strncasecmp"); +__static_renaming("__strsep_1000", "strsep"); +__static_renaming("__strsignal_1002", "strsignal"); +__static_renaming("____stpcpy_1005", "__stpcpy"); +__static_renaming("__stpcpy_1008", "stpcpy"); __static_renaming("____stpncpy_1013", "__stpncpy"); -__static_renaming("__stpncpy_1018", "stpncpy"); +__static_renaming("____stpncpy_1014", "__stpncpy"); __static_renaming("__stpncpy_1019", "stpncpy"); -__static_renaming("____stpncpy_chk_1061", "__stpncpy_chk"); +__static_renaming("__stpncpy_1020", "stpncpy"); __static_renaming("____stpncpy_chk_1062", "__stpncpy_chk"); -__static_renaming("____stpncpy_alias_1067", "__stpncpy_alias"); +__static_renaming("____stpncpy_chk_1063", "__stpncpy_chk"); __static_renaming("____stpncpy_alias_1068", "__stpncpy_alias"); -__static_renaming("__cgi_bucket_create_1085", "cgi_bucket_create"); +__static_renaming("____stpncpy_alias_1069", "__stpncpy_alias"); __static_renaming("__cgi_bucket_create_1086", "cgi_bucket_create"); -__static_renaming("__cgi_handler_1090", "cgi_handler"); -__static_renaming("__r_1095", "r"); -__static_renaming("__main_1096", "main"); +__static_renaming("__cgi_bucket_create_1087", "cgi_bucket_create"); +__static_renaming("__cgi_handler_1091", "cgi_handler"); +__static_renaming("__r_1096", "r"); +__static_renaming("__main_1097", "main"); __static_condition_renaming("__static_condition_default_60", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H) && (defined _BITS_TYPESIZES_H)"); __static_condition_renaming("__static_condition_default_67", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); @@ -620,31 +621,30 @@ __static_condition_renaming("__static_condition_default_805", "!(defined _STDLIB __static_condition_renaming("__static_condition_default_806", "(defined _STDLIB_H)"); __static_condition_renaming("__static_condition_default_818", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__)"); __static_condition_renaming("__static_condition_default_819", "(defined _STDLIB_H) && !(defined __STRICT_ANSI__)"); -__static_condition_renaming("__static_condition_default_1024", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1025", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1030", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1031", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1036", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1037", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1047", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1048", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1053", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1054", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1073", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1074", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1077", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1082", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1083", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1087", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1088", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1091", "!APR_FILES_AS_SOCKETS"); -__static_condition_renaming("__static_condition_default_1092", "APR_FILES_AS_SOCKETS"); -__static_condition_renaming("__static_condition_default_1093", "!(defined _FORTIFY_SOURCE) && APR_FILES_AS_SOCKETS || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && APR_FILES_AS_SOCKETS || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && APR_FILES_AS_SOCKETS || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && APR_FILES_AS_SOCKETS"); -__static_condition_renaming("__static_condition_default_1094", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && APR_FILES_AS_SOCKETS"); -__static_condition_renaming("__static_condition_default_1097", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined __need_malloc_and_calloc) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || (defined _STDLIB_H) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO)"); - -if (__static_condition_default_1097) -{ +__static_condition_renaming("__static_condition_default_1025", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1026", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1031", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1032", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1037", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1038", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1048", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1049", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1054", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1055", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1074", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1075", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1078", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1083", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1084", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1088", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1089", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1092", "!APR_FILES_AS_SOCKETS"); +__static_condition_renaming("__static_condition_default_1093", "APR_FILES_AS_SOCKETS"); +__static_condition_renaming("__static_condition_default_1094", "!(defined _FORTIFY_SOURCE) && APR_FILES_AS_SOCKETS || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && APR_FILES_AS_SOCKETS || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && APR_FILES_AS_SOCKETS || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && APR_FILES_AS_SOCKETS"); +__static_condition_renaming("__static_condition_default_1095", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && APR_FILES_AS_SOCKETS"); +__static_condition_renaming("__static_condition_default_1098", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc)"); + +if (__static_condition_default_1098) { __static_parse_error("Unable to parse"); } }; @@ -1470,51 +1470,52 @@ extern char * ((__strdup_897) (const char * (____s_896)));// L171:L172 extern char * ((__strndup_901) (const char * (____string_898), __size_t_1 ____n_899));// L179:L180 extern char * ((__strndup_902) (const char * (____string_898), __size_t_799 ____n_900));// L179:L180 extern char * ((__strchr_905) (const char * (____s_903), int ____c_904));// L231:L232 -extern char * ((__strrchr_908) (const char * (____s_906), int ____c_907));// L258:L259 -extern __size_t_1 (__strcspn_911) (const char * (____s_909), const char * (____reject_910));// L280:L281 -extern __size_t_799 (__strcspn_912) (const char * (____s_909), const char * (____reject_910));// L280:L281 -extern __size_t_1 (__strspn_915) (const char * (____s_913), const char * (____accept_914));// L284:L285 -extern __size_t_799 (__strspn_916) (const char * (____s_913), const char * (____accept_914));// L284:L285 -extern char * ((__strpbrk_919) (const char * (____s_917), const char * (____accept_918)));// L310:L311 -extern char * ((__strstr_922) (const char * (____haystack_920), const char * (____needle_921)));// L337:L338 -extern char * ((__strtok_925) (char * __restrict ____s_923, const char * __restrict ____delim_924));// L343:L344 -extern char * ((____strtok_r_929) (char * __restrict ____s_926, const char * __restrict ____delim_927, char * (* __restrict ____save_ptr_928)));// L349:L352 -extern char * ((__strtok_r_933) (char * __restrict ____s_930, const char * __restrict ____delim_931, char * (* __restrict ____save_ptr_932)));// L354:L356 -extern __size_t_1 (__strlen_935) (const char * (____s_934));// L394:L395 -extern __size_t_799 (__strlen_936) (const char * (____s_934));// L394:L395 -extern __size_t_1 (__strlen_937) (const char * (____s_934));// L394:L395 -extern __size_t_799 (__strlen_938) (const char * (____s_934));// L394:L395 -extern __size_t_1 (__strnlen_942) (const char * (____string_939), __size_t_1 ____maxlen_940);// L401:L402 -extern __size_t_799 (__strnlen_943) (const char * (____string_939), __size_t_799 ____maxlen_941);// L401:L402 -extern char * ((__strerror_945) (int ____errnum_944));// L408 -extern char * ((__strerror_946) (int ____errnum_944));// L408 -extern int (__strerror_r_951) (int ____errnum_947, char * (____buf_948), __size_t_1 ____buflen_949);// L422:L424 -extern int (__strerror_r_952) (int ____errnum_947, char * (____buf_948), __size_t_799 ____buflen_950);// L422:L424 -extern char * ((__strerror_l_955) (int ____errnum_953, ____locale_t_883 ____l_954));// L440 -extern void (____bzero_959) (void * (____s_956), __size_t_1 ____n_957);// L446 -extern void (____bzero_960) (void * (____s_956), __size_t_799 ____n_958);// L446 -extern void (____bzero_961) (void * (____s_956), __size_t_1 ____n_957);// L446 -extern void (____bzero_962) (void * (____s_956), __size_t_799 ____n_958);// L446 -extern void (__bcopy_967) (const void * (____src_963), void * (____dest_964), __size_t_1 ____n_965);// L450:L451 -extern void (__bcopy_968) (const void * (____src_963), void * (____dest_964), __size_t_799 ____n_966);// L450:L451 -extern void (__bzero_972) (void * (____s_969), __size_t_1 ____n_970);// L454 -extern void (__bzero_973) (void * (____s_969), __size_t_799 ____n_971);// L454 -extern int (__bcmp_978) (const void * (____s1_974), const void * (____s2_975), __size_t_1 ____n_976);// L457:L458 -extern int (__bcmp_979) (const void * (____s1_974), const void * (____s2_975), __size_t_799 ____n_977);// L457:L458 -extern char * ((__index_982) (const char * (____s_980), int ____c_981));// L484:L485 -extern char * ((__rindex_985) (const char * (____s_983), int ____c_984));// L512:L513 -extern int (__ffs_987) (int ____i_986);// L518 -extern int (__strcasecmp_990) (const char * (____s1_988), const char * (____s2_989));// L529:L530 -extern int (__strncasecmp_995) (const char * (____s1_991), const char * (____s2_992), __size_t_1 ____n_993);// L533:L534 -extern int (__strncasecmp_996) (const char * (____s1_991), const char * (____s2_992), __size_t_799 ____n_994);// L533:L534 -extern char * ((__strsep_999) (char * (* __restrict ____stringp_997), const char * __restrict ____delim_998));// L552:L554 -extern char * ((__strsignal_1001) (int ____sig_1000));// L559 -extern char * ((____stpcpy_1004) (char * __restrict ____dest_1002, const char * __restrict ____src_1003));// L562:L563 -extern char * ((__stpcpy_1007) (char * __restrict ____dest_1005, const char * __restrict ____src_1006));// L564:L565 -extern char * ((____stpncpy_1012) (char * __restrict ____dest_1008, const char * __restrict ____src_1009, __size_t_1 ____n_1010));// L569:L571 -extern char * ((____stpncpy_1013) (char * __restrict ____dest_1008, const char * __restrict ____src_1009, __size_t_799 ____n_1011));// L569:L571 -extern char * ((__stpncpy_1018) (char * __restrict ____dest_1014, const char * __restrict ____src_1015, __size_t_1 ____n_1016));// L572:L574 -extern char * ((__stpncpy_1019) (char * __restrict ____dest_1014, const char * __restrict ____src_1015, __size_t_799 ____n_1017));// L572:L574 +extern char * ((__strchr_906) (const char * (____s_903), int ____c_904));// L231:L232 +extern char * ((__strrchr_909) (const char * (____s_907), int ____c_908));// L258:L259 +extern __size_t_1 (__strcspn_912) (const char * (____s_910), const char * (____reject_911));// L280:L281 +extern __size_t_799 (__strcspn_913) (const char * (____s_910), const char * (____reject_911));// L280:L281 +extern __size_t_1 (__strspn_916) (const char * (____s_914), const char * (____accept_915));// L284:L285 +extern __size_t_799 (__strspn_917) (const char * (____s_914), const char * (____accept_915));// L284:L285 +extern char * ((__strpbrk_920) (const char * (____s_918), const char * (____accept_919)));// L310:L311 +extern char * ((__strstr_923) (const char * (____haystack_921), const char * (____needle_922)));// L337:L338 +extern char * ((__strtok_926) (char * __restrict ____s_924, const char * __restrict ____delim_925));// L343:L344 +extern char * ((____strtok_r_930) (char * __restrict ____s_927, const char * __restrict ____delim_928, char * (* __restrict ____save_ptr_929)));// L349:L352 +extern char * ((__strtok_r_934) (char * __restrict ____s_931, const char * __restrict ____delim_932, char * (* __restrict ____save_ptr_933)));// L354:L356 +extern __size_t_1 (__strlen_936) (const char * (____s_935));// L394:L395 +extern __size_t_799 (__strlen_937) (const char * (____s_935));// L394:L395 +extern __size_t_1 (__strlen_938) (const char * (____s_935));// L394:L395 +extern __size_t_799 (__strlen_939) (const char * (____s_935));// L394:L395 +extern __size_t_1 (__strnlen_943) (const char * (____string_940), __size_t_1 ____maxlen_941);// L401:L402 +extern __size_t_799 (__strnlen_944) (const char * (____string_940), __size_t_799 ____maxlen_942);// L401:L402 +extern char * ((__strerror_946) (int ____errnum_945));// L408 +extern char * ((__strerror_947) (int ____errnum_945));// L408 +extern int (__strerror_r_952) (int ____errnum_948, char * (____buf_949), __size_t_1 ____buflen_950);// L422:L424 +extern int (__strerror_r_953) (int ____errnum_948, char * (____buf_949), __size_t_799 ____buflen_951);// L422:L424 +extern char * ((__strerror_l_956) (int ____errnum_954, ____locale_t_883 ____l_955));// L440 +extern void (____bzero_960) (void * (____s_957), __size_t_1 ____n_958);// L446 +extern void (____bzero_961) (void * (____s_957), __size_t_799 ____n_959);// L446 +extern void (____bzero_962) (void * (____s_957), __size_t_1 ____n_958);// L446 +extern void (____bzero_963) (void * (____s_957), __size_t_799 ____n_959);// L446 +extern void (__bcopy_968) (const void * (____src_964), void * (____dest_965), __size_t_1 ____n_966);// L450:L451 +extern void (__bcopy_969) (const void * (____src_964), void * (____dest_965), __size_t_799 ____n_967);// L450:L451 +extern void (__bzero_973) (void * (____s_970), __size_t_1 ____n_971);// L454 +extern void (__bzero_974) (void * (____s_970), __size_t_799 ____n_972);// L454 +extern int (__bcmp_979) (const void * (____s1_975), const void * (____s2_976), __size_t_1 ____n_977);// L457:L458 +extern int (__bcmp_980) (const void * (____s1_975), const void * (____s2_976), __size_t_799 ____n_978);// L457:L458 +extern char * ((__index_983) (const char * (____s_981), int ____c_982));// L484:L485 +extern char * ((__rindex_986) (const char * (____s_984), int ____c_985));// L512:L513 +extern int (__ffs_988) (int ____i_987);// L518 +extern int (__strcasecmp_991) (const char * (____s1_989), const char * (____s2_990));// L529:L530 +extern int (__strncasecmp_996) (const char * (____s1_992), const char * (____s2_993), __size_t_1 ____n_994);// L533:L534 +extern int (__strncasecmp_997) (const char * (____s1_992), const char * (____s2_993), __size_t_799 ____n_995);// L533:L534 +extern char * ((__strsep_1000) (char * (* __restrict ____stringp_998), const char * __restrict ____delim_999));// L552:L554 +extern char * ((__strsignal_1002) (int ____sig_1001));// L559 +extern char * ((____stpcpy_1005) (char * __restrict ____dest_1003, const char * __restrict ____src_1004));// L562:L563 +extern char * ((__stpcpy_1008) (char * __restrict ____dest_1006, const char * __restrict ____src_1007));// L564:L565 +extern char * ((____stpncpy_1013) (char * __restrict ____dest_1009, const char * __restrict ____src_1010, __size_t_1 ____n_1011));// L569:L571 +extern char * ((____stpncpy_1014) (char * __restrict ____dest_1009, const char * __restrict ____src_1010, __size_t_799 ____n_1012));// L569:L571 +extern char * ((__stpncpy_1019) (char * __restrict ____dest_1015, const char * __restrict ____src_1016, __size_t_1 ____n_1017));// L572:L574 +extern char * ((__stpncpy_1020) (char * __restrict ____dest_1015, const char * __restrict ____src_1016, __size_t_799 ____n_1018));// L572:L574 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ @@ -1522,32 +1523,32 @@ extern char * ((__stpncpy_1019) (char * __restrict ____dest_1014, const char /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern char * ((____stpncpy_chk_1061) (char * (____dest_1055), const char * (____src_1056), __size_t_1 ____n_1057, __size_t_1 ____destlen_1059));// L130:L131 -extern char * ((____stpncpy_chk_1062) (char * (____dest_1055), const char * (____src_1056), __size_t_799 ____n_1058, __size_t_799 ____destlen_1060));// L130:L131 -extern char * ((____stpncpy_alias_1067) (char * (____dest_1063), const char * (____src_1064), __size_t_1 ____n_1065));// L132:L133 -extern char * ((____stpncpy_alias_1068) (char * (____dest_1063), const char * (____src_1064), __size_t_799 ____n_1066));// L132:L133 +extern char * ((____stpncpy_chk_1062) (char * (____dest_1056), const char * (____src_1057), __size_t_1 ____n_1058, __size_t_1 ____destlen_1060));// L130:L131 +extern char * ((____stpncpy_chk_1063) (char * (____dest_1056), const char * (____src_1057), __size_t_799 ____n_1059, __size_t_799 ____destlen_1061));// L130:L131 +extern char * ((____stpncpy_alias_1068) (char * (____dest_1064), const char * (____src_1065), __size_t_1 ____n_1066));// L132:L133 +extern char * ((____stpncpy_alias_1069) (char * (____dest_1064), const char * (____src_1065), __size_t_799 ____n_1067));// L132:L133 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -void (__cgi_bucket_create_1085) (char * (__r_1084)) { +void (__cgi_bucket_create_1086) (char * (__r_1085)) { -if (__static_condition_default_1087) { +if (__static_condition_default_1088) { { { - __strcat_851 ( __r_1084 ,"something") ; // L6 + __strcat_851 ( __r_1085 ,"something") ; // L6 } } } } -void (__cgi_bucket_create_1086) (char * (__r_1084)) { +void (__cgi_bucket_create_1087) (char * (__r_1085)) { -if (__static_condition_default_1088) { +if (__static_condition_default_1089) { { { @@ -1561,10 +1562,10 @@ __static_type_error("type error") ; // L6 } } -void (__cgi_handler_1090) (char * (__r_1089)) { +void (__cgi_handler_1091) (char * (__r_1090)) { { -if (__static_condition_default_1091) { +if (__static_condition_default_1092) { { { @@ -1577,18 +1578,18 @@ if (__static_condition_default_1091) { } -if (__static_condition_default_1092) { +if (__static_condition_default_1093) { { { -if (__static_condition_default_1093) { - __cgi_bucket_create_1085 ( __r_1089 ) ; // L12 -} if (__static_condition_default_1094) { - __cgi_bucket_create_1086 ( __r_1089 ) ; // L12 + __cgi_bucket_create_1086 ( __r_1090 ) ; // L12 +} +if (__static_condition_default_1095) { + __cgi_bucket_create_1087 ( __r_1090 ) ; // L12 } } } @@ -1597,16 +1598,16 @@ if (__static_condition_default_1094) { } }} -int (__main_1096) (void ) { +int (__main_1097) (void ) { { { -char * (__r_1095)= ( ( void * ) 0 );// L18 +char * (__r_1096)= ( ( void * ) 0 );// L18 - __cgi_handler_1090 ( __r_1095 ) ; // L19 + __cgi_handler_1091 ( __r_1096 ) ; // L19 return 0 ;// L20 } } diff --git a/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.clangres b/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.clangres index 601afa50..1f6a9663 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.clangres @@ -1,4 +1,5 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.c:42:7: warning: Value stored to 'flags' is never read [deadcode.DeadStores] - flags |= T_ESCAPE_SHELL_CMD; - ^ ~~~~~~~~~~~~~~~~~~ -1 warning generated. +In file included from :342: +:2:8: error: 'defined' cannot be used as a macro name +#undef defined + ^ +1 error generated. diff --git a/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c index 8c592d5c..bd634a18 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c @@ -7,379 +7,249 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_1782; -extern const bool __static_condition_default_2040; -extern const bool __static_condition_default_198; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_2094; -extern const bool __static_condition_default_380; -extern const bool __static_condition_default_1637; -extern const bool __static_condition_default_315; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_290; -extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_695; +extern const bool __static_condition_default_161; +extern const bool __static_condition_default_648; +extern const bool __static_condition_default_833; +extern const bool __static_condition_default_232; +extern const bool __static_condition_default_640; +extern const bool __static_condition_default_641; +extern const bool __static_condition_default_855; +extern const bool __static_condition_default_694; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_296; extern const bool __static_condition_default_223; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_761; -extern const bool __static_condition_default_382; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_872; -extern const bool __static_condition_default_2332; -extern const bool __static_condition_default_2345; -extern const bool __static_condition_default_632; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_1642; +extern const bool __static_condition_default_992; +extern const bool __static_condition_default_1614; +extern const bool __static_condition_default_935; +extern const bool __static_condition_default_320; +extern const bool __static_condition_default_881; +extern const bool __static_condition_default_941; +extern const bool __static_condition_default_394; +extern const bool __static_condition_default_448; +extern const bool __static_condition_default_948; +extern const bool __static_condition_default_227; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_165; +extern const bool __static_condition_default_707; +extern const bool __static_condition_default_1837; +extern const bool __static_condition_default_1836; +extern const bool __static_condition_default_714; +extern const bool __static_condition_default_528; +extern const bool __static_condition_default_1829; +extern const bool __static_condition_default_304; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_1826; +extern const bool __static_condition_default_696; +extern const bool __static_condition_default_893; +extern const bool __static_condition_default_1648; +extern const bool __static_condition_default_453; +extern const bool __static_condition_default_1227; +extern const bool __static_condition_default_905; +extern const bool __static_condition_default_720; +extern const bool __static_condition_default_551; +extern const bool __static_condition_default_1230; +extern const bool __static_condition_default_579; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_370; +extern const bool __static_condition_default_1214; +extern const bool __static_condition_default_954; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_1835; +extern const bool __static_condition_default_379; +extern const bool __static_condition_default_688; +extern const bool __static_condition_default_336; +extern const bool __static_condition_default_1031; +extern const bool __static_condition_default_276; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_480; +extern const bool __static_condition_default_234; +extern const bool __static_condition_default_540; +extern const bool __static_condition_default_562; +extern const bool __static_condition_default_639; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_976; +extern const bool __static_condition_default_381; +extern const bool __static_condition_default_605; +extern const bool __static_condition_default_610; +extern const bool __static_condition_default_328; extern const bool __static_condition_default_998; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_408; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_347; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_461; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_204; -extern const bool __static_condition_default_1856; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_789; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_1773; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_1661; -extern const bool __static_condition_default_248; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_1376; -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_1347; -extern const bool __static_condition_default_2346; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_677; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_507; extern const bool __static_condition_default_788; -extern const bool __static_condition_default_1330; -extern const bool __static_condition_default_613; -extern const bool __static_condition_default_1815; -extern const bool __static_condition_default_1324; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_755; -extern const bool __static_condition_default_780; -extern const bool __static_condition_default_1092; -extern const bool __static_condition_default_702; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_1331; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_787; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_2096; -extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_779; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_317; -extern const bool __static_condition_default_2348; -extern const bool __static_condition_default_793; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_1443; +extern const bool __static_condition_default_435; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_1825; +extern const bool __static_condition_default_374; +extern const bool __static_condition_default_567; +extern const bool __static_condition_default_719; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_517; +extern const bool __static_condition_default_762; +extern const bool __static_condition_default_400; +extern const bool __static_condition_default_991; extern const bool __static_condition_default_633; -extern const bool __static_condition_default_709; -extern const bool __static_condition_default_402; -extern const bool __static_condition_default_1113; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_217; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_2338; -extern const bool __static_condition_default_1816; -extern const bool __static_condition_default_2339; -extern const bool __static_condition_default_583; -extern const bool __static_condition_default_701; -extern const bool __static_condition_default_1099; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_1325; -extern const bool __static_condition_default_2336; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_564; +extern const bool __static_condition_default_1006; +extern const bool __static_condition_default_655; extern const bool __static_condition_default_715; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_670; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_1840; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_875; -extern const bool __static_condition_default_2060; -extern const bool __static_condition_default_1689; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_1629; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_1693; -extern const bool __static_condition_default_638; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_955; -extern const bool __static_condition_default_438; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_1737; -extern const bool __static_condition_default_1742; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_357; -extern const bool __static_condition_default_53; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_1112; -extern const bool __static_condition_default_1799; -extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_1625; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_894; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_2334; -extern const bool __static_condition_default_803; +extern const bool __static_condition_default_332; +extern const bool __static_condition_default_961; +extern const bool __static_condition_default_749; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_1823; +extern const bool __static_condition_default_586; +extern const bool __static_condition_default_162; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_429; +extern const bool __static_condition_default_588; +extern const bool __static_condition_default_343; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_1621; +extern const bool __static_condition_default_933; +extern const bool __static_condition_default_962; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_1839; +extern const bool __static_condition_default_1600; +extern const bool __static_condition_default_495; +extern const bool __static_condition_default_1828; +extern const bool __static_condition_default_1833; +extern const bool __static_condition_default_300; +extern const bool __static_condition_default_882; +extern const bool __static_condition_default_351; +extern const bool __static_condition_default_790; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_718; +extern const bool __static_condition_default_496; +extern const bool __static_condition_default_1209; +extern const bool __static_condition_default_556; +extern const bool __static_condition_default_225; +extern const bool __static_condition_default_898; +extern const bool __static_condition_default_474; +extern const bool __static_condition_default_482; +extern const bool __static_condition_default_733; +extern const bool __static_condition_default_595; +extern const bool __static_condition_default_969; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_1640; +extern const bool __static_condition_default_953; +extern const bool __static_condition_default_1384; +extern const bool __static_condition_default_236; +extern const bool __static_condition_default_680; extern const bool __static_condition_default_393; -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_311; -extern const bool __static_condition_default_846; -extern const bool __static_condition_default_2077; -extern const bool __static_condition_default_2340; -extern const bool __static_condition_default_963; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_444; extern const bool __static_condition_default_708; -extern const bool __static_condition_default_769; -extern const bool __static_condition_default_1665; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_2039; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_1436; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_2071; -extern const bool __static_condition_default_1716; -extern const bool __static_condition_default_693; +extern const bool __static_condition_default_794; +extern const bool __static_condition_default_470; +extern const bool __static_condition_default_254; +extern const bool __static_condition_default_1623; +extern const bool __static_condition_default_449; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_906; +extern const bool __static_condition_default_421; +extern const bool __static_condition_default_1827; +extern const bool __static_condition_default_627; +extern const bool __static_condition_default_502; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_326; +extern const bool __static_condition_default_457; +extern const bool __static_condition_default_716; +extern const bool __static_condition_default_977; +extern const bool __static_condition_default_1838; +extern const bool __static_condition_default_118; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_798; +extern const bool __static_condition_default_778; +extern const bool __static_condition_default_473; extern const bool __static_condition_default_538; -extern const bool __static_condition_default_2062; -extern const bool __static_condition_default_559; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_1341; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_419; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_259; +extern const bool __static_condition_default_1831; +extern const bool __static_condition_default_904; extern const bool __static_condition_default_883; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_333; -extern const bool __static_condition_default_536; -extern const bool __static_condition_default_891; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_1672; -extern const bool __static_condition_default_1318; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_645; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_2331; -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_386; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_1653; -extern const bool __static_condition_default_2330; -extern const bool __static_condition_default_685; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_1641; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_1093; -extern const bool __static_condition_default_1348; -extern const bool __static_condition_default_2059; -extern const bool __static_condition_default_1599; -extern const bool __static_condition_default_1342; -extern const bool __static_condition_default_2333; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_1720; -extern const bool __static_condition_default_858; -extern const bool __static_condition_default_549; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_1633; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_1377; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_747; -extern const bool __static_condition_default_1800; -extern const bool __static_condition_default_1848; -extern const bool __static_condition_default_2347; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_1708; -extern const bool __static_condition_default_1645; -extern const bool __static_condition_default_1712; -extern const bool __static_condition_default_1367; -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_1700; -extern const bool __static_condition_default_431; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_2341; -extern const bool __static_condition_default_488; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_543; -extern const bool __static_condition_default_2329; -extern const bool __static_condition_default_2342; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_646; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_590; -extern const bool __static_condition_default_887; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_1649; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_1769; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_662; +extern const bool __static_condition_default_1598; +extern const bool __static_condition_default_612; +extern const bool __static_condition_default_889; +extern const bool __static_condition_default_772; +extern const bool __static_condition_default_1210; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_624; +extern const bool __static_condition_default_672; +extern const bool __static_condition_default_706; +extern const bool __static_condition_default_931; +extern const bool __static_condition_default_1234; +extern const bool __static_condition_default_308; +extern const bool __static_condition_default_1244; +extern const bool __static_condition_default_1646; +extern const bool __static_condition_default_330; +extern const bool __static_condition_default_533; +extern const bool __static_condition_default_226; +extern const bool __static_condition_default_577; extern const bool __static_condition_default_745; -extern const bool __static_condition_default_2335; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_1449; -extern const bool __static_condition_default_521; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_929; -extern const bool __static_condition_default_367; -extern const bool __static_condition_default_388; -extern const bool __static_condition_default_907; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_1448; -extern const bool __static_condition_default_842; -extern const bool __static_condition_default_914; -extern const bool __static_condition_default_2100; -extern const bool __static_condition_default_2337; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_957; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_804; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_74; +extern const bool __static_condition_default_446; extern const bool __static_condition_default_471; -extern const bool __static_condition_default_2035; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_1704; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_1682; -extern const bool __static_condition_default_512; -extern const bool __static_condition_default_2328; -extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_412; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_1371; -extern const bool __static_condition_default_187; -extern const bool __static_condition_default_2102; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_313; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_2344; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_1836; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_1743; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_358; +extern const bool __static_condition_default_1755; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_642; +extern const bool __static_condition_default_1832; +extern const bool __static_condition_default_924; +extern const bool __static_condition_default_784; +extern const bool __static_condition_default_766; +extern const bool __static_condition_default_256; +extern const bool __static_condition_default_984; +extern const bool __static_condition_default_1016; +extern const bool __static_condition_default_349; +extern const bool __static_condition_default_459; +extern const bool __static_condition_default_1834; +extern const bool __static_condition_default_356; +extern const bool __static_condition_default_1017; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_1201; +extern const bool __static_condition_default_454; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_338; +extern const bool __static_condition_default_820; +extern const bool __static_condition_default_294; +extern const bool __static_condition_default_501; +extern const bool __static_condition_default_500; +extern const bool __static_condition_default_310; +extern const bool __static_condition_default_999; extern const bool __static_condition_default_510; -extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_2073; -extern const bool __static_condition_default_1759; -extern const bool __static_condition_default_2343; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_848; -extern const bool __static_condition_default_1686; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_1098; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_1657; -extern const bool __static_condition_default_1100; -extern const bool __static_condition_default_1675; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_753; -extern const bool __static_condition_default_2075; -extern const bool __static_condition_default_2036; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_2061; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_1679; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_1844; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_1368; -extern const bool __static_condition_default_76; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_1669; -extern const bool __static_condition_default_568; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_1852; -extern const bool __static_condition_default_1860; -extern const bool __static_condition_default_2230; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_956; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_1319; +extern const bool __static_condition_default_230; +extern const bool __static_condition_default_774; +extern const bool __static_condition_default_729; +extern const bool __static_condition_default_739; +extern const bool __static_condition_default_1824; +extern const bool __static_condition_default_508; +extern const bool __static_condition_default_575; +extern const bool __static_condition_default_1194; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_968; +extern const bool __static_condition_default_626; +extern const bool __static_condition_default_1613; +extern const bool __static_condition_default_983; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_1830; +extern const bool __static_condition_default_743; +extern const bool __static_condition_default_1021; +extern const bool __static_condition_default_451; +extern const bool __static_condition_default_917; +extern const bool __static_condition_default_318; +extern const bool __static_condition_default_870; +extern const bool __static_condition_default_603; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_735; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -431,1153 +301,757 @@ __static_renaming("____ssize_t_49", "__ssize_t"); __static_renaming("____syscall_slong_t_50", "__syscall_slong_t"); __static_renaming("____syscall_ulong_t_51", "__syscall_ulong_t"); __static_renaming("____loff_t_52", "__loff_t"); -__static_renaming("____qaddr_t_54", "__qaddr_t"); -__static_renaming("____caddr_t_55", "__caddr_t"); -__static_renaming("____intptr_t_56", "__intptr_t"); -__static_renaming("____socklen_t_57", "__socklen_t"); -__static_renaming("__FILE_59", "FILE"); -__static_renaming("____FILE_60", "__FILE"); -__static_renaming("____mbstate_t_69", "__mbstate_t"); -__static_renaming("___G_fpos_t_77", "_G_fpos_t"); -__static_renaming("___G_fpos64_t_85", "_G_fpos64_t"); -__static_renaming("____gnuc_va_list_86", "__gnuc_va_list"); -__static_renaming("___IO_lock_t_88", "_IO_lock_t"); -__static_renaming("___IO_FILE_171", "_IO_FILE"); -__static_renaming("___IO_FILE_172", "_IO_FILE"); -__static_renaming("___IO_2_1_stdin__175", "_IO_2_1_stdin_"); -__static_renaming("___IO_2_1_stdout__176", "_IO_2_1_stdout_"); -__static_renaming("___IO_2_1_stderr__177", "_IO_2_1_stderr_"); -__static_renaming("____io_read_fn_181", "__io_read_fn"); -__static_renaming("____io_write_fn_186", "__io_write_fn"); -__static_renaming("____io_seek_fn_192", "__io_seek_fn"); -__static_renaming("____io_close_fn_195", "__io_close_fn"); -__static_renaming("____underflow_196", "__underflow"); -__static_renaming("____underflow_197", "__underflow"); -__static_renaming("____uflow_199", "__uflow"); -__static_renaming("____uflow_200", "__uflow"); -__static_renaming("____overflow_202", "__overflow"); -__static_renaming("____overflow_203", "__overflow"); -__static_renaming("___IO_getc_208", "_IO_getc"); -__static_renaming("___IO_getc_209", "_IO_getc"); -__static_renaming("___IO_putc_215", "_IO_putc"); -__static_renaming("___IO_putc_216", "_IO_putc"); -__static_renaming("___IO_feof_221", "_IO_feof"); -__static_renaming("___IO_feof_222", "_IO_feof"); -__static_renaming("___IO_ferror_227", "_IO_ferror"); -__static_renaming("___IO_ferror_228", "_IO_ferror"); -__static_renaming("___IO_peekc_locked_233", "_IO_peekc_locked"); -__static_renaming("___IO_peekc_locked_234", "_IO_peekc_locked"); -__static_renaming("___IO_flockfile_236", "_IO_flockfile"); -__static_renaming("___IO_flockfile_237", "_IO_flockfile"); -__static_renaming("___IO_funlockfile_239", "_IO_funlockfile"); -__static_renaming("___IO_funlockfile_240", "_IO_funlockfile"); -__static_renaming("___IO_ftrylockfile_242", "_IO_ftrylockfile"); -__static_renaming("___IO_ftrylockfile_243", "_IO_ftrylockfile"); -__static_renaming("___IO_vfscanf_245", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_247", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_251", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_252", "_IO_vfscanf"); -__static_renaming("___IO_vfprintf_254", "_IO_vfprintf"); -__static_renaming("___IO_vfprintf_256", "_IO_vfprintf"); -__static_renaming("___IO_vfprintf_260", "_IO_vfprintf"); -__static_renaming("___IO_padn_261", "_IO_padn"); -__static_renaming("___IO_padn_262", "_IO_padn"); -__static_renaming("___IO_sgetn_265", "_IO_sgetn"); -__static_renaming("___IO_sgetn_266", "_IO_sgetn"); -__static_renaming("___IO_seekoff_268", "_IO_seekoff"); -__static_renaming("___IO_seekoff_269", "_IO_seekoff"); -__static_renaming("___IO_seekpos_272", "_IO_seekpos"); -__static_renaming("___IO_seekpos_273", "_IO_seekpos"); -__static_renaming("___IO_free_backup_area_276", "_IO_free_backup_area"); -__static_renaming("___IO_free_backup_area_277", "_IO_free_backup_area"); -__static_renaming("__va_list_279", "va_list"); -__static_renaming("__off_t_281", "off_t"); -__static_renaming("__off_t_283", "off_t"); -__static_renaming("__ssize_t_285", "ssize_t"); -__static_renaming("__fpos_t_287", "fpos_t"); -__static_renaming("__fpos_t_289", "fpos_t"); -__static_renaming("__stdin_291", "stdin"); -__static_renaming("__stdin_292", "stdin"); -__static_renaming("__stdout_294", "stdout"); -__static_renaming("__stdout_295", "stdout"); -__static_renaming("__stderr_297", "stderr"); -__static_renaming("__stderr_298", "stderr"); -__static_renaming("__remove_301", "remove"); -__static_renaming("__rename_304", "rename"); -__static_renaming("__renameat_309", "renameat"); -__static_renaming("__tmpfile_310", "tmpfile"); -__static_renaming("__tmpfile_312", "tmpfile"); -__static_renaming("__tmpfile_314", "tmpfile"); -__static_renaming("__tmpfile_316", "tmpfile"); -__static_renaming("__tmpnam_319", "tmpnam"); -__static_renaming("__tmpnam_320", "tmpnam"); -__static_renaming("__tmpnam_r_322", "tmpnam_r"); -__static_renaming("__tmpnam_r_323", "tmpnam_r"); -__static_renaming("__tempnam_326", "tempnam"); -__static_renaming("__tempnam_327", "tempnam"); -__static_renaming("__fclose_330", "fclose"); -__static_renaming("__fclose_332", "fclose"); -__static_renaming("__fflush_336", "fflush"); -__static_renaming("__fflush_unlocked_340", "fflush_unlocked"); -__static_renaming("__fopen_344", "fopen"); -__static_renaming("__fopen_346", "fopen"); -__static_renaming("__fopen_354", "fopen"); -__static_renaming("__fopen_356", "fopen"); -__static_renaming("__freopen_362", "freopen"); -__static_renaming("__freopen_364", "freopen"); -__static_renaming("__freopen_366", "freopen"); -__static_renaming("__freopen_368", "freopen"); -__static_renaming("__fdopen_372", "fdopen"); -__static_renaming("__fdopen_374", "fdopen"); -__static_renaming("__fmemopen_379", "fmemopen"); -__static_renaming("__fmemopen_381", "fmemopen"); -__static_renaming("__open_memstream_385", "open_memstream"); -__static_renaming("__open_memstream_387", "open_memstream"); -__static_renaming("__setbuf_392", "setbuf"); -__static_renaming("__setbuf_394", "setbuf"); -__static_renaming("__setvbuf_401", "setvbuf"); -__static_renaming("__setbuffer_407", "setbuffer"); -__static_renaming("__setlinebuf_411", "setlinebuf"); -__static_renaming("__fprintf_416", "fprintf"); -__static_renaming("__fprintf_418", "fprintf"); -__static_renaming("__printf_421", "printf"); -__static_renaming("__sprintf_424", "sprintf"); -__static_renaming("__vfprintf_430", "vfprintf"); -__static_renaming("__vprintf_437", "vprintf"); -__static_renaming("__vsprintf_443", "vsprintf"); -__static_renaming("__snprintf_448", "snprintf"); -__static_renaming("__vsnprintf_454", "vsnprintf"); -__static_renaming("__vdprintf_460", "vdprintf"); -__static_renaming("__dprintf_464", "dprintf"); -__static_renaming("__fscanf_468", "fscanf"); -__static_renaming("__fscanf_470", "fscanf"); -__static_renaming("__fscanf_472", "fscanf"); -__static_renaming("__fscanf_474", "fscanf"); -__static_renaming("__scanf_477", "scanf"); -__static_renaming("__scanf_478", "scanf"); -__static_renaming("__sscanf_481", "sscanf"); -__static_renaming("__vfscanf_509", "vfscanf"); -__static_renaming("__vfscanf_513", "vfscanf"); -__static_renaming("__vscanf_520", "vscanf"); -__static_renaming("__vscanf_522", "vscanf"); -__static_renaming("__vsscanf_528", "vsscanf"); -__static_renaming("__fgetc_563", "fgetc"); -__static_renaming("__getc_567", "getc"); -__static_renaming("__getchar_569", "getchar"); -__static_renaming("__getc_unlocked_572", "getc_unlocked"); -__static_renaming("__getchar_unlocked_574", "getchar_unlocked"); -__static_renaming("__fgetc_unlocked_577", "fgetc_unlocked"); -__static_renaming("__fputc_582", "fputc"); -__static_renaming("__fputc_584", "fputc"); -__static_renaming("__putc_589", "putc"); -__static_renaming("__putchar_592", "putchar"); -__static_renaming("__fputc_unlocked_596", "fputc_unlocked"); -__static_renaming("__putc_unlocked_601", "putc_unlocked"); -__static_renaming("__putchar_unlocked_604", "putchar_unlocked"); -__static_renaming("__getw_607", "getw"); -__static_renaming("__putw_612", "putw"); -__static_renaming("__fgets_618", "fgets"); -__static_renaming("__fgets_620", "fgets"); -__static_renaming("__fgets_622", "fgets"); -__static_renaming("__fgets_624", "fgets"); -__static_renaming("____getdelim_631", "__getdelim"); -__static_renaming("____getdelim_635", "__getdelim"); -__static_renaming("__getdelim_644", "getdelim"); -__static_renaming("__getdelim_648", "getdelim"); -__static_renaming("__getline_656", "getline"); -__static_renaming("__getline_660", "getline"); -__static_renaming("__fputs_667", "fputs"); -__static_renaming("__fputs_669", "fputs"); -__static_renaming("__puts_672", "puts"); -__static_renaming("__ungetc_676", "ungetc"); -__static_renaming("__fseek_714", "fseek"); -__static_renaming("__fseek_716", "fseek"); -__static_renaming("__ftell_720", "ftell"); -__static_renaming("__ftell_722", "ftell"); -__static_renaming("__rewind_726", "rewind"); -__static_renaming("__fseeko_733", "fseeko"); -__static_renaming("__fseeko_744", "fseeko"); -__static_renaming("__ftello_750", "ftello"); -__static_renaming("__ftello_754", "ftello"); -__static_renaming("__ftello_758", "ftello"); -__static_renaming("__fgetpos_766", "fgetpos"); -__static_renaming("__fgetpos_778", "fgetpos"); -__static_renaming("__fsetpos_786", "fsetpos"); -__static_renaming("__fsetpos_790", "fsetpos"); -__static_renaming("__clearerr_796", "clearerr"); -__static_renaming("__feof_800", "feof"); -__static_renaming("__feof_802", "feof"); -__static_renaming("__ferror_806", "ferror"); -__static_renaming("__ferror_808", "ferror"); -__static_renaming("__clearerr_unlocked_812", "clearerr_unlocked"); -__static_renaming("__feof_unlocked_816", "feof_unlocked"); -__static_renaming("__feof_unlocked_818", "feof_unlocked"); -__static_renaming("__ferror_unlocked_822", "ferror_unlocked"); -__static_renaming("__ferror_unlocked_824", "ferror_unlocked"); -__static_renaming("__perror_827", "perror"); -__static_renaming("__perror_828", "perror"); -__static_renaming("__sys_nerr_829", "sys_nerr"); -__static_renaming("__sys_errlist_830", "sys_errlist"); -__static_renaming("__fileno_833", "fileno"); -__static_renaming("__fileno_835", "fileno"); -__static_renaming("__fileno_unlocked_839", "fileno_unlocked"); -__static_renaming("__fileno_unlocked_841", "fileno_unlocked"); -__static_renaming("__popen_845", "popen"); -__static_renaming("__popen_847", "popen"); -__static_renaming("__pclose_851", "pclose"); -__static_renaming("__ctermid_854", "ctermid"); -__static_renaming("__flockfile_857", "flockfile"); -__static_renaming("__ftrylockfile_861", "ftrylockfile"); -__static_renaming("__ftrylockfile_863", "ftrylockfile"); -__static_renaming("__funlockfile_867", "funlockfile"); -__static_renaming("____sprintf_chk_899", "__sprintf_chk"); -__static_renaming("____vsprintf_chk_906", "__vsprintf_chk"); -__static_renaming("____snprintf_chk_920", "__snprintf_chk"); -__static_renaming("____vsnprintf_chk_928", "__vsnprintf_chk"); -__static_renaming("____fprintf_chk_943", "__fprintf_chk"); -__static_renaming("____printf_chk_947", "__printf_chk"); -__static_renaming("____vfprintf_chk_954", "__vfprintf_chk"); -__static_renaming("____vprintf_chk_962", "__vprintf_chk"); -__static_renaming("____dprintf_chk_984", "__dprintf_chk"); -__static_renaming("____vdprintf_chk_990", "__vdprintf_chk"); -__static_renaming("____fgets_chk_1004", "__fgets_chk"); -__static_renaming("____fgets_chk_1006", "__fgets_chk"); -__static_renaming("____fgets_chk_1008", "__fgets_chk"); -__static_renaming("____fgets_alias_1014", "__fgets_alias"); -__static_renaming("____fgets_chk_warn_1021", "__fgets_chk_warn"); -__static_renaming("____cnt_1087", "__cnt"); -__static_renaming("____cptr_1088", "__cptr"); -__static_renaming("__ptrdiff_t_1090", "ptrdiff_t"); -__static_renaming("__size_t_1091", "size_t"); -__static_renaming("__memmove_1105", "memmove"); -__static_renaming("__memmove_1106", "memmove"); -__static_renaming("__memset_1118", "memset"); -__static_renaming("__memset_1119", "memset"); -__static_renaming("__memset_1120", "memset"); -__static_renaming("__memset_1121", "memset"); -__static_renaming("__memcmp_1126", "memcmp"); -__static_renaming("__memcmp_1127", "memcmp"); -__static_renaming("__memchr_1132", "memchr"); -__static_renaming("__memchr_1133", "memchr"); -__static_renaming("__strcpy_1136", "strcpy"); -__static_renaming("__strncpy_1141", "strncpy"); -__static_renaming("__strncpy_1142", "strncpy"); -__static_renaming("__strcat_1145", "strcat"); -__static_renaming("__strncat_1150", "strncat"); -__static_renaming("__strncat_1151", "strncat"); -__static_renaming("__strcmp_1154", "strcmp"); -__static_renaming("__strncmp_1159", "strncmp"); -__static_renaming("__strncmp_1160", "strncmp"); -__static_renaming("__strcoll_1163", "strcoll"); -__static_renaming("__strxfrm_1168", "strxfrm"); -__static_renaming("__strxfrm_1169", "strxfrm"); -__static_renaming("____locale_t_1177", "__locale_t"); -__static_renaming("__locale_t_1178", "locale_t"); -__static_renaming("__strcoll_l_1182", "strcoll_l"); -__static_renaming("__strxfrm_l_1188", "strxfrm_l"); -__static_renaming("__strxfrm_l_1189", "strxfrm_l"); -__static_renaming("__strdup_1191", "strdup"); -__static_renaming("__strndup_1195", "strndup"); -__static_renaming("__strndup_1196", "strndup"); -__static_renaming("__strchr_1199", "strchr"); -__static_renaming("__strrchr_1202", "strrchr"); -__static_renaming("__strcspn_1205", "strcspn"); -__static_renaming("__strcspn_1206", "strcspn"); -__static_renaming("__strspn_1209", "strspn"); -__static_renaming("__strspn_1210", "strspn"); -__static_renaming("__strpbrk_1213", "strpbrk"); -__static_renaming("__strstr_1216", "strstr"); -__static_renaming("__strtok_1219", "strtok"); -__static_renaming("____strtok_r_1223", "__strtok_r"); -__static_renaming("__strtok_r_1227", "strtok_r"); -__static_renaming("__strlen_1229", "strlen"); -__static_renaming("__strlen_1230", "strlen"); -__static_renaming("__strlen_1231", "strlen"); -__static_renaming("__strlen_1232", "strlen"); -__static_renaming("__strnlen_1236", "strnlen"); -__static_renaming("__strnlen_1237", "strnlen"); -__static_renaming("__strerror_1239", "strerror"); -__static_renaming("__strerror_1240", "strerror"); -__static_renaming("__strerror_r_1245", "strerror_r"); -__static_renaming("__strerror_r_1246", "strerror_r"); -__static_renaming("__strerror_l_1249", "strerror_l"); -__static_renaming("____bzero_1253", "__bzero"); -__static_renaming("____bzero_1254", "__bzero"); -__static_renaming("____bzero_1255", "__bzero"); -__static_renaming("____bzero_1256", "__bzero"); -__static_renaming("__bcopy_1261", "bcopy"); -__static_renaming("__bcopy_1262", "bcopy"); -__static_renaming("__bzero_1266", "bzero"); -__static_renaming("__bzero_1267", "bzero"); -__static_renaming("__bcmp_1272", "bcmp"); -__static_renaming("__bcmp_1273", "bcmp"); -__static_renaming("__index_1276", "index"); -__static_renaming("__rindex_1279", "rindex"); -__static_renaming("__ffs_1281", "ffs"); -__static_renaming("__strcasecmp_1284", "strcasecmp"); -__static_renaming("__strncasecmp_1289", "strncasecmp"); -__static_renaming("__strncasecmp_1290", "strncasecmp"); -__static_renaming("__strsep_1293", "strsep"); -__static_renaming("__strsignal_1295", "strsignal"); -__static_renaming("____stpcpy_1298", "__stpcpy"); -__static_renaming("__stpcpy_1301", "stpcpy"); -__static_renaming("____stpncpy_1306", "__stpncpy"); -__static_renaming("____stpncpy_1307", "__stpncpy"); -__static_renaming("__stpncpy_1312", "stpncpy"); -__static_renaming("__stpncpy_1313", "stpncpy"); -__static_renaming("____stpncpy_chk_1355", "__stpncpy_chk"); -__static_renaming("____stpncpy_chk_1356", "__stpncpy_chk"); -__static_renaming("____stpncpy_alias_1361", "__stpncpy_alias"); -__static_renaming("____stpncpy_alias_1362", "__stpncpy_alias"); -__static_renaming("__wchar_t_1378", "wchar_t"); -__static_renaming("__idtype_t_1384", "idtype_t"); -__static_renaming("____u_char_1385", "__u_char"); -__static_renaming("____u_short_1386", "__u_short"); -__static_renaming("____u_int_1387", "__u_int"); -__static_renaming("____u_long_1388", "__u_long"); -__static_renaming("____int8_t_1389", "__int8_t"); -__static_renaming("____uint8_t_1390", "__uint8_t"); -__static_renaming("____int16_t_1391", "__int16_t"); -__static_renaming("____uint16_t_1392", "__uint16_t"); -__static_renaming("____int32_t_1393", "__int32_t"); -__static_renaming("____uint32_t_1394", "__uint32_t"); -__static_renaming("____int64_t_1395", "__int64_t"); -__static_renaming("____uint64_t_1396", "__uint64_t"); -__static_renaming("____quad_t_1397", "__quad_t"); -__static_renaming("____u_quad_t_1398", "__u_quad_t"); -__static_renaming("____dev_t_1399", "__dev_t"); -__static_renaming("____uid_t_1400", "__uid_t"); -__static_renaming("____gid_t_1401", "__gid_t"); -__static_renaming("____ino_t_1402", "__ino_t"); -__static_renaming("____ino64_t_1403", "__ino64_t"); -__static_renaming("____mode_t_1404", "__mode_t"); -__static_renaming("____nlink_t_1405", "__nlink_t"); -__static_renaming("____off_t_1406", "__off_t"); -__static_renaming("____off64_t_1407", "__off64_t"); -__static_renaming("____pid_t_1408", "__pid_t"); -__static_renaming("____fsid_t_1412", "__fsid_t"); -__static_renaming("____clock_t_1413", "__clock_t"); -__static_renaming("____rlim_t_1414", "__rlim_t"); -__static_renaming("____rlim64_t_1415", "__rlim64_t"); -__static_renaming("____id_t_1416", "__id_t"); -__static_renaming("____time_t_1417", "__time_t"); -__static_renaming("____useconds_t_1418", "__useconds_t"); -__static_renaming("____suseconds_t_1419", "__suseconds_t"); -__static_renaming("____daddr_t_1420", "__daddr_t"); -__static_renaming("____key_t_1421", "__key_t"); -__static_renaming("____clockid_t_1422", "__clockid_t"); -__static_renaming("____timer_t_1423", "__timer_t"); -__static_renaming("____blksize_t_1424", "__blksize_t"); -__static_renaming("____blkcnt_t_1425", "__blkcnt_t"); -__static_renaming("____blkcnt64_t_1426", "__blkcnt64_t"); -__static_renaming("____fsblkcnt_t_1427", "__fsblkcnt_t"); -__static_renaming("____fsblkcnt64_t_1428", "__fsblkcnt64_t"); -__static_renaming("____fsfilcnt_t_1429", "__fsfilcnt_t"); -__static_renaming("____fsfilcnt64_t_1430", "__fsfilcnt64_t"); -__static_renaming("____fsword_t_1431", "__fsword_t"); -__static_renaming("____ssize_t_1432", "__ssize_t"); -__static_renaming("____syscall_slong_t_1433", "__syscall_slong_t"); -__static_renaming("____syscall_ulong_t_1434", "__syscall_ulong_t"); -__static_renaming("____loff_t_1435", "__loff_t"); -__static_renaming("____qaddr_t_1437", "__qaddr_t"); -__static_renaming("____caddr_t_1438", "__caddr_t"); -__static_renaming("____intptr_t_1439", "__intptr_t"); -__static_renaming("____socklen_t_1440", "__socklen_t"); -__static_renaming("____bswap_32_1442", "__bswap_32"); -__static_renaming("____bswap_64_1446", "__bswap_64"); -__static_renaming("____bswap_64_1447", "__bswap_64"); -__static_renaming("____WAIT_STATUS_1469", "__WAIT_STATUS"); -__static_renaming("__div_t_1474", "div_t"); -__static_renaming("__ldiv_t_1479", "ldiv_t"); -__static_renaming("__lldiv_t_1484", "lldiv_t"); -__static_renaming("____ctype_get_mb_cur_max_1485", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1486", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1487", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1488", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1489", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1490", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1491", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1492", "__ctype_get_mb_cur_max"); -__static_renaming("__atof_1494", "atof"); -__static_renaming("__atof_1495", "atof"); -__static_renaming("__atoi_1497", "atoi"); -__static_renaming("__atoi_1498", "atoi"); -__static_renaming("__atol_1500", "atol"); -__static_renaming("__atol_1501", "atol"); -__static_renaming("__atoll_1503", "atoll"); -__static_renaming("__atoll_1504", "atoll"); -__static_renaming("__strtod_1507", "strtod"); -__static_renaming("__strtof_1510", "strtof"); -__static_renaming("__strtold_1513", "strtold"); -__static_renaming("__strtol_1517", "strtol"); -__static_renaming("__strtoul_1521", "strtoul"); -__static_renaming("__strtoq_1525", "strtoq"); -__static_renaming("__strtouq_1529", "strtouq"); -__static_renaming("__strtoll_1533", "strtoll"); -__static_renaming("__strtoll_1534", "strtoll"); -__static_renaming("__strtoull_1538", "strtoull"); -__static_renaming("__l64a_1543", "l64a"); -__static_renaming("__l64a_1544", "l64a"); -__static_renaming("__a64l_1546", "a64l"); -__static_renaming("__a64l_1547", "a64l"); -__static_renaming("____u_char_1548", "__u_char"); -__static_renaming("____u_short_1549", "__u_short"); -__static_renaming("____u_int_1550", "__u_int"); -__static_renaming("____u_long_1551", "__u_long"); -__static_renaming("____int8_t_1552", "__int8_t"); -__static_renaming("____uint8_t_1553", "__uint8_t"); -__static_renaming("____int16_t_1554", "__int16_t"); -__static_renaming("____uint16_t_1555", "__uint16_t"); -__static_renaming("____int32_t_1556", "__int32_t"); -__static_renaming("____uint32_t_1557", "__uint32_t"); -__static_renaming("____int64_t_1558", "__int64_t"); -__static_renaming("____uint64_t_1559", "__uint64_t"); -__static_renaming("____quad_t_1560", "__quad_t"); -__static_renaming("____u_quad_t_1561", "__u_quad_t"); -__static_renaming("____dev_t_1562", "__dev_t"); -__static_renaming("____uid_t_1563", "__uid_t"); -__static_renaming("____gid_t_1564", "__gid_t"); -__static_renaming("____ino_t_1565", "__ino_t"); -__static_renaming("____ino64_t_1566", "__ino64_t"); -__static_renaming("____mode_t_1567", "__mode_t"); -__static_renaming("____nlink_t_1568", "__nlink_t"); -__static_renaming("____off_t_1569", "__off_t"); -__static_renaming("____off64_t_1570", "__off64_t"); -__static_renaming("____pid_t_1571", "__pid_t"); -__static_renaming("____fsid_t_1575", "__fsid_t"); -__static_renaming("____clock_t_1576", "__clock_t"); -__static_renaming("____rlim_t_1577", "__rlim_t"); -__static_renaming("____rlim64_t_1578", "__rlim64_t"); -__static_renaming("____id_t_1579", "__id_t"); -__static_renaming("____time_t_1580", "__time_t"); -__static_renaming("____useconds_t_1581", "__useconds_t"); -__static_renaming("____suseconds_t_1582", "__suseconds_t"); -__static_renaming("____daddr_t_1583", "__daddr_t"); -__static_renaming("____key_t_1584", "__key_t"); -__static_renaming("____clockid_t_1585", "__clockid_t"); -__static_renaming("____timer_t_1586", "__timer_t"); -__static_renaming("____blksize_t_1587", "__blksize_t"); -__static_renaming("____blkcnt_t_1588", "__blkcnt_t"); -__static_renaming("____blkcnt64_t_1589", "__blkcnt64_t"); -__static_renaming("____fsblkcnt_t_1590", "__fsblkcnt_t"); -__static_renaming("____fsblkcnt64_t_1591", "__fsblkcnt64_t"); -__static_renaming("____fsfilcnt_t_1592", "__fsfilcnt_t"); -__static_renaming("____fsfilcnt64_t_1593", "__fsfilcnt64_t"); -__static_renaming("____fsword_t_1594", "__fsword_t"); -__static_renaming("____ssize_t_1595", "__ssize_t"); -__static_renaming("____syscall_slong_t_1596", "__syscall_slong_t"); -__static_renaming("____syscall_ulong_t_1597", "__syscall_ulong_t"); -__static_renaming("____loff_t_1598", "__loff_t"); -__static_renaming("____qaddr_t_1600", "__qaddr_t"); -__static_renaming("____caddr_t_1601", "__caddr_t"); -__static_renaming("____intptr_t_1602", "__intptr_t"); -__static_renaming("____socklen_t_1603", "__socklen_t"); -__static_renaming("__u_char_1604", "u_char"); -__static_renaming("__u_char_1605", "u_char"); -__static_renaming("__u_char_1606", "u_char"); -__static_renaming("__u_short_1607", "u_short"); -__static_renaming("__u_short_1608", "u_short"); -__static_renaming("__u_short_1609", "u_short"); -__static_renaming("__u_int_1610", "u_int"); -__static_renaming("__u_int_1611", "u_int"); -__static_renaming("__u_int_1612", "u_int"); -__static_renaming("__u_long_1613", "u_long"); -__static_renaming("__u_long_1614", "u_long"); -__static_renaming("__u_long_1615", "u_long"); -__static_renaming("__quad_t_1616", "quad_t"); -__static_renaming("__quad_t_1617", "quad_t"); -__static_renaming("__quad_t_1618", "quad_t"); -__static_renaming("__u_quad_t_1619", "u_quad_t"); -__static_renaming("__u_quad_t_1620", "u_quad_t"); -__static_renaming("__u_quad_t_1621", "u_quad_t"); -__static_renaming("__fsid_t_1622", "fsid_t"); -__static_renaming("__fsid_t_1623", "fsid_t"); -__static_renaming("__fsid_t_1624", "fsid_t"); -__static_renaming("__loff_t_1626", "loff_t"); -__static_renaming("__loff_t_1627", "loff_t"); -__static_renaming("__loff_t_1628", "loff_t"); -__static_renaming("__loff_t_1630", "loff_t"); -__static_renaming("__loff_t_1631", "loff_t"); -__static_renaming("__loff_t_1632", "loff_t"); -__static_renaming("__ino_t_1634", "ino_t"); -__static_renaming("__ino_t_1635", "ino_t"); -__static_renaming("__ino_t_1636", "ino_t"); -__static_renaming("__ino_t_1638", "ino_t"); -__static_renaming("__ino_t_1639", "ino_t"); -__static_renaming("__ino_t_1640", "ino_t"); -__static_renaming("__dev_t_1642", "dev_t"); -__static_renaming("__dev_t_1643", "dev_t"); -__static_renaming("__dev_t_1644", "dev_t"); -__static_renaming("__gid_t_1646", "gid_t"); -__static_renaming("__gid_t_1647", "gid_t"); -__static_renaming("__gid_t_1648", "gid_t"); -__static_renaming("__gid_t_1650", "gid_t"); -__static_renaming("__gid_t_1651", "gid_t"); -__static_renaming("__gid_t_1652", "gid_t"); -__static_renaming("__mode_t_1654", "mode_t"); -__static_renaming("__mode_t_1655", "mode_t"); -__static_renaming("__mode_t_1656", "mode_t"); -__static_renaming("__nlink_t_1658", "nlink_t"); -__static_renaming("__nlink_t_1659", "nlink_t"); -__static_renaming("__nlink_t_1660", "nlink_t"); -__static_renaming("__uid_t_1662", "uid_t"); -__static_renaming("__uid_t_1663", "uid_t"); -__static_renaming("__uid_t_1664", "uid_t"); -__static_renaming("__uid_t_1666", "uid_t"); -__static_renaming("__uid_t_1667", "uid_t"); -__static_renaming("__uid_t_1668", "uid_t"); -__static_renaming("__off_t_1670", "off_t"); -__static_renaming("__off_t_1671", "off_t"); -__static_renaming("__off_t_1673", "off_t"); -__static_renaming("__off_t_1674", "off_t"); -__static_renaming("__pid_t_1676", "pid_t"); -__static_renaming("__pid_t_1677", "pid_t"); -__static_renaming("__pid_t_1678", "pid_t"); -__static_renaming("__pid_t_1680", "pid_t"); -__static_renaming("__pid_t_1681", "pid_t"); -__static_renaming("__id_t_1683", "id_t"); -__static_renaming("__id_t_1684", "id_t"); -__static_renaming("__id_t_1685", "id_t"); -__static_renaming("__ssize_t_1687", "ssize_t"); -__static_renaming("__ssize_t_1688", "ssize_t"); -__static_renaming("__daddr_t_1690", "daddr_t"); -__static_renaming("__daddr_t_1691", "daddr_t"); -__static_renaming("__daddr_t_1692", "daddr_t"); -__static_renaming("__caddr_t_1694", "caddr_t"); -__static_renaming("__caddr_t_1695", "caddr_t"); -__static_renaming("__caddr_t_1696", "caddr_t"); -__static_renaming("__key_t_1697", "key_t"); -__static_renaming("__key_t_1698", "key_t"); -__static_renaming("__key_t_1699", "key_t"); -__static_renaming("__key_t_1701", "key_t"); -__static_renaming("__key_t_1702", "key_t"); -__static_renaming("__key_t_1703", "key_t"); -__static_renaming("__clock_t_1705", "clock_t"); -__static_renaming("__clock_t_1706", "clock_t"); -__static_renaming("__clock_t_1707", "clock_t"); -__static_renaming("__time_t_1709", "time_t"); -__static_renaming("__time_t_1710", "time_t"); -__static_renaming("__time_t_1711", "time_t"); -__static_renaming("__clockid_t_1713", "clockid_t"); -__static_renaming("__clockid_t_1714", "clockid_t"); -__static_renaming("__clockid_t_1715", "clockid_t"); -__static_renaming("__timer_t_1717", "timer_t"); -__static_renaming("__timer_t_1718", "timer_t"); -__static_renaming("__timer_t_1719", "timer_t"); -__static_renaming("__ulong_1721", "ulong"); -__static_renaming("__ulong_1722", "ulong"); -__static_renaming("__ulong_1723", "ulong"); -__static_renaming("__ushort_1724", "ushort"); -__static_renaming("__uint_1725", "uint"); -__static_renaming("__int8_t_1726", "int8_t"); -__static_renaming("__int16_t_1727", "int16_t"); -__static_renaming("__int32_t_1728", "int32_t"); -__static_renaming("__int64_t_1729", "int64_t"); -__static_renaming("__u_int8_t_1730", "u_int8_t"); -__static_renaming("__u_int16_t_1731", "u_int16_t"); -__static_renaming("__u_int32_t_1732", "u_int32_t"); -__static_renaming("__u_int64_t_1733", "u_int64_t"); -__static_renaming("__register_t_1734", "register_t"); -__static_renaming("____bswap_32_1736", "__bswap_32"); -__static_renaming("____bswap_64_1740", "__bswap_64"); -__static_renaming("____bswap_64_1741", "__bswap_64"); -__static_renaming("____sig_atomic_t_1744", "__sig_atomic_t"); -__static_renaming("____sigset_t_1748", "__sigset_t"); -__static_renaming("__sigset_t_1749", "sigset_t"); -__static_renaming("__suseconds_t_1770", "suseconds_t"); -__static_renaming("__suseconds_t_1771", "suseconds_t"); -__static_renaming("__suseconds_t_1772", "suseconds_t"); -__static_renaming("____fd_mask_1774", "__fd_mask"); -__static_renaming("____fd_mask_1775", "__fd_mask"); -__static_renaming("__fd_set_1783", "fd_set"); -__static_renaming("__fd_mask_1784", "fd_mask"); -__static_renaming("__fd_mask_1785", "fd_mask"); -__static_renaming("__select_1797", "select"); -__static_renaming("__select_1798", "select"); -__static_renaming("__pselect_1813", "pselect"); -__static_renaming("__pselect_1814", "pselect"); -__static_renaming("____fdelt_chk_1818", "__fdelt_chk"); -__static_renaming("____fdelt_warn_1820", "__fdelt_warn"); -__static_renaming("__gnu_dev_major_1822", "gnu_dev_major"); -__static_renaming("__gnu_dev_major_1823", "gnu_dev_major"); -__static_renaming("__gnu_dev_minor_1825", "gnu_dev_minor"); -__static_renaming("__gnu_dev_makedev_1828", "gnu_dev_makedev"); -__static_renaming("__blksize_t_1833", "blksize_t"); -__static_renaming("__blksize_t_1834", "blksize_t"); -__static_renaming("__blksize_t_1835", "blksize_t"); -__static_renaming("__blkcnt_t_1837", "blkcnt_t"); -__static_renaming("__blkcnt_t_1838", "blkcnt_t"); -__static_renaming("__blkcnt_t_1839", "blkcnt_t"); -__static_renaming("__fsblkcnt_t_1841", "fsblkcnt_t"); -__static_renaming("__fsblkcnt_t_1842", "fsblkcnt_t"); -__static_renaming("__fsblkcnt_t_1843", "fsblkcnt_t"); -__static_renaming("__blkcnt_t_1845", "blkcnt_t"); -__static_renaming("__blkcnt_t_1846", "blkcnt_t"); -__static_renaming("__blkcnt_t_1847", "blkcnt_t"); -__static_renaming("__fsblkcnt_t_1849", "fsblkcnt_t"); -__static_renaming("__fsblkcnt_t_1850", "fsblkcnt_t"); -__static_renaming("__fsblkcnt_t_1851", "fsblkcnt_t"); -__static_renaming("__fsfilcnt_t_1853", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_1854", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_1855", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_1857", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_1858", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_1859", "fsfilcnt_t"); -__static_renaming("__pthread_t_1861", "pthread_t"); -__static_renaming("__pthread_attr_t_1865", "pthread_attr_t"); -__static_renaming("____pthread_list_t_1870", "__pthread_list_t"); -__static_renaming("____pthread_list_t_1871", "__pthread_list_t"); -__static_renaming("__pthread_mutex_t_1887", "pthread_mutex_t"); -__static_renaming("__pthread_mutexattr_t_1892", "pthread_mutexattr_t"); -__static_renaming("__rand_1893", "rand"); -__static_renaming("__srand_1895", "srand"); -__static_renaming("__rand_r_1897", "rand_r"); -__static_renaming("__drand48_1898", "drand48"); -__static_renaming("__erand48_1900", "erand48"); -__static_renaming("__lrand48_1901", "lrand48"); -__static_renaming("__nrand48_1903", "nrand48"); -__static_renaming("__mrand48_1904", "mrand48"); -__static_renaming("__jrand48_1906", "jrand48"); -__static_renaming("__srand48_1908", "srand48"); -__static_renaming("__seed48_1910", "seed48"); -__static_renaming("__lcong48_1912", "lcong48"); -__static_renaming("__malloc_1915", "malloc"); -__static_renaming("__malloc_1916", "malloc"); -__static_renaming("__malloc_1917", "malloc"); -__static_renaming("__malloc_1918", "malloc"); -__static_renaming("__calloc_1923", "calloc"); -__static_renaming("__calloc_1924", "calloc"); -__static_renaming("__calloc_1925", "calloc"); -__static_renaming("__calloc_1926", "calloc"); -__static_renaming("__realloc_1930", "realloc"); -__static_renaming("__realloc_1931", "realloc"); -__static_renaming("__realloc_1932", "realloc"); -__static_renaming("__realloc_1933", "realloc"); -__static_renaming("__free_1935", "free"); -__static_renaming("__cfree_1937", "cfree"); -__static_renaming("__alloca_1940", "alloca"); -__static_renaming("__alloca_1941", "alloca"); -__static_renaming("__valloc_1944", "valloc"); -__static_renaming("__valloc_1945", "valloc"); -__static_renaming("__valloc_1946", "valloc"); -__static_renaming("__valloc_1947", "valloc"); -__static_renaming("__posix_memalign_1953", "posix_memalign"); -__static_renaming("__posix_memalign_1954", "posix_memalign"); -__static_renaming("__posix_memalign_1955", "posix_memalign"); -__static_renaming("__posix_memalign_1956", "posix_memalign"); -__static_renaming("__aligned_alloc_1961", "aligned_alloc"); -__static_renaming("__aligned_alloc_1962", "aligned_alloc"); -__static_renaming("__aligned_alloc_1963", "aligned_alloc"); -__static_renaming("__aligned_alloc_1964", "aligned_alloc"); -__static_renaming("__aligned_alloc_1965", "aligned_alloc"); -__static_renaming("__aligned_alloc_1966", "aligned_alloc"); -__static_renaming("__aligned_alloc_1967", "aligned_alloc"); -__static_renaming("__aligned_alloc_1968", "aligned_alloc"); -__static_renaming("__abort_1969", "abort"); -__static_renaming("__atexit_1971", "atexit"); -__static_renaming("__at_quick_exit_1973", "at_quick_exit"); -__static_renaming("__on_exit_1978", "on_exit"); -__static_renaming("__exit_1980", "exit"); -__static_renaming("__exit_1981", "exit"); -__static_renaming("__quick_exit_1983", "quick_exit"); -__static_renaming("___Exit_1985", "_Exit"); -__static_renaming("__getenv_1987", "getenv"); -__static_renaming("__getenv_1988", "getenv"); -__static_renaming("__putenv_1990", "putenv"); -__static_renaming("__setenv_1994", "setenv"); -__static_renaming("__unsetenv_1996", "unsetenv"); -__static_renaming("__clearenv_1997", "clearenv"); -__static_renaming("__mktemp_1999", "mktemp"); -__static_renaming("__mkstemp_2002", "mkstemp"); -__static_renaming("__mkstemp_2003", "mkstemp"); -__static_renaming("__mkstemp_2004", "mkstemp"); -__static_renaming("__mkstemp_2005", "mkstemp"); -__static_renaming("__mkstemps_2010", "mkstemps"); -__static_renaming("__mkstemps_2011", "mkstemps"); -__static_renaming("__mkstemps_2012", "mkstemps"); -__static_renaming("__mkstemps_2013", "mkstemps"); -__static_renaming("__mkdtemp_2015", "mkdtemp"); -__static_renaming("__mkdtemp_2016", "mkdtemp"); -__static_renaming("__system_2018", "system"); -__static_renaming("__system_2019", "system"); -__static_renaming("__system_2020", "system"); -__static_renaming("__system_2021", "system"); -__static_renaming("__realpath_2024", "realpath"); -__static_renaming("__realpath_2025", "realpath"); -__static_renaming("____compar_fn_t_2026", "__compar_fn_t"); -__static_renaming("__bsearch_2037", "bsearch"); -__static_renaming("__bsearch_2038", "bsearch"); -__static_renaming("__bsearch_2041", "bsearch"); -__static_renaming("__bsearch_2042", "bsearch"); -__static_renaming("____l_2051", "__l"); -__static_renaming("____l_2052", "__l"); -__static_renaming("____u_2053", "__u"); -__static_renaming("____u_2054", "__u"); -__static_renaming("____idx_2055", "__idx"); -__static_renaming("____idx_2056", "__idx"); -__static_renaming("____p_2057", "__p"); -__static_renaming("____comparison_2058", "__comparison"); -__static_renaming("__qsort_2070", "qsort"); -__static_renaming("__qsort_2072", "qsort"); -__static_renaming("__qsort_2074", "qsort"); -__static_renaming("__qsort_2076", "qsort"); -__static_renaming("__abs_2079", "abs"); -__static_renaming("__abs_2080", "abs"); -__static_renaming("__labs_2082", "labs"); -__static_renaming("__labs_2083", "labs"); -__static_renaming("__llabs_2085", "llabs"); -__static_renaming("__llabs_2086", "llabs"); -__static_renaming("__div_2089", "div"); -__static_renaming("__div_2090", "div"); -__static_renaming("__ldiv_2093", "ldiv"); -__static_renaming("__ldiv_2095", "ldiv"); -__static_renaming("__lldiv_2099", "lldiv"); -__static_renaming("__lldiv_2101", "lldiv"); -__static_renaming("__ecvt_2107", "ecvt"); -__static_renaming("__ecvt_2108", "ecvt"); -__static_renaming("__fcvt_2113", "fcvt"); -__static_renaming("__fcvt_2114", "fcvt"); -__static_renaming("__gcvt_2118", "gcvt"); -__static_renaming("__gcvt_2119", "gcvt"); -__static_renaming("__qecvt_2124", "qecvt"); -__static_renaming("__qecvt_2125", "qecvt"); -__static_renaming("__qfcvt_2130", "qfcvt"); -__static_renaming("__qfcvt_2131", "qfcvt"); -__static_renaming("__qgcvt_2135", "qgcvt"); -__static_renaming("__qgcvt_2136", "qgcvt"); -__static_renaming("__ecvt_r_2144", "ecvt_r"); -__static_renaming("__ecvt_r_2145", "ecvt_r"); -__static_renaming("__fcvt_r_2153", "fcvt_r"); -__static_renaming("__fcvt_r_2154", "fcvt_r"); -__static_renaming("__qecvt_r_2162", "qecvt_r"); -__static_renaming("__qecvt_r_2163", "qecvt_r"); -__static_renaming("__qfcvt_r_2171", "qfcvt_r"); -__static_renaming("__qfcvt_r_2172", "qfcvt_r"); -__static_renaming("__mblen_2176", "mblen"); -__static_renaming("__mblen_2177", "mblen"); -__static_renaming("__mblen_2178", "mblen"); -__static_renaming("__mblen_2179", "mblen"); -__static_renaming("__mbtowc_2184", "mbtowc"); -__static_renaming("__mbtowc_2185", "mbtowc"); -__static_renaming("__wctomb_2188", "wctomb"); -__static_renaming("__mbstowcs_2193", "mbstowcs"); -__static_renaming("__mbstowcs_2194", "mbstowcs"); -__static_renaming("__wcstombs_2199", "wcstombs"); -__static_renaming("__wcstombs_2200", "wcstombs"); -__static_renaming("__rpmatch_2202", "rpmatch"); -__static_renaming("__rpmatch_2203", "rpmatch"); -__static_renaming("__getsubopt_2207", "getsubopt"); -__static_renaming("__getsubopt_2208", "getsubopt"); -__static_renaming("__getloadavg_2211", "getloadavg"); -__static_renaming("____realpath_chk_2217", "__realpath_chk"); -__static_renaming("____realpath_chk_2218", "__realpath_chk"); -__static_renaming("____realpath_alias_2221", "__realpath_alias"); -__static_renaming("____realpath_chk_warn_2226", "__realpath_chk_warn"); -__static_renaming("____realpath_chk_warn_2227", "__realpath_chk_warn"); -__static_renaming("____ptsname_r_chk_2237", "__ptsname_r_chk"); -__static_renaming("____ptsname_r_chk_2238", "__ptsname_r_chk"); -__static_renaming("____ptsname_r_alias_2243", "__ptsname_r_alias"); -__static_renaming("____ptsname_r_alias_2244", "__ptsname_r_alias"); -__static_renaming("____ptsname_r_chk_warn_2251", "__ptsname_r_chk_warn"); -__static_renaming("____ptsname_r_chk_warn_2252", "__ptsname_r_chk_warn"); -__static_renaming("____wctomb_chk_2263", "__wctomb_chk"); -__static_renaming("____wctomb_chk_2264", "__wctomb_chk"); -__static_renaming("____wctomb_alias_2267", "__wctomb_alias"); -__static_renaming("____mbstowcs_chk_2276", "__mbstowcs_chk"); -__static_renaming("____mbstowcs_chk_2277", "__mbstowcs_chk"); -__static_renaming("____mbstowcs_alias_2282", "__mbstowcs_alias"); -__static_renaming("____mbstowcs_alias_2283", "__mbstowcs_alias"); -__static_renaming("____mbstowcs_chk_warn_2290", "__mbstowcs_chk_warn"); -__static_renaming("____mbstowcs_chk_warn_2291", "__mbstowcs_chk_warn"); -__static_renaming("____wcstombs_chk_2302", "__wcstombs_chk"); -__static_renaming("____wcstombs_chk_2303", "__wcstombs_chk"); -__static_renaming("____wcstombs_alias_2308", "__wcstombs_alias"); -__static_renaming("____wcstombs_alias_2309", "__wcstombs_alias"); -__static_renaming("____wcstombs_chk_warn_2316", "__wcstombs_chk_warn"); -__static_renaming("____wcstombs_chk_warn_2317", "__wcstombs_chk_warn"); -__static_renaming("__c_2322", "c"); -__static_renaming("__flags_2323", "flags"); -__static_renaming("__main_2324", "main"); -__static_renaming("__main_2325", "main"); -__static_renaming("__main_2326", "main"); -__static_renaming("__main_2327", "main"); - -__static_condition_renaming("__static_condition_default_53", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_76", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_84", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_123", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_169", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_170", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_173", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_182", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_187", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_193", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_198", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_201", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_204", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_210", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_217", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_223", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_229", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_235", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_238", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_241", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_244", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_246", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_248", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_249", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_250", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_253", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_255", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_257", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_258", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_259", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_263", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_264", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_267", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_270", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_271", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_274", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_275", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_278", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_280", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); -__static_condition_renaming("__static_condition_default_282", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_284", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_286", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_288", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_290", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_293", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_296", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_299", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_311", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_313", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_315", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_317", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_331", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_333", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_337", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_341", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_345", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_347", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_355", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_357", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_363", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_365", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_367", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_369", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_373", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_375", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_380", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_382", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_386", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_388", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_393", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_395", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_402", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_408", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_412", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_417", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_419", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_431", "!(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_432", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_433", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_438", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_444", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_455", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_461", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_469", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_471", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_473", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_475", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_486", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_488", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_489", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_491", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_493", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_494", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_497", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_499", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_503", "!(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_510", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_511", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_512", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_514", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_515", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_516", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_521", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_523", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_529", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_536", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_537", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_538", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_539", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_541", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_542", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_543", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_544", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_549", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_550", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_552", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_553", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_559", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_560", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_564", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_568", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_573", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_578", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_583", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_585", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_590", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_597", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_602", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_608", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_613", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_619", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_621", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_623", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_625", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_632", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_633", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_634", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_636", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_637", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_638", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_645", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_646", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_647", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_649", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_650", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_651", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_657", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_658", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_659", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_661", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_662", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_663", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_668", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_670", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_677", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_683", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_684", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_685", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_686", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_692", "!(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_693", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_699", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_700", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_701", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_702", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_708", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_709", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_715", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_717", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_721", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_723", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_727", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_734", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_735", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_736", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_745", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_746", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_747", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_751", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_752", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_753", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_755", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_756", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_757", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_759", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_760", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_761", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_767", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_768", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_769", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_779", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_780", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_781", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_787", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_788", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_789", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_791", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_792", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_793", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_797", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_801", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_803", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_807", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_809", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_813", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_817", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_819", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_823", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_825", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_834", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_836", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_840", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_842", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_846", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_848", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_852", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_858", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_862", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_864", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_868", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_872", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_875", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_878", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_883", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_887", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_891", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_894", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_907", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_914", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_929", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_938", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_944", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_955", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_956", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_957", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_963", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_967", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_972", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_978", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_979", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_980", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_991", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_998", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1005", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1007", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1009", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1015", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1022", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1027", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1028", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1035", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1036", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1042", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1043", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1050", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1051", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1057", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1058", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1065", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1066", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1072", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1073", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1080", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1081", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1089", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_1092", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1093", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1098", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) || !(defined __need___FILE) && (defined __STRICT_ANSI__)"); -__static_condition_renaming("__static_condition_default_1099", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1100", "(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_1112", "!(defined __need___FILE) && !(defined __STRICT_ANSI__)"); -__static_condition_renaming("__static_condition_default_1113", "(defined __need___FILE) && !(defined __STRICT_ANSI__)"); -__static_condition_renaming("__static_condition_default_1318", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1319", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1324", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1325", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1330", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1331", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1341", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1342", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1347", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1348", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1367", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1368", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1371", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1376", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1377", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1436", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1443", "!(defined __STRICT_ANSI__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1448", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1449", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1599", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1625", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __u_char_defined)"); -__static_condition_renaming("__static_condition_default_1629", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __u_char_defined)"); -__static_condition_renaming("__static_condition_default_1633", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __u_char_defined)"); -__static_condition_renaming("__static_condition_default_1637", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined)"); -__static_condition_renaming("__static_condition_default_1641", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined)"); -__static_condition_renaming("__static_condition_default_1645", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_1649", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_1653", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_1657", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1661", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __nlink_t_defined)"); -__static_condition_renaming("__static_condition_default_1665", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __nlink_t_defined)"); -__static_condition_renaming("__static_condition_default_1669", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __nlink_t_defined)"); -__static_condition_renaming("__static_condition_default_1672", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1675", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1679", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && (defined __off_t_defined) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1682", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1686", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __id_t_defined)"); -__static_condition_renaming("__static_condition_default_1689", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1693", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_1700", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_1704", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_1708", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __clock_t_defined)"); -__static_condition_renaming("__static_condition_default_1712", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __time_t_defined)"); -__static_condition_renaming("__static_condition_default_1716", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __clockid_t_defined)"); -__static_condition_renaming("__static_condition_default_1720", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timer_t_defined)"); -__static_condition_renaming("__static_condition_default_1737", "!(defined __STRICT_ANSI__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1742", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1743", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1759", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_1769", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_1773", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __suseconds_t_defined)"); -__static_condition_renaming("__static_condition_default_1782", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1799", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_1800", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_1815", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_1816", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_1836", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blksize_t_defined)"); -__static_condition_renaming("__static_condition_default_1840", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined)"); -__static_condition_renaming("__static_condition_default_1844", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1848", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined)"); -__static_condition_renaming("__static_condition_default_1852", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1856", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1860", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_2035", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_2036", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_2039", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_2040", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_2059", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_2060", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_2061", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_2062", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_2071", "!(defined __need___FILE) && !(defined __USE_EXTERN_INLINES) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_2073", "(defined __need___FILE) && !(defined __USE_EXTERN_INLINES) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_2075", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_2077", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_2094", "!(defined _FORTIFY_SOURCE) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_2096", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_2100", "!(defined _FORTIFY_SOURCE) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_2102", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_2230", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_2328", "!(defined _FORTIFY_SOURCE) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_2329", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_2330", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_2331", "!(defined _FORTIFY_SOURCE) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined OS2) && (defined NEED_ENHANCED_ESCAPES) || !(defined _FORTIFY_SOURCE) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined OS2) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined OS2) && (defined NEED_ENHANCED_ESCAPES) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined OS2) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined OS2) && (defined NEED_ENHANCED_ESCAPES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined OS2) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined OS2) && (defined NEED_ENHANCED_ESCAPES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined OS2)"); -__static_condition_renaming("__static_condition_default_2332", "!(defined _FORTIFY_SOURCE) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined OS2) && !(defined NEED_ENHANCED_ESCAPES) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined OS2) && !(defined NEED_ENHANCED_ESCAPES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined OS2) && !(defined NEED_ENHANCED_ESCAPES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined OS2) && !(defined NEED_ENHANCED_ESCAPES)"); -__static_condition_renaming("__static_condition_default_2333", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_2334", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_2335", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_2336", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined OS2) && (defined NEED_ENHANCED_ESCAPES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined OS2)"); -__static_condition_renaming("__static_condition_default_2337", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined OS2) && !(defined NEED_ENHANCED_ESCAPES)"); -__static_condition_renaming("__static_condition_default_2338", "!(defined CROSS_COMPILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined)"); -__static_condition_renaming("__static_condition_default_2339", "!(defined __need___FILE) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined)"); -__static_condition_renaming("__static_condition_default_2340", "(defined __need___FILE) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined)"); -__static_condition_renaming("__static_condition_default_2341", "!(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined OS2) && (defined NEED_ENHANCED_ESCAPES) || !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined OS2)"); -__static_condition_renaming("__static_condition_default_2342", "!(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined OS2) && !(defined NEED_ENHANCED_ESCAPES)"); -__static_condition_renaming("__static_condition_default_2343", "!(defined CROSS_COMPILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) || !(defined CROSS_COMPILE) && (defined _STDLIB_H) || (defined CROSS_COMPILE)"); -__static_condition_renaming("__static_condition_default_2344", "!(defined __need___FILE) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) || !(defined __need___FILE) && !(defined CROSS_COMPILE) && (defined _STDLIB_H) || !(defined __need___FILE) && (defined CROSS_COMPILE)"); -__static_condition_renaming("__static_condition_default_2345", "(defined __need___FILE) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) || (defined __need___FILE) && !(defined CROSS_COMPILE) && (defined _STDLIB_H) || (defined __need___FILE) && (defined CROSS_COMPILE)"); -__static_condition_renaming("__static_condition_default_2346", "!(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined OS2) && (defined NEED_ENHANCED_ESCAPES) || !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined OS2) || !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && !(defined CROSS_COMPILE) && (defined _STDLIB_H) && !(defined OS2) && (defined NEED_ENHANCED_ESCAPES) || !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && !(defined CROSS_COMPILE) && (defined _STDLIB_H) && (defined OS2) || !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined CROSS_COMPILE) && (defined NEED_ENHANCED_ESCAPES)"); -__static_condition_renaming("__static_condition_default_2347", "!(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined OS2) && !(defined NEED_ENHANCED_ESCAPES) || !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && !(defined CROSS_COMPILE) && (defined _STDLIB_H) && !(defined OS2) && !(defined NEED_ENHANCED_ESCAPES) || !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined CROSS_COMPILE) && !(defined NEED_ENHANCED_ESCAPES)"); -__static_condition_renaming("__static_condition_default_2348", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO)"); - -if (__static_condition_default_2348) -{ +__static_renaming("____qaddr_t_53", "__qaddr_t"); +__static_renaming("____caddr_t_54", "__caddr_t"); +__static_renaming("____intptr_t_55", "__intptr_t"); +__static_renaming("____socklen_t_56", "__socklen_t"); +__static_renaming("__FILE_58", "FILE"); +__static_renaming("____FILE_59", "__FILE"); +__static_renaming("____mbstate_t_68", "__mbstate_t"); +__static_renaming("___G_fpos_t_75", "_G_fpos_t"); +__static_renaming("___G_fpos64_t_81", "_G_fpos64_t"); +__static_renaming("____gnuc_va_list_82", "__gnuc_va_list"); +__static_renaming("___IO_lock_t_84", "_IO_lock_t"); +__static_renaming("___IO_FILE_163", "_IO_FILE"); +__static_renaming("___IO_FILE_164", "_IO_FILE"); +__static_renaming("___IO_2_1_stdin__167", "_IO_2_1_stdin_"); +__static_renaming("___IO_2_1_stdout__168", "_IO_2_1_stdout_"); +__static_renaming("___IO_2_1_stderr__169", "_IO_2_1_stderr_"); +__static_renaming("____io_read_fn_173", "__io_read_fn"); +__static_renaming("____io_write_fn_177", "__io_write_fn"); +__static_renaming("____io_seek_fn_181", "__io_seek_fn"); +__static_renaming("____io_close_fn_183", "__io_close_fn"); +__static_renaming("____underflow_184", "__underflow"); +__static_renaming("____underflow_185", "__underflow"); +__static_renaming("____uflow_186", "__uflow"); +__static_renaming("____uflow_187", "__uflow"); +__static_renaming("____overflow_188", "__overflow"); +__static_renaming("____overflow_189", "__overflow"); +__static_renaming("___IO_getc_193", "_IO_getc"); +__static_renaming("___IO_getc_194", "_IO_getc"); +__static_renaming("___IO_putc_199", "_IO_putc"); +__static_renaming("___IO_putc_200", "_IO_putc"); +__static_renaming("___IO_feof_204", "_IO_feof"); +__static_renaming("___IO_feof_205", "_IO_feof"); +__static_renaming("___IO_ferror_209", "_IO_ferror"); +__static_renaming("___IO_ferror_210", "_IO_ferror"); +__static_renaming("___IO_peekc_locked_214", "_IO_peekc_locked"); +__static_renaming("___IO_peekc_locked_215", "_IO_peekc_locked"); +__static_renaming("___IO_flockfile_216", "_IO_flockfile"); +__static_renaming("___IO_flockfile_217", "_IO_flockfile"); +__static_renaming("___IO_funlockfile_218", "_IO_funlockfile"); +__static_renaming("___IO_funlockfile_219", "_IO_funlockfile"); +__static_renaming("___IO_ftrylockfile_220", "_IO_ftrylockfile"); +__static_renaming("___IO_ftrylockfile_221", "_IO_ftrylockfile"); +__static_renaming("___IO_vfscanf_222", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_224", "_IO_vfscanf"); +__static_renaming("___IO_vfprintf_231", "_IO_vfprintf"); +__static_renaming("___IO_vfprintf_233", "_IO_vfprintf"); +__static_renaming("___IO_padn_238", "_IO_padn"); +__static_renaming("___IO_padn_239", "_IO_padn"); +__static_renaming("___IO_sgetn_240", "_IO_sgetn"); +__static_renaming("___IO_sgetn_241", "_IO_sgetn"); +__static_renaming("___IO_seekoff_242", "_IO_seekoff"); +__static_renaming("___IO_seekoff_243", "_IO_seekoff"); +__static_renaming("___IO_seekpos_244", "_IO_seekpos"); +__static_renaming("___IO_seekpos_245", "_IO_seekpos"); +__static_renaming("___IO_free_backup_area_246", "_IO_free_backup_area"); +__static_renaming("___IO_free_backup_area_247", "_IO_free_backup_area"); +__static_renaming("__va_list_248", "va_list"); +__static_renaming("__off_t_250", "off_t"); +__static_renaming("__off_t_251", "off_t"); +__static_renaming("__ssize_t_252", "ssize_t"); +__static_renaming("__fpos_t_253", "fpos_t"); +__static_renaming("__fpos_t_255", "fpos_t"); +__static_renaming("__stdin_257", "stdin"); +__static_renaming("__stdin_258", "stdin"); +__static_renaming("__stdout_259", "stdout"); +__static_renaming("__stdout_260", "stdout"); +__static_renaming("__stderr_261", "stderr"); +__static_renaming("__stderr_262", "stderr"); +__static_renaming("__remove_264", "remove"); +__static_renaming("__rename_267", "rename"); +__static_renaming("__renameat_272", "renameat"); +__static_renaming("__tmpfile_273", "tmpfile"); +__static_renaming("__tmpfile_275", "tmpfile"); +__static_renaming("__tmpfile_277", "tmpfile"); +__static_renaming("__tmpfile_279", "tmpfile"); +__static_renaming("__tmpnam_282", "tmpnam"); +__static_renaming("__tmpnam_283", "tmpnam"); +__static_renaming("__tmpnam_r_285", "tmpnam_r"); +__static_renaming("__tmpnam_r_286", "tmpnam_r"); +__static_renaming("__tempnam_289", "tempnam"); +__static_renaming("__tempnam_290", "tempnam"); +__static_renaming("__fclose_293", "fclose"); +__static_renaming("__fclose_295", "fclose"); +__static_renaming("__fflush_299", "fflush"); +__static_renaming("__fflush_unlocked_303", "fflush_unlocked"); +__static_renaming("__fopen_307", "fopen"); +__static_renaming("__fopen_309", "fopen"); +__static_renaming("__fopen_317", "fopen"); +__static_renaming("__fopen_319", "fopen"); +__static_renaming("__freopen_325", "freopen"); +__static_renaming("__freopen_327", "freopen"); +__static_renaming("__freopen_329", "freopen"); +__static_renaming("__freopen_331", "freopen"); +__static_renaming("__fdopen_335", "fdopen"); +__static_renaming("__fdopen_337", "fdopen"); +__static_renaming("__fmemopen_342", "fmemopen"); +__static_renaming("__fmemopen_344", "fmemopen"); +__static_renaming("__open_memstream_348", "open_memstream"); +__static_renaming("__open_memstream_350", "open_memstream"); +__static_renaming("__setbuf_355", "setbuf"); +__static_renaming("__setbuf_357", "setbuf"); +__static_renaming("__setvbuf_364", "setvbuf"); +__static_renaming("__setbuffer_369", "setbuffer"); +__static_renaming("__setlinebuf_373", "setlinebuf"); +__static_renaming("__fprintf_378", "fprintf"); +__static_renaming("__fprintf_380", "fprintf"); +__static_renaming("__printf_383", "printf"); +__static_renaming("__sprintf_386", "sprintf"); +__static_renaming("__vfprintf_392", "vfprintf"); +__static_renaming("__vprintf_399", "vprintf"); +__static_renaming("__vsprintf_405", "vsprintf"); +__static_renaming("__snprintf_409", "snprintf"); +__static_renaming("__vsnprintf_415", "vsnprintf"); +__static_renaming("__vdprintf_420", "vdprintf"); +__static_renaming("__dprintf_424", "dprintf"); +__static_renaming("__fscanf_428", "fscanf"); +__static_renaming("__fscanf_430", "fscanf"); +__static_renaming("__fscanf_432", "fscanf"); +__static_renaming("__fscanf_434", "fscanf"); +__static_renaming("__scanf_437", "scanf"); +__static_renaming("__scanf_438", "scanf"); +__static_renaming("__sscanf_441", "sscanf"); +__static_renaming("__vfscanf_468", "vfscanf"); +__static_renaming("__vfscanf_472", "vfscanf"); +__static_renaming("__vscanf_479", "vscanf"); +__static_renaming("__vscanf_481", "vscanf"); +__static_renaming("__vsscanf_487", "vsscanf"); +__static_renaming("__fgetc_520", "fgetc"); +__static_renaming("__getc_523", "getc"); +__static_renaming("__getchar_524", "getchar"); +__static_renaming("__getc_unlocked_527", "getc_unlocked"); +__static_renaming("__getchar_unlocked_529", "getchar_unlocked"); +__static_renaming("__fgetc_unlocked_532", "fgetc_unlocked"); +__static_renaming("__fputc_537", "fputc"); +__static_renaming("__fputc_539", "fputc"); +__static_renaming("__putc_544", "putc"); +__static_renaming("__putchar_546", "putchar"); +__static_renaming("__fputc_unlocked_550", "fputc_unlocked"); +__static_renaming("__putc_unlocked_555", "putc_unlocked"); +__static_renaming("__putchar_unlocked_558", "putchar_unlocked"); +__static_renaming("__getw_561", "getw"); +__static_renaming("__putw_566", "putw"); +__static_renaming("__fgets_572", "fgets"); +__static_renaming("__fgets_574", "fgets"); +__static_renaming("__fgets_576", "fgets"); +__static_renaming("__fgets_578", "fgets"); +__static_renaming("____getdelim_585", "__getdelim"); +__static_renaming("____getdelim_587", "__getdelim"); +__static_renaming("__getdelim_594", "getdelim"); +__static_renaming("__getdelim_596", "getdelim"); +__static_renaming("__getline_602", "getline"); +__static_renaming("__getline_604", "getline"); +__static_renaming("__fputs_609", "fputs"); +__static_renaming("__fputs_611", "fputs"); +__static_renaming("__puts_614", "puts"); +__static_renaming("__ungetc_618", "ungetc"); +__static_renaming("__fseek_654", "fseek"); +__static_renaming("__fseek_656", "fseek"); +__static_renaming("__ftell_660", "ftell"); +__static_renaming("__ftell_662", "ftell"); +__static_renaming("__rewind_666", "rewind"); +__static_renaming("__fseeko_671", "fseeko"); +__static_renaming("__fseeko_679", "fseeko"); +__static_renaming("__ftello_683", "ftello"); +__static_renaming("__ftello_685", "ftello"); +__static_renaming("__ftello_687", "ftello"); +__static_renaming("__fgetpos_693", "fgetpos"); +__static_renaming("__fgetpos_705", "fgetpos"); +__static_renaming("__fsetpos_713", "fsetpos"); +__static_renaming("__fsetpos_717", "fsetpos"); +__static_renaming("__clearerr_723", "clearerr"); +__static_renaming("__feof_726", "feof"); +__static_renaming("__feof_728", "feof"); +__static_renaming("__ferror_732", "ferror"); +__static_renaming("__ferror_734", "ferror"); +__static_renaming("__clearerr_unlocked_738", "clearerr_unlocked"); +__static_renaming("__feof_unlocked_742", "feof_unlocked"); +__static_renaming("__feof_unlocked_744", "feof_unlocked"); +__static_renaming("__ferror_unlocked_748", "ferror_unlocked"); +__static_renaming("__ferror_unlocked_750", "ferror_unlocked"); +__static_renaming("__perror_753", "perror"); +__static_renaming("__perror_754", "perror"); +__static_renaming("__sys_nerr_755", "sys_nerr"); +__static_renaming("__sys_errlist_756", "sys_errlist"); +__static_renaming("__fileno_759", "fileno"); +__static_renaming("__fileno_761", "fileno"); +__static_renaming("__fileno_unlocked_765", "fileno_unlocked"); +__static_renaming("__fileno_unlocked_767", "fileno_unlocked"); +__static_renaming("__popen_771", "popen"); +__static_renaming("__popen_773", "popen"); +__static_renaming("__pclose_777", "pclose"); +__static_renaming("__ctermid_780", "ctermid"); +__static_renaming("__flockfile_783", "flockfile"); +__static_renaming("__ftrylockfile_787", "ftrylockfile"); +__static_renaming("__ftrylockfile_789", "ftrylockfile"); +__static_renaming("__funlockfile_793", "funlockfile"); +__static_renaming("____sprintf_chk_825", "__sprintf_chk"); +__static_renaming("____vsprintf_chk_832", "__vsprintf_chk"); +__static_renaming("____snprintf_chk_846", "__snprintf_chk"); +__static_renaming("____vsnprintf_chk_854", "__vsnprintf_chk"); +__static_renaming("____fprintf_chk_869", "__fprintf_chk"); +__static_renaming("____printf_chk_873", "__printf_chk"); +__static_renaming("____vfprintf_chk_880", "__vfprintf_chk"); +__static_renaming("____vprintf_chk_888", "__vprintf_chk"); +__static_renaming("____dprintf_chk_910", "__dprintf_chk"); +__static_renaming("____vdprintf_chk_916", "__vdprintf_chk"); +__static_renaming("____fgets_chk_930", "__fgets_chk"); +__static_renaming("____fgets_chk_932", "__fgets_chk"); +__static_renaming("____fgets_chk_934", "__fgets_chk"); +__static_renaming("____fgets_alias_940", "__fgets_alias"); +__static_renaming("____fgets_chk_warn_947", "__fgets_chk_warn"); +__static_renaming("____cnt_1013", "__cnt"); +__static_renaming("____cptr_1014", "__cptr"); +__static_renaming("__memmove_1026", "memmove"); +__static_renaming("__memset_1035", "memset"); +__static_renaming("__memset_1036", "memset"); +__static_renaming("__memcmp_1040", "memcmp"); +__static_renaming("__memchr_1044", "memchr"); +__static_renaming("__strcpy_1047", "strcpy"); +__static_renaming("__strncpy_1051", "strncpy"); +__static_renaming("__strcat_1054", "strcat"); +__static_renaming("__strncat_1058", "strncat"); +__static_renaming("__strcmp_1061", "strcmp"); +__static_renaming("__strncmp_1065", "strncmp"); +__static_renaming("__strcoll_1068", "strcoll"); +__static_renaming("__strxfrm_1072", "strxfrm"); +__static_renaming("____locale_t_1080", "__locale_t"); +__static_renaming("__locale_t_1081", "locale_t"); +__static_renaming("__strcoll_l_1085", "strcoll_l"); +__static_renaming("__strxfrm_l_1090", "strxfrm_l"); +__static_renaming("__strdup_1092", "strdup"); +__static_renaming("__strndup_1095", "strndup"); +__static_renaming("__strchr_1098", "strchr"); +__static_renaming("__strchr_1099", "strchr"); +__static_renaming("__strrchr_1102", "strrchr"); +__static_renaming("__strcspn_1105", "strcspn"); +__static_renaming("__strspn_1108", "strspn"); +__static_renaming("__strpbrk_1111", "strpbrk"); +__static_renaming("__strstr_1114", "strstr"); +__static_renaming("__strtok_1117", "strtok"); +__static_renaming("____strtok_r_1121", "__strtok_r"); +__static_renaming("__strtok_r_1125", "strtok_r"); +__static_renaming("__strlen_1127", "strlen"); +__static_renaming("__strlen_1128", "strlen"); +__static_renaming("__strnlen_1131", "strnlen"); +__static_renaming("__strerror_1133", "strerror"); +__static_renaming("__strerror_1134", "strerror"); +__static_renaming("__strerror_r_1138", "strerror_r"); +__static_renaming("__strerror_l_1141", "strerror_l"); +__static_renaming("____bzero_1144", "__bzero"); +__static_renaming("____bzero_1145", "__bzero"); +__static_renaming("__bcopy_1149", "bcopy"); +__static_renaming("__bzero_1152", "bzero"); +__static_renaming("__bcmp_1156", "bcmp"); +__static_renaming("__index_1159", "index"); +__static_renaming("__rindex_1162", "rindex"); +__static_renaming("__ffs_1164", "ffs"); +__static_renaming("__strcasecmp_1167", "strcasecmp"); +__static_renaming("__strncasecmp_1171", "strncasecmp"); +__static_renaming("__strsep_1174", "strsep"); +__static_renaming("__strsignal_1176", "strsignal"); +__static_renaming("____stpcpy_1179", "__stpcpy"); +__static_renaming("__stpcpy_1182", "stpcpy"); +__static_renaming("____stpncpy_1186", "__stpncpy"); +__static_renaming("__stpncpy_1190", "stpncpy"); +__static_renaming("____stpncpy_chk_1219", "__stpncpy_chk"); +__static_renaming("____stpncpy_alias_1223", "__stpncpy_alias"); +__static_renaming("__wchar_t_1235", "wchar_t"); +__static_renaming("__idtype_t_1241", "idtype_t"); +__static_renaming("____bswap_32_1243", "__bswap_32"); +__static_renaming("____bswap_64_1246", "__bswap_64"); +__static_renaming("____WAIT_STATUS_1266", "__WAIT_STATUS"); +__static_renaming("__div_t_1271", "div_t"); +__static_renaming("__ldiv_t_1276", "ldiv_t"); +__static_renaming("__lldiv_t_1281", "lldiv_t"); +__static_renaming("____ctype_get_mb_cur_max_1282", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1283", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1284", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1285", "__ctype_get_mb_cur_max"); +__static_renaming("__atof_1287", "atof"); +__static_renaming("__atof_1288", "atof"); +__static_renaming("__atoi_1290", "atoi"); +__static_renaming("__atoi_1291", "atoi"); +__static_renaming("__atol_1293", "atol"); +__static_renaming("__atol_1294", "atol"); +__static_renaming("__atoll_1296", "atoll"); +__static_renaming("__atoll_1297", "atoll"); +__static_renaming("__strtod_1300", "strtod"); +__static_renaming("__strtof_1303", "strtof"); +__static_renaming("__strtold_1306", "strtold"); +__static_renaming("__strtol_1310", "strtol"); +__static_renaming("__strtoul_1314", "strtoul"); +__static_renaming("__strtoq_1318", "strtoq"); +__static_renaming("__strtouq_1322", "strtouq"); +__static_renaming("__strtoll_1326", "strtoll"); +__static_renaming("__strtoll_1327", "strtoll"); +__static_renaming("__strtoull_1331", "strtoull"); +__static_renaming("__l64a_1336", "l64a"); +__static_renaming("__l64a_1337", "l64a"); +__static_renaming("__a64l_1339", "a64l"); +__static_renaming("__a64l_1340", "a64l"); +__static_renaming("__u_char_1341", "u_char"); +__static_renaming("__u_short_1342", "u_short"); +__static_renaming("__u_int_1343", "u_int"); +__static_renaming("__u_long_1344", "u_long"); +__static_renaming("__quad_t_1345", "quad_t"); +__static_renaming("__u_quad_t_1346", "u_quad_t"); +__static_renaming("__fsid_t_1347", "fsid_t"); +__static_renaming("__loff_t_1348", "loff_t"); +__static_renaming("__ino_t_1349", "ino_t"); +__static_renaming("__ino_t_1350", "ino_t"); +__static_renaming("__dev_t_1351", "dev_t"); +__static_renaming("__gid_t_1352", "gid_t"); +__static_renaming("__gid_t_1353", "gid_t"); +__static_renaming("__mode_t_1354", "mode_t"); +__static_renaming("__nlink_t_1355", "nlink_t"); +__static_renaming("__uid_t_1356", "uid_t"); +__static_renaming("__uid_t_1357", "uid_t"); +__static_renaming("__pid_t_1358", "pid_t"); +__static_renaming("__id_t_1359", "id_t"); +__static_renaming("__daddr_t_1360", "daddr_t"); +__static_renaming("__caddr_t_1361", "caddr_t"); +__static_renaming("__key_t_1362", "key_t"); +__static_renaming("__key_t_1363", "key_t"); +__static_renaming("__clock_t_1364", "clock_t"); +__static_renaming("__time_t_1365", "time_t"); +__static_renaming("__clockid_t_1366", "clockid_t"); +__static_renaming("__timer_t_1367", "timer_t"); +__static_renaming("__ulong_1368", "ulong"); +__static_renaming("__ulong_1369", "ulong"); +__static_renaming("__ulong_1370", "ulong"); +__static_renaming("__ushort_1371", "ushort"); +__static_renaming("__uint_1372", "uint"); +__static_renaming("__int8_t_1373", "int8_t"); +__static_renaming("__int16_t_1374", "int16_t"); +__static_renaming("__int32_t_1375", "int32_t"); +__static_renaming("__int64_t_1376", "int64_t"); +__static_renaming("__u_int8_t_1377", "u_int8_t"); +__static_renaming("__u_int16_t_1378", "u_int16_t"); +__static_renaming("__u_int32_t_1379", "u_int32_t"); +__static_renaming("__u_int64_t_1380", "u_int64_t"); +__static_renaming("__register_t_1381", "register_t"); +__static_renaming("____bswap_32_1383", "__bswap_32"); +__static_renaming("____bswap_64_1386", "__bswap_64"); +__static_renaming("____sig_atomic_t_1387", "__sig_atomic_t"); +__static_renaming("____sigset_t_1391", "__sigset_t"); +__static_renaming("__sigset_t_1392", "sigset_t"); +__static_renaming("__suseconds_t_1399", "suseconds_t"); +__static_renaming("____fd_mask_1400", "__fd_mask"); +__static_renaming("____fd_mask_1401", "__fd_mask"); +__static_renaming("__fd_set_1406", "fd_set"); +__static_renaming("__fd_mask_1407", "fd_mask"); +__static_renaming("__fd_mask_1408", "fd_mask"); +__static_renaming("__select_1416", "select"); +__static_renaming("__select_1417", "select"); +__static_renaming("__pselect_1426", "pselect"); +__static_renaming("__pselect_1427", "pselect"); +__static_renaming("____fdelt_chk_1429", "__fdelt_chk"); +__static_renaming("____fdelt_warn_1431", "__fdelt_warn"); +__static_renaming("__gnu_dev_major_1433", "gnu_dev_major"); +__static_renaming("__gnu_dev_major_1434", "gnu_dev_major"); +__static_renaming("__gnu_dev_minor_1436", "gnu_dev_minor"); +__static_renaming("__gnu_dev_makedev_1439", "gnu_dev_makedev"); +__static_renaming("__blksize_t_1444", "blksize_t"); +__static_renaming("__blkcnt_t_1445", "blkcnt_t"); +__static_renaming("__fsblkcnt_t_1446", "fsblkcnt_t"); +__static_renaming("__blkcnt_t_1447", "blkcnt_t"); +__static_renaming("__fsblkcnt_t_1448", "fsblkcnt_t"); +__static_renaming("__fsfilcnt_t_1449", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_1450", "fsfilcnt_t"); +__static_renaming("__pthread_t_1451", "pthread_t"); +__static_renaming("__pthread_attr_t_1455", "pthread_attr_t"); +__static_renaming("____pthread_list_t_1460", "__pthread_list_t"); +__static_renaming("____pthread_list_t_1461", "__pthread_list_t"); +__static_renaming("__pthread_mutex_t_1477", "pthread_mutex_t"); +__static_renaming("__pthread_mutexattr_t_1482", "pthread_mutexattr_t"); +__static_renaming("__rand_1483", "rand"); +__static_renaming("__srand_1485", "srand"); +__static_renaming("__rand_r_1487", "rand_r"); +__static_renaming("__drand48_1488", "drand48"); +__static_renaming("__erand48_1490", "erand48"); +__static_renaming("__lrand48_1491", "lrand48"); +__static_renaming("__nrand48_1493", "nrand48"); +__static_renaming("__mrand48_1494", "mrand48"); +__static_renaming("__jrand48_1496", "jrand48"); +__static_renaming("__srand48_1498", "srand48"); +__static_renaming("__seed48_1500", "seed48"); +__static_renaming("__lcong48_1502", "lcong48"); +__static_renaming("__malloc_1504", "malloc"); +__static_renaming("__malloc_1505", "malloc"); +__static_renaming("__calloc_1508", "calloc"); +__static_renaming("__calloc_1509", "calloc"); +__static_renaming("__realloc_1512", "realloc"); +__static_renaming("__realloc_1513", "realloc"); +__static_renaming("__free_1515", "free"); +__static_renaming("__cfree_1517", "cfree"); +__static_renaming("__alloca_1519", "alloca"); +__static_renaming("__valloc_1521", "valloc"); +__static_renaming("__valloc_1522", "valloc"); +__static_renaming("__posix_memalign_1526", "posix_memalign"); +__static_renaming("__posix_memalign_1527", "posix_memalign"); +__static_renaming("__aligned_alloc_1530", "aligned_alloc"); +__static_renaming("__aligned_alloc_1531", "aligned_alloc"); +__static_renaming("__aligned_alloc_1532", "aligned_alloc"); +__static_renaming("__aligned_alloc_1533", "aligned_alloc"); +__static_renaming("__abort_1534", "abort"); +__static_renaming("__atexit_1536", "atexit"); +__static_renaming("__at_quick_exit_1538", "at_quick_exit"); +__static_renaming("__on_exit_1543", "on_exit"); +__static_renaming("__exit_1545", "exit"); +__static_renaming("__exit_1546", "exit"); +__static_renaming("__quick_exit_1548", "quick_exit"); +__static_renaming("___Exit_1550", "_Exit"); +__static_renaming("__getenv_1552", "getenv"); +__static_renaming("__getenv_1553", "getenv"); +__static_renaming("__putenv_1555", "putenv"); +__static_renaming("__setenv_1559", "setenv"); +__static_renaming("__unsetenv_1561", "unsetenv"); +__static_renaming("__clearenv_1562", "clearenv"); +__static_renaming("__mktemp_1564", "mktemp"); +__static_renaming("__mkstemp_1567", "mkstemp"); +__static_renaming("__mkstemp_1568", "mkstemp"); +__static_renaming("__mkstemp_1569", "mkstemp"); +__static_renaming("__mkstemp_1570", "mkstemp"); +__static_renaming("__mkstemps_1575", "mkstemps"); +__static_renaming("__mkstemps_1576", "mkstemps"); +__static_renaming("__mkstemps_1577", "mkstemps"); +__static_renaming("__mkstemps_1578", "mkstemps"); +__static_renaming("__mkdtemp_1580", "mkdtemp"); +__static_renaming("__mkdtemp_1581", "mkdtemp"); +__static_renaming("__system_1583", "system"); +__static_renaming("__system_1584", "system"); +__static_renaming("__system_1585", "system"); +__static_renaming("__system_1586", "system"); +__static_renaming("__realpath_1589", "realpath"); +__static_renaming("__realpath_1590", "realpath"); +__static_renaming("____compar_fn_t_1591", "__compar_fn_t"); +__static_renaming("__bsearch_1599", "bsearch"); +__static_renaming("__bsearch_1601", "bsearch"); +__static_renaming("____l_1608", "__l"); +__static_renaming("____u_1609", "__u"); +__static_renaming("____idx_1610", "__idx"); +__static_renaming("____p_1611", "__p"); +__static_renaming("____comparison_1612", "__comparison"); +__static_renaming("__qsort_1620", "qsort"); +__static_renaming("__qsort_1622", "qsort"); +__static_renaming("__abs_1625", "abs"); +__static_renaming("__abs_1626", "abs"); +__static_renaming("__labs_1628", "labs"); +__static_renaming("__labs_1629", "labs"); +__static_renaming("__llabs_1631", "llabs"); +__static_renaming("__llabs_1632", "llabs"); +__static_renaming("__div_1635", "div"); +__static_renaming("__div_1636", "div"); +__static_renaming("__ldiv_1639", "ldiv"); +__static_renaming("__ldiv_1641", "ldiv"); +__static_renaming("__lldiv_1645", "lldiv"); +__static_renaming("__lldiv_1647", "lldiv"); +__static_renaming("__ecvt_1653", "ecvt"); +__static_renaming("__ecvt_1654", "ecvt"); +__static_renaming("__fcvt_1659", "fcvt"); +__static_renaming("__fcvt_1660", "fcvt"); +__static_renaming("__gcvt_1664", "gcvt"); +__static_renaming("__gcvt_1665", "gcvt"); +__static_renaming("__qecvt_1670", "qecvt"); +__static_renaming("__qecvt_1671", "qecvt"); +__static_renaming("__qfcvt_1676", "qfcvt"); +__static_renaming("__qfcvt_1677", "qfcvt"); +__static_renaming("__qgcvt_1681", "qgcvt"); +__static_renaming("__qgcvt_1682", "qgcvt"); +__static_renaming("__ecvt_r_1689", "ecvt_r"); +__static_renaming("__fcvt_r_1696", "fcvt_r"); +__static_renaming("__qecvt_r_1703", "qecvt_r"); +__static_renaming("__qfcvt_r_1710", "qfcvt_r"); +__static_renaming("__mblen_1713", "mblen"); +__static_renaming("__mblen_1714", "mblen"); +__static_renaming("__mbtowc_1718", "mbtowc"); +__static_renaming("__wctomb_1721", "wctomb"); +__static_renaming("__mbstowcs_1725", "mbstowcs"); +__static_renaming("__wcstombs_1729", "wcstombs"); +__static_renaming("__rpmatch_1731", "rpmatch"); +__static_renaming("__rpmatch_1732", "rpmatch"); +__static_renaming("__getsubopt_1736", "getsubopt"); +__static_renaming("__getsubopt_1737", "getsubopt"); +__static_renaming("__getloadavg_1740", "getloadavg"); +__static_renaming("____realpath_chk_1745", "__realpath_chk"); +__static_renaming("____realpath_alias_1748", "__realpath_alias"); +__static_renaming("____realpath_chk_warn_1752", "__realpath_chk_warn"); +__static_renaming("____ptsname_r_chk_1760", "__ptsname_r_chk"); +__static_renaming("____ptsname_r_alias_1764", "__ptsname_r_alias"); +__static_renaming("____ptsname_r_chk_warn_1769", "__ptsname_r_chk_warn"); +__static_renaming("____wctomb_chk_1777", "__wctomb_chk"); +__static_renaming("____wctomb_alias_1780", "__wctomb_alias"); +__static_renaming("____mbstowcs_chk_1787", "__mbstowcs_chk"); +__static_renaming("____mbstowcs_alias_1791", "__mbstowcs_alias"); +__static_renaming("____mbstowcs_chk_warn_1796", "__mbstowcs_chk_warn"); +__static_renaming("____wcstombs_chk_1804", "__wcstombs_chk"); +__static_renaming("____wcstombs_alias_1808", "__wcstombs_alias"); +__static_renaming("____wcstombs_chk_warn_1813", "__wcstombs_chk_warn"); +__static_renaming("__c_1817", "c"); +__static_renaming("__flags_1818", "flags"); +__static_renaming("__main_1819", "main"); +__static_renaming("__main_1820", "main"); +__static_renaming("__main_1821", "main"); +__static_renaming("__main_1822", "main"); + +__static_condition_renaming("__static_condition_default_74", "(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_118", "(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_161", "(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_162", "(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_165", "(defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_223", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_225", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_226", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_227", "(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_230", "(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_232", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_234", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_235", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_236", "(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_249", "!(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); +__static_condition_renaming("__static_condition_default_254", "!(defined _FILE_OFFSET_BITS) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_256", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_274", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_276", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_278", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_280", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_294", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_296", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_300", "(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_304", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_308", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_310", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_318", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_320", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_326", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_328", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_330", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_332", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_336", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_338", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_343", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_345", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_349", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_351", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_356", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_358", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_370", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_374", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_379", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_381", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_393", "!(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_394", "(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_395", "(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_400", "!(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_421", "!(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_429", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_431", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_433", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_435", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_446", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_448", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_449", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_451", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_453", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_454", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_457", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_459", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_469", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_470", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_471", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_473", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_474", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_475", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_480", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_482", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_494", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_495", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_496", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_497", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_499", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_500", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_501", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_502", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_507", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_508", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_510", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_511", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_517", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_528", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_533", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_538", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_540", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_551", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_556", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_562", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_567", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_573", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_575", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_577", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_579", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_586", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_588", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_595", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_597", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_603", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_605", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_610", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_612", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_624", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_625", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_626", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_627", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_633", "!(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_639", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_640", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_641", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_642", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_648", "!(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_649", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_655", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_657", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_661", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_663", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_672", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_680", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_684", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_686", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_688", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_694", "!(defined _FILE_OFFSET_BITS) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_695", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_696", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_706", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_707", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_708", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_714", "!(defined _FILE_OFFSET_BITS) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_715", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_716", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_718", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_719", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_720", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_727", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_729", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_733", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_735", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_739", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_743", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_745", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_749", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_751", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_760", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_762", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_766", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_768", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_772", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_774", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_778", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_784", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_788", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_790", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_794", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_798", "!(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_801", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_804", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_809", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_813", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_817", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_820", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_833", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_840", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_855", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_864", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_870", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_881", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_882", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_883", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_889", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_893", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_898", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_904", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_905", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_906", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_917", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_924", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_931", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_933", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_935", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_941", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_948", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_953", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_954", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_961", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_962", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_968", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_969", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_976", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_977", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_983", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_984", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_991", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_992", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_998", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_999", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1006", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1007", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1015", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_1016", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1017", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1021", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) || (defined __STRICT_ANSI__)"); +__static_condition_renaming("__static_condition_default_1022", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1031", "!(defined __STRICT_ANSI__)"); +__static_condition_renaming("__static_condition_default_1194", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1201", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1209", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1210", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1214", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1227", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1230", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1234", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1244", "!(defined __STRICT_ANSI__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1384", "!(defined __STRICT_ANSI__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1598", "!(defined _FORTIFY_SOURCE) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1600", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1613", "(defined __USE_EXTERN_INLINES) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1614", "(defined __USE_EXTERN_INLINES) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1621", "!(defined __USE_EXTERN_INLINES) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1623", "(defined __USE_EXTERN_INLINES) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1640", "!(defined _FORTIFY_SOURCE) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1642", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1646", "!(defined _FORTIFY_SOURCE) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1648", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1755", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1823", "!(defined _FORTIFY_SOURCE) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1824", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined OS2) && (defined NEED_ENHANCED_ESCAPES) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined OS2) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined OS2) && (defined NEED_ENHANCED_ESCAPES) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined OS2) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined OS2) && (defined NEED_ENHANCED_ESCAPES) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined OS2) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined OS2) && (defined NEED_ENHANCED_ESCAPES) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined OS2)"); +__static_condition_renaming("__static_condition_default_1825", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined OS2) && !(defined NEED_ENHANCED_ESCAPES) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined OS2) && !(defined NEED_ENHANCED_ESCAPES) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined OS2) && !(defined NEED_ENHANCED_ESCAPES) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined OS2) && !(defined NEED_ENHANCED_ESCAPES)"); +__static_condition_renaming("__static_condition_default_1826", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1827", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined OS2) && (defined NEED_ENHANCED_ESCAPES) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined OS2)"); +__static_condition_renaming("__static_condition_default_1828", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined OS2) && !(defined NEED_ENHANCED_ESCAPES)"); +__static_condition_renaming("__static_condition_default_1829", "!(defined CROSS_COMPILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined)"); +__static_condition_renaming("__static_condition_default_1830", "(defined __STRICT_ANSI__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined OS2) && (defined NEED_ENHANCED_ESCAPES) || (defined __STRICT_ANSI__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined OS2)"); +__static_condition_renaming("__static_condition_default_1831", "!(defined __STRICT_ANSI__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined OS2) && (defined NEED_ENHANCED_ESCAPES) || !(defined __STRICT_ANSI__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined OS2)"); +__static_condition_renaming("__static_condition_default_1832", "(defined __STRICT_ANSI__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined OS2) && !(defined NEED_ENHANCED_ESCAPES)"); +__static_condition_renaming("__static_condition_default_1833", "!(defined __STRICT_ANSI__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined OS2) && !(defined NEED_ENHANCED_ESCAPES)"); +__static_condition_renaming("__static_condition_default_1834", "!(defined CROSS_COMPILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) || !(defined CROSS_COMPILE) && (defined _STDLIB_H) || (defined CROSS_COMPILE)"); +__static_condition_renaming("__static_condition_default_1835", "(defined __STRICT_ANSI__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined OS2) && (defined NEED_ENHANCED_ESCAPES) || (defined __STRICT_ANSI__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined OS2) || (defined __STRICT_ANSI__) && !(defined CROSS_COMPILE) && (defined _STDLIB_H) && !(defined OS2) && (defined NEED_ENHANCED_ESCAPES) || (defined __STRICT_ANSI__) && !(defined CROSS_COMPILE) && (defined _STDLIB_H) && (defined OS2) || (defined __STRICT_ANSI__) && (defined CROSS_COMPILE) && (defined NEED_ENHANCED_ESCAPES)"); +__static_condition_renaming("__static_condition_default_1836", "!(defined __STRICT_ANSI__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined OS2) && (defined NEED_ENHANCED_ESCAPES) || !(defined __STRICT_ANSI__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined OS2) || !(defined __STRICT_ANSI__) && !(defined CROSS_COMPILE) && (defined _STDLIB_H) && !(defined OS2) && (defined NEED_ENHANCED_ESCAPES) || !(defined __STRICT_ANSI__) && !(defined CROSS_COMPILE) && (defined _STDLIB_H) && (defined OS2) || !(defined __STRICT_ANSI__) && (defined CROSS_COMPILE) && (defined NEED_ENHANCED_ESCAPES)"); +__static_condition_renaming("__static_condition_default_1837", "(defined __STRICT_ANSI__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined OS2) && !(defined NEED_ENHANCED_ESCAPES) || (defined __STRICT_ANSI__) && !(defined CROSS_COMPILE) && (defined _STDLIB_H) && !(defined OS2) && !(defined NEED_ENHANCED_ESCAPES) || (defined __STRICT_ANSI__) && (defined CROSS_COMPILE) && !(defined NEED_ENHANCED_ESCAPES)"); +__static_condition_renaming("__static_condition_default_1838", "!(defined __STRICT_ANSI__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined OS2) && !(defined NEED_ENHANCED_ESCAPES) || !(defined __STRICT_ANSI__) && !(defined CROSS_COMPILE) && (defined _STDLIB_H) && !(defined OS2) && !(defined NEED_ENHANCED_ESCAPES) || !(defined __STRICT_ANSI__) && (defined CROSS_COMPILE) && !(defined NEED_ENHANCED_ESCAPES)"); +__static_condition_renaming("__static_condition_default_1839", "!(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); + +if (__static_condition_default_1839) { __static_parse_error("Unable to parse"); } }; @@ -1634,512 +1108,311 @@ typedef long int ____ssize_t_49;// L110:L172 typedef long int ____syscall_slong_t_50;// L93:L175 typedef unsigned long int ____syscall_ulong_t_51;// L94:L177 typedef ____off64_t_24 ____loff_t_52;// L181 -typedef ____quad_t_14 * (____qaddr_t_54);// L182 -typedef char * (____caddr_t_55);// L183 -typedef long int ____intptr_t_56;// L110:L186 -typedef unsigned int ____socklen_t_57;// L92:L189 -typedef struct __forward_tag_reference_58 __FILE_59;// L48 -typedef struct __forward_tag_reference_58 ____FILE_60;// L64 -union ____anonymous_tag_61_62 { -unsigned int ____wch_63;// L265 -char ____wchb_64[4];// L92 -}; -struct ____anonymous_tag_65_66 { -int ____count_67;// L84 -union ____anonymous_tag_61_62 ____value_68;// L85 -}; -typedef struct ____anonymous_tag_65_66 ____mbstate_t_69;// L82:L94 -struct ____anonymous_tag_70_71 { -____off_t_23 ____pos_72;// L0 -____mbstate_t_69 ____state_74;// L0 +typedef ____quad_t_14 * (____qaddr_t_53);// L182 +typedef char * (____caddr_t_54);// L183 +typedef long int ____intptr_t_55;// L110:L186 +typedef unsigned int ____socklen_t_56;// L92:L189 +typedef struct __forward_tag_reference_57 __FILE_58;// L48 +typedef struct __forward_tag_reference_57 ____FILE_59;// L64 +union ____anonymous_tag_60_61 { +unsigned int ____wch_62;// L265 +char ____wchb_63[4];// L92 }; -typedef struct ____anonymous_tag_70_71 ___G_fpos_t_77;// L21:L25 -struct ____anonymous_tag_78_79 { -____off64_t_24 ____pos_80;// L0 -____mbstate_t_69 ____state_82;// L0 +struct ____anonymous_tag_64_65 { +int ____count_66;// L84 +union ____anonymous_tag_60_61 ____value_67;// L85 }; -typedef struct ____anonymous_tag_78_79 ___G_fpos64_t_85;// L26:L30 -typedef __builtin_va_list ____gnuc_va_list_86;// L40 -typedef void ___IO_lock_t_88;// L150 -struct ___IO_marker_90 { -struct __forward_tag_reference_89 * (___next_91);// L0 -struct __forward_tag_reference_58 * (___sbuf_92);// L0 -int ___pos_93;// L162 +typedef struct ____anonymous_tag_64_65 ____mbstate_t_68;// L82:L94 +struct ____anonymous_tag_69_70 { +____off_t_23 ____pos_71;// L0 +____mbstate_t_68 ____state_72;// L0 }; -enum ____codecvt_result_98 { -____codecvt_ok_94, -____codecvt_partial_95, -____codecvt_error_96, -____codecvt_noconv_97, +typedef struct ____anonymous_tag_69_70 ___G_fpos_t_75;// L21:L25 +struct ____anonymous_tag_76_77 { +____off64_t_24 ____pos_78;// L0 +____mbstate_t_68 ____state_79;// L0 }; -struct ___IO_FILE_99 { -int ___flags_100;// L242 -char * (___IO_read_ptr_101);// L247 -char * (___IO_read_end_102);// L248 -char * (___IO_read_base_103);// L249 -char * (___IO_write_base_104);// L250 -char * (___IO_write_ptr_105);// L251 -char * (___IO_write_end_106);// L252 -char * (___IO_buf_base_107);// L253 -char * (___IO_buf_end_108);// L254 -char * (___IO_save_base_109);// L256 -char * (___IO_backup_base_110);// L257 -char * (___IO_save_end_111);// L258 -struct ___IO_marker_90 * (___markers_112);// L260 -struct __forward_tag_reference_58 * (___chain_113);// L0 -int ___fileno_114;// L264 -int ___flags2_115;// L268 -____off_t_23 ___old_offset_116;// L0 -unsigned short ___cur_column_118;// L274 -signed char ___vtable_offset_119;// L275 -char ___shortbuf_120[1];// L276 -___IO_lock_t_88 * (___lock_121);// L0 +typedef struct ____anonymous_tag_76_77 ___G_fpos64_t_81;// L26:L30 +typedef __builtin_va_list ____gnuc_va_list_82;// L40 +typedef void ___IO_lock_t_84;// L150 +struct ___IO_marker_86 { +struct __forward_tag_reference_85 * (___next_87);// L0 +struct __forward_tag_reference_57 * (___sbuf_88);// L0 +int ___pos_89;// L162 }; -struct ___IO_FILE_124 { -int ___flags_125;// L242 -char * (___IO_read_ptr_126);// L247 -char * (___IO_read_end_127);// L248 -char * (___IO_read_base_128);// L249 -char * (___IO_write_base_129);// L250 -char * (___IO_write_ptr_130);// L251 -char * (___IO_write_end_131);// L252 -char * (___IO_buf_base_132);// L253 -char * (___IO_buf_end_133);// L254 -char * (___IO_save_base_134);// L256 -char * (___IO_backup_base_135);// L257 -char * (___IO_save_end_136);// L258 -struct ___IO_marker_90 * (___markers_137);// L260 -struct __forward_tag_reference_58 * (___chain_138);// L0 -int ___fileno_139;// L264 -int ___flags2_140;// L268 -____off_t_23 ___old_offset_141;// L0 -unsigned short ___cur_column_143;// L274 -signed char ___vtable_offset_144;// L275 -char ___shortbuf_145[1];// L276 -___IO_lock_t_88 * (___lock_146);// L0 -____off64_t_24 ___offset_148;// L0 -void * (____pad1_150);// L297 -void * (____pad2_151);// L298 -void * (____pad3_152);// L299 -void * (____pad4_153);// L300 -__size_t_1 ____pad5_154;// L0 -int ___mode_155;// L303 -char ___unused2_156[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +enum ____codecvt_result_94 { +____codecvt_ok_90, +____codecvt_partial_91, +____codecvt_error_92, +____codecvt_noconv_93, }; -struct ___IO_FILE_complete_157 { -struct ___IO_FILE_99 ___file_158;// L286 -____off64_t_24 ___offset_160;// L0 -void * (____pad1_162);// L297 -void * (____pad2_163);// L298 -void * (____pad3_164);// L299 -void * (____pad4_165);// L300 -__size_t_1 ____pad5_166;// L0 -int ___mode_167;// L303 -char ___unused2_168[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +struct ___IO_FILE_95 { +int ___flags_96;// L242 +char * (___IO_read_ptr_97);// L247 +char * (___IO_read_end_98);// L248 +char * (___IO_read_base_99);// L249 +char * (___IO_write_base_100);// L250 +char * (___IO_write_ptr_101);// L251 +char * (___IO_write_end_102);// L252 +char * (___IO_buf_base_103);// L253 +char * (___IO_buf_end_104);// L254 +char * (___IO_save_base_105);// L256 +char * (___IO_backup_base_106);// L257 +char * (___IO_save_end_107);// L258 +struct ___IO_marker_86 * (___markers_108);// L260 +struct __forward_tag_reference_57 * (___chain_109);// L0 +int ___fileno_110;// L264 +int ___flags2_111;// L268 +____off_t_23 ___old_offset_112;// L0 +unsigned short ___cur_column_113;// L274 +signed char ___vtable_offset_114;// L275 +char ___shortbuf_115[1];// L276 +___IO_lock_t_84 * (___lock_116);// L0 }; -typedef struct ___IO_FILE_99 ___IO_FILE_171;// L310 -typedef struct ___IO_FILE_124 ___IO_FILE_172;// L310 -typedef ____ssize_t_49 (____io_read_fn_181) (void * (____cookie_178), char * (____buf_179), __size_t_1 ____nbytes_180);// L333 -typedef ____ssize_t_49 (____io_write_fn_186) (void * (____cookie_183), const char * (____buf_184), __size_t_1 ____n_185);// L341:L342 -typedef int (____io_seek_fn_192) (void * (____cookie_188), ____off64_t_24 * (____pos_189), int ____w_191);// L350 -typedef int (____io_close_fn_195) (void * (____cookie_194));// L353 -typedef ____gnuc_va_list_86 __va_list_279;// L79 -typedef ____off_t_23 __off_t_281;// L90 -typedef ____off64_t_24 __off_t_283;// L92 -typedef ____ssize_t_49 __ssize_t_285;// L102 -typedef ___G_fpos_t_77 __fpos_t_287;// L110 -typedef ___G_fpos64_t_85 __fpos_t_289;// L112 -extern const char * const __sys_errlist_830[];// L27 -typedef long int __ptrdiff_t_1090;// L143:L324 -typedef long unsigned int __size_t_1091;// L177:L209 -struct ____locale_struct_1171 { -struct __forward_tag_reference_1170 * (____locales_1172[13]);// L0 -const unsigned short int * (____ctype_b_1173);// L33 -const int * (____ctype_tolower_1174);// L34 -const int * (____ctype_toupper_1175);// L35 -const char * (____names_1176[13]);// L38 +struct ___IO_FILE_119 { +int ___flags_120;// L242 +char * (___IO_read_ptr_121);// L247 +char * (___IO_read_end_122);// L248 +char * (___IO_read_base_123);// L249 +char * (___IO_write_base_124);// L250 +char * (___IO_write_ptr_125);// L251 +char * (___IO_write_end_126);// L252 +char * (___IO_buf_base_127);// L253 +char * (___IO_buf_end_128);// L254 +char * (___IO_save_base_129);// L256 +char * (___IO_backup_base_130);// L257 +char * (___IO_save_end_131);// L258 +struct ___IO_marker_86 * (___markers_132);// L260 +struct __forward_tag_reference_57 * (___chain_133);// L0 +int ___fileno_134;// L264 +int ___flags2_135;// L268 +____off_t_23 ___old_offset_136;// L0 +unsigned short ___cur_column_137;// L274 +signed char ___vtable_offset_138;// L275 +char ___shortbuf_139[1];// L276 +___IO_lock_t_84 * (___lock_140);// L0 +____off64_t_24 ___offset_142;// L0 +void * (____pad1_143);// L297 +void * (____pad2_144);// L298 +void * (____pad3_145);// L299 +void * (____pad4_146);// L300 +__size_t_1 ____pad5_147;// L0 +int ___mode_148;// L303 +char ___unused2_149[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -typedef struct ____locale_struct_1171 * (____locale_t_1177);// L27:L39 -typedef ____locale_t_1177 __locale_t_1178;// L42 -typedef int __wchar_t_1378;// L243:L321 -enum ____anonymous_tag_1382_1383 { -__P_ALL_1379, -__P_PID_1380, -__P_PGID_1381, +struct ___IO_FILE_complete_150 { +struct ___IO_FILE_95 ___file_151;// L286 +____off64_t_24 ___offset_153;// L0 +void * (____pad1_154);// L297 +void * (____pad2_155);// L298 +void * (____pad3_156);// L299 +void * (____pad4_157);// L300 +__size_t_1 ____pad5_158;// L0 +int ___mode_159;// L303 +char ___unused2_160[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -typedef enum ____anonymous_tag_1382_1383 __idtype_t_1384;// L50:L55 -typedef unsigned char ____u_char_1385;// L30 -typedef unsigned short int ____u_short_1386;// L31 -typedef unsigned int ____u_int_1387;// L32 -typedef unsigned long int ____u_long_1388;// L33 -typedef signed char ____int8_t_1389;// L36 -typedef unsigned char ____uint8_t_1390;// L37 -typedef signed short int ____int16_t_1391;// L38 -typedef unsigned short int ____uint16_t_1392;// L39 -typedef signed int ____int32_t_1393;// L40 -typedef unsigned int ____uint32_t_1394;// L41 -typedef signed long int ____int64_t_1395;// L43 -typedef unsigned long int ____uint64_t_1396;// L44 -typedef long int ____quad_t_1397;// L52 -typedef unsigned long int ____u_quad_t_1398;// L53 -typedef unsigned long int ____dev_t_1399;// L109:L124 -typedef unsigned int ____uid_t_1400;// L92:L125 -typedef unsigned int ____gid_t_1401;// L92:L126 -typedef unsigned long int ____ino_t_1402;// L94:L127 -typedef unsigned long int ____ino64_t_1403;// L109:L128 -typedef unsigned int ____mode_t_1404;// L92:L129 -typedef unsigned long int ____nlink_t_1405;// L94:L130 -typedef long int ____off_t_1406;// L93:L131 -typedef long int ____off64_t_1407;// L108:L132 -typedef int ____pid_t_1408;// L91:L133 -struct ____anonymous_tag_1409_1410 { -int ____val_1411[2];// L72 +typedef struct ___IO_FILE_95 ___IO_FILE_163;// L310 +typedef struct ___IO_FILE_119 ___IO_FILE_164;// L310 +typedef ____ssize_t_49 (____io_read_fn_173) (void * (____cookie_170), char * (____buf_171), __size_t_1 ____nbytes_172);// L333 +typedef ____ssize_t_49 (____io_write_fn_177) (void * (____cookie_174), const char * (____buf_175), __size_t_1 ____n_176);// L341:L342 +typedef int (____io_seek_fn_181) (void * (____cookie_178), ____off64_t_24 * (____pos_179), int ____w_180);// L350 +typedef int (____io_close_fn_183) (void * (____cookie_182));// L353 +typedef ____gnuc_va_list_82 __va_list_248;// L79 +typedef ____off_t_23 __off_t_250;// L90 +typedef ____off64_t_24 __off_t_251;// L92 +typedef ____ssize_t_49 __ssize_t_252;// L102 +typedef ___G_fpos_t_75 __fpos_t_253;// L110 +typedef ___G_fpos64_t_81 __fpos_t_255;// L112 +extern const char * const __sys_errlist_756[];// L27 +struct ____locale_struct_1074 { +struct __forward_tag_reference_1073 * (____locales_1075[13]);// L0 +const unsigned short int * (____ctype_b_1076);// L33 +const int * (____ctype_tolower_1077);// L34 +const int * (____ctype_toupper_1078);// L35 +const char * (____names_1079[13]);// L38 }; -typedef struct ____anonymous_tag_1409_1410 ____fsid_t_1412;// L72:L134 -typedef long int ____clock_t_1413;// L93:L135 -typedef unsigned long int ____rlim_t_1414;// L94:L136 -typedef unsigned long int ____rlim64_t_1415;// L109:L137 -typedef unsigned int ____id_t_1416;// L92:L138 -typedef long int ____time_t_1417;// L93:L139 -typedef unsigned int ____useconds_t_1418;// L92:L140 -typedef long int ____suseconds_t_1419;// L93:L141 -typedef int ____daddr_t_1420;// L91:L143 -typedef int ____key_t_1421;// L91:L144 -typedef int ____clockid_t_1422;// L91:L147 -typedef void * (____timer_t_1423);// L70:L150 -typedef long int ____blksize_t_1424;// L93:L153 -typedef long int ____blkcnt_t_1425;// L93:L158 -typedef long int ____blkcnt64_t_1426;// L108:L159 -typedef unsigned long int ____fsblkcnt_t_1427;// L94:L162 -typedef unsigned long int ____fsblkcnt64_t_1428;// L109:L163 -typedef unsigned long int ____fsfilcnt_t_1429;// L94:L166 -typedef unsigned long int ____fsfilcnt64_t_1430;// L109:L167 -typedef long int ____fsword_t_1431;// L93:L170 -typedef long int ____ssize_t_1432;// L110:L172 -typedef long int ____syscall_slong_t_1433;// L93:L175 -typedef unsigned long int ____syscall_ulong_t_1434;// L94:L177 -typedef ____off64_t_1407 ____loff_t_1435;// L181 -typedef ____quad_t_1397 * (____qaddr_t_1437);// L182 -typedef char * (____caddr_t_1438);// L183 -typedef long int ____intptr_t_1439;// L110:L186 -typedef unsigned int ____socklen_t_1440;// L92:L189 -struct ____anonymous_tag_1450_1451 { -unsigned int ____w_termsig_1452 : 7;// L72 -unsigned int ____w_coredump_1453 : 1;// L73 -unsigned int ____w_retcode_1454 : 8;// L74 -unsigned int __anon_id_0_1455 : 16;// L75 +typedef struct ____locale_struct_1074 * (____locale_t_1080);// L27:L39 +typedef ____locale_t_1080 __locale_t_1081;// L42 +typedef int __wchar_t_1235;// L243:L321 +enum ____anonymous_tag_1239_1240 { +__P_ALL_1236, +__P_PID_1237, +__P_PGID_1238, }; -struct ____anonymous_tag_1456_1457 { -unsigned int ____w_stopval_1458 : 8;// L87 -unsigned int ____w_stopsig_1459 : 8;// L88 -unsigned int __anon_id_1_1460 : 16;// L89 +typedef enum ____anonymous_tag_1239_1240 __idtype_t_1241;// L50:L55 +struct ____anonymous_tag_1247_1248 { +unsigned int ____w_termsig_1249 : 7;// L72 +unsigned int ____w_coredump_1250 : 1;// L73 +unsigned int ____w_retcode_1251 : 8;// L74 +unsigned int __anon_id_0_1252 : 16;// L75 }; -union __wait_1461 { -int __w_status_1462;// L68 -struct ____anonymous_tag_1450_1451 ____wait_terminated_1463;// L69 -struct ____anonymous_tag_1456_1457 ____wait_stopped_1464;// L84 +struct ____anonymous_tag_1253_1254 { +unsigned int ____w_stopval_1255 : 8;// L87 +unsigned int ____w_stopsig_1256 : 8;// L88 +unsigned int __anon_id_1_1257 : 16;// L89 }; -union ____anonymous_tag_1465_1466 { -union __wait_1461 * (____uptr_1467);// L69 -int * (____iptr_1468);// L70 +union __wait_1258 { +int __w_status_1259;// L68 +struct ____anonymous_tag_1247_1248 ____wait_terminated_1260;// L69 +struct ____anonymous_tag_1253_1254 ____wait_stopped_1261;// L84 }; -typedef union ____anonymous_tag_1465_1466 ____WAIT_STATUS_1469;// L67:L71 -struct ____anonymous_tag_1470_1471 { -int __quot_1472;// L99 -int __rem_1473;// L100 +union ____anonymous_tag_1262_1263 { +union __wait_1258 * (____uptr_1264);// L69 +int * (____iptr_1265);// L70 }; -typedef struct ____anonymous_tag_1470_1471 __div_t_1474;// L97:L101 -struct ____anonymous_tag_1475_1476 { -long int __quot_1477;// L107 -long int __rem_1478;// L108 +typedef union ____anonymous_tag_1262_1263 ____WAIT_STATUS_1266;// L67:L71 +struct ____anonymous_tag_1267_1268 { +int __quot_1269;// L99 +int __rem_1270;// L100 }; -typedef struct ____anonymous_tag_1475_1476 __ldiv_t_1479;// L105:L109 -struct ____anonymous_tag_1480_1481 { -long long int __quot_1482;// L119 -long long int __rem_1483;// L120 +typedef struct ____anonymous_tag_1267_1268 __div_t_1271;// L97:L101 +struct ____anonymous_tag_1272_1273 { +long int __quot_1274;// L107 +long int __rem_1275;// L108 }; -typedef struct ____anonymous_tag_1480_1481 __lldiv_t_1484;// L117:L121 -typedef unsigned char ____u_char_1548;// L30 -typedef unsigned short int ____u_short_1549;// L31 -typedef unsigned int ____u_int_1550;// L32 -typedef unsigned long int ____u_long_1551;// L33 -typedef signed char ____int8_t_1552;// L36 -typedef unsigned char ____uint8_t_1553;// L37 -typedef signed short int ____int16_t_1554;// L38 -typedef unsigned short int ____uint16_t_1555;// L39 -typedef signed int ____int32_t_1556;// L40 -typedef unsigned int ____uint32_t_1557;// L41 -typedef signed long int ____int64_t_1558;// L43 -typedef unsigned long int ____uint64_t_1559;// L44 -typedef long int ____quad_t_1560;// L52 -typedef unsigned long int ____u_quad_t_1561;// L53 -typedef unsigned long int ____dev_t_1562;// L109:L124 -typedef unsigned int ____uid_t_1563;// L92:L125 -typedef unsigned int ____gid_t_1564;// L92:L126 -typedef unsigned long int ____ino_t_1565;// L94:L127 -typedef unsigned long int ____ino64_t_1566;// L109:L128 -typedef unsigned int ____mode_t_1567;// L92:L129 -typedef unsigned long int ____nlink_t_1568;// L94:L130 -typedef long int ____off_t_1569;// L93:L131 -typedef long int ____off64_t_1570;// L108:L132 -typedef int ____pid_t_1571;// L91:L133 -struct ____anonymous_tag_1572_1573 { -int ____val_1574[2];// L72 +typedef struct ____anonymous_tag_1272_1273 __ldiv_t_1276;// L105:L109 +struct ____anonymous_tag_1277_1278 { +long long int __quot_1279;// L119 +long long int __rem_1280;// L120 }; -typedef struct ____anonymous_tag_1572_1573 ____fsid_t_1575;// L72:L134 -typedef long int ____clock_t_1576;// L93:L135 -typedef unsigned long int ____rlim_t_1577;// L94:L136 -typedef unsigned long int ____rlim64_t_1578;// L109:L137 -typedef unsigned int ____id_t_1579;// L92:L138 -typedef long int ____time_t_1580;// L93:L139 -typedef unsigned int ____useconds_t_1581;// L92:L140 -typedef long int ____suseconds_t_1582;// L93:L141 -typedef int ____daddr_t_1583;// L91:L143 -typedef int ____key_t_1584;// L91:L144 -typedef int ____clockid_t_1585;// L91:L147 -typedef void * (____timer_t_1586);// L70:L150 -typedef long int ____blksize_t_1587;// L93:L153 -typedef long int ____blkcnt_t_1588;// L93:L158 -typedef long int ____blkcnt64_t_1589;// L108:L159 -typedef unsigned long int ____fsblkcnt_t_1590;// L94:L162 -typedef unsigned long int ____fsblkcnt64_t_1591;// L109:L163 -typedef unsigned long int ____fsfilcnt_t_1592;// L94:L166 -typedef unsigned long int ____fsfilcnt64_t_1593;// L109:L167 -typedef long int ____fsword_t_1594;// L93:L170 -typedef long int ____ssize_t_1595;// L110:L172 -typedef long int ____syscall_slong_t_1596;// L93:L175 -typedef unsigned long int ____syscall_ulong_t_1597;// L94:L177 -typedef ____off64_t_1570 ____loff_t_1598;// L181 -typedef ____quad_t_1560 * (____qaddr_t_1600);// L182 -typedef char * (____caddr_t_1601);// L183 -typedef long int ____intptr_t_1602;// L110:L186 -typedef unsigned int ____socklen_t_1603;// L92:L189 -typedef ____u_char_2 __u_char_1604;// L33 -typedef ____u_char_1385 __u_char_1605;// L33 -typedef ____u_char_1548 __u_char_1606;// L33 -typedef ____u_short_3 __u_short_1607;// L34 -typedef ____u_short_1386 __u_short_1608;// L34 -typedef ____u_short_1549 __u_short_1609;// L34 -typedef ____u_int_4 __u_int_1610;// L35 -typedef ____u_int_1387 __u_int_1611;// L35 -typedef ____u_int_1550 __u_int_1612;// L35 -typedef ____u_long_5 __u_long_1613;// L36 -typedef ____u_long_1388 __u_long_1614;// L36 -typedef ____u_long_1551 __u_long_1615;// L36 -typedef ____quad_t_14 __quad_t_1616;// L37 -typedef ____quad_t_1397 __quad_t_1617;// L37 -typedef ____quad_t_1560 __quad_t_1618;// L37 -typedef ____u_quad_t_15 __u_quad_t_1619;// L38 -typedef ____u_quad_t_1398 __u_quad_t_1620;// L38 -typedef ____u_quad_t_1561 __u_quad_t_1621;// L38 -typedef ____fsid_t_29 __fsid_t_1622;// L39 -typedef ____fsid_t_1412 __fsid_t_1623;// L39 -typedef ____fsid_t_1575 __fsid_t_1624;// L39 -typedef ____loff_t_52 __loff_t_1626;// L44 -typedef ____loff_t_1435 __loff_t_1627;// L44 -typedef ____loff_t_1598 __loff_t_1628;// L44 -typedef ____loff_t_52 __loff_t_1630;// L44 -typedef ____loff_t_1435 __loff_t_1631;// L44 -typedef ____loff_t_1598 __loff_t_1632;// L44 -typedef ____ino64_t_20 __ino_t_1634;// L50 -typedef ____ino64_t_1403 __ino_t_1635;// L50 -typedef ____ino64_t_1566 __ino_t_1636;// L50 -typedef ____ino_t_19 __ino_t_1638;// L48 -typedef ____ino_t_1402 __ino_t_1639;// L48 -typedef ____ino_t_1565 __ino_t_1640;// L48 -typedef ____dev_t_16 __dev_t_1642;// L60 -typedef ____dev_t_1399 __dev_t_1643;// L60 -typedef ____dev_t_1562 __dev_t_1644;// L60 -typedef ____gid_t_18 __gid_t_1646;// L65 -typedef ____gid_t_1401 __gid_t_1647;// L65 -typedef ____gid_t_1564 __gid_t_1648;// L65 -typedef ____gid_t_18 __gid_t_1650;// L65 -typedef ____gid_t_1401 __gid_t_1651;// L65 -typedef ____gid_t_1564 __gid_t_1652;// L65 -typedef ____mode_t_21 __mode_t_1654;// L70 -typedef ____mode_t_1404 __mode_t_1655;// L70 -typedef ____mode_t_1567 __mode_t_1656;// L70 -typedef ____nlink_t_22 __nlink_t_1658;// L75 -typedef ____nlink_t_1405 __nlink_t_1659;// L75 -typedef ____nlink_t_1568 __nlink_t_1660;// L75 -typedef ____uid_t_17 __uid_t_1662;// L80 -typedef ____uid_t_1400 __uid_t_1663;// L80 -typedef ____uid_t_1563 __uid_t_1664;// L80 -typedef ____uid_t_17 __uid_t_1666;// L80 -typedef ____uid_t_1400 __uid_t_1667;// L80 -typedef ____uid_t_1563 __uid_t_1668;// L80 -typedef ____off64_t_1407 __off_t_1670;// L88 -typedef ____off64_t_1570 __off_t_1671;// L88 -typedef ____off_t_1406 __off_t_1673;// L86 -typedef ____off_t_1569 __off_t_1674;// L86 -typedef ____pid_t_25 __pid_t_1676;// L98 -typedef ____pid_t_1408 __pid_t_1677;// L98 -typedef ____pid_t_1571 __pid_t_1678;// L98 -typedef ____pid_t_1408 __pid_t_1680;// L98 -typedef ____pid_t_1571 __pid_t_1681;// L98 -typedef ____id_t_33 __id_t_1683;// L104 -typedef ____id_t_1416 __id_t_1684;// L104 -typedef ____id_t_1579 __id_t_1685;// L104 -typedef ____ssize_t_1432 __ssize_t_1687;// L109 -typedef ____ssize_t_1595 __ssize_t_1688;// L109 -typedef ____daddr_t_37 __daddr_t_1690;// L115 -typedef ____daddr_t_1420 __daddr_t_1691;// L115 -typedef ____daddr_t_1583 __daddr_t_1692;// L115 -typedef ____caddr_t_55 __caddr_t_1694;// L116 -typedef ____caddr_t_1438 __caddr_t_1695;// L116 -typedef ____caddr_t_1601 __caddr_t_1696;// L116 -typedef ____key_t_38 __key_t_1697;// L122 -typedef ____key_t_1421 __key_t_1698;// L122 -typedef ____key_t_1584 __key_t_1699;// L122 -typedef ____key_t_38 __key_t_1701;// L122 -typedef ____key_t_1421 __key_t_1702;// L122 -typedef ____key_t_1584 __key_t_1703;// L122 -typedef ____clock_t_30 __clock_t_1705;// L59 -typedef ____clock_t_1413 __clock_t_1706;// L59 -typedef ____clock_t_1576 __clock_t_1707;// L59 -typedef ____time_t_34 __time_t_1709;// L75 -typedef ____time_t_1417 __time_t_1710;// L75 -typedef ____time_t_1580 __time_t_1711;// L75 -typedef ____clockid_t_39 __clockid_t_1713;// L91 -typedef ____clockid_t_1422 __clockid_t_1714;// L91 -typedef ____clockid_t_1585 __clockid_t_1715;// L91 -typedef ____timer_t_40 __timer_t_1717;// L103 -typedef ____timer_t_1423 __timer_t_1718;// L103 -typedef ____timer_t_1586 __timer_t_1719;// L103 -typedef unsigned long int __ulong_1721;// L150 -typedef unsigned long int __ulong_1722;// L150 -typedef unsigned long int __ulong_1723;// L150 -typedef unsigned short int __ushort_1724;// L151 -typedef unsigned int __uint_1725;// L152 -typedef int __int8_t_1726;// L188:L194 -typedef int __int16_t_1727;// L188:L195 -typedef int __int32_t_1728;// L188:L196 -typedef int __int64_t_1729;// L188:L197 -typedef unsigned int __u_int8_t_1730;// L190:L200 -typedef unsigned int __u_int16_t_1731;// L190:L201 -typedef unsigned int __u_int32_t_1732;// L190:L202 -typedef unsigned int __u_int64_t_1733;// L190:L203 -typedef int __register_t_1734;// L205 -typedef int ____sig_atomic_t_1744;// L22 -struct ____anonymous_tag_1745_1746 { -unsigned long int ____val_1747[( 1024 / ( 8 * sizeof(unsigned long) ) )];// L29 +typedef struct ____anonymous_tag_1277_1278 __lldiv_t_1281;// L117:L121 +typedef ____u_char_2 __u_char_1341;// L33 +typedef ____u_short_3 __u_short_1342;// L34 +typedef ____u_int_4 __u_int_1343;// L35 +typedef ____u_long_5 __u_long_1344;// L36 +typedef ____quad_t_14 __quad_t_1345;// L37 +typedef ____u_quad_t_15 __u_quad_t_1346;// L38 +typedef ____fsid_t_29 __fsid_t_1347;// L39 +typedef ____loff_t_52 __loff_t_1348;// L44 +typedef ____ino64_t_20 __ino_t_1349;// L50 +typedef ____ino_t_19 __ino_t_1350;// L48 +typedef ____dev_t_16 __dev_t_1351;// L60 +typedef ____gid_t_18 __gid_t_1352;// L65 +typedef ____gid_t_18 __gid_t_1353;// L65 +typedef ____mode_t_21 __mode_t_1354;// L70 +typedef ____nlink_t_22 __nlink_t_1355;// L75 +typedef ____uid_t_17 __uid_t_1356;// L80 +typedef ____uid_t_17 __uid_t_1357;// L80 +typedef ____pid_t_25 __pid_t_1358;// L98 +typedef ____id_t_33 __id_t_1359;// L104 +typedef ____daddr_t_37 __daddr_t_1360;// L115 +typedef ____caddr_t_54 __caddr_t_1361;// L116 +typedef ____key_t_38 __key_t_1362;// L122 +typedef ____key_t_38 __key_t_1363;// L122 +typedef ____clock_t_30 __clock_t_1364;// L59 +typedef ____time_t_34 __time_t_1365;// L75 +typedef ____clockid_t_39 __clockid_t_1366;// L91 +typedef ____timer_t_40 __timer_t_1367;// L103 +typedef unsigned long int __ulong_1368;// L150 +typedef unsigned long int __ulong_1369;// L150 +typedef unsigned long int __ulong_1370;// L150 +typedef unsigned short int __ushort_1371;// L151 +typedef unsigned int __uint_1372;// L152 +typedef int __int8_t_1373;// L188:L194 +typedef int __int16_t_1374;// L188:L195 +typedef int __int32_t_1375;// L188:L196 +typedef int __int64_t_1376;// L188:L197 +typedef unsigned int __u_int8_t_1377;// L190:L200 +typedef unsigned int __u_int16_t_1378;// L190:L201 +typedef unsigned int __u_int32_t_1379;// L190:L202 +typedef unsigned int __u_int64_t_1380;// L190:L203 +typedef int __register_t_1381;// L205 +typedef int ____sig_atomic_t_1387;// L22 +struct ____anonymous_tag_1388_1389 { +unsigned long int ____val_1390[( 1024 / ( 8 * sizeof(unsigned long) ) )];// L29 }; -typedef struct ____anonymous_tag_1745_1746 ____sigset_t_1748;// L27:L30 -typedef ____sigset_t_1748 __sigset_t_1749;// L37 -struct __timespec_1750 { -____time_t_34 __tv_sec_1751;// L0 -____time_t_1417 __tv_sec_1752;// L0 -____time_t_1580 __tv_sec_1753;// L0 -____syscall_slong_t_50 __tv_nsec_1755;// L0 -____syscall_slong_t_1433 __tv_nsec_1756;// L0 -____syscall_slong_t_1596 __tv_nsec_1757;// L0 +typedef struct ____anonymous_tag_1388_1389 ____sigset_t_1391;// L27:L30 +typedef ____sigset_t_1391 __sigset_t_1392;// L37 +struct __timespec_1393 { +____time_t_34 __tv_sec_1394;// L0 +____syscall_slong_t_50 __tv_nsec_1395;// L0 }; -struct __timeval_1760 { -____time_t_34 __tv_sec_1761;// L0 -____time_t_1417 __tv_sec_1762;// L0 -____time_t_1580 __tv_sec_1763;// L0 -____suseconds_t_36 __tv_usec_1765;// L0 -____suseconds_t_1419 __tv_usec_1766;// L0 -____suseconds_t_1582 __tv_usec_1767;// L0 +struct __timeval_1396 { +____time_t_34 __tv_sec_1397;// L0 +____suseconds_t_36 __tv_usec_1398;// L0 }; -typedef ____suseconds_t_36 __suseconds_t_1770;// L48 -typedef ____suseconds_t_1419 __suseconds_t_1771;// L48 -typedef ____suseconds_t_1582 __suseconds_t_1772;// L48 -typedef long int ____fd_mask_1774;// L54 -typedef long int ____fd_mask_1775;// L54 -struct ____anonymous_tag_1776_1777 { -____fd_mask_1774 ____fds_bits_1778[1024 / ( 8 * ( int ) sizeof(long) )];// L0 -____fd_mask_1775 ____fds_bits_1780[1024 / ( 8 * ( int ) sizeof(long) )];// L0 +typedef ____suseconds_t_36 __suseconds_t_1399;// L48 +typedef long int ____fd_mask_1400;// L54 +typedef long int ____fd_mask_1401;// L54 +struct ____anonymous_tag_1402_1403 { +____fd_mask_1400 ____fds_bits_1404[1024 / ( 8 * ( int ) sizeof(long) )];// L0 +____fd_mask_1401 ____fds_bits_1405[1024 / ( 8 * ( int ) sizeof(long) )];// L0 }; -typedef struct ____anonymous_tag_1776_1777 __fd_set_1783;// L64:L75 -typedef ____fd_mask_1774 __fd_mask_1784;// L82 -typedef ____fd_mask_1775 __fd_mask_1785;// L82 -typedef ____blksize_t_41 __blksize_t_1833;// L228 -typedef ____blksize_t_1424 __blksize_t_1834;// L228 -typedef ____blksize_t_1587 __blksize_t_1835;// L228 -typedef ____blkcnt_t_42 __blkcnt_t_1837;// L235 -typedef ____blkcnt_t_1425 __blkcnt_t_1838;// L235 -typedef ____blkcnt_t_1588 __blkcnt_t_1839;// L235 -typedef ____fsblkcnt_t_44 __fsblkcnt_t_1841;// L239 -typedef ____fsblkcnt_t_1427 __fsblkcnt_t_1842;// L239 -typedef ____fsblkcnt_t_1590 __fsblkcnt_t_1843;// L239 -typedef ____blkcnt64_t_43 __blkcnt_t_1845;// L248 -typedef ____blkcnt64_t_1426 __blkcnt_t_1846;// L248 -typedef ____blkcnt64_t_1589 __blkcnt_t_1847;// L248 -typedef ____fsblkcnt64_t_45 __fsblkcnt_t_1849;// L252 -typedef ____fsblkcnt64_t_1428 __fsblkcnt_t_1850;// L252 -typedef ____fsblkcnt64_t_1591 __fsblkcnt_t_1851;// L252 -typedef ____fsfilcnt_t_46 __fsfilcnt_t_1853;// L243 -typedef ____fsfilcnt_t_1429 __fsfilcnt_t_1854;// L243 -typedef ____fsfilcnt_t_1592 __fsfilcnt_t_1855;// L243 -typedef ____fsfilcnt64_t_47 __fsfilcnt_t_1857;// L256 -typedef ____fsfilcnt64_t_1430 __fsfilcnt_t_1858;// L256 -typedef ____fsfilcnt64_t_1593 __fsfilcnt_t_1859;// L256 -typedef unsigned long int __pthread_t_1861;// L60 -union __pthread_attr_t_1862 { -char ____size_1863[56];// L65 -long int ____align_1864;// L66 +typedef struct ____anonymous_tag_1402_1403 __fd_set_1406;// L64:L75 +typedef ____fd_mask_1400 __fd_mask_1407;// L82 +typedef ____fd_mask_1401 __fd_mask_1408;// L82 +typedef ____blksize_t_41 __blksize_t_1444;// L228 +typedef ____blkcnt_t_42 __blkcnt_t_1445;// L235 +typedef ____fsblkcnt_t_44 __fsblkcnt_t_1446;// L239 +typedef ____blkcnt64_t_43 __blkcnt_t_1447;// L248 +typedef ____fsblkcnt64_t_45 __fsblkcnt_t_1448;// L252 +typedef ____fsfilcnt_t_46 __fsfilcnt_t_1449;// L243 +typedef ____fsfilcnt64_t_47 __fsfilcnt_t_1450;// L256 +typedef unsigned long int __pthread_t_1451;// L60 +union __pthread_attr_t_1452 { +char ____size_1453[56];// L65 +long int ____align_1454;// L66 }; -typedef union __pthread_attr_t_1862 __pthread_attr_t_1865;// L69 -struct ____pthread_internal_list_1867 { -struct __forward_tag_reference_1866 * (____prev_1868);// L0 -struct __forward_tag_reference_1866 * (____next_1869);// L0 +typedef union __pthread_attr_t_1452 __pthread_attr_t_1455;// L69 +struct ____pthread_internal_list_1457 { +struct __forward_tag_reference_1456 * (____prev_1458);// L0 +struct __forward_tag_reference_1456 * (____next_1459);// L0 }; -typedef struct ____pthread_internal_list_1867 ____pthread_list_t_1870;// L75:L79 -typedef struct ____pthread_internal_list_1867 ____pthread_list_t_1871;// L75:L79 -struct ____pthread_mutex_s_1872 { -int ____lock_1873;// L94 -unsigned int ____count_1874;// L95 -int ____owner_1875;// L96 -unsigned int ____nusers_1876;// L98 -int ____kind_1877;// L102 -short ____spins_1878;// L104 -short ____elision_1879;// L105 -____pthread_list_t_1870 ____list_1880;// L0 -____pthread_list_t_1871 ____list_1881;// L0 +typedef struct ____pthread_internal_list_1457 ____pthread_list_t_1460;// L75:L79 +typedef struct ____pthread_internal_list_1457 ____pthread_list_t_1461;// L75:L79 +struct ____pthread_mutex_s_1462 { +int ____lock_1463;// L94 +unsigned int ____count_1464;// L95 +int ____owner_1465;// L96 +unsigned int ____nusers_1466;// L98 +int ____kind_1467;// L102 +short ____spins_1468;// L104 +short ____elision_1469;// L105 +____pthread_list_t_1460 ____list_1470;// L0 +____pthread_list_t_1461 ____list_1471;// L0 }; -union ____anonymous_tag_1882_1883 { -struct ____pthread_mutex_s_1872 ____data_1884;// L92 -char ____size_1885[40];// L126 -long int ____align_1886;// L127 +union ____anonymous_tag_1472_1473 { +struct ____pthread_mutex_s_1462 ____data_1474;// L92 +char ____size_1475[40];// L126 +long int ____align_1476;// L127 }; -typedef union ____anonymous_tag_1882_1883 __pthread_mutex_t_1887;// L90:L128 -union ____anonymous_tag_1888_1889 { -char ____size_1890[4];// L132 -int ____align_1891;// L133 +typedef union ____anonymous_tag_1472_1473 __pthread_mutex_t_1477;// L90:L128 +union ____anonymous_tag_1478_1479 { +char ____size_1480[4];// L132 +int ____align_1481;// L133 }; -typedef union ____anonymous_tag_1888_1889 __pthread_mutexattr_t_1892;// L130:L134 -typedef int (* (____compar_fn_t_2026)) (const void *, const void *);// L741 +typedef union ____anonymous_tag_1478_1479 __pthread_mutexattr_t_1482;// L130:L134 +typedef int (* (____compar_fn_t_1591)) (const void *, const void *);// L741 -struct __forward_tag_reference_89 { // generated union of struct variations +struct __forward_tag_reference_57 { // generated union of struct variations union { -struct ___IO_marker_90 ___IO_marker_90; +struct ___IO_FILE_95 ___IO_FILE_95; +struct ___IO_FILE_119 ___IO_FILE_119; }; }; -struct __forward_tag_reference_58 { // generated union of struct variations +struct __forward_tag_reference_1073 { // generated union of struct variations union { -struct ___IO_FILE_99 ___IO_FILE_99; -struct ___IO_FILE_124 ___IO_FILE_124; }; }; -struct __forward_tag_reference_1170 { // generated union of struct variations +struct __forward_tag_reference_85 { // generated union of struct variations union { +struct ___IO_marker_86 ___IO_marker_86; }; }; -struct __forward_tag_reference_87 { // generated union of struct variations +struct __forward_tag_reference_1456 { // generated union of struct variations union { }; }; -struct __forward_tag_reference_174 { // generated union of struct variations +struct __forward_tag_reference_83 { // generated union of struct variations union { }; }; -struct __forward_tag_reference_1866 { // generated union of struct variations +struct __forward_tag_reference_166 { // generated union of struct variations union { }; }; @@ -2198,225 +1471,225 @@ union { // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_58 ;// L0 +struct __forward_tag_reference_57 ;// L0 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_87 ;// L0 -struct __forward_tag_reference_87 ;// L0 -struct __forward_tag_reference_58 ;// L0 +struct __forward_tag_reference_83 ;// L0 +struct __forward_tag_reference_83 ;// L0 +struct __forward_tag_reference_57 ;// L0 // typedef moved to top of scope -struct ___IO_marker_90 ;// L156 -enum ____codecvt_result_98 ;// L176 -struct ___IO_FILE_99 ;// L241 +struct ___IO_marker_86 ;// L156 +enum ____codecvt_result_94 ;// L176 +struct ___IO_FILE_95 ;// L241 -struct ___IO_FILE_124 ;// L241 -struct ___IO_FILE_complete_157 ;// L241 +struct ___IO_FILE_119 ;// L241 +struct ___IO_FILE_complete_150 ;// L241 // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_174 ;// L0 -extern struct __forward_tag_reference_174 ___IO_2_1_stdin__175;// L315 -extern struct __forward_tag_reference_174 ___IO_2_1_stdout__176;// L316 -extern struct __forward_tag_reference_174 ___IO_2_1_stderr__177;// L317 +struct __forward_tag_reference_166 ;// L0 +extern struct __forward_tag_reference_166 ___IO_2_1_stdin__167;// L315 +extern struct __forward_tag_reference_166 ___IO_2_1_stdout__168;// L316 +extern struct __forward_tag_reference_166 ___IO_2_1_stderr__169;// L317 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern int (____underflow_196) (___IO_FILE_171 *);// L385 -extern int (____underflow_197) (___IO_FILE_172 *);// L385 -extern int (____uflow_199) (___IO_FILE_171 *);// L386 -extern int (____uflow_200) (___IO_FILE_172 *);// L386 -extern int (____overflow_202) (___IO_FILE_171 *, int );// L387 -extern int (____overflow_203) (___IO_FILE_172 *, int );// L387 -extern int (___IO_getc_208) (___IO_FILE_171 * (____fp_205));// L429 -extern int (___IO_getc_209) (___IO_FILE_172 * (____fp_206));// L429 -extern int (___IO_putc_215) (int ____c_211, ___IO_FILE_171 * (____fp_212));// L430 -extern int (___IO_putc_216) (int ____c_211, ___IO_FILE_172 * (____fp_213));// L430 -extern int (___IO_feof_221) (___IO_FILE_171 * (____fp_218));// L431 -extern int (___IO_feof_222) (___IO_FILE_172 * (____fp_219));// L431 -extern int (___IO_ferror_227) (___IO_FILE_171 * (____fp_224));// L432 -extern int (___IO_ferror_228) (___IO_FILE_172 * (____fp_225));// L432 -extern int (___IO_peekc_locked_233) (___IO_FILE_171 * (____fp_230));// L434 -extern int (___IO_peekc_locked_234) (___IO_FILE_172 * (____fp_231));// L434 -extern void (___IO_flockfile_236) (___IO_FILE_171 *);// L440 -extern void (___IO_flockfile_237) (___IO_FILE_172 *);// L440 -extern void (___IO_funlockfile_239) (___IO_FILE_171 *);// L441 -extern void (___IO_funlockfile_240) (___IO_FILE_172 *);// L441 -extern int (___IO_ftrylockfile_242) (___IO_FILE_171 *);// L442 -extern int (___IO_ftrylockfile_243) (___IO_FILE_172 *);// L442 -extern int (___IO_vfscanf_245) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_247) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_251) (___IO_FILE_171 * __restrict , const char * __restrict , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_252) (___IO_FILE_172 * __restrict , const char * __restrict , int * __restrict );// L459:L460 -extern int (___IO_vfprintf_254) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 -extern int (___IO_vfprintf_256) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 -extern int (___IO_vfprintf_260) ();// L461:L462 -extern ____ssize_t_49 (___IO_padn_261) (___IO_FILE_171 *, int , ____ssize_t_49 );// L463 -extern ____ssize_t_49 (___IO_padn_262) (___IO_FILE_172 *, int , ____ssize_t_49 );// L463 -extern __size_t_1 (___IO_sgetn_265) (___IO_FILE_171 *, void *, __size_t_1 );// L464 -extern __size_t_1 (___IO_sgetn_266) (___IO_FILE_172 *, void *, __size_t_1 );// L464 -extern ____off64_t_24 (___IO_seekoff_268) (___IO_FILE_171 *, ____off64_t_24 , int , int );// L466 -extern ____off64_t_24 (___IO_seekoff_269) (___IO_FILE_172 *, ____off64_t_24 , int , int );// L466 -extern ____off64_t_24 (___IO_seekpos_272) (___IO_FILE_171 *, ____off64_t_24 , int );// L467 -extern ____off64_t_24 (___IO_seekpos_273) (___IO_FILE_172 *, ____off64_t_24 , int );// L467 -extern void (___IO_free_backup_area_276) (___IO_FILE_171 *);// L469 -extern void (___IO_free_backup_area_277) (___IO_FILE_172 *);// L469 +extern int (____underflow_184) (___IO_FILE_163 *);// L385 +extern int (____underflow_185) (___IO_FILE_164 *);// L385 +extern int (____uflow_186) (___IO_FILE_163 *);// L386 +extern int (____uflow_187) (___IO_FILE_164 *);// L386 +extern int (____overflow_188) (___IO_FILE_163 *, int );// L387 +extern int (____overflow_189) (___IO_FILE_164 *, int );// L387 +extern int (___IO_getc_193) (___IO_FILE_163 * (____fp_190));// L429 +extern int (___IO_getc_194) (___IO_FILE_164 * (____fp_191));// L429 +extern int (___IO_putc_199) (int ____c_195, ___IO_FILE_163 * (____fp_196));// L430 +extern int (___IO_putc_200) (int ____c_195, ___IO_FILE_164 * (____fp_197));// L430 +extern int (___IO_feof_204) (___IO_FILE_163 * (____fp_201));// L431 +extern int (___IO_feof_205) (___IO_FILE_164 * (____fp_202));// L431 +extern int (___IO_ferror_209) (___IO_FILE_163 * (____fp_206));// L432 +extern int (___IO_ferror_210) (___IO_FILE_164 * (____fp_207));// L432 +extern int (___IO_peekc_locked_214) (___IO_FILE_163 * (____fp_211));// L434 +extern int (___IO_peekc_locked_215) (___IO_FILE_164 * (____fp_212));// L434 +extern void (___IO_flockfile_216) (___IO_FILE_163 *);// L440 +extern void (___IO_flockfile_217) (___IO_FILE_164 *);// L440 +extern void (___IO_funlockfile_218) (___IO_FILE_163 *);// L441 +extern void (___IO_funlockfile_219) (___IO_FILE_164 *);// L441 +extern int (___IO_ftrylockfile_220) (___IO_FILE_163 *);// L442 +extern int (___IO_ftrylockfile_221) (___IO_FILE_164 *);// L442 +extern int (___IO_vfscanf_222) (___IO_FILE_163 * __restrict , const char * __restrict , ____gnuc_va_list_82 , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_224) (___IO_FILE_164 * __restrict , const char * __restrict , ____gnuc_va_list_82 , int * __restrict );// L459:L460 + + +extern int (___IO_vfprintf_231) (___IO_FILE_163 * __restrict , const char * __restrict , ____gnuc_va_list_82 );// L461:L462 +extern int (___IO_vfprintf_233) (___IO_FILE_164 * __restrict , const char * __restrict , ____gnuc_va_list_82 );// L461:L462 + +extern ____ssize_t_49 (___IO_padn_238) (___IO_FILE_163 *, int , ____ssize_t_49 );// L463 +extern ____ssize_t_49 (___IO_padn_239) (___IO_FILE_164 *, int , ____ssize_t_49 );// L463 +extern __size_t_1 (___IO_sgetn_240) (___IO_FILE_163 *, void *, __size_t_1 );// L464 +extern __size_t_1 (___IO_sgetn_241) (___IO_FILE_164 *, void *, __size_t_1 );// L464 +extern ____off64_t_24 (___IO_seekoff_242) (___IO_FILE_163 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekoff_243) (___IO_FILE_164 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekpos_244) (___IO_FILE_163 *, ____off64_t_24 , int );// L467 +extern ____off64_t_24 (___IO_seekpos_245) (___IO_FILE_164 *, ____off64_t_24 , int );// L467 +extern void (___IO_free_backup_area_246) (___IO_FILE_163 *);// L469 +extern void (___IO_free_backup_area_247) (___IO_FILE_164 *);// L469 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern struct ___IO_FILE_99 * (__stdin_291);// L168 -extern struct ___IO_FILE_124 * (__stdin_292);// L168 -extern struct ___IO_FILE_99 * (__stdout_294);// L169 -extern struct ___IO_FILE_124 * (__stdout_295);// L169 -extern struct ___IO_FILE_99 * (__stderr_297);// L170 -extern struct ___IO_FILE_124 * (__stderr_298);// L170 -extern int (__remove_301) (const char * (____filename_300));// L178 -extern int (__rename_304) (const char * (____old_302), const char * (____new_303));// L180 -extern int (__renameat_309) (int ____oldfd_305, const char * (____old_306), int ____newfd_307, const char * (____new_308));// L185:L186 -extern __FILE_59 * ((__tmpfile_310) (void ));// L195 -extern __FILE_59 * ((__tmpfile_316) (void ));// L198 -extern __FILE_59 * ((__tmpfile_314) (void ));// L195 -extern __FILE_59 * ((__tmpfile_312) (void ));// L198 -extern char * ((__tmpnam_319) (char * (____s_318)));// L209 -extern char * ((__tmpnam_320) (char * (____s_318)));// L209 -extern char * ((__tmpnam_r_322) (char * (____s_321)));// L215 -extern char * ((__tmpnam_r_323) (char * (____s_321)));// L215 -extern char * ((__tempnam_326) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 -extern char * ((__tempnam_327) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 -extern int (__fclose_330) (__FILE_59 * (____stream_328));// L237 -extern int (__fclose_332) (__FILE_59 * (____stream_328));// L237 -extern int (__fflush_336) (__FILE_59 * (____stream_334));// L242 -extern int (__fflush_unlocked_340) (__FILE_59 * (____stream_338));// L252 -extern __FILE_59 * ((__fopen_344) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 -extern __FILE_59 * ((__fopen_346) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 -extern __FILE_59 * ((__fopen_354) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 -extern __FILE_59 * ((__fopen_356) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 -extern __FILE_59 * ((__freopen_362) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 -extern __FILE_59 * ((__freopen_368) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 -extern __FILE_59 * ((__freopen_366) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 -extern __FILE_59 * ((__freopen_364) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 -extern __FILE_59 * ((__fdopen_372) (int ____fd_370, const char * (____modes_371)));// L306 -extern __FILE_59 * ((__fdopen_374) (int ____fd_370, const char * (____modes_371)));// L306 -extern __FILE_59 * ((__fmemopen_379) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 -extern __FILE_59 * ((__fmemopen_381) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 -extern __FILE_59 * ((__open_memstream_385) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 -extern __FILE_59 * ((__open_memstream_387) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 -extern void (__setbuf_392) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 -extern void (__setbuf_394) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 -extern int (__setvbuf_401) (__FILE_59 * __restrict ____stream_396, char * __restrict ____buf_398, int ____modes_399, __size_t_1 ____n_400);// L336:L337 -extern void (__setbuffer_407) (__FILE_59 * __restrict ____stream_403, char * __restrict ____buf_405, __size_t_1 ____size_406);// L343:L344 -extern void (__setlinebuf_411) (__FILE_59 * (____stream_409));// L347 -extern int (__fprintf_416) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 -extern int (__fprintf_418) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 -extern int (__printf_421) (const char * __restrict ____format_420, ... );// L362 -extern int (__sprintf_424) (char * __restrict ____s_422, const char * __restrict ____format_423, ... );// L364:L365 -extern int (__vfprintf_430) (__FILE_59 * __restrict ____s_425, const char * __restrict ____format_427, ____gnuc_va_list_86 ____arg_428);// L371:L372 -extern int (__vprintf_437) (const char * __restrict ____format_434, ____gnuc_va_list_86 ____arg_435);// L377 -extern int (__vsprintf_443) (char * __restrict ____s_439, const char * __restrict ____format_440, ____gnuc_va_list_86 ____arg_441);// L379:L380 -extern int (__snprintf_448) (char * __restrict ____s_445, __size_t_1 ____maxlen_446, const char * __restrict ____format_447, ... );// L386:L388 -extern int (__vsnprintf_454) (char * __restrict ____s_449, __size_t_1 ____maxlen_450, const char * __restrict ____format_451, ____gnuc_va_list_86 ____arg_452);// L390:L392 -extern int (__vdprintf_460) (int ____fd_456, const char * __restrict ____fmt_457, ____gnuc_va_list_86 ____arg_458);// L412:L414 -extern int (__dprintf_464) (int ____fd_462, const char * __restrict ____fmt_463, ... );// L415:L416 -extern int (__fscanf_468) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__fscanf_470) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__fscanf_472) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__fscanf_474) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__scanf_477) (const char * __restrict ____format_476, ... );// L431 -extern int (__scanf_478) (const char * __restrict ____format_476, ... );// L431 -extern int (__sscanf_481) (const char * __restrict ____s_479, const char * __restrict ____format_480, ... );// L433:L434 - - - - - - - -extern int (__vfscanf_509) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 -extern int (__vfscanf_513) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 -extern int (__vscanf_520) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 -extern int (__vscanf_522) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 -extern int (__vsscanf_528) (const char * __restrict ____s_524, const char * __restrict ____format_525, ____gnuc_va_list_86 ____arg_526);// L483:L485 - - - - - -extern int (__fgetc_563) (__FILE_59 * (____stream_561));// L531 -extern int (__getc_567) (__FILE_59 * (____stream_565));// L532 -extern int (__getchar_569) (void );// L538 -extern int (__getc_unlocked_572) (__FILE_59 * (____stream_570));// L550 -extern int (__getchar_unlocked_574) (void );// L551 -extern int (__fgetc_unlocked_577) (__FILE_59 * (____stream_575));// L561 -extern int (__fputc_582) (int ____c_579, __FILE_59 * (____stream_580));// L573 -extern int (__fputc_584) (int ____c_579, __FILE_59 * (____stream_580));// L573 -extern int (__putc_589) (int ____c_586, __FILE_59 * (____stream_587));// L574 -extern int (__putchar_592) (int ____c_591);// L580 -extern int (__fputc_unlocked_596) (int ____c_593, __FILE_59 * (____stream_594));// L594 -extern int (__putc_unlocked_601) (int ____c_598, __FILE_59 * (____stream_599));// L602 -extern int (__putchar_unlocked_604) (int ____c_603);// L603 -extern int (__getw_607) (__FILE_59 * (____stream_605));// L610 -extern int (__putw_612) (int ____w_609, __FILE_59 * (____stream_610));// L613 -extern char * ((__fgets_618) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern char * ((__fgets_620) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern char * ((__fgets_622) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern char * ((__fgets_624) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern ____ssize_t_49 (____getdelim_631) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 -extern ____ssize_t_49 (____getdelim_635) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 -extern ____ssize_t_49 (__getdelim_644) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 -extern ____ssize_t_49 (__getdelim_648) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 -extern ____ssize_t_49 (__getline_656) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 -extern ____ssize_t_49 (__getline_660) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 -extern int (__fputs_667) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 -extern int (__fputs_669) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 -extern int (__puts_672) (const char * (____s_671));// L695 -extern int (__ungetc_676) (int ____c_673, __FILE_59 * (____stream_674));// L702 -extern int (__fseek_714) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 -extern int (__fseek_716) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 -extern long int (__ftell_720) (__FILE_59 * (____stream_718));// L754 -extern long int (__ftell_722) (__FILE_59 * (____stream_718));// L754 -extern void (__rewind_726) (__FILE_59 * (____stream_724));// L759 -extern int (__fseeko_733) (__FILE_59 * (____stream_728), ____off_t_23 ____off_730, int ____whence_732);// L773 -extern int (__fseeko_744) (__FILE_59 * (____stream_739), ____off64_t_24 ____off_741, int ____whence_743);// L781:L783 -extern ____off_t_23 (__ftello_758) (__FILE_59 * (____stream_737));// L778 -extern ____off_t_23 (__ftello_750) (__FILE_59 * (____stream_737));// L778 -extern int (__fgetpos_766) (__FILE_59 * __restrict ____stream_762, __fpos_t_287 * __restrict ____pos_764);// L798 -extern ____off64_t_24 (__ftello_754) (__FILE_59 * (____stream_748));// L784 -extern int (__fgetpos_778) (__FILE_59 * __restrict ____stream_774, __fpos_t_289 * __restrict ____pos_776);// L806:L807 -extern int (__fsetpos_786) (__FILE_59 * (____stream_770), const __fpos_t_287 * (____pos_772));// L803 -extern int (__fsetpos_790) (__FILE_59 * (____stream_782), const __fpos_t_289 * (____pos_784));// L808:L809 -extern void (__clearerr_796) (__FILE_59 * (____stream_794));// L826 -extern int (__feof_800) (__FILE_59 * (____stream_798));// L828 -extern int (__feof_802) (__FILE_59 * (____stream_798));// L828 -extern int (__ferror_806) (__FILE_59 * (____stream_804));// L830 -extern int (__ferror_808) (__FILE_59 * (____stream_804));// L830 -extern void (__clearerr_unlocked_812) (__FILE_59 * (____stream_810));// L835 -extern int (__feof_unlocked_816) (__FILE_59 * (____stream_814));// L836 -extern int (__feof_unlocked_818) (__FILE_59 * (____stream_814));// L836 -extern int (__ferror_unlocked_822) (__FILE_59 * (____stream_820));// L837 -extern int (__ferror_unlocked_824) (__FILE_59 * (____stream_820));// L837 -extern void (__perror_827) (const char * (____s_826));// L846 -extern void (__perror_828) (const char * (____s_826));// L846 -extern int __sys_nerr_829;// L26 - -extern int (__fileno_835) (__FILE_59 * (____stream_831));// L858 -extern int (__fileno_833) (__FILE_59 * (____stream_831));// L858 -extern int (__fileno_unlocked_841) (__FILE_59 * (____stream_837));// L863 -extern int (__fileno_unlocked_839) (__FILE_59 * (____stream_837));// L863 -extern __FILE_59 * ((__popen_845) (const char * (____command_843), const char * (____modes_844)));// L872 -extern __FILE_59 * ((__popen_847) (const char * (____command_843), const char * (____modes_844)));// L872 -extern int (__pclose_851) (__FILE_59 * (____stream_849));// L878 -extern char * ((__ctermid_854) (char * (____s_853)));// L884 -extern void (__flockfile_857) (__FILE_59 * (____stream_855));// L912 -extern int (__ftrylockfile_861) (__FILE_59 * (____stream_859));// L916 -extern int (__ftrylockfile_863) (__FILE_59 * (____stream_859));// L916 -extern void (__funlockfile_867) (__FILE_59 * (____stream_865));// L919 +extern struct ___IO_FILE_95 * (__stdin_257);// L168 +extern struct ___IO_FILE_119 * (__stdin_258);// L168 +extern struct ___IO_FILE_95 * (__stdout_259);// L169 +extern struct ___IO_FILE_119 * (__stdout_260);// L169 +extern struct ___IO_FILE_95 * (__stderr_261);// L170 +extern struct ___IO_FILE_119 * (__stderr_262);// L170 +extern int (__remove_264) (const char * (____filename_263));// L178 +extern int (__rename_267) (const char * (____old_265), const char * (____new_266));// L180 +extern int (__renameat_272) (int ____oldfd_268, const char * (____old_269), int ____newfd_270, const char * (____new_271));// L185:L186 +extern __FILE_58 * ((__tmpfile_273) (void ));// L195 +extern __FILE_58 * ((__tmpfile_279) (void ));// L198 +extern __FILE_58 * ((__tmpfile_277) (void ));// L198 +extern __FILE_58 * ((__tmpfile_275) (void ));// L195 +extern char * ((__tmpnam_282) (char * (____s_281)));// L209 +extern char * ((__tmpnam_283) (char * (____s_281)));// L209 +extern char * ((__tmpnam_r_285) (char * (____s_284)));// L215 +extern char * ((__tmpnam_r_286) (char * (____s_284)));// L215 +extern char * ((__tempnam_289) (const char * (____dir_287), const char * (____pfx_288)));// L227:L228 +extern char * ((__tempnam_290) (const char * (____dir_287), const char * (____pfx_288)));// L227:L228 +extern int (__fclose_293) (__FILE_58 * (____stream_291));// L237 +extern int (__fclose_295) (__FILE_58 * (____stream_291));// L237 +extern int (__fflush_299) (__FILE_58 * (____stream_297));// L242 +extern int (__fflush_unlocked_303) (__FILE_58 * (____stream_301));// L252 +extern __FILE_58 * ((__fopen_307) (const char * __restrict ____filename_305, const char * __restrict ____modes_306));// L272:L273 +extern __FILE_58 * ((__fopen_309) (const char * __restrict ____filename_305, const char * __restrict ____modes_306));// L272:L273 +extern __FILE_58 * ((__fopen_317) (const char * __restrict ____filename_315, const char * __restrict ____modes_316));// L283:L285 +extern __FILE_58 * ((__fopen_319) (const char * __restrict ____filename_315, const char * __restrict ____modes_316));// L283:L285 +extern __FILE_58 * ((__freopen_325) (const char * __restrict ____filename_311, const char * __restrict ____modes_312, __FILE_58 * __restrict ____stream_313));// L278:L280 +extern __FILE_58 * ((__freopen_331) (const char * __restrict ____filename_321, const char * __restrict ____modes_322, __FILE_58 * __restrict ____stream_323));// L286:L289 +extern __FILE_58 * ((__freopen_329) (const char * __restrict ____filename_321, const char * __restrict ____modes_322, __FILE_58 * __restrict ____stream_323));// L286:L289 +extern __FILE_58 * ((__freopen_327) (const char * __restrict ____filename_311, const char * __restrict ____modes_312, __FILE_58 * __restrict ____stream_313));// L278:L280 +extern __FILE_58 * ((__fdopen_335) (int ____fd_333, const char * (____modes_334)));// L306 +extern __FILE_58 * ((__fdopen_337) (int ____fd_333, const char * (____modes_334)));// L306 +extern __FILE_58 * ((__fmemopen_342) (void * (____s_339), __size_t_1 ____len_340, const char * (____modes_341)));// L319:L320 +extern __FILE_58 * ((__fmemopen_344) (void * (____s_339), __size_t_1 ____len_340, const char * (____modes_341)));// L319:L320 +extern __FILE_58 * ((__open_memstream_348) (char * (* (____bufloc_346)), __size_t_1 * (____sizeloc_347)));// L325 +extern __FILE_58 * ((__open_memstream_350) (char * (* (____bufloc_346)), __size_t_1 * (____sizeloc_347)));// L325 +extern void (__setbuf_355) (__FILE_58 * __restrict ____stream_352, char * __restrict ____buf_354);// L332 +extern void (__setbuf_357) (__FILE_58 * __restrict ____stream_352, char * __restrict ____buf_354);// L332 +extern int (__setvbuf_364) (__FILE_58 * __restrict ____stream_359, char * __restrict ____buf_361, int ____modes_362, __size_t_1 ____n_363);// L336:L337 +extern void (__setbuffer_369) (__FILE_58 * __restrict ____stream_365, char * __restrict ____buf_367, __size_t_1 ____size_368);// L343:L344 +extern void (__setlinebuf_373) (__FILE_58 * (____stream_371));// L347 +extern int (__fprintf_378) (__FILE_58 * __restrict ____stream_375, const char * __restrict ____format_377, ... );// L356:L357 +extern int (__fprintf_380) (__FILE_58 * __restrict ____stream_375, const char * __restrict ____format_377, ... );// L356:L357 +extern int (__printf_383) (const char * __restrict ____format_382, ... );// L362 +extern int (__sprintf_386) (char * __restrict ____s_384, const char * __restrict ____format_385, ... );// L364:L365 +extern int (__vfprintf_392) (__FILE_58 * __restrict ____s_387, const char * __restrict ____format_389, ____gnuc_va_list_82 ____arg_390);// L371:L372 +extern int (__vprintf_399) (const char * __restrict ____format_396, ____gnuc_va_list_82 ____arg_397);// L377 +extern int (__vsprintf_405) (char * __restrict ____s_401, const char * __restrict ____format_402, ____gnuc_va_list_82 ____arg_403);// L379:L380 +extern int (__snprintf_409) (char * __restrict ____s_406, __size_t_1 ____maxlen_407, const char * __restrict ____format_408, ... );// L386:L388 +extern int (__vsnprintf_415) (char * __restrict ____s_410, __size_t_1 ____maxlen_411, const char * __restrict ____format_412, ____gnuc_va_list_82 ____arg_413);// L390:L392 +extern int (__vdprintf_420) (int ____fd_416, const char * __restrict ____fmt_417, ____gnuc_va_list_82 ____arg_418);// L412:L414 +extern int (__dprintf_424) (int ____fd_422, const char * __restrict ____fmt_423, ... );// L415:L416 +extern int (__fscanf_428) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 +extern int (__fscanf_430) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 +extern int (__fscanf_432) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 +extern int (__fscanf_434) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 +extern int (__scanf_437) (const char * __restrict ____format_436, ... );// L431 +extern int (__scanf_438) (const char * __restrict ____format_436, ... );// L431 +extern int (__sscanf_441) (const char * __restrict ____s_439, const char * __restrict ____format_440, ... );// L433:L434 + + + + + + + +extern int (__vfscanf_468) (__FILE_58 * __restrict ____s_463, const char * __restrict ____format_465, ____gnuc_va_list_82 ____arg_466);// L471:L473 +extern int (__vfscanf_472) (__FILE_58 * __restrict ____s_463, const char * __restrict ____format_465, ____gnuc_va_list_82 ____arg_466);// L471:L473 +extern int (__vscanf_479) (const char * __restrict ____format_476, ____gnuc_va_list_82 ____arg_477);// L479:L480 +extern int (__vscanf_481) (const char * __restrict ____format_476, ____gnuc_va_list_82 ____arg_477);// L479:L480 +extern int (__vsscanf_487) (const char * __restrict ____s_483, const char * __restrict ____format_484, ____gnuc_va_list_82 ____arg_485);// L483:L485 + + + + + +extern int (__fgetc_520) (__FILE_58 * (____stream_518));// L531 +extern int (__getc_523) (__FILE_58 * (____stream_521));// L532 +extern int (__getchar_524) (void );// L538 +extern int (__getc_unlocked_527) (__FILE_58 * (____stream_525));// L550 +extern int (__getchar_unlocked_529) (void );// L551 +extern int (__fgetc_unlocked_532) (__FILE_58 * (____stream_530));// L561 +extern int (__fputc_537) (int ____c_534, __FILE_58 * (____stream_535));// L573 +extern int (__fputc_539) (int ____c_534, __FILE_58 * (____stream_535));// L573 +extern int (__putc_544) (int ____c_541, __FILE_58 * (____stream_542));// L574 +extern int (__putchar_546) (int ____c_545);// L580 +extern int (__fputc_unlocked_550) (int ____c_547, __FILE_58 * (____stream_548));// L594 +extern int (__putc_unlocked_555) (int ____c_552, __FILE_58 * (____stream_553));// L602 +extern int (__putchar_unlocked_558) (int ____c_557);// L603 +extern int (__getw_561) (__FILE_58 * (____stream_559));// L610 +extern int (__putw_566) (int ____w_563, __FILE_58 * (____stream_564));// L613 +extern char * ((__fgets_572) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 +extern char * ((__fgets_574) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 +extern char * ((__fgets_576) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 +extern char * ((__fgets_578) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 +extern ____ssize_t_49 (____getdelim_585) (char * (* __restrict ____lineptr_580), __size_t_1 * __restrict ____n_581, int ____delimiter_582, __FILE_58 * __restrict ____stream_583);// L665:L667 +extern ____ssize_t_49 (____getdelim_587) (char * (* __restrict ____lineptr_580), __size_t_1 * __restrict ____n_581, int ____delimiter_582, __FILE_58 * __restrict ____stream_583);// L665:L667 +extern ____ssize_t_49 (__getdelim_594) (char * (* __restrict ____lineptr_589), __size_t_1 * __restrict ____n_590, int ____delimiter_591, __FILE_58 * __restrict ____stream_592);// L668:L670 +extern ____ssize_t_49 (__getdelim_596) (char * (* __restrict ____lineptr_589), __size_t_1 * __restrict ____n_590, int ____delimiter_591, __FILE_58 * __restrict ____stream_592);// L668:L670 +extern ____ssize_t_49 (__getline_602) (char * (* __restrict ____lineptr_598), __size_t_1 * __restrict ____n_599, __FILE_58 * __restrict ____stream_600);// L678:L680 +extern ____ssize_t_49 (__getline_604) (char * (* __restrict ____lineptr_598), __size_t_1 * __restrict ____n_599, __FILE_58 * __restrict ____stream_600);// L678:L680 +extern int (__fputs_609) (const char * __restrict ____s_606, __FILE_58 * __restrict ____stream_607);// L689 +extern int (__fputs_611) (const char * __restrict ____s_606, __FILE_58 * __restrict ____stream_607);// L689 +extern int (__puts_614) (const char * (____s_613));// L695 +extern int (__ungetc_618) (int ____c_615, __FILE_58 * (____stream_616));// L702 +extern int (__fseek_654) (__FILE_58 * (____stream_650), long int ____off_652, int ____whence_653);// L749 +extern int (__fseek_656) (__FILE_58 * (____stream_650), long int ____off_652, int ____whence_653);// L749 +extern long int (__ftell_660) (__FILE_58 * (____stream_658));// L754 +extern long int (__ftell_662) (__FILE_58 * (____stream_658));// L754 +extern void (__rewind_666) (__FILE_58 * (____stream_664));// L759 +extern int (__fseeko_671) (__FILE_58 * (____stream_667), ____off_t_23 ____off_669, int ____whence_670);// L773 +extern int (__fseeko_679) (__FILE_58 * (____stream_675), ____off64_t_24 ____off_677, int ____whence_678);// L781:L783 +extern ____off_t_23 (__ftello_683) (__FILE_58 * (____stream_673));// L778 +extern ____off_t_23 (__ftello_685) (__FILE_58 * (____stream_673));// L778 +extern int (__fgetpos_693) (__FILE_58 * __restrict ____stream_689, __fpos_t_253 * __restrict ____pos_691);// L798 +extern ____off64_t_24 (__ftello_687) (__FILE_58 * (____stream_681));// L784 +extern int (__fgetpos_705) (__FILE_58 * __restrict ____stream_701, __fpos_t_255 * __restrict ____pos_703);// L806:L807 +extern int (__fsetpos_713) (__FILE_58 * (____stream_697), const __fpos_t_253 * (____pos_699));// L803 +extern int (__fsetpos_717) (__FILE_58 * (____stream_709), const __fpos_t_255 * (____pos_711));// L808:L809 +extern void (__clearerr_723) (__FILE_58 * (____stream_721));// L826 +extern int (__feof_726) (__FILE_58 * (____stream_724));// L828 +extern int (__feof_728) (__FILE_58 * (____stream_724));// L828 +extern int (__ferror_732) (__FILE_58 * (____stream_730));// L830 +extern int (__ferror_734) (__FILE_58 * (____stream_730));// L830 +extern void (__clearerr_unlocked_738) (__FILE_58 * (____stream_736));// L835 +extern int (__feof_unlocked_742) (__FILE_58 * (____stream_740));// L836 +extern int (__feof_unlocked_744) (__FILE_58 * (____stream_740));// L836 +extern int (__ferror_unlocked_748) (__FILE_58 * (____stream_746));// L837 +extern int (__ferror_unlocked_750) (__FILE_58 * (____stream_746));// L837 +extern void (__perror_753) (const char * (____s_752));// L846 +extern void (__perror_754) (const char * (____s_752));// L846 +extern int __sys_nerr_755;// L26 + +extern int (__fileno_761) (__FILE_58 * (____stream_757));// L858 +extern int (__fileno_759) (__FILE_58 * (____stream_757));// L858 +extern int (__fileno_unlocked_767) (__FILE_58 * (____stream_763));// L863 +extern int (__fileno_unlocked_765) (__FILE_58 * (____stream_763));// L863 +extern __FILE_58 * ((__popen_771) (const char * (____command_769), const char * (____modes_770)));// L872 +extern __FILE_58 * ((__popen_773) (const char * (____command_769), const char * (____modes_770)));// L872 +extern int (__pclose_777) (__FILE_58 * (____stream_775));// L878 +extern char * ((__ctermid_780) (char * (____s_779)));// L884 +extern void (__flockfile_783) (__FILE_58 * (____stream_781));// L912 +extern int (__ftrylockfile_787) (__FILE_58 * (____stream_785));// L916 +extern int (__ftrylockfile_789) (__FILE_58 * (____stream_785));// L916 +extern void (__funlockfile_793) (__FILE_58 * (____stream_791));// L919 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ @@ -2428,112 +1701,86 @@ extern void (__funlockfile_867) (__FILE_59 * (____stream_865));// L919 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____sprintf_chk_899) (char * __restrict ____s_895, int ____flag_896, __size_t_1 ____slen_897, const char * __restrict ____format_898, ... );// L23:L24 -extern int (____vsprintf_chk_906) (char * __restrict ____s_900, int ____flag_901, __size_t_1 ____slen_902, const char * __restrict ____format_903, ____gnuc_va_list_86 ____ap_904);// L25:L27 +extern int (____sprintf_chk_825) (char * __restrict ____s_821, int ____flag_822, __size_t_1 ____slen_823, const char * __restrict ____format_824, ... );// L23:L24 +extern int (____vsprintf_chk_832) (char * __restrict ____s_826, int ____flag_827, __size_t_1 ____slen_828, const char * __restrict ____format_829, ____gnuc_va_list_82 ____ap_830);// L25:L27 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____snprintf_chk_920) (char * __restrict ____s_915, __size_t_1 ____n_916, int ____flag_917, __size_t_1 ____slen_918, const char * __restrict ____format_919, ... );// L52:L54 -extern int (____vsnprintf_chk_928) (char * __restrict ____s_921, __size_t_1 ____n_922, int ____flag_923, __size_t_1 ____slen_924, const char * __restrict ____format_925, ____gnuc_va_list_86 ____ap_926);// L55:L57 +extern int (____snprintf_chk_846) (char * __restrict ____s_841, __size_t_1 ____n_842, int ____flag_843, __size_t_1 ____slen_844, const char * __restrict ____format_845, ... );// L52:L54 +extern int (____vsnprintf_chk_854) (char * __restrict ____s_847, __size_t_1 ____n_848, int ____flag_849, __size_t_1 ____slen_850, const char * __restrict ____format_851, ____gnuc_va_list_82 ____ap_852);// L55:L57 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____fprintf_chk_943) (__FILE_59 * __restrict ____stream_939, int ____flag_941, const char * __restrict ____format_942, ... );// L85:L86 -extern int (____printf_chk_947) (int ____flag_945, const char * __restrict ____format_946, ... );// L87 -extern int (____vfprintf_chk_954) (__FILE_59 * __restrict ____stream_948, int ____flag_950, const char * __restrict ____format_951, ____gnuc_va_list_86 ____ap_952);// L88:L89 -extern int (____vprintf_chk_962) (int ____flag_958, const char * __restrict ____format_959, ____gnuc_va_list_86 ____ap_960);// L90:L91 +extern int (____fprintf_chk_869) (__FILE_58 * __restrict ____stream_865, int ____flag_867, const char * __restrict ____format_868, ... );// L85:L86 +extern int (____printf_chk_873) (int ____flag_871, const char * __restrict ____format_872, ... );// L87 +extern int (____vfprintf_chk_880) (__FILE_58 * __restrict ____stream_874, int ____flag_876, const char * __restrict ____format_877, ____gnuc_va_list_82 ____ap_878);// L88:L89 +extern int (____vprintf_chk_888) (int ____flag_884, const char * __restrict ____format_885, ____gnuc_va_list_82 ____ap_886);// L90:L91 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____dprintf_chk_984) (int ____fd_981, int ____flag_982, const char * __restrict ____fmt_983, ... );// L131:L132 -extern int (____vdprintf_chk_990) (int ____fd_985, int ____flag_986, const char * __restrict ____fmt_987, ____gnuc_va_list_86 ____arg_988);// L133:L135 +extern int (____dprintf_chk_910) (int ____fd_907, int ____flag_908, const char * __restrict ____fmt_909, ... );// L131:L132 +extern int (____vdprintf_chk_916) (int ____fd_911, int ____flag_912, const char * __restrict ____fmt_913, ____gnuc_va_list_82 ____arg_914);// L133:L135 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern char * ((____fgets_chk_1004) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 -extern char * ((____fgets_chk_1006) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 -extern char * ((____fgets_chk_1008) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 -extern char * ((____fgets_alias_1014) (char * __restrict ____s_1010, int ____n_1011, __FILE_59 * __restrict ____stream_1012));// L243:L245 -extern char * ((____fgets_chk_warn_1021) (char * __restrict ____s_1016, __size_t_1 ____size_1017, int ____n_1018, __FILE_59 * __restrict ____stream_1019));// L246:L250 +extern char * ((____fgets_chk_930) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 +extern char * ((____fgets_chk_932) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 +extern char * ((____fgets_chk_934) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 +extern char * ((____fgets_alias_940) (char * __restrict ____s_936, int ____n_937, __FILE_58 * __restrict ____stream_938));// L243:L245 +extern char * ((____fgets_chk_warn_947) (char * __restrict ____s_942, __size_t_1 ____size_943, int ____n_944, __FILE_58 * __restrict ____stream_945));// L246:L250 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -// typedef moved to top of scope -// typedef moved to top of scope /* no function due to type errors in the function prototype */ -extern void * ((__memmove_1105) (void * (____dest_1101), const void * (____src_1102), __size_t_1 ____n_1103));// L46:L47 -extern void * ((__memmove_1106) (void * (____dest_1101), const void * (____src_1102), __size_t_1091 ____n_1104));// L46:L47 -extern void * ((__memset_1118) (void * (____s_1114), int ____c_1115, __size_t_1 ____n_1116));// L62 -extern void * ((__memset_1119) (void * (____s_1114), int ____c_1115, __size_t_1091 ____n_1117));// L62 -extern void * ((__memset_1120) (void * (____s_1114), int ____c_1115, __size_t_1 ____n_1116));// L62 -extern void * ((__memset_1121) (void * (____s_1114), int ____c_1115, __size_t_1091 ____n_1117));// L62 -extern int (__memcmp_1126) (const void * (____s1_1122), const void * (____s2_1123), __size_t_1 ____n_1124);// L65:L66 -extern int (__memcmp_1127) (const void * (____s1_1122), const void * (____s2_1123), __size_t_1091 ____n_1125);// L65:L66 -extern void * ((__memchr_1132) (const void * (____s_1128), int ____c_1129, __size_t_1 ____n_1130));// L92:L93 -extern void * ((__memchr_1133) (const void * (____s_1128), int ____c_1129, __size_t_1091 ____n_1131));// L92:L93 -extern char * ((__strcpy_1136) (char * __restrict ____dest_1134, const char * __restrict ____src_1135));// L125:L126 -extern char * ((__strncpy_1141) (char * __restrict ____dest_1137, const char * __restrict ____src_1138, __size_t_1 ____n_1139));// L128:L130 -extern char * ((__strncpy_1142) (char * __restrict ____dest_1137, const char * __restrict ____src_1138, __size_t_1091 ____n_1140));// L128:L130 -extern char * ((__strcat_1145) (char * __restrict ____dest_1143, const char * __restrict ____src_1144));// L133:L134 -extern char * ((__strncat_1150) (char * __restrict ____dest_1146, const char * __restrict ____src_1147, __size_t_1 ____n_1148));// L136:L137 -extern char * ((__strncat_1151) (char * __restrict ____dest_1146, const char * __restrict ____src_1147, __size_t_1091 ____n_1149));// L136:L137 -extern int (__strcmp_1154) (const char * (____s1_1152), const char * (____s2_1153));// L140:L141 -extern int (__strncmp_1159) (const char * (____s1_1155), const char * (____s2_1156), __size_t_1 ____n_1157);// L143:L144 -extern int (__strncmp_1160) (const char * (____s1_1155), const char * (____s2_1156), __size_t_1091 ____n_1158);// L143:L144 -extern int (__strcoll_1163) (const char * (____s1_1161), const char * (____s2_1162));// L147:L148 -extern __size_t_1 (__strxfrm_1168) (char * __restrict ____dest_1164, const char * __restrict ____src_1165, __size_t_1 ____n_1166);// L150:L152 -extern __size_t_1091 (__strxfrm_1169) (char * __restrict ____dest_1164, const char * __restrict ____src_1165, __size_t_1091 ____n_1167);// L150:L152 -// typedef moved to top of scope -// typedef moved to top of scope -extern int (__strcoll_l_1182) (const char * (____s1_1179), const char * (____s2_1180), ____locale_t_1177 ____l_1181);// L162:L163 -extern __size_t_1 (__strxfrm_l_1188) (char * (____dest_1183), const char * (____src_1184), __size_t_1 ____n_1185, ____locale_t_1177 ____l_1187);// L165:L166 -extern __size_t_1091 (__strxfrm_l_1189) (char * (____dest_1183), const char * (____src_1184), __size_t_1091 ____n_1186, ____locale_t_1177 ____l_1187);// L165:L166 -extern char * ((__strdup_1191) (const char * (____s_1190)));// L171:L172 -extern char * ((__strndup_1195) (const char * (____string_1192), __size_t_1 ____n_1193));// L179:L180 -extern char * ((__strndup_1196) (const char * (____string_1192), __size_t_1091 ____n_1194));// L179:L180 -extern char * ((__strchr_1199) (const char * (____s_1197), int ____c_1198));// L231:L232 -extern char * ((__strrchr_1202) (const char * (____s_1200), int ____c_1201));// L258:L259 -extern __size_t_1 (__strcspn_1205) (const char * (____s_1203), const char * (____reject_1204));// L280:L281 -extern __size_t_1091 (__strcspn_1206) (const char * (____s_1203), const char * (____reject_1204));// L280:L281 -extern __size_t_1 (__strspn_1209) (const char * (____s_1207), const char * (____accept_1208));// L284:L285 -extern __size_t_1091 (__strspn_1210) (const char * (____s_1207), const char * (____accept_1208));// L284:L285 -extern char * ((__strpbrk_1213) (const char * (____s_1211), const char * (____accept_1212)));// L310:L311 -extern char * ((__strstr_1216) (const char * (____haystack_1214), const char * (____needle_1215)));// L337:L338 -extern char * ((__strtok_1219) (char * __restrict ____s_1217, const char * __restrict ____delim_1218));// L343:L344 -extern char * ((____strtok_r_1223) (char * __restrict ____s_1220, const char * __restrict ____delim_1221, char * (* __restrict ____save_ptr_1222)));// L349:L352 -extern char * ((__strtok_r_1227) (char * __restrict ____s_1224, const char * __restrict ____delim_1225, char * (* __restrict ____save_ptr_1226)));// L354:L356 -extern __size_t_1 (__strlen_1229) (const char * (____s_1228));// L394:L395 -extern __size_t_1091 (__strlen_1230) (const char * (____s_1228));// L394:L395 -extern __size_t_1 (__strlen_1231) (const char * (____s_1228));// L394:L395 -extern __size_t_1091 (__strlen_1232) (const char * (____s_1228));// L394:L395 -extern __size_t_1 (__strnlen_1236) (const char * (____string_1233), __size_t_1 ____maxlen_1234);// L401:L402 -extern __size_t_1091 (__strnlen_1237) (const char * (____string_1233), __size_t_1091 ____maxlen_1235);// L401:L402 -extern char * ((__strerror_1239) (int ____errnum_1238));// L408 -extern char * ((__strerror_1240) (int ____errnum_1238));// L408 -extern int (__strerror_r_1245) (int ____errnum_1241, char * (____buf_1242), __size_t_1 ____buflen_1243);// L422:L424 -extern int (__strerror_r_1246) (int ____errnum_1241, char * (____buf_1242), __size_t_1091 ____buflen_1244);// L422:L424 -extern char * ((__strerror_l_1249) (int ____errnum_1247, ____locale_t_1177 ____l_1248));// L440 -extern void (____bzero_1253) (void * (____s_1250), __size_t_1 ____n_1251);// L446 -extern void (____bzero_1254) (void * (____s_1250), __size_t_1091 ____n_1252);// L446 -extern void (____bzero_1255) (void * (____s_1250), __size_t_1 ____n_1251);// L446 -extern void (____bzero_1256) (void * (____s_1250), __size_t_1091 ____n_1252);// L446 -extern void (__bcopy_1261) (const void * (____src_1257), void * (____dest_1258), __size_t_1 ____n_1259);// L450:L451 -extern void (__bcopy_1262) (const void * (____src_1257), void * (____dest_1258), __size_t_1091 ____n_1260);// L450:L451 -extern void (__bzero_1266) (void * (____s_1263), __size_t_1 ____n_1264);// L454 -extern void (__bzero_1267) (void * (____s_1263), __size_t_1091 ____n_1265);// L454 -extern int (__bcmp_1272) (const void * (____s1_1268), const void * (____s2_1269), __size_t_1 ____n_1270);// L457:L458 -extern int (__bcmp_1273) (const void * (____s1_1268), const void * (____s2_1269), __size_t_1091 ____n_1271);// L457:L458 -extern char * ((__index_1276) (const char * (____s_1274), int ____c_1275));// L484:L485 -extern char * ((__rindex_1279) (const char * (____s_1277), int ____c_1278));// L512:L513 -extern int (__ffs_1281) (int ____i_1280);// L518 -extern int (__strcasecmp_1284) (const char * (____s1_1282), const char * (____s2_1283));// L529:L530 -extern int (__strncasecmp_1289) (const char * (____s1_1285), const char * (____s2_1286), __size_t_1 ____n_1287);// L533:L534 -extern int (__strncasecmp_1290) (const char * (____s1_1285), const char * (____s2_1286), __size_t_1091 ____n_1288);// L533:L534 -extern char * ((__strsep_1293) (char * (* __restrict ____stringp_1291), const char * __restrict ____delim_1292));// L552:L554 -extern char * ((__strsignal_1295) (int ____sig_1294));// L559 -extern char * ((____stpcpy_1298) (char * __restrict ____dest_1296, const char * __restrict ____src_1297));// L562:L563 -extern char * ((__stpcpy_1301) (char * __restrict ____dest_1299, const char * __restrict ____src_1300));// L564:L565 -extern char * ((____stpncpy_1306) (char * __restrict ____dest_1302, const char * __restrict ____src_1303, __size_t_1 ____n_1304));// L569:L571 -extern char * ((____stpncpy_1307) (char * __restrict ____dest_1302, const char * __restrict ____src_1303, __size_t_1091 ____n_1305));// L569:L571 -extern char * ((__stpncpy_1312) (char * __restrict ____dest_1308, const char * __restrict ____src_1309, __size_t_1 ____n_1310));// L572:L574 -extern char * ((__stpncpy_1313) (char * __restrict ____dest_1308, const char * __restrict ____src_1309, __size_t_1091 ____n_1311));// L572:L574 +extern void * ((__memmove_1026) (void * (____dest_1023), const void * (____src_1024), __size_t_1 ____n_1025));// L46:L47 +extern void * ((__memset_1035) (void * (____s_1032), int ____c_1033, __size_t_1 ____n_1034));// L62 +extern void * ((__memset_1036) (void * (____s_1032), int ____c_1033, __size_t_1 ____n_1034));// L62 +extern int (__memcmp_1040) (const void * (____s1_1037), const void * (____s2_1038), __size_t_1 ____n_1039);// L65:L66 +extern void * ((__memchr_1044) (const void * (____s_1041), int ____c_1042, __size_t_1 ____n_1043));// L92:L93 +extern char * ((__strcpy_1047) (char * __restrict ____dest_1045, const char * __restrict ____src_1046));// L125:L126 +extern char * ((__strncpy_1051) (char * __restrict ____dest_1048, const char * __restrict ____src_1049, __size_t_1 ____n_1050));// L128:L130 +extern char * ((__strcat_1054) (char * __restrict ____dest_1052, const char * __restrict ____src_1053));// L133:L134 +extern char * ((__strncat_1058) (char * __restrict ____dest_1055, const char * __restrict ____src_1056, __size_t_1 ____n_1057));// L136:L137 +extern int (__strcmp_1061) (const char * (____s1_1059), const char * (____s2_1060));// L140:L141 +extern int (__strncmp_1065) (const char * (____s1_1062), const char * (____s2_1063), __size_t_1 ____n_1064);// L143:L144 +extern int (__strcoll_1068) (const char * (____s1_1066), const char * (____s2_1067));// L147:L148 +extern __size_t_1 (__strxfrm_1072) (char * __restrict ____dest_1069, const char * __restrict ____src_1070, __size_t_1 ____n_1071);// L150:L152 +// typedef moved to top of scope +// typedef moved to top of scope +extern int (__strcoll_l_1085) (const char * (____s1_1082), const char * (____s2_1083), ____locale_t_1080 ____l_1084);// L162:L163 +extern __size_t_1 (__strxfrm_l_1090) (char * (____dest_1086), const char * (____src_1087), __size_t_1 ____n_1088, ____locale_t_1080 ____l_1089);// L165:L166 +extern char * ((__strdup_1092) (const char * (____s_1091)));// L171:L172 +extern char * ((__strndup_1095) (const char * (____string_1093), __size_t_1 ____n_1094));// L179:L180 +extern char * ((__strchr_1098) (const char * (____s_1096), int ____c_1097));// L231:L232 +extern char * ((__strchr_1099) (const char * (____s_1096), int ____c_1097));// L231:L232 +extern char * ((__strrchr_1102) (const char * (____s_1100), int ____c_1101));// L258:L259 +extern __size_t_1 (__strcspn_1105) (const char * (____s_1103), const char * (____reject_1104));// L280:L281 +extern __size_t_1 (__strspn_1108) (const char * (____s_1106), const char * (____accept_1107));// L284:L285 +extern char * ((__strpbrk_1111) (const char * (____s_1109), const char * (____accept_1110)));// L310:L311 +extern char * ((__strstr_1114) (const char * (____haystack_1112), const char * (____needle_1113)));// L337:L338 +extern char * ((__strtok_1117) (char * __restrict ____s_1115, const char * __restrict ____delim_1116));// L343:L344 +extern char * ((____strtok_r_1121) (char * __restrict ____s_1118, const char * __restrict ____delim_1119, char * (* __restrict ____save_ptr_1120)));// L349:L352 +extern char * ((__strtok_r_1125) (char * __restrict ____s_1122, const char * __restrict ____delim_1123, char * (* __restrict ____save_ptr_1124)));// L354:L356 +extern __size_t_1 (__strlen_1127) (const char * (____s_1126));// L394:L395 +extern __size_t_1 (__strlen_1128) (const char * (____s_1126));// L394:L395 +extern __size_t_1 (__strnlen_1131) (const char * (____string_1129), __size_t_1 ____maxlen_1130);// L401:L402 +extern char * ((__strerror_1133) (int ____errnum_1132));// L408 +extern char * ((__strerror_1134) (int ____errnum_1132));// L408 +extern int (__strerror_r_1138) (int ____errnum_1135, char * (____buf_1136), __size_t_1 ____buflen_1137);// L422:L424 +extern char * ((__strerror_l_1141) (int ____errnum_1139, ____locale_t_1080 ____l_1140));// L440 +extern void (____bzero_1144) (void * (____s_1142), __size_t_1 ____n_1143);// L446 +extern void (____bzero_1145) (void * (____s_1142), __size_t_1 ____n_1143);// L446 +extern void (__bcopy_1149) (const void * (____src_1146), void * (____dest_1147), __size_t_1 ____n_1148);// L450:L451 +extern void (__bzero_1152) (void * (____s_1150), __size_t_1 ____n_1151);// L454 +extern int (__bcmp_1156) (const void * (____s1_1153), const void * (____s2_1154), __size_t_1 ____n_1155);// L457:L458 +extern char * ((__index_1159) (const char * (____s_1157), int ____c_1158));// L484:L485 +extern char * ((__rindex_1162) (const char * (____s_1160), int ____c_1161));// L512:L513 +extern int (__ffs_1164) (int ____i_1163);// L518 +extern int (__strcasecmp_1167) (const char * (____s1_1165), const char * (____s2_1166));// L529:L530 +extern int (__strncasecmp_1171) (const char * (____s1_1168), const char * (____s2_1169), __size_t_1 ____n_1170);// L533:L534 +extern char * ((__strsep_1174) (char * (* __restrict ____stringp_1172), const char * __restrict ____delim_1173));// L552:L554 +extern char * ((__strsignal_1176) (int ____sig_1175));// L559 +extern char * ((____stpcpy_1179) (char * __restrict ____dest_1177, const char * __restrict ____src_1178));// L562:L563 +extern char * ((__stpcpy_1182) (char * __restrict ____dest_1180, const char * __restrict ____src_1181));// L564:L565 +extern char * ((____stpncpy_1186) (char * __restrict ____dest_1183, const char * __restrict ____src_1184, __size_t_1 ____n_1185));// L569:L571 +extern char * ((__stpncpy_1190) (char * __restrict ____dest_1187, const char * __restrict ____src_1188, __size_t_1 ____n_1189));// L572:L574 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ @@ -2541,86 +1788,16 @@ extern char * ((__stpncpy_1313) (char * __restrict ____dest_1308, const char /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern char * ((____stpncpy_chk_1355) (char * (____dest_1349), const char * (____src_1350), __size_t_1 ____n_1351, __size_t_1 ____destlen_1353));// L130:L131 -extern char * ((____stpncpy_chk_1356) (char * (____dest_1349), const char * (____src_1350), __size_t_1091 ____n_1352, __size_t_1091 ____destlen_1354));// L130:L131 -extern char * ((____stpncpy_alias_1361) (char * (____dest_1357), const char * (____src_1358), __size_t_1 ____n_1359));// L132:L133 -extern char * ((____stpncpy_alias_1362) (char * (____dest_1357), const char * (____src_1358), __size_t_1091 ____n_1360));// L132:L133 +extern char * ((____stpncpy_chk_1219) (char * (____dest_1215), const char * (____src_1216), __size_t_1 ____n_1217, __size_t_1 ____destlen_1218));// L130:L131 +extern char * ((____stpncpy_alias_1223) (char * (____dest_1220), const char * (____src_1221), __size_t_1 ____n_1222));// L132:L133 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ // typedef moved to top of scope // typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -static __inline unsigned int (____bswap_32_1442) (unsigned int ____bsx_1441) { - -if (__static_condition_default_1443) { - -{ -{ - - - -__static_type_error("invalid type found in return expression"); -} -} - - -} -} -static __inline ____uint64_t_13 (____bswap_64_1446) (____uint64_t_13 ____bsx_1444) { +static __inline unsigned int (____bswap_32_1243) (unsigned int ____bsx_1242) { -if (__static_condition_default_1448) { +if (__static_condition_default_1244) { { { @@ -2634,9 +1811,9 @@ __static_type_error("invalid type found in return expression"); } } -static __inline ____uint64_t_1396 (____bswap_64_1447) (____uint64_t_1396 ____bsx_1445) { +static __inline ____uint64_t_13 (____bswap_64_1246) (____uint64_t_13 ____bsx_1245) { -if (__static_condition_default_1449) { +if (__static_condition_default_1244) { { { @@ -2650,64 +1827,40 @@ __static_type_error("invalid type found in return expression"); } } -union __wait_1461 ;// L66 +union __wait_1258 ;// L66 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern __size_t_1 (____ctype_get_mb_cur_max_1485) (void );// L139 -extern __size_t_1091 (____ctype_get_mb_cur_max_1486) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_1487) (void );// L139 -extern __size_t_1091 (____ctype_get_mb_cur_max_1488) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_1489) (void );// L139 -extern __size_t_1091 (____ctype_get_mb_cur_max_1490) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_1491) (void );// L139 -extern __size_t_1091 (____ctype_get_mb_cur_max_1492) (void );// L139 -extern double (__atof_1494) (const char * (____nptr_1493));// L144:L145 -extern double (__atof_1495) (const char * (____nptr_1493));// L144:L145 -extern int (__atoi_1497) (const char * (____nptr_1496));// L147:L148 -extern int (__atoi_1498) (const char * (____nptr_1496));// L147:L148 -extern long int (__atol_1500) (const char * (____nptr_1499));// L150:L151 -extern long int (__atol_1501) (const char * (____nptr_1499));// L150:L151 -extern long long int (__atoll_1503) (const char * (____nptr_1502));// L157:L158 -extern long long int (__atoll_1504) (const char * (____nptr_1502));// L157:L158 -extern double (__strtod_1507) (const char * __restrict ____nptr_1505, char * (* __restrict ____endptr_1506));// L164:L166 -extern float (__strtof_1510) (const char * __restrict ____nptr_1508, char * (* __restrict ____endptr_1509));// L172:L173 -extern long double (__strtold_1513) (const char * __restrict ____nptr_1511, char * (* __restrict ____endptr_1512));// L175:L177 -extern long int (__strtol_1517) (const char * __restrict ____nptr_1514, char * (* __restrict ____endptr_1515), int ____base_1516);// L183:L185 -extern unsigned long int (__strtoul_1521) (const char * __restrict ____nptr_1518, char * (* __restrict ____endptr_1519), int ____base_1520);// L187:L189 -extern long long int (__strtoq_1525) (const char * __restrict ____nptr_1522, char * (* __restrict ____endptr_1523), int ____base_1524);// L195:L197 -extern unsigned long long int (__strtouq_1529) (const char * __restrict ____nptr_1526, char * (* __restrict ____endptr_1527), int ____base_1528);// L200:L202 -extern long long int (__strtoll_1533) (const char * __restrict ____nptr_1530, char * (* __restrict ____endptr_1531), int ____base_1532);// L209:L211 -extern long long int (__strtoll_1534) (const char * __restrict ____nptr_1530, char * (* __restrict ____endptr_1531), int ____base_1532);// L209:L211 -extern unsigned long long int (__strtoull_1538) (const char * __restrict ____nptr_1535, char * (* __restrict ____endptr_1536), int ____base_1537);// L214:L216 +extern __size_t_1 (____ctype_get_mb_cur_max_1282) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_1283) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_1284) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_1285) (void );// L139 +extern double (__atof_1287) (const char * (____nptr_1286));// L144:L145 +extern double (__atof_1288) (const char * (____nptr_1286));// L144:L145 +extern int (__atoi_1290) (const char * (____nptr_1289));// L147:L148 +extern int (__atoi_1291) (const char * (____nptr_1289));// L147:L148 +extern long int (__atol_1293) (const char * (____nptr_1292));// L150:L151 +extern long int (__atol_1294) (const char * (____nptr_1292));// L150:L151 +extern long long int (__atoll_1296) (const char * (____nptr_1295));// L157:L158 +extern long long int (__atoll_1297) (const char * (____nptr_1295));// L157:L158 +extern double (__strtod_1300) (const char * __restrict ____nptr_1298, char * (* __restrict ____endptr_1299));// L164:L166 +extern float (__strtof_1303) (const char * __restrict ____nptr_1301, char * (* __restrict ____endptr_1302));// L172:L173 +extern long double (__strtold_1306) (const char * __restrict ____nptr_1304, char * (* __restrict ____endptr_1305));// L175:L177 +extern long int (__strtol_1310) (const char * __restrict ____nptr_1307, char * (* __restrict ____endptr_1308), int ____base_1309);// L183:L185 +extern unsigned long int (__strtoul_1314) (const char * __restrict ____nptr_1311, char * (* __restrict ____endptr_1312), int ____base_1313);// L187:L189 +extern long long int (__strtoq_1318) (const char * __restrict ____nptr_1315, char * (* __restrict ____endptr_1316), int ____base_1317);// L195:L197 +extern unsigned long long int (__strtouq_1322) (const char * __restrict ____nptr_1319, char * (* __restrict ____endptr_1320), int ____base_1321);// L200:L202 +extern long long int (__strtoll_1326) (const char * __restrict ____nptr_1323, char * (* __restrict ____endptr_1324), int ____base_1325);// L209:L211 +extern long long int (__strtoll_1327) (const char * __restrict ____nptr_1323, char * (* __restrict ____endptr_1324), int ____base_1325);// L209:L211 +extern unsigned long long int (__strtoull_1331) (const char * __restrict ____nptr_1328, char * (* __restrict ____endptr_1329), int ____base_1330);// L214:L216 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ __extension__/* no function due to type errors in the function prototype */ -extern char * ((__l64a_1543) (long int ____n_1542));// L305 -extern char * ((__l64a_1544) (long int ____n_1542));// L305 -extern long int (__a64l_1546) (const char * (____s_1545));// L308:L309 -extern long int (__a64l_1547) (const char * (____s_1545));// L308:L309 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope +extern char * ((__l64a_1336) (long int ____n_1335));// L305 +extern char * ((__l64a_1337) (long int ____n_1335));// L305 +extern long int (__a64l_1339) (const char * (____s_1338));// L308:L309 +extern long int (__a64l_1340) (const char * (____s_1338));// L308:L309 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope @@ -2749,106 +1902,9 @@ extern long int (__a64l_1547) (const char * (____s_1545));// L308:L309 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -static __inline unsigned int (____bswap_32_1736) (unsigned int ____bsx_1735) { +static __inline unsigned int (____bswap_32_1383) (unsigned int ____bsx_1382) { -if (__static_condition_default_1737) { +if (__static_condition_default_1384) { { { @@ -2862,25 +1918,9 @@ __static_type_error("invalid type found in return expression"); } } -static __inline ____uint64_t_13 (____bswap_64_1740) (____uint64_t_13 ____bsx_1738) { +static __inline ____uint64_t_13 (____bswap_64_1386) (____uint64_t_13 ____bsx_1385) { -if (__static_condition_default_1742) { - -{ -{ - - - -__static_type_error("invalid type found in return expression"); -} -} - - -} -} -static __inline ____uint64_t_1559 (____bswap_64_1741) (____uint64_t_1559 ____bsx_1739) { - -if (__static_condition_default_1743) { +if (__static_condition_default_1384) { { { @@ -2897,28 +1937,24 @@ __static_type_error("invalid type found in return expression"); // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __timespec_1750 ;// L120 - -struct __timeval_1760 ;// L30 - -// typedef moved to top of scope -// typedef moved to top of scope +struct __timespec_1393 ;// L120 +struct __timeval_1396 ;// L30 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern int (__select_1797) (int ____nfds_1786, __fd_set_1783 * __restrict ____readfds_1787, __fd_set_1783 * __restrict ____writefds_1789, __fd_set_1783 * __restrict ____exceptfds_1791, struct __timeval_1760 * __restrict ____timeout_1794);// L106:L109 -extern int (__select_1798) (int ____nfds_1786, __fd_set_1783 * __restrict ____readfds_1787, __fd_set_1783 * __restrict ____writefds_1789, __fd_set_1783 * __restrict ____exceptfds_1791, struct __forward_tag_reference_1793 * __restrict ____timeout_1796);// L106:L109 -extern int (__pselect_1813) (int ____nfds_1801, __fd_set_1783 * __restrict ____readfds_1802, __fd_set_1783 * __restrict ____writefds_1804, __fd_set_1783 * __restrict ____exceptfds_1806, const struct __timespec_1750 * __restrict ____timeout_1809, const ____sigset_t_1748 * __restrict ____sigmask_1812);// L118:L122 -extern int (__pselect_1814) (int ____nfds_1801, __fd_set_1783 * __restrict ____readfds_1802, __fd_set_1783 * __restrict ____writefds_1804, __fd_set_1783 * __restrict ____exceptfds_1806, const struct __forward_tag_reference_1808 * __restrict ____timeout_1811, const ____sigset_t_1748 * __restrict ____sigmask_1812);// L118:L122 -extern long int (____fdelt_chk_1818) (long int ____d_1817);// L24 -extern long int (____fdelt_warn_1820) (long int ____d_1819);// L25:L26 -extern unsigned int (__gnu_dev_major_1822) (unsigned long long int ____dev_1821);// L27:L28 -extern unsigned int (__gnu_dev_major_1823) (unsigned long long int ____dev_1821);// L27:L28 -extern unsigned int (__gnu_dev_minor_1825) (unsigned long long int ____dev_1824);// L30:L31 -extern unsigned long long int (__gnu_dev_makedev_1828) (unsigned int ____major_1826, unsigned int ____minor_1827);// L33:L35 +extern int (__select_1416) (int ____nfds_1409, __fd_set_1406 * __restrict ____readfds_1410, __fd_set_1406 * __restrict ____writefds_1411, __fd_set_1406 * __restrict ____exceptfds_1412, struct __timeval_1396 * __restrict ____timeout_1414);// L106:L109 +extern int (__select_1417) (int ____nfds_1409, __fd_set_1406 * __restrict ____readfds_1410, __fd_set_1406 * __restrict ____writefds_1411, __fd_set_1406 * __restrict ____exceptfds_1412, struct __forward_tag_reference_1413 * __restrict ____timeout_1415);// L106:L109 +extern int (__pselect_1426) (int ____nfds_1418, __fd_set_1406 * __restrict ____readfds_1419, __fd_set_1406 * __restrict ____writefds_1420, __fd_set_1406 * __restrict ____exceptfds_1421, const struct __timespec_1393 * __restrict ____timeout_1423, const ____sigset_t_1391 * __restrict ____sigmask_1425);// L118:L122 +extern int (__pselect_1427) (int ____nfds_1418, __fd_set_1406 * __restrict ____readfds_1419, __fd_set_1406 * __restrict ____writefds_1420, __fd_set_1406 * __restrict ____exceptfds_1421, const struct __forward_tag_reference_1422 * __restrict ____timeout_1424, const ____sigset_t_1391 * __restrict ____sigmask_1425);// L118:L122 +extern long int (____fdelt_chk_1429) (long int ____d_1428);// L24 +extern long int (____fdelt_warn_1431) (long int ____d_1430);// L25:L26 +extern unsigned int (__gnu_dev_major_1433) (unsigned long long int ____dev_1432);// L27:L28 +extern unsigned int (__gnu_dev_major_1434) (unsigned long long int ____dev_1432);// L27:L28 +extern unsigned int (__gnu_dev_minor_1436) (unsigned long long int ____dev_1435);// L30:L31 +extern unsigned long long int (__gnu_dev_makedev_1439) (unsigned int ____major_1437, unsigned int ____minor_1438);// L33:L35 __extension__/* no function due to type errors in the function prototype */ __extension__/* no function due to type errors in the function prototype */ __extension__/* no function due to type errors in the function prototype */ @@ -2930,205 +1966,151 @@ __extension__/* no function due to type errors in the function prototype */ // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -union __pthread_attr_t_1862 ;// L63 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern int (__rand_1893) (void );// L374 -extern void (__srand_1895) (unsigned int ____seed_1894);// L376 -extern int (__rand_r_1897) (unsigned int * (____seed_1896));// L381 -extern double (__drand48_1898) (void );// L389 -extern double (__erand48_1900) (unsigned short int ____xsubi_1899[3]);// L390 -extern long int (__lrand48_1901) (void );// L393 -extern long int (__nrand48_1903) (unsigned short int ____xsubi_1902[3]);// L394:L395 -extern long int (__mrand48_1904) (void );// L398 -extern long int (__jrand48_1906) (unsigned short int ____xsubi_1905[3]);// L399:L400 -extern void (__srand48_1908) (long int ____seedval_1907);// L403 -extern unsigned short int * ((__seed48_1910) (unsigned short int ____seed16v_1909[3]));// L404:L405 -extern void (__lcong48_1912) (unsigned short int ____param_1911[7]);// L406 -extern void * ((__malloc_1915) (__size_t_1 ____size_1913));// L466 -extern void * ((__malloc_1916) (__size_t_1091 ____size_1914));// L466 -extern void * ((__malloc_1917) (__size_t_1 ____size_1913));// L466 -extern void * ((__malloc_1918) (__size_t_1091 ____size_1914));// L466 -extern void * ((__calloc_1923) (__size_t_1 ____nmemb_1919, __size_t_1 ____size_1921));// L468:L469 -extern void * ((__calloc_1924) (__size_t_1091 ____nmemb_1920, __size_t_1091 ____size_1922));// L468:L469 -extern void * ((__calloc_1925) (__size_t_1 ____nmemb_1919, __size_t_1 ____size_1921));// L468:L469 -extern void * ((__calloc_1926) (__size_t_1091 ____nmemb_1920, __size_t_1091 ____size_1922));// L468:L469 -extern void * ((__realloc_1930) (void * (____ptr_1927), __size_t_1 ____size_1928));// L480:L481 -extern void * ((__realloc_1931) (void * (____ptr_1927), __size_t_1091 ____size_1929));// L480:L481 -extern void * ((__realloc_1932) (void * (____ptr_1927), __size_t_1 ____size_1928));// L480:L481 -extern void * ((__realloc_1933) (void * (____ptr_1927), __size_t_1091 ____size_1929));// L480:L481 -extern void (__free_1935) (void * (____ptr_1934));// L483 -extern void (__cfree_1937) (void * (____ptr_1936));// L488 -extern void * ((__alloca_1940) (__size_t_1 ____size_1938));// L32 -extern void * ((__alloca_1941) (__size_t_1091 ____size_1939));// L32 -extern void * ((__valloc_1944) (__size_t_1 ____size_1942));// L498 -extern void * ((__valloc_1945) (__size_t_1091 ____size_1943));// L498 -extern void * ((__valloc_1946) (__size_t_1 ____size_1942));// L498 -extern void * ((__valloc_1947) (__size_t_1091 ____size_1943));// L498 -extern int (__posix_memalign_1953) (void * (* (____memptr_1948)), __size_t_1 ____alignment_1949, __size_t_1 ____size_1951);// L503:L504 -extern int (__posix_memalign_1954) (void * (* (____memptr_1948)), __size_t_1091 ____alignment_1950, __size_t_1091 ____size_1952);// L503:L504 -extern int (__posix_memalign_1955) (void * (* (____memptr_1948)), __size_t_1 ____alignment_1949, __size_t_1 ____size_1951);// L503:L504 -extern int (__posix_memalign_1956) (void * (* (____memptr_1948)), __size_t_1091 ____alignment_1950, __size_t_1091 ____size_1952);// L503:L504 -extern void * ((__aligned_alloc_1961) (__size_t_1 ____alignment_1957, __size_t_1 ____size_1959));// L509:L510 -extern void * ((__aligned_alloc_1962) (__size_t_1091 ____alignment_1958, __size_t_1091 ____size_1960));// L509:L510 -extern void * ((__aligned_alloc_1963) (__size_t_1 ____alignment_1957, __size_t_1 ____size_1959));// L509:L510 -extern void * ((__aligned_alloc_1964) (__size_t_1091 ____alignment_1958, __size_t_1091 ____size_1960));// L509:L510 -extern void * ((__aligned_alloc_1965) (__size_t_1 ____alignment_1957, __size_t_1 ____size_1959));// L509:L510 -extern void * ((__aligned_alloc_1966) (__size_t_1091 ____alignment_1958, __size_t_1091 ____size_1960));// L509:L510 -extern void * ((__aligned_alloc_1967) (__size_t_1 ____alignment_1957, __size_t_1 ____size_1959));// L509:L510 -extern void * ((__aligned_alloc_1968) (__size_t_1091 ____alignment_1958, __size_t_1091 ____size_1960));// L509:L510 -extern void (__abort_1969) (void );// L515 -extern int (__atexit_1971) (void (* (____func_1970)) (void ));// L519 -extern int (__at_quick_exit_1973) (void (* (____func_1972)) (void ));// L527 -extern int (__on_exit_1978) (void (* (____func_1976)) (int ____status_1974, void * (____arg_1975)), void * (____arg_1977));// L535:L536 -extern void (__exit_1980) (int ____status_1979);// L543 -extern void (__exit_1981) (int ____status_1979);// L543 -extern void (__quick_exit_1983) (int ____status_1982);// L549 -extern void (___Exit_1985) (int ____status_1984);// L557 -extern char * ((__getenv_1987) (const char * (____name_1986)));// L564 -extern char * ((__getenv_1988) (const char * (____name_1986)));// L564 -extern int (__putenv_1990) (char * (____string_1989));// L578 -extern int (__setenv_1994) (const char * (____name_1991), const char * (____value_1992), int ____replace_1993);// L584:L585 -extern int (__unsetenv_1996) (const char * (____name_1995));// L588 -extern int (__clearenv_1997) (void );// L595 -extern char * ((__mktemp_1999) (char * (____template_1998)));// L606 -extern int (__mkstemp_2002) (char * (____template_2000));// L619 -extern int (__mkstemp_2004) (char * (____template_2000));// L619 -extern int (__mkstemp_2003) (char * (____template_2001));// L622:L623 -extern int (__mkstemp_2005) (char * (____template_2001));// L622:L623 -extern int (__mkstemps_2010) (char * (____template_2006), int ____suffixlen_2007);// L641 -extern int (__mkstemps_2013) (char * (____template_2008), int ____suffixlen_2009);// L644:L645 -extern int (__mkstemps_2011) (char * (____template_2008), int ____suffixlen_2009);// L644:L645 -extern int (__mkstemps_2012) (char * (____template_2006), int ____suffixlen_2007);// L641 -extern char * ((__mkdtemp_2015) (char * (____template_2014)));// L662 -extern char * ((__mkdtemp_2016) (char * (____template_2014)));// L662 -extern int (__system_2018) (const char * (____command_2017));// L716 -extern int (__system_2019) (const char * (____command_2017));// L716 -extern int (__system_2020) (const char * (____command_2017));// L716 -extern int (__system_2021) (const char * (____command_2017));// L716 -extern char * ((__realpath_2024) (const char * __restrict ____name_2022, char * __restrict ____resolved_2023));// L733:L734 -extern char * ((__realpath_2025) (const char * __restrict ____name_2022, char * __restrict ____resolved_2023));// L733:L734 -// typedef moved to top of scope -extern void * ((__bsearch_2037) (const void * (____key_2027), const void * (____base_2028), __size_t_1 ____nmemb_2029, __size_t_1 ____size_2031, ____compar_fn_t_2026 ____compar_2033));// L754:L756 -extern void * ((__bsearch_2038) (const void * (____key_2027), const void * (____base_2028), __size_t_1091 ____nmemb_2030, __size_t_1091 ____size_2032, ____compar_fn_t_2026 ____compar_2033));// L754:L756 -extern void * ((__bsearch_2041) (const void * (____key_2027), const void * (____base_2028), __size_t_1 ____nmemb_2029, __size_t_1 ____size_2031, ____compar_fn_t_2026 ____compar_2033));// L754:L756 -extern void * ((__bsearch_2042) (const void * (____key_2027), const void * (____base_2028), __size_t_1091 ____nmemb_2030, __size_t_1091 ____size_2032, ____compar_fn_t_2026 ____compar_2033));// L754:L756 +union __pthread_attr_t_1452 ;// L63 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern int (__rand_1483) (void );// L374 +extern void (__srand_1485) (unsigned int ____seed_1484);// L376 +extern int (__rand_r_1487) (unsigned int * (____seed_1486));// L381 +extern double (__drand48_1488) (void );// L389 +extern double (__erand48_1490) (unsigned short int ____xsubi_1489[3]);// L390 +extern long int (__lrand48_1491) (void );// L393 +extern long int (__nrand48_1493) (unsigned short int ____xsubi_1492[3]);// L394:L395 +extern long int (__mrand48_1494) (void );// L398 +extern long int (__jrand48_1496) (unsigned short int ____xsubi_1495[3]);// L399:L400 +extern void (__srand48_1498) (long int ____seedval_1497);// L403 +extern unsigned short int * ((__seed48_1500) (unsigned short int ____seed16v_1499[3]));// L404:L405 +extern void (__lcong48_1502) (unsigned short int ____param_1501[7]);// L406 +extern void * ((__malloc_1504) (__size_t_1 ____size_1503));// L466 +extern void * ((__malloc_1505) (__size_t_1 ____size_1503));// L466 +extern void * ((__calloc_1508) (__size_t_1 ____nmemb_1506, __size_t_1 ____size_1507));// L468:L469 +extern void * ((__calloc_1509) (__size_t_1 ____nmemb_1506, __size_t_1 ____size_1507));// L468:L469 +extern void * ((__realloc_1512) (void * (____ptr_1510), __size_t_1 ____size_1511));// L480:L481 +extern void * ((__realloc_1513) (void * (____ptr_1510), __size_t_1 ____size_1511));// L480:L481 +extern void (__free_1515) (void * (____ptr_1514));// L483 +extern void (__cfree_1517) (void * (____ptr_1516));// L488 +extern void * ((__alloca_1519) (__size_t_1 ____size_1518));// L32 +extern void * ((__valloc_1521) (__size_t_1 ____size_1520));// L498 +extern void * ((__valloc_1522) (__size_t_1 ____size_1520));// L498 +extern int (__posix_memalign_1526) (void * (* (____memptr_1523)), __size_t_1 ____alignment_1524, __size_t_1 ____size_1525);// L503:L504 +extern int (__posix_memalign_1527) (void * (* (____memptr_1523)), __size_t_1 ____alignment_1524, __size_t_1 ____size_1525);// L503:L504 +extern void * ((__aligned_alloc_1530) (__size_t_1 ____alignment_1528, __size_t_1 ____size_1529));// L509:L510 +extern void * ((__aligned_alloc_1531) (__size_t_1 ____alignment_1528, __size_t_1 ____size_1529));// L509:L510 +extern void * ((__aligned_alloc_1532) (__size_t_1 ____alignment_1528, __size_t_1 ____size_1529));// L509:L510 +extern void * ((__aligned_alloc_1533) (__size_t_1 ____alignment_1528, __size_t_1 ____size_1529));// L509:L510 +extern void (__abort_1534) (void );// L515 +extern int (__atexit_1536) (void (* (____func_1535)) (void ));// L519 +extern int (__at_quick_exit_1538) (void (* (____func_1537)) (void ));// L527 +extern int (__on_exit_1543) (void (* (____func_1541)) (int ____status_1539, void * (____arg_1540)), void * (____arg_1542));// L535:L536 +extern void (__exit_1545) (int ____status_1544);// L543 +extern void (__exit_1546) (int ____status_1544);// L543 +extern void (__quick_exit_1548) (int ____status_1547);// L549 +extern void (___Exit_1550) (int ____status_1549);// L557 +extern char * ((__getenv_1552) (const char * (____name_1551)));// L564 +extern char * ((__getenv_1553) (const char * (____name_1551)));// L564 +extern int (__putenv_1555) (char * (____string_1554));// L578 +extern int (__setenv_1559) (const char * (____name_1556), const char * (____value_1557), int ____replace_1558);// L584:L585 +extern int (__unsetenv_1561) (const char * (____name_1560));// L588 +extern int (__clearenv_1562) (void );// L595 +extern char * ((__mktemp_1564) (char * (____template_1563)));// L606 +extern int (__mkstemp_1567) (char * (____template_1565));// L619 +extern int (__mkstemp_1569) (char * (____template_1565));// L619 +extern int (__mkstemp_1568) (char * (____template_1566));// L622:L623 +extern int (__mkstemp_1570) (char * (____template_1566));// L622:L623 +extern int (__mkstemps_1575) (char * (____template_1571), int ____suffixlen_1572);// L641 +extern int (__mkstemps_1578) (char * (____template_1573), int ____suffixlen_1574);// L644:L645 +extern int (__mkstemps_1576) (char * (____template_1573), int ____suffixlen_1574);// L644:L645 +extern int (__mkstemps_1577) (char * (____template_1571), int ____suffixlen_1572);// L641 +extern char * ((__mkdtemp_1580) (char * (____template_1579)));// L662 +extern char * ((__mkdtemp_1581) (char * (____template_1579)));// L662 +extern int (__system_1583) (const char * (____command_1582));// L716 +extern int (__system_1584) (const char * (____command_1582));// L716 +extern int (__system_1585) (const char * (____command_1582));// L716 +extern int (__system_1586) (const char * (____command_1582));// L716 +extern char * ((__realpath_1589) (const char * __restrict ____name_1587, char * __restrict ____resolved_1588));// L733:L734 +extern char * ((__realpath_1590) (const char * __restrict ____name_1587, char * __restrict ____resolved_1588));// L733:L734 +// typedef moved to top of scope +extern void * ((__bsearch_1599) (const void * (____key_1592), const void * (____base_1593), __size_t_1 ____nmemb_1594, __size_t_1 ____size_1595, ____compar_fn_t_1591 ____compar_1596));// L754:L756 +extern void * ((__bsearch_1601) (const void * (____key_1592), const void * (____base_1593), __size_t_1 ____nmemb_1594, __size_t_1 ____size_1595, ____compar_fn_t_1591 ____compar_1596));// L754:L756 /* no function due to type errors in the function prototype */ -extern void (__qsort_2070) (void * (____base_2063), __size_t_1 ____nmemb_2064, __size_t_1 ____size_2066, ____compar_fn_t_2026 ____compar_2068);// L764:L765 -extern void (__qsort_2072) (void * (____base_2063), __size_t_1091 ____nmemb_2065, __size_t_1091 ____size_2067, ____compar_fn_t_2026 ____compar_2068);// L764:L765 -extern void (__qsort_2074) (void * (____base_2063), __size_t_1 ____nmemb_2064, __size_t_1 ____size_2066, ____compar_fn_t_2026 ____compar_2068);// L764:L765 -extern void (__qsort_2076) (void * (____base_2063), __size_t_1091 ____nmemb_2065, __size_t_1091 ____size_2067, ____compar_fn_t_2026 ____compar_2068);// L764:L765 -extern int (__abs_2079) (int ____x_2078);// L774 -extern int (__abs_2080) (int ____x_2078);// L774 -extern long int (__labs_2082) (long int ____x_2081);// L775 -extern long int (__labs_2083) (long int ____x_2081);// L775 -extern long long int (__llabs_2085) (long long int ____x_2084);// L779:L780 -extern long long int (__llabs_2086) (long long int ____x_2084);// L779:L780 -extern __div_t_1474 (__div_2089) (int ____numer_2087, int ____denom_2088);// L788:L789 -extern __div_t_1474 (__div_2090) (int ____numer_2087, int ____denom_2088);// L788:L789 -extern __ldiv_t_1479 (__ldiv_2093) (long int ____numer_2091, long int ____denom_2092);// L790:L791 -extern __ldiv_t_1479 (__ldiv_2095) (long int ____numer_2091, long int ____denom_2092);// L790:L791 -extern __lldiv_t_1484 (__lldiv_2099) (long long int ____numer_2097, long long int ____denom_2098);// L796:L798 -extern __lldiv_t_1484 (__lldiv_2101) (long long int ____numer_2097, long long int ____denom_2098);// L796:L798 -extern char * ((__ecvt_2107) (double ____value_2103, int ____ndigit_2104, int * __restrict ____decpt_2105, int * __restrict ____sign_2106));// L811:L812 -extern char * ((__ecvt_2108) (double ____value_2103, int ____ndigit_2104, int * __restrict ____decpt_2105, int * __restrict ____sign_2106));// L811:L812 -extern char * ((__fcvt_2113) (double ____value_2109, int ____ndigit_2110, int * __restrict ____decpt_2111, int * __restrict ____sign_2112));// L817:L818 -extern char * ((__fcvt_2114) (double ____value_2109, int ____ndigit_2110, int * __restrict ____decpt_2111, int * __restrict ____sign_2112));// L817:L818 -extern char * ((__gcvt_2118) (double ____value_2115, int ____ndigit_2116, char * (____buf_2117)));// L823:L824 -extern char * ((__gcvt_2119) (double ____value_2115, int ____ndigit_2116, char * (____buf_2117)));// L823:L824 -extern char * ((__qecvt_2124) (long double ____value_2120, int ____ndigit_2121, int * __restrict ____decpt_2122, int * __restrict ____sign_2123));// L829:L831 -extern char * ((__qecvt_2125) (long double ____value_2120, int ____ndigit_2121, int * __restrict ____decpt_2122, int * __restrict ____sign_2123));// L829:L831 -extern char * ((__qfcvt_2130) (long double ____value_2126, int ____ndigit_2127, int * __restrict ____decpt_2128, int * __restrict ____sign_2129));// L832:L834 -extern char * ((__qfcvt_2131) (long double ____value_2126, int ____ndigit_2127, int * __restrict ____decpt_2128, int * __restrict ____sign_2129));// L832:L834 -extern char * ((__qgcvt_2135) (long double ____value_2132, int ____ndigit_2133, char * (____buf_2134)));// L835:L836 -extern char * ((__qgcvt_2136) (long double ____value_2132, int ____ndigit_2133, char * (____buf_2134)));// L835:L836 -extern int (__ecvt_r_2144) (double ____value_2137, int ____ndigit_2138, int * __restrict ____decpt_2139, int * __restrict ____sign_2140, char * __restrict ____buf_2141, __size_t_1 ____len_2142);// L841:L843 -extern int (__ecvt_r_2145) (double ____value_2137, int ____ndigit_2138, int * __restrict ____decpt_2139, int * __restrict ____sign_2140, char * __restrict ____buf_2141, __size_t_1091 ____len_2143);// L841:L843 -extern int (__fcvt_r_2153) (double ____value_2146, int ____ndigit_2147, int * __restrict ____decpt_2148, int * __restrict ____sign_2149, char * __restrict ____buf_2150, __size_t_1 ____len_2151);// L844:L846 -extern int (__fcvt_r_2154) (double ____value_2146, int ____ndigit_2147, int * __restrict ____decpt_2148, int * __restrict ____sign_2149, char * __restrict ____buf_2150, __size_t_1091 ____len_2152);// L844:L846 -extern int (__qecvt_r_2162) (long double ____value_2155, int ____ndigit_2156, int * __restrict ____decpt_2157, int * __restrict ____sign_2158, char * __restrict ____buf_2159, __size_t_1 ____len_2160);// L848:L851 -extern int (__qecvt_r_2163) (long double ____value_2155, int ____ndigit_2156, int * __restrict ____decpt_2157, int * __restrict ____sign_2158, char * __restrict ____buf_2159, __size_t_1091 ____len_2161);// L848:L851 -extern int (__qfcvt_r_2171) (long double ____value_2164, int ____ndigit_2165, int * __restrict ____decpt_2166, int * __restrict ____sign_2167, char * __restrict ____buf_2168, __size_t_1 ____len_2169);// L852:L855 -extern int (__qfcvt_r_2172) (long double ____value_2164, int ____ndigit_2165, int * __restrict ____decpt_2166, int * __restrict ____sign_2167, char * __restrict ____buf_2168, __size_t_1091 ____len_2170);// L852:L855 -extern int (__mblen_2176) (const char * (____s_2173), __size_t_1 ____n_2174);// L862 -extern int (__mblen_2177) (const char * (____s_2173), __size_t_1091 ____n_2175);// L862 -extern int (__mblen_2178) (const char * (____s_2173), __size_t_1 ____n_2174);// L862 -extern int (__mblen_2179) (const char * (____s_2173), __size_t_1091 ____n_2175);// L862 -extern int (__mbtowc_2184) (__wchar_t_1378 * __restrict ____pwc_2180, const char * __restrict ____s_2181, __size_t_1 ____n_2182);// L865:L866 -extern int (__mbtowc_2185) (__wchar_t_1378 * __restrict ____pwc_2180, const char * __restrict ____s_2181, __size_t_1091 ____n_2183);// L865:L866 -extern int (__wctomb_2188) (char * (____s_2186), __wchar_t_1378 ____wchar_2187);// L869 -extern __size_t_1 (__mbstowcs_2193) (__wchar_t_1378 * __restrict ____pwcs_2189, const char * __restrict ____s_2190, __size_t_1 ____n_2191);// L873:L874 -extern __size_t_1091 (__mbstowcs_2194) (__wchar_t_1378 * __restrict ____pwcs_2189, const char * __restrict ____s_2190, __size_t_1091 ____n_2192);// L873:L874 -extern __size_t_1 (__wcstombs_2199) (char * __restrict ____s_2195, const __wchar_t_1378 * __restrict ____pwcs_2196, __size_t_1 ____n_2197);// L876:L878 -extern __size_t_1091 (__wcstombs_2200) (char * __restrict ____s_2195, const __wchar_t_1378 * __restrict ____pwcs_2196, __size_t_1091 ____n_2198);// L876:L878 -extern int (__rpmatch_2203) (const char * (____response_2201));// L887 -extern int (__rpmatch_2202) (const char * (____response_2201));// L887 -extern int (__getsubopt_2208) (char * (* __restrict ____optionp_2204), char * const * __restrict ____tokens_2205, char * (* __restrict ____valuep_2206));// L898:L901 -extern int (__getsubopt_2207) (char * (* __restrict ____optionp_2204), char * const * __restrict ____tokens_2205, char * (* __restrict ____valuep_2206));// L898:L901 -extern int (__getloadavg_2211) (double ____loadavg_2209[], int ____nelem_2210);// L950:L951 +extern void (__qsort_1620) (void * (____base_1615), __size_t_1 ____nmemb_1616, __size_t_1 ____size_1617, ____compar_fn_t_1591 ____compar_1618);// L764:L765 +extern void (__qsort_1622) (void * (____base_1615), __size_t_1 ____nmemb_1616, __size_t_1 ____size_1617, ____compar_fn_t_1591 ____compar_1618);// L764:L765 +extern int (__abs_1625) (int ____x_1624);// L774 +extern int (__abs_1626) (int ____x_1624);// L774 +extern long int (__labs_1628) (long int ____x_1627);// L775 +extern long int (__labs_1629) (long int ____x_1627);// L775 +extern long long int (__llabs_1631) (long long int ____x_1630);// L779:L780 +extern long long int (__llabs_1632) (long long int ____x_1630);// L779:L780 +extern __div_t_1271 (__div_1635) (int ____numer_1633, int ____denom_1634);// L788:L789 +extern __div_t_1271 (__div_1636) (int ____numer_1633, int ____denom_1634);// L788:L789 +extern __ldiv_t_1276 (__ldiv_1639) (long int ____numer_1637, long int ____denom_1638);// L790:L791 +extern __ldiv_t_1276 (__ldiv_1641) (long int ____numer_1637, long int ____denom_1638);// L790:L791 +extern __lldiv_t_1281 (__lldiv_1645) (long long int ____numer_1643, long long int ____denom_1644);// L796:L798 +extern __lldiv_t_1281 (__lldiv_1647) (long long int ____numer_1643, long long int ____denom_1644);// L796:L798 +extern char * ((__ecvt_1653) (double ____value_1649, int ____ndigit_1650, int * __restrict ____decpt_1651, int * __restrict ____sign_1652));// L811:L812 +extern char * ((__ecvt_1654) (double ____value_1649, int ____ndigit_1650, int * __restrict ____decpt_1651, int * __restrict ____sign_1652));// L811:L812 +extern char * ((__fcvt_1659) (double ____value_1655, int ____ndigit_1656, int * __restrict ____decpt_1657, int * __restrict ____sign_1658));// L817:L818 +extern char * ((__fcvt_1660) (double ____value_1655, int ____ndigit_1656, int * __restrict ____decpt_1657, int * __restrict ____sign_1658));// L817:L818 +extern char * ((__gcvt_1664) (double ____value_1661, int ____ndigit_1662, char * (____buf_1663)));// L823:L824 +extern char * ((__gcvt_1665) (double ____value_1661, int ____ndigit_1662, char * (____buf_1663)));// L823:L824 +extern char * ((__qecvt_1670) (long double ____value_1666, int ____ndigit_1667, int * __restrict ____decpt_1668, int * __restrict ____sign_1669));// L829:L831 +extern char * ((__qecvt_1671) (long double ____value_1666, int ____ndigit_1667, int * __restrict ____decpt_1668, int * __restrict ____sign_1669));// L829:L831 +extern char * ((__qfcvt_1676) (long double ____value_1672, int ____ndigit_1673, int * __restrict ____decpt_1674, int * __restrict ____sign_1675));// L832:L834 +extern char * ((__qfcvt_1677) (long double ____value_1672, int ____ndigit_1673, int * __restrict ____decpt_1674, int * __restrict ____sign_1675));// L832:L834 +extern char * ((__qgcvt_1681) (long double ____value_1678, int ____ndigit_1679, char * (____buf_1680)));// L835:L836 +extern char * ((__qgcvt_1682) (long double ____value_1678, int ____ndigit_1679, char * (____buf_1680)));// L835:L836 +extern int (__ecvt_r_1689) (double ____value_1683, int ____ndigit_1684, int * __restrict ____decpt_1685, int * __restrict ____sign_1686, char * __restrict ____buf_1687, __size_t_1 ____len_1688);// L841:L843 +extern int (__fcvt_r_1696) (double ____value_1690, int ____ndigit_1691, int * __restrict ____decpt_1692, int * __restrict ____sign_1693, char * __restrict ____buf_1694, __size_t_1 ____len_1695);// L844:L846 +extern int (__qecvt_r_1703) (long double ____value_1697, int ____ndigit_1698, int * __restrict ____decpt_1699, int * __restrict ____sign_1700, char * __restrict ____buf_1701, __size_t_1 ____len_1702);// L848:L851 +extern int (__qfcvt_r_1710) (long double ____value_1704, int ____ndigit_1705, int * __restrict ____decpt_1706, int * __restrict ____sign_1707, char * __restrict ____buf_1708, __size_t_1 ____len_1709);// L852:L855 +extern int (__mblen_1713) (const char * (____s_1711), __size_t_1 ____n_1712);// L862 +extern int (__mblen_1714) (const char * (____s_1711), __size_t_1 ____n_1712);// L862 +extern int (__mbtowc_1718) (__wchar_t_1235 * __restrict ____pwc_1715, const char * __restrict ____s_1716, __size_t_1 ____n_1717);// L865:L866 +extern int (__wctomb_1721) (char * (____s_1719), __wchar_t_1235 ____wchar_1720);// L869 +extern __size_t_1 (__mbstowcs_1725) (__wchar_t_1235 * __restrict ____pwcs_1722, const char * __restrict ____s_1723, __size_t_1 ____n_1724);// L873:L874 +extern __size_t_1 (__wcstombs_1729) (char * __restrict ____s_1726, const __wchar_t_1235 * __restrict ____pwcs_1727, __size_t_1 ____n_1728);// L876:L878 +extern int (__rpmatch_1732) (const char * (____response_1730));// L887 +extern int (__rpmatch_1731) (const char * (____response_1730));// L887 +extern int (__getsubopt_1737) (char * (* __restrict ____optionp_1733), char * const * __restrict ____tokens_1734, char * (* __restrict ____valuep_1735));// L898:L901 +extern int (__getsubopt_1736) (char * (* __restrict ____optionp_1733), char * const * __restrict ____tokens_1734, char * (* __restrict ____valuep_1735));// L898:L901 +extern int (__getloadavg_1740) (double ____loadavg_1738[], int ____nelem_1739);// L950:L951 /* no function due to type errors in the function prototype */ -extern char * ((____realpath_chk_2217) (const char * __restrict ____name_2213, char * __restrict ____resolved_2214, __size_t_1 ____resolvedlen_2215));// L23:L25 -extern char * ((____realpath_chk_2218) (const char * __restrict ____name_2213, char * __restrict ____resolved_2214, __size_t_1091 ____resolvedlen_2216));// L23:L25 -extern char * ((____realpath_alias_2221) (const char * __restrict ____name_2219, char * __restrict ____resolved_2220));// L26:L28 -extern char * ((____realpath_chk_warn_2226) (const char * __restrict ____name_2222, char * __restrict ____resolved_2223, __size_t_1 ____resolvedlen_2224));// L29:L34 -extern char * ((____realpath_chk_warn_2227) (const char * __restrict ____name_2222, char * __restrict ____resolved_2223, __size_t_1091 ____resolvedlen_2225));// L29:L34 +extern char * ((____realpath_chk_1745) (const char * __restrict ____name_1742, char * __restrict ____resolved_1743, __size_t_1 ____resolvedlen_1744));// L23:L25 +extern char * ((____realpath_alias_1748) (const char * __restrict ____name_1746, char * __restrict ____resolved_1747));// L26:L28 +extern char * ((____realpath_chk_warn_1752) (const char * __restrict ____name_1749, char * __restrict ____resolved_1750, __size_t_1 ____resolvedlen_1751));// L29:L34 /* no function due to type errors in the function prototype */ -extern int (____ptsname_r_chk_2237) (int ____fd_2231, char * (____buf_2232), __size_t_1 ____buflen_2233, __size_t_1 ____nreal_2235);// L52:L53 -extern int (____ptsname_r_chk_2238) (int ____fd_2231, char * (____buf_2232), __size_t_1091 ____buflen_2234, __size_t_1091 ____nreal_2236);// L52:L53 -extern int (____ptsname_r_alias_2243) (int ____fd_2239, char * (____buf_2240), __size_t_1 ____buflen_2241);// L54:L56 -extern int (____ptsname_r_alias_2244) (int ____fd_2239, char * (____buf_2240), __size_t_1091 ____buflen_2242);// L54:L56 -extern int (____ptsname_r_chk_warn_2251) (int ____fd_2245, char * (____buf_2246), __size_t_1 ____buflen_2247, __size_t_1 ____nreal_2249);// L57:L61 -extern int (____ptsname_r_chk_warn_2252) (int ____fd_2245, char * (____buf_2246), __size_t_1091 ____buflen_2248, __size_t_1091 ____nreal_2250);// L57:L61 +extern int (____ptsname_r_chk_1760) (int ____fd_1756, char * (____buf_1757), __size_t_1 ____buflen_1758, __size_t_1 ____nreal_1759);// L52:L53 +extern int (____ptsname_r_alias_1764) (int ____fd_1761, char * (____buf_1762), __size_t_1 ____buflen_1763);// L54:L56 +extern int (____ptsname_r_chk_warn_1769) (int ____fd_1765, char * (____buf_1766), __size_t_1 ____buflen_1767, __size_t_1 ____nreal_1768);// L57:L61 /* no function due to type errors in the function prototype */ -extern int (____wctomb_chk_2263) (char * (____s_2259), __wchar_t_1378 ____wchar_2260, __size_t_1 ____buflen_2261);// L77:L78 -extern int (____wctomb_chk_2264) (char * (____s_2259), __wchar_t_1378 ____wchar_2260, __size_t_1091 ____buflen_2262);// L77:L78 -extern int (____wctomb_alias_2267) (char * (____s_2265), __wchar_t_1378 ____wchar_2266);// L79:L80 +extern int (____wctomb_chk_1777) (char * (____s_1774), __wchar_t_1235 ____wchar_1775, __size_t_1 ____buflen_1776);// L77:L78 +extern int (____wctomb_alias_1780) (char * (____s_1778), __wchar_t_1235 ____wchar_1779);// L79:L80 /* no function due to type errors in the function prototype */ -extern __size_t_1 (____mbstowcs_chk_2276) (__wchar_t_1378 * __restrict ____dst_2270, const char * __restrict ____src_2271, __size_t_1 ____len_2272, __size_t_1 ____dstlen_2274);// L98:L100 -extern __size_t_1091 (____mbstowcs_chk_2277) (__wchar_t_1378 * __restrict ____dst_2270, const char * __restrict ____src_2271, __size_t_1091 ____len_2273, __size_t_1091 ____dstlen_2275);// L98:L100 -extern __size_t_1 (____mbstowcs_alias_2282) (__wchar_t_1378 * __restrict ____dst_2278, const char * __restrict ____src_2279, __size_t_1 ____len_2280);// L101:L104 -extern __size_t_1091 (____mbstowcs_alias_2283) (__wchar_t_1378 * __restrict ____dst_2278, const char * __restrict ____src_2279, __size_t_1091 ____len_2281);// L101:L104 -extern __size_t_1 (____mbstowcs_chk_warn_2290) (__wchar_t_1378 * __restrict ____dst_2284, const char * __restrict ____src_2285, __size_t_1 ____len_2286, __size_t_1 ____dstlen_2288);// L105:L110 -extern __size_t_1091 (____mbstowcs_chk_warn_2291) (__wchar_t_1378 * __restrict ____dst_2284, const char * __restrict ____src_2285, __size_t_1091 ____len_2287, __size_t_1091 ____dstlen_2289);// L105:L110 +extern __size_t_1 (____mbstowcs_chk_1787) (__wchar_t_1235 * __restrict ____dst_1783, const char * __restrict ____src_1784, __size_t_1 ____len_1785, __size_t_1 ____dstlen_1786);// L98:L100 +extern __size_t_1 (____mbstowcs_alias_1791) (__wchar_t_1235 * __restrict ____dst_1788, const char * __restrict ____src_1789, __size_t_1 ____len_1790);// L101:L104 +extern __size_t_1 (____mbstowcs_chk_warn_1796) (__wchar_t_1235 * __restrict ____dst_1792, const char * __restrict ____src_1793, __size_t_1 ____len_1794, __size_t_1 ____dstlen_1795);// L105:L110 /* no function due to type errors in the function prototype */ -extern __size_t_1 (____wcstombs_chk_2302) (char * __restrict ____dst_2296, const __wchar_t_1378 * __restrict ____src_2297, __size_t_1 ____len_2298, __size_t_1 ____dstlen_2300);// L130:L132 -extern __size_t_1091 (____wcstombs_chk_2303) (char * __restrict ____dst_2296, const __wchar_t_1378 * __restrict ____src_2297, __size_t_1091 ____len_2299, __size_t_1091 ____dstlen_2301);// L130:L132 -extern __size_t_1 (____wcstombs_alias_2308) (char * __restrict ____dst_2304, const __wchar_t_1378 * __restrict ____src_2305, __size_t_1 ____len_2306);// L133:L136 -extern __size_t_1091 (____wcstombs_alias_2309) (char * __restrict ____dst_2304, const __wchar_t_1378 * __restrict ____src_2305, __size_t_1091 ____len_2307);// L133:L136 -extern __size_t_1 (____wcstombs_chk_warn_2316) (char * __restrict ____dst_2310, const __wchar_t_1378 * __restrict ____src_2311, __size_t_1 ____len_2312, __size_t_1 ____dstlen_2314);// L137:L141 -extern __size_t_1091 (____wcstombs_chk_warn_2317) (char * __restrict ____dst_2310, const __wchar_t_1378 * __restrict ____src_2311, __size_t_1091 ____len_2313, __size_t_1091 ____dstlen_2315);// L137:L141 +extern __size_t_1 (____wcstombs_chk_1804) (char * __restrict ____dst_1800, const __wchar_t_1235 * __restrict ____src_1801, __size_t_1 ____len_1802, __size_t_1 ____dstlen_1803);// L130:L132 +extern __size_t_1 (____wcstombs_alias_1808) (char * __restrict ____dst_1805, const __wchar_t_1235 * __restrict ____src_1806, __size_t_1 ____len_1807);// L133:L136 +extern __size_t_1 (____wcstombs_chk_warn_1813) (char * __restrict ____dst_1809, const __wchar_t_1235 * __restrict ____src_1810, __size_t_1 ____len_1811, __size_t_1 ____dstlen_1812);// L137:L141 /* no function due to type errors in the function prototype */ -int (__main_2324) (void ) { +int (__main_1819) (void ) { -if (__static_condition_default_2328) { +if (__static_condition_default_1823) { { { -unsigned __c_2322= 0;// L17 +unsigned __c_1817= 0;// L17 -unsigned char __flags_2323;// L18 +unsigned char __flags_1818;// L18 -for ( __c_2322 = 0 ; __c_2322 < 256 ; ++ __c_2322 )// L20 +for ( __c_1817 = 0 ; __c_1817 < 256 ; ++ __c_1817 )// L20 { { @@ -3136,18 +2118,13 @@ for ( __c_2322 = 0 ; __c_2322 < 256 ; ++ __c_2322 )// L20 - __flags_2323 = 0 ; // L21 -if ( __c_2322 % 20 == 0 )// L22 + __flags_1818 = 0 ; // L21 +if ( __c_1817 % 20 == 0 )// L22 { -if (__static_condition_default_2329) { - __printf_421 ("\n ") ; // L23 + __printf_383 ("\n ") ; // L23 } -if (__static_condition_default_2330) { -__static_type_error("type error") ; // L23 -} -} -if (__static_condition_default_2331) { -if ( __c_2322 && __strchr_1199 ("&;`'\"|*?~<>^()[]{}$\\\n\r%", __c_2322 ) )// L37 +if (__static_condition_default_1824) { +if ( __c_1817 && __strchr_1098 ("&;`'\"|*?~<>^()[]{}$\\\n\r%", __c_1817 ) )// L37 { { @@ -3155,13 +2132,13 @@ if ( __c_2322 && __strchr_1199 ("&;`'\"|*?~<>^()[]{}$\\\n\r%", __c_2322 ) )/ - __flags_2323 |= ( 0x01 ) ; // L4:L38 + __flags_1818 |= ( 0x01 ) ; // L4:L38 } } } } -if (__static_condition_default_2332) { -if ( __c_2322 && __strchr_1199 ("&;`'\"|*?~<>^()[]{}$\\\n", __c_2322 ) )// L37 +if (__static_condition_default_1825) { +if ( __c_1817 && __strchr_1098 ("&;`'\"|*?~<>^()[]{}$\\\n", __c_1817 ) )// L37 { { @@ -3169,7 +2146,7 @@ if ( __c_2322 && __strchr_1199 ("&;`'\"|*?~<>^()[]{}$\\\n", __c_2322 ) )// L - __flags_2323 |= ( 0x01 ) ; // L4:L42 + __flags_1818 |= ( 0x01 ) ; // L4:L42 } } } @@ -3184,20 +2161,20 @@ return 0 ;// L46 } } -int (__main_2325) (void ) { +int (__main_1820) (void ) { -if (__static_condition_default_2333) { +if (__static_condition_default_1826) { { { -unsigned __c_2322= 0;// L17 +unsigned __c_1817= 0;// L17 -unsigned char __flags_2323;// L18 +unsigned char __flags_1818;// L18 -for ( __c_2322 = 0 ; __c_2322 < 256 ; ++ __c_2322 )// L20 +for ( __c_1817 = 0 ; __c_1817 < 256 ; ++ __c_1817 )// L20 { { @@ -3205,18 +2182,13 @@ for ( __c_2322 = 0 ; __c_2322 < 256 ; ++ __c_2322 )// L20 - __flags_2323 = 0 ; // L21 -if ( __c_2322 % 20 == 0 )// L22 + __flags_1818 = 0 ; // L21 +if ( __c_1817 % 20 == 0 )// L22 { -if (__static_condition_default_2334) { - __printf_421 ("\n ") ; // L23 -} -if (__static_condition_default_2335) { -__static_type_error("type error") ; // L23 + __printf_383 ("\n ") ; // L23 } -} -if (__static_condition_default_2336) { -if ( __c_2322 && __strchr_1199 ("&;`'\"|*?~<>^()[]{}$\\\n\r%", __c_2322 ) )// L37 +if (__static_condition_default_1827) { +if ( __c_1817 && __strchr_1098 ("&;`'\"|*?~<>^()[]{}$\\\n\r%", __c_1817 ) )// L37 { { @@ -3224,13 +2196,13 @@ if ( __c_2322 && __strchr_1199 ("&;`'\"|*?~<>^()[]{}$\\\n\r%", __c_2322 ) )/ - __flags_2323 |= ( 0x01 ) ; // L4:L38 + __flags_1818 |= ( 0x01 ) ; // L4:L38 } } } } -if (__static_condition_default_2337) { -if ( __c_2322 && __strchr_1199 ("&;`'\"|*?~<>^()[]{}$\\\n", __c_2322 ) )// L37 +if (__static_condition_default_1828) { +if ( __c_1817 && __strchr_1098 ("&;`'\"|*?~<>^()[]{}$\\\n", __c_1817 ) )// L37 { { @@ -3238,7 +2210,7 @@ if ( __c_2322 && __strchr_1199 ("&;`'\"|*?~<>^()[]{}$\\\n", __c_2322 ) )// L - __flags_2323 |= ( 0x01 ) ; // L4:L42 + __flags_1818 |= ( 0x01 ) ; // L4:L42 } } } @@ -3253,20 +2225,34 @@ return 0 ;// L46 } } -int (__main_2326) (void ) { +int (__main_1821) (void ) { -if (__static_condition_default_2338) { +if (__static_condition_default_1829) { { { -unsigned __c_2322= 0;// L17 +unsigned __c_1817= 0;// L17 + +unsigned char __flags_1818;// L18 + +for ( __c_1817 = 0 ; __c_1817 < 256 ; ++ __c_1817 )// L20 +{ + +{ +{ + -unsigned char __flags_2323;// L18 -for ( __c_2322 = 0 ; __c_2322 < 256 ; ++ __c_2322 )// L20 + __flags_1818 = 0 ; // L21 +if ( __c_1817 % 20 == 0 )// L22 +{ + __printf_383 ("\n ") ; // L23 +} +if (__static_condition_default_1830) { +if ( __c_1817 && __strchr_1098 ("&;`'\"|*?~<>^()[]{}$\\\n\r%", __c_1817 ) )// L37 { { @@ -3274,18 +2260,27 @@ for ( __c_2322 = 0 ; __c_2322 < 256 ; ++ __c_2322 )// L20 - __flags_2323 = 0 ; // L21 -if ( __c_2322 % 20 == 0 )// L22 + __flags_1818 |= ( 0x01 ) ; // L4:L38 +} +} +} +} +if (__static_condition_default_1831) { +if ( __c_1817 && __strchr_1099 ("&;`'\"|*?~<>^()[]{}$\\\n\r%", __c_1817 ) )// L37 { -if (__static_condition_default_2339) { - __printf_421 ("\n ") ; // L23 + +{ +{ + + + + __flags_1818 |= ( 0x01 ) ; // L4:L38 +} } -if (__static_condition_default_2340) { -__static_type_error("type error") ; // L23 } } -if (__static_condition_default_2341) { -if ( __c_2322 && __strchr_1199 ("&;`'\"|*?~<>^()[]{}$\\\n\r%", __c_2322 ) )// L37 +if (__static_condition_default_1832) { +if ( __c_1817 && __strchr_1098 ("&;`'\"|*?~<>^()[]{}$\\\n", __c_1817 ) )// L37 { { @@ -3293,13 +2288,13 @@ if ( __c_2322 && __strchr_1199 ("&;`'\"|*?~<>^()[]{}$\\\n\r%", __c_2322 ) )/ - __flags_2323 |= ( 0x01 ) ; // L4:L38 + __flags_1818 |= ( 0x01 ) ; // L4:L42 } } } } -if (__static_condition_default_2342) { -if ( __c_2322 && __strchr_1199 ("&;`'\"|*?~<>^()[]{}$\\\n", __c_2322 ) )// L37 +if (__static_condition_default_1833) { +if ( __c_1817 && __strchr_1099 ("&;`'\"|*?~<>^()[]{}$\\\n", __c_1817 ) )// L37 { { @@ -3307,7 +2302,7 @@ if ( __c_2322 && __strchr_1199 ("&;`'\"|*?~<>^()[]{}$\\\n", __c_2322 ) )// L - __flags_2323 |= ( 0x01 ) ; // L4:L42 + __flags_1818 |= ( 0x01 ) ; // L4:L42 } } } @@ -3322,20 +2317,34 @@ return 0 ;// L46 } } -int (__main_2327) (void ) { +int (__main_1822) (void ) { -if (__static_condition_default_2343) { +if (__static_condition_default_1834) { { { -unsigned __c_2322= 0;// L17 +unsigned __c_1817= 0;// L17 + +unsigned char __flags_1818;// L18 -unsigned char __flags_2323;// L18 +for ( __c_1817 = 0 ; __c_1817 < 256 ; ++ __c_1817 )// L20 +{ -for ( __c_2322 = 0 ; __c_2322 < 256 ; ++ __c_2322 )// L20 +{ +{ + + + + __flags_1818 = 0 ; // L21 +if ( __c_1817 % 20 == 0 )// L22 +{ + __printf_383 ("\n ") ; // L23 +} +if (__static_condition_default_1835) { +if ( __c_1817 && __strchr_1098 ("&;`'\"|*?~<>^()[]{}$\\\n\r%", __c_1817 ) )// L37 { { @@ -3343,18 +2352,27 @@ for ( __c_2322 = 0 ; __c_2322 < 256 ; ++ __c_2322 )// L20 - __flags_2323 = 0 ; // L21 -if ( __c_2322 % 20 == 0 )// L22 + __flags_1818 |= ( 0x01 ) ; // L4:L38 +} +} +} +} +if (__static_condition_default_1836) { +if ( __c_1817 && __strchr_1099 ("&;`'\"|*?~<>^()[]{}$\\\n\r%", __c_1817 ) )// L37 +{ + { -if (__static_condition_default_2344) { - __printf_421 ("\n ") ; // L23 +{ + + + + __flags_1818 |= ( 0x01 ) ; // L4:L38 +} } -if (__static_condition_default_2345) { -__static_type_error("type error") ; // L23 } } -if (__static_condition_default_2346) { -if ( __c_2322 && __strchr_1199 ("&;`'\"|*?~<>^()[]{}$\\\n\r%", __c_2322 ) )// L37 +if (__static_condition_default_1837) { +if ( __c_1817 && __strchr_1098 ("&;`'\"|*?~<>^()[]{}$\\\n", __c_1817 ) )// L37 { { @@ -3362,13 +2380,13 @@ if ( __c_2322 && __strchr_1199 ("&;`'\"|*?~<>^()[]{}$\\\n\r%", __c_2322 ) )/ - __flags_2323 |= ( 0x01 ) ; // L4:L38 + __flags_1818 |= ( 0x01 ) ; // L4:L42 } } } } -if (__static_condition_default_2347) { -if ( __c_2322 && __strchr_1199 ("&;`'\"|*?~<>^()[]{}$\\\n", __c_2322 ) )// L37 +if (__static_condition_default_1838) { +if ( __c_1817 && __strchr_1099 ("&;`'\"|*?~<>^()[]{}$\\\n", __c_1817 ) )// L37 { { @@ -3376,7 +2394,7 @@ if ( __c_2322 && __strchr_1199 ("&;`'\"|*?~<>^()[]{}$\\\n", __c_2322 ) )// L - __flags_2323 |= ( 0x01 ) ; // L4:L42 + __flags_1818 |= ( 0x01 ) ; // L4:L42 } } } diff --git a/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.clangres b/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.clangres index 5a0e1bd6..0539eef4 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.clangres @@ -1,13 +1,13 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c:3172:2: warning: Value stored to '__flags_2323' is never read [deadcode.DeadStores] - __flags_2323 |= ( 0x01 ) ; // L4:L42 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c:2149:2: warning: Value stored to '__flags_1818' is never read [deadcode.DeadStores] + __flags_1818 |= ( 0x01 ) ; // L4:L42 ^ ~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c:3241:2: warning: Value stored to '__flags_2323' is never read [deadcode.DeadStores] - __flags_2323 |= ( 0x01 ) ; // L4:L42 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c:2213:2: warning: Value stored to '__flags_1818' is never read [deadcode.DeadStores] + __flags_1818 |= ( 0x01 ) ; // L4:L42 ^ ~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c:3310:2: warning: Value stored to '__flags_2323' is never read [deadcode.DeadStores] - __flags_2323 |= ( 0x01 ) ; // L4:L42 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c:2305:2: warning: Value stored to '__flags_1818' is never read [deadcode.DeadStores] + __flags_1818 |= ( 0x01 ) ; // L4:L42 ^ ~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c:3379:2: warning: Value stored to '__flags_2323' is never read [deadcode.DeadStores] - __flags_2323 |= ( 0x01 ) ; // L4:L42 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c:2397:2: warning: Value stored to '__flags_1818' is never read [deadcode.DeadStores] + __flags_1818 |= ( 0x01 ) ; // L4:L42 ^ ~~~~~~~~ 4 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.inferres index 0325f2da..e5257c37 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.inferres +++ b/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.inferres @@ -1,39 +1,39 @@ -APACHE/c76df14dfb4.desugared.c:3172: error: Dead Store - The value written to &__flags_2323 (type unsigned char) is never used. - 3170. - 3171. - 3172. __flags_2323 |= ( 0x01 ) ; // L4:L42 +APACHE/c76df14dfb4.desugared.c:2149: error: Dead Store + The value written to &__flags_1818 (type unsigned char) is never used. + 2147. + 2148. + 2149. __flags_1818 |= ( 0x01 ) ; // L4:L42 ^ - 3173. } - 3174. } + 2150. } + 2151. } -APACHE/c76df14dfb4.desugared.c:3241: error: Dead Store - The value written to &__flags_2323 (type unsigned char) is never used. - 3239. - 3240. - 3241. __flags_2323 |= ( 0x01 ) ; // L4:L42 +APACHE/c76df14dfb4.desugared.c:2213: error: Dead Store + The value written to &__flags_1818 (type unsigned char) is never used. + 2211. + 2212. + 2213. __flags_1818 |= ( 0x01 ) ; // L4:L42 ^ - 3242. } - 3243. } + 2214. } + 2215. } -APACHE/c76df14dfb4.desugared.c:3310: error: Dead Store - The value written to &__flags_2323 (type unsigned char) is never used. - 3308. - 3309. - 3310. __flags_2323 |= ( 0x01 ) ; // L4:L42 +APACHE/c76df14dfb4.desugared.c:2305: error: Dead Store + The value written to &__flags_1818 (type unsigned char) is never used. + 2303. + 2304. + 2305. __flags_1818 |= ( 0x01 ) ; // L4:L42 ^ - 3311. } - 3312. } + 2306. } + 2307. } -APACHE/c76df14dfb4.desugared.c:3379: error: Dead Store - The value written to &__flags_2323 (type unsigned char) is never used. - 3377. - 3378. - 3379. __flags_2323 |= ( 0x01 ) ; // L4:L42 +APACHE/c76df14dfb4.desugared.c:2397: error: Dead Store + The value written to &__flags_1818 (type unsigned char) is never used. + 2395. + 2396. + 2397. __flags_1818 |= ( 0x01 ) ; // L4:L42 ^ - 3380. } - 3381. } + 2398. } + 2399. } Found 4 issues diff --git a/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.clangres b/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.clangres index 531b4333..c064c3ab 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.clangres @@ -1,7 +1,11 @@ +In file included from :342: +:1:9: error: 'defined' cannot be used as a macro name +#define defined 1 + ^ /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.c:11:3: error: use of undeclared identifier 'limits' limits = (rand() % 2) ? 1 : 0; // ERROR: limits not declared ^ /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.c:12:16: error: use of undeclared identifier 'limits' printf("%d", limits); ^ -2 errors generated. +3 errors generated. diff --git a/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.desugared.c index ab96aa5b..1bfe5841 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.desugared.c @@ -7,349 +7,349 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_1560; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_388; -extern const bool __static_condition_default_1808; -extern const bool __static_condition_default_1377; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_210; extern const bool __static_condition_default_469; -extern const bool __static_condition_default_1385; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_887; -extern const bool __static_condition_default_1810; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_779; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_187; +extern const bool __static_condition_default_170; extern const bool __static_condition_default_1485; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_789; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_412; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_313; -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_250; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_746; extern const bool __static_condition_default_817; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_1516; -extern const bool __static_condition_default_1776; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_521; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_1944; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_803; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_823; +extern const bool __static_condition_default_597; extern const bool __static_condition_default_278; +extern const bool __static_condition_default_1572; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_621; extern const bool __static_condition_default_489; -extern const bool __static_condition_default_431; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_956; -extern const bool __static_condition_default_2046; -extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_1564; +extern const bool __static_condition_default_1789; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_759; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_1373; +extern const bool __static_condition_default_768; extern const bool __static_condition_default_382; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_1420; -extern const bool __static_condition_default_248; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_386; -extern const bool __static_condition_default_536; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_1369; -extern const bool __static_condition_default_357; +extern const bool __static_condition_default_455; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_1944; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_1459; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_753; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_875; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_1385; extern const bool __static_condition_default_1436; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_2044; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_2048; +extern const bool __static_condition_default_907; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_2039; +extern const bool __static_condition_default_1345; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_779; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_1776; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_1453; +extern const bool __static_condition_default_1814; extern const bool __static_condition_default_553; -extern const bool __static_condition_default_632; -extern const bool __static_condition_default_393; -extern const bool __static_condition_default_1458; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_549; -extern const bool __static_condition_default_76; -extern const bool __static_condition_default_542; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_2041; +extern const bool __static_condition_default_419; extern const bool __static_condition_default_543; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_717; extern const bool __static_condition_default_929; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_1750; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_1405; -extern const bool __static_condition_default_957; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_1409; -extern const bool __static_condition_default_408; -extern const bool __static_condition_default_1475; -extern const bool __static_condition_default_1432; -extern const bool __static_condition_default_290; -extern const bool __static_condition_default_1345; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_1749; -extern const bool __static_condition_default_1381; -extern const bool __static_condition_default_755; -extern const bool __static_condition_default_1754; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_1498; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_787; -extern const bool __static_condition_default_1774; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_2043; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_858; -extern const bool __static_condition_default_1424; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_461; -extern const bool __static_condition_default_685; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_438; -extern const bool __static_condition_default_1515; -extern const bool __static_condition_default_1164; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_846; extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_1388; +extern const bool __static_condition_default_290; +extern const bool __static_condition_default_1516; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_2049; +extern const bool __static_condition_default_1402; +extern const bool __static_condition_default_1377; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_471; extern const bool __static_condition_default_512; -extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_677; -extern const bool __static_condition_default_1315; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_1152; -extern const bool __static_condition_default_1773; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_761; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_2039; -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_848; -extern const bool __static_condition_default_217; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_2048; +extern const bool __static_condition_default_559; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_1365; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_1361; +extern const bool __static_condition_default_1369; extern const bool __static_condition_default_311; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_198; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_955; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_1459; -extern const bool __static_condition_default_1531; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_1568; +extern const bool __static_condition_default_747; +extern const bool __static_condition_default_76; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_1065; extern const bool __static_condition_default_1357; -extern const bool __static_condition_default_367; -extern const bool __static_condition_default_907; -extern const bool __static_condition_default_613; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_204; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_590; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_402; -extern const bool __static_condition_default_780; -extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_693; -extern const bool __static_condition_default_286; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_365; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_1791; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_1391; extern const bool __static_condition_default_1552; -extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_638; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_187; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_846; +extern const bool __static_condition_default_1785; +extern const bool __static_condition_default_1035; extern const bool __static_condition_default_347; -extern const bool __static_condition_default_1568; +extern const bool __static_condition_default_1381; +extern const bool __static_condition_default_1475; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_619; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_1152; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_1750; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_1428; +extern const bool __static_condition_default_2042; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_1489; +extern const bool __static_condition_default_550; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_636; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_1420; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_955; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_1515; +extern const bool __static_condition_default_1808; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_791; +extern const bool __static_condition_default_1341; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_536; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_2040; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_1058; extern const bool __static_condition_default_701; -extern const bool __static_condition_default_1398; extern const bool __static_condition_default_315; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_53; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_646; -extern const bool __static_condition_default_723; +extern const bool __static_condition_default_388; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_494; extern const bool __static_condition_default_564; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_235; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_583; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_1576; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_2044; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_84; +extern const bool __static_condition_default_761; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_613; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_1432; extern const bool __static_condition_default_702; -extern const bool __static_condition_default_488; -extern const bool __static_condition_default_651; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_677; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_1531; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_684; extern const bool __static_condition_default_891; -extern const bool __static_condition_default_568; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_753; -extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_317; -extern const bool __static_condition_default_583; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_1373; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_1789; -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_2042; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_1564; -extern const bool __static_condition_default_380; extern const bool __static_condition_default_1165; -extern const bool __static_condition_default_1787; -extern const bool __static_condition_default_559; -extern const bool __static_condition_default_1785; -extern const bool __static_condition_default_1576; -extern const bool __static_condition_default_1816; -extern const bool __static_condition_default_1349; -extern const bool __static_condition_default_1532; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_894; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_747; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_419; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_670; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_1159; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_1391; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_1814; extern const bool __static_condition_default_735; -extern const bool __static_condition_default_967; +extern const bool __static_condition_default_337; extern const bool __static_condition_default_872; -extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_1572; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_1361; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_1775; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_537; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_1424; +extern const bool __static_condition_default_972; extern const bool __static_condition_default_1353; -extern const bool __static_condition_default_2040; -extern const bool __static_condition_default_793; -extern const bool __static_condition_default_1388; -extern const bool __static_condition_default_1791; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_2049; -extern const bool __static_condition_default_709; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_1453; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_1749; +extern const bool __static_condition_default_787; extern const bool __static_condition_default_1395; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_963; -extern const bool __static_condition_default_1556; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_914; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_1416; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_249; +extern const bool __static_condition_default_1754; +extern const bool __static_condition_default_2046; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_1773; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_1816; +extern const bool __static_condition_default_1787; +extern const bool __static_condition_default_1405; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_2043; +extern const bool __static_condition_default_2050; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_549; +extern const bool __static_condition_default_1159; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_991; extern const bool __static_condition_default_842; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_1753; extern const bool __static_condition_default_333; -extern const bool __static_condition_default_1489; +extern const bool __static_condition_default_825; extern const bool __static_condition_default_2045; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_1365; -extern const bool __static_condition_default_244; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_380; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_204; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_1409; +extern const bool __static_condition_default_488; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_1775; +extern const bool __static_condition_default_789; +extern const bool __static_condition_default_1560; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_1532; +extern const bool __static_condition_default_568; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_1753; +extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_963; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_521; +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_1810; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_1164; +extern const bool __static_condition_default_1498; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_1315; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_217; extern const bool __static_condition_default_769; -extern const bool __static_condition_default_1428; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_2041; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_337; +extern const bool __static_condition_default_1416; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_386; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_1774; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_721; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_1556; +extern const bool __static_condition_default_284; extern const bool __static_condition_default_734; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_1341; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_2050; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_275; +extern const bool __static_condition_default_834; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_544; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_1349; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_1398; +extern const bool __static_condition_default_1458; +extern const bool __static_condition_default_894; extern const bool __static_condition_default_280; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_875; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_1402; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_645; -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_367; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_670; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -1432,8 +1432,7 @@ __static_condition_renaming("__static_condition_default_2048", "!(defined RLIMIT __static_condition_renaming("__static_condition_default_2049", "!(defined RLIMIT_CPU) && !(defined RLMIT_NPROC) && !(defined RLIMIT_DATA) && !(defined RLIMIT_VMEM) && (defined RLIMIT_AS) || !(defined RLIMIT_CPU) && !(defined RLMIT_NPROC) && !(defined RLIMIT_DATA) && (defined RLIMIT_VMEM) || !(defined RLIMIT_CPU) && !(defined RLMIT_NPROC) && (defined RLIMIT_DATA) || !(defined RLIMIT_CPU) && (defined RLMIT_NPROC) || (defined RLIMIT_CPU)"); __static_condition_renaming("__static_condition_default_2050", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -if (__static_condition_default_2050) -{ +if (__static_condition_default_2050) { __static_parse_error("Unable to parse"); } }; diff --git a/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.clangres b/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.clangres index d293a64f..e69de29b 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.clangres @@ -1,4 +0,0 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.c:21:1: warning: Potential leak of memory pointed to by 'buf' [unix.Malloc] -} -^ -1 warning generated. diff --git a/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c index 50ab91a6..88c90dc6 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c @@ -7,347 +7,347 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_402; -extern const bool __static_condition_default_1754; -extern const bool __static_condition_default_2053; -extern const bool __static_condition_default_1164; -extern const bool __static_condition_default_1152; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_1402; -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_521; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_1409; +extern const bool __static_condition_default_1810; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_1775; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_419; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_1385; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_1516; +extern const bool __static_condition_default_1315; +extern const bool __static_condition_default_433; extern const bool __static_condition_default_1475; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_549; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_1420; +extern const bool __static_condition_default_1814; +extern const bool __static_condition_default_1373; extern const bool __static_condition_default_751; -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_1388; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_825; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_1568; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_1357; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_2053; extern const bool __static_condition_default_1428; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_2055; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_1814; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_578; +extern const bool __static_condition_default_388; +extern const bool __static_condition_default_1459; extern const bool __static_condition_default_780; -extern const bool __static_condition_default_787; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_1341; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_412; -extern const bool __static_condition_default_789; -extern const bool __static_condition_default_1773; -extern const bool __static_condition_default_755; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_317; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_357; -extern const bool __static_condition_default_955; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_701; -extern const bool __static_condition_default_646; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_1165; -extern const bool __static_condition_default_419; -extern const bool __static_condition_default_685; -extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_891; -extern const bool __static_condition_default_914; -extern const bool __static_condition_default_315; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_1395; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_583; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_1152; +extern const bool __static_condition_default_1498; +extern const bool __static_condition_default_337; extern const bool __static_condition_default_637; -extern const bool __static_condition_default_1564; -extern const bool __static_condition_default_1785; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_1458; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_521; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_1365; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_1556; -extern const bool __static_condition_default_1436; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_53; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_1353; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_182; extern const bool __static_condition_default_408; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_1576; -extern const bool __static_condition_default_1787; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_761; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_1810; -extern const bool __static_condition_default_1944; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_1416; -extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_583; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_187; -extern const bool __static_condition_default_2056; +extern const bool __static_condition_default_542; extern const bool __static_condition_default_803; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_645; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_1531; -extern const bool __static_condition_default_388; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_559; -extern const bool __static_condition_default_1568; -extern const bool __static_condition_default_1753; -extern const bool __static_condition_default_1345; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_386; -extern const bool __static_condition_default_625; +extern const bool __static_condition_default_1572; +extern const bool __static_condition_default_929; extern const bool __static_condition_default_823; -extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_1349; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_1453; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_1816; -extern const bool __static_condition_default_1385; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_1381; -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_613; -extern const bool __static_condition_default_1377; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_461; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_1532; -extern const bool __static_condition_default_747; +extern const bool __static_condition_default_1432; extern const bool __static_condition_default_282; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_365; +extern const bool __static_condition_default_761; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_347; +extern const bool __static_condition_default_549; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_757; extern const bool __static_condition_default_769; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_1750; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_1485; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_957; -extern const bool __static_condition_default_544; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_791; extern const bool __static_condition_default_1515; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_1789; -extern const bool __static_condition_default_702; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_1791; -extern const bool __static_condition_default_872; -extern const bool __static_condition_default_1489; -extern const bool __static_condition_default_1373; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_380; +extern const bool __static_condition_default_1773; +extern const bool __static_condition_default_1754; +extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_1750; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_613; +extern const bool __static_condition_default_894; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_1532; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_834; +extern const bool __static_condition_default_536; extern const bool __static_condition_default_564; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_1405; -extern const bool __static_condition_default_488; -extern const bool __static_condition_default_1432; -extern const bool __static_condition_default_1808; -extern const bool __static_condition_default_2057; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_788; extern const bool __static_condition_default_1560; -extern const bool __static_condition_default_1409; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_367; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_2049; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_907; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_929; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_638; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_293; extern const bool __static_condition_default_842; -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_887; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_201; +extern const bool __static_condition_default_727; extern const bool __static_condition_default_2054; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_2052; -extern const bool __static_condition_default_1516; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_891; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_382; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_907; +extern const bool __static_condition_default_2057; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_123; extern const bool __static_condition_default_878; -extern const bool __static_condition_default_347; -extern const bool __static_condition_default_313; -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_1775; -extern const bool __static_condition_default_198; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_76; -extern const bool __static_condition_default_217; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_1416; +extern const bool __static_condition_default_1774; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_1753; +extern const bool __static_condition_default_1944; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_619; +extern const bool __static_condition_default_550; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_862; extern const bool __static_condition_default_244; -extern const bool __static_condition_default_650; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_311; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_1377; +extern const bool __static_condition_default_367; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_84; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_559; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_693; extern const bool __static_condition_default_275; -extern const bool __static_condition_default_2061; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_248; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_380; -extern const bool __static_condition_default_848; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_858; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_585; extern const bool __static_condition_default_753; +extern const bool __static_condition_default_386; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_963; +extern const bool __static_condition_default_1345; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_779; extern const bool __static_condition_default_846; -extern const bool __static_condition_default_438; -extern const bool __static_condition_default_1353; -extern const bool __static_condition_default_1357; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_417; +extern const bool __static_condition_default_955; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_2052; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_1402; extern const bool __static_condition_default_1369; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_894; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_1349; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_1556; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_489; +extern const bool __static_condition_default_568; +extern const bool __static_condition_default_333; +extern const bool __static_condition_default_1453; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_1164; +extern const bool __static_condition_default_1398; +extern const bool __static_condition_default_1816; +extern const bool __static_condition_default_363; extern const bool __static_condition_default_590; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_382; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_693; -extern const bool __static_condition_default_956; -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_677; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_1315; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_494; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_636; +extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_1489; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_1531; +extern const bool __static_condition_default_1789; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_1424; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_621; extern const bool __static_condition_default_529; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_875; -extern const bool __static_condition_default_1459; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_727; extern const bool __static_condition_default_670; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_311; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_2056; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_1552; extern const bool __static_condition_default_944; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_2051; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_1572; -extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_1405; +extern const bool __static_condition_default_255; extern const bool __static_condition_default_475; -extern const bool __static_condition_default_568; +extern const bool __static_condition_default_1808; +extern const bool __static_condition_default_875; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_488; +extern const bool __static_condition_default_1564; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_1388; +extern const bool __static_condition_default_1165; extern const bool __static_condition_default_1361; -extern const bool __static_condition_default_393; -extern const bool __static_condition_default_793; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_1498; -extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_1774; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_512; -extern const bool __static_condition_default_661; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_759; extern const bool __static_condition_default_1776; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_747; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_2061; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_204; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_544; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_1785; +extern const bool __static_condition_default_1159; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_1436; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_1576; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_2051; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_2049; extern const bool __static_condition_default_573; -extern const bool __static_condition_default_431; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_1552; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_677; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_1458; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_402; extern const bool __static_condition_default_760; -extern const bool __static_condition_default_963; -extern const bool __static_condition_default_709; -extern const bool __static_condition_default_552; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_721; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_512; +extern const bool __static_condition_default_76; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_1791; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_1485; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_1341; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_1365; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_187; +extern const bool __static_condition_default_789; extern const bool __static_condition_default_700; -extern const bool __static_condition_default_333; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_1159; -extern const bool __static_condition_default_1395; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_543; +extern const bool __static_condition_default_702; +extern const bool __static_condition_default_280; extern const bool __static_condition_default_1391; -extern const bool __static_condition_default_779; -extern const bool __static_condition_default_1398; -extern const bool __static_condition_default_1420; +extern const bool __static_condition_default_2055; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_1787; +extern const bool __static_condition_default_455; extern const bool __static_condition_default_290; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_536; -extern const bool __static_condition_default_632; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_1424; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_1381; extern const bool __static_condition_default_1749; -extern const bool __static_condition_default_204; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_432; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -1440,8 +1440,7 @@ __static_condition_renaming("__static_condition_default_2056", "!(defined __need __static_condition_renaming("__static_condition_default_2057", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && APR_HAS_SHARED_MEMORY || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _STDLIB_H) && APR_HAS_SHARED_MEMORY || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && APR_HAS_SHARED_MEMORY || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _STDLIB_H) && APR_HAS_SHARED_MEMORY || (defined __need___FILE) && APR_HAS_SHARED_MEMORY"); __static_condition_renaming("__static_condition_default_2061", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -if (__static_condition_default_2061) -{ +if (__static_condition_default_2061) { __static_parse_error("Unable to parse"); } }; diff --git a/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.clangres b/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.clangres index e58c0232..eceaa85d 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.clangres @@ -1,37 +1,37 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2920:10: warning: Value stored to '__buf_2043' during its initialization is never read [deadcode.DeadStores] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2919:10: warning: Value stored to '__buf_2043' during its initialization is never read [deadcode.DeadStores] char * (__buf_2043)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2037 ,sizeof(char)));// L16 ^~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2922:10: warning: Value stored to '__buf_2044' during its initialization is never read [deadcode.DeadStores] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2921:10: warning: Value stored to '__buf_2044' during its initialization is never read [deadcode.DeadStores] char * (__buf_2044)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2038 ,sizeof(char)));// L16 ^~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2922:62: warning: Potential leak of memory pointed to by '__buf_2043' [unix.Malloc] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2921:62: warning: Potential leak of memory pointed to by '__buf_2043' [unix.Malloc] char * (__buf_2044)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2038 ,sizeof(char)));// L16 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2924:62: warning: Potential leak of memory pointed to by '__buf_2044' [unix.Malloc] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2923:62: warning: Potential leak of memory pointed to by '__buf_2044' [unix.Malloc] char * (__buf_2045)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2036 ,sizeof(char)));// L16 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2928:10: warning: Value stored to '__buf_2047' during its initialization is never read [deadcode.DeadStores] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2927:10: warning: Value stored to '__buf_2047' during its initialization is never read [deadcode.DeadStores] char * (__buf_2047)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2036 ,sizeof(char)));// L16 ^~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2930:10: warning: Value stored to '__buf_2048' during its initialization is never read [deadcode.DeadStores] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2929:10: warning: Value stored to '__buf_2048' during its initialization is never read [deadcode.DeadStores] char * (__buf_2048)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2038 ,sizeof(char)));// L16 ^~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2930:62: warning: Potential leak of memory pointed to by '__buf_2047' [unix.Malloc] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2929:62: warning: Potential leak of memory pointed to by '__buf_2047' [unix.Malloc] char * (__buf_2048)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2038 ,sizeof(char)));// L16 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2936:5: warning: Potential leak of memory pointed to by '__buf_2048' [unix.Malloc] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2935:5: warning: Potential leak of memory pointed to by '__buf_2048' [unix.Malloc] if (__static_condition_default_2053) { ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2939:5: warning: Potential leak of memory pointed to by '__buf_2041' [unix.Malloc] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2938:5: warning: Potential leak of memory pointed to by '__buf_2041' [unix.Malloc] if (__static_condition_default_2054) { ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2942:5: warning: Potential leak of memory pointed to by '__buf_2042' [unix.Malloc] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2941:5: warning: Potential leak of memory pointed to by '__buf_2042' [unix.Malloc] if (__static_condition_default_2055) { ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2945:5: warning: Potential leak of memory pointed to by '__buf_2045' [unix.Malloc] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2944:5: warning: Potential leak of memory pointed to by '__buf_2045' [unix.Malloc] if (__static_condition_default_2056) { ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2948:5: warning: Potential leak of memory pointed to by '__buf_2046' [unix.Malloc] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2947:5: warning: Potential leak of memory pointed to by '__buf_2046' [unix.Malloc] if (__static_condition_default_2057) { ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 12 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.inferres index 4b5f1c55..c4d11814 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.inferres +++ b/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.inferres @@ -1,39 +1,39 @@ -APACHE/d05e574ec26.desugared.c:2920: error: Dead Store +APACHE/d05e574ec26.desugared.c:2919: error: Dead Store The value written to &__buf_2043 (type char*) is never used. - 2918. char * (__buf_2042)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2038 ,sizeof(char)));// L16 - 2919. - 2920. char * (__buf_2043)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2037 ,sizeof(char)));// L16 + 2917. char * (__buf_2042)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2038 ,sizeof(char)));// L16 + 2918. + 2919. char * (__buf_2043)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2037 ,sizeof(char)));// L16 ^ - 2921. - 2922. char * (__buf_2044)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2038 ,sizeof(char)));// L16 + 2920. + 2921. char * (__buf_2044)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2038 ,sizeof(char)));// L16 -APACHE/d05e574ec26.desugared.c:2922: error: Dead Store +APACHE/d05e574ec26.desugared.c:2921: error: Dead Store The value written to &__buf_2044 (type char*) is never used. - 2920. char * (__buf_2043)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2037 ,sizeof(char)));// L16 - 2921. - 2922. char * (__buf_2044)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2038 ,sizeof(char)));// L16 + 2919. char * (__buf_2043)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2037 ,sizeof(char)));// L16 + 2920. + 2921. char * (__buf_2044)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2038 ,sizeof(char)));// L16 ^ - 2923. - 2924. char * (__buf_2045)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2036 ,sizeof(char)));// L16 + 2922. + 2923. char * (__buf_2045)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2036 ,sizeof(char)));// L16 -APACHE/d05e574ec26.desugared.c:2928: error: Dead Store +APACHE/d05e574ec26.desugared.c:2927: error: Dead Store The value written to &__buf_2047 (type char*) is never used. - 2926. char * (__buf_2046)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2038 ,sizeof(char)));// L16 - 2927. - 2928. char * (__buf_2047)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2036 ,sizeof(char)));// L16 + 2925. char * (__buf_2046)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2038 ,sizeof(char)));// L16 + 2926. + 2927. char * (__buf_2047)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2036 ,sizeof(char)));// L16 ^ - 2929. - 2930. char * (__buf_2048)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2038 ,sizeof(char)));// L16 + 2928. + 2929. char * (__buf_2048)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2038 ,sizeof(char)));// L16 -APACHE/d05e574ec26.desugared.c:2930: error: Dead Store +APACHE/d05e574ec26.desugared.c:2929: error: Dead Store The value written to &__buf_2048 (type char*) is never used. - 2928. char * (__buf_2047)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2036 ,sizeof(char)));// L16 - 2929. - 2930. char * (__buf_2048)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2038 ,sizeof(char)));// L16 + 2927. char * (__buf_2047)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2036 ,sizeof(char)));// L16 + 2928. + 2929. char * (__buf_2048)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2038 ,sizeof(char)));// L16 ^ - 2931. - 2932. if (__static_condition_default_2049) { + 2930. + 2931. if (__static_condition_default_2049) { Found 4 issues diff --git a/fonda/cpp_testsuite/varBugs/APACHE/dbafef17dd1.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/dbafef17dd1.desugared.c index 566a5c58..04517007 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/dbafef17dd1.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/dbafef17dd1.desugared.c @@ -7,90 +7,90 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_1024; -extern const bool __static_condition_default_243; -extern const bool __static_condition_default_252; -extern const bool __static_condition_default_352; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_1074; -extern const bool __static_condition_default_1087; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_594; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_1053; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_1092; -extern const bool __static_condition_default_420; -extern const bool __static_condition_default_296; +extern const bool __static_condition_default_1048; extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_240; -extern const bool __static_condition_default_379; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_806; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_1094; -extern const bool __static_condition_default_60; -extern const bool __static_condition_default_1031; -extern const bool __static_condition_default_595; +extern const bool __static_condition_default_305; extern const bool __static_condition_default_627; extern const bool __static_condition_default_288; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_818; -extern const bool __static_condition_default_1077; -extern const bool __static_condition_default_302; -extern const bool __static_condition_default_237; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_604; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_67; +extern const bool __static_condition_default_1092; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_264; extern const bool __static_condition_default_293; -extern const bool __static_condition_default_1096; -extern const bool __static_condition_default_1083; +extern const bool __static_condition_default_1031; +extern const bool __static_condition_default_818; +extern const bool __static_condition_default_1038; extern const bool __static_condition_default_308; -extern const bool __static_condition_default_629; -extern const bool __static_condition_default_1047; -extern const bool __static_condition_default_1054; -extern const bool __static_condition_default_215; -extern const bool __static_condition_default_378; -extern const bool __static_condition_default_1030; -extern const bool __static_condition_default_1037; extern const bool __static_condition_default_341; -extern const bool __static_condition_default_394; -extern const bool __static_condition_default_432; +extern const bool __static_condition_default_215; +extern const bool __static_condition_default_276; extern const bool __static_condition_default_249; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_804; -extern const bool __static_condition_default_429; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_378; extern const bool __static_condition_default_426; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_261; -extern const bool __static_condition_default_305; -extern const bool __static_condition_default_349; -extern const bool __static_condition_default_414; -extern const bool __static_condition_default_1088; +extern const bool __static_condition_default_325; +extern const bool __static_condition_default_1097; +extern const bool __static_condition_default_1032; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_805; +extern const bool __static_condition_default_429; +extern const bool __static_condition_default_279; +extern const bool __static_condition_default_594; +extern const bool __static_condition_default_804; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_1037; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_273; extern const bool __static_condition_default_819; -extern const bool __static_condition_default_1095; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_621; extern const bool __static_condition_default_234; -extern const bool __static_condition_default_273; -extern const bool __static_condition_default_1048; -extern const bool __static_condition_default_279; -extern const bool __static_condition_default_276; -extern const bool __static_condition_default_604; -extern const bool __static_condition_default_1082; +extern const bool __static_condition_default_352; +extern const bool __static_condition_default_417; extern const bool __static_condition_default_361; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_1026; +extern const bool __static_condition_default_1054; +extern const bool __static_condition_default_252; +extern const bool __static_condition_default_1055; +extern const bool __static_condition_default_1095; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_1049; +extern const bool __static_condition_default_285; +extern const bool __static_condition_default_60; +extern const bool __static_condition_default_629; +extern const bool __static_condition_default_243; extern const bool __static_condition_default_255; -extern const bool __static_condition_default_423; extern const bool __static_condition_default_623; -extern const bool __static_condition_default_285; -extern const bool __static_condition_default_67; -extern const bool __static_condition_default_1025; -extern const bool __static_condition_default_805; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_325; +extern const bool __static_condition_default_1084; +extern const bool __static_condition_default_240; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_1090; extern const bool __static_condition_default_579; +extern const bool __static_condition_default_1088; +extern const bool __static_condition_default_423; +extern const bool __static_condition_default_1074; +extern const bool __static_condition_default_394; +extern const bool __static_condition_default_420; +extern const bool __static_condition_default_1075; +extern const bool __static_condition_default_302; extern const bool __static_condition_default_581; +extern const bool __static_condition_default_237; +extern const bool __static_condition_default_261; +extern const bool __static_condition_default_1093; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_379; +extern const bool __static_condition_default_1096; +extern const bool __static_condition_default_595; +extern const bool __static_condition_default_1078; +extern const bool __static_condition_default_349; +extern const bool __static_condition_default_1083; +extern const bool __static_condition_default_414; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_1025; +extern const bool __static_condition_default_806; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -507,59 +507,60 @@ __static_renaming("__strdup_897", "strdup"); __static_renaming("__strndup_901", "strndup"); __static_renaming("__strndup_902", "strndup"); __static_renaming("__strchr_905", "strchr"); -__static_renaming("__strrchr_908", "strrchr"); -__static_renaming("__strcspn_911", "strcspn"); +__static_renaming("__strchr_906", "strchr"); +__static_renaming("__strrchr_909", "strrchr"); __static_renaming("__strcspn_912", "strcspn"); -__static_renaming("__strspn_915", "strspn"); +__static_renaming("__strcspn_913", "strcspn"); __static_renaming("__strspn_916", "strspn"); -__static_renaming("__strpbrk_919", "strpbrk"); -__static_renaming("__strstr_922", "strstr"); -__static_renaming("__strtok_925", "strtok"); -__static_renaming("____strtok_r_929", "__strtok_r"); -__static_renaming("__strtok_r_933", "strtok_r"); -__static_renaming("__strlen_935", "strlen"); +__static_renaming("__strspn_917", "strspn"); +__static_renaming("__strpbrk_920", "strpbrk"); +__static_renaming("__strstr_923", "strstr"); +__static_renaming("__strtok_926", "strtok"); +__static_renaming("____strtok_r_930", "__strtok_r"); +__static_renaming("__strtok_r_934", "strtok_r"); __static_renaming("__strlen_936", "strlen"); __static_renaming("__strlen_937", "strlen"); __static_renaming("__strlen_938", "strlen"); -__static_renaming("__strnlen_942", "strnlen"); +__static_renaming("__strlen_939", "strlen"); __static_renaming("__strnlen_943", "strnlen"); -__static_renaming("__strerror_945", "strerror"); +__static_renaming("__strnlen_944", "strnlen"); __static_renaming("__strerror_946", "strerror"); -__static_renaming("__strerror_r_951", "strerror_r"); +__static_renaming("__strerror_947", "strerror"); __static_renaming("__strerror_r_952", "strerror_r"); -__static_renaming("__strerror_l_955", "strerror_l"); -__static_renaming("____bzero_959", "__bzero"); +__static_renaming("__strerror_r_953", "strerror_r"); +__static_renaming("__strerror_l_956", "strerror_l"); __static_renaming("____bzero_960", "__bzero"); __static_renaming("____bzero_961", "__bzero"); __static_renaming("____bzero_962", "__bzero"); -__static_renaming("__bcopy_967", "bcopy"); +__static_renaming("____bzero_963", "__bzero"); __static_renaming("__bcopy_968", "bcopy"); -__static_renaming("__bzero_972", "bzero"); +__static_renaming("__bcopy_969", "bcopy"); __static_renaming("__bzero_973", "bzero"); -__static_renaming("__bcmp_978", "bcmp"); +__static_renaming("__bzero_974", "bzero"); __static_renaming("__bcmp_979", "bcmp"); -__static_renaming("__index_982", "index"); -__static_renaming("__rindex_985", "rindex"); -__static_renaming("__ffs_987", "ffs"); -__static_renaming("__strcasecmp_990", "strcasecmp"); -__static_renaming("__strncasecmp_995", "strncasecmp"); +__static_renaming("__bcmp_980", "bcmp"); +__static_renaming("__index_983", "index"); +__static_renaming("__rindex_986", "rindex"); +__static_renaming("__ffs_988", "ffs"); +__static_renaming("__strcasecmp_991", "strcasecmp"); __static_renaming("__strncasecmp_996", "strncasecmp"); -__static_renaming("__strsep_999", "strsep"); -__static_renaming("__strsignal_1001", "strsignal"); -__static_renaming("____stpcpy_1004", "__stpcpy"); -__static_renaming("__stpcpy_1007", "stpcpy"); -__static_renaming("____stpncpy_1012", "__stpncpy"); +__static_renaming("__strncasecmp_997", "strncasecmp"); +__static_renaming("__strsep_1000", "strsep"); +__static_renaming("__strsignal_1002", "strsignal"); +__static_renaming("____stpcpy_1005", "__stpcpy"); +__static_renaming("__stpcpy_1008", "stpcpy"); __static_renaming("____stpncpy_1013", "__stpncpy"); -__static_renaming("__stpncpy_1018", "stpncpy"); +__static_renaming("____stpncpy_1014", "__stpncpy"); __static_renaming("__stpncpy_1019", "stpncpy"); -__static_renaming("____stpncpy_chk_1061", "__stpncpy_chk"); +__static_renaming("__stpncpy_1020", "stpncpy"); __static_renaming("____stpncpy_chk_1062", "__stpncpy_chk"); -__static_renaming("____stpncpy_alias_1067", "__stpncpy_alias"); +__static_renaming("____stpncpy_chk_1063", "__stpncpy_chk"); __static_renaming("____stpncpy_alias_1068", "__stpncpy_alias"); -__static_renaming("__newuri_1084", "newuri"); -__static_renaming("__apply_rewrite_rule_1085", "apply_rewrite_rule"); +__static_renaming("____stpncpy_alias_1069", "__stpncpy_alias"); +__static_renaming("__newuri_1085", "newuri"); __static_renaming("__apply_rewrite_rule_1086", "apply_rewrite_rule"); -__static_renaming("__main_1093", "main"); +__static_renaming("__apply_rewrite_rule_1087", "apply_rewrite_rule"); +__static_renaming("__main_1094", "main"); __static_condition_renaming("__static_condition_default_60", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H) && (defined _BITS_TYPESIZES_H)"); __static_condition_renaming("__static_condition_default_67", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); @@ -621,33 +622,32 @@ __static_condition_renaming("__static_condition_default_805", "!(defined _STDLIB __static_condition_renaming("__static_condition_default_806", "(defined _STDLIB_H)"); __static_condition_renaming("__static_condition_default_818", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__)"); __static_condition_renaming("__static_condition_default_819", "(defined _STDLIB_H) && !(defined __STRICT_ANSI__)"); -__static_condition_renaming("__static_condition_default_1024", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1025", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1030", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1031", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1036", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1037", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1047", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1048", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1053", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1054", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1073", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1074", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1077", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1082", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1083", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1087", "!(defined _FORTIFY_SOURCE) && !(defined HAS_APACHE_REGEX_LIB) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined HAS_APACHE_REGEX_LIB) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined HAS_APACHE_REGEX_LIB) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined HAS_APACHE_REGEX_LIB)"); -__static_condition_renaming("__static_condition_default_1088", "!(defined _FORTIFY_SOURCE) && (defined HAS_APACHE_REGEX_LIB) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined HAS_APACHE_REGEX_LIB) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined HAS_APACHE_REGEX_LIB) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined HAS_APACHE_REGEX_LIB)"); -__static_condition_renaming("__static_condition_default_1089", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && (defined HAS_APACHE_REGEX_LIB) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined HAS_APACHE_REGEX_LIB) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined HAS_APACHE_REGEX_LIB) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined HAS_APACHE_REGEX_LIB)"); -__static_condition_renaming("__static_condition_default_1090", "(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && (defined HAS_APACHE_REGEX_LIB) || (defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined HAS_APACHE_REGEX_LIB) || (defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined HAS_APACHE_REGEX_LIB) || (defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined HAS_APACHE_REGEX_LIB)"); -__static_condition_renaming("__static_condition_default_1091", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined HAS_APACHE_REGEX_LIB)"); -__static_condition_renaming("__static_condition_default_1092", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined HAS_APACHE_REGEX_LIB)"); -__static_condition_renaming("__static_condition_default_1094", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1095", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1096", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined __need_malloc_and_calloc) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || (defined _STDLIB_H) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO)"); - -if (__static_condition_default_1096) -{ +__static_condition_renaming("__static_condition_default_1025", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1026", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1031", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1032", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1037", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1038", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1048", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1049", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1054", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1055", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1074", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1075", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1078", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1083", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1084", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1088", "!(defined _FORTIFY_SOURCE) && !(defined HAS_APACHE_REGEX_LIB) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined HAS_APACHE_REGEX_LIB) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined HAS_APACHE_REGEX_LIB) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined HAS_APACHE_REGEX_LIB)"); +__static_condition_renaming("__static_condition_default_1089", "!(defined _FORTIFY_SOURCE) && (defined HAS_APACHE_REGEX_LIB) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined HAS_APACHE_REGEX_LIB) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined HAS_APACHE_REGEX_LIB) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined HAS_APACHE_REGEX_LIB)"); +__static_condition_renaming("__static_condition_default_1090", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && (defined HAS_APACHE_REGEX_LIB) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined HAS_APACHE_REGEX_LIB) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined HAS_APACHE_REGEX_LIB) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined HAS_APACHE_REGEX_LIB)"); +__static_condition_renaming("__static_condition_default_1091", "(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && (defined HAS_APACHE_REGEX_LIB) || (defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined HAS_APACHE_REGEX_LIB) || (defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined HAS_APACHE_REGEX_LIB) || (defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined HAS_APACHE_REGEX_LIB)"); +__static_condition_renaming("__static_condition_default_1092", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined HAS_APACHE_REGEX_LIB)"); +__static_condition_renaming("__static_condition_default_1093", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined HAS_APACHE_REGEX_LIB)"); +__static_condition_renaming("__static_condition_default_1095", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1096", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1097", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc)"); + +if (__static_condition_default_1097) { __static_parse_error("Unable to parse"); } }; @@ -1473,51 +1473,52 @@ extern char * ((__strdup_897) (const char * (____s_896)));// L171:L172 extern char * ((__strndup_901) (const char * (____string_898), __size_t_1 ____n_899));// L179:L180 extern char * ((__strndup_902) (const char * (____string_898), __size_t_799 ____n_900));// L179:L180 extern char * ((__strchr_905) (const char * (____s_903), int ____c_904));// L231:L232 -extern char * ((__strrchr_908) (const char * (____s_906), int ____c_907));// L258:L259 -extern __size_t_1 (__strcspn_911) (const char * (____s_909), const char * (____reject_910));// L280:L281 -extern __size_t_799 (__strcspn_912) (const char * (____s_909), const char * (____reject_910));// L280:L281 -extern __size_t_1 (__strspn_915) (const char * (____s_913), const char * (____accept_914));// L284:L285 -extern __size_t_799 (__strspn_916) (const char * (____s_913), const char * (____accept_914));// L284:L285 -extern char * ((__strpbrk_919) (const char * (____s_917), const char * (____accept_918)));// L310:L311 -extern char * ((__strstr_922) (const char * (____haystack_920), const char * (____needle_921)));// L337:L338 -extern char * ((__strtok_925) (char * __restrict ____s_923, const char * __restrict ____delim_924));// L343:L344 -extern char * ((____strtok_r_929) (char * __restrict ____s_926, const char * __restrict ____delim_927, char * (* __restrict ____save_ptr_928)));// L349:L352 -extern char * ((__strtok_r_933) (char * __restrict ____s_930, const char * __restrict ____delim_931, char * (* __restrict ____save_ptr_932)));// L354:L356 -extern __size_t_1 (__strlen_935) (const char * (____s_934));// L394:L395 -extern __size_t_799 (__strlen_936) (const char * (____s_934));// L394:L395 -extern __size_t_1 (__strlen_937) (const char * (____s_934));// L394:L395 -extern __size_t_799 (__strlen_938) (const char * (____s_934));// L394:L395 -extern __size_t_1 (__strnlen_942) (const char * (____string_939), __size_t_1 ____maxlen_940);// L401:L402 -extern __size_t_799 (__strnlen_943) (const char * (____string_939), __size_t_799 ____maxlen_941);// L401:L402 -extern char * ((__strerror_945) (int ____errnum_944));// L408 -extern char * ((__strerror_946) (int ____errnum_944));// L408 -extern int (__strerror_r_951) (int ____errnum_947, char * (____buf_948), __size_t_1 ____buflen_949);// L422:L424 -extern int (__strerror_r_952) (int ____errnum_947, char * (____buf_948), __size_t_799 ____buflen_950);// L422:L424 -extern char * ((__strerror_l_955) (int ____errnum_953, ____locale_t_883 ____l_954));// L440 -extern void (____bzero_959) (void * (____s_956), __size_t_1 ____n_957);// L446 -extern void (____bzero_960) (void * (____s_956), __size_t_799 ____n_958);// L446 -extern void (____bzero_961) (void * (____s_956), __size_t_1 ____n_957);// L446 -extern void (____bzero_962) (void * (____s_956), __size_t_799 ____n_958);// L446 -extern void (__bcopy_967) (const void * (____src_963), void * (____dest_964), __size_t_1 ____n_965);// L450:L451 -extern void (__bcopy_968) (const void * (____src_963), void * (____dest_964), __size_t_799 ____n_966);// L450:L451 -extern void (__bzero_972) (void * (____s_969), __size_t_1 ____n_970);// L454 -extern void (__bzero_973) (void * (____s_969), __size_t_799 ____n_971);// L454 -extern int (__bcmp_978) (const void * (____s1_974), const void * (____s2_975), __size_t_1 ____n_976);// L457:L458 -extern int (__bcmp_979) (const void * (____s1_974), const void * (____s2_975), __size_t_799 ____n_977);// L457:L458 -extern char * ((__index_982) (const char * (____s_980), int ____c_981));// L484:L485 -extern char * ((__rindex_985) (const char * (____s_983), int ____c_984));// L512:L513 -extern int (__ffs_987) (int ____i_986);// L518 -extern int (__strcasecmp_990) (const char * (____s1_988), const char * (____s2_989));// L529:L530 -extern int (__strncasecmp_995) (const char * (____s1_991), const char * (____s2_992), __size_t_1 ____n_993);// L533:L534 -extern int (__strncasecmp_996) (const char * (____s1_991), const char * (____s2_992), __size_t_799 ____n_994);// L533:L534 -extern char * ((__strsep_999) (char * (* __restrict ____stringp_997), const char * __restrict ____delim_998));// L552:L554 -extern char * ((__strsignal_1001) (int ____sig_1000));// L559 -extern char * ((____stpcpy_1004) (char * __restrict ____dest_1002, const char * __restrict ____src_1003));// L562:L563 -extern char * ((__stpcpy_1007) (char * __restrict ____dest_1005, const char * __restrict ____src_1006));// L564:L565 -extern char * ((____stpncpy_1012) (char * __restrict ____dest_1008, const char * __restrict ____src_1009, __size_t_1 ____n_1010));// L569:L571 -extern char * ((____stpncpy_1013) (char * __restrict ____dest_1008, const char * __restrict ____src_1009, __size_t_799 ____n_1011));// L569:L571 -extern char * ((__stpncpy_1018) (char * __restrict ____dest_1014, const char * __restrict ____src_1015, __size_t_1 ____n_1016));// L572:L574 -extern char * ((__stpncpy_1019) (char * __restrict ____dest_1014, const char * __restrict ____src_1015, __size_t_799 ____n_1017));// L572:L574 +extern char * ((__strchr_906) (const char * (____s_903), int ____c_904));// L231:L232 +extern char * ((__strrchr_909) (const char * (____s_907), int ____c_908));// L258:L259 +extern __size_t_1 (__strcspn_912) (const char * (____s_910), const char * (____reject_911));// L280:L281 +extern __size_t_799 (__strcspn_913) (const char * (____s_910), const char * (____reject_911));// L280:L281 +extern __size_t_1 (__strspn_916) (const char * (____s_914), const char * (____accept_915));// L284:L285 +extern __size_t_799 (__strspn_917) (const char * (____s_914), const char * (____accept_915));// L284:L285 +extern char * ((__strpbrk_920) (const char * (____s_918), const char * (____accept_919)));// L310:L311 +extern char * ((__strstr_923) (const char * (____haystack_921), const char * (____needle_922)));// L337:L338 +extern char * ((__strtok_926) (char * __restrict ____s_924, const char * __restrict ____delim_925));// L343:L344 +extern char * ((____strtok_r_930) (char * __restrict ____s_927, const char * __restrict ____delim_928, char * (* __restrict ____save_ptr_929)));// L349:L352 +extern char * ((__strtok_r_934) (char * __restrict ____s_931, const char * __restrict ____delim_932, char * (* __restrict ____save_ptr_933)));// L354:L356 +extern __size_t_1 (__strlen_936) (const char * (____s_935));// L394:L395 +extern __size_t_799 (__strlen_937) (const char * (____s_935));// L394:L395 +extern __size_t_1 (__strlen_938) (const char * (____s_935));// L394:L395 +extern __size_t_799 (__strlen_939) (const char * (____s_935));// L394:L395 +extern __size_t_1 (__strnlen_943) (const char * (____string_940), __size_t_1 ____maxlen_941);// L401:L402 +extern __size_t_799 (__strnlen_944) (const char * (____string_940), __size_t_799 ____maxlen_942);// L401:L402 +extern char * ((__strerror_946) (int ____errnum_945));// L408 +extern char * ((__strerror_947) (int ____errnum_945));// L408 +extern int (__strerror_r_952) (int ____errnum_948, char * (____buf_949), __size_t_1 ____buflen_950);// L422:L424 +extern int (__strerror_r_953) (int ____errnum_948, char * (____buf_949), __size_t_799 ____buflen_951);// L422:L424 +extern char * ((__strerror_l_956) (int ____errnum_954, ____locale_t_883 ____l_955));// L440 +extern void (____bzero_960) (void * (____s_957), __size_t_1 ____n_958);// L446 +extern void (____bzero_961) (void * (____s_957), __size_t_799 ____n_959);// L446 +extern void (____bzero_962) (void * (____s_957), __size_t_1 ____n_958);// L446 +extern void (____bzero_963) (void * (____s_957), __size_t_799 ____n_959);// L446 +extern void (__bcopy_968) (const void * (____src_964), void * (____dest_965), __size_t_1 ____n_966);// L450:L451 +extern void (__bcopy_969) (const void * (____src_964), void * (____dest_965), __size_t_799 ____n_967);// L450:L451 +extern void (__bzero_973) (void * (____s_970), __size_t_1 ____n_971);// L454 +extern void (__bzero_974) (void * (____s_970), __size_t_799 ____n_972);// L454 +extern int (__bcmp_979) (const void * (____s1_975), const void * (____s2_976), __size_t_1 ____n_977);// L457:L458 +extern int (__bcmp_980) (const void * (____s1_975), const void * (____s2_976), __size_t_799 ____n_978);// L457:L458 +extern char * ((__index_983) (const char * (____s_981), int ____c_982));// L484:L485 +extern char * ((__rindex_986) (const char * (____s_984), int ____c_985));// L512:L513 +extern int (__ffs_988) (int ____i_987);// L518 +extern int (__strcasecmp_991) (const char * (____s1_989), const char * (____s2_990));// L529:L530 +extern int (__strncasecmp_996) (const char * (____s1_992), const char * (____s2_993), __size_t_1 ____n_994);// L533:L534 +extern int (__strncasecmp_997) (const char * (____s1_992), const char * (____s2_993), __size_t_799 ____n_995);// L533:L534 +extern char * ((__strsep_1000) (char * (* __restrict ____stringp_998), const char * __restrict ____delim_999));// L552:L554 +extern char * ((__strsignal_1002) (int ____sig_1001));// L559 +extern char * ((____stpcpy_1005) (char * __restrict ____dest_1003, const char * __restrict ____src_1004));// L562:L563 +extern char * ((__stpcpy_1008) (char * __restrict ____dest_1006, const char * __restrict ____src_1007));// L564:L565 +extern char * ((____stpncpy_1013) (char * __restrict ____dest_1009, const char * __restrict ____src_1010, __size_t_1 ____n_1011));// L569:L571 +extern char * ((____stpncpy_1014) (char * __restrict ____dest_1009, const char * __restrict ____src_1010, __size_t_799 ____n_1012));// L569:L571 +extern char * ((__stpncpy_1019) (char * __restrict ____dest_1015, const char * __restrict ____src_1016, __size_t_1 ____n_1017));// L572:L574 +extern char * ((__stpncpy_1020) (char * __restrict ____dest_1015, const char * __restrict ____src_1016, __size_t_799 ____n_1018));// L572:L574 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ @@ -1525,24 +1526,24 @@ extern char * ((__stpncpy_1019) (char * __restrict ____dest_1014, const char /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern char * ((____stpncpy_chk_1061) (char * (____dest_1055), const char * (____src_1056), __size_t_1 ____n_1057, __size_t_1 ____destlen_1059));// L130:L131 -extern char * ((____stpncpy_chk_1062) (char * (____dest_1055), const char * (____src_1056), __size_t_799 ____n_1058, __size_t_799 ____destlen_1060));// L130:L131 -extern char * ((____stpncpy_alias_1067) (char * (____dest_1063), const char * (____src_1064), __size_t_1 ____n_1065));// L132:L133 -extern char * ((____stpncpy_alias_1068) (char * (____dest_1063), const char * (____src_1064), __size_t_799 ____n_1066));// L132:L133 +extern char * ((____stpncpy_chk_1062) (char * (____dest_1056), const char * (____src_1057), __size_t_1 ____n_1058, __size_t_1 ____destlen_1060));// L130:L131 +extern char * ((____stpncpy_chk_1063) (char * (____dest_1056), const char * (____src_1057), __size_t_799 ____n_1059, __size_t_799 ____destlen_1061));// L130:L131 +extern char * ((____stpncpy_alias_1068) (char * (____dest_1064), const char * (____src_1065), __size_t_1 ____n_1066));// L132:L133 +extern char * ((____stpncpy_alias_1069) (char * (____dest_1064), const char * (____src_1065), __size_t_799 ____n_1067));// L132:L133 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -void (__apply_rewrite_rule_1085) () { +void (__apply_rewrite_rule_1086) () { { -if (__static_condition_default_1087) { +if (__static_condition_default_1088) { { { -char __newuri_1084[20];// L8 +char __newuri_1085[20];// L8 } } @@ -1550,22 +1551,22 @@ char __newuri_1084[20];// L8 } -if (__static_condition_default_1088) { +if (__static_condition_default_1089) { { { -char __newuri_1084[20];// L8 +char __newuri_1085[20];// L8 -if (__static_condition_default_1089) { - __strncpy_847 ( __newuri_1084 ,"pregsub()",sizeof(( __newuri_1084 )) - 1) ; // L11 -} if (__static_condition_default_1090) { - __strncpy_848 ( __newuri_1084 ,"pregsub()",sizeof(( __newuri_1084 )) - 1) ; // L11 + __strncpy_847 ( __newuri_1085 ,"pregsub()",sizeof(( __newuri_1085 )) - 1) ; // L11 } - __newuri_1084 [ sizeof(( __newuri_1084 - 1 )) ] = '\0' ; // L12 +if (__static_condition_default_1091) { + __strncpy_848 ( __newuri_1085 ,"pregsub()",sizeof(( __newuri_1085 )) - 1) ; // L11 +} + __newuri_1085 [ sizeof(( __newuri_1085 - 1 )) ] = '\0' ; // L12 } } @@ -1573,17 +1574,17 @@ if (__static_condition_default_1090) { } }} -void (__apply_rewrite_rule_1086) () { +void (__apply_rewrite_rule_1087) () { { -if (__static_condition_default_1091) { +if (__static_condition_default_1092) { { { -char __newuri_1084[20];// L8 +char __newuri_1085[20];// L8 } } @@ -1591,17 +1592,17 @@ char __newuri_1084[20];// L8 } -if (__static_condition_default_1092) { +if (__static_condition_default_1093) { { { -char __newuri_1084[20];// L8 +char __newuri_1085[20];// L8 __static_type_error("type error") ; // L11 - __newuri_1084 [ sizeof(( __newuri_1084 - 1 )) ] = '\0' ; // L12 + __newuri_1085 [ sizeof(( __newuri_1085 - 1 )) ] = '\0' ; // L12 } } @@ -1609,19 +1610,19 @@ __static_type_error("type error") ; // L11 } }} -int (__main_1093) (void ) { +int (__main_1094) (void ) { { { -if (__static_condition_default_1094) { - __apply_rewrite_rule_1085 ( ) ; // L20 -} if (__static_condition_default_1095) { __apply_rewrite_rule_1086 ( ) ; // L20 } +if (__static_condition_default_1096) { + __apply_rewrite_rule_1087 ( ) ; // L20 +} return 0 ;// L21 } } diff --git a/fonda/cpp_testsuite/varBugs/APACHE/infer-out/.infer_runstate.json b/fonda/cpp_testsuite/varBugs/APACHE/infer-out/.infer_runstate.json deleted file mode 100644 index 9a2d18b4..00000000 --- a/fonda/cpp_testsuite/varBugs/APACHE/infer-out/.infer_runstate.json +++ /dev/null @@ -1 +0,0 @@ -{"run_sequence":[{"date":"2022-03-21 00:19:17.214595-05:00","command":"run","infer_version":{"major":1,"minor":1,"patch":0,"commit":"unknown"}}],"results_dir_format":"db_filename: infer-out/results.db\ndb_schema: \n CREATE TABLE IF NOT EXISTS procedures\n ( proc_uid TEXT PRIMARY KEY NOT NULL\n , proc_name BLOB NOT NULL\n , attr_kind INTEGER NOT NULL\n , source_file TEXT NOT NULL\n , proc_attributes BLOB NOT NULL\n , cfg BLOB\n , callees BLOB NOT NULL\n )\n ;\n\n CREATE TABLE IF NOT EXISTS source_files\n ( source_file TEXT PRIMARY KEY\n , type_environment BLOB NOT NULL\n , integer_type_widths BLOB\n , procedure_names BLOB NOT NULL\n , freshly_captured INT NOT NULL )\n ;\n\n CREATE TABLE IF NOT EXISTS specs\n ( proc_uid TEXT PRIMARY KEY NOT NULL\n , proc_name BLOB NOT NULL\n , analysis_summary BLOB NOT NULL\n , report_summary BLOB NOT NULL\n )\n ;\n\n CREATE TABLE IF NOT EXISTS model_specs\n ( proc_uid TEXT PRIMARY KEY NOT NULL\n , proc_name BLOB NOT NULL\n , analysis_summary BLOB NOT NULL\n , report_summary BLOB NOT NULL\n )\n ","should_merge_capture":false} \ No newline at end of file diff --git a/fonda/cpp_testsuite/varBugs/APACHE/infer-out/bugs.txt b/fonda/cpp_testsuite/varBugs/APACHE/infer-out/bugs.txt deleted file mode 100644 index f77b18e4..00000000 --- a/fonda/cpp_testsuite/varBugs/APACHE/infer-out/bugs.txt +++ /dev/null @@ -1 +0,0 @@ -The contents of this file have moved to report.txt. diff --git a/fonda/cpp_testsuite/varBugs/APACHE/infer-out/config-impact-report.json b/fonda/cpp_testsuite/varBugs/APACHE/infer-out/config-impact-report.json deleted file mode 100644 index fe51488c..00000000 --- a/fonda/cpp_testsuite/varBugs/APACHE/infer-out/config-impact-report.json +++ /dev/null @@ -1 +0,0 @@ -[] diff --git a/fonda/cpp_testsuite/varBugs/APACHE/infer-out/costs-report.json b/fonda/cpp_testsuite/varBugs/APACHE/infer-out/costs-report.json deleted file mode 100644 index fe51488c..00000000 --- a/fonda/cpp_testsuite/varBugs/APACHE/infer-out/costs-report.json +++ /dev/null @@ -1 +0,0 @@ -[] diff --git a/fonda/cpp_testsuite/varBugs/APACHE/infer-out/logs b/fonda/cpp_testsuite/varBugs/APACHE/infer-out/logs deleted file mode 100644 index fcc3fb0c..00000000 --- a/fonda/cpp_testsuite/varBugs/APACHE/infer-out/logs +++ /dev/null @@ -1,114 +0,0 @@ -[7231][ debug] Loading models took 16.223ms -[7232][ debug] Sqlite write daemon: starting up -[7232][ debug] Sqlite write daemon: set up complete, waiting for connections -[7231][environment] CWD = /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE -[7231][environment] No .inferconfig file found -[7231][environment] Project root = /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE -[7231][environment] INFER_ARGS = -[7231][environment] command line arguments: infer -- clang -c test.c -[7231][environment] Available memory at startup: 29150 MB -[7231][environment] Active checkers: self-in-block (C/C++/ObjC), starvation (C/C++/ObjC, Java), uninit (C/C++/ObjC), siof (C/C++/ObjC), dotnet-resource-leak (C#/.Net), racerd (C/C++/ObjC, Java), liveness (C/C++/ObjC), inefficient-keyset-iterator (Java), fragment-retains-view (Java), biabduction (C/C++/ObjC, Java, C#/.Net) -[7231][environment] Scheduler: file -[7231][environment] Cores used: 10 -[7231][environment] Infer version v1.1.0-unknown -[7231][environment] Copyright 2009 - present Facebook. All Rights Reserved. -[7231][environment] -[7231][ progress] Capturing in make/cc mode... -[7231][ debug] -[7231][ debug] *** Beginning capture of file /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/test.c *** -[7231][ debug] Loading the following linters files: /usr/local/lib/infer/infer/bin/../lib/linter_rules/linters.al -[7231][ debug] Elapsed: 237ms. -[7231][ debug] GC stats for capture: -[7231][ debug] minor_words: 2.40691e+07 -[7231][ debug] promoted_words: 1.21396e+06 -[7231][ debug] major_words: 1.34252e+06 -[7231][ debug] minor_collections: 26 -[7231][ debug] major_collections: 2 -[7231][ debug] compactions: 0 -[7231][ debug] top_heap_words: 1531904 -[7231][ debug] -[7231][environment] Parallel jobs: 10 -[7231][ progress] Found 1 source file to analyze in /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/infer-out -[7237][ progress] test.c starting -[7237][ progress] test.c DONE -[7231][ debug] Backend stats: -[7231][ debug] summary_file_try_load= 4613 -[7231][ debug] summary_read_from_disk= 0 -[7231][ debug] summary_cache_hits= 631 (12%) -[7231][ debug] summary_cache_misses= 4613 -[7231][ debug] ondemand_procs_analyzed= 12 -[7231][ debug] ondemand_local_cache_hits= 4094 (99%) -[7231][ debug] ondemand_local_cache_misses= 20 -[7231][ debug] proc_locker_lock_time_user= 0.00000000 -[7231][ debug] proc_locker_lock_time_sys= 0.00000000 -[7231][ debug] proc_locker_lock_time_wall= 0.00000000 -[7231][ debug] proc_locker_unlock_time_user= 0.00000000 -[7231][ debug] proc_locker_unlock_time_sys= 0.00000000 -[7231][ debug] proc_locker_unlock_time_wall= 0.00000000 -[7231][ debug] restart_scheduler_useful_time_user= 0.00000000 -[7231][ debug] restart_scheduler_useful_time_sys= 0.00000000 -[7231][ debug] restart_scheduler_useful_time_wall= 0.00000000 -[7231][ debug] restart_scheduler_total_time_user= 0.00000000 -[7231][ debug] restart_scheduler_total_time_sys= 0.00000000 -[7231][ debug] restart_scheduler_total_time_wall= 0.00000000 -[7231][ debug] -[7231][ debug] GC stats for backend_stats.gc_stats_add.: -[7231][ debug] minor_words: 6.50506e+09 -[7231][ debug] promoted_words: 2.54885e+07 -[7231][ debug] major_words: 2.61487e+07 -[7231][ debug] minor_collections: 6213 -[7231][ debug] major_collections: 19 -[7231][ debug] compactions: 0 -[7231][ debug] top_heap_words: 20985344 -[7231][ debug] -[7231][ debug] GC stats for backend_stats.gc_stats_max.: -[7231][ debug] minor_words: 6.50506e+09 -[7231][ debug] promoted_words: 2.54885e+07 -[7231][ debug] major_words: 2.61487e+07 -[7231][ debug] minor_collections: 6213 -[7231][ debug] major_collections: 19 -[7231][ debug] compactions: 0 -[7231][ debug] top_heap_words: 7198208 -[7231][ debug] -[7231][ debug] Average over 10 processes -[7231][ debug] GC stats for backend_stats.gc_stats_average.: -[7231][ debug] minor_words: 6.50506e+08 -[7231][ debug] promoted_words: 2.54885e+06 -[7231][ debug] major_words: 2.61487e+06 -[7231][ debug] minor_collections: 621 -[7231][ debug] major_collections: 1 -[7231][ debug] compactions: 0 -[7231][ debug] top_heap_words: 2098534 -[7231][ debug] -[7231][ debug] Analysis phase finished in 10.496s -[7231][ debug] backend_stats.scheduler_process_analysis_time_user= 0.08314100 -[7231][ debug] backend_stats.scheduler_process_analysis_time_sys= 0.01700200 -[7231][ debug] backend_stats.scheduler_process_analysis_time_wall= 10.49613555 -[7231][ debug] GC stats for analysis_scheduler: -[7231][ debug] minor_words: 4.68626e+06 -[7231][ debug] promoted_words: 4054 -[7231][ debug] major_words: 12760 -[7231][ debug] minor_collections: 5 -[7231][ debug] major_collections: 2 -[7231][ debug] compactions: 1 -[7231][ debug] top_heap_words: 1531904 -[7231][ debug] -[7231][ debug] GC stats for report: -[7231][ debug] minor_words: 383912 -[7231][ debug] promoted_words: 0 -[7231][ debug] major_words: 36904 -[7231][ debug] minor_collections: 0 -[7231][ debug] major_collections: 0 -[7231][ debug] compactions: 0 -[7231][ debug] top_heap_words: 1531904 -[7231][ debug] -[7231][ debug] GC stats for main_process_full: -[7231][ debug] minor_words: 3.09442e+07 -[7231][ debug] promoted_words: 1.39519e+06 -[7231][ debug] major_words: 1.77125e+06 -[7231][ debug] minor_collections: 36 -[7231][ debug] major_collections: 6 -[7231][ debug] compactions: 2 -[7231][ debug] top_heap_words: 1531904 -[7231][ debug] -[7232][ debug] Sqlite write daemon: terminating diff --git a/fonda/cpp_testsuite/varBugs/APACHE/infer-out/report.json b/fonda/cpp_testsuite/varBugs/APACHE/infer-out/report.json deleted file mode 100644 index 2d637969..00000000 --- a/fonda/cpp_testsuite/varBugs/APACHE/infer-out/report.json +++ /dev/null @@ -1 +0,0 @@ -[{"bug_type":"RESOURCE_LEAK","qualifier":"resource of type `_IO_FILE` acquired by call to `fopen()` at line 3002, column 28 is not released after line 3015, column 1.","severity":"ERROR","line":3015,"column":1,"procedure":"__run_cgi_child_2048","procedure_start_line":2995,"file":"test.c","bug_trace":[{"level":0,"filename":"test.c","line_number":2995,"column_number":1,"description":"start of procedure __run_cgi_child_2048()"},{"level":0,"filename":"test.c","line_number":2997,"column_number":5,"description":"Taking true branch"},{"level":0,"filename":"test.c","line_number":3002,"column_number":1,"description":""},{"level":0,"filename":"test.c","line_number":3004,"column_number":1,"description":""},{"level":0,"filename":"test.c","line_number":3006,"column_number":5,"description":"Taking true branch"},{"level":0,"filename":"test.c","line_number":3007,"column_number":2,"description":"Skipping __fprintf_416(): method has no implementation"},{"level":0,"filename":"test.c","line_number":3009,"column_number":5,"description":"Taking true branch"},{"level":0,"filename":"test.c","line_number":3010,"column_number":2,"description":"Skipping __fprintf_416(): method has no implementation"},{"level":0,"filename":"test.c","line_number":3012,"column_number":5,"description":"Taking true branch"},{"level":0,"filename":"test.c","line_number":3013,"column_number":6,"description":"Taking true branch"},{"level":0,"filename":"test.c","line_number":3015,"column_number":1,"description":""}],"key":"test.c|__run_cgi_child_2048|RESOURCE_LEAK","node_key":"79d9cf073cd9bac616b3b95a793fbdc3","hash":"5bccddaea7bff74bf09e25b8ce9f86a9","bug_type_hum":"Resource Leak"},{"bug_type":"RESOURCE_LEAK","qualifier":"resource of type `_IO_FILE` acquired by call to `fopen()` at line 3004, column 28 is not released after line 3015, column 1.","severity":"ERROR","line":3015,"column":1,"procedure":"__run_cgi_child_2048","procedure_start_line":2995,"file":"test.c","bug_trace":[{"level":0,"filename":"test.c","line_number":2995,"column_number":1,"description":"start of procedure __run_cgi_child_2048()"},{"level":0,"filename":"test.c","line_number":2997,"column_number":5,"description":"Taking true branch"},{"level":0,"filename":"test.c","line_number":3002,"column_number":1,"description":""},{"level":0,"filename":"test.c","line_number":3004,"column_number":1,"description":""},{"level":0,"filename":"test.c","line_number":3006,"column_number":5,"description":"Taking false branch"},{"level":0,"filename":"test.c","line_number":3009,"column_number":5,"description":"Taking true branch"},{"level":0,"filename":"test.c","line_number":3010,"column_number":2,"description":"Skipping __fprintf_416(): method has no implementation"},{"level":0,"filename":"test.c","line_number":3012,"column_number":5,"description":"Taking true branch"},{"level":0,"filename":"test.c","line_number":3013,"column_number":6,"description":"Taking true branch"},{"level":0,"filename":"test.c","line_number":3015,"column_number":1,"description":""}],"key":"test.c|__run_cgi_child_2048|RESOURCE_LEAK","node_key":"79d9cf073cd9bac616b3b95a793fbdc3","hash":"5bccddaea7bff74bf09e25b8ce9f86a9","bug_type_hum":"Resource Leak"}] diff --git a/fonda/cpp_testsuite/varBugs/APACHE/infer-out/report.txt b/fonda/cpp_testsuite/varBugs/APACHE/infer-out/report.txt deleted file mode 100644 index 11744997..00000000 --- a/fonda/cpp_testsuite/varBugs/APACHE/infer-out/report.txt +++ /dev/null @@ -1,23 +0,0 @@ -#0 -test.c:3015: error: Resource Leak - resource of type `_IO_FILE` acquired by call to `fopen()` at line 3002, column 28 is not released after line 3015, column 1. - 3013. if ( rand( ) % 2 )// L18 - 3014. { - 3015. return ;// L19 - ^ - 3016. } - 3017. } - -#1 -test.c:3015: error: Resource Leak - resource of type `_IO_FILE` acquired by call to `fopen()` at line 3004, column 28 is not released after line 3015, column 1. - 3013. if ( rand( ) % 2 )// L18 - 3014. { - 3015. return ;// L19 - ^ - 3016. } - 3017. } - -Found 2 issues - Issue Type(ISSUED_TYPE_ID): # - Resource Leak(RESOURCE_LEAK): 2 diff --git a/fonda/cpp_testsuite/varBugs/APACHE/infer-out/results.db b/fonda/cpp_testsuite/varBugs/APACHE/infer-out/results.db deleted file mode 100644 index f4259fe949228259dfb19ec1005cf66f78dc185c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1310720 zcmeFa3t${o+5f*YdnQR+N(%)_DYWU821>h|WV1(@4i;(_8|SG3a?FD|p~v#F}hQ(SDb*$S{Nz-Iju2+(HzQ>?&Y z{ubC4oqS;8@Lz33gNtl?FCBhpsCnNfC(@GCcp%k025#WOn?b6 z0Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k025#WOn?b6 z0Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k025#WOn?b6 z0Vco%m;e)C0!)AjFaajO1egF5U;<3w{{(@N*22Q6bLJ=)PKx_l!hz1N)kjy1 zX~Ck}b#*lx>WVkiEN!kUPKy{{Z2ntN+#T)mdwW8y#T)82Zzx`~u5o3}x-G>k>b4ZG zTD_ro)yC%Lr0_yRIO6LJ6fbRFy)>VMFX9Ui#6mG|tf#Zn7abT?FdFFYipGy1R^lou znA$i;v4tY7f&SR;Fn%H2>+6Yk$zyMtMqX#y!MKriTH(~GQ-TlXA>CTsxC&L)thU7^Zc#9G#k^60rKt;UX-C=xE~RkltXaxM zE{QK$oLDNPW}r)*Pipc0*QR(p>g_((VTO4_hPu0Pn8ePjH-a5yk(l9DpDU~2uW(SWBQd7Y`S9nEbKHMtXMw~u!Gj|ngVCcp%k z025#WOn?b60Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k z025#WOn?b60Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k z025#WOn?b60Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k z025#WOn?b60Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz4Ue=mXYr24-9Uj12f zCcp%k025#WOn?b60Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@G zCcp%k025#WOn?b60Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@G zCcp%k025#WOn?b60Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@G zCcp%k025#WOn?b60Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>FU?T1I z(T@Ky0Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k025#W zOn?b60Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k025#W zOn?b60Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k025#W zOn?b60Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k02BD{ zB`}^;-}m3EKWokem;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k z025#WOn?b60Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k z025#WOn?b60Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k z025#WOn?b60Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k z025#WOn?YXq}@K+@joWO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k025#WOn?b6 z0Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k025#WOn?b6 z0Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k025#WOn?b6 z0Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k025#WOn?b6 z0Vco%m;e)C0{^`P#*^y%{(JRj&6xlbU;<2l2`~XBzyz286JP>NfC(@GCcp%k025#W zOn?b60Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k025#W zOn?b60Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k025#W zOn?b60Vco%m;e)C0!)AjFaajO1egF5U;<2l2`~XBzyz286JP>NfC(@GCcp%k025#W zOn?b60Vco%m;e)C0!)Aj5CIL_jN!EuTrm9h@Lz_1Km42FSB764erEXb;U5iucle>< zuMdBD`0n95hCefW!|=7kR}No3{K4Uo;lbga;jZD(uzz^R@VQ0?lnMW10!)AjFaajO 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�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 $24v0>t8UlT3VYMTiU}j<+qXt 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 lGW zuz|V3shSz7#D?#zmf3_!BCSst%ra=;*;|Rxv7BCR6`tZ>1br??&%`1k3!UF#g$lgIN>PNjn9uper0zb?@qFr0>%~CUOgIR(${Pt;j7<0J@Ww(&k!dhN z0V4q#F0*dx@W#UqZuN2w4RrDD-OMrnZt!IBS0SdBqGu8CG zHx9CHGu`ttkgx?vC|>X66^?PwqH2_#2k98;zF%Ud#*IuQS{T_$Ya%BSX;H8jl}5T~p&2q%X#U*<;*G{p~3iU~%O7*8kv7nI3K zu(wSlNg6|EUNFVC)f2SYz%b^>zGhXG1ANkbPe5>QohbtLumJQ0>&%5f6}(w~+y&tA zP6|LKF2+f197Ogf5e2kKTxfuZ#%&OAJYf}FLHwyN49!yO%v#pNy%92b>&#}nX5H6e zio2~d+p4)65Vf9I{C4iRR@~EQqDSfG%lK3Xxoy@d>=XJnM$}j7rVTh&TbHZxV~O>n zl8b*3rw|u}Zf(Z_5w#&k&@YNWSVC3Nk3t-zC8Ruf7>0oP9+IObA!LXb)Y`>26yO*7Eb-3|qSU=17r zgjz2T)j^aRtBC7;uWv6Vtyq0rM1HmOajAi4TOao>>P@I)TH2`eOz7hpr4>+X8KnCs z>e|h2+&2^_>DGt3!NZe3++Jo^|F!7&kJvi?1T&kJ=zw^&NzhD|AR#Hr6|1pRZBp0j z$(;}C&g1a|89lf5yWKp3SQ1Q|3rlf;q=YqlR7ui$xQmjci$X9d`zp=mKT%I2uE*DH zQ2v>ElJt7flXGN*>3SKp@2BX!)~I`36<-fyD?v9H6ux0E1c728s=HlAq@i#1LP zAN`cYtDAt^95ia0uI;AKtElB#s=X9md8wat-?Z*%M-`)kNTU=44@~ru>L?ej<7JVK zfMK7yLS0FML3fElq0fjN7R*NI$n1 z#DOOQUE^0Pr#szeQpwfmWppuw%h-OmH0HVDM@eCAiZ15s{(BJJOLilv%=6VJdEm?j z9(d}^yXX> z)bF7F`E7^ZJYW5_i}qbqao$CVczpyAe;NTo>ajnzHAnMNb4We6H$YAS5DrzNUW+!E zN^X>Z6l2njYR*$rwUG)CyqSIu&3V2$(G8G@=Ddpr@unysg#bkFkLC=u15!lIA>G_w z0MSQ6cZ;|1EI`Vs@|6fv^yD;wQit1U@1hpC=g#7 z1!Wh3LaMP6qj`OYsR=cRRC9X+Wf?%(YH#WlRB|hWB5FugO=^Ki>ILesa;WIrb+X%y z87kUgm!TqFvjB0?9;u-1=V^+|qrO79=j3!=VTyVhBO< zIw1MI4HEx()SmhzAc4v(MhMmkHBS5!spNJE$w3_scLe*Fvo2>zNc1LMhpbi6W)>v= z3tS<&%7SE-LvNUE26jXtSp-PZ$Dn7Y*xOS{?P=&8l63G!5!)mhvi`MH@-hj@UAn;5 zp!T}G=1UbQ9lE{(*Ay8Ofu+tBmZvOOR)<&Gbf6iQol#h>Bv`-z`fXH|?!Ss!v?~c% zE(I+1b=7|pm28x-yrYY|QS%r(EVn6G-q3Z>v;Il)S_GE6U19l+1qOhDG zSgu2@N9<30idxj11T41!mIv)6S)-(dVbPc9up8C=>;l+Av6m$*=|#Fu<7|BlEZuIf zXy;q7l!jN^V7W$;LjF^Ro{l|X@{XmaKdW@p)1Oni>FH2r?BPpzpwvxIe;&D&eD1Tz z!A~X%zJT24Irll_-r^io?=@CvNbf?fp3l9A9H}kn>DYDl58xb>js3I%si%JtxfeP2 z5^}7Vkq*^kKQYmI`j?UW2j^Z!3Vi}UHt3Q5m^Ih^IEf!{wu%&ivZ2NP5~qkNjQmBM z_NSCwuOhvl(*{oSkV;L7uTbs|N}wr1&N}%MFp+i~27^U;W+2E zuE>78+7cW5edxZ!x8R^ET>gUVmKf{4uf-k*RBv^ibl)vWNHUu5*1h(vG_|#0SFK2D z7w>d7BIsfEJ+Y(&5=re{B)^rWb})L`N>dvcqSvjoO50Z2;-t3H)HX(JX{#9L`t*Io5J zS*kn{a|~~5D5svZKx5MJ$@n2|y1_Fr?~IG8{#!$c3tFXTaxHR4!&iC&`hypyndVDxaHTK;aKNg?#6w ztm4m=*JCFHrfF1uOSJAL?1sR^jm~b3p1mA9BH|4`TN6F|LF|f%pL09pF7URK(D9{q z@FvSvzCUnMtmbp83|L!JfLW@$Hd@Pvu|)z6VLBU(p1l{_B;wnAwk~@1A#9b1Z}8br z^z8r0?Go`-w+#dAeUTn$+J6je8u;`9=%Ck}#tNWK@NwHOU}J?r@4WnH%UB^l8~On` zg>@zQP!hvv4TF}w2T$B zb4)AR-RT=E=mSpMSRw80oZ)Wzm~{cNQ3%%M6zAjwg0)2@!C-xMeO+O0u&$uEzPJ#5 zuFba@D|j@8j1^Aj5tZ@A3La0An?}hSD`+5WeEBrK>CIY!U3>6mmlV)i6IfD< zya}A>a)hc*S(@p_YukQtdfnT_OM(q?{ zH*~FsI!AZyoX89LKeJPSxxaVMzH+CCwNubFS3sEY9+RYe`{N=zChn<3d5zerkg1^$TQ}8dwxlKSO zY*iq~b_#wj1&;gw*iJ#41AcD0-A;iPVE<)j+D_p=n90aaK_6&E? zl$mz5uI+`Q4a(XW?}|R!DfGH70vTNF6i)oN>=Zo49D2}0clEk`htA6wwc@7n2Zy%p zZf)PCSZrdg?JV{*zKBj#JhleA^0eFG?zRv|=BaplgDJH=>E`5p;mm!?cYm}7rX-b7 z!O=3BkquIWlHX+Z3)aJ_fFee7nKB|KDXQm$a=0=u%;QH5Yzk00H#!n}C%8GS>b5yS zc97l(yX6ala#rY7xkTi_)2Uo6KqHr8YWE$ebJoOjVL!};urciql5v2n+G*b!hNJ1B zO5V?=WQfhs&{Q94t&y?85UsIkdre*Qo?00vk{`6w`5?J^;0Y7u6XG1rqHU$lB8Irs zgfC$@!>EpU00n#@gIu{~U3+X*Ys#pw82jw$q!JrBp7_YPiQ^5GWsbKux{Z1t6 zJI3$baE?>6T%l0f;rXCLMFS}4EQLV3;*%G0Iy49drKg*VC{9d~GO z#<5oEHvF@tnfBZ^wG?z58X}jvCKAh z#R6_A&x)&{bv$~0Fw*R;Ne}BK{oSAcG&YYRV1nFl9oHI`*=REi4cfaIk zN(&KU2+lDc^L9bQ?FaQMVG)}un}Pe@;O0=gDcHOv+8D0dTov0A^GB0SRe^B4DH)D8 zvz&`Qg2?y%7$A!c=zyd2kHuWWsJYK7-D-q&Ajs%Sk3GV#1W4&|9JhLWvCVegl4UpK?V}pv zGFwJu6`)~}P7iX`h2k^pU*anFxJjocR1Z~nhW(B+onP#++~(IQb`2bdH|u!9#C|Y6 z4|nC4JT2Dc+{&1$koGLOV`ocevZ1k+Q>k|+n;RNCI~zfG@L5bD?>E9mkJDh*&x?GQ zW6uZqVHO3xFUeEF77t`UH}_%3Q;p656kUZTecm~SaK~GTT_E4gRm)j#U(RFnFx_vY zBJb1aA#BEnB|R`4IPO6`SE;v_*!HB`v4B5?93;CiSU;vfR^Gjqs6)%X7ZY`hIE&gv zXn73>uHd172^p{Iyv}yoID!yD(!m0Y-#!0Dtu6s)TbhnnZq?~^yo(?BxZv*dZl)5H z&qk>U${zWuS@(HKN^C}ZmXw4|fDq{n=Fr~b+jsf)ZN9zAx2O2_VXk+nJL|?a5%~iU zg0UM=@g`80iZ{`#;Tw)Oaexs$e0;gYPeG1DJ^U2Mo9N-EkVsV(IFQ7C{)Pid+$97; zp16K@+E_tEoAr5bXU*9I$N+7(Zvd{Tqi&~j3p_Ry;EmeX^SR?6UHbqtowEx)j$cTvy>*uTvi)M!@iVLkgVdUSK_Z98WW#IiVu*oD95` zM+9?ZXYbhv^7q^sAWx9FBiU`x`lpr)Z9$j5X+RSCS``0kg3sy>M-#>D0LwfCe3?$P@mD&y{9#qf(sr#gi^Uk zNCun%2sxOdSor$uPwEvNo$cN2P3^6zIc8}uqFb?HHq%RV1zpa~DXN6Of(1YBb=9CZ zNGx_!wOB0GaF!tGYIw6Vfih;7PVn-Mb1jN00fL@n5+x~sJ*2N{6IePWeixWpb{X7GtK74u9hZKjATz)o=&Z8$)UIvvJ2jURDvNUAdwog%Q<;D zD>rg!n0i|_cY}tBJ^9Xm@-gTZ8m4=1bF#6jxp{Li(zJO?Fcb+kZ3#Cgn?n9zFxco1 zHbOrNat^)$cgj(a-uSp9j`P8!%rF`_Y$s(Z6|`Jpi%7vRd(2M9;j71&*??9{b&$Et_|CCwcc9j3Dm0)svC2pw31q_4CNJVU679g@fI}^w7KNorZoaMdxA!&VMwBjSE5f3ZY>{ z^IK)xeglZm_P9<*xgpfl=}2D53}0uJ?^1S&4pm6&<@Q)h9 zr>QhW6Z1A9v?nHc48pTbRhuYb+tW;rjoIM{rO@sQPP@lgZ>3Hv)$8^+F#~ixQ!!8r zSK}BxL*Fq{u7WcDrbbJIEm+FQRGFp`x~kR&l;l)*InIuvqKy1-HK~NfDmNX-5o8a{ zH+F!K#s7>+gb}D7Birp*HIr(HheAGxhtRWqx(Xt~JCg@{mrgH9VZTn_l7bP8<~sZN zJ4QdIcZ}`u6JT{z`(xP>h+_Q%)bp?!@pAiwyTCD%_FQ3WCqsMY0S>ve=VwgX^Vu}* zxze^jU1-mjF&mS4B5<(b4~!2uU#F>0j;mHJ-@S&?Mk##>rDi-0t08#6<102ChN=Mf zdbyX&eTv+nc3pZ8-{%b_v5(XoH1@p(Z5t4`g` zO(L%N3HlJ<5blO9rv?DZ&snuDKF+Bg+1%-v~bA;AAI*Q z)IUI9c?N?8{^i&BWgP#4AG_}ITTUR4W2`-d=x+GYjel79lFNPGFQU5$zJ_bHP7tU* zpwlDxn+5}I83%PXIqeBk2t z3Gs98FFT4yPyd{rfzvZ^dInCaOnQ1q%#OVtePpCeEY2 zV8OohHx(fyfAWWs7c~}&#)DyhDCjpMmDQrP@wj5RLhN=hEB%^E#SV;<(qRnF*hf2@ z3OUp@JJXbjLrUYQ?=1*1euwKP$Fl?&EEGs^icdIccpj9%VehwD&Vh``QI6Hn1l4sePh+YQ8VpPvR4@qofI(MVQ#A+W-F)H+ z&x5!0m0f8Im)SID&it6l(41Z*Gf<|T2tRHzVKPYQhEi~mJW6X6qg&dKS-+)^;7F<^ z5^yA>o569a?=BR^r&{rg${^NxGIpvNI85DTSDMPumbNz7zceSix;u9^A&GB;bz|s= zxq&`(BPtH~8tFh_kf{z9V$U(s{*{C84B?s%d)5fzn1gH|pE|tAc)nH-Fp-j_iXd1PqH1vd)r3I1oI7@5^GY8kq z0iKKc;qIBGLG2UdXoAGbdPmR*y>eWIxaA)L;S{Re%N zVccOvL(!2jh30CtG?zY>5-@jHelUl5DGCF+fw?)om1RA%dO8kWnh(wufxO%Zs9ON} zn1H$(SF|7qawedP#GnRb>_SU#11g>g((2!{A>+u9Rz-H`G|^?1e2ys5l?C*2V5Uia zfgq1XgH?fGJQNN@km1!I^GC{N=HJvdSj?alQnsVCi^CN%WdX7fnsk*GfqFp~{HV=VA!AwEM;l|~w!s!+Tg0yI0+q+?z3{6#oH zCfU^-&tcmt$Y&6U24Z00V>s*}m2|aOPJaPi8IXR~=rohN2yT@w zh8`nDE4WvAInM`@1$!$e-cBVtDapGiPH~~t04p8Ny{b#z5RY7YbW5qNGuPUs>w>$Kl=?&wj#GsDs*064(ic{nvn z`GA^_0w=_U%6s74-q~Xtd)B8`B)_F%2aWe-Plv{revS z9C@(37y=weZWhJJ7Q5zu1W?QdiI*1x6918&VUP&BwniOp1cB*4= zi3g|k&Kld^Q*mT^4^k6AKhV(7y{)tTj)t9W&B;zUXx-6}?Cfms+#3obKSvxwJ%2bD z2?nD$K_+Bmh**YeDz3{Eed1V$0U@Cp$f-)lhEo902aSLi@tsP4i|g|a0MKq(J^beE zFwP+G>@W_UV*1VgW0C3N55R&`ICVFQBGomXuj_A2xUIR{-vC(4ruwH}I|H^_Ev*gR z+dHr(N!*3BXNh@3+w_3OYK-|=tE6Vw1g09-RBo$j&5~sea5hPHwluc3+?iDMqB_3@ zKTsiCcuX=JaB>PLClqmFr{a!__zvM76sTZv&iiYX}_KpC=E%@ zh()w3>atj@Di{oeKzsPBf{|!E7L5D%Wv#As^FoaOW(`V=LQM;Io)F_Pqzj<6xL9K{ z1ytu^Trl@KA6k=%sl(W-?t@V4Zx?G0!Z>af?J2Yf5WliO*nVa?S>I=P-#{4L=&36> ze>HTM`}{#)fQ&%_WD$zNeJ2EF6+vr)c{UgT>`|D|Q;KoXjAAzuWWckG#IFeSMAH=Q zehy6X;%a)beX?QvPe0W$%^2p-kV=|A|3y7oozg61zK*K@4D+zWZ65Hg`LqZjo+ffCO@NgE?j$anp%tNuRQ#=AamsoL(^zMQPAuU^B@_K%>T@uf1~R_h5`&g=xD(%;S`knM=2uMrNQ+)4$7oS z|CSbsT{dg|4K;3OT-C|gWjVSTz3BI|>4p?7p*7H)HQeF$ru1V4EmTm_VQU;tA#NJZ zCKw-vkX4aTJWw@fUuF*pYPlGLzl{~j1)5WGU+(C2k3n5_JKbL31?k^1TCe(NUlvys zICr1*v`8lz{~gdc7liwqWTC$r0PWqlZWQ31qG|x}B(64GD9U6q?jJs(S8G1+ z6-?hGpsB`3gu=z`9?%(!4Kim1zmBT{i@2IY#;v5A)jHMM%+OPhzUuQ%M+RlO4UgQe z9?5o4@OgXCrM18}=q2aKqU};xrxP2SBa)U5PX#HhS2fs)qycp7bN#ovBIrk-!Jwgu z!bdecn(=Wpl_j7#VncSg8lrX}yf>hz(Ww`Ckl1lx5lyBGQi^oi4D#taP>fG7J*?kOJ3RyxqNpTfUW-Jy3j})|3k$6=+5DdowprYYOM9X?wCK4-dGT)m3_;Z+VHV#zG_ognl`Ln>a zAu!*Ywim9`#(Zz`RJ*+)pgqleXN}jD?wGgFwyJ5uLowb3n$4m-+!*fyH7Q8w%y<`A z0B6P<>Z5)GD{k_*o(`G2G~?|&cc5!Hc{+sXp$KkO5isGApyS5MWx5OWAKOt3uZGTa z|A)bJzh^Mr|JMnhD5iUpyYRuzbpL^SGz_NO9SXT%iU)W1mNV1+=*DbJ(b%@t#1nyd zuquc%jWvivtQrgW18JknY^ED}X9H1WDlpIl(o*Nvqhr7Zo|tF|W#0pyc%c|PF`TxF zK@$w)vww<|$ZmAq@NR%)2{0O!H)#un(a|c zuCU1_9w;D$-MGVT;)aI@Hr`&iP8%NBxXVKe2z{sLW>^9|rTbl5)x zf$K(h{AY*#`2?;SEl@JoY6U07zTF~lbq6^vu>asCy)$6oRet2cEZ7etAgfjm!mdap z5Qzn$l#3$XLnsRh`z!DTh3L8AGB5FHVkZ1Np93Kl*MVTaxKc#x9xMaNu`-H}W zPJ1dB4HW47NkIea-LYYDXh1Ot`HeE%p^qCHIIH){v0Hnl92uL123p&_AvYG z^aJs4EL;TzQYaWPu>cY`h#p}IKG|$9EwZt^Zz2JQYAi?q*4d&(IImbO!Z4aD1_unV z4&i2{Ly(VJ{PzBI2sfV$+%P9+#zzP>3{`{R)RCuCL3onHf_~_U12GVD*hT@(_GC6% zD4;vIc@$(uHxE^2bn{STMh@!(4^0P~y~=%-N3(E(dy7Lr3GNlSVT1xR?~D;FN`sq+ zA~UkggaRX)27~}PMHTEo{Q-X@?hnFZtSaiTnR4+#fvyi99}GcXaPv@PM)~vwg=9wV z5XTK4Q13Kh3%axML9%UY_cl|p47Lo`l91Iw_zNo_a0w|1w&}77?kin^ablq2I#NM9q$Oi{-G)i9DAa8d8XiEVdxHk0HQG8k8Ada zv*CXMox!?MU<=j_l`U8|B(}h5m7Foa+Cpo;Q@E>l5W3Jf#=IdX1289Z>t zLEwP~7;3|zhh9By+7~(MaN*(f9v{k3Z4Um z03W{9b$)FN=7rUh_#Z_l< z?kUiHg(>VN&Ei+@;J0(XPG2<4hi-BQfg)9_qkYBfmrw+92?TS3m0A?$t1Tj%4tS}a@( zY&a9ETD|o9VWxZq{SXQ4#&z_SP0JU(!2}!gw#n4g(qFn6`vzej9)JO83})Ggy%C3v zm3B?WT7RKucE0I|1$7ozrv0#)osVm*Y3Ey}V=JLUGB@E;#pKW$%=+J9=j4SoOBF?SiKz=k3|Lb9=I_ zdv62*S*l`)t_he4X@7TaESr2QkV z4DNNY?Hz7=qs)h`JsAkz?>xsiB)qM#v4-Ry^?qGx^Y%vgu^>ljjaP-@5h(3LRk5nL zmiq$tncba=wBuU4%T3m=AcO(bi*}}6+fleqo2q85XR+HGc2!O8kX_X^fqmI4%o7Cn zFVmg2K;ssSTgaWZKusnVskT5))19`!G8E*^*1AJZnZdNqChrV_ibISr?6D|&i}_(a z9*#x=`8HWDk5*t5a-aadN7cS-t>-$oy@ckAaHuWBqq&17H+*qM?-lF?@@TfKuDN}C zV@sPMs{;uj^iUkO`%$KnV!^aWt?32A$bz*uX#twGhBTMvP?3&hFfhfGVN2_V(%2}Y zi5pJ_nyAbj@CSq<9DBm(0kmQ`7)1my==-Vy2;>dJF8jknL=88Ng1GL+p^EEn9Fn-s zX_cJ$uetlI&t{>70*wvms#-WJotdo%u*M$(Z18hB%f3PHq#^b?Q zAm+5Eaxp=H&Yu)aaHBh`S{x=Qq{VlKJ}#KxfwjGtLyLde;VD_ty3LKv4c&V>k}b`9 zIS?6qYr-5MBnqJ^%T!FJAq@Brv6<&`T$cb31Wl$P^L_>k zvZ)(36|R%%`Z|`NEukg-H@F({3Q@YqjFDpB2tiB`2_PW{?505eA*4zyqFE+KhP)N){FsJ3tOeRr>nswU zOEnq``OOs7`JAXVUqXr}o#tSdagv0``STg|s9jLQ4s`qaZ*Y~*;*kf8pf#V;BmxfP zGYcGo*647r59AA4;|@ezAnSt{^iGCMru>m{4v=-r&bFrRmi9LI@wc|_4S~&pkrW_n z7^jYH5=`*QUK9*oVdv_(6i@+4nUxm>Z$4Wk29!nOg6z7|F!pl>jJ*{wcJlF&fw5~& z28<2l8SMyx+Tl&=5aDh9F@W8ThQolih^c@eQn64~5bSTl;e{ar-!-=t29yE{h5&rm z6cJFu27K3i$gLB0;Oj7CR~Q@=7;HNRS)kax^&x;__lgvVvU^IKpxAvC?4UUR1hDB+ z9MRK*h~VPqy%K}BZB)yBAqz0Ow?0~cd5tU4UmRf8$PcO)usM%&n>*xj0n86{^j-$x z$CSg_3TlQj$=yxK4u;HdV2A*>u%P^roXy*lI8!GKB0o6{SHk z6x2fYt{XwJclF5t$#WfsIzr%h7_&J*-g8x7SmMUP6H2cF@FxS1+(So_FU1PKr2Xhs`%})%wgBCZKo9LZ1wyEdh zzI_hFa8qMfHAW_VRi@HT9wE=H$=d?snc|Y+YVSWBXxzTvjnE{YG;8{_qK)rPTebV1E=nDZU?71!^H*w2^C>! zLcm`I7e9z~BXKSLTow>@Z)>!G=qlG3P$L6G-C>3s5MADT>DXk?rH9XV0HTryaWCvx zt3rMxT|s0OxXJ)m1=ATMLRnB0!Syq;1bICTMjdKNgVA;aj3Ob$h)HU%KN(jN6URN^+0)bg`yKw)$G3g8dF-tdHymI4 zFRK@ z`}-7KL>Ilrd4Dykrx5(nCNAlt@nWYmMuV4L3bsm($lxILWoh>Z={(G^Y&3cmlluy6 zp%%;Wpi-{s`aYTo_I4Z*>g%I(*zTzjDM_TRY`Z7Ca6Zxwhc)_JBs#}5&^L7ahR<*6 zw2(hv#|@cwqkNl!BUo&vUGMprVZB;Mk5phHqkv4i_$F^~qU%j>Xk=T3o61k=1vD>? z&)g6Gp`wyX{)~{s0{PT+x>~1=W>U#bDO6ydk7wM=xF{Ql;#AZmp4N32XfayIzzS=O9yBCcTicr&wzVKBsD8Ee zv@hHoYig{DH^ElX-xLcr8F`R3Z8}EWA>g(8uTu%l>*?3smV>TgSOkPcSDS?(7X&v& zLa`{67BI_-L4(E4lhK(5KtyICGspPrW)K@3bRbQS%-gmA+kQc;sHKQtrVI)o$!g4w#-^6;J+d-2e+@w3^}IX$ zl_|8<7h`cWwf^rQ$7bD=1FqO>gSqx;M7UCI0(A#|%^@$?qV(@{O+(E`UF+Uw*8O3# z&}peV-2gV>)AY(~uhD;f07oxtOSz7x(j11+A$)SC7~_Ef{wcW=E3p#+MjBfiHt*b` zKXNJ_7Bz!FxyXM6zj8Sxb!vABZNVUlH=)nF?vwz|oK(x_U9JPdqG#~!$8TZu%;)92 zR~~d$daVA4gruC*$xfBByFMeE+8Uf7V~q4Ayzq3&=iUC=Yqn|AL;f+y^8h4U0rh(yA$#|$HgTqG8PgOWc!yE$n>Iy{Z`k@nB$ zeS~{*Lg+rb5&Ql`zt{7R#gjWubZzR<6e@YAx{t=C5>)C$s_sWRGWC7EEyG>^F(!Sh z`E}5qmuNLM!uLh3hLe{`x9e;f*CafLW)i_)bu2cwPT<5nCuOrG0poQ(Jq*_r6j zmmgrZw`o4_r*$w49G&7bYL*w-W?4V>Vl{2h=;nl4ms>R2^kSlB5#6HGjd|ZEYXj&1+MeqO*M7&*H!F?F0O7UFO{*{4P?~ zB{T1??4w8dsYN)NbdIlNqR;zfpZBMyE;!XwOQiR_E8j)$pB2q&y@E9bHeiW~+k7Rn zxf0%hC0B4sHefi4h}FnlfCS^9hmdnP>=!~i39(K49vu&12iDLM9lI?~vw0)(+`l=< z?`z-=>kvl-0jB7BTpMw%#8rtH~DX~a0dhWfB1HSZ+GzRZoa+AH5}4Ce?-g={(0}O zQ0A&|FO@q2!JzDu`x$Z{0|stjfTQN(R2Y1!=N}C|)$wnx=AO6r3VnF0K;%DlykulqT;M8{w}!r>PdQe zLqk`~oyinPK>kGH_7tsBY^yHpp291r#)&K3tkVFUTaYQ-YW8D`Sr8V~=#c6gT`64@ zo&a8vyl0(Q0{ZzW!4c5E>U2EK4`7ZVT>Uc#x}Uz2OZMN1$^4Tf@h{{R%1h$^*t4=| zaIdJkn(Sosexd3TCS^v?GGSH*k@F8SB=?V-AiQR>t{Nma{fK@9a)ZCSPzatHh$ra3 zc}FGqR)FyFPB!+V&wE+AG@eUB_!OtC(RG?h^O)-4ZY&&>x0!b2jM++Z{v#d-2nW$_ z2yy!3JNl?z3(T#wFv92EgZ@q97Swn=;LY|+*B4u9PJdb}W~lQl$}yj}Bi%#T%X6x9Bv6RM z-Va1(G@H%T(G*jdchg7sV>O_Z{!%K1@Rq?(qbtj~sv{}v3wYGYV4&o9K@A2Z=v5NR zt_vBfnGpRHt{u2uHp)Ht?83!_X$^?dRk-fgXfg=XD?peo%n+v8!%;y3)8D4`k{K2m z;Ua~*OxW_-@8>Qa2aEJ~n$P=|PH&_4KJRxGk?QmEub?*nH--%EG!M1OMm`-=)%r3Csn7k!)+Y%HwAzK@mIpa~N!Oza0}KhGw{%csA# z3-KV2O3^1kPTZ3rC;C}~JxG&8&O<+;hv-$It%sqDll34~H4C7)>MG!#%S1V@;s#IC zAi->ed^|&cIc<6&c3UE8j z?VpJi^z^*b)4&ULzzK*SPZ1})P<=}9TdXA<#*xgZ$DxE}_4u={T)mrmyx@dFLw*_l z7eEbZlcO|_5X#j6-_EEZuG3yDSwS}YLjr+-)zUb^Ah7v+flGiO(*@#R-S?SY`jrh0 z9VrL^I)v-rB%Er3W=cEsxb>wNS76|i7Z{a1&$k|(E;wdPEA6TgE?92V=!8~4WoK)^ z)=9m25y`WSMZ*9EQ0*M$d(4HURXEfH=>H_3KLRQ!jP>!JC z=YbzNKb0y^bal0CZKDfJBw~$mD@f$iKq3hE|9zd7@JN54(<=V_2cGQ{bRFZ3f?UO? zO|Ifu6Jb1CG@kepy@c)YI2}TJc5G1`M?t@$cE%T5bZRsCiS`sK%ZDs5;1NI;hbH!3 zEt2Lxs~tIHVVZ(eaNvEUh((52qc8GAy{hF>Dl7#3GI;k{bW!e||}y-H_fTskxc5pp*py z@oTVqfKyCCGEETVU^QMwIt>us=M+S64>2rew(X!<=;4Ba+ftZ{hS`5zc_{U*tA=9Tj50>G~>l91TR)*;YG%c(IMc)uPeOx_Xb}4o`Dxx zBV06I{JM!3zhUCVZxoFeKSfVrD}IS`&5Vo0i@zKqUc`V$059I(*t@W-C)U$>sKW^_ zX4|I1DaepY_*@0Aj8pMoJt;1#tu&LcpPnhX$As4|^*^Q018|e3SLnqUGm>kQ!Q;;VwofJDb>wFKhb& z4qSxZ-HsemtP0?6%o`LL44_?wVKBp4r~J640?q|BIv4c+_|)M=#`6g^3l53}uB~39 zBj8>z9%^L60zvT2jy>XkcU#`G|jvb_9Uj12cQCD(h)EQ2y|R!vS)|t-CAq+hagK z&QLUWgrQ&Y8&l14>5J&Z>u{YQz{T&MT)0?#Ur$5KqIdqNLrh2iN7IlPX(5oZ5DAqK zxe3Wu;9KGk1^s0ZK;?s$X_cw~l*s^xuN-`O!;<1u8An;a)hHA?E@zE+CBxQ-est5HZ7oHvtBni)$gSz;FSg%GQ$8 zhGrKhL-1;nglBvK5{^$Ho$B{+9dQPI5H7r5fwaNx9~m}PIfQ}Lg317M%{F7hplj^J z<=jI*AEVD`U_aSZg?tFBKSMFhm`35^je~CxjTZ`m82;5O-)EU~Bg>o{_Xc2TW(WxA z0+aQ3gd$||q876r9MEvC5MixOx6^#HreTlN=rg3G_)%hnyI6woVQ`H~f&jXzvsRJ5 zNhi{GugpcAmGs>zwdEy!k8}(ODYoy%!@ZoG3vT*=+k|C~P_9uv_3#@n~ikoBC*_7#!8X zR*F8#e=uym;61Z&d;6}Wqj63{x#2vSLKI|wED%Ma7fzuI^CM(o)3M~ve@JmF{pnV) zGmzJmrZYx5vZjxA49W@{##)-3Pf zA+&?VWxKZbb9`aeg#KO!tpN8I*7=`M{l%(mG%)BTcmU=B@Sjgn46C$F1G6D3j>r4e zTG?G>QiC)*z2g7IHg45ea+s2#+f+*DVvWyJ?>YE~JPL!cufcX`nNIM~Mq#;5_eo)e zF6h_iU8&R8<(unudP54V#sFG|#N`A%&9_5*gDbgC=jJn$Vsm^FLwwUHpKaH5ww!tt zTShFWj>uQcdT({FSdM3o*`uORj6)jqE`C3yc+0~+0n zF6QHtFykY@C*8ZPw`%P6p4kUy_xKHWA~S^&yB3+{y$+dGOuWtv&Y8Go;<}RYx+UX^ zvJaHA;ZTD;H;Wo*2|{Fez6dtud0bB%2TZZrzMK2g5+-AqtqD+1=owLpLp^e?<%WfW z%>;e~gP<37e?Xck)!D=&h+%-Ayg1^`+xxC^hzudwtJ=1-tAl383;hC)Y=Vth={V+= znMS5Dgo8)wu^6Z5s0t#!w3d00$G|WspHCcCi<_zao|uBvv8FUs3mdRIQ%*ejppH5vHe_s|Lop)Sx;$? z|Kao84|@PuEIXmrhnm{ky1J9QJ37sC&pkT}*BtIy-gA%Sin*0#XXi4c6fdBrUqDL1 zK^_(i_vjbZpgOMl5Kg~PhE*LO{Uf{Ab~JW2Zg23XD$_-wniUjCh(Vzsc&Eb!!z`2P zGksP>DNGWk4lPO|SeBFTw*?;hGO>2dU|m%z!B# ze*8KGP;+2ZMH)tZ5-{o+z$m!hqEk%p3#po_bh#Qeb1saX=2Npq$m{IS9=|@QssiK>kQB} z51$nbx^hzzW%lq85?vW^>}>;%Z3Z0EihyGy)Orq3%U>^VaoOhpKZf~o0SJ%-+gvIi zEfD9qZix%ci#?LgF6SIiYZ%aun;bP@=Q4%7K9qrZ(v6})o;*Fe5Ko#Id4T7EoQ7#K zdGEA=-_QbfqM>#)=WZ;`^gL% z6KXRGLOX|w95c2Vux=76Wp<6PPrP4PS8Uq?>8#9Kfs-WQZlrm*p{%!}K28EVS70KT ztCOSa!qmy%4VQ)-dTC^MI%#6$S-RmskJWZkX|&n7(SaHFcJxNZ?&*mhoZd4pO)8~D z1By&a|GL*9H<$@35(cPXZc}7A_MBlBqR63=oCITrMCZ2#h=3BhD2dMdYBL8kIM-$; zfEe43lxSzi_P&J_>V6r^fXkV-ykb^bCBr24>wI$1CavoTzl zb?>^~5R$=7J9w!@0L^Iw6^X*7y$<>IOzI>CIKqrfTGN!y!)GB(9NxF)>oaH)7zhtZ z%QTFZaww6UI_waL&%j6#Azsg4ZgUm9If05%(Jwg zcymES8AgF6xBRC(hx{ayBRSe7%*Jr#wG(@T;6cg{-I@PvJ0w%hB|@rjG+D1CBoY%L zIa{chw5$f{@eC?r(&NS=NsnQ*l|yjk)M7vB!=g2E>l`gI!|VBqyVTwZcnpKikak9m z(#V}JhOZVPLp5JCnV}vZT|z^(G4iAa>NTO!S4?Om1%^iar##T;10y+d;8KAd>B1-7 zTi+WPdwWmCgLn2!OUp*Y9$66`Qrzp5meM3U7667Y*-?Q@gd&-Al^MFDaAHe?^7tpz zV%oPne!Q@K%kUb@AwF`evBM-j93w@2?Ag#4br69dO0^T@7!|T3&v2RU*yB!hp!1_l zb8rVnUhuI;o$x*Ce9K3z&R^y^+b5aQVA`DpAAE>r4Dcf4*&;4S`Tmk#|Jb{FDi5u5 zJ<1MwhI6S5wnAqrgOws8>d4(O#pNtE2o27iViFov!#>syUC&OD3}cBJ*np+uhvfF# zez1o{Y&cXpTGYm_CHZ!O6R;QtnSlmIjmU7ACx)XIDuY`un#SOVN0-9j7Dk@F*rj04 zE(Lq!qgLlH^T3`DjIPLnLYR%AL!pCvd*_$+%s6oV5!1CW?cHQ1xf41g{jEb7$qI)E znP&Wuc0iIVaIwG4Cgy+KqHe;9++tuZdBt@NF%?W#ErA7+s;;PzoC=uv0`Qqxg@_=J z;o6c7%me^Et=y;)Xa6MkknQ21aWEeFqqVw3S?VBL))T#cMmN$|WCD)i3u}iZfE8PUz>`ySrFx<8Alg|d)`$m(C!Gs(i<3O3_ zJobQ4pq(ou#IS}rbXe4vbdrc!Y_#ZogR#IM0?NW${9FVxdffQ#;z7gN#$llmwr>Zo ztEymKAI;#0IZcJbjziejPh=j3J4;YZBx|iEk_8gA(0A1?;<)BTBx-?8U!1OCyT}-f z9`P}kX23jBhI->5&pfAV@WVXv8Cr!{xz7-iqlg*zGCaHi*LAo6EkN(~Q8lh6Tu9+C z3Fh6C5h-`RM9NKPlUcC9mS;wRwFL_-!EvW3l%4Ct?)^4mb?kv#$Ynb1M!$UC$vW+q z0!+5qDw4x!7Yt+N72`)v4ETn@#-flH%dEGn_J50jwmSWsPOt~ZIX-VG+O^tkSJP!h z*h1=f%jaE4Ut@E~$8|!L74U4Ypr=zzxdOT7^K9oi$ZsEH-|j9%Fh|rlyX10D*JIm{ zZ~0=wp*6p#Et^w4<1a6H_JV8AI&#J~{OR=1|JWJ0Z&B~cu`NB*AKKOv7b+y#*@kuGp5{FE_2$srzUZ7l{A(QvwB|H(RZzb1g2{bTsXEjNcB$Kl~cmm%`_Rv zfE|WlO8*K%PYo+p??x>}yFp!Tm)VkNjjyyAv3fat%R`9ReiW`SvKoR$ecT)#;doIK z4Hwo+fuAl_F?TCXRFe~P_hpDzfU^-Mg){#Uyk&W=7*-=xibhZHZzrglZ*v*xoaydr zn07CG8M80$g|8U6$0G$6p}vwI31x{{9)}&h9qkmEl=fAQyslG&&e7EnPDQy3aX1w- zjAAuTo5i%m>%l}6+5|3m=HRT}6=Uz{i61$?Cn%7lxqW+MOPks}!1|Wo*zF&o5TmhZ zG>iyPaQ{b=GgErX-C{w@TwEe(skFXo?rr7%o>Pfte>go@AA+=d!{AODaZSqxEv8S0 z#Y@m$kMK$Cl?Z2{+@9w)s=$z*0R@iL@wPQd`(YZ@JJ)MD_ZF8SnhzkOBd2+5`&MK* zRfpOb8H3O5U0c-y@KS1Ozr#q&Zcey8z@nd@M1aLxM?MiN_KvcBTM+Rth#+J^PG>66 z+0A>plU*-y#s`jP#9&mX^D^;%K}E~g{3pH?GhJ<06>SUuuw7m*&nPEXV#m=ZSzA8EMH`#^a^NRppH z;wtGJCqP}S7!3YM_X;%Sh__tZ6uaLRMZh;GXHYm(g8oLAF5}(>2f1U+KTM{G@C;|; zPY4S^mjDLO)aY992nlfkG$ zI>Mp=mjB9d0sS@i^?#k9)eO|Hz zvaP$Z8>xpmGv$6~tGvug!UugEJEETn_&K1Q&yg@wVTVUd>>vfk4*aKTXJ^tIY%B_r zv-!L}?EK%*zd5*S%_@RDVdmrt`Y5A{JH@^HfDV~NEk&posA2#iank(Bwb}Rrlk8;J zlODDUvgj-CT|TzGNBhKX!)KvsTVtmw4de1Ppg!9>KzRm3Rqo~y%R()O+NN_ecupXN5@(G$3S{v+AV(Peobhc3WRc6w zk4*DA!!yl*SEdlk6k44%?}cad>B!R+NX_KCc#u{oOhXftXlaIwR1KFV3IRFsZ^Hj2 zuLb3`pafol+an}K2`X2w#nV(2&d5wY8-S-s9)ZJ{MSmhD!%U_>y>Recz0`O%A64mX z00TS2fvn_Q+w(1pWr}N-+A=~p5tq%nnMH}AP#uI9n-HGjd;vIPG{gr@A(}}e;1Xm# zm7XQGq&tXEavnzHIFI`f3zVl#BsZI`>!aC#WM>H#2?7?t7nM#`mD=;m>c?KXj=NHe zh^rF1R4pMows8@_oRQb`Y;;ZXni@H3?O9L}NMj;8mbZKURUqb*&?*; zM^G*AMnvz}tA9Ik@P^TB7R%q`|OvpFt-*Lw?io4*<4R~YTh6|vb85u06Oh|Q2mj~3y&3Mi1T zn{X}DkjbQxU&kE2i}cS?)e>VR(G}=v{U1XTs25)w`NFT2?`s7@-GX-y)%v_m z^8RH$?_MUP4reJ}MOj)s(RK9pjqh9cM`~~P}%!tg<32GIJ;ccFx zAM)*AlJR3R4ijTHIGQ+Xg9j$D<9=@Z8pxww=4@ zB0cwf0h+BXn_JoeF45Gjd~1|8HZxf5voR8};F2A-EH)I@734L-RO`l}BN_iOy7KwgbD3$w?z01aS^=J=u=BHE| zB_l&c01^HJ*tR(X<+bWnv;C{?zX$Fb&cq zG)R-8LFVXCBN!Yq&9us@Cd*3;ztTBJUJ`nzNzpr3bFy;|W(V0%oSRRmJ|F`l|EPFv ztC1~9L}&}3NQ)qoxWsK^4Z@llfGr2IX1(;>7P1XFmhh98w3)oN*u7;U$VBP2e^ftO z%7!2v2Z{hMQ68EQB$L6-Ko_MDq~l~F#?1|x$B}tz3O|kXws;&h3x>zEt&om;eLmNuda9sq1H62$75d?u{CT6maT%?BOpt+d@+M`~h z7mVn`pEsiK$T}4neb_sR;S;NECUXIic2FpiC!&M&5nU%8;f}L|S5(uaA|Mjx{M!&a zf*}I2*^1=3(AJdG_7oOFu?L?YX#9SWPCEE5TZUFUn?> z)YrM@1N$~Nc0tgCJnb!QTPtFa-$M!?^M}Ln0D@~p;~^6|JqZ{B0h#9!Tn{pUsI<~6xwZkA(?9M2v;)Y>Jr;(MV^=vr zybmY^31>{R5uo40L2AnIQbD{3iRQnetP80%o(9sbH7Yg`bbWW;+!^jpXXvHK;n zdrMbGdlv{@koA+4#Z1Y)uB|BH#s_sGnG66Z$h$cM3=7aX@|y)Ep%CbRzZg<)TQZmx zpz%s|i|E|Cf>uBy2#+f_vmevq4Cu+UfM%YipS<>(&wC|=-}$;aTJxB-*h`~JGYXI#$`)#y# zNEX`gdGE#n_)uC8>+Ue+mUc5UdnOW} zcLs;XMKnuHzU(+wW^)^vWF$WC68ty5bxKEKZPWq+!7m%j?(-fuq)CrRX9~>%WA=elmZ1A z0`BB@5s?`D!0kGW4oC&t@5Tul(2y-4pY;}xIluLmb@JzJa}hs0=;>Wr*0cP;`jmf! zxPsPX+t%)F72#+oR8@tc$ zkb1m@>(x_;5AXviDxRxB^;m$ZqUKAVa;4@dXq;k7Q%>dTG(&miHYGKMvyv|}tG>=G z82C?=KhCrmzCYH!tq%4|@F#NdzkV`)fa0~DZd**Vk2TJ{` z`SWF+>i84ZM+|eX<=boqyhU0xl_D*Q=&VbhGT^T&K(vfPk${+56p)Mf}~mI7e0MN=iNnFE+TOvDJl;1_Fpmz4F~e4zE+i$@3sTfzTc zFoB473vdi$C|E>AgOQMF3-vJ!gfof5ufp^22O*eY&-vW$X?89uy#N;lku#;<<2nB+ zk7xY;G)NXI0uNb!`ZW*szXlAK2vW^(v#YH=t5lCiTM@`!~c^vp2^t;DcY=)(AW%?OD1;oQ7aE-D-Y&g7)`0~cF171@nAm1U6UP9 zU@+e>$MCmi;j3KW!Gxk!K|q8^94V5JA1MNx$q@4uH zle%SAm-P9(;|FDx#q#CH_}k}j)#LgVuAkrz%_9tEl3CWdpi<2Anf7chOD!+%2Y+-mF6h}fg9RHiAo+=uVu~NEPt{wVAK+uQ zGVd{iz8~)=dFJGxUAPE6UdbozdYm+$_cr{;K;-KiWQ)VdqJ|%LKV?4eXJs{bv7b$s zKF%d|&;Tfc5!m)ZF#_SN-yaX~7HH{G@+~=IGdR|}(e~~^c~hpJwPg!o3<(dY8^r@k z)HGJuC9Y3H)ZSQHhjpUQ+o<`xA67HEIJL+!qxvy8WSRXsXjmLA$XFbKN%eUTsyCOW z>MU=HRp^?`vj2jY{V}w)gXcx&|KfF+|EGD)Zg5$%PvV`gW!~9>cV3Xixe@Tk=l!)z zGvCxA;=8?smLOF5}wxc$Z8{m(EiyWQoUo-d9h{SJSG(A*o4Z zX0ga63uR{IS6Q0|*R@$L5AxcWe5tR*AeXY&reyA)z}grLI|=01^-mj&>Px8h37u%L}+r5k0BV znb5?a4OlZZ18Xd*Skudr&06U^Ab-tQvQ!;@yVW5Z@|9dzjds?mKVN5q4e#-pUz>&v zCH;U6B^%IV!FK{1F6T}r88+XPqO*J@3-BLx%GbB?>+AA^jFRoB>LDJys%kZ=x`W@j zna}lj*S%vBOuiD6V)B(3Bva1bdG?gtJ9%`A%E%GfeeCn{lz`IpiViP;=1P9a?+VcS z&vfZ$Tw*jA3?mS05MDDdrH%&t!Ei*dTvKC5V^d2v%%BC&t%q$Hw%RiI44KRM^+B#c zZN()1wgVSui@O;C{}uw+0dSB&<*JgS{mdH`Yv|W7kRX@t0waX z{TXl2jj}<%%KOAyB47W4H`^wc4f-FtuT*RqR8=cb)$h2fTbK?horwQj6@UE)S)T?p z{dI1-zzUU`e3-9v6+g~vRl0~vLWo2{v1k>RCJ>1sV=hwV#-lSq3Z(g#=@8i%4VO+G zl((e$TZ`HrrLwi8$(`xOZ!;T*7&sb?2Lj+TB9V9i!eQ|KX6riI0^hU&GCM4KJ#vd1 zQ(3x1bwl9P7W@s?nFLQv2=7!m%&7$X%2s9I)d`0xiHdcLph zntdhb;g@&Vvf1b59Wq<m}zP^jM-F5l5UFiW-bu?4eGE{Ytt6C=8 z?lZp9&u~@zb)T&Ja&%b4uZ6bVKXawB@;^zJe!wN!c5cFDth%x5q}`VXfM?qpG<)r>d&!QPo9U)gq}X=!0$nRq@xC z$WnYuOE{6tS)XoPo!s2q%<t_Y4G44PDe zwZ5{OM)VkFx(RGR0NwO;HTTsi&BE&Lhtj5GW<6%~yHFwEDcCbue{hO9&IrJN>E}@X ze;DR|lvx<@VSK_Cz4YVw?m_&%L#O{EF4Yt81} zD~NsGN)4vi_KhtV_r73=`6KB3Ij~Zhr@?sZN@>31Hi^~q2-Fw+< zts|tyXlQ6@+mh_Wy$$!~BqZiLo4OG`!e+SXW_kKD6dSB+egfAaH!=2TiT<4}Pm8yk zP)l~sWza#xzJJ^wapky|r`VO`lrS!0wrUu1*V8ts4LjT5>)X(weDH#)W07Lj1&7s%9T=5DIgP@bOHK*!U#Y@s` zLl7{G`gkDzcvT2S3ejj)JQPQ~j;d&A?mlZ>GN`E-)HDt1Qe#liqw=7@HFg?YBWqLP zk4Z3rrz>%-1oyaKqY2P@T#!13+LS}Wth%(E~%D>2r5tM5>D3;m~otDf%+%R;>S5mIi52P?trxQ}Bz@3BV zyuO+FTXWUR#>yS%r) ztY_1Kwr3ZQ6pIgA=CmNF!bw(ST8)1kEWBx}_<^wUZ2MJ|EK9AyxN-0!{ierLb_=dE zjsuZqd(KzC#GHFAq>K2dllvmmxt(PddCVA;s6wRbg?#vHv^wx4ujq8Pf*k6eaj5^( z7aCBD%$TQu7poW#FtvIWPXQN%2a`#3)rhg-yDP~$T7n~ID}Q)~Cg2(R{P3;(3o1iu zFg*!29&n-VMr+WP{Ru2P{y=n$C5$@aqPt1(R6GM-+K9QvvsHaXA6!7!$-1~Bm~H?J zayg!Z&4Y9%o;yP#xVntr$`bfCRGtF8_l-31<#}VR;r3R;z7B8D8)%!q zQ%-NSY_0mO^z6GUrsyB|LEcZI#pJ>pYRy1@xxx$(Uo#Of#AtfqpiJkWp&vK`&D ze$dJZ8Y^8#_^4fj(sdBeRT6!w6Va#GSZF&ggi?aTnz9My*i%bz_2K%6Mwft;o|J;u zp63lza#*dVJ%X41=&SS;qO#x-nDBn|Et-qw#Zrq(AW=|X>#3DAR=sW4lMnJ_)|>l) zHDWj}egx&<;m9n02MzZ#5x$r;fH zR&W4*pEu4CF6$`b^H!x;T}E35@ZfnU9OrK4q0o71N5Gfp(2U+iOrhWQXX{6fLRT*M zY!Or8vr8DsFscr0ob=5Rq1^r>!aCn{eFJ%UNdiqE-DOmFA7m`~CMvvN}a zNGnwvNmdgU`)V2PK4in z4z~a0;vtkmAbA2#>gAou?wy@&T8h3v7r}J|7#VUm&#OSsL-2X!Xr77?d>u7?6NKOf z*~Bb`^Ss)HsL*dCJ}HxYV$dspQzYNKj`o%|5UWN&V9Qy?!^&n&%?PkI%vB(5^hZL0 z5L~}vF<6hyPQTu+W4@HDKqWm&`{{PLaiNZX;n#(@Vx;*hL~szU@()OSzqM>V^%0f3Py+qoM1d!PXCVf?P#vW&#Z+m}Aa3(Uc zC14RO-6ryzKU$&{;pAe!fVl@B55G7c-Q_?r# zPYF>DSP>;A)F6@yAP_)rm7kNd)fcj*Y0p)AEybIg)tr&u5;y+*f*>}f)- z#2zv0dx{X)_n3X!Zx(iP!Nwp%w!=Rv%#aTGJHpsgND14KPGN^3Y+vsrY=_L06@C_B zJFSx1^0HjdZz=i+D@7HsWs-$YdLAHmJU_+Ul*IXE58lJ*QuHDW%`gwXPG@H~9Y(ZJ~8 z;Y_^e3sm=W<2`$x17yEeqp$094Y&TcM%?Fb@Wh=U+zJPF^E}7!nuUnZa{=+5QOL{T zqyxJNheJnT3!>9!=@V$m&gNWNP=BxE9r`C~WXbWoY$Nc~* z`q!YIe-PK4QwVTp*-*YOv-;OwLpJHtfoVt9Q2tMZi7Co9!gPY86a#Ta$#-)>h;w{;h;||Je4rkrmx@^f>@$N$kzc0!c3aWN zMq%hBwj5fiM>#*;+d%l^AjdQm_jXk;$AR#?jSz(6RRxP}>7H~m3z0=A{36gKPY#tB zPJk*mL_HZqf<4XzyJM>yS=FGf5_K$b<>rEh!DAWdjxuD}dJ*W`Ox#s#3q_G@7V&^eAkP9uSLI+ z`G(d0GEn!9BW;e+VeHd%=>oIwoWnUsQLEA-@8B zN8^p0WU{JXHR(iagrfai-&>#)k3k-OlTPaDCSY;Vy3eFgu1M&AJ4`g*FKzNOPec)UX=8G}x*Nu!+{5rtdt zVud!HjZ!!Ag~?Ytb^56kcHs`%^*G8gQ1e;a-Sw#3%p6c zj=}KtIaZ-_z$kc7kPq=xn8WpzO!0Ytl=! z52}diuwgMkm(M$}7y-VxUZnlxKrI*hN@BheSaAHt=Vd(utO;Ur56Hbj?pMlvJnpbf z!1V3qsaeIh)iOV84Mr#Q3hHO@9x{%E(XWqaVWd9%nWp$S6!81PZ$MBe) ziFl$Q6T!RbKd~{fus-ibT+4MjgpY;HdUCim-s%Wj1|~&YLZ9_{Z%^@t(CA(E4L)D1 z&c|rr#Ebx=aW?4uiD!JqbH_J3zSQ!CrkxuSH=MQdKbC!K>4i04yJ~f0MrD6RYFg7} zlP(TUTzyUj9z6YXdInCqjlH8M{$#i(F7Y$F_H@BYS*598 zu)zA;-arr*A2CG9iuxl+vmOse;!!hXb~U=p){Ap-m5V*P^;Km`q9OJ%VqN7{qE*@+ z1~H&;^BMc0LHNAK<9icV-*M9x&5^8VG^vUjrn2mDt!=f7WvWGX%?~#;B%3%-bFwKN zdU|%UvlAgTn%bL_X78DzPw10Fk7#Zd zVxuKe5LO7o*5w~qNX}Mg9h^BwMX#_foE3;S;YRFy#Xzog@!ZaxZQU)~lWJpHTMGnZ z@o+2_LvTGm%t}IGe_YFYnmf+adV($8*?+^S=d!Rg8D`)8C6hW=Pofs~2s}!+CEyN< z72XI&D$QGJ2qs43r~?*x_)AkC?U61oBfmSZNOy2E%;cI8;pld?qnsn6War`oH->yM z2<6Wqf>p~O8ca$fPh_jY8Rixl0D=`+Jx?;m`S6hjcQP!uZi_{{CeuCB(d%OsDr!4r(;5HnA$51k_aJSi;p(nDYON7lyoL{hvWHP0U^NoMnd!p zIU)LD2y5ua8vS22M7u4acmS{`h~x785lw^3CO3q^o_)Tv=d zY96!o^yl>l%X>GE-O&>~a&b>k5O8N>+g1b2Em&arWiLFu!+w7_9D?Pgp95wG;wJXJ z7JXstD}53lNz02FV2QZ)IaO$LtdF8!YM4Icl<-Di0^W#g`f(HW8j=w67+K7~ZPge! z7O4)3X;BGM^o-=#sV?5N3T32)&s7~C{i8msp`oL(vvGTaKUJA7iW(f6RhGceB*=XQ z>^oKq7-HabgaGCrrNW*M*$g&v79ugmRgRs!y=$v_1g$o;-(jR4GUwWE)a~adVV!;J z$S2#xmPzhzN_KQFi1-&o5S1XOGZpCU<~`lXu9sMBych%IG3s<)CcIQFzT&UVOW7zm zP8S}+W0JZLn;^>!{w|sE8ml6|1y3J6##_>PDjBjMYeZEfUd8e7IN3rp9Emt!aDaW! zPnYy9bfU7%NzmyDMt=`+n{)wU!_yh~^$zZHURwgxiG10DFY*A>0{iS`nCbHF6bk^Z zZK{H&io!Y42gD@AM*`U9CiIEn-DSWcNXx+;W8>$^6csdfHvYt@>=FRFnHp&js#bFb z0UkKOrgYM-M(7`;%gxhB|EzHmf}^zCz-fs6_Y6{gj7QylbQVYBTuc|LT5@9$NE@3p z`Y&A$0x}wKlmU%?4S6_!{)YRC_yen1pm+tA72)yocr3whZsGQ1_qO)tDcc&mrnI$B zY1!Vu&5uKrdE~{9RpvrG%Vv91APY6o9O=(-XwRN{ahaQ;I7EHqGWgRo7UF za_%mE`ZdJ-vt+zMmIMHI?El}wLR;t4Z+(eoxl!pjAN-Fck5lMl=nLHas2&MQ*tMya zBGk*+L*uk{2C`tlY(*9Ycd!elxOZc3V_8pW&$-GuA99!8ft+0>v@ zEe}Y5*P(_!ssPA1%OE(sufkr~fC2hD?i$UNv$;DdfB|3SarcF?JhcA$Cd@vf#~TremFUlN?{8+2HRAj&PA zPHSlv-GZ}i8YeBruI6KHW<2v?B8ppRxAUFsy|t`oJkIyR{O5a0Q+r!i_mu2oo@-=0 z++)r>mF)21jF*jL{xwVnR2U_lxNaS(V?M;L-uPBJe z0jK&1QbV0?)S*+STcBXZL7zoKs-m~3vzI{o;I1PL*Gk|OI zWB}7^O7ehtH_RKj0`Jmd*c_^4@FZcBWrvi5M9*Laooem|8J}>2c5cvV#;{<3**`3X z@Q=rUAw-==ks+kojsZhR)gEhxklOfYGlYM%=)^x-bRrjsPNbhI{skC9OmbF{Mizqc z#^UzXq`TWY)WRd1TI-q`>R6x$ERymU>Fz?|U};Hd7+$vsep%`*O{TjgiKY#QOiz6@ z6@w@$(d{<_7?=XYS->A9rT{S`HoGOVND&~~>q)^Lc{Q4WJCxNO1#w!Uc% z(!4Qtx2E&oLx!lHt)Aly)lA-(KvFH}|Gdyi`$~f$EO4Jsx7|q%f?-C)fvkIt#fPT! z5c0V`LW3+$S|zgR&8}kDLBSs=h`}JqAKSV2q$(x{Y4V>4l0(aq8E~p?Oq%pC*eyL= zkt#j(ckwi`^f0KB9-ay5VL3|=soDzJ$t=>t*C9Q84bsCc%>RjAg-H*ojSFNprT- zZt@{Ly0;7^7=6Ix!{RvFfh|tO0lvVsdQT_bRhEh*v`YjO^%+DqDt|!mI?~b?C;KI9 zF>pT!O-cCES<3KC3B)hZoyQ=3xDH2)LIP3r`1dxEps|$%jjbeT{0Q_tO=NLm_ozU8 zSJ0M$ss=IXGbNKjDVcP^cdo1|yL`eGbuHLE$4LrFZ!drO<5_q$f}@7=nHHWNJPSn?!=G&RvQ2RUAI7Wk03wEcpMbet`%44CvYx5mTNd#7!|9d}RnVv^yGz>F&5`w+;@p@Sr*@AaM%L(}m(;T= z8YMV@)nhtY4ZNZ5I|RDo1iIoT=sG%c$-N@=FS?RoMF2L-cm_D9?7ZW12K3l6D3w&Q zgF+Z%h zFezE1@)rXPJE_}W%%0Ow+Qd~0Ult>sd{(MKvx>yWfaB8g4CxFI>C{ITn(0lJvuT;@ z2Z-`n-bK^EsSj#y7pH+B?!zM~-z{pHO05;=I(BDI!jI$xKG5QUQqT|KAcBO4r(M|% zIv6|-1Hn03haHbq@r5boY^Q?!_Ti|;aVk{U7g^?Pm`(Jd(ZVmO@xczkp6wD*M%7^i zTe>hc0wuw4iC<6M_)^$rU`+eO23>p=uSo>WElK4WLVAZ`Oka|% z0y$b4|H$T{498T=5oP>?1>8b8H+C;Cr~z-oT=33D%rx?en~e7Egij3O%YGF#7KyL3 zu|R)a{1;Z@ld_g_n_u7#dRH%0?nWj87)BZ5B+McFj|@h19Ov_Y_)6Fi&vRimoB+9S z8qPq#FEA(YZ9c;`<1noDbOU~nPSyl}$;}TuUzy+L?lvkApEE$DU?h9a%4xYvW(d?h zIHb|}c%aeFOusT*BBla%i{%QxGU+JA?qsP32Q(x2bm;J7l2!`%ivq|slgl2ymmmNz zF4+l))3RwdC?M+~N)v&K_#eHV&6;}}cD?2vKpeR(6)M1m{AXNjA8`E%1?v!gFABdWT=zs+4e47MI#xt?>AgOnDs6kqvD=N{a+iu3R$pLExOR#M9q)4#xYLu~Es`kU) zEwefTSSAZ(kq0>h3>mr)b-kZRu!szjU|4=j>P$UbxC8h0MC)ObOC{Gxz7niQatHu= zAi+YFM^S=BwH*Tq7FBz!C0NwPM_YpR2%#2=*TaE(2-$Ff)E)FwMSkjz4^@JNN$#lx zE790~UY|{Ep?im#45~%6&z{{7S+{;ub39qtUJ?$0Wh)H^!(}AFD)V}i8uN0XuR%Bf z-Ca}3*le=-v@yl1up40n6cy>o2LJ;kswjean;TJcdN<-2atIXuT$i3OOlxUkW2z)G zn$<8qFMhQ;C%;Id2X`bIBRVm@>vsCS;^>TM2lxIRxZ2 z?j)ZsYV+)SH?zHhnC(3J4jh;Q)!AtyMM32}Xwdh$)`=l*GrA2MoU1AvzZWA=u(WX( zAyt2SC{+~6t(V^wq!w&{k5b73rX`LL*?6AX0ox4(VgA~fCyPsm&? z7l_cHpBxAc1Shu{+MhwWKMc6qAkUNuse(A< z25d|)s2h^XvJCbV6Lh5P>B9DN`?eLe&D}fOw6Iv$2x0EJSY4!f%_eeZm_0lF3iwoi zIP5J!TF$Z{4D|xx(r}VbJqt7kSy~Y7F@<)jH~sN$(gVvjvm!n70nCxfuU48C7Y(qw zn4C_8SPL%&p=H*Ux@YojJcDm_td{og5%R9ibptG0*iYfdrQ*6iZn#g)zdFwty$zF6 z!{R8!l}k07`CDP!n}Y@D0S}8Rk0K9CwH*TIf(*(7SK65Qh6HR1yKwfX#$^TOJ6byNUwZ zV*F5UbTdDhwb&7ZgiC6(hshG#r0N6_Bn}^yt`4;6RqJ;59q**{OU|5S|4?pI%I(lQ zu7XCcNEfG3#5&NPFdqQK6h)bu3R=tM##QuHfiJ9MrI0@v`m7T57-AtCDWr<_bulz2 zRfLY51CTs_Ew5--PmlcUt|_z3W$^l9497oH4vkssH;5X&g5u4<5164SiW!I zc(I2|IG^S+sGOAE96iyzqEa&DfotAId_PG-iQriGVPIx2Aq{E#HnJE^B&1}F0$;A z>rQH4(I?tA`lgf3I7;1m?%A{10Axzg>-T}}E(?{F!9D>V@1-HjNe_V*7^+Xi_gI4J zsj6XfdBN*eQNu*8+uHoS0;m8+F`hSZ{4jkxq{!nG_1i5~%xnk;oXldf_XZ)52RR$J zU`Ye~nZ_-tQZ@l~q!%v_kFpM4(aRK6Ax@-vOet3-32gAXk^2DE(+SZ+6n1ku;^ZGB zgP#M2s3ecxq}7WwUva=AxW6g4>_s8pP&x6Q2cgO^7B)b*aA0-5PQ0C6WVm7RablUC zfaC2xu=+G7oVDOU9AN{x#7IP887Ouk53LCBZ$DVol_kLbb&`@y!`|igr%esaX_(1w(!l71-7n+D%;k~i| zhfn+3m-pGwHvLY&0ys2nj5kMGo0`v<0;M*h>y*Gv0|Xx|L;_{r5(`3Dc$0cG(GfyG z^slHQ*@A)jlCpx{2u$Gq9HOd$1k^sG0u-jgLa_x?t>7&4+zjxfsC!QY@m) zZ3#Wjra_y)@LB?fyWrU`#oo}~T#iAJoBnB1?2Ri|*GMS24kGW>bU(Jka#Py91Xdy4 zaCEB*j^2gj+zdxi)jd_Bgj;t6p843=Mj`GkxE*6^VJ zA--ecXGU){s?X4<#%b;Vx7o)U)*y3O``HG48U`~S#|Xl2FpWc`8k34mjR(gVj_UkR z2$>NE>HZmNu zvUpRuH}FL#F^zaz7B<|&mq@SAmk1r=l5SL61u`O|pP)}x@|Q^?GRBaYT%_hE3H&I{ zO_56MxN>@4bhPH)C4NZgay?m$!9fTqWySBvyuL=v7H=g`twbrV45W#Y;rW&QE=AmX!mgy{EiLQ-UaaN>%i@cn4E|C}K6i-ovBebyZ=Ye%Y zI3C1tuOs%&9?%eKxzrv?35o$A44_NP7zJq7r=@f^ zvTX@Sr1Ff>>H{F)Wa9J=@QPWH)x%|j_=9+yh6VFYhGHty@h9LeGa}GlL@F1t-=zXP963Q0eIn-l)>mSR1yY37xD+8Ikr_qLnRpmx(N(@1wTol&j?Y# zUS6D&5c9yUEGh?}#mjhN;cjtm7fle`m(Qngsw>0_`UR%gb*$Z8Am-)h@-0?R_gDpX zrquO@Vq! zSM>x;K^)mz;*Du26akdy=nGvPdU<66EaM`HjeWLWC|KTN46onTL1A?lIjZ%d~x?nlxcCz>G-7@dXDzHxT@QZU;7y>k>KL$^e3yTTj8 z5>SINc2VvQ3S?gF0JHP;=a7TcAdz>kbGgK?aXfnnuPEI(umb#-+I=jQMFqo2f~z~6 zL~{A|Do^vdDw!qi4nv$m{B1t$Hdbukm18E6ui9qvRol#QSiLNnt~QtvPKw)(XRgx5 zE@LGvwOq@TB2eCReA2}fe!ldj#hZ+Y2znZ6O&}dAzP9_W;B7{>hhj1_${?#8U_b}< zEVGdSxU_v~yOYh_mBbKV4$vYQXv{$i*^M0m$QFcbH7JJn+8K-PFX7$_j5a`B%;ZYmH1%`ai_B{Vq_7imaQirs(5 z3Wyg0c*Z0}h%k`?Ae*9#0kD1=#MV!AQ%LqSBi6tq3rmQEo6!^eImy@PQ%9M^r2*%|i(KP4qbl#7R1LJnx$7nYQ3Pvks#xfHtwDUXl)L^Q8y3Xe9tjp4(7u?$jC=2x zpB)RT+>A2O;2aYTCJlZRBqv$?|@QUd4y3I}NVso~` z;xFv;0g)h8A{=@sAdw|#i~}(a$1xvAbr$|Gvj%-mw<~} zx~5HPi7Rd5&WVOtBL-R$O2usRqvrEuoM7R>ZG_jhNC~4vh4+9=BnuxPyBQJ{;>uOa=OwT@a4I4Chlc&21iIY!rvZ)_Z!ufCS@@?8yH=bqd$*m5g7 zpq;z@1F>D*O1|}|(2Qc4?Y**+?;dbMC$Yw=hQzLHsl(Jy7L8aQMs=jInno2)q7_t* zyibVobtYYyAuo&~)zv*P<36*CCX%(VwYQ6TW|XgcV!K7PsiD(Fv14cQ3-dJ`X#Z3l z%nP-NnlCW5toxz!)tK=lrgJrp`8dcB=~5gqT^tXVdl;v%Cu--pDTU<@aVAy0 zc(=HmzYm?(bp>8hrm0bD%TL0eW>Y5b8fuR<6j$bvMM&Uk2Wr4f+;crbLJMn+m5J;(xio zPytbOzh*MSN0^f<55|#9m-^AEf4BY8-B@2NRlbKr$Yj361rjR5I?BnVt3HiqKAnPz z8Jat;xvMZZJB=_U8;xLeiC>Bb@Qf)$rYTwjl7py)SD9e=f3U~Ut3*irDM8vpaXyZx zaTwG)Csico{|MM<(jgA^-0s@Eym{EVw#XG1ys_f8v+kY!O5iKrRpYmv^j|~Y?)Pc@ z{K@B&8TcS);O3V0=Au!{?zyaOGy-TgP)cQU{ZpV;s2Dgl&OpGzDc0|_vE)5PQIL-R z0n+g#kd8k~CmjKDi^o53moc^_F`>nbQfjLtl`sOMEs0Ws#w5>_5gIcC-dW#Vz@;yjceV2CzD!A0QC`E$7#FnJ>QtTA+oh)-DUB_RI|W(VFZ(e zUbsTcKphF@tMODZKXv;37uOn-8k(9nK$To9zqk9*ZUsM6F6MB%;*8V=PnVr1VLe8l z=0d%KAFMtIrG2mWAe65XlL=iMsHHrdh@&9-QGv{*cIya#NL4vW8G8M_e2+gmtED+Q zYyGi1T)DSwq|p_k~zl9FfE8z5aOA8;b;j{$MB)4wuC+lY0$OXCdES z@13RW!TuiAyifFJOPGEX{4#cw^O&oA5#-II7q_7Ky? z@m1OAyw^L*ndb=`g$e7nIX7plJW-qSHg-_Ue^zb+AbVtQo{9D~_h7j6aKTi=*V@N< zP(;M4a`~2`y0`$#eD&kyl{J(FaXB6zEoWz*?PX@37r6=4#O-9C-~qW7Q5)wNcGJHsYgm| zeE#qxk$tEb=U#lao3qpPBEH^-NW)IHZSVDGlQ!)2chFr#8}@pSNJ6qWK#A_EMhW4C z$_9}2Uucz<%WbKA;1fU7fH;BOt$uS#bbSha{ zEm~Ad8PL2CxQ6-{F&NCxCzD{M1%eZa$q1;IpQm`{ruG&fa)zgHwnie9J36u zTc0mrTjx!HD!m-N#22F8n5dcDL&+VDocT2m4KREn(K+}zY$*G#pTsQ($D{_mq3(7Nrn13CH;5A$ z^Par5B5F*+1C5(DB#PxX+n!A^5&kej_*L>XiHZD-Z|Txe#w4_WsI7@&`OOGFY$E(g zsYC*-BZ0c-9oP*cA#t|E1ag;Silnyw+ygK?(^=KNSVa$9&`l2%^)o~S{D@hp7z18C zAuf^C!mU3yMNrgV2@EAT%1sgMfGR{nX_F!->gNof`{bYq5)i`%iP51kS|VMSYb0ljC*5+!ZvqN}vvhr%i-S24J8Z`U0@_XQXYq3)zu28!(Wk zSB|y%Jh*f@wT|s#z9tyrj@0>D10)-1ZjNlLlR<=OJ`D8hWC%`PF)3xIVaVC*5bni3u*e(Qxpw5V@jxeF zux#`Qq)_yA%OxbEh;xOziL6tDM@*cpfnr@ z+4oP!vA}>?>3ngG=3YqTMH7=3a2ar{PvASCoQ@&)OHFmcWl!}leVBh zyF^=%G;9DUf=TjMdad$~-sPYx+8|E249A&=6m&&7(-jp=SGcwjS&>pnjWbDMmqmb5 zw~-Jel_g-J>#T6aG9o6PC>YQ&$hA%;^x0o>X|>K&oXa`Zz9G8tIrA_qDN?o*tK;Oe^9j0r4-={t$Ow#OnR4fVljC>{>P zOG{#bSVI|yItVvJLhvsmamzK`N_yA!RjSDV_5_6_aX~jiNSQ^$c+iyYK$QTeTd|;v zCKtgwd)TLk#R?wzEa1Wc;2S}xn1S5vgi05UoU}k`YY#>o5768~>)^V~8NY#%n@YD? zG?WufFcLJub0$sTx-1Jp1$Mj?dF*A=aEC_g>esp-X|JUk2F@CAo!%|{q@74iDsO37 zx292;?6lnvyn{wdrub>2g{FIg!-)+iF5I<+Fjs})LKG%ks5D&L z=|UBKg~0(s{G65$eGG0ybFU?1 z8X!Et)URPefa?B)FM##MumD*MjF-U8CfcEdV<`-?)BD7zfpByeHDmiMx}~(esc7Vq z2YNHV9BtXyXx2O!HK!u9$v|lIGd(VE>09h_c_2(L+KD5q!e};5x%az-(o(Bg=z!Az znJZI~p}RMB+VBNny-4^x^%q}y+Zfm4OH6F>G3$$Pz*CHFo;d~KjphfYZLME`2mE-z z&rG%-7ywQ&LwP17OREFV&5?Mn3=7bUKWEB6=cv#gJR8wRmU#DmAK~pdzLF(opNm(S zBK#gKxo64hVyR*QGf`QQNcB7|#sRyHrv-)nk^H;&`$`~^7kcZE z@^9}2>)$0gQ7g;8Terufv5-F&_j}`!P-)y3^~b`2Kn&Th>X8Jiv@8PDhWOwtf*^D3 z-tQ~nHle5<)O@#H{ykOBjU73W9JBX7mE)GTJ8{wF66(;jsUJ7l=>GZ0y-&bW?ZE)Q z1NR?#f26l}=!MCkI{Ye!XlGD6VK)GAC`<29?LU-rW6H+GDr(-s%nq{g-v3yjf_`0i zQrCfuSCbDnTnHQ+;{^ytvYy< z4A_ilEyx&pzfZ&#$rwL35c8nH1Sun)@E2 z$i88SKcdbN>~MAo2xI&KYvrBz3gK9eBY|TJ4v4Y#>I=nQ&3zY%BCbT^ojP1$9YqmN zdjpR-kZyOL-`)sO#N*3Y6cOFH&7|B^q6qv-Ly~t4SOmiD8!lJhw{R#OOHv6p*9J=z zVODZZo@AQ~J2!8tje5tgN{94<$h>s8FC^85wjpB}nrfRci=H)A6SW5ror=X3pxZ>~ z0OGarUzI8-rnF12ZHgEXe=1^dn1uhv@{wH zha$mvJQ#?SdK*BNKGjW@I&`K>j79a+U*Eb!R_`;b_iYaa>%(zSydZd^q5Ar8gEt!U zM@mXdgT4sjX;Jmh8;D!OZ_{b4MD+Hs?>`0MyC1P}2J(9vfOiEi{^LOk)-H2uO}-X8 zCCGvs6DYi!A2$!5ygi29E(7765X6)fSl@Wl2fjYXR9jg!elYIcxH<1 z=A;hSM&&BQ@U4tAlqz=urXZk_-Pq|!mfa9_l@3oN$aY&pZaRv@)frSN7JQR(9CFmW zrzc_@Bgp?WC*^2rV-%F**%({;rq|pJKtYw(*czQ*=X@mMrQ347&XI6}Ge^~!^~|Nfh#pGq7A4L~p`#7nhUcX8&TE-4wLrDnus*Venlg;NduBkQ*#y0z zOl*#E-%sPFU&i2%&ztY_l3X2zIeVYP?x3kJlpLYelr{b3iL+DsxC8UBR*4yP&HZPC zP%R4oXNZfq@E3!uad73YRwCuUp?`z;(mN%4p=>TOoOWoR=@!nz+g!>>7Y_{cr1ev@QgDV0S|<#1!@#Mv(WduFn)Yc zx)ooV$7gW@9zU*qnXd&E}8C{GZ76WtG$B+g&w^FBVqj0#tF@p%!SkH=ZO zPN&atx@rhc$%!UzPAQ@ytw`yS=y0tp-xHE1 zoN}$yZ(6s$bzNf%l1~uBK&O7pHT38606q`o^B_JC<})&B;m+guoRW^Zlei4mT4Em{ z=xrem0dn4EVh~8s+bkIohTG0=V}apnqB|BEu131!9K*GN zz84v;OXyBVZexL++wjCR&-vgsJWDmt*$Orzp~8F+6BkOp;H^HxJ66}NrwgD?XmyxR zgQuZ?v{Y`>JX0_Q@D~NQiG!Bdr8qiRyLy8mZo#-b(COgX?@%0o<4hcraX_B*Reh28 zs^*zT3=a4s%%1phlD|opOgq2>JmkRMTyuW=21uqqwNOf?o7S(-CYi?1wA$q@p6^0< z{V13mNTxl_htR-Wm!8a0sz3{tVA`yOrMnfFBjz@s8zr_=PM>ARl}=8WR@-ntf>MG$ zELTQTX|~dnx$a7^9qytAC`)aT`N!fhwul-?H8}7bc+NFnxu_Ts=H@zTISh!D4;M8w zsj6Z$+b2J3DAxB{^n-)Eu&80Ps+letW{Ndbrf*PDgBpzpuudcKtN@Qm`3yMZH+^H5 z6A%OFI}AT8z_0=kQhMHy+w0R~ z+SfyRaMuNLdu_;O$PnGIk)~B{uHLu8kl|_=F~1mb!k zyE6u)TnFW}z-Iu%ctSZ0-Ww;8)+uT5k#xeSvGXr(*Ef_qRVQP1$^nDIWJ9dx!W1NG z;6gD*!-c7q{ogc0yvSFk;|!eiJvx1rPN3=!BN{VKC4{GjX2(;6voxlKd-J&n2%!^* zio)uD!$e)KgC^>7Jw+IcBV$i@)-f);Mw1Iy#)o^S$k?WpOSox(H2;HH z#6rDRER<#uz>(;=NhhY`NT)Z7`EVdXKYM2TCBTtSoGfwVTFa3@DPdm=9>l_tgOQ%9 zmmjIFp2u;z3P)Bjj;xeU1g-~?I8xTK%t6Esh>&K3gz=BY6lD^sro+ID&LM9bW21=) zQ8s;$ZUW`P?j}GTmjr7b27d?iggA>4JQ1-jm}S-y5eoq9<@Y9E9(!_QaWhR?kw`an zaD866yCfc5V#`iwypTynUnEWxC$fm10`+~aTD9(=2-IM|)?3!OC{dBJ!4GwT{3WSi zac6vjF-iJmJ;`A{ z;5^J!pgEiep3Zo{V!Kw>P4p6MJ`OeU&)*%rycy!U#w{-Oub*( z`4mhomOy62U}S~O`B2gii-8LIQGL0(wJ&?OzK(iEr1ooH&VIF8{mS%_aP3ioHz2ZA zl!c8j8aTZ9TtKk4%eipAL5X(o(*2}&%P7}F%7KxH65a~(sT!LpPJ)0X8T$6bz;J6I z_!>0uuxwzyZT<7KsXHxiw+o0n4jv%8!3moCFzWASOw^NwC2LbOLwQ;4I6ZP^=i0VB`v$|Gd9|rDZqr3Q zFZw8gq~Yzs6tj$WkjDjMH(7z*b%%W2#S+-bn-x&jiejpChG;|M)5J+MhH0|Kvs>|HmCz3a#hXE&kG0f`7^;SuHLCwF$u zbDkWsgB(QjXbH^|MGx?wsL+yxm@I}c2!t!En4yc|c#$JCPj9>q5TKf;3H^moHTlsz z8^zOLwhqaL7No5%#AsT|>YL^4vW~^@0xH=qow_v7<&^hRM5#7I+?Z17RcMA;LeCDA z{Pgo=Ja{$Tau`N)IIW@+IE2GuC!L<8(_Wk?dJml;%*1&HpMTBg$N0R1&vmGh-0Cva zF~k;HqRdPdk*@S%cF{7^qAOX{F5uNLMMj6_xdeq;Ch%cd=6QID=BeiaABMJry5w2T z=L$%I#!{uHa5JO$JeqmaPRX3^v6$1(6W%MbPc!=&>#06q?7t2eywgjcmQEf|6c#!T|hQb3>SdPMeDy%?ZAN2xC zo*MA5>7NeW?fR6R1NOYEdA?_0D!!$8zR66fjrG;sdsTY@^I14`k4FBN_830&e8J2K zp8sz5^EP*coYXy@eaUJ z_p>Oi#c>>tD2@d<#^bmK$9*^e8dnj+uWiRJ;sh{qN!Cdi=L!;6)&f)s9kT2{f z`?W9Y;b_DkME!7Zv@GVF>L)2h4{JZfCUfIcOy-J{CUZ{B$ybxF&D`IS zB`vvHu5q@qD#&QAUs8Z^O%6+|p1oCs3NXZZ=1vl)Vx3>3T%}m&K9gH21$8wQL|piY z?Cpqz>7SggUCwflg1s5o(v2X(F6BtN2&zltt7B(zw-KXTkR07k=fwb%yH>i-5?DA{ zP{QP{h3=zq?aaCoC|&KhWYdW5K({NWfdM0>KOQ4(=hj-rTY1~gJ%lmtOpdYL`3?5O zc8ZLa_AnPbx`2psD zEDtpIixODag%KSGIc4)q>5)Ro3}J^B#N8!ikQR~#X{D%R8m_%AYp}EWENxJO{#+Jm zPEakwB+U)THG&86kHSsT`l9z6@i0CpU5qcy(_fg*DP$w$Cf-Q%3`FTcE>Y+wurs(e z7-wR1K%wKD;PX~K6K{l+i+rAhGdcMlCT*JOqXN6Eo&@M3-o(!QfamCxtjP{y6JYY; zx*qf+vnJOOQ^0z&>*Q_3n_Nq`k>>1Lx{Y`fxL3;nQv7Tvh8eH|rtsoGo7=I8X-n-JfxxnX_N7K&Tn)I583 z+J)^tufMd!8w{6~hC`*u0E{4y0V{_6To{y5c(@rjCQ)$pS!qwp6xO;<8D13i=o$B; zzjClzt;^+xu2QVQG2sx#lgem7T$370{b)69w{SzUu8jVT$E2Z;yjbLlu}t4`BsY;3 zZslSmD+RMvP5NV5wK$nyAKT1{S@#)WFN_(@n;I!Bs(fA6{8C{44J~WrEz^+*6YmqA z>FXNTSa-~<#-KLi2I>Z>QTN91e zZ7mDcg-T|uU)Q*4>x?yxo9aqu24{NfX3p&XzpgR5ep4)77o9fE{1p=v-x@{y*4aVt z?4Y6O%oKFCep_q2@rsm>Yhr9P3q*bGyPFk)dfnYdT7B2JoOUnGgl2A!7sHfdctpaiWectZVXJOuE znUgUKlQFAwR&pYs&Z`1_aTB!(Gf3na>5V@TlmSqjStJEhh&qwsk$<(z{klk8Not22 z>+Oq>{n9F8izKRTEL+G|8oYM*QeZEdm-2FBpIC`L;V*FtV&RBD7j=v*cSea26GsE_ z6H$od>N;5$I;4peoEwa)t(2X#%VWVuj<&X__@$l@ucMW%+;Y}jpP819G`ZqJUBEn^ zHUr60&Y^D@$FHF8zv84L0{Rldh}kV0kvA`gjkeqMVs(yJ3B1`)N(+GrCBB3os>GL8 zh)Wk2$jpR(s!*FqF0(LQCDtN9|40%78RBp7L^TKk5ZJdqqBvXlbH+FZ?$z955D640 z2l0Mu4YElK>Q%5{YEMA&$hOEP9-$n^y>W1A%FaAiFg=g8sKO}MAJ@LN&ziO=H=ocp zh7n5ZwvBNL9@{i~cCxq~W^>p^LAZpK_`@Lt1rA#%WH$OiC?uICvpD&b1-kA__%ol^ zQ|`mq<;Z$^Af&WsN=Y+Lq!IXCO1;jlG7vH~{6Y(U60pE?g%<0`$!TcEl64OE0=Nw`nfU$yY@-0!5QKOj z0NY>yHpj;tK;1~|Wxz-ob|3(CH(8)=2wLhRh60RoN z9{A~ZugwHXO&jCQk=CZ>GtQXe^9BQD$j=l&q0A3sB4036Y{JOX(YghfCaQq|WjIpQ zFtxh{BRQ&~lR?fthk>sG?koXxp`rb={yI>lwYT^!Y0N%44bH5`9VxEjld<0 zHi}VoFYG7+AH7=#_oeLYk>)j&ogH5c+x(QlO9D1A)gpDrXTmfrkSX2y;IqRtQgB-^ zElw~Ex^D#B#ZVZWoda<`rAHPOl&2+m`CJv0ThC#(%JqXfjiX*e$~padH7-hl+j_7BjP92u>cF2JHqr95+k37 zsW^|~muT$wHw)im(6#$u9S>kwf&Me$1hp(b2MmTJ(I%K7M_bK3gla8K0U4#1oB}8&t+*Lq z8XK!q#F%k7g4lZcJn?x*ffMM2iG9;(0Ow_oH;iSgyJ!Hm&!XK!+8g>@(l+(81Dt7q zv1d#v^TVRq8w`bzrZHFoTV7wlA^}b_NdN@&b2*X#0YwE#3SjIR20A6jRP-n)fH#2s ze~#m`htTVfF9krfz-mVVC66hq64SF$5W^4|12db2-NBBuD2v&dlm*;R&g@Pkl%295 zaf7+(#pOgofV*x9pZet49nFkx-Y|82na4s61B2BfahwYCALu(5clKbKv~o| zfqe@#5osiJ&27Ht3|izSP$Sog zFUz?2phXZ)Y#44IDkEh8bs}~H{yss{CWsE3q(y*xh+Brglp(&v1;WI@xL=^t19W0q z1R})46r~@GOiyW%3neX5CutG5!Z9tfTGAr?Rcr9qJbc+{k*k=d02l$O0a|1;`nwrk zUIrPzQ`$$(JrP~Yq(ye~b2r;*k?pvB7||l|340l|$ZGr@nalC+Qi&0=_{NwKN%*k% z6P@0o(<^j(j^<%Y!PH2W38;}HpPM!TN@~QF3}9!9NaI9bVGvi*%oqgWQ=b!eIBdKW zas+YbLXbYlu=ubfAabOiA&@K==6g(|%qH#IJZRtCr-2;l)WwTQtGhIs#ChR6(9SBRlw^ejVejGoO!-VKpIwJZK)o{$tR3c_3@HezNnQ)K+H(r}m=h)<& zqu@_xWX1fntqI5i@SMnBQqWmRI2wYd+1)sLrV2-6#n)i7tV~AkPvJ08Wr(YEK+`J= zk$0*R^<5}Nh!KPo%R5%Caahg_#0evUA9GC7$DY#NEcPlrAzC4qTxZH9J61M2)ZQgV zfy*5vZlKT+WhPE@yc=lccvFr_$|3j=_lM|Wx`g)`63&&*sA7-w|3PFGfqktLlL@J& zPPX6#hyVZ%!;l^CCcn59DQxA;e=&fF15e{T8_w|KmdWk0K3m$#_V+PU(YI`CX^n5NRQIWWZTAIX zzUV9Sl|W_hEAx86+a&e&6#xMw+)V22r>8#Jt#?7n`pimn`_0J#_IU&VWg3E>@5bR( z0Tz4Cl2rkhjR_hS$ovc+TX+iSxJ% zIdt2QHATb-;{HUL#pOYzkB@})UyzF^Oj5Ud?ORm00c z!SwEBYPL32X$a!-=$T)*m(RKVsILSZ++zk(yvUYl!`{tjPp} zYfCf1pv{#Ek<0~}C-5?iuQH_oq8=VnV0b}FDQe?=gU1^N4!Y0 zYYVz)F39R5Y$Ehiz$2F92m-N#SQ`v-<2bVV;E~ix6rW-BF~fo%6qo`NKAhs6)|pfX z>L6|Cah5i87_^~Dr9)*(9D^r=shqnz<17XT>6fxEXwxfze3%iVAcI?rZWAY+mRRhgOjV7>M#u z6!?mf3=Jvy>Cji(C@;-@i{{=zJYI|DzC^*}1@kn7xdS40P-C#ST!2(E#OR4%k?&)T zs1(0WfU)b;k%_LHqRCg7B4?tBNbPJH#pDB5h(mM`KZCn+^%EmqO|`457JTaTPldMn zOJ+QJYSZBF;^HTtPiEkg8Tfadf!k-cUycx-kG8V&Wn*`Wg29*(frDTNWlN;2Q1mmw zO9`d=j{%Q$Bit_`1nTqDA(ay80B|0Ft)%|nA@|GFYVuAl<%0Bf_A`qgot%ejfAV^Nf)!2TFeMpR|#(uF^=!I zCp5s5rhldIisfnEm6Gs}9)N`g5u?OMh$RO|bxMELsR&b;Ahkf!<95N>V?z~`^0Im{ zPAnFiP1}gEXw*U2<97X1=`bTn0K3tyO4f6YA(lweg@_cgBUUFM%1hqk24l@vRHi}5|1HILbRdGAE}4WLw!RuS|9WJ>*FCx;PqyzCQ~_GB+ZpygO_jB>!poNFuCIp<(;`qxaBx(g&qg_<}!V(npf~Aur==gHd8@ zGI+yj?z{QgaX6DNXslhzOhzA6&+jA0}4(a<$pal&sJj35Lpdq--*i*#vYI6zg}(&Q$kG!zYu)MvCiZ1+bhqnwpx753 zb&8$ZmCa_S*vWpvqR)%P!c_X4FN^*nAUN(9c!hrS=HY7FA)*Ho7R`P>{#=SbVd+Rj zdqhRFuV>byhUxa-8{$%1q5x#5kWKj$;=F{|VG{8HdGWLa0>+CL^Wy0;EII5w05R}Z zrn@Q<8R1y}pal04^ya4U??q;&X%=z+dnHCHgt$NLk+R0rn8Ee&vOuIh5Rb;ZvHDWP zC#m>Wz2snn5nQs_u@(p9aH$W(j zB5g5aqMkJDpMZ%c1`qGj>eJI#a67@!-F@HE1jh2*^#Dk?YjS%JjBu66@ z7w1TtI4^ZsBcQY6(vuT!k0aXEh2^SFs&*+}1m{2FCGgfoDn!bf3u0rI(I9iPG0?1B znPk@9%9?o?nv^40zDRfD9wR3nHtd*^x0HJtOW14bj>yKa7z?Qm@;l{7y69KQ*^uA!h(dDFEw%+#;U%HYxb`|`wIeyY z-#Raeg}Cu)x-s{X=njqZ+pOyWo`eWTA{&>naek|u2)xo_^ObV2XS`A$zf!T@@=jl3 zOL4|;^Bh2kbTOdjITcO*HaXtkIKRzBAa<-95 zu^lw}Un*%8P}ML-D#i?G9tb?)CxZgg1(0Et<^gH_EiP<8Ux+5tJdG$p6pB)lY|750 zb|R3^GRPY!Zm{@`=3YqMqxj7@Eywcse>&8n#ILTB{OY-=?i^IsE-O<+5LRO(d3$;U zVa@$D&5ep>qu-!LzlsLGLJfXRHb@bxA47w8!TOIJig>!xBbpKo$RbyD<94QZGHQe8 zE%`2Ko=1~RZ)Qweal9^uaNydZ9Juy)134@-&sWi--{WC?P-2;YhkE%uE@&R`G(Po}_4}zo7y}JAIR@ zsB*}XeMuTCd`R>B$iPHX$XBK|=#Rf?p0|ik1uv9pb6hPRQz3HjH7Th*a+2w&|6u|H z_~6N&keI09@r)V@qOMTG*UTDHIr3h9&GRHCR{TFKQ4&3o4LKQ2L%4MV+f5_XDZ!P; z@dd!>8IM$z_@az>TW~yv17OYrKIBz>sdyEeApzF>za@wMcV`aW0hr;HVn6FHo~+c< zqPxTGmw`k7N-rd!VsIQL>1OK#YqKkoXVw7mlsQHTzU{gbL7qsDKVae__?|ByOJ5eEf)P3 z&iFT%y>&;II8H(Jh%XtUjb06t{l9Qv!0qARvjtB5xw40H#MzkX$EXiUW?EfK8V{JR zf6IrN{sW8+lcQC)BAMwi-|qDp6{HIVV$srg%;)uaV}WR(zRVvAH$)n|^^sBpO^tz> z7XL`q!KvE-Ws+S7r+!RMV-{Xoykkuxv(oBX(x$OsRvHoO-6!OnM2fB?-mMyFO=2pr zF9|l(M?)IkOZ@S&27kcsN4h%AT?7029F1TW?P&=hN^-l@gO*d5 zH#Z!^7)K|Y|CuxEL)>sJ-DuI;&QU?Z4PPpuAbR<;tlUqBr|0XBLUxPmW#1(;{4?dA z#OxhiX80jYMIC410Qk2_6I<62y`U~O{5jBKL zbQft~e@=Ii_Vwp<7cr!C#biiv4HtX+{R3Ls7Jb4z4Y$S~h z{SVFa0CAr8Xr8_F{oi1n6#VA{4*aKri_A$|;jO+&00y6KKC~dh0yX^6tRa<)^!yn) zY>10|8#heHaUqWTD9(wv5qlh?3m9-DLHZh8|E(b)`{0PUSdyL=9OvV>+z?&*649l3 zu1J7`JOB>T@~g{G?>fL3ya)&8@p{p|t*H9So6lnAas8I&?Qp&gm3jjup%B7@A#fp5 z0VE?9PJ|k{2**h{hQYjY609`wj7~8_GoLaros!S&^&B2}4ZP-j95W6n_)L4A=Pu$i zb5~B@Xe#|MC`5ZUB+C9X7TsYs&~A!JKoxJD6|%Fy&CQV9+yoUj=QqS@%*`PPc(95C z(_zzMG)fKX_m%Ko0^Hm@S}i1a66aYw+6zh~#ppFp9xZKB;C@jfn*a)Y;Yc_%mVHwq zsk9cbbT3M_(B+J{D+-i*?-SSPVkcqlF6E?j@k`~YDOih9ZcEt3nEQFtcyq3NRl>n#{s29uWbOu(M7?clqXZT8~d?6~8!20_HO$k`PKm~%; zTp&=5;Szi$z>xOo&{x=?tN0>94&m;UTdRe00(y+$Im|QQ*M$Z`ACglE;!gPVYQ*-s zD}jpS_I72!A%_`rhC|os?OTzR=jKx^IAqqW%F06!C)swdF9Nh20$9;;WCY755mpw^ zf?D#2A&9&)+QqMa!MEIkA^u|wL#mEF45>TjFa)Ub;|xRKkjOA(zX?O` zH(>~13&RlD^8L%hkY_#^7;@v__AP)Rx6PI?B;J?}hQu3bV&xrLyUXRScDclZIGS>k zC(k6w6In}5-gHPB3?YC`_z`e6l@7@bLk=VoRS8i>;%V3WI>VD^4H0IOFqUqi#sF9B zNS-{WL~8kxCyNk8co^{BaO(bn-C{gbDM{txvr4qg2)Tcb_#KcZp8!fCG~>q8?TM(% zN@C%7yrd*v5-g3y;tiz@{%A>qKNyRaHAKonls@XxR0-*`4irrf>%J=0J|=?fM@;wG zQ+%<_gMtp)1B#y}ie=&7&PE4`I=U~ngl8Wtta;^t2Ku&gpk4g>k=8nB2-E%s_8fG( z`rYhD%nps;kQas@;~_Ngt4vtzF;bcEtIQ<)o;R)7c)-s%54fs8!cUwbeoSQFGs-c@ zA@dk|Ah4-UH!Jv-a)%)BzLeJp$iG_YrM@F=3dFlIz7_@ldV;RQTA4uiSLk#noi3x( z9HIe-+DHFh;VkLx}v`16$|UajaCKkg5Yjj8;qUM5M;axBgWQ$c1XF;5sYKI=_o3 zEh|kU=>EU_=Di4J(;Q7q!f88M#7;2840PDyfm3kLXl8Z?{$bdcjq$OT*2E;7I9zq9 zAts9B`3X2AVz3srk`9a`SB!C+Fq)+<>>-KNc0_cGNq8*jAc-eg$GICxf5n+nt16KN z|3cQ#Ye6_SNWwWEYiNLaG*d&UPe3IPT=Xw&&4AtE)-VYNs0qEV3EB!bqGVrKsoQ z3bg1=PKdfSX(TXqPUMg=h3)JK9`~JU6}Q*>OJYG^s2-N$5&SFjmWCU=4S}FP6fG-_ zN@H=DCw)6dGa2(P7C26ToW~V5V^=107hntP>96UYSfB8Q3lEm~%4 zHX@tFcb&=R#f6g1mZDpHS2-3rb&PWgmY1%w+2gXJdkMyuNq}gckr>~fsmn z?!9RdeNDGT^f@UV+d=d2-%4Udw_8MCh<>w0^ryM79&!7*u)&~^xcI42ZvDl!txx$( zM^K-YHpL_dnp;>3r>vC`oI6*yeg7eCUr@Z@$z8v$uvN!=TV}&!05xG19ySZM*&x$p64r4Jx|x@KIrG=ebCQ~=jlG^ z=TV^ApqHmhxV8c%*e8@5D^d6^-L(n@mMENy!qarSlRGtKx3&3G_ZqJC8U%%QuW4GZ zarE6+^SrOn-v3&K!R^-LIoTMz{96fR;)5r9MlPX_yUjY7pEsDN*Lp=YPba1XegimG z;vgsN?~sYNc-0U<)En2Du5HNed+(T$!Zkla)Hi-tRDM)ZJJd5B0(>ui|OmG2B zeZhi@${q?XdhW(ef{RN(;)08NKU#u|Zyqzj#j_uG!3D(A|1N@yX-6iwDEmZk5lQuqT>LmWzj+HTehKa^ zU2ySh%&HVzypbxn_)Su9LCm5QTtLQQ3NGG4NeV6?k|43eCxQ!O9)t~_2rdw0iL~!I z^*mTWO2NhIkBQ*os`l1C)os0>3Yn6NNb7cFED!m@0b~gCg-XMrGM_hTxj}hKGc7mZ zqn-#To+2TSfo*3BI?4+(-S|bf=|-*w@)v}@yRRH{QH3d`+^;cUC{ zhO?3;Puqc0orUg)V;85H`Kq%A?9zpp{}J++l|6U znr6G9?nd6W8|ue1YzU<7hWchXaSGdw*Rw380&F+b)f_9^4RveMcEeSB&C6krE^Q_?wzMM4ucrB~xhoBG=Nf8K)oyBX)<%Ol2m$7q? zZ8u(Zwrwcbc7u(#NvZ#;ax9V+|A1{be&Ia6f^9c8n6?}07&PYaK1|zb@7Zt#6% zyYV{RN46WUb8Te1flIhXwi~ZeZDhOgD&0l48wlc{8)UojQ?Aw_{@<~*-N?ztKzxzQ zb|WXbF&bAvZskR$gl2rg{48|r3`TyU}Hmj^F>hxc)=xU2E)i#K05=sG&0k zpEh7_-=)1*_F9cwdj8q9Y3D!$d%9t0+tAiEkqsLnrejM+z&QD9w`|1Ighp>cE^!2{ z^Nc@~=GOwx)p7NQdmCf7CMIm97#I|YvbzfDB4V&J%I_*rshT+A$Rzh3JO%=zTOa{s$k8g%YYMo=sBkVP44Tr@0lK*h3Fl#Hbh$2&WuVh zoZDOh5k-rsXToEKm~dZzzP%>aMC3A1NWeK|sOd7mO1fZOoz1&7*0ia9eVm8hfuYsg z+mL#jLw5}Vx zg~jD!9vT$O41u7|7{ye*3Yx~%3HbNvB9wIOnuR6U8^@^*;wSVm;_J;CU`_~@(wSTR(_OG?pJ{M^1(@!6nwVyE+S=RogJNwbv zA0*d)g9-JOYri1{>~ApFe%`bWuYIn;w)Um{O(CQX1p8;H#;8dH3h_5>%Amj36Ayr5kmMY3R&(~Y_+eTo-g++jtWha z9l~ExI8k%Ov0v|3SnK@?YrS)U);s<5ky-BGW8%a)DJ>l#}v zC_ltp^d!L?h($le`n`MQ_qhy#>i>!yJV?OP`?*7DvP+2j>=A)oJIGbdR?h;5Xu=Qy zjsDBJm@&37F`<#e1rOuRQf08LGa1PDcouP{rFofbAmiTK~sI1GN3S63ylNGu)u?5BsnR7WnW$=0jz6h`JNe40J|l+HqxBG1om<C?17- z*j^+lqM>u>_4c#U8;A2q4=UZ4YIqS5#S)m=gWpqFKiAdiqm_5gwI$W*peU>y(6>Ap z&^PnREdF3MiPT{2W-Q+x4D0(yX_K6*jINs&Rhd1LW163+Ns(yFc#t)Q_!L!Wd9~OC z=Gg1Js4-1#^U~f+7yp82{VS1TM|O$hK)Tw}CzO}ZNl2oQNK7hkX<4_X(Te-KAW@sr zp+j8=AY6+zWZ$fsdypYsPY!y=>a>nJ-ilgW7R+T3yzlIz0V` zf9Ds*M2cdItZE!t#k0>^2(I4+S8HR5>r#>x|OQzmGK-r>3|eT!o( z^9?Z{Z$oo0FvLbKEJWT@E}SFlNspT#3~`r?z9{zT;$DOZHYoI>xX(aBKg#*W8W4K` zYKPq-hRK`l+V<}Fmzj&vt|f;Rf_sx0LBhQ`8R5Wg+vptn(tWidUg4z(CCf`Z=ABmj z2scDJ|KLm47@8YOEHrg3N~5@R9nNHee*IU~U<7fE5+YnpcTqxwtLZLE zW5|X1D6m9)0SY^qmT)kWztW}*(%g4wZe&Q;+>cTsKYZVyxp(LWRDekZ5wKXb*qpW( zpd2i8{iE^?wD|F{M@Gzv1@Po1^GV3;l9gJjD9BTVEg$&2&qmQ%BCVa?BypT9lh)dYT$bv72x|*1qoIL8P7*UGLth z6;)n-^IZ1t-?R~l2LmN#q0(Sk0J#UlWnubQi5VtB1Jjc>jWZOy2I_O^Q?5S8`FtN!Rv6OCV)cv=R?Xm=rm)_K!2O7pqBh$2*S)B z#jJw_Lvm&vJVF>!b?jjXMo~lfjd+}614B}?4t@+_2x1i<>#TzxIt+P6^dNI-;V`6Q z+Rk2Z)BAZN6Edw$n=HeG!5}^a4$CBGGJpvEOwdw7krVH6xipATA~p#ma`I3v_dEF3Xh%4?2KmDfz;Cj#@&8)8h1H#avn5#cvRV62QESVB|r zRD!JFz~WXC08CgSnlt#>(q}jP-k5*@gNQv!XBH7H<_F8gY2rAVH(+AQ6%~O%s7?xm z&Q%G7V*FIiL27Lk5~|zsB1Ta`8Q)NS(CW|TYD$-wDktinDkmBZgFOK*kC+~3gS~T= z2s>ZW>kctP%y`fcGwBsrmV2v|ghnCM*R`w7$NfBpQu}{0*fcf5ab& zM3Ct_77T{!V~`+yF(rDgdzAx)*5T77)?AK^0@7mMbTUrC4BQ zIRBI-#c~kFxtA|hEsieKPw9k2JtR!XAV*6?-577j|Iglc0LD>WYwxV?*rvH*uxaj= zyRDU0%@8wcmL>OYOp#Zsm2I#jBgrKQj2%P?2E3-10E20Hp$QWLfdInEBP0YOdIBkS zdU+4>(vz2j|2yZ->`u8Otz?_Wdq1-0?v&fhIp>~p?m5GWBezJLCab*A#c7hf!MWH` z529N4RG;PD+8YrMBA?S_w=#=RTdwQ^u9f5yic4)*F^gO-P8BSmN^A!W_ja ztjr+X0`sD%+d5e{bl1{KRmXz)i{7NMQ-8-Sy;mGhOudfq_|n0pW_DA3eMp^Ul$AOYK0bShphJP1B zaCK@3)HRX^K2I*ZVY1uBF1!Wi!M85BD#fuF-0j9<`T4a)br3EPvo;FrbMP~R{BP+Y zf5i#gioouXW3kfZU5Pl9QbMpO4b;?aaR4VgBmlIbhtjLzL1^{2duTOS z&428nmFFfGJ2=o1F04e>KcK98f(wi1tCmw2fhmGhftKb-58PTibcWvmDQ-wFPshQPK*#`k?d}^0JS3g!|wCd6}bm5RPbCwUVI4IlRZD2V_0mVT#R|eR}wDQ{2io z`%Gf=O70aa#fx0gZvi-;0~a^|i{E0Y2^^X4NBV!4>DRcR zV~;R;wW~Pt#WhCPPPJWQjU!)N;|yIJOa8IOOaE9CFilTFfjX-_75U4{&05>e)O!{xVzwGFza@_dyC)QfxAEQ z-4{$fYY^W7FJ?h1iFkJ*gp4u^tOQtG|0{>@ariig4{>-Chub-Xn>oaUE(*e24s{B( zk2w4lhtG5PB@S=ou!X|{9@+tiBI_jS=g}u6m2=*AR5e-@tabzSB5*v40g(7taEX*m@+#LH;d?| z1~&`2^zw>1W`|h<-Ve`(totM<37*x&u}g376t81=MHZe$AO_uJ-J@syP0#u(?qF*_ z>xa0$V;JT=Al1t%5Cao|SxI`i`(gUBd!+0JcfxYrAmPN3OzhXg@4R0Olv(0qwLWR z=#j&RqIPgmoU-@3Yoxy_oqjxN^(2qVrk}PRH;_o1w9=xb@*l0;_jTynz~5q+5FQ+r zguj8=`5}J8xM&>~;uoe|vc}-|FSv4X{S43Lh=(m{Rx6=V{9b|!9h&t`JR>hC!|2*} zJQGcI9e#g~8VFo7ac#i07*{j$T4K~7z#x!AMo|6m$QUj(N)0@Ozn{{0z&WZA9o&U| zz0ictU=kV0Fxo~4gX8{NeC?3-Fhq{G&bGt_wzNPca%^pK2n+h@(EWTU6w?14*L??& z{alYf#=|cxu+$-}dYBmq4n_tE4o-twqEc`$vsZ$HN|)fEBv^0&=>R~sS8$Mk;2Q4l0!UEJ>*Ktg~??2@cTMk}}N4a^=2| zDbt<~{9{IqW`f^PlIo<*wv&2-8S3S$RWPXwwIJ4g&~`y!<9J^>4<#8+d6Xg#r8ww0 zhxr=y5);iS#|N+1#usR-|%}y zxfpRlS8L4c~GVtX+!+Q6m`_Ke}z64{X#pd zoqqpLH8?1?Qvgh!x#5E{LT#kLQ2|iI3LNEhLkb+_Oi@|n6bXA?Oc7JsbP!XfTOtTx zI0dltOprUc5#PXenmGIL0FEnUiVsmOi>%VJQClXfM3;i9B2c|>DY&uX4_HYbIA|*R zQc^B{O=X+pw#q-&v-3nx>&2rHgjebaNs^ZM&|GCxoblO+mh~ zk1@p_qg?FKwPTa0xFMbiMoIy*45oB9{%M*&d`s-D53-vw&|_0ZNn@Vu=dhRPto! zlM7g3Vm=9~ZM!n!Y^;)L9HCrpFc71$LQJI0(+3**AgDH!P$*M;(`Mrvl2e}9cYMR* zqySulLkz6I%DCptHLBIpBd&qlo?B`8$vkRQc>q_;=nhv*2CxE%A1O{W?RjP?El|^! zsejwP@mlvsiw3S)^g>4vbxnJz4GpD7+sV~HV3EHMyJY8*ju95DDYP=ol$ z6o15715}9dLpfY?pq>&xykOynQV=fKSOcV?NMsOMDn^rw^$s+SK2`3wzl<*z-^1&V z`1PE0ijoS#lCBjY-n6ho4zL5pn6}&EofLL>gZc^FfP>;INGQ%HlyDxS2*wL*EgX@; z4n6jg5<4_`u)`Vf>`qwWY+akDzzCPBCXFn7KCwX3|mi|NbkJ_m}l3?f%ioXGhHb{SJP5oH! zVT(wlwzw#oo5+df7DnppbMtfKk>Z@ZL}4T^H(pmzgv#F`j;GYKc0KhazsfT0E3WNHY0P&~dIuX}koPlJaR<`W$WiBgd zon6@LkYK|%CBK$B1%|#VQ0|jh#bp7O3#Kh^bTU(6|CU@?l&unVckwE~K4&cO7h$eR zxK2S+rWnwI*)zMQesg0@pt8KMJk~CEo%iE*E>x}6|1!mE)BwiO`RA!%Ah&ao6HDjT z)C5VAPlaHTmm1oauhjXH?Sr^{n<=i9MZ-oPMOStQcL8VwF^0v#w&Ip0FT>cp&qmJBw`h<*ww zP3hVQXogX*fsR75Fg}bWofx9aaC8r6)+7}2yW!Icl}&|ZWTg7COf|>V^GSkT#HZ;i zywtV*s3RK`f}_t^{?u zR&0R3lN84?)IJWUB~ZXGWdUw!CCg0JxytBn5o^bOsVqifrjqjRDnvDL>59=&QVZa? zRX;nsSXZpiBM=^n5x8E?_`n)TU9rC5R6RTjCEVRZ2{Z(IcnF}GV2A-2^GZ?|>#lSC zE;vOk?1oy(U^@&EV`VTLHoFoG{4?Zn2R-~5Q&?ws-6vv6iB>EzK%bTIOaLEPEHlJX z%!K8f(FzlmJ@v4a*njXnsIm}9GO_1(F-|iRlx|={r6$I0-=|VLN@2|(Ud*#rs!9P>aSEwS z=-Ti2v^HsGLPg9F$0lRwhgnJp0QL$ReT!^#05@C@7emtlHCTxMM2bhDza<9qP{PQB zm~My@(VHXm@GK07C_{!1BQ~j1*nfKX5%CgsgFlu9EpQ<}b3fFTma$61ipNVT=7^Q1 z=t3q>n>mX=DaI0%4b2yd4u)O~Tzj>6y9URsmV_ln#O)Qzr!Qby*pbahbNf2gn2o?nH zgU?md*9>(Hutky`_#n3X;k|g+&fD}N-2Hl~9=?rQN7cQaL-YskKMN{vJQXsMD>911 z(Zqx8?37$saE~Q7;&g0InHw>Sm=Mg4n8mwsI(Ar0v2dUpH;9D;-TbChDk$I`zo9L8}Ab4cAq_m;OqIb)8wL4Xd1)b~@&GxtpL0OXJY#5Zj*IPKG z?<7!xKcwda>$#S}2JDr4+Cw4r%bwI}a}SxM?y^#+`5sv-^sFq5hpzn!xgUe;bX*YX zh9AO3N^vjX7lL2yaa{eurozu>agD=8GGS7)%Etu_B4|5+M8cBAkA@LB9=|^@Rw2-{ zh9x@2PAv@n_*DFpN37ANOr ztWtrRm>Ye_`F{7Attql^6co@HWxHi`Kee@QF7+3&e@n`!*VL&ka?C{zV?)y|IoyXf zzGI3rX$YBiQP)J0!DlvCO)}YjO$|7XM@=TB7u>bw)JKcsMaA&zU6@;3R9jnIoR?Er zgjb2W{9+tc!wCHpo4p>&0DW{E)4_Y7%SYPh>`^_SYh=gz>0qy6rGVsC&mMzgOU`2x z-c24Ko9KOy>e`8>xU`4n+Iu^7hs*Z4x2nuYnhQGB%P=ELL6D553LG8GVX5jRhh?v> zosr_1jaJU_E&?&eq4LZYySDdC(39%5kD%A;(A1JtQ%9{;Q4h>Dn}>*}Qbe0w6T~)y zN^(BMqlGwXfhs@QL}EJkeF^B=<)-*RRy-+S&Pf}k>`rv#OlwD;58{0in2*q)J}zzV zYOtIe?$c?^eIsV7zr!9tKU^luMWG{u=SFYYsbZ_Hbx@~`R5nC*8bkhGbKjP__4s)_ z7or_S)DC+*gHAM_*6j&G+9>GS9D5*$0e70R{#^|EnDlK6Mx(}?ZjA5jVy1iNk=gB@JQ#W5$~>1?(xw> z>cZVR^0Y6UX`dR&N$JS@IS1l+1A+x&4-94Y!11PtBJCNd5jI@(hr25L=wTY@&3p&l z0pbbn=7$p62OH>ABBd{%{jb5kRH)2yP_l@IdpGL-N#?n5G_l;wDTSxoGF%*mT zjbkVl?HlQhwQs~byrgX-N26`yXo^PL#!+-bYV9NGhBl4Rpyq9$au*nCaBl*`7ZS_H z)Wd6WollESwFwmWsh}?QVB?w-Ey<%MAZ+WA3`7B8E&xSz^@&VD4o6!#r1xOq2XLAV zod@0sPB7zIit8#RGo_TeSS6*N$x`Ztw6`iJ zeoYA4m<5)UI)_JH4m}ud^cS>e3O#nQa;~D=riB6+bdEjKB9c-w?GJm7kF8T>mC;`5 zKo{+|d|eEsZV{t)5G@~iY_lqVN=e*KPX})`#o6hU+f*r`Oacoij5-+ylU)>R5|~7) zh|%13cRZ^}*d3xiK3@LcbLo#I{bZ4;+K1&))TP#4!sI_VlRQLn@uPsh`Zs(4C*qog_#7y5q`x2;Z9K32E(1b124M-aA$v%;m)So<_jza zj|%S4XX-vnVP*&5O&gSDUc)t01$W#EGlK~35CE~W$y{S*$R}N626oQ+qA_!#awW)x z(_4+1ZiDNLhVrG)V~G>plCS zXv_@kUN_|}kH*YEW#yF{_CwK_Ij;L!5y9`$m^rS;YIUbEqbY&8aU?ZnraClcaJC|X z!p2FJnenFh7oHxGxWvteWZjRU%C?fWv93KSQ+c_m#PJ5**;jC_YhO2Yt*iqC1aqo~ zDQjS}Rn=cjR+;&(te=Z%9=Sk46b*4<%sZ;FT1R#*DgyWZ(KF1<+RjB`g(Q zb{e9VJqfWS9eEHm)SaKutWEU+?I4uHAb5X-=oTEQ8ugq?S!Um_DL zoY1YtOy6hH6)2@&x|9Ho89f{# zl^N_Q$-e=eao!`w+8Q$_C;@=fn7K_hI$%Q%IXX0E_Uhrq_}{I@%o(=E%%i9;tV5*! zU~NEr6MM-6vLG+-)2}h}I!5Ffi|reJHb`UUc@(o2g+NILcYNq^A|76(a@86$P^Pgp zW`^RHv>_>+PGR^|zW)`6=xn_I9EUM%gLTd5VIO>0HD;&-|BW2qJ*R|Gmvgp;pR9l zDRYgPp-_|oD=~}oGmfFfK|6YI#$0=Us1&L;|6p45eh-8Jc!tYCNeYdb9=C8vzdxPc z>4-!GYT$O^nx z4JHiuP_FH|VLG0ZxS%D2gSz5dXr$PFb#E6BYCXged1yE&3 z7Ql%mgU7?Oz8|_ozbLEu_zR-zFI@4bWf#o*#~Jq(Us*6AZ@|niO}lpT%n2Wk{oSbl zI`zL#&KfTIM-ctfzfXJM(;oOF_rMj)+sA{|xvP5Tu+5FoCDP*OH%5nZZkz_eSaSChZV0x2bpln>@J87tVof3>N?_ShC z4l1J0&DuGVC%wI_d^UmPS8AtRRfEbPK=>V83~Yh`;fLN;g;`Tp0v}bTd+N`mWdI** z7i`{ypO%DNTrZ+UTIf&aja}~8$z)zpZgDg>r=T!5nj6iD6z1mT7ff#2lxU8%HZ_07 zL}ga_%9zGwY_3liP-Yh(hOhBOpK3>kp8~EG8KK^T3>XoO-pP`B3+xgsrai``{HwLIKEw*s#NsEN?-ID z)Yz@f8(JOtSEmv*pX*D&^^pne0_LUSUwU?T@$L4`PsP9H9AEtGnwm|qI+(b`>{^hD zc-y>yh`AhbVJhMS)d3OnIO3vI#3!l(B1Spl;#9=Wxd9QOJcc?hNkx3MQV|iJJvTIR z#HFc-?=AO5oLUp#+*}iH+PJwv#$J|+{maF^*b{5&H*8EaHgUeoQ!)Rz%oj7erha2= zT?Dn#ddwFSc~VT-pDXP=VHIGhFY1JvjZN_jIL}q-h^H*@MVwUA5Np05 z(JaefosK(cg)i=enuex22`tV^N6eq&i#V}HnrY|q*QBGC&i6%~TGO<#&Kdpebo50_ ze9>prY-x?vZcI2+oRdy*&LZ%$fb3PM9%>O}N3{s26P5a7l6({jd%Xwe~{|9@f|otMIVYeprNuYWtxQ52g0QnRu9GKNR8t(@T~!6Ax4DhlzL? zYd?&_!^!r;a6AmP9|qy!X#1f*9>Vg0HmQFnBRIgme=)`Ht+yYV;y2dqFUjTymkcE% z@t$@2E|^8u?RQP60>}v8ghl|}Vn|C2@uEu8B3KL9o`B<8oQcIFj{DgpfP8#Y1D3SnEUFfXq@R$QB#53eExMes@*tE+`#cci$uJ_k-yAo=|F4lTS@DXl1h z^--qts(Q570J7{`9cYILKW<1(!6c5A(HrExB?Dpf9M=&*R*oixn8NI@?;=OeM~!Q2 z%PT63)Yd_e3sErSxb?O9dG&SmIni3Yi4^D6qb1>jF#54~ zKcI~84H)A1#;rG25tOcS-~{j4TW zwN(5jD!Bwcpup0Pz)-EWwFIYVFgZ3U`>Bij6)fsP%VGqXz|H}i`bk_^p@Wlqilo&D zYx^~8R*HHQmS~sfM#zbV!61|v28}x8^IOy{4^_h-?vBQfuKg$OCh*+{ zxGTUH=$a|^(8(K;r&UR#?qt7_adQ$ol9!kg#@&XL1Slmm{sD)-eP9DsG2GY-!q^>ehLKo8GA_qn+BVy|jp z!F;iHjra~CqfatLRw%(T#)@S8kH!xCZ1(i`BlInFjWr^7t~bR_la-R&OtB9R&1lSc zC3YI~MJJYGQg$G0Hp0{|RJu#W4~#O4pXD|48??01S(sZ!2(57cExx?1eJr;0SC8B| z6z+r@mD|(LH$(9bqnBcjo>t;Gz+yGOmSK{bXPOsZ)rD#s;{3GpV`tJpV<&=T|XnP zTAC?H;7|b0!=Vrfg)Fv~c0v6Im?|>-)4W*GyCf|HpKw(@rQZ8XRW)44Ceiw zBR}u=*zbJRevbvnp1{+d2FC*W zy`J^y99)y0Hx0d-^t*dA>33h`o=1J3^t;!%bL!iq&-YAvH?-d!bC;39tlxd)XZ>z_ z*6+4wJ>Sr*r%#`lS?}wLZf1R3`>6h>Ex-CiK>Mbxn>Rr=U`_nN*2E{ce;g+MB>TH# z?q7&+w*cCg;L1@z{E-`;`-3@lYdkq&YuqAvT-i7mKr$^Hq!Pez!oesIO&+0Mn&{b{ z`Sjl&D!+b)BzU&QTR*!g(HD{j5adJ9M`f*^U`_7ZOr zL#(yLc`-|z2eVo%&WlqY_gS=?eI_k zZAW_gZ|nW^-*)7u|28@Ox5??xKjkL9{KQOuMJEJL|0~XDKdt|$mAi&9^pCeT#~NEK z@IS-@{wD+c%LtAI(1A#g0QO&wt2s0H@6Lx;K&h$J4#_@w)<4bhb%~aEaw3Ha%@Dv* z0%jdlC7fpDp8&iet?`pG2)GK7a)HygJ*$FT?3+=Ul1-HWT2w7o1mOzG9dlcm7ex00 zZ3v683~UTTx~?7bhDK}0&{pj&AcZ!9cFGs|T4{(DYo`n;Oc6C>Gn6Rk7i=d&8?$=3 zQ@%*9n~UYTX``QV6H2lfuA3Xh<)$evWrwA12GtmEYZ-Z%RMnetUKZ$M4GaX~Os%c{ zQ76$yTK&VbS5|aJH|u9j`>FjawqLzv=g8J3CZ5{za&mHui;MCK@^T6y;AH1TiZ8L2 z)C8=S{SIbwZ1(u`Uk)!64=v6fiGkUeB8WasZZtL zJO!>Jv{89*t;f}bglb^|+}KF&6G$@VK7piR?o%yBx-Z*OEcp^c^R=m-O|nKI;s5>=qz4comySiLh>EY zwii-*$?U?CAy#ZLu1URGGRUJ3izB@)LEmRinIZBaEe;<;_J8f-INYq+!?QTltl4fB zM}`dA!>~Bkw4ao~b<`Ks(?iaE zSY1xkQ`sBTQ+Y_M%a3|0KOWRm*;mw4`EjA1N*nc5+Ng(b2=&mXPZ;V6=$39#&q*oN z!}B>9^~mX-UNU__J*hnUusEEk2a6+9rT_-&kQRp@_55#L9ETnC9G1oLv7w&cFOKut zM+~Uk8M=BK5oWQL_=XK_5%}gQhI%=+KKc2$$t!}gowa62v7YulC*iX8J)FoOO&@y(1!kp*_CpW>HgRQDDARDWFPr`kq8)i(O! z8$v(y=@W*20=lJJ^fNq#et1F$qaQin4-NgK^610jaH1b9j?B@|p)C$S`uX3wI1W4d zIV_9gV?#f^UL1EVZ$A+VD$kY!`!sB7j5Szm!>^#iU$HVQKH9*SapY=BD0B>dk6EQ) z3ivEOX3GL73)_h(v#P;rl1%4}7-!NgatZ5cecu#gmRZLZgU%mn?#mIq z*~e<5@miQkuT8|@Q?M{rSYKa|$c3q~{5WZ+!_78x7DX1S@VZh*7ruLvFqj_rUD`-H zggUIX6xByV1@~A(3}F>qOHqBbLQ#FODaKLfbuXLMw61PVZHsY`F~~7sHFd2^so~13 ze<(5cPus_~xRxa@Cw!!$tbIp0DGUMCrzterP@7yXr^rf|Yr9UdV!x;m<)r8@O2iy4 z6lWq&H^e+v+n;ZOoiFyvv~KTzY%J+@W!+(v&=6mei7JwF9lj`8iCJOY^J!B&BKrib zc~hz9zdtDk1%9-Q1)3JrKmx!$@kOt3Xid}{X02-{0Ndu4^PZY*r+c1`&Uz-bSgt|5jwrFIH;j$SW__neGx$AI-5E|a(VnIAko|~Et zI;6qEglgBs=Se^|yZTn8Dp(~?b>chf`rHfUOY%Rr2a53Q^kM#TR9+p~guy1b5SBHa z=NiZkc6c|I!1Z!k>go)v`9IAPaqt?zNarKh3uUegTl0Fx7G9UNOH5RLzN2*cUNm37}h$RDFI$9XUJAzicKizVSp-=ZKqil;Q|g_xPgVPJ!|S(M`{YZtDN|XLl@e+ z%E`i(-nCa`n*$GB+>6EV7S0;tzv|G%UG|}iAE0i}GCZ*YDWByBS;QPyw|2tUD7&1T zXy{rt;R5(p(zQvnq-g!XfZpl&GK2a}dgPdo#}8#zOI@TvvI`J$9@f>2_6z>YoKYib zq?&abn`&bl4UExffoc#qG)!IlU8)1Wuk1i}ANT!$9?QlN0bSN%nTzg82?}-Xhe%r z_NEdSc7IYOJjFh#f)ftmqq#U3q9BpqL<(k8uo!`^;eZOlJ30I|ci$KLep&_As-~d8 z3qsCgTfOyJP~SEot@H5KhAncHTU;uyG{0} z-lSbN8~dWVOmEKcjD7|dbmZ$*%!+}eTg21ihS1I{-GMVR2gOSi{G5V+Qh@n@(OARb?HqoW!w)#* zui^f5AC4kBJv@{;?|cd_;2zw_VFQPa95!*diNgyyZ04|q!&VMAbGU`u0<+=*H8TMV zqVRGks|p2c6p4BxggOQe`=P|oajMHWMB_T~ry4pOFtUaY$BMLf5l>nbdzZ!u$BJNL z3U6?%2sbo5be@RbQ9QCL_BO>MhYD{|JUP}h5#(6o6US}&>;ouZZpcWQytKI#R?4E~ov~4qQqwfu=1dfZN&J!g z=1BZ;R7Obru@t69x{G8R;HdORQkfa?$5I#<@kdgc6!Aw>84~F>mRKsg-e4JfWKLctY0!kf9c~yWfnw&VAfeP?}3pF zW_CfRGYP^1IZmj@Np(6`M;oe_l*ZPHJSEpwfrh}emo_PJ4&YlR?otY1ZE8B!1-q7f zX_YD~-qB{Lw3cQ`q}yhiH(fujzNra^{~c~<=B6pD}LxsjrfDNu@wmJpLwW5K9g+yo!c&>B6T z4_UUDBF`und7?Fm`WOO6$%4>rKo25S0J^=rU;D5DWjjMx9=&sIYs0KrtqpC3#ksI~ zkeizyEi8ogXhB{y-zh^q3ewP#xK1UL31eGvblkWH`aAwa27i<_)gD5MbAg`WtVC;Y zqh>x|Q*ihE;pX_(^&47@WM&yVg+y$fPu7KJ8wa$`X=o)qPCLap_eLDYh{tgbrDcE= zJgG7C(%w!0N4#?Go};2OH@7s;+<@cQo9hxYw-puC6hx`pmln&Jm@@G(sko>pwT@)%vA9O1=M8MmsS>5Kr1r`jhFlj4={Qw6_`h*=cqb;26APpPJUP22w>H$QYiNai zDoJX*h(4-hlXvoaCIw4_S2F%Ytp!jnax3n;S!nYbvmcB)*riQp?}$a8Ud5n`Z<|t(ralCCH6%;IOb^K#DRba9r3H zAVoPfaA4T{A4QpLjf}XH1rvt2%?Iqk5k$la(~@X{#&V3I97yp9rz+lb$4BO5G9K6* zYpBUdPD|a=p-wVTCcZ3ABr9rSe2JA39w+g~cpoNF*nk?&U_7;-rzf0rV${jZndq?J z)MAu%Z60i5+i%umP<5@`6npJAjTl5-!)d@f>^H3#H5iyN#f|oxi!e;Y!4%i-=V8&c z9T*p|I!$qf9p?%R1I#*Mira6lL9df-G_lQob3Hm)*N!*Eh4!0UE10JQyM16PX*#zl zi}v?u6Ttp|o8r&b?H}MQ*Sh^JOmtbdKQ+aVtlRfZ$f9JjH!(LY18c9C;w9_t*G=)f zb^EL-zGB@zVTwoTR`Ryw;J9%s_@Suv2cWWO795b|v(qecR%cKY5+3z1_rtlS__-rp z6{RbCIw=NYnPM@!33JhpGhgvKB23V=Z|K@n7MU)>kc0EbbJ2*=+z2woB}Ij&LBce} z5ChY4;vuq+=D36*T~v6v-7a#8gNDKIEgL0+5^J; z8%U_hW20;9sSS5vH9M-ZkE%kx#CvMP7tsdWFC;bo1xi>Y+wgbtX`NC~psz1mZMd5l z=fcy5E>#^8VPv~U~90l3wMyQvLtnBp6bHvF2ZLQ<5T+VEqv;d)2HKU2c_vJEiL z^)*uzI==pk+Au~BU&*XTwy;Cva2$<;uJz+az&4~9i)*+Xi2LnERJmm6+z8SDu^RC< z8j%H=``^>0>Dnl&%)*{qkp%{*_OdhOG)lRMn-R`t=h6+%&rz!#-`2x7o1#^IO10w* zRXg6d+fnUON8olWPPHR^47G!tE9W@NTS3)Xl0ie}A?3fEDQhX^QrVDF9R|(Cz0S|) zTMhYz9{!FgzT|00v!WroHpFhpJilN0W$BibP)k}-pL%D3yQn_PGiV8kQKHV2w^GU# zvLz2g#A1r?J3pJUC0UF0tgu5|Z%wT)DqB)%w`6{@+My!CW3n>clC9K|FQFx0a2EI? z)n`=(EqMwpVfV}u#_8H?lybFf$v@zk1vw9L=KPM;6!_IB!nc$~NvkbCQnuw1yDbY` z{@uAPXQkWn2({$^a(%;D;$NsnYcgmH@%v3j$}r4|mX@5&ZONJspCibbEoE434IgW@ z<#&2kBfia-Y3-#F9;R%|6Lwn`x?I9@Th2+h<)>&1B!ha`0)`Al!qcfn=l0wdKzlv> zj+q0lrkpUvQ^J2Kz$!~e%~hBB2Lk>-ov-2J#E>cYD;*O z-IkK%LPuL9&q5C;4P9IU+g~7gbOHM(uoZ}#O95B-W(PbC@(q@@#%dYjbGTc??=HjL z6@1r@yXW}sa@>(jTo>fgYC7Lti92E~>EbHfwe#KQad!vbU5&eY`HlpqB!XmVb@(d2 zM}6=npF-^;4!_0WjU2+t8s1MqC{XA@(MbWxF~v$yv|xYu_%C=PvX~zT6aKi@Iqb(_ ze+~z5coc_6b9fAg$8vZahXXkrL>$G=PRY<=jw17Q%1q|#;5a%S@wI}V%{lZ)#uxc( z8H_K|XS}K6HxQBX_j&wO3Na}^E|5P9<T+)8%Kj4;^ss&Xcb^W9P=!4GoEwO^G;oq1IhnBrjSB&C;A4 zaFufCSYtt?$YzP=f%8Nx(Q&v&vK3i78CpPAWEE+RN$EHifAkwjPW;i!a9wx+6lq#? z>Dw~*p%muZlwg2pd(8ID(>36|iwumz%rdP4pKw;MS*BLE2Qp5PtLUFOFV~uRXhc$bg!iBX4PRPT>^Cb5f+R7&alm%`Ys9`Gz|tJ0>j#;mfIs!jrUoRrdU!qw!R#Yr$z%fYT7fx2V% zO>Es#(`d66nNL>53{_{GjOtL~%Q_ob+c|^5R$^3Pdp!sHbjd7qmOyyXpy}^o89HOQ z>d9&^A zHVgx~)F~yV5}MJBW{CCB#wKPJp0~}Byq&n&A=Xe_Sif3kaettjK94v>GDbC5$Ibl_ zNmJYd-VZXmL9%|tcIw{}*~y}fYZ4%3Im8trH}h_#xs;loL-_M>n)^fGqz~MmZAMbO z2wvltY~By$(?{OVZshg7H0y_Q%8>OVer^hjKqcTJ(wrahl6W}H9ieYai548IYa#Ii z7h{3GtpUI1G>hLe9lP=gxK0MYXJT*pJ>nHmxEk~qm(gfrdqBBwBPulmb`LQ_pLe9Y zoYFD3NBl|r3M8lF+qIIi)yC`EaLdb;#G=hUHuSc8WBcI#C(OU|VyK0IKCp@>L8;R$>UjD_!y>=;uLC}M z5C|CJLH##ge1z@R%%?v)9#UsGyGc%@(6SDh%Eo)#YA(&c%t$52aVr>*7h?zz3f|&l zRSd%}olj2wSTar7Im)kjsx=<{IOJ zRC~nHh8P6C`efM`ZoWF{?u)Rpy)t^GpIuFCc-3SOZBX7%H6yG(E@b;Q5$f-J<}W%B_bucca=={2o1eQ0O z;UI38t>A-TLR0n*&xU}5U~}Aj04?hy<=iv`ou1=R?Jl=Xi8{>&8brUpJsdCuFu!#9Ii#c4v;ZhElak!jA zsEKuUc4pK|h$XuT_!LJLWH-Ty1~^Li3p zsFxN5EszSV4kLsT-G7TO-`+lmY!8fvP0)3*hK88!|H5x|O@5~I66=SzfGX&f1B{7Q z5tN6MQ_=?y7}xf~_JDS6Xr9}^xWolL?_Tn})(Ew0>)knJgxP&|2s7}2aczUUpf2h( zQtJ$|>#1qi9(kMS*IJ+oXO}vqb|&ADb|!ra(9ZODcU2o3aJeY4mPemGVEDSCn-#FN zeITuXq4o-}U0?*PfO;ASYXvk}D*%k0%zR*2D}eKGt$@skU5E7zZC7trz^>1_XH(x7 zz^=pM51?Bo7`uA!4q(@jpZXA8NX6t`_SEMan)>wV6EpRFT@gI>p^q6F+HYuR+tdrc zzTvUeA1=A9dP?c)S)F;&X(Pw|eDu;&elh%#3}0V!s~IVOf_J^)#|Xy-oUhKZS? zAH5Yv$;XM<BIIM$B)oMu)`_IaS ze&HPpgS=FNF<}VkXK$k4FGG+=zfU3np95wJ4hoz!?D3c!cpJ>x2>rq$EknPuNXyVK z=?0`FZURY5=b1Ot6mN=`5I%1TR=lJQlt&s-AtreGhj&>fRsH+oK4L;Z`4S38cjHux zQ7$5aB$1tlSd-#6(6Jl z5z&v`f)&&Q^LQvjI4gc0CzHbBd4Mcc60(#5(43CPV)3CU3ACve(P4wwXH z-oC1RdyJ%*mlU<~fUI@Ow;NdVQ}6tiE1_rJ$SRmlp;oZZlcjWL1Du~6W`MKB6pgYZ z%($P_dM0roz-h<1&UCT{PcjBL7>>&*3J+fz?#Ow=5N04ZOw0g7l>p8#`Is#M&QF$m zGVP+g2;dYkz?o(N9E_rf0@#$|0{@)=&Z~=#N!vsk*|0TAe4Tw$Z2_q7Z3o} zkRF~`jq!)vwOggS6u>!X1Dv1Q0Ouz*!1+nW0OyCI3jpV30Z8S8G-Ev-lZG@0#ODdp z+{k(ncal%(a`f(9Nrp7bgCUK-Te^WXi`%0_#gs}&)3h;=sY##)pQ#@uG|KuWU=75b zS&!nnxhGh2q^TIIYHo1zaZ@ok${?v2#?F{_8B#HCdM9$GkcFuj8<@Otn1KnjZ`RTx zX6ogQjHwqF40=OJy$F_Cr=f@>Yc1+!2bIZSCW-0pqFyXu@W_n4z zye&+EDc76gVjLEdP;_sbqV9J8_JfdC<2~!$2bw|C(p|>E)OP>&k!t{$Z zDgQ^eMX&Y|puFat%zXkVuO3N&@@n4z%Bx2LpuBn{01E8Vy0@lB0HA!wrcPe70m`d% zLjdK~Pc}gD_f9teCDEQs0A-T|DC=!cyvps+dTc6FB+8EfP{5DRdJWfCR3u6%vrEb> zM$7%F{gBLMdBA=Mn|8NNOnWaTlbP7uC|M~Zcy}_rbMOb|n0Ru$+jHXyC=6R3s=Xm5 z@sHf?7}(y-mfIVtYU|^p?88oG0my)|a^B{=4CAMkmg~$EGDW6yIMYC0%D21|Hgljc zTnq=vKY|Lgsgait4S2Zw*Ud?JIcQ_!=~?hmny5-lz`UIBEJu4=vn|y{X@bNWN7~0Y zw>3$DbGnkY!~W{!BeAD>!8-^bH!Ly)%#G#VBK!ISNlNlL8vq{{A{qk*6 ziI5GihcH=QE*CdYUdZPf3a&urCy?UF@vK@hj8sb``vu!5mh6STWy717ZFuu?FuZ}* zhBO0%B0#$QM7)jgRq=JuE=Yub_Fsj_^$b#aH}rGyC{Zrhhko7^55ZUnc0;qp!%5x^ z)dlZ{{2kg2pjqD@AwaW50-9KBca%$vXhC}~bg(yk7cF#I3ed=0GG)AIq02MiyvRJ= zTOq0|PxSv8&I`!ZL*TqT>s=I?LZ)EO%QJ@to_wrc*RJQ8AOPiK^}0AO&-8}#Vhyqv zMEN)`&m0LT^;PeH90AVDS8Z7HtPN|Pv0=?K!LY`|>iu{*FaB-`hBa3XYR>`Z~4 zHMcf3)LOtsAwS~J4roJ+ zqGk#?YQ6Fy5}Q2GC!is9+8h#_VBfl-2h=+eut7)3nk(ck_j}uD2qd*`Tq! zZfr7>3Zlg+e?h@11gQ=;Y+;<)8eN4PdU>!T{Jv6oUe38{mz_YBYn@qiu;Xz<%206D zE{_&@hZcTMt$gnCuj6q#0Au|7=F%pDbCcP;t2|3Urx-fIp%w4FWR8Qa{p3*-5VjT8 zM_YG|OLzu-fX7|C3 zjxKR3hH&&9i~eDbX~aR3#x{77jTF}=if~{xCqFMYk{``2$}6fXEUbrvzg+U#K|bQw zQ3uezBdo4F1Ruw-{{0?!`C$(kmGF=e5Lwo2p6d{TJdc63u!BnCol7uS3BOaN(#P&X zO2fcm3@ohcWQF-KM);jx9>$pOK2q_fiQy}^?7j3<@k`l$RR4QQ&k~q>_wd{kw;5y$ zj3O%6Dg0#_IP)Q^Smgo&sROLyO`NSfM*Ld*Iw{6jP9`QmaEFs5!^C&UYs7Tqal9#h zi~hkMHhu`n@VkI4A2%n$BpkgyK^Ehdrm}O1@Vm+}?B2PAHqmk}0sD41$HGP7*aacJ zi4;^&u#|$ADBvTLS5iIJb}tyDZL!YV;(i?V=MdI52sD#1J%WLuj|^hOgvq{1d9|*M zr-JFo2aqzt6RE_HFkMce+=g=wBRD*Xw%VP%*ABm7q1^EMglQ{GKnKFKCXQ_2j$&0> z?_h)jL&&didINXBlyFrLW~UVMaKp|E;ISb5HsugxcVnAto33lkx)w*Z-8lMo6(B*| zdjo;dD;sEz;twe^g{w%#S}~jqD3K=5PF<@Zvfw@GO<*}r9-D#=nVv}o0d;LG#J~W? zxQmBSaN&{Vl$3X#0%*r!Bu7Qq(P5H#Ki) zY_&Dxq2yk#1U~gQU-82is)*xVv|JWMW{D4XO3%5z^mT`gl&;%PJKafL2+F^tWek2=i|FK)s~WE<*+_Ihb}B2)U1=_MJSEDhb`ZLRDx_o+p42(_=0I;ez31ApizUrNhc z)G#Ikg1D5J5Uj>rMvE(bvUo+XJ`7RutI+VJLGVFoU z2$@x${Y4k`0?|KU6Wu1O#Pm=TIx1I*HV&cX_9VLH#KmtHjFsnQTp^ zyEXg88nN7>6V5TjYK*`drWMX+Uw6NkiQMOM>1eT{vut!)?J6Pd$IPF^@51b8+lARN zDHmpL8nhc1X2VT!6ZbAK>TcZV+DSNPNOr~9nCw&h>J(Famv2tR$yUCB+aHL&8<$R*inh|Q=Re(q19MxPd= ze{Kh3#oYtir}rPV@(WXd6#TcYdW0=Msl(wuN(NaY`}Kspfb(b%3NMk%fmNwv-b}jp^HQkeWGSwyx14 zO4cWwdxsZbNkHQ!#Z@@B&53hwR|3re7A64)%fcf*^TmX73-0c_#Tk;J<|rV{V62=<8MT?m;a z-o3-dyD%fa$lGY~SN|A-3c& zzK5Lf&;F|r&E4YR9>EbZ9`DA(gpH}QVIE;B;o>jiC)w&hk|jjf6jM`1|MAzCSd z@?diq3u6J)WQkrU@wmvr5fiCZLFg5yU2Gj1I^QwJg+>QaqA~*X6}yarmguD}*ju=qLcRfCWfKnp1B)BGXZ?G& zzT!q@Pxl5Fi|dv1-4K7WHogw%i{3v2joj_JooH()sZ+EGvxw@X)o9 zy~oQi{^QvXPfOwD={8;l;+J?Ch+pF69D-Iy8ZV3M3FBfvjE#0D?}x?BglK6$jJr;} z!+x0RFYN{0M6t+T5Z?eVlX0kw@iLriPbEBDr)w+dcRufnfr{PuSnXiYwK zST9nh@!JGGJ)z|LO|g`P$&DsSaJHM`>(EX^s*`Y$S*WpauK|>NEo?OrN(O@*O&4EG zp=2-TIB4o46_BP8qS18yE#AGbeJb|IcTOX`+~`8giaoLwfwHhL^BLA2`R~BYod^7w zS+z%Y&@q+wVabaGfzObOaE#t)slWpP&^67NIKnQocIoyvC0F3bRltCRN@ ziT9y_&dqZ`BWxtDuA^+?p&;=u^bU!CLD|#2LgKe8=R1Js5#Ln@ba6^T9K_NNNax4n z|5x|dWU5i(@w*8_lXXPmbW1#bR|=1Vr7rRKoi-ll8^YtT(U>tF@AdvVSK4XVxS=*) zQyXj95Qnh_7e4P1iUA`Z=}oo|qX(>mV2pm%5~B7~O@>eR`eN=QK9&M<;4Y z5)7BLdYJ;7D<#1b9r-XmFO~RwuWPGp@2`)jAXq?6^Dqg51vEERGlp4lJtJJFG+01w zQ;}6~cFnVzfB%XT;YRD>{mKTlH#|yk7VF9&HRSh5) z?nBO*%7w-K%64araMj6si*WnUK&ON_pb<90RoC&*5$=7xL%8=Td%9N$cdv53A8FBX zK=<~HY}Fm_N4Ec0g~(#Bjcjd=Xu*omylIARw6$rz-$u6g+sKx02-)7(3uN1)5Lp3T z+{m>@hy~<&Bqhl{#2PT)yFsk$+b3hIe8>3^C)f8RPPQXBkn8(Et~Ua)zKBc3#6J4; zFaMLRY$ak1$;q&`gMG@E8kE0TD#$k-NoEK1Fh^SKayh+&G zGlp(-@U=s`mBPOacf@{4n#v1ndVL8PF*zOc5gHm|-gnpce7 z@Rbghc4)UscHDkt8PwogT7Hl- zR@lO(*u$XCNinD+HiJ6XW>DwZ4C*KW#3Rk14t?IjwV@^5!cR$$yC3_`|A-gN8X;!XQh zxBSyQ7}wr&M*Ad)i(fnzo7j5SF4nKmY<;JRAeqvGr$Og=Y$!Bv40N7%9`G=w3FVdH z1Q_{TbKuRHbYB~bU$A)-aR(9-TfLYhboD3cea#U&nanH7EsnywOJQy_H<}YE%+1R$ znCx-@he7m|F^$XET%Rt0ox4#1V)z9-P*hXM>NjjmG&XU*D^oH5xXc$b zyQY3)Y+VaSTqSML{s{m}i}_+APl_q~bG4nPt__6ljc4^upyQ7haGqzSBc8Ir7jaTe zL#+9NM6)b^O*-x*2n>ChHZ;{qU~zUjV*VUo#ECUc_4O@@RxbaXbkx%MzNk}cnl{!s zqo13OzG#Ur`iz<_t+CpT31^D)(kaeaWQg-XtE=`2*h*N(uDjWMOtK*`L0F7JyJ_jq zh*NsA*|1M?D-U|GzN%ugA$43!gjA(59OXGT8@l#Y0CZi0yK!wFSwf|U`*E4}!<~4z z)qc1M4@vvsT0C53KU|K79rnW|c-Uq?Y{tVT`=J33>+OdG9@g3q=i*_t{jdTLi|vO6 zc$jNHRN#U7o-6tpJQUdv`FO~&AEx7BlKn6N52Nje)9^6DemDUSgUSCSHTyVR1MDw4 z9zya#{L>VFwQhlKerMhOrwJ#5ToLGki38T{4@n-4x2R)@fkTFhGrzC!M6RLj9G&v+ za&6~eiv|ePJx8puRXt zlEn|<>}$7@c~t^apc(RO|0$-5sUQv5GaU933Vud!__dMBRi(}?VNp@EuCTbc01Vrr z+IUVZQCu6zi$!8FoD{CBD}*{XA4FtTYC5$mt_x(?_9g3a8SV@PHZqEqXSzKMNZ#8$ zVqaRg%oIC2Fk!j#)UB{tw(764jRD)m8!77^j`xUbdSuz|l{J(O=dMw9b@0YzyOjOZh03z|-a?q~#koQ88C*FyPk$z^gN7KK z+*4Fjzqzr-ZpExwDdJolF9&;Ja<1d(RL6~95%9RK{hTU-azC#umpiQ5G(_o5d%V3w zuFZ2J#gRgII4>wHj^ySSMRJOA497MDokRzk_macIrCiEf)q=BHN9{V9jz}*Oqh*y# zl2wi>@1Pv6RDwQ3*8uQy&=g(!7fglo%}1udp&~;MhhV>xZ#0>$kFW5$c*Qyg_NF1e zi*sPF^Et3LV57=h*12Mf`b&mK-obu(rUuNWVZ&M z>EyNY95>z{Wzg574R97Z`7E}$(qcg1EF0dCWSy7|QnC&v1Kw5O9dQ{1=j^ z;3Dw^9k+IzF6$91qW>SI~^^b<_3SIj$nkv4E2&B3W?Z&kxnZ39e59h*1D1PSR zT8HZ{Tvy@hFmae~p|}$Ohji(#AYD525;0dw#D5#5SP^BCe-QG?3If&`x)kJv5u)n3 z{uU<(w@-v2x4WS3zL_1nTRHnIM#`_0*ixu#hm_!PSaX?+Yv2I|@1n%%U;~HDaTYr} zol7++{U;%Khd!ev3qZF?%Szd28dJ;(T$`ly;?90FPGCZ=%(RGlY!fC@oGmdjIqWrVGf{ z@%*`HjAe(WC*zUgaU~eE0ab|uYO+lS(V+zII3*@z8uuwNcA(p#M4>YJ++>-f2$hMN z%_a`op-V;BVW(yWzZnhyds4Cz$d9SjIW9vhbja0fkVbUOQ>`-~L_!&Kcp4_6ON4dY zsN8KGrArJ2rq%|({bh4v%jS4I(Sn2KldZe9;#ggxwkWs0zP>g;8jU83BK5JHc%mp) zR}`yH6vjYs-;0wZvL!%2>Y5NKe+VUXIO)~oSTao$P>}2~w@Mb%M&#H;IagtC^43)C zA3ayqkBsD@#X`}T>MO1RXYInx8=4a}v5nv&z?4{BO{}>&_F2ThRwoHd8hgdthIo@O z@}tVB)kRUs;lLP+Vwp(T9n{KX@+ZG%wxm{q%1QInT~r`wmU-~PP8CJL4=W4i)|A0T zd#X9XhI+)qOH>^q>yCr!F)G0*CB(n6M{GSb@v0^ej!$DV`P2 zN*e^?J6L+JVd;IB2n#scmCl5LzU4`^Vq4%a3vMJ#F&I&B!tJMAp);gS8D0Af9)b0L zPQm*WyiEa90uRyMRTQkiJOP1vC^P|(C#i;akgH&k%{%W7yjfjo(={Ma`lBo`%BaM@ zP!OSDHlWU_L{ivBUg-X0CNfUp5N2Tr7n*Q!j00c5tfY+pIM5rD8kjd0snH>$5v@Tl znbyEN>FroXBcg*}ksn{afh8E2PDLbGf)Ni>UO`01b~nwTttDm(T6mGJH35wwDgN1i z6{1BoRn0E(Gs|Z*l29UDyPl5Rfn2!Hgn=YoI|J8LnAFD)jQ?DOAJVla0j+Jdp2l-Tk1d)v}{Zy0?pFPuhdRiw*EcP1f`H^ zbm4m70J8TOXc5_e)yzqoTN3f6#=4f|RQt}-9>`8-$hf`)y+W9^0wab$&847NTP7*CYuLNP;qUGlg2`yJ1PPF{|A*1E#e`wQH zXgM!0o~X?!tgVkG6191CvHYUKL~cP*T|q%!tQL$Upk)vkX|$}a38CdfDB*Jow5%>j zLS7GA2C{-#jux7AzyZ%GN1BlpmTDWt>WSm>T=&RodKy`&3sWL1Cw^sQ^)=-bHn90% zTt%KRmZGxaS=neGf?6kH7J}Mfhy)|3dQ+Tdh;PaSKK!&xTp_No@Y5~8PqzU-!P>$I zL%ao#UnmNgTJU9U~$6s?v(aJ72sq*qJ=v5E6QhatOjb zTRgaDJWRx)DQ=9jK?%&d!~-Hp?KUlZGeOsM!Z){>;vXOqOc66_teW_I*I$5Vpp94EsR3sXWLCY-?%K=_0gvHY+#54u@1qC@piTb))I!=F$6HlpYLU`&B zO1Mpdr_=>W2<*XA#9F8AW4Dv`apyMjsl&OAd>*#U2|+%koMK%(kB{g!@+-=Md$o=H zO81!Av5iz0ro_xnZarh>CzXrV&^2LiBXxTl+0Wia_LoEM!_vXqNK0DaL(|=CBS(9- zke2dl@WwvprQZR7-d8<|Zb`#-add>S~Zh#rhY5i{P3V^q_|xfa zB)wz|j(2h!DWlOgl3&p_l5YruKShyf8wu(r7?pdskuhu|88f?)`Grb|-v##|x6(+M z7Bb(4t|4T858-fVV9U?*0K2ko42PPkZ3g9Nm`!? zCdeqF5_B>QABfqw#;WLKmsc#{v=9T2V0=#jr))bTMKw$M(3Xf{GE_D;kdkDFB=0%$fTH`6dSD_?kH3* zh%DEx@T$g3?A`O}j`d2H$7LO;j8a#>r=uR&42=#EVMu<~J-vOU!|Abhd64TJPp97m z&SM9fP6{j9rQVqJ!!?n~9 zBd{%Mkpt)V9-_5-hu9Fmw!F3fhRmO!i?D;fiGKfs>U|J0a0D!4&(Mjo)@~6a+7(1V zfEdv(ryJOp!3|Loa#~aNslN{692ZMK{89XeX@a@@9b`tlu&RM7v%GW1+uP0jAf|lcKtq&Ay-PB zF(Toh4IYcd1`CuO!>_~uVTd)>tD)#$2`$?IEk7%vWeXT*7vOP&d|amjp4jhS%fNF7 z*hl4}+EoQOjTgDHu$f7*E-7xciaTAtEP_Swq}XM>EJqyzA?!}?^2-#$VjIt_Ty`qI zg@zC#T|y9c$Du=5-&j5bpTSfHgUcOp&q^b3NjrAmkbX7gScK~3wRKF%6j1h?Fx8(f z%WIfX4P_@f){_Nhzs}Q|JH`QKA27u+@?9~*YFYsFOh7je{-~&)fk2m(-R>1D80c16 zK=)iET!O0tz?QB!u2mA~ZVLpumwHFt(6yl^>@SnJ4Evhv`37P}nDoFK;)DX`-bevN z-Wj`X(k`_D?@k-=?yv#xj!XfsuAN5iIskN!17DSX3$X=L=pK#t%nBF$Ef$Xu`~_d| zPE)*SJD%R3WcDjuJ6V7-2lOF%H_OH~z7vDt@2PI!@3!_Opeb)0D&a2xqm`?YrnKOu z1${rXpzq%ReSi1~g1$_ET2=l35BRnnS>SuIcNrc!@NGNNz_%@k!0jIRwt0O^W&(WM zF7zyEHSi@8*Pf#00|2X{&#<@c$iv=k-a!X|Jrb~Yn+I?ts!Cv#cqr)7CR4|>Qg zF{6#}iHn2iTnTAqmP$xFhUr8fX#_HNcACt!=?RcZd4Xi^EZ9B(WolEflf_a=DpE+t zi1tljWbD6!E0kYQ4n9_W!l_CE!sUSN`3ih5>ABa~W&{1_2Vc(Je4X zYb1d<%waHxe86ZVfjA^A318gy0FJ?-aU46b9j9U^-u2pv1-98Fo86V!{pUX9%@=3? ziIae{$?k?tV(0s>ldR+9|9e%{Gt<}1Xn+O#>(STMrJ1hk>euzodiCBh$Q@)X@RwzG zI58_*a{7R^`-jBW&I>?6A#=n@$`j&i=UN9LzJ;9n&bb*zRe5R6PNp78i&3FVjXB>+j>WEw(ONHEe zvyfZoE4j5E4VU7GKwhO|1CCWvZrvf@n}@NW!}*3mJ9U}+j`meBxHjOMK9&H>=>96H zI2<0bms>k5+PTA`ot+l#gyA7Og8{tqXeEk#0N|xgKqc9AB3$@LFa=EQ)`LRFi?T_t zQ{Y(&>GfqHy?zDOJ);Id{d-eLuiN~kS2w)UP|*7LGNPcX6$RbYo>qF5De4skeH|2Z zGpOeear~VZ1+`m5I}^48*~_gy6x3w_vn--9*-lWG94w;Nga$(XFIz-U7*P9(CW<5~ zI$T0l5KV;0GAn_07*&Hs8Yi(UO}2)JAaeR)u!1xfA%&>P_A1g?OmiIe$*EezG*X<< z_f-KWw>uFgTavhwO=J^+?vrR(7_iXn+s>UdI&7z(;A}75K@h7pKhe@*JH@aLCmUsH zJAH*SvBgc^DSO+gHPxhG*_C)pWIH8et2LL15Y9}opccWg8!w>ESD-8tL~*4ciVGA` zycL}+!%+=lNJkXMEs`kSzs7dbq@O# zQP=NqhDicPtwo@&i`WkVq;7-l_ouFIz@veWSJuI6;!EL`_0U>S*I4Jh+bzqiYe$g$ zm0pvit$B~Y6!A0?t*^tez)4#{AxFM6dIg`jy`Aj55>`g2{WLm|^ zJ`=iDyUKZo9(pGR)-wDup=&j+XEa!|%7ngAWkSco)I4+p+b=%7&xEekNUYK36RuQq zt(ML;boNCVM;7!$h$GK&b31~JaXzk)KQPckkoSQc$kQ-a?6R8zIQ$-rdinbHd#*mBg?>-hw(2_z>Z8u}x@% z_)d8$IOI4P-K9!pFqCV`ss$TLeM$QP*p(xtpp5WRO=3m370aSF3&BJ*6MFwZ>cIzR z&`vWveYvt^FpG)7NX$WBF|V$A!ClzY%;-a#ZTEG(=Ln)i}%=V?L?@tUe7Oh4#%}<5+k&_1>6#QCCHt# zhE0RkBSf;939jSZsqF_If808-Grl-HeCb1Dgk08Up%(euF&uQh99k#vqq8j)v+lwV zj{&RZ;F#)xSp|CzKEcPv%<(ZLhb4PRWiwfC!Xlk9LRg|t=WLV>OR^Hc&~CRw2F{kV zRHopEK7E6um-CGp`gEtsDl=B-)7>i2dW8@h6hcH5LWq~xd(Hy*DTF{pB804v6AAs4 z9YXA5ce+sFdIv-;$!jm$KsazSx%IGHDI#bMo6K&LI8dIz0oRhH8yNo6|DoCOMP&53 zmZpElJ<;{UoBVgHmn9v(Re;w8Z?6$MiiJ678d{o(9b?m_ji?-UdN`b@ z+g3<6dM!Pl9~;#hoJf={fjFS{>j_toJp@JKresTxp1Z-wwcdeUyh-a%be#ivdi-qZ zC$Iy6h9>Mk(MFGE9=7yuY@|yz@-!OB6rtWr$7& zQ_p0UPj;fHukn1kuoEp2b|ORBiB_Ru9gf+s57AMNW2v+gwaK^U62Eo*4(I!YJqR{) zit{0C<_HLb3ieJM6O|B3NDhao*p4aAvh}vR!y=Ro7NLw%g$QNTpHSMp?JQ>x_CC_~ z!K_n=cy}H~^RzA>lh|j8e!j#h`4k*Kia{*$}_0ZS2s)SM*G zN=%;!a-HZ-(1vQR3_EtGUz%)qdrE8%mA=)%$G1{{g;a_Sc=kB(?CMnFCNrE?d~@4x z`FIMoY8FztlQwc8P9aEA6`Km0m{`=CAaCcrmpmd`)CeM0&)EVY#w?a2WaM$2S=iTa zb1LIT0vjM_NQ97nnbL{rZ;H=BD=bt=NIz)QL!=ts7<0(uxHme1PKh z-YA~NqNM9n(h(_s3U< z+I);1f~4PtZ8DtQ?`dI5gRATnwuMmjcFt-z*#ac0Zp0&X8*Gk0s=C3020j+pLu2E0 z5Ot0;CQvnvs6(hl@KlI80*LxGAnA{Aoa!B-!oVaDm3sRi;^`_2Pc3_ImUw!LbLRF6 zPf36voLO}a_?e=K_aEax&>gKEEgM@A#YbRj3X-n!MN&VzmaeaGKB~b!qO^~Pl=g90 zX&*;u8swsVtgw*u77IyNSxCAnYb1Rbxs*A35iXF(HVPMdj=|XNTy1|nMNk_*Q5I3SoPjgp9nY*xQo!X1SP?=L^y>&|jankS*h?9m=#9Fh$85c?|VrVL( zg{=!8;VbU8lFdsp&hTas$r?r(Qv|o{N6q|X`tTM{b5XXa2p+who=OPzE2*aNGQ8Py zk8m$+0V!g$e>ke}=9|6DL_PG#=~iO&aEs@2V>LrD&j&d%N`a?j=4IqK0=$IDtar>a zjCCBrJi}WQUWPX-yhJ5itAJ#ldlAA#V5g^`>k*zn7z((+V)g|%&j2}L^#BLOB9r8x zEvAEmx(sGMfJ%d*BjfXljn*qRnh<#1j&_7wTT|KS5XDCSFYxm<5By9c?@Bf*drL*s zXRrvLihndoff|>bxVzM1qe5uJjLVXZE_3phY;jkJyA~T=dVbhwR$}hb960D==Tlw) z4vJkoQp{bZFjZfwFcp<-G47s1o4`-CZj>{ARxz2D%%P6bX#KdPOur%4lJp2dl9GCPEFviaWpB_VMc_pvjtK`-D zl)So=?vsnWie?hqstL(x%cWS7B_mKIYiyItM^7SnF{l3UXMJi}zVjKlV27ZrPst_O z)tniEAx<}Hu%C5 z=5_ZD$FMYOb@oAIfpr!OtWzkNB@0~WoUYlTq>TmEogb8}@IuKH{jn|we5`do;054* zwH7`uwD7TxDuj=9S>xly;eKxL_~YflZSiWtOHJXWZ}2mLN?Ve6Nj6yRHQ?mm;`p2g zUWWEY+W9y#oEDJXREB4e7%95R9wS{V8mabIuscEH*dXuS8`H#ntc*CUAXSANFIxJj zkWdcB3&Sh?RG>e~YyI>_eXes#W{Y#6xS2SR2fJW(CudCrA+d}z z$BAs%YcP<7poSh}gACRmrqywB;2z5%vz(7;usD3TsBbK2&7$)`&cLjoHKG6)gwB12 z0GItz2zrrRa4x2-;DU3gLRg2W!G3GT%WXcc>_N5%df|O+JId#=BbS2>+Ie9*tIZ2o zD8#$pz_DP2utiES+zf80IFjaC0C7VGgZ8ni9$XiXkZ+RkYXx^|PRj`4^K0Ffj5I>n zd=d!fl@B+KGAPkbbapAon&p!|GQGA8!Ty%t3F;u z$Yt4DELF~1%50=pqBObhpDS{S&MpPyDz=cTN-@SPk*mZx{c=LC;`4)CWe()B>u|+6 zVAl-i<6QvknqgsA2_Y5faK%(1?uAW9mn3$%!GaO{u&$3>9XEho=FLJ@gkw?~)`ee_ z*u`M#)W>LA9|X$n^Yhc_zD_et&bxROVj@HCv3outIv_ls3ebh>#R`=p)LA*Jg~5_q z+CuE=;4D|KR2zn!q7d~7DOUB#*;MYev4iD%%aMr0J&6sWUBLLr2sJfuL5g4%1RhDV z;gM8|e~ab6GB}yTb9XwY&1`FE&~h`|6vW&mlM6Pp-5{PyA?$K-4_{Gps&gi1i>OQ4 za5nro&PLFENZO3R9x^2-ggxCu>y2LW<`&Lk)W487r}%A9bHzS@9p%nsGiU6B?^D!m zfaxB(LcKam-+^pny0Gcg8bpEv8T=_aL#8 z?6U}9j;ZxT>Si)bn{U)mY#GrX0)Cw#d7E8Lo5qG3RKmfv8*~TRDfE1cBu%wQ(iDp% zP4Op5o9qJh&#}picD1p874YXC5_P$+b?HCZ36iJrKH!J}-=c_7!y>H9#29JYg0EMR z8?HPXOv^G*CfVo3piD`kGztby;bvsHFDxN)=gv*495{!YY_sy2yj+@#(}x@w z?L-)fTA6pXZLmTP5YZZSo{1K$x9th)Gb-zF16UN@muwbupnxD+te!4NQY-a}<>pus zp-Yf63Lt26c2q=bl((bMs|u*z(9jx$12emU`%#ID?xXV zAxA12qb<5K%Az~i(&{G)t+msgGf3dT*|)LBlz>R)YL_NI!2xu-2!9y*ze~FF2qn3r z3`cT-_bF4*oqB(|*>W7yIy3?NOelbXcmp2YlJqAMbm;}*7UOx#*R+207Z%;V|8-nh{h&cG3m%SeN@XnJ`P#P%>ooDZj2G>#%NKA2|{YB z9P-tbJb!zKIbnOpP9*7NRbqHmY>pTma^+1~zaB0qok$3_o+enzFv(hkkB>EOo#;r& zP1@(N!v&khaBXIX4($uh$(}92!G@rDG(6$UAr{3*WP&82eLg4Zll@*=+`${|(|JB> z&pRK~pb*@^LxVwb63!b4he~q;Zoc^B;Jl$dudrGZ`Kh4bXrEVDjfyW;JIn{412%H@ z&+Ju{k0HAO{LDqZRlAAK2eB1$f0L~yp(4uJe9qwDQv#u)gl#bea?kTcZVw>&Blm-w z;&ZSte6(F6H{u#7slv-~qg{nPP>B6Ah!ul@)ZfK%(o3wc#rM!YXNeW6msLJu1xSM3 zv5Izx5Mi-`ED^mK%Uu=XHQhWSJsV^|CDkqV9hjb^UYXevbqo*K%Q*FTAyk=u&X;hWRhg%u$9ytXkHKX5dJX%SoEliN21Pmu;xvpj zm?1)s8Jg5%`dRYCU?MnVS{bA$4=TQt$Dzl(#eM*4^BqVv9Cx+Tn_^!<;una?0a^nh z3MbVUu&p1oW-fbC(wa1ph}{77r!^nBEX)uEn#+>qC%ICrM`eN}mfrl(hGpFXKEDB`^C5=1tc2741EXE-{NP z^|9zupRDQ9#jvk-CQod9u1$>LUx0)L}FJYVUzOEm0;Gm*+YWC#y@TOK>46S&r-M;_Z3`u%x`z>tK=W zUg4oI0@`~Gw*8Qy29YSon{1`Yb}O^Y1a$8!d0peguWX538-i0Nw4-%YBkhQ`u#U)y z;=%Hk%opLJdf2+PBOy0!?IE0RNy^nm0HlxW#tzvdztBl`{hfd~f2{xf8_&S;-bn0jDsmZqL-ED|`vB7unE z<7euzZ(n8avfn^7`z8A+ZC<^KGBUeuJ!!l)5D}O?OH$ewkjfg#s4a8P7fqoNZt&Fz zbvK04kip6ESwsf!Qe-eq%v>Ti+qM%(m6Y}wkilC)0-wOKCo>tmkemOlk>ySX6BZ`p z5(}EEy?dd9=4!upqExmdGc{=Zi{e|LuIG2Kyh59k!s3kSQLZ^Pdnz zfzI!v0D(NvTPmsjx1y5T?-iBQ-c?i*l`N?w(m5bfCC3hb_7`GNL@N=`aWI*@U6%2* z@o~qqZxgkA5f(TOL!63_ds0%%W?yRQ0jV_9a%y}gQOo-jwT${_3?phOou?GFd=}Ia z@f+DEaO}!VEq|008f7D;GW5DIebR;)hoB21!^H@d!uF9I zsl9`+IW?@tk|U?s!i-Oq!eyx~%sBkXe1%KxcTTj*mQwD;o^}G5Fuk`>O$nFUI~Ra# zK8-w-@@}y0zmv6a3EbJAY?h^P`DJYRPd4%sF8`V?aSE4mVrMH{YVTZd;ZpmJ^Zg2P zDaa49<(E;UG{Lb%j^XOYc!EVB7d_GGg!0{e0)V}|rG2!889FVjkw z`MF7#9w73kmx#Ae2`7dln*_bYYMZ2mVg)fZv>G`v;a7sFyrR#wSVn{cW8R-|{D&8{ zwCl-Vw^kceFY|pgY_HXZl$&$k#ReLhQfX&k31PZiLXcU<97_nJ`3cjkL0}%zRuQsW z(4n)OO|z|R_l;jvZXZh*f2JXhznwWYiGAQddX^gb~i~#9$608Ayjz+ z)z4~9T!GDP3_LaIiiCH7dLM-2UBlljbVLhl9WNC%kSqpK`T8Jwu z@P!mVMXF(ccYeAI?8$x`rhx4legeim$3E#{svqM30*ODk9#`)op{8BL72Rot7TskE z6|l}QuoR!)xeX&r z-47#I32!{`^sT&bTlAiemiwB_$*LmaF~|+05jG8dBn)RVBf#v>ZeG9(n%mm9MLW$& z@+{m1BI3SPY_1e<=A_;*?UMg$(NHe=|3pY8g)}LWu1EujW*}&s@B+XpP#RI>r_LFl zErEb%P>sZ5IIu0C8c_?v#h>IPigd|sI)z_){0%;?y{W_OKLO>=rkUkUjinWpjnRh6 zvYBPkipGYU58R$f_W)}&n7b?SKJ!~#K1rSXyA}r`1KLMG zeZx7QjgWpBMZBblbeALGjHnEh546DkK&MzeTU8}r!fggyixrzB>2!MLgx_X{1bs+|v|pAEaY-fIV3B5-u_2glt#xW`-l>5!l;Kt*;kZdQDU9C zySp3WCHUMM77P5T#R75nstD}|(0(EqWi4uN(pB?C1?}pr$`Vw5OqW;Jcyh{i8>bBE z_k{EovIi^->GSA3E2Ph$b7M$H&glrpjIb|wJ4FdZpz94m;_NI1Sv( z3fpHn?Hcd9_@A|Vr*BylE35y}%2xand;$mr5C|X;Kp=oX0D%Ak0R#dF1P}-y5I`V+ zKmdUN0s#a92m}xaAP_(xfIt9&00IF70tf^U2p|wZAb>ysfdB#l1Of;I5C|X;Kp=oX z0D%Ak0R#dF1P}-y5I`V+KmdUN0s#a92m}xaAP_(xfIt9&00IF70tf^U2p|wZAb>ys zfdB#l1Of;I5C|X;Kp=oX0D%Ak0R#dF1Q76rz|n&Ex^VTbrv~pIeb2V&)~#)^oyBD( zWtBx`#bw1smF49#XO_&^t)k?PM>k;{BXA6(3|Fd&VHUd^aRdvK?fU)}Avq5s9OpAQ zT23RHSe=$kO^)b;*Dr02@$n)QW+9c7H#3{=WzEZjAJyIOI0f_@|*xJ$%Ti+1vXo*daA?jT*UEmjKH+-PV ztCmx@oKNGL=?n+Dl{Y_QmVj^)n+6m1fmL}Ir`+W6%@0sQv}iM z+*wjmQe0eIR52skFte#K7DYVGvRKK?=CU$;+uT%vAetS>KP{s$0tWF#o+Cgc%^Z5( zXOE;gNy5Y(Ni+O_=X1-;J;G@&7U4A69rV(?o2q!47SPhh(;S59l*7Xz^q!wCx&(ZYOl8`qIWLf?6Y*8 z478lY1CD^n*HL82r+R4CQ<%;cb_Kh_WLNnP2(gy)Sx8LNiPT)iTOMdGV@2{I-O)P3 z`#rJ7V1HEkSdnZ(1Y3Sj_TY-w*~+%4c%9n~)`l3EcZztO2&}jX0T=trR_=J6KJ$fV z3fk$@&KEC5og~LUlnuqb5TKzPz035MWrYa zpz{}0e2U{Wsirg8FQz%Y~+=*Iux4{v)GyDKug~*+# z;2T8llodqo4Bt4B973V%^@A}wH@I(w|LEF-ot*yo+A)&{1H4hhV*iZw)qk# zTv{tq;{FV2uaM@Fv;X8FeGHBPI3{tn579RFh4jf3ZF385r&yp?2A0_uMf^~x2~MrJvMYV1#g#F5#ejbV2K)e+@8dW&obEjXCSVXRtpY&K zJFf-Q61;Zm2a4COx#+xh`vv2*yFbjl7WwBcMPB>O4>+$yVlYrVgZ*Cd+CSvPYx`a_ zUOU?2wb%Ea*G_Tq+Gz=13qCA)?F|;Moni6XBESnQ^+UyLW9PtY5lZ_K;I-zO_?mvT z`}3aO3}zdXYH>w*adF9vk{P8%B{R!QE6U0%iY&dDm^zrMb{&opLUEOC470?el@u!^ zXAVCJ&U_N0K_xizA3Zp8>BPgc_=MJNP1_pGiQ<${jx*mw@a%|-XA6aQ-rXbr%cgS| zL3O)Ma(Om{4W@aCOb|W1ix_|Pi4%{Q3y~wmWLNm;(kGDJfK4M|ztBsgp2yj!Q>0Pv z0n75>@|C#TXV^rSMy;L_gMrYr%TJ?5YoHO{!Bj0`8Yyb*J|vw9@AcFTB$>&qQEyA- z@_RfrsNQJQdE1V>m#R^hmo>-AikliMn=310l|?1RCDGEN%2;$}X{;%R@9|m=rgHf` zz8ZB7J%21)F2CFJxg`iQXw=?Kd#h3B@NnI!T;6*WmPYOUt9(4WMvXZ(Mzd?xyF6iI zY1Q5s%uaLmFA2SRm#1D$JuHA;?un|u;p}v>{q0_wjL^&LI1_0grCy%ICeq81BbQF2 z+0_R7d_q0Hj}2mjOg4n@&GX5io|iy9f0h*@y9gyjx)H|>IP#&W&%;q-upv;^>m>X< zl=YpS2x(B>0=5>I9MZ=_zY>)RvJ;oSet_Mt^z}mqI|zOKL7}gIgtNV9ULsq0=<7aj zI-|bs-OjDAFScZeCB2s+pjvk0q4DAD%P5gnA|XQ{amZWZtJ^sHA5poThx9yAy8|VJ zh(A&BODeuj1*q*A_7WA)+RuZ+zLQk(2o&$Vq>5LgvWGNqp|I~sDD1oGDpJ^YTME0V zkix!;F85Q|7daGmGo=~AA53*Hm^C)dnkeDYjibFDDaPk^qWb6{}yM9 zIJ+I04>=_ry-RBEA>3g$jshIe?+-wOKM>OAlLo&Xx5Vj%M7|7{8t*fc{ndDLP<%Di z_@`$jBnw|PK8dVKSbz$zpMbD18N$M^PrKE4Z&H&gkPujipZ7*67=Gb|f*VtWg1H|k zp`hiW3k68_k~FiQSE1nOhgm52%B3t6AcxO62?f9UPznXm#-&g&#u5s~<|Gu{aM6T< z1(r|%X{@*Dw^q4?g4GG3013~ePyoq63I*%H#H3I_s~zC|A1a~X$axeB9=U{sf+sh` zZwU`y`s#-Lqwj8S>9o>aQi3gpgU*+OjZY9i(tDKx!NAorA?<*#Y1)9OQy>t0{sfiP z#%pGkp@*;JwocZFHF24pQm$@8Vv;#7`|+m&y0(D8`y!a_cQw0|CXOuNWVQr`= zD{U$+Ybb4s#wtppSn6*q#ydxrIkAAu@@NFU=7$`5KAEkgF~sw^B?#?_43qgWBhPX6 z2)$tfUNu3_yBB4N7zh|5MQ4Agl9!3~{mZ@BMRyMy;Xix9e_x_I3P^e1t%r?4`y5~e zqxzc}`i4q=tynid#zx~wR1Qv`$Cgi5=SV7 z+cIh*&*;@TJ$Fc-4wg0~!;{04r^t7Jay-k-x)i%$H%vH3(eZfd7%c~TPB3LbK^{fA zEJI?_@Zg)gG}0cl6mAcnOS(OH-%Z$3hEsOZWo(oj^m21y%AhGhX!t76k;=4yQ+XyRpg-|hRzD~ik3q{4J# zQ|J0K}Yzf*PR_u$BA^myWsWroZfHzZ=zey3yS49T9 z3=`@V-}_2nuQ8XTK&6YIvfKwM-@qU~9n!m*jy|vSH`cA-f=P;rHgo;@_NF^`w6r&^ z7Yh*4&Zb5QA_r`)^qde9HeyQU1CFrp4KR<*UEjQ;b-i!LOeM3eGH*(GvVHUduJGhx zMo9lHXXGyu(%S~FJE$yn4`Vx?kHyu7@<5}wp?YK zZs{gH8!lViV!Kx|HLlNecUkT7u2BMd-n9tze*(T9`G4bL&r643MD z+whL~YBFX(e^HwvhwLlCEukiNsZ*IthM?7|Iq(hYaZ8}7jk+i}C?NFU6ZGQ!^EU>1@?V0L)3Iy;yP z(OZ2{13sCJk{Z+O}duFQYL&sBOe4l(!wVkBJ(bafjIrD9S5DzT<9@@HmWrq!o4;Y>dJRJCw|-!U{Vy zVTBz+SCJKV2wg>PQ}j)wnlF^!;mgJ9OTG-1!J_4I)UKkID?|kst+Xm@P`OfcQBw<} zsPofhXq|QgZr+Jd-e19hoA*p8?+H48Jd}4BkAOZ>+Sjrld+|(Iar3SX=||``T>a6D z{az@q4Z{oR5aC}1+Hv+e{%OUkI!fuXq;AE9?go`XYJP+=1m%c4(~2*+n8P1hE(}LbL4DEy_%T9#vb4WpXwFY8 zAZnof1?rO|3sN(>ntJuqjI@)^6zh__Wmbx6;2@e$LJfG6_Nr%^_bm0H;y1tjgVdzl zScWYtE2@}TUQsc#tf{G~xx73E@Al@3%F2?4##jUNAuJ%=NKhjwUwd_tBOCpr@NLea z)6H3`LfR|Nrmdz?+itym9d)pUMcK8=&(vwF5l2}HLUY%PSLdLay9rEi77 zekL2aS1>(*m1*(P-NeqCp>sgH96@9KLxM5e)oOqFM`xUU98K}z>?q2R-q(_U^e|_C zE57Q-$(0zt_2=w|qA~y_Sm*0h{2djaqT+EX_EWK$`m4*0r-GYx3wEg;Cw7KKOYI~m zGqFqURpMgAE>WYaYEgTIt^&J61>b;O$_f@OHHaL(iC-?-(ZXVJV0X1_ zt79gD#9~K9huBfku`?sV0nZvu^OZhabRW`dATDCa47?8O%*K4c#aQps@jK=NdsaaQR6#qJ_hUGnab$vq7r|4I>N>3_IDFzioiqncS zinEHPv!i>Ib$?jla{H4x`tC^Mz3AMcd##GKigg~d+jr@mQC*)?MDLx~?+c2HiZMk+ zaY=DmF|Md8t|+c5CKQtjcfOmW`?&w!-T&RJ+YAH{KmY**5I_I{1Q0*~0R#|0009IL zKmY**5I_I{1Q0*~0R#|0009ILKmY**5I_I{1Q0*~0R#|0009ILKmY**5I_I{1Q0*~ zf#3y7!3z`*U^eBFw%HMNf4FY9>}ATCtakkF)fVtPcLI-7&bUckOd(%#U^Ai_%n)r@>8@gUm`50aKNRuo*1m--}{*R@uOIkk0zI>!fmL3An z?1jhbYjJVKz@0>_G79@QZbBXC?_ zE$G*m3I^+6Cx}_dBLoU3Fl?jdzGlHdAUuJa;gw9q2s8v{kU$_gLg8+eG z1?~r1IfWze00IPp6?hnI<-UdQ^nHQ#nHPAJ`3$p?;I6DBLLP|;)Dqk2?>71cGSx#K diff --git a/fonda/cpp_testsuite/varBugs/APACHE/infer-out/results.db-wal b/fonda/cpp_testsuite/varBugs/APACHE/infer-out/results.db-wal deleted file mode 100644 index 1f186d4e0ff8da704e4ed066c611e00956fbab75..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3443192 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

qy8P@cz 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 diff --git a/fonda/cpp_testsuite/varBugs/APACHE/infer-out/tmp/clang_command_.tmp.5962e4.txt b/fonda/cpp_testsuite/varBugs/APACHE/infer-out/tmp/clang_command_.tmp.5962e4.txt deleted file mode 100644 index 6299a6d2..00000000 --- a/fonda/cpp_testsuite/varBugs/APACHE/infer-out/tmp/clang_command_.tmp.5962e4.txt +++ /dev/null @@ -1,11 +0,0 @@ -'-###' -'-c' -'test.c' -'-fno-cxx-modules' -'-Qunused-arguments' -'-Wno-ignored-optimization-argument' -'-fno-addrsig' -'-fembed-bitcode=off' -'-include' -'/usr/local/lib/infer/infer/bin/../lib/clang_wrappers/global_defines.h' -'-Wno-everything' diff --git a/fonda/cpp_testsuite/varBugs/APACHE/infer-out/tmp/clang_command_.tmp.b9e75d.txt b/fonda/cpp_testsuite/varBugs/APACHE/infer-out/tmp/clang_command_.tmp.b9e75d.txt deleted file mode 100644 index a170227a..00000000 --- a/fonda/cpp_testsuite/varBugs/APACHE/infer-out/tmp/clang_command_.tmp.b9e75d.txt +++ /dev/null @@ -1,62 +0,0 @@ -"-cc1" -"-load" -"/usr/local/lib/infer/infer/bin/../../facebook-clang-plugins/libtooling/build/FacebookClangPlugin.dylib" -"-add-plugin" -"BiniouASTExporter" -"-plugin-arg-BiniouASTExporter" -"-" -"-plugin-arg-BiniouASTExporter" -"PREPEND_CURRENT_DIR=1" -"-plugin-arg-BiniouASTExporter" -"MAX_STRING_SIZE=65535" -"-cc1" -"-triple" -"x86_64-unknown-linux-gnu" -"-emit-obj" -"-mrelax-all" -"-disable-free" -"-disable-llvm-verifier" -"-discard-value-names" -"-main-file-name" -"test.c" -"-mrelocation-model" -"static" -"-mframe-pointer=all" -"-fmath-errno" -"-fno-rounding-math" -"-mconstructor-aliases" -"-munwind-tables" -"-target-cpu" -"x86-64" -"-fno-split-dwarf-inlining" -"-debugger-tuning=gdb" -"-resource-dir" -"/usr/local/lib/infer/facebook-clang-plugins/clang/install/lib/clang/11.1.0" -"-include" -"/usr/local/lib/infer/infer/bin/../lib/clang_wrappers/global_defines.h" -"-internal-isystem" -"/usr/local/include" -"-internal-isystem" -"/usr/local/lib/infer/facebook-clang-plugins/clang/install/lib/clang/11.1.0/include" -"-internal-externc-isystem" -"/usr/include/x86_64-linux-gnu" -"-internal-externc-isystem" -"/include" -"-internal-externc-isystem" -"/usr/include" -"-Wno-ignored-optimization-argument" -"-Wno-everything" -"-fdebug-compilation-dir" -"/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE" -"-ferror-limit" -"19" -"-fgnuc-version=4.2.1" -"-o" -"test.o" -"-x" -"c" -"test.c" -"-O0" -"-include" -"/usr/local/lib/infer/infer/bin/../lib/clang_wrappers/global_defines.h" -"-Wno-everything" diff --git a/fonda/cpp_testsuite/varBugs/APACHE/test.c b/fonda/cpp_testsuite/varBugs/APACHE/test.c new file mode 100644 index 00000000..290107b6 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/test.c @@ -0,0 +1,15 @@ +#ifndef XX +#define XX +#ifndef YY +#define YY +#ifdef ZZ +int z; +#endif +#endif +#endif + + +int main() { + z += 3; + return 0; +} diff --git a/fonda/cpp_testsuite/varBugs/APACHE/test.clangres b/fonda/cpp_testsuite/varBugs/APACHE/test.clangres new file mode 100644 index 00000000..974e4dbd --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/test.clangres @@ -0,0 +1,4 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/test.c:13:3: error: use of undeclared identifier 'z' + z += 3; + ^ +1 error generated. diff --git a/fonda/cpp_testsuite/varBugs/APACHE/test.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/test.desugared.c new file mode 100644 index 00000000..b14430d1 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/test.desugared.c @@ -0,0 +1,32 @@ +#include + +extern void __static_parse_error(char *msg); +extern void __static_type_error(char *msg); +extern void __static_renaming(char *renaming, char *original); +extern void __static_condition_renaming(char *expression, char *renaming); + +void __static_initializer_default(); + +void __static_initializer_default() { +__static_renaming("__z_0", "z"); +__static_renaming("__main_1", "main"); + + +}; + +int __z_0;// L6 +int (__main_1) () { + +{ +{ + + + + __z_0 += 3 ; // L13 +return 0 ;// L14 +} +} + + +} + diff --git a/fonda/cpp_testsuite/varBugs/APACHE/test.desugared.clangres b/fonda/cpp_testsuite/varBugs/APACHE/test.desugared.clangres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/APACHE/test.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/test.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/test.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/test.inferres b/fonda/cpp_testsuite/varBugs/APACHE/test.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX-0301ffab3d9.report b/fonda/cpp_testsuite/varBugs/BUSYBOX-0301ffab3d9.report new file mode 100644 index 00000000..d23a8c41 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX-0301ffab3d9.report @@ -0,0 +1,6 @@ +BUSYBOX 0301ffab3d9.c +Macros: + EXT2FS_ENABLE_SWAPFS +[-UEXT2FS_ENABLE_SWAPFS ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX-061fd0a353e.report b/fonda/cpp_testsuite/varBugs/BUSYBOX-061fd0a353e.report new file mode 100644 index 00000000..1492eda4 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX-061fd0a353e.report @@ -0,0 +1,21 @@ +BUSYBOX 061fd0a353e.c +Macros: + CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF + CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF +[-UCONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF -UCONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF ] +61 :: Line:16 + Value stored to 'p' is never read [deadcode.DeadStores] +[-DCONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF=1 -UCONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF ] +[-UCONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF -DCONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF=1 ] +62 :: Line:16 + Value stored to 'p' is never read [deadcode.DeadStores] +63 :: Line:27 + Branch condition evaluates to a garbage value [core.uninitialized.Branch] +[-DCONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF=1 -DCONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF=1 ] +64 :: Line:16 + Value stored to 'p' is never read [deadcode.DeadStores] +65 :: Line:20 + Branch condition evaluates to a garbage value [core.uninitialized.Branch] +66 :: Line:27 + Branch condition evaluates to a garbage value [core.uninitialized.Branch] +File Failed diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX-192c35f6eb2.report b/fonda/cpp_testsuite/varBugs/BUSYBOX-192c35f6eb2.report new file mode 100644 index 00000000..4477a804 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX-192c35f6eb2.report @@ -0,0 +1,6 @@ +BUSYBOX 192c35f6eb2.c +Macros: + CONFIG_FEATURE_REMOTE_LOG +[-UCONFIG_FEATURE_REMOTE_LOG ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX-199501f2a00.report b/fonda/cpp_testsuite/varBugs/BUSYBOX-199501f2a00.report new file mode 100644 index 00000000..e8888f77 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX-199501f2a00.report @@ -0,0 +1,17 @@ +BUSYBOX 199501f2a00.c +Macros: + ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS +[-UENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS ] +94 :: Line:21 + Null pointer passed to 2nd parameter expecting 'nonnull' [core.NonNullParamChecker] +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.c:1543:2: warning: Value stored to '__dt_1258' is never read [deadcode.DeadStores] + __dt_1258 = "-i" ; // L10 + ^ ~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.c:1557:2: warning: Value stored to '__dt_1258' is never read [deadcode.DeadStores] + __dt_1258 = "-i" ; // L10 + ^ ~~~~ +2 warnings generated. +Matches: +Unmatched ids: + 94 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX-1b487ea8a69.report b/fonda/cpp_testsuite/varBugs/BUSYBOX-1b487ea8a69.report new file mode 100644 index 00000000..4dd763ee --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX-1b487ea8a69.report @@ -0,0 +1,22 @@ +BUSYBOX 1b487ea8a69.c +Macros: + ENABLE_SELINUX + ENABLE_FEATURE_STAT_FORMAT +[-UENABLE_SELINUX -UENABLE_FEATURE_STAT_FORMAT ] +[-DENABLE_SELINUX=1 -UENABLE_FEATURE_STAT_FORMAT ] +54 :: Line:14 + Dereference of null pointer (loaded from variable 'scontext') [core.NullDereference] +[-UENABLE_SELINUX -DENABLE_FEATURE_STAT_FORMAT=1 ] +[-DENABLE_SELINUX=1 -DENABLE_FEATURE_STAT_FORMAT=1 ] +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.c:2937:26: warning: Dereference of null pointer (loaded from variable '__scontext_2038') [core.NullDereference] + __printf_421 (" %lc\n",* __scontext_2038 ) ; // L14 + ^~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.c:2994:26: warning: Dereference of null pointer (loaded from variable '__scontext_2038') [core.NullDereference] + __printf_421 (" %lc\n",* __scontext_2038 ) ; // L14 + ^~~~~~~~~~~~~~~~~~ +2 warnings generated. +Matches: + 54 has a match! +Unmatched ids: + None! diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX-2631486f1bf.report b/fonda/cpp_testsuite/varBugs/BUSYBOX-2631486f1bf.report new file mode 100644 index 00000000..9ce3a705 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX-2631486f1bf.report @@ -0,0 +1,42 @@ +BUSYBOX 2631486f1bf.c +Macros: + CONFIG_FEATURE_LS_RECURSIVE + CONFIG_FEATURE_LS_SORTFILES +[-UCONFIG_FEATURE_LS_RECURSIVE -UCONFIG_FEATURE_LS_SORTFILES ] +69 :: Line:67 + Assigned value is garbage or undefined [core.uninitialized.Assign] +[-DCONFIG_FEATURE_LS_RECURSIVE=1 -UCONFIG_FEATURE_LS_SORTFILES ] +70 :: Line:67 + Assigned value is garbage or undefined [core.uninitialized.Assign] +[-UCONFIG_FEATURE_LS_RECURSIVE -DCONFIG_FEATURE_LS_SORTFILES=1 ] +71 :: Line:67 + Assigned value is garbage or undefined [core.uninitialized.Assign] +[-DCONFIG_FEATURE_LS_RECURSIVE=1 -DCONFIG_FEATURE_LS_SORTFILES=1 ] +72 :: Line:67 + Assigned value is garbage or undefined [core.uninitialized.Assign] +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1250:42: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_963', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_986)' [unix.MallocSizeof] + __curr_979 = ( struct __dnode_963 * ) malloc (sizeof(typeof(__sizeofStandin_986))) ; // L65 + ~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1253:42: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_963', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_986)' [unix.MallocSizeof] + __curr_979 = ( struct __dnode_963 * ) malloc (sizeof(typeof(__sizeofStandin_986))) ; // L65 + ~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1256:27: warning: Dereference of undefined pointer value [core.NullDereference] + __curr_979 -> __val_964 = rand( ) % 10 ; // L66 + ~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1259:27: warning: Dereference of undefined pointer value [core.NullDereference] + __curr_979 -> __val_964 = rand( ) % 10 ; // L66 + ~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1261:28: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] + __curr_979 -> __next_965 = __head_980 ; // L67 + ^ ~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1261:28: warning: Dereference of undefined pointer value [core.NullDereference] + __curr_979 -> __next_965 = __head_980 ; // L67 + ~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~ +6 warnings generated. +Matches: +Unmatched ids: + 69 + 70 + 71 + 72 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX-5275b1e49f6.report b/fonda/cpp_testsuite/varBugs/BUSYBOX-5275b1e49f6.report new file mode 100644 index 00000000..88935232 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX-5275b1e49f6.report @@ -0,0 +1,49 @@ +BUSYBOX 5275b1e49f6.c +Macros: + CONFIG_FEATURE_INSMOD_VERSION_CHECKING +[-UCONFIG_FEATURE_INSMOD_VERSION_CHECKING ] +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1135:2: warning: Value stored to '__m_has_modinfo_967' is never read [deadcode.DeadStores] + __m_has_modinfo_967 = 0 ; // L16 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1141:2: warning: Value stored to '__m_has_modinfo_967' is never read [deadcode.DeadStores] + __m_has_modinfo_967 = 1 ; // L18 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1149:2: warning: Value stored to '__m_has_modinfo_967' is never read [deadcode.DeadStores] + __m_has_modinfo_967 = 0 ; // L16 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1155:2: warning: Value stored to '__m_has_modinfo_967' is never read [deadcode.DeadStores] + __m_has_modinfo_967 = 1 ; // L18 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1159:2: warning: Value stored to '__k_crcs_970' is never read [deadcode.DeadStores] + __k_crcs_970 = 0 ; // L21 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1170:2: warning: Value stored to '__k_crcs_970' is never read [deadcode.DeadStores] + __k_crcs_970 = __someInt_969 ; // L25 + ^ ~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1204:2: warning: Value stored to '__k_crcs_970' is never read [deadcode.DeadStores] + __k_crcs_970 = __someInt_969 ; // L25 + ^ ~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1265:2: warning: Value stored to '__m_has_modinfo_967' is never read [deadcode.DeadStores] + __m_has_modinfo_967 = 0 ; // L16 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1271:2: warning: Value stored to '__m_has_modinfo_967' is never read [deadcode.DeadStores] + __m_has_modinfo_967 = 1 ; // L18 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1279:2: warning: Value stored to '__m_has_modinfo_967' is never read [deadcode.DeadStores] + __m_has_modinfo_967 = 0 ; // L16 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1285:2: warning: Value stored to '__m_has_modinfo_967' is never read [deadcode.DeadStores] + __m_has_modinfo_967 = 1 ; // L18 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1289:2: warning: Value stored to '__k_crcs_970' is never read [deadcode.DeadStores] + __k_crcs_970 = 0 ; // L21 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1300:2: warning: Value stored to '__k_crcs_970' is never read [deadcode.DeadStores] + __k_crcs_970 = __someInt_969 ; // L25 + ^ ~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1334:2: warning: Value stored to '__k_crcs_970' is never read [deadcode.DeadStores] + __k_crcs_970 = __someInt_969 ; // L25 + ^ ~~~~~~~~~~~~~ +14 warnings generated. +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX-5cd6461b6fb.report b/fonda/cpp_testsuite/varBugs/BUSYBOX-5cd6461b6fb.report new file mode 100644 index 00000000..8e4e3d2a --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX-5cd6461b6fb.report @@ -0,0 +1,16 @@ +BUSYBOX 5cd6461b6fb.c +Macros: + CONFIG_FEATURE_HTTPD_CGI + CONFIG_LFS + CONFIG_FEATURE_HTTPD_BASIC_AUTH +[-UCONFIG_FEATURE_HTTPD_CGI -UCONFIG_LFS -UCONFIG_FEATURE_HTTPD_BASIC_AUTH ] +[-DCONFIG_FEATURE_HTTPD_CGI=1 -UCONFIG_LFS -UCONFIG_FEATURE_HTTPD_BASIC_AUTH ] +[-UCONFIG_FEATURE_HTTPD_CGI -DCONFIG_LFS=1 -UCONFIG_FEATURE_HTTPD_BASIC_AUTH ] +[-DCONFIG_FEATURE_HTTPD_CGI=1 -DCONFIG_LFS=1 -UCONFIG_FEATURE_HTTPD_BASIC_AUTH ] +[-UCONFIG_FEATURE_HTTPD_CGI -UCONFIG_LFS -DCONFIG_FEATURE_HTTPD_BASIC_AUTH=1 ] +[-DCONFIG_FEATURE_HTTPD_CGI=1 -UCONFIG_LFS -DCONFIG_FEATURE_HTTPD_BASIC_AUTH=1 ] +[-UCONFIG_FEATURE_HTTPD_CGI -DCONFIG_LFS=1 -DCONFIG_FEATURE_HTTPD_BASIC_AUTH=1 ] +[-DCONFIG_FEATURE_HTTPD_CGI=1 -DCONFIG_LFS=1 -DCONFIG_FEATURE_HTTPD_BASIC_AUTH=1 ] +[-UCONFIG_FEATURE_HTTPD_CGI -UCONFIG_LFS -UCONFIG_FEATURE_HTTPD_BASIC_AUTH ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX-95755181b82.report b/fonda/cpp_testsuite/varBugs/BUSYBOX-95755181b82.report new file mode 100644 index 00000000..27c7b7ed --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX-95755181b82.report @@ -0,0 +1,15 @@ +BUSYBOX 95755181b82.c +Macros: + ENABLE_FEATURE_HTTPD_GZIP + ENABLE_FEATURE_HTTPD_BASIC_AUTH + BB_MMU +[-UENABLE_FEATURE_HTTPD_GZIP -UENABLE_FEATURE_HTTPD_BASIC_AUTH -UBB_MMU ] +[-DENABLE_FEATURE_HTTPD_GZIP=1 -UENABLE_FEATURE_HTTPD_BASIC_AUTH -UBB_MMU ] +[-UENABLE_FEATURE_HTTPD_GZIP -DENABLE_FEATURE_HTTPD_BASIC_AUTH=1 -UBB_MMU ] +[-DENABLE_FEATURE_HTTPD_GZIP=1 -DENABLE_FEATURE_HTTPD_BASIC_AUTH=1 -UBB_MMU ] +[-UENABLE_FEATURE_HTTPD_GZIP -UENABLE_FEATURE_HTTPD_BASIC_AUTH -DBB_MMU=1 ] +[-DENABLE_FEATURE_HTTPD_GZIP=1 -UENABLE_FEATURE_HTTPD_BASIC_AUTH -DBB_MMU=1 ] +[-UENABLE_FEATURE_HTTPD_GZIP -DENABLE_FEATURE_HTTPD_BASIC_AUTH=1 -DBB_MMU=1 ] +[-DENABLE_FEATURE_HTTPD_GZIP=1 -DENABLE_FEATURE_HTTPD_BASIC_AUTH=1 -DBB_MMU=1 ] +[-UENABLE_FEATURE_HTTPD_GZIP -UENABLE_FEATURE_HTTPD_BASIC_AUTH -UBB_MMU ] +File Failed diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX-b273d665181.report b/fonda/cpp_testsuite/varBugs/BUSYBOX-b273d665181.report new file mode 100644 index 00000000..0612e022 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX-b273d665181.report @@ -0,0 +1,31 @@ +BUSYBOX b273d665181.c +Macros: + BB_FEATURE_LS_FILETYPES + BB_FEATURE_LS_USERNAME +[-UBB_FEATURE_LS_FILETYPES -UBB_FEATURE_LS_USERNAME ] +[-DBB_FEATURE_LS_FILETYPES=1 -UBB_FEATURE_LS_USERNAME ] +57 :: Line:16 + 2nd function call argument is an uninitialized value [core.CallAndMessage] +[-UBB_FEATURE_LS_FILETYPES -DBB_FEATURE_LS_USERNAME=1 ] +[-DBB_FEATURE_LS_FILETYPES=1 -DBB_FEATURE_LS_USERNAME=1 ] +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.c:2936:2: warning: 2nd function call argument is an uninitialized value [core.CallAndMessage] + __printf_421 ("%d", __info_2036 ) ; // L16 + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.c:2947:2: warning: 2nd function call argument is an uninitialized value [core.CallAndMessage] + __printf_421 ("%d", __info_2036 ) ; // L16 + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.c:3007:2: warning: 2nd function call argument is an uninitialized value [core.CallAndMessage] + __printf_421 ("%d", __info_2036 ) ; // L16 + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.c:3018:2: warning: 2nd function call argument is an uninitialized value [core.CallAndMessage] + __printf_421 ("%d", __info_2036 ) ; // L16 + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.c:3072:2: warning: Value stored to '__info_2036' is never read [deadcode.DeadStores] + __info_2036 = 0 ; // L11 + ^ ~ +5 warnings generated. +Matches: + 57 has a match! +Unmatched ids: + None! diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX-b62bd7b261b.report b/fonda/cpp_testsuite/varBugs/BUSYBOX-b62bd7b261b.report new file mode 100644 index 00000000..e137c5c6 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX-b62bd7b261b.report @@ -0,0 +1,66 @@ +BUSYBOX b62bd7b261b.c +Macros: + ENABLE_FEATURE_MDEV_CONF + ENABLE_FEATURE_MDEV_RENAME + ENABLE_FEATURE_MDEV_RENAME_REGEXP +[-UENABLE_FEATURE_MDEV_CONF -UENABLE_FEATURE_MDEV_RENAME -UENABLE_FEATURE_MDEV_RENAME_REGEXP ] +[-DENABLE_FEATURE_MDEV_CONF=1 -UENABLE_FEATURE_MDEV_RENAME -UENABLE_FEATURE_MDEV_RENAME_REGEXP ] +[-UENABLE_FEATURE_MDEV_CONF -DENABLE_FEATURE_MDEV_RENAME=1 -UENABLE_FEATURE_MDEV_RENAME_REGEXP ] +[-DENABLE_FEATURE_MDEV_CONF=1 -DENABLE_FEATURE_MDEV_RENAME=1 -UENABLE_FEATURE_MDEV_RENAME_REGEXP ] +80 :: Line:14 + Value stored to 'a' during its initialization is never read [deadcode.DeadStores] +81 :: Line:16 + Value stored to 'val' is never read [deadcode.DeadStores] +[-UENABLE_FEATURE_MDEV_CONF -UENABLE_FEATURE_MDEV_RENAME -DENABLE_FEATURE_MDEV_RENAME_REGEXP=1 ] +[-DENABLE_FEATURE_MDEV_CONF=1 -UENABLE_FEATURE_MDEV_RENAME -DENABLE_FEATURE_MDEV_RENAME_REGEXP=1 ] +[-UENABLE_FEATURE_MDEV_CONF -DENABLE_FEATURE_MDEV_RENAME=1 -DENABLE_FEATURE_MDEV_RENAME_REGEXP=1 ] +[-DENABLE_FEATURE_MDEV_CONF=1 -DENABLE_FEATURE_MDEV_RENAME=1 -DENABLE_FEATURE_MDEV_RENAME_REGEXP=1 ] +82 :: Line:16 + Value stored to 'val' is never read [deadcode.DeadStores] +83 :: Line:24 + Dereference of undefined pointer value [core.NullDereference] +[-UENABLE_FEATURE_MDEV_CONF -UENABLE_FEATURE_MDEV_RENAME -UENABLE_FEATURE_MDEV_RENAME_REGEXP ] +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1451:1: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] +char * (__a_1261)= __val_1258 ;// L14 +^~~~~~~~~~~~~~~~~ ~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1451:10: warning: Value stored to '__a_1261' during its initialization is never read [deadcode.DeadStores] +char * (__a_1261)= __val_1258 ;// L14 + ^~~~~~~~ ~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1457:2: warning: Value stored to '__val_1258' is never read [deadcode.DeadStores] + __val_1258 = ( __s_1259 && __s_1259 [ 1 ] ) ? __s_1259 + 1 : ( ( void * ) 0 ) ; // L16:L395 + ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1457:19: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] + __val_1258 = ( __s_1259 && __s_1259 [ 1 ] ) ? __s_1259 + 1 : ( ( void * ) 0 ) ; // L16:L395 + ^~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1482:2: warning: Value stored to '__val_1258' is never read [deadcode.DeadStores] + __val_1258 = ( __s_1259 && __s_1259 [ 1 ] ) ? __s_1259 + 1 : ( ( void * ) 0 ) ; // L16:L395 + ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1494:14: warning: Dereference of undefined pointer value [core.NullDereference] +* __p_1260 = * __s_1259 ; // L24 +~~~~~~~~~~~~~^~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1556:1: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] +char * (__a_1261)= __val_1258 ;// L14 +^~~~~~~~~~~~~~~~~ ~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1556:10: warning: Value stored to '__a_1261' during its initialization is never read [deadcode.DeadStores] +char * (__a_1261)= __val_1258 ;// L14 + ^~~~~~~~ ~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1562:2: warning: Value stored to '__val_1258' is never read [deadcode.DeadStores] + __val_1258 = ( __s_1259 && __s_1259 [ 1 ] ) ? __s_1259 + 1 : ( ( void * ) 0 ) ; // L16:L395 + ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1562:19: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] + __val_1258 = ( __s_1259 && __s_1259 [ 1 ] ) ? __s_1259 + 1 : ( ( void * ) 0 ) ; // L16:L395 + ^~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1587:2: warning: Value stored to '__val_1258' is never read [deadcode.DeadStores] + __val_1258 = ( __s_1259 && __s_1259 [ 1 ] ) ? __s_1259 + 1 : ( ( void * ) 0 ) ; // L16:L395 + ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1599:14: warning: Dereference of undefined pointer value [core.NullDereference] +* __p_1260 = * __s_1259 ; // L24 +~~~~~~~~~~~~~^~~~~~~~~~~~~ +12 warnings generated. +Matches: + 80 has a match! + 81 has a match! + 82 has a match! +Unmatched ids: + 83 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX-b7ebc61b54f.report b/fonda/cpp_testsuite/varBugs/BUSYBOX-b7ebc61b54f.report new file mode 100644 index 00000000..a06e7128 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX-b7ebc61b54f.report @@ -0,0 +1,6 @@ +BUSYBOX b7ebc61b54f.c +Macros: + CONFIG_FEATURE_LS_TIMESTAMPS +[-UCONFIG_FEATURE_LS_TIMESTAMPS ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX-bc0ffc0e971.report b/fonda/cpp_testsuite/varBugs/BUSYBOX-bc0ffc0e971.report new file mode 100644 index 00000000..16fa647b --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX-bc0ffc0e971.report @@ -0,0 +1,47 @@ +BUSYBOX bc0ffc0e971.c +Macros: + ENABLE_FEATURE_CLEAN_UP +[-UENABLE_FEATURE_CLEAN_UP ] +75 :: Line:46 + Potential leak of memory pointed to by 'clist' [unix.Malloc] +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2257:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_1823', which is incompatible with sizeof operand type 'struct (anonymous struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2238:1)' [unix.MallocSizeof] + __ch_1848 = malloc (sizeof(__sizeofStandin_1852)) ; // L29 + ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2260:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_1823', which is incompatible with sizeof operand type 'struct (anonymous struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2238:1)' [unix.MallocSizeof] + __ch_1848 = malloc (sizeof(__sizeofStandin_1852)) ; // L29 + ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2262:30: warning: Dereference of undefined pointer value [core.NullDereference] + __ch_1848 -> __ifname_1822 = __ifname_1847 ; // L30 + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2262:33: warning: Potential leak of memory pointed to by '__ch_1848' [unix.Malloc] + __ch_1848 -> __ifname_1822 = __ifname_1847 ; // L30 + ^~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2297:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_1824', which is incompatible with sizeof operand type 'struct (anonymous struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2279:1)' [unix.MallocSizeof] + __ch_1849 = malloc (sizeof(__sizeofStandin_1855)) ; // L29 + ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2300:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_1824', which is incompatible with sizeof operand type 'struct (anonymous struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2279:1)' [unix.MallocSizeof] + __ch_1849 = malloc (sizeof(__sizeofStandin_1855)) ; // L29 + ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2302:30: warning: Dereference of undefined pointer value [core.NullDereference] + __ch_1849 -> __ifname_1822 = __ifname_1847 ; // L30 + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2302:33: warning: Potential leak of memory pointed to by '__ch_1849' [unix.Malloc] + __ch_1849 -> __ifname_1822 = __ifname_1847 ; // L30 + ^~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2333:39: warning: Potential leak of memory pointed to by '__ch_1872' [unix.Malloc] +for ( __ch_1872 = __clist_1870 ; __ch_1872 ; __ch_1872 = __ch_1872 -> __next_1821 )// L43 + ^~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2338:5: warning: Potential leak of memory pointed to by '__clist_1870' [unix.Malloc] +if (__static_condition_default_1876) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2339:39: warning: Potential leak of memory pointed to by '__ch_1873' [unix.Malloc] +for ( __ch_1873 = __clist_1871 ; __ch_1873 ; __ch_1873 = __ch_1873 -> __next_1821 )// L43 + ^~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2344:5: warning: Potential leak of memory pointed to by '__clist_1871' [unix.Malloc] +if (__static_condition_default_1877) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +12 warnings generated. +Matches: +Unmatched ids: + 75 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX-cc3f20b9bdf.report b/fonda/cpp_testsuite/varBugs/BUSYBOX-cc3f20b9bdf.report new file mode 100644 index 00000000..3053fbbb --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX-cc3f20b9bdf.report @@ -0,0 +1,4 @@ +BUSYBOX cc3f20b9bdf.c +Macros: +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX-cf1f2ace391.report b/fonda/cpp_testsuite/varBugs/BUSYBOX-cf1f2ace391.report new file mode 100644 index 00000000..75b2ca80 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX-cf1f2ace391.report @@ -0,0 +1,6 @@ +BUSYBOX cf1f2ace391.c +Macros: + ENABLE_DEBUG_INIT +[-UENABLE_DEBUG_INIT ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX-df7b6577c6a.report b/fonda/cpp_testsuite/varBugs/BUSYBOX-df7b6577c6a.report new file mode 100644 index 00000000..f0700e65 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX-df7b6577c6a.report @@ -0,0 +1,6 @@ +BUSYBOX df7b6577c6a.c +Macros: + ENABLE_DESKTOP +[-UENABLE_DESKTOP ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX-ebee301c8b0.report b/fonda/cpp_testsuite/varBugs/BUSYBOX-ebee301c8b0.report new file mode 100644 index 00000000..809d00e1 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX-ebee301c8b0.report @@ -0,0 +1,13 @@ +BUSYBOX ebee301c8b0.c +Macros: + defined +[-Udefined ] +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.c:2920:2: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] + __copySubFile_2038 ( __src_2042 , __dst_2043 ) ; // L18 + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.c:2920:2: warning: 2nd function call argument is an uninitialized value [core.CallAndMessage] + __copySubFile_2038 ( __src_2042 , __dst_2043 ) ; // L18 + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +2 warnings generated. +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX-eef2317b9f5.report b/fonda/cpp_testsuite/varBugs/BUSYBOX-eef2317b9f5.report new file mode 100644 index 00000000..e3bc3e56 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX-eef2317b9f5.report @@ -0,0 +1,9 @@ +BUSYBOX eef2317b9f5.c +Macros: + CONFIG_FEATURE_CLEAN_UP +[-UCONFIG_FEATURE_CLEAN_UP ] +67 :: Line:26 + Value stored to 'buf' is never read [deadcode.DeadStores] +68 :: Line:34 + Potential leak of memory pointed to by 'buf' [unix.Malloc] +File Failed diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.desugared.c index 77a03ca5..a438511f 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.desugared.c @@ -7,39 +7,16 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_4; -extern const bool __static_condition_default_3; void __static_initializer_default() { __static_renaming("__gdp_0", "gdp"); -__static_renaming("__j_1", "j"); -__static_renaming("__ext2fs_open2_2", "ext2fs_open2"); -__static_renaming("__ext2fs_open_5", "ext2fs_open"); -__static_renaming("__main_8", "main"); +__static_renaming("__ext2fs_open2_1", "ext2fs_open2"); +__static_renaming("__ext2fs_open_2", "ext2fs_open"); +__static_renaming("__main_5", "main"); -__static_condition_renaming("__static_condition_default_3", "!(defined EXT2FS_ENABLE_SWAPFS)"); -__static_condition_renaming("__static_condition_default_4", "(defined EXT2FS_ENABLE_SWAPFS)"); }; -void (__ext2fs_open2_2) (void ) { - -{ -if (__static_condition_default_3) { - -{ -{ - - - -char * (__gdp_0);// L4 - -} -} - - -} - -if (__static_condition_default_4) { +void (__ext2fs_open2_1) (void ) { { { @@ -48,49 +25,32 @@ if (__static_condition_default_4) { char * (__gdp_0);// L4 - __gdp_0 = "group_desc" ; // L7 -{ int __j_1= 0;// L8 - for ( ; __j_1 < 10 ; __j_1 ++ ) // L8 -{ - -{ -{ - - - -__static_type_error("type error : no valid expression"); // L10 -} -} -} -} } } } - -}} -void (__ext2fs_open_5) (void ) { +void (__ext2fs_open_2) (void ) { { { - __ext2fs_open2_2 ( ) ; // L17 + __ext2fs_open2_1 ( ) ; // L17 } } } -int (__main_8) (int __argc_6, char * (* (__argv_7))) { +int (__main_5) (int __argc_3, char * (* (__argv_4))) { { { - __ext2fs_open_5 ( ) ; // L22 + __ext2fs_open_2 ( ) ; // L22 return 0 ;// L23 } } diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.desugared.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.desugared.clangres index 91e72a3b..e69de29b 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.desugared.clangres @@ -1,4 +0,0 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.desugared.c:51:2: warning: Value stored to '__gdp_0' is never read [deadcode.DeadStores] - __gdp_0 = "group_desc" ; // L7 - ^ ~~~~~~~~~~~~ -1 warning generated. diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.desugared.inferres index 21371a43..11be972e 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.desugared.inferres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.desugared.inferres @@ -1,14 +1,2 @@ -BUSYBOX/0301ffab3d9.desugared.c:51: error: Dead Store - The value written to &__gdp_0 (type char*) is never used. - 49. char * (__gdp_0);// L4 - 50. - 51. __gdp_0 = "group_desc" ; // L7 - ^ - 52. { int __j_1= 0;// L8 - 53. for ( ; __j_1 < 10 ; __j_1 ++ ) // L8 - - -Found 1 issue - Issue Type(ISSUED_TYPE_ID): # - Dead Store(DEAD_STORE): 1 + No issues found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.clangres index ab6ee38c..665ffe5e 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.clangres @@ -1,4 +1,10 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.c:21:14: error: use of undeclared label 'expected_hwif_error' - goto expected_hwif_error; //ERROR - ^ -1 error generated. +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.c:16:9: warning: Value stored to 'p' is never read [deadcode.DeadStores] + p = *argv++, --argc; + ^ ~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.c:20:10: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] + if(!p) + ^~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.c:27:10: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] + if(!p) + ^~ +3 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.c index b547ba83..e69de29b 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.c @@ -1,3405 +0,0 @@ -#include - -extern void __static_parse_error(char *msg); -extern void __static_type_error(char *msg); -extern void __static_renaming(char *renaming, char *original); -extern void __static_condition_renaming(char *expression, char *renaming); - -void __static_initializer_default(); - -extern const bool __static_condition_default_402; -extern const bool __static_condition_default_1754; -extern const bool __static_condition_default_1164; -extern const bool __static_condition_default_1152; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_1402; -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_2059; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_1475; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_2068; -extern const bool __static_condition_default_549; -extern const bool __static_condition_default_2055; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_1388; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_2050; -extern const bool __static_condition_default_1428; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_1814; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_2076; -extern const bool __static_condition_default_780; -extern const bool __static_condition_default_787; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_1341; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_412; -extern const bool __static_condition_default_789; -extern const bool __static_condition_default_1773; -extern const bool __static_condition_default_755; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_317; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_2064; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_357; -extern const bool __static_condition_default_2039; -extern const bool __static_condition_default_955; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_2057; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_701; -extern const bool __static_condition_default_646; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_1165; -extern const bool __static_condition_default_419; -extern const bool __static_condition_default_685; -extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_891; -extern const bool __static_condition_default_914; -extern const bool __static_condition_default_2047; -extern const bool __static_condition_default_2075; -extern const bool __static_condition_default_315; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_1564; -extern const bool __static_condition_default_1785; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_2048; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_1458; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_521; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_1365; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_2065; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_1556; -extern const bool __static_condition_default_1436; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_53; -extern const bool __static_condition_default_408; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_1576; -extern const bool __static_condition_default_1787; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_761; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_1810; -extern const bool __static_condition_default_1944; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_1416; -extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_583; -extern const bool __static_condition_default_2051; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_187; -extern const bool __static_condition_default_2069; -extern const bool __static_condition_default_803; -extern const bool __static_condition_default_2074; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_645; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_1531; -extern const bool __static_condition_default_388; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_559; -extern const bool __static_condition_default_1568; -extern const bool __static_condition_default_1753; -extern const bool __static_condition_default_2045; -extern const bool __static_condition_default_1345; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_386; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_1349; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_1453; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_1816; -extern const bool __static_condition_default_1385; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_2067; -extern const bool __static_condition_default_2073; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_1381; -extern const bool __static_condition_default_2052; -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_613; -extern const bool __static_condition_default_1377; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_2080; -extern const bool __static_condition_default_461; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_2063; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_1532; -extern const bool __static_condition_default_747; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_769; -extern const bool __static_condition_default_2056; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_1750; -extern const bool __static_condition_default_2058; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_1485; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_957; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_1515; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_1789; -extern const bool __static_condition_default_702; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_1791; -extern const bool __static_condition_default_872; -extern const bool __static_condition_default_1489; -extern const bool __static_condition_default_1373; -extern const bool __static_condition_default_564; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_1405; -extern const bool __static_condition_default_488; -extern const bool __static_condition_default_1432; -extern const bool __static_condition_default_1808; -extern const bool __static_condition_default_1560; -extern const bool __static_condition_default_1409; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_367; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_907; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_929; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_2071; -extern const bool __static_condition_default_638; -extern const bool __static_condition_default_2079; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_842; -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_2060; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_887; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_1516; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_347; -extern const bool __static_condition_default_2062; -extern const bool __static_condition_default_313; -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_1775; -extern const bool __static_condition_default_198; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_76; -extern const bool __static_condition_default_217; -extern const bool __static_condition_default_2072; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_2046; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_248; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_380; -extern const bool __static_condition_default_848; -extern const bool __static_condition_default_2077; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_858; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_753; -extern const bool __static_condition_default_846; -extern const bool __static_condition_default_438; -extern const bool __static_condition_default_1353; -extern const bool __static_condition_default_1357; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_1369; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_894; -extern const bool __static_condition_default_590; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_382; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_2053; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_693; -extern const bool __static_condition_default_956; -extern const bool __static_condition_default_2078; -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_677; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_1315; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_2066; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_875; -extern const bool __static_condition_default_1459; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_670; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_311; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_2054; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_1572; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_568; -extern const bool __static_condition_default_1361; -extern const bool __static_condition_default_393; -extern const bool __static_condition_default_793; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_1498; -extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_2049; -extern const bool __static_condition_default_1774; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_512; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_1776; -extern const bool __static_condition_default_2070; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_431; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_1552; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_963; -extern const bool __static_condition_default_709; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_333; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_1159; -extern const bool __static_condition_default_1395; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_543; -extern const bool __static_condition_default_1391; -extern const bool __static_condition_default_779; -extern const bool __static_condition_default_1398; -extern const bool __static_condition_default_1420; -extern const bool __static_condition_default_290; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_536; -extern const bool __static_condition_default_632; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_1424; -extern const bool __static_condition_default_1749; -extern const bool __static_condition_default_204; -extern const bool __static_condition_default_2061; -void __static_initializer_default() { -__static_renaming("__ptrdiff_t_0", "ptrdiff_t"); -__static_renaming("__size_t_1", "size_t"); -__static_renaming("____u_char_2", "__u_char"); -__static_renaming("____u_short_3", "__u_short"); -__static_renaming("____u_int_4", "__u_int"); -__static_renaming("____u_long_5", "__u_long"); -__static_renaming("____int8_t_6", "__int8_t"); -__static_renaming("____uint8_t_7", "__uint8_t"); -__static_renaming("____int16_t_8", "__int16_t"); -__static_renaming("____uint16_t_9", "__uint16_t"); -__static_renaming("____int32_t_10", "__int32_t"); -__static_renaming("____uint32_t_11", "__uint32_t"); -__static_renaming("____int64_t_12", "__int64_t"); -__static_renaming("____uint64_t_13", "__uint64_t"); -__static_renaming("____quad_t_14", "__quad_t"); -__static_renaming("____u_quad_t_15", "__u_quad_t"); -__static_renaming("____dev_t_16", "__dev_t"); -__static_renaming("____uid_t_17", "__uid_t"); -__static_renaming("____gid_t_18", "__gid_t"); -__static_renaming("____ino_t_19", "__ino_t"); -__static_renaming("____ino64_t_20", "__ino64_t"); -__static_renaming("____mode_t_21", "__mode_t"); -__static_renaming("____nlink_t_22", "__nlink_t"); -__static_renaming("____off_t_23", "__off_t"); -__static_renaming("____off64_t_24", "__off64_t"); -__static_renaming("____pid_t_25", "__pid_t"); -__static_renaming("____fsid_t_29", "__fsid_t"); -__static_renaming("____clock_t_30", "__clock_t"); -__static_renaming("____rlim_t_31", "__rlim_t"); -__static_renaming("____rlim64_t_32", "__rlim64_t"); -__static_renaming("____id_t_33", "__id_t"); -__static_renaming("____time_t_34", "__time_t"); -__static_renaming("____useconds_t_35", "__useconds_t"); -__static_renaming("____suseconds_t_36", "__suseconds_t"); -__static_renaming("____daddr_t_37", "__daddr_t"); -__static_renaming("____key_t_38", "__key_t"); -__static_renaming("____clockid_t_39", "__clockid_t"); -__static_renaming("____timer_t_40", "__timer_t"); -__static_renaming("____blksize_t_41", "__blksize_t"); -__static_renaming("____blkcnt_t_42", "__blkcnt_t"); -__static_renaming("____blkcnt64_t_43", "__blkcnt64_t"); -__static_renaming("____fsblkcnt_t_44", "__fsblkcnt_t"); -__static_renaming("____fsblkcnt64_t_45", "__fsblkcnt64_t"); -__static_renaming("____fsfilcnt_t_46", "__fsfilcnt_t"); -__static_renaming("____fsfilcnt64_t_47", "__fsfilcnt64_t"); -__static_renaming("____fsword_t_48", "__fsword_t"); -__static_renaming("____ssize_t_49", "__ssize_t"); -__static_renaming("____syscall_slong_t_50", "__syscall_slong_t"); -__static_renaming("____syscall_ulong_t_51", "__syscall_ulong_t"); -__static_renaming("____loff_t_52", "__loff_t"); -__static_renaming("____qaddr_t_54", "__qaddr_t"); -__static_renaming("____caddr_t_55", "__caddr_t"); -__static_renaming("____intptr_t_56", "__intptr_t"); -__static_renaming("____socklen_t_57", "__socklen_t"); -__static_renaming("__FILE_59", "FILE"); -__static_renaming("____FILE_60", "__FILE"); -__static_renaming("____mbstate_t_69", "__mbstate_t"); -__static_renaming("___G_fpos_t_77", "_G_fpos_t"); -__static_renaming("___G_fpos64_t_85", "_G_fpos64_t"); -__static_renaming("____gnuc_va_list_86", "__gnuc_va_list"); -__static_renaming("___IO_lock_t_88", "_IO_lock_t"); -__static_renaming("___IO_FILE_171", "_IO_FILE"); -__static_renaming("___IO_FILE_172", "_IO_FILE"); -__static_renaming("___IO_2_1_stdin__175", "_IO_2_1_stdin_"); -__static_renaming("___IO_2_1_stdout__176", "_IO_2_1_stdout_"); -__static_renaming("___IO_2_1_stderr__177", "_IO_2_1_stderr_"); -__static_renaming("____io_read_fn_181", "__io_read_fn"); -__static_renaming("____io_write_fn_186", "__io_write_fn"); -__static_renaming("____io_seek_fn_192", "__io_seek_fn"); -__static_renaming("____io_close_fn_195", "__io_close_fn"); -__static_renaming("____underflow_196", "__underflow"); -__static_renaming("____underflow_197", "__underflow"); -__static_renaming("____uflow_199", "__uflow"); -__static_renaming("____uflow_200", "__uflow"); -__static_renaming("____overflow_202", "__overflow"); -__static_renaming("____overflow_203", "__overflow"); -__static_renaming("___IO_getc_208", "_IO_getc"); -__static_renaming("___IO_getc_209", "_IO_getc"); -__static_renaming("___IO_putc_215", "_IO_putc"); -__static_renaming("___IO_putc_216", "_IO_putc"); -__static_renaming("___IO_feof_221", "_IO_feof"); -__static_renaming("___IO_feof_222", "_IO_feof"); -__static_renaming("___IO_ferror_227", "_IO_ferror"); -__static_renaming("___IO_ferror_228", "_IO_ferror"); -__static_renaming("___IO_peekc_locked_233", "_IO_peekc_locked"); -__static_renaming("___IO_peekc_locked_234", "_IO_peekc_locked"); -__static_renaming("___IO_flockfile_236", "_IO_flockfile"); -__static_renaming("___IO_flockfile_237", "_IO_flockfile"); -__static_renaming("___IO_funlockfile_239", "_IO_funlockfile"); -__static_renaming("___IO_funlockfile_240", "_IO_funlockfile"); -__static_renaming("___IO_ftrylockfile_242", "_IO_ftrylockfile"); -__static_renaming("___IO_ftrylockfile_243", "_IO_ftrylockfile"); -__static_renaming("___IO_vfscanf_245", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_247", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_251", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_252", "_IO_vfscanf"); -__static_renaming("___IO_vfprintf_254", "_IO_vfprintf"); -__static_renaming("___IO_vfprintf_256", "_IO_vfprintf"); -__static_renaming("___IO_vfprintf_260", "_IO_vfprintf"); -__static_renaming("___IO_padn_261", "_IO_padn"); -__static_renaming("___IO_padn_262", "_IO_padn"); -__static_renaming("___IO_sgetn_265", "_IO_sgetn"); -__static_renaming("___IO_sgetn_266", "_IO_sgetn"); -__static_renaming("___IO_seekoff_268", "_IO_seekoff"); -__static_renaming("___IO_seekoff_269", "_IO_seekoff"); -__static_renaming("___IO_seekpos_272", "_IO_seekpos"); -__static_renaming("___IO_seekpos_273", "_IO_seekpos"); -__static_renaming("___IO_free_backup_area_276", "_IO_free_backup_area"); -__static_renaming("___IO_free_backup_area_277", "_IO_free_backup_area"); -__static_renaming("__va_list_279", "va_list"); -__static_renaming("__off_t_281", "off_t"); -__static_renaming("__off_t_283", "off_t"); -__static_renaming("__ssize_t_285", "ssize_t"); -__static_renaming("__fpos_t_287", "fpos_t"); -__static_renaming("__fpos_t_289", "fpos_t"); -__static_renaming("__stdin_291", "stdin"); -__static_renaming("__stdin_292", "stdin"); -__static_renaming("__stdout_294", "stdout"); -__static_renaming("__stdout_295", "stdout"); -__static_renaming("__stderr_297", "stderr"); -__static_renaming("__stderr_298", "stderr"); -__static_renaming("__remove_301", "remove"); -__static_renaming("__rename_304", "rename"); -__static_renaming("__renameat_309", "renameat"); -__static_renaming("__tmpfile_310", "tmpfile"); -__static_renaming("__tmpfile_312", "tmpfile"); -__static_renaming("__tmpfile_314", "tmpfile"); -__static_renaming("__tmpfile_316", "tmpfile"); -__static_renaming("__tmpnam_319", "tmpnam"); -__static_renaming("__tmpnam_320", "tmpnam"); -__static_renaming("__tmpnam_r_322", "tmpnam_r"); -__static_renaming("__tmpnam_r_323", "tmpnam_r"); -__static_renaming("__tempnam_326", "tempnam"); -__static_renaming("__tempnam_327", "tempnam"); -__static_renaming("__fclose_330", "fclose"); -__static_renaming("__fclose_332", "fclose"); -__static_renaming("__fflush_336", "fflush"); -__static_renaming("__fflush_unlocked_340", "fflush_unlocked"); -__static_renaming("__fopen_344", "fopen"); -__static_renaming("__fopen_346", "fopen"); -__static_renaming("__fopen_354", "fopen"); -__static_renaming("__fopen_356", "fopen"); -__static_renaming("__freopen_362", "freopen"); -__static_renaming("__freopen_364", "freopen"); -__static_renaming("__freopen_366", "freopen"); -__static_renaming("__freopen_368", "freopen"); -__static_renaming("__fdopen_372", "fdopen"); -__static_renaming("__fdopen_374", "fdopen"); -__static_renaming("__fmemopen_379", "fmemopen"); -__static_renaming("__fmemopen_381", "fmemopen"); -__static_renaming("__open_memstream_385", "open_memstream"); -__static_renaming("__open_memstream_387", "open_memstream"); -__static_renaming("__setbuf_392", "setbuf"); -__static_renaming("__setbuf_394", "setbuf"); -__static_renaming("__setvbuf_401", "setvbuf"); -__static_renaming("__setbuffer_407", "setbuffer"); -__static_renaming("__setlinebuf_411", "setlinebuf"); -__static_renaming("__fprintf_416", "fprintf"); -__static_renaming("__fprintf_418", "fprintf"); -__static_renaming("__printf_421", "printf"); -__static_renaming("__sprintf_424", "sprintf"); -__static_renaming("__vfprintf_430", "vfprintf"); -__static_renaming("__vprintf_437", "vprintf"); -__static_renaming("__vsprintf_443", "vsprintf"); -__static_renaming("__snprintf_448", "snprintf"); -__static_renaming("__vsnprintf_454", "vsnprintf"); -__static_renaming("__vdprintf_460", "vdprintf"); -__static_renaming("__dprintf_464", "dprintf"); -__static_renaming("__fscanf_468", "fscanf"); -__static_renaming("__fscanf_470", "fscanf"); -__static_renaming("__fscanf_472", "fscanf"); -__static_renaming("__fscanf_474", "fscanf"); -__static_renaming("__scanf_477", "scanf"); -__static_renaming("__scanf_478", "scanf"); -__static_renaming("__sscanf_481", "sscanf"); -__static_renaming("__vfscanf_509", "vfscanf"); -__static_renaming("__vfscanf_513", "vfscanf"); -__static_renaming("__vscanf_520", "vscanf"); -__static_renaming("__vscanf_522", "vscanf"); -__static_renaming("__vsscanf_528", "vsscanf"); -__static_renaming("__fgetc_563", "fgetc"); -__static_renaming("__getc_567", "getc"); -__static_renaming("__getchar_569", "getchar"); -__static_renaming("__getc_unlocked_572", "getc_unlocked"); -__static_renaming("__getchar_unlocked_574", "getchar_unlocked"); -__static_renaming("__fgetc_unlocked_577", "fgetc_unlocked"); -__static_renaming("__fputc_582", "fputc"); -__static_renaming("__fputc_584", "fputc"); -__static_renaming("__putc_589", "putc"); -__static_renaming("__putchar_592", "putchar"); -__static_renaming("__fputc_unlocked_596", "fputc_unlocked"); -__static_renaming("__putc_unlocked_601", "putc_unlocked"); -__static_renaming("__putchar_unlocked_604", "putchar_unlocked"); -__static_renaming("__getw_607", "getw"); -__static_renaming("__putw_612", "putw"); -__static_renaming("__fgets_618", "fgets"); -__static_renaming("__fgets_620", "fgets"); -__static_renaming("__fgets_622", "fgets"); -__static_renaming("__fgets_624", "fgets"); -__static_renaming("____getdelim_631", "__getdelim"); -__static_renaming("____getdelim_635", "__getdelim"); -__static_renaming("__getdelim_644", "getdelim"); -__static_renaming("__getdelim_648", "getdelim"); -__static_renaming("__getline_656", "getline"); -__static_renaming("__getline_660", "getline"); -__static_renaming("__fputs_667", "fputs"); -__static_renaming("__fputs_669", "fputs"); -__static_renaming("__puts_672", "puts"); -__static_renaming("__ungetc_676", "ungetc"); -__static_renaming("__fseek_714", "fseek"); -__static_renaming("__fseek_716", "fseek"); -__static_renaming("__ftell_720", "ftell"); -__static_renaming("__ftell_722", "ftell"); -__static_renaming("__rewind_726", "rewind"); -__static_renaming("__fseeko_733", "fseeko"); -__static_renaming("__fseeko_744", "fseeko"); -__static_renaming("__ftello_750", "ftello"); -__static_renaming("__ftello_754", "ftello"); -__static_renaming("__ftello_758", "ftello"); -__static_renaming("__fgetpos_766", "fgetpos"); -__static_renaming("__fgetpos_778", "fgetpos"); -__static_renaming("__fsetpos_786", "fsetpos"); -__static_renaming("__fsetpos_790", "fsetpos"); -__static_renaming("__clearerr_796", "clearerr"); -__static_renaming("__feof_800", "feof"); -__static_renaming("__feof_802", "feof"); -__static_renaming("__ferror_806", "ferror"); -__static_renaming("__ferror_808", "ferror"); -__static_renaming("__clearerr_unlocked_812", "clearerr_unlocked"); -__static_renaming("__feof_unlocked_816", "feof_unlocked"); -__static_renaming("__feof_unlocked_818", "feof_unlocked"); -__static_renaming("__ferror_unlocked_822", "ferror_unlocked"); -__static_renaming("__ferror_unlocked_824", "ferror_unlocked"); -__static_renaming("__perror_827", "perror"); -__static_renaming("__perror_828", "perror"); -__static_renaming("__sys_nerr_829", "sys_nerr"); -__static_renaming("__sys_errlist_830", "sys_errlist"); -__static_renaming("__fileno_833", "fileno"); -__static_renaming("__fileno_835", "fileno"); -__static_renaming("__fileno_unlocked_839", "fileno_unlocked"); -__static_renaming("__fileno_unlocked_841", "fileno_unlocked"); -__static_renaming("__popen_845", "popen"); -__static_renaming("__popen_847", "popen"); -__static_renaming("__pclose_851", "pclose"); -__static_renaming("__ctermid_854", "ctermid"); -__static_renaming("__flockfile_857", "flockfile"); -__static_renaming("__ftrylockfile_861", "ftrylockfile"); -__static_renaming("__ftrylockfile_863", "ftrylockfile"); -__static_renaming("__funlockfile_867", "funlockfile"); -__static_renaming("____sprintf_chk_899", "__sprintf_chk"); -__static_renaming("____vsprintf_chk_906", "__vsprintf_chk"); -__static_renaming("____snprintf_chk_920", "__snprintf_chk"); -__static_renaming("____vsnprintf_chk_928", "__vsnprintf_chk"); -__static_renaming("____fprintf_chk_943", "__fprintf_chk"); -__static_renaming("____printf_chk_947", "__printf_chk"); -__static_renaming("____vfprintf_chk_954", "__vfprintf_chk"); -__static_renaming("____vprintf_chk_962", "__vprintf_chk"); -__static_renaming("____dprintf_chk_984", "__dprintf_chk"); -__static_renaming("____vdprintf_chk_990", "__vdprintf_chk"); -__static_renaming("____fgets_chk_1004", "__fgets_chk"); -__static_renaming("____fgets_chk_1006", "__fgets_chk"); -__static_renaming("____fgets_chk_1008", "__fgets_chk"); -__static_renaming("____fgets_alias_1014", "__fgets_alias"); -__static_renaming("____fgets_chk_warn_1021", "__fgets_chk_warn"); -__static_renaming("____cnt_1087", "__cnt"); -__static_renaming("____cptr_1088", "__cptr"); -__static_renaming("__ptrdiff_t_1092", "ptrdiff_t"); -__static_renaming("__size_t_1093", "size_t"); -__static_renaming("__wchar_t_1094", "wchar_t"); -__static_renaming("__idtype_t_1100", "idtype_t"); -__static_renaming("____u_char_1101", "__u_char"); -__static_renaming("____u_short_1102", "__u_short"); -__static_renaming("____u_int_1103", "__u_int"); -__static_renaming("____u_long_1104", "__u_long"); -__static_renaming("____int8_t_1105", "__int8_t"); -__static_renaming("____uint8_t_1106", "__uint8_t"); -__static_renaming("____int16_t_1107", "__int16_t"); -__static_renaming("____uint16_t_1108", "__uint16_t"); -__static_renaming("____int32_t_1109", "__int32_t"); -__static_renaming("____uint32_t_1110", "__uint32_t"); -__static_renaming("____int64_t_1111", "__int64_t"); -__static_renaming("____uint64_t_1112", "__uint64_t"); -__static_renaming("____quad_t_1113", "__quad_t"); -__static_renaming("____u_quad_t_1114", "__u_quad_t"); -__static_renaming("____dev_t_1115", "__dev_t"); -__static_renaming("____uid_t_1116", "__uid_t"); -__static_renaming("____gid_t_1117", "__gid_t"); -__static_renaming("____ino_t_1118", "__ino_t"); -__static_renaming("____ino64_t_1119", "__ino64_t"); -__static_renaming("____mode_t_1120", "__mode_t"); -__static_renaming("____nlink_t_1121", "__nlink_t"); -__static_renaming("____off_t_1122", "__off_t"); -__static_renaming("____off64_t_1123", "__off64_t"); -__static_renaming("____pid_t_1124", "__pid_t"); -__static_renaming("____fsid_t_1128", "__fsid_t"); -__static_renaming("____clock_t_1129", "__clock_t"); -__static_renaming("____rlim_t_1130", "__rlim_t"); -__static_renaming("____rlim64_t_1131", "__rlim64_t"); -__static_renaming("____id_t_1132", "__id_t"); -__static_renaming("____time_t_1133", "__time_t"); -__static_renaming("____useconds_t_1134", "__useconds_t"); -__static_renaming("____suseconds_t_1135", "__suseconds_t"); -__static_renaming("____daddr_t_1136", "__daddr_t"); -__static_renaming("____key_t_1137", "__key_t"); -__static_renaming("____clockid_t_1138", "__clockid_t"); -__static_renaming("____timer_t_1139", "__timer_t"); -__static_renaming("____blksize_t_1140", "__blksize_t"); -__static_renaming("____blkcnt_t_1141", "__blkcnt_t"); -__static_renaming("____blkcnt64_t_1142", "__blkcnt64_t"); -__static_renaming("____fsblkcnt_t_1143", "__fsblkcnt_t"); -__static_renaming("____fsblkcnt64_t_1144", "__fsblkcnt64_t"); -__static_renaming("____fsfilcnt_t_1145", "__fsfilcnt_t"); -__static_renaming("____fsfilcnt64_t_1146", "__fsfilcnt64_t"); -__static_renaming("____fsword_t_1147", "__fsword_t"); -__static_renaming("____ssize_t_1148", "__ssize_t"); -__static_renaming("____syscall_slong_t_1149", "__syscall_slong_t"); -__static_renaming("____syscall_ulong_t_1150", "__syscall_ulong_t"); -__static_renaming("____loff_t_1151", "__loff_t"); -__static_renaming("____qaddr_t_1153", "__qaddr_t"); -__static_renaming("____caddr_t_1154", "__caddr_t"); -__static_renaming("____intptr_t_1155", "__intptr_t"); -__static_renaming("____socklen_t_1156", "__socklen_t"); -__static_renaming("____bswap_32_1158", "__bswap_32"); -__static_renaming("____bswap_64_1162", "__bswap_64"); -__static_renaming("____bswap_64_1163", "__bswap_64"); -__static_renaming("____WAIT_STATUS_1185", "__WAIT_STATUS"); -__static_renaming("__div_t_1190", "div_t"); -__static_renaming("__ldiv_t_1195", "ldiv_t"); -__static_renaming("__lldiv_t_1200", "lldiv_t"); -__static_renaming("____ctype_get_mb_cur_max_1201", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1202", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1203", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1204", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1205", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1206", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1207", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1208", "__ctype_get_mb_cur_max"); -__static_renaming("__atof_1210", "atof"); -__static_renaming("__atof_1211", "atof"); -__static_renaming("__atoi_1213", "atoi"); -__static_renaming("__atoi_1214", "atoi"); -__static_renaming("__atol_1216", "atol"); -__static_renaming("__atol_1217", "atol"); -__static_renaming("__atoll_1219", "atoll"); -__static_renaming("__atoll_1220", "atoll"); -__static_renaming("__strtod_1223", "strtod"); -__static_renaming("__strtof_1226", "strtof"); -__static_renaming("__strtold_1229", "strtold"); -__static_renaming("__strtol_1233", "strtol"); -__static_renaming("__strtoul_1237", "strtoul"); -__static_renaming("__strtoq_1241", "strtoq"); -__static_renaming("__strtouq_1245", "strtouq"); -__static_renaming("__strtoll_1249", "strtoll"); -__static_renaming("__strtoll_1250", "strtoll"); -__static_renaming("__strtoull_1254", "strtoull"); -__static_renaming("__l64a_1259", "l64a"); -__static_renaming("__l64a_1260", "l64a"); -__static_renaming("__a64l_1262", "a64l"); -__static_renaming("__a64l_1263", "a64l"); -__static_renaming("____u_char_1264", "__u_char"); -__static_renaming("____u_short_1265", "__u_short"); -__static_renaming("____u_int_1266", "__u_int"); -__static_renaming("____u_long_1267", "__u_long"); -__static_renaming("____int8_t_1268", "__int8_t"); -__static_renaming("____uint8_t_1269", "__uint8_t"); -__static_renaming("____int16_t_1270", "__int16_t"); -__static_renaming("____uint16_t_1271", "__uint16_t"); -__static_renaming("____int32_t_1272", "__int32_t"); -__static_renaming("____uint32_t_1273", "__uint32_t"); -__static_renaming("____int64_t_1274", "__int64_t"); -__static_renaming("____uint64_t_1275", "__uint64_t"); -__static_renaming("____quad_t_1276", "__quad_t"); -__static_renaming("____u_quad_t_1277", "__u_quad_t"); -__static_renaming("____dev_t_1278", "__dev_t"); -__static_renaming("____uid_t_1279", "__uid_t"); -__static_renaming("____gid_t_1280", "__gid_t"); -__static_renaming("____ino_t_1281", "__ino_t"); -__static_renaming("____ino64_t_1282", "__ino64_t"); -__static_renaming("____mode_t_1283", "__mode_t"); -__static_renaming("____nlink_t_1284", "__nlink_t"); -__static_renaming("____off_t_1285", "__off_t"); -__static_renaming("____off64_t_1286", "__off64_t"); -__static_renaming("____pid_t_1287", "__pid_t"); -__static_renaming("____fsid_t_1291", "__fsid_t"); -__static_renaming("____clock_t_1292", "__clock_t"); -__static_renaming("____rlim_t_1293", "__rlim_t"); -__static_renaming("____rlim64_t_1294", "__rlim64_t"); -__static_renaming("____id_t_1295", "__id_t"); -__static_renaming("____time_t_1296", "__time_t"); -__static_renaming("____useconds_t_1297", "__useconds_t"); -__static_renaming("____suseconds_t_1298", "__suseconds_t"); -__static_renaming("____daddr_t_1299", "__daddr_t"); -__static_renaming("____key_t_1300", "__key_t"); -__static_renaming("____clockid_t_1301", "__clockid_t"); -__static_renaming("____timer_t_1302", "__timer_t"); -__static_renaming("____blksize_t_1303", "__blksize_t"); -__static_renaming("____blkcnt_t_1304", "__blkcnt_t"); -__static_renaming("____blkcnt64_t_1305", "__blkcnt64_t"); -__static_renaming("____fsblkcnt_t_1306", "__fsblkcnt_t"); -__static_renaming("____fsblkcnt64_t_1307", "__fsblkcnt64_t"); -__static_renaming("____fsfilcnt_t_1308", "__fsfilcnt_t"); -__static_renaming("____fsfilcnt64_t_1309", "__fsfilcnt64_t"); -__static_renaming("____fsword_t_1310", "__fsword_t"); -__static_renaming("____ssize_t_1311", "__ssize_t"); -__static_renaming("____syscall_slong_t_1312", "__syscall_slong_t"); -__static_renaming("____syscall_ulong_t_1313", "__syscall_ulong_t"); -__static_renaming("____loff_t_1314", "__loff_t"); -__static_renaming("____qaddr_t_1316", "__qaddr_t"); -__static_renaming("____caddr_t_1317", "__caddr_t"); -__static_renaming("____intptr_t_1318", "__intptr_t"); -__static_renaming("____socklen_t_1319", "__socklen_t"); -__static_renaming("__u_char_1320", "u_char"); -__static_renaming("__u_char_1321", "u_char"); -__static_renaming("__u_char_1322", "u_char"); -__static_renaming("__u_short_1323", "u_short"); -__static_renaming("__u_short_1324", "u_short"); -__static_renaming("__u_short_1325", "u_short"); -__static_renaming("__u_int_1326", "u_int"); -__static_renaming("__u_int_1327", "u_int"); -__static_renaming("__u_int_1328", "u_int"); -__static_renaming("__u_long_1329", "u_long"); -__static_renaming("__u_long_1330", "u_long"); -__static_renaming("__u_long_1331", "u_long"); -__static_renaming("__quad_t_1332", "quad_t"); -__static_renaming("__quad_t_1333", "quad_t"); -__static_renaming("__quad_t_1334", "quad_t"); -__static_renaming("__u_quad_t_1335", "u_quad_t"); -__static_renaming("__u_quad_t_1336", "u_quad_t"); -__static_renaming("__u_quad_t_1337", "u_quad_t"); -__static_renaming("__fsid_t_1338", "fsid_t"); -__static_renaming("__fsid_t_1339", "fsid_t"); -__static_renaming("__fsid_t_1340", "fsid_t"); -__static_renaming("__loff_t_1342", "loff_t"); -__static_renaming("__loff_t_1343", "loff_t"); -__static_renaming("__loff_t_1344", "loff_t"); -__static_renaming("__loff_t_1346", "loff_t"); -__static_renaming("__loff_t_1347", "loff_t"); -__static_renaming("__loff_t_1348", "loff_t"); -__static_renaming("__ino_t_1350", "ino_t"); -__static_renaming("__ino_t_1351", "ino_t"); -__static_renaming("__ino_t_1352", "ino_t"); -__static_renaming("__ino_t_1354", "ino_t"); -__static_renaming("__ino_t_1355", "ino_t"); -__static_renaming("__ino_t_1356", "ino_t"); -__static_renaming("__dev_t_1358", "dev_t"); -__static_renaming("__dev_t_1359", "dev_t"); -__static_renaming("__dev_t_1360", "dev_t"); -__static_renaming("__gid_t_1362", "gid_t"); -__static_renaming("__gid_t_1363", "gid_t"); -__static_renaming("__gid_t_1364", "gid_t"); -__static_renaming("__gid_t_1366", "gid_t"); -__static_renaming("__gid_t_1367", "gid_t"); -__static_renaming("__gid_t_1368", "gid_t"); -__static_renaming("__mode_t_1370", "mode_t"); -__static_renaming("__mode_t_1371", "mode_t"); -__static_renaming("__mode_t_1372", "mode_t"); -__static_renaming("__nlink_t_1374", "nlink_t"); -__static_renaming("__nlink_t_1375", "nlink_t"); -__static_renaming("__nlink_t_1376", "nlink_t"); -__static_renaming("__uid_t_1378", "uid_t"); -__static_renaming("__uid_t_1379", "uid_t"); -__static_renaming("__uid_t_1380", "uid_t"); -__static_renaming("__uid_t_1382", "uid_t"); -__static_renaming("__uid_t_1383", "uid_t"); -__static_renaming("__uid_t_1384", "uid_t"); -__static_renaming("__off_t_1386", "off_t"); -__static_renaming("__off_t_1387", "off_t"); -__static_renaming("__off_t_1389", "off_t"); -__static_renaming("__off_t_1390", "off_t"); -__static_renaming("__pid_t_1392", "pid_t"); -__static_renaming("__pid_t_1393", "pid_t"); -__static_renaming("__pid_t_1394", "pid_t"); -__static_renaming("__pid_t_1396", "pid_t"); -__static_renaming("__pid_t_1397", "pid_t"); -__static_renaming("__id_t_1399", "id_t"); -__static_renaming("__id_t_1400", "id_t"); -__static_renaming("__id_t_1401", "id_t"); -__static_renaming("__ssize_t_1403", "ssize_t"); -__static_renaming("__ssize_t_1404", "ssize_t"); -__static_renaming("__daddr_t_1406", "daddr_t"); -__static_renaming("__daddr_t_1407", "daddr_t"); -__static_renaming("__daddr_t_1408", "daddr_t"); -__static_renaming("__caddr_t_1410", "caddr_t"); -__static_renaming("__caddr_t_1411", "caddr_t"); -__static_renaming("__caddr_t_1412", "caddr_t"); -__static_renaming("__key_t_1413", "key_t"); -__static_renaming("__key_t_1414", "key_t"); -__static_renaming("__key_t_1415", "key_t"); -__static_renaming("__key_t_1417", "key_t"); -__static_renaming("__key_t_1418", "key_t"); -__static_renaming("__key_t_1419", "key_t"); -__static_renaming("__clock_t_1421", "clock_t"); -__static_renaming("__clock_t_1422", "clock_t"); -__static_renaming("__clock_t_1423", "clock_t"); -__static_renaming("__time_t_1425", "time_t"); -__static_renaming("__time_t_1426", "time_t"); -__static_renaming("__time_t_1427", "time_t"); -__static_renaming("__clockid_t_1429", "clockid_t"); -__static_renaming("__clockid_t_1430", "clockid_t"); -__static_renaming("__clockid_t_1431", "clockid_t"); -__static_renaming("__timer_t_1433", "timer_t"); -__static_renaming("__timer_t_1434", "timer_t"); -__static_renaming("__timer_t_1435", "timer_t"); -__static_renaming("__ulong_1437", "ulong"); -__static_renaming("__ulong_1438", "ulong"); -__static_renaming("__ulong_1439", "ulong"); -__static_renaming("__ushort_1440", "ushort"); -__static_renaming("__uint_1441", "uint"); -__static_renaming("__int8_t_1442", "int8_t"); -__static_renaming("__int16_t_1443", "int16_t"); -__static_renaming("__int32_t_1444", "int32_t"); -__static_renaming("__int64_t_1445", "int64_t"); -__static_renaming("__u_int8_t_1446", "u_int8_t"); -__static_renaming("__u_int16_t_1447", "u_int16_t"); -__static_renaming("__u_int32_t_1448", "u_int32_t"); -__static_renaming("__u_int64_t_1449", "u_int64_t"); -__static_renaming("__register_t_1450", "register_t"); -__static_renaming("____bswap_32_1452", "__bswap_32"); -__static_renaming("____bswap_64_1456", "__bswap_64"); -__static_renaming("____bswap_64_1457", "__bswap_64"); -__static_renaming("____sig_atomic_t_1460", "__sig_atomic_t"); -__static_renaming("____sigset_t_1464", "__sigset_t"); -__static_renaming("__sigset_t_1465", "sigset_t"); -__static_renaming("__suseconds_t_1486", "suseconds_t"); -__static_renaming("__suseconds_t_1487", "suseconds_t"); -__static_renaming("__suseconds_t_1488", "suseconds_t"); -__static_renaming("____fd_mask_1490", "__fd_mask"); -__static_renaming("____fd_mask_1491", "__fd_mask"); -__static_renaming("__fd_set_1499", "fd_set"); -__static_renaming("__fd_mask_1500", "fd_mask"); -__static_renaming("__fd_mask_1501", "fd_mask"); -__static_renaming("__select_1513", "select"); -__static_renaming("__select_1514", "select"); -__static_renaming("__pselect_1529", "pselect"); -__static_renaming("__pselect_1530", "pselect"); -__static_renaming("____fdelt_chk_1534", "__fdelt_chk"); -__static_renaming("____fdelt_warn_1536", "__fdelt_warn"); -__static_renaming("__gnu_dev_major_1538", "gnu_dev_major"); -__static_renaming("__gnu_dev_major_1539", "gnu_dev_major"); -__static_renaming("__gnu_dev_minor_1541", "gnu_dev_minor"); -__static_renaming("__gnu_dev_makedev_1544", "gnu_dev_makedev"); -__static_renaming("__blksize_t_1549", "blksize_t"); -__static_renaming("__blksize_t_1550", "blksize_t"); -__static_renaming("__blksize_t_1551", "blksize_t"); -__static_renaming("__blkcnt_t_1553", "blkcnt_t"); -__static_renaming("__blkcnt_t_1554", "blkcnt_t"); -__static_renaming("__blkcnt_t_1555", "blkcnt_t"); -__static_renaming("__fsblkcnt_t_1557", "fsblkcnt_t"); -__static_renaming("__fsblkcnt_t_1558", "fsblkcnt_t"); -__static_renaming("__fsblkcnt_t_1559", "fsblkcnt_t"); -__static_renaming("__blkcnt_t_1561", "blkcnt_t"); -__static_renaming("__blkcnt_t_1562", "blkcnt_t"); -__static_renaming("__blkcnt_t_1563", "blkcnt_t"); -__static_renaming("__fsblkcnt_t_1565", "fsblkcnt_t"); -__static_renaming("__fsblkcnt_t_1566", "fsblkcnt_t"); -__static_renaming("__fsblkcnt_t_1567", "fsblkcnt_t"); -__static_renaming("__fsfilcnt_t_1569", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_1570", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_1571", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_1573", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_1574", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_1575", "fsfilcnt_t"); -__static_renaming("__pthread_t_1577", "pthread_t"); -__static_renaming("__pthread_attr_t_1581", "pthread_attr_t"); -__static_renaming("____pthread_list_t_1586", "__pthread_list_t"); -__static_renaming("____pthread_list_t_1587", "__pthread_list_t"); -__static_renaming("__pthread_mutex_t_1603", "pthread_mutex_t"); -__static_renaming("__pthread_mutexattr_t_1608", "pthread_mutexattr_t"); -__static_renaming("__rand_1609", "rand"); -__static_renaming("__srand_1611", "srand"); -__static_renaming("__rand_r_1613", "rand_r"); -__static_renaming("__drand48_1614", "drand48"); -__static_renaming("__erand48_1616", "erand48"); -__static_renaming("__lrand48_1617", "lrand48"); -__static_renaming("__nrand48_1619", "nrand48"); -__static_renaming("__mrand48_1620", "mrand48"); -__static_renaming("__jrand48_1622", "jrand48"); -__static_renaming("__srand48_1624", "srand48"); -__static_renaming("__seed48_1626", "seed48"); -__static_renaming("__lcong48_1628", "lcong48"); -__static_renaming("__malloc_1631", "malloc"); -__static_renaming("__malloc_1632", "malloc"); -__static_renaming("__malloc_1633", "malloc"); -__static_renaming("__malloc_1634", "malloc"); -__static_renaming("__calloc_1639", "calloc"); -__static_renaming("__calloc_1640", "calloc"); -__static_renaming("__calloc_1641", "calloc"); -__static_renaming("__calloc_1642", "calloc"); -__static_renaming("__realloc_1646", "realloc"); -__static_renaming("__realloc_1647", "realloc"); -__static_renaming("__free_1649", "free"); -__static_renaming("__cfree_1651", "cfree"); -__static_renaming("__alloca_1654", "alloca"); -__static_renaming("__alloca_1655", "alloca"); -__static_renaming("__valloc_1658", "valloc"); -__static_renaming("__valloc_1659", "valloc"); -__static_renaming("__valloc_1660", "valloc"); -__static_renaming("__valloc_1661", "valloc"); -__static_renaming("__posix_memalign_1667", "posix_memalign"); -__static_renaming("__posix_memalign_1668", "posix_memalign"); -__static_renaming("__posix_memalign_1669", "posix_memalign"); -__static_renaming("__posix_memalign_1670", "posix_memalign"); -__static_renaming("__aligned_alloc_1675", "aligned_alloc"); -__static_renaming("__aligned_alloc_1676", "aligned_alloc"); -__static_renaming("__aligned_alloc_1677", "aligned_alloc"); -__static_renaming("__aligned_alloc_1678", "aligned_alloc"); -__static_renaming("__aligned_alloc_1679", "aligned_alloc"); -__static_renaming("__aligned_alloc_1680", "aligned_alloc"); -__static_renaming("__aligned_alloc_1681", "aligned_alloc"); -__static_renaming("__aligned_alloc_1682", "aligned_alloc"); -__static_renaming("__abort_1683", "abort"); -__static_renaming("__atexit_1685", "atexit"); -__static_renaming("__at_quick_exit_1687", "at_quick_exit"); -__static_renaming("__on_exit_1692", "on_exit"); -__static_renaming("__exit_1694", "exit"); -__static_renaming("__exit_1695", "exit"); -__static_renaming("__quick_exit_1697", "quick_exit"); -__static_renaming("___Exit_1699", "_Exit"); -__static_renaming("__getenv_1701", "getenv"); -__static_renaming("__getenv_1702", "getenv"); -__static_renaming("__putenv_1704", "putenv"); -__static_renaming("__setenv_1708", "setenv"); -__static_renaming("__unsetenv_1710", "unsetenv"); -__static_renaming("__clearenv_1711", "clearenv"); -__static_renaming("__mktemp_1713", "mktemp"); -__static_renaming("__mkstemp_1716", "mkstemp"); -__static_renaming("__mkstemp_1717", "mkstemp"); -__static_renaming("__mkstemp_1718", "mkstemp"); -__static_renaming("__mkstemp_1719", "mkstemp"); -__static_renaming("__mkstemps_1724", "mkstemps"); -__static_renaming("__mkstemps_1725", "mkstemps"); -__static_renaming("__mkstemps_1726", "mkstemps"); -__static_renaming("__mkstemps_1727", "mkstemps"); -__static_renaming("__mkdtemp_1729", "mkdtemp"); -__static_renaming("__mkdtemp_1730", "mkdtemp"); -__static_renaming("__system_1732", "system"); -__static_renaming("__system_1733", "system"); -__static_renaming("__system_1734", "system"); -__static_renaming("__system_1735", "system"); -__static_renaming("__realpath_1738", "realpath"); -__static_renaming("__realpath_1739", "realpath"); -__static_renaming("____compar_fn_t_1740", "__compar_fn_t"); -__static_renaming("__bsearch_1751", "bsearch"); -__static_renaming("__bsearch_1752", "bsearch"); -__static_renaming("__bsearch_1755", "bsearch"); -__static_renaming("__bsearch_1756", "bsearch"); -__static_renaming("____l_1765", "__l"); -__static_renaming("____l_1766", "__l"); -__static_renaming("____u_1767", "__u"); -__static_renaming("____u_1768", "__u"); -__static_renaming("____idx_1769", "__idx"); -__static_renaming("____idx_1770", "__idx"); -__static_renaming("____p_1771", "__p"); -__static_renaming("____comparison_1772", "__comparison"); -__static_renaming("__qsort_1784", "qsort"); -__static_renaming("__qsort_1786", "qsort"); -__static_renaming("__qsort_1788", "qsort"); -__static_renaming("__qsort_1790", "qsort"); -__static_renaming("__abs_1793", "abs"); -__static_renaming("__abs_1794", "abs"); -__static_renaming("__labs_1796", "labs"); -__static_renaming("__labs_1797", "labs"); -__static_renaming("__llabs_1799", "llabs"); -__static_renaming("__llabs_1800", "llabs"); -__static_renaming("__div_1803", "div"); -__static_renaming("__div_1804", "div"); -__static_renaming("__ldiv_1807", "ldiv"); -__static_renaming("__ldiv_1809", "ldiv"); -__static_renaming("__lldiv_1813", "lldiv"); -__static_renaming("__lldiv_1815", "lldiv"); -__static_renaming("__ecvt_1821", "ecvt"); -__static_renaming("__ecvt_1822", "ecvt"); -__static_renaming("__fcvt_1827", "fcvt"); -__static_renaming("__fcvt_1828", "fcvt"); -__static_renaming("__gcvt_1832", "gcvt"); -__static_renaming("__gcvt_1833", "gcvt"); -__static_renaming("__qecvt_1838", "qecvt"); -__static_renaming("__qecvt_1839", "qecvt"); -__static_renaming("__qfcvt_1844", "qfcvt"); -__static_renaming("__qfcvt_1845", "qfcvt"); -__static_renaming("__qgcvt_1849", "qgcvt"); -__static_renaming("__qgcvt_1850", "qgcvt"); -__static_renaming("__ecvt_r_1858", "ecvt_r"); -__static_renaming("__ecvt_r_1859", "ecvt_r"); -__static_renaming("__fcvt_r_1867", "fcvt_r"); -__static_renaming("__fcvt_r_1868", "fcvt_r"); -__static_renaming("__qecvt_r_1876", "qecvt_r"); -__static_renaming("__qecvt_r_1877", "qecvt_r"); -__static_renaming("__qfcvt_r_1885", "qfcvt_r"); -__static_renaming("__qfcvt_r_1886", "qfcvt_r"); -__static_renaming("__mblen_1890", "mblen"); -__static_renaming("__mblen_1891", "mblen"); -__static_renaming("__mblen_1892", "mblen"); -__static_renaming("__mblen_1893", "mblen"); -__static_renaming("__mbtowc_1898", "mbtowc"); -__static_renaming("__mbtowc_1899", "mbtowc"); -__static_renaming("__wctomb_1902", "wctomb"); -__static_renaming("__mbstowcs_1907", "mbstowcs"); -__static_renaming("__mbstowcs_1908", "mbstowcs"); -__static_renaming("__wcstombs_1913", "wcstombs"); -__static_renaming("__wcstombs_1914", "wcstombs"); -__static_renaming("__rpmatch_1916", "rpmatch"); -__static_renaming("__rpmatch_1917", "rpmatch"); -__static_renaming("__getsubopt_1921", "getsubopt"); -__static_renaming("__getsubopt_1922", "getsubopt"); -__static_renaming("__getloadavg_1925", "getloadavg"); -__static_renaming("____realpath_chk_1931", "__realpath_chk"); -__static_renaming("____realpath_chk_1932", "__realpath_chk"); -__static_renaming("____realpath_alias_1935", "__realpath_alias"); -__static_renaming("____realpath_chk_warn_1940", "__realpath_chk_warn"); -__static_renaming("____realpath_chk_warn_1941", "__realpath_chk_warn"); -__static_renaming("____ptsname_r_chk_1951", "__ptsname_r_chk"); -__static_renaming("____ptsname_r_chk_1952", "__ptsname_r_chk"); -__static_renaming("____ptsname_r_alias_1957", "__ptsname_r_alias"); -__static_renaming("____ptsname_r_alias_1958", "__ptsname_r_alias"); -__static_renaming("____ptsname_r_chk_warn_1965", "__ptsname_r_chk_warn"); -__static_renaming("____ptsname_r_chk_warn_1966", "__ptsname_r_chk_warn"); -__static_renaming("____wctomb_chk_1977", "__wctomb_chk"); -__static_renaming("____wctomb_chk_1978", "__wctomb_chk"); -__static_renaming("____wctomb_alias_1981", "__wctomb_alias"); -__static_renaming("____mbstowcs_chk_1990", "__mbstowcs_chk"); -__static_renaming("____mbstowcs_chk_1991", "__mbstowcs_chk"); -__static_renaming("____mbstowcs_alias_1996", "__mbstowcs_alias"); -__static_renaming("____mbstowcs_alias_1997", "__mbstowcs_alias"); -__static_renaming("____mbstowcs_chk_warn_2004", "__mbstowcs_chk_warn"); -__static_renaming("____mbstowcs_chk_warn_2005", "__mbstowcs_chk_warn"); -__static_renaming("____wcstombs_chk_2016", "__wcstombs_chk"); -__static_renaming("____wcstombs_chk_2017", "__wcstombs_chk"); -__static_renaming("____wcstombs_alias_2022", "__wcstombs_alias"); -__static_renaming("____wcstombs_alias_2023", "__wcstombs_alias"); -__static_renaming("____wcstombs_chk_warn_2030", "__wcstombs_chk_warn"); -__static_renaming("____wcstombs_chk_warn_2031", "__wcstombs_chk_warn"); -__static_renaming("__r_2038", "r"); -__static_renaming("__p_2040", "p"); -__static_renaming("__c_2041", "c"); -__static_renaming("__main_2042", "main"); -__static_renaming("__main_2043", "main"); -__static_renaming("__main_2044", "main"); - -__static_condition_renaming("__static_condition_default_53", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_76", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_84", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_123", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_169", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_170", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_173", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_182", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_187", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_193", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_198", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_201", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_204", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_210", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_217", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_223", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_229", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_235", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_238", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_241", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_244", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_246", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_248", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_249", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_250", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_253", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_255", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_257", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_258", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_259", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_263", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_264", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_267", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_270", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_271", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_274", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_275", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_278", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_280", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); -__static_condition_renaming("__static_condition_default_282", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_284", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_286", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_288", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_290", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_293", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_296", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_299", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_311", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_313", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_315", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_317", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_331", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_333", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_337", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_341", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_345", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_347", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_355", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_357", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_363", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_365", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_367", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_369", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_373", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_375", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_380", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_382", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_386", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_388", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_393", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_395", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_402", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_408", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_412", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_417", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_419", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_431", "!(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_432", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_433", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_438", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_444", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_455", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_461", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_469", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_471", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_473", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_475", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_486", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_488", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_489", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_491", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_493", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_494", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_497", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_499", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_503", "!(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_510", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_511", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_512", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_514", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_515", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_516", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_521", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_523", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_529", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_536", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_537", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_538", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_539", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_541", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_542", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_543", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_544", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_549", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_550", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_552", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_553", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_559", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_560", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_564", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_568", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_573", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_578", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_583", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_585", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_590", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_597", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_602", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_608", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_613", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_619", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_621", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_623", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_625", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_632", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_633", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_634", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_636", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_637", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_638", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_645", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_646", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_647", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_649", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_650", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_651", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_657", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_658", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_659", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_661", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_662", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_663", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_668", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_670", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_677", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_683", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_684", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_685", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_686", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_692", "!(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_693", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_699", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_700", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_701", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_702", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_708", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_709", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_715", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_717", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_721", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_723", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_727", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_734", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_735", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_736", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_745", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_746", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_747", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_751", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_752", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_753", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_755", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_756", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_757", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_759", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_760", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_761", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_767", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_768", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_769", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_779", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_780", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_781", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_787", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_788", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_789", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_791", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_792", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_793", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_797", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_801", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_803", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_807", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_809", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_813", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_817", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_819", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_823", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_825", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_834", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_836", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_840", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_842", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_846", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_848", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_852", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_858", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_862", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_864", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_868", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_872", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_875", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_878", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_883", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_887", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_891", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_894", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_907", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_914", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_929", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_938", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_944", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_955", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_956", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_957", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_963", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_967", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_972", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_978", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_979", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_980", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_991", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_998", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1005", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1007", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1009", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1015", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1022", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1027", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1028", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1035", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1036", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1042", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1043", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1050", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1051", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1057", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1058", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1065", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1066", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1072", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1073", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1080", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1081", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1089", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_1090", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1091", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1152", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1159", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1164", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1165", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1315", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1341", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __u_char_defined)"); -__static_condition_renaming("__static_condition_default_1345", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __u_char_defined)"); -__static_condition_renaming("__static_condition_default_1349", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __u_char_defined)"); -__static_condition_renaming("__static_condition_default_1353", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined)"); -__static_condition_renaming("__static_condition_default_1357", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined)"); -__static_condition_renaming("__static_condition_default_1361", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_1365", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_1369", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_1373", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1377", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __nlink_t_defined)"); -__static_condition_renaming("__static_condition_default_1381", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __nlink_t_defined)"); -__static_condition_renaming("__static_condition_default_1385", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __nlink_t_defined)"); -__static_condition_renaming("__static_condition_default_1388", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1391", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1395", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && (defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1398", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1402", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __id_t_defined)"); -__static_condition_renaming("__static_condition_default_1405", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1409", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_1416", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_1420", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_1424", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __clock_t_defined)"); -__static_condition_renaming("__static_condition_default_1428", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __time_t_defined)"); -__static_condition_renaming("__static_condition_default_1432", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __clockid_t_defined)"); -__static_condition_renaming("__static_condition_default_1436", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timer_t_defined)"); -__static_condition_renaming("__static_condition_default_1453", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1458", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1459", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1475", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_1485", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_1489", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __suseconds_t_defined)"); -__static_condition_renaming("__static_condition_default_1498", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1515", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_1516", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_1531", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_1532", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_1552", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blksize_t_defined)"); -__static_condition_renaming("__static_condition_default_1556", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined)"); -__static_condition_renaming("__static_condition_default_1560", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1564", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined)"); -__static_condition_renaming("__static_condition_default_1568", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1572", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1576", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1749", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1750", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1753", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1754", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1773", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1774", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1775", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1776", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1785", "!(defined __need___FILE) && !(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1787", "(defined __need___FILE) && !(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1789", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1791", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1808", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1810", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1814", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1816", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1944", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_2039", "!(defined __STRICT_ANSI__) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined __STRICT_ANSI__) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2045", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_2046", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && !(defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && !(defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && !(defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && !(defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); -__static_condition_renaming("__static_condition_default_2047", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && !(defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && !(defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && !(defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && !(defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); -__static_condition_renaming("__static_condition_default_2048", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); -__static_condition_renaming("__static_condition_default_2049", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); -__static_condition_renaming("__static_condition_default_2050", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); -__static_condition_renaming("__static_condition_default_2051", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); -__static_condition_renaming("__static_condition_default_2052", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); -__static_condition_renaming("__static_condition_default_2053", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); -__static_condition_renaming("__static_condition_default_2054", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); -__static_condition_renaming("__static_condition_default_2055", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); -__static_condition_renaming("__static_condition_default_2056", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && !(defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && !(defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && !(defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && !(defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); -__static_condition_renaming("__static_condition_default_2057", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && !(defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && !(defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && !(defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && !(defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); -__static_condition_renaming("__static_condition_default_2058", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_2059", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && !(defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); -__static_condition_renaming("__static_condition_default_2060", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && !(defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); -__static_condition_renaming("__static_condition_default_2061", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); -__static_condition_renaming("__static_condition_default_2062", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); -__static_condition_renaming("__static_condition_default_2063", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); -__static_condition_renaming("__static_condition_default_2064", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); -__static_condition_renaming("__static_condition_default_2065", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); -__static_condition_renaming("__static_condition_default_2066", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); -__static_condition_renaming("__static_condition_default_2067", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); -__static_condition_renaming("__static_condition_default_2068", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); -__static_condition_renaming("__static_condition_default_2069", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && !(defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); -__static_condition_renaming("__static_condition_default_2070", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && !(defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); -__static_condition_renaming("__static_condition_default_2071", "!(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2072", "!(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && !(defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined _STDLIB_H) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && !(defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); -__static_condition_renaming("__static_condition_default_2073", "!(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined _STDLIB_H) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); -__static_condition_renaming("__static_condition_default_2074", "!(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); -__static_condition_renaming("__static_condition_default_2075", "(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); -__static_condition_renaming("__static_condition_default_2076", "!(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined _STDLIB_H) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); -__static_condition_renaming("__static_condition_default_2077", "!(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); -__static_condition_renaming("__static_condition_default_2078", "(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); -__static_condition_renaming("__static_condition_default_2079", "!(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && !(defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined _STDLIB_H) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && !(defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); -__static_condition_renaming("__static_condition_default_2080", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); - -if (__static_condition_default_2080) -{ -__static_parse_error("Unable to parse"); -} -}; -typedef long int __ptrdiff_t_0;// L143:L324 -typedef long unsigned int __size_t_1;// L177:L209 -typedef unsigned char ____u_char_2;// L30 -typedef unsigned short int ____u_short_3;// L31 -typedef unsigned int ____u_int_4;// L32 -typedef unsigned long int ____u_long_5;// L33 -typedef signed char ____int8_t_6;// L36 -typedef unsigned char ____uint8_t_7;// L37 -typedef signed short int ____int16_t_8;// L38 -typedef unsigned short int ____uint16_t_9;// L39 -typedef signed int ____int32_t_10;// L40 -typedef unsigned int ____uint32_t_11;// L41 -typedef signed long int ____int64_t_12;// L43 -typedef unsigned long int ____uint64_t_13;// L44 -typedef long int ____quad_t_14;// L52 -typedef unsigned long int ____u_quad_t_15;// L53 -typedef unsigned long int ____dev_t_16;// L109:L124 -typedef unsigned int ____uid_t_17;// L92:L125 -typedef unsigned int ____gid_t_18;// L92:L126 -typedef unsigned long int ____ino_t_19;// L94:L127 -typedef unsigned long int ____ino64_t_20;// L109:L128 -typedef unsigned int ____mode_t_21;// L92:L129 -typedef unsigned long int ____nlink_t_22;// L94:L130 -typedef long int ____off_t_23;// L93:L131 -typedef long int ____off64_t_24;// L108:L132 -typedef int ____pid_t_25;// L91:L133 -struct ____anonymous_tag_26_27 { -int ____val_28[2];// L72 -}; -typedef struct ____anonymous_tag_26_27 ____fsid_t_29;// L72:L134 -typedef long int ____clock_t_30;// L93:L135 -typedef unsigned long int ____rlim_t_31;// L94:L136 -typedef unsigned long int ____rlim64_t_32;// L109:L137 -typedef unsigned int ____id_t_33;// L92:L138 -typedef long int ____time_t_34;// L93:L139 -typedef unsigned int ____useconds_t_35;// L92:L140 -typedef long int ____suseconds_t_36;// L93:L141 -typedef int ____daddr_t_37;// L91:L143 -typedef int ____key_t_38;// L91:L144 -typedef int ____clockid_t_39;// L91:L147 -typedef void * (____timer_t_40);// L70:L150 -typedef long int ____blksize_t_41;// L93:L153 -typedef long int ____blkcnt_t_42;// L93:L158 -typedef long int ____blkcnt64_t_43;// L108:L159 -typedef unsigned long int ____fsblkcnt_t_44;// L94:L162 -typedef unsigned long int ____fsblkcnt64_t_45;// L109:L163 -typedef unsigned long int ____fsfilcnt_t_46;// L94:L166 -typedef unsigned long int ____fsfilcnt64_t_47;// L109:L167 -typedef long int ____fsword_t_48;// L93:L170 -typedef long int ____ssize_t_49;// L110:L172 -typedef long int ____syscall_slong_t_50;// L93:L175 -typedef unsigned long int ____syscall_ulong_t_51;// L94:L177 -typedef ____off64_t_24 ____loff_t_52;// L181 -typedef ____quad_t_14 * (____qaddr_t_54);// L182 -typedef char * (____caddr_t_55);// L183 -typedef long int ____intptr_t_56;// L110:L186 -typedef unsigned int ____socklen_t_57;// L92:L189 -typedef struct __forward_tag_reference_58 __FILE_59;// L48 -typedef struct __forward_tag_reference_58 ____FILE_60;// L64 -union ____anonymous_tag_61_62 { -unsigned int ____wch_63;// L265 -char ____wchb_64[4];// L92 -}; -struct ____anonymous_tag_65_66 { -int ____count_67;// L84 -union ____anonymous_tag_61_62 ____value_68;// L85 -}; -typedef struct ____anonymous_tag_65_66 ____mbstate_t_69;// L82:L94 -struct ____anonymous_tag_70_71 { -____off_t_23 ____pos_72;// L0 -____mbstate_t_69 ____state_74;// L0 -}; -typedef struct ____anonymous_tag_70_71 ___G_fpos_t_77;// L21:L25 -struct ____anonymous_tag_78_79 { -____off64_t_24 ____pos_80;// L0 -____mbstate_t_69 ____state_82;// L0 -}; -typedef struct ____anonymous_tag_78_79 ___G_fpos64_t_85;// L26:L30 -typedef __builtin_va_list ____gnuc_va_list_86;// L40 -typedef void ___IO_lock_t_88;// L150 -struct ___IO_marker_90 { -struct __forward_tag_reference_89 * (___next_91);// L0 -struct __forward_tag_reference_58 * (___sbuf_92);// L0 -int ___pos_93;// L162 -}; -enum ____codecvt_result_98 { -____codecvt_ok_94, -____codecvt_partial_95, -____codecvt_error_96, -____codecvt_noconv_97, -}; -struct ___IO_FILE_99 { -int ___flags_100;// L242 -char * (___IO_read_ptr_101);// L247 -char * (___IO_read_end_102);// L248 -char * (___IO_read_base_103);// L249 -char * (___IO_write_base_104);// L250 -char * (___IO_write_ptr_105);// L251 -char * (___IO_write_end_106);// L252 -char * (___IO_buf_base_107);// L253 -char * (___IO_buf_end_108);// L254 -char * (___IO_save_base_109);// L256 -char * (___IO_backup_base_110);// L257 -char * (___IO_save_end_111);// L258 -struct ___IO_marker_90 * (___markers_112);// L260 -struct __forward_tag_reference_58 * (___chain_113);// L0 -int ___fileno_114;// L264 -int ___flags2_115;// L268 -____off_t_23 ___old_offset_116;// L0 -unsigned short ___cur_column_118;// L274 -signed char ___vtable_offset_119;// L275 -char ___shortbuf_120[1];// L276 -___IO_lock_t_88 * (___lock_121);// L0 -}; -struct ___IO_FILE_124 { -int ___flags_125;// L242 -char * (___IO_read_ptr_126);// L247 -char * (___IO_read_end_127);// L248 -char * (___IO_read_base_128);// L249 -char * (___IO_write_base_129);// L250 -char * (___IO_write_ptr_130);// L251 -char * (___IO_write_end_131);// L252 -char * (___IO_buf_base_132);// L253 -char * (___IO_buf_end_133);// L254 -char * (___IO_save_base_134);// L256 -char * (___IO_backup_base_135);// L257 -char * (___IO_save_end_136);// L258 -struct ___IO_marker_90 * (___markers_137);// L260 -struct __forward_tag_reference_58 * (___chain_138);// L0 -int ___fileno_139;// L264 -int ___flags2_140;// L268 -____off_t_23 ___old_offset_141;// L0 -unsigned short ___cur_column_143;// L274 -signed char ___vtable_offset_144;// L275 -char ___shortbuf_145[1];// L276 -___IO_lock_t_88 * (___lock_146);// L0 -____off64_t_24 ___offset_148;// L0 -void * (____pad1_150);// L297 -void * (____pad2_151);// L298 -void * (____pad3_152);// L299 -void * (____pad4_153);// L300 -__size_t_1 ____pad5_154;// L0 -int ___mode_155;// L303 -char ___unused2_156[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 -}; -struct ___IO_FILE_complete_157 { -struct ___IO_FILE_99 ___file_158;// L286 -____off64_t_24 ___offset_160;// L0 -void * (____pad1_162);// L297 -void * (____pad2_163);// L298 -void * (____pad3_164);// L299 -void * (____pad4_165);// L300 -__size_t_1 ____pad5_166;// L0 -int ___mode_167;// L303 -char ___unused2_168[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 -}; -typedef struct ___IO_FILE_99 ___IO_FILE_171;// L310 -typedef struct ___IO_FILE_124 ___IO_FILE_172;// L310 -typedef ____ssize_t_49 (____io_read_fn_181) (void * (____cookie_178), char * (____buf_179), __size_t_1 ____nbytes_180);// L333 -typedef ____ssize_t_49 (____io_write_fn_186) (void * (____cookie_183), const char * (____buf_184), __size_t_1 ____n_185);// L341:L342 -typedef int (____io_seek_fn_192) (void * (____cookie_188), ____off64_t_24 * (____pos_189), int ____w_191);// L350 -typedef int (____io_close_fn_195) (void * (____cookie_194));// L353 -typedef ____gnuc_va_list_86 __va_list_279;// L79 -typedef ____off_t_23 __off_t_281;// L90 -typedef ____off64_t_24 __off_t_283;// L92 -typedef ____ssize_t_49 __ssize_t_285;// L102 -typedef ___G_fpos_t_77 __fpos_t_287;// L110 -typedef ___G_fpos64_t_85 __fpos_t_289;// L112 -extern const char * const __sys_errlist_830[];// L27 -typedef long int __ptrdiff_t_1092;// L143:L324 -typedef long unsigned int __size_t_1093;// L177:L209 -typedef int __wchar_t_1094;// L243:L321 -enum ____anonymous_tag_1098_1099 { -__P_ALL_1095, -__P_PID_1096, -__P_PGID_1097, -}; -typedef enum ____anonymous_tag_1098_1099 __idtype_t_1100;// L50:L55 -typedef unsigned char ____u_char_1101;// L30 -typedef unsigned short int ____u_short_1102;// L31 -typedef unsigned int ____u_int_1103;// L32 -typedef unsigned long int ____u_long_1104;// L33 -typedef signed char ____int8_t_1105;// L36 -typedef unsigned char ____uint8_t_1106;// L37 -typedef signed short int ____int16_t_1107;// L38 -typedef unsigned short int ____uint16_t_1108;// L39 -typedef signed int ____int32_t_1109;// L40 -typedef unsigned int ____uint32_t_1110;// L41 -typedef signed long int ____int64_t_1111;// L43 -typedef unsigned long int ____uint64_t_1112;// L44 -typedef long int ____quad_t_1113;// L52 -typedef unsigned long int ____u_quad_t_1114;// L53 -typedef unsigned long int ____dev_t_1115;// L109:L124 -typedef unsigned int ____uid_t_1116;// L92:L125 -typedef unsigned int ____gid_t_1117;// L92:L126 -typedef unsigned long int ____ino_t_1118;// L94:L127 -typedef unsigned long int ____ino64_t_1119;// L109:L128 -typedef unsigned int ____mode_t_1120;// L92:L129 -typedef unsigned long int ____nlink_t_1121;// L94:L130 -typedef long int ____off_t_1122;// L93:L131 -typedef long int ____off64_t_1123;// L108:L132 -typedef int ____pid_t_1124;// L91:L133 -struct ____anonymous_tag_1125_1126 { -int ____val_1127[2];// L72 -}; -typedef struct ____anonymous_tag_1125_1126 ____fsid_t_1128;// L72:L134 -typedef long int ____clock_t_1129;// L93:L135 -typedef unsigned long int ____rlim_t_1130;// L94:L136 -typedef unsigned long int ____rlim64_t_1131;// L109:L137 -typedef unsigned int ____id_t_1132;// L92:L138 -typedef long int ____time_t_1133;// L93:L139 -typedef unsigned int ____useconds_t_1134;// L92:L140 -typedef long int ____suseconds_t_1135;// L93:L141 -typedef int ____daddr_t_1136;// L91:L143 -typedef int ____key_t_1137;// L91:L144 -typedef int ____clockid_t_1138;// L91:L147 -typedef void * (____timer_t_1139);// L70:L150 -typedef long int ____blksize_t_1140;// L93:L153 -typedef long int ____blkcnt_t_1141;// L93:L158 -typedef long int ____blkcnt64_t_1142;// L108:L159 -typedef unsigned long int ____fsblkcnt_t_1143;// L94:L162 -typedef unsigned long int ____fsblkcnt64_t_1144;// L109:L163 -typedef unsigned long int ____fsfilcnt_t_1145;// L94:L166 -typedef unsigned long int ____fsfilcnt64_t_1146;// L109:L167 -typedef long int ____fsword_t_1147;// L93:L170 -typedef long int ____ssize_t_1148;// L110:L172 -typedef long int ____syscall_slong_t_1149;// L93:L175 -typedef unsigned long int ____syscall_ulong_t_1150;// L94:L177 -typedef ____off64_t_1123 ____loff_t_1151;// L181 -typedef ____quad_t_1113 * (____qaddr_t_1153);// L182 -typedef char * (____caddr_t_1154);// L183 -typedef long int ____intptr_t_1155;// L110:L186 -typedef unsigned int ____socklen_t_1156;// L92:L189 -struct ____anonymous_tag_1166_1167 { -unsigned int ____w_termsig_1168 : 7;// L72 -unsigned int ____w_coredump_1169 : 1;// L73 -unsigned int ____w_retcode_1170 : 8;// L74 -unsigned int __anon_id_0_1171 : 16;// L75 -}; -struct ____anonymous_tag_1172_1173 { -unsigned int ____w_stopval_1174 : 8;// L87 -unsigned int ____w_stopsig_1175 : 8;// L88 -unsigned int __anon_id_1_1176 : 16;// L89 -}; -union __wait_1177 { -int __w_status_1178;// L68 -struct ____anonymous_tag_1166_1167 ____wait_terminated_1179;// L69 -struct ____anonymous_tag_1172_1173 ____wait_stopped_1180;// L84 -}; -union ____anonymous_tag_1181_1182 { -union __wait_1177 * (____uptr_1183);// L69 -int * (____iptr_1184);// L70 -}; -typedef union ____anonymous_tag_1181_1182 ____WAIT_STATUS_1185;// L67:L71 -struct ____anonymous_tag_1186_1187 { -int __quot_1188;// L99 -int __rem_1189;// L100 -}; -typedef struct ____anonymous_tag_1186_1187 __div_t_1190;// L97:L101 -struct ____anonymous_tag_1191_1192 { -long int __quot_1193;// L107 -long int __rem_1194;// L108 -}; -typedef struct ____anonymous_tag_1191_1192 __ldiv_t_1195;// L105:L109 -struct ____anonymous_tag_1196_1197 { -long long int __quot_1198;// L119 -long long int __rem_1199;// L120 -}; -typedef struct ____anonymous_tag_1196_1197 __lldiv_t_1200;// L117:L121 -typedef unsigned char ____u_char_1264;// L30 -typedef unsigned short int ____u_short_1265;// L31 -typedef unsigned int ____u_int_1266;// L32 -typedef unsigned long int ____u_long_1267;// L33 -typedef signed char ____int8_t_1268;// L36 -typedef unsigned char ____uint8_t_1269;// L37 -typedef signed short int ____int16_t_1270;// L38 -typedef unsigned short int ____uint16_t_1271;// L39 -typedef signed int ____int32_t_1272;// L40 -typedef unsigned int ____uint32_t_1273;// L41 -typedef signed long int ____int64_t_1274;// L43 -typedef unsigned long int ____uint64_t_1275;// L44 -typedef long int ____quad_t_1276;// L52 -typedef unsigned long int ____u_quad_t_1277;// L53 -typedef unsigned long int ____dev_t_1278;// L109:L124 -typedef unsigned int ____uid_t_1279;// L92:L125 -typedef unsigned int ____gid_t_1280;// L92:L126 -typedef unsigned long int ____ino_t_1281;// L94:L127 -typedef unsigned long int ____ino64_t_1282;// L109:L128 -typedef unsigned int ____mode_t_1283;// L92:L129 -typedef unsigned long int ____nlink_t_1284;// L94:L130 -typedef long int ____off_t_1285;// L93:L131 -typedef long int ____off64_t_1286;// L108:L132 -typedef int ____pid_t_1287;// L91:L133 -struct ____anonymous_tag_1288_1289 { -int ____val_1290[2];// L72 -}; -typedef struct ____anonymous_tag_1288_1289 ____fsid_t_1291;// L72:L134 -typedef long int ____clock_t_1292;// L93:L135 -typedef unsigned long int ____rlim_t_1293;// L94:L136 -typedef unsigned long int ____rlim64_t_1294;// L109:L137 -typedef unsigned int ____id_t_1295;// L92:L138 -typedef long int ____time_t_1296;// L93:L139 -typedef unsigned int ____useconds_t_1297;// L92:L140 -typedef long int ____suseconds_t_1298;// L93:L141 -typedef int ____daddr_t_1299;// L91:L143 -typedef int ____key_t_1300;// L91:L144 -typedef int ____clockid_t_1301;// L91:L147 -typedef void * (____timer_t_1302);// L70:L150 -typedef long int ____blksize_t_1303;// L93:L153 -typedef long int ____blkcnt_t_1304;// L93:L158 -typedef long int ____blkcnt64_t_1305;// L108:L159 -typedef unsigned long int ____fsblkcnt_t_1306;// L94:L162 -typedef unsigned long int ____fsblkcnt64_t_1307;// L109:L163 -typedef unsigned long int ____fsfilcnt_t_1308;// L94:L166 -typedef unsigned long int ____fsfilcnt64_t_1309;// L109:L167 -typedef long int ____fsword_t_1310;// L93:L170 -typedef long int ____ssize_t_1311;// L110:L172 -typedef long int ____syscall_slong_t_1312;// L93:L175 -typedef unsigned long int ____syscall_ulong_t_1313;// L94:L177 -typedef ____off64_t_1286 ____loff_t_1314;// L181 -typedef ____quad_t_1276 * (____qaddr_t_1316);// L182 -typedef char * (____caddr_t_1317);// L183 -typedef long int ____intptr_t_1318;// L110:L186 -typedef unsigned int ____socklen_t_1319;// L92:L189 -typedef ____u_char_2 __u_char_1320;// L33 -typedef ____u_char_1101 __u_char_1321;// L33 -typedef ____u_char_1264 __u_char_1322;// L33 -typedef ____u_short_3 __u_short_1323;// L34 -typedef ____u_short_1102 __u_short_1324;// L34 -typedef ____u_short_1265 __u_short_1325;// L34 -typedef ____u_int_4 __u_int_1326;// L35 -typedef ____u_int_1103 __u_int_1327;// L35 -typedef ____u_int_1266 __u_int_1328;// L35 -typedef ____u_long_5 __u_long_1329;// L36 -typedef ____u_long_1104 __u_long_1330;// L36 -typedef ____u_long_1267 __u_long_1331;// L36 -typedef ____quad_t_14 __quad_t_1332;// L37 -typedef ____quad_t_1113 __quad_t_1333;// L37 -typedef ____quad_t_1276 __quad_t_1334;// L37 -typedef ____u_quad_t_15 __u_quad_t_1335;// L38 -typedef ____u_quad_t_1114 __u_quad_t_1336;// L38 -typedef ____u_quad_t_1277 __u_quad_t_1337;// L38 -typedef ____fsid_t_29 __fsid_t_1338;// L39 -typedef ____fsid_t_1128 __fsid_t_1339;// L39 -typedef ____fsid_t_1291 __fsid_t_1340;// L39 -typedef ____loff_t_52 __loff_t_1342;// L44 -typedef ____loff_t_1151 __loff_t_1343;// L44 -typedef ____loff_t_1314 __loff_t_1344;// L44 -typedef ____loff_t_52 __loff_t_1346;// L44 -typedef ____loff_t_1151 __loff_t_1347;// L44 -typedef ____loff_t_1314 __loff_t_1348;// L44 -typedef ____ino64_t_20 __ino_t_1350;// L50 -typedef ____ino64_t_1119 __ino_t_1351;// L50 -typedef ____ino64_t_1282 __ino_t_1352;// L50 -typedef ____ino_t_19 __ino_t_1354;// L48 -typedef ____ino_t_1118 __ino_t_1355;// L48 -typedef ____ino_t_1281 __ino_t_1356;// L48 -typedef ____dev_t_16 __dev_t_1358;// L60 -typedef ____dev_t_1115 __dev_t_1359;// L60 -typedef ____dev_t_1278 __dev_t_1360;// L60 -typedef ____gid_t_18 __gid_t_1362;// L65 -typedef ____gid_t_1117 __gid_t_1363;// L65 -typedef ____gid_t_1280 __gid_t_1364;// L65 -typedef ____gid_t_18 __gid_t_1366;// L65 -typedef ____gid_t_1117 __gid_t_1367;// L65 -typedef ____gid_t_1280 __gid_t_1368;// L65 -typedef ____mode_t_21 __mode_t_1370;// L70 -typedef ____mode_t_1120 __mode_t_1371;// L70 -typedef ____mode_t_1283 __mode_t_1372;// L70 -typedef ____nlink_t_22 __nlink_t_1374;// L75 -typedef ____nlink_t_1121 __nlink_t_1375;// L75 -typedef ____nlink_t_1284 __nlink_t_1376;// L75 -typedef ____uid_t_17 __uid_t_1378;// L80 -typedef ____uid_t_1116 __uid_t_1379;// L80 -typedef ____uid_t_1279 __uid_t_1380;// L80 -typedef ____uid_t_17 __uid_t_1382;// L80 -typedef ____uid_t_1116 __uid_t_1383;// L80 -typedef ____uid_t_1279 __uid_t_1384;// L80 -typedef ____off64_t_1123 __off_t_1386;// L88 -typedef ____off64_t_1286 __off_t_1387;// L88 -typedef ____off_t_1122 __off_t_1389;// L86 -typedef ____off_t_1285 __off_t_1390;// L86 -typedef ____pid_t_25 __pid_t_1392;// L98 -typedef ____pid_t_1124 __pid_t_1393;// L98 -typedef ____pid_t_1287 __pid_t_1394;// L98 -typedef ____pid_t_1124 __pid_t_1396;// L98 -typedef ____pid_t_1287 __pid_t_1397;// L98 -typedef ____id_t_33 __id_t_1399;// L104 -typedef ____id_t_1132 __id_t_1400;// L104 -typedef ____id_t_1295 __id_t_1401;// L104 -typedef ____ssize_t_1148 __ssize_t_1403;// L109 -typedef ____ssize_t_1311 __ssize_t_1404;// L109 -typedef ____daddr_t_37 __daddr_t_1406;// L115 -typedef ____daddr_t_1136 __daddr_t_1407;// L115 -typedef ____daddr_t_1299 __daddr_t_1408;// L115 -typedef ____caddr_t_55 __caddr_t_1410;// L116 -typedef ____caddr_t_1154 __caddr_t_1411;// L116 -typedef ____caddr_t_1317 __caddr_t_1412;// L116 -typedef ____key_t_38 __key_t_1413;// L122 -typedef ____key_t_1137 __key_t_1414;// L122 -typedef ____key_t_1300 __key_t_1415;// L122 -typedef ____key_t_38 __key_t_1417;// L122 -typedef ____key_t_1137 __key_t_1418;// L122 -typedef ____key_t_1300 __key_t_1419;// L122 -typedef ____clock_t_30 __clock_t_1421;// L59 -typedef ____clock_t_1129 __clock_t_1422;// L59 -typedef ____clock_t_1292 __clock_t_1423;// L59 -typedef ____time_t_34 __time_t_1425;// L75 -typedef ____time_t_1133 __time_t_1426;// L75 -typedef ____time_t_1296 __time_t_1427;// L75 -typedef ____clockid_t_39 __clockid_t_1429;// L91 -typedef ____clockid_t_1138 __clockid_t_1430;// L91 -typedef ____clockid_t_1301 __clockid_t_1431;// L91 -typedef ____timer_t_40 __timer_t_1433;// L103 -typedef ____timer_t_1139 __timer_t_1434;// L103 -typedef ____timer_t_1302 __timer_t_1435;// L103 -typedef unsigned long int __ulong_1437;// L150 -typedef unsigned long int __ulong_1438;// L150 -typedef unsigned long int __ulong_1439;// L150 -typedef unsigned short int __ushort_1440;// L151 -typedef unsigned int __uint_1441;// L152 -typedef int __int8_t_1442;// L188:L194 -typedef int __int16_t_1443;// L188:L195 -typedef int __int32_t_1444;// L188:L196 -typedef int __int64_t_1445;// L188:L197 -typedef unsigned int __u_int8_t_1446;// L190:L200 -typedef unsigned int __u_int16_t_1447;// L190:L201 -typedef unsigned int __u_int32_t_1448;// L190:L202 -typedef unsigned int __u_int64_t_1449;// L190:L203 -typedef int __register_t_1450;// L205 -typedef int ____sig_atomic_t_1460;// L22 -struct ____anonymous_tag_1461_1462 { -unsigned long int ____val_1463[( 1024 / ( 8 * sizeof(unsigned long) ) )];// L29 -}; -typedef struct ____anonymous_tag_1461_1462 ____sigset_t_1464;// L27:L30 -typedef ____sigset_t_1464 __sigset_t_1465;// L37 -struct __timespec_1466 { -____time_t_34 __tv_sec_1467;// L0 -____time_t_1133 __tv_sec_1468;// L0 -____time_t_1296 __tv_sec_1469;// L0 -____syscall_slong_t_50 __tv_nsec_1471;// L0 -____syscall_slong_t_1149 __tv_nsec_1472;// L0 -____syscall_slong_t_1312 __tv_nsec_1473;// L0 -}; -struct __timeval_1476 { -____time_t_34 __tv_sec_1477;// L0 -____time_t_1133 __tv_sec_1478;// L0 -____time_t_1296 __tv_sec_1479;// L0 -____suseconds_t_36 __tv_usec_1481;// L0 -____suseconds_t_1135 __tv_usec_1482;// L0 -____suseconds_t_1298 __tv_usec_1483;// L0 -}; -typedef ____suseconds_t_36 __suseconds_t_1486;// L48 -typedef ____suseconds_t_1135 __suseconds_t_1487;// L48 -typedef ____suseconds_t_1298 __suseconds_t_1488;// L48 -typedef long int ____fd_mask_1490;// L54 -typedef long int ____fd_mask_1491;// L54 -struct ____anonymous_tag_1492_1493 { -____fd_mask_1490 ____fds_bits_1494[1024 / ( 8 * ( int ) sizeof(long) )];// L0 -____fd_mask_1491 ____fds_bits_1496[1024 / ( 8 * ( int ) sizeof(long) )];// L0 -}; -typedef struct ____anonymous_tag_1492_1493 __fd_set_1499;// L64:L75 -typedef ____fd_mask_1490 __fd_mask_1500;// L82 -typedef ____fd_mask_1491 __fd_mask_1501;// L82 -typedef ____blksize_t_41 __blksize_t_1549;// L228 -typedef ____blksize_t_1140 __blksize_t_1550;// L228 -typedef ____blksize_t_1303 __blksize_t_1551;// L228 -typedef ____blkcnt_t_42 __blkcnt_t_1553;// L235 -typedef ____blkcnt_t_1141 __blkcnt_t_1554;// L235 -typedef ____blkcnt_t_1304 __blkcnt_t_1555;// L235 -typedef ____fsblkcnt_t_44 __fsblkcnt_t_1557;// L239 -typedef ____fsblkcnt_t_1143 __fsblkcnt_t_1558;// L239 -typedef ____fsblkcnt_t_1306 __fsblkcnt_t_1559;// L239 -typedef ____blkcnt64_t_43 __blkcnt_t_1561;// L248 -typedef ____blkcnt64_t_1142 __blkcnt_t_1562;// L248 -typedef ____blkcnt64_t_1305 __blkcnt_t_1563;// L248 -typedef ____fsblkcnt64_t_45 __fsblkcnt_t_1565;// L252 -typedef ____fsblkcnt64_t_1144 __fsblkcnt_t_1566;// L252 -typedef ____fsblkcnt64_t_1307 __fsblkcnt_t_1567;// L252 -typedef ____fsfilcnt_t_46 __fsfilcnt_t_1569;// L243 -typedef ____fsfilcnt_t_1145 __fsfilcnt_t_1570;// L243 -typedef ____fsfilcnt_t_1308 __fsfilcnt_t_1571;// L243 -typedef ____fsfilcnt64_t_47 __fsfilcnt_t_1573;// L256 -typedef ____fsfilcnt64_t_1146 __fsfilcnt_t_1574;// L256 -typedef ____fsfilcnt64_t_1309 __fsfilcnt_t_1575;// L256 -typedef unsigned long int __pthread_t_1577;// L60 -union __pthread_attr_t_1578 { -char ____size_1579[56];// L65 -long int ____align_1580;// L66 -}; -typedef union __pthread_attr_t_1578 __pthread_attr_t_1581;// L69 -struct ____pthread_internal_list_1583 { -struct __forward_tag_reference_1582 * (____prev_1584);// L0 -struct __forward_tag_reference_1582 * (____next_1585);// L0 -}; -typedef struct ____pthread_internal_list_1583 ____pthread_list_t_1586;// L75:L79 -typedef struct ____pthread_internal_list_1583 ____pthread_list_t_1587;// L75:L79 -struct ____pthread_mutex_s_1588 { -int ____lock_1589;// L94 -unsigned int ____count_1590;// L95 -int ____owner_1591;// L96 -unsigned int ____nusers_1592;// L98 -int ____kind_1593;// L102 -short ____spins_1594;// L104 -short ____elision_1595;// L105 -____pthread_list_t_1586 ____list_1596;// L0 -____pthread_list_t_1587 ____list_1597;// L0 -}; -union ____anonymous_tag_1598_1599 { -struct ____pthread_mutex_s_1588 ____data_1600;// L92 -char ____size_1601[40];// L126 -long int ____align_1602;// L127 -}; -typedef union ____anonymous_tag_1598_1599 __pthread_mutex_t_1603;// L90:L128 -union ____anonymous_tag_1604_1605 { -char ____size_1606[4];// L132 -int ____align_1607;// L133 -}; -typedef union ____anonymous_tag_1604_1605 __pthread_mutexattr_t_1608;// L130:L134 -typedef int (* (____compar_fn_t_1740)) (const void *, const void *);// L741 - -struct __forward_tag_reference_89 { // generated union of struct variations -union { -struct ___IO_marker_90 ___IO_marker_90; -}; -}; - -struct __forward_tag_reference_1582 { // generated union of struct variations -union { -}; -}; - -struct __forward_tag_reference_58 { // generated union of struct variations -union { -struct ___IO_FILE_99 ___IO_FILE_99; -struct ___IO_FILE_124 ___IO_FILE_124; -}; -}; - -struct __forward_tag_reference_87 { // generated union of struct variations -union { -}; -}; - -struct __forward_tag_reference_174 { // generated union of struct variations -union { -}; -}; - -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -struct __forward_tag_reference_58 ;// L0 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -struct __forward_tag_reference_87 ;// L0 -struct __forward_tag_reference_87 ;// L0 -struct __forward_tag_reference_58 ;// L0 -// typedef moved to top of scope -struct ___IO_marker_90 ;// L156 -enum ____codecvt_result_98 ;// L176 -struct ___IO_FILE_99 ;// L241 - -struct ___IO_FILE_124 ;// L241 -struct ___IO_FILE_complete_157 ;// L241 - -// typedef moved to top of scope -// typedef moved to top of scope -struct __forward_tag_reference_174 ;// L0 -extern struct __forward_tag_reference_174 ___IO_2_1_stdin__175;// L315 -extern struct __forward_tag_reference_174 ___IO_2_1_stdout__176;// L316 -extern struct __forward_tag_reference_174 ___IO_2_1_stderr__177;// L317 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern int (____underflow_196) (___IO_FILE_171 *);// L385 -extern int (____underflow_197) (___IO_FILE_172 *);// L385 -extern int (____uflow_199) (___IO_FILE_171 *);// L386 -extern int (____uflow_200) (___IO_FILE_172 *);// L386 -extern int (____overflow_202) (___IO_FILE_171 *, int );// L387 -extern int (____overflow_203) (___IO_FILE_172 *, int );// L387 -extern int (___IO_getc_208) (___IO_FILE_171 * (____fp_205));// L429 -extern int (___IO_getc_209) (___IO_FILE_172 * (____fp_206));// L429 -extern int (___IO_putc_215) (int ____c_211, ___IO_FILE_171 * (____fp_212));// L430 -extern int (___IO_putc_216) (int ____c_211, ___IO_FILE_172 * (____fp_213));// L430 -extern int (___IO_feof_221) (___IO_FILE_171 * (____fp_218));// L431 -extern int (___IO_feof_222) (___IO_FILE_172 * (____fp_219));// L431 -extern int (___IO_ferror_227) (___IO_FILE_171 * (____fp_224));// L432 -extern int (___IO_ferror_228) (___IO_FILE_172 * (____fp_225));// L432 -extern int (___IO_peekc_locked_233) (___IO_FILE_171 * (____fp_230));// L434 -extern int (___IO_peekc_locked_234) (___IO_FILE_172 * (____fp_231));// L434 -extern void (___IO_flockfile_236) (___IO_FILE_171 *);// L440 -extern void (___IO_flockfile_237) (___IO_FILE_172 *);// L440 -extern void (___IO_funlockfile_239) (___IO_FILE_171 *);// L441 -extern void (___IO_funlockfile_240) (___IO_FILE_172 *);// L441 -extern int (___IO_ftrylockfile_242) (___IO_FILE_171 *);// L442 -extern int (___IO_ftrylockfile_243) (___IO_FILE_172 *);// L442 -extern int (___IO_vfscanf_245) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_247) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_251) (___IO_FILE_171 * __restrict , const char * __restrict , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_252) (___IO_FILE_172 * __restrict , const char * __restrict , int * __restrict );// L459:L460 -extern int (___IO_vfprintf_254) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 -extern int (___IO_vfprintf_256) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 -extern int (___IO_vfprintf_260) ();// L461:L462 -extern ____ssize_t_49 (___IO_padn_261) (___IO_FILE_171 *, int , ____ssize_t_49 );// L463 -extern ____ssize_t_49 (___IO_padn_262) (___IO_FILE_172 *, int , ____ssize_t_49 );// L463 -extern __size_t_1 (___IO_sgetn_265) (___IO_FILE_171 *, void *, __size_t_1 );// L464 -extern __size_t_1 (___IO_sgetn_266) (___IO_FILE_172 *, void *, __size_t_1 );// L464 -extern ____off64_t_24 (___IO_seekoff_268) (___IO_FILE_171 *, ____off64_t_24 , int , int );// L466 -extern ____off64_t_24 (___IO_seekoff_269) (___IO_FILE_172 *, ____off64_t_24 , int , int );// L466 -extern ____off64_t_24 (___IO_seekpos_272) (___IO_FILE_171 *, ____off64_t_24 , int );// L467 -extern ____off64_t_24 (___IO_seekpos_273) (___IO_FILE_172 *, ____off64_t_24 , int );// L467 -extern void (___IO_free_backup_area_276) (___IO_FILE_171 *);// L469 -extern void (___IO_free_backup_area_277) (___IO_FILE_172 *);// L469 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern struct ___IO_FILE_99 * (__stdin_291);// L168 -extern struct ___IO_FILE_124 * (__stdin_292);// L168 -extern struct ___IO_FILE_99 * (__stdout_294);// L169 -extern struct ___IO_FILE_124 * (__stdout_295);// L169 -extern struct ___IO_FILE_99 * (__stderr_297);// L170 -extern struct ___IO_FILE_124 * (__stderr_298);// L170 -extern int (__remove_301) (const char * (____filename_300));// L178 -extern int (__rename_304) (const char * (____old_302), const char * (____new_303));// L180 -extern int (__renameat_309) (int ____oldfd_305, const char * (____old_306), int ____newfd_307, const char * (____new_308));// L185:L186 -extern __FILE_59 * ((__tmpfile_310) (void ));// L195 -extern __FILE_59 * ((__tmpfile_316) (void ));// L198 -extern __FILE_59 * ((__tmpfile_314) (void ));// L195 -extern __FILE_59 * ((__tmpfile_312) (void ));// L198 -extern char * ((__tmpnam_319) (char * (____s_318)));// L209 -extern char * ((__tmpnam_320) (char * (____s_318)));// L209 -extern char * ((__tmpnam_r_322) (char * (____s_321)));// L215 -extern char * ((__tmpnam_r_323) (char * (____s_321)));// L215 -extern char * ((__tempnam_326) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 -extern char * ((__tempnam_327) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 -extern int (__fclose_330) (__FILE_59 * (____stream_328));// L237 -extern int (__fclose_332) (__FILE_59 * (____stream_328));// L237 -extern int (__fflush_336) (__FILE_59 * (____stream_334));// L242 -extern int (__fflush_unlocked_340) (__FILE_59 * (____stream_338));// L252 -extern __FILE_59 * ((__fopen_344) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 -extern __FILE_59 * ((__fopen_346) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 -extern __FILE_59 * ((__fopen_354) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 -extern __FILE_59 * ((__fopen_356) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 -extern __FILE_59 * ((__freopen_362) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 -extern __FILE_59 * ((__freopen_368) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 -extern __FILE_59 * ((__freopen_366) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 -extern __FILE_59 * ((__freopen_364) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 -extern __FILE_59 * ((__fdopen_372) (int ____fd_370, const char * (____modes_371)));// L306 -extern __FILE_59 * ((__fdopen_374) (int ____fd_370, const char * (____modes_371)));// L306 -extern __FILE_59 * ((__fmemopen_379) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 -extern __FILE_59 * ((__fmemopen_381) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 -extern __FILE_59 * ((__open_memstream_385) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 -extern __FILE_59 * ((__open_memstream_387) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 -extern void (__setbuf_392) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 -extern void (__setbuf_394) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 -extern int (__setvbuf_401) (__FILE_59 * __restrict ____stream_396, char * __restrict ____buf_398, int ____modes_399, __size_t_1 ____n_400);// L336:L337 -extern void (__setbuffer_407) (__FILE_59 * __restrict ____stream_403, char * __restrict ____buf_405, __size_t_1 ____size_406);// L343:L344 -extern void (__setlinebuf_411) (__FILE_59 * (____stream_409));// L347 -extern int (__fprintf_416) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 -extern int (__fprintf_418) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 -extern int (__printf_421) (const char * __restrict ____format_420, ... );// L362 -extern int (__sprintf_424) (char * __restrict ____s_422, const char * __restrict ____format_423, ... );// L364:L365 -extern int (__vfprintf_430) (__FILE_59 * __restrict ____s_425, const char * __restrict ____format_427, ____gnuc_va_list_86 ____arg_428);// L371:L372 -extern int (__vprintf_437) (const char * __restrict ____format_434, ____gnuc_va_list_86 ____arg_435);// L377 -extern int (__vsprintf_443) (char * __restrict ____s_439, const char * __restrict ____format_440, ____gnuc_va_list_86 ____arg_441);// L379:L380 -extern int (__snprintf_448) (char * __restrict ____s_445, __size_t_1 ____maxlen_446, const char * __restrict ____format_447, ... );// L386:L388 -extern int (__vsnprintf_454) (char * __restrict ____s_449, __size_t_1 ____maxlen_450, const char * __restrict ____format_451, ____gnuc_va_list_86 ____arg_452);// L390:L392 -extern int (__vdprintf_460) (int ____fd_456, const char * __restrict ____fmt_457, ____gnuc_va_list_86 ____arg_458);// L412:L414 -extern int (__dprintf_464) (int ____fd_462, const char * __restrict ____fmt_463, ... );// L415:L416 -extern int (__fscanf_468) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__fscanf_470) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__fscanf_472) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__fscanf_474) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__scanf_477) (const char * __restrict ____format_476, ... );// L431 -extern int (__scanf_478) (const char * __restrict ____format_476, ... );// L431 -extern int (__sscanf_481) (const char * __restrict ____s_479, const char * __restrict ____format_480, ... );// L433:L434 - - - - - - - -extern int (__vfscanf_509) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 -extern int (__vfscanf_513) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 -extern int (__vscanf_520) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 -extern int (__vscanf_522) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 -extern int (__vsscanf_528) (const char * __restrict ____s_524, const char * __restrict ____format_525, ____gnuc_va_list_86 ____arg_526);// L483:L485 - - - - - -extern int (__fgetc_563) (__FILE_59 * (____stream_561));// L531 -extern int (__getc_567) (__FILE_59 * (____stream_565));// L532 -extern int (__getchar_569) (void );// L538 -extern int (__getc_unlocked_572) (__FILE_59 * (____stream_570));// L550 -extern int (__getchar_unlocked_574) (void );// L551 -extern int (__fgetc_unlocked_577) (__FILE_59 * (____stream_575));// L561 -extern int (__fputc_582) (int ____c_579, __FILE_59 * (____stream_580));// L573 -extern int (__fputc_584) (int ____c_579, __FILE_59 * (____stream_580));// L573 -extern int (__putc_589) (int ____c_586, __FILE_59 * (____stream_587));// L574 -extern int (__putchar_592) (int ____c_591);// L580 -extern int (__fputc_unlocked_596) (int ____c_593, __FILE_59 * (____stream_594));// L594 -extern int (__putc_unlocked_601) (int ____c_598, __FILE_59 * (____stream_599));// L602 -extern int (__putchar_unlocked_604) (int ____c_603);// L603 -extern int (__getw_607) (__FILE_59 * (____stream_605));// L610 -extern int (__putw_612) (int ____w_609, __FILE_59 * (____stream_610));// L613 -extern char * ((__fgets_618) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern char * ((__fgets_620) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern char * ((__fgets_622) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern char * ((__fgets_624) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern ____ssize_t_49 (____getdelim_631) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 -extern ____ssize_t_49 (____getdelim_635) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 -extern ____ssize_t_49 (__getdelim_644) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 -extern ____ssize_t_49 (__getdelim_648) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 -extern ____ssize_t_49 (__getline_656) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 -extern ____ssize_t_49 (__getline_660) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 -extern int (__fputs_667) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 -extern int (__fputs_669) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 -extern int (__puts_672) (const char * (____s_671));// L695 -extern int (__ungetc_676) (int ____c_673, __FILE_59 * (____stream_674));// L702 -extern int (__fseek_714) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 -extern int (__fseek_716) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 -extern long int (__ftell_720) (__FILE_59 * (____stream_718));// L754 -extern long int (__ftell_722) (__FILE_59 * (____stream_718));// L754 -extern void (__rewind_726) (__FILE_59 * (____stream_724));// L759 -extern int (__fseeko_733) (__FILE_59 * (____stream_728), ____off_t_23 ____off_730, int ____whence_732);// L773 -extern int (__fseeko_744) (__FILE_59 * (____stream_739), ____off64_t_24 ____off_741, int ____whence_743);// L781:L783 -extern ____off_t_23 (__ftello_758) (__FILE_59 * (____stream_737));// L778 -extern ____off_t_23 (__ftello_750) (__FILE_59 * (____stream_737));// L778 -extern int (__fgetpos_766) (__FILE_59 * __restrict ____stream_762, __fpos_t_287 * __restrict ____pos_764);// L798 -extern ____off64_t_24 (__ftello_754) (__FILE_59 * (____stream_748));// L784 -extern int (__fgetpos_778) (__FILE_59 * __restrict ____stream_774, __fpos_t_289 * __restrict ____pos_776);// L806:L807 -extern int (__fsetpos_786) (__FILE_59 * (____stream_770), const __fpos_t_287 * (____pos_772));// L803 -extern int (__fsetpos_790) (__FILE_59 * (____stream_782), const __fpos_t_289 * (____pos_784));// L808:L809 -extern void (__clearerr_796) (__FILE_59 * (____stream_794));// L826 -extern int (__feof_800) (__FILE_59 * (____stream_798));// L828 -extern int (__feof_802) (__FILE_59 * (____stream_798));// L828 -extern int (__ferror_806) (__FILE_59 * (____stream_804));// L830 -extern int (__ferror_808) (__FILE_59 * (____stream_804));// L830 -extern void (__clearerr_unlocked_812) (__FILE_59 * (____stream_810));// L835 -extern int (__feof_unlocked_816) (__FILE_59 * (____stream_814));// L836 -extern int (__feof_unlocked_818) (__FILE_59 * (____stream_814));// L836 -extern int (__ferror_unlocked_822) (__FILE_59 * (____stream_820));// L837 -extern int (__ferror_unlocked_824) (__FILE_59 * (____stream_820));// L837 -extern void (__perror_827) (const char * (____s_826));// L846 -extern void (__perror_828) (const char * (____s_826));// L846 -extern int __sys_nerr_829;// L26 - -extern int (__fileno_835) (__FILE_59 * (____stream_831));// L858 -extern int (__fileno_833) (__FILE_59 * (____stream_831));// L858 -extern int (__fileno_unlocked_841) (__FILE_59 * (____stream_837));// L863 -extern int (__fileno_unlocked_839) (__FILE_59 * (____stream_837));// L863 -extern __FILE_59 * ((__popen_845) (const char * (____command_843), const char * (____modes_844)));// L872 -extern __FILE_59 * ((__popen_847) (const char * (____command_843), const char * (____modes_844)));// L872 -extern int (__pclose_851) (__FILE_59 * (____stream_849));// L878 -extern char * ((__ctermid_854) (char * (____s_853)));// L884 -extern void (__flockfile_857) (__FILE_59 * (____stream_855));// L912 -extern int (__ftrylockfile_861) (__FILE_59 * (____stream_859));// L916 -extern int (__ftrylockfile_863) (__FILE_59 * (____stream_859));// L916 -extern void (__funlockfile_867) (__FILE_59 * (____stream_865));// L919 -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -extern int (____sprintf_chk_899) (char * __restrict ____s_895, int ____flag_896, __size_t_1 ____slen_897, const char * __restrict ____format_898, ... );// L23:L24 -extern int (____vsprintf_chk_906) (char * __restrict ____s_900, int ____flag_901, __size_t_1 ____slen_902, const char * __restrict ____format_903, ____gnuc_va_list_86 ____ap_904);// L25:L27 -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -extern int (____snprintf_chk_920) (char * __restrict ____s_915, __size_t_1 ____n_916, int ____flag_917, __size_t_1 ____slen_918, const char * __restrict ____format_919, ... );// L52:L54 -extern int (____vsnprintf_chk_928) (char * __restrict ____s_921, __size_t_1 ____n_922, int ____flag_923, __size_t_1 ____slen_924, const char * __restrict ____format_925, ____gnuc_va_list_86 ____ap_926);// L55:L57 -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -extern int (____fprintf_chk_943) (__FILE_59 * __restrict ____stream_939, int ____flag_941, const char * __restrict ____format_942, ... );// L85:L86 -extern int (____printf_chk_947) (int ____flag_945, const char * __restrict ____format_946, ... );// L87 -extern int (____vfprintf_chk_954) (__FILE_59 * __restrict ____stream_948, int ____flag_950, const char * __restrict ____format_951, ____gnuc_va_list_86 ____ap_952);// L88:L89 -extern int (____vprintf_chk_962) (int ____flag_958, const char * __restrict ____format_959, ____gnuc_va_list_86 ____ap_960);// L90:L91 -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -extern int (____dprintf_chk_984) (int ____fd_981, int ____flag_982, const char * __restrict ____fmt_983, ... );// L131:L132 -extern int (____vdprintf_chk_990) (int ____fd_985, int ____flag_986, const char * __restrict ____fmt_987, ____gnuc_va_list_86 ____arg_988);// L133:L135 -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -extern char * ((____fgets_chk_1004) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 -extern char * ((____fgets_chk_1006) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 -extern char * ((____fgets_chk_1008) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 -extern char * ((____fgets_alias_1014) (char * __restrict ____s_1010, int ____n_1011, __FILE_59 * __restrict ____stream_1012));// L243:L245 -extern char * ((____fgets_chk_warn_1021) (char * __restrict ____s_1016, __size_t_1 ____size_1017, int ____n_1018, __FILE_59 * __restrict ____stream_1019));// L246:L250 -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -static __inline unsigned int (____bswap_32_1158) (unsigned int ____bsx_1157) { - -if (__static_condition_default_1159) { - -{ -{ - - - -__static_type_error("invalid type found in return expression"); -} -} - - -} -} -static __inline ____uint64_t_13 (____bswap_64_1162) (____uint64_t_13 ____bsx_1160) { - -if (__static_condition_default_1164) { - -{ -{ - - - -__static_type_error("invalid type found in return expression"); -} -} - - -} -} -static __inline ____uint64_t_1112 (____bswap_64_1163) (____uint64_t_1112 ____bsx_1161) { - -if (__static_condition_default_1165) { - -{ -{ - - - -__static_type_error("invalid type found in return expression"); -} -} - - -} -} -union __wait_1177 ;// L66 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern __size_t_1 (____ctype_get_mb_cur_max_1201) (void );// L139 -extern __size_t_1093 (____ctype_get_mb_cur_max_1202) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_1203) (void );// L139 -extern __size_t_1093 (____ctype_get_mb_cur_max_1204) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_1205) (void );// L139 -extern __size_t_1093 (____ctype_get_mb_cur_max_1206) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_1207) (void );// L139 -extern __size_t_1093 (____ctype_get_mb_cur_max_1208) (void );// L139 -extern double (__atof_1210) (const char * (____nptr_1209));// L144:L145 -extern double (__atof_1211) (const char * (____nptr_1209));// L144:L145 -extern int (__atoi_1213) (const char * (____nptr_1212));// L147:L148 -extern int (__atoi_1214) (const char * (____nptr_1212));// L147:L148 -extern long int (__atol_1216) (const char * (____nptr_1215));// L150:L151 -extern long int (__atol_1217) (const char * (____nptr_1215));// L150:L151 -extern long long int (__atoll_1219) (const char * (____nptr_1218));// L157:L158 -extern long long int (__atoll_1220) (const char * (____nptr_1218));// L157:L158 -extern double (__strtod_1223) (const char * __restrict ____nptr_1221, char * (* __restrict ____endptr_1222));// L164:L166 -extern float (__strtof_1226) (const char * __restrict ____nptr_1224, char * (* __restrict ____endptr_1225));// L172:L173 -extern long double (__strtold_1229) (const char * __restrict ____nptr_1227, char * (* __restrict ____endptr_1228));// L175:L177 -extern long int (__strtol_1233) (const char * __restrict ____nptr_1230, char * (* __restrict ____endptr_1231), int ____base_1232);// L183:L185 -extern unsigned long int (__strtoul_1237) (const char * __restrict ____nptr_1234, char * (* __restrict ____endptr_1235), int ____base_1236);// L187:L189 -extern long long int (__strtoq_1241) (const char * __restrict ____nptr_1238, char * (* __restrict ____endptr_1239), int ____base_1240);// L195:L197 -extern unsigned long long int (__strtouq_1245) (const char * __restrict ____nptr_1242, char * (* __restrict ____endptr_1243), int ____base_1244);// L200:L202 -extern long long int (__strtoll_1249) (const char * __restrict ____nptr_1246, char * (* __restrict ____endptr_1247), int ____base_1248);// L209:L211 -extern long long int (__strtoll_1250) (const char * __restrict ____nptr_1246, char * (* __restrict ____endptr_1247), int ____base_1248);// L209:L211 -extern unsigned long long int (__strtoull_1254) (const char * __restrict ____nptr_1251, char * (* __restrict ____endptr_1252), int ____base_1253);// L214:L216 -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -__extension__/* no function due to type errors in the function prototype */ -extern char * ((__l64a_1259) (long int ____n_1258));// L305 -extern char * ((__l64a_1260) (long int ____n_1258));// L305 -extern long int (__a64l_1262) (const char * (____s_1261));// L308:L309 -extern long int (__a64l_1263) (const char * (____s_1261));// L308:L309 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -static __inline unsigned int (____bswap_32_1452) (unsigned int ____bsx_1451) { - -if (__static_condition_default_1453) { - -{ -{ - - - -__static_type_error("invalid type found in return expression"); -} -} - - -} -} -static __inline ____uint64_t_13 (____bswap_64_1456) (____uint64_t_13 ____bsx_1454) { - -if (__static_condition_default_1458) { - -{ -{ - - - -__static_type_error("invalid type found in return expression"); -} -} - - -} -} -static __inline ____uint64_t_1275 (____bswap_64_1457) (____uint64_t_1275 ____bsx_1455) { - -if (__static_condition_default_1459) { - -{ -{ - - - -__static_type_error("invalid type found in return expression"); -} -} - - -} -} -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -struct __timespec_1466 ;// L120 - -struct __timeval_1476 ;// L30 - -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern int (__select_1513) (int ____nfds_1502, __fd_set_1499 * __restrict ____readfds_1503, __fd_set_1499 * __restrict ____writefds_1505, __fd_set_1499 * __restrict ____exceptfds_1507, struct __timeval_1476 * __restrict ____timeout_1510);// L106:L109 -extern int (__select_1514) (int ____nfds_1502, __fd_set_1499 * __restrict ____readfds_1503, __fd_set_1499 * __restrict ____writefds_1505, __fd_set_1499 * __restrict ____exceptfds_1507, struct __forward_tag_reference_1509 * __restrict ____timeout_1512);// L106:L109 -extern int (__pselect_1529) (int ____nfds_1517, __fd_set_1499 * __restrict ____readfds_1518, __fd_set_1499 * __restrict ____writefds_1520, __fd_set_1499 * __restrict ____exceptfds_1522, const struct __timespec_1466 * __restrict ____timeout_1525, const ____sigset_t_1464 * __restrict ____sigmask_1528);// L118:L122 -extern int (__pselect_1530) (int ____nfds_1517, __fd_set_1499 * __restrict ____readfds_1518, __fd_set_1499 * __restrict ____writefds_1520, __fd_set_1499 * __restrict ____exceptfds_1522, const struct __forward_tag_reference_1524 * __restrict ____timeout_1527, const ____sigset_t_1464 * __restrict ____sigmask_1528);// L118:L122 -extern long int (____fdelt_chk_1534) (long int ____d_1533);// L24 -extern long int (____fdelt_warn_1536) (long int ____d_1535);// L25:L26 -extern unsigned int (__gnu_dev_major_1538) (unsigned long long int ____dev_1537);// L27:L28 -extern unsigned int (__gnu_dev_major_1539) (unsigned long long int ____dev_1537);// L27:L28 -extern unsigned int (__gnu_dev_minor_1541) (unsigned long long int ____dev_1540);// L30:L31 -extern unsigned long long int (__gnu_dev_makedev_1544) (unsigned int ____major_1542, unsigned int ____minor_1543);// L33:L35 -__extension__/* no function due to type errors in the function prototype */ -__extension__/* no function due to type errors in the function prototype */ -__extension__/* no function due to type errors in the function prototype */ -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -union __pthread_attr_t_1578 ;// L63 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern int (__rand_1609) (void );// L374 -extern void (__srand_1611) (unsigned int ____seed_1610);// L376 -extern int (__rand_r_1613) (unsigned int * (____seed_1612));// L381 -extern double (__drand48_1614) (void );// L389 -extern double (__erand48_1616) (unsigned short int ____xsubi_1615[3]);// L390 -extern long int (__lrand48_1617) (void );// L393 -extern long int (__nrand48_1619) (unsigned short int ____xsubi_1618[3]);// L394:L395 -extern long int (__mrand48_1620) (void );// L398 -extern long int (__jrand48_1622) (unsigned short int ____xsubi_1621[3]);// L399:L400 -extern void (__srand48_1624) (long int ____seedval_1623);// L403 -extern unsigned short int * ((__seed48_1626) (unsigned short int ____seed16v_1625[3]));// L404:L405 -extern void (__lcong48_1628) (unsigned short int ____param_1627[7]);// L406 -extern void * ((__malloc_1631) (__size_t_1 ____size_1629));// L466 -extern void * ((__malloc_1632) (__size_t_1093 ____size_1630));// L466 -extern void * ((__malloc_1633) (__size_t_1 ____size_1629));// L466 -extern void * ((__malloc_1634) (__size_t_1093 ____size_1630));// L466 -extern void * ((__calloc_1639) (__size_t_1 ____nmemb_1635, __size_t_1 ____size_1637));// L468:L469 -extern void * ((__calloc_1640) (__size_t_1093 ____nmemb_1636, __size_t_1093 ____size_1638));// L468:L469 -extern void * ((__calloc_1641) (__size_t_1 ____nmemb_1635, __size_t_1 ____size_1637));// L468:L469 -extern void * ((__calloc_1642) (__size_t_1093 ____nmemb_1636, __size_t_1093 ____size_1638));// L468:L469 -extern void * ((__realloc_1646) (void * (____ptr_1643), __size_t_1 ____size_1644));// L480:L481 -extern void * ((__realloc_1647) (void * (____ptr_1643), __size_t_1093 ____size_1645));// L480:L481 -extern void (__free_1649) (void * (____ptr_1648));// L483 -extern void (__cfree_1651) (void * (____ptr_1650));// L488 -extern void * ((__alloca_1654) (__size_t_1 ____size_1652));// L32 -extern void * ((__alloca_1655) (__size_t_1093 ____size_1653));// L32 -extern void * ((__valloc_1658) (__size_t_1 ____size_1656));// L498 -extern void * ((__valloc_1659) (__size_t_1093 ____size_1657));// L498 -extern void * ((__valloc_1660) (__size_t_1 ____size_1656));// L498 -extern void * ((__valloc_1661) (__size_t_1093 ____size_1657));// L498 -extern int (__posix_memalign_1667) (void * (* (____memptr_1662)), __size_t_1 ____alignment_1663, __size_t_1 ____size_1665);// L503:L504 -extern int (__posix_memalign_1668) (void * (* (____memptr_1662)), __size_t_1093 ____alignment_1664, __size_t_1093 ____size_1666);// L503:L504 -extern int (__posix_memalign_1669) (void * (* (____memptr_1662)), __size_t_1 ____alignment_1663, __size_t_1 ____size_1665);// L503:L504 -extern int (__posix_memalign_1670) (void * (* (____memptr_1662)), __size_t_1093 ____alignment_1664, __size_t_1093 ____size_1666);// L503:L504 -extern void * ((__aligned_alloc_1675) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 -extern void * ((__aligned_alloc_1676) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 -extern void * ((__aligned_alloc_1677) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 -extern void * ((__aligned_alloc_1678) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 -extern void * ((__aligned_alloc_1679) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 -extern void * ((__aligned_alloc_1680) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 -extern void * ((__aligned_alloc_1681) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 -extern void * ((__aligned_alloc_1682) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 -extern void (__abort_1683) (void );// L515 -extern int (__atexit_1685) (void (* (____func_1684)) (void ));// L519 -extern int (__at_quick_exit_1687) (void (* (____func_1686)) (void ));// L527 -extern int (__on_exit_1692) (void (* (____func_1690)) (int ____status_1688, void * (____arg_1689)), void * (____arg_1691));// L535:L536 -extern void (__exit_1694) (int ____status_1693);// L543 -extern void (__exit_1695) (int ____status_1693);// L543 -extern void (__quick_exit_1697) (int ____status_1696);// L549 -extern void (___Exit_1699) (int ____status_1698);// L557 -extern char * ((__getenv_1701) (const char * (____name_1700)));// L564 -extern char * ((__getenv_1702) (const char * (____name_1700)));// L564 -extern int (__putenv_1704) (char * (____string_1703));// L578 -extern int (__setenv_1708) (const char * (____name_1705), const char * (____value_1706), int ____replace_1707);// L584:L585 -extern int (__unsetenv_1710) (const char * (____name_1709));// L588 -extern int (__clearenv_1711) (void );// L595 -extern char * ((__mktemp_1713) (char * (____template_1712)));// L606 -extern int (__mkstemp_1716) (char * (____template_1714));// L619 -extern int (__mkstemp_1718) (char * (____template_1714));// L619 -extern int (__mkstemp_1717) (char * (____template_1715));// L622:L623 -extern int (__mkstemp_1719) (char * (____template_1715));// L622:L623 -extern int (__mkstemps_1724) (char * (____template_1720), int ____suffixlen_1721);// L641 -extern int (__mkstemps_1725) (char * (____template_1722), int ____suffixlen_1723);// L644:L645 -extern int (__mkstemps_1726) (char * (____template_1720), int ____suffixlen_1721);// L641 -extern int (__mkstemps_1727) (char * (____template_1722), int ____suffixlen_1723);// L644:L645 -extern char * ((__mkdtemp_1729) (char * (____template_1728)));// L662 -extern char * ((__mkdtemp_1730) (char * (____template_1728)));// L662 -extern int (__system_1732) (const char * (____command_1731));// L716 -extern int (__system_1733) (const char * (____command_1731));// L716 -extern int (__system_1734) (const char * (____command_1731));// L716 -extern int (__system_1735) (const char * (____command_1731));// L716 -extern char * ((__realpath_1738) (const char * __restrict ____name_1736, char * __restrict ____resolved_1737));// L733:L734 -extern char * ((__realpath_1739) (const char * __restrict ____name_1736, char * __restrict ____resolved_1737));// L733:L734 -// typedef moved to top of scope -extern void * ((__bsearch_1751) (const void * (____key_1741), const void * (____base_1742), __size_t_1 ____nmemb_1743, __size_t_1 ____size_1745, ____compar_fn_t_1740 ____compar_1747));// L754:L756 -extern void * ((__bsearch_1752) (const void * (____key_1741), const void * (____base_1742), __size_t_1093 ____nmemb_1744, __size_t_1093 ____size_1746, ____compar_fn_t_1740 ____compar_1747));// L754:L756 -extern void * ((__bsearch_1755) (const void * (____key_1741), const void * (____base_1742), __size_t_1 ____nmemb_1743, __size_t_1 ____size_1745, ____compar_fn_t_1740 ____compar_1747));// L754:L756 -extern void * ((__bsearch_1756) (const void * (____key_1741), const void * (____base_1742), __size_t_1093 ____nmemb_1744, __size_t_1093 ____size_1746, ____compar_fn_t_1740 ____compar_1747));// L754:L756 -/* no function due to type errors in the function prototype */ -extern void (__qsort_1784) (void * (____base_1777), __size_t_1 ____nmemb_1778, __size_t_1 ____size_1780, ____compar_fn_t_1740 ____compar_1782);// L764:L765 -extern void (__qsort_1786) (void * (____base_1777), __size_t_1093 ____nmemb_1779, __size_t_1093 ____size_1781, ____compar_fn_t_1740 ____compar_1782);// L764:L765 -extern void (__qsort_1788) (void * (____base_1777), __size_t_1 ____nmemb_1778, __size_t_1 ____size_1780, ____compar_fn_t_1740 ____compar_1782);// L764:L765 -extern void (__qsort_1790) (void * (____base_1777), __size_t_1093 ____nmemb_1779, __size_t_1093 ____size_1781, ____compar_fn_t_1740 ____compar_1782);// L764:L765 -extern int (__abs_1793) (int ____x_1792);// L774 -extern int (__abs_1794) (int ____x_1792);// L774 -extern long int (__labs_1796) (long int ____x_1795);// L775 -extern long int (__labs_1797) (long int ____x_1795);// L775 -extern long long int (__llabs_1799) (long long int ____x_1798);// L779:L780 -extern long long int (__llabs_1800) (long long int ____x_1798);// L779:L780 -extern __div_t_1190 (__div_1803) (int ____numer_1801, int ____denom_1802);// L788:L789 -extern __div_t_1190 (__div_1804) (int ____numer_1801, int ____denom_1802);// L788:L789 -extern __ldiv_t_1195 (__ldiv_1807) (long int ____numer_1805, long int ____denom_1806);// L790:L791 -extern __ldiv_t_1195 (__ldiv_1809) (long int ____numer_1805, long int ____denom_1806);// L790:L791 -extern __lldiv_t_1200 (__lldiv_1813) (long long int ____numer_1811, long long int ____denom_1812);// L796:L798 -extern __lldiv_t_1200 (__lldiv_1815) (long long int ____numer_1811, long long int ____denom_1812);// L796:L798 -extern char * ((__ecvt_1821) (double ____value_1817, int ____ndigit_1818, int * __restrict ____decpt_1819, int * __restrict ____sign_1820));// L811:L812 -extern char * ((__ecvt_1822) (double ____value_1817, int ____ndigit_1818, int * __restrict ____decpt_1819, int * __restrict ____sign_1820));// L811:L812 -extern char * ((__fcvt_1827) (double ____value_1823, int ____ndigit_1824, int * __restrict ____decpt_1825, int * __restrict ____sign_1826));// L817:L818 -extern char * ((__fcvt_1828) (double ____value_1823, int ____ndigit_1824, int * __restrict ____decpt_1825, int * __restrict ____sign_1826));// L817:L818 -extern char * ((__gcvt_1832) (double ____value_1829, int ____ndigit_1830, char * (____buf_1831)));// L823:L824 -extern char * ((__gcvt_1833) (double ____value_1829, int ____ndigit_1830, char * (____buf_1831)));// L823:L824 -extern char * ((__qecvt_1838) (long double ____value_1834, int ____ndigit_1835, int * __restrict ____decpt_1836, int * __restrict ____sign_1837));// L829:L831 -extern char * ((__qecvt_1839) (long double ____value_1834, int ____ndigit_1835, int * __restrict ____decpt_1836, int * __restrict ____sign_1837));// L829:L831 -extern char * ((__qfcvt_1844) (long double ____value_1840, int ____ndigit_1841, int * __restrict ____decpt_1842, int * __restrict ____sign_1843));// L832:L834 -extern char * ((__qfcvt_1845) (long double ____value_1840, int ____ndigit_1841, int * __restrict ____decpt_1842, int * __restrict ____sign_1843));// L832:L834 -extern char * ((__qgcvt_1849) (long double ____value_1846, int ____ndigit_1847, char * (____buf_1848)));// L835:L836 -extern char * ((__qgcvt_1850) (long double ____value_1846, int ____ndigit_1847, char * (____buf_1848)));// L835:L836 -extern int (__ecvt_r_1858) (double ____value_1851, int ____ndigit_1852, int * __restrict ____decpt_1853, int * __restrict ____sign_1854, char * __restrict ____buf_1855, __size_t_1 ____len_1856);// L841:L843 -extern int (__ecvt_r_1859) (double ____value_1851, int ____ndigit_1852, int * __restrict ____decpt_1853, int * __restrict ____sign_1854, char * __restrict ____buf_1855, __size_t_1093 ____len_1857);// L841:L843 -extern int (__fcvt_r_1867) (double ____value_1860, int ____ndigit_1861, int * __restrict ____decpt_1862, int * __restrict ____sign_1863, char * __restrict ____buf_1864, __size_t_1 ____len_1865);// L844:L846 -extern int (__fcvt_r_1868) (double ____value_1860, int ____ndigit_1861, int * __restrict ____decpt_1862, int * __restrict ____sign_1863, char * __restrict ____buf_1864, __size_t_1093 ____len_1866);// L844:L846 -extern int (__qecvt_r_1876) (long double ____value_1869, int ____ndigit_1870, int * __restrict ____decpt_1871, int * __restrict ____sign_1872, char * __restrict ____buf_1873, __size_t_1 ____len_1874);// L848:L851 -extern int (__qecvt_r_1877) (long double ____value_1869, int ____ndigit_1870, int * __restrict ____decpt_1871, int * __restrict ____sign_1872, char * __restrict ____buf_1873, __size_t_1093 ____len_1875);// L848:L851 -extern int (__qfcvt_r_1885) (long double ____value_1878, int ____ndigit_1879, int * __restrict ____decpt_1880, int * __restrict ____sign_1881, char * __restrict ____buf_1882, __size_t_1 ____len_1883);// L852:L855 -extern int (__qfcvt_r_1886) (long double ____value_1878, int ____ndigit_1879, int * __restrict ____decpt_1880, int * __restrict ____sign_1881, char * __restrict ____buf_1882, __size_t_1093 ____len_1884);// L852:L855 -extern int (__mblen_1890) (const char * (____s_1887), __size_t_1 ____n_1888);// L862 -extern int (__mblen_1891) (const char * (____s_1887), __size_t_1093 ____n_1889);// L862 -extern int (__mblen_1892) (const char * (____s_1887), __size_t_1 ____n_1888);// L862 -extern int (__mblen_1893) (const char * (____s_1887), __size_t_1093 ____n_1889);// L862 -extern int (__mbtowc_1898) (__wchar_t_1094 * __restrict ____pwc_1894, const char * __restrict ____s_1895, __size_t_1 ____n_1896);// L865:L866 -extern int (__mbtowc_1899) (__wchar_t_1094 * __restrict ____pwc_1894, const char * __restrict ____s_1895, __size_t_1093 ____n_1897);// L865:L866 -extern int (__wctomb_1902) (char * (____s_1900), __wchar_t_1094 ____wchar_1901);// L869 -extern __size_t_1 (__mbstowcs_1907) (__wchar_t_1094 * __restrict ____pwcs_1903, const char * __restrict ____s_1904, __size_t_1 ____n_1905);// L873:L874 -extern __size_t_1093 (__mbstowcs_1908) (__wchar_t_1094 * __restrict ____pwcs_1903, const char * __restrict ____s_1904, __size_t_1093 ____n_1906);// L873:L874 -extern __size_t_1 (__wcstombs_1913) (char * __restrict ____s_1909, const __wchar_t_1094 * __restrict ____pwcs_1910, __size_t_1 ____n_1911);// L876:L878 -extern __size_t_1093 (__wcstombs_1914) (char * __restrict ____s_1909, const __wchar_t_1094 * __restrict ____pwcs_1910, __size_t_1093 ____n_1912);// L876:L878 -extern int (__rpmatch_1917) (const char * (____response_1915));// L887 -extern int (__rpmatch_1916) (const char * (____response_1915));// L887 -extern int (__getsubopt_1922) (char * (* __restrict ____optionp_1918), char * const * __restrict ____tokens_1919, char * (* __restrict ____valuep_1920));// L898:L901 -extern int (__getsubopt_1921) (char * (* __restrict ____optionp_1918), char * const * __restrict ____tokens_1919, char * (* __restrict ____valuep_1920));// L898:L901 -extern int (__getloadavg_1925) (double ____loadavg_1923[], int ____nelem_1924);// L950:L951 -/* no function due to type errors in the function prototype */ -extern char * ((____realpath_chk_1931) (const char * __restrict ____name_1927, char * __restrict ____resolved_1928, __size_t_1 ____resolvedlen_1929));// L23:L25 -extern char * ((____realpath_chk_1932) (const char * __restrict ____name_1927, char * __restrict ____resolved_1928, __size_t_1093 ____resolvedlen_1930));// L23:L25 -extern char * ((____realpath_alias_1935) (const char * __restrict ____name_1933, char * __restrict ____resolved_1934));// L26:L28 -extern char * ((____realpath_chk_warn_1940) (const char * __restrict ____name_1936, char * __restrict ____resolved_1937, __size_t_1 ____resolvedlen_1938));// L29:L34 -extern char * ((____realpath_chk_warn_1941) (const char * __restrict ____name_1936, char * __restrict ____resolved_1937, __size_t_1093 ____resolvedlen_1939));// L29:L34 -/* no function due to type errors in the function prototype */ -extern int (____ptsname_r_chk_1951) (int ____fd_1945, char * (____buf_1946), __size_t_1 ____buflen_1947, __size_t_1 ____nreal_1949);// L52:L53 -extern int (____ptsname_r_chk_1952) (int ____fd_1945, char * (____buf_1946), __size_t_1093 ____buflen_1948, __size_t_1093 ____nreal_1950);// L52:L53 -extern int (____ptsname_r_alias_1957) (int ____fd_1953, char * (____buf_1954), __size_t_1 ____buflen_1955);// L54:L56 -extern int (____ptsname_r_alias_1958) (int ____fd_1953, char * (____buf_1954), __size_t_1093 ____buflen_1956);// L54:L56 -extern int (____ptsname_r_chk_warn_1965) (int ____fd_1959, char * (____buf_1960), __size_t_1 ____buflen_1961, __size_t_1 ____nreal_1963);// L57:L61 -extern int (____ptsname_r_chk_warn_1966) (int ____fd_1959, char * (____buf_1960), __size_t_1093 ____buflen_1962, __size_t_1093 ____nreal_1964);// L57:L61 -/* no function due to type errors in the function prototype */ -extern int (____wctomb_chk_1977) (char * (____s_1973), __wchar_t_1094 ____wchar_1974, __size_t_1 ____buflen_1975);// L77:L78 -extern int (____wctomb_chk_1978) (char * (____s_1973), __wchar_t_1094 ____wchar_1974, __size_t_1093 ____buflen_1976);// L77:L78 -extern int (____wctomb_alias_1981) (char * (____s_1979), __wchar_t_1094 ____wchar_1980);// L79:L80 -/* no function due to type errors in the function prototype */ -extern __size_t_1 (____mbstowcs_chk_1990) (__wchar_t_1094 * __restrict ____dst_1984, const char * __restrict ____src_1985, __size_t_1 ____len_1986, __size_t_1 ____dstlen_1988);// L98:L100 -extern __size_t_1093 (____mbstowcs_chk_1991) (__wchar_t_1094 * __restrict ____dst_1984, const char * __restrict ____src_1985, __size_t_1093 ____len_1987, __size_t_1093 ____dstlen_1989);// L98:L100 -extern __size_t_1 (____mbstowcs_alias_1996) (__wchar_t_1094 * __restrict ____dst_1992, const char * __restrict ____src_1993, __size_t_1 ____len_1994);// L101:L104 -extern __size_t_1093 (____mbstowcs_alias_1997) (__wchar_t_1094 * __restrict ____dst_1992, const char * __restrict ____src_1993, __size_t_1093 ____len_1995);// L101:L104 -extern __size_t_1 (____mbstowcs_chk_warn_2004) (__wchar_t_1094 * __restrict ____dst_1998, const char * __restrict ____src_1999, __size_t_1 ____len_2000, __size_t_1 ____dstlen_2002);// L105:L110 -extern __size_t_1093 (____mbstowcs_chk_warn_2005) (__wchar_t_1094 * __restrict ____dst_1998, const char * __restrict ____src_1999, __size_t_1093 ____len_2001, __size_t_1093 ____dstlen_2003);// L105:L110 -/* no function due to type errors in the function prototype */ -extern __size_t_1 (____wcstombs_chk_2016) (char * __restrict ____dst_2010, const __wchar_t_1094 * __restrict ____src_2011, __size_t_1 ____len_2012, __size_t_1 ____dstlen_2014);// L130:L132 -extern __size_t_1093 (____wcstombs_chk_2017) (char * __restrict ____dst_2010, const __wchar_t_1094 * __restrict ____src_2011, __size_t_1093 ____len_2013, __size_t_1093 ____dstlen_2015);// L130:L132 -extern __size_t_1 (____wcstombs_alias_2022) (char * __restrict ____dst_2018, const __wchar_t_1094 * __restrict ____src_2019, __size_t_1 ____len_2020);// L133:L136 -extern __size_t_1093 (____wcstombs_alias_2023) (char * __restrict ____dst_2018, const __wchar_t_1094 * __restrict ____src_2019, __size_t_1093 ____len_2021);// L133:L136 -extern __size_t_1 (____wcstombs_chk_warn_2030) (char * __restrict ____dst_2024, const __wchar_t_1094 * __restrict ____src_2025, __size_t_1 ____len_2026, __size_t_1 ____dstlen_2028);// L137:L141 -extern __size_t_1093 (____wcstombs_chk_warn_2031) (char * __restrict ____dst_2024, const __wchar_t_1094 * __restrict ____src_2025, __size_t_1093 ____len_2027, __size_t_1093 ____dstlen_2029);// L137:L141 -/* no function due to type errors in the function prototype */ -int (__main_2042) (int __argc_2036, char * (* (__argv_2037))) { - -if (__static_condition_default_2045) { - -{ -{ - - - -int __r_2038= rand( ) % 2;// L6 - -char * (__p_2040);// L7 - -char __c_2041;// L8 - -__static_type_error("type error : no valid expression"); // L10 -if (__static_condition_default_2046) { -switch ( __c_2041 )// L12 -{ -case 'W' : -{ - - - -if (__static_condition_default_2047) { -if ( __r_2038 )// L15 -{ - __p_2040 = * __argv_2037 ++ , -- __argc_2036 ; // L16 -} -} -break ; // L17 -} -} -} -if (__static_condition_default_2048) { -switch ( __c_2041 )// L12 -{ -case 'W' : -{ - - - -if (__static_condition_default_2049) { -if ( __r_2038 )// L15 -{ - __p_2040 = * __argv_2037 ++ , -- __argc_2036 ; // L16 -} -} -break ; // L17 -} -case 'U' : -{ - - - -if ( ! __p_2040 )// L20 -{ - -{ -goto expected_hwif_error_0; -} -} -break ; // L22 -} -case 'R' : -{ - - - -if ( ! __p_2040 )// L27 -{ - -{ -goto expected_hwif_error_0; -} -} - -expected_hwif_error_0: -{ -if (__static_condition_default_2050) { - __printf_421 ("expected hwif value") ; // L32 -} -if (__static_condition_default_2051) { -__static_type_error("type error") ; // L32 -} -} -} -} -} -if (__static_condition_default_2052) { -switch ( __c_2041 )// L12 -{ -case 'W' : -{ - - - -if (__static_condition_default_2053) { -if ( __r_2038 )// L15 -{ - __p_2040 = * __argv_2037 ++ , -- __argc_2036 ; // L16 -} -} -break ; // L17 -} -case 'R' : -{ - - - -if ( ! __p_2040 )// L27 -{ - -{ -goto expected_hwif_error_1; -} -} - -expected_hwif_error_1: -{ -if (__static_condition_default_2054) { - __printf_421 ("expected hwif value") ; // L32 -} -if (__static_condition_default_2055) { -__static_type_error("type error") ; // L32 -} -} -} -} -} -if (__static_condition_default_2056) { -switch ( __c_2041 )// L12 -{ -case 'W' : -{ - - - -if (__static_condition_default_2057) { -if ( __r_2038 )// L15 -{ - __p_2040 = * __argv_2037 ++ , -- __argc_2036 ; // L16 -} -} -break ; // L17 -} -case 'U' : -{ - - - -if ( ! __p_2040 )// L20 -{ - -__static_type_error("invalid goto label"); -} -break ; // L22 -} -} -} -return 0 ;// L36 -} -} - - -} -} -int (__main_2043) (int __argc_2036, char * (* (__argv_2037))) { - -if (__static_condition_default_2058) { - -{ -{ - - - -int __r_2038= rand( ) % 2;// L6 - -char * (__p_2040);// L7 - -char __c_2041;// L8 - -__static_type_error("type error : no valid expression"); // L10 -if (__static_condition_default_2059) { -switch ( __c_2041 )// L12 -{ -case 'W' : -{ - - - -if (__static_condition_default_2060) { -if ( __r_2038 )// L15 -{ - __p_2040 = * __argv_2037 ++ , -- __argc_2036 ; // L16 -} -} -break ; // L17 -} -} -} -if (__static_condition_default_2061) { -switch ( __c_2041 )// L12 -{ -case 'W' : -{ - - - -if (__static_condition_default_2062) { -if ( __r_2038 )// L15 -{ - __p_2040 = * __argv_2037 ++ , -- __argc_2036 ; // L16 -} -} -break ; // L17 -} -case 'U' : -{ - - - -if ( ! __p_2040 )// L20 -{ - -{ -goto expected_hwif_error_2; -} -} -break ; // L22 -} -case 'R' : -{ - - - -if ( ! __p_2040 )// L27 -{ - -{ -goto expected_hwif_error_2; -} -} - -expected_hwif_error_2: -{ -if (__static_condition_default_2063) { - __printf_421 ("expected hwif value") ; // L32 -} -if (__static_condition_default_2064) { -__static_type_error("type error") ; // L32 -} -} -} -} -} -if (__static_condition_default_2065) { -switch ( __c_2041 )// L12 -{ -case 'W' : -{ - - - -if (__static_condition_default_2066) { -if ( __r_2038 )// L15 -{ - __p_2040 = * __argv_2037 ++ , -- __argc_2036 ; // L16 -} -} -break ; // L17 -} -case 'R' : -{ - - - -if ( ! __p_2040 )// L27 -{ - -{ -goto expected_hwif_error_3; -} -} - -expected_hwif_error_3: -{ -if (__static_condition_default_2067) { - __printf_421 ("expected hwif value") ; // L32 -} -if (__static_condition_default_2068) { -__static_type_error("type error") ; // L32 -} -} -} -} -} -if (__static_condition_default_2069) { -switch ( __c_2041 )// L12 -{ -case 'W' : -{ - - - -if (__static_condition_default_2070) { -if ( __r_2038 )// L15 -{ - __p_2040 = * __argv_2037 ++ , -- __argc_2036 ; // L16 -} -} -break ; // L17 -} -case 'U' : -{ - - - -if ( ! __p_2040 )// L20 -{ - -__static_type_error("invalid goto label"); -} -break ; // L22 -} -} -} -return 0 ;// L36 -} -} - - -} -} -int (__main_2044) (int __argc_2036, char * (* (__argv_2037))) { - -if (__static_condition_default_2071) { - -{ -{ - - - -if (__static_condition_default_2039) { -__static_type_error("invalid declaration of r under this presence condition"); -} - -char * (__p_2040);// L7 - -char __c_2041;// L8 - -__static_type_error("type error : no valid expression"); // L10 -if (__static_condition_default_2072) { -switch ( __c_2041 )// L12 -{ -case 'W' : -{ - - - -__static_type_error("invalid type found in if statement"); -break ; // L17 -} -} -} -if (__static_condition_default_2073) { -switch ( __c_2041 )// L12 -{ -case 'W' : -{ - - - -__static_type_error("invalid type found in if statement"); -break ; // L17 -} -case 'U' : -{ - - - -if ( ! __p_2040 )// L20 -{ - -{ -goto expected_hwif_error_4; -} -} -break ; // L22 -} -case 'R' : -{ - - - -if ( ! __p_2040 )// L27 -{ - -{ -goto expected_hwif_error_4; -} -} - -expected_hwif_error_4: -{ -if (__static_condition_default_2074) { - __printf_421 ("expected hwif value") ; // L32 -} -if (__static_condition_default_2075) { -__static_type_error("type error") ; // L32 -} -} -} -} -} -if (__static_condition_default_2076) { -switch ( __c_2041 )// L12 -{ -case 'W' : -{ - - - -__static_type_error("invalid type found in if statement"); -break ; // L17 -} -case 'R' : -{ - - - -if ( ! __p_2040 )// L27 -{ - -{ -goto expected_hwif_error_5; -} -} - -expected_hwif_error_5: -{ -if (__static_condition_default_2077) { - __printf_421 ("expected hwif value") ; // L32 -} -if (__static_condition_default_2078) { -__static_type_error("type error") ; // L32 -} -} -} -} -} -if (__static_condition_default_2079) { -switch ( __c_2041 )// L12 -{ -case 'W' : -{ - - - -__static_type_error("invalid type found in if statement"); -break ; // L17 -} -case 'U' : -{ - - - -if ( ! __p_2040 )// L20 -{ - -__static_type_error("invalid goto label"); -} -break ; // L22 -} -} -} -return 0 ;// L36 -} -} - - -} -} - diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.clangres index 8ddfad93..e69de29b 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.clangres @@ -1,7 +0,0 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.c:3063:2: warning: Value stored to '__p_2040' is never read [deadcode.DeadStores] - __p_2040 = * __argv_2037 ++ , -- __argc_2036 ; // L16 - ^ ~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.c:3230:2: warning: Value stored to '__p_2040' is never read [deadcode.DeadStores] - __p_2040 = * __argv_2037 ++ , -- __argc_2036 ; // L16 - ^ ~~~~~~~~~~~~~~~~~~ -2 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.inferres index 8548cdd0..70df76f3 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.inferres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.inferres @@ -1,51 +1,50 @@ -BUSYBOX/061fd0a353e.desugared.c:3063: error: Dead Store - The value written to &__argc_2036 (type int) is never used. - 3061. if ( __r_2038 )// L15 - 3062. { - 3063. __p_2040 = * __argv_2037 ++ , -- __argc_2036 ; // L16 - ^ - 3064. } - 3065. } +BUSYBOX/061fd0a353e.desugared.c:36: error: Uninitialized Value + The value read from __c_3 was never initialized. + 34. switch ( __c_3 )// L12 + 35. { + 36. case 'W' : + ^ + 37. { + 38. -BUSYBOX/061fd0a353e.desugared.c:3063: error: Dead Store - The value written to &__argv_2037 (type char**) is never used. - 3061. if ( __r_2038 )// L15 - 3062. { - 3063. __p_2040 = * __argv_2037 ++ , -- __argc_2036 ; // L16 - ^ - 3064. } - 3065. } +BUSYBOX/061fd0a353e.desugared.c:44: error: Uninitialized Value + The value read from __c_3 was never initialized. + 42. break ; // L17 + 43. } + 44. case 'U' : + ^ + 45. { + 46. -BUSYBOX/061fd0a353e.desugared.c:2941: error: Uninitialized Value - The value read from __c_2041 was never initialized. - 2939. switch ( __c_2041 )// L12 - 2940. { - 2941. case 'W' : - ^ - 2942. { - 2943. +BUSYBOX/061fd0a353e.desugared.c:58: error: Uninitialized Value + The value read from __c_3 was never initialized. + 56. break ; // L22 + 57. } + 58. case 'R' : + ^ + 59. { + 60. -BUSYBOX/061fd0a353e.desugared.c:2959: error: Uninitialized Value - The value read from __c_2041 was never initialized. - 2957. switch ( __c_2041 )// L12 - 2958. { - 2959. case 'W' : - ^ - 2960. { - 2961. +BUSYBOX/061fd0a353e.desugared.c:49: error: Uninitialized Value + The value read from __p_2 was never initialized. + 47. + 48. + 49. if ( ! __p_2 )// L20 + ^ + 50. { + 51. -BUSYBOX/061fd0a353e.desugared.c:2972: error: Uninitialized Value - The value read from __c_2041 was never initialized. - 2970. break ; // L17 - 2971. } - 2972. case 'U' : - ^ - 2973. { - 2974. +BUSYBOX/061fd0a353e.desugared.c:63: error: Uninitialized Value + The value read from __p_2 was never initialized. + 61. + 62. + 63. if ( ! __p_2 )// L27 + ^ + 64. { + 65. -Found 40 issues (console output truncated to 5, see '/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/infer-out/report.txt' for the full list) +Found 5 issues (console output truncated to 5, see '/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/infer-out/report.txt' for the full list) Issue Type(ISSUED_TYPE_ID): # - Uninitialized Value(UNINITIALIZED_VALUE): 36 - Dead Store(DEAD_STORE): 4 + Uninitialized Value(UNINITIALIZED_VALUE): 5 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/192c35f6eb2.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/192c35f6eb2.desugared.c index 5bc36907..289e620b 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/192c35f6eb2.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/192c35f6eb2.desugared.c @@ -7,308 +7,308 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_198; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_686; +extern const bool __static_condition_default_235; extern const bool __static_condition_default_380; -extern const bool __static_condition_default_315; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_1383; -extern const bool __static_condition_default_1396; -extern const bool __static_condition_default_290; -extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_761; -extern const bool __static_condition_default_1391; -extern const bool __static_condition_default_382; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_872; -extern const bool __static_condition_default_632; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_123; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_1378; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_1395; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_559; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_187; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_1372; +extern const bool __static_condition_default_779; extern const bool __static_condition_default_408; +extern const bool __static_condition_default_963; +extern const bool __static_condition_default_1402; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_550; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_702; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_568; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_872; extern const bool __static_condition_default_375; -extern const bool __static_condition_default_650; +extern const bool __static_condition_default_1058; extern const bool __static_condition_default_432; -extern const bool __static_condition_default_347; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_461; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_204; -extern const bool __static_condition_default_1324; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_789; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_248; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_807; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_395; extern const bool __static_condition_default_736; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_677; -extern const bool __static_condition_default_1367; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_613; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_755; -extern const bool __static_condition_default_780; -extern const bool __static_condition_default_702; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_1397; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_1318; -extern const bool __static_condition_default_1325; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_787; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_779; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_317; -extern const bool __static_condition_default_793; -extern const bool __static_condition_default_1385; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_1387; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_709; -extern const bool __static_condition_default_402; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_217; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_583; -extern const bool __static_condition_default_701; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_1348; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_564; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_670; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_875; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_1389; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_638; -extern const bool __static_condition_default_363; +extern const bool __static_condition_default_1073; extern const bool __static_condition_default_955; -extern const bool __static_condition_default_438; -extern const bool __static_condition_default_1401; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_296; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_887; extern const bool __static_condition_default_357; -extern const bool __static_condition_default_53; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_1331; -extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_894; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_735; extern const bool __static_condition_default_803; -extern const bool __static_condition_default_393; -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_311; -extern const bool __static_condition_default_846; -extern const bool __static_condition_default_963; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_1092; -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_769; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_1100; -extern const bool __static_condition_default_693; -extern const bool __static_condition_default_1319; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_1098; -extern const bool __static_condition_default_1394; -extern const bool __static_condition_default_559; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_419; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_1347; -extern const bool __static_condition_default_333; -extern const bool __static_condition_default_536; +extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_1377; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_929; +extern const bool __static_condition_default_337; +extern const bool __static_condition_default_455; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_204; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_1397; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_825; extern const bool __static_condition_default_891; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_560; +extern const bool __static_condition_default_747; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_290; extern const bool __static_condition_default_723; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_645; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_1392; +extern const bool __static_condition_default_76; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_1387; extern const bool __static_condition_default_817; -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_1368; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_1099; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_386; -extern const bool __static_condition_default_550; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_834; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_753; +extern const bool __static_condition_default_1385; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_1325; +extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_238; extern const bool __static_condition_default_685; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_858; -extern const bool __static_condition_default_549; -extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_1100; +extern const bool __static_condition_default_662; extern const bool __static_condition_default_1388; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_1377; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_747; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_1093; -extern const bool __static_condition_default_473; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_1349; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_657; extern const bool __static_condition_default_431; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_488; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_1371; -extern const bool __static_condition_default_543; -extern const bool __static_condition_default_1112; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_646; -extern const bool __static_condition_default_493; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_1391; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_677; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_769; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_1332; extern const bool __static_condition_default_791; -extern const bool __static_condition_default_241; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_670; +extern const bool __static_condition_default_382; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_684; extern const bool __static_condition_default_590; -extern const bool __static_condition_default_887; +extern const bool __static_condition_default_489; +extern const bool __static_condition_default_1368; +extern const bool __static_condition_default_613; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_388; +extern const bool __static_condition_default_494; extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_1113; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_1384; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_1343; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_663; extern const bool __static_condition_default_1342; -extern const bool __static_condition_default_1392; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_692; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_365; +extern const bool __static_condition_default_274; extern const bool __static_condition_default_521; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_929; -extern const bool __static_condition_default_367; -extern const bool __static_condition_default_388; -extern const bool __static_condition_default_907; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_1341; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_1348; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_1389; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_1331; +extern const bool __static_condition_default_536; extern const bool __static_condition_default_842; -extern const bool __static_condition_default_914; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_957; +extern const bool __static_condition_default_341; extern const bool __static_condition_default_271; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_347; +extern const bool __static_condition_default_488; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_761; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_1092; +extern const bool __static_condition_default_1369; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_894; +extern const bool __static_condition_default_759; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_1112; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_1386; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_1098; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_1384; +extern const bool __static_condition_default_1394; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_549; +extern const bool __static_condition_default_84; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_1393; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_311; extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_170; +extern const bool __static_condition_default_386; extern const bool __static_condition_default_512; -extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_333; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_544; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_583; +extern const bool __static_condition_default_636; +extern const bool __static_condition_default_907; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_875; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_619; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_1113; extern const bool __static_condition_default_862; -extern const bool __static_condition_default_412; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_1393; -extern const bool __static_condition_default_187; +extern const bool __static_condition_default_1319; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_721; extern const bool __static_condition_default_602; -extern const bool __static_condition_default_313; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_1330; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_1326; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_789; extern const bool __static_condition_default_514; -extern const bool __static_condition_default_1390; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_848; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_840; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_367; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_914; extern const bool __static_condition_default_752; -extern const bool __static_condition_default_753; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_1386; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_76; -extern const bool __static_condition_default_608; +extern const bool __static_condition_default_1320; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_419; +extern const bool __static_condition_default_1390; extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_568; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_1376; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_1099; +extern const bool __static_condition_default_1093; +extern const bool __static_condition_default_846; extern const bool __static_condition_default_585; -extern const bool __static_condition_default_956; -extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_1398; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_735; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -609,61 +609,62 @@ __static_renaming("__strdup_1191", "strdup"); __static_renaming("__strndup_1195", "strndup"); __static_renaming("__strndup_1196", "strndup"); __static_renaming("__strchr_1199", "strchr"); -__static_renaming("__strrchr_1202", "strrchr"); -__static_renaming("__strcspn_1205", "strcspn"); +__static_renaming("__strchr_1200", "strchr"); +__static_renaming("__strrchr_1203", "strrchr"); __static_renaming("__strcspn_1206", "strcspn"); -__static_renaming("__strspn_1209", "strspn"); +__static_renaming("__strcspn_1207", "strcspn"); __static_renaming("__strspn_1210", "strspn"); -__static_renaming("__strpbrk_1213", "strpbrk"); -__static_renaming("__strstr_1216", "strstr"); -__static_renaming("__strtok_1219", "strtok"); -__static_renaming("____strtok_r_1223", "__strtok_r"); -__static_renaming("__strtok_r_1227", "strtok_r"); -__static_renaming("__strlen_1229", "strlen"); +__static_renaming("__strspn_1211", "strspn"); +__static_renaming("__strpbrk_1214", "strpbrk"); +__static_renaming("__strstr_1217", "strstr"); +__static_renaming("__strtok_1220", "strtok"); +__static_renaming("____strtok_r_1224", "__strtok_r"); +__static_renaming("__strtok_r_1228", "strtok_r"); __static_renaming("__strlen_1230", "strlen"); __static_renaming("__strlen_1231", "strlen"); __static_renaming("__strlen_1232", "strlen"); -__static_renaming("__strnlen_1236", "strnlen"); +__static_renaming("__strlen_1233", "strlen"); __static_renaming("__strnlen_1237", "strnlen"); -__static_renaming("__strerror_1239", "strerror"); +__static_renaming("__strnlen_1238", "strnlen"); __static_renaming("__strerror_1240", "strerror"); -__static_renaming("__strerror_r_1245", "strerror_r"); +__static_renaming("__strerror_1241", "strerror"); __static_renaming("__strerror_r_1246", "strerror_r"); -__static_renaming("__strerror_l_1249", "strerror_l"); -__static_renaming("____bzero_1253", "__bzero"); +__static_renaming("__strerror_r_1247", "strerror_r"); +__static_renaming("__strerror_l_1250", "strerror_l"); __static_renaming("____bzero_1254", "__bzero"); __static_renaming("____bzero_1255", "__bzero"); __static_renaming("____bzero_1256", "__bzero"); -__static_renaming("__bcopy_1261", "bcopy"); +__static_renaming("____bzero_1257", "__bzero"); __static_renaming("__bcopy_1262", "bcopy"); -__static_renaming("__bzero_1266", "bzero"); +__static_renaming("__bcopy_1263", "bcopy"); __static_renaming("__bzero_1267", "bzero"); -__static_renaming("__bcmp_1272", "bcmp"); +__static_renaming("__bzero_1268", "bzero"); __static_renaming("__bcmp_1273", "bcmp"); -__static_renaming("__index_1276", "index"); -__static_renaming("__rindex_1279", "rindex"); -__static_renaming("__ffs_1281", "ffs"); -__static_renaming("__strcasecmp_1284", "strcasecmp"); -__static_renaming("__strncasecmp_1289", "strncasecmp"); +__static_renaming("__bcmp_1274", "bcmp"); +__static_renaming("__index_1277", "index"); +__static_renaming("__rindex_1280", "rindex"); +__static_renaming("__ffs_1282", "ffs"); +__static_renaming("__strcasecmp_1285", "strcasecmp"); __static_renaming("__strncasecmp_1290", "strncasecmp"); -__static_renaming("__strsep_1293", "strsep"); -__static_renaming("__strsignal_1295", "strsignal"); -__static_renaming("____stpcpy_1298", "__stpcpy"); -__static_renaming("__stpcpy_1301", "stpcpy"); -__static_renaming("____stpncpy_1306", "__stpncpy"); +__static_renaming("__strncasecmp_1291", "strncasecmp"); +__static_renaming("__strsep_1294", "strsep"); +__static_renaming("__strsignal_1296", "strsignal"); +__static_renaming("____stpcpy_1299", "__stpcpy"); +__static_renaming("__stpcpy_1302", "stpcpy"); __static_renaming("____stpncpy_1307", "__stpncpy"); -__static_renaming("__stpncpy_1312", "stpncpy"); +__static_renaming("____stpncpy_1308", "__stpncpy"); __static_renaming("__stpncpy_1313", "stpncpy"); -__static_renaming("____stpncpy_chk_1355", "__stpncpy_chk"); +__static_renaming("__stpncpy_1314", "stpncpy"); __static_renaming("____stpncpy_chk_1356", "__stpncpy_chk"); -__static_renaming("____stpncpy_alias_1361", "__stpncpy_alias"); +__static_renaming("____stpncpy_chk_1357", "__stpncpy_chk"); __static_renaming("____stpncpy_alias_1362", "__stpncpy_alias"); -__static_renaming("__line_1379", "line"); -__static_renaming("__remotefd_1380", "remotefd"); -__static_renaming("__logMessage_1381", "logMessage"); +__static_renaming("____stpncpy_alias_1363", "__stpncpy_alias"); +__static_renaming("__line_1380", "line"); +__static_renaming("__remotefd_1381", "remotefd"); __static_renaming("__logMessage_1382", "logMessage"); -__static_renaming("__doSyslogd_1395", "doSyslogd"); -__static_renaming("__main_1400", "main"); +__static_renaming("__logMessage_1383", "logMessage"); +__static_renaming("__doSyslogd_1396", "doSyslogd"); +__static_renaming("__main_1401", "main"); __static_condition_renaming("__static_condition_default_53", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); __static_condition_renaming("__static_condition_default_76", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); @@ -937,39 +938,38 @@ __static_condition_renaming("__static_condition_default_1099", "!(defined __need __static_condition_renaming("__static_condition_default_1100", "(defined __need___FILE)"); __static_condition_renaming("__static_condition_default_1112", "!(defined __need___FILE) && !(defined __STRICT_ANSI__)"); __static_condition_renaming("__static_condition_default_1113", "(defined __need___FILE) && !(defined __STRICT_ANSI__)"); -__static_condition_renaming("__static_condition_default_1318", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1319", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1324", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1325", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1330", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1331", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1341", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1342", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1347", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1348", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1367", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1368", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1371", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1376", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1377", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1383", "!(defined _FORTIFY_SOURCE) && !(defined CONFIG_FEATURE_REMOTE_LOG) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined CONFIG_FEATURE_REMOTE_LOG) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined CONFIG_FEATURE_REMOTE_LOG) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined CONFIG_FEATURE_REMOTE_LOG)"); -__static_condition_renaming("__static_condition_default_1384", "!(defined _FORTIFY_SOURCE) && (defined CONFIG_FEATURE_REMOTE_LOG) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined CONFIG_FEATURE_REMOTE_LOG) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined CONFIG_FEATURE_REMOTE_LOG) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined CONFIG_FEATURE_REMOTE_LOG)"); -__static_condition_renaming("__static_condition_default_1385", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined CONFIG_FEATURE_REMOTE_LOG) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined CONFIG_FEATURE_REMOTE_LOG) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined CONFIG_FEATURE_REMOTE_LOG) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined CONFIG_FEATURE_REMOTE_LOG)"); -__static_condition_renaming("__static_condition_default_1386", "(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined CONFIG_FEATURE_REMOTE_LOG) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined CONFIG_FEATURE_REMOTE_LOG) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined CONFIG_FEATURE_REMOTE_LOG) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined CONFIG_FEATURE_REMOTE_LOG)"); -__static_condition_renaming("__static_condition_default_1387", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined CONFIG_FEATURE_REMOTE_LOG) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined CONFIG_FEATURE_REMOTE_LOG) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined CONFIG_FEATURE_REMOTE_LOG) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined CONFIG_FEATURE_REMOTE_LOG)"); -__static_condition_renaming("__static_condition_default_1388", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined CONFIG_FEATURE_REMOTE_LOG) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined CONFIG_FEATURE_REMOTE_LOG) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined CONFIG_FEATURE_REMOTE_LOG) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined CONFIG_FEATURE_REMOTE_LOG)"); -__static_condition_renaming("__static_condition_default_1389", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined CONFIG_FEATURE_REMOTE_LOG) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined CONFIG_FEATURE_REMOTE_LOG) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined CONFIG_FEATURE_REMOTE_LOG) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined CONFIG_FEATURE_REMOTE_LOG)"); -__static_condition_renaming("__static_condition_default_1390", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined CONFIG_FEATURE_REMOTE_LOG) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined CONFIG_FEATURE_REMOTE_LOG) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined CONFIG_FEATURE_REMOTE_LOG) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined CONFIG_FEATURE_REMOTE_LOG)"); -__static_condition_renaming("__static_condition_default_1391", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined CONFIG_FEATURE_REMOTE_LOG)"); -__static_condition_renaming("__static_condition_default_1392", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined CONFIG_FEATURE_REMOTE_LOG)"); -__static_condition_renaming("__static_condition_default_1393", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined CONFIG_FEATURE_REMOTE_LOG)"); -__static_condition_renaming("__static_condition_default_1394", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined CONFIG_FEATURE_REMOTE_LOG)"); -__static_condition_renaming("__static_condition_default_1396", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1397", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1401", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) || (defined __need___FILE) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO)"); - -if (__static_condition_default_1401) -{ +__static_condition_renaming("__static_condition_default_1319", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1320", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1325", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1326", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1331", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1332", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1342", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1343", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1348", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1349", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1368", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1369", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1372", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1377", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1378", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1384", "!(defined _FORTIFY_SOURCE) && !(defined CONFIG_FEATURE_REMOTE_LOG) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined CONFIG_FEATURE_REMOTE_LOG) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined CONFIG_FEATURE_REMOTE_LOG) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined CONFIG_FEATURE_REMOTE_LOG)"); +__static_condition_renaming("__static_condition_default_1385", "!(defined _FORTIFY_SOURCE) && (defined CONFIG_FEATURE_REMOTE_LOG) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined CONFIG_FEATURE_REMOTE_LOG) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined CONFIG_FEATURE_REMOTE_LOG) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined CONFIG_FEATURE_REMOTE_LOG)"); +__static_condition_renaming("__static_condition_default_1386", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined CONFIG_FEATURE_REMOTE_LOG) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined CONFIG_FEATURE_REMOTE_LOG) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined CONFIG_FEATURE_REMOTE_LOG) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined CONFIG_FEATURE_REMOTE_LOG)"); +__static_condition_renaming("__static_condition_default_1387", "(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined CONFIG_FEATURE_REMOTE_LOG) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined CONFIG_FEATURE_REMOTE_LOG) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined CONFIG_FEATURE_REMOTE_LOG) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined CONFIG_FEATURE_REMOTE_LOG)"); +__static_condition_renaming("__static_condition_default_1388", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined CONFIG_FEATURE_REMOTE_LOG) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined CONFIG_FEATURE_REMOTE_LOG) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined CONFIG_FEATURE_REMOTE_LOG) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined CONFIG_FEATURE_REMOTE_LOG)"); +__static_condition_renaming("__static_condition_default_1389", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined CONFIG_FEATURE_REMOTE_LOG) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined CONFIG_FEATURE_REMOTE_LOG) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined CONFIG_FEATURE_REMOTE_LOG) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined CONFIG_FEATURE_REMOTE_LOG)"); +__static_condition_renaming("__static_condition_default_1390", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined CONFIG_FEATURE_REMOTE_LOG) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined CONFIG_FEATURE_REMOTE_LOG) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined CONFIG_FEATURE_REMOTE_LOG) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined CONFIG_FEATURE_REMOTE_LOG)"); +__static_condition_renaming("__static_condition_default_1391", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined CONFIG_FEATURE_REMOTE_LOG) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined CONFIG_FEATURE_REMOTE_LOG) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined CONFIG_FEATURE_REMOTE_LOG) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined CONFIG_FEATURE_REMOTE_LOG)"); +__static_condition_renaming("__static_condition_default_1392", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined CONFIG_FEATURE_REMOTE_LOG)"); +__static_condition_renaming("__static_condition_default_1393", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined CONFIG_FEATURE_REMOTE_LOG)"); +__static_condition_renaming("__static_condition_default_1394", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined CONFIG_FEATURE_REMOTE_LOG)"); +__static_condition_renaming("__static_condition_default_1395", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined CONFIG_FEATURE_REMOTE_LOG)"); +__static_condition_renaming("__static_condition_default_1397", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1398", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1402", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); + +if (__static_condition_default_1402) { __static_parse_error("Unable to parse"); } }; @@ -1527,51 +1527,52 @@ extern char * ((__strdup_1191) (const char * (____s_1190)));// L171:L172 extern char * ((__strndup_1195) (const char * (____string_1192), __size_t_1 ____n_1193));// L179:L180 extern char * ((__strndup_1196) (const char * (____string_1192), __size_t_1091 ____n_1194));// L179:L180 extern char * ((__strchr_1199) (const char * (____s_1197), int ____c_1198));// L231:L232 -extern char * ((__strrchr_1202) (const char * (____s_1200), int ____c_1201));// L258:L259 -extern __size_t_1 (__strcspn_1205) (const char * (____s_1203), const char * (____reject_1204));// L280:L281 -extern __size_t_1091 (__strcspn_1206) (const char * (____s_1203), const char * (____reject_1204));// L280:L281 -extern __size_t_1 (__strspn_1209) (const char * (____s_1207), const char * (____accept_1208));// L284:L285 -extern __size_t_1091 (__strspn_1210) (const char * (____s_1207), const char * (____accept_1208));// L284:L285 -extern char * ((__strpbrk_1213) (const char * (____s_1211), const char * (____accept_1212)));// L310:L311 -extern char * ((__strstr_1216) (const char * (____haystack_1214), const char * (____needle_1215)));// L337:L338 -extern char * ((__strtok_1219) (char * __restrict ____s_1217, const char * __restrict ____delim_1218));// L343:L344 -extern char * ((____strtok_r_1223) (char * __restrict ____s_1220, const char * __restrict ____delim_1221, char * (* __restrict ____save_ptr_1222)));// L349:L352 -extern char * ((__strtok_r_1227) (char * __restrict ____s_1224, const char * __restrict ____delim_1225, char * (* __restrict ____save_ptr_1226)));// L354:L356 -extern __size_t_1 (__strlen_1229) (const char * (____s_1228));// L394:L395 -extern __size_t_1091 (__strlen_1230) (const char * (____s_1228));// L394:L395 -extern __size_t_1 (__strlen_1231) (const char * (____s_1228));// L394:L395 -extern __size_t_1091 (__strlen_1232) (const char * (____s_1228));// L394:L395 -extern __size_t_1 (__strnlen_1236) (const char * (____string_1233), __size_t_1 ____maxlen_1234);// L401:L402 -extern __size_t_1091 (__strnlen_1237) (const char * (____string_1233), __size_t_1091 ____maxlen_1235);// L401:L402 -extern char * ((__strerror_1239) (int ____errnum_1238));// L408 -extern char * ((__strerror_1240) (int ____errnum_1238));// L408 -extern int (__strerror_r_1245) (int ____errnum_1241, char * (____buf_1242), __size_t_1 ____buflen_1243);// L422:L424 -extern int (__strerror_r_1246) (int ____errnum_1241, char * (____buf_1242), __size_t_1091 ____buflen_1244);// L422:L424 -extern char * ((__strerror_l_1249) (int ____errnum_1247, ____locale_t_1177 ____l_1248));// L440 -extern void (____bzero_1253) (void * (____s_1250), __size_t_1 ____n_1251);// L446 -extern void (____bzero_1254) (void * (____s_1250), __size_t_1091 ____n_1252);// L446 -extern void (____bzero_1255) (void * (____s_1250), __size_t_1 ____n_1251);// L446 -extern void (____bzero_1256) (void * (____s_1250), __size_t_1091 ____n_1252);// L446 -extern void (__bcopy_1261) (const void * (____src_1257), void * (____dest_1258), __size_t_1 ____n_1259);// L450:L451 -extern void (__bcopy_1262) (const void * (____src_1257), void * (____dest_1258), __size_t_1091 ____n_1260);// L450:L451 -extern void (__bzero_1266) (void * (____s_1263), __size_t_1 ____n_1264);// L454 -extern void (__bzero_1267) (void * (____s_1263), __size_t_1091 ____n_1265);// L454 -extern int (__bcmp_1272) (const void * (____s1_1268), const void * (____s2_1269), __size_t_1 ____n_1270);// L457:L458 -extern int (__bcmp_1273) (const void * (____s1_1268), const void * (____s2_1269), __size_t_1091 ____n_1271);// L457:L458 -extern char * ((__index_1276) (const char * (____s_1274), int ____c_1275));// L484:L485 -extern char * ((__rindex_1279) (const char * (____s_1277), int ____c_1278));// L512:L513 -extern int (__ffs_1281) (int ____i_1280);// L518 -extern int (__strcasecmp_1284) (const char * (____s1_1282), const char * (____s2_1283));// L529:L530 -extern int (__strncasecmp_1289) (const char * (____s1_1285), const char * (____s2_1286), __size_t_1 ____n_1287);// L533:L534 -extern int (__strncasecmp_1290) (const char * (____s1_1285), const char * (____s2_1286), __size_t_1091 ____n_1288);// L533:L534 -extern char * ((__strsep_1293) (char * (* __restrict ____stringp_1291), const char * __restrict ____delim_1292));// L552:L554 -extern char * ((__strsignal_1295) (int ____sig_1294));// L559 -extern char * ((____stpcpy_1298) (char * __restrict ____dest_1296, const char * __restrict ____src_1297));// L562:L563 -extern char * ((__stpcpy_1301) (char * __restrict ____dest_1299, const char * __restrict ____src_1300));// L564:L565 -extern char * ((____stpncpy_1306) (char * __restrict ____dest_1302, const char * __restrict ____src_1303, __size_t_1 ____n_1304));// L569:L571 -extern char * ((____stpncpy_1307) (char * __restrict ____dest_1302, const char * __restrict ____src_1303, __size_t_1091 ____n_1305));// L569:L571 -extern char * ((__stpncpy_1312) (char * __restrict ____dest_1308, const char * __restrict ____src_1309, __size_t_1 ____n_1310));// L572:L574 -extern char * ((__stpncpy_1313) (char * __restrict ____dest_1308, const char * __restrict ____src_1309, __size_t_1091 ____n_1311));// L572:L574 +extern char * ((__strchr_1200) (const char * (____s_1197), int ____c_1198));// L231:L232 +extern char * ((__strrchr_1203) (const char * (____s_1201), int ____c_1202));// L258:L259 +extern __size_t_1 (__strcspn_1206) (const char * (____s_1204), const char * (____reject_1205));// L280:L281 +extern __size_t_1091 (__strcspn_1207) (const char * (____s_1204), const char * (____reject_1205));// L280:L281 +extern __size_t_1 (__strspn_1210) (const char * (____s_1208), const char * (____accept_1209));// L284:L285 +extern __size_t_1091 (__strspn_1211) (const char * (____s_1208), const char * (____accept_1209));// L284:L285 +extern char * ((__strpbrk_1214) (const char * (____s_1212), const char * (____accept_1213)));// L310:L311 +extern char * ((__strstr_1217) (const char * (____haystack_1215), const char * (____needle_1216)));// L337:L338 +extern char * ((__strtok_1220) (char * __restrict ____s_1218, const char * __restrict ____delim_1219));// L343:L344 +extern char * ((____strtok_r_1224) (char * __restrict ____s_1221, const char * __restrict ____delim_1222, char * (* __restrict ____save_ptr_1223)));// L349:L352 +extern char * ((__strtok_r_1228) (char * __restrict ____s_1225, const char * __restrict ____delim_1226, char * (* __restrict ____save_ptr_1227)));// L354:L356 +extern __size_t_1 (__strlen_1230) (const char * (____s_1229));// L394:L395 +extern __size_t_1091 (__strlen_1231) (const char * (____s_1229));// L394:L395 +extern __size_t_1 (__strlen_1232) (const char * (____s_1229));// L394:L395 +extern __size_t_1091 (__strlen_1233) (const char * (____s_1229));// L394:L395 +extern __size_t_1 (__strnlen_1237) (const char * (____string_1234), __size_t_1 ____maxlen_1235);// L401:L402 +extern __size_t_1091 (__strnlen_1238) (const char * (____string_1234), __size_t_1091 ____maxlen_1236);// L401:L402 +extern char * ((__strerror_1240) (int ____errnum_1239));// L408 +extern char * ((__strerror_1241) (int ____errnum_1239));// L408 +extern int (__strerror_r_1246) (int ____errnum_1242, char * (____buf_1243), __size_t_1 ____buflen_1244);// L422:L424 +extern int (__strerror_r_1247) (int ____errnum_1242, char * (____buf_1243), __size_t_1091 ____buflen_1245);// L422:L424 +extern char * ((__strerror_l_1250) (int ____errnum_1248, ____locale_t_1177 ____l_1249));// L440 +extern void (____bzero_1254) (void * (____s_1251), __size_t_1 ____n_1252);// L446 +extern void (____bzero_1255) (void * (____s_1251), __size_t_1091 ____n_1253);// L446 +extern void (____bzero_1256) (void * (____s_1251), __size_t_1 ____n_1252);// L446 +extern void (____bzero_1257) (void * (____s_1251), __size_t_1091 ____n_1253);// L446 +extern void (__bcopy_1262) (const void * (____src_1258), void * (____dest_1259), __size_t_1 ____n_1260);// L450:L451 +extern void (__bcopy_1263) (const void * (____src_1258), void * (____dest_1259), __size_t_1091 ____n_1261);// L450:L451 +extern void (__bzero_1267) (void * (____s_1264), __size_t_1 ____n_1265);// L454 +extern void (__bzero_1268) (void * (____s_1264), __size_t_1091 ____n_1266);// L454 +extern int (__bcmp_1273) (const void * (____s1_1269), const void * (____s2_1270), __size_t_1 ____n_1271);// L457:L458 +extern int (__bcmp_1274) (const void * (____s1_1269), const void * (____s2_1270), __size_t_1091 ____n_1272);// L457:L458 +extern char * ((__index_1277) (const char * (____s_1275), int ____c_1276));// L484:L485 +extern char * ((__rindex_1280) (const char * (____s_1278), int ____c_1279));// L512:L513 +extern int (__ffs_1282) (int ____i_1281);// L518 +extern int (__strcasecmp_1285) (const char * (____s1_1283), const char * (____s2_1284));// L529:L530 +extern int (__strncasecmp_1290) (const char * (____s1_1286), const char * (____s2_1287), __size_t_1 ____n_1288);// L533:L534 +extern int (__strncasecmp_1291) (const char * (____s1_1286), const char * (____s2_1287), __size_t_1091 ____n_1289);// L533:L534 +extern char * ((__strsep_1294) (char * (* __restrict ____stringp_1292), const char * __restrict ____delim_1293));// L552:L554 +extern char * ((__strsignal_1296) (int ____sig_1295));// L559 +extern char * ((____stpcpy_1299) (char * __restrict ____dest_1297, const char * __restrict ____src_1298));// L562:L563 +extern char * ((__stpcpy_1302) (char * __restrict ____dest_1300, const char * __restrict ____src_1301));// L564:L565 +extern char * ((____stpncpy_1307) (char * __restrict ____dest_1303, const char * __restrict ____src_1304, __size_t_1 ____n_1305));// L569:L571 +extern char * ((____stpncpy_1308) (char * __restrict ____dest_1303, const char * __restrict ____src_1304, __size_t_1091 ____n_1306));// L569:L571 +extern char * ((__stpncpy_1313) (char * __restrict ____dest_1309, const char * __restrict ____src_1310, __size_t_1 ____n_1311));// L572:L574 +extern char * ((__stpncpy_1314) (char * __restrict ____dest_1309, const char * __restrict ____src_1310, __size_t_1091 ____n_1312));// L572:L574 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ @@ -1579,24 +1580,24 @@ extern char * ((__stpncpy_1313) (char * __restrict ____dest_1308, const char /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern char * ((____stpncpy_chk_1355) (char * (____dest_1349), const char * (____src_1350), __size_t_1 ____n_1351, __size_t_1 ____destlen_1353));// L130:L131 -extern char * ((____stpncpy_chk_1356) (char * (____dest_1349), const char * (____src_1350), __size_t_1091 ____n_1352, __size_t_1091 ____destlen_1354));// L130:L131 -extern char * ((____stpncpy_alias_1361) (char * (____dest_1357), const char * (____src_1358), __size_t_1 ____n_1359));// L132:L133 -extern char * ((____stpncpy_alias_1362) (char * (____dest_1357), const char * (____src_1358), __size_t_1091 ____n_1360));// L132:L133 +extern char * ((____stpncpy_chk_1356) (char * (____dest_1350), const char * (____src_1351), __size_t_1 ____n_1352, __size_t_1 ____destlen_1354));// L130:L131 +extern char * ((____stpncpy_chk_1357) (char * (____dest_1350), const char * (____src_1351), __size_t_1091 ____n_1353, __size_t_1091 ____destlen_1355));// L130:L131 +extern char * ((____stpncpy_alias_1362) (char * (____dest_1358), const char * (____src_1359), __size_t_1 ____n_1360));// L132:L133 +extern char * ((____stpncpy_alias_1363) (char * (____dest_1358), const char * (____src_1359), __size_t_1091 ____n_1361));// L132:L133 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -void (__logMessage_1381) (char * (__msg_1378)) { +void (__logMessage_1382) (char * (__msg_1379)) { { -if (__static_condition_default_1383) { +if (__static_condition_default_1384) { { { -static char __line_1379[512];// L6 +static char __line_1380[512];// L6 } } @@ -1604,18 +1605,18 @@ static char __line_1379[512];// L6 } -if (__static_condition_default_1384) { +if (__static_condition_default_1385) { { { -static char __line_1379[512];// L6 +static char __line_1380[512];// L6 -int __remotefd_1380= 1;// L9 +int __remotefd_1381= 1;// L9 -if ( __remotefd_1380 )// L11 +if ( __remotefd_1381 )// L11 { { @@ -1623,22 +1624,22 @@ if ( __remotefd_1380 )// L11 -if (__static_condition_default_1385) { - __memset_1118 (& __line_1379 ,0,sizeof(( __line_1379 ))) ; // L12 -} if (__static_condition_default_1386) { - __memset_1119 (& __line_1379 ,0,sizeof(( __line_1379 ))) ; // L12 + __memset_1118 (& __line_1380 ,0,sizeof(( __line_1380 ))) ; // L12 } if (__static_condition_default_1387) { - __memset_1120 (& __line_1379 ,0,sizeof(( __line_1379 ))) ; // L12 + __memset_1119 (& __line_1380 ,0,sizeof(( __line_1380 ))) ; // L12 } if (__static_condition_default_1388) { - __memset_1121 (& __line_1379 ,0,sizeof(( __line_1379 ))) ; // L12 + __memset_1120 (& __line_1380 ,0,sizeof(( __line_1380 ))) ; // L12 } if (__static_condition_default_1389) { - __printf_421 ( __line_1379 ,sizeof(( __line_1379 )),"<%s>", __msg_1378 ) ; // L13 + __memset_1121 (& __line_1380 ,0,sizeof(( __line_1380 ))) ; // L12 } if (__static_condition_default_1390) { + __printf_421 ( __line_1380 ,sizeof(( __line_1380 )),"<%s>", __msg_1379 ) ; // L13 +} +if (__static_condition_default_1391) { __static_type_error("type error") ; // L13 } } @@ -1651,17 +1652,17 @@ __static_type_error("type error") ; // L13 } }} -void (__logMessage_1382) (char * (__msg_1378)) { +void (__logMessage_1383) (char * (__msg_1379)) { { -if (__static_condition_default_1391) { +if (__static_condition_default_1392) { { { -static char __line_1379[512];// L6 +static char __line_1380[512];// L6 } } @@ -1669,18 +1670,18 @@ static char __line_1379[512];// L6 } -if (__static_condition_default_1392) { +if (__static_condition_default_1393) { { { -static char __line_1379[512];// L6 +static char __line_1380[512];// L6 -int __remotefd_1380= 1;// L9 +int __remotefd_1381= 1;// L9 -if ( __remotefd_1380 )// L11 +if ( __remotefd_1381 )// L11 { { @@ -1689,10 +1690,10 @@ if ( __remotefd_1380 )// L11 __static_type_error("type error") ; // L12 -if (__static_condition_default_1393) { - __printf_421 ( __line_1379 ,sizeof(( __line_1379 )),"<%s>", __msg_1378 ) ; // L13 -} if (__static_condition_default_1394) { + __printf_421 ( __line_1380 ,sizeof(( __line_1380 )),"<%s>", __msg_1379 ) ; // L13 +} +if (__static_condition_default_1395) { __static_type_error("type error") ; // L13 } } @@ -1705,32 +1706,32 @@ __static_type_error("type error") ; // L13 } }} -void (__doSyslogd_1395) (void ) { +void (__doSyslogd_1396) (void ) { { { -if (__static_condition_default_1396) { - __logMessage_1381 ("syslogd started") ; // L20 -} if (__static_condition_default_1397) { __logMessage_1382 ("syslogd started") ; // L20 } +if (__static_condition_default_1398) { + __logMessage_1383 ("syslogd started") ; // L20 +} } } } -int (__main_1400) (int __argc_1398, char * (* (__argv_1399))) { +int (__main_1401) (int __argc_1399, char * (* (__argv_1400))) { { { - __doSyslogd_1395 ( ) ; // L25 + __doSyslogd_1396 ( ) ; // L25 return 0 ;// L26 } } diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.c index 4398b7e8..2f45a882 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.c @@ -7,382 +7,218 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_412; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_2330; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_204; -extern const bool __static_condition_default_1568; -extern const bool __static_condition_default_549; -extern const bool __static_condition_default_315; -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_347; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_2387; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_419; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_2394; -extern const bool __static_condition_default_317; -extern const bool __static_condition_default_1165; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_747; -extern const bool __static_condition_default_753; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_645; -extern const bool __static_condition_default_956; -extern const bool __static_condition_default_751; +extern const bool __static_condition_default_577; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_726; +extern const bool __static_condition_default_343; +extern const bool __static_condition_default_518; extern const bool __static_condition_default_235; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_1377; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_670; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_1749; -extern const bool __static_condition_default_1816; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_1385; -extern const bool __static_condition_default_2411; -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_380; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_957; -extern const bool __static_condition_default_1405; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_1787; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_187; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_488; -extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_2381; -extern const bool __static_condition_default_521; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_512; -extern const bool __static_condition_default_2388; -extern const bool __static_condition_default_858; +extern const bool __static_condition_default_300; +extern const bool __static_condition_default_1104; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_434; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_1222; +extern const bool __static_condition_default_890; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_758; +extern const bool __static_condition_default_1212; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_1262; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_531; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_741; extern const bool __static_condition_default_275; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_1402; -extern const bool __static_condition_default_2064; -extern const bool __static_condition_default_2410; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_693; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_1458; -extern const bool __static_condition_default_290; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_217; -extern const bool __static_condition_default_2044; -extern const bool __static_condition_default_559; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_1353; -extern const bool __static_condition_default_2398; -extern const bool __static_condition_default_386; -extern const bool __static_condition_default_2389; +extern const bool __static_condition_default_551; +extern const bool __static_condition_default_923; +extern const bool __static_condition_default_748; extern const bool __static_condition_default_249; -extern const bool __static_condition_default_803; -extern const bool __static_condition_default_2063; -extern const bool __static_condition_default_1341; -extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_288; +extern const bool __static_condition_default_319; +extern const bool __static_condition_default_1248; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_707; +extern const bool __static_condition_default_415; +extern const bool __static_condition_default_1102; +extern const bool __static_condition_default_1213; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_339; +extern const bool __static_condition_default_439; +extern const bool __static_condition_default_1257; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_1101; +extern const bool __static_condition_default_348; +extern const bool __static_condition_default_1264; +extern const bool __static_condition_default_681; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_1206; +extern const bool __static_condition_default_440; +extern const bool __static_condition_default_1265; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_396; +extern const bool __static_condition_default_1267; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_492; +extern const bool __static_condition_default_498; extern const bool __static_condition_default_583; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_685; -extern const bool __static_condition_default_2313; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_702; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_1361; -extern const bool __static_condition_default_1515; -extern const bool __static_condition_default_2395; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_684; +extern const bool __static_condition_default_605; +extern const bool __static_condition_default_911; +extern const bool __static_condition_default_1277; +extern const bool __static_condition_default_285; +extern const bool __static_condition_default_588; +extern const bool __static_condition_default_1272; +extern const bool __static_condition_default_1273; +extern const bool __static_condition_default_1271; +extern const bool __static_condition_default_912; +extern const bool __static_condition_default_436; +extern const bool __static_condition_default_76; +extern const bool __static_condition_default_1278; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_427; extern const bool __static_condition_default_223; -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_846; -extern const bool __static_condition_default_2401; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_632; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_431; -extern const bool __static_condition_default_1774; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_1395; -extern const bool __static_condition_default_2399; -extern const bool __static_condition_default_842; -extern const bool __static_condition_default_1556; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_929; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_1773; -extern const bool __static_condition_default_198; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_2045; -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_2376; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_2396; -extern const bool __static_condition_default_1775; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_779; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_2321; -extern const bool __static_condition_default_793; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_872; -extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_1152; -extern const bool __static_condition_default_2320; -extern const bool __static_condition_default_1428; -extern const bool __static_condition_default_1459; +extern const bool __static_condition_default_1269; extern const bool __static_condition_default_271; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_1750; -extern const bool __static_condition_default_1373; -extern const bool __static_condition_default_1532; -extern const bool __static_condition_default_1365; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_2329; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_1791; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_2350; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_887; -extern const bool __static_condition_default_2400; -extern const bool __static_condition_default_646; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_461; -extern const bool __static_condition_default_1315; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_1498; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_333; -extern const bool __static_condition_default_761; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_1785; -extern const bool __static_condition_default_1453; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_2047; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_1398; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_1420; -extern const bool __static_condition_default_1814; -extern const bool __static_condition_default_1753; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_438; -extern const bool __static_condition_default_590; -extern const bool __static_condition_default_2377; -extern const bool __static_condition_default_2403; -extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_1424; -extern const bool __static_condition_default_701; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_780; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_393; -extern const bool __static_condition_default_543; -extern const bool __static_condition_default_1369; -extern const bool __static_condition_default_1789; -extern const bool __static_condition_default_1808; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_568; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_787; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_589; +extern const bool __static_condition_default_302; +extern const bool __static_condition_default_304; +extern const bool __static_condition_default_298; +extern const bool __static_condition_default_675; +extern const bool __static_condition_default_593; +extern const bool __static_condition_default_921; +extern const bool __static_condition_default_329; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_749; +extern const bool __static_condition_default_603; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_952; +extern const bool __static_condition_default_257; extern const bool __static_condition_default_270; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_1436; +extern const bool __static_condition_default_1251; +extern const bool __static_condition_default_713; +extern const bool __static_condition_default_733; +extern const bool __static_condition_default_453; +extern const bool __static_condition_default_374; +extern const bool __static_condition_default_673; extern const bool __static_condition_default_662; -extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_539; +extern const bool __static_condition_default_484; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_927; +extern const bool __static_condition_default_1270; +extern const bool __static_condition_default_465; +extern const bool __static_condition_default_1266; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_674; +extern const bool __static_condition_default_925; +extern const bool __static_condition_default_84; +extern const bool __static_condition_default_385; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_1227; +extern const bool __static_condition_default_886; +extern const bool __static_condition_default_697; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_533; +extern const bool __static_condition_default_1268; +extern const bool __static_condition_default_321; +extern const bool __static_condition_default_1263; +extern const bool __static_condition_default_1103; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_1228; +extern const bool __static_condition_default_690; +extern const bool __static_condition_default_360; +extern const bool __static_condition_default_599; +extern const bool __static_condition_default_534; +extern const bool __static_condition_default_740; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_696; +extern const bool __static_condition_default_466; +extern const bool __static_condition_default_525; +extern const bool __static_condition_default_910; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_460; +extern const bool __static_condition_default_511; extern const bool __static_condition_default_53; -extern const bool __static_condition_default_357; -extern const bool __static_condition_default_1944; +extern const bool __static_condition_default_418; +extern const bool __static_condition_default_445; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_462; extern const bool __static_condition_default_258; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_187; +extern const bool __static_condition_default_467; +extern const bool __static_condition_default_476; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_540; +extern const bool __static_condition_default_587; +extern const bool __static_condition_default_513; +extern const bool __static_condition_default_423; +extern const bool __static_condition_default_1247; +extern const bool __static_condition_default_950; extern const bool __static_condition_default_311; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_1560; -extern const bool __static_condition_default_2322; -extern const bool __static_condition_default_1416; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_1516; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_2343; -extern const bool __static_condition_default_382; -extern const bool __static_condition_default_76; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_613; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_2314; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_1810; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_709; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_2378; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_2342; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_755; -extern const bool __static_condition_default_1159; -extern const bool __static_condition_default_2402; -extern const bool __static_condition_default_1432; -extern const bool __static_condition_default_2062; -extern const bool __static_condition_default_1572; -extern const bool __static_condition_default_2312; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_1552; -extern const bool __static_condition_default_2349; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_1381; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_2351; -extern const bool __static_condition_default_1345; -extern const bool __static_condition_default_1485; -extern const bool __static_condition_default_677; -extern const bool __static_condition_default_1564; -extern const bool __static_condition_default_1576; -extern const bool __static_condition_default_1754; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_963; -extern const bool __static_condition_default_2043; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_914; -extern const bool __static_condition_default_891; -extern const bool __static_condition_default_848; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_1349; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_1776; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_248; -extern const bool __static_condition_default_388; -extern const bool __static_condition_default_1475; -extern const bool __static_condition_default_2404; extern const bool __static_condition_default_417; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_894; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_2397; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_1357; -extern const bool __static_condition_default_2409; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_313; -extern const bool __static_condition_default_907; -extern const bool __static_condition_default_367; -extern const bool __static_condition_default_1164; -extern const bool __static_condition_default_1391; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_536; -extern const bool __static_condition_default_2046; -extern const bool __static_condition_default_408; -extern const bool __static_condition_default_769; -extern const bool __static_condition_default_875; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_1388; -extern const bool __static_condition_default_1409; -extern const bool __static_condition_default_1489; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_638; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_789; -extern const bool __static_condition_default_955; -extern const bool __static_condition_default_1531; +extern const bool __static_condition_default_182; extern const bool __static_condition_default_564; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_402; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_2328; -extern const bool __static_condition_default_2405; +extern const bool __static_condition_default_1256; +extern const bool __static_condition_default_611; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_468; +extern const bool __static_condition_default_889; +extern const bool __static_condition_default_1207; +extern const bool __static_condition_default_563; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_414; +extern const bool __static_condition_default_720; +extern const bool __static_condition_default_1279; +extern const bool __static_condition_default_565; +extern const bool __static_condition_default_725; +extern const bool __static_condition_default_1218; +extern const bool __static_condition_default_401; +extern const bool __static_condition_default_557; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_584; +extern const bool __static_condition_default_885; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_204; +extern const bool __static_condition_default_532; +extern const bool __static_condition_default_447; +extern const bool __static_condition_default_909; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_946; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_474; +extern const bool __static_condition_default_379; +extern const bool __static_condition_default_435; +extern const bool __static_condition_default_656; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_421; +extern const bool __static_condition_default_291; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_698; +extern const bool __static_condition_default_372; +extern const bool __static_condition_default_483; +extern const bool __static_condition_default_576; +extern const bool __static_condition_default_705; +extern const bool __static_condition_default_477; +extern const bool __static_condition_default_575; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_1219; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_547; +extern const bool __static_condition_default_337; +extern const bool __static_condition_default_403; +extern const bool __static_condition_default_488; +extern const bool __static_condition_default_463; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -493,743 +329,261 @@ __static_renaming("___IO_seekpos_272", "_IO_seekpos"); __static_renaming("___IO_seekpos_273", "_IO_seekpos"); __static_renaming("___IO_free_backup_area_276", "_IO_free_backup_area"); __static_renaming("___IO_free_backup_area_277", "_IO_free_backup_area"); -__static_renaming("__va_list_279", "va_list"); -__static_renaming("__off_t_281", "off_t"); -__static_renaming("__off_t_283", "off_t"); -__static_renaming("__ssize_t_285", "ssize_t"); -__static_renaming("__fpos_t_287", "fpos_t"); -__static_renaming("__fpos_t_289", "fpos_t"); -__static_renaming("__stdin_291", "stdin"); -__static_renaming("__stdin_292", "stdin"); -__static_renaming("__stdout_294", "stdout"); -__static_renaming("__stdout_295", "stdout"); -__static_renaming("__stderr_297", "stderr"); -__static_renaming("__stderr_298", "stderr"); -__static_renaming("__remove_301", "remove"); -__static_renaming("__rename_304", "rename"); -__static_renaming("__renameat_309", "renameat"); -__static_renaming("__tmpfile_310", "tmpfile"); -__static_renaming("__tmpfile_312", "tmpfile"); -__static_renaming("__tmpfile_314", "tmpfile"); -__static_renaming("__tmpfile_316", "tmpfile"); -__static_renaming("__tmpnam_319", "tmpnam"); -__static_renaming("__tmpnam_320", "tmpnam"); -__static_renaming("__tmpnam_r_322", "tmpnam_r"); -__static_renaming("__tmpnam_r_323", "tmpnam_r"); -__static_renaming("__tempnam_326", "tempnam"); -__static_renaming("__tempnam_327", "tempnam"); -__static_renaming("__fclose_330", "fclose"); -__static_renaming("__fclose_332", "fclose"); -__static_renaming("__fflush_336", "fflush"); -__static_renaming("__fflush_unlocked_340", "fflush_unlocked"); -__static_renaming("__fopen_344", "fopen"); -__static_renaming("__fopen_346", "fopen"); -__static_renaming("__fopen_354", "fopen"); -__static_renaming("__fopen_356", "fopen"); -__static_renaming("__freopen_362", "freopen"); -__static_renaming("__freopen_364", "freopen"); -__static_renaming("__freopen_366", "freopen"); -__static_renaming("__freopen_368", "freopen"); -__static_renaming("__fdopen_372", "fdopen"); -__static_renaming("__fdopen_374", "fdopen"); -__static_renaming("__fmemopen_379", "fmemopen"); -__static_renaming("__fmemopen_381", "fmemopen"); -__static_renaming("__open_memstream_385", "open_memstream"); -__static_renaming("__open_memstream_387", "open_memstream"); -__static_renaming("__setbuf_392", "setbuf"); -__static_renaming("__setbuf_394", "setbuf"); -__static_renaming("__setvbuf_401", "setvbuf"); -__static_renaming("__setbuffer_407", "setbuffer"); -__static_renaming("__setlinebuf_411", "setlinebuf"); -__static_renaming("__fprintf_416", "fprintf"); -__static_renaming("__fprintf_418", "fprintf"); -__static_renaming("__printf_421", "printf"); -__static_renaming("__sprintf_424", "sprintf"); -__static_renaming("__vfprintf_430", "vfprintf"); -__static_renaming("__vprintf_437", "vprintf"); -__static_renaming("__vsprintf_443", "vsprintf"); -__static_renaming("__snprintf_448", "snprintf"); -__static_renaming("__vsnprintf_454", "vsnprintf"); -__static_renaming("__vdprintf_460", "vdprintf"); -__static_renaming("__dprintf_464", "dprintf"); -__static_renaming("__fscanf_468", "fscanf"); -__static_renaming("__fscanf_470", "fscanf"); -__static_renaming("__fscanf_472", "fscanf"); -__static_renaming("__fscanf_474", "fscanf"); -__static_renaming("__scanf_477", "scanf"); -__static_renaming("__scanf_478", "scanf"); -__static_renaming("__sscanf_481", "sscanf"); -__static_renaming("__vfscanf_509", "vfscanf"); -__static_renaming("__vfscanf_513", "vfscanf"); -__static_renaming("__vscanf_520", "vscanf"); -__static_renaming("__vscanf_522", "vscanf"); -__static_renaming("__vsscanf_528", "vsscanf"); -__static_renaming("__fgetc_563", "fgetc"); -__static_renaming("__getc_567", "getc"); -__static_renaming("__getchar_569", "getchar"); -__static_renaming("__getc_unlocked_572", "getc_unlocked"); -__static_renaming("__getchar_unlocked_574", "getchar_unlocked"); -__static_renaming("__fgetc_unlocked_577", "fgetc_unlocked"); -__static_renaming("__fputc_582", "fputc"); -__static_renaming("__fputc_584", "fputc"); -__static_renaming("__putc_589", "putc"); -__static_renaming("__putchar_592", "putchar"); -__static_renaming("__fputc_unlocked_596", "fputc_unlocked"); -__static_renaming("__putc_unlocked_601", "putc_unlocked"); -__static_renaming("__putchar_unlocked_604", "putchar_unlocked"); -__static_renaming("__getw_607", "getw"); -__static_renaming("__putw_612", "putw"); -__static_renaming("__fgets_618", "fgets"); -__static_renaming("__fgets_620", "fgets"); -__static_renaming("__fgets_622", "fgets"); -__static_renaming("__fgets_624", "fgets"); -__static_renaming("____getdelim_631", "__getdelim"); -__static_renaming("____getdelim_635", "__getdelim"); -__static_renaming("__getdelim_644", "getdelim"); -__static_renaming("__getdelim_648", "getdelim"); -__static_renaming("__getline_656", "getline"); -__static_renaming("__getline_660", "getline"); -__static_renaming("__fputs_667", "fputs"); -__static_renaming("__fputs_669", "fputs"); -__static_renaming("__puts_672", "puts"); -__static_renaming("__ungetc_676", "ungetc"); -__static_renaming("__fseek_714", "fseek"); -__static_renaming("__fseek_716", "fseek"); -__static_renaming("__ftell_720", "ftell"); -__static_renaming("__ftell_722", "ftell"); -__static_renaming("__rewind_726", "rewind"); -__static_renaming("__fseeko_733", "fseeko"); -__static_renaming("__fseeko_744", "fseeko"); -__static_renaming("__ftello_750", "ftello"); -__static_renaming("__ftello_754", "ftello"); -__static_renaming("__ftello_758", "ftello"); -__static_renaming("__fgetpos_766", "fgetpos"); -__static_renaming("__fgetpos_778", "fgetpos"); -__static_renaming("__fsetpos_786", "fsetpos"); -__static_renaming("__fsetpos_790", "fsetpos"); -__static_renaming("__clearerr_796", "clearerr"); -__static_renaming("__feof_800", "feof"); -__static_renaming("__feof_802", "feof"); -__static_renaming("__ferror_806", "ferror"); -__static_renaming("__ferror_808", "ferror"); -__static_renaming("__clearerr_unlocked_812", "clearerr_unlocked"); -__static_renaming("__feof_unlocked_816", "feof_unlocked"); -__static_renaming("__feof_unlocked_818", "feof_unlocked"); -__static_renaming("__ferror_unlocked_822", "ferror_unlocked"); -__static_renaming("__ferror_unlocked_824", "ferror_unlocked"); -__static_renaming("__perror_827", "perror"); -__static_renaming("__perror_828", "perror"); -__static_renaming("__sys_nerr_829", "sys_nerr"); -__static_renaming("__sys_errlist_830", "sys_errlist"); -__static_renaming("__fileno_833", "fileno"); -__static_renaming("__fileno_835", "fileno"); -__static_renaming("__fileno_unlocked_839", "fileno_unlocked"); -__static_renaming("__fileno_unlocked_841", "fileno_unlocked"); -__static_renaming("__popen_845", "popen"); -__static_renaming("__popen_847", "popen"); -__static_renaming("__pclose_851", "pclose"); -__static_renaming("__ctermid_854", "ctermid"); -__static_renaming("__flockfile_857", "flockfile"); -__static_renaming("__ftrylockfile_861", "ftrylockfile"); -__static_renaming("__ftrylockfile_863", "ftrylockfile"); -__static_renaming("__funlockfile_867", "funlockfile"); -__static_renaming("____sprintf_chk_899", "__sprintf_chk"); -__static_renaming("____vsprintf_chk_906", "__vsprintf_chk"); -__static_renaming("____snprintf_chk_920", "__snprintf_chk"); -__static_renaming("____vsnprintf_chk_928", "__vsnprintf_chk"); -__static_renaming("____fprintf_chk_943", "__fprintf_chk"); -__static_renaming("____printf_chk_947", "__printf_chk"); -__static_renaming("____vfprintf_chk_954", "__vfprintf_chk"); -__static_renaming("____vprintf_chk_962", "__vprintf_chk"); -__static_renaming("____dprintf_chk_984", "__dprintf_chk"); -__static_renaming("____vdprintf_chk_990", "__vdprintf_chk"); -__static_renaming("____fgets_chk_1004", "__fgets_chk"); -__static_renaming("____fgets_chk_1006", "__fgets_chk"); -__static_renaming("____fgets_chk_1008", "__fgets_chk"); -__static_renaming("____fgets_alias_1014", "__fgets_alias"); -__static_renaming("____fgets_chk_warn_1021", "__fgets_chk_warn"); -__static_renaming("____cnt_1087", "__cnt"); -__static_renaming("____cptr_1088", "__cptr"); -__static_renaming("__ptrdiff_t_1092", "ptrdiff_t"); -__static_renaming("__size_t_1093", "size_t"); -__static_renaming("__wchar_t_1094", "wchar_t"); -__static_renaming("__idtype_t_1100", "idtype_t"); -__static_renaming("____u_char_1101", "__u_char"); -__static_renaming("____u_short_1102", "__u_short"); -__static_renaming("____u_int_1103", "__u_int"); -__static_renaming("____u_long_1104", "__u_long"); -__static_renaming("____int8_t_1105", "__int8_t"); -__static_renaming("____uint8_t_1106", "__uint8_t"); -__static_renaming("____int16_t_1107", "__int16_t"); -__static_renaming("____uint16_t_1108", "__uint16_t"); -__static_renaming("____int32_t_1109", "__int32_t"); -__static_renaming("____uint32_t_1110", "__uint32_t"); -__static_renaming("____int64_t_1111", "__int64_t"); -__static_renaming("____uint64_t_1112", "__uint64_t"); -__static_renaming("____quad_t_1113", "__quad_t"); -__static_renaming("____u_quad_t_1114", "__u_quad_t"); -__static_renaming("____dev_t_1115", "__dev_t"); -__static_renaming("____uid_t_1116", "__uid_t"); -__static_renaming("____gid_t_1117", "__gid_t"); -__static_renaming("____ino_t_1118", "__ino_t"); -__static_renaming("____ino64_t_1119", "__ino64_t"); -__static_renaming("____mode_t_1120", "__mode_t"); -__static_renaming("____nlink_t_1121", "__nlink_t"); -__static_renaming("____off_t_1122", "__off_t"); -__static_renaming("____off64_t_1123", "__off64_t"); -__static_renaming("____pid_t_1124", "__pid_t"); -__static_renaming("____fsid_t_1128", "__fsid_t"); -__static_renaming("____clock_t_1129", "__clock_t"); -__static_renaming("____rlim_t_1130", "__rlim_t"); -__static_renaming("____rlim64_t_1131", "__rlim64_t"); -__static_renaming("____id_t_1132", "__id_t"); -__static_renaming("____time_t_1133", "__time_t"); -__static_renaming("____useconds_t_1134", "__useconds_t"); -__static_renaming("____suseconds_t_1135", "__suseconds_t"); -__static_renaming("____daddr_t_1136", "__daddr_t"); -__static_renaming("____key_t_1137", "__key_t"); -__static_renaming("____clockid_t_1138", "__clockid_t"); -__static_renaming("____timer_t_1139", "__timer_t"); -__static_renaming("____blksize_t_1140", "__blksize_t"); -__static_renaming("____blkcnt_t_1141", "__blkcnt_t"); -__static_renaming("____blkcnt64_t_1142", "__blkcnt64_t"); -__static_renaming("____fsblkcnt_t_1143", "__fsblkcnt_t"); -__static_renaming("____fsblkcnt64_t_1144", "__fsblkcnt64_t"); -__static_renaming("____fsfilcnt_t_1145", "__fsfilcnt_t"); -__static_renaming("____fsfilcnt64_t_1146", "__fsfilcnt64_t"); -__static_renaming("____fsword_t_1147", "__fsword_t"); -__static_renaming("____ssize_t_1148", "__ssize_t"); -__static_renaming("____syscall_slong_t_1149", "__syscall_slong_t"); -__static_renaming("____syscall_ulong_t_1150", "__syscall_ulong_t"); -__static_renaming("____loff_t_1151", "__loff_t"); -__static_renaming("____qaddr_t_1153", "__qaddr_t"); -__static_renaming("____caddr_t_1154", "__caddr_t"); -__static_renaming("____intptr_t_1155", "__intptr_t"); -__static_renaming("____socklen_t_1156", "__socklen_t"); -__static_renaming("____bswap_32_1158", "__bswap_32"); -__static_renaming("____bswap_64_1162", "__bswap_64"); -__static_renaming("____bswap_64_1163", "__bswap_64"); -__static_renaming("____WAIT_STATUS_1185", "__WAIT_STATUS"); -__static_renaming("__div_t_1190", "div_t"); -__static_renaming("__ldiv_t_1195", "ldiv_t"); -__static_renaming("__lldiv_t_1200", "lldiv_t"); -__static_renaming("____ctype_get_mb_cur_max_1201", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1202", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1203", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1204", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1205", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1206", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1207", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1208", "__ctype_get_mb_cur_max"); -__static_renaming("__atof_1210", "atof"); -__static_renaming("__atof_1211", "atof"); -__static_renaming("__atoi_1213", "atoi"); -__static_renaming("__atoi_1214", "atoi"); -__static_renaming("__atol_1216", "atol"); -__static_renaming("__atol_1217", "atol"); -__static_renaming("__atoll_1219", "atoll"); -__static_renaming("__atoll_1220", "atoll"); -__static_renaming("__strtod_1223", "strtod"); -__static_renaming("__strtof_1226", "strtof"); -__static_renaming("__strtold_1229", "strtold"); -__static_renaming("__strtol_1233", "strtol"); -__static_renaming("__strtoul_1237", "strtoul"); -__static_renaming("__strtoq_1241", "strtoq"); -__static_renaming("__strtouq_1245", "strtouq"); -__static_renaming("__strtoll_1249", "strtoll"); -__static_renaming("__strtoll_1250", "strtoll"); -__static_renaming("__strtoull_1254", "strtoull"); -__static_renaming("__l64a_1259", "l64a"); -__static_renaming("__l64a_1260", "l64a"); -__static_renaming("__a64l_1262", "a64l"); -__static_renaming("__a64l_1263", "a64l"); -__static_renaming("____u_char_1264", "__u_char"); -__static_renaming("____u_short_1265", "__u_short"); -__static_renaming("____u_int_1266", "__u_int"); -__static_renaming("____u_long_1267", "__u_long"); -__static_renaming("____int8_t_1268", "__int8_t"); -__static_renaming("____uint8_t_1269", "__uint8_t"); -__static_renaming("____int16_t_1270", "__int16_t"); -__static_renaming("____uint16_t_1271", "__uint16_t"); -__static_renaming("____int32_t_1272", "__int32_t"); -__static_renaming("____uint32_t_1273", "__uint32_t"); -__static_renaming("____int64_t_1274", "__int64_t"); -__static_renaming("____uint64_t_1275", "__uint64_t"); -__static_renaming("____quad_t_1276", "__quad_t"); -__static_renaming("____u_quad_t_1277", "__u_quad_t"); -__static_renaming("____dev_t_1278", "__dev_t"); -__static_renaming("____uid_t_1279", "__uid_t"); -__static_renaming("____gid_t_1280", "__gid_t"); -__static_renaming("____ino_t_1281", "__ino_t"); -__static_renaming("____ino64_t_1282", "__ino64_t"); -__static_renaming("____mode_t_1283", "__mode_t"); -__static_renaming("____nlink_t_1284", "__nlink_t"); -__static_renaming("____off_t_1285", "__off_t"); -__static_renaming("____off64_t_1286", "__off64_t"); -__static_renaming("____pid_t_1287", "__pid_t"); -__static_renaming("____fsid_t_1291", "__fsid_t"); -__static_renaming("____clock_t_1292", "__clock_t"); -__static_renaming("____rlim_t_1293", "__rlim_t"); -__static_renaming("____rlim64_t_1294", "__rlim64_t"); -__static_renaming("____id_t_1295", "__id_t"); -__static_renaming("____time_t_1296", "__time_t"); -__static_renaming("____useconds_t_1297", "__useconds_t"); -__static_renaming("____suseconds_t_1298", "__suseconds_t"); -__static_renaming("____daddr_t_1299", "__daddr_t"); -__static_renaming("____key_t_1300", "__key_t"); -__static_renaming("____clockid_t_1301", "__clockid_t"); -__static_renaming("____timer_t_1302", "__timer_t"); -__static_renaming("____blksize_t_1303", "__blksize_t"); -__static_renaming("____blkcnt_t_1304", "__blkcnt_t"); -__static_renaming("____blkcnt64_t_1305", "__blkcnt64_t"); -__static_renaming("____fsblkcnt_t_1306", "__fsblkcnt_t"); -__static_renaming("____fsblkcnt64_t_1307", "__fsblkcnt64_t"); -__static_renaming("____fsfilcnt_t_1308", "__fsfilcnt_t"); -__static_renaming("____fsfilcnt64_t_1309", "__fsfilcnt64_t"); -__static_renaming("____fsword_t_1310", "__fsword_t"); -__static_renaming("____ssize_t_1311", "__ssize_t"); -__static_renaming("____syscall_slong_t_1312", "__syscall_slong_t"); -__static_renaming("____syscall_ulong_t_1313", "__syscall_ulong_t"); -__static_renaming("____loff_t_1314", "__loff_t"); -__static_renaming("____qaddr_t_1316", "__qaddr_t"); -__static_renaming("____caddr_t_1317", "__caddr_t"); -__static_renaming("____intptr_t_1318", "__intptr_t"); -__static_renaming("____socklen_t_1319", "__socklen_t"); -__static_renaming("__u_char_1320", "u_char"); -__static_renaming("__u_char_1321", "u_char"); -__static_renaming("__u_char_1322", "u_char"); -__static_renaming("__u_short_1323", "u_short"); -__static_renaming("__u_short_1324", "u_short"); -__static_renaming("__u_short_1325", "u_short"); -__static_renaming("__u_int_1326", "u_int"); -__static_renaming("__u_int_1327", "u_int"); -__static_renaming("__u_int_1328", "u_int"); -__static_renaming("__u_long_1329", "u_long"); -__static_renaming("__u_long_1330", "u_long"); -__static_renaming("__u_long_1331", "u_long"); -__static_renaming("__quad_t_1332", "quad_t"); -__static_renaming("__quad_t_1333", "quad_t"); -__static_renaming("__quad_t_1334", "quad_t"); -__static_renaming("__u_quad_t_1335", "u_quad_t"); -__static_renaming("__u_quad_t_1336", "u_quad_t"); -__static_renaming("__u_quad_t_1337", "u_quad_t"); -__static_renaming("__fsid_t_1338", "fsid_t"); -__static_renaming("__fsid_t_1339", "fsid_t"); -__static_renaming("__fsid_t_1340", "fsid_t"); -__static_renaming("__loff_t_1342", "loff_t"); -__static_renaming("__loff_t_1343", "loff_t"); -__static_renaming("__loff_t_1344", "loff_t"); -__static_renaming("__loff_t_1346", "loff_t"); -__static_renaming("__loff_t_1347", "loff_t"); -__static_renaming("__loff_t_1348", "loff_t"); -__static_renaming("__ino_t_1350", "ino_t"); -__static_renaming("__ino_t_1351", "ino_t"); -__static_renaming("__ino_t_1352", "ino_t"); -__static_renaming("__ino_t_1354", "ino_t"); -__static_renaming("__ino_t_1355", "ino_t"); -__static_renaming("__ino_t_1356", "ino_t"); -__static_renaming("__dev_t_1358", "dev_t"); -__static_renaming("__dev_t_1359", "dev_t"); -__static_renaming("__dev_t_1360", "dev_t"); -__static_renaming("__gid_t_1362", "gid_t"); -__static_renaming("__gid_t_1363", "gid_t"); -__static_renaming("__gid_t_1364", "gid_t"); -__static_renaming("__gid_t_1366", "gid_t"); -__static_renaming("__gid_t_1367", "gid_t"); -__static_renaming("__gid_t_1368", "gid_t"); -__static_renaming("__mode_t_1370", "mode_t"); -__static_renaming("__mode_t_1371", "mode_t"); -__static_renaming("__mode_t_1372", "mode_t"); -__static_renaming("__nlink_t_1374", "nlink_t"); -__static_renaming("__nlink_t_1375", "nlink_t"); -__static_renaming("__nlink_t_1376", "nlink_t"); -__static_renaming("__uid_t_1378", "uid_t"); -__static_renaming("__uid_t_1379", "uid_t"); -__static_renaming("__uid_t_1380", "uid_t"); -__static_renaming("__uid_t_1382", "uid_t"); -__static_renaming("__uid_t_1383", "uid_t"); -__static_renaming("__uid_t_1384", "uid_t"); -__static_renaming("__off_t_1386", "off_t"); -__static_renaming("__off_t_1387", "off_t"); -__static_renaming("__off_t_1389", "off_t"); -__static_renaming("__off_t_1390", "off_t"); -__static_renaming("__pid_t_1392", "pid_t"); -__static_renaming("__pid_t_1393", "pid_t"); -__static_renaming("__pid_t_1394", "pid_t"); -__static_renaming("__pid_t_1396", "pid_t"); -__static_renaming("__pid_t_1397", "pid_t"); -__static_renaming("__id_t_1399", "id_t"); -__static_renaming("__id_t_1400", "id_t"); -__static_renaming("__id_t_1401", "id_t"); -__static_renaming("__ssize_t_1403", "ssize_t"); -__static_renaming("__ssize_t_1404", "ssize_t"); -__static_renaming("__daddr_t_1406", "daddr_t"); -__static_renaming("__daddr_t_1407", "daddr_t"); -__static_renaming("__daddr_t_1408", "daddr_t"); -__static_renaming("__caddr_t_1410", "caddr_t"); -__static_renaming("__caddr_t_1411", "caddr_t"); -__static_renaming("__caddr_t_1412", "caddr_t"); -__static_renaming("__key_t_1413", "key_t"); -__static_renaming("__key_t_1414", "key_t"); -__static_renaming("__key_t_1415", "key_t"); -__static_renaming("__key_t_1417", "key_t"); -__static_renaming("__key_t_1418", "key_t"); -__static_renaming("__key_t_1419", "key_t"); -__static_renaming("__clock_t_1421", "clock_t"); -__static_renaming("__clock_t_1422", "clock_t"); -__static_renaming("__clock_t_1423", "clock_t"); -__static_renaming("__time_t_1425", "time_t"); -__static_renaming("__time_t_1426", "time_t"); -__static_renaming("__time_t_1427", "time_t"); -__static_renaming("__clockid_t_1429", "clockid_t"); -__static_renaming("__clockid_t_1430", "clockid_t"); -__static_renaming("__clockid_t_1431", "clockid_t"); -__static_renaming("__timer_t_1433", "timer_t"); -__static_renaming("__timer_t_1434", "timer_t"); -__static_renaming("__timer_t_1435", "timer_t"); -__static_renaming("__ulong_1437", "ulong"); -__static_renaming("__ulong_1438", "ulong"); -__static_renaming("__ulong_1439", "ulong"); -__static_renaming("__ushort_1440", "ushort"); -__static_renaming("__uint_1441", "uint"); -__static_renaming("__int8_t_1442", "int8_t"); -__static_renaming("__int16_t_1443", "int16_t"); -__static_renaming("__int32_t_1444", "int32_t"); -__static_renaming("__int64_t_1445", "int64_t"); -__static_renaming("__u_int8_t_1446", "u_int8_t"); -__static_renaming("__u_int16_t_1447", "u_int16_t"); -__static_renaming("__u_int32_t_1448", "u_int32_t"); -__static_renaming("__u_int64_t_1449", "u_int64_t"); -__static_renaming("__register_t_1450", "register_t"); -__static_renaming("____bswap_32_1452", "__bswap_32"); -__static_renaming("____bswap_64_1456", "__bswap_64"); -__static_renaming("____bswap_64_1457", "__bswap_64"); -__static_renaming("____sig_atomic_t_1460", "__sig_atomic_t"); -__static_renaming("____sigset_t_1464", "__sigset_t"); -__static_renaming("__sigset_t_1465", "sigset_t"); -__static_renaming("__suseconds_t_1486", "suseconds_t"); -__static_renaming("__suseconds_t_1487", "suseconds_t"); -__static_renaming("__suseconds_t_1488", "suseconds_t"); -__static_renaming("____fd_mask_1490", "__fd_mask"); -__static_renaming("____fd_mask_1491", "__fd_mask"); -__static_renaming("__fd_set_1499", "fd_set"); -__static_renaming("__fd_mask_1500", "fd_mask"); -__static_renaming("__fd_mask_1501", "fd_mask"); -__static_renaming("__select_1513", "select"); -__static_renaming("__select_1514", "select"); -__static_renaming("__pselect_1529", "pselect"); -__static_renaming("__pselect_1530", "pselect"); -__static_renaming("____fdelt_chk_1534", "__fdelt_chk"); -__static_renaming("____fdelt_warn_1536", "__fdelt_warn"); -__static_renaming("__gnu_dev_major_1538", "gnu_dev_major"); -__static_renaming("__gnu_dev_major_1539", "gnu_dev_major"); -__static_renaming("__gnu_dev_minor_1541", "gnu_dev_minor"); -__static_renaming("__gnu_dev_makedev_1544", "gnu_dev_makedev"); -__static_renaming("__blksize_t_1549", "blksize_t"); -__static_renaming("__blksize_t_1550", "blksize_t"); -__static_renaming("__blksize_t_1551", "blksize_t"); -__static_renaming("__blkcnt_t_1553", "blkcnt_t"); -__static_renaming("__blkcnt_t_1554", "blkcnt_t"); -__static_renaming("__blkcnt_t_1555", "blkcnt_t"); -__static_renaming("__fsblkcnt_t_1557", "fsblkcnt_t"); -__static_renaming("__fsblkcnt_t_1558", "fsblkcnt_t"); -__static_renaming("__fsblkcnt_t_1559", "fsblkcnt_t"); -__static_renaming("__blkcnt_t_1561", "blkcnt_t"); -__static_renaming("__blkcnt_t_1562", "blkcnt_t"); -__static_renaming("__blkcnt_t_1563", "blkcnt_t"); -__static_renaming("__fsblkcnt_t_1565", "fsblkcnt_t"); -__static_renaming("__fsblkcnt_t_1566", "fsblkcnt_t"); -__static_renaming("__fsblkcnt_t_1567", "fsblkcnt_t"); -__static_renaming("__fsfilcnt_t_1569", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_1570", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_1571", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_1573", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_1574", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_1575", "fsfilcnt_t"); -__static_renaming("__pthread_t_1577", "pthread_t"); -__static_renaming("__pthread_attr_t_1581", "pthread_attr_t"); -__static_renaming("____pthread_list_t_1586", "__pthread_list_t"); -__static_renaming("____pthread_list_t_1587", "__pthread_list_t"); -__static_renaming("__pthread_mutex_t_1603", "pthread_mutex_t"); -__static_renaming("__pthread_mutexattr_t_1608", "pthread_mutexattr_t"); -__static_renaming("__rand_1609", "rand"); -__static_renaming("__srand_1611", "srand"); -__static_renaming("__rand_r_1613", "rand_r"); -__static_renaming("__drand48_1614", "drand48"); -__static_renaming("__erand48_1616", "erand48"); -__static_renaming("__lrand48_1617", "lrand48"); -__static_renaming("__nrand48_1619", "nrand48"); -__static_renaming("__mrand48_1620", "mrand48"); -__static_renaming("__jrand48_1622", "jrand48"); -__static_renaming("__srand48_1624", "srand48"); -__static_renaming("__seed48_1626", "seed48"); -__static_renaming("__lcong48_1628", "lcong48"); -__static_renaming("__malloc_1631", "malloc"); -__static_renaming("__malloc_1632", "malloc"); -__static_renaming("__malloc_1633", "malloc"); -__static_renaming("__malloc_1634", "malloc"); -__static_renaming("__calloc_1639", "calloc"); -__static_renaming("__calloc_1640", "calloc"); -__static_renaming("__calloc_1641", "calloc"); -__static_renaming("__calloc_1642", "calloc"); -__static_renaming("__realloc_1646", "realloc"); -__static_renaming("__realloc_1647", "realloc"); -__static_renaming("__free_1649", "free"); -__static_renaming("__cfree_1651", "cfree"); -__static_renaming("__alloca_1654", "alloca"); -__static_renaming("__alloca_1655", "alloca"); -__static_renaming("__valloc_1658", "valloc"); -__static_renaming("__valloc_1659", "valloc"); -__static_renaming("__valloc_1660", "valloc"); -__static_renaming("__valloc_1661", "valloc"); -__static_renaming("__posix_memalign_1667", "posix_memalign"); -__static_renaming("__posix_memalign_1668", "posix_memalign"); -__static_renaming("__posix_memalign_1669", "posix_memalign"); -__static_renaming("__posix_memalign_1670", "posix_memalign"); -__static_renaming("__aligned_alloc_1675", "aligned_alloc"); -__static_renaming("__aligned_alloc_1676", "aligned_alloc"); -__static_renaming("__aligned_alloc_1677", "aligned_alloc"); -__static_renaming("__aligned_alloc_1678", "aligned_alloc"); -__static_renaming("__aligned_alloc_1679", "aligned_alloc"); -__static_renaming("__aligned_alloc_1680", "aligned_alloc"); -__static_renaming("__aligned_alloc_1681", "aligned_alloc"); -__static_renaming("__aligned_alloc_1682", "aligned_alloc"); -__static_renaming("__abort_1683", "abort"); -__static_renaming("__atexit_1685", "atexit"); -__static_renaming("__at_quick_exit_1687", "at_quick_exit"); -__static_renaming("__on_exit_1692", "on_exit"); -__static_renaming("__exit_1694", "exit"); -__static_renaming("__exit_1695", "exit"); -__static_renaming("__quick_exit_1697", "quick_exit"); -__static_renaming("___Exit_1699", "_Exit"); -__static_renaming("__getenv_1701", "getenv"); -__static_renaming("__getenv_1702", "getenv"); -__static_renaming("__putenv_1704", "putenv"); -__static_renaming("__setenv_1708", "setenv"); -__static_renaming("__unsetenv_1710", "unsetenv"); -__static_renaming("__clearenv_1711", "clearenv"); -__static_renaming("__mktemp_1713", "mktemp"); -__static_renaming("__mkstemp_1716", "mkstemp"); -__static_renaming("__mkstemp_1717", "mkstemp"); -__static_renaming("__mkstemp_1718", "mkstemp"); -__static_renaming("__mkstemp_1719", "mkstemp"); -__static_renaming("__mkstemps_1724", "mkstemps"); -__static_renaming("__mkstemps_1725", "mkstemps"); -__static_renaming("__mkstemps_1726", "mkstemps"); -__static_renaming("__mkstemps_1727", "mkstemps"); -__static_renaming("__mkdtemp_1729", "mkdtemp"); -__static_renaming("__mkdtemp_1730", "mkdtemp"); -__static_renaming("__system_1732", "system"); -__static_renaming("__system_1733", "system"); -__static_renaming("__system_1734", "system"); -__static_renaming("__system_1735", "system"); -__static_renaming("__realpath_1738", "realpath"); -__static_renaming("__realpath_1739", "realpath"); -__static_renaming("____compar_fn_t_1740", "__compar_fn_t"); -__static_renaming("__bsearch_1751", "bsearch"); -__static_renaming("__bsearch_1752", "bsearch"); -__static_renaming("__bsearch_1755", "bsearch"); -__static_renaming("__bsearch_1756", "bsearch"); -__static_renaming("____l_1765", "__l"); -__static_renaming("____l_1766", "__l"); -__static_renaming("____u_1767", "__u"); -__static_renaming("____u_1768", "__u"); -__static_renaming("____idx_1769", "__idx"); -__static_renaming("____idx_1770", "__idx"); -__static_renaming("____p_1771", "__p"); -__static_renaming("____comparison_1772", "__comparison"); -__static_renaming("__qsort_1784", "qsort"); -__static_renaming("__qsort_1786", "qsort"); -__static_renaming("__qsort_1788", "qsort"); -__static_renaming("__qsort_1790", "qsort"); -__static_renaming("__abs_1793", "abs"); -__static_renaming("__abs_1794", "abs"); -__static_renaming("__labs_1796", "labs"); -__static_renaming("__labs_1797", "labs"); -__static_renaming("__llabs_1799", "llabs"); -__static_renaming("__llabs_1800", "llabs"); -__static_renaming("__div_1803", "div"); -__static_renaming("__div_1804", "div"); -__static_renaming("__ldiv_1807", "ldiv"); -__static_renaming("__ldiv_1809", "ldiv"); -__static_renaming("__lldiv_1813", "lldiv"); -__static_renaming("__lldiv_1815", "lldiv"); -__static_renaming("__ecvt_1821", "ecvt"); -__static_renaming("__ecvt_1822", "ecvt"); -__static_renaming("__fcvt_1827", "fcvt"); -__static_renaming("__fcvt_1828", "fcvt"); -__static_renaming("__gcvt_1832", "gcvt"); -__static_renaming("__gcvt_1833", "gcvt"); -__static_renaming("__qecvt_1838", "qecvt"); -__static_renaming("__qecvt_1839", "qecvt"); -__static_renaming("__qfcvt_1844", "qfcvt"); -__static_renaming("__qfcvt_1845", "qfcvt"); -__static_renaming("__qgcvt_1849", "qgcvt"); -__static_renaming("__qgcvt_1850", "qgcvt"); -__static_renaming("__ecvt_r_1858", "ecvt_r"); -__static_renaming("__ecvt_r_1859", "ecvt_r"); -__static_renaming("__fcvt_r_1867", "fcvt_r"); -__static_renaming("__fcvt_r_1868", "fcvt_r"); -__static_renaming("__qecvt_r_1876", "qecvt_r"); -__static_renaming("__qecvt_r_1877", "qecvt_r"); -__static_renaming("__qfcvt_r_1885", "qfcvt_r"); -__static_renaming("__qfcvt_r_1886", "qfcvt_r"); -__static_renaming("__mblen_1890", "mblen"); -__static_renaming("__mblen_1891", "mblen"); -__static_renaming("__mblen_1892", "mblen"); -__static_renaming("__mblen_1893", "mblen"); -__static_renaming("__mbtowc_1898", "mbtowc"); -__static_renaming("__mbtowc_1899", "mbtowc"); -__static_renaming("__wctomb_1902", "wctomb"); -__static_renaming("__mbstowcs_1907", "mbstowcs"); -__static_renaming("__mbstowcs_1908", "mbstowcs"); -__static_renaming("__wcstombs_1913", "wcstombs"); -__static_renaming("__wcstombs_1914", "wcstombs"); -__static_renaming("__rpmatch_1916", "rpmatch"); -__static_renaming("__rpmatch_1917", "rpmatch"); -__static_renaming("__getsubopt_1921", "getsubopt"); -__static_renaming("__getsubopt_1922", "getsubopt"); -__static_renaming("__getloadavg_1925", "getloadavg"); -__static_renaming("____realpath_chk_1931", "__realpath_chk"); -__static_renaming("____realpath_chk_1932", "__realpath_chk"); -__static_renaming("____realpath_alias_1935", "__realpath_alias"); -__static_renaming("____realpath_chk_warn_1940", "__realpath_chk_warn"); -__static_renaming("____realpath_chk_warn_1941", "__realpath_chk_warn"); -__static_renaming("____ptsname_r_chk_1951", "__ptsname_r_chk"); -__static_renaming("____ptsname_r_chk_1952", "__ptsname_r_chk"); -__static_renaming("____ptsname_r_alias_1957", "__ptsname_r_alias"); -__static_renaming("____ptsname_r_alias_1958", "__ptsname_r_alias"); -__static_renaming("____ptsname_r_chk_warn_1965", "__ptsname_r_chk_warn"); -__static_renaming("____ptsname_r_chk_warn_1966", "__ptsname_r_chk_warn"); -__static_renaming("____wctomb_chk_1977", "__wctomb_chk"); -__static_renaming("____wctomb_chk_1978", "__wctomb_chk"); -__static_renaming("____wctomb_alias_1981", "__wctomb_alias"); -__static_renaming("____mbstowcs_chk_1990", "__mbstowcs_chk"); -__static_renaming("____mbstowcs_chk_1991", "__mbstowcs_chk"); -__static_renaming("____mbstowcs_alias_1996", "__mbstowcs_alias"); -__static_renaming("____mbstowcs_alias_1997", "__mbstowcs_alias"); -__static_renaming("____mbstowcs_chk_warn_2004", "__mbstowcs_chk_warn"); -__static_renaming("____mbstowcs_chk_warn_2005", "__mbstowcs_chk_warn"); -__static_renaming("____wcstombs_chk_2016", "__wcstombs_chk"); -__static_renaming("____wcstombs_chk_2017", "__wcstombs_chk"); -__static_renaming("____wcstombs_alias_2022", "__wcstombs_alias"); -__static_renaming("____wcstombs_alias_2023", "__wcstombs_alias"); -__static_renaming("____wcstombs_chk_warn_2030", "__wcstombs_chk_warn"); -__static_renaming("____wcstombs_chk_warn_2031", "__wcstombs_chk_warn"); -__static_renaming("__ptrdiff_t_2036", "ptrdiff_t"); -__static_renaming("__size_t_2037", "size_t"); -__static_renaming("__memmove_2053", "memmove"); -__static_renaming("__memmove_2054", "memmove"); -__static_renaming("__memmove_2055", "memmove"); -__static_renaming("__memset_2070", "memset"); -__static_renaming("__memset_2071", "memset"); -__static_renaming("__memset_2072", "memset"); -__static_renaming("__memset_2073", "memset"); -__static_renaming("__memset_2074", "memset"); -__static_renaming("__memset_2075", "memset"); -__static_renaming("__memcmp_2081", "memcmp"); -__static_renaming("__memcmp_2082", "memcmp"); -__static_renaming("__memcmp_2083", "memcmp"); -__static_renaming("__memchr_2089", "memchr"); -__static_renaming("__memchr_2090", "memchr"); -__static_renaming("__memchr_2091", "memchr"); -__static_renaming("__strcpy_2094", "strcpy"); -__static_renaming("__strncpy_2100", "strncpy"); -__static_renaming("__strncpy_2101", "strncpy"); -__static_renaming("__strncpy_2102", "strncpy"); -__static_renaming("__strcat_2105", "strcat"); -__static_renaming("__strncat_2111", "strncat"); -__static_renaming("__strncat_2112", "strncat"); -__static_renaming("__strncat_2113", "strncat"); -__static_renaming("__strcmp_2116", "strcmp"); -__static_renaming("__strncmp_2122", "strncmp"); -__static_renaming("__strncmp_2123", "strncmp"); -__static_renaming("__strncmp_2124", "strncmp"); -__static_renaming("__strcoll_2127", "strcoll"); -__static_renaming("__strxfrm_2133", "strxfrm"); -__static_renaming("__strxfrm_2134", "strxfrm"); -__static_renaming("__strxfrm_2135", "strxfrm"); -__static_renaming("____locale_t_2143", "__locale_t"); -__static_renaming("__locale_t_2144", "locale_t"); -__static_renaming("__strcoll_l_2148", "strcoll_l"); -__static_renaming("__strxfrm_l_2155", "strxfrm_l"); -__static_renaming("__strxfrm_l_2156", "strxfrm_l"); -__static_renaming("__strxfrm_l_2157", "strxfrm_l"); -__static_renaming("__strdup_2159", "strdup"); -__static_renaming("__strndup_2164", "strndup"); -__static_renaming("__strndup_2165", "strndup"); -__static_renaming("__strndup_2166", "strndup"); -__static_renaming("__strchr_2169", "strchr"); -__static_renaming("__strrchr_2172", "strrchr"); -__static_renaming("__strcspn_2175", "strcspn"); -__static_renaming("__strcspn_2176", "strcspn"); -__static_renaming("__strcspn_2177", "strcspn"); -__static_renaming("__strspn_2180", "strspn"); -__static_renaming("__strspn_2181", "strspn"); -__static_renaming("__strspn_2182", "strspn"); -__static_renaming("__strpbrk_2185", "strpbrk"); -__static_renaming("__strstr_2188", "strstr"); -__static_renaming("__strtok_2191", "strtok"); -__static_renaming("____strtok_r_2195", "__strtok_r"); -__static_renaming("__strtok_r_2199", "strtok_r"); -__static_renaming("__strlen_2201", "strlen"); -__static_renaming("__strlen_2202", "strlen"); -__static_renaming("__strlen_2203", "strlen"); -__static_renaming("__strlen_2204", "strlen"); -__static_renaming("__strlen_2205", "strlen"); -__static_renaming("__strlen_2206", "strlen"); -__static_renaming("__strnlen_2211", "strnlen"); -__static_renaming("__strnlen_2212", "strnlen"); -__static_renaming("__strnlen_2213", "strnlen"); -__static_renaming("__strerror_2215", "strerror"); -__static_renaming("__strerror_2216", "strerror"); -__static_renaming("__strerror_r_2222", "strerror_r"); -__static_renaming("__strerror_r_2223", "strerror_r"); -__static_renaming("__strerror_r_2224", "strerror_r"); -__static_renaming("__strerror_l_2227", "strerror_l"); -__static_renaming("____bzero_2232", "__bzero"); -__static_renaming("____bzero_2233", "__bzero"); -__static_renaming("____bzero_2234", "__bzero"); -__static_renaming("____bzero_2235", "__bzero"); -__static_renaming("____bzero_2236", "__bzero"); -__static_renaming("____bzero_2237", "__bzero"); -__static_renaming("__bcopy_2243", "bcopy"); -__static_renaming("__bcopy_2244", "bcopy"); -__static_renaming("__bcopy_2245", "bcopy"); -__static_renaming("__bzero_2250", "bzero"); -__static_renaming("__bzero_2251", "bzero"); -__static_renaming("__bzero_2252", "bzero"); -__static_renaming("__bcmp_2258", "bcmp"); -__static_renaming("__bcmp_2259", "bcmp"); -__static_renaming("__bcmp_2260", "bcmp"); -__static_renaming("__index_2263", "index"); -__static_renaming("__rindex_2266", "rindex"); -__static_renaming("__ffs_2268", "ffs"); -__static_renaming("__strcasecmp_2271", "strcasecmp"); -__static_renaming("__strncasecmp_2277", "strncasecmp"); -__static_renaming("__strncasecmp_2278", "strncasecmp"); -__static_renaming("__strncasecmp_2279", "strncasecmp"); -__static_renaming("__strsep_2282", "strsep"); -__static_renaming("__strsignal_2284", "strsignal"); -__static_renaming("____stpcpy_2287", "__stpcpy"); -__static_renaming("__stpcpy_2290", "stpcpy"); -__static_renaming("____stpncpy_2296", "__stpncpy"); -__static_renaming("____stpncpy_2297", "__stpncpy"); -__static_renaming("____stpncpy_2298", "__stpncpy"); -__static_renaming("__stpncpy_2304", "stpncpy"); -__static_renaming("__stpncpy_2305", "stpncpy"); -__static_renaming("__stpncpy_2306", "stpncpy"); -__static_renaming("____stpncpy_chk_2360", "__stpncpy_chk"); -__static_renaming("____stpncpy_chk_2361", "__stpncpy_chk"); -__static_renaming("____stpncpy_chk_2362", "__stpncpy_chk"); -__static_renaming("____stpncpy_alias_2368", "__stpncpy_alias"); -__static_renaming("____stpncpy_alias_2369", "__stpncpy_alias"); -__static_renaming("____stpncpy_alias_2370", "__stpncpy_alias"); -__static_renaming("__dt_2390", "dt"); -__static_renaming("__buf_2391", "buf"); -__static_renaming("__build_dep_2392", "build_dep"); -__static_renaming("__build_dep_2393", "build_dep"); -__static_renaming("__main_2408", "main"); +__static_renaming("__fpos_t_279", "fpos_t"); +__static_renaming("__fpos_t_281", "fpos_t"); +__static_renaming("__stdin_283", "stdin"); +__static_renaming("__stdin_284", "stdin"); +__static_renaming("__stdout_286", "stdout"); +__static_renaming("__stdout_287", "stdout"); +__static_renaming("__stderr_289", "stderr"); +__static_renaming("__stderr_290", "stderr"); +__static_renaming("__remove_293", "remove"); +__static_renaming("__rename_296", "rename"); +__static_renaming("__tmpfile_297", "tmpfile"); +__static_renaming("__tmpfile_299", "tmpfile"); +__static_renaming("__tmpfile_301", "tmpfile"); +__static_renaming("__tmpfile_303", "tmpfile"); +__static_renaming("__tmpnam_306", "tmpnam"); +__static_renaming("__tmpnam_307", "tmpnam"); +__static_renaming("__fclose_310", "fclose"); +__static_renaming("__fflush_314", "fflush"); +__static_renaming("__fopen_318", "fopen"); +__static_renaming("__fopen_320", "fopen"); +__static_renaming("__fopen_328", "fopen"); +__static_renaming("__fopen_330", "fopen"); +__static_renaming("__freopen_336", "freopen"); +__static_renaming("__freopen_338", "freopen"); +__static_renaming("__freopen_340", "freopen"); +__static_renaming("__freopen_342", "freopen"); +__static_renaming("__setbuf_347", "setbuf"); +__static_renaming("__setvbuf_354", "setvbuf"); +__static_renaming("__fprintf_359", "fprintf"); +__static_renaming("__printf_362", "printf"); +__static_renaming("__sprintf_365", "sprintf"); +__static_renaming("__vfprintf_371", "vfprintf"); +__static_renaming("__vprintf_378", "vprintf"); +__static_renaming("__vsprintf_384", "vsprintf"); +__static_renaming("__snprintf_389", "snprintf"); +__static_renaming("__vsnprintf_395", "vsnprintf"); +__static_renaming("__fscanf_400", "fscanf"); +__static_renaming("__fscanf_402", "fscanf"); +__static_renaming("__scanf_405", "scanf"); +__static_renaming("__scanf_406", "scanf"); +__static_renaming("__sscanf_409", "sscanf"); +__static_renaming("__vfscanf_433", "vfscanf"); +__static_renaming("__vfscanf_437", "vfscanf"); +__static_renaming("__vscanf_444", "vscanf"); +__static_renaming("__vscanf_446", "vscanf"); +__static_renaming("__vsscanf_452", "vsscanf"); +__static_renaming("__fgetc_487", "fgetc"); +__static_renaming("__getc_491", "getc"); +__static_renaming("__getchar_493", "getchar"); +__static_renaming("__fputc_497", "fputc"); +__static_renaming("__putc_502", "putc"); +__static_renaming("__putchar_505", "putchar"); +__static_renaming("__fgets_510", "fgets"); +__static_renaming("__fgets_512", "fgets"); +__static_renaming("__fputs_517", "fputs"); +__static_renaming("__puts_520", "puts"); +__static_renaming("__ungetc_524", "ungetc"); +__static_renaming("__fseek_546", "fseek"); +__static_renaming("__ftell_550", "ftell"); +__static_renaming("__ftell_552", "ftell"); +__static_renaming("__rewind_556", "rewind"); +__static_renaming("__fgetpos_562", "fgetpos"); +__static_renaming("__fgetpos_574", "fgetpos"); +__static_renaming("__fsetpos_582", "fsetpos"); +__static_renaming("__fsetpos_586", "fsetpos"); +__static_renaming("__clearerr_592", "clearerr"); +__static_renaming("__feof_596", "feof"); +__static_renaming("__feof_598", "feof"); +__static_renaming("__ferror_602", "ferror"); +__static_renaming("__ferror_604", "ferror"); +__static_renaming("__perror_607", "perror"); +__static_renaming("____sprintf_chk_617", "__sprintf_chk"); +__static_renaming("____vsprintf_chk_624", "__vsprintf_chk"); +__static_renaming("____snprintf_chk_638", "__snprintf_chk"); +__static_renaming("____vsnprintf_chk_646", "__vsnprintf_chk"); +__static_renaming("____fprintf_chk_661", "__fprintf_chk"); +__static_renaming("____printf_chk_665", "__printf_chk"); +__static_renaming("____vfprintf_chk_672", "__vfprintf_chk"); +__static_renaming("____vprintf_chk_680", "__vprintf_chk"); +__static_renaming("____fgets_chk_704", "__fgets_chk"); +__static_renaming("____fgets_chk_706", "__fgets_chk"); +__static_renaming("____fgets_alias_712", "__fgets_alias"); +__static_renaming("____fgets_chk_warn_719", "__fgets_chk_warn"); +__static_renaming("__ptrdiff_t_755", "ptrdiff_t"); +__static_renaming("__size_t_756", "size_t"); +__static_renaming("__wchar_t_759", "wchar_t"); +__static_renaming("__wchar_t_760", "wchar_t"); +__static_renaming("__div_t_765", "div_t"); +__static_renaming("__ldiv_t_770", "ldiv_t"); +__static_renaming("__lldiv_t_775", "lldiv_t"); +__static_renaming("____ctype_get_mb_cur_max_776", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_777", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_778", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_779", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_780", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_781", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_782", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_783", "__ctype_get_mb_cur_max"); +__static_renaming("__atof_785", "atof"); +__static_renaming("__atof_786", "atof"); +__static_renaming("__atoi_788", "atoi"); +__static_renaming("__atoi_789", "atoi"); +__static_renaming("__atol_791", "atol"); +__static_renaming("__atol_792", "atol"); +__static_renaming("__atoll_794", "atoll"); +__static_renaming("__atoll_795", "atoll"); +__static_renaming("__strtod_798", "strtod"); +__static_renaming("__strtof_801", "strtof"); +__static_renaming("__strtold_804", "strtold"); +__static_renaming("__strtol_808", "strtol"); +__static_renaming("__strtoul_812", "strtoul"); +__static_renaming("__strtoll_816", "strtoll"); +__static_renaming("__strtoull_820", "strtoull"); +__static_renaming("__rand_824", "rand"); +__static_renaming("__rand_825", "rand"); +__static_renaming("__srand_827", "srand"); +__static_renaming("__malloc_830", "malloc"); +__static_renaming("__malloc_831", "malloc"); +__static_renaming("__malloc_832", "malloc"); +__static_renaming("__malloc_833", "malloc"); +__static_renaming("__calloc_838", "calloc"); +__static_renaming("__calloc_839", "calloc"); +__static_renaming("__calloc_840", "calloc"); +__static_renaming("__calloc_841", "calloc"); +__static_renaming("__realloc_845", "realloc"); +__static_renaming("__realloc_846", "realloc"); +__static_renaming("__realloc_847", "realloc"); +__static_renaming("__realloc_848", "realloc"); +__static_renaming("__free_850", "free"); +__static_renaming("__aligned_alloc_855", "aligned_alloc"); +__static_renaming("__aligned_alloc_856", "aligned_alloc"); +__static_renaming("__aligned_alloc_857", "aligned_alloc"); +__static_renaming("__aligned_alloc_858", "aligned_alloc"); +__static_renaming("__abort_859", "abort"); +__static_renaming("__atexit_861", "atexit"); +__static_renaming("__at_quick_exit_863", "at_quick_exit"); +__static_renaming("__exit_865", "exit"); +__static_renaming("__quick_exit_867", "quick_exit"); +__static_renaming("___Exit_869", "_Exit"); +__static_renaming("__getenv_871", "getenv"); +__static_renaming("__getenv_872", "getenv"); +__static_renaming("__system_874", "system"); +__static_renaming("__system_875", "system"); +__static_renaming("____compar_fn_t_876", "__compar_fn_t"); +__static_renaming("__bsearch_887", "bsearch"); +__static_renaming("__bsearch_888", "bsearch"); +__static_renaming("__bsearch_891", "bsearch"); +__static_renaming("__bsearch_892", "bsearch"); +__static_renaming("____l_901", "__l"); +__static_renaming("____l_902", "__l"); +__static_renaming("____u_903", "__u"); +__static_renaming("____u_904", "__u"); +__static_renaming("____idx_905", "__idx"); +__static_renaming("____idx_906", "__idx"); +__static_renaming("____p_907", "__p"); +__static_renaming("____comparison_908", "__comparison"); +__static_renaming("__qsort_920", "qsort"); +__static_renaming("__qsort_922", "qsort"); +__static_renaming("__qsort_924", "qsort"); +__static_renaming("__qsort_926", "qsort"); +__static_renaming("__abs_929", "abs"); +__static_renaming("__abs_930", "abs"); +__static_renaming("__labs_932", "labs"); +__static_renaming("__labs_933", "labs"); +__static_renaming("__llabs_935", "llabs"); +__static_renaming("__llabs_936", "llabs"); +__static_renaming("__div_939", "div"); +__static_renaming("__div_940", "div"); +__static_renaming("__ldiv_943", "ldiv"); +__static_renaming("__ldiv_945", "ldiv"); +__static_renaming("__lldiv_949", "lldiv"); +__static_renaming("__lldiv_951", "lldiv"); +__static_renaming("__mblen_956", "mblen"); +__static_renaming("__mblen_957", "mblen"); +__static_renaming("__mbtowc_963", "mbtowc"); +__static_renaming("__mbtowc_964", "mbtowc"); +__static_renaming("__mbtowc_965", "mbtowc"); +__static_renaming("__wctomb_969", "wctomb"); +__static_renaming("__wctomb_970", "wctomb"); +__static_renaming("__mbstowcs_976", "mbstowcs"); +__static_renaming("__mbstowcs_977", "mbstowcs"); +__static_renaming("__mbstowcs_978", "mbstowcs"); +__static_renaming("__wcstombs_984", "wcstombs"); +__static_renaming("__wcstombs_985", "wcstombs"); +__static_renaming("__wcstombs_986", "wcstombs"); +__static_renaming("____realpath_chk_992", "__realpath_chk"); +__static_renaming("____realpath_chk_993", "__realpath_chk"); +__static_renaming("____realpath_alias_996", "__realpath_alias"); +__static_renaming("____realpath_chk_warn_1001", "__realpath_chk_warn"); +__static_renaming("____realpath_chk_warn_1002", "__realpath_chk_warn"); +__static_renaming("____ptsname_r_chk_1012", "__ptsname_r_chk"); +__static_renaming("____ptsname_r_chk_1013", "__ptsname_r_chk"); +__static_renaming("____ptsname_r_alias_1018", "__ptsname_r_alias"); +__static_renaming("____ptsname_r_alias_1019", "__ptsname_r_alias"); +__static_renaming("____ptsname_r_chk_warn_1026", "__ptsname_r_chk_warn"); +__static_renaming("____ptsname_r_chk_warn_1027", "__ptsname_r_chk_warn"); +__static_renaming("____wctomb_chk_1038", "__wctomb_chk"); +__static_renaming("____wctomb_chk_1039", "__wctomb_chk"); +__static_renaming("____wctomb_alias_1042", "__wctomb_alias"); +__static_renaming("____mbstowcs_chk_1051", "__mbstowcs_chk"); +__static_renaming("____mbstowcs_chk_1052", "__mbstowcs_chk"); +__static_renaming("____mbstowcs_alias_1057", "__mbstowcs_alias"); +__static_renaming("____mbstowcs_alias_1058", "__mbstowcs_alias"); +__static_renaming("____mbstowcs_chk_warn_1065", "__mbstowcs_chk_warn"); +__static_renaming("____mbstowcs_chk_warn_1066", "__mbstowcs_chk_warn"); +__static_renaming("____wcstombs_chk_1077", "__wcstombs_chk"); +__static_renaming("____wcstombs_chk_1078", "__wcstombs_chk"); +__static_renaming("____wcstombs_alias_1083", "__wcstombs_alias"); +__static_renaming("____wcstombs_alias_1084", "__wcstombs_alias"); +__static_renaming("____wcstombs_chk_warn_1091", "__wcstombs_chk_warn"); +__static_renaming("____wcstombs_chk_warn_1092", "__wcstombs_chk_warn"); +__static_renaming("__memmove_1109", "memmove"); +__static_renaming("__memmove_1110", "memmove"); +__static_renaming("__memset_1115", "memset"); +__static_renaming("__memset_1116", "memset"); +__static_renaming("__memcmp_1121", "memcmp"); +__static_renaming("__memcmp_1122", "memcmp"); +__static_renaming("__memchr_1127", "memchr"); +__static_renaming("__memchr_1128", "memchr"); +__static_renaming("__strcpy_1131", "strcpy"); +__static_renaming("__strncpy_1136", "strncpy"); +__static_renaming("__strncpy_1137", "strncpy"); +__static_renaming("__strcat_1140", "strcat"); +__static_renaming("__strncat_1145", "strncat"); +__static_renaming("__strncat_1146", "strncat"); +__static_renaming("__strcmp_1149", "strcmp"); +__static_renaming("__strncmp_1154", "strncmp"); +__static_renaming("__strncmp_1155", "strncmp"); +__static_renaming("__strcoll_1158", "strcoll"); +__static_renaming("__strxfrm_1163", "strxfrm"); +__static_renaming("__strxfrm_1164", "strxfrm"); +__static_renaming("__strchr_1167", "strchr"); +__static_renaming("__strrchr_1170", "strrchr"); +__static_renaming("__strcspn_1173", "strcspn"); +__static_renaming("__strcspn_1174", "strcspn"); +__static_renaming("__strspn_1177", "strspn"); +__static_renaming("__strspn_1178", "strspn"); +__static_renaming("__strpbrk_1181", "strpbrk"); +__static_renaming("__strstr_1184", "strstr"); +__static_renaming("__strtok_1187", "strtok"); +__static_renaming("____strtok_r_1191", "__strtok_r"); +__static_renaming("__strlen_1193", "strlen"); +__static_renaming("__strlen_1194", "strlen"); +__static_renaming("__strerror_1196", "strerror"); +__static_renaming("____bzero_1200", "__bzero"); +__static_renaming("____bzero_1201", "__bzero"); +__static_renaming("____stpncpy_chk_1235", "__stpncpy_chk"); +__static_renaming("____stpncpy_chk_1236", "__stpncpy_chk"); +__static_renaming("____stpncpy_alias_1241", "__stpncpy_alias"); +__static_renaming("____stpncpy_alias_1242", "__stpncpy_alias"); +__static_renaming("__dt_1258", "dt"); +__static_renaming("__buf_1259", "buf"); +__static_renaming("__build_dep_1260", "build_dep"); +__static_renaming("__build_dep_1261", "build_dep"); +__static_renaming("__main_1276", "main"); __static_condition_renaming("__static_condition_default_53", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); __static_condition_renaming("__static_condition_default_76", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); @@ -1269,347 +623,182 @@ __static_condition_renaming("__static_condition_default_271", "!(defined __need_ __static_condition_renaming("__static_condition_default_274", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); __static_condition_renaming("__static_condition_default_275", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); __static_condition_renaming("__static_condition_default_278", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_280", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); -__static_condition_renaming("__static_condition_default_282", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_284", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_286", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_288", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_290", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_293", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_296", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_299", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_311", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_313", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_315", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_317", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_331", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_333", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_337", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_341", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_345", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_347", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_355", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_357", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_363", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_365", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_367", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_369", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_373", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_375", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_380", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_382", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_386", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_388", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_393", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_395", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_402", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_408", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_412", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_417", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_419", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_431", "!(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_432", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_433", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_438", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_444", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_455", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_461", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_469", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_471", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_473", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_475", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_486", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_488", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_489", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_491", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_493", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_494", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_497", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_499", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_503", "!(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_510", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_511", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_512", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_514", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_515", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_516", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_521", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_523", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_529", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_536", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_537", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_538", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_539", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_541", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_542", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_543", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_544", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_549", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_550", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_552", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_553", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_559", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_560", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_564", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_568", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_573", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_578", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_583", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_585", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_590", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_597", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_602", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_608", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_613", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_619", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_621", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_623", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_625", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_632", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_633", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_634", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_636", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_637", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_638", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_645", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_646", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_647", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_649", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_650", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_651", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_657", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_658", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_659", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_661", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_662", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_663", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_668", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_670", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_677", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_683", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_684", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_685", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_686", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_692", "!(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_693", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_699", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_700", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_701", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_702", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_708", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_709", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_715", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_717", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_721", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_723", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_727", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_734", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_735", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_736", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_745", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_746", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_747", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_751", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_752", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_753", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_755", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_756", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_757", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_759", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_760", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_761", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_767", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_768", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_769", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_779", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_780", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_781", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_787", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_788", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_789", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_791", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_792", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_793", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_797", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_801", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_803", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_807", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_809", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_813", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_817", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_819", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_823", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_825", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_834", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_836", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_840", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_842", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_846", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_848", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_852", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_858", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_862", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_864", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_868", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_872", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_875", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_878", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_883", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_887", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_891", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_894", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_907", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_914", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_929", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_938", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_944", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_955", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_956", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_957", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_963", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_967", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_972", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_978", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_979", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_980", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_991", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_998", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1005", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1007", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1009", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1015", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1022", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1027", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1028", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1035", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1036", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1042", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1043", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1050", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1051", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1057", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1058", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1065", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1066", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1072", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1073", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1080", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1081", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1089", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_1090", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1091", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1152", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1159", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1164", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1165", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1315", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1341", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __u_char_defined)"); -__static_condition_renaming("__static_condition_default_1345", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __u_char_defined)"); -__static_condition_renaming("__static_condition_default_1349", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __u_char_defined)"); -__static_condition_renaming("__static_condition_default_1353", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined)"); -__static_condition_renaming("__static_condition_default_1357", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined)"); -__static_condition_renaming("__static_condition_default_1361", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_1365", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_1369", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_1373", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1377", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __nlink_t_defined)"); -__static_condition_renaming("__static_condition_default_1381", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __nlink_t_defined)"); -__static_condition_renaming("__static_condition_default_1385", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __nlink_t_defined)"); -__static_condition_renaming("__static_condition_default_1388", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1391", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1395", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && (defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1398", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1402", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __id_t_defined)"); -__static_condition_renaming("__static_condition_default_1405", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1409", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_1416", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_1420", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_1424", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __clock_t_defined)"); -__static_condition_renaming("__static_condition_default_1428", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __time_t_defined)"); -__static_condition_renaming("__static_condition_default_1432", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __clockid_t_defined)"); -__static_condition_renaming("__static_condition_default_1436", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timer_t_defined)"); -__static_condition_renaming("__static_condition_default_1453", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1458", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1459", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1475", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_1485", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_1489", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __suseconds_t_defined)"); -__static_condition_renaming("__static_condition_default_1498", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1515", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_1516", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_1531", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_1532", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_1552", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blksize_t_defined)"); -__static_condition_renaming("__static_condition_default_1556", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined)"); -__static_condition_renaming("__static_condition_default_1560", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1564", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined)"); -__static_condition_renaming("__static_condition_default_1568", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1572", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1576", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1749", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1750", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1753", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1754", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1773", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1774", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1775", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1776", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1785", "!(defined __need___FILE) && !(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1787", "(defined __need___FILE) && !(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1789", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1791", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1808", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1810", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1814", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1816", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1944", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_2043", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_2044", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_2045", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _STDLIB_H) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDLIB_H) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDLIB_H) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDLIB_H) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2046", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2047", "(defined __need___FILE) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2062", "!(defined __need___FILE) && !(defined __STRICT_ANSI__)"); -__static_condition_renaming("__static_condition_default_2063", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2064", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2312", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2313", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2314", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2320", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2321", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2322", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2328", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2329", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2330", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2342", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2343", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2349", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2350", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2351", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2376", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2377", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2378", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2381", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2387", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2388", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2389", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2394", "!(defined _FORTIFY_SOURCE) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS)"); -__static_condition_renaming("__static_condition_default_2395", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS)"); -__static_condition_renaming("__static_condition_default_2396", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDLIB_H) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDLIB_H) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDLIB_H) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDLIB_H) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS)"); -__static_condition_renaming("__static_condition_default_2397", "!(defined _FORTIFY_SOURCE) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS)"); -__static_condition_renaming("__static_condition_default_2398", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS)"); -__static_condition_renaming("__static_condition_default_2399", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDLIB_H) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDLIB_H) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDLIB_H) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDLIB_H) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS)"); -__static_condition_renaming("__static_condition_default_2400", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS)"); -__static_condition_renaming("__static_condition_default_2401", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS)"); -__static_condition_renaming("__static_condition_default_2402", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS)"); -__static_condition_renaming("__static_condition_default_2403", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS)"); -__static_condition_renaming("__static_condition_default_2404", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS)"); -__static_condition_renaming("__static_condition_default_2405", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS)"); -__static_condition_renaming("__static_condition_default_2409", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2410", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2411", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && (defined _STDLIB_H) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && (defined _STDLIB_H) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO)"); - -if (__static_condition_default_2411) -{ +__static_condition_renaming("__static_condition_default_280", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_282", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_285", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_288", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_291", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_298", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_300", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_302", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_304", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_311", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_315", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_319", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_321", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_329", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_331", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_337", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_339", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_341", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_343", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_348", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_355", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_360", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_372", "!(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_373", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_374", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_379", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_385", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_396", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_401", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_403", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_414", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_415", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_417", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_418", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_421", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_423", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_427", "!(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_434", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_435", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_436", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_438", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_439", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_440", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_445", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_447", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_453", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_460", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_461", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_462", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_463", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_465", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_466", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_467", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_468", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_473", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_474", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_476", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_477", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_483", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_484", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_488", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_492", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_498", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_503", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_511", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_513", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_518", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_525", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_531", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_532", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_533", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_534", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_540", "!(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_541", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_547", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_551", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_553", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_557", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_563", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_564", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_565", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_575", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_576", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_577", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_583", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_584", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_585", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_587", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_588", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_589", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_593", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_597", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_599", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_603", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_605", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_611", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_625", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_632", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_647", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_656", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_662", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_673", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_674", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_675", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_681", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_685", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_690", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_696", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_697", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_698", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_705", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_707", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_713", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_720", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_725", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_726", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_733", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_734", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_740", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_741", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_748", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_749", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_757", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_758", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_885", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_886", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_889", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_890", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_909", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_910", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_911", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_912", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_921", "!(defined __need___FILE) && !(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_923", "(defined __need___FILE) && !(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_925", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_927", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_944", "!(defined _FORTIFY_SOURCE) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_946", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_950", "!(defined _FORTIFY_SOURCE) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_952", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1005", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1101", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1102", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1103", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1104", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1206", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1207", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1212", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1213", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1218", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1219", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1222", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1227", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1228", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1247", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1248", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1251", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1256", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1257", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1262", "!(defined _FORTIFY_SOURCE) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS)"); +__static_condition_renaming("__static_condition_default_1263", "!(defined _FORTIFY_SOURCE) && !(defined __USE_EXTERN_INLINES) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __USE_EXTERN_INLINES) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __USE_EXTERN_INLINES) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __USE_EXTERN_INLINES) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS)"); +__static_condition_renaming("__static_condition_default_1264", "!(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS)"); +__static_condition_renaming("__static_condition_default_1265", "!(defined _FORTIFY_SOURCE) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS)"); +__static_condition_renaming("__static_condition_default_1266", "!(defined _FORTIFY_SOURCE) && !(defined __USE_EXTERN_INLINES) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __USE_EXTERN_INLINES) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __USE_EXTERN_INLINES) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __USE_EXTERN_INLINES) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS)"); +__static_condition_renaming("__static_condition_default_1267", "!(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS)"); +__static_condition_renaming("__static_condition_default_1268", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS)"); +__static_condition_renaming("__static_condition_default_1269", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __USE_EXTERN_INLINES) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS)"); +__static_condition_renaming("__static_condition_default_1270", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS)"); +__static_condition_renaming("__static_condition_default_1271", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS)"); +__static_condition_renaming("__static_condition_default_1272", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __USE_EXTERN_INLINES) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS)"); +__static_condition_renaming("__static_condition_default_1273", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS)"); +__static_condition_renaming("__static_condition_default_1277", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1278", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1279", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); + +if (__static_condition_default_1279) { __static_parse_error("Unable to parse"); } }; @@ -1775,375 +964,28 @@ typedef ____ssize_t_49 (____io_read_fn_181) (void * (____cookie_178), char * typedef ____ssize_t_49 (____io_write_fn_186) (void * (____cookie_183), const char * (____buf_184), __size_t_1 ____n_185);// L341:L342 typedef int (____io_seek_fn_192) (void * (____cookie_188), ____off64_t_24 * (____pos_189), int ____w_191);// L350 typedef int (____io_close_fn_195) (void * (____cookie_194));// L353 -typedef ____gnuc_va_list_86 __va_list_279;// L79 -typedef ____off_t_23 __off_t_281;// L90 -typedef ____off64_t_24 __off_t_283;// L92 -typedef ____ssize_t_49 __ssize_t_285;// L102 -typedef ___G_fpos_t_77 __fpos_t_287;// L110 -typedef ___G_fpos64_t_85 __fpos_t_289;// L112 -extern const char * const __sys_errlist_830[];// L27 -typedef long int __ptrdiff_t_1092;// L143:L324 -typedef long unsigned int __size_t_1093;// L177:L209 -typedef int __wchar_t_1094;// L243:L321 -enum ____anonymous_tag_1098_1099 { -__P_ALL_1095, -__P_PID_1096, -__P_PGID_1097, -}; -typedef enum ____anonymous_tag_1098_1099 __idtype_t_1100;// L50:L55 -typedef unsigned char ____u_char_1101;// L30 -typedef unsigned short int ____u_short_1102;// L31 -typedef unsigned int ____u_int_1103;// L32 -typedef unsigned long int ____u_long_1104;// L33 -typedef signed char ____int8_t_1105;// L36 -typedef unsigned char ____uint8_t_1106;// L37 -typedef signed short int ____int16_t_1107;// L38 -typedef unsigned short int ____uint16_t_1108;// L39 -typedef signed int ____int32_t_1109;// L40 -typedef unsigned int ____uint32_t_1110;// L41 -typedef signed long int ____int64_t_1111;// L43 -typedef unsigned long int ____uint64_t_1112;// L44 -typedef long int ____quad_t_1113;// L52 -typedef unsigned long int ____u_quad_t_1114;// L53 -typedef unsigned long int ____dev_t_1115;// L109:L124 -typedef unsigned int ____uid_t_1116;// L92:L125 -typedef unsigned int ____gid_t_1117;// L92:L126 -typedef unsigned long int ____ino_t_1118;// L94:L127 -typedef unsigned long int ____ino64_t_1119;// L109:L128 -typedef unsigned int ____mode_t_1120;// L92:L129 -typedef unsigned long int ____nlink_t_1121;// L94:L130 -typedef long int ____off_t_1122;// L93:L131 -typedef long int ____off64_t_1123;// L108:L132 -typedef int ____pid_t_1124;// L91:L133 -struct ____anonymous_tag_1125_1126 { -int ____val_1127[2];// L72 -}; -typedef struct ____anonymous_tag_1125_1126 ____fsid_t_1128;// L72:L134 -typedef long int ____clock_t_1129;// L93:L135 -typedef unsigned long int ____rlim_t_1130;// L94:L136 -typedef unsigned long int ____rlim64_t_1131;// L109:L137 -typedef unsigned int ____id_t_1132;// L92:L138 -typedef long int ____time_t_1133;// L93:L139 -typedef unsigned int ____useconds_t_1134;// L92:L140 -typedef long int ____suseconds_t_1135;// L93:L141 -typedef int ____daddr_t_1136;// L91:L143 -typedef int ____key_t_1137;// L91:L144 -typedef int ____clockid_t_1138;// L91:L147 -typedef void * (____timer_t_1139);// L70:L150 -typedef long int ____blksize_t_1140;// L93:L153 -typedef long int ____blkcnt_t_1141;// L93:L158 -typedef long int ____blkcnt64_t_1142;// L108:L159 -typedef unsigned long int ____fsblkcnt_t_1143;// L94:L162 -typedef unsigned long int ____fsblkcnt64_t_1144;// L109:L163 -typedef unsigned long int ____fsfilcnt_t_1145;// L94:L166 -typedef unsigned long int ____fsfilcnt64_t_1146;// L109:L167 -typedef long int ____fsword_t_1147;// L93:L170 -typedef long int ____ssize_t_1148;// L110:L172 -typedef long int ____syscall_slong_t_1149;// L93:L175 -typedef unsigned long int ____syscall_ulong_t_1150;// L94:L177 -typedef ____off64_t_1123 ____loff_t_1151;// L181 -typedef ____quad_t_1113 * (____qaddr_t_1153);// L182 -typedef char * (____caddr_t_1154);// L183 -typedef long int ____intptr_t_1155;// L110:L186 -typedef unsigned int ____socklen_t_1156;// L92:L189 -struct ____anonymous_tag_1166_1167 { -unsigned int ____w_termsig_1168 : 7;// L72 -unsigned int ____w_coredump_1169 : 1;// L73 -unsigned int ____w_retcode_1170 : 8;// L74 -unsigned int __anon_id_0_1171 : 16;// L75 -}; -struct ____anonymous_tag_1172_1173 { -unsigned int ____w_stopval_1174 : 8;// L87 -unsigned int ____w_stopsig_1175 : 8;// L88 -unsigned int __anon_id_1_1176 : 16;// L89 -}; -union __wait_1177 { -int __w_status_1178;// L68 -struct ____anonymous_tag_1166_1167 ____wait_terminated_1179;// L69 -struct ____anonymous_tag_1172_1173 ____wait_stopped_1180;// L84 -}; -union ____anonymous_tag_1181_1182 { -union __wait_1177 * (____uptr_1183);// L69 -int * (____iptr_1184);// L70 -}; -typedef union ____anonymous_tag_1181_1182 ____WAIT_STATUS_1185;// L67:L71 -struct ____anonymous_tag_1186_1187 { -int __quot_1188;// L99 -int __rem_1189;// L100 -}; -typedef struct ____anonymous_tag_1186_1187 __div_t_1190;// L97:L101 -struct ____anonymous_tag_1191_1192 { -long int __quot_1193;// L107 -long int __rem_1194;// L108 -}; -typedef struct ____anonymous_tag_1191_1192 __ldiv_t_1195;// L105:L109 -struct ____anonymous_tag_1196_1197 { -long long int __quot_1198;// L119 -long long int __rem_1199;// L120 -}; -typedef struct ____anonymous_tag_1196_1197 __lldiv_t_1200;// L117:L121 -typedef unsigned char ____u_char_1264;// L30 -typedef unsigned short int ____u_short_1265;// L31 -typedef unsigned int ____u_int_1266;// L32 -typedef unsigned long int ____u_long_1267;// L33 -typedef signed char ____int8_t_1268;// L36 -typedef unsigned char ____uint8_t_1269;// L37 -typedef signed short int ____int16_t_1270;// L38 -typedef unsigned short int ____uint16_t_1271;// L39 -typedef signed int ____int32_t_1272;// L40 -typedef unsigned int ____uint32_t_1273;// L41 -typedef signed long int ____int64_t_1274;// L43 -typedef unsigned long int ____uint64_t_1275;// L44 -typedef long int ____quad_t_1276;// L52 -typedef unsigned long int ____u_quad_t_1277;// L53 -typedef unsigned long int ____dev_t_1278;// L109:L124 -typedef unsigned int ____uid_t_1279;// L92:L125 -typedef unsigned int ____gid_t_1280;// L92:L126 -typedef unsigned long int ____ino_t_1281;// L94:L127 -typedef unsigned long int ____ino64_t_1282;// L109:L128 -typedef unsigned int ____mode_t_1283;// L92:L129 -typedef unsigned long int ____nlink_t_1284;// L94:L130 -typedef long int ____off_t_1285;// L93:L131 -typedef long int ____off64_t_1286;// L108:L132 -typedef int ____pid_t_1287;// L91:L133 -struct ____anonymous_tag_1288_1289 { -int ____val_1290[2];// L72 -}; -typedef struct ____anonymous_tag_1288_1289 ____fsid_t_1291;// L72:L134 -typedef long int ____clock_t_1292;// L93:L135 -typedef unsigned long int ____rlim_t_1293;// L94:L136 -typedef unsigned long int ____rlim64_t_1294;// L109:L137 -typedef unsigned int ____id_t_1295;// L92:L138 -typedef long int ____time_t_1296;// L93:L139 -typedef unsigned int ____useconds_t_1297;// L92:L140 -typedef long int ____suseconds_t_1298;// L93:L141 -typedef int ____daddr_t_1299;// L91:L143 -typedef int ____key_t_1300;// L91:L144 -typedef int ____clockid_t_1301;// L91:L147 -typedef void * (____timer_t_1302);// L70:L150 -typedef long int ____blksize_t_1303;// L93:L153 -typedef long int ____blkcnt_t_1304;// L93:L158 -typedef long int ____blkcnt64_t_1305;// L108:L159 -typedef unsigned long int ____fsblkcnt_t_1306;// L94:L162 -typedef unsigned long int ____fsblkcnt64_t_1307;// L109:L163 -typedef unsigned long int ____fsfilcnt_t_1308;// L94:L166 -typedef unsigned long int ____fsfilcnt64_t_1309;// L109:L167 -typedef long int ____fsword_t_1310;// L93:L170 -typedef long int ____ssize_t_1311;// L110:L172 -typedef long int ____syscall_slong_t_1312;// L93:L175 -typedef unsigned long int ____syscall_ulong_t_1313;// L94:L177 -typedef ____off64_t_1286 ____loff_t_1314;// L181 -typedef ____quad_t_1276 * (____qaddr_t_1316);// L182 -typedef char * (____caddr_t_1317);// L183 -typedef long int ____intptr_t_1318;// L110:L186 -typedef unsigned int ____socklen_t_1319;// L92:L189 -typedef ____u_char_2 __u_char_1320;// L33 -typedef ____u_char_1101 __u_char_1321;// L33 -typedef ____u_char_1264 __u_char_1322;// L33 -typedef ____u_short_3 __u_short_1323;// L34 -typedef ____u_short_1102 __u_short_1324;// L34 -typedef ____u_short_1265 __u_short_1325;// L34 -typedef ____u_int_4 __u_int_1326;// L35 -typedef ____u_int_1103 __u_int_1327;// L35 -typedef ____u_int_1266 __u_int_1328;// L35 -typedef ____u_long_5 __u_long_1329;// L36 -typedef ____u_long_1104 __u_long_1330;// L36 -typedef ____u_long_1267 __u_long_1331;// L36 -typedef ____quad_t_14 __quad_t_1332;// L37 -typedef ____quad_t_1113 __quad_t_1333;// L37 -typedef ____quad_t_1276 __quad_t_1334;// L37 -typedef ____u_quad_t_15 __u_quad_t_1335;// L38 -typedef ____u_quad_t_1114 __u_quad_t_1336;// L38 -typedef ____u_quad_t_1277 __u_quad_t_1337;// L38 -typedef ____fsid_t_29 __fsid_t_1338;// L39 -typedef ____fsid_t_1128 __fsid_t_1339;// L39 -typedef ____fsid_t_1291 __fsid_t_1340;// L39 -typedef ____loff_t_52 __loff_t_1342;// L44 -typedef ____loff_t_1151 __loff_t_1343;// L44 -typedef ____loff_t_1314 __loff_t_1344;// L44 -typedef ____loff_t_52 __loff_t_1346;// L44 -typedef ____loff_t_1151 __loff_t_1347;// L44 -typedef ____loff_t_1314 __loff_t_1348;// L44 -typedef ____ino64_t_20 __ino_t_1350;// L50 -typedef ____ino64_t_1119 __ino_t_1351;// L50 -typedef ____ino64_t_1282 __ino_t_1352;// L50 -typedef ____ino_t_19 __ino_t_1354;// L48 -typedef ____ino_t_1118 __ino_t_1355;// L48 -typedef ____ino_t_1281 __ino_t_1356;// L48 -typedef ____dev_t_16 __dev_t_1358;// L60 -typedef ____dev_t_1115 __dev_t_1359;// L60 -typedef ____dev_t_1278 __dev_t_1360;// L60 -typedef ____gid_t_18 __gid_t_1362;// L65 -typedef ____gid_t_1117 __gid_t_1363;// L65 -typedef ____gid_t_1280 __gid_t_1364;// L65 -typedef ____gid_t_18 __gid_t_1366;// L65 -typedef ____gid_t_1117 __gid_t_1367;// L65 -typedef ____gid_t_1280 __gid_t_1368;// L65 -typedef ____mode_t_21 __mode_t_1370;// L70 -typedef ____mode_t_1120 __mode_t_1371;// L70 -typedef ____mode_t_1283 __mode_t_1372;// L70 -typedef ____nlink_t_22 __nlink_t_1374;// L75 -typedef ____nlink_t_1121 __nlink_t_1375;// L75 -typedef ____nlink_t_1284 __nlink_t_1376;// L75 -typedef ____uid_t_17 __uid_t_1378;// L80 -typedef ____uid_t_1116 __uid_t_1379;// L80 -typedef ____uid_t_1279 __uid_t_1380;// L80 -typedef ____uid_t_17 __uid_t_1382;// L80 -typedef ____uid_t_1116 __uid_t_1383;// L80 -typedef ____uid_t_1279 __uid_t_1384;// L80 -typedef ____off64_t_1123 __off_t_1386;// L88 -typedef ____off64_t_1286 __off_t_1387;// L88 -typedef ____off_t_1122 __off_t_1389;// L86 -typedef ____off_t_1285 __off_t_1390;// L86 -typedef ____pid_t_25 __pid_t_1392;// L98 -typedef ____pid_t_1124 __pid_t_1393;// L98 -typedef ____pid_t_1287 __pid_t_1394;// L98 -typedef ____pid_t_1124 __pid_t_1396;// L98 -typedef ____pid_t_1287 __pid_t_1397;// L98 -typedef ____id_t_33 __id_t_1399;// L104 -typedef ____id_t_1132 __id_t_1400;// L104 -typedef ____id_t_1295 __id_t_1401;// L104 -typedef ____ssize_t_1148 __ssize_t_1403;// L109 -typedef ____ssize_t_1311 __ssize_t_1404;// L109 -typedef ____daddr_t_37 __daddr_t_1406;// L115 -typedef ____daddr_t_1136 __daddr_t_1407;// L115 -typedef ____daddr_t_1299 __daddr_t_1408;// L115 -typedef ____caddr_t_55 __caddr_t_1410;// L116 -typedef ____caddr_t_1154 __caddr_t_1411;// L116 -typedef ____caddr_t_1317 __caddr_t_1412;// L116 -typedef ____key_t_38 __key_t_1413;// L122 -typedef ____key_t_1137 __key_t_1414;// L122 -typedef ____key_t_1300 __key_t_1415;// L122 -typedef ____key_t_38 __key_t_1417;// L122 -typedef ____key_t_1137 __key_t_1418;// L122 -typedef ____key_t_1300 __key_t_1419;// L122 -typedef ____clock_t_30 __clock_t_1421;// L59 -typedef ____clock_t_1129 __clock_t_1422;// L59 -typedef ____clock_t_1292 __clock_t_1423;// L59 -typedef ____time_t_34 __time_t_1425;// L75 -typedef ____time_t_1133 __time_t_1426;// L75 -typedef ____time_t_1296 __time_t_1427;// L75 -typedef ____clockid_t_39 __clockid_t_1429;// L91 -typedef ____clockid_t_1138 __clockid_t_1430;// L91 -typedef ____clockid_t_1301 __clockid_t_1431;// L91 -typedef ____timer_t_40 __timer_t_1433;// L103 -typedef ____timer_t_1139 __timer_t_1434;// L103 -typedef ____timer_t_1302 __timer_t_1435;// L103 -typedef unsigned long int __ulong_1437;// L150 -typedef unsigned long int __ulong_1438;// L150 -typedef unsigned long int __ulong_1439;// L150 -typedef unsigned short int __ushort_1440;// L151 -typedef unsigned int __uint_1441;// L152 -typedef int __int8_t_1442;// L188:L194 -typedef int __int16_t_1443;// L188:L195 -typedef int __int32_t_1444;// L188:L196 -typedef int __int64_t_1445;// L188:L197 -typedef unsigned int __u_int8_t_1446;// L190:L200 -typedef unsigned int __u_int16_t_1447;// L190:L201 -typedef unsigned int __u_int32_t_1448;// L190:L202 -typedef unsigned int __u_int64_t_1449;// L190:L203 -typedef int __register_t_1450;// L205 -typedef int ____sig_atomic_t_1460;// L22 -struct ____anonymous_tag_1461_1462 { -unsigned long int ____val_1463[( 1024 / ( 8 * sizeof(unsigned long) ) )];// L29 -}; -typedef struct ____anonymous_tag_1461_1462 ____sigset_t_1464;// L27:L30 -typedef ____sigset_t_1464 __sigset_t_1465;// L37 -struct __timespec_1466 { -____time_t_34 __tv_sec_1467;// L0 -____time_t_1133 __tv_sec_1468;// L0 -____time_t_1296 __tv_sec_1469;// L0 -____syscall_slong_t_50 __tv_nsec_1471;// L0 -____syscall_slong_t_1149 __tv_nsec_1472;// L0 -____syscall_slong_t_1312 __tv_nsec_1473;// L0 -}; -struct __timeval_1476 { -____time_t_34 __tv_sec_1477;// L0 -____time_t_1133 __tv_sec_1478;// L0 -____time_t_1296 __tv_sec_1479;// L0 -____suseconds_t_36 __tv_usec_1481;// L0 -____suseconds_t_1135 __tv_usec_1482;// L0 -____suseconds_t_1298 __tv_usec_1483;// L0 -}; -typedef ____suseconds_t_36 __suseconds_t_1486;// L48 -typedef ____suseconds_t_1135 __suseconds_t_1487;// L48 -typedef ____suseconds_t_1298 __suseconds_t_1488;// L48 -typedef long int ____fd_mask_1490;// L54 -typedef long int ____fd_mask_1491;// L54 -struct ____anonymous_tag_1492_1493 { -____fd_mask_1490 ____fds_bits_1494[1024 / ( 8 * ( int ) sizeof(long) )];// L0 -____fd_mask_1491 ____fds_bits_1496[1024 / ( 8 * ( int ) sizeof(long) )];// L0 +typedef ___G_fpos_t_77 __fpos_t_279;// L110 +typedef ___G_fpos64_t_85 __fpos_t_281;// L112 +typedef long int __ptrdiff_t_755;// L143:L324 +typedef long unsigned int __size_t_756;// L177:L209 +typedef int __wchar_t_759;// L243:L321 +typedef int __wchar_t_760;// L243:L321 +struct ____anonymous_tag_761_762 { +int __quot_763;// L99 +int __rem_764;// L100 }; -typedef struct ____anonymous_tag_1492_1493 __fd_set_1499;// L64:L75 -typedef ____fd_mask_1490 __fd_mask_1500;// L82 -typedef ____fd_mask_1491 __fd_mask_1501;// L82 -typedef ____blksize_t_41 __blksize_t_1549;// L228 -typedef ____blksize_t_1140 __blksize_t_1550;// L228 -typedef ____blksize_t_1303 __blksize_t_1551;// L228 -typedef ____blkcnt_t_42 __blkcnt_t_1553;// L235 -typedef ____blkcnt_t_1141 __blkcnt_t_1554;// L235 -typedef ____blkcnt_t_1304 __blkcnt_t_1555;// L235 -typedef ____fsblkcnt_t_44 __fsblkcnt_t_1557;// L239 -typedef ____fsblkcnt_t_1143 __fsblkcnt_t_1558;// L239 -typedef ____fsblkcnt_t_1306 __fsblkcnt_t_1559;// L239 -typedef ____blkcnt64_t_43 __blkcnt_t_1561;// L248 -typedef ____blkcnt64_t_1142 __blkcnt_t_1562;// L248 -typedef ____blkcnt64_t_1305 __blkcnt_t_1563;// L248 -typedef ____fsblkcnt64_t_45 __fsblkcnt_t_1565;// L252 -typedef ____fsblkcnt64_t_1144 __fsblkcnt_t_1566;// L252 -typedef ____fsblkcnt64_t_1307 __fsblkcnt_t_1567;// L252 -typedef ____fsfilcnt_t_46 __fsfilcnt_t_1569;// L243 -typedef ____fsfilcnt_t_1145 __fsfilcnt_t_1570;// L243 -typedef ____fsfilcnt_t_1308 __fsfilcnt_t_1571;// L243 -typedef ____fsfilcnt64_t_47 __fsfilcnt_t_1573;// L256 -typedef ____fsfilcnt64_t_1146 __fsfilcnt_t_1574;// L256 -typedef ____fsfilcnt64_t_1309 __fsfilcnt_t_1575;// L256 -typedef unsigned long int __pthread_t_1577;// L60 -union __pthread_attr_t_1578 { -char ____size_1579[56];// L65 -long int ____align_1580;// L66 +typedef struct ____anonymous_tag_761_762 __div_t_765;// L97:L101 +struct ____anonymous_tag_766_767 { +long int __quot_768;// L107 +long int __rem_769;// L108 }; -typedef union __pthread_attr_t_1578 __pthread_attr_t_1581;// L69 -struct ____pthread_internal_list_1583 { -struct __forward_tag_reference_1582 * (____prev_1584);// L0 -struct __forward_tag_reference_1582 * (____next_1585);// L0 +typedef struct ____anonymous_tag_766_767 __ldiv_t_770;// L105:L109 +struct ____anonymous_tag_771_772 { +long long int __quot_773;// L119 +long long int __rem_774;// L120 }; -typedef struct ____pthread_internal_list_1583 ____pthread_list_t_1586;// L75:L79 -typedef struct ____pthread_internal_list_1583 ____pthread_list_t_1587;// L75:L79 -struct ____pthread_mutex_s_1588 { -int ____lock_1589;// L94 -unsigned int ____count_1590;// L95 -int ____owner_1591;// L96 -unsigned int ____nusers_1592;// L98 -int ____kind_1593;// L102 -short ____spins_1594;// L104 -short ____elision_1595;// L105 -____pthread_list_t_1586 ____list_1596;// L0 -____pthread_list_t_1587 ____list_1597;// L0 -}; -union ____anonymous_tag_1598_1599 { -struct ____pthread_mutex_s_1588 ____data_1600;// L92 -char ____size_1601[40];// L126 -long int ____align_1602;// L127 -}; -typedef union ____anonymous_tag_1598_1599 __pthread_mutex_t_1603;// L90:L128 -union ____anonymous_tag_1604_1605 { -char ____size_1606[4];// L132 -int ____align_1607;// L133 -}; -typedef union ____anonymous_tag_1604_1605 __pthread_mutexattr_t_1608;// L130:L134 -typedef int (* (____compar_fn_t_1740)) (const void *, const void *);// L741 -typedef long int __ptrdiff_t_2036;// L143:L324 -typedef long unsigned int __size_t_2037;// L177:L209 -struct ____locale_struct_2137 { -struct __forward_tag_reference_2136 * (____locales_2138[13]);// L0 -const unsigned short int * (____ctype_b_2139);// L33 -const int * (____ctype_tolower_2140);// L34 -const int * (____ctype_toupper_2141);// L35 -const char * (____names_2142[13]);// L38 -}; -typedef struct ____locale_struct_2137 * (____locale_t_2143);// L27:L39 -typedef ____locale_t_2143 __locale_t_2144;// L42 +typedef struct ____anonymous_tag_771_772 __lldiv_t_775;// L117:L121 +typedef int (* (____compar_fn_t_876)) (const void *, const void *);// L741 struct __forward_tag_reference_89 { // generated union of struct variations union { @@ -2151,11 +993,6 @@ struct ___IO_marker_90 ___IO_marker_90; }; }; -struct __forward_tag_reference_1582 { // generated union of struct variations -union { -}; -}; - struct __forward_tag_reference_58 { // generated union of struct variations union { struct ___IO_FILE_99 ___IO_FILE_99; @@ -2163,11 +1000,6 @@ struct ___IO_FILE_124 ___IO_FILE_124; }; }; -struct __forward_tag_reference_2136 { // generated union of struct variations -union { -}; -}; - struct __forward_tag_reference_87 { // generated union of struct variations union { }; @@ -2301,895 +1133,375 @@ extern void (___IO_free_backup_area_276) (___IO_FILE_171 *);// L469 extern void (___IO_free_backup_area_277) (___IO_FILE_172 *);// L469 // typedef moved to top of scope // typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern struct ___IO_FILE_99 * (__stdin_291);// L168 -extern struct ___IO_FILE_124 * (__stdin_292);// L168 -extern struct ___IO_FILE_99 * (__stdout_294);// L169 -extern struct ___IO_FILE_124 * (__stdout_295);// L169 -extern struct ___IO_FILE_99 * (__stderr_297);// L170 -extern struct ___IO_FILE_124 * (__stderr_298);// L170 -extern int (__remove_301) (const char * (____filename_300));// L178 -extern int (__rename_304) (const char * (____old_302), const char * (____new_303));// L180 -extern int (__renameat_309) (int ____oldfd_305, const char * (____old_306), int ____newfd_307, const char * (____new_308));// L185:L186 -extern __FILE_59 * ((__tmpfile_310) (void ));// L195 -extern __FILE_59 * ((__tmpfile_316) (void ));// L198 -extern __FILE_59 * ((__tmpfile_314) (void ));// L195 -extern __FILE_59 * ((__tmpfile_312) (void ));// L198 -extern char * ((__tmpnam_319) (char * (____s_318)));// L209 -extern char * ((__tmpnam_320) (char * (____s_318)));// L209 -extern char * ((__tmpnam_r_322) (char * (____s_321)));// L215 -extern char * ((__tmpnam_r_323) (char * (____s_321)));// L215 -extern char * ((__tempnam_326) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 -extern char * ((__tempnam_327) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 -extern int (__fclose_330) (__FILE_59 * (____stream_328));// L237 -extern int (__fclose_332) (__FILE_59 * (____stream_328));// L237 -extern int (__fflush_336) (__FILE_59 * (____stream_334));// L242 -extern int (__fflush_unlocked_340) (__FILE_59 * (____stream_338));// L252 -extern __FILE_59 * ((__fopen_344) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 -extern __FILE_59 * ((__fopen_346) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 -extern __FILE_59 * ((__fopen_354) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 -extern __FILE_59 * ((__fopen_356) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 -extern __FILE_59 * ((__freopen_362) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 -extern __FILE_59 * ((__freopen_368) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 -extern __FILE_59 * ((__freopen_366) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 -extern __FILE_59 * ((__freopen_364) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 -extern __FILE_59 * ((__fdopen_372) (int ____fd_370, const char * (____modes_371)));// L306 -extern __FILE_59 * ((__fdopen_374) (int ____fd_370, const char * (____modes_371)));// L306 -extern __FILE_59 * ((__fmemopen_379) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 -extern __FILE_59 * ((__fmemopen_381) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 -extern __FILE_59 * ((__open_memstream_385) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 -extern __FILE_59 * ((__open_memstream_387) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 -extern void (__setbuf_392) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 -extern void (__setbuf_394) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 -extern int (__setvbuf_401) (__FILE_59 * __restrict ____stream_396, char * __restrict ____buf_398, int ____modes_399, __size_t_1 ____n_400);// L336:L337 -extern void (__setbuffer_407) (__FILE_59 * __restrict ____stream_403, char * __restrict ____buf_405, __size_t_1 ____size_406);// L343:L344 -extern void (__setlinebuf_411) (__FILE_59 * (____stream_409));// L347 -extern int (__fprintf_416) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 -extern int (__fprintf_418) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 -extern int (__printf_421) (const char * __restrict ____format_420, ... );// L362 -extern int (__sprintf_424) (char * __restrict ____s_422, const char * __restrict ____format_423, ... );// L364:L365 -extern int (__vfprintf_430) (__FILE_59 * __restrict ____s_425, const char * __restrict ____format_427, ____gnuc_va_list_86 ____arg_428);// L371:L372 -extern int (__vprintf_437) (const char * __restrict ____format_434, ____gnuc_va_list_86 ____arg_435);// L377 -extern int (__vsprintf_443) (char * __restrict ____s_439, const char * __restrict ____format_440, ____gnuc_va_list_86 ____arg_441);// L379:L380 -extern int (__snprintf_448) (char * __restrict ____s_445, __size_t_1 ____maxlen_446, const char * __restrict ____format_447, ... );// L386:L388 -extern int (__vsnprintf_454) (char * __restrict ____s_449, __size_t_1 ____maxlen_450, const char * __restrict ____format_451, ____gnuc_va_list_86 ____arg_452);// L390:L392 -extern int (__vdprintf_460) (int ____fd_456, const char * __restrict ____fmt_457, ____gnuc_va_list_86 ____arg_458);// L412:L414 -extern int (__dprintf_464) (int ____fd_462, const char * __restrict ____fmt_463, ... );// L415:L416 -extern int (__fscanf_468) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__fscanf_470) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__fscanf_472) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__fscanf_474) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__scanf_477) (const char * __restrict ____format_476, ... );// L431 -extern int (__scanf_478) (const char * __restrict ____format_476, ... );// L431 -extern int (__sscanf_481) (const char * __restrict ____s_479, const char * __restrict ____format_480, ... );// L433:L434 - - - - - - - -extern int (__vfscanf_509) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 -extern int (__vfscanf_513) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 -extern int (__vscanf_520) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 -extern int (__vscanf_522) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 -extern int (__vsscanf_528) (const char * __restrict ____s_524, const char * __restrict ____format_525, ____gnuc_va_list_86 ____arg_526);// L483:L485 - - - - - -extern int (__fgetc_563) (__FILE_59 * (____stream_561));// L531 -extern int (__getc_567) (__FILE_59 * (____stream_565));// L532 -extern int (__getchar_569) (void );// L538 -extern int (__getc_unlocked_572) (__FILE_59 * (____stream_570));// L550 -extern int (__getchar_unlocked_574) (void );// L551 -extern int (__fgetc_unlocked_577) (__FILE_59 * (____stream_575));// L561 -extern int (__fputc_582) (int ____c_579, __FILE_59 * (____stream_580));// L573 -extern int (__fputc_584) (int ____c_579, __FILE_59 * (____stream_580));// L573 -extern int (__putc_589) (int ____c_586, __FILE_59 * (____stream_587));// L574 -extern int (__putchar_592) (int ____c_591);// L580 -extern int (__fputc_unlocked_596) (int ____c_593, __FILE_59 * (____stream_594));// L594 -extern int (__putc_unlocked_601) (int ____c_598, __FILE_59 * (____stream_599));// L602 -extern int (__putchar_unlocked_604) (int ____c_603);// L603 -extern int (__getw_607) (__FILE_59 * (____stream_605));// L610 -extern int (__putw_612) (int ____w_609, __FILE_59 * (____stream_610));// L613 -extern char * ((__fgets_618) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern char * ((__fgets_620) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern char * ((__fgets_622) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern char * ((__fgets_624) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern ____ssize_t_49 (____getdelim_631) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 -extern ____ssize_t_49 (____getdelim_635) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 -extern ____ssize_t_49 (__getdelim_644) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 -extern ____ssize_t_49 (__getdelim_648) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 -extern ____ssize_t_49 (__getline_656) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 -extern ____ssize_t_49 (__getline_660) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 -extern int (__fputs_667) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 -extern int (__fputs_669) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 -extern int (__puts_672) (const char * (____s_671));// L695 -extern int (__ungetc_676) (int ____c_673, __FILE_59 * (____stream_674));// L702 -extern int (__fseek_714) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 -extern int (__fseek_716) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 -extern long int (__ftell_720) (__FILE_59 * (____stream_718));// L754 -extern long int (__ftell_722) (__FILE_59 * (____stream_718));// L754 -extern void (__rewind_726) (__FILE_59 * (____stream_724));// L759 -extern int (__fseeko_733) (__FILE_59 * (____stream_728), ____off_t_23 ____off_730, int ____whence_732);// L773 -extern int (__fseeko_744) (__FILE_59 * (____stream_739), ____off64_t_24 ____off_741, int ____whence_743);// L781:L783 -extern ____off_t_23 (__ftello_758) (__FILE_59 * (____stream_737));// L778 -extern ____off_t_23 (__ftello_750) (__FILE_59 * (____stream_737));// L778 -extern int (__fgetpos_766) (__FILE_59 * __restrict ____stream_762, __fpos_t_287 * __restrict ____pos_764);// L798 -extern ____off64_t_24 (__ftello_754) (__FILE_59 * (____stream_748));// L784 -extern int (__fgetpos_778) (__FILE_59 * __restrict ____stream_774, __fpos_t_289 * __restrict ____pos_776);// L806:L807 -extern int (__fsetpos_786) (__FILE_59 * (____stream_770), const __fpos_t_287 * (____pos_772));// L803 -extern int (__fsetpos_790) (__FILE_59 * (____stream_782), const __fpos_t_289 * (____pos_784));// L808:L809 -extern void (__clearerr_796) (__FILE_59 * (____stream_794));// L826 -extern int (__feof_800) (__FILE_59 * (____stream_798));// L828 -extern int (__feof_802) (__FILE_59 * (____stream_798));// L828 -extern int (__ferror_806) (__FILE_59 * (____stream_804));// L830 -extern int (__ferror_808) (__FILE_59 * (____stream_804));// L830 -extern void (__clearerr_unlocked_812) (__FILE_59 * (____stream_810));// L835 -extern int (__feof_unlocked_816) (__FILE_59 * (____stream_814));// L836 -extern int (__feof_unlocked_818) (__FILE_59 * (____stream_814));// L836 -extern int (__ferror_unlocked_822) (__FILE_59 * (____stream_820));// L837 -extern int (__ferror_unlocked_824) (__FILE_59 * (____stream_820));// L837 -extern void (__perror_827) (const char * (____s_826));// L846 -extern void (__perror_828) (const char * (____s_826));// L846 -extern int __sys_nerr_829;// L26 - -extern int (__fileno_835) (__FILE_59 * (____stream_831));// L858 -extern int (__fileno_833) (__FILE_59 * (____stream_831));// L858 -extern int (__fileno_unlocked_841) (__FILE_59 * (____stream_837));// L863 -extern int (__fileno_unlocked_839) (__FILE_59 * (____stream_837));// L863 -extern __FILE_59 * ((__popen_845) (const char * (____command_843), const char * (____modes_844)));// L872 -extern __FILE_59 * ((__popen_847) (const char * (____command_843), const char * (____modes_844)));// L872 -extern int (__pclose_851) (__FILE_59 * (____stream_849));// L878 -extern char * ((__ctermid_854) (char * (____s_853)));// L884 -extern void (__flockfile_857) (__FILE_59 * (____stream_855));// L912 -extern int (__ftrylockfile_861) (__FILE_59 * (____stream_859));// L916 -extern int (__ftrylockfile_863) (__FILE_59 * (____stream_859));// L916 -extern void (__funlockfile_867) (__FILE_59 * (____stream_865));// L919 +extern struct ___IO_FILE_99 * (__stdin_283);// L168 +extern struct ___IO_FILE_124 * (__stdin_284);// L168 +extern struct ___IO_FILE_99 * (__stdout_286);// L169 +extern struct ___IO_FILE_124 * (__stdout_287);// L169 +extern struct ___IO_FILE_99 * (__stderr_289);// L170 +extern struct ___IO_FILE_124 * (__stderr_290);// L170 +extern int (__remove_293) (const char * (____filename_292));// L178 +extern int (__rename_296) (const char * (____old_294), const char * (____new_295));// L180 +extern __FILE_59 * ((__tmpfile_297) (void ));// L195 +extern __FILE_59 * ((__tmpfile_303) (void ));// L198 +extern __FILE_59 * ((__tmpfile_301) (void ));// L195 +extern __FILE_59 * ((__tmpfile_299) (void ));// L198 +extern char * ((__tmpnam_306) (char * (____s_305)));// L209 +extern char * ((__tmpnam_307) (char * (____s_305)));// L209 +extern int (__fclose_310) (__FILE_59 * (____stream_308));// L237 +extern int (__fflush_314) (__FILE_59 * (____stream_312));// L242 +extern __FILE_59 * ((__fopen_318) (const char * __restrict ____filename_316, const char * __restrict ____modes_317));// L272:L273 +extern __FILE_59 * ((__fopen_320) (const char * __restrict ____filename_316, const char * __restrict ____modes_317));// L272:L273 +extern __FILE_59 * ((__fopen_328) (const char * __restrict ____filename_326, const char * __restrict ____modes_327));// L283:L285 +extern __FILE_59 * ((__fopen_330) (const char * __restrict ____filename_326, const char * __restrict ____modes_327));// L283:L285 +extern __FILE_59 * ((__freopen_336) (const char * __restrict ____filename_322, const char * __restrict ____modes_323, __FILE_59 * __restrict ____stream_324));// L278:L280 +extern __FILE_59 * ((__freopen_342) (const char * __restrict ____filename_332, const char * __restrict ____modes_333, __FILE_59 * __restrict ____stream_334));// L286:L289 +extern __FILE_59 * ((__freopen_340) (const char * __restrict ____filename_322, const char * __restrict ____modes_323, __FILE_59 * __restrict ____stream_324));// L278:L280 +extern __FILE_59 * ((__freopen_338) (const char * __restrict ____filename_332, const char * __restrict ____modes_333, __FILE_59 * __restrict ____stream_334));// L286:L289 +extern void (__setbuf_347) (__FILE_59 * __restrict ____stream_344, char * __restrict ____buf_346);// L332 +extern int (__setvbuf_354) (__FILE_59 * __restrict ____stream_349, char * __restrict ____buf_351, int ____modes_352, __size_t_1 ____n_353);// L336:L337 +extern int (__fprintf_359) (__FILE_59 * __restrict ____stream_356, const char * __restrict ____format_358, ... );// L356:L357 +extern int (__printf_362) (const char * __restrict ____format_361, ... );// L362 +extern int (__sprintf_365) (char * __restrict ____s_363, const char * __restrict ____format_364, ... );// L364:L365 +extern int (__vfprintf_371) (__FILE_59 * __restrict ____s_366, const char * __restrict ____format_368, ____gnuc_va_list_86 ____arg_369);// L371:L372 +extern int (__vprintf_378) (const char * __restrict ____format_375, ____gnuc_va_list_86 ____arg_376);// L377 +extern int (__vsprintf_384) (char * __restrict ____s_380, const char * __restrict ____format_381, ____gnuc_va_list_86 ____arg_382);// L379:L380 +extern int (__snprintf_389) (char * __restrict ____s_386, __size_t_1 ____maxlen_387, const char * __restrict ____format_388, ... );// L386:L388 +extern int (__vsnprintf_395) (char * __restrict ____s_390, __size_t_1 ____maxlen_391, const char * __restrict ____format_392, ____gnuc_va_list_86 ____arg_393);// L390:L392 +extern int (__fscanf_400) (__FILE_59 * __restrict ____stream_397, const char * __restrict ____format_399, ... );// L425:L426 +extern int (__fscanf_402) (__FILE_59 * __restrict ____stream_397, const char * __restrict ____format_399, ... );// L425:L426 +extern int (__scanf_405) (const char * __restrict ____format_404, ... );// L431 +extern int (__scanf_406) (const char * __restrict ____format_404, ... );// L431 +extern int (__sscanf_409) (const char * __restrict ____s_407, const char * __restrict ____format_408, ... );// L433:L434 + + + + + +extern int (__vfscanf_433) (__FILE_59 * __restrict ____s_428, const char * __restrict ____format_430, ____gnuc_va_list_86 ____arg_431);// L471:L473 +extern int (__vfscanf_437) (__FILE_59 * __restrict ____s_428, const char * __restrict ____format_430, ____gnuc_va_list_86 ____arg_431);// L471:L473 +extern int (__vscanf_444) (const char * __restrict ____format_441, ____gnuc_va_list_86 ____arg_442);// L479:L480 +extern int (__vscanf_446) (const char * __restrict ____format_441, ____gnuc_va_list_86 ____arg_442);// L479:L480 +extern int (__vsscanf_452) (const char * __restrict ____s_448, const char * __restrict ____format_449, ____gnuc_va_list_86 ____arg_450);// L483:L485 + + + + + +extern int (__fgetc_487) (__FILE_59 * (____stream_485));// L531 +extern int (__getc_491) (__FILE_59 * (____stream_489));// L532 +extern int (__getchar_493) (void );// L538 +extern int (__fputc_497) (int ____c_494, __FILE_59 * (____stream_495));// L573 +extern int (__putc_502) (int ____c_499, __FILE_59 * (____stream_500));// L574 +extern int (__putchar_505) (int ____c_504);// L580 +extern char * ((__fgets_510) (char * __restrict ____s_506, int ____n_507, __FILE_59 * __restrict ____stream_508));// L622:L623 +extern char * ((__fgets_512) (char * __restrict ____s_506, int ____n_507, __FILE_59 * __restrict ____stream_508));// L622:L623 +extern int (__fputs_517) (const char * __restrict ____s_514, __FILE_59 * __restrict ____stream_515);// L689 +extern int (__puts_520) (const char * (____s_519));// L695 +extern int (__ungetc_524) (int ____c_521, __FILE_59 * (____stream_522));// L702 +extern int (__fseek_546) (__FILE_59 * (____stream_542), long int ____off_544, int ____whence_545);// L749 +extern long int (__ftell_550) (__FILE_59 * (____stream_548));// L754 +extern long int (__ftell_552) (__FILE_59 * (____stream_548));// L754 +extern void (__rewind_556) (__FILE_59 * (____stream_554));// L759 +extern int (__fgetpos_562) (__FILE_59 * __restrict ____stream_558, __fpos_t_279 * __restrict ____pos_560);// L798 +extern int (__fgetpos_574) (__FILE_59 * __restrict ____stream_570, __fpos_t_281 * __restrict ____pos_572);// L806:L807 +extern int (__fsetpos_582) (__FILE_59 * (____stream_566), const __fpos_t_279 * (____pos_568));// L803 +extern int (__fsetpos_586) (__FILE_59 * (____stream_578), const __fpos_t_281 * (____pos_580));// L808:L809 +extern void (__clearerr_592) (__FILE_59 * (____stream_590));// L826 +extern int (__feof_596) (__FILE_59 * (____stream_594));// L828 +extern int (__feof_598) (__FILE_59 * (____stream_594));// L828 +extern int (__ferror_602) (__FILE_59 * (____stream_600));// L830 +extern int (__ferror_604) (__FILE_59 * (____stream_600));// L830 +extern void (__perror_607) (const char * (____s_606));// L846 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ +extern int (____sprintf_chk_617) (char * __restrict ____s_613, int ____flag_614, __size_t_1 ____slen_615, const char * __restrict ____format_616, ... );// L23:L24 +extern int (____vsprintf_chk_624) (char * __restrict ____s_618, int ____flag_619, __size_t_1 ____slen_620, const char * __restrict ____format_621, ____gnuc_va_list_86 ____ap_622);// L25:L27 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ +extern int (____snprintf_chk_638) (char * __restrict ____s_633, __size_t_1 ____n_634, int ____flag_635, __size_t_1 ____slen_636, const char * __restrict ____format_637, ... );// L52:L54 +extern int (____vsnprintf_chk_646) (char * __restrict ____s_639, __size_t_1 ____n_640, int ____flag_641, __size_t_1 ____slen_642, const char * __restrict ____format_643, ____gnuc_va_list_86 ____ap_644);// L55:L57 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ +extern int (____fprintf_chk_661) (__FILE_59 * __restrict ____stream_657, int ____flag_659, const char * __restrict ____format_660, ... );// L85:L86 +extern int (____printf_chk_665) (int ____flag_663, const char * __restrict ____format_664, ... );// L87 +extern int (____vfprintf_chk_672) (__FILE_59 * __restrict ____stream_666, int ____flag_668, const char * __restrict ____format_669, ____gnuc_va_list_86 ____ap_670);// L88:L89 +extern int (____vprintf_chk_680) (int ____flag_676, const char * __restrict ____format_677, ____gnuc_va_list_86 ____ap_678);// L90:L91 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____sprintf_chk_899) (char * __restrict ____s_895, int ____flag_896, __size_t_1 ____slen_897, const char * __restrict ____format_898, ... );// L23:L24 -extern int (____vsprintf_chk_906) (char * __restrict ____s_900, int ____flag_901, __size_t_1 ____slen_902, const char * __restrict ____format_903, ____gnuc_va_list_86 ____ap_904);// L25:L27 +extern char * ((____fgets_chk_704) (char * __restrict ____s_699, __size_t_1 ____size_700, int ____n_701, __FILE_59 * __restrict ____stream_702));// L241:L242 +extern char * ((____fgets_chk_706) (char * __restrict ____s_699, __size_t_1 ____size_700, int ____n_701, __FILE_59 * __restrict ____stream_702));// L241:L242 +extern char * ((____fgets_alias_712) (char * __restrict ____s_708, int ____n_709, __FILE_59 * __restrict ____stream_710));// L243:L245 +extern char * ((____fgets_chk_warn_719) (char * __restrict ____s_714, __size_t_1 ____size_715, int ____n_716, __FILE_59 * __restrict ____stream_717));// L246:L250 /* no function due to type errors in the function prototype */ +// typedef moved to top of scope +// typedef moved to top of scope /* no function due to type errors in the function prototype */ -extern int (____snprintf_chk_920) (char * __restrict ____s_915, __size_t_1 ____n_916, int ____flag_917, __size_t_1 ____slen_918, const char * __restrict ____format_919, ... );// L52:L54 -extern int (____vsnprintf_chk_928) (char * __restrict ____s_921, __size_t_1 ____n_922, int ____flag_923, __size_t_1 ____slen_924, const char * __restrict ____format_925, ____gnuc_va_list_86 ____ap_926);// L55:L57 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern __size_t_1 (____ctype_get_mb_cur_max_776) (void );// L139 +extern __size_t_756 (____ctype_get_mb_cur_max_777) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_778) (void );// L139 +extern __size_t_756 (____ctype_get_mb_cur_max_779) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_780) (void );// L139 +extern __size_t_756 (____ctype_get_mb_cur_max_781) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_782) (void );// L139 +extern __size_t_756 (____ctype_get_mb_cur_max_783) (void );// L139 +extern double (__atof_785) (const char * (____nptr_784));// L144:L145 +extern double (__atof_786) (const char * (____nptr_784));// L144:L145 +extern int (__atoi_788) (const char * (____nptr_787));// L147:L148 +extern int (__atoi_789) (const char * (____nptr_787));// L147:L148 +extern long int (__atol_791) (const char * (____nptr_790));// L150:L151 +extern long int (__atol_792) (const char * (____nptr_790));// L150:L151 +extern long long int (__atoll_794) (const char * (____nptr_793));// L157:L158 +extern long long int (__atoll_795) (const char * (____nptr_793));// L157:L158 +extern double (__strtod_798) (const char * __restrict ____nptr_796, char * (* __restrict ____endptr_797));// L164:L166 +extern float (__strtof_801) (const char * __restrict ____nptr_799, char * (* __restrict ____endptr_800));// L172:L173 +extern long double (__strtold_804) (const char * __restrict ____nptr_802, char * (* __restrict ____endptr_803));// L175:L177 +extern long int (__strtol_808) (const char * __restrict ____nptr_805, char * (* __restrict ____endptr_806), int ____base_807);// L183:L185 +extern unsigned long int (__strtoul_812) (const char * __restrict ____nptr_809, char * (* __restrict ____endptr_810), int ____base_811);// L187:L189 +extern long long int (__strtoll_816) (const char * __restrict ____nptr_813, char * (* __restrict ____endptr_814), int ____base_815);// L209:L211 +extern unsigned long long int (__strtoull_820) (const char * __restrict ____nptr_817, char * (* __restrict ____endptr_818), int ____base_819);// L214:L216 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____fprintf_chk_943) (__FILE_59 * __restrict ____stream_939, int ____flag_941, const char * __restrict ____format_942, ... );// L85:L86 -extern int (____printf_chk_947) (int ____flag_945, const char * __restrict ____format_946, ... );// L87 -extern int (____vfprintf_chk_954) (__FILE_59 * __restrict ____stream_948, int ____flag_950, const char * __restrict ____format_951, ____gnuc_va_list_86 ____ap_952);// L88:L89 -extern int (____vprintf_chk_962) (int ____flag_958, const char * __restrict ____format_959, ____gnuc_va_list_86 ____ap_960);// L90:L91 +__extension__/* no function due to type errors in the function prototype */ +extern int (__rand_824) (void );// L374 +extern int (__rand_825) (void );// L374 +extern void (__srand_827) (unsigned int ____seed_826);// L376 +extern void * ((__malloc_830) (__size_t_1 ____size_828));// L466 +extern void * ((__malloc_831) (__size_t_756 ____size_829));// L466 +extern void * ((__malloc_832) (__size_t_1 ____size_828));// L466 +extern void * ((__malloc_833) (__size_t_756 ____size_829));// L466 +extern void * ((__calloc_838) (__size_t_1 ____nmemb_834, __size_t_1 ____size_836));// L468:L469 +extern void * ((__calloc_839) (__size_t_756 ____nmemb_835, __size_t_756 ____size_837));// L468:L469 +extern void * ((__calloc_840) (__size_t_1 ____nmemb_834, __size_t_1 ____size_836));// L468:L469 +extern void * ((__calloc_841) (__size_t_756 ____nmemb_835, __size_t_756 ____size_837));// L468:L469 +extern void * ((__realloc_845) (void * (____ptr_842), __size_t_1 ____size_843));// L480:L481 +extern void * ((__realloc_846) (void * (____ptr_842), __size_t_756 ____size_844));// L480:L481 +extern void * ((__realloc_847) (void * (____ptr_842), __size_t_1 ____size_843));// L480:L481 +extern void * ((__realloc_848) (void * (____ptr_842), __size_t_756 ____size_844));// L480:L481 +extern void (__free_850) (void * (____ptr_849));// L483 +extern void * ((__aligned_alloc_855) (__size_t_1 ____alignment_851, __size_t_1 ____size_853));// L509:L510 +extern void * ((__aligned_alloc_856) (__size_t_756 ____alignment_852, __size_t_756 ____size_854));// L509:L510 +extern void * ((__aligned_alloc_857) (__size_t_1 ____alignment_851, __size_t_1 ____size_853));// L509:L510 +extern void * ((__aligned_alloc_858) (__size_t_756 ____alignment_852, __size_t_756 ____size_854));// L509:L510 +extern void (__abort_859) (void );// L515 +extern int (__atexit_861) (void (* (____func_860)) (void ));// L519 +extern int (__at_quick_exit_863) (void (* (____func_862)) (void ));// L527 +extern void (__exit_865) (int ____status_864);// L543 +extern void (__quick_exit_867) (int ____status_866);// L549 +extern void (___Exit_869) (int ____status_868);// L557 +extern char * ((__getenv_871) (const char * (____name_870)));// L564 +extern char * ((__getenv_872) (const char * (____name_870)));// L564 +extern int (__system_874) (const char * (____command_873));// L716 +extern int (__system_875) (const char * (____command_873));// L716 +// typedef moved to top of scope +extern void * ((__bsearch_887) (const void * (____key_877), const void * (____base_878), __size_t_1 ____nmemb_879, __size_t_1 ____size_881, ____compar_fn_t_876 ____compar_883));// L754:L756 +extern void * ((__bsearch_888) (const void * (____key_877), const void * (____base_878), __size_t_756 ____nmemb_880, __size_t_756 ____size_882, ____compar_fn_t_876 ____compar_883));// L754:L756 +extern void * ((__bsearch_891) (const void * (____key_877), const void * (____base_878), __size_t_1 ____nmemb_879, __size_t_1 ____size_881, ____compar_fn_t_876 ____compar_883));// L754:L756 +extern void * ((__bsearch_892) (const void * (____key_877), const void * (____base_878), __size_t_756 ____nmemb_880, __size_t_756 ____size_882, ____compar_fn_t_876 ____compar_883));// L754:L756 /* no function due to type errors in the function prototype */ +extern void (__qsort_920) (void * (____base_913), __size_t_1 ____nmemb_914, __size_t_1 ____size_916, ____compar_fn_t_876 ____compar_918);// L764:L765 +extern void (__qsort_922) (void * (____base_913), __size_t_756 ____nmemb_915, __size_t_756 ____size_917, ____compar_fn_t_876 ____compar_918);// L764:L765 +extern void (__qsort_924) (void * (____base_913), __size_t_1 ____nmemb_914, __size_t_1 ____size_916, ____compar_fn_t_876 ____compar_918);// L764:L765 +extern void (__qsort_926) (void * (____base_913), __size_t_756 ____nmemb_915, __size_t_756 ____size_917, ____compar_fn_t_876 ____compar_918);// L764:L765 +extern int (__abs_929) (int ____x_928);// L774 +extern int (__abs_930) (int ____x_928);// L774 +extern long int (__labs_932) (long int ____x_931);// L775 +extern long int (__labs_933) (long int ____x_931);// L775 +extern long long int (__llabs_935) (long long int ____x_934);// L779:L780 +extern long long int (__llabs_936) (long long int ____x_934);// L779:L780 +extern __div_t_765 (__div_939) (int ____numer_937, int ____denom_938);// L788:L789 +extern __div_t_765 (__div_940) (int ____numer_937, int ____denom_938);// L788:L789 +extern __ldiv_t_770 (__ldiv_943) (long int ____numer_941, long int ____denom_942);// L790:L791 +extern __ldiv_t_770 (__ldiv_945) (long int ____numer_941, long int ____denom_942);// L790:L791 +extern __lldiv_t_775 (__lldiv_949) (long long int ____numer_947, long long int ____denom_948);// L796:L798 +extern __lldiv_t_775 (__lldiv_951) (long long int ____numer_947, long long int ____denom_948);// L796:L798 +extern int (__mblen_956) (const char * (____s_953), __size_t_1 ____n_954);// L862 +extern int (__mblen_957) (const char * (____s_953), __size_t_756 ____n_955);// L862 +extern int (__mbtowc_963) (__wchar_t_759 * __restrict ____pwc_958, const char * __restrict ____s_960, __size_t_1 ____n_961);// L865:L866 +extern int (__mbtowc_964) (__wchar_t_760 * __restrict ____pwc_959, const char * __restrict ____s_960, __size_t_1 ____n_961);// L865:L866 +extern int (__mbtowc_965) (__wchar_t_760 * __restrict ____pwc_959, const char * __restrict ____s_960, __size_t_756 ____n_962);// L865:L866 +extern int (__wctomb_969) (char * (____s_966), __wchar_t_759 ____wchar_967);// L869 +extern int (__wctomb_970) (char * (____s_966), __wchar_t_760 ____wchar_968);// L869 +extern __size_t_1 (__mbstowcs_976) (__wchar_t_759 * __restrict ____pwcs_971, const char * __restrict ____s_973, __size_t_1 ____n_974);// L873:L874 +extern __size_t_1 (__mbstowcs_977) (__wchar_t_760 * __restrict ____pwcs_972, const char * __restrict ____s_973, __size_t_1 ____n_974);// L873:L874 +extern __size_t_756 (__mbstowcs_978) (__wchar_t_760 * __restrict ____pwcs_972, const char * __restrict ____s_973, __size_t_756 ____n_975);// L873:L874 +extern __size_t_1 (__wcstombs_984) (char * __restrict ____s_979, const __wchar_t_759 * __restrict ____pwcs_980, __size_t_1 ____n_982);// L876:L878 +extern __size_t_1 (__wcstombs_985) (char * __restrict ____s_979, const __wchar_t_760 * __restrict ____pwcs_981, __size_t_1 ____n_982);// L876:L878 +extern __size_t_756 (__wcstombs_986) (char * __restrict ____s_979, const __wchar_t_760 * __restrict ____pwcs_981, __size_t_756 ____n_983);// L876:L878 /* no function due to type errors in the function prototype */ +extern char * ((____realpath_chk_992) (const char * __restrict ____name_988, char * __restrict ____resolved_989, __size_t_1 ____resolvedlen_990));// L23:L25 +extern char * ((____realpath_chk_993) (const char * __restrict ____name_988, char * __restrict ____resolved_989, __size_t_756 ____resolvedlen_991));// L23:L25 +extern char * ((____realpath_alias_996) (const char * __restrict ____name_994, char * __restrict ____resolved_995));// L26:L28 +extern char * ((____realpath_chk_warn_1001) (const char * __restrict ____name_997, char * __restrict ____resolved_998, __size_t_1 ____resolvedlen_999));// L29:L34 +extern char * ((____realpath_chk_warn_1002) (const char * __restrict ____name_997, char * __restrict ____resolved_998, __size_t_756 ____resolvedlen_1000));// L29:L34 /* no function due to type errors in the function prototype */ +extern int (____ptsname_r_chk_1012) (int ____fd_1006, char * (____buf_1007), __size_t_1 ____buflen_1008, __size_t_1 ____nreal_1010);// L52:L53 +extern int (____ptsname_r_chk_1013) (int ____fd_1006, char * (____buf_1007), __size_t_756 ____buflen_1009, __size_t_756 ____nreal_1011);// L52:L53 +extern int (____ptsname_r_alias_1018) (int ____fd_1014, char * (____buf_1015), __size_t_1 ____buflen_1016);// L54:L56 +extern int (____ptsname_r_alias_1019) (int ____fd_1014, char * (____buf_1015), __size_t_756 ____buflen_1017);// L54:L56 +extern int (____ptsname_r_chk_warn_1026) (int ____fd_1020, char * (____buf_1021), __size_t_1 ____buflen_1022, __size_t_1 ____nreal_1024);// L57:L61 +extern int (____ptsname_r_chk_warn_1027) (int ____fd_1020, char * (____buf_1021), __size_t_756 ____buflen_1023, __size_t_756 ____nreal_1025);// L57:L61 /* no function due to type errors in the function prototype */ -extern int (____dprintf_chk_984) (int ____fd_981, int ____flag_982, const char * __restrict ____fmt_983, ... );// L131:L132 -extern int (____vdprintf_chk_990) (int ____fd_985, int ____flag_986, const char * __restrict ____fmt_987, ____gnuc_va_list_86 ____arg_988);// L133:L135 +extern int (____wctomb_chk_1038) (char * (____s_1034), __wchar_t_760 ____wchar_1035, __size_t_1 ____buflen_1036);// L77:L78 +extern int (____wctomb_chk_1039) (char * (____s_1034), __wchar_t_760 ____wchar_1035, __size_t_756 ____buflen_1037);// L77:L78 +extern int (____wctomb_alias_1042) (char * (____s_1040), __wchar_t_760 ____wchar_1041);// L79:L80 /* no function due to type errors in the function prototype */ +extern __size_t_1 (____mbstowcs_chk_1051) (__wchar_t_760 * __restrict ____dst_1045, const char * __restrict ____src_1046, __size_t_1 ____len_1047, __size_t_1 ____dstlen_1049);// L98:L100 +extern __size_t_756 (____mbstowcs_chk_1052) (__wchar_t_760 * __restrict ____dst_1045, const char * __restrict ____src_1046, __size_t_756 ____len_1048, __size_t_756 ____dstlen_1050);// L98:L100 +extern __size_t_1 (____mbstowcs_alias_1057) (__wchar_t_760 * __restrict ____dst_1053, const char * __restrict ____src_1054, __size_t_1 ____len_1055);// L101:L104 +extern __size_t_756 (____mbstowcs_alias_1058) (__wchar_t_760 * __restrict ____dst_1053, const char * __restrict ____src_1054, __size_t_756 ____len_1056);// L101:L104 +extern __size_t_1 (____mbstowcs_chk_warn_1065) (__wchar_t_760 * __restrict ____dst_1059, const char * __restrict ____src_1060, __size_t_1 ____len_1061, __size_t_1 ____dstlen_1063);// L105:L110 +extern __size_t_756 (____mbstowcs_chk_warn_1066) (__wchar_t_760 * __restrict ____dst_1059, const char * __restrict ____src_1060, __size_t_756 ____len_1062, __size_t_756 ____dstlen_1064);// L105:L110 /* no function due to type errors in the function prototype */ -extern char * ((____fgets_chk_1004) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 -extern char * ((____fgets_chk_1006) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 -extern char * ((____fgets_chk_1008) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 -extern char * ((____fgets_alias_1014) (char * __restrict ____s_1010, int ____n_1011, __FILE_59 * __restrict ____stream_1012));// L243:L245 -extern char * ((____fgets_chk_warn_1021) (char * __restrict ____s_1016, __size_t_1 ____size_1017, int ____n_1018, __FILE_59 * __restrict ____stream_1019));// L246:L250 +extern __size_t_1 (____wcstombs_chk_1077) (char * __restrict ____dst_1071, const __wchar_t_760 * __restrict ____src_1072, __size_t_1 ____len_1073, __size_t_1 ____dstlen_1075);// L130:L132 +extern __size_t_756 (____wcstombs_chk_1078) (char * __restrict ____dst_1071, const __wchar_t_760 * __restrict ____src_1072, __size_t_756 ____len_1074, __size_t_756 ____dstlen_1076);// L130:L132 +extern __size_t_1 (____wcstombs_alias_1083) (char * __restrict ____dst_1079, const __wchar_t_760 * __restrict ____src_1080, __size_t_1 ____len_1081);// L133:L136 +extern __size_t_756 (____wcstombs_alias_1084) (char * __restrict ____dst_1079, const __wchar_t_760 * __restrict ____src_1080, __size_t_756 ____len_1082);// L133:L136 +extern __size_t_1 (____wcstombs_chk_warn_1091) (char * __restrict ____dst_1085, const __wchar_t_760 * __restrict ____src_1086, __size_t_1 ____len_1087, __size_t_1 ____dstlen_1089);// L137:L141 +extern __size_t_756 (____wcstombs_chk_warn_1092) (char * __restrict ____dst_1085, const __wchar_t_760 * __restrict ____src_1086, __size_t_756 ____len_1088, __size_t_756 ____dstlen_1090);// L137:L141 /* no function due to type errors in the function prototype */ +extern void * ((__memmove_1109) (void * (____dest_1105), const void * (____src_1106), __size_t_1 ____n_1107));// L46:L47 +extern void * ((__memmove_1110) (void * (____dest_1105), const void * (____src_1106), __size_t_756 ____n_1108));// L46:L47 +extern void * ((__memset_1115) (void * (____s_1111), int ____c_1112, __size_t_1 ____n_1113));// L62 +extern void * ((__memset_1116) (void * (____s_1111), int ____c_1112, __size_t_756 ____n_1114));// L62 +extern int (__memcmp_1121) (const void * (____s1_1117), const void * (____s2_1118), __size_t_1 ____n_1119);// L65:L66 +extern int (__memcmp_1122) (const void * (____s1_1117), const void * (____s2_1118), __size_t_756 ____n_1120);// L65:L66 +extern void * ((__memchr_1127) (const void * (____s_1123), int ____c_1124, __size_t_1 ____n_1125));// L92:L93 +extern void * ((__memchr_1128) (const void * (____s_1123), int ____c_1124, __size_t_756 ____n_1126));// L92:L93 +extern char * ((__strcpy_1131) (char * __restrict ____dest_1129, const char * __restrict ____src_1130));// L125:L126 +extern char * ((__strncpy_1136) (char * __restrict ____dest_1132, const char * __restrict ____src_1133, __size_t_1 ____n_1134));// L128:L130 +extern char * ((__strncpy_1137) (char * __restrict ____dest_1132, const char * __restrict ____src_1133, __size_t_756 ____n_1135));// L128:L130 +extern char * ((__strcat_1140) (char * __restrict ____dest_1138, const char * __restrict ____src_1139));// L133:L134 +extern char * ((__strncat_1145) (char * __restrict ____dest_1141, const char * __restrict ____src_1142, __size_t_1 ____n_1143));// L136:L137 +extern char * ((__strncat_1146) (char * __restrict ____dest_1141, const char * __restrict ____src_1142, __size_t_756 ____n_1144));// L136:L137 +extern int (__strcmp_1149) (const char * (____s1_1147), const char * (____s2_1148));// L140:L141 +extern int (__strncmp_1154) (const char * (____s1_1150), const char * (____s2_1151), __size_t_1 ____n_1152);// L143:L144 +extern int (__strncmp_1155) (const char * (____s1_1150), const char * (____s2_1151), __size_t_756 ____n_1153);// L143:L144 +extern int (__strcoll_1158) (const char * (____s1_1156), const char * (____s2_1157));// L147:L148 +extern __size_t_1 (__strxfrm_1163) (char * __restrict ____dest_1159, const char * __restrict ____src_1160, __size_t_1 ____n_1161);// L150:L152 +extern __size_t_756 (__strxfrm_1164) (char * __restrict ____dest_1159, const char * __restrict ____src_1160, __size_t_756 ____n_1162);// L150:L152 +extern char * ((__strchr_1167) (const char * (____s_1165), int ____c_1166));// L231:L232 +extern char * ((__strrchr_1170) (const char * (____s_1168), int ____c_1169));// L258:L259 +extern __size_t_1 (__strcspn_1173) (const char * (____s_1171), const char * (____reject_1172));// L280:L281 +extern __size_t_756 (__strcspn_1174) (const char * (____s_1171), const char * (____reject_1172));// L280:L281 +extern __size_t_1 (__strspn_1177) (const char * (____s_1175), const char * (____accept_1176));// L284:L285 +extern __size_t_756 (__strspn_1178) (const char * (____s_1175), const char * (____accept_1176));// L284:L285 +extern char * ((__strpbrk_1181) (const char * (____s_1179), const char * (____accept_1180)));// L310:L311 +extern char * ((__strstr_1184) (const char * (____haystack_1182), const char * (____needle_1183)));// L337:L338 +extern char * ((__strtok_1187) (char * __restrict ____s_1185, const char * __restrict ____delim_1186));// L343:L344 +extern char * ((____strtok_r_1191) (char * __restrict ____s_1188, const char * __restrict ____delim_1189, char * (* __restrict ____save_ptr_1190)));// L349:L352 +extern __size_t_1 (__strlen_1193) (const char * (____s_1192));// L394:L395 +extern __size_t_756 (__strlen_1194) (const char * (____s_1192));// L394:L395 +extern char * ((__strerror_1196) (int ____errnum_1195));// L408 +extern void (____bzero_1200) (void * (____s_1197), __size_t_1 ____n_1198);// L446 +extern void (____bzero_1201) (void * (____s_1197), __size_t_756 ____n_1199);// L446 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -static __inline unsigned int (____bswap_32_1158) (unsigned int ____bsx_1157) { +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +extern char * ((____stpncpy_chk_1235) (char * (____dest_1229), const char * (____src_1230), __size_t_1 ____n_1231, __size_t_1 ____destlen_1233));// L130:L131 +extern char * ((____stpncpy_chk_1236) (char * (____dest_1229), const char * (____src_1230), __size_t_756 ____n_1232, __size_t_756 ____destlen_1234));// L130:L131 +extern char * ((____stpncpy_alias_1241) (char * (____dest_1237), const char * (____src_1238), __size_t_1 ____n_1239));// L132:L133 +extern char * ((____stpncpy_alias_1242) (char * (____dest_1237), const char * (____src_1238), __size_t_756 ____n_1240));// L132:L133 +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +void (__build_dep_1260) (void ) { -if (__static_condition_default_1159) { +{ +if (__static_condition_default_1262) { { { -__static_type_error("invalid type found in return expression"); -} -} - - -} -} -static __inline ____uint64_t_13 (____bswap_64_1162) (____uint64_t_13 ____bsx_1160) { +char * (__dt_1258)= ( ( void * ) 0 );// L7 -if (__static_condition_default_1164) { +if (__static_condition_default_1263) { +if ( rand( ) % 2 )// L9 +{ { { -__static_type_error("invalid type found in return expression"); + __dt_1258 = "-i" ; // L10 } } - - } } -static __inline ____uint64_t_1112 (____bswap_64_1163) (____uint64_t_1112 ____bsx_1161) { - -if (__static_condition_default_1165) { +if (__static_condition_default_1264) { +if ( rand( ) % 2 )// L9 +{ { { -__static_type_error("invalid type found in return expression"); + __dt_1258 = "-i" ; // L10 } } - - } } -union __wait_1177 ;// L66 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern __size_t_1 (____ctype_get_mb_cur_max_1201) (void );// L139 -extern __size_t_1093 (____ctype_get_mb_cur_max_1202) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_1203) (void );// L139 -extern __size_t_1093 (____ctype_get_mb_cur_max_1204) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_1205) (void );// L139 -extern __size_t_1093 (____ctype_get_mb_cur_max_1206) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_1207) (void );// L139 -extern __size_t_1093 (____ctype_get_mb_cur_max_1208) (void );// L139 -extern double (__atof_1210) (const char * (____nptr_1209));// L144:L145 -extern double (__atof_1211) (const char * (____nptr_1209));// L144:L145 -extern int (__atoi_1213) (const char * (____nptr_1212));// L147:L148 -extern int (__atoi_1214) (const char * (____nptr_1212));// L147:L148 -extern long int (__atol_1216) (const char * (____nptr_1215));// L150:L151 -extern long int (__atol_1217) (const char * (____nptr_1215));// L150:L151 -extern long long int (__atoll_1219) (const char * (____nptr_1218));// L157:L158 -extern long long int (__atoll_1220) (const char * (____nptr_1218));// L157:L158 -extern double (__strtod_1223) (const char * __restrict ____nptr_1221, char * (* __restrict ____endptr_1222));// L164:L166 -extern float (__strtof_1226) (const char * __restrict ____nptr_1224, char * (* __restrict ____endptr_1225));// L172:L173 -extern long double (__strtold_1229) (const char * __restrict ____nptr_1227, char * (* __restrict ____endptr_1228));// L175:L177 -extern long int (__strtol_1233) (const char * __restrict ____nptr_1230, char * (* __restrict ____endptr_1231), int ____base_1232);// L183:L185 -extern unsigned long int (__strtoul_1237) (const char * __restrict ____nptr_1234, char * (* __restrict ____endptr_1235), int ____base_1236);// L187:L189 -extern long long int (__strtoq_1241) (const char * __restrict ____nptr_1238, char * (* __restrict ____endptr_1239), int ____base_1240);// L195:L197 -extern unsigned long long int (__strtouq_1245) (const char * __restrict ____nptr_1242, char * (* __restrict ____endptr_1243), int ____base_1244);// L200:L202 -extern long long int (__strtoll_1249) (const char * __restrict ____nptr_1246, char * (* __restrict ____endptr_1247), int ____base_1248);// L209:L211 -extern long long int (__strtoll_1250) (const char * __restrict ____nptr_1246, char * (* __restrict ____endptr_1247), int ____base_1248);// L209:L211 -extern unsigned long long int (__strtoull_1254) (const char * __restrict ____nptr_1251, char * (* __restrict ____endptr_1252), int ____base_1253);// L214:L216 -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -__extension__/* no function due to type errors in the function prototype */ -extern char * ((__l64a_1259) (long int ____n_1258));// L305 -extern char * ((__l64a_1260) (long int ____n_1258));// L305 -extern long int (__a64l_1262) (const char * (____s_1261));// L308:L309 -extern long int (__a64l_1263) (const char * (____s_1261));// L308:L309 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -static __inline unsigned int (____bswap_32_1452) (unsigned int ____bsx_1451) { - -if (__static_condition_default_1453) { +char __buf_1259[50];// L18 -{ -{ - - - -__static_type_error("invalid type found in return expression"); + __strcpy_1131 ( __buf_1259 ,"module option(s): ") ; // L19 + __strcat_1140 ( __buf_1259 , __dt_1258 ) ; // L21 } } } -} -static __inline ____uint64_t_13 (____bswap_64_1456) (____uint64_t_13 ____bsx_1454) { -if (__static_condition_default_1458) { +if (__static_condition_default_1265) { { { -__static_type_error("invalid type found in return expression"); -} -} - - -} -} -static __inline ____uint64_t_1275 (____bswap_64_1457) (____uint64_t_1275 ____bsx_1455) { +char * (__dt_1258)= ( ( void * ) 0 );// L7 -if (__static_condition_default_1459) { +if (__static_condition_default_1266) { +if ( rand( ) % 2 )// L9 +{ { { -__static_type_error("invalid type found in return expression"); + __dt_1258 = "-i" ; // L10 } } - - } } -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -struct __timespec_1466 ;// L120 - -struct __timeval_1476 ;// L30 - -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern int (__select_1513) (int ____nfds_1502, __fd_set_1499 * __restrict ____readfds_1503, __fd_set_1499 * __restrict ____writefds_1505, __fd_set_1499 * __restrict ____exceptfds_1507, struct __timeval_1476 * __restrict ____timeout_1510);// L106:L109 -extern int (__select_1514) (int ____nfds_1502, __fd_set_1499 * __restrict ____readfds_1503, __fd_set_1499 * __restrict ____writefds_1505, __fd_set_1499 * __restrict ____exceptfds_1507, struct __forward_tag_reference_1509 * __restrict ____timeout_1512);// L106:L109 -extern int (__pselect_1529) (int ____nfds_1517, __fd_set_1499 * __restrict ____readfds_1518, __fd_set_1499 * __restrict ____writefds_1520, __fd_set_1499 * __restrict ____exceptfds_1522, const struct __timespec_1466 * __restrict ____timeout_1525, const ____sigset_t_1464 * __restrict ____sigmask_1528);// L118:L122 -extern int (__pselect_1530) (int ____nfds_1517, __fd_set_1499 * __restrict ____readfds_1518, __fd_set_1499 * __restrict ____writefds_1520, __fd_set_1499 * __restrict ____exceptfds_1522, const struct __forward_tag_reference_1524 * __restrict ____timeout_1527, const ____sigset_t_1464 * __restrict ____sigmask_1528);// L118:L122 -extern long int (____fdelt_chk_1534) (long int ____d_1533);// L24 -extern long int (____fdelt_warn_1536) (long int ____d_1535);// L25:L26 -extern unsigned int (__gnu_dev_major_1538) (unsigned long long int ____dev_1537);// L27:L28 -extern unsigned int (__gnu_dev_major_1539) (unsigned long long int ____dev_1537);// L27:L28 -extern unsigned int (__gnu_dev_minor_1541) (unsigned long long int ____dev_1540);// L30:L31 -extern unsigned long long int (__gnu_dev_makedev_1544) (unsigned int ____major_1542, unsigned int ____minor_1543);// L33:L35 -__extension__/* no function due to type errors in the function prototype */ -__extension__/* no function due to type errors in the function prototype */ -__extension__/* no function due to type errors in the function prototype */ -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -union __pthread_attr_t_1578 ;// L63 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern int (__rand_1609) (void );// L374 -extern void (__srand_1611) (unsigned int ____seed_1610);// L376 -extern int (__rand_r_1613) (unsigned int * (____seed_1612));// L381 -extern double (__drand48_1614) (void );// L389 -extern double (__erand48_1616) (unsigned short int ____xsubi_1615[3]);// L390 -extern long int (__lrand48_1617) (void );// L393 -extern long int (__nrand48_1619) (unsigned short int ____xsubi_1618[3]);// L394:L395 -extern long int (__mrand48_1620) (void );// L398 -extern long int (__jrand48_1622) (unsigned short int ____xsubi_1621[3]);// L399:L400 -extern void (__srand48_1624) (long int ____seedval_1623);// L403 -extern unsigned short int * ((__seed48_1626) (unsigned short int ____seed16v_1625[3]));// L404:L405 -extern void (__lcong48_1628) (unsigned short int ____param_1627[7]);// L406 -extern void * ((__malloc_1631) (__size_t_1 ____size_1629));// L466 -extern void * ((__malloc_1632) (__size_t_1093 ____size_1630));// L466 -extern void * ((__malloc_1633) (__size_t_1 ____size_1629));// L466 -extern void * ((__malloc_1634) (__size_t_1093 ____size_1630));// L466 -extern void * ((__calloc_1639) (__size_t_1 ____nmemb_1635, __size_t_1 ____size_1637));// L468:L469 -extern void * ((__calloc_1640) (__size_t_1093 ____nmemb_1636, __size_t_1093 ____size_1638));// L468:L469 -extern void * ((__calloc_1641) (__size_t_1 ____nmemb_1635, __size_t_1 ____size_1637));// L468:L469 -extern void * ((__calloc_1642) (__size_t_1093 ____nmemb_1636, __size_t_1093 ____size_1638));// L468:L469 -extern void * ((__realloc_1646) (void * (____ptr_1643), __size_t_1 ____size_1644));// L480:L481 -extern void * ((__realloc_1647) (void * (____ptr_1643), __size_t_1093 ____size_1645));// L480:L481 -extern void (__free_1649) (void * (____ptr_1648));// L483 -extern void (__cfree_1651) (void * (____ptr_1650));// L488 -extern void * ((__alloca_1654) (__size_t_1 ____size_1652));// L32 -extern void * ((__alloca_1655) (__size_t_1093 ____size_1653));// L32 -extern void * ((__valloc_1658) (__size_t_1 ____size_1656));// L498 -extern void * ((__valloc_1659) (__size_t_1093 ____size_1657));// L498 -extern void * ((__valloc_1660) (__size_t_1 ____size_1656));// L498 -extern void * ((__valloc_1661) (__size_t_1093 ____size_1657));// L498 -extern int (__posix_memalign_1667) (void * (* (____memptr_1662)), __size_t_1 ____alignment_1663, __size_t_1 ____size_1665);// L503:L504 -extern int (__posix_memalign_1668) (void * (* (____memptr_1662)), __size_t_1093 ____alignment_1664, __size_t_1093 ____size_1666);// L503:L504 -extern int (__posix_memalign_1669) (void * (* (____memptr_1662)), __size_t_1 ____alignment_1663, __size_t_1 ____size_1665);// L503:L504 -extern int (__posix_memalign_1670) (void * (* (____memptr_1662)), __size_t_1093 ____alignment_1664, __size_t_1093 ____size_1666);// L503:L504 -extern void * ((__aligned_alloc_1675) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 -extern void * ((__aligned_alloc_1676) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 -extern void * ((__aligned_alloc_1677) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 -extern void * ((__aligned_alloc_1678) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 -extern void * ((__aligned_alloc_1679) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 -extern void * ((__aligned_alloc_1680) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 -extern void * ((__aligned_alloc_1681) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 -extern void * ((__aligned_alloc_1682) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 -extern void (__abort_1683) (void );// L515 -extern int (__atexit_1685) (void (* (____func_1684)) (void ));// L519 -extern int (__at_quick_exit_1687) (void (* (____func_1686)) (void ));// L527 -extern int (__on_exit_1692) (void (* (____func_1690)) (int ____status_1688, void * (____arg_1689)), void * (____arg_1691));// L535:L536 -extern void (__exit_1694) (int ____status_1693);// L543 -extern void (__exit_1695) (int ____status_1693);// L543 -extern void (__quick_exit_1697) (int ____status_1696);// L549 -extern void (___Exit_1699) (int ____status_1698);// L557 -extern char * ((__getenv_1701) (const char * (____name_1700)));// L564 -extern char * ((__getenv_1702) (const char * (____name_1700)));// L564 -extern int (__putenv_1704) (char * (____string_1703));// L578 -extern int (__setenv_1708) (const char * (____name_1705), const char * (____value_1706), int ____replace_1707);// L584:L585 -extern int (__unsetenv_1710) (const char * (____name_1709));// L588 -extern int (__clearenv_1711) (void );// L595 -extern char * ((__mktemp_1713) (char * (____template_1712)));// L606 -extern int (__mkstemp_1716) (char * (____template_1714));// L619 -extern int (__mkstemp_1718) (char * (____template_1714));// L619 -extern int (__mkstemp_1717) (char * (____template_1715));// L622:L623 -extern int (__mkstemp_1719) (char * (____template_1715));// L622:L623 -extern int (__mkstemps_1724) (char * (____template_1720), int ____suffixlen_1721);// L641 -extern int (__mkstemps_1725) (char * (____template_1722), int ____suffixlen_1723);// L644:L645 -extern int (__mkstemps_1726) (char * (____template_1720), int ____suffixlen_1721);// L641 -extern int (__mkstemps_1727) (char * (____template_1722), int ____suffixlen_1723);// L644:L645 -extern char * ((__mkdtemp_1729) (char * (____template_1728)));// L662 -extern char * ((__mkdtemp_1730) (char * (____template_1728)));// L662 -extern int (__system_1732) (const char * (____command_1731));// L716 -extern int (__system_1733) (const char * (____command_1731));// L716 -extern int (__system_1734) (const char * (____command_1731));// L716 -extern int (__system_1735) (const char * (____command_1731));// L716 -extern char * ((__realpath_1738) (const char * __restrict ____name_1736, char * __restrict ____resolved_1737));// L733:L734 -extern char * ((__realpath_1739) (const char * __restrict ____name_1736, char * __restrict ____resolved_1737));// L733:L734 -// typedef moved to top of scope -extern void * ((__bsearch_1751) (const void * (____key_1741), const void * (____base_1742), __size_t_1 ____nmemb_1743, __size_t_1 ____size_1745, ____compar_fn_t_1740 ____compar_1747));// L754:L756 -extern void * ((__bsearch_1752) (const void * (____key_1741), const void * (____base_1742), __size_t_1093 ____nmemb_1744, __size_t_1093 ____size_1746, ____compar_fn_t_1740 ____compar_1747));// L754:L756 -extern void * ((__bsearch_1755) (const void * (____key_1741), const void * (____base_1742), __size_t_1 ____nmemb_1743, __size_t_1 ____size_1745, ____compar_fn_t_1740 ____compar_1747));// L754:L756 -extern void * ((__bsearch_1756) (const void * (____key_1741), const void * (____base_1742), __size_t_1093 ____nmemb_1744, __size_t_1093 ____size_1746, ____compar_fn_t_1740 ____compar_1747));// L754:L756 -/* no function due to type errors in the function prototype */ -extern void (__qsort_1784) (void * (____base_1777), __size_t_1 ____nmemb_1778, __size_t_1 ____size_1780, ____compar_fn_t_1740 ____compar_1782);// L764:L765 -extern void (__qsort_1786) (void * (____base_1777), __size_t_1093 ____nmemb_1779, __size_t_1093 ____size_1781, ____compar_fn_t_1740 ____compar_1782);// L764:L765 -extern void (__qsort_1788) (void * (____base_1777), __size_t_1 ____nmemb_1778, __size_t_1 ____size_1780, ____compar_fn_t_1740 ____compar_1782);// L764:L765 -extern void (__qsort_1790) (void * (____base_1777), __size_t_1093 ____nmemb_1779, __size_t_1093 ____size_1781, ____compar_fn_t_1740 ____compar_1782);// L764:L765 -extern int (__abs_1793) (int ____x_1792);// L774 -extern int (__abs_1794) (int ____x_1792);// L774 -extern long int (__labs_1796) (long int ____x_1795);// L775 -extern long int (__labs_1797) (long int ____x_1795);// L775 -extern long long int (__llabs_1799) (long long int ____x_1798);// L779:L780 -extern long long int (__llabs_1800) (long long int ____x_1798);// L779:L780 -extern __div_t_1190 (__div_1803) (int ____numer_1801, int ____denom_1802);// L788:L789 -extern __div_t_1190 (__div_1804) (int ____numer_1801, int ____denom_1802);// L788:L789 -extern __ldiv_t_1195 (__ldiv_1807) (long int ____numer_1805, long int ____denom_1806);// L790:L791 -extern __ldiv_t_1195 (__ldiv_1809) (long int ____numer_1805, long int ____denom_1806);// L790:L791 -extern __lldiv_t_1200 (__lldiv_1813) (long long int ____numer_1811, long long int ____denom_1812);// L796:L798 -extern __lldiv_t_1200 (__lldiv_1815) (long long int ____numer_1811, long long int ____denom_1812);// L796:L798 -extern char * ((__ecvt_1821) (double ____value_1817, int ____ndigit_1818, int * __restrict ____decpt_1819, int * __restrict ____sign_1820));// L811:L812 -extern char * ((__ecvt_1822) (double ____value_1817, int ____ndigit_1818, int * __restrict ____decpt_1819, int * __restrict ____sign_1820));// L811:L812 -extern char * ((__fcvt_1827) (double ____value_1823, int ____ndigit_1824, int * __restrict ____decpt_1825, int * __restrict ____sign_1826));// L817:L818 -extern char * ((__fcvt_1828) (double ____value_1823, int ____ndigit_1824, int * __restrict ____decpt_1825, int * __restrict ____sign_1826));// L817:L818 -extern char * ((__gcvt_1832) (double ____value_1829, int ____ndigit_1830, char * (____buf_1831)));// L823:L824 -extern char * ((__gcvt_1833) (double ____value_1829, int ____ndigit_1830, char * (____buf_1831)));// L823:L824 -extern char * ((__qecvt_1838) (long double ____value_1834, int ____ndigit_1835, int * __restrict ____decpt_1836, int * __restrict ____sign_1837));// L829:L831 -extern char * ((__qecvt_1839) (long double ____value_1834, int ____ndigit_1835, int * __restrict ____decpt_1836, int * __restrict ____sign_1837));// L829:L831 -extern char * ((__qfcvt_1844) (long double ____value_1840, int ____ndigit_1841, int * __restrict ____decpt_1842, int * __restrict ____sign_1843));// L832:L834 -extern char * ((__qfcvt_1845) (long double ____value_1840, int ____ndigit_1841, int * __restrict ____decpt_1842, int * __restrict ____sign_1843));// L832:L834 -extern char * ((__qgcvt_1849) (long double ____value_1846, int ____ndigit_1847, char * (____buf_1848)));// L835:L836 -extern char * ((__qgcvt_1850) (long double ____value_1846, int ____ndigit_1847, char * (____buf_1848)));// L835:L836 -extern int (__ecvt_r_1858) (double ____value_1851, int ____ndigit_1852, int * __restrict ____decpt_1853, int * __restrict ____sign_1854, char * __restrict ____buf_1855, __size_t_1 ____len_1856);// L841:L843 -extern int (__ecvt_r_1859) (double ____value_1851, int ____ndigit_1852, int * __restrict ____decpt_1853, int * __restrict ____sign_1854, char * __restrict ____buf_1855, __size_t_1093 ____len_1857);// L841:L843 -extern int (__fcvt_r_1867) (double ____value_1860, int ____ndigit_1861, int * __restrict ____decpt_1862, int * __restrict ____sign_1863, char * __restrict ____buf_1864, __size_t_1 ____len_1865);// L844:L846 -extern int (__fcvt_r_1868) (double ____value_1860, int ____ndigit_1861, int * __restrict ____decpt_1862, int * __restrict ____sign_1863, char * __restrict ____buf_1864, __size_t_1093 ____len_1866);// L844:L846 -extern int (__qecvt_r_1876) (long double ____value_1869, int ____ndigit_1870, int * __restrict ____decpt_1871, int * __restrict ____sign_1872, char * __restrict ____buf_1873, __size_t_1 ____len_1874);// L848:L851 -extern int (__qecvt_r_1877) (long double ____value_1869, int ____ndigit_1870, int * __restrict ____decpt_1871, int * __restrict ____sign_1872, char * __restrict ____buf_1873, __size_t_1093 ____len_1875);// L848:L851 -extern int (__qfcvt_r_1885) (long double ____value_1878, int ____ndigit_1879, int * __restrict ____decpt_1880, int * __restrict ____sign_1881, char * __restrict ____buf_1882, __size_t_1 ____len_1883);// L852:L855 -extern int (__qfcvt_r_1886) (long double ____value_1878, int ____ndigit_1879, int * __restrict ____decpt_1880, int * __restrict ____sign_1881, char * __restrict ____buf_1882, __size_t_1093 ____len_1884);// L852:L855 -extern int (__mblen_1890) (const char * (____s_1887), __size_t_1 ____n_1888);// L862 -extern int (__mblen_1891) (const char * (____s_1887), __size_t_1093 ____n_1889);// L862 -extern int (__mblen_1892) (const char * (____s_1887), __size_t_1 ____n_1888);// L862 -extern int (__mblen_1893) (const char * (____s_1887), __size_t_1093 ____n_1889);// L862 -extern int (__mbtowc_1898) (__wchar_t_1094 * __restrict ____pwc_1894, const char * __restrict ____s_1895, __size_t_1 ____n_1896);// L865:L866 -extern int (__mbtowc_1899) (__wchar_t_1094 * __restrict ____pwc_1894, const char * __restrict ____s_1895, __size_t_1093 ____n_1897);// L865:L866 -extern int (__wctomb_1902) (char * (____s_1900), __wchar_t_1094 ____wchar_1901);// L869 -extern __size_t_1 (__mbstowcs_1907) (__wchar_t_1094 * __restrict ____pwcs_1903, const char * __restrict ____s_1904, __size_t_1 ____n_1905);// L873:L874 -extern __size_t_1093 (__mbstowcs_1908) (__wchar_t_1094 * __restrict ____pwcs_1903, const char * __restrict ____s_1904, __size_t_1093 ____n_1906);// L873:L874 -extern __size_t_1 (__wcstombs_1913) (char * __restrict ____s_1909, const __wchar_t_1094 * __restrict ____pwcs_1910, __size_t_1 ____n_1911);// L876:L878 -extern __size_t_1093 (__wcstombs_1914) (char * __restrict ____s_1909, const __wchar_t_1094 * __restrict ____pwcs_1910, __size_t_1093 ____n_1912);// L876:L878 -extern int (__rpmatch_1917) (const char * (____response_1915));// L887 -extern int (__rpmatch_1916) (const char * (____response_1915));// L887 -extern int (__getsubopt_1922) (char * (* __restrict ____optionp_1918), char * const * __restrict ____tokens_1919, char * (* __restrict ____valuep_1920));// L898:L901 -extern int (__getsubopt_1921) (char * (* __restrict ____optionp_1918), char * const * __restrict ____tokens_1919, char * (* __restrict ____valuep_1920));// L898:L901 -extern int (__getloadavg_1925) (double ____loadavg_1923[], int ____nelem_1924);// L950:L951 -/* no function due to type errors in the function prototype */ -extern char * ((____realpath_chk_1931) (const char * __restrict ____name_1927, char * __restrict ____resolved_1928, __size_t_1 ____resolvedlen_1929));// L23:L25 -extern char * ((____realpath_chk_1932) (const char * __restrict ____name_1927, char * __restrict ____resolved_1928, __size_t_1093 ____resolvedlen_1930));// L23:L25 -extern char * ((____realpath_alias_1935) (const char * __restrict ____name_1933, char * __restrict ____resolved_1934));// L26:L28 -extern char * ((____realpath_chk_warn_1940) (const char * __restrict ____name_1936, char * __restrict ____resolved_1937, __size_t_1 ____resolvedlen_1938));// L29:L34 -extern char * ((____realpath_chk_warn_1941) (const char * __restrict ____name_1936, char * __restrict ____resolved_1937, __size_t_1093 ____resolvedlen_1939));// L29:L34 -/* no function due to type errors in the function prototype */ -extern int (____ptsname_r_chk_1951) (int ____fd_1945, char * (____buf_1946), __size_t_1 ____buflen_1947, __size_t_1 ____nreal_1949);// L52:L53 -extern int (____ptsname_r_chk_1952) (int ____fd_1945, char * (____buf_1946), __size_t_1093 ____buflen_1948, __size_t_1093 ____nreal_1950);// L52:L53 -extern int (____ptsname_r_alias_1957) (int ____fd_1953, char * (____buf_1954), __size_t_1 ____buflen_1955);// L54:L56 -extern int (____ptsname_r_alias_1958) (int ____fd_1953, char * (____buf_1954), __size_t_1093 ____buflen_1956);// L54:L56 -extern int (____ptsname_r_chk_warn_1965) (int ____fd_1959, char * (____buf_1960), __size_t_1 ____buflen_1961, __size_t_1 ____nreal_1963);// L57:L61 -extern int (____ptsname_r_chk_warn_1966) (int ____fd_1959, char * (____buf_1960), __size_t_1093 ____buflen_1962, __size_t_1093 ____nreal_1964);// L57:L61 -/* no function due to type errors in the function prototype */ -extern int (____wctomb_chk_1977) (char * (____s_1973), __wchar_t_1094 ____wchar_1974, __size_t_1 ____buflen_1975);// L77:L78 -extern int (____wctomb_chk_1978) (char * (____s_1973), __wchar_t_1094 ____wchar_1974, __size_t_1093 ____buflen_1976);// L77:L78 -extern int (____wctomb_alias_1981) (char * (____s_1979), __wchar_t_1094 ____wchar_1980);// L79:L80 -/* no function due to type errors in the function prototype */ -extern __size_t_1 (____mbstowcs_chk_1990) (__wchar_t_1094 * __restrict ____dst_1984, const char * __restrict ____src_1985, __size_t_1 ____len_1986, __size_t_1 ____dstlen_1988);// L98:L100 -extern __size_t_1093 (____mbstowcs_chk_1991) (__wchar_t_1094 * __restrict ____dst_1984, const char * __restrict ____src_1985, __size_t_1093 ____len_1987, __size_t_1093 ____dstlen_1989);// L98:L100 -extern __size_t_1 (____mbstowcs_alias_1996) (__wchar_t_1094 * __restrict ____dst_1992, const char * __restrict ____src_1993, __size_t_1 ____len_1994);// L101:L104 -extern __size_t_1093 (____mbstowcs_alias_1997) (__wchar_t_1094 * __restrict ____dst_1992, const char * __restrict ____src_1993, __size_t_1093 ____len_1995);// L101:L104 -extern __size_t_1 (____mbstowcs_chk_warn_2004) (__wchar_t_1094 * __restrict ____dst_1998, const char * __restrict ____src_1999, __size_t_1 ____len_2000, __size_t_1 ____dstlen_2002);// L105:L110 -extern __size_t_1093 (____mbstowcs_chk_warn_2005) (__wchar_t_1094 * __restrict ____dst_1998, const char * __restrict ____src_1999, __size_t_1093 ____len_2001, __size_t_1093 ____dstlen_2003);// L105:L110 -/* no function due to type errors in the function prototype */ -extern __size_t_1 (____wcstombs_chk_2016) (char * __restrict ____dst_2010, const __wchar_t_1094 * __restrict ____src_2011, __size_t_1 ____len_2012, __size_t_1 ____dstlen_2014);// L130:L132 -extern __size_t_1093 (____wcstombs_chk_2017) (char * __restrict ____dst_2010, const __wchar_t_1094 * __restrict ____src_2011, __size_t_1093 ____len_2013, __size_t_1093 ____dstlen_2015);// L130:L132 -extern __size_t_1 (____wcstombs_alias_2022) (char * __restrict ____dst_2018, const __wchar_t_1094 * __restrict ____src_2019, __size_t_1 ____len_2020);// L133:L136 -extern __size_t_1093 (____wcstombs_alias_2023) (char * __restrict ____dst_2018, const __wchar_t_1094 * __restrict ____src_2019, __size_t_1093 ____len_2021);// L133:L136 -extern __size_t_1 (____wcstombs_chk_warn_2030) (char * __restrict ____dst_2024, const __wchar_t_1094 * __restrict ____src_2025, __size_t_1 ____len_2026, __size_t_1 ____dstlen_2028);// L137:L141 -extern __size_t_1093 (____wcstombs_chk_warn_2031) (char * __restrict ____dst_2024, const __wchar_t_1094 * __restrict ____src_2025, __size_t_1093 ____len_2027, __size_t_1093 ____dstlen_2029);// L137:L141 -// typedef moved to top of scope -// typedef moved to top of scope -/* no function due to type errors in the function prototype */ -extern void * ((__memmove_2053) (void * (____dest_2048), const void * (____src_2049), __size_t_1 ____n_2050));// L46:L47 -extern void * ((__memmove_2054) (void * (____dest_2048), const void * (____src_2049), __size_t_1093 ____n_2051));// L46:L47 -extern void * ((__memmove_2055) (void * (____dest_2048), const void * (____src_2049), __size_t_2037 ____n_2052));// L46:L47 -extern void * ((__memset_2070) (void * (____s_2065), int ____c_2066, __size_t_1 ____n_2067));// L62 -extern void * ((__memset_2071) (void * (____s_2065), int ____c_2066, __size_t_1093 ____n_2068));// L62 -extern void * ((__memset_2072) (void * (____s_2065), int ____c_2066, __size_t_2037 ____n_2069));// L62 -extern void * ((__memset_2073) (void * (____s_2065), int ____c_2066, __size_t_1 ____n_2067));// L62 -extern void * ((__memset_2074) (void * (____s_2065), int ____c_2066, __size_t_1093 ____n_2068));// L62 -extern void * ((__memset_2075) (void * (____s_2065), int ____c_2066, __size_t_2037 ____n_2069));// L62 -extern int (__memcmp_2081) (const void * (____s1_2076), const void * (____s2_2077), __size_t_1 ____n_2078);// L65:L66 -extern int (__memcmp_2082) (const void * (____s1_2076), const void * (____s2_2077), __size_t_1093 ____n_2079);// L65:L66 -extern int (__memcmp_2083) (const void * (____s1_2076), const void * (____s2_2077), __size_t_2037 ____n_2080);// L65:L66 -extern void * ((__memchr_2089) (const void * (____s_2084), int ____c_2085, __size_t_1 ____n_2086));// L92:L93 -extern void * ((__memchr_2090) (const void * (____s_2084), int ____c_2085, __size_t_1093 ____n_2087));// L92:L93 -extern void * ((__memchr_2091) (const void * (____s_2084), int ____c_2085, __size_t_2037 ____n_2088));// L92:L93 -extern char * ((__strcpy_2094) (char * __restrict ____dest_2092, const char * __restrict ____src_2093));// L125:L126 -extern char * ((__strncpy_2100) (char * __restrict ____dest_2095, const char * __restrict ____src_2096, __size_t_1 ____n_2097));// L128:L130 -extern char * ((__strncpy_2101) (char * __restrict ____dest_2095, const char * __restrict ____src_2096, __size_t_1093 ____n_2098));// L128:L130 -extern char * ((__strncpy_2102) (char * __restrict ____dest_2095, const char * __restrict ____src_2096, __size_t_2037 ____n_2099));// L128:L130 -extern char * ((__strcat_2105) (char * __restrict ____dest_2103, const char * __restrict ____src_2104));// L133:L134 -extern char * ((__strncat_2111) (char * __restrict ____dest_2106, const char * __restrict ____src_2107, __size_t_1 ____n_2108));// L136:L137 -extern char * ((__strncat_2112) (char * __restrict ____dest_2106, const char * __restrict ____src_2107, __size_t_1093 ____n_2109));// L136:L137 -extern char * ((__strncat_2113) (char * __restrict ____dest_2106, const char * __restrict ____src_2107, __size_t_2037 ____n_2110));// L136:L137 -extern int (__strcmp_2116) (const char * (____s1_2114), const char * (____s2_2115));// L140:L141 -extern int (__strncmp_2122) (const char * (____s1_2117), const char * (____s2_2118), __size_t_1 ____n_2119);// L143:L144 -extern int (__strncmp_2123) (const char * (____s1_2117), const char * (____s2_2118), __size_t_1093 ____n_2120);// L143:L144 -extern int (__strncmp_2124) (const char * (____s1_2117), const char * (____s2_2118), __size_t_2037 ____n_2121);// L143:L144 -extern int (__strcoll_2127) (const char * (____s1_2125), const char * (____s2_2126));// L147:L148 -extern __size_t_1 (__strxfrm_2133) (char * __restrict ____dest_2128, const char * __restrict ____src_2129, __size_t_1 ____n_2130);// L150:L152 -extern __size_t_1093 (__strxfrm_2134) (char * __restrict ____dest_2128, const char * __restrict ____src_2129, __size_t_1093 ____n_2131);// L150:L152 -extern __size_t_2037 (__strxfrm_2135) (char * __restrict ____dest_2128, const char * __restrict ____src_2129, __size_t_2037 ____n_2132);// L150:L152 -// typedef moved to top of scope -// typedef moved to top of scope -extern int (__strcoll_l_2148) (const char * (____s1_2145), const char * (____s2_2146), ____locale_t_2143 ____l_2147);// L162:L163 -extern __size_t_1 (__strxfrm_l_2155) (char * (____dest_2149), const char * (____src_2150), __size_t_1 ____n_2151, ____locale_t_2143 ____l_2154);// L165:L166 -extern __size_t_1093 (__strxfrm_l_2156) (char * (____dest_2149), const char * (____src_2150), __size_t_1093 ____n_2152, ____locale_t_2143 ____l_2154);// L165:L166 -extern __size_t_2037 (__strxfrm_l_2157) (char * (____dest_2149), const char * (____src_2150), __size_t_2037 ____n_2153, ____locale_t_2143 ____l_2154);// L165:L166 -extern char * ((__strdup_2159) (const char * (____s_2158)));// L171:L172 -extern char * ((__strndup_2164) (const char * (____string_2160), __size_t_1 ____n_2161));// L179:L180 -extern char * ((__strndup_2165) (const char * (____string_2160), __size_t_1093 ____n_2162));// L179:L180 -extern char * ((__strndup_2166) (const char * (____string_2160), __size_t_2037 ____n_2163));// L179:L180 -extern char * ((__strchr_2169) (const char * (____s_2167), int ____c_2168));// L231:L232 -extern char * ((__strrchr_2172) (const char * (____s_2170), int ____c_2171));// L258:L259 -extern __size_t_1 (__strcspn_2175) (const char * (____s_2173), const char * (____reject_2174));// L280:L281 -extern __size_t_1093 (__strcspn_2176) (const char * (____s_2173), const char * (____reject_2174));// L280:L281 -extern __size_t_2037 (__strcspn_2177) (const char * (____s_2173), const char * (____reject_2174));// L280:L281 -extern __size_t_1 (__strspn_2180) (const char * (____s_2178), const char * (____accept_2179));// L284:L285 -extern __size_t_1093 (__strspn_2181) (const char * (____s_2178), const char * (____accept_2179));// L284:L285 -extern __size_t_2037 (__strspn_2182) (const char * (____s_2178), const char * (____accept_2179));// L284:L285 -extern char * ((__strpbrk_2185) (const char * (____s_2183), const char * (____accept_2184)));// L310:L311 -extern char * ((__strstr_2188) (const char * (____haystack_2186), const char * (____needle_2187)));// L337:L338 -extern char * ((__strtok_2191) (char * __restrict ____s_2189, const char * __restrict ____delim_2190));// L343:L344 -extern char * ((____strtok_r_2195) (char * __restrict ____s_2192, const char * __restrict ____delim_2193, char * (* __restrict ____save_ptr_2194)));// L349:L352 -extern char * ((__strtok_r_2199) (char * __restrict ____s_2196, const char * __restrict ____delim_2197, char * (* __restrict ____save_ptr_2198)));// L354:L356 -extern __size_t_1 (__strlen_2201) (const char * (____s_2200));// L394:L395 -extern __size_t_1093 (__strlen_2202) (const char * (____s_2200));// L394:L395 -extern __size_t_2037 (__strlen_2203) (const char * (____s_2200));// L394:L395 -extern __size_t_1 (__strlen_2204) (const char * (____s_2200));// L394:L395 -extern __size_t_1093 (__strlen_2205) (const char * (____s_2200));// L394:L395 -extern __size_t_2037 (__strlen_2206) (const char * (____s_2200));// L394:L395 -extern __size_t_1 (__strnlen_2211) (const char * (____string_2207), __size_t_1 ____maxlen_2208);// L401:L402 -extern __size_t_1093 (__strnlen_2212) (const char * (____string_2207), __size_t_1093 ____maxlen_2209);// L401:L402 -extern __size_t_2037 (__strnlen_2213) (const char * (____string_2207), __size_t_2037 ____maxlen_2210);// L401:L402 -extern char * ((__strerror_2215) (int ____errnum_2214));// L408 -extern char * ((__strerror_2216) (int ____errnum_2214));// L408 -extern int (__strerror_r_2222) (int ____errnum_2217, char * (____buf_2218), __size_t_1 ____buflen_2219);// L422:L424 -extern int (__strerror_r_2223) (int ____errnum_2217, char * (____buf_2218), __size_t_1093 ____buflen_2220);// L422:L424 -extern int (__strerror_r_2224) (int ____errnum_2217, char * (____buf_2218), __size_t_2037 ____buflen_2221);// L422:L424 -extern char * ((__strerror_l_2227) (int ____errnum_2225, ____locale_t_2143 ____l_2226));// L440 -extern void (____bzero_2232) (void * (____s_2228), __size_t_1 ____n_2229);// L446 -extern void (____bzero_2233) (void * (____s_2228), __size_t_1093 ____n_2230);// L446 -extern void (____bzero_2234) (void * (____s_2228), __size_t_2037 ____n_2231);// L446 -extern void (____bzero_2235) (void * (____s_2228), __size_t_1 ____n_2229);// L446 -extern void (____bzero_2236) (void * (____s_2228), __size_t_1093 ____n_2230);// L446 -extern void (____bzero_2237) (void * (____s_2228), __size_t_2037 ____n_2231);// L446 -extern void (__bcopy_2243) (const void * (____src_2238), void * (____dest_2239), __size_t_1 ____n_2240);// L450:L451 -extern void (__bcopy_2244) (const void * (____src_2238), void * (____dest_2239), __size_t_1093 ____n_2241);// L450:L451 -extern void (__bcopy_2245) (const void * (____src_2238), void * (____dest_2239), __size_t_2037 ____n_2242);// L450:L451 -extern void (__bzero_2250) (void * (____s_2246), __size_t_1 ____n_2247);// L454 -extern void (__bzero_2251) (void * (____s_2246), __size_t_1093 ____n_2248);// L454 -extern void (__bzero_2252) (void * (____s_2246), __size_t_2037 ____n_2249);// L454 -extern int (__bcmp_2258) (const void * (____s1_2253), const void * (____s2_2254), __size_t_1 ____n_2255);// L457:L458 -extern int (__bcmp_2259) (const void * (____s1_2253), const void * (____s2_2254), __size_t_1093 ____n_2256);// L457:L458 -extern int (__bcmp_2260) (const void * (____s1_2253), const void * (____s2_2254), __size_t_2037 ____n_2257);// L457:L458 -extern char * ((__index_2263) (const char * (____s_2261), int ____c_2262));// L484:L485 -extern char * ((__rindex_2266) (const char * (____s_2264), int ____c_2265));// L512:L513 -extern int (__ffs_2268) (int ____i_2267);// L518 -extern int (__strcasecmp_2271) (const char * (____s1_2269), const char * (____s2_2270));// L529:L530 -extern int (__strncasecmp_2277) (const char * (____s1_2272), const char * (____s2_2273), __size_t_1 ____n_2274);// L533:L534 -extern int (__strncasecmp_2278) (const char * (____s1_2272), const char * (____s2_2273), __size_t_1093 ____n_2275);// L533:L534 -extern int (__strncasecmp_2279) (const char * (____s1_2272), const char * (____s2_2273), __size_t_2037 ____n_2276);// L533:L534 -extern char * ((__strsep_2282) (char * (* __restrict ____stringp_2280), const char * __restrict ____delim_2281));// L552:L554 -extern char * ((__strsignal_2284) (int ____sig_2283));// L559 -extern char * ((____stpcpy_2287) (char * __restrict ____dest_2285, const char * __restrict ____src_2286));// L562:L563 -extern char * ((__stpcpy_2290) (char * __restrict ____dest_2288, const char * __restrict ____src_2289));// L564:L565 -extern char * ((____stpncpy_2296) (char * __restrict ____dest_2291, const char * __restrict ____src_2292, __size_t_1 ____n_2293));// L569:L571 -extern char * ((____stpncpy_2297) (char * __restrict ____dest_2291, const char * __restrict ____src_2292, __size_t_1093 ____n_2294));// L569:L571 -extern char * ((____stpncpy_2298) (char * __restrict ____dest_2291, const char * __restrict ____src_2292, __size_t_2037 ____n_2295));// L569:L571 -extern char * ((__stpncpy_2304) (char * __restrict ____dest_2299, const char * __restrict ____src_2300, __size_t_1 ____n_2301));// L572:L574 -extern char * ((__stpncpy_2305) (char * __restrict ____dest_2299, const char * __restrict ____src_2300, __size_t_1093 ____n_2302));// L572:L574 -extern char * ((__stpncpy_2306) (char * __restrict ____dest_2299, const char * __restrict ____src_2300, __size_t_2037 ____n_2303));// L572:L574 -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -extern char * ((____stpncpy_chk_2360) (char * (____dest_2352), const char * (____src_2353), __size_t_1 ____n_2354, __size_t_1 ____destlen_2357));// L130:L131 -extern char * ((____stpncpy_chk_2361) (char * (____dest_2352), const char * (____src_2353), __size_t_1093 ____n_2355, __size_t_1093 ____destlen_2358));// L130:L131 -extern char * ((____stpncpy_chk_2362) (char * (____dest_2352), const char * (____src_2353), __size_t_2037 ____n_2356, __size_t_2037 ____destlen_2359));// L130:L131 -extern char * ((____stpncpy_alias_2368) (char * (____dest_2363), const char * (____src_2364), __size_t_1 ____n_2365));// L132:L133 -extern char * ((____stpncpy_alias_2369) (char * (____dest_2363), const char * (____src_2364), __size_t_1093 ____n_2366));// L132:L133 -extern char * ((____stpncpy_alias_2370) (char * (____dest_2363), const char * (____src_2364), __size_t_2037 ____n_2367));// L132:L133 -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -void (__build_dep_2392) (void ) { - +if (__static_condition_default_1267) { +if ( rand( ) % 2 )// L9 { -if (__static_condition_default_2394) { { { -char * (__dt_2390)= ( ( void * ) 0 );// L7 - -if (__static_condition_default_2395) { -if ( rand( ) % 2 )// L9 + __dt_1258 = "-i" ; // L10 +} +} +} +} +if ( __dt_1258 )// L14 { { @@ -3197,34 +1509,29 @@ if ( rand( ) % 2 )// L9 - __dt_2390 = "-i" ; // L10 -} } } } -if (__static_condition_default_2396) { -__static_type_error("invalid type found in if statement"); -} -char __buf_2391[50];// L18 - - __strcpy_2094 ( __buf_2391 ,"module option(s): ") ; // L19 - __strcat_2105 ( __buf_2391 , __dt_2390 ) ; // L21 } } } -if (__static_condition_default_2397) { +}} +void (__build_dep_1261) (void ) { + +{ +if (__static_condition_default_1268) { { { -char * (__dt_2390)= ( ( void * ) 0 );// L7 +char * (__dt_1258)= ( ( void * ) 0 );// L7 -if (__static_condition_default_2398) { +if (__static_condition_default_1269) { if ( rand( ) % 2 )// L9 { @@ -3233,15 +1540,13 @@ if ( rand( ) % 2 )// L9 - __dt_2390 = "-i" ; // L10 -} + __dt_1258 = "-i" ; // L10 } } } -if (__static_condition_default_2399) { -__static_type_error("invalid type found in if statement"); } -if ( __dt_2390 )// L14 +if (__static_condition_default_1270) { +if ( rand( ) % 2 )// L9 { { @@ -3249,29 +1554,31 @@ if ( __dt_2390 )// L14 + __dt_1258 = "-i" ; // L10 +} } } } +char __buf_1259[50];// L18 + +__static_type_error("type error") ; // L19 +__static_type_error("type error") ; // L21 } } } -}} -void (__build_dep_2393) (void ) { - -{ -if (__static_condition_default_2400) { +if (__static_condition_default_1271) { { { -char * (__dt_2390)= ( ( void * ) 0 );// L7 +char * (__dt_1258)= ( ( void * ) 0 );// L7 -if (__static_condition_default_2401) { +if (__static_condition_default_1272) { if ( rand( ) % 2 )// L9 { @@ -3280,34 +1587,12 @@ if ( rand( ) % 2 )// L9 - __dt_2390 = "-i" ; // L10 -} -} + __dt_1258 = "-i" ; // L10 } } -if (__static_condition_default_2402) { -__static_type_error("invalid type found in if statement"); -} -char __buf_2391[50];// L18 - -__static_type_error("type error") ; // L19 -__static_type_error("type error") ; // L21 } } - - -} - -if (__static_condition_default_2403) { - -{ -{ - - - -char * (__dt_2390)= ( ( void * ) 0 );// L7 - -if (__static_condition_default_2404) { +if (__static_condition_default_1273) { if ( rand( ) % 2 )// L9 { @@ -3316,15 +1601,12 @@ if ( rand( ) % 2 )// L9 - __dt_2390 = "-i" ; // L10 -} + __dt_1258 = "-i" ; // L10 } } } -if (__static_condition_default_2405) { -__static_type_error("invalid type found in if statement"); } -if ( __dt_2390 )// L14 +if ( __dt_1258 )// L14 { { @@ -3342,18 +1624,18 @@ if ( __dt_2390 )// L14 } }} -int (__main_2408) (int __argc_2406, char * (* (__argv_2407))) { +int (__main_1276) (int __argc_1274, char * (* (__argv_1275))) { { { -if (__static_condition_default_2409) { - __build_dep_2392 ( ) ; // L27 +if (__static_condition_default_1277) { + __build_dep_1260 ( ) ; // L27 } -if (__static_condition_default_2410) { - __build_dep_2393 ( ) ; // L27 +if (__static_condition_default_1278) { + __build_dep_1261 ( ) ; // L27 } return 0 ;// L28 } diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.clangres index d40e425d..e40d1223 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.clangres @@ -1,4 +1,7 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.c:3283:2: warning: Value stored to '__dt_2390' is never read [deadcode.DeadStores] - __dt_2390 = "-i" ; // L10 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.c:1543:2: warning: Value stored to '__dt_1258' is never read [deadcode.DeadStores] + __dt_1258 = "-i" ; // L10 ^ ~~~~ -1 warning generated. +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.c:1557:2: warning: Value stored to '__dt_1258' is never read [deadcode.DeadStores] + __dt_1258 = "-i" ; // L10 + ^ ~~~~ +2 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.inferres index 28fbf99c..a2ac9ac8 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.inferres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.inferres @@ -1,14 +1,23 @@ -BUSYBOX/199501f2a00.desugared.c:3283: error: Dead Store - The value written to &__dt_2390 (type char*) is never used. - 3281. - 3282. - 3283. __dt_2390 = "-i" ; // L10 +BUSYBOX/199501f2a00.desugared.c:1543: error: Dead Store + The value written to &__dt_1258 (type char*) is never used. + 1541. + 1542. + 1543. __dt_1258 = "-i" ; // L10 ^ - 3284. } - 3285. } + 1544. } + 1545. } + +BUSYBOX/199501f2a00.desugared.c:1557: error: Dead Store + The value written to &__dt_1258 (type char*) is never used. + 1555. + 1556. + 1557. __dt_1258 = "-i" ; // L10 + ^ + 1558. } + 1559. } -Found 1 issue +Found 2 issues Issue Type(ISSUED_TYPE_ID): # - Dead Store(DEAD_STORE): 1 + Dead Store(DEAD_STORE): 2 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.clangres index 9f489997..e69de29b 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.clangres @@ -1,4 +0,0 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.c:14:22: warning: Dereference of null pointer (loaded from variable 'scontext') [core.NullDereference] - printf(" %lc\n", *scontext); // ERROR - ^~~~~~~~~ -1 warning generated. diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.c index bcafe467..efea7997 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.c @@ -7,368 +7,368 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_402; -extern const bool __static_condition_default_1754; -extern const bool __static_condition_default_1164; -extern const bool __static_condition_default_2071; -extern const bool __static_condition_default_1152; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_2066; -extern const bool __static_condition_default_1402; -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_521; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_1409; +extern const bool __static_condition_default_1810; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_1775; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_419; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_1385; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_1516; +extern const bool __static_condition_default_1315; +extern const bool __static_condition_default_433; extern const bool __static_condition_default_1475; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_549; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_1420; +extern const bool __static_condition_default_1814; +extern const bool __static_condition_default_1373; extern const bool __static_condition_default_751; -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_1568; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_1357; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_746; extern const bool __static_condition_default_2049; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_1388; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_825; extern const bool __static_condition_default_1428; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_1814; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_578; +extern const bool __static_condition_default_388; +extern const bool __static_condition_default_1459; extern const bool __static_condition_default_780; -extern const bool __static_condition_default_787; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_1341; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_412; -extern const bool __static_condition_default_789; -extern const bool __static_condition_default_1773; -extern const bool __static_condition_default_2045; -extern const bool __static_condition_default_755; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_317; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_357; -extern const bool __static_condition_default_955; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_701; -extern const bool __static_condition_default_646; -extern const bool __static_condition_default_2051; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_1165; -extern const bool __static_condition_default_419; -extern const bool __static_condition_default_685; -extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_891; -extern const bool __static_condition_default_914; -extern const bool __static_condition_default_315; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_1395; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_583; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_2043; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_1152; +extern const bool __static_condition_default_1498; +extern const bool __static_condition_default_337; extern const bool __static_condition_default_637; -extern const bool __static_condition_default_1564; -extern const bool __static_condition_default_1785; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_1458; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_2042; -extern const bool __static_condition_default_521; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_1365; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_1556; -extern const bool __static_condition_default_1436; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_53; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_1353; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_182; extern const bool __static_condition_default_408; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_1576; -extern const bool __static_condition_default_1787; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_761; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_1810; -extern const bool __static_condition_default_1944; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_1416; -extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_583; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_187; +extern const bool __static_condition_default_542; extern const bool __static_condition_default_803; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_645; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_1531; -extern const bool __static_condition_default_388; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_2061; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_559; -extern const bool __static_condition_default_1568; -extern const bool __static_condition_default_1753; -extern const bool __static_condition_default_1345; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_386; -extern const bool __static_condition_default_625; +extern const bool __static_condition_default_1572; +extern const bool __static_condition_default_929; extern const bool __static_condition_default_823; -extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_2047; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_2062; -extern const bool __static_condition_default_1349; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_1453; -extern const bool __static_condition_default_2057; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_1816; -extern const bool __static_condition_default_1385; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_1381; -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_613; -extern const bool __static_condition_default_1377; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_461; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_1532; -extern const bool __static_condition_default_2044; -extern const bool __static_condition_default_747; +extern const bool __static_condition_default_1432; extern const bool __static_condition_default_282; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_365; +extern const bool __static_condition_default_761; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_2042; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_347; +extern const bool __static_condition_default_549; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_757; extern const bool __static_condition_default_769; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_1750; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_1485; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_957; -extern const bool __static_condition_default_544; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_791; extern const bool __static_condition_default_1515; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_1789; -extern const bool __static_condition_default_702; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_1791; -extern const bool __static_condition_default_872; -extern const bool __static_condition_default_1489; -extern const bool __static_condition_default_1373; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_380; +extern const bool __static_condition_default_1773; +extern const bool __static_condition_default_1754; +extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_1750; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_2061; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_613; +extern const bool __static_condition_default_894; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_1532; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_834; +extern const bool __static_condition_default_536; extern const bool __static_condition_default_564; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_1405; -extern const bool __static_condition_default_488; -extern const bool __static_condition_default_1432; -extern const bool __static_condition_default_1808; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_788; extern const bool __static_condition_default_1560; -extern const bool __static_condition_default_1409; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_367; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_907; -extern const bool __static_condition_default_2060; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_2052; -extern const bool __static_condition_default_929; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_638; -extern const bool __static_condition_default_2072; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_2037; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_293; extern const bool __static_condition_default_842; -extern const bool __static_condition_default_2064; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_891; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_382; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_2060; +extern const bool __static_condition_default_907; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_1416; +extern const bool __static_condition_default_1774; +extern const bool __static_condition_default_2065; +extern const bool __static_condition_default_469; extern const bool __static_condition_default_978; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_887; -extern const bool __static_condition_default_2059; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_173; +extern const bool __static_condition_default_1753; +extern const bool __static_condition_default_2073; +extern const bool __static_condition_default_1944; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_619; +extern const bool __static_condition_default_550; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_2037; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_296; extern const bool __static_condition_default_663; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_2055; +extern const bool __static_condition_default_311; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_1377; +extern const bool __static_condition_default_367; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_84; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_559; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_872; extern const bool __static_condition_default_223; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_1516; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_347; -extern const bool __static_condition_default_313; -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_1775; -extern const bool __static_condition_default_198; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_76; -extern const bool __static_condition_default_217; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_2046; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_2050; -extern const bool __static_condition_default_248; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_380; -extern const bool __static_condition_default_2043; -extern const bool __static_condition_default_848; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_858; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_585; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_275; extern const bool __static_condition_default_753; +extern const bool __static_condition_default_386; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_963; +extern const bool __static_condition_default_1345; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_779; extern const bool __static_condition_default_846; +extern const bool __static_condition_default_955; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_1028; extern const bool __static_condition_default_2058; -extern const bool __static_condition_default_438; -extern const bool __static_condition_default_1353; -extern const bool __static_condition_default_1357; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_417; +extern const bool __static_condition_default_1402; extern const bool __static_condition_default_1369; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_894; -extern const bool __static_condition_default_590; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_382; -extern const bool __static_condition_default_365; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_1349; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_1556; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_2046; +extern const bool __static_condition_default_489; +extern const bool __static_condition_default_568; +extern const bool __static_condition_default_2057; +extern const bool __static_condition_default_333; +extern const bool __static_condition_default_1453; +extern const bool __static_condition_default_2066; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_2050; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_1164; extern const bool __static_condition_default_2063; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_693; -extern const bool __static_condition_default_956; -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_677; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_1315; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_494; +extern const bool __static_condition_default_1398; +extern const bool __static_condition_default_1816; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_636; +extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_1489; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_1531; +extern const bool __static_condition_default_1789; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_2051; +extern const bool __static_condition_default_1424; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_2062; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_2059; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_621; extern const bool __static_condition_default_529; -extern const bool __static_condition_default_2056; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_875; -extern const bool __static_condition_default_1459; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_727; extern const bool __static_condition_default_670; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_311; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_1552; extern const bool __static_condition_default_944; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_2065; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_2073; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_1572; -extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_1405; +extern const bool __static_condition_default_255; extern const bool __static_condition_default_475; -extern const bool __static_condition_default_568; -extern const bool __static_condition_default_2070; -extern const bool __static_condition_default_1361; -extern const bool __static_condition_default_393; -extern const bool __static_condition_default_793; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_1498; -extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_1808; +extern const bool __static_condition_default_875; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_1027; extern const bool __static_condition_default_2054; -extern const bool __static_condition_default_1774; -extern const bool __static_condition_default_2055; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_512; -extern const bool __static_condition_default_661; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_488; +extern const bool __static_condition_default_1564; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_1388; +extern const bool __static_condition_default_1165; +extern const bool __static_condition_default_1361; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_759; extern const bool __static_condition_default_1776; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_431; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_1552; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_747; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_2064; +extern const bool __static_condition_default_204; extern const bool __static_condition_default_2053; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_963; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_544; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_1785; +extern const bool __static_condition_default_1159; +extern const bool __static_condition_default_2071; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_1436; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_238; extern const bool __static_condition_default_709; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_333; +extern const bool __static_condition_default_1576; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_2044; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_2072; +extern const bool __static_condition_default_677; extern const bool __static_condition_default_608; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_1159; -extern const bool __static_condition_default_1395; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_543; +extern const bool __static_condition_default_1458; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_721; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_512; +extern const bool __static_condition_default_76; +extern const bool __static_condition_default_2056; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_1791; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_1485; +extern const bool __static_condition_default_2052; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_1341; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_1365; +extern const bool __static_condition_default_2048; +extern const bool __static_condition_default_2045; +extern const bool __static_condition_default_2047; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_187; +extern const bool __static_condition_default_789; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_702; +extern const bool __static_condition_default_280; extern const bool __static_condition_default_1391; -extern const bool __static_condition_default_779; -extern const bool __static_condition_default_1398; -extern const bool __static_condition_default_1420; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_2070; +extern const bool __static_condition_default_1787; +extern const bool __static_condition_default_455; extern const bool __static_condition_default_290; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_2048; -extern const bool __static_condition_default_536; -extern const bool __static_condition_default_632; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_1424; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_1381; extern const bool __static_condition_default_1749; -extern const bool __static_condition_default_204; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_432; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -1471,8 +1471,7 @@ __static_condition_renaming("__static_condition_default_2071", "(defined _FORTIF __static_condition_renaming("__static_condition_default_2072", "!(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined _STDLIB_H)"); __static_condition_renaming("__static_condition_default_2073", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -if (__static_condition_default_2073) -{ +if (__static_condition_default_2073) { __static_parse_error("Unable to parse"); } }; diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.clangres index 7995bfda..618049f6 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.clangres @@ -1,7 +1,7 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.c:2938:26: warning: Dereference of null pointer (loaded from variable '__scontext_2038') [core.NullDereference] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.c:2937:26: warning: Dereference of null pointer (loaded from variable '__scontext_2038') [core.NullDereference] __printf_421 (" %lc\n",* __scontext_2038 ) ; // L14 ^~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.c:2995:26: warning: Dereference of null pointer (loaded from variable '__scontext_2038') [core.NullDereference] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.c:2994:26: warning: Dereference of null pointer (loaded from variable '__scontext_2038') [core.NullDereference] __printf_421 (" %lc\n",* __scontext_2038 ) ; // L14 ^~~~~~~~~~~~~~~~~~ 2 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.inferres index 65149181..f2235f69 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.inferres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.inferres @@ -1,21 +1,21 @@ -BUSYBOX/1b487ea8a69.desugared.c:2938: error: Null Dereference - pointer `__scontext_2038` last assigned on line 2932 could be null and is dereferenced at line 2938, column 26. - 2936. { - 2937. if (__static_condition_default_2045) { - 2938. __printf_421 (" %lc\n",* __scontext_2038 ) ; // L14 +BUSYBOX/1b487ea8a69.desugared.c:2937: error: Null Dereference + pointer `__scontext_2038` last assigned on line 2931 could be null and is dereferenced at line 2937, column 26. + 2935. { + 2936. if (__static_condition_default_2045) { + 2937. __printf_421 (" %lc\n",* __scontext_2038 ) ; // L14 ^ - 2939. } - 2940. if (__static_condition_default_2046) { + 2938. } + 2939. if (__static_condition_default_2046) { -BUSYBOX/1b487ea8a69.desugared.c:2995: error: Null Dereference - pointer `__scontext_2038` last assigned on line 2989 could be null and is dereferenced at line 2995, column 26. - 2993. { - 2994. if (__static_condition_default_2054) { - 2995. __printf_421 (" %lc\n",* __scontext_2038 ) ; // L14 +BUSYBOX/1b487ea8a69.desugared.c:2994: error: Null Dereference + pointer `__scontext_2038` last assigned on line 2988 could be null and is dereferenced at line 2994, column 26. + 2992. { + 2993. if (__static_condition_default_2054) { + 2994. __printf_421 (" %lc\n",* __scontext_2038 ) ; // L14 ^ - 2996. } - 2997. if (__static_condition_default_2055) { + 2995. } + 2996. if (__static_condition_default_2055) { Found 2 issues diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c index 9bbb3e7f..3f9d3063 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c @@ -7,379 +7,144 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_402; -extern const bool __static_condition_default_1754; -extern const bool __static_condition_default_1164; -extern const bool __static_condition_default_1152; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_1402; -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_2047; -extern const bool __static_condition_default_1475; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_549; -extern const bool __static_condition_default_2092; -extern const bool __static_condition_default_2068; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_1388; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_2082; +extern const bool __static_condition_default_643; +extern const bool __static_condition_default_824; +extern const bool __static_condition_default_512; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_483; +extern const bool __static_condition_default_680; +extern const bool __static_condition_default_335; +extern const bool __static_condition_default_423; +extern const bool __static_condition_default_525; +extern const bool __static_condition_default_374; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_622; +extern const bool __static_condition_default_859; +extern const bool __static_condition_default_550; +extern const bool __static_condition_default_687; +extern const bool __static_condition_default_484; +extern const bool __static_condition_default_667; +extern const bool __static_condition_default_251; +extern const bool __static_condition_default_383; +extern const bool __static_condition_default_419; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_809; extern const bool __static_condition_default_825; -extern const bool __static_condition_default_1428; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_1814; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_2089; -extern const bool __static_condition_default_780; -extern const bool __static_condition_default_787; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_1341; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_294; +extern const bool __static_condition_default_579; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_398; +extern const bool __static_condition_default_466; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_234; +extern const bool __static_condition_default_535; +extern const bool __static_condition_default_513; +extern const bool __static_condition_default_703; +extern const bool __static_condition_default_853; +extern const bool __static_condition_default_832; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_688; +extern const bool __static_condition_default_546; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_628; +extern const bool __static_condition_default_227; +extern const bool __static_condition_default_441; extern const bool __static_condition_default_432; -extern const bool __static_condition_default_412; -extern const bool __static_condition_default_789; -extern const bool __static_condition_default_1773; -extern const bool __static_condition_default_755; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_317; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_516; +extern const bool __static_condition_default_702; +extern const bool __static_condition_default_162; +extern const bool __static_condition_default_336; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_857; +extern const bool __static_condition_default_558; +extern const bool __static_condition_default_74; +extern const bool __static_condition_default_696; +extern const bool __static_condition_default_306; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_500; +extern const bool __static_condition_default_404; +extern const bool __static_condition_default_406; extern const bool __static_condition_default_296; -extern const bool __static_condition_default_357; -extern const bool __static_condition_default_955; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_701; -extern const bool __static_condition_default_646; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_2087; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_1165; -extern const bool __static_condition_default_419; -extern const bool __static_condition_default_685; -extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_2104; -extern const bool __static_condition_default_891; -extern const bool __static_condition_default_914; -extern const bool __static_condition_default_315; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_1564; -extern const bool __static_condition_default_1785; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_1458; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_521; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_1365; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_1556; -extern const bool __static_condition_default_1436; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_53; -extern const bool __static_condition_default_408; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_1576; -extern const bool __static_condition_default_2086; -extern const bool __static_condition_default_1787; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_761; -extern const bool __static_condition_default_2055; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_1810; -extern const bool __static_condition_default_1944; -extern const bool __static_condition_default_2100; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_752; +extern const bool __static_condition_default_976; +extern const bool __static_condition_default_654; extern const bool __static_condition_default_991; -extern const bool __static_condition_default_1416; -extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_583; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_2060; -extern const bool __static_condition_default_2094; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_187; -extern const bool __static_condition_default_803; -extern const bool __static_condition_default_2088; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_645; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_1531; -extern const bool __static_condition_default_388; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_559; -extern const bool __static_condition_default_1568; -extern const bool __static_condition_default_1753; -extern const bool __static_condition_default_1345; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_386; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_2058; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_2049; -extern const bool __static_condition_default_2101; -extern const bool __static_condition_default_1349; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_1453; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_1816; -extern const bool __static_condition_default_2105; -extern const bool __static_condition_default_1385; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_2057; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_1381; -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_613; -extern const bool __static_condition_default_1377; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_461; -extern const bool __static_condition_default_2056; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_1532; -extern const bool __static_condition_default_747; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_769; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_1750; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_1485; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_957; +extern const bool __static_condition_default_652; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_236; +extern const bool __static_condition_default_434; +extern const bool __static_condition_default_165; +extern const bool __static_condition_default_377; +extern const bool __static_condition_default_990; +extern const bool __static_condition_default_994; extern const bool __static_condition_default_544; -extern const bool __static_condition_default_1515; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_1789; -extern const bool __static_condition_default_702; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_1791; -extern const bool __static_condition_default_872; -extern const bool __static_condition_default_1489; -extern const bool __static_condition_default_1373; -extern const bool __static_condition_default_564; -extern const bool __static_condition_default_2045; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_1405; -extern const bool __static_condition_default_488; -extern const bool __static_condition_default_2096; -extern const bool __static_condition_default_1432; -extern const bool __static_condition_default_1808; -extern const bool __static_condition_default_1560; -extern const bool __static_condition_default_2069; -extern const bool __static_condition_default_1409; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_367; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_2102; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_907; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_929; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_638; -extern const bool __static_condition_default_2095; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_842; -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_887; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_663; +extern const bool __static_condition_default_464; +extern const bool __static_condition_default_594; extern const bool __static_condition_default_223; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_2085; -extern const bool __static_condition_default_2097; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_2098; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_1516; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_347; -extern const bool __static_condition_default_313; -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_1775; -extern const bool __static_condition_default_2046; -extern const bool __static_condition_default_198; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_76; -extern const bool __static_condition_default_2106; -extern const bool __static_condition_default_217; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_248; -extern const bool __static_condition_default_2048; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_380; -extern const bool __static_condition_default_848; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_858; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_753; -extern const bool __static_condition_default_846; -extern const bool __static_condition_default_438; -extern const bool __static_condition_default_1353; -extern const bool __static_condition_default_2103; -extern const bool __static_condition_default_1357; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_1369; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_894; -extern const bool __static_condition_default_590; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_382; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_2099; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_693; -extern const bool __static_condition_default_956; -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_677; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_1315; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_875; -extern const bool __static_condition_default_1459; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_2067; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_670; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_311; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_1572; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_568; -extern const bool __static_condition_default_1361; -extern const bool __static_condition_default_393; -extern const bool __static_condition_default_793; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_1498; -extern const bool __static_condition_default_2084; -extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_1774; -extern const bool __static_condition_default_2083; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_512; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_1776; -extern const bool __static_condition_default_573; extern const bool __static_condition_default_431; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_1552; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_963; -extern const bool __static_condition_default_2093; -extern const bool __static_condition_default_709; -extern const bool __static_condition_default_2059; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_333; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_1159; -extern const bool __static_condition_default_1395; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_543; -extern const bool __static_condition_default_1391; -extern const bool __static_condition_default_2091; -extern const bool __static_condition_default_779; -extern const bool __static_condition_default_1398; -extern const bool __static_condition_default_1420; -extern const bool __static_condition_default_290; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_2044; -extern const bool __static_condition_default_536; +extern const bool __static_condition_default_609; +extern const bool __static_condition_default_308; +extern const bool __static_condition_default_118; +extern const bool __static_condition_default_361; +extern const bool __static_condition_default_230; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_532; +extern const bool __static_condition_default_161; extern const bool __static_condition_default_632; -extern const bool __static_condition_default_2050; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_1424; -extern const bool __static_condition_default_1749; -extern const bool __static_condition_default_2090; -extern const bool __static_condition_default_204; +extern const bool __static_condition_default_681; +extern const bool __static_condition_default_811; +extern const bool __static_condition_default_695; +extern const bool __static_condition_default_397; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_900; +extern const bool __static_condition_default_834; +extern const bool __static_condition_default_378; +extern const bool __static_condition_default_232; +extern const bool __static_condition_default_644; +extern const bool __static_condition_default_226; +extern const bool __static_condition_default_394; +extern const bool __static_condition_default_421; +extern const bool __static_condition_default_533; +extern const bool __static_condition_default_536; +extern const bool __static_condition_default_975; +extern const bool __static_condition_default_435; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_989; +extern const bool __static_condition_default_225; +extern const bool __static_condition_default_268; +extern const bool __static_condition_default_418; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_399; +extern const bool __static_condition_default_524; +extern const bool __static_condition_default_420; +extern const bool __static_condition_default_277; +extern const bool __static_condition_default_304; +extern const bool __static_condition_default_482; +extern const bool __static_condition_default_851; +extern const bool __static_condition_default_424; +extern const bool __static_condition_default_603; +extern const bool __static_condition_default_485; +extern const bool __static_condition_default_531; +extern const bool __static_condition_default_620; +extern const bool __static_condition_default_672; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_993; +extern const bool __static_condition_default_502; +extern const bool __static_condition_default_572; +extern const bool __static_condition_default_660; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_673; +extern const bool __static_condition_default_988; +extern const bool __static_condition_default_426; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_995; +extern const bool __static_condition_default_992; +extern const bool __static_condition_default_302; +extern const bool __static_condition_default_266; +extern const bool __static_condition_default_970; +extern const bool __static_condition_default_381; +extern const bool __static_condition_default_334; +extern const bool __static_condition_default_425; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -431,1082 +196,388 @@ __static_renaming("____ssize_t_49", "__ssize_t"); __static_renaming("____syscall_slong_t_50", "__syscall_slong_t"); __static_renaming("____syscall_ulong_t_51", "__syscall_ulong_t"); __static_renaming("____loff_t_52", "__loff_t"); -__static_renaming("____qaddr_t_54", "__qaddr_t"); -__static_renaming("____caddr_t_55", "__caddr_t"); -__static_renaming("____intptr_t_56", "__intptr_t"); -__static_renaming("____socklen_t_57", "__socklen_t"); -__static_renaming("__FILE_59", "FILE"); -__static_renaming("____FILE_60", "__FILE"); -__static_renaming("____mbstate_t_69", "__mbstate_t"); -__static_renaming("___G_fpos_t_77", "_G_fpos_t"); -__static_renaming("___G_fpos64_t_85", "_G_fpos64_t"); -__static_renaming("____gnuc_va_list_86", "__gnuc_va_list"); -__static_renaming("___IO_lock_t_88", "_IO_lock_t"); -__static_renaming("___IO_FILE_171", "_IO_FILE"); -__static_renaming("___IO_FILE_172", "_IO_FILE"); -__static_renaming("___IO_2_1_stdin__175", "_IO_2_1_stdin_"); -__static_renaming("___IO_2_1_stdout__176", "_IO_2_1_stdout_"); -__static_renaming("___IO_2_1_stderr__177", "_IO_2_1_stderr_"); -__static_renaming("____io_read_fn_181", "__io_read_fn"); -__static_renaming("____io_write_fn_186", "__io_write_fn"); -__static_renaming("____io_seek_fn_192", "__io_seek_fn"); -__static_renaming("____io_close_fn_195", "__io_close_fn"); -__static_renaming("____underflow_196", "__underflow"); -__static_renaming("____underflow_197", "__underflow"); -__static_renaming("____uflow_199", "__uflow"); -__static_renaming("____uflow_200", "__uflow"); -__static_renaming("____overflow_202", "__overflow"); -__static_renaming("____overflow_203", "__overflow"); -__static_renaming("___IO_getc_208", "_IO_getc"); -__static_renaming("___IO_getc_209", "_IO_getc"); -__static_renaming("___IO_putc_215", "_IO_putc"); -__static_renaming("___IO_putc_216", "_IO_putc"); -__static_renaming("___IO_feof_221", "_IO_feof"); -__static_renaming("___IO_feof_222", "_IO_feof"); -__static_renaming("___IO_ferror_227", "_IO_ferror"); -__static_renaming("___IO_ferror_228", "_IO_ferror"); -__static_renaming("___IO_peekc_locked_233", "_IO_peekc_locked"); -__static_renaming("___IO_peekc_locked_234", "_IO_peekc_locked"); -__static_renaming("___IO_flockfile_236", "_IO_flockfile"); -__static_renaming("___IO_flockfile_237", "_IO_flockfile"); -__static_renaming("___IO_funlockfile_239", "_IO_funlockfile"); -__static_renaming("___IO_funlockfile_240", "_IO_funlockfile"); -__static_renaming("___IO_ftrylockfile_242", "_IO_ftrylockfile"); -__static_renaming("___IO_ftrylockfile_243", "_IO_ftrylockfile"); -__static_renaming("___IO_vfscanf_245", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_247", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_251", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_252", "_IO_vfscanf"); -__static_renaming("___IO_vfprintf_254", "_IO_vfprintf"); -__static_renaming("___IO_vfprintf_256", "_IO_vfprintf"); -__static_renaming("___IO_vfprintf_260", "_IO_vfprintf"); -__static_renaming("___IO_padn_261", "_IO_padn"); -__static_renaming("___IO_padn_262", "_IO_padn"); -__static_renaming("___IO_sgetn_265", "_IO_sgetn"); -__static_renaming("___IO_sgetn_266", "_IO_sgetn"); -__static_renaming("___IO_seekoff_268", "_IO_seekoff"); -__static_renaming("___IO_seekoff_269", "_IO_seekoff"); -__static_renaming("___IO_seekpos_272", "_IO_seekpos"); -__static_renaming("___IO_seekpos_273", "_IO_seekpos"); -__static_renaming("___IO_free_backup_area_276", "_IO_free_backup_area"); -__static_renaming("___IO_free_backup_area_277", "_IO_free_backup_area"); -__static_renaming("__va_list_279", "va_list"); -__static_renaming("__off_t_281", "off_t"); -__static_renaming("__off_t_283", "off_t"); -__static_renaming("__ssize_t_285", "ssize_t"); -__static_renaming("__fpos_t_287", "fpos_t"); -__static_renaming("__fpos_t_289", "fpos_t"); -__static_renaming("__stdin_291", "stdin"); -__static_renaming("__stdin_292", "stdin"); -__static_renaming("__stdout_294", "stdout"); -__static_renaming("__stdout_295", "stdout"); -__static_renaming("__stderr_297", "stderr"); -__static_renaming("__stderr_298", "stderr"); -__static_renaming("__remove_301", "remove"); -__static_renaming("__rename_304", "rename"); -__static_renaming("__renameat_309", "renameat"); -__static_renaming("__tmpfile_310", "tmpfile"); -__static_renaming("__tmpfile_312", "tmpfile"); -__static_renaming("__tmpfile_314", "tmpfile"); -__static_renaming("__tmpfile_316", "tmpfile"); -__static_renaming("__tmpnam_319", "tmpnam"); -__static_renaming("__tmpnam_320", "tmpnam"); -__static_renaming("__tmpnam_r_322", "tmpnam_r"); -__static_renaming("__tmpnam_r_323", "tmpnam_r"); -__static_renaming("__tempnam_326", "tempnam"); -__static_renaming("__tempnam_327", "tempnam"); -__static_renaming("__fclose_330", "fclose"); -__static_renaming("__fclose_332", "fclose"); -__static_renaming("__fflush_336", "fflush"); -__static_renaming("__fflush_unlocked_340", "fflush_unlocked"); -__static_renaming("__fopen_344", "fopen"); -__static_renaming("__fopen_346", "fopen"); -__static_renaming("__fopen_354", "fopen"); -__static_renaming("__fopen_356", "fopen"); -__static_renaming("__freopen_362", "freopen"); -__static_renaming("__freopen_364", "freopen"); -__static_renaming("__freopen_366", "freopen"); -__static_renaming("__freopen_368", "freopen"); -__static_renaming("__fdopen_372", "fdopen"); -__static_renaming("__fdopen_374", "fdopen"); -__static_renaming("__fmemopen_379", "fmemopen"); -__static_renaming("__fmemopen_381", "fmemopen"); -__static_renaming("__open_memstream_385", "open_memstream"); -__static_renaming("__open_memstream_387", "open_memstream"); -__static_renaming("__setbuf_392", "setbuf"); -__static_renaming("__setbuf_394", "setbuf"); -__static_renaming("__setvbuf_401", "setvbuf"); -__static_renaming("__setbuffer_407", "setbuffer"); -__static_renaming("__setlinebuf_411", "setlinebuf"); -__static_renaming("__fprintf_416", "fprintf"); -__static_renaming("__fprintf_418", "fprintf"); -__static_renaming("__printf_421", "printf"); -__static_renaming("__sprintf_424", "sprintf"); -__static_renaming("__vfprintf_430", "vfprintf"); -__static_renaming("__vprintf_437", "vprintf"); -__static_renaming("__vsprintf_443", "vsprintf"); -__static_renaming("__snprintf_448", "snprintf"); -__static_renaming("__vsnprintf_454", "vsnprintf"); -__static_renaming("__vdprintf_460", "vdprintf"); -__static_renaming("__dprintf_464", "dprintf"); -__static_renaming("__fscanf_468", "fscanf"); -__static_renaming("__fscanf_470", "fscanf"); -__static_renaming("__fscanf_472", "fscanf"); -__static_renaming("__fscanf_474", "fscanf"); -__static_renaming("__scanf_477", "scanf"); -__static_renaming("__scanf_478", "scanf"); -__static_renaming("__sscanf_481", "sscanf"); -__static_renaming("__vfscanf_509", "vfscanf"); -__static_renaming("__vfscanf_513", "vfscanf"); -__static_renaming("__vscanf_520", "vscanf"); -__static_renaming("__vscanf_522", "vscanf"); -__static_renaming("__vsscanf_528", "vsscanf"); -__static_renaming("__fgetc_563", "fgetc"); -__static_renaming("__getc_567", "getc"); -__static_renaming("__getchar_569", "getchar"); -__static_renaming("__getc_unlocked_572", "getc_unlocked"); -__static_renaming("__getchar_unlocked_574", "getchar_unlocked"); -__static_renaming("__fgetc_unlocked_577", "fgetc_unlocked"); -__static_renaming("__fputc_582", "fputc"); -__static_renaming("__fputc_584", "fputc"); -__static_renaming("__putc_589", "putc"); -__static_renaming("__putchar_592", "putchar"); -__static_renaming("__fputc_unlocked_596", "fputc_unlocked"); -__static_renaming("__putc_unlocked_601", "putc_unlocked"); -__static_renaming("__putchar_unlocked_604", "putchar_unlocked"); -__static_renaming("__getw_607", "getw"); -__static_renaming("__putw_612", "putw"); -__static_renaming("__fgets_618", "fgets"); -__static_renaming("__fgets_620", "fgets"); -__static_renaming("__fgets_622", "fgets"); -__static_renaming("__fgets_624", "fgets"); -__static_renaming("____getdelim_631", "__getdelim"); -__static_renaming("____getdelim_635", "__getdelim"); -__static_renaming("__getdelim_644", "getdelim"); -__static_renaming("__getdelim_648", "getdelim"); -__static_renaming("__getline_656", "getline"); -__static_renaming("__getline_660", "getline"); -__static_renaming("__fputs_667", "fputs"); -__static_renaming("__fputs_669", "fputs"); -__static_renaming("__puts_672", "puts"); -__static_renaming("__ungetc_676", "ungetc"); -__static_renaming("__fseek_714", "fseek"); -__static_renaming("__fseek_716", "fseek"); -__static_renaming("__ftell_720", "ftell"); -__static_renaming("__ftell_722", "ftell"); -__static_renaming("__rewind_726", "rewind"); -__static_renaming("__fseeko_733", "fseeko"); -__static_renaming("__fseeko_744", "fseeko"); -__static_renaming("__ftello_750", "ftello"); -__static_renaming("__ftello_754", "ftello"); -__static_renaming("__ftello_758", "ftello"); -__static_renaming("__fgetpos_766", "fgetpos"); -__static_renaming("__fgetpos_778", "fgetpos"); -__static_renaming("__fsetpos_786", "fsetpos"); -__static_renaming("__fsetpos_790", "fsetpos"); -__static_renaming("__clearerr_796", "clearerr"); -__static_renaming("__feof_800", "feof"); -__static_renaming("__feof_802", "feof"); -__static_renaming("__ferror_806", "ferror"); -__static_renaming("__ferror_808", "ferror"); -__static_renaming("__clearerr_unlocked_812", "clearerr_unlocked"); -__static_renaming("__feof_unlocked_816", "feof_unlocked"); -__static_renaming("__feof_unlocked_818", "feof_unlocked"); -__static_renaming("__ferror_unlocked_822", "ferror_unlocked"); -__static_renaming("__ferror_unlocked_824", "ferror_unlocked"); -__static_renaming("__perror_827", "perror"); -__static_renaming("__perror_828", "perror"); -__static_renaming("__sys_nerr_829", "sys_nerr"); -__static_renaming("__sys_errlist_830", "sys_errlist"); -__static_renaming("__fileno_833", "fileno"); -__static_renaming("__fileno_835", "fileno"); -__static_renaming("__fileno_unlocked_839", "fileno_unlocked"); -__static_renaming("__fileno_unlocked_841", "fileno_unlocked"); -__static_renaming("__popen_845", "popen"); -__static_renaming("__popen_847", "popen"); -__static_renaming("__pclose_851", "pclose"); -__static_renaming("__ctermid_854", "ctermid"); -__static_renaming("__flockfile_857", "flockfile"); -__static_renaming("__ftrylockfile_861", "ftrylockfile"); -__static_renaming("__ftrylockfile_863", "ftrylockfile"); -__static_renaming("__funlockfile_867", "funlockfile"); -__static_renaming("____sprintf_chk_899", "__sprintf_chk"); -__static_renaming("____vsprintf_chk_906", "__vsprintf_chk"); -__static_renaming("____snprintf_chk_920", "__snprintf_chk"); -__static_renaming("____vsnprintf_chk_928", "__vsnprintf_chk"); -__static_renaming("____fprintf_chk_943", "__fprintf_chk"); -__static_renaming("____printf_chk_947", "__printf_chk"); -__static_renaming("____vfprintf_chk_954", "__vfprintf_chk"); -__static_renaming("____vprintf_chk_962", "__vprintf_chk"); -__static_renaming("____dprintf_chk_984", "__dprintf_chk"); -__static_renaming("____vdprintf_chk_990", "__vdprintf_chk"); -__static_renaming("____fgets_chk_1004", "__fgets_chk"); -__static_renaming("____fgets_chk_1006", "__fgets_chk"); -__static_renaming("____fgets_chk_1008", "__fgets_chk"); -__static_renaming("____fgets_alias_1014", "__fgets_alias"); -__static_renaming("____fgets_chk_warn_1021", "__fgets_chk_warn"); -__static_renaming("____cnt_1087", "__cnt"); -__static_renaming("____cptr_1088", "__cptr"); -__static_renaming("__ptrdiff_t_1092", "ptrdiff_t"); -__static_renaming("__size_t_1093", "size_t"); -__static_renaming("__wchar_t_1094", "wchar_t"); -__static_renaming("__idtype_t_1100", "idtype_t"); -__static_renaming("____u_char_1101", "__u_char"); -__static_renaming("____u_short_1102", "__u_short"); -__static_renaming("____u_int_1103", "__u_int"); -__static_renaming("____u_long_1104", "__u_long"); -__static_renaming("____int8_t_1105", "__int8_t"); -__static_renaming("____uint8_t_1106", "__uint8_t"); -__static_renaming("____int16_t_1107", "__int16_t"); -__static_renaming("____uint16_t_1108", "__uint16_t"); -__static_renaming("____int32_t_1109", "__int32_t"); -__static_renaming("____uint32_t_1110", "__uint32_t"); -__static_renaming("____int64_t_1111", "__int64_t"); -__static_renaming("____uint64_t_1112", "__uint64_t"); -__static_renaming("____quad_t_1113", "__quad_t"); -__static_renaming("____u_quad_t_1114", "__u_quad_t"); -__static_renaming("____dev_t_1115", "__dev_t"); -__static_renaming("____uid_t_1116", "__uid_t"); -__static_renaming("____gid_t_1117", "__gid_t"); -__static_renaming("____ino_t_1118", "__ino_t"); -__static_renaming("____ino64_t_1119", "__ino64_t"); -__static_renaming("____mode_t_1120", "__mode_t"); -__static_renaming("____nlink_t_1121", "__nlink_t"); -__static_renaming("____off_t_1122", "__off_t"); -__static_renaming("____off64_t_1123", "__off64_t"); -__static_renaming("____pid_t_1124", "__pid_t"); -__static_renaming("____fsid_t_1128", "__fsid_t"); -__static_renaming("____clock_t_1129", "__clock_t"); -__static_renaming("____rlim_t_1130", "__rlim_t"); -__static_renaming("____rlim64_t_1131", "__rlim64_t"); -__static_renaming("____id_t_1132", "__id_t"); -__static_renaming("____time_t_1133", "__time_t"); -__static_renaming("____useconds_t_1134", "__useconds_t"); -__static_renaming("____suseconds_t_1135", "__suseconds_t"); -__static_renaming("____daddr_t_1136", "__daddr_t"); -__static_renaming("____key_t_1137", "__key_t"); -__static_renaming("____clockid_t_1138", "__clockid_t"); -__static_renaming("____timer_t_1139", "__timer_t"); -__static_renaming("____blksize_t_1140", "__blksize_t"); -__static_renaming("____blkcnt_t_1141", "__blkcnt_t"); -__static_renaming("____blkcnt64_t_1142", "__blkcnt64_t"); -__static_renaming("____fsblkcnt_t_1143", "__fsblkcnt_t"); -__static_renaming("____fsblkcnt64_t_1144", "__fsblkcnt64_t"); -__static_renaming("____fsfilcnt_t_1145", "__fsfilcnt_t"); -__static_renaming("____fsfilcnt64_t_1146", "__fsfilcnt64_t"); -__static_renaming("____fsword_t_1147", "__fsword_t"); -__static_renaming("____ssize_t_1148", "__ssize_t"); -__static_renaming("____syscall_slong_t_1149", "__syscall_slong_t"); -__static_renaming("____syscall_ulong_t_1150", "__syscall_ulong_t"); -__static_renaming("____loff_t_1151", "__loff_t"); -__static_renaming("____qaddr_t_1153", "__qaddr_t"); -__static_renaming("____caddr_t_1154", "__caddr_t"); -__static_renaming("____intptr_t_1155", "__intptr_t"); -__static_renaming("____socklen_t_1156", "__socklen_t"); -__static_renaming("____bswap_32_1158", "__bswap_32"); -__static_renaming("____bswap_64_1162", "__bswap_64"); -__static_renaming("____bswap_64_1163", "__bswap_64"); -__static_renaming("____WAIT_STATUS_1185", "__WAIT_STATUS"); -__static_renaming("__div_t_1190", "div_t"); -__static_renaming("__ldiv_t_1195", "ldiv_t"); -__static_renaming("__lldiv_t_1200", "lldiv_t"); -__static_renaming("____ctype_get_mb_cur_max_1201", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1202", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1203", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1204", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1205", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1206", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1207", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1208", "__ctype_get_mb_cur_max"); -__static_renaming("__atof_1210", "atof"); -__static_renaming("__atof_1211", "atof"); -__static_renaming("__atoi_1213", "atoi"); -__static_renaming("__atoi_1214", "atoi"); -__static_renaming("__atol_1216", "atol"); -__static_renaming("__atol_1217", "atol"); -__static_renaming("__atoll_1219", "atoll"); -__static_renaming("__atoll_1220", "atoll"); -__static_renaming("__strtod_1223", "strtod"); -__static_renaming("__strtof_1226", "strtof"); -__static_renaming("__strtold_1229", "strtold"); -__static_renaming("__strtol_1233", "strtol"); -__static_renaming("__strtoul_1237", "strtoul"); -__static_renaming("__strtoq_1241", "strtoq"); -__static_renaming("__strtouq_1245", "strtouq"); -__static_renaming("__strtoll_1249", "strtoll"); -__static_renaming("__strtoll_1250", "strtoll"); -__static_renaming("__strtoull_1254", "strtoull"); -__static_renaming("__l64a_1259", "l64a"); -__static_renaming("__l64a_1260", "l64a"); -__static_renaming("__a64l_1262", "a64l"); -__static_renaming("__a64l_1263", "a64l"); -__static_renaming("____u_char_1264", "__u_char"); -__static_renaming("____u_short_1265", "__u_short"); -__static_renaming("____u_int_1266", "__u_int"); -__static_renaming("____u_long_1267", "__u_long"); -__static_renaming("____int8_t_1268", "__int8_t"); -__static_renaming("____uint8_t_1269", "__uint8_t"); -__static_renaming("____int16_t_1270", "__int16_t"); -__static_renaming("____uint16_t_1271", "__uint16_t"); -__static_renaming("____int32_t_1272", "__int32_t"); -__static_renaming("____uint32_t_1273", "__uint32_t"); -__static_renaming("____int64_t_1274", "__int64_t"); -__static_renaming("____uint64_t_1275", "__uint64_t"); -__static_renaming("____quad_t_1276", "__quad_t"); -__static_renaming("____u_quad_t_1277", "__u_quad_t"); -__static_renaming("____dev_t_1278", "__dev_t"); -__static_renaming("____uid_t_1279", "__uid_t"); -__static_renaming("____gid_t_1280", "__gid_t"); -__static_renaming("____ino_t_1281", "__ino_t"); -__static_renaming("____ino64_t_1282", "__ino64_t"); -__static_renaming("____mode_t_1283", "__mode_t"); -__static_renaming("____nlink_t_1284", "__nlink_t"); -__static_renaming("____off_t_1285", "__off_t"); -__static_renaming("____off64_t_1286", "__off64_t"); -__static_renaming("____pid_t_1287", "__pid_t"); -__static_renaming("____fsid_t_1291", "__fsid_t"); -__static_renaming("____clock_t_1292", "__clock_t"); -__static_renaming("____rlim_t_1293", "__rlim_t"); -__static_renaming("____rlim64_t_1294", "__rlim64_t"); -__static_renaming("____id_t_1295", "__id_t"); -__static_renaming("____time_t_1296", "__time_t"); -__static_renaming("____useconds_t_1297", "__useconds_t"); -__static_renaming("____suseconds_t_1298", "__suseconds_t"); -__static_renaming("____daddr_t_1299", "__daddr_t"); -__static_renaming("____key_t_1300", "__key_t"); -__static_renaming("____clockid_t_1301", "__clockid_t"); -__static_renaming("____timer_t_1302", "__timer_t"); -__static_renaming("____blksize_t_1303", "__blksize_t"); -__static_renaming("____blkcnt_t_1304", "__blkcnt_t"); -__static_renaming("____blkcnt64_t_1305", "__blkcnt64_t"); -__static_renaming("____fsblkcnt_t_1306", "__fsblkcnt_t"); -__static_renaming("____fsblkcnt64_t_1307", "__fsblkcnt64_t"); -__static_renaming("____fsfilcnt_t_1308", "__fsfilcnt_t"); -__static_renaming("____fsfilcnt64_t_1309", "__fsfilcnt64_t"); -__static_renaming("____fsword_t_1310", "__fsword_t"); -__static_renaming("____ssize_t_1311", "__ssize_t"); -__static_renaming("____syscall_slong_t_1312", "__syscall_slong_t"); -__static_renaming("____syscall_ulong_t_1313", "__syscall_ulong_t"); -__static_renaming("____loff_t_1314", "__loff_t"); -__static_renaming("____qaddr_t_1316", "__qaddr_t"); -__static_renaming("____caddr_t_1317", "__caddr_t"); -__static_renaming("____intptr_t_1318", "__intptr_t"); -__static_renaming("____socklen_t_1319", "__socklen_t"); -__static_renaming("__u_char_1320", "u_char"); -__static_renaming("__u_char_1321", "u_char"); -__static_renaming("__u_char_1322", "u_char"); -__static_renaming("__u_short_1323", "u_short"); -__static_renaming("__u_short_1324", "u_short"); -__static_renaming("__u_short_1325", "u_short"); -__static_renaming("__u_int_1326", "u_int"); -__static_renaming("__u_int_1327", "u_int"); -__static_renaming("__u_int_1328", "u_int"); -__static_renaming("__u_long_1329", "u_long"); -__static_renaming("__u_long_1330", "u_long"); -__static_renaming("__u_long_1331", "u_long"); -__static_renaming("__quad_t_1332", "quad_t"); -__static_renaming("__quad_t_1333", "quad_t"); -__static_renaming("__quad_t_1334", "quad_t"); -__static_renaming("__u_quad_t_1335", "u_quad_t"); -__static_renaming("__u_quad_t_1336", "u_quad_t"); -__static_renaming("__u_quad_t_1337", "u_quad_t"); -__static_renaming("__fsid_t_1338", "fsid_t"); -__static_renaming("__fsid_t_1339", "fsid_t"); -__static_renaming("__fsid_t_1340", "fsid_t"); -__static_renaming("__loff_t_1342", "loff_t"); -__static_renaming("__loff_t_1343", "loff_t"); -__static_renaming("__loff_t_1344", "loff_t"); -__static_renaming("__loff_t_1346", "loff_t"); -__static_renaming("__loff_t_1347", "loff_t"); -__static_renaming("__loff_t_1348", "loff_t"); -__static_renaming("__ino_t_1350", "ino_t"); -__static_renaming("__ino_t_1351", "ino_t"); -__static_renaming("__ino_t_1352", "ino_t"); -__static_renaming("__ino_t_1354", "ino_t"); -__static_renaming("__ino_t_1355", "ino_t"); -__static_renaming("__ino_t_1356", "ino_t"); -__static_renaming("__dev_t_1358", "dev_t"); -__static_renaming("__dev_t_1359", "dev_t"); -__static_renaming("__dev_t_1360", "dev_t"); -__static_renaming("__gid_t_1362", "gid_t"); -__static_renaming("__gid_t_1363", "gid_t"); -__static_renaming("__gid_t_1364", "gid_t"); -__static_renaming("__gid_t_1366", "gid_t"); -__static_renaming("__gid_t_1367", "gid_t"); -__static_renaming("__gid_t_1368", "gid_t"); -__static_renaming("__mode_t_1370", "mode_t"); -__static_renaming("__mode_t_1371", "mode_t"); -__static_renaming("__mode_t_1372", "mode_t"); -__static_renaming("__nlink_t_1374", "nlink_t"); -__static_renaming("__nlink_t_1375", "nlink_t"); -__static_renaming("__nlink_t_1376", "nlink_t"); -__static_renaming("__uid_t_1378", "uid_t"); -__static_renaming("__uid_t_1379", "uid_t"); -__static_renaming("__uid_t_1380", "uid_t"); -__static_renaming("__uid_t_1382", "uid_t"); -__static_renaming("__uid_t_1383", "uid_t"); -__static_renaming("__uid_t_1384", "uid_t"); -__static_renaming("__off_t_1386", "off_t"); -__static_renaming("__off_t_1387", "off_t"); -__static_renaming("__off_t_1389", "off_t"); -__static_renaming("__off_t_1390", "off_t"); -__static_renaming("__pid_t_1392", "pid_t"); -__static_renaming("__pid_t_1393", "pid_t"); -__static_renaming("__pid_t_1394", "pid_t"); -__static_renaming("__pid_t_1396", "pid_t"); -__static_renaming("__pid_t_1397", "pid_t"); -__static_renaming("__id_t_1399", "id_t"); -__static_renaming("__id_t_1400", "id_t"); -__static_renaming("__id_t_1401", "id_t"); -__static_renaming("__ssize_t_1403", "ssize_t"); -__static_renaming("__ssize_t_1404", "ssize_t"); -__static_renaming("__daddr_t_1406", "daddr_t"); -__static_renaming("__daddr_t_1407", "daddr_t"); -__static_renaming("__daddr_t_1408", "daddr_t"); -__static_renaming("__caddr_t_1410", "caddr_t"); -__static_renaming("__caddr_t_1411", "caddr_t"); -__static_renaming("__caddr_t_1412", "caddr_t"); -__static_renaming("__key_t_1413", "key_t"); -__static_renaming("__key_t_1414", "key_t"); -__static_renaming("__key_t_1415", "key_t"); -__static_renaming("__key_t_1417", "key_t"); -__static_renaming("__key_t_1418", "key_t"); -__static_renaming("__key_t_1419", "key_t"); -__static_renaming("__clock_t_1421", "clock_t"); -__static_renaming("__clock_t_1422", "clock_t"); -__static_renaming("__clock_t_1423", "clock_t"); -__static_renaming("__time_t_1425", "time_t"); -__static_renaming("__time_t_1426", "time_t"); -__static_renaming("__time_t_1427", "time_t"); -__static_renaming("__clockid_t_1429", "clockid_t"); -__static_renaming("__clockid_t_1430", "clockid_t"); -__static_renaming("__clockid_t_1431", "clockid_t"); -__static_renaming("__timer_t_1433", "timer_t"); -__static_renaming("__timer_t_1434", "timer_t"); -__static_renaming("__timer_t_1435", "timer_t"); -__static_renaming("__ulong_1437", "ulong"); -__static_renaming("__ulong_1438", "ulong"); -__static_renaming("__ulong_1439", "ulong"); -__static_renaming("__ushort_1440", "ushort"); -__static_renaming("__uint_1441", "uint"); -__static_renaming("__int8_t_1442", "int8_t"); -__static_renaming("__int16_t_1443", "int16_t"); -__static_renaming("__int32_t_1444", "int32_t"); -__static_renaming("__int64_t_1445", "int64_t"); -__static_renaming("__u_int8_t_1446", "u_int8_t"); -__static_renaming("__u_int16_t_1447", "u_int16_t"); -__static_renaming("__u_int32_t_1448", "u_int32_t"); -__static_renaming("__u_int64_t_1449", "u_int64_t"); -__static_renaming("__register_t_1450", "register_t"); -__static_renaming("____bswap_32_1452", "__bswap_32"); -__static_renaming("____bswap_64_1456", "__bswap_64"); -__static_renaming("____bswap_64_1457", "__bswap_64"); -__static_renaming("____sig_atomic_t_1460", "__sig_atomic_t"); -__static_renaming("____sigset_t_1464", "__sigset_t"); -__static_renaming("__sigset_t_1465", "sigset_t"); -__static_renaming("__suseconds_t_1486", "suseconds_t"); -__static_renaming("__suseconds_t_1487", "suseconds_t"); -__static_renaming("__suseconds_t_1488", "suseconds_t"); -__static_renaming("____fd_mask_1490", "__fd_mask"); -__static_renaming("____fd_mask_1491", "__fd_mask"); -__static_renaming("__fd_set_1499", "fd_set"); -__static_renaming("__fd_mask_1500", "fd_mask"); -__static_renaming("__fd_mask_1501", "fd_mask"); -__static_renaming("__select_1513", "select"); -__static_renaming("__select_1514", "select"); -__static_renaming("__pselect_1529", "pselect"); -__static_renaming("__pselect_1530", "pselect"); -__static_renaming("____fdelt_chk_1534", "__fdelt_chk"); -__static_renaming("____fdelt_warn_1536", "__fdelt_warn"); -__static_renaming("__gnu_dev_major_1538", "gnu_dev_major"); -__static_renaming("__gnu_dev_major_1539", "gnu_dev_major"); -__static_renaming("__gnu_dev_minor_1541", "gnu_dev_minor"); -__static_renaming("__gnu_dev_makedev_1544", "gnu_dev_makedev"); -__static_renaming("__blksize_t_1549", "blksize_t"); -__static_renaming("__blksize_t_1550", "blksize_t"); -__static_renaming("__blksize_t_1551", "blksize_t"); -__static_renaming("__blkcnt_t_1553", "blkcnt_t"); -__static_renaming("__blkcnt_t_1554", "blkcnt_t"); -__static_renaming("__blkcnt_t_1555", "blkcnt_t"); -__static_renaming("__fsblkcnt_t_1557", "fsblkcnt_t"); -__static_renaming("__fsblkcnt_t_1558", "fsblkcnt_t"); -__static_renaming("__fsblkcnt_t_1559", "fsblkcnt_t"); -__static_renaming("__blkcnt_t_1561", "blkcnt_t"); -__static_renaming("__blkcnt_t_1562", "blkcnt_t"); -__static_renaming("__blkcnt_t_1563", "blkcnt_t"); -__static_renaming("__fsblkcnt_t_1565", "fsblkcnt_t"); -__static_renaming("__fsblkcnt_t_1566", "fsblkcnt_t"); -__static_renaming("__fsblkcnt_t_1567", "fsblkcnt_t"); -__static_renaming("__fsfilcnt_t_1569", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_1570", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_1571", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_1573", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_1574", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_1575", "fsfilcnt_t"); -__static_renaming("__pthread_t_1577", "pthread_t"); -__static_renaming("__pthread_attr_t_1581", "pthread_attr_t"); -__static_renaming("____pthread_list_t_1586", "__pthread_list_t"); -__static_renaming("____pthread_list_t_1587", "__pthread_list_t"); -__static_renaming("__pthread_mutex_t_1603", "pthread_mutex_t"); -__static_renaming("__pthread_mutexattr_t_1608", "pthread_mutexattr_t"); -__static_renaming("__rand_1609", "rand"); -__static_renaming("__srand_1611", "srand"); -__static_renaming("__rand_r_1613", "rand_r"); -__static_renaming("__drand48_1614", "drand48"); -__static_renaming("__erand48_1616", "erand48"); -__static_renaming("__lrand48_1617", "lrand48"); -__static_renaming("__nrand48_1619", "nrand48"); -__static_renaming("__mrand48_1620", "mrand48"); -__static_renaming("__jrand48_1622", "jrand48"); -__static_renaming("__srand48_1624", "srand48"); -__static_renaming("__seed48_1626", "seed48"); -__static_renaming("__lcong48_1628", "lcong48"); -__static_renaming("__malloc_1631", "malloc"); -__static_renaming("__malloc_1632", "malloc"); -__static_renaming("__malloc_1633", "malloc"); -__static_renaming("__malloc_1634", "malloc"); -__static_renaming("__calloc_1639", "calloc"); -__static_renaming("__calloc_1640", "calloc"); -__static_renaming("__calloc_1641", "calloc"); -__static_renaming("__calloc_1642", "calloc"); -__static_renaming("__realloc_1646", "realloc"); -__static_renaming("__realloc_1647", "realloc"); -__static_renaming("__free_1649", "free"); -__static_renaming("__cfree_1651", "cfree"); -__static_renaming("__alloca_1654", "alloca"); -__static_renaming("__alloca_1655", "alloca"); -__static_renaming("__valloc_1658", "valloc"); -__static_renaming("__valloc_1659", "valloc"); -__static_renaming("__valloc_1660", "valloc"); -__static_renaming("__valloc_1661", "valloc"); -__static_renaming("__posix_memalign_1667", "posix_memalign"); -__static_renaming("__posix_memalign_1668", "posix_memalign"); -__static_renaming("__posix_memalign_1669", "posix_memalign"); -__static_renaming("__posix_memalign_1670", "posix_memalign"); -__static_renaming("__aligned_alloc_1675", "aligned_alloc"); -__static_renaming("__aligned_alloc_1676", "aligned_alloc"); -__static_renaming("__aligned_alloc_1677", "aligned_alloc"); -__static_renaming("__aligned_alloc_1678", "aligned_alloc"); -__static_renaming("__aligned_alloc_1679", "aligned_alloc"); -__static_renaming("__aligned_alloc_1680", "aligned_alloc"); -__static_renaming("__aligned_alloc_1681", "aligned_alloc"); -__static_renaming("__aligned_alloc_1682", "aligned_alloc"); -__static_renaming("__abort_1683", "abort"); -__static_renaming("__atexit_1685", "atexit"); -__static_renaming("__at_quick_exit_1687", "at_quick_exit"); -__static_renaming("__on_exit_1692", "on_exit"); -__static_renaming("__exit_1694", "exit"); -__static_renaming("__exit_1695", "exit"); -__static_renaming("__quick_exit_1697", "quick_exit"); -__static_renaming("___Exit_1699", "_Exit"); -__static_renaming("__getenv_1701", "getenv"); -__static_renaming("__getenv_1702", "getenv"); -__static_renaming("__putenv_1704", "putenv"); -__static_renaming("__setenv_1708", "setenv"); -__static_renaming("__unsetenv_1710", "unsetenv"); -__static_renaming("__clearenv_1711", "clearenv"); -__static_renaming("__mktemp_1713", "mktemp"); -__static_renaming("__mkstemp_1716", "mkstemp"); -__static_renaming("__mkstemp_1717", "mkstemp"); -__static_renaming("__mkstemp_1718", "mkstemp"); -__static_renaming("__mkstemp_1719", "mkstemp"); -__static_renaming("__mkstemps_1724", "mkstemps"); -__static_renaming("__mkstemps_1725", "mkstemps"); -__static_renaming("__mkstemps_1726", "mkstemps"); -__static_renaming("__mkstemps_1727", "mkstemps"); -__static_renaming("__mkdtemp_1729", "mkdtemp"); -__static_renaming("__mkdtemp_1730", "mkdtemp"); -__static_renaming("__system_1732", "system"); -__static_renaming("__system_1733", "system"); -__static_renaming("__system_1734", "system"); -__static_renaming("__system_1735", "system"); -__static_renaming("__realpath_1738", "realpath"); -__static_renaming("__realpath_1739", "realpath"); -__static_renaming("____compar_fn_t_1740", "__compar_fn_t"); -__static_renaming("__bsearch_1751", "bsearch"); -__static_renaming("__bsearch_1752", "bsearch"); -__static_renaming("__bsearch_1755", "bsearch"); -__static_renaming("__bsearch_1756", "bsearch"); -__static_renaming("____l_1765", "__l"); -__static_renaming("____l_1766", "__l"); -__static_renaming("____u_1767", "__u"); -__static_renaming("____u_1768", "__u"); -__static_renaming("____idx_1769", "__idx"); -__static_renaming("____idx_1770", "__idx"); -__static_renaming("____p_1771", "__p"); -__static_renaming("____comparison_1772", "__comparison"); -__static_renaming("__qsort_1784", "qsort"); -__static_renaming("__qsort_1786", "qsort"); -__static_renaming("__qsort_1788", "qsort"); -__static_renaming("__qsort_1790", "qsort"); -__static_renaming("__abs_1793", "abs"); -__static_renaming("__abs_1794", "abs"); -__static_renaming("__labs_1796", "labs"); -__static_renaming("__labs_1797", "labs"); -__static_renaming("__llabs_1799", "llabs"); -__static_renaming("__llabs_1800", "llabs"); -__static_renaming("__div_1803", "div"); -__static_renaming("__div_1804", "div"); -__static_renaming("__ldiv_1807", "ldiv"); -__static_renaming("__ldiv_1809", "ldiv"); -__static_renaming("__lldiv_1813", "lldiv"); -__static_renaming("__lldiv_1815", "lldiv"); -__static_renaming("__ecvt_1821", "ecvt"); -__static_renaming("__ecvt_1822", "ecvt"); -__static_renaming("__fcvt_1827", "fcvt"); -__static_renaming("__fcvt_1828", "fcvt"); -__static_renaming("__gcvt_1832", "gcvt"); -__static_renaming("__gcvt_1833", "gcvt"); -__static_renaming("__qecvt_1838", "qecvt"); -__static_renaming("__qecvt_1839", "qecvt"); -__static_renaming("__qfcvt_1844", "qfcvt"); -__static_renaming("__qfcvt_1845", "qfcvt"); -__static_renaming("__qgcvt_1849", "qgcvt"); -__static_renaming("__qgcvt_1850", "qgcvt"); -__static_renaming("__ecvt_r_1858", "ecvt_r"); -__static_renaming("__ecvt_r_1859", "ecvt_r"); -__static_renaming("__fcvt_r_1867", "fcvt_r"); -__static_renaming("__fcvt_r_1868", "fcvt_r"); -__static_renaming("__qecvt_r_1876", "qecvt_r"); -__static_renaming("__qecvt_r_1877", "qecvt_r"); -__static_renaming("__qfcvt_r_1885", "qfcvt_r"); -__static_renaming("__qfcvt_r_1886", "qfcvt_r"); -__static_renaming("__mblen_1890", "mblen"); -__static_renaming("__mblen_1891", "mblen"); -__static_renaming("__mblen_1892", "mblen"); -__static_renaming("__mblen_1893", "mblen"); -__static_renaming("__mbtowc_1898", "mbtowc"); -__static_renaming("__mbtowc_1899", "mbtowc"); -__static_renaming("__wctomb_1902", "wctomb"); -__static_renaming("__mbstowcs_1907", "mbstowcs"); -__static_renaming("__mbstowcs_1908", "mbstowcs"); -__static_renaming("__wcstombs_1913", "wcstombs"); -__static_renaming("__wcstombs_1914", "wcstombs"); -__static_renaming("__rpmatch_1916", "rpmatch"); -__static_renaming("__rpmatch_1917", "rpmatch"); -__static_renaming("__getsubopt_1921", "getsubopt"); -__static_renaming("__getsubopt_1922", "getsubopt"); -__static_renaming("__getloadavg_1925", "getloadavg"); -__static_renaming("____realpath_chk_1931", "__realpath_chk"); -__static_renaming("____realpath_chk_1932", "__realpath_chk"); -__static_renaming("____realpath_alias_1935", "__realpath_alias"); -__static_renaming("____realpath_chk_warn_1940", "__realpath_chk_warn"); -__static_renaming("____realpath_chk_warn_1941", "__realpath_chk_warn"); -__static_renaming("____ptsname_r_chk_1951", "__ptsname_r_chk"); -__static_renaming("____ptsname_r_chk_1952", "__ptsname_r_chk"); -__static_renaming("____ptsname_r_alias_1957", "__ptsname_r_alias"); -__static_renaming("____ptsname_r_alias_1958", "__ptsname_r_alias"); -__static_renaming("____ptsname_r_chk_warn_1965", "__ptsname_r_chk_warn"); -__static_renaming("____ptsname_r_chk_warn_1966", "__ptsname_r_chk_warn"); -__static_renaming("____wctomb_chk_1977", "__wctomb_chk"); -__static_renaming("____wctomb_chk_1978", "__wctomb_chk"); -__static_renaming("____wctomb_alias_1981", "__wctomb_alias"); -__static_renaming("____mbstowcs_chk_1990", "__mbstowcs_chk"); -__static_renaming("____mbstowcs_chk_1991", "__mbstowcs_chk"); -__static_renaming("____mbstowcs_alias_1996", "__mbstowcs_alias"); -__static_renaming("____mbstowcs_alias_1997", "__mbstowcs_alias"); -__static_renaming("____mbstowcs_chk_warn_2004", "__mbstowcs_chk_warn"); -__static_renaming("____mbstowcs_chk_warn_2005", "__mbstowcs_chk_warn"); -__static_renaming("____wcstombs_chk_2016", "__wcstombs_chk"); -__static_renaming("____wcstombs_chk_2017", "__wcstombs_chk"); -__static_renaming("____wcstombs_alias_2022", "__wcstombs_alias"); -__static_renaming("____wcstombs_alias_2023", "__wcstombs_alias"); -__static_renaming("____wcstombs_chk_warn_2030", "__wcstombs_chk_warn"); -__static_renaming("____wcstombs_chk_warn_2031", "__wcstombs_chk_warn"); -__static_renaming("__cur_2041", "cur"); -__static_renaming("__next_2042", "next"); -__static_renaming("__dfree_2043", "dfree"); -__static_renaming("__i_2052", "i"); -__static_renaming("__showdirs_2053", "showdirs"); -__static_renaming("__showdirs_2054", "showdirs"); -__static_renaming("__temp_2063", "temp"); -__static_renaming("__i_2064", "i"); -__static_renaming("__j_2065", "j"); -__static_renaming("__sort_2066", "sort"); -__static_renaming("__curr_2072", "curr"); -__static_renaming("__head_2073", "head"); -__static_renaming("__size_2074", "size"); -__static_renaming("__arr_2075", "arr"); -__static_renaming("__i_2076", "i"); -__static_renaming("__main_2080", "main"); -__static_renaming("__main_2081", "main"); - -__static_condition_renaming("__static_condition_default_53", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_76", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_84", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_123", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_169", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_170", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_173", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_182", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_187", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_193", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_198", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_201", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_204", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_210", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_217", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_223", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_229", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_235", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_238", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_241", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_244", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_246", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_248", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_249", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_250", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_253", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_255", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_257", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_258", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_259", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_263", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_264", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_267", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_270", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_271", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_274", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_275", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_278", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_280", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); -__static_condition_renaming("__static_condition_default_282", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_284", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_286", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_288", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_290", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_293", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_296", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_299", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_311", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_313", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_315", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_317", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_331", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_333", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_337", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_341", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_345", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_347", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_355", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_357", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_363", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_365", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_367", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_369", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_373", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_375", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_380", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_382", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_386", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_388", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_393", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_395", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_402", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_408", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_412", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_417", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_419", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_431", "!(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_432", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_433", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_438", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_444", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_455", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_461", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_469", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_471", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_473", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_475", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_486", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_488", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_489", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_491", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_493", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_494", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_497", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_499", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_503", "!(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_510", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_511", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_512", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_514", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_515", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_516", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_521", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_523", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_529", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_536", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_537", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_538", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_539", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_541", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_542", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_543", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_544", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_549", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_550", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_552", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_553", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_559", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_560", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_564", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_568", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_573", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_578", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_583", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_585", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_590", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_597", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_602", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_608", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_613", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_619", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_621", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_623", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_625", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_632", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_633", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_634", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_636", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_637", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_638", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_645", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_646", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_647", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_649", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_650", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_651", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_657", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_658", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_659", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_661", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_662", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_663", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_668", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_670", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_677", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_683", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_684", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_685", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_686", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_692", "!(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_693", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_699", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_700", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_701", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_702", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_708", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_709", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_715", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_717", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_721", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_723", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_727", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_734", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_735", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_736", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_745", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_746", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_747", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_751", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_752", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_753", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_755", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_756", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_757", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_759", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_760", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_761", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_767", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_768", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_769", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_779", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_780", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_781", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_787", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_788", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_789", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_791", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_792", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_793", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_797", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_801", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_803", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_807", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_809", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_813", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_817", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_819", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_823", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_825", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_834", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_836", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_840", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_842", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_846", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_848", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_852", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_858", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_862", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_864", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_868", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_872", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_875", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_878", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_883", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_887", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_891", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_894", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_907", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_914", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_929", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_938", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_944", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_955", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_956", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_957", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_963", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_967", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_972", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_978", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_979", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_980", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_991", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_998", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1005", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1007", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1009", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1015", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1022", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1027", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1028", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1035", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1036", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1042", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1043", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1050", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1051", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1057", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1058", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1065", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1066", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1072", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1073", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1080", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1081", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1089", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_1090", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1091", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1152", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1159", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1164", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1165", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1315", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1341", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __u_char_defined)"); -__static_condition_renaming("__static_condition_default_1345", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __u_char_defined)"); -__static_condition_renaming("__static_condition_default_1349", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __u_char_defined)"); -__static_condition_renaming("__static_condition_default_1353", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined)"); -__static_condition_renaming("__static_condition_default_1357", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined)"); -__static_condition_renaming("__static_condition_default_1361", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_1365", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_1369", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_1373", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1377", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __nlink_t_defined)"); -__static_condition_renaming("__static_condition_default_1381", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __nlink_t_defined)"); -__static_condition_renaming("__static_condition_default_1385", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __nlink_t_defined)"); -__static_condition_renaming("__static_condition_default_1388", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1391", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1395", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && (defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1398", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1402", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __id_t_defined)"); -__static_condition_renaming("__static_condition_default_1405", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1409", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_1416", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_1420", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_1424", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __clock_t_defined)"); -__static_condition_renaming("__static_condition_default_1428", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __time_t_defined)"); -__static_condition_renaming("__static_condition_default_1432", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __clockid_t_defined)"); -__static_condition_renaming("__static_condition_default_1436", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timer_t_defined)"); -__static_condition_renaming("__static_condition_default_1453", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1458", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1459", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1475", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_1485", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_1489", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __suseconds_t_defined)"); -__static_condition_renaming("__static_condition_default_1498", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1515", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_1516", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_1531", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_1532", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_1552", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blksize_t_defined)"); -__static_condition_renaming("__static_condition_default_1556", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined)"); -__static_condition_renaming("__static_condition_default_1560", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1564", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined)"); -__static_condition_renaming("__static_condition_default_1568", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1572", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1576", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1749", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1750", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1753", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1754", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1773", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1774", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1775", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1776", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1785", "!(defined __need___FILE) && !(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1787", "(defined __need___FILE) && !(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1789", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1791", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1808", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1810", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1814", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1816", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1944", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_2044", "(defined CONFIG_FEATURE_LS_RECURSIVE)"); -__static_condition_renaming("__static_condition_default_2045", "!(defined __need___FILE) && (defined CONFIG_FEATURE_LS_RECURSIVE) || (defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_RECURSIVE)"); -__static_condition_renaming("__static_condition_default_2046", "(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_RECURSIVE) || (defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_FEATURE_LS_RECURSIVE)"); -__static_condition_renaming("__static_condition_default_2047", "!(defined __need___FILE) && (defined CONFIG_FEATURE_LS_RECURSIVE) || (defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_RECURSIVE)"); -__static_condition_renaming("__static_condition_default_2048", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_RECURSIVE)"); -__static_condition_renaming("__static_condition_default_2049", "!(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_RECURSIVE) || !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_FEATURE_LS_RECURSIVE)"); -__static_condition_renaming("__static_condition_default_2050", "(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_RECURSIVE) || (defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_FEATURE_LS_RECURSIVE)"); -__static_condition_renaming("__static_condition_default_2055", "!(defined CONFIG_FEATURE_LS_RECURSIVE)"); -__static_condition_renaming("__static_condition_default_2056", "!(defined __need___FILE) && !(defined CONFIG_FEATURE_LS_RECURSIVE)"); -__static_condition_renaming("__static_condition_default_2057", "(defined __need___FILE) && !(defined CONFIG_FEATURE_LS_RECURSIVE)"); -__static_condition_renaming("__static_condition_default_2058", "(defined CONFIG_FEATURE_LS_RECURSIVE)"); -__static_condition_renaming("__static_condition_default_2059", "!(defined __need___FILE) && (defined CONFIG_FEATURE_LS_RECURSIVE)"); -__static_condition_renaming("__static_condition_default_2060", "(defined __need___FILE) && (defined CONFIG_FEATURE_LS_RECURSIVE)"); -__static_condition_renaming("__static_condition_default_2067", "(defined CONFIG_FEATURE_LS_SORTFILES)"); -__static_condition_renaming("__static_condition_default_2068", "!(defined __need___FILE) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES)"); -__static_condition_renaming("__static_condition_default_2069", "(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_FEATURE_LS_SORTFILES)"); -__static_condition_renaming("__static_condition_default_2082", "!(defined CONFIG_FEATURE_LS_SORTFILES)"); -__static_condition_renaming("__static_condition_default_2083", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES)"); -__static_condition_renaming("__static_condition_default_2084", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES)"); -__static_condition_renaming("__static_condition_default_2085", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES)"); -__static_condition_renaming("__static_condition_default_2086", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES)"); -__static_condition_renaming("__static_condition_default_2087", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __STRICT_ANSI__) && (defined _STDLIB_H) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __STRICT_ANSI__) && (defined _STDLIB_H) && !(defined CONFIG_FEATURE_LS_SORTFILES)"); -__static_condition_renaming("__static_condition_default_2088", "(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_SORTFILES)"); -__static_condition_renaming("__static_condition_default_2089", "!(defined __STRICT_ANSI__) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __STRICT_ANSI__) && (defined _STDLIB_H) && !(defined CONFIG_FEATURE_LS_SORTFILES)"); -__static_condition_renaming("__static_condition_default_2090", "(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_SORTFILES)"); -__static_condition_renaming("__static_condition_default_2091", "(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_RECURSIVE) && !(defined CONFIG_FEATURE_LS_SORTFILES)"); -__static_condition_renaming("__static_condition_default_2092", "(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_RECURSIVE) && !(defined CONFIG_FEATURE_LS_SORTFILES)"); -__static_condition_renaming("__static_condition_default_2093", "!(defined __STRICT_ANSI__) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __STRICT_ANSI__) && (defined _STDLIB_H) && !(defined CONFIG_FEATURE_LS_SORTFILES)"); -__static_condition_renaming("__static_condition_default_2094", "(defined CONFIG_FEATURE_LS_SORTFILES)"); -__static_condition_renaming("__static_condition_default_2095", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES)"); -__static_condition_renaming("__static_condition_default_2096", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES)"); -__static_condition_renaming("__static_condition_default_2097", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES)"); -__static_condition_renaming("__static_condition_default_2098", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES)"); -__static_condition_renaming("__static_condition_default_2099", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined CONFIG_FEATURE_LS_SORTFILES)"); -__static_condition_renaming("__static_condition_default_2100", "(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES)"); -__static_condition_renaming("__static_condition_default_2101", "!(defined __STRICT_ANSI__) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined CONFIG_FEATURE_LS_SORTFILES)"); -__static_condition_renaming("__static_condition_default_2102", "(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES)"); -__static_condition_renaming("__static_condition_default_2103", "(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_RECURSIVE) && (defined CONFIG_FEATURE_LS_SORTFILES)"); -__static_condition_renaming("__static_condition_default_2104", "(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_RECURSIVE) && (defined CONFIG_FEATURE_LS_SORTFILES)"); -__static_condition_renaming("__static_condition_default_2105", "!(defined __STRICT_ANSI__) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined CONFIG_FEATURE_LS_SORTFILES)"); -__static_condition_renaming("__static_condition_default_2106", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); - -if (__static_condition_default_2106) -{ +__static_renaming("____qaddr_t_53", "__qaddr_t"); +__static_renaming("____caddr_t_54", "__caddr_t"); +__static_renaming("____intptr_t_55", "__intptr_t"); +__static_renaming("____socklen_t_56", "__socklen_t"); +__static_renaming("__FILE_58", "FILE"); +__static_renaming("____FILE_59", "__FILE"); +__static_renaming("____mbstate_t_68", "__mbstate_t"); +__static_renaming("___G_fpos_t_75", "_G_fpos_t"); +__static_renaming("___G_fpos64_t_81", "_G_fpos64_t"); +__static_renaming("____gnuc_va_list_82", "__gnuc_va_list"); +__static_renaming("___IO_lock_t_84", "_IO_lock_t"); +__static_renaming("___IO_FILE_163", "_IO_FILE"); +__static_renaming("___IO_FILE_164", "_IO_FILE"); +__static_renaming("___IO_2_1_stdin__167", "_IO_2_1_stdin_"); +__static_renaming("___IO_2_1_stdout__168", "_IO_2_1_stdout_"); +__static_renaming("___IO_2_1_stderr__169", "_IO_2_1_stderr_"); +__static_renaming("____io_read_fn_173", "__io_read_fn"); +__static_renaming("____io_write_fn_177", "__io_write_fn"); +__static_renaming("____io_seek_fn_181", "__io_seek_fn"); +__static_renaming("____io_close_fn_183", "__io_close_fn"); +__static_renaming("____underflow_184", "__underflow"); +__static_renaming("____underflow_185", "__underflow"); +__static_renaming("____uflow_186", "__uflow"); +__static_renaming("____uflow_187", "__uflow"); +__static_renaming("____overflow_188", "__overflow"); +__static_renaming("____overflow_189", "__overflow"); +__static_renaming("___IO_getc_193", "_IO_getc"); +__static_renaming("___IO_getc_194", "_IO_getc"); +__static_renaming("___IO_putc_199", "_IO_putc"); +__static_renaming("___IO_putc_200", "_IO_putc"); +__static_renaming("___IO_feof_204", "_IO_feof"); +__static_renaming("___IO_feof_205", "_IO_feof"); +__static_renaming("___IO_ferror_209", "_IO_ferror"); +__static_renaming("___IO_ferror_210", "_IO_ferror"); +__static_renaming("___IO_peekc_locked_214", "_IO_peekc_locked"); +__static_renaming("___IO_peekc_locked_215", "_IO_peekc_locked"); +__static_renaming("___IO_flockfile_216", "_IO_flockfile"); +__static_renaming("___IO_flockfile_217", "_IO_flockfile"); +__static_renaming("___IO_funlockfile_218", "_IO_funlockfile"); +__static_renaming("___IO_funlockfile_219", "_IO_funlockfile"); +__static_renaming("___IO_ftrylockfile_220", "_IO_ftrylockfile"); +__static_renaming("___IO_ftrylockfile_221", "_IO_ftrylockfile"); +__static_renaming("___IO_vfscanf_222", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_224", "_IO_vfscanf"); +__static_renaming("___IO_vfprintf_231", "_IO_vfprintf"); +__static_renaming("___IO_vfprintf_233", "_IO_vfprintf"); +__static_renaming("___IO_padn_238", "_IO_padn"); +__static_renaming("___IO_padn_239", "_IO_padn"); +__static_renaming("___IO_sgetn_240", "_IO_sgetn"); +__static_renaming("___IO_sgetn_241", "_IO_sgetn"); +__static_renaming("___IO_seekoff_242", "_IO_seekoff"); +__static_renaming("___IO_seekoff_243", "_IO_seekoff"); +__static_renaming("___IO_seekpos_244", "_IO_seekpos"); +__static_renaming("___IO_seekpos_245", "_IO_seekpos"); +__static_renaming("___IO_free_backup_area_246", "_IO_free_backup_area"); +__static_renaming("___IO_free_backup_area_247", "_IO_free_backup_area"); +__static_renaming("__fpos_t_248", "fpos_t"); +__static_renaming("__fpos_t_250", "fpos_t"); +__static_renaming("__stdin_252", "stdin"); +__static_renaming("__stdin_253", "stdin"); +__static_renaming("__stdout_254", "stdout"); +__static_renaming("__stdout_255", "stdout"); +__static_renaming("__stderr_256", "stderr"); +__static_renaming("__stderr_257", "stderr"); +__static_renaming("__remove_259", "remove"); +__static_renaming("__rename_262", "rename"); +__static_renaming("__tmpfile_263", "tmpfile"); +__static_renaming("__tmpfile_265", "tmpfile"); +__static_renaming("__tmpfile_267", "tmpfile"); +__static_renaming("__tmpfile_269", "tmpfile"); +__static_renaming("__tmpnam_272", "tmpnam"); +__static_renaming("__tmpnam_273", "tmpnam"); +__static_renaming("__fclose_276", "fclose"); +__static_renaming("__fflush_280", "fflush"); +__static_renaming("__fopen_283", "fopen"); +__static_renaming("__fopen_285", "fopen"); +__static_renaming("__fopen_293", "fopen"); +__static_renaming("__fopen_295", "fopen"); +__static_renaming("__freopen_301", "freopen"); +__static_renaming("__freopen_303", "freopen"); +__static_renaming("__freopen_305", "freopen"); +__static_renaming("__freopen_307", "freopen"); +__static_renaming("__setbuf_312", "setbuf"); +__static_renaming("__setvbuf_318", "setvbuf"); +__static_renaming("__fprintf_322", "fprintf"); +__static_renaming("__printf_324", "printf"); +__static_renaming("__sprintf_327", "sprintf"); +__static_renaming("__vfprintf_333", "vfprintf"); +__static_renaming("__vprintf_340", "vprintf"); +__static_renaming("__vsprintf_346", "vsprintf"); +__static_renaming("__snprintf_350", "snprintf"); +__static_renaming("__vsnprintf_356", "vsnprintf"); +__static_renaming("__fscanf_360", "fscanf"); +__static_renaming("__fscanf_362", "fscanf"); +__static_renaming("__scanf_365", "scanf"); +__static_renaming("__scanf_366", "scanf"); +__static_renaming("__sscanf_369", "sscanf"); +__static_renaming("__vfscanf_392", "vfscanf"); +__static_renaming("__vfscanf_396", "vfscanf"); +__static_renaming("__vscanf_403", "vscanf"); +__static_renaming("__vscanf_405", "vscanf"); +__static_renaming("__vsscanf_411", "vsscanf"); +__static_renaming("__fgetc_444", "fgetc"); +__static_renaming("__getc_447", "getc"); +__static_renaming("__getchar_448", "getchar"); +__static_renaming("__fputc_452", "fputc"); +__static_renaming("__putc_456", "putc"); +__static_renaming("__putchar_458", "putchar"); +__static_renaming("__fgets_463", "fgets"); +__static_renaming("__fgets_465", "fgets"); +__static_renaming("__fputs_470", "fputs"); +__static_renaming("__puts_472", "puts"); +__static_renaming("__ungetc_476", "ungetc"); +__static_renaming("__fseek_496", "fseek"); +__static_renaming("__ftell_499", "ftell"); +__static_renaming("__ftell_501", "ftell"); +__static_renaming("__rewind_505", "rewind"); +__static_renaming("__fgetpos_510", "fgetpos"); +__static_renaming("__fgetpos_522", "fgetpos"); +__static_renaming("__fsetpos_530", "fsetpos"); +__static_renaming("__fsetpos_534", "fsetpos"); +__static_renaming("__clearerr_540", "clearerr"); +__static_renaming("__feof_543", "feof"); +__static_renaming("__feof_545", "feof"); +__static_renaming("__ferror_549", "ferror"); +__static_renaming("__ferror_551", "ferror"); +__static_renaming("__perror_554", "perror"); +__static_renaming("____sprintf_chk_564", "__sprintf_chk"); +__static_renaming("____vsprintf_chk_571", "__vsprintf_chk"); +__static_renaming("____snprintf_chk_585", "__snprintf_chk"); +__static_renaming("____vsnprintf_chk_593", "__vsnprintf_chk"); +__static_renaming("____fprintf_chk_608", "__fprintf_chk"); +__static_renaming("____printf_chk_612", "__printf_chk"); +__static_renaming("____vfprintf_chk_619", "__vfprintf_chk"); +__static_renaming("____vprintf_chk_627", "__vprintf_chk"); +__static_renaming("____fgets_chk_651", "__fgets_chk"); +__static_renaming("____fgets_chk_653", "__fgets_chk"); +__static_renaming("____fgets_alias_659", "__fgets_alias"); +__static_renaming("____fgets_chk_warn_666", "__fgets_chk_warn"); +__static_renaming("__wchar_t_704", "wchar_t"); +__static_renaming("__wchar_t_705", "wchar_t"); +__static_renaming("__div_t_710", "div_t"); +__static_renaming("__ldiv_t_715", "ldiv_t"); +__static_renaming("__lldiv_t_720", "lldiv_t"); +__static_renaming("____ctype_get_mb_cur_max_721", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_722", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_723", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_724", "__ctype_get_mb_cur_max"); +__static_renaming("__atof_726", "atof"); +__static_renaming("__atof_727", "atof"); +__static_renaming("__atoi_729", "atoi"); +__static_renaming("__atoi_730", "atoi"); +__static_renaming("__atol_732", "atol"); +__static_renaming("__atol_733", "atol"); +__static_renaming("__atoll_735", "atoll"); +__static_renaming("__atoll_736", "atoll"); +__static_renaming("__strtod_739", "strtod"); +__static_renaming("__strtof_742", "strtof"); +__static_renaming("__strtold_745", "strtold"); +__static_renaming("__strtol_749", "strtol"); +__static_renaming("__strtoul_753", "strtoul"); +__static_renaming("__strtoll_757", "strtoll"); +__static_renaming("__strtoull_761", "strtoull"); +__static_renaming("__rand_765", "rand"); +__static_renaming("__rand_766", "rand"); +__static_renaming("__srand_768", "srand"); +__static_renaming("__malloc_770", "malloc"); +__static_renaming("__malloc_771", "malloc"); +__static_renaming("__calloc_774", "calloc"); +__static_renaming("__calloc_775", "calloc"); +__static_renaming("__realloc_778", "realloc"); +__static_renaming("__free_780", "free"); +__static_renaming("__aligned_alloc_783", "aligned_alloc"); +__static_renaming("__aligned_alloc_784", "aligned_alloc"); +__static_renaming("__abort_785", "abort"); +__static_renaming("__atexit_787", "atexit"); +__static_renaming("__at_quick_exit_789", "at_quick_exit"); +__static_renaming("__exit_791", "exit"); +__static_renaming("__quick_exit_793", "quick_exit"); +__static_renaming("___Exit_795", "_Exit"); +__static_renaming("__getenv_797", "getenv"); +__static_renaming("__getenv_798", "getenv"); +__static_renaming("__system_800", "system"); +__static_renaming("__system_801", "system"); +__static_renaming("____compar_fn_t_802", "__compar_fn_t"); +__static_renaming("__bsearch_810", "bsearch"); +__static_renaming("__bsearch_812", "bsearch"); +__static_renaming("____l_819", "__l"); +__static_renaming("____u_820", "__u"); +__static_renaming("____idx_821", "__idx"); +__static_renaming("____p_822", "__p"); +__static_renaming("____comparison_823", "__comparison"); +__static_renaming("__qsort_831", "qsort"); +__static_renaming("__qsort_833", "qsort"); +__static_renaming("__abs_836", "abs"); +__static_renaming("__abs_837", "abs"); +__static_renaming("__labs_839", "labs"); +__static_renaming("__labs_840", "labs"); +__static_renaming("__llabs_842", "llabs"); +__static_renaming("__llabs_843", "llabs"); +__static_renaming("__div_846", "div"); +__static_renaming("__div_847", "div"); +__static_renaming("__ldiv_850", "ldiv"); +__static_renaming("__ldiv_852", "ldiv"); +__static_renaming("__lldiv_856", "lldiv"); +__static_renaming("__lldiv_858", "lldiv"); +__static_renaming("__mblen_862", "mblen"); +__static_renaming("__mbtowc_867", "mbtowc"); +__static_renaming("__mbtowc_868", "mbtowc"); +__static_renaming("__wctomb_872", "wctomb"); +__static_renaming("__wctomb_873", "wctomb"); +__static_renaming("__mbstowcs_878", "mbstowcs"); +__static_renaming("__mbstowcs_879", "mbstowcs"); +__static_renaming("__wcstombs_884", "wcstombs"); +__static_renaming("__wcstombs_885", "wcstombs"); +__static_renaming("____realpath_chk_890", "__realpath_chk"); +__static_renaming("____realpath_alias_893", "__realpath_alias"); +__static_renaming("____realpath_chk_warn_897", "__realpath_chk_warn"); +__static_renaming("____ptsname_r_chk_905", "__ptsname_r_chk"); +__static_renaming("____ptsname_r_alias_909", "__ptsname_r_alias"); +__static_renaming("____ptsname_r_chk_warn_914", "__ptsname_r_chk_warn"); +__static_renaming("____wctomb_chk_922", "__wctomb_chk"); +__static_renaming("____wctomb_alias_925", "__wctomb_alias"); +__static_renaming("____mbstowcs_chk_932", "__mbstowcs_chk"); +__static_renaming("____mbstowcs_alias_936", "__mbstowcs_alias"); +__static_renaming("____mbstowcs_chk_warn_941", "__mbstowcs_chk_warn"); +__static_renaming("____wcstombs_chk_949", "__wcstombs_chk"); +__static_renaming("____wcstombs_alias_953", "__wcstombs_alias"); +__static_renaming("____wcstombs_chk_warn_958", "__wcstombs_chk_warn"); +__static_renaming("__cur_967", "cur"); +__static_renaming("__next_968", "next"); +__static_renaming("__dfree_969", "dfree"); +__static_renaming("__i_972", "i"); +__static_renaming("__showdirs_973", "showdirs"); +__static_renaming("__showdirs_974", "showdirs"); +__static_renaming("__curr_979", "curr"); +__static_renaming("__head_980", "head"); +__static_renaming("__size_981", "size"); +__static_renaming("__arr_982", "arr"); +__static_renaming("__i_983", "i"); +__static_renaming("__main_987", "main"); + +__static_condition_renaming("__static_condition_default_74", "(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_118", "(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_161", "(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_162", "(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_165", "(defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_223", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_225", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_226", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_227", "(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_230", "(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_232", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_234", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_235", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_236", "(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_249", "!(defined _FILE_OFFSET_BITS) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_251", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_264", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_266", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_268", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_270", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_277", "(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_284", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_286", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_294", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_296", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_302", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_304", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_306", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_308", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_334", "!(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_335", "(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_336", "(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_341", "!(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_361", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_363", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_374", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_375", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_377", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_378", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_381", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_383", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_393", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_394", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_395", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_397", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_398", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_399", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_404", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_406", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_418", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_419", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_420", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_421", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_423", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_424", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_425", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_426", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_431", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_432", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_434", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_435", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_441", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_464", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_466", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_482", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_483", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_484", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_485", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_491", "!(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_500", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_502", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_511", "!(defined _FILE_OFFSET_BITS) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_512", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_513", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_523", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_524", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_525", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_531", "!(defined _FILE_OFFSET_BITS) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_532", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_533", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_535", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_536", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_537", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_544", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_546", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_550", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_552", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_558", "!(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_572", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_579", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_594", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_603", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_609", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_620", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_621", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_622", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_628", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_632", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_637", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_643", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_644", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_645", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_652", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_654", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_660", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_667", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_672", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_673", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_680", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_681", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_687", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_688", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_695", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_696", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_702", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_703", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_809", "!(defined _FORTIFY_SOURCE) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_811", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_824", "(defined __USE_EXTERN_INLINES) && !(defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_825", "(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_832", "!(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_834", "(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_851", "!(defined _FORTIFY_SOURCE) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_853", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_857", "!(defined _FORTIFY_SOURCE) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_859", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_900", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_970", "(defined CONFIG_FEATURE_LS_RECURSIVE)"); +__static_condition_renaming("__static_condition_default_975", "!(defined CONFIG_FEATURE_LS_RECURSIVE)"); +__static_condition_renaming("__static_condition_default_976", "(defined CONFIG_FEATURE_LS_RECURSIVE)"); +__static_condition_renaming("__static_condition_default_988", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_989", "!(defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_990", "(defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_991", "!(defined __USE_EXTERN_INLINES) && !(defined CONFIG_FEATURE_LS_RECURSIVE)"); +__static_condition_renaming("__static_condition_default_992", "!(defined __USE_EXTERN_INLINES) && (defined CONFIG_FEATURE_LS_RECURSIVE)"); +__static_condition_renaming("__static_condition_default_993", "(defined __USE_EXTERN_INLINES) && !(defined CONFIG_FEATURE_LS_RECURSIVE)"); +__static_condition_renaming("__static_condition_default_994", "(defined __USE_EXTERN_INLINES) && (defined CONFIG_FEATURE_LS_RECURSIVE)"); +__static_condition_renaming("__static_condition_default_995", "(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); + +if (__static_condition_default_995) { __static_parse_error("Unable to parse"); } }; @@ -1563,508 +634,165 @@ typedef long int ____ssize_t_49;// L110:L172 typedef long int ____syscall_slong_t_50;// L93:L175 typedef unsigned long int ____syscall_ulong_t_51;// L94:L177 typedef ____off64_t_24 ____loff_t_52;// L181 -typedef ____quad_t_14 * (____qaddr_t_54);// L182 -typedef char * (____caddr_t_55);// L183 -typedef long int ____intptr_t_56;// L110:L186 -typedef unsigned int ____socklen_t_57;// L92:L189 -typedef struct __forward_tag_reference_58 __FILE_59;// L48 -typedef struct __forward_tag_reference_58 ____FILE_60;// L64 -union ____anonymous_tag_61_62 { -unsigned int ____wch_63;// L265 -char ____wchb_64[4];// L92 -}; -struct ____anonymous_tag_65_66 { -int ____count_67;// L84 -union ____anonymous_tag_61_62 ____value_68;// L85 -}; -typedef struct ____anonymous_tag_65_66 ____mbstate_t_69;// L82:L94 -struct ____anonymous_tag_70_71 { -____off_t_23 ____pos_72;// L0 -____mbstate_t_69 ____state_74;// L0 -}; -typedef struct ____anonymous_tag_70_71 ___G_fpos_t_77;// L21:L25 -struct ____anonymous_tag_78_79 { -____off64_t_24 ____pos_80;// L0 -____mbstate_t_69 ____state_82;// L0 -}; -typedef struct ____anonymous_tag_78_79 ___G_fpos64_t_85;// L26:L30 -typedef __builtin_va_list ____gnuc_va_list_86;// L40 -typedef void ___IO_lock_t_88;// L150 -struct ___IO_marker_90 { -struct __forward_tag_reference_89 * (___next_91);// L0 -struct __forward_tag_reference_58 * (___sbuf_92);// L0 -int ___pos_93;// L162 -}; -enum ____codecvt_result_98 { -____codecvt_ok_94, -____codecvt_partial_95, -____codecvt_error_96, -____codecvt_noconv_97, -}; -struct ___IO_FILE_99 { -int ___flags_100;// L242 -char * (___IO_read_ptr_101);// L247 -char * (___IO_read_end_102);// L248 -char * (___IO_read_base_103);// L249 -char * (___IO_write_base_104);// L250 -char * (___IO_write_ptr_105);// L251 -char * (___IO_write_end_106);// L252 -char * (___IO_buf_base_107);// L253 -char * (___IO_buf_end_108);// L254 -char * (___IO_save_base_109);// L256 -char * (___IO_backup_base_110);// L257 -char * (___IO_save_end_111);// L258 -struct ___IO_marker_90 * (___markers_112);// L260 -struct __forward_tag_reference_58 * (___chain_113);// L0 -int ___fileno_114;// L264 -int ___flags2_115;// L268 -____off_t_23 ___old_offset_116;// L0 -unsigned short ___cur_column_118;// L274 -signed char ___vtable_offset_119;// L275 -char ___shortbuf_120[1];// L276 -___IO_lock_t_88 * (___lock_121);// L0 -}; -struct ___IO_FILE_124 { -int ___flags_125;// L242 -char * (___IO_read_ptr_126);// L247 -char * (___IO_read_end_127);// L248 -char * (___IO_read_base_128);// L249 -char * (___IO_write_base_129);// L250 -char * (___IO_write_ptr_130);// L251 -char * (___IO_write_end_131);// L252 -char * (___IO_buf_base_132);// L253 -char * (___IO_buf_end_133);// L254 -char * (___IO_save_base_134);// L256 -char * (___IO_backup_base_135);// L257 -char * (___IO_save_end_136);// L258 -struct ___IO_marker_90 * (___markers_137);// L260 -struct __forward_tag_reference_58 * (___chain_138);// L0 -int ___fileno_139;// L264 -int ___flags2_140;// L268 -____off_t_23 ___old_offset_141;// L0 -unsigned short ___cur_column_143;// L274 -signed char ___vtable_offset_144;// L275 -char ___shortbuf_145[1];// L276 -___IO_lock_t_88 * (___lock_146);// L0 -____off64_t_24 ___offset_148;// L0 -void * (____pad1_150);// L297 -void * (____pad2_151);// L298 -void * (____pad3_152);// L299 -void * (____pad4_153);// L300 -__size_t_1 ____pad5_154;// L0 -int ___mode_155;// L303 -char ___unused2_156[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 -}; -struct ___IO_FILE_complete_157 { -struct ___IO_FILE_99 ___file_158;// L286 -____off64_t_24 ___offset_160;// L0 -void * (____pad1_162);// L297 -void * (____pad2_163);// L298 -void * (____pad3_164);// L299 -void * (____pad4_165);// L300 -__size_t_1 ____pad5_166;// L0 -int ___mode_167;// L303 -char ___unused2_168[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 -}; -typedef struct ___IO_FILE_99 ___IO_FILE_171;// L310 -typedef struct ___IO_FILE_124 ___IO_FILE_172;// L310 -typedef ____ssize_t_49 (____io_read_fn_181) (void * (____cookie_178), char * (____buf_179), __size_t_1 ____nbytes_180);// L333 -typedef ____ssize_t_49 (____io_write_fn_186) (void * (____cookie_183), const char * (____buf_184), __size_t_1 ____n_185);// L341:L342 -typedef int (____io_seek_fn_192) (void * (____cookie_188), ____off64_t_24 * (____pos_189), int ____w_191);// L350 -typedef int (____io_close_fn_195) (void * (____cookie_194));// L353 -typedef ____gnuc_va_list_86 __va_list_279;// L79 -typedef ____off_t_23 __off_t_281;// L90 -typedef ____off64_t_24 __off_t_283;// L92 -typedef ____ssize_t_49 __ssize_t_285;// L102 -typedef ___G_fpos_t_77 __fpos_t_287;// L110 -typedef ___G_fpos64_t_85 __fpos_t_289;// L112 -extern const char * const __sys_errlist_830[];// L27 -typedef long int __ptrdiff_t_1092;// L143:L324 -typedef long unsigned int __size_t_1093;// L177:L209 -typedef int __wchar_t_1094;// L243:L321 -enum ____anonymous_tag_1098_1099 { -__P_ALL_1095, -__P_PID_1096, -__P_PGID_1097, -}; -typedef enum ____anonymous_tag_1098_1099 __idtype_t_1100;// L50:L55 -typedef unsigned char ____u_char_1101;// L30 -typedef unsigned short int ____u_short_1102;// L31 -typedef unsigned int ____u_int_1103;// L32 -typedef unsigned long int ____u_long_1104;// L33 -typedef signed char ____int8_t_1105;// L36 -typedef unsigned char ____uint8_t_1106;// L37 -typedef signed short int ____int16_t_1107;// L38 -typedef unsigned short int ____uint16_t_1108;// L39 -typedef signed int ____int32_t_1109;// L40 -typedef unsigned int ____uint32_t_1110;// L41 -typedef signed long int ____int64_t_1111;// L43 -typedef unsigned long int ____uint64_t_1112;// L44 -typedef long int ____quad_t_1113;// L52 -typedef unsigned long int ____u_quad_t_1114;// L53 -typedef unsigned long int ____dev_t_1115;// L109:L124 -typedef unsigned int ____uid_t_1116;// L92:L125 -typedef unsigned int ____gid_t_1117;// L92:L126 -typedef unsigned long int ____ino_t_1118;// L94:L127 -typedef unsigned long int ____ino64_t_1119;// L109:L128 -typedef unsigned int ____mode_t_1120;// L92:L129 -typedef unsigned long int ____nlink_t_1121;// L94:L130 -typedef long int ____off_t_1122;// L93:L131 -typedef long int ____off64_t_1123;// L108:L132 -typedef int ____pid_t_1124;// L91:L133 -struct ____anonymous_tag_1125_1126 { -int ____val_1127[2];// L72 -}; -typedef struct ____anonymous_tag_1125_1126 ____fsid_t_1128;// L72:L134 -typedef long int ____clock_t_1129;// L93:L135 -typedef unsigned long int ____rlim_t_1130;// L94:L136 -typedef unsigned long int ____rlim64_t_1131;// L109:L137 -typedef unsigned int ____id_t_1132;// L92:L138 -typedef long int ____time_t_1133;// L93:L139 -typedef unsigned int ____useconds_t_1134;// L92:L140 -typedef long int ____suseconds_t_1135;// L93:L141 -typedef int ____daddr_t_1136;// L91:L143 -typedef int ____key_t_1137;// L91:L144 -typedef int ____clockid_t_1138;// L91:L147 -typedef void * (____timer_t_1139);// L70:L150 -typedef long int ____blksize_t_1140;// L93:L153 -typedef long int ____blkcnt_t_1141;// L93:L158 -typedef long int ____blkcnt64_t_1142;// L108:L159 -typedef unsigned long int ____fsblkcnt_t_1143;// L94:L162 -typedef unsigned long int ____fsblkcnt64_t_1144;// L109:L163 -typedef unsigned long int ____fsfilcnt_t_1145;// L94:L166 -typedef unsigned long int ____fsfilcnt64_t_1146;// L109:L167 -typedef long int ____fsword_t_1147;// L93:L170 -typedef long int ____ssize_t_1148;// L110:L172 -typedef long int ____syscall_slong_t_1149;// L93:L175 -typedef unsigned long int ____syscall_ulong_t_1150;// L94:L177 -typedef ____off64_t_1123 ____loff_t_1151;// L181 -typedef ____quad_t_1113 * (____qaddr_t_1153);// L182 -typedef char * (____caddr_t_1154);// L183 -typedef long int ____intptr_t_1155;// L110:L186 -typedef unsigned int ____socklen_t_1156;// L92:L189 -struct ____anonymous_tag_1166_1167 { -unsigned int ____w_termsig_1168 : 7;// L72 -unsigned int ____w_coredump_1169 : 1;// L73 -unsigned int ____w_retcode_1170 : 8;// L74 -unsigned int __anon_id_0_1171 : 16;// L75 +typedef ____quad_t_14 * (____qaddr_t_53);// L182 +typedef char * (____caddr_t_54);// L183 +typedef long int ____intptr_t_55;// L110:L186 +typedef unsigned int ____socklen_t_56;// L92:L189 +typedef struct __forward_tag_reference_57 __FILE_58;// L48 +typedef struct __forward_tag_reference_57 ____FILE_59;// L64 +union ____anonymous_tag_60_61 { +unsigned int ____wch_62;// L265 +char ____wchb_63[4];// L92 }; -struct ____anonymous_tag_1172_1173 { -unsigned int ____w_stopval_1174 : 8;// L87 -unsigned int ____w_stopsig_1175 : 8;// L88 -unsigned int __anon_id_1_1176 : 16;// L89 +struct ____anonymous_tag_64_65 { +int ____count_66;// L84 +union ____anonymous_tag_60_61 ____value_67;// L85 }; -union __wait_1177 { -int __w_status_1178;// L68 -struct ____anonymous_tag_1166_1167 ____wait_terminated_1179;// L69 -struct ____anonymous_tag_1172_1173 ____wait_stopped_1180;// L84 +typedef struct ____anonymous_tag_64_65 ____mbstate_t_68;// L82:L94 +struct ____anonymous_tag_69_70 { +____off_t_23 ____pos_71;// L0 +____mbstate_t_68 ____state_72;// L0 }; -union ____anonymous_tag_1181_1182 { -union __wait_1177 * (____uptr_1183);// L69 -int * (____iptr_1184);// L70 +typedef struct ____anonymous_tag_69_70 ___G_fpos_t_75;// L21:L25 +struct ____anonymous_tag_76_77 { +____off64_t_24 ____pos_78;// L0 +____mbstate_t_68 ____state_79;// L0 }; -typedef union ____anonymous_tag_1181_1182 ____WAIT_STATUS_1185;// L67:L71 -struct ____anonymous_tag_1186_1187 { -int __quot_1188;// L99 -int __rem_1189;// L100 +typedef struct ____anonymous_tag_76_77 ___G_fpos64_t_81;// L26:L30 +typedef __builtin_va_list ____gnuc_va_list_82;// L40 +typedef void ___IO_lock_t_84;// L150 +struct ___IO_marker_86 { +struct __forward_tag_reference_85 * (___next_87);// L0 +struct __forward_tag_reference_57 * (___sbuf_88);// L0 +int ___pos_89;// L162 }; -typedef struct ____anonymous_tag_1186_1187 __div_t_1190;// L97:L101 -struct ____anonymous_tag_1191_1192 { -long int __quot_1193;// L107 -long int __rem_1194;// L108 +enum ____codecvt_result_94 { +____codecvt_ok_90, +____codecvt_partial_91, +____codecvt_error_92, +____codecvt_noconv_93, }; -typedef struct ____anonymous_tag_1191_1192 __ldiv_t_1195;// L105:L109 -struct ____anonymous_tag_1196_1197 { -long long int __quot_1198;// L119 -long long int __rem_1199;// L120 +struct ___IO_FILE_95 { +int ___flags_96;// L242 +char * (___IO_read_ptr_97);// L247 +char * (___IO_read_end_98);// L248 +char * (___IO_read_base_99);// L249 +char * (___IO_write_base_100);// L250 +char * (___IO_write_ptr_101);// L251 +char * (___IO_write_end_102);// L252 +char * (___IO_buf_base_103);// L253 +char * (___IO_buf_end_104);// L254 +char * (___IO_save_base_105);// L256 +char * (___IO_backup_base_106);// L257 +char * (___IO_save_end_107);// L258 +struct ___IO_marker_86 * (___markers_108);// L260 +struct __forward_tag_reference_57 * (___chain_109);// L0 +int ___fileno_110;// L264 +int ___flags2_111;// L268 +____off_t_23 ___old_offset_112;// L0 +unsigned short ___cur_column_113;// L274 +signed char ___vtable_offset_114;// L275 +char ___shortbuf_115[1];// L276 +___IO_lock_t_84 * (___lock_116);// L0 }; -typedef struct ____anonymous_tag_1196_1197 __lldiv_t_1200;// L117:L121 -typedef unsigned char ____u_char_1264;// L30 -typedef unsigned short int ____u_short_1265;// L31 -typedef unsigned int ____u_int_1266;// L32 -typedef unsigned long int ____u_long_1267;// L33 -typedef signed char ____int8_t_1268;// L36 -typedef unsigned char ____uint8_t_1269;// L37 -typedef signed short int ____int16_t_1270;// L38 -typedef unsigned short int ____uint16_t_1271;// L39 -typedef signed int ____int32_t_1272;// L40 -typedef unsigned int ____uint32_t_1273;// L41 -typedef signed long int ____int64_t_1274;// L43 -typedef unsigned long int ____uint64_t_1275;// L44 -typedef long int ____quad_t_1276;// L52 -typedef unsigned long int ____u_quad_t_1277;// L53 -typedef unsigned long int ____dev_t_1278;// L109:L124 -typedef unsigned int ____uid_t_1279;// L92:L125 -typedef unsigned int ____gid_t_1280;// L92:L126 -typedef unsigned long int ____ino_t_1281;// L94:L127 -typedef unsigned long int ____ino64_t_1282;// L109:L128 -typedef unsigned int ____mode_t_1283;// L92:L129 -typedef unsigned long int ____nlink_t_1284;// L94:L130 -typedef long int ____off_t_1285;// L93:L131 -typedef long int ____off64_t_1286;// L108:L132 -typedef int ____pid_t_1287;// L91:L133 -struct ____anonymous_tag_1288_1289 { -int ____val_1290[2];// L72 +struct ___IO_FILE_119 { +int ___flags_120;// L242 +char * (___IO_read_ptr_121);// L247 +char * (___IO_read_end_122);// L248 +char * (___IO_read_base_123);// L249 +char * (___IO_write_base_124);// L250 +char * (___IO_write_ptr_125);// L251 +char * (___IO_write_end_126);// L252 +char * (___IO_buf_base_127);// L253 +char * (___IO_buf_end_128);// L254 +char * (___IO_save_base_129);// L256 +char * (___IO_backup_base_130);// L257 +char * (___IO_save_end_131);// L258 +struct ___IO_marker_86 * (___markers_132);// L260 +struct __forward_tag_reference_57 * (___chain_133);// L0 +int ___fileno_134;// L264 +int ___flags2_135;// L268 +____off_t_23 ___old_offset_136;// L0 +unsigned short ___cur_column_137;// L274 +signed char ___vtable_offset_138;// L275 +char ___shortbuf_139[1];// L276 +___IO_lock_t_84 * (___lock_140);// L0 +____off64_t_24 ___offset_142;// L0 +void * (____pad1_143);// L297 +void * (____pad2_144);// L298 +void * (____pad3_145);// L299 +void * (____pad4_146);// L300 +__size_t_1 ____pad5_147;// L0 +int ___mode_148;// L303 +char ___unused2_149[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -typedef struct ____anonymous_tag_1288_1289 ____fsid_t_1291;// L72:L134 -typedef long int ____clock_t_1292;// L93:L135 -typedef unsigned long int ____rlim_t_1293;// L94:L136 -typedef unsigned long int ____rlim64_t_1294;// L109:L137 -typedef unsigned int ____id_t_1295;// L92:L138 -typedef long int ____time_t_1296;// L93:L139 -typedef unsigned int ____useconds_t_1297;// L92:L140 -typedef long int ____suseconds_t_1298;// L93:L141 -typedef int ____daddr_t_1299;// L91:L143 -typedef int ____key_t_1300;// L91:L144 -typedef int ____clockid_t_1301;// L91:L147 -typedef void * (____timer_t_1302);// L70:L150 -typedef long int ____blksize_t_1303;// L93:L153 -typedef long int ____blkcnt_t_1304;// L93:L158 -typedef long int ____blkcnt64_t_1305;// L108:L159 -typedef unsigned long int ____fsblkcnt_t_1306;// L94:L162 -typedef unsigned long int ____fsblkcnt64_t_1307;// L109:L163 -typedef unsigned long int ____fsfilcnt_t_1308;// L94:L166 -typedef unsigned long int ____fsfilcnt64_t_1309;// L109:L167 -typedef long int ____fsword_t_1310;// L93:L170 -typedef long int ____ssize_t_1311;// L110:L172 -typedef long int ____syscall_slong_t_1312;// L93:L175 -typedef unsigned long int ____syscall_ulong_t_1313;// L94:L177 -typedef ____off64_t_1286 ____loff_t_1314;// L181 -typedef ____quad_t_1276 * (____qaddr_t_1316);// L182 -typedef char * (____caddr_t_1317);// L183 -typedef long int ____intptr_t_1318;// L110:L186 -typedef unsigned int ____socklen_t_1319;// L92:L189 -typedef ____u_char_2 __u_char_1320;// L33 -typedef ____u_char_1101 __u_char_1321;// L33 -typedef ____u_char_1264 __u_char_1322;// L33 -typedef ____u_short_3 __u_short_1323;// L34 -typedef ____u_short_1102 __u_short_1324;// L34 -typedef ____u_short_1265 __u_short_1325;// L34 -typedef ____u_int_4 __u_int_1326;// L35 -typedef ____u_int_1103 __u_int_1327;// L35 -typedef ____u_int_1266 __u_int_1328;// L35 -typedef ____u_long_5 __u_long_1329;// L36 -typedef ____u_long_1104 __u_long_1330;// L36 -typedef ____u_long_1267 __u_long_1331;// L36 -typedef ____quad_t_14 __quad_t_1332;// L37 -typedef ____quad_t_1113 __quad_t_1333;// L37 -typedef ____quad_t_1276 __quad_t_1334;// L37 -typedef ____u_quad_t_15 __u_quad_t_1335;// L38 -typedef ____u_quad_t_1114 __u_quad_t_1336;// L38 -typedef ____u_quad_t_1277 __u_quad_t_1337;// L38 -typedef ____fsid_t_29 __fsid_t_1338;// L39 -typedef ____fsid_t_1128 __fsid_t_1339;// L39 -typedef ____fsid_t_1291 __fsid_t_1340;// L39 -typedef ____loff_t_52 __loff_t_1342;// L44 -typedef ____loff_t_1151 __loff_t_1343;// L44 -typedef ____loff_t_1314 __loff_t_1344;// L44 -typedef ____loff_t_52 __loff_t_1346;// L44 -typedef ____loff_t_1151 __loff_t_1347;// L44 -typedef ____loff_t_1314 __loff_t_1348;// L44 -typedef ____ino64_t_20 __ino_t_1350;// L50 -typedef ____ino64_t_1119 __ino_t_1351;// L50 -typedef ____ino64_t_1282 __ino_t_1352;// L50 -typedef ____ino_t_19 __ino_t_1354;// L48 -typedef ____ino_t_1118 __ino_t_1355;// L48 -typedef ____ino_t_1281 __ino_t_1356;// L48 -typedef ____dev_t_16 __dev_t_1358;// L60 -typedef ____dev_t_1115 __dev_t_1359;// L60 -typedef ____dev_t_1278 __dev_t_1360;// L60 -typedef ____gid_t_18 __gid_t_1362;// L65 -typedef ____gid_t_1117 __gid_t_1363;// L65 -typedef ____gid_t_1280 __gid_t_1364;// L65 -typedef ____gid_t_18 __gid_t_1366;// L65 -typedef ____gid_t_1117 __gid_t_1367;// L65 -typedef ____gid_t_1280 __gid_t_1368;// L65 -typedef ____mode_t_21 __mode_t_1370;// L70 -typedef ____mode_t_1120 __mode_t_1371;// L70 -typedef ____mode_t_1283 __mode_t_1372;// L70 -typedef ____nlink_t_22 __nlink_t_1374;// L75 -typedef ____nlink_t_1121 __nlink_t_1375;// L75 -typedef ____nlink_t_1284 __nlink_t_1376;// L75 -typedef ____uid_t_17 __uid_t_1378;// L80 -typedef ____uid_t_1116 __uid_t_1379;// L80 -typedef ____uid_t_1279 __uid_t_1380;// L80 -typedef ____uid_t_17 __uid_t_1382;// L80 -typedef ____uid_t_1116 __uid_t_1383;// L80 -typedef ____uid_t_1279 __uid_t_1384;// L80 -typedef ____off64_t_1123 __off_t_1386;// L88 -typedef ____off64_t_1286 __off_t_1387;// L88 -typedef ____off_t_1122 __off_t_1389;// L86 -typedef ____off_t_1285 __off_t_1390;// L86 -typedef ____pid_t_25 __pid_t_1392;// L98 -typedef ____pid_t_1124 __pid_t_1393;// L98 -typedef ____pid_t_1287 __pid_t_1394;// L98 -typedef ____pid_t_1124 __pid_t_1396;// L98 -typedef ____pid_t_1287 __pid_t_1397;// L98 -typedef ____id_t_33 __id_t_1399;// L104 -typedef ____id_t_1132 __id_t_1400;// L104 -typedef ____id_t_1295 __id_t_1401;// L104 -typedef ____ssize_t_1148 __ssize_t_1403;// L109 -typedef ____ssize_t_1311 __ssize_t_1404;// L109 -typedef ____daddr_t_37 __daddr_t_1406;// L115 -typedef ____daddr_t_1136 __daddr_t_1407;// L115 -typedef ____daddr_t_1299 __daddr_t_1408;// L115 -typedef ____caddr_t_55 __caddr_t_1410;// L116 -typedef ____caddr_t_1154 __caddr_t_1411;// L116 -typedef ____caddr_t_1317 __caddr_t_1412;// L116 -typedef ____key_t_38 __key_t_1413;// L122 -typedef ____key_t_1137 __key_t_1414;// L122 -typedef ____key_t_1300 __key_t_1415;// L122 -typedef ____key_t_38 __key_t_1417;// L122 -typedef ____key_t_1137 __key_t_1418;// L122 -typedef ____key_t_1300 __key_t_1419;// L122 -typedef ____clock_t_30 __clock_t_1421;// L59 -typedef ____clock_t_1129 __clock_t_1422;// L59 -typedef ____clock_t_1292 __clock_t_1423;// L59 -typedef ____time_t_34 __time_t_1425;// L75 -typedef ____time_t_1133 __time_t_1426;// L75 -typedef ____time_t_1296 __time_t_1427;// L75 -typedef ____clockid_t_39 __clockid_t_1429;// L91 -typedef ____clockid_t_1138 __clockid_t_1430;// L91 -typedef ____clockid_t_1301 __clockid_t_1431;// L91 -typedef ____timer_t_40 __timer_t_1433;// L103 -typedef ____timer_t_1139 __timer_t_1434;// L103 -typedef ____timer_t_1302 __timer_t_1435;// L103 -typedef unsigned long int __ulong_1437;// L150 -typedef unsigned long int __ulong_1438;// L150 -typedef unsigned long int __ulong_1439;// L150 -typedef unsigned short int __ushort_1440;// L151 -typedef unsigned int __uint_1441;// L152 -typedef int __int8_t_1442;// L188:L194 -typedef int __int16_t_1443;// L188:L195 -typedef int __int32_t_1444;// L188:L196 -typedef int __int64_t_1445;// L188:L197 -typedef unsigned int __u_int8_t_1446;// L190:L200 -typedef unsigned int __u_int16_t_1447;// L190:L201 -typedef unsigned int __u_int32_t_1448;// L190:L202 -typedef unsigned int __u_int64_t_1449;// L190:L203 -typedef int __register_t_1450;// L205 -typedef int ____sig_atomic_t_1460;// L22 -struct ____anonymous_tag_1461_1462 { -unsigned long int ____val_1463[( 1024 / ( 8 * sizeof(unsigned long) ) )];// L29 +struct ___IO_FILE_complete_150 { +struct ___IO_FILE_95 ___file_151;// L286 +____off64_t_24 ___offset_153;// L0 +void * (____pad1_154);// L297 +void * (____pad2_155);// L298 +void * (____pad3_156);// L299 +void * (____pad4_157);// L300 +__size_t_1 ____pad5_158;// L0 +int ___mode_159;// L303 +char ___unused2_160[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -typedef struct ____anonymous_tag_1461_1462 ____sigset_t_1464;// L27:L30 -typedef ____sigset_t_1464 __sigset_t_1465;// L37 -struct __timespec_1466 { -____time_t_34 __tv_sec_1467;// L0 -____time_t_1133 __tv_sec_1468;// L0 -____time_t_1296 __tv_sec_1469;// L0 -____syscall_slong_t_50 __tv_nsec_1471;// L0 -____syscall_slong_t_1149 __tv_nsec_1472;// L0 -____syscall_slong_t_1312 __tv_nsec_1473;// L0 +typedef struct ___IO_FILE_95 ___IO_FILE_163;// L310 +typedef struct ___IO_FILE_119 ___IO_FILE_164;// L310 +typedef ____ssize_t_49 (____io_read_fn_173) (void * (____cookie_170), char * (____buf_171), __size_t_1 ____nbytes_172);// L333 +typedef ____ssize_t_49 (____io_write_fn_177) (void * (____cookie_174), const char * (____buf_175), __size_t_1 ____n_176);// L341:L342 +typedef int (____io_seek_fn_181) (void * (____cookie_178), ____off64_t_24 * (____pos_179), int ____w_180);// L350 +typedef int (____io_close_fn_183) (void * (____cookie_182));// L353 +typedef ___G_fpos_t_75 __fpos_t_248;// L110 +typedef ___G_fpos64_t_81 __fpos_t_250;// L112 +typedef int __wchar_t_704;// L243:L321 +typedef int __wchar_t_705;// L243:L321 +struct ____anonymous_tag_706_707 { +int __quot_708;// L99 +int __rem_709;// L100 }; -struct __timeval_1476 { -____time_t_34 __tv_sec_1477;// L0 -____time_t_1133 __tv_sec_1478;// L0 -____time_t_1296 __tv_sec_1479;// L0 -____suseconds_t_36 __tv_usec_1481;// L0 -____suseconds_t_1135 __tv_usec_1482;// L0 -____suseconds_t_1298 __tv_usec_1483;// L0 +typedef struct ____anonymous_tag_706_707 __div_t_710;// L97:L101 +struct ____anonymous_tag_711_712 { +long int __quot_713;// L107 +long int __rem_714;// L108 }; -typedef ____suseconds_t_36 __suseconds_t_1486;// L48 -typedef ____suseconds_t_1135 __suseconds_t_1487;// L48 -typedef ____suseconds_t_1298 __suseconds_t_1488;// L48 -typedef long int ____fd_mask_1490;// L54 -typedef long int ____fd_mask_1491;// L54 -struct ____anonymous_tag_1492_1493 { -____fd_mask_1490 ____fds_bits_1494[1024 / ( 8 * ( int ) sizeof(long) )];// L0 -____fd_mask_1491 ____fds_bits_1496[1024 / ( 8 * ( int ) sizeof(long) )];// L0 -}; -typedef struct ____anonymous_tag_1492_1493 __fd_set_1499;// L64:L75 -typedef ____fd_mask_1490 __fd_mask_1500;// L82 -typedef ____fd_mask_1491 __fd_mask_1501;// L82 -typedef ____blksize_t_41 __blksize_t_1549;// L228 -typedef ____blksize_t_1140 __blksize_t_1550;// L228 -typedef ____blksize_t_1303 __blksize_t_1551;// L228 -typedef ____blkcnt_t_42 __blkcnt_t_1553;// L235 -typedef ____blkcnt_t_1141 __blkcnt_t_1554;// L235 -typedef ____blkcnt_t_1304 __blkcnt_t_1555;// L235 -typedef ____fsblkcnt_t_44 __fsblkcnt_t_1557;// L239 -typedef ____fsblkcnt_t_1143 __fsblkcnt_t_1558;// L239 -typedef ____fsblkcnt_t_1306 __fsblkcnt_t_1559;// L239 -typedef ____blkcnt64_t_43 __blkcnt_t_1561;// L248 -typedef ____blkcnt64_t_1142 __blkcnt_t_1562;// L248 -typedef ____blkcnt64_t_1305 __blkcnt_t_1563;// L248 -typedef ____fsblkcnt64_t_45 __fsblkcnt_t_1565;// L252 -typedef ____fsblkcnt64_t_1144 __fsblkcnt_t_1566;// L252 -typedef ____fsblkcnt64_t_1307 __fsblkcnt_t_1567;// L252 -typedef ____fsfilcnt_t_46 __fsfilcnt_t_1569;// L243 -typedef ____fsfilcnt_t_1145 __fsfilcnt_t_1570;// L243 -typedef ____fsfilcnt_t_1308 __fsfilcnt_t_1571;// L243 -typedef ____fsfilcnt64_t_47 __fsfilcnt_t_1573;// L256 -typedef ____fsfilcnt64_t_1146 __fsfilcnt_t_1574;// L256 -typedef ____fsfilcnt64_t_1309 __fsfilcnt_t_1575;// L256 -typedef unsigned long int __pthread_t_1577;// L60 -union __pthread_attr_t_1578 { -char ____size_1579[56];// L65 -long int ____align_1580;// L66 -}; -typedef union __pthread_attr_t_1578 __pthread_attr_t_1581;// L69 -struct ____pthread_internal_list_1583 { -struct __forward_tag_reference_1582 * (____prev_1584);// L0 -struct __forward_tag_reference_1582 * (____next_1585);// L0 -}; -typedef struct ____pthread_internal_list_1583 ____pthread_list_t_1586;// L75:L79 -typedef struct ____pthread_internal_list_1583 ____pthread_list_t_1587;// L75:L79 -struct ____pthread_mutex_s_1588 { -int ____lock_1589;// L94 -unsigned int ____count_1590;// L95 -int ____owner_1591;// L96 -unsigned int ____nusers_1592;// L98 -int ____kind_1593;// L102 -short ____spins_1594;// L104 -short ____elision_1595;// L105 -____pthread_list_t_1586 ____list_1596;// L0 -____pthread_list_t_1587 ____list_1597;// L0 -}; -union ____anonymous_tag_1598_1599 { -struct ____pthread_mutex_s_1588 ____data_1600;// L92 -char ____size_1601[40];// L126 -long int ____align_1602;// L127 -}; -typedef union ____anonymous_tag_1598_1599 __pthread_mutex_t_1603;// L90:L128 -union ____anonymous_tag_1604_1605 { -char ____size_1606[4];// L132 -int ____align_1607;// L133 -}; -typedef union ____anonymous_tag_1604_1605 __pthread_mutexattr_t_1608;// L130:L134 -typedef int (* (____compar_fn_t_1740)) (const void *, const void *);// L741 -struct __dnode_2037 { -int __val_2038;// L5 -struct __forward_tag_reference_2036 * (__next_2039);// L0 -}; - -struct __forward_tag_reference_89 { // generated union of struct variations -union { -struct ___IO_marker_90 ___IO_marker_90; +typedef struct ____anonymous_tag_711_712 __ldiv_t_715;// L105:L109 +struct ____anonymous_tag_716_717 { +long long int __quot_718;// L119 +long long int __rem_719;// L120 }; +typedef struct ____anonymous_tag_716_717 __lldiv_t_720;// L117:L121 +typedef int (* (____compar_fn_t_802)) (const void *, const void *);// L741 +struct __dnode_963 { +int __val_964;// L5 +struct __forward_tag_reference_962 * (__next_965);// L0 }; -struct __forward_tag_reference_1582 { // generated union of struct variations +struct __forward_tag_reference_962 { // generated union of struct variations union { +struct __dnode_963 __dnode_963; }; }; -struct __forward_tag_reference_58 { // generated union of struct variations +struct __forward_tag_reference_57 { // generated union of struct variations union { -struct ___IO_FILE_99 ___IO_FILE_99; -struct ___IO_FILE_124 ___IO_FILE_124; +struct ___IO_FILE_95 ___IO_FILE_95; +struct ___IO_FILE_119 ___IO_FILE_119; }; }; -struct __forward_tag_reference_2036 { // generated union of struct variations +struct __forward_tag_reference_85 { // generated union of struct variations union { -struct __dnode_2037 __dnode_2037; +struct ___IO_marker_86 ___IO_marker_86; }; }; -struct __forward_tag_reference_87 { // generated union of struct variations +struct __forward_tag_reference_83 { // generated union of struct variations union { }; }; -struct __forward_tag_reference_174 { // generated union of struct variations +struct __forward_tag_reference_166 { // generated union of struct variations union { }; }; @@ -2123,1164 +851,440 @@ union { // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_58 ;// L0 +struct __forward_tag_reference_57 ;// L0 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_87 ;// L0 -struct __forward_tag_reference_87 ;// L0 -struct __forward_tag_reference_58 ;// L0 +struct __forward_tag_reference_83 ;// L0 +struct __forward_tag_reference_83 ;// L0 +struct __forward_tag_reference_57 ;// L0 // typedef moved to top of scope -struct ___IO_marker_90 ;// L156 -enum ____codecvt_result_98 ;// L176 -struct ___IO_FILE_99 ;// L241 +struct ___IO_marker_86 ;// L156 +enum ____codecvt_result_94 ;// L176 +struct ___IO_FILE_95 ;// L241 -struct ___IO_FILE_124 ;// L241 -struct ___IO_FILE_complete_157 ;// L241 +struct ___IO_FILE_119 ;// L241 +struct ___IO_FILE_complete_150 ;// L241 // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_174 ;// L0 -extern struct __forward_tag_reference_174 ___IO_2_1_stdin__175;// L315 -extern struct __forward_tag_reference_174 ___IO_2_1_stdout__176;// L316 -extern struct __forward_tag_reference_174 ___IO_2_1_stderr__177;// L317 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern int (____underflow_196) (___IO_FILE_171 *);// L385 -extern int (____underflow_197) (___IO_FILE_172 *);// L385 -extern int (____uflow_199) (___IO_FILE_171 *);// L386 -extern int (____uflow_200) (___IO_FILE_172 *);// L386 -extern int (____overflow_202) (___IO_FILE_171 *, int );// L387 -extern int (____overflow_203) (___IO_FILE_172 *, int );// L387 -extern int (___IO_getc_208) (___IO_FILE_171 * (____fp_205));// L429 -extern int (___IO_getc_209) (___IO_FILE_172 * (____fp_206));// L429 -extern int (___IO_putc_215) (int ____c_211, ___IO_FILE_171 * (____fp_212));// L430 -extern int (___IO_putc_216) (int ____c_211, ___IO_FILE_172 * (____fp_213));// L430 -extern int (___IO_feof_221) (___IO_FILE_171 * (____fp_218));// L431 -extern int (___IO_feof_222) (___IO_FILE_172 * (____fp_219));// L431 -extern int (___IO_ferror_227) (___IO_FILE_171 * (____fp_224));// L432 -extern int (___IO_ferror_228) (___IO_FILE_172 * (____fp_225));// L432 -extern int (___IO_peekc_locked_233) (___IO_FILE_171 * (____fp_230));// L434 -extern int (___IO_peekc_locked_234) (___IO_FILE_172 * (____fp_231));// L434 -extern void (___IO_flockfile_236) (___IO_FILE_171 *);// L440 -extern void (___IO_flockfile_237) (___IO_FILE_172 *);// L440 -extern void (___IO_funlockfile_239) (___IO_FILE_171 *);// L441 -extern void (___IO_funlockfile_240) (___IO_FILE_172 *);// L441 -extern int (___IO_ftrylockfile_242) (___IO_FILE_171 *);// L442 -extern int (___IO_ftrylockfile_243) (___IO_FILE_172 *);// L442 -extern int (___IO_vfscanf_245) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_247) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_251) (___IO_FILE_171 * __restrict , const char * __restrict , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_252) (___IO_FILE_172 * __restrict , const char * __restrict , int * __restrict );// L459:L460 -extern int (___IO_vfprintf_254) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 -extern int (___IO_vfprintf_256) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 -extern int (___IO_vfprintf_260) ();// L461:L462 -extern ____ssize_t_49 (___IO_padn_261) (___IO_FILE_171 *, int , ____ssize_t_49 );// L463 -extern ____ssize_t_49 (___IO_padn_262) (___IO_FILE_172 *, int , ____ssize_t_49 );// L463 -extern __size_t_1 (___IO_sgetn_265) (___IO_FILE_171 *, void *, __size_t_1 );// L464 -extern __size_t_1 (___IO_sgetn_266) (___IO_FILE_172 *, void *, __size_t_1 );// L464 -extern ____off64_t_24 (___IO_seekoff_268) (___IO_FILE_171 *, ____off64_t_24 , int , int );// L466 -extern ____off64_t_24 (___IO_seekoff_269) (___IO_FILE_172 *, ____off64_t_24 , int , int );// L466 -extern ____off64_t_24 (___IO_seekpos_272) (___IO_FILE_171 *, ____off64_t_24 , int );// L467 -extern ____off64_t_24 (___IO_seekpos_273) (___IO_FILE_172 *, ____off64_t_24 , int );// L467 -extern void (___IO_free_backup_area_276) (___IO_FILE_171 *);// L469 -extern void (___IO_free_backup_area_277) (___IO_FILE_172 *);// L469 +struct __forward_tag_reference_166 ;// L0 +extern struct __forward_tag_reference_166 ___IO_2_1_stdin__167;// L315 +extern struct __forward_tag_reference_166 ___IO_2_1_stdout__168;// L316 +extern struct __forward_tag_reference_166 ___IO_2_1_stderr__169;// L317 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope +extern int (____underflow_184) (___IO_FILE_163 *);// L385 +extern int (____underflow_185) (___IO_FILE_164 *);// L385 +extern int (____uflow_186) (___IO_FILE_163 *);// L386 +extern int (____uflow_187) (___IO_FILE_164 *);// L386 +extern int (____overflow_188) (___IO_FILE_163 *, int );// L387 +extern int (____overflow_189) (___IO_FILE_164 *, int );// L387 +extern int (___IO_getc_193) (___IO_FILE_163 * (____fp_190));// L429 +extern int (___IO_getc_194) (___IO_FILE_164 * (____fp_191));// L429 +extern int (___IO_putc_199) (int ____c_195, ___IO_FILE_163 * (____fp_196));// L430 +extern int (___IO_putc_200) (int ____c_195, ___IO_FILE_164 * (____fp_197));// L430 +extern int (___IO_feof_204) (___IO_FILE_163 * (____fp_201));// L431 +extern int (___IO_feof_205) (___IO_FILE_164 * (____fp_202));// L431 +extern int (___IO_ferror_209) (___IO_FILE_163 * (____fp_206));// L432 +extern int (___IO_ferror_210) (___IO_FILE_164 * (____fp_207));// L432 +extern int (___IO_peekc_locked_214) (___IO_FILE_163 * (____fp_211));// L434 +extern int (___IO_peekc_locked_215) (___IO_FILE_164 * (____fp_212));// L434 +extern void (___IO_flockfile_216) (___IO_FILE_163 *);// L440 +extern void (___IO_flockfile_217) (___IO_FILE_164 *);// L440 +extern void (___IO_funlockfile_218) (___IO_FILE_163 *);// L441 +extern void (___IO_funlockfile_219) (___IO_FILE_164 *);// L441 +extern int (___IO_ftrylockfile_220) (___IO_FILE_163 *);// L442 +extern int (___IO_ftrylockfile_221) (___IO_FILE_164 *);// L442 +extern int (___IO_vfscanf_222) (___IO_FILE_163 * __restrict , const char * __restrict , ____gnuc_va_list_82 , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_224) (___IO_FILE_164 * __restrict , const char * __restrict , ____gnuc_va_list_82 , int * __restrict );// L459:L460 + + +extern int (___IO_vfprintf_231) (___IO_FILE_163 * __restrict , const char * __restrict , ____gnuc_va_list_82 );// L461:L462 +extern int (___IO_vfprintf_233) (___IO_FILE_164 * __restrict , const char * __restrict , ____gnuc_va_list_82 );// L461:L462 + +extern ____ssize_t_49 (___IO_padn_238) (___IO_FILE_163 *, int , ____ssize_t_49 );// L463 +extern ____ssize_t_49 (___IO_padn_239) (___IO_FILE_164 *, int , ____ssize_t_49 );// L463 +extern __size_t_1 (___IO_sgetn_240) (___IO_FILE_163 *, void *, __size_t_1 );// L464 +extern __size_t_1 (___IO_sgetn_241) (___IO_FILE_164 *, void *, __size_t_1 );// L464 +extern ____off64_t_24 (___IO_seekoff_242) (___IO_FILE_163 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekoff_243) (___IO_FILE_164 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekpos_244) (___IO_FILE_163 *, ____off64_t_24 , int );// L467 +extern ____off64_t_24 (___IO_seekpos_245) (___IO_FILE_164 *, ____off64_t_24 , int );// L467 +extern void (___IO_free_backup_area_246) (___IO_FILE_163 *);// L469 +extern void (___IO_free_backup_area_247) (___IO_FILE_164 *);// L469 // typedef moved to top of scope // typedef moved to top of scope -extern struct ___IO_FILE_99 * (__stdin_291);// L168 -extern struct ___IO_FILE_124 * (__stdin_292);// L168 -extern struct ___IO_FILE_99 * (__stdout_294);// L169 -extern struct ___IO_FILE_124 * (__stdout_295);// L169 -extern struct ___IO_FILE_99 * (__stderr_297);// L170 -extern struct ___IO_FILE_124 * (__stderr_298);// L170 -extern int (__remove_301) (const char * (____filename_300));// L178 -extern int (__rename_304) (const char * (____old_302), const char * (____new_303));// L180 -extern int (__renameat_309) (int ____oldfd_305, const char * (____old_306), int ____newfd_307, const char * (____new_308));// L185:L186 -extern __FILE_59 * ((__tmpfile_310) (void ));// L195 -extern __FILE_59 * ((__tmpfile_316) (void ));// L198 -extern __FILE_59 * ((__tmpfile_314) (void ));// L195 -extern __FILE_59 * ((__tmpfile_312) (void ));// L198 -extern char * ((__tmpnam_319) (char * (____s_318)));// L209 -extern char * ((__tmpnam_320) (char * (____s_318)));// L209 -extern char * ((__tmpnam_r_322) (char * (____s_321)));// L215 -extern char * ((__tmpnam_r_323) (char * (____s_321)));// L215 -extern char * ((__tempnam_326) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 -extern char * ((__tempnam_327) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 -extern int (__fclose_330) (__FILE_59 * (____stream_328));// L237 -extern int (__fclose_332) (__FILE_59 * (____stream_328));// L237 -extern int (__fflush_336) (__FILE_59 * (____stream_334));// L242 -extern int (__fflush_unlocked_340) (__FILE_59 * (____stream_338));// L252 -extern __FILE_59 * ((__fopen_344) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 -extern __FILE_59 * ((__fopen_346) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 -extern __FILE_59 * ((__fopen_354) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 -extern __FILE_59 * ((__fopen_356) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 -extern __FILE_59 * ((__freopen_362) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 -extern __FILE_59 * ((__freopen_368) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 -extern __FILE_59 * ((__freopen_366) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 -extern __FILE_59 * ((__freopen_364) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 -extern __FILE_59 * ((__fdopen_372) (int ____fd_370, const char * (____modes_371)));// L306 -extern __FILE_59 * ((__fdopen_374) (int ____fd_370, const char * (____modes_371)));// L306 -extern __FILE_59 * ((__fmemopen_379) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 -extern __FILE_59 * ((__fmemopen_381) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 -extern __FILE_59 * ((__open_memstream_385) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 -extern __FILE_59 * ((__open_memstream_387) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 -extern void (__setbuf_392) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 -extern void (__setbuf_394) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 -extern int (__setvbuf_401) (__FILE_59 * __restrict ____stream_396, char * __restrict ____buf_398, int ____modes_399, __size_t_1 ____n_400);// L336:L337 -extern void (__setbuffer_407) (__FILE_59 * __restrict ____stream_403, char * __restrict ____buf_405, __size_t_1 ____size_406);// L343:L344 -extern void (__setlinebuf_411) (__FILE_59 * (____stream_409));// L347 -extern int (__fprintf_416) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 -extern int (__fprintf_418) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 -extern int (__printf_421) (const char * __restrict ____format_420, ... );// L362 -extern int (__sprintf_424) (char * __restrict ____s_422, const char * __restrict ____format_423, ... );// L364:L365 -extern int (__vfprintf_430) (__FILE_59 * __restrict ____s_425, const char * __restrict ____format_427, ____gnuc_va_list_86 ____arg_428);// L371:L372 -extern int (__vprintf_437) (const char * __restrict ____format_434, ____gnuc_va_list_86 ____arg_435);// L377 -extern int (__vsprintf_443) (char * __restrict ____s_439, const char * __restrict ____format_440, ____gnuc_va_list_86 ____arg_441);// L379:L380 -extern int (__snprintf_448) (char * __restrict ____s_445, __size_t_1 ____maxlen_446, const char * __restrict ____format_447, ... );// L386:L388 -extern int (__vsnprintf_454) (char * __restrict ____s_449, __size_t_1 ____maxlen_450, const char * __restrict ____format_451, ____gnuc_va_list_86 ____arg_452);// L390:L392 -extern int (__vdprintf_460) (int ____fd_456, const char * __restrict ____fmt_457, ____gnuc_va_list_86 ____arg_458);// L412:L414 -extern int (__dprintf_464) (int ____fd_462, const char * __restrict ____fmt_463, ... );// L415:L416 -extern int (__fscanf_468) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__fscanf_470) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__fscanf_472) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__fscanf_474) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__scanf_477) (const char * __restrict ____format_476, ... );// L431 -extern int (__scanf_478) (const char * __restrict ____format_476, ... );// L431 -extern int (__sscanf_481) (const char * __restrict ____s_479, const char * __restrict ____format_480, ... );// L433:L434 - - - - - - - -extern int (__vfscanf_509) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 -extern int (__vfscanf_513) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 -extern int (__vscanf_520) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 -extern int (__vscanf_522) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 -extern int (__vsscanf_528) (const char * __restrict ____s_524, const char * __restrict ____format_525, ____gnuc_va_list_86 ____arg_526);// L483:L485 - - - - - -extern int (__fgetc_563) (__FILE_59 * (____stream_561));// L531 -extern int (__getc_567) (__FILE_59 * (____stream_565));// L532 -extern int (__getchar_569) (void );// L538 -extern int (__getc_unlocked_572) (__FILE_59 * (____stream_570));// L550 -extern int (__getchar_unlocked_574) (void );// L551 -extern int (__fgetc_unlocked_577) (__FILE_59 * (____stream_575));// L561 -extern int (__fputc_582) (int ____c_579, __FILE_59 * (____stream_580));// L573 -extern int (__fputc_584) (int ____c_579, __FILE_59 * (____stream_580));// L573 -extern int (__putc_589) (int ____c_586, __FILE_59 * (____stream_587));// L574 -extern int (__putchar_592) (int ____c_591);// L580 -extern int (__fputc_unlocked_596) (int ____c_593, __FILE_59 * (____stream_594));// L594 -extern int (__putc_unlocked_601) (int ____c_598, __FILE_59 * (____stream_599));// L602 -extern int (__putchar_unlocked_604) (int ____c_603);// L603 -extern int (__getw_607) (__FILE_59 * (____stream_605));// L610 -extern int (__putw_612) (int ____w_609, __FILE_59 * (____stream_610));// L613 -extern char * ((__fgets_618) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern char * ((__fgets_620) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern char * ((__fgets_622) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern char * ((__fgets_624) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern ____ssize_t_49 (____getdelim_631) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 -extern ____ssize_t_49 (____getdelim_635) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 -extern ____ssize_t_49 (__getdelim_644) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 -extern ____ssize_t_49 (__getdelim_648) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 -extern ____ssize_t_49 (__getline_656) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 -extern ____ssize_t_49 (__getline_660) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 -extern int (__fputs_667) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 -extern int (__fputs_669) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 -extern int (__puts_672) (const char * (____s_671));// L695 -extern int (__ungetc_676) (int ____c_673, __FILE_59 * (____stream_674));// L702 -extern int (__fseek_714) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 -extern int (__fseek_716) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 -extern long int (__ftell_720) (__FILE_59 * (____stream_718));// L754 -extern long int (__ftell_722) (__FILE_59 * (____stream_718));// L754 -extern void (__rewind_726) (__FILE_59 * (____stream_724));// L759 -extern int (__fseeko_733) (__FILE_59 * (____stream_728), ____off_t_23 ____off_730, int ____whence_732);// L773 -extern int (__fseeko_744) (__FILE_59 * (____stream_739), ____off64_t_24 ____off_741, int ____whence_743);// L781:L783 -extern ____off_t_23 (__ftello_758) (__FILE_59 * (____stream_737));// L778 -extern ____off_t_23 (__ftello_750) (__FILE_59 * (____stream_737));// L778 -extern int (__fgetpos_766) (__FILE_59 * __restrict ____stream_762, __fpos_t_287 * __restrict ____pos_764);// L798 -extern ____off64_t_24 (__ftello_754) (__FILE_59 * (____stream_748));// L784 -extern int (__fgetpos_778) (__FILE_59 * __restrict ____stream_774, __fpos_t_289 * __restrict ____pos_776);// L806:L807 -extern int (__fsetpos_786) (__FILE_59 * (____stream_770), const __fpos_t_287 * (____pos_772));// L803 -extern int (__fsetpos_790) (__FILE_59 * (____stream_782), const __fpos_t_289 * (____pos_784));// L808:L809 -extern void (__clearerr_796) (__FILE_59 * (____stream_794));// L826 -extern int (__feof_800) (__FILE_59 * (____stream_798));// L828 -extern int (__feof_802) (__FILE_59 * (____stream_798));// L828 -extern int (__ferror_806) (__FILE_59 * (____stream_804));// L830 -extern int (__ferror_808) (__FILE_59 * (____stream_804));// L830 -extern void (__clearerr_unlocked_812) (__FILE_59 * (____stream_810));// L835 -extern int (__feof_unlocked_816) (__FILE_59 * (____stream_814));// L836 -extern int (__feof_unlocked_818) (__FILE_59 * (____stream_814));// L836 -extern int (__ferror_unlocked_822) (__FILE_59 * (____stream_820));// L837 -extern int (__ferror_unlocked_824) (__FILE_59 * (____stream_820));// L837 -extern void (__perror_827) (const char * (____s_826));// L846 -extern void (__perror_828) (const char * (____s_826));// L846 -extern int __sys_nerr_829;// L26 - -extern int (__fileno_835) (__FILE_59 * (____stream_831));// L858 -extern int (__fileno_833) (__FILE_59 * (____stream_831));// L858 -extern int (__fileno_unlocked_841) (__FILE_59 * (____stream_837));// L863 -extern int (__fileno_unlocked_839) (__FILE_59 * (____stream_837));// L863 -extern __FILE_59 * ((__popen_845) (const char * (____command_843), const char * (____modes_844)));// L872 -extern __FILE_59 * ((__popen_847) (const char * (____command_843), const char * (____modes_844)));// L872 -extern int (__pclose_851) (__FILE_59 * (____stream_849));// L878 -extern char * ((__ctermid_854) (char * (____s_853)));// L884 -extern void (__flockfile_857) (__FILE_59 * (____stream_855));// L912 -extern int (__ftrylockfile_861) (__FILE_59 * (____stream_859));// L916 -extern int (__ftrylockfile_863) (__FILE_59 * (____stream_859));// L916 -extern void (__funlockfile_867) (__FILE_59 * (____stream_865));// L919 +extern struct ___IO_FILE_95 * (__stdin_252);// L168 +extern struct ___IO_FILE_119 * (__stdin_253);// L168 +extern struct ___IO_FILE_95 * (__stdout_254);// L169 +extern struct ___IO_FILE_119 * (__stdout_255);// L169 +extern struct ___IO_FILE_95 * (__stderr_256);// L170 +extern struct ___IO_FILE_119 * (__stderr_257);// L170 +extern int (__remove_259) (const char * (____filename_258));// L178 +extern int (__rename_262) (const char * (____old_260), const char * (____new_261));// L180 +extern __FILE_58 * ((__tmpfile_263) (void ));// L195 +extern __FILE_58 * ((__tmpfile_269) (void ));// L198 +extern __FILE_58 * ((__tmpfile_267) (void ));// L198 +extern __FILE_58 * ((__tmpfile_265) (void ));// L195 +extern char * ((__tmpnam_272) (char * (____s_271)));// L209 +extern char * ((__tmpnam_273) (char * (____s_271)));// L209 +extern int (__fclose_276) (__FILE_58 * (____stream_274));// L237 +extern int (__fflush_280) (__FILE_58 * (____stream_278));// L242 +extern __FILE_58 * ((__fopen_283) (const char * __restrict ____filename_281, const char * __restrict ____modes_282));// L272:L273 +extern __FILE_58 * ((__fopen_285) (const char * __restrict ____filename_281, const char * __restrict ____modes_282));// L272:L273 +extern __FILE_58 * ((__fopen_293) (const char * __restrict ____filename_291, const char * __restrict ____modes_292));// L283:L285 +extern __FILE_58 * ((__fopen_295) (const char * __restrict ____filename_291, const char * __restrict ____modes_292));// L283:L285 +extern __FILE_58 * ((__freopen_301) (const char * __restrict ____filename_287, const char * __restrict ____modes_288, __FILE_58 * __restrict ____stream_289));// L278:L280 +extern __FILE_58 * ((__freopen_307) (const char * __restrict ____filename_297, const char * __restrict ____modes_298, __FILE_58 * __restrict ____stream_299));// L286:L289 +extern __FILE_58 * ((__freopen_305) (const char * __restrict ____filename_297, const char * __restrict ____modes_298, __FILE_58 * __restrict ____stream_299));// L286:L289 +extern __FILE_58 * ((__freopen_303) (const char * __restrict ____filename_287, const char * __restrict ____modes_288, __FILE_58 * __restrict ____stream_289));// L278:L280 +extern void (__setbuf_312) (__FILE_58 * __restrict ____stream_309, char * __restrict ____buf_311);// L332 +extern int (__setvbuf_318) (__FILE_58 * __restrict ____stream_313, char * __restrict ____buf_315, int ____modes_316, __size_t_1 ____n_317);// L336:L337 +extern int (__fprintf_322) (__FILE_58 * __restrict ____stream_319, const char * __restrict ____format_321, ... );// L356:L357 +extern int (__printf_324) (const char * __restrict ____format_323, ... );// L362 +extern int (__sprintf_327) (char * __restrict ____s_325, const char * __restrict ____format_326, ... );// L364:L365 +extern int (__vfprintf_333) (__FILE_58 * __restrict ____s_328, const char * __restrict ____format_330, ____gnuc_va_list_82 ____arg_331);// L371:L372 +extern int (__vprintf_340) (const char * __restrict ____format_337, ____gnuc_va_list_82 ____arg_338);// L377 +extern int (__vsprintf_346) (char * __restrict ____s_342, const char * __restrict ____format_343, ____gnuc_va_list_82 ____arg_344);// L379:L380 +extern int (__snprintf_350) (char * __restrict ____s_347, __size_t_1 ____maxlen_348, const char * __restrict ____format_349, ... );// L386:L388 +extern int (__vsnprintf_356) (char * __restrict ____s_351, __size_t_1 ____maxlen_352, const char * __restrict ____format_353, ____gnuc_va_list_82 ____arg_354);// L390:L392 +extern int (__fscanf_360) (__FILE_58 * __restrict ____stream_357, const char * __restrict ____format_359, ... );// L425:L426 +extern int (__fscanf_362) (__FILE_58 * __restrict ____stream_357, const char * __restrict ____format_359, ... );// L425:L426 +extern int (__scanf_365) (const char * __restrict ____format_364, ... );// L431 +extern int (__scanf_366) (const char * __restrict ____format_364, ... );// L431 +extern int (__sscanf_369) (const char * __restrict ____s_367, const char * __restrict ____format_368, ... );// L433:L434 + + + + + +extern int (__vfscanf_392) (__FILE_58 * __restrict ____s_387, const char * __restrict ____format_389, ____gnuc_va_list_82 ____arg_390);// L471:L473 +extern int (__vfscanf_396) (__FILE_58 * __restrict ____s_387, const char * __restrict ____format_389, ____gnuc_va_list_82 ____arg_390);// L471:L473 +extern int (__vscanf_403) (const char * __restrict ____format_400, ____gnuc_va_list_82 ____arg_401);// L479:L480 +extern int (__vscanf_405) (const char * __restrict ____format_400, ____gnuc_va_list_82 ____arg_401);// L479:L480 +extern int (__vsscanf_411) (const char * __restrict ____s_407, const char * __restrict ____format_408, ____gnuc_va_list_82 ____arg_409);// L483:L485 + + + + + +extern int (__fgetc_444) (__FILE_58 * (____stream_442));// L531 +extern int (__getc_447) (__FILE_58 * (____stream_445));// L532 +extern int (__getchar_448) (void );// L538 +extern int (__fputc_452) (int ____c_449, __FILE_58 * (____stream_450));// L573 +extern int (__putc_456) (int ____c_453, __FILE_58 * (____stream_454));// L574 +extern int (__putchar_458) (int ____c_457);// L580 +extern char * ((__fgets_463) (char * __restrict ____s_459, int ____n_460, __FILE_58 * __restrict ____stream_461));// L622:L623 +extern char * ((__fgets_465) (char * __restrict ____s_459, int ____n_460, __FILE_58 * __restrict ____stream_461));// L622:L623 +extern int (__fputs_470) (const char * __restrict ____s_467, __FILE_58 * __restrict ____stream_468);// L689 +extern int (__puts_472) (const char * (____s_471));// L695 +extern int (__ungetc_476) (int ____c_473, __FILE_58 * (____stream_474));// L702 +extern int (__fseek_496) (__FILE_58 * (____stream_492), long int ____off_494, int ____whence_495);// L749 +extern long int (__ftell_499) (__FILE_58 * (____stream_497));// L754 +extern long int (__ftell_501) (__FILE_58 * (____stream_497));// L754 +extern void (__rewind_505) (__FILE_58 * (____stream_503));// L759 +extern int (__fgetpos_510) (__FILE_58 * __restrict ____stream_506, __fpos_t_248 * __restrict ____pos_508);// L798 +extern int (__fgetpos_522) (__FILE_58 * __restrict ____stream_518, __fpos_t_250 * __restrict ____pos_520);// L806:L807 +extern int (__fsetpos_530) (__FILE_58 * (____stream_514), const __fpos_t_248 * (____pos_516));// L803 +extern int (__fsetpos_534) (__FILE_58 * (____stream_526), const __fpos_t_250 * (____pos_528));// L808:L809 +extern void (__clearerr_540) (__FILE_58 * (____stream_538));// L826 +extern int (__feof_543) (__FILE_58 * (____stream_541));// L828 +extern int (__feof_545) (__FILE_58 * (____stream_541));// L828 +extern int (__ferror_549) (__FILE_58 * (____stream_547));// L830 +extern int (__ferror_551) (__FILE_58 * (____stream_547));// L830 +extern void (__perror_554) (const char * (____s_553));// L846 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ +extern int (____sprintf_chk_564) (char * __restrict ____s_560, int ____flag_561, __size_t_1 ____slen_562, const char * __restrict ____format_563, ... );// L23:L24 +extern int (____vsprintf_chk_571) (char * __restrict ____s_565, int ____flag_566, __size_t_1 ____slen_567, const char * __restrict ____format_568, ____gnuc_va_list_82 ____ap_569);// L25:L27 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ +extern int (____snprintf_chk_585) (char * __restrict ____s_580, __size_t_1 ____n_581, int ____flag_582, __size_t_1 ____slen_583, const char * __restrict ____format_584, ... );// L52:L54 +extern int (____vsnprintf_chk_593) (char * __restrict ____s_586, __size_t_1 ____n_587, int ____flag_588, __size_t_1 ____slen_589, const char * __restrict ____format_590, ____gnuc_va_list_82 ____ap_591);// L55:L57 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ +extern int (____fprintf_chk_608) (__FILE_58 * __restrict ____stream_604, int ____flag_606, const char * __restrict ____format_607, ... );// L85:L86 +extern int (____printf_chk_612) (int ____flag_610, const char * __restrict ____format_611, ... );// L87 +extern int (____vfprintf_chk_619) (__FILE_58 * __restrict ____stream_613, int ____flag_615, const char * __restrict ____format_616, ____gnuc_va_list_82 ____ap_617);// L88:L89 +extern int (____vprintf_chk_627) (int ____flag_623, const char * __restrict ____format_624, ____gnuc_va_list_82 ____ap_625);// L90:L91 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____sprintf_chk_899) (char * __restrict ____s_895, int ____flag_896, __size_t_1 ____slen_897, const char * __restrict ____format_898, ... );// L23:L24 -extern int (____vsprintf_chk_906) (char * __restrict ____s_900, int ____flag_901, __size_t_1 ____slen_902, const char * __restrict ____format_903, ____gnuc_va_list_86 ____ap_904);// L25:L27 +extern char * ((____fgets_chk_651) (char * __restrict ____s_646, __size_t_1 ____size_647, int ____n_648, __FILE_58 * __restrict ____stream_649));// L241:L242 +extern char * ((____fgets_chk_653) (char * __restrict ____s_646, __size_t_1 ____size_647, int ____n_648, __FILE_58 * __restrict ____stream_649));// L241:L242 +extern char * ((____fgets_alias_659) (char * __restrict ____s_655, int ____n_656, __FILE_58 * __restrict ____stream_657));// L243:L245 +extern char * ((____fgets_chk_warn_666) (char * __restrict ____s_661, __size_t_1 ____size_662, int ____n_663, __FILE_58 * __restrict ____stream_664));// L246:L250 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____snprintf_chk_920) (char * __restrict ____s_915, __size_t_1 ____n_916, int ____flag_917, __size_t_1 ____slen_918, const char * __restrict ____format_919, ... );// L52:L54 -extern int (____vsnprintf_chk_928) (char * __restrict ____s_921, __size_t_1 ____n_922, int ____flag_923, __size_t_1 ____slen_924, const char * __restrict ____format_925, ____gnuc_va_list_86 ____ap_926);// L55:L57 -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -extern int (____fprintf_chk_943) (__FILE_59 * __restrict ____stream_939, int ____flag_941, const char * __restrict ____format_942, ... );// L85:L86 -extern int (____printf_chk_947) (int ____flag_945, const char * __restrict ____format_946, ... );// L87 -extern int (____vfprintf_chk_954) (__FILE_59 * __restrict ____stream_948, int ____flag_950, const char * __restrict ____format_951, ____gnuc_va_list_86 ____ap_952);// L88:L89 -extern int (____vprintf_chk_962) (int ____flag_958, const char * __restrict ____format_959, ____gnuc_va_list_86 ____ap_960);// L90:L91 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern __size_t_1 (____ctype_get_mb_cur_max_721) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_722) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_723) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_724) (void );// L139 +extern double (__atof_726) (const char * (____nptr_725));// L144:L145 +extern double (__atof_727) (const char * (____nptr_725));// L144:L145 +extern int (__atoi_729) (const char * (____nptr_728));// L147:L148 +extern int (__atoi_730) (const char * (____nptr_728));// L147:L148 +extern long int (__atol_732) (const char * (____nptr_731));// L150:L151 +extern long int (__atol_733) (const char * (____nptr_731));// L150:L151 +extern long long int (__atoll_735) (const char * (____nptr_734));// L157:L158 +extern long long int (__atoll_736) (const char * (____nptr_734));// L157:L158 +extern double (__strtod_739) (const char * __restrict ____nptr_737, char * (* __restrict ____endptr_738));// L164:L166 +extern float (__strtof_742) (const char * __restrict ____nptr_740, char * (* __restrict ____endptr_741));// L172:L173 +extern long double (__strtold_745) (const char * __restrict ____nptr_743, char * (* __restrict ____endptr_744));// L175:L177 +extern long int (__strtol_749) (const char * __restrict ____nptr_746, char * (* __restrict ____endptr_747), int ____base_748);// L183:L185 +extern unsigned long int (__strtoul_753) (const char * __restrict ____nptr_750, char * (* __restrict ____endptr_751), int ____base_752);// L187:L189 +extern long long int (__strtoll_757) (const char * __restrict ____nptr_754, char * (* __restrict ____endptr_755), int ____base_756);// L209:L211 +extern unsigned long long int (__strtoull_761) (const char * __restrict ____nptr_758, char * (* __restrict ____endptr_759), int ____base_760);// L214:L216 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ +__extension__/* no function due to type errors in the function prototype */ +extern int (__rand_765) (void );// L374 +extern int (__rand_766) (void );// L374 +extern void (__srand_768) (unsigned int ____seed_767);// L376 +extern void * ((__malloc_770) (__size_t_1 ____size_769));// L466 +extern void * ((__malloc_771) (__size_t_1 ____size_769));// L466 +extern void * ((__calloc_774) (__size_t_1 ____nmemb_772, __size_t_1 ____size_773));// L468:L469 +extern void * ((__calloc_775) (__size_t_1 ____nmemb_772, __size_t_1 ____size_773));// L468:L469 +extern void * ((__realloc_778) (void * (____ptr_776), __size_t_1 ____size_777));// L480:L481 +extern void (__free_780) (void * (____ptr_779));// L483 +extern void * ((__aligned_alloc_783) (__size_t_1 ____alignment_781, __size_t_1 ____size_782));// L509:L510 +extern void * ((__aligned_alloc_784) (__size_t_1 ____alignment_781, __size_t_1 ____size_782));// L509:L510 +extern void (__abort_785) (void );// L515 +extern int (__atexit_787) (void (* (____func_786)) (void ));// L519 +extern int (__at_quick_exit_789) (void (* (____func_788)) (void ));// L527 +extern void (__exit_791) (int ____status_790);// L543 +extern void (__quick_exit_793) (int ____status_792);// L549 +extern void (___Exit_795) (int ____status_794);// L557 +extern char * ((__getenv_797) (const char * (____name_796)));// L564 +extern char * ((__getenv_798) (const char * (____name_796)));// L564 +extern int (__system_800) (const char * (____command_799));// L716 +extern int (__system_801) (const char * (____command_799));// L716 +// typedef moved to top of scope +extern void * ((__bsearch_810) (const void * (____key_803), const void * (____base_804), __size_t_1 ____nmemb_805, __size_t_1 ____size_806, ____compar_fn_t_802 ____compar_807));// L754:L756 +extern void * ((__bsearch_812) (const void * (____key_803), const void * (____base_804), __size_t_1 ____nmemb_805, __size_t_1 ____size_806, ____compar_fn_t_802 ____compar_807));// L754:L756 /* no function due to type errors in the function prototype */ +extern void (__qsort_831) (void * (____base_826), __size_t_1 ____nmemb_827, __size_t_1 ____size_828, ____compar_fn_t_802 ____compar_829);// L764:L765 +extern void (__qsort_833) (void * (____base_826), __size_t_1 ____nmemb_827, __size_t_1 ____size_828, ____compar_fn_t_802 ____compar_829);// L764:L765 +extern int (__abs_836) (int ____x_835);// L774 +extern int (__abs_837) (int ____x_835);// L774 +extern long int (__labs_839) (long int ____x_838);// L775 +extern long int (__labs_840) (long int ____x_838);// L775 +extern long long int (__llabs_842) (long long int ____x_841);// L779:L780 +extern long long int (__llabs_843) (long long int ____x_841);// L779:L780 +extern __div_t_710 (__div_846) (int ____numer_844, int ____denom_845);// L788:L789 +extern __div_t_710 (__div_847) (int ____numer_844, int ____denom_845);// L788:L789 +extern __ldiv_t_715 (__ldiv_850) (long int ____numer_848, long int ____denom_849);// L790:L791 +extern __ldiv_t_715 (__ldiv_852) (long int ____numer_848, long int ____denom_849);// L790:L791 +extern __lldiv_t_720 (__lldiv_856) (long long int ____numer_854, long long int ____denom_855);// L796:L798 +extern __lldiv_t_720 (__lldiv_858) (long long int ____numer_854, long long int ____denom_855);// L796:L798 +extern int (__mblen_862) (const char * (____s_860), __size_t_1 ____n_861);// L862 +extern int (__mbtowc_867) (__wchar_t_704 * __restrict ____pwc_863, const char * __restrict ____s_865, __size_t_1 ____n_866);// L865:L866 +extern int (__mbtowc_868) (__wchar_t_705 * __restrict ____pwc_864, const char * __restrict ____s_865, __size_t_1 ____n_866);// L865:L866 +extern int (__wctomb_872) (char * (____s_869), __wchar_t_704 ____wchar_870);// L869 +extern int (__wctomb_873) (char * (____s_869), __wchar_t_705 ____wchar_871);// L869 +extern __size_t_1 (__mbstowcs_878) (__wchar_t_704 * __restrict ____pwcs_874, const char * __restrict ____s_876, __size_t_1 ____n_877);// L873:L874 +extern __size_t_1 (__mbstowcs_879) (__wchar_t_705 * __restrict ____pwcs_875, const char * __restrict ____s_876, __size_t_1 ____n_877);// L873:L874 +extern __size_t_1 (__wcstombs_884) (char * __restrict ____s_880, const __wchar_t_704 * __restrict ____pwcs_881, __size_t_1 ____n_883);// L876:L878 +extern __size_t_1 (__wcstombs_885) (char * __restrict ____s_880, const __wchar_t_705 * __restrict ____pwcs_882, __size_t_1 ____n_883);// L876:L878 /* no function due to type errors in the function prototype */ -extern int (____dprintf_chk_984) (int ____fd_981, int ____flag_982, const char * __restrict ____fmt_983, ... );// L131:L132 -extern int (____vdprintf_chk_990) (int ____fd_985, int ____flag_986, const char * __restrict ____fmt_987, ____gnuc_va_list_86 ____arg_988);// L133:L135 +extern char * ((____realpath_chk_890) (const char * __restrict ____name_887, char * __restrict ____resolved_888, __size_t_1 ____resolvedlen_889));// L23:L25 +extern char * ((____realpath_alias_893) (const char * __restrict ____name_891, char * __restrict ____resolved_892));// L26:L28 +extern char * ((____realpath_chk_warn_897) (const char * __restrict ____name_894, char * __restrict ____resolved_895, __size_t_1 ____resolvedlen_896));// L29:L34 /* no function due to type errors in the function prototype */ +extern int (____ptsname_r_chk_905) (int ____fd_901, char * (____buf_902), __size_t_1 ____buflen_903, __size_t_1 ____nreal_904);// L52:L53 +extern int (____ptsname_r_alias_909) (int ____fd_906, char * (____buf_907), __size_t_1 ____buflen_908);// L54:L56 +extern int (____ptsname_r_chk_warn_914) (int ____fd_910, char * (____buf_911), __size_t_1 ____buflen_912, __size_t_1 ____nreal_913);// L57:L61 /* no function due to type errors in the function prototype */ -extern char * ((____fgets_chk_1004) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 -extern char * ((____fgets_chk_1006) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 -extern char * ((____fgets_chk_1008) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 -extern char * ((____fgets_alias_1014) (char * __restrict ____s_1010, int ____n_1011, __FILE_59 * __restrict ____stream_1012));// L243:L245 -extern char * ((____fgets_chk_warn_1021) (char * __restrict ____s_1016, __size_t_1 ____size_1017, int ____n_1018, __FILE_59 * __restrict ____stream_1019));// L246:L250 +extern int (____wctomb_chk_922) (char * (____s_919), __wchar_t_705 ____wchar_920, __size_t_1 ____buflen_921);// L77:L78 +extern int (____wctomb_alias_925) (char * (____s_923), __wchar_t_705 ____wchar_924);// L79:L80 /* no function due to type errors in the function prototype */ +extern __size_t_1 (____mbstowcs_chk_932) (__wchar_t_705 * __restrict ____dst_928, const char * __restrict ____src_929, __size_t_1 ____len_930, __size_t_1 ____dstlen_931);// L98:L100 +extern __size_t_1 (____mbstowcs_alias_936) (__wchar_t_705 * __restrict ____dst_933, const char * __restrict ____src_934, __size_t_1 ____len_935);// L101:L104 +extern __size_t_1 (____mbstowcs_chk_warn_941) (__wchar_t_705 * __restrict ____dst_937, const char * __restrict ____src_938, __size_t_1 ____len_939, __size_t_1 ____dstlen_940);// L105:L110 /* no function due to type errors in the function prototype */ +extern __size_t_1 (____wcstombs_chk_949) (char * __restrict ____dst_945, const __wchar_t_705 * __restrict ____src_946, __size_t_1 ____len_947, __size_t_1 ____dstlen_948);// L130:L132 +extern __size_t_1 (____wcstombs_alias_953) (char * __restrict ____dst_950, const __wchar_t_705 * __restrict ____src_951, __size_t_1 ____len_952);// L133:L136 +extern __size_t_1 (____wcstombs_chk_warn_958) (char * __restrict ____dst_954, const __wchar_t_705 * __restrict ____src_955, __size_t_1 ____len_956, __size_t_1 ____dstlen_957);// L137:L141 /* no function due to type errors in the function prototype */ -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -static __inline unsigned int (____bswap_32_1158) (unsigned int ____bsx_1157) { +struct __dnode_963 ;// L4 +void (__dfree_969) (struct __dnode_963 * (* (__arr_966))) { -if (__static_condition_default_1159) { +if (__static_condition_default_970) { { { -__static_type_error("invalid type found in return expression"); +struct __dnode_963 * (__cur_967);// L12 + +struct __dnode_963 * (__next_968);// L12 + +if ( __arr_966 == ( ( void * ) 0 ) )// L14 +{ +return ;// L15 +} + __cur_967 = __arr_966 [ 0 ] ; // L17 +while ( __cur_967 != ( ( void * ) 0 ) )// L18 +{ + +{ +{ + + + + __next_968 = __cur_967 -> __next_965 ; // L19 +free ( __cur_967 ) ; // L20 + __cur_967 = __next_968 ; // L21 +} +} +} } } } } -static __inline ____uint64_t_13 (____bswap_64_1162) (____uint64_t_13 ____bsx_1160) { +void (__showdirs_973) (struct __dnode_963 * (* (__arr_971))) { + +{ +if (__static_condition_default_975) { + +{ +{ -if (__static_condition_default_1164) { + + +{ int __i_972= 0;// L28 + for ( ; __i_972 < 5 ; ++ __i_972 ) // L28 +{ { { -__static_type_error("invalid type found in return expression"); + __printf_324 ("\n%d", __arr_971 [ __i_972 ] -> __val_964) ; // L29 +} } } +} +} +} + + +} + +}} +void (__showdirs_974) (struct __dnode_963 * (* (__arr_971))) { +{ +if (__static_condition_default_976) { + +{ +{ + + + +{ int __i_972= 0;// L28 + for ( ; __i_972 < 5 ; ++ __i_972 ) // L28 +{ +{ +{ + + + + __printf_324 ("\n%d", __arr_971 [ __i_972 ] -> __val_964) ; // L29 +} +} +} } + __dfree_969 ( __arr_971 ) ; // L33 } -static __inline ____uint64_t_1112 (____bswap_64_1163) (____uint64_t_1112 ____bsx_1161) { +} + + +} + +}} +int (__main_987) (int __argc_977, char * (* (__argv_978))) { + +{ +{ + + + +struct __dnode_963 * (__curr_979);// L60 -if (__static_condition_default_1165) { +struct __dnode_963 * (__head_980);// L60 + +const int __size_981= 5;// L61 + +struct __dnode_963 * (__arr_982[ __size_981 ]);// L62 + +{ int __i_983= 0;// L64 + for ( ; __i_983 < __size_981 ; __i_983 ++ ) // L64 +{ { { +struct { typeof( int ) __tmp_984; typeof( struct __forward_tag_reference_962 *) __tmp_985; }__sizeofStandin_986; -__static_type_error("invalid type found in return expression"); +if (__static_condition_default_381) { + __curr_979 = ( struct __dnode_963 * ) malloc (sizeof(typeof(__sizeofStandin_986))) ; // L65 } +if (__static_condition_default_988) { + __curr_979 = ( struct __dnode_963 * ) malloc (sizeof(typeof(__sizeofStandin_986))) ; // L65 } +if (__static_condition_default_989) { + __curr_979 -> __val_964 = rand( ) % 10 ; // L66 +} +if (__static_condition_default_990) { + __curr_979 -> __val_964 = rand( ) % 10 ; // L66 +} + __curr_979 -> __next_965 = __head_980 ; // L67 + __head_980 = __curr_979 ; // L68 + __arr_982 [ ( __size_981 - 1 ) - __i_983 ] = __curr_979 ; // L69 +} +} +} +} +if (__static_condition_default_989) { +if ( rand( ) % 2 )// L72 +{ + +{ +{ + +if (__static_condition_default_991) { + __showdirs_973 ( __arr_982 ) ; // L76 } +if (__static_condition_default_992) { + __showdirs_974 ( __arr_982 ) ; // L76 } -union __wait_1177 ;// L66 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern __size_t_1 (____ctype_get_mb_cur_max_1201) (void );// L139 -extern __size_t_1093 (____ctype_get_mb_cur_max_1202) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_1203) (void );// L139 -extern __size_t_1093 (____ctype_get_mb_cur_max_1204) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_1205) (void );// L139 -extern __size_t_1093 (____ctype_get_mb_cur_max_1206) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_1207) (void );// L139 -extern __size_t_1093 (____ctype_get_mb_cur_max_1208) (void );// L139 -extern double (__atof_1210) (const char * (____nptr_1209));// L144:L145 -extern double (__atof_1211) (const char * (____nptr_1209));// L144:L145 -extern int (__atoi_1213) (const char * (____nptr_1212));// L147:L148 -extern int (__atoi_1214) (const char * (____nptr_1212));// L147:L148 -extern long int (__atol_1216) (const char * (____nptr_1215));// L150:L151 -extern long int (__atol_1217) (const char * (____nptr_1215));// L150:L151 -extern long long int (__atoll_1219) (const char * (____nptr_1218));// L157:L158 -extern long long int (__atoll_1220) (const char * (____nptr_1218));// L157:L158 -extern double (__strtod_1223) (const char * __restrict ____nptr_1221, char * (* __restrict ____endptr_1222));// L164:L166 -extern float (__strtof_1226) (const char * __restrict ____nptr_1224, char * (* __restrict ____endptr_1225));// L172:L173 -extern long double (__strtold_1229) (const char * __restrict ____nptr_1227, char * (* __restrict ____endptr_1228));// L175:L177 -extern long int (__strtol_1233) (const char * __restrict ____nptr_1230, char * (* __restrict ____endptr_1231), int ____base_1232);// L183:L185 -extern unsigned long int (__strtoul_1237) (const char * __restrict ____nptr_1234, char * (* __restrict ____endptr_1235), int ____base_1236);// L187:L189 -extern long long int (__strtoq_1241) (const char * __restrict ____nptr_1238, char * (* __restrict ____endptr_1239), int ____base_1240);// L195:L197 -extern unsigned long long int (__strtouq_1245) (const char * __restrict ____nptr_1242, char * (* __restrict ____endptr_1243), int ____base_1244);// L200:L202 -extern long long int (__strtoll_1249) (const char * __restrict ____nptr_1246, char * (* __restrict ____endptr_1247), int ____base_1248);// L209:L211 -extern long long int (__strtoll_1250) (const char * __restrict ____nptr_1246, char * (* __restrict ____endptr_1247), int ____base_1248);// L209:L211 -extern unsigned long long int (__strtoull_1254) (const char * __restrict ____nptr_1251, char * (* __restrict ____endptr_1252), int ____base_1253);// L214:L216 -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -__extension__/* no function due to type errors in the function prototype */ -extern char * ((__l64a_1259) (long int ____n_1258));// L305 -extern char * ((__l64a_1260) (long int ____n_1258));// L305 -extern long int (__a64l_1262) (const char * (____s_1261));// L308:L309 -extern long int (__a64l_1263) (const char * (____s_1261));// L308:L309 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -static __inline unsigned int (____bswap_32_1452) (unsigned int ____bsx_1451) { - -if (__static_condition_default_1453) { - -{ -{ - - - -__static_type_error("invalid type found in return expression"); -} -} - - } } -static __inline ____uint64_t_13 (____bswap_64_1456) (____uint64_t_13 ____bsx_1454) { - -if (__static_condition_default_1458) { - -{ -{ - - - -__static_type_error("invalid type found in return expression"); } } - - -} -} -static __inline ____uint64_t_1275 (____bswap_64_1457) (____uint64_t_1275 ____bsx_1455) { - -if (__static_condition_default_1459) { - -{ -{ - - - -__static_type_error("invalid type found in return expression"); -} -} - - -} -} -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -struct __timespec_1466 ;// L120 - -struct __timeval_1476 ;// L30 - -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern int (__select_1513) (int ____nfds_1502, __fd_set_1499 * __restrict ____readfds_1503, __fd_set_1499 * __restrict ____writefds_1505, __fd_set_1499 * __restrict ____exceptfds_1507, struct __timeval_1476 * __restrict ____timeout_1510);// L106:L109 -extern int (__select_1514) (int ____nfds_1502, __fd_set_1499 * __restrict ____readfds_1503, __fd_set_1499 * __restrict ____writefds_1505, __fd_set_1499 * __restrict ____exceptfds_1507, struct __forward_tag_reference_1509 * __restrict ____timeout_1512);// L106:L109 -extern int (__pselect_1529) (int ____nfds_1517, __fd_set_1499 * __restrict ____readfds_1518, __fd_set_1499 * __restrict ____writefds_1520, __fd_set_1499 * __restrict ____exceptfds_1522, const struct __timespec_1466 * __restrict ____timeout_1525, const ____sigset_t_1464 * __restrict ____sigmask_1528);// L118:L122 -extern int (__pselect_1530) (int ____nfds_1517, __fd_set_1499 * __restrict ____readfds_1518, __fd_set_1499 * __restrict ____writefds_1520, __fd_set_1499 * __restrict ____exceptfds_1522, const struct __forward_tag_reference_1524 * __restrict ____timeout_1527, const ____sigset_t_1464 * __restrict ____sigmask_1528);// L118:L122 -extern long int (____fdelt_chk_1534) (long int ____d_1533);// L24 -extern long int (____fdelt_warn_1536) (long int ____d_1535);// L25:L26 -extern unsigned int (__gnu_dev_major_1538) (unsigned long long int ____dev_1537);// L27:L28 -extern unsigned int (__gnu_dev_major_1539) (unsigned long long int ____dev_1537);// L27:L28 -extern unsigned int (__gnu_dev_minor_1541) (unsigned long long int ____dev_1540);// L30:L31 -extern unsigned long long int (__gnu_dev_makedev_1544) (unsigned int ____major_1542, unsigned int ____minor_1543);// L33:L35 -__extension__/* no function due to type errors in the function prototype */ -__extension__/* no function due to type errors in the function prototype */ -__extension__/* no function due to type errors in the function prototype */ -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -union __pthread_attr_t_1578 ;// L63 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern int (__rand_1609) (void );// L374 -extern void (__srand_1611) (unsigned int ____seed_1610);// L376 -extern int (__rand_r_1613) (unsigned int * (____seed_1612));// L381 -extern double (__drand48_1614) (void );// L389 -extern double (__erand48_1616) (unsigned short int ____xsubi_1615[3]);// L390 -extern long int (__lrand48_1617) (void );// L393 -extern long int (__nrand48_1619) (unsigned short int ____xsubi_1618[3]);// L394:L395 -extern long int (__mrand48_1620) (void );// L398 -extern long int (__jrand48_1622) (unsigned short int ____xsubi_1621[3]);// L399:L400 -extern void (__srand48_1624) (long int ____seedval_1623);// L403 -extern unsigned short int * ((__seed48_1626) (unsigned short int ____seed16v_1625[3]));// L404:L405 -extern void (__lcong48_1628) (unsigned short int ____param_1627[7]);// L406 -extern void * ((__malloc_1631) (__size_t_1 ____size_1629));// L466 -extern void * ((__malloc_1632) (__size_t_1093 ____size_1630));// L466 -extern void * ((__malloc_1633) (__size_t_1 ____size_1629));// L466 -extern void * ((__malloc_1634) (__size_t_1093 ____size_1630));// L466 -extern void * ((__calloc_1639) (__size_t_1 ____nmemb_1635, __size_t_1 ____size_1637));// L468:L469 -extern void * ((__calloc_1640) (__size_t_1093 ____nmemb_1636, __size_t_1093 ____size_1638));// L468:L469 -extern void * ((__calloc_1641) (__size_t_1 ____nmemb_1635, __size_t_1 ____size_1637));// L468:L469 -extern void * ((__calloc_1642) (__size_t_1093 ____nmemb_1636, __size_t_1093 ____size_1638));// L468:L469 -extern void * ((__realloc_1646) (void * (____ptr_1643), __size_t_1 ____size_1644));// L480:L481 -extern void * ((__realloc_1647) (void * (____ptr_1643), __size_t_1093 ____size_1645));// L480:L481 -extern void (__free_1649) (void * (____ptr_1648));// L483 -extern void (__cfree_1651) (void * (____ptr_1650));// L488 -extern void * ((__alloca_1654) (__size_t_1 ____size_1652));// L32 -extern void * ((__alloca_1655) (__size_t_1093 ____size_1653));// L32 -extern void * ((__valloc_1658) (__size_t_1 ____size_1656));// L498 -extern void * ((__valloc_1659) (__size_t_1093 ____size_1657));// L498 -extern void * ((__valloc_1660) (__size_t_1 ____size_1656));// L498 -extern void * ((__valloc_1661) (__size_t_1093 ____size_1657));// L498 -extern int (__posix_memalign_1667) (void * (* (____memptr_1662)), __size_t_1 ____alignment_1663, __size_t_1 ____size_1665);// L503:L504 -extern int (__posix_memalign_1668) (void * (* (____memptr_1662)), __size_t_1093 ____alignment_1664, __size_t_1093 ____size_1666);// L503:L504 -extern int (__posix_memalign_1669) (void * (* (____memptr_1662)), __size_t_1 ____alignment_1663, __size_t_1 ____size_1665);// L503:L504 -extern int (__posix_memalign_1670) (void * (* (____memptr_1662)), __size_t_1093 ____alignment_1664, __size_t_1093 ____size_1666);// L503:L504 -extern void * ((__aligned_alloc_1675) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 -extern void * ((__aligned_alloc_1676) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 -extern void * ((__aligned_alloc_1677) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 -extern void * ((__aligned_alloc_1678) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 -extern void * ((__aligned_alloc_1679) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 -extern void * ((__aligned_alloc_1680) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 -extern void * ((__aligned_alloc_1681) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 -extern void * ((__aligned_alloc_1682) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 -extern void (__abort_1683) (void );// L515 -extern int (__atexit_1685) (void (* (____func_1684)) (void ));// L519 -extern int (__at_quick_exit_1687) (void (* (____func_1686)) (void ));// L527 -extern int (__on_exit_1692) (void (* (____func_1690)) (int ____status_1688, void * (____arg_1689)), void * (____arg_1691));// L535:L536 -extern void (__exit_1694) (int ____status_1693);// L543 -extern void (__exit_1695) (int ____status_1693);// L543 -extern void (__quick_exit_1697) (int ____status_1696);// L549 -extern void (___Exit_1699) (int ____status_1698);// L557 -extern char * ((__getenv_1701) (const char * (____name_1700)));// L564 -extern char * ((__getenv_1702) (const char * (____name_1700)));// L564 -extern int (__putenv_1704) (char * (____string_1703));// L578 -extern int (__setenv_1708) (const char * (____name_1705), const char * (____value_1706), int ____replace_1707);// L584:L585 -extern int (__unsetenv_1710) (const char * (____name_1709));// L588 -extern int (__clearenv_1711) (void );// L595 -extern char * ((__mktemp_1713) (char * (____template_1712)));// L606 -extern int (__mkstemp_1716) (char * (____template_1714));// L619 -extern int (__mkstemp_1718) (char * (____template_1714));// L619 -extern int (__mkstemp_1717) (char * (____template_1715));// L622:L623 -extern int (__mkstemp_1719) (char * (____template_1715));// L622:L623 -extern int (__mkstemps_1724) (char * (____template_1720), int ____suffixlen_1721);// L641 -extern int (__mkstemps_1725) (char * (____template_1722), int ____suffixlen_1723);// L644:L645 -extern int (__mkstemps_1726) (char * (____template_1720), int ____suffixlen_1721);// L641 -extern int (__mkstemps_1727) (char * (____template_1722), int ____suffixlen_1723);// L644:L645 -extern char * ((__mkdtemp_1729) (char * (____template_1728)));// L662 -extern char * ((__mkdtemp_1730) (char * (____template_1728)));// L662 -extern int (__system_1732) (const char * (____command_1731));// L716 -extern int (__system_1733) (const char * (____command_1731));// L716 -extern int (__system_1734) (const char * (____command_1731));// L716 -extern int (__system_1735) (const char * (____command_1731));// L716 -extern char * ((__realpath_1738) (const char * __restrict ____name_1736, char * __restrict ____resolved_1737));// L733:L734 -extern char * ((__realpath_1739) (const char * __restrict ____name_1736, char * __restrict ____resolved_1737));// L733:L734 -// typedef moved to top of scope -extern void * ((__bsearch_1751) (const void * (____key_1741), const void * (____base_1742), __size_t_1 ____nmemb_1743, __size_t_1 ____size_1745, ____compar_fn_t_1740 ____compar_1747));// L754:L756 -extern void * ((__bsearch_1752) (const void * (____key_1741), const void * (____base_1742), __size_t_1093 ____nmemb_1744, __size_t_1093 ____size_1746, ____compar_fn_t_1740 ____compar_1747));// L754:L756 -extern void * ((__bsearch_1755) (const void * (____key_1741), const void * (____base_1742), __size_t_1 ____nmemb_1743, __size_t_1 ____size_1745, ____compar_fn_t_1740 ____compar_1747));// L754:L756 -extern void * ((__bsearch_1756) (const void * (____key_1741), const void * (____base_1742), __size_t_1093 ____nmemb_1744, __size_t_1093 ____size_1746, ____compar_fn_t_1740 ____compar_1747));// L754:L756 -/* no function due to type errors in the function prototype */ -extern void (__qsort_1784) (void * (____base_1777), __size_t_1 ____nmemb_1778, __size_t_1 ____size_1780, ____compar_fn_t_1740 ____compar_1782);// L764:L765 -extern void (__qsort_1786) (void * (____base_1777), __size_t_1093 ____nmemb_1779, __size_t_1093 ____size_1781, ____compar_fn_t_1740 ____compar_1782);// L764:L765 -extern void (__qsort_1788) (void * (____base_1777), __size_t_1 ____nmemb_1778, __size_t_1 ____size_1780, ____compar_fn_t_1740 ____compar_1782);// L764:L765 -extern void (__qsort_1790) (void * (____base_1777), __size_t_1093 ____nmemb_1779, __size_t_1093 ____size_1781, ____compar_fn_t_1740 ____compar_1782);// L764:L765 -extern int (__abs_1793) (int ____x_1792);// L774 -extern int (__abs_1794) (int ____x_1792);// L774 -extern long int (__labs_1796) (long int ____x_1795);// L775 -extern long int (__labs_1797) (long int ____x_1795);// L775 -extern long long int (__llabs_1799) (long long int ____x_1798);// L779:L780 -extern long long int (__llabs_1800) (long long int ____x_1798);// L779:L780 -extern __div_t_1190 (__div_1803) (int ____numer_1801, int ____denom_1802);// L788:L789 -extern __div_t_1190 (__div_1804) (int ____numer_1801, int ____denom_1802);// L788:L789 -extern __ldiv_t_1195 (__ldiv_1807) (long int ____numer_1805, long int ____denom_1806);// L790:L791 -extern __ldiv_t_1195 (__ldiv_1809) (long int ____numer_1805, long int ____denom_1806);// L790:L791 -extern __lldiv_t_1200 (__lldiv_1813) (long long int ____numer_1811, long long int ____denom_1812);// L796:L798 -extern __lldiv_t_1200 (__lldiv_1815) (long long int ____numer_1811, long long int ____denom_1812);// L796:L798 -extern char * ((__ecvt_1821) (double ____value_1817, int ____ndigit_1818, int * __restrict ____decpt_1819, int * __restrict ____sign_1820));// L811:L812 -extern char * ((__ecvt_1822) (double ____value_1817, int ____ndigit_1818, int * __restrict ____decpt_1819, int * __restrict ____sign_1820));// L811:L812 -extern char * ((__fcvt_1827) (double ____value_1823, int ____ndigit_1824, int * __restrict ____decpt_1825, int * __restrict ____sign_1826));// L817:L818 -extern char * ((__fcvt_1828) (double ____value_1823, int ____ndigit_1824, int * __restrict ____decpt_1825, int * __restrict ____sign_1826));// L817:L818 -extern char * ((__gcvt_1832) (double ____value_1829, int ____ndigit_1830, char * (____buf_1831)));// L823:L824 -extern char * ((__gcvt_1833) (double ____value_1829, int ____ndigit_1830, char * (____buf_1831)));// L823:L824 -extern char * ((__qecvt_1838) (long double ____value_1834, int ____ndigit_1835, int * __restrict ____decpt_1836, int * __restrict ____sign_1837));// L829:L831 -extern char * ((__qecvt_1839) (long double ____value_1834, int ____ndigit_1835, int * __restrict ____decpt_1836, int * __restrict ____sign_1837));// L829:L831 -extern char * ((__qfcvt_1844) (long double ____value_1840, int ____ndigit_1841, int * __restrict ____decpt_1842, int * __restrict ____sign_1843));// L832:L834 -extern char * ((__qfcvt_1845) (long double ____value_1840, int ____ndigit_1841, int * __restrict ____decpt_1842, int * __restrict ____sign_1843));// L832:L834 -extern char * ((__qgcvt_1849) (long double ____value_1846, int ____ndigit_1847, char * (____buf_1848)));// L835:L836 -extern char * ((__qgcvt_1850) (long double ____value_1846, int ____ndigit_1847, char * (____buf_1848)));// L835:L836 -extern int (__ecvt_r_1858) (double ____value_1851, int ____ndigit_1852, int * __restrict ____decpt_1853, int * __restrict ____sign_1854, char * __restrict ____buf_1855, __size_t_1 ____len_1856);// L841:L843 -extern int (__ecvt_r_1859) (double ____value_1851, int ____ndigit_1852, int * __restrict ____decpt_1853, int * __restrict ____sign_1854, char * __restrict ____buf_1855, __size_t_1093 ____len_1857);// L841:L843 -extern int (__fcvt_r_1867) (double ____value_1860, int ____ndigit_1861, int * __restrict ____decpt_1862, int * __restrict ____sign_1863, char * __restrict ____buf_1864, __size_t_1 ____len_1865);// L844:L846 -extern int (__fcvt_r_1868) (double ____value_1860, int ____ndigit_1861, int * __restrict ____decpt_1862, int * __restrict ____sign_1863, char * __restrict ____buf_1864, __size_t_1093 ____len_1866);// L844:L846 -extern int (__qecvt_r_1876) (long double ____value_1869, int ____ndigit_1870, int * __restrict ____decpt_1871, int * __restrict ____sign_1872, char * __restrict ____buf_1873, __size_t_1 ____len_1874);// L848:L851 -extern int (__qecvt_r_1877) (long double ____value_1869, int ____ndigit_1870, int * __restrict ____decpt_1871, int * __restrict ____sign_1872, char * __restrict ____buf_1873, __size_t_1093 ____len_1875);// L848:L851 -extern int (__qfcvt_r_1885) (long double ____value_1878, int ____ndigit_1879, int * __restrict ____decpt_1880, int * __restrict ____sign_1881, char * __restrict ____buf_1882, __size_t_1 ____len_1883);// L852:L855 -extern int (__qfcvt_r_1886) (long double ____value_1878, int ____ndigit_1879, int * __restrict ____decpt_1880, int * __restrict ____sign_1881, char * __restrict ____buf_1882, __size_t_1093 ____len_1884);// L852:L855 -extern int (__mblen_1890) (const char * (____s_1887), __size_t_1 ____n_1888);// L862 -extern int (__mblen_1891) (const char * (____s_1887), __size_t_1093 ____n_1889);// L862 -extern int (__mblen_1892) (const char * (____s_1887), __size_t_1 ____n_1888);// L862 -extern int (__mblen_1893) (const char * (____s_1887), __size_t_1093 ____n_1889);// L862 -extern int (__mbtowc_1898) (__wchar_t_1094 * __restrict ____pwc_1894, const char * __restrict ____s_1895, __size_t_1 ____n_1896);// L865:L866 -extern int (__mbtowc_1899) (__wchar_t_1094 * __restrict ____pwc_1894, const char * __restrict ____s_1895, __size_t_1093 ____n_1897);// L865:L866 -extern int (__wctomb_1902) (char * (____s_1900), __wchar_t_1094 ____wchar_1901);// L869 -extern __size_t_1 (__mbstowcs_1907) (__wchar_t_1094 * __restrict ____pwcs_1903, const char * __restrict ____s_1904, __size_t_1 ____n_1905);// L873:L874 -extern __size_t_1093 (__mbstowcs_1908) (__wchar_t_1094 * __restrict ____pwcs_1903, const char * __restrict ____s_1904, __size_t_1093 ____n_1906);// L873:L874 -extern __size_t_1 (__wcstombs_1913) (char * __restrict ____s_1909, const __wchar_t_1094 * __restrict ____pwcs_1910, __size_t_1 ____n_1911);// L876:L878 -extern __size_t_1093 (__wcstombs_1914) (char * __restrict ____s_1909, const __wchar_t_1094 * __restrict ____pwcs_1910, __size_t_1093 ____n_1912);// L876:L878 -extern int (__rpmatch_1917) (const char * (____response_1915));// L887 -extern int (__rpmatch_1916) (const char * (____response_1915));// L887 -extern int (__getsubopt_1922) (char * (* __restrict ____optionp_1918), char * const * __restrict ____tokens_1919, char * (* __restrict ____valuep_1920));// L898:L901 -extern int (__getsubopt_1921) (char * (* __restrict ____optionp_1918), char * const * __restrict ____tokens_1919, char * (* __restrict ____valuep_1920));// L898:L901 -extern int (__getloadavg_1925) (double ____loadavg_1923[], int ____nelem_1924);// L950:L951 -/* no function due to type errors in the function prototype */ -extern char * ((____realpath_chk_1931) (const char * __restrict ____name_1927, char * __restrict ____resolved_1928, __size_t_1 ____resolvedlen_1929));// L23:L25 -extern char * ((____realpath_chk_1932) (const char * __restrict ____name_1927, char * __restrict ____resolved_1928, __size_t_1093 ____resolvedlen_1930));// L23:L25 -extern char * ((____realpath_alias_1935) (const char * __restrict ____name_1933, char * __restrict ____resolved_1934));// L26:L28 -extern char * ((____realpath_chk_warn_1940) (const char * __restrict ____name_1936, char * __restrict ____resolved_1937, __size_t_1 ____resolvedlen_1938));// L29:L34 -extern char * ((____realpath_chk_warn_1941) (const char * __restrict ____name_1936, char * __restrict ____resolved_1937, __size_t_1093 ____resolvedlen_1939));// L29:L34 -/* no function due to type errors in the function prototype */ -extern int (____ptsname_r_chk_1951) (int ____fd_1945, char * (____buf_1946), __size_t_1 ____buflen_1947, __size_t_1 ____nreal_1949);// L52:L53 -extern int (____ptsname_r_chk_1952) (int ____fd_1945, char * (____buf_1946), __size_t_1093 ____buflen_1948, __size_t_1093 ____nreal_1950);// L52:L53 -extern int (____ptsname_r_alias_1957) (int ____fd_1953, char * (____buf_1954), __size_t_1 ____buflen_1955);// L54:L56 -extern int (____ptsname_r_alias_1958) (int ____fd_1953, char * (____buf_1954), __size_t_1093 ____buflen_1956);// L54:L56 -extern int (____ptsname_r_chk_warn_1965) (int ____fd_1959, char * (____buf_1960), __size_t_1 ____buflen_1961, __size_t_1 ____nreal_1963);// L57:L61 -extern int (____ptsname_r_chk_warn_1966) (int ____fd_1959, char * (____buf_1960), __size_t_1093 ____buflen_1962, __size_t_1093 ____nreal_1964);// L57:L61 -/* no function due to type errors in the function prototype */ -extern int (____wctomb_chk_1977) (char * (____s_1973), __wchar_t_1094 ____wchar_1974, __size_t_1 ____buflen_1975);// L77:L78 -extern int (____wctomb_chk_1978) (char * (____s_1973), __wchar_t_1094 ____wchar_1974, __size_t_1093 ____buflen_1976);// L77:L78 -extern int (____wctomb_alias_1981) (char * (____s_1979), __wchar_t_1094 ____wchar_1980);// L79:L80 -/* no function due to type errors in the function prototype */ -extern __size_t_1 (____mbstowcs_chk_1990) (__wchar_t_1094 * __restrict ____dst_1984, const char * __restrict ____src_1985, __size_t_1 ____len_1986, __size_t_1 ____dstlen_1988);// L98:L100 -extern __size_t_1093 (____mbstowcs_chk_1991) (__wchar_t_1094 * __restrict ____dst_1984, const char * __restrict ____src_1985, __size_t_1093 ____len_1987, __size_t_1093 ____dstlen_1989);// L98:L100 -extern __size_t_1 (____mbstowcs_alias_1996) (__wchar_t_1094 * __restrict ____dst_1992, const char * __restrict ____src_1993, __size_t_1 ____len_1994);// L101:L104 -extern __size_t_1093 (____mbstowcs_alias_1997) (__wchar_t_1094 * __restrict ____dst_1992, const char * __restrict ____src_1993, __size_t_1093 ____len_1995);// L101:L104 -extern __size_t_1 (____mbstowcs_chk_warn_2004) (__wchar_t_1094 * __restrict ____dst_1998, const char * __restrict ____src_1999, __size_t_1 ____len_2000, __size_t_1 ____dstlen_2002);// L105:L110 -extern __size_t_1093 (____mbstowcs_chk_warn_2005) (__wchar_t_1094 * __restrict ____dst_1998, const char * __restrict ____src_1999, __size_t_1093 ____len_2001, __size_t_1093 ____dstlen_2003);// L105:L110 -/* no function due to type errors in the function prototype */ -extern __size_t_1 (____wcstombs_chk_2016) (char * __restrict ____dst_2010, const __wchar_t_1094 * __restrict ____src_2011, __size_t_1 ____len_2012, __size_t_1 ____dstlen_2014);// L130:L132 -extern __size_t_1093 (____wcstombs_chk_2017) (char * __restrict ____dst_2010, const __wchar_t_1094 * __restrict ____src_2011, __size_t_1093 ____len_2013, __size_t_1093 ____dstlen_2015);// L130:L132 -extern __size_t_1 (____wcstombs_alias_2022) (char * __restrict ____dst_2018, const __wchar_t_1094 * __restrict ____src_2019, __size_t_1 ____len_2020);// L133:L136 -extern __size_t_1093 (____wcstombs_alias_2023) (char * __restrict ____dst_2018, const __wchar_t_1094 * __restrict ____src_2019, __size_t_1093 ____len_2021);// L133:L136 -extern __size_t_1 (____wcstombs_chk_warn_2030) (char * __restrict ____dst_2024, const __wchar_t_1094 * __restrict ____src_2025, __size_t_1 ____len_2026, __size_t_1 ____dstlen_2028);// L137:L141 -extern __size_t_1093 (____wcstombs_chk_warn_2031) (char * __restrict ____dst_2024, const __wchar_t_1094 * __restrict ____src_2025, __size_t_1093 ____len_2027, __size_t_1093 ____dstlen_2029);// L137:L141 -/* no function due to type errors in the function prototype */ -struct __dnode_2037 ;// L4 -void (__dfree_2043) (struct __dnode_2037 * (* (__arr_2040))) { - -if (__static_condition_default_2044) { - -{ -{ - - - -struct __dnode_2037 * (__cur_2041);// L12 - -struct __dnode_2037 * (__next_2042);// L12 - -if (__static_condition_default_2045) { -if ( __arr_2040 == ( ( void * ) 0 ) )// L14 -{ -return ;// L15 -} -} -if (__static_condition_default_2046) { -__static_type_error("invalid type found in if statement"); -} - __cur_2041 = __arr_2040 [ 0 ] ; // L17 -if (__static_condition_default_2047) { -while ( __cur_2041 != ( ( void * ) 0 ) )// L18 -{ - -{ -{ - - - - __next_2042 = __cur_2041 -> __next_2039 ; // L19 -if (__static_condition_default_2048) { -free ( __cur_2041 ) ; // L20 -} -if (__static_condition_default_2049) { -__static_type_error("type error") ; // L20 -} - __cur_2041 = __next_2042 ; // L21 -} -} -} -} -if (__static_condition_default_2050) { -__static_type_error("invalid type found in while statement"); -} -} -} - - -} -} -void (__showdirs_2053) (struct __dnode_2037 * (* (__arr_2051))) { - -{ -if (__static_condition_default_2055) { - -{ -{ - - - -{ int __i_2052= 0;// L28 - for ( ; __i_2052 < 5 ; ++ __i_2052 ) // L28 -{ - -{ -{ - - - -if (__static_condition_default_2056) { - __printf_421 ("\n%d", __arr_2051 [ __i_2052 ] -> __val_2038) ; // L29 -} -if (__static_condition_default_2057) { -__static_type_error("type error") ; // L29 -} -} -} -} -} -} -} - - -} - -}} -void (__showdirs_2054) (struct __dnode_2037 * (* (__arr_2051))) { - -{ -if (__static_condition_default_2058) { - -{ -{ - - - -{ int __i_2052= 0;// L28 - for ( ; __i_2052 < 5 ; ++ __i_2052 ) // L28 -{ - -{ -{ - - - -if (__static_condition_default_2059) { - __printf_421 ("\n%d", __arr_2051 [ __i_2052 ] -> __val_2038) ; // L29 -} -if (__static_condition_default_2060) { -__static_type_error("type error") ; // L29 -} -} -} -} -} - __dfree_2043 ( __arr_2051 ) ; // L33 -} -} - - -} - -}} -void (__sort_2066) (int * (* (__arr_2061)), int __size_2062) { - -if (__static_condition_default_2067) { - -{ -{ - - - -int * (* (__temp_2063));// L40 - -int __i_2064;// L41 - -int __j_2065;// L41 - -if (__static_condition_default_2068) { -if ( __arr_2061 == ( ( void * ) 0 ) || __size_2062 < 1 )// L43 -{ -return ;// L44 -} -} -if (__static_condition_default_2069) { -__static_type_error("invalid type found in if statement"); -} -for ( __i_2064 = 0 ; __i_2064 < __size_2062 ; __i_2064 ++ )// L46 -{ - -{ -{ - - - -for ( __j_2065 = __i_2064 ; __j_2065 < __size_2062 ; __j_2065 ++ )// L47 -{ - -{ -{ - - - -if ( * __arr_2061 [ __i_2064 ] > * __arr_2061 [ __j_2065 ] )// L48 -{ - -{ -{ - - - - __temp_2063 = * __arr_2061 [ __i_2064 ] ; // L49 -* __arr_2061 [ __i_2064 ] = * __arr_2061 [ __j_2065 ] ; // L50 -* __arr_2061 [ __j_2065 ] = __temp_2063 ; // L51 -} -} -} -} -} -} -} -} -} -} -} - - -} -} -int (__main_2080) (int __argc_2070, char * (* (__argv_2071))) { - -if (__static_condition_default_2082) { - -{ -{ - - - -struct __dnode_2037 * (__curr_2072);// L60 - -struct __dnode_2037 * (__head_2073);// L60 - -const int __size_2074= 5;// L61 - -struct __dnode_2037 * (__arr_2075[ __size_2074 ]);// L62 - -{ int __i_2076= 0;// L64 - for ( ; __i_2076 < __size_2074 ; __i_2076 ++ ) // L64 -{ - -{ -{ - -struct { typeof( int ) __tmp_2077; typeof( struct __forward_tag_reference_2036 *) __tmp_2078; }__sizeofStandin_2079; - - -if (__static_condition_default_2083) { - __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 -} -if (__static_condition_default_2084) { - __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 -} -if (__static_condition_default_2085) { - __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 -} -if (__static_condition_default_2086) { - __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 -} -if (__static_condition_default_2087) { -__static_type_error("type error") ; // L65 -} -if (__static_condition_default_2088) { - __curr_2072 -> __val_2038 = rand( ) % 10 ; // L66 -} -if (__static_condition_default_2089) { -__static_type_error("type error") ; // L66 -} - __curr_2072 -> __next_2039 = __head_2073 ; // L67 - __head_2073 = __curr_2072 ; // L68 - __arr_2075 [ ( __size_2074 - 1 ) - __i_2076 ] = __curr_2072 ; // L69 -} -} -} -} -if (__static_condition_default_2090) { -if ( rand( ) % 2 )// L72 -{ - -{ -{ - - - -if (__static_condition_default_2091) { - __showdirs_2053 ( __arr_2075 ) ; // L76 -} -if (__static_condition_default_2092) { - __showdirs_2054 ( __arr_2075 ) ; // L76 -} -} -} -} -} -if (__static_condition_default_2093) { -__static_type_error("invalid type found in if statement"); -} -return 0 ;// L78 -} -} - - -} -} -int (__main_2081) (int __argc_2070, char * (* (__argv_2071))) { - -if (__static_condition_default_2094) { - -{ -{ - - - -struct __dnode_2037 * (__curr_2072);// L60 - -struct __dnode_2037 * (__head_2073);// L60 - -const int __size_2074= 5;// L61 - -struct __dnode_2037 * (__arr_2075[ __size_2074 ]);// L62 - -{ int __i_2076= 0;// L64 - for ( ; __i_2076 < __size_2074 ; __i_2076 ++ ) // L64 -{ - -{ -{ - -struct { typeof( int ) __tmp_2077; typeof( struct __forward_tag_reference_2036 *) __tmp_2078; }__sizeofStandin_2079; - - -if (__static_condition_default_2095) { - __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 -} -if (__static_condition_default_2096) { - __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 -} -if (__static_condition_default_2097) { - __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 -} -if (__static_condition_default_2098) { - __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 -} -if (__static_condition_default_2099) { -__static_type_error("type error") ; // L65 -} -if (__static_condition_default_2100) { - __curr_2072 -> __val_2038 = rand( ) % 10 ; // L66 -} -if (__static_condition_default_2101) { -__static_type_error("type error") ; // L66 -} - __curr_2072 -> __next_2039 = __head_2073 ; // L67 - __head_2073 = __curr_2072 ; // L68 - __arr_2075 [ ( __size_2074 - 1 ) - __i_2076 ] = __curr_2072 ; // L69 -} -} -} -} -if (__static_condition_default_2102) { +if (__static_condition_default_990) { if ( rand( ) % 2 )// L72 { @@ -3289,19 +1293,15 @@ if ( rand( ) % 2 )// L72 -__static_type_error("type error : no valid expression"); // L74 -if (__static_condition_default_2103) { - __showdirs_2053 ( __arr_2075 ) ; // L76 -} -if (__static_condition_default_2104) { - __showdirs_2054 ( __arr_2075 ) ; // L76 +if (__static_condition_default_993) { + __showdirs_973 ( __arr_982 ) ; // L76 } +if (__static_condition_default_994) { + __showdirs_974 ( __arr_982 ) ; // L76 } } } } -if (__static_condition_default_2105) { -__static_type_error("invalid type found in if statement"); } return 0 ;// L78 } @@ -3309,5 +1309,4 @@ return 0 ;// L78 } -} diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.clangres index b6b205e6..31fa8f3d 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.clangres @@ -1,43 +1,19 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3172:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] - __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 - ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3175:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] - __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 - ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3178:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] - __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 - ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3181:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] - __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 - ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3187:29: warning: Dereference of undefined pointer value [core.NullDereference] - __curr_2072 -> __val_2038 = rand( ) % 10 ; // L66 - ~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3192:30: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] - __curr_2072 -> __next_2039 = __head_2073 ; // L67 - ^ ~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3192:30: warning: Dereference of undefined pointer value [core.NullDereference] - __curr_2072 -> __next_2039 = __head_2073 ; // L67 - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3256:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] - __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 - ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3259:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] - __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 - ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3262:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] - __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 - ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3265:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] - __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 - ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3271:29: warning: Dereference of undefined pointer value [core.NullDereference] - __curr_2072 -> __val_2038 = rand( ) % 10 ; // L66 - ~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3276:30: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] - __curr_2072 -> __next_2039 = __head_2073 ; // L67 - ^ ~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3276:30: warning: Dereference of undefined pointer value [core.NullDereference] - __curr_2072 -> __next_2039 = __head_2073 ; // L67 - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~ -14 warnings generated. +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1250:42: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_963', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_986)' [unix.MallocSizeof] + __curr_979 = ( struct __dnode_963 * ) malloc (sizeof(typeof(__sizeofStandin_986))) ; // L65 + ~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1253:42: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_963', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_986)' [unix.MallocSizeof] + __curr_979 = ( struct __dnode_963 * ) malloc (sizeof(typeof(__sizeofStandin_986))) ; // L65 + ~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1256:27: warning: Dereference of undefined pointer value [core.NullDereference] + __curr_979 -> __val_964 = rand( ) % 10 ; // L66 + ~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1259:27: warning: Dereference of undefined pointer value [core.NullDereference] + __curr_979 -> __val_964 = rand( ) % 10 ; // L66 + ~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1261:28: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] + __curr_979 -> __next_965 = __head_980 ; // L67 + ^ ~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1261:28: warning: Dereference of undefined pointer value [core.NullDereference] + __curr_979 -> __next_965 = __head_980 ; // L67 + ~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~ +6 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.inferres index aec8ea86..e7bbdd8b 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.inferres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.inferres @@ -1,51 +1,51 @@ -BUSYBOX/2631486f1bf.desugared.c:3193: error: Uninitialized Value - The value read from __curr_2072 was never initialized. - 3191. } - 3192. __curr_2072 -> __next_2039 = __head_2073 ; // L67 - 3193. __head_2073 = __curr_2072 ; // L68 +BUSYBOX/2631486f1bf.desugared.c:1256: error: Null Dereference + pointer `__curr_979` last assigned on line 1253 could be null and is dereferenced at line 1256, column 2. + 1254. } + 1255. if (__static_condition_default_989) { + 1256. __curr_979 -> __val_964 = rand( ) % 10 ; // L66 ^ - 3194. __arr_2075 [ ( __size_2074 - 1 ) - __i_2076 ] = __curr_2072 ; // L69 - 3195. } + 1257. } + 1258. if (__static_condition_default_990) { -BUSYBOX/2631486f1bf.desugared.c:3194: error: Uninitialized Value - The value read from __curr_2072 was never initialized. - 3192. __curr_2072 -> __next_2039 = __head_2073 ; // L67 - 3193. __head_2073 = __curr_2072 ; // L68 - 3194. __arr_2075 [ ( __size_2074 - 1 ) - __i_2076 ] = __curr_2072 ; // L69 +BUSYBOX/2631486f1bf.desugared.c:1259: error: Null Dereference + pointer `__curr_979` last assigned on line 1253 could be null and is dereferenced at line 1259, column 2. + 1257. } + 1258. if (__static_condition_default_990) { + 1259. __curr_979 -> __val_964 = rand( ) % 10 ; // L66 ^ - 3195. } - 3196. } + 1260. } + 1261. __curr_979 -> __next_965 = __head_980 ; // L67 -BUSYBOX/2631486f1bf.desugared.c:3192: error: Uninitialized Value - The value read from __head_2073 was never initialized. - 3190. __static_type_error("type error") ; // L66 - 3191. } - 3192. __curr_2072 -> __next_2039 = __head_2073 ; // L67 +BUSYBOX/2631486f1bf.desugared.c:1261: error: Null Dereference + pointer `__curr_979` last assigned on line 1253 could be null and is dereferenced at line 1261, column 2. + 1259. __curr_979 -> __val_964 = rand( ) % 10 ; // L66 + 1260. } + 1261. __curr_979 -> __next_965 = __head_980 ; // L67 ^ - 3193. __head_2073 = __curr_2072 ; // L68 - 3194. __arr_2075 [ ( __size_2074 - 1 ) - __i_2076 ] = __curr_2072 ; // L69 + 1262. __head_980 = __curr_979 ; // L68 + 1263. __arr_982 [ ( __size_981 - 1 ) - __i_983 ] = __curr_979 ; // L69 -BUSYBOX/2631486f1bf.desugared.c:3277: error: Uninitialized Value - The value read from __curr_2072 was never initialized. - 3275. } - 3276. __curr_2072 -> __next_2039 = __head_2073 ; // L67 - 3277. __head_2073 = __curr_2072 ; // L68 +BUSYBOX/2631486f1bf.desugared.c:1262: error: Uninitialized Value + The value read from __curr_979 was never initialized. + 1260. } + 1261. __curr_979 -> __next_965 = __head_980 ; // L67 + 1262. __head_980 = __curr_979 ; // L68 ^ - 3278. __arr_2075 [ ( __size_2074 - 1 ) - __i_2076 ] = __curr_2072 ; // L69 - 3279. } + 1263. __arr_982 [ ( __size_981 - 1 ) - __i_983 ] = __curr_979 ; // L69 + 1264. } -BUSYBOX/2631486f1bf.desugared.c:3278: error: Uninitialized Value - The value read from __curr_2072 was never initialized. - 3276. __curr_2072 -> __next_2039 = __head_2073 ; // L67 - 3277. __head_2073 = __curr_2072 ; // L68 - 3278. __arr_2075 [ ( __size_2074 - 1 ) - __i_2076 ] = __curr_2072 ; // L69 +BUSYBOX/2631486f1bf.desugared.c:1263: error: Uninitialized Value + The value read from __curr_979 was never initialized. + 1261. __curr_979 -> __next_965 = __head_980 ; // L67 + 1262. __head_980 = __curr_979 ; // L68 + 1263. __arr_982 [ ( __size_981 - 1 ) - __i_983 ] = __curr_979 ; // L69 ^ - 3279. } - 3280. } + 1264. } + 1265. } -Found 7 issues (console output truncated to 5, see '/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/infer-out/report.txt' for the full list) - Issue Type(ISSUED_TYPE_ID): # - Uninitialized Value(UNINITIALIZED_VALUE): 6 - Pointer To Integral Implicit Cast(POINTER_TO_INTEGRAL_IMPLICIT_CAST): 1 +Found 6 issues (console output truncated to 5, see '/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/infer-out/report.txt' for the full list) + Issue Type(ISSUED_TYPE_ID): # + Uninitialized Value(UNINITIALIZED_VALUE): 3 + Null Dereference(NULL_DEREFERENCE): 3 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c index 287c11ba..c9dc3b2f 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c @@ -7,366 +7,144 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_402; -extern const bool __static_condition_default_1754; -extern const bool __static_condition_default_1164; -extern const bool __static_condition_default_1152; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_1402; -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_2065; -extern const bool __static_condition_default_1475; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_549; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_1388; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_1428; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_1814; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_780; -extern const bool __static_condition_default_787; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_1341; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_412; -extern const bool __static_condition_default_789; -extern const bool __static_condition_default_1773; -extern const bool __static_condition_default_755; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_317; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_357; -extern const bool __static_condition_default_2039; -extern const bool __static_condition_default_955; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_701; -extern const bool __static_condition_default_646; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_1165; +extern const bool __static_condition_default_512; +extern const bool __static_condition_default_609; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_558; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_483; +extern const bool __static_condition_default_654; +extern const bool __static_condition_default_335; +extern const bool __static_condition_default_423; +extern const bool __static_condition_default_525; +extern const bool __static_condition_default_688; +extern const bool __static_condition_default_374; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_681; +extern const bool __static_condition_default_550; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_660; +extern const bool __static_condition_default_652; +extern const bool __static_condition_default_484; +extern const bool __static_condition_default_251; +extern const bool __static_condition_default_383; extern const bool __static_condition_default_419; -extern const bool __static_condition_default_685; -extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_2072; -extern const bool __static_condition_default_891; -extern const bool __static_condition_default_914; -extern const bool __static_condition_default_315; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_1564; -extern const bool __static_condition_default_2051; -extern const bool __static_condition_default_1785; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_1458; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_521; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_1365; -extern const bool __static_condition_default_759; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_572; +extern const bool __static_condition_default_294; +extern const bool __static_condition_default_976; +extern const bool __static_condition_default_695; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_398; +extern const bool __static_condition_default_466; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_644; +extern const bool __static_condition_default_234; +extern const bool __static_condition_default_535; +extern const bool __static_condition_default_513; +extern const bool __static_condition_default_672; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_546; extern const bool __static_condition_default_270; -extern const bool __static_condition_default_1556; -extern const bool __static_condition_default_1436; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_53; -extern const bool __static_condition_default_408; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_1576; -extern const bool __static_condition_default_1787; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_761; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_1810; -extern const bool __static_condition_default_1944; -extern const bool __static_condition_default_2068; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_1416; -extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_583; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_2069; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_187; -extern const bool __static_condition_default_803; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_645; -extern const bool __static_condition_default_2060; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_1531; -extern const bool __static_condition_default_388; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_559; -extern const bool __static_condition_default_1568; -extern const bool __static_condition_default_1753; -extern const bool __static_condition_default_1345; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_386; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_1349; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_1453; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_1816; -extern const bool __static_condition_default_2070; -extern const bool __static_condition_default_1385; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_2073; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_1381; -extern const bool __static_condition_default_2054; -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_613; -extern const bool __static_condition_default_1377; -extern const bool __static_condition_default_2049; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_461; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_1532; -extern const bool __static_condition_default_747; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_769; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_1750; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_1485; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_227; +extern const bool __static_condition_default_441; +extern const bool __static_condition_default_667; +extern const bool __static_condition_default_854; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_162; +extern const bool __static_condition_default_336; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_901; +extern const bool __static_condition_default_74; +extern const bool __static_condition_default_594; +extern const bool __static_condition_default_306; +extern const bool __static_condition_default_982; extern const bool __static_condition_default_537; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_957; +extern const bool __static_condition_default_703; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_579; +extern const bool __static_condition_default_500; +extern const bool __static_condition_default_404; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_406; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_983; +extern const bool __static_condition_default_833; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_236; +extern const bool __static_condition_default_434; +extern const bool __static_condition_default_165; +extern const bool __static_condition_default_377; +extern const bool __static_condition_default_826; extern const bool __static_condition_default_544; -extern const bool __static_condition_default_1515; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_2050; -extern const bool __static_condition_default_1789; -extern const bool __static_condition_default_702; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_1791; -extern const bool __static_condition_default_2048; -extern const bool __static_condition_default_872; -extern const bool __static_condition_default_1489; -extern const bool __static_condition_default_1373; -extern const bool __static_condition_default_564; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_1405; -extern const bool __static_condition_default_488; -extern const bool __static_condition_default_1432; -extern const bool __static_condition_default_1808; -extern const bool __static_condition_default_1560; -extern const bool __static_condition_default_1409; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_367; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_907; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_929; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_638; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_842; -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_2052; -extern const bool __static_condition_default_887; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_663; +extern const bool __static_condition_default_464; extern const bool __static_condition_default_223; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_1516; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_347; -extern const bool __static_condition_default_2063; -extern const bool __static_condition_default_313; -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_2071; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_1775; -extern const bool __static_condition_default_198; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_2053; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_76; -extern const bool __static_condition_default_217; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_2059; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_2055; -extern const bool __static_condition_default_248; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_2057; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_380; -extern const bool __static_condition_default_848; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_858; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_628; extern const bool __static_condition_default_980; -extern const bool __static_condition_default_2058; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_753; -extern const bool __static_condition_default_846; -extern const bool __static_condition_default_438; -extern const bool __static_condition_default_1353; -extern const bool __static_condition_default_1357; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_1369; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_894; -extern const bool __static_condition_default_590; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_382; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_2067; -extern const bool __static_condition_default_2047; -extern const bool __static_condition_default_2061; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_693; -extern const bool __static_condition_default_956; -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_677; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_1315; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_875; -extern const bool __static_condition_default_1459; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_670; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_311; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_813; +extern const bool __static_condition_default_308; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_118; +extern const bool __static_condition_default_361; +extern const bool __static_condition_default_230; +extern const bool __static_condition_default_975; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_835; +extern const bool __static_condition_default_532; +extern const bool __static_condition_default_702; +extern const bool __static_condition_default_161; +extern const bool __static_condition_default_673; +extern const bool __static_condition_default_977; +extern const bool __static_condition_default_810; +extern const bool __static_condition_default_397; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_621; extern const bool __static_condition_default_852; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_2062; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_1572; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_568; -extern const bool __static_condition_default_1361; -extern const bool __static_condition_default_393; -extern const bool __static_condition_default_793; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_1498; -extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_1774; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_512; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_1776; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_2066; -extern const bool __static_condition_default_431; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_1552; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_963; -extern const bool __static_condition_default_2056; -extern const bool __static_condition_default_709; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_333; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_1159; -extern const bool __static_condition_default_1395; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_543; -extern const bool __static_condition_default_1391; -extern const bool __static_condition_default_2064; -extern const bool __static_condition_default_779; -extern const bool __static_condition_default_1398; -extern const bool __static_condition_default_1420; -extern const bool __static_condition_default_290; -extern const bool __static_condition_default_998; +extern const bool __static_condition_default_378; +extern const bool __static_condition_default_232; +extern const bool __static_condition_default_226; +extern const bool __static_condition_default_394; +extern const bool __static_condition_default_421; +extern const bool __static_condition_default_533; extern const bool __static_condition_default_536; -extern const bool __static_condition_default_632; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_1424; -extern const bool __static_condition_default_1749; -extern const bool __static_condition_default_204; +extern const bool __static_condition_default_435; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_643; +extern const bool __static_condition_default_225; +extern const bool __static_condition_default_268; +extern const bool __static_condition_default_418; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_622; +extern const bool __static_condition_default_399; +extern const bool __static_condition_default_524; +extern const bool __static_condition_default_420; +extern const bool __static_condition_default_277; +extern const bool __static_condition_default_304; +extern const bool __static_condition_default_482; +extern const bool __static_condition_default_981; +extern const bool __static_condition_default_424; +extern const bool __static_condition_default_620; +extern const bool __static_condition_default_485; +extern const bool __static_condition_default_531; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_860; +extern const bool __static_condition_default_502; +extern const bool __static_condition_default_603; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_974; +extern const bool __static_condition_default_812; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_680; +extern const bool __static_condition_default_696; +extern const bool __static_condition_default_426; +extern const bool __static_condition_default_302; +extern const bool __static_condition_default_266; +extern const bool __static_condition_default_973; +extern const bool __static_condition_default_381; +extern const bool __static_condition_default_334; +extern const bool __static_condition_default_687; +extern const bool __static_condition_default_425; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -418,1060 +196,385 @@ __static_renaming("____ssize_t_49", "__ssize_t"); __static_renaming("____syscall_slong_t_50", "__syscall_slong_t"); __static_renaming("____syscall_ulong_t_51", "__syscall_ulong_t"); __static_renaming("____loff_t_52", "__loff_t"); -__static_renaming("____qaddr_t_54", "__qaddr_t"); -__static_renaming("____caddr_t_55", "__caddr_t"); -__static_renaming("____intptr_t_56", "__intptr_t"); -__static_renaming("____socklen_t_57", "__socklen_t"); -__static_renaming("__FILE_59", "FILE"); -__static_renaming("____FILE_60", "__FILE"); -__static_renaming("____mbstate_t_69", "__mbstate_t"); -__static_renaming("___G_fpos_t_77", "_G_fpos_t"); -__static_renaming("___G_fpos64_t_85", "_G_fpos64_t"); -__static_renaming("____gnuc_va_list_86", "__gnuc_va_list"); -__static_renaming("___IO_lock_t_88", "_IO_lock_t"); -__static_renaming("___IO_FILE_171", "_IO_FILE"); -__static_renaming("___IO_FILE_172", "_IO_FILE"); -__static_renaming("___IO_2_1_stdin__175", "_IO_2_1_stdin_"); -__static_renaming("___IO_2_1_stdout__176", "_IO_2_1_stdout_"); -__static_renaming("___IO_2_1_stderr__177", "_IO_2_1_stderr_"); -__static_renaming("____io_read_fn_181", "__io_read_fn"); -__static_renaming("____io_write_fn_186", "__io_write_fn"); -__static_renaming("____io_seek_fn_192", "__io_seek_fn"); -__static_renaming("____io_close_fn_195", "__io_close_fn"); -__static_renaming("____underflow_196", "__underflow"); -__static_renaming("____underflow_197", "__underflow"); -__static_renaming("____uflow_199", "__uflow"); -__static_renaming("____uflow_200", "__uflow"); -__static_renaming("____overflow_202", "__overflow"); -__static_renaming("____overflow_203", "__overflow"); -__static_renaming("___IO_getc_208", "_IO_getc"); -__static_renaming("___IO_getc_209", "_IO_getc"); -__static_renaming("___IO_putc_215", "_IO_putc"); -__static_renaming("___IO_putc_216", "_IO_putc"); -__static_renaming("___IO_feof_221", "_IO_feof"); -__static_renaming("___IO_feof_222", "_IO_feof"); -__static_renaming("___IO_ferror_227", "_IO_ferror"); -__static_renaming("___IO_ferror_228", "_IO_ferror"); -__static_renaming("___IO_peekc_locked_233", "_IO_peekc_locked"); -__static_renaming("___IO_peekc_locked_234", "_IO_peekc_locked"); -__static_renaming("___IO_flockfile_236", "_IO_flockfile"); -__static_renaming("___IO_flockfile_237", "_IO_flockfile"); -__static_renaming("___IO_funlockfile_239", "_IO_funlockfile"); -__static_renaming("___IO_funlockfile_240", "_IO_funlockfile"); -__static_renaming("___IO_ftrylockfile_242", "_IO_ftrylockfile"); -__static_renaming("___IO_ftrylockfile_243", "_IO_ftrylockfile"); -__static_renaming("___IO_vfscanf_245", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_247", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_251", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_252", "_IO_vfscanf"); -__static_renaming("___IO_vfprintf_254", "_IO_vfprintf"); -__static_renaming("___IO_vfprintf_256", "_IO_vfprintf"); -__static_renaming("___IO_vfprintf_260", "_IO_vfprintf"); -__static_renaming("___IO_padn_261", "_IO_padn"); -__static_renaming("___IO_padn_262", "_IO_padn"); -__static_renaming("___IO_sgetn_265", "_IO_sgetn"); -__static_renaming("___IO_sgetn_266", "_IO_sgetn"); -__static_renaming("___IO_seekoff_268", "_IO_seekoff"); -__static_renaming("___IO_seekoff_269", "_IO_seekoff"); -__static_renaming("___IO_seekpos_272", "_IO_seekpos"); -__static_renaming("___IO_seekpos_273", "_IO_seekpos"); -__static_renaming("___IO_free_backup_area_276", "_IO_free_backup_area"); -__static_renaming("___IO_free_backup_area_277", "_IO_free_backup_area"); -__static_renaming("__va_list_279", "va_list"); -__static_renaming("__off_t_281", "off_t"); -__static_renaming("__off_t_283", "off_t"); -__static_renaming("__ssize_t_285", "ssize_t"); -__static_renaming("__fpos_t_287", "fpos_t"); -__static_renaming("__fpos_t_289", "fpos_t"); -__static_renaming("__stdin_291", "stdin"); -__static_renaming("__stdin_292", "stdin"); -__static_renaming("__stdout_294", "stdout"); -__static_renaming("__stdout_295", "stdout"); -__static_renaming("__stderr_297", "stderr"); -__static_renaming("__stderr_298", "stderr"); -__static_renaming("__remove_301", "remove"); -__static_renaming("__rename_304", "rename"); -__static_renaming("__renameat_309", "renameat"); -__static_renaming("__tmpfile_310", "tmpfile"); -__static_renaming("__tmpfile_312", "tmpfile"); -__static_renaming("__tmpfile_314", "tmpfile"); -__static_renaming("__tmpfile_316", "tmpfile"); -__static_renaming("__tmpnam_319", "tmpnam"); -__static_renaming("__tmpnam_320", "tmpnam"); -__static_renaming("__tmpnam_r_322", "tmpnam_r"); -__static_renaming("__tmpnam_r_323", "tmpnam_r"); -__static_renaming("__tempnam_326", "tempnam"); -__static_renaming("__tempnam_327", "tempnam"); -__static_renaming("__fclose_330", "fclose"); -__static_renaming("__fclose_332", "fclose"); -__static_renaming("__fflush_336", "fflush"); -__static_renaming("__fflush_unlocked_340", "fflush_unlocked"); -__static_renaming("__fopen_344", "fopen"); -__static_renaming("__fopen_346", "fopen"); -__static_renaming("__fopen_354", "fopen"); -__static_renaming("__fopen_356", "fopen"); -__static_renaming("__freopen_362", "freopen"); -__static_renaming("__freopen_364", "freopen"); -__static_renaming("__freopen_366", "freopen"); -__static_renaming("__freopen_368", "freopen"); -__static_renaming("__fdopen_372", "fdopen"); -__static_renaming("__fdopen_374", "fdopen"); -__static_renaming("__fmemopen_379", "fmemopen"); -__static_renaming("__fmemopen_381", "fmemopen"); -__static_renaming("__open_memstream_385", "open_memstream"); -__static_renaming("__open_memstream_387", "open_memstream"); -__static_renaming("__setbuf_392", "setbuf"); -__static_renaming("__setbuf_394", "setbuf"); -__static_renaming("__setvbuf_401", "setvbuf"); -__static_renaming("__setbuffer_407", "setbuffer"); -__static_renaming("__setlinebuf_411", "setlinebuf"); -__static_renaming("__fprintf_416", "fprintf"); -__static_renaming("__fprintf_418", "fprintf"); -__static_renaming("__printf_421", "printf"); -__static_renaming("__sprintf_424", "sprintf"); -__static_renaming("__vfprintf_430", "vfprintf"); -__static_renaming("__vprintf_437", "vprintf"); -__static_renaming("__vsprintf_443", "vsprintf"); -__static_renaming("__snprintf_448", "snprintf"); -__static_renaming("__vsnprintf_454", "vsnprintf"); -__static_renaming("__vdprintf_460", "vdprintf"); -__static_renaming("__dprintf_464", "dprintf"); -__static_renaming("__fscanf_468", "fscanf"); -__static_renaming("__fscanf_470", "fscanf"); -__static_renaming("__fscanf_472", "fscanf"); -__static_renaming("__fscanf_474", "fscanf"); -__static_renaming("__scanf_477", "scanf"); -__static_renaming("__scanf_478", "scanf"); -__static_renaming("__sscanf_481", "sscanf"); -__static_renaming("__vfscanf_509", "vfscanf"); -__static_renaming("__vfscanf_513", "vfscanf"); -__static_renaming("__vscanf_520", "vscanf"); -__static_renaming("__vscanf_522", "vscanf"); -__static_renaming("__vsscanf_528", "vsscanf"); -__static_renaming("__fgetc_563", "fgetc"); -__static_renaming("__getc_567", "getc"); -__static_renaming("__getchar_569", "getchar"); -__static_renaming("__getc_unlocked_572", "getc_unlocked"); -__static_renaming("__getchar_unlocked_574", "getchar_unlocked"); -__static_renaming("__fgetc_unlocked_577", "fgetc_unlocked"); -__static_renaming("__fputc_582", "fputc"); -__static_renaming("__fputc_584", "fputc"); -__static_renaming("__putc_589", "putc"); -__static_renaming("__putchar_592", "putchar"); -__static_renaming("__fputc_unlocked_596", "fputc_unlocked"); -__static_renaming("__putc_unlocked_601", "putc_unlocked"); -__static_renaming("__putchar_unlocked_604", "putchar_unlocked"); -__static_renaming("__getw_607", "getw"); -__static_renaming("__putw_612", "putw"); -__static_renaming("__fgets_618", "fgets"); -__static_renaming("__fgets_620", "fgets"); -__static_renaming("__fgets_622", "fgets"); -__static_renaming("__fgets_624", "fgets"); -__static_renaming("____getdelim_631", "__getdelim"); -__static_renaming("____getdelim_635", "__getdelim"); -__static_renaming("__getdelim_644", "getdelim"); -__static_renaming("__getdelim_648", "getdelim"); -__static_renaming("__getline_656", "getline"); -__static_renaming("__getline_660", "getline"); -__static_renaming("__fputs_667", "fputs"); -__static_renaming("__fputs_669", "fputs"); -__static_renaming("__puts_672", "puts"); -__static_renaming("__ungetc_676", "ungetc"); -__static_renaming("__fseek_714", "fseek"); -__static_renaming("__fseek_716", "fseek"); -__static_renaming("__ftell_720", "ftell"); -__static_renaming("__ftell_722", "ftell"); -__static_renaming("__rewind_726", "rewind"); -__static_renaming("__fseeko_733", "fseeko"); -__static_renaming("__fseeko_744", "fseeko"); -__static_renaming("__ftello_750", "ftello"); -__static_renaming("__ftello_754", "ftello"); -__static_renaming("__ftello_758", "ftello"); -__static_renaming("__fgetpos_766", "fgetpos"); -__static_renaming("__fgetpos_778", "fgetpos"); -__static_renaming("__fsetpos_786", "fsetpos"); -__static_renaming("__fsetpos_790", "fsetpos"); -__static_renaming("__clearerr_796", "clearerr"); -__static_renaming("__feof_800", "feof"); -__static_renaming("__feof_802", "feof"); -__static_renaming("__ferror_806", "ferror"); -__static_renaming("__ferror_808", "ferror"); -__static_renaming("__clearerr_unlocked_812", "clearerr_unlocked"); -__static_renaming("__feof_unlocked_816", "feof_unlocked"); -__static_renaming("__feof_unlocked_818", "feof_unlocked"); -__static_renaming("__ferror_unlocked_822", "ferror_unlocked"); -__static_renaming("__ferror_unlocked_824", "ferror_unlocked"); -__static_renaming("__perror_827", "perror"); -__static_renaming("__perror_828", "perror"); -__static_renaming("__sys_nerr_829", "sys_nerr"); -__static_renaming("__sys_errlist_830", "sys_errlist"); -__static_renaming("__fileno_833", "fileno"); -__static_renaming("__fileno_835", "fileno"); -__static_renaming("__fileno_unlocked_839", "fileno_unlocked"); -__static_renaming("__fileno_unlocked_841", "fileno_unlocked"); -__static_renaming("__popen_845", "popen"); -__static_renaming("__popen_847", "popen"); -__static_renaming("__pclose_851", "pclose"); -__static_renaming("__ctermid_854", "ctermid"); -__static_renaming("__flockfile_857", "flockfile"); -__static_renaming("__ftrylockfile_861", "ftrylockfile"); -__static_renaming("__ftrylockfile_863", "ftrylockfile"); -__static_renaming("__funlockfile_867", "funlockfile"); -__static_renaming("____sprintf_chk_899", "__sprintf_chk"); -__static_renaming("____vsprintf_chk_906", "__vsprintf_chk"); -__static_renaming("____snprintf_chk_920", "__snprintf_chk"); -__static_renaming("____vsnprintf_chk_928", "__vsnprintf_chk"); -__static_renaming("____fprintf_chk_943", "__fprintf_chk"); -__static_renaming("____printf_chk_947", "__printf_chk"); -__static_renaming("____vfprintf_chk_954", "__vfprintf_chk"); -__static_renaming("____vprintf_chk_962", "__vprintf_chk"); -__static_renaming("____dprintf_chk_984", "__dprintf_chk"); -__static_renaming("____vdprintf_chk_990", "__vdprintf_chk"); -__static_renaming("____fgets_chk_1004", "__fgets_chk"); -__static_renaming("____fgets_chk_1006", "__fgets_chk"); -__static_renaming("____fgets_chk_1008", "__fgets_chk"); -__static_renaming("____fgets_alias_1014", "__fgets_alias"); -__static_renaming("____fgets_chk_warn_1021", "__fgets_chk_warn"); -__static_renaming("____cnt_1087", "__cnt"); -__static_renaming("____cptr_1088", "__cptr"); -__static_renaming("__ptrdiff_t_1092", "ptrdiff_t"); -__static_renaming("__size_t_1093", "size_t"); -__static_renaming("__wchar_t_1094", "wchar_t"); -__static_renaming("__idtype_t_1100", "idtype_t"); -__static_renaming("____u_char_1101", "__u_char"); -__static_renaming("____u_short_1102", "__u_short"); -__static_renaming("____u_int_1103", "__u_int"); -__static_renaming("____u_long_1104", "__u_long"); -__static_renaming("____int8_t_1105", "__int8_t"); -__static_renaming("____uint8_t_1106", "__uint8_t"); -__static_renaming("____int16_t_1107", "__int16_t"); -__static_renaming("____uint16_t_1108", "__uint16_t"); -__static_renaming("____int32_t_1109", "__int32_t"); -__static_renaming("____uint32_t_1110", "__uint32_t"); -__static_renaming("____int64_t_1111", "__int64_t"); -__static_renaming("____uint64_t_1112", "__uint64_t"); -__static_renaming("____quad_t_1113", "__quad_t"); -__static_renaming("____u_quad_t_1114", "__u_quad_t"); -__static_renaming("____dev_t_1115", "__dev_t"); -__static_renaming("____uid_t_1116", "__uid_t"); -__static_renaming("____gid_t_1117", "__gid_t"); -__static_renaming("____ino_t_1118", "__ino_t"); -__static_renaming("____ino64_t_1119", "__ino64_t"); -__static_renaming("____mode_t_1120", "__mode_t"); -__static_renaming("____nlink_t_1121", "__nlink_t"); -__static_renaming("____off_t_1122", "__off_t"); -__static_renaming("____off64_t_1123", "__off64_t"); -__static_renaming("____pid_t_1124", "__pid_t"); -__static_renaming("____fsid_t_1128", "__fsid_t"); -__static_renaming("____clock_t_1129", "__clock_t"); -__static_renaming("____rlim_t_1130", "__rlim_t"); -__static_renaming("____rlim64_t_1131", "__rlim64_t"); -__static_renaming("____id_t_1132", "__id_t"); -__static_renaming("____time_t_1133", "__time_t"); -__static_renaming("____useconds_t_1134", "__useconds_t"); -__static_renaming("____suseconds_t_1135", "__suseconds_t"); -__static_renaming("____daddr_t_1136", "__daddr_t"); -__static_renaming("____key_t_1137", "__key_t"); -__static_renaming("____clockid_t_1138", "__clockid_t"); -__static_renaming("____timer_t_1139", "__timer_t"); -__static_renaming("____blksize_t_1140", "__blksize_t"); -__static_renaming("____blkcnt_t_1141", "__blkcnt_t"); -__static_renaming("____blkcnt64_t_1142", "__blkcnt64_t"); -__static_renaming("____fsblkcnt_t_1143", "__fsblkcnt_t"); -__static_renaming("____fsblkcnt64_t_1144", "__fsblkcnt64_t"); -__static_renaming("____fsfilcnt_t_1145", "__fsfilcnt_t"); -__static_renaming("____fsfilcnt64_t_1146", "__fsfilcnt64_t"); -__static_renaming("____fsword_t_1147", "__fsword_t"); -__static_renaming("____ssize_t_1148", "__ssize_t"); -__static_renaming("____syscall_slong_t_1149", "__syscall_slong_t"); -__static_renaming("____syscall_ulong_t_1150", "__syscall_ulong_t"); -__static_renaming("____loff_t_1151", "__loff_t"); -__static_renaming("____qaddr_t_1153", "__qaddr_t"); -__static_renaming("____caddr_t_1154", "__caddr_t"); -__static_renaming("____intptr_t_1155", "__intptr_t"); -__static_renaming("____socklen_t_1156", "__socklen_t"); -__static_renaming("____bswap_32_1158", "__bswap_32"); -__static_renaming("____bswap_64_1162", "__bswap_64"); -__static_renaming("____bswap_64_1163", "__bswap_64"); -__static_renaming("____WAIT_STATUS_1185", "__WAIT_STATUS"); -__static_renaming("__div_t_1190", "div_t"); -__static_renaming("__ldiv_t_1195", "ldiv_t"); -__static_renaming("__lldiv_t_1200", "lldiv_t"); -__static_renaming("____ctype_get_mb_cur_max_1201", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1202", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1203", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1204", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1205", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1206", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1207", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1208", "__ctype_get_mb_cur_max"); -__static_renaming("__atof_1210", "atof"); -__static_renaming("__atof_1211", "atof"); -__static_renaming("__atoi_1213", "atoi"); -__static_renaming("__atoi_1214", "atoi"); -__static_renaming("__atol_1216", "atol"); -__static_renaming("__atol_1217", "atol"); -__static_renaming("__atoll_1219", "atoll"); -__static_renaming("__atoll_1220", "atoll"); -__static_renaming("__strtod_1223", "strtod"); -__static_renaming("__strtof_1226", "strtof"); -__static_renaming("__strtold_1229", "strtold"); -__static_renaming("__strtol_1233", "strtol"); -__static_renaming("__strtoul_1237", "strtoul"); -__static_renaming("__strtoq_1241", "strtoq"); -__static_renaming("__strtouq_1245", "strtouq"); -__static_renaming("__strtoll_1249", "strtoll"); -__static_renaming("__strtoll_1250", "strtoll"); -__static_renaming("__strtoull_1254", "strtoull"); -__static_renaming("__l64a_1259", "l64a"); -__static_renaming("__l64a_1260", "l64a"); -__static_renaming("__a64l_1262", "a64l"); -__static_renaming("__a64l_1263", "a64l"); -__static_renaming("____u_char_1264", "__u_char"); -__static_renaming("____u_short_1265", "__u_short"); -__static_renaming("____u_int_1266", "__u_int"); -__static_renaming("____u_long_1267", "__u_long"); -__static_renaming("____int8_t_1268", "__int8_t"); -__static_renaming("____uint8_t_1269", "__uint8_t"); -__static_renaming("____int16_t_1270", "__int16_t"); -__static_renaming("____uint16_t_1271", "__uint16_t"); -__static_renaming("____int32_t_1272", "__int32_t"); -__static_renaming("____uint32_t_1273", "__uint32_t"); -__static_renaming("____int64_t_1274", "__int64_t"); -__static_renaming("____uint64_t_1275", "__uint64_t"); -__static_renaming("____quad_t_1276", "__quad_t"); -__static_renaming("____u_quad_t_1277", "__u_quad_t"); -__static_renaming("____dev_t_1278", "__dev_t"); -__static_renaming("____uid_t_1279", "__uid_t"); -__static_renaming("____gid_t_1280", "__gid_t"); -__static_renaming("____ino_t_1281", "__ino_t"); -__static_renaming("____ino64_t_1282", "__ino64_t"); -__static_renaming("____mode_t_1283", "__mode_t"); -__static_renaming("____nlink_t_1284", "__nlink_t"); -__static_renaming("____off_t_1285", "__off_t"); -__static_renaming("____off64_t_1286", "__off64_t"); -__static_renaming("____pid_t_1287", "__pid_t"); -__static_renaming("____fsid_t_1291", "__fsid_t"); -__static_renaming("____clock_t_1292", "__clock_t"); -__static_renaming("____rlim_t_1293", "__rlim_t"); -__static_renaming("____rlim64_t_1294", "__rlim64_t"); -__static_renaming("____id_t_1295", "__id_t"); -__static_renaming("____time_t_1296", "__time_t"); -__static_renaming("____useconds_t_1297", "__useconds_t"); -__static_renaming("____suseconds_t_1298", "__suseconds_t"); -__static_renaming("____daddr_t_1299", "__daddr_t"); -__static_renaming("____key_t_1300", "__key_t"); -__static_renaming("____clockid_t_1301", "__clockid_t"); -__static_renaming("____timer_t_1302", "__timer_t"); -__static_renaming("____blksize_t_1303", "__blksize_t"); -__static_renaming("____blkcnt_t_1304", "__blkcnt_t"); -__static_renaming("____blkcnt64_t_1305", "__blkcnt64_t"); -__static_renaming("____fsblkcnt_t_1306", "__fsblkcnt_t"); -__static_renaming("____fsblkcnt64_t_1307", "__fsblkcnt64_t"); -__static_renaming("____fsfilcnt_t_1308", "__fsfilcnt_t"); -__static_renaming("____fsfilcnt64_t_1309", "__fsfilcnt64_t"); -__static_renaming("____fsword_t_1310", "__fsword_t"); -__static_renaming("____ssize_t_1311", "__ssize_t"); -__static_renaming("____syscall_slong_t_1312", "__syscall_slong_t"); -__static_renaming("____syscall_ulong_t_1313", "__syscall_ulong_t"); -__static_renaming("____loff_t_1314", "__loff_t"); -__static_renaming("____qaddr_t_1316", "__qaddr_t"); -__static_renaming("____caddr_t_1317", "__caddr_t"); -__static_renaming("____intptr_t_1318", "__intptr_t"); -__static_renaming("____socklen_t_1319", "__socklen_t"); -__static_renaming("__u_char_1320", "u_char"); -__static_renaming("__u_char_1321", "u_char"); -__static_renaming("__u_char_1322", "u_char"); -__static_renaming("__u_short_1323", "u_short"); -__static_renaming("__u_short_1324", "u_short"); -__static_renaming("__u_short_1325", "u_short"); -__static_renaming("__u_int_1326", "u_int"); -__static_renaming("__u_int_1327", "u_int"); -__static_renaming("__u_int_1328", "u_int"); -__static_renaming("__u_long_1329", "u_long"); -__static_renaming("__u_long_1330", "u_long"); -__static_renaming("__u_long_1331", "u_long"); -__static_renaming("__quad_t_1332", "quad_t"); -__static_renaming("__quad_t_1333", "quad_t"); -__static_renaming("__quad_t_1334", "quad_t"); -__static_renaming("__u_quad_t_1335", "u_quad_t"); -__static_renaming("__u_quad_t_1336", "u_quad_t"); -__static_renaming("__u_quad_t_1337", "u_quad_t"); -__static_renaming("__fsid_t_1338", "fsid_t"); -__static_renaming("__fsid_t_1339", "fsid_t"); -__static_renaming("__fsid_t_1340", "fsid_t"); -__static_renaming("__loff_t_1342", "loff_t"); -__static_renaming("__loff_t_1343", "loff_t"); -__static_renaming("__loff_t_1344", "loff_t"); -__static_renaming("__loff_t_1346", "loff_t"); -__static_renaming("__loff_t_1347", "loff_t"); -__static_renaming("__loff_t_1348", "loff_t"); -__static_renaming("__ino_t_1350", "ino_t"); -__static_renaming("__ino_t_1351", "ino_t"); -__static_renaming("__ino_t_1352", "ino_t"); -__static_renaming("__ino_t_1354", "ino_t"); -__static_renaming("__ino_t_1355", "ino_t"); -__static_renaming("__ino_t_1356", "ino_t"); -__static_renaming("__dev_t_1358", "dev_t"); -__static_renaming("__dev_t_1359", "dev_t"); -__static_renaming("__dev_t_1360", "dev_t"); -__static_renaming("__gid_t_1362", "gid_t"); -__static_renaming("__gid_t_1363", "gid_t"); -__static_renaming("__gid_t_1364", "gid_t"); -__static_renaming("__gid_t_1366", "gid_t"); -__static_renaming("__gid_t_1367", "gid_t"); -__static_renaming("__gid_t_1368", "gid_t"); -__static_renaming("__mode_t_1370", "mode_t"); -__static_renaming("__mode_t_1371", "mode_t"); -__static_renaming("__mode_t_1372", "mode_t"); -__static_renaming("__nlink_t_1374", "nlink_t"); -__static_renaming("__nlink_t_1375", "nlink_t"); -__static_renaming("__nlink_t_1376", "nlink_t"); -__static_renaming("__uid_t_1378", "uid_t"); -__static_renaming("__uid_t_1379", "uid_t"); -__static_renaming("__uid_t_1380", "uid_t"); -__static_renaming("__uid_t_1382", "uid_t"); -__static_renaming("__uid_t_1383", "uid_t"); -__static_renaming("__uid_t_1384", "uid_t"); -__static_renaming("__off_t_1386", "off_t"); -__static_renaming("__off_t_1387", "off_t"); -__static_renaming("__off_t_1389", "off_t"); -__static_renaming("__off_t_1390", "off_t"); -__static_renaming("__pid_t_1392", "pid_t"); -__static_renaming("__pid_t_1393", "pid_t"); -__static_renaming("__pid_t_1394", "pid_t"); -__static_renaming("__pid_t_1396", "pid_t"); -__static_renaming("__pid_t_1397", "pid_t"); -__static_renaming("__id_t_1399", "id_t"); -__static_renaming("__id_t_1400", "id_t"); -__static_renaming("__id_t_1401", "id_t"); -__static_renaming("__ssize_t_1403", "ssize_t"); -__static_renaming("__ssize_t_1404", "ssize_t"); -__static_renaming("__daddr_t_1406", "daddr_t"); -__static_renaming("__daddr_t_1407", "daddr_t"); -__static_renaming("__daddr_t_1408", "daddr_t"); -__static_renaming("__caddr_t_1410", "caddr_t"); -__static_renaming("__caddr_t_1411", "caddr_t"); -__static_renaming("__caddr_t_1412", "caddr_t"); -__static_renaming("__key_t_1413", "key_t"); -__static_renaming("__key_t_1414", "key_t"); -__static_renaming("__key_t_1415", "key_t"); -__static_renaming("__key_t_1417", "key_t"); -__static_renaming("__key_t_1418", "key_t"); -__static_renaming("__key_t_1419", "key_t"); -__static_renaming("__clock_t_1421", "clock_t"); -__static_renaming("__clock_t_1422", "clock_t"); -__static_renaming("__clock_t_1423", "clock_t"); -__static_renaming("__time_t_1425", "time_t"); -__static_renaming("__time_t_1426", "time_t"); -__static_renaming("__time_t_1427", "time_t"); -__static_renaming("__clockid_t_1429", "clockid_t"); -__static_renaming("__clockid_t_1430", "clockid_t"); -__static_renaming("__clockid_t_1431", "clockid_t"); -__static_renaming("__timer_t_1433", "timer_t"); -__static_renaming("__timer_t_1434", "timer_t"); -__static_renaming("__timer_t_1435", "timer_t"); -__static_renaming("__ulong_1437", "ulong"); -__static_renaming("__ulong_1438", "ulong"); -__static_renaming("__ulong_1439", "ulong"); -__static_renaming("__ushort_1440", "ushort"); -__static_renaming("__uint_1441", "uint"); -__static_renaming("__int8_t_1442", "int8_t"); -__static_renaming("__int16_t_1443", "int16_t"); -__static_renaming("__int32_t_1444", "int32_t"); -__static_renaming("__int64_t_1445", "int64_t"); -__static_renaming("__u_int8_t_1446", "u_int8_t"); -__static_renaming("__u_int16_t_1447", "u_int16_t"); -__static_renaming("__u_int32_t_1448", "u_int32_t"); -__static_renaming("__u_int64_t_1449", "u_int64_t"); -__static_renaming("__register_t_1450", "register_t"); -__static_renaming("____bswap_32_1452", "__bswap_32"); -__static_renaming("____bswap_64_1456", "__bswap_64"); -__static_renaming("____bswap_64_1457", "__bswap_64"); -__static_renaming("____sig_atomic_t_1460", "__sig_atomic_t"); -__static_renaming("____sigset_t_1464", "__sigset_t"); -__static_renaming("__sigset_t_1465", "sigset_t"); -__static_renaming("__suseconds_t_1486", "suseconds_t"); -__static_renaming("__suseconds_t_1487", "suseconds_t"); -__static_renaming("__suseconds_t_1488", "suseconds_t"); -__static_renaming("____fd_mask_1490", "__fd_mask"); -__static_renaming("____fd_mask_1491", "__fd_mask"); -__static_renaming("__fd_set_1499", "fd_set"); -__static_renaming("__fd_mask_1500", "fd_mask"); -__static_renaming("__fd_mask_1501", "fd_mask"); -__static_renaming("__select_1513", "select"); -__static_renaming("__select_1514", "select"); -__static_renaming("__pselect_1529", "pselect"); -__static_renaming("__pselect_1530", "pselect"); -__static_renaming("____fdelt_chk_1534", "__fdelt_chk"); -__static_renaming("____fdelt_warn_1536", "__fdelt_warn"); -__static_renaming("__gnu_dev_major_1538", "gnu_dev_major"); -__static_renaming("__gnu_dev_major_1539", "gnu_dev_major"); -__static_renaming("__gnu_dev_minor_1541", "gnu_dev_minor"); -__static_renaming("__gnu_dev_makedev_1544", "gnu_dev_makedev"); -__static_renaming("__blksize_t_1549", "blksize_t"); -__static_renaming("__blksize_t_1550", "blksize_t"); -__static_renaming("__blksize_t_1551", "blksize_t"); -__static_renaming("__blkcnt_t_1553", "blkcnt_t"); -__static_renaming("__blkcnt_t_1554", "blkcnt_t"); -__static_renaming("__blkcnt_t_1555", "blkcnt_t"); -__static_renaming("__fsblkcnt_t_1557", "fsblkcnt_t"); -__static_renaming("__fsblkcnt_t_1558", "fsblkcnt_t"); -__static_renaming("__fsblkcnt_t_1559", "fsblkcnt_t"); -__static_renaming("__blkcnt_t_1561", "blkcnt_t"); -__static_renaming("__blkcnt_t_1562", "blkcnt_t"); -__static_renaming("__blkcnt_t_1563", "blkcnt_t"); -__static_renaming("__fsblkcnt_t_1565", "fsblkcnt_t"); -__static_renaming("__fsblkcnt_t_1566", "fsblkcnt_t"); -__static_renaming("__fsblkcnt_t_1567", "fsblkcnt_t"); -__static_renaming("__fsfilcnt_t_1569", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_1570", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_1571", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_1573", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_1574", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_1575", "fsfilcnt_t"); -__static_renaming("__pthread_t_1577", "pthread_t"); -__static_renaming("__pthread_attr_t_1581", "pthread_attr_t"); -__static_renaming("____pthread_list_t_1586", "__pthread_list_t"); -__static_renaming("____pthread_list_t_1587", "__pthread_list_t"); -__static_renaming("__pthread_mutex_t_1603", "pthread_mutex_t"); -__static_renaming("__pthread_mutexattr_t_1608", "pthread_mutexattr_t"); -__static_renaming("__rand_1609", "rand"); -__static_renaming("__srand_1611", "srand"); -__static_renaming("__rand_r_1613", "rand_r"); -__static_renaming("__drand48_1614", "drand48"); -__static_renaming("__erand48_1616", "erand48"); -__static_renaming("__lrand48_1617", "lrand48"); -__static_renaming("__nrand48_1619", "nrand48"); -__static_renaming("__mrand48_1620", "mrand48"); -__static_renaming("__jrand48_1622", "jrand48"); -__static_renaming("__srand48_1624", "srand48"); -__static_renaming("__seed48_1626", "seed48"); -__static_renaming("__lcong48_1628", "lcong48"); -__static_renaming("__malloc_1631", "malloc"); -__static_renaming("__malloc_1632", "malloc"); -__static_renaming("__malloc_1633", "malloc"); -__static_renaming("__malloc_1634", "malloc"); -__static_renaming("__calloc_1639", "calloc"); -__static_renaming("__calloc_1640", "calloc"); -__static_renaming("__calloc_1641", "calloc"); -__static_renaming("__calloc_1642", "calloc"); -__static_renaming("__realloc_1646", "realloc"); -__static_renaming("__realloc_1647", "realloc"); -__static_renaming("__free_1649", "free"); -__static_renaming("__cfree_1651", "cfree"); -__static_renaming("__alloca_1654", "alloca"); -__static_renaming("__alloca_1655", "alloca"); -__static_renaming("__valloc_1658", "valloc"); -__static_renaming("__valloc_1659", "valloc"); -__static_renaming("__valloc_1660", "valloc"); -__static_renaming("__valloc_1661", "valloc"); -__static_renaming("__posix_memalign_1667", "posix_memalign"); -__static_renaming("__posix_memalign_1668", "posix_memalign"); -__static_renaming("__posix_memalign_1669", "posix_memalign"); -__static_renaming("__posix_memalign_1670", "posix_memalign"); -__static_renaming("__aligned_alloc_1675", "aligned_alloc"); -__static_renaming("__aligned_alloc_1676", "aligned_alloc"); -__static_renaming("__aligned_alloc_1677", "aligned_alloc"); -__static_renaming("__aligned_alloc_1678", "aligned_alloc"); -__static_renaming("__aligned_alloc_1679", "aligned_alloc"); -__static_renaming("__aligned_alloc_1680", "aligned_alloc"); -__static_renaming("__aligned_alloc_1681", "aligned_alloc"); -__static_renaming("__aligned_alloc_1682", "aligned_alloc"); -__static_renaming("__abort_1683", "abort"); -__static_renaming("__atexit_1685", "atexit"); -__static_renaming("__at_quick_exit_1687", "at_quick_exit"); -__static_renaming("__on_exit_1692", "on_exit"); -__static_renaming("__exit_1694", "exit"); -__static_renaming("__exit_1695", "exit"); -__static_renaming("__quick_exit_1697", "quick_exit"); -__static_renaming("___Exit_1699", "_Exit"); -__static_renaming("__getenv_1701", "getenv"); -__static_renaming("__getenv_1702", "getenv"); -__static_renaming("__putenv_1704", "putenv"); -__static_renaming("__setenv_1708", "setenv"); -__static_renaming("__unsetenv_1710", "unsetenv"); -__static_renaming("__clearenv_1711", "clearenv"); -__static_renaming("__mktemp_1713", "mktemp"); -__static_renaming("__mkstemp_1716", "mkstemp"); -__static_renaming("__mkstemp_1717", "mkstemp"); -__static_renaming("__mkstemp_1718", "mkstemp"); -__static_renaming("__mkstemp_1719", "mkstemp"); -__static_renaming("__mkstemps_1724", "mkstemps"); -__static_renaming("__mkstemps_1725", "mkstemps"); -__static_renaming("__mkstemps_1726", "mkstemps"); -__static_renaming("__mkstemps_1727", "mkstemps"); -__static_renaming("__mkdtemp_1729", "mkdtemp"); -__static_renaming("__mkdtemp_1730", "mkdtemp"); -__static_renaming("__system_1732", "system"); -__static_renaming("__system_1733", "system"); -__static_renaming("__system_1734", "system"); -__static_renaming("__system_1735", "system"); -__static_renaming("__realpath_1738", "realpath"); -__static_renaming("__realpath_1739", "realpath"); -__static_renaming("____compar_fn_t_1740", "__compar_fn_t"); -__static_renaming("__bsearch_1751", "bsearch"); -__static_renaming("__bsearch_1752", "bsearch"); -__static_renaming("__bsearch_1755", "bsearch"); -__static_renaming("__bsearch_1756", "bsearch"); -__static_renaming("____l_1765", "__l"); -__static_renaming("____l_1766", "__l"); -__static_renaming("____u_1767", "__u"); -__static_renaming("____u_1768", "__u"); -__static_renaming("____idx_1769", "__idx"); -__static_renaming("____idx_1770", "__idx"); -__static_renaming("____p_1771", "__p"); -__static_renaming("____comparison_1772", "__comparison"); -__static_renaming("__qsort_1784", "qsort"); -__static_renaming("__qsort_1786", "qsort"); -__static_renaming("__qsort_1788", "qsort"); -__static_renaming("__qsort_1790", "qsort"); -__static_renaming("__abs_1793", "abs"); -__static_renaming("__abs_1794", "abs"); -__static_renaming("__labs_1796", "labs"); -__static_renaming("__labs_1797", "labs"); -__static_renaming("__llabs_1799", "llabs"); -__static_renaming("__llabs_1800", "llabs"); -__static_renaming("__div_1803", "div"); -__static_renaming("__div_1804", "div"); -__static_renaming("__ldiv_1807", "ldiv"); -__static_renaming("__ldiv_1809", "ldiv"); -__static_renaming("__lldiv_1813", "lldiv"); -__static_renaming("__lldiv_1815", "lldiv"); -__static_renaming("__ecvt_1821", "ecvt"); -__static_renaming("__ecvt_1822", "ecvt"); -__static_renaming("__fcvt_1827", "fcvt"); -__static_renaming("__fcvt_1828", "fcvt"); -__static_renaming("__gcvt_1832", "gcvt"); -__static_renaming("__gcvt_1833", "gcvt"); -__static_renaming("__qecvt_1838", "qecvt"); -__static_renaming("__qecvt_1839", "qecvt"); -__static_renaming("__qfcvt_1844", "qfcvt"); -__static_renaming("__qfcvt_1845", "qfcvt"); -__static_renaming("__qgcvt_1849", "qgcvt"); -__static_renaming("__qgcvt_1850", "qgcvt"); -__static_renaming("__ecvt_r_1858", "ecvt_r"); -__static_renaming("__ecvt_r_1859", "ecvt_r"); -__static_renaming("__fcvt_r_1867", "fcvt_r"); -__static_renaming("__fcvt_r_1868", "fcvt_r"); -__static_renaming("__qecvt_r_1876", "qecvt_r"); -__static_renaming("__qecvt_r_1877", "qecvt_r"); -__static_renaming("__qfcvt_r_1885", "qfcvt_r"); -__static_renaming("__qfcvt_r_1886", "qfcvt_r"); -__static_renaming("__mblen_1890", "mblen"); -__static_renaming("__mblen_1891", "mblen"); -__static_renaming("__mblen_1892", "mblen"); -__static_renaming("__mblen_1893", "mblen"); -__static_renaming("__mbtowc_1898", "mbtowc"); -__static_renaming("__mbtowc_1899", "mbtowc"); -__static_renaming("__wctomb_1902", "wctomb"); -__static_renaming("__mbstowcs_1907", "mbstowcs"); -__static_renaming("__mbstowcs_1908", "mbstowcs"); -__static_renaming("__wcstombs_1913", "wcstombs"); -__static_renaming("__wcstombs_1914", "wcstombs"); -__static_renaming("__rpmatch_1916", "rpmatch"); -__static_renaming("__rpmatch_1917", "rpmatch"); -__static_renaming("__getsubopt_1921", "getsubopt"); -__static_renaming("__getsubopt_1922", "getsubopt"); -__static_renaming("__getloadavg_1925", "getloadavg"); -__static_renaming("____realpath_chk_1931", "__realpath_chk"); -__static_renaming("____realpath_chk_1932", "__realpath_chk"); -__static_renaming("____realpath_alias_1935", "__realpath_alias"); -__static_renaming("____realpath_chk_warn_1940", "__realpath_chk_warn"); -__static_renaming("____realpath_chk_warn_1941", "__realpath_chk_warn"); -__static_renaming("____ptsname_r_chk_1951", "__ptsname_r_chk"); -__static_renaming("____ptsname_r_chk_1952", "__ptsname_r_chk"); -__static_renaming("____ptsname_r_alias_1957", "__ptsname_r_alias"); -__static_renaming("____ptsname_r_alias_1958", "__ptsname_r_alias"); -__static_renaming("____ptsname_r_chk_warn_1965", "__ptsname_r_chk_warn"); -__static_renaming("____ptsname_r_chk_warn_1966", "__ptsname_r_chk_warn"); -__static_renaming("____wctomb_chk_1977", "__wctomb_chk"); -__static_renaming("____wctomb_chk_1978", "__wctomb_chk"); -__static_renaming("____wctomb_alias_1981", "__wctomb_alias"); -__static_renaming("____mbstowcs_chk_1990", "__mbstowcs_chk"); -__static_renaming("____mbstowcs_chk_1991", "__mbstowcs_chk"); -__static_renaming("____mbstowcs_alias_1996", "__mbstowcs_alias"); -__static_renaming("____mbstowcs_alias_1997", "__mbstowcs_alias"); -__static_renaming("____mbstowcs_chk_warn_2004", "__mbstowcs_chk_warn"); -__static_renaming("____mbstowcs_chk_warn_2005", "__mbstowcs_chk_warn"); -__static_renaming("____wcstombs_chk_2016", "__wcstombs_chk"); -__static_renaming("____wcstombs_chk_2017", "__wcstombs_chk"); -__static_renaming("____wcstombs_alias_2022", "__wcstombs_alias"); -__static_renaming("____wcstombs_alias_2023", "__wcstombs_alias"); -__static_renaming("____wcstombs_chk_warn_2030", "__wcstombs_chk_warn"); -__static_renaming("____wcstombs_chk_warn_2031", "__wcstombs_chk_warn"); -__static_renaming("__r_2038", "r"); -__static_renaming("__m_has_modinfo_2040", "m_has_modinfo"); -__static_renaming("__exit_status_2041", "exit_status"); -__static_renaming("__someInt_2042", "someInt"); -__static_renaming("__k_crcs_2043", "k_crcs"); -__static_renaming("__main_2044", "main"); -__static_renaming("__main_2045", "main"); -__static_renaming("__main_2046", "main"); - -__static_condition_renaming("__static_condition_default_53", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_76", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_84", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_123", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_169", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_170", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_173", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_182", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_187", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_193", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_198", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_201", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_204", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_210", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_217", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_223", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_229", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_235", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_238", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_241", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_244", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_246", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_248", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_249", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_250", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_253", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_255", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_257", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_258", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_259", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_263", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_264", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_267", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_270", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_271", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_274", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_275", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_278", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_280", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); -__static_condition_renaming("__static_condition_default_282", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_284", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_286", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_288", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_290", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_293", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_296", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_299", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_311", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_313", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_315", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_317", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_331", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_333", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_337", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_341", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_345", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_347", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_355", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_357", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_363", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_365", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_367", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_369", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_373", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_375", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_380", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_382", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_386", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_388", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_393", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_395", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_402", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_408", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_412", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_417", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_419", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_431", "!(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_432", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_433", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_438", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_444", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_455", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_461", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_469", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_471", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_473", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_475", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_486", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_488", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_489", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_491", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_493", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_494", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_497", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_499", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_503", "!(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_510", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_511", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_512", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_514", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_515", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_516", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_521", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_523", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_529", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_536", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_537", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_538", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_539", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_541", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_542", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_543", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_544", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_549", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_550", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_552", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_553", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_559", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_560", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_564", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_568", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_573", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_578", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_583", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_585", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_590", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_597", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_602", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_608", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_613", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_619", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_621", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_623", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_625", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_632", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_633", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_634", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_636", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_637", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_638", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_645", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_646", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_647", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_649", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_650", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_651", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_657", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_658", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_659", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_661", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_662", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_663", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_668", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_670", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_677", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_683", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_684", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_685", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_686", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_692", "!(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_693", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_699", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_700", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_701", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_702", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_708", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_709", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_715", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_717", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_721", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_723", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_727", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_734", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_735", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_736", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_745", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_746", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_747", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_751", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_752", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_753", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_755", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_756", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_757", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_759", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_760", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_761", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_767", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_768", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_769", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_779", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_780", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_781", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_787", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_788", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_789", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_791", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_792", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_793", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_797", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_801", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_803", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_807", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_809", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_813", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_817", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_819", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_823", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_825", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_834", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_836", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_840", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_842", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_846", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_848", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_852", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_858", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_862", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_864", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_868", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_872", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_875", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_878", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_883", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_887", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_891", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_894", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_907", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_914", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_929", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_938", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_944", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_955", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_956", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_957", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_963", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_967", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_972", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_978", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_979", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_980", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_991", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_998", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1005", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1007", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1009", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1015", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1022", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1027", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1028", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1035", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1036", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1042", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1043", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1050", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1051", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1057", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1058", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1065", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1066", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1072", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1073", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1080", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1081", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1089", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_1090", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1091", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1152", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1159", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1164", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1165", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1315", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1341", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __u_char_defined)"); -__static_condition_renaming("__static_condition_default_1345", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __u_char_defined)"); -__static_condition_renaming("__static_condition_default_1349", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __u_char_defined)"); -__static_condition_renaming("__static_condition_default_1353", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined)"); -__static_condition_renaming("__static_condition_default_1357", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined)"); -__static_condition_renaming("__static_condition_default_1361", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_1365", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_1369", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_1373", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1377", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __nlink_t_defined)"); -__static_condition_renaming("__static_condition_default_1381", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __nlink_t_defined)"); -__static_condition_renaming("__static_condition_default_1385", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __nlink_t_defined)"); -__static_condition_renaming("__static_condition_default_1388", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1391", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1395", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && (defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1398", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1402", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __id_t_defined)"); -__static_condition_renaming("__static_condition_default_1405", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1409", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_1416", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_1420", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_1424", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __clock_t_defined)"); -__static_condition_renaming("__static_condition_default_1428", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __time_t_defined)"); -__static_condition_renaming("__static_condition_default_1432", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __clockid_t_defined)"); -__static_condition_renaming("__static_condition_default_1436", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timer_t_defined)"); -__static_condition_renaming("__static_condition_default_1453", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1458", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1459", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1475", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_1485", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_1489", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __suseconds_t_defined)"); -__static_condition_renaming("__static_condition_default_1498", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1515", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_1516", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_1531", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_1532", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_1552", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blksize_t_defined)"); -__static_condition_renaming("__static_condition_default_1556", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined)"); -__static_condition_renaming("__static_condition_default_1560", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1564", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined)"); -__static_condition_renaming("__static_condition_default_1568", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1572", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1576", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1749", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1750", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1753", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1754", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1773", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1774", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1775", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1776", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1785", "!(defined __need___FILE) && !(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1787", "(defined __need___FILE) && !(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1789", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1791", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1808", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1810", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1814", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1816", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1944", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_2039", "!(defined __STRICT_ANSI__) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined __STRICT_ANSI__) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2047", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_2048", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING)"); -__static_condition_renaming("__static_condition_default_2049", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING)"); -__static_condition_renaming("__static_condition_default_2050", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING)"); -__static_condition_renaming("__static_condition_default_2051", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING)"); -__static_condition_renaming("__static_condition_default_2052", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING)"); -__static_condition_renaming("__static_condition_default_2053", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING)"); -__static_condition_renaming("__static_condition_default_2054", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING)"); -__static_condition_renaming("__static_condition_default_2055", "(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING)"); -__static_condition_renaming("__static_condition_default_2056", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING)"); -__static_condition_renaming("__static_condition_default_2057", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING)"); -__static_condition_renaming("__static_condition_default_2058", "(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING)"); -__static_condition_renaming("__static_condition_default_2059", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_2060", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING)"); -__static_condition_renaming("__static_condition_default_2061", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING)"); -__static_condition_renaming("__static_condition_default_2062", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING)"); -__static_condition_renaming("__static_condition_default_2063", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING)"); -__static_condition_renaming("__static_condition_default_2064", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING)"); -__static_condition_renaming("__static_condition_default_2065", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING)"); -__static_condition_renaming("__static_condition_default_2066", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING)"); -__static_condition_renaming("__static_condition_default_2067", "(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING)"); -__static_condition_renaming("__static_condition_default_2068", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING)"); -__static_condition_renaming("__static_condition_default_2069", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING)"); -__static_condition_renaming("__static_condition_default_2070", "(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING)"); -__static_condition_renaming("__static_condition_default_2071", "!(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2072", "!(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || (defined _STDLIB_H) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING)"); -__static_condition_renaming("__static_condition_default_2073", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); - -if (__static_condition_default_2073) -{ +__static_renaming("____qaddr_t_53", "__qaddr_t"); +__static_renaming("____caddr_t_54", "__caddr_t"); +__static_renaming("____intptr_t_55", "__intptr_t"); +__static_renaming("____socklen_t_56", "__socklen_t"); +__static_renaming("__FILE_58", "FILE"); +__static_renaming("____FILE_59", "__FILE"); +__static_renaming("____mbstate_t_68", "__mbstate_t"); +__static_renaming("___G_fpos_t_75", "_G_fpos_t"); +__static_renaming("___G_fpos64_t_81", "_G_fpos64_t"); +__static_renaming("____gnuc_va_list_82", "__gnuc_va_list"); +__static_renaming("___IO_lock_t_84", "_IO_lock_t"); +__static_renaming("___IO_FILE_163", "_IO_FILE"); +__static_renaming("___IO_FILE_164", "_IO_FILE"); +__static_renaming("___IO_2_1_stdin__167", "_IO_2_1_stdin_"); +__static_renaming("___IO_2_1_stdout__168", "_IO_2_1_stdout_"); +__static_renaming("___IO_2_1_stderr__169", "_IO_2_1_stderr_"); +__static_renaming("____io_read_fn_173", "__io_read_fn"); +__static_renaming("____io_write_fn_177", "__io_write_fn"); +__static_renaming("____io_seek_fn_181", "__io_seek_fn"); +__static_renaming("____io_close_fn_183", "__io_close_fn"); +__static_renaming("____underflow_184", "__underflow"); +__static_renaming("____underflow_185", "__underflow"); +__static_renaming("____uflow_186", "__uflow"); +__static_renaming("____uflow_187", "__uflow"); +__static_renaming("____overflow_188", "__overflow"); +__static_renaming("____overflow_189", "__overflow"); +__static_renaming("___IO_getc_193", "_IO_getc"); +__static_renaming("___IO_getc_194", "_IO_getc"); +__static_renaming("___IO_putc_199", "_IO_putc"); +__static_renaming("___IO_putc_200", "_IO_putc"); +__static_renaming("___IO_feof_204", "_IO_feof"); +__static_renaming("___IO_feof_205", "_IO_feof"); +__static_renaming("___IO_ferror_209", "_IO_ferror"); +__static_renaming("___IO_ferror_210", "_IO_ferror"); +__static_renaming("___IO_peekc_locked_214", "_IO_peekc_locked"); +__static_renaming("___IO_peekc_locked_215", "_IO_peekc_locked"); +__static_renaming("___IO_flockfile_216", "_IO_flockfile"); +__static_renaming("___IO_flockfile_217", "_IO_flockfile"); +__static_renaming("___IO_funlockfile_218", "_IO_funlockfile"); +__static_renaming("___IO_funlockfile_219", "_IO_funlockfile"); +__static_renaming("___IO_ftrylockfile_220", "_IO_ftrylockfile"); +__static_renaming("___IO_ftrylockfile_221", "_IO_ftrylockfile"); +__static_renaming("___IO_vfscanf_222", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_224", "_IO_vfscanf"); +__static_renaming("___IO_vfprintf_231", "_IO_vfprintf"); +__static_renaming("___IO_vfprintf_233", "_IO_vfprintf"); +__static_renaming("___IO_padn_238", "_IO_padn"); +__static_renaming("___IO_padn_239", "_IO_padn"); +__static_renaming("___IO_sgetn_240", "_IO_sgetn"); +__static_renaming("___IO_sgetn_241", "_IO_sgetn"); +__static_renaming("___IO_seekoff_242", "_IO_seekoff"); +__static_renaming("___IO_seekoff_243", "_IO_seekoff"); +__static_renaming("___IO_seekpos_244", "_IO_seekpos"); +__static_renaming("___IO_seekpos_245", "_IO_seekpos"); +__static_renaming("___IO_free_backup_area_246", "_IO_free_backup_area"); +__static_renaming("___IO_free_backup_area_247", "_IO_free_backup_area"); +__static_renaming("__fpos_t_248", "fpos_t"); +__static_renaming("__fpos_t_250", "fpos_t"); +__static_renaming("__stdin_252", "stdin"); +__static_renaming("__stdin_253", "stdin"); +__static_renaming("__stdout_254", "stdout"); +__static_renaming("__stdout_255", "stdout"); +__static_renaming("__stderr_256", "stderr"); +__static_renaming("__stderr_257", "stderr"); +__static_renaming("__remove_259", "remove"); +__static_renaming("__rename_262", "rename"); +__static_renaming("__tmpfile_263", "tmpfile"); +__static_renaming("__tmpfile_265", "tmpfile"); +__static_renaming("__tmpfile_267", "tmpfile"); +__static_renaming("__tmpfile_269", "tmpfile"); +__static_renaming("__tmpnam_272", "tmpnam"); +__static_renaming("__tmpnam_273", "tmpnam"); +__static_renaming("__fclose_276", "fclose"); +__static_renaming("__fflush_280", "fflush"); +__static_renaming("__fopen_283", "fopen"); +__static_renaming("__fopen_285", "fopen"); +__static_renaming("__fopen_293", "fopen"); +__static_renaming("__fopen_295", "fopen"); +__static_renaming("__freopen_301", "freopen"); +__static_renaming("__freopen_303", "freopen"); +__static_renaming("__freopen_305", "freopen"); +__static_renaming("__freopen_307", "freopen"); +__static_renaming("__setbuf_312", "setbuf"); +__static_renaming("__setvbuf_318", "setvbuf"); +__static_renaming("__fprintf_322", "fprintf"); +__static_renaming("__printf_324", "printf"); +__static_renaming("__sprintf_327", "sprintf"); +__static_renaming("__vfprintf_333", "vfprintf"); +__static_renaming("__vprintf_340", "vprintf"); +__static_renaming("__vsprintf_346", "vsprintf"); +__static_renaming("__snprintf_350", "snprintf"); +__static_renaming("__vsnprintf_356", "vsnprintf"); +__static_renaming("__fscanf_360", "fscanf"); +__static_renaming("__fscanf_362", "fscanf"); +__static_renaming("__scanf_365", "scanf"); +__static_renaming("__scanf_366", "scanf"); +__static_renaming("__sscanf_369", "sscanf"); +__static_renaming("__vfscanf_392", "vfscanf"); +__static_renaming("__vfscanf_396", "vfscanf"); +__static_renaming("__vscanf_403", "vscanf"); +__static_renaming("__vscanf_405", "vscanf"); +__static_renaming("__vsscanf_411", "vsscanf"); +__static_renaming("__fgetc_444", "fgetc"); +__static_renaming("__getc_447", "getc"); +__static_renaming("__getchar_448", "getchar"); +__static_renaming("__fputc_452", "fputc"); +__static_renaming("__putc_456", "putc"); +__static_renaming("__putchar_458", "putchar"); +__static_renaming("__fgets_463", "fgets"); +__static_renaming("__fgets_465", "fgets"); +__static_renaming("__fputs_470", "fputs"); +__static_renaming("__puts_472", "puts"); +__static_renaming("__ungetc_476", "ungetc"); +__static_renaming("__fseek_496", "fseek"); +__static_renaming("__ftell_499", "ftell"); +__static_renaming("__ftell_501", "ftell"); +__static_renaming("__rewind_505", "rewind"); +__static_renaming("__fgetpos_510", "fgetpos"); +__static_renaming("__fgetpos_522", "fgetpos"); +__static_renaming("__fsetpos_530", "fsetpos"); +__static_renaming("__fsetpos_534", "fsetpos"); +__static_renaming("__clearerr_540", "clearerr"); +__static_renaming("__feof_543", "feof"); +__static_renaming("__feof_545", "feof"); +__static_renaming("__ferror_549", "ferror"); +__static_renaming("__ferror_551", "ferror"); +__static_renaming("__perror_554", "perror"); +__static_renaming("____sprintf_chk_564", "__sprintf_chk"); +__static_renaming("____vsprintf_chk_571", "__vsprintf_chk"); +__static_renaming("____snprintf_chk_585", "__snprintf_chk"); +__static_renaming("____vsnprintf_chk_593", "__vsnprintf_chk"); +__static_renaming("____fprintf_chk_608", "__fprintf_chk"); +__static_renaming("____printf_chk_612", "__printf_chk"); +__static_renaming("____vfprintf_chk_619", "__vfprintf_chk"); +__static_renaming("____vprintf_chk_627", "__vprintf_chk"); +__static_renaming("____fgets_chk_651", "__fgets_chk"); +__static_renaming("____fgets_chk_653", "__fgets_chk"); +__static_renaming("____fgets_alias_659", "__fgets_alias"); +__static_renaming("____fgets_chk_warn_666", "__fgets_chk_warn"); +__static_renaming("__wchar_t_704", "wchar_t"); +__static_renaming("__wchar_t_705", "wchar_t"); +__static_renaming("__div_t_710", "div_t"); +__static_renaming("__ldiv_t_715", "ldiv_t"); +__static_renaming("__lldiv_t_720", "lldiv_t"); +__static_renaming("____ctype_get_mb_cur_max_721", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_722", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_723", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_724", "__ctype_get_mb_cur_max"); +__static_renaming("__atof_726", "atof"); +__static_renaming("__atof_727", "atof"); +__static_renaming("__atoi_729", "atoi"); +__static_renaming("__atoi_730", "atoi"); +__static_renaming("__atol_732", "atol"); +__static_renaming("__atol_733", "atol"); +__static_renaming("__atoll_735", "atoll"); +__static_renaming("__atoll_736", "atoll"); +__static_renaming("__strtod_739", "strtod"); +__static_renaming("__strtof_742", "strtof"); +__static_renaming("__strtold_745", "strtold"); +__static_renaming("__strtol_749", "strtol"); +__static_renaming("__strtoul_753", "strtoul"); +__static_renaming("__strtoll_757", "strtoll"); +__static_renaming("__strtoull_761", "strtoull"); +__static_renaming("__rand_765", "rand"); +__static_renaming("__rand_766", "rand"); +__static_renaming("__srand_768", "srand"); +__static_renaming("__malloc_770", "malloc"); +__static_renaming("__malloc_771", "malloc"); +__static_renaming("__calloc_774", "calloc"); +__static_renaming("__calloc_775", "calloc"); +__static_renaming("__realloc_778", "realloc"); +__static_renaming("__realloc_779", "realloc"); +__static_renaming("__free_781", "free"); +__static_renaming("__aligned_alloc_784", "aligned_alloc"); +__static_renaming("__aligned_alloc_785", "aligned_alloc"); +__static_renaming("__abort_786", "abort"); +__static_renaming("__atexit_788", "atexit"); +__static_renaming("__at_quick_exit_790", "at_quick_exit"); +__static_renaming("__exit_792", "exit"); +__static_renaming("__quick_exit_794", "quick_exit"); +__static_renaming("___Exit_796", "_Exit"); +__static_renaming("__getenv_798", "getenv"); +__static_renaming("__getenv_799", "getenv"); +__static_renaming("__system_801", "system"); +__static_renaming("__system_802", "system"); +__static_renaming("____compar_fn_t_803", "__compar_fn_t"); +__static_renaming("__bsearch_811", "bsearch"); +__static_renaming("__bsearch_813", "bsearch"); +__static_renaming("____l_820", "__l"); +__static_renaming("____u_821", "__u"); +__static_renaming("____idx_822", "__idx"); +__static_renaming("____p_823", "__p"); +__static_renaming("____comparison_824", "__comparison"); +__static_renaming("__qsort_832", "qsort"); +__static_renaming("__qsort_834", "qsort"); +__static_renaming("__abs_837", "abs"); +__static_renaming("__abs_838", "abs"); +__static_renaming("__labs_840", "labs"); +__static_renaming("__labs_841", "labs"); +__static_renaming("__llabs_843", "llabs"); +__static_renaming("__llabs_844", "llabs"); +__static_renaming("__div_847", "div"); +__static_renaming("__div_848", "div"); +__static_renaming("__ldiv_851", "ldiv"); +__static_renaming("__ldiv_853", "ldiv"); +__static_renaming("__lldiv_857", "lldiv"); +__static_renaming("__lldiv_859", "lldiv"); +__static_renaming("__mblen_863", "mblen"); +__static_renaming("__mbtowc_868", "mbtowc"); +__static_renaming("__mbtowc_869", "mbtowc"); +__static_renaming("__wctomb_873", "wctomb"); +__static_renaming("__wctomb_874", "wctomb"); +__static_renaming("__mbstowcs_879", "mbstowcs"); +__static_renaming("__mbstowcs_880", "mbstowcs"); +__static_renaming("__wcstombs_885", "wcstombs"); +__static_renaming("__wcstombs_886", "wcstombs"); +__static_renaming("____realpath_chk_891", "__realpath_chk"); +__static_renaming("____realpath_alias_894", "__realpath_alias"); +__static_renaming("____realpath_chk_warn_898", "__realpath_chk_warn"); +__static_renaming("____ptsname_r_chk_906", "__ptsname_r_chk"); +__static_renaming("____ptsname_r_alias_910", "__ptsname_r_alias"); +__static_renaming("____ptsname_r_chk_warn_915", "__ptsname_r_chk_warn"); +__static_renaming("____wctomb_chk_923", "__wctomb_chk"); +__static_renaming("____wctomb_alias_926", "__wctomb_alias"); +__static_renaming("____mbstowcs_chk_933", "__mbstowcs_chk"); +__static_renaming("____mbstowcs_alias_937", "__mbstowcs_alias"); +__static_renaming("____mbstowcs_chk_warn_942", "__mbstowcs_chk_warn"); +__static_renaming("____wcstombs_chk_950", "__wcstombs_chk"); +__static_renaming("____wcstombs_alias_954", "__wcstombs_alias"); +__static_renaming("____wcstombs_chk_warn_959", "__wcstombs_chk_warn"); +__static_renaming("__r_965", "r"); +__static_renaming("__r_966", "r"); +__static_renaming("__m_has_modinfo_967", "m_has_modinfo"); +__static_renaming("__exit_status_968", "exit_status"); +__static_renaming("__someInt_969", "someInt"); +__static_renaming("__k_crcs_970", "k_crcs"); +__static_renaming("__main_971", "main"); +__static_renaming("__main_972", "main"); + +__static_condition_renaming("__static_condition_default_74", "(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_118", "(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_161", "(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_162", "(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_165", "(defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_223", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_225", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_226", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_227", "(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_230", "(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_232", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_234", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_235", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_236", "(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_249", "!(defined _FILE_OFFSET_BITS) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_251", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_264", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_266", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_268", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_270", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_277", "(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_284", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_286", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_294", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_296", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_302", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_304", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_306", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_308", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_334", "!(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_335", "(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_336", "(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_341", "!(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_361", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_363", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_374", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_375", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_377", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_378", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_381", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_383", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_393", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_394", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_395", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_397", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_398", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_399", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_404", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_406", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_418", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_419", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_420", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_421", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_423", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_424", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_425", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_426", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_431", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_432", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_434", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_435", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_441", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_464", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_466", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_482", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_483", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_484", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_485", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_491", "!(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_500", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_502", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_511", "!(defined _FILE_OFFSET_BITS) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_512", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_513", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_523", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_524", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_525", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_531", "!(defined _FILE_OFFSET_BITS) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_532", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_533", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_535", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_536", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_537", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_544", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_546", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_550", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_552", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_558", "!(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_572", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_579", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_594", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_603", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_609", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_620", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_621", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_622", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_628", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_632", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_637", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_643", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_644", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_645", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_652", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_654", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_660", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_667", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_672", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_673", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_680", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_681", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_687", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_688", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_695", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_696", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_702", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_703", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_810", "!(defined _FORTIFY_SOURCE) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_812", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_825", "(defined __USE_EXTERN_INLINES) && !(defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_826", "(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_833", "!(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_835", "(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_852", "!(defined _FORTIFY_SOURCE) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_854", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_858", "!(defined _FORTIFY_SOURCE) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_860", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_901", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_973", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_974", "!(defined _FORTIFY_SOURCE) && !(defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_975", "!(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_976", "!(defined _FORTIFY_SOURCE) && !(defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_977", "!(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_978", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_979", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_980", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_981", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_982", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_983", "(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); + +if (__static_condition_default_983) { __static_parse_error("Unable to parse"); } }; @@ -1528,498 +631,155 @@ typedef long int ____ssize_t_49;// L110:L172 typedef long int ____syscall_slong_t_50;// L93:L175 typedef unsigned long int ____syscall_ulong_t_51;// L94:L177 typedef ____off64_t_24 ____loff_t_52;// L181 -typedef ____quad_t_14 * (____qaddr_t_54);// L182 -typedef char * (____caddr_t_55);// L183 -typedef long int ____intptr_t_56;// L110:L186 -typedef unsigned int ____socklen_t_57;// L92:L189 -typedef struct __forward_tag_reference_58 __FILE_59;// L48 -typedef struct __forward_tag_reference_58 ____FILE_60;// L64 -union ____anonymous_tag_61_62 { -unsigned int ____wch_63;// L265 -char ____wchb_64[4];// L92 -}; -struct ____anonymous_tag_65_66 { -int ____count_67;// L84 -union ____anonymous_tag_61_62 ____value_68;// L85 -}; -typedef struct ____anonymous_tag_65_66 ____mbstate_t_69;// L82:L94 -struct ____anonymous_tag_70_71 { -____off_t_23 ____pos_72;// L0 -____mbstate_t_69 ____state_74;// L0 +typedef ____quad_t_14 * (____qaddr_t_53);// L182 +typedef char * (____caddr_t_54);// L183 +typedef long int ____intptr_t_55;// L110:L186 +typedef unsigned int ____socklen_t_56;// L92:L189 +typedef struct __forward_tag_reference_57 __FILE_58;// L48 +typedef struct __forward_tag_reference_57 ____FILE_59;// L64 +union ____anonymous_tag_60_61 { +unsigned int ____wch_62;// L265 +char ____wchb_63[4];// L92 }; -typedef struct ____anonymous_tag_70_71 ___G_fpos_t_77;// L21:L25 -struct ____anonymous_tag_78_79 { -____off64_t_24 ____pos_80;// L0 -____mbstate_t_69 ____state_82;// L0 +struct ____anonymous_tag_64_65 { +int ____count_66;// L84 +union ____anonymous_tag_60_61 ____value_67;// L85 }; -typedef struct ____anonymous_tag_78_79 ___G_fpos64_t_85;// L26:L30 -typedef __builtin_va_list ____gnuc_va_list_86;// L40 -typedef void ___IO_lock_t_88;// L150 -struct ___IO_marker_90 { -struct __forward_tag_reference_89 * (___next_91);// L0 -struct __forward_tag_reference_58 * (___sbuf_92);// L0 -int ___pos_93;// L162 +typedef struct ____anonymous_tag_64_65 ____mbstate_t_68;// L82:L94 +struct ____anonymous_tag_69_70 { +____off_t_23 ____pos_71;// L0 +____mbstate_t_68 ____state_72;// L0 }; -enum ____codecvt_result_98 { -____codecvt_ok_94, -____codecvt_partial_95, -____codecvt_error_96, -____codecvt_noconv_97, +typedef struct ____anonymous_tag_69_70 ___G_fpos_t_75;// L21:L25 +struct ____anonymous_tag_76_77 { +____off64_t_24 ____pos_78;// L0 +____mbstate_t_68 ____state_79;// L0 }; -struct ___IO_FILE_99 { -int ___flags_100;// L242 -char * (___IO_read_ptr_101);// L247 -char * (___IO_read_end_102);// L248 -char * (___IO_read_base_103);// L249 -char * (___IO_write_base_104);// L250 -char * (___IO_write_ptr_105);// L251 -char * (___IO_write_end_106);// L252 -char * (___IO_buf_base_107);// L253 -char * (___IO_buf_end_108);// L254 -char * (___IO_save_base_109);// L256 -char * (___IO_backup_base_110);// L257 -char * (___IO_save_end_111);// L258 -struct ___IO_marker_90 * (___markers_112);// L260 -struct __forward_tag_reference_58 * (___chain_113);// L0 -int ___fileno_114;// L264 -int ___flags2_115;// L268 -____off_t_23 ___old_offset_116;// L0 -unsigned short ___cur_column_118;// L274 -signed char ___vtable_offset_119;// L275 -char ___shortbuf_120[1];// L276 -___IO_lock_t_88 * (___lock_121);// L0 +typedef struct ____anonymous_tag_76_77 ___G_fpos64_t_81;// L26:L30 +typedef __builtin_va_list ____gnuc_va_list_82;// L40 +typedef void ___IO_lock_t_84;// L150 +struct ___IO_marker_86 { +struct __forward_tag_reference_85 * (___next_87);// L0 +struct __forward_tag_reference_57 * (___sbuf_88);// L0 +int ___pos_89;// L162 }; -struct ___IO_FILE_124 { -int ___flags_125;// L242 -char * (___IO_read_ptr_126);// L247 -char * (___IO_read_end_127);// L248 -char * (___IO_read_base_128);// L249 -char * (___IO_write_base_129);// L250 -char * (___IO_write_ptr_130);// L251 -char * (___IO_write_end_131);// L252 -char * (___IO_buf_base_132);// L253 -char * (___IO_buf_end_133);// L254 -char * (___IO_save_base_134);// L256 -char * (___IO_backup_base_135);// L257 -char * (___IO_save_end_136);// L258 -struct ___IO_marker_90 * (___markers_137);// L260 -struct __forward_tag_reference_58 * (___chain_138);// L0 -int ___fileno_139;// L264 -int ___flags2_140;// L268 -____off_t_23 ___old_offset_141;// L0 -unsigned short ___cur_column_143;// L274 -signed char ___vtable_offset_144;// L275 -char ___shortbuf_145[1];// L276 -___IO_lock_t_88 * (___lock_146);// L0 -____off64_t_24 ___offset_148;// L0 -void * (____pad1_150);// L297 -void * (____pad2_151);// L298 -void * (____pad3_152);// L299 -void * (____pad4_153);// L300 -__size_t_1 ____pad5_154;// L0 -int ___mode_155;// L303 -char ___unused2_156[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +enum ____codecvt_result_94 { +____codecvt_ok_90, +____codecvt_partial_91, +____codecvt_error_92, +____codecvt_noconv_93, }; -struct ___IO_FILE_complete_157 { -struct ___IO_FILE_99 ___file_158;// L286 -____off64_t_24 ___offset_160;// L0 -void * (____pad1_162);// L297 -void * (____pad2_163);// L298 -void * (____pad3_164);// L299 -void * (____pad4_165);// L300 -__size_t_1 ____pad5_166;// L0 -int ___mode_167;// L303 -char ___unused2_168[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +struct ___IO_FILE_95 { +int ___flags_96;// L242 +char * (___IO_read_ptr_97);// L247 +char * (___IO_read_end_98);// L248 +char * (___IO_read_base_99);// L249 +char * (___IO_write_base_100);// L250 +char * (___IO_write_ptr_101);// L251 +char * (___IO_write_end_102);// L252 +char * (___IO_buf_base_103);// L253 +char * (___IO_buf_end_104);// L254 +char * (___IO_save_base_105);// L256 +char * (___IO_backup_base_106);// L257 +char * (___IO_save_end_107);// L258 +struct ___IO_marker_86 * (___markers_108);// L260 +struct __forward_tag_reference_57 * (___chain_109);// L0 +int ___fileno_110;// L264 +int ___flags2_111;// L268 +____off_t_23 ___old_offset_112;// L0 +unsigned short ___cur_column_113;// L274 +signed char ___vtable_offset_114;// L275 +char ___shortbuf_115[1];// L276 +___IO_lock_t_84 * (___lock_116);// L0 }; -typedef struct ___IO_FILE_99 ___IO_FILE_171;// L310 -typedef struct ___IO_FILE_124 ___IO_FILE_172;// L310 -typedef ____ssize_t_49 (____io_read_fn_181) (void * (____cookie_178), char * (____buf_179), __size_t_1 ____nbytes_180);// L333 -typedef ____ssize_t_49 (____io_write_fn_186) (void * (____cookie_183), const char * (____buf_184), __size_t_1 ____n_185);// L341:L342 -typedef int (____io_seek_fn_192) (void * (____cookie_188), ____off64_t_24 * (____pos_189), int ____w_191);// L350 -typedef int (____io_close_fn_195) (void * (____cookie_194));// L353 -typedef ____gnuc_va_list_86 __va_list_279;// L79 -typedef ____off_t_23 __off_t_281;// L90 -typedef ____off64_t_24 __off_t_283;// L92 -typedef ____ssize_t_49 __ssize_t_285;// L102 -typedef ___G_fpos_t_77 __fpos_t_287;// L110 -typedef ___G_fpos64_t_85 __fpos_t_289;// L112 -extern const char * const __sys_errlist_830[];// L27 -typedef long int __ptrdiff_t_1092;// L143:L324 -typedef long unsigned int __size_t_1093;// L177:L209 -typedef int __wchar_t_1094;// L243:L321 -enum ____anonymous_tag_1098_1099 { -__P_ALL_1095, -__P_PID_1096, -__P_PGID_1097, +struct ___IO_FILE_119 { +int ___flags_120;// L242 +char * (___IO_read_ptr_121);// L247 +char * (___IO_read_end_122);// L248 +char * (___IO_read_base_123);// L249 +char * (___IO_write_base_124);// L250 +char * (___IO_write_ptr_125);// L251 +char * (___IO_write_end_126);// L252 +char * (___IO_buf_base_127);// L253 +char * (___IO_buf_end_128);// L254 +char * (___IO_save_base_129);// L256 +char * (___IO_backup_base_130);// L257 +char * (___IO_save_end_131);// L258 +struct ___IO_marker_86 * (___markers_132);// L260 +struct __forward_tag_reference_57 * (___chain_133);// L0 +int ___fileno_134;// L264 +int ___flags2_135;// L268 +____off_t_23 ___old_offset_136;// L0 +unsigned short ___cur_column_137;// L274 +signed char ___vtable_offset_138;// L275 +char ___shortbuf_139[1];// L276 +___IO_lock_t_84 * (___lock_140);// L0 +____off64_t_24 ___offset_142;// L0 +void * (____pad1_143);// L297 +void * (____pad2_144);// L298 +void * (____pad3_145);// L299 +void * (____pad4_146);// L300 +__size_t_1 ____pad5_147;// L0 +int ___mode_148;// L303 +char ___unused2_149[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -typedef enum ____anonymous_tag_1098_1099 __idtype_t_1100;// L50:L55 -typedef unsigned char ____u_char_1101;// L30 -typedef unsigned short int ____u_short_1102;// L31 -typedef unsigned int ____u_int_1103;// L32 -typedef unsigned long int ____u_long_1104;// L33 -typedef signed char ____int8_t_1105;// L36 -typedef unsigned char ____uint8_t_1106;// L37 -typedef signed short int ____int16_t_1107;// L38 -typedef unsigned short int ____uint16_t_1108;// L39 -typedef signed int ____int32_t_1109;// L40 -typedef unsigned int ____uint32_t_1110;// L41 -typedef signed long int ____int64_t_1111;// L43 -typedef unsigned long int ____uint64_t_1112;// L44 -typedef long int ____quad_t_1113;// L52 -typedef unsigned long int ____u_quad_t_1114;// L53 -typedef unsigned long int ____dev_t_1115;// L109:L124 -typedef unsigned int ____uid_t_1116;// L92:L125 -typedef unsigned int ____gid_t_1117;// L92:L126 -typedef unsigned long int ____ino_t_1118;// L94:L127 -typedef unsigned long int ____ino64_t_1119;// L109:L128 -typedef unsigned int ____mode_t_1120;// L92:L129 -typedef unsigned long int ____nlink_t_1121;// L94:L130 -typedef long int ____off_t_1122;// L93:L131 -typedef long int ____off64_t_1123;// L108:L132 -typedef int ____pid_t_1124;// L91:L133 -struct ____anonymous_tag_1125_1126 { -int ____val_1127[2];// L72 +struct ___IO_FILE_complete_150 { +struct ___IO_FILE_95 ___file_151;// L286 +____off64_t_24 ___offset_153;// L0 +void * (____pad1_154);// L297 +void * (____pad2_155);// L298 +void * (____pad3_156);// L299 +void * (____pad4_157);// L300 +__size_t_1 ____pad5_158;// L0 +int ___mode_159;// L303 +char ___unused2_160[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -typedef struct ____anonymous_tag_1125_1126 ____fsid_t_1128;// L72:L134 -typedef long int ____clock_t_1129;// L93:L135 -typedef unsigned long int ____rlim_t_1130;// L94:L136 -typedef unsigned long int ____rlim64_t_1131;// L109:L137 -typedef unsigned int ____id_t_1132;// L92:L138 -typedef long int ____time_t_1133;// L93:L139 -typedef unsigned int ____useconds_t_1134;// L92:L140 -typedef long int ____suseconds_t_1135;// L93:L141 -typedef int ____daddr_t_1136;// L91:L143 -typedef int ____key_t_1137;// L91:L144 -typedef int ____clockid_t_1138;// L91:L147 -typedef void * (____timer_t_1139);// L70:L150 -typedef long int ____blksize_t_1140;// L93:L153 -typedef long int ____blkcnt_t_1141;// L93:L158 -typedef long int ____blkcnt64_t_1142;// L108:L159 -typedef unsigned long int ____fsblkcnt_t_1143;// L94:L162 -typedef unsigned long int ____fsblkcnt64_t_1144;// L109:L163 -typedef unsigned long int ____fsfilcnt_t_1145;// L94:L166 -typedef unsigned long int ____fsfilcnt64_t_1146;// L109:L167 -typedef long int ____fsword_t_1147;// L93:L170 -typedef long int ____ssize_t_1148;// L110:L172 -typedef long int ____syscall_slong_t_1149;// L93:L175 -typedef unsigned long int ____syscall_ulong_t_1150;// L94:L177 -typedef ____off64_t_1123 ____loff_t_1151;// L181 -typedef ____quad_t_1113 * (____qaddr_t_1153);// L182 -typedef char * (____caddr_t_1154);// L183 -typedef long int ____intptr_t_1155;// L110:L186 -typedef unsigned int ____socklen_t_1156;// L92:L189 -struct ____anonymous_tag_1166_1167 { -unsigned int ____w_termsig_1168 : 7;// L72 -unsigned int ____w_coredump_1169 : 1;// L73 -unsigned int ____w_retcode_1170 : 8;// L74 -unsigned int __anon_id_0_1171 : 16;// L75 +typedef struct ___IO_FILE_95 ___IO_FILE_163;// L310 +typedef struct ___IO_FILE_119 ___IO_FILE_164;// L310 +typedef ____ssize_t_49 (____io_read_fn_173) (void * (____cookie_170), char * (____buf_171), __size_t_1 ____nbytes_172);// L333 +typedef ____ssize_t_49 (____io_write_fn_177) (void * (____cookie_174), const char * (____buf_175), __size_t_1 ____n_176);// L341:L342 +typedef int (____io_seek_fn_181) (void * (____cookie_178), ____off64_t_24 * (____pos_179), int ____w_180);// L350 +typedef int (____io_close_fn_183) (void * (____cookie_182));// L353 +typedef ___G_fpos_t_75 __fpos_t_248;// L110 +typedef ___G_fpos64_t_81 __fpos_t_250;// L112 +typedef int __wchar_t_704;// L243:L321 +typedef int __wchar_t_705;// L243:L321 +struct ____anonymous_tag_706_707 { +int __quot_708;// L99 +int __rem_709;// L100 }; -struct ____anonymous_tag_1172_1173 { -unsigned int ____w_stopval_1174 : 8;// L87 -unsigned int ____w_stopsig_1175 : 8;// L88 -unsigned int __anon_id_1_1176 : 16;// L89 +typedef struct ____anonymous_tag_706_707 __div_t_710;// L97:L101 +struct ____anonymous_tag_711_712 { +long int __quot_713;// L107 +long int __rem_714;// L108 }; -union __wait_1177 { -int __w_status_1178;// L68 -struct ____anonymous_tag_1166_1167 ____wait_terminated_1179;// L69 -struct ____anonymous_tag_1172_1173 ____wait_stopped_1180;// L84 +typedef struct ____anonymous_tag_711_712 __ldiv_t_715;// L105:L109 +struct ____anonymous_tag_716_717 { +long long int __quot_718;// L119 +long long int __rem_719;// L120 }; -union ____anonymous_tag_1181_1182 { -union __wait_1177 * (____uptr_1183);// L69 -int * (____iptr_1184);// L70 -}; -typedef union ____anonymous_tag_1181_1182 ____WAIT_STATUS_1185;// L67:L71 -struct ____anonymous_tag_1186_1187 { -int __quot_1188;// L99 -int __rem_1189;// L100 -}; -typedef struct ____anonymous_tag_1186_1187 __div_t_1190;// L97:L101 -struct ____anonymous_tag_1191_1192 { -long int __quot_1193;// L107 -long int __rem_1194;// L108 -}; -typedef struct ____anonymous_tag_1191_1192 __ldiv_t_1195;// L105:L109 -struct ____anonymous_tag_1196_1197 { -long long int __quot_1198;// L119 -long long int __rem_1199;// L120 -}; -typedef struct ____anonymous_tag_1196_1197 __lldiv_t_1200;// L117:L121 -typedef unsigned char ____u_char_1264;// L30 -typedef unsigned short int ____u_short_1265;// L31 -typedef unsigned int ____u_int_1266;// L32 -typedef unsigned long int ____u_long_1267;// L33 -typedef signed char ____int8_t_1268;// L36 -typedef unsigned char ____uint8_t_1269;// L37 -typedef signed short int ____int16_t_1270;// L38 -typedef unsigned short int ____uint16_t_1271;// L39 -typedef signed int ____int32_t_1272;// L40 -typedef unsigned int ____uint32_t_1273;// L41 -typedef signed long int ____int64_t_1274;// L43 -typedef unsigned long int ____uint64_t_1275;// L44 -typedef long int ____quad_t_1276;// L52 -typedef unsigned long int ____u_quad_t_1277;// L53 -typedef unsigned long int ____dev_t_1278;// L109:L124 -typedef unsigned int ____uid_t_1279;// L92:L125 -typedef unsigned int ____gid_t_1280;// L92:L126 -typedef unsigned long int ____ino_t_1281;// L94:L127 -typedef unsigned long int ____ino64_t_1282;// L109:L128 -typedef unsigned int ____mode_t_1283;// L92:L129 -typedef unsigned long int ____nlink_t_1284;// L94:L130 -typedef long int ____off_t_1285;// L93:L131 -typedef long int ____off64_t_1286;// L108:L132 -typedef int ____pid_t_1287;// L91:L133 -struct ____anonymous_tag_1288_1289 { -int ____val_1290[2];// L72 -}; -typedef struct ____anonymous_tag_1288_1289 ____fsid_t_1291;// L72:L134 -typedef long int ____clock_t_1292;// L93:L135 -typedef unsigned long int ____rlim_t_1293;// L94:L136 -typedef unsigned long int ____rlim64_t_1294;// L109:L137 -typedef unsigned int ____id_t_1295;// L92:L138 -typedef long int ____time_t_1296;// L93:L139 -typedef unsigned int ____useconds_t_1297;// L92:L140 -typedef long int ____suseconds_t_1298;// L93:L141 -typedef int ____daddr_t_1299;// L91:L143 -typedef int ____key_t_1300;// L91:L144 -typedef int ____clockid_t_1301;// L91:L147 -typedef void * (____timer_t_1302);// L70:L150 -typedef long int ____blksize_t_1303;// L93:L153 -typedef long int ____blkcnt_t_1304;// L93:L158 -typedef long int ____blkcnt64_t_1305;// L108:L159 -typedef unsigned long int ____fsblkcnt_t_1306;// L94:L162 -typedef unsigned long int ____fsblkcnt64_t_1307;// L109:L163 -typedef unsigned long int ____fsfilcnt_t_1308;// L94:L166 -typedef unsigned long int ____fsfilcnt64_t_1309;// L109:L167 -typedef long int ____fsword_t_1310;// L93:L170 -typedef long int ____ssize_t_1311;// L110:L172 -typedef long int ____syscall_slong_t_1312;// L93:L175 -typedef unsigned long int ____syscall_ulong_t_1313;// L94:L177 -typedef ____off64_t_1286 ____loff_t_1314;// L181 -typedef ____quad_t_1276 * (____qaddr_t_1316);// L182 -typedef char * (____caddr_t_1317);// L183 -typedef long int ____intptr_t_1318;// L110:L186 -typedef unsigned int ____socklen_t_1319;// L92:L189 -typedef ____u_char_2 __u_char_1320;// L33 -typedef ____u_char_1101 __u_char_1321;// L33 -typedef ____u_char_1264 __u_char_1322;// L33 -typedef ____u_short_3 __u_short_1323;// L34 -typedef ____u_short_1102 __u_short_1324;// L34 -typedef ____u_short_1265 __u_short_1325;// L34 -typedef ____u_int_4 __u_int_1326;// L35 -typedef ____u_int_1103 __u_int_1327;// L35 -typedef ____u_int_1266 __u_int_1328;// L35 -typedef ____u_long_5 __u_long_1329;// L36 -typedef ____u_long_1104 __u_long_1330;// L36 -typedef ____u_long_1267 __u_long_1331;// L36 -typedef ____quad_t_14 __quad_t_1332;// L37 -typedef ____quad_t_1113 __quad_t_1333;// L37 -typedef ____quad_t_1276 __quad_t_1334;// L37 -typedef ____u_quad_t_15 __u_quad_t_1335;// L38 -typedef ____u_quad_t_1114 __u_quad_t_1336;// L38 -typedef ____u_quad_t_1277 __u_quad_t_1337;// L38 -typedef ____fsid_t_29 __fsid_t_1338;// L39 -typedef ____fsid_t_1128 __fsid_t_1339;// L39 -typedef ____fsid_t_1291 __fsid_t_1340;// L39 -typedef ____loff_t_52 __loff_t_1342;// L44 -typedef ____loff_t_1151 __loff_t_1343;// L44 -typedef ____loff_t_1314 __loff_t_1344;// L44 -typedef ____loff_t_52 __loff_t_1346;// L44 -typedef ____loff_t_1151 __loff_t_1347;// L44 -typedef ____loff_t_1314 __loff_t_1348;// L44 -typedef ____ino64_t_20 __ino_t_1350;// L50 -typedef ____ino64_t_1119 __ino_t_1351;// L50 -typedef ____ino64_t_1282 __ino_t_1352;// L50 -typedef ____ino_t_19 __ino_t_1354;// L48 -typedef ____ino_t_1118 __ino_t_1355;// L48 -typedef ____ino_t_1281 __ino_t_1356;// L48 -typedef ____dev_t_16 __dev_t_1358;// L60 -typedef ____dev_t_1115 __dev_t_1359;// L60 -typedef ____dev_t_1278 __dev_t_1360;// L60 -typedef ____gid_t_18 __gid_t_1362;// L65 -typedef ____gid_t_1117 __gid_t_1363;// L65 -typedef ____gid_t_1280 __gid_t_1364;// L65 -typedef ____gid_t_18 __gid_t_1366;// L65 -typedef ____gid_t_1117 __gid_t_1367;// L65 -typedef ____gid_t_1280 __gid_t_1368;// L65 -typedef ____mode_t_21 __mode_t_1370;// L70 -typedef ____mode_t_1120 __mode_t_1371;// L70 -typedef ____mode_t_1283 __mode_t_1372;// L70 -typedef ____nlink_t_22 __nlink_t_1374;// L75 -typedef ____nlink_t_1121 __nlink_t_1375;// L75 -typedef ____nlink_t_1284 __nlink_t_1376;// L75 -typedef ____uid_t_17 __uid_t_1378;// L80 -typedef ____uid_t_1116 __uid_t_1379;// L80 -typedef ____uid_t_1279 __uid_t_1380;// L80 -typedef ____uid_t_17 __uid_t_1382;// L80 -typedef ____uid_t_1116 __uid_t_1383;// L80 -typedef ____uid_t_1279 __uid_t_1384;// L80 -typedef ____off64_t_1123 __off_t_1386;// L88 -typedef ____off64_t_1286 __off_t_1387;// L88 -typedef ____off_t_1122 __off_t_1389;// L86 -typedef ____off_t_1285 __off_t_1390;// L86 -typedef ____pid_t_25 __pid_t_1392;// L98 -typedef ____pid_t_1124 __pid_t_1393;// L98 -typedef ____pid_t_1287 __pid_t_1394;// L98 -typedef ____pid_t_1124 __pid_t_1396;// L98 -typedef ____pid_t_1287 __pid_t_1397;// L98 -typedef ____id_t_33 __id_t_1399;// L104 -typedef ____id_t_1132 __id_t_1400;// L104 -typedef ____id_t_1295 __id_t_1401;// L104 -typedef ____ssize_t_1148 __ssize_t_1403;// L109 -typedef ____ssize_t_1311 __ssize_t_1404;// L109 -typedef ____daddr_t_37 __daddr_t_1406;// L115 -typedef ____daddr_t_1136 __daddr_t_1407;// L115 -typedef ____daddr_t_1299 __daddr_t_1408;// L115 -typedef ____caddr_t_55 __caddr_t_1410;// L116 -typedef ____caddr_t_1154 __caddr_t_1411;// L116 -typedef ____caddr_t_1317 __caddr_t_1412;// L116 -typedef ____key_t_38 __key_t_1413;// L122 -typedef ____key_t_1137 __key_t_1414;// L122 -typedef ____key_t_1300 __key_t_1415;// L122 -typedef ____key_t_38 __key_t_1417;// L122 -typedef ____key_t_1137 __key_t_1418;// L122 -typedef ____key_t_1300 __key_t_1419;// L122 -typedef ____clock_t_30 __clock_t_1421;// L59 -typedef ____clock_t_1129 __clock_t_1422;// L59 -typedef ____clock_t_1292 __clock_t_1423;// L59 -typedef ____time_t_34 __time_t_1425;// L75 -typedef ____time_t_1133 __time_t_1426;// L75 -typedef ____time_t_1296 __time_t_1427;// L75 -typedef ____clockid_t_39 __clockid_t_1429;// L91 -typedef ____clockid_t_1138 __clockid_t_1430;// L91 -typedef ____clockid_t_1301 __clockid_t_1431;// L91 -typedef ____timer_t_40 __timer_t_1433;// L103 -typedef ____timer_t_1139 __timer_t_1434;// L103 -typedef ____timer_t_1302 __timer_t_1435;// L103 -typedef unsigned long int __ulong_1437;// L150 -typedef unsigned long int __ulong_1438;// L150 -typedef unsigned long int __ulong_1439;// L150 -typedef unsigned short int __ushort_1440;// L151 -typedef unsigned int __uint_1441;// L152 -typedef int __int8_t_1442;// L188:L194 -typedef int __int16_t_1443;// L188:L195 -typedef int __int32_t_1444;// L188:L196 -typedef int __int64_t_1445;// L188:L197 -typedef unsigned int __u_int8_t_1446;// L190:L200 -typedef unsigned int __u_int16_t_1447;// L190:L201 -typedef unsigned int __u_int32_t_1448;// L190:L202 -typedef unsigned int __u_int64_t_1449;// L190:L203 -typedef int __register_t_1450;// L205 -typedef int ____sig_atomic_t_1460;// L22 -struct ____anonymous_tag_1461_1462 { -unsigned long int ____val_1463[( 1024 / ( 8 * sizeof(unsigned long) ) )];// L29 -}; -typedef struct ____anonymous_tag_1461_1462 ____sigset_t_1464;// L27:L30 -typedef ____sigset_t_1464 __sigset_t_1465;// L37 -struct __timespec_1466 { -____time_t_34 __tv_sec_1467;// L0 -____time_t_1133 __tv_sec_1468;// L0 -____time_t_1296 __tv_sec_1469;// L0 -____syscall_slong_t_50 __tv_nsec_1471;// L0 -____syscall_slong_t_1149 __tv_nsec_1472;// L0 -____syscall_slong_t_1312 __tv_nsec_1473;// L0 -}; -struct __timeval_1476 { -____time_t_34 __tv_sec_1477;// L0 -____time_t_1133 __tv_sec_1478;// L0 -____time_t_1296 __tv_sec_1479;// L0 -____suseconds_t_36 __tv_usec_1481;// L0 -____suseconds_t_1135 __tv_usec_1482;// L0 -____suseconds_t_1298 __tv_usec_1483;// L0 -}; -typedef ____suseconds_t_36 __suseconds_t_1486;// L48 -typedef ____suseconds_t_1135 __suseconds_t_1487;// L48 -typedef ____suseconds_t_1298 __suseconds_t_1488;// L48 -typedef long int ____fd_mask_1490;// L54 -typedef long int ____fd_mask_1491;// L54 -struct ____anonymous_tag_1492_1493 { -____fd_mask_1490 ____fds_bits_1494[1024 / ( 8 * ( int ) sizeof(long) )];// L0 -____fd_mask_1491 ____fds_bits_1496[1024 / ( 8 * ( int ) sizeof(long) )];// L0 -}; -typedef struct ____anonymous_tag_1492_1493 __fd_set_1499;// L64:L75 -typedef ____fd_mask_1490 __fd_mask_1500;// L82 -typedef ____fd_mask_1491 __fd_mask_1501;// L82 -typedef ____blksize_t_41 __blksize_t_1549;// L228 -typedef ____blksize_t_1140 __blksize_t_1550;// L228 -typedef ____blksize_t_1303 __blksize_t_1551;// L228 -typedef ____blkcnt_t_42 __blkcnt_t_1553;// L235 -typedef ____blkcnt_t_1141 __blkcnt_t_1554;// L235 -typedef ____blkcnt_t_1304 __blkcnt_t_1555;// L235 -typedef ____fsblkcnt_t_44 __fsblkcnt_t_1557;// L239 -typedef ____fsblkcnt_t_1143 __fsblkcnt_t_1558;// L239 -typedef ____fsblkcnt_t_1306 __fsblkcnt_t_1559;// L239 -typedef ____blkcnt64_t_43 __blkcnt_t_1561;// L248 -typedef ____blkcnt64_t_1142 __blkcnt_t_1562;// L248 -typedef ____blkcnt64_t_1305 __blkcnt_t_1563;// L248 -typedef ____fsblkcnt64_t_45 __fsblkcnt_t_1565;// L252 -typedef ____fsblkcnt64_t_1144 __fsblkcnt_t_1566;// L252 -typedef ____fsblkcnt64_t_1307 __fsblkcnt_t_1567;// L252 -typedef ____fsfilcnt_t_46 __fsfilcnt_t_1569;// L243 -typedef ____fsfilcnt_t_1145 __fsfilcnt_t_1570;// L243 -typedef ____fsfilcnt_t_1308 __fsfilcnt_t_1571;// L243 -typedef ____fsfilcnt64_t_47 __fsfilcnt_t_1573;// L256 -typedef ____fsfilcnt64_t_1146 __fsfilcnt_t_1574;// L256 -typedef ____fsfilcnt64_t_1309 __fsfilcnt_t_1575;// L256 -typedef unsigned long int __pthread_t_1577;// L60 -union __pthread_attr_t_1578 { -char ____size_1579[56];// L65 -long int ____align_1580;// L66 -}; -typedef union __pthread_attr_t_1578 __pthread_attr_t_1581;// L69 -struct ____pthread_internal_list_1583 { -struct __forward_tag_reference_1582 * (____prev_1584);// L0 -struct __forward_tag_reference_1582 * (____next_1585);// L0 -}; -typedef struct ____pthread_internal_list_1583 ____pthread_list_t_1586;// L75:L79 -typedef struct ____pthread_internal_list_1583 ____pthread_list_t_1587;// L75:L79 -struct ____pthread_mutex_s_1588 { -int ____lock_1589;// L94 -unsigned int ____count_1590;// L95 -int ____owner_1591;// L96 -unsigned int ____nusers_1592;// L98 -int ____kind_1593;// L102 -short ____spins_1594;// L104 -short ____elision_1595;// L105 -____pthread_list_t_1586 ____list_1596;// L0 -____pthread_list_t_1587 ____list_1597;// L0 -}; -union ____anonymous_tag_1598_1599 { -struct ____pthread_mutex_s_1588 ____data_1600;// L92 -char ____size_1601[40];// L126 -long int ____align_1602;// L127 -}; -typedef union ____anonymous_tag_1598_1599 __pthread_mutex_t_1603;// L90:L128 -union ____anonymous_tag_1604_1605 { -char ____size_1606[4];// L132 -int ____align_1607;// L133 -}; -typedef union ____anonymous_tag_1604_1605 __pthread_mutexattr_t_1608;// L130:L134 -typedef int (* (____compar_fn_t_1740)) (const void *, const void *);// L741 +typedef struct ____anonymous_tag_716_717 __lldiv_t_720;// L117:L121 +typedef int (* (____compar_fn_t_803)) (const void *, const void *);// L741 -struct __forward_tag_reference_89 { // generated union of struct variations +struct __forward_tag_reference_57 { // generated union of struct variations union { -struct ___IO_marker_90 ___IO_marker_90; +struct ___IO_FILE_95 ___IO_FILE_95; +struct ___IO_FILE_119 ___IO_FILE_119; }; }; -struct __forward_tag_reference_1582 { // generated union of struct variations +struct __forward_tag_reference_85 { // generated union of struct variations union { +struct ___IO_marker_86 ___IO_marker_86; }; }; -struct __forward_tag_reference_58 { // generated union of struct variations +struct __forward_tag_reference_83 { // generated union of struct variations union { -struct ___IO_FILE_99 ___IO_FILE_99; -struct ___IO_FILE_124 ___IO_FILE_124; }; }; -struct __forward_tag_reference_87 { // generated union of struct variations -union { -}; -}; - -struct __forward_tag_reference_174 { // generated union of struct variations +struct __forward_tag_reference_166 { // generated union of struct variations union { }; }; @@ -2078,911 +838,350 @@ union { // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_58 ;// L0 +struct __forward_tag_reference_57 ;// L0 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_87 ;// L0 -struct __forward_tag_reference_87 ;// L0 -struct __forward_tag_reference_58 ;// L0 +struct __forward_tag_reference_83 ;// L0 +struct __forward_tag_reference_83 ;// L0 +struct __forward_tag_reference_57 ;// L0 // typedef moved to top of scope -struct ___IO_marker_90 ;// L156 -enum ____codecvt_result_98 ;// L176 -struct ___IO_FILE_99 ;// L241 +struct ___IO_marker_86 ;// L156 +enum ____codecvt_result_94 ;// L176 +struct ___IO_FILE_95 ;// L241 -struct ___IO_FILE_124 ;// L241 -struct ___IO_FILE_complete_157 ;// L241 +struct ___IO_FILE_119 ;// L241 +struct ___IO_FILE_complete_150 ;// L241 // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_174 ;// L0 -extern struct __forward_tag_reference_174 ___IO_2_1_stdin__175;// L315 -extern struct __forward_tag_reference_174 ___IO_2_1_stdout__176;// L316 -extern struct __forward_tag_reference_174 ___IO_2_1_stderr__177;// L317 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern int (____underflow_196) (___IO_FILE_171 *);// L385 -extern int (____underflow_197) (___IO_FILE_172 *);// L385 -extern int (____uflow_199) (___IO_FILE_171 *);// L386 -extern int (____uflow_200) (___IO_FILE_172 *);// L386 -extern int (____overflow_202) (___IO_FILE_171 *, int );// L387 -extern int (____overflow_203) (___IO_FILE_172 *, int );// L387 -extern int (___IO_getc_208) (___IO_FILE_171 * (____fp_205));// L429 -extern int (___IO_getc_209) (___IO_FILE_172 * (____fp_206));// L429 -extern int (___IO_putc_215) (int ____c_211, ___IO_FILE_171 * (____fp_212));// L430 -extern int (___IO_putc_216) (int ____c_211, ___IO_FILE_172 * (____fp_213));// L430 -extern int (___IO_feof_221) (___IO_FILE_171 * (____fp_218));// L431 -extern int (___IO_feof_222) (___IO_FILE_172 * (____fp_219));// L431 -extern int (___IO_ferror_227) (___IO_FILE_171 * (____fp_224));// L432 -extern int (___IO_ferror_228) (___IO_FILE_172 * (____fp_225));// L432 -extern int (___IO_peekc_locked_233) (___IO_FILE_171 * (____fp_230));// L434 -extern int (___IO_peekc_locked_234) (___IO_FILE_172 * (____fp_231));// L434 -extern void (___IO_flockfile_236) (___IO_FILE_171 *);// L440 -extern void (___IO_flockfile_237) (___IO_FILE_172 *);// L440 -extern void (___IO_funlockfile_239) (___IO_FILE_171 *);// L441 -extern void (___IO_funlockfile_240) (___IO_FILE_172 *);// L441 -extern int (___IO_ftrylockfile_242) (___IO_FILE_171 *);// L442 -extern int (___IO_ftrylockfile_243) (___IO_FILE_172 *);// L442 -extern int (___IO_vfscanf_245) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_247) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_251) (___IO_FILE_171 * __restrict , const char * __restrict , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_252) (___IO_FILE_172 * __restrict , const char * __restrict , int * __restrict );// L459:L460 -extern int (___IO_vfprintf_254) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 -extern int (___IO_vfprintf_256) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 -extern int (___IO_vfprintf_260) ();// L461:L462 -extern ____ssize_t_49 (___IO_padn_261) (___IO_FILE_171 *, int , ____ssize_t_49 );// L463 -extern ____ssize_t_49 (___IO_padn_262) (___IO_FILE_172 *, int , ____ssize_t_49 );// L463 -extern __size_t_1 (___IO_sgetn_265) (___IO_FILE_171 *, void *, __size_t_1 );// L464 -extern __size_t_1 (___IO_sgetn_266) (___IO_FILE_172 *, void *, __size_t_1 );// L464 -extern ____off64_t_24 (___IO_seekoff_268) (___IO_FILE_171 *, ____off64_t_24 , int , int );// L466 -extern ____off64_t_24 (___IO_seekoff_269) (___IO_FILE_172 *, ____off64_t_24 , int , int );// L466 -extern ____off64_t_24 (___IO_seekpos_272) (___IO_FILE_171 *, ____off64_t_24 , int );// L467 -extern ____off64_t_24 (___IO_seekpos_273) (___IO_FILE_172 *, ____off64_t_24 , int );// L467 -extern void (___IO_free_backup_area_276) (___IO_FILE_171 *);// L469 -extern void (___IO_free_backup_area_277) (___IO_FILE_172 *);// L469 +struct __forward_tag_reference_166 ;// L0 +extern struct __forward_tag_reference_166 ___IO_2_1_stdin__167;// L315 +extern struct __forward_tag_reference_166 ___IO_2_1_stdout__168;// L316 +extern struct __forward_tag_reference_166 ___IO_2_1_stderr__169;// L317 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope +extern int (____underflow_184) (___IO_FILE_163 *);// L385 +extern int (____underflow_185) (___IO_FILE_164 *);// L385 +extern int (____uflow_186) (___IO_FILE_163 *);// L386 +extern int (____uflow_187) (___IO_FILE_164 *);// L386 +extern int (____overflow_188) (___IO_FILE_163 *, int );// L387 +extern int (____overflow_189) (___IO_FILE_164 *, int );// L387 +extern int (___IO_getc_193) (___IO_FILE_163 * (____fp_190));// L429 +extern int (___IO_getc_194) (___IO_FILE_164 * (____fp_191));// L429 +extern int (___IO_putc_199) (int ____c_195, ___IO_FILE_163 * (____fp_196));// L430 +extern int (___IO_putc_200) (int ____c_195, ___IO_FILE_164 * (____fp_197));// L430 +extern int (___IO_feof_204) (___IO_FILE_163 * (____fp_201));// L431 +extern int (___IO_feof_205) (___IO_FILE_164 * (____fp_202));// L431 +extern int (___IO_ferror_209) (___IO_FILE_163 * (____fp_206));// L432 +extern int (___IO_ferror_210) (___IO_FILE_164 * (____fp_207));// L432 +extern int (___IO_peekc_locked_214) (___IO_FILE_163 * (____fp_211));// L434 +extern int (___IO_peekc_locked_215) (___IO_FILE_164 * (____fp_212));// L434 +extern void (___IO_flockfile_216) (___IO_FILE_163 *);// L440 +extern void (___IO_flockfile_217) (___IO_FILE_164 *);// L440 +extern void (___IO_funlockfile_218) (___IO_FILE_163 *);// L441 +extern void (___IO_funlockfile_219) (___IO_FILE_164 *);// L441 +extern int (___IO_ftrylockfile_220) (___IO_FILE_163 *);// L442 +extern int (___IO_ftrylockfile_221) (___IO_FILE_164 *);// L442 +extern int (___IO_vfscanf_222) (___IO_FILE_163 * __restrict , const char * __restrict , ____gnuc_va_list_82 , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_224) (___IO_FILE_164 * __restrict , const char * __restrict , ____gnuc_va_list_82 , int * __restrict );// L459:L460 + + +extern int (___IO_vfprintf_231) (___IO_FILE_163 * __restrict , const char * __restrict , ____gnuc_va_list_82 );// L461:L462 +extern int (___IO_vfprintf_233) (___IO_FILE_164 * __restrict , const char * __restrict , ____gnuc_va_list_82 );// L461:L462 + +extern ____ssize_t_49 (___IO_padn_238) (___IO_FILE_163 *, int , ____ssize_t_49 );// L463 +extern ____ssize_t_49 (___IO_padn_239) (___IO_FILE_164 *, int , ____ssize_t_49 );// L463 +extern __size_t_1 (___IO_sgetn_240) (___IO_FILE_163 *, void *, __size_t_1 );// L464 +extern __size_t_1 (___IO_sgetn_241) (___IO_FILE_164 *, void *, __size_t_1 );// L464 +extern ____off64_t_24 (___IO_seekoff_242) (___IO_FILE_163 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekoff_243) (___IO_FILE_164 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekpos_244) (___IO_FILE_163 *, ____off64_t_24 , int );// L467 +extern ____off64_t_24 (___IO_seekpos_245) (___IO_FILE_164 *, ____off64_t_24 , int );// L467 +extern void (___IO_free_backup_area_246) (___IO_FILE_163 *);// L469 +extern void (___IO_free_backup_area_247) (___IO_FILE_164 *);// L469 // typedef moved to top of scope // typedef moved to top of scope -extern struct ___IO_FILE_99 * (__stdin_291);// L168 -extern struct ___IO_FILE_124 * (__stdin_292);// L168 -extern struct ___IO_FILE_99 * (__stdout_294);// L169 -extern struct ___IO_FILE_124 * (__stdout_295);// L169 -extern struct ___IO_FILE_99 * (__stderr_297);// L170 -extern struct ___IO_FILE_124 * (__stderr_298);// L170 -extern int (__remove_301) (const char * (____filename_300));// L178 -extern int (__rename_304) (const char * (____old_302), const char * (____new_303));// L180 -extern int (__renameat_309) (int ____oldfd_305, const char * (____old_306), int ____newfd_307, const char * (____new_308));// L185:L186 -extern __FILE_59 * ((__tmpfile_310) (void ));// L195 -extern __FILE_59 * ((__tmpfile_316) (void ));// L198 -extern __FILE_59 * ((__tmpfile_314) (void ));// L195 -extern __FILE_59 * ((__tmpfile_312) (void ));// L198 -extern char * ((__tmpnam_319) (char * (____s_318)));// L209 -extern char * ((__tmpnam_320) (char * (____s_318)));// L209 -extern char * ((__tmpnam_r_322) (char * (____s_321)));// L215 -extern char * ((__tmpnam_r_323) (char * (____s_321)));// L215 -extern char * ((__tempnam_326) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 -extern char * ((__tempnam_327) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 -extern int (__fclose_330) (__FILE_59 * (____stream_328));// L237 -extern int (__fclose_332) (__FILE_59 * (____stream_328));// L237 -extern int (__fflush_336) (__FILE_59 * (____stream_334));// L242 -extern int (__fflush_unlocked_340) (__FILE_59 * (____stream_338));// L252 -extern __FILE_59 * ((__fopen_344) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 -extern __FILE_59 * ((__fopen_346) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 -extern __FILE_59 * ((__fopen_354) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 -extern __FILE_59 * ((__fopen_356) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 -extern __FILE_59 * ((__freopen_362) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 -extern __FILE_59 * ((__freopen_368) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 -extern __FILE_59 * ((__freopen_366) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 -extern __FILE_59 * ((__freopen_364) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 -extern __FILE_59 * ((__fdopen_372) (int ____fd_370, const char * (____modes_371)));// L306 -extern __FILE_59 * ((__fdopen_374) (int ____fd_370, const char * (____modes_371)));// L306 -extern __FILE_59 * ((__fmemopen_379) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 -extern __FILE_59 * ((__fmemopen_381) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 -extern __FILE_59 * ((__open_memstream_385) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 -extern __FILE_59 * ((__open_memstream_387) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 -extern void (__setbuf_392) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 -extern void (__setbuf_394) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 -extern int (__setvbuf_401) (__FILE_59 * __restrict ____stream_396, char * __restrict ____buf_398, int ____modes_399, __size_t_1 ____n_400);// L336:L337 -extern void (__setbuffer_407) (__FILE_59 * __restrict ____stream_403, char * __restrict ____buf_405, __size_t_1 ____size_406);// L343:L344 -extern void (__setlinebuf_411) (__FILE_59 * (____stream_409));// L347 -extern int (__fprintf_416) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 -extern int (__fprintf_418) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 -extern int (__printf_421) (const char * __restrict ____format_420, ... );// L362 -extern int (__sprintf_424) (char * __restrict ____s_422, const char * __restrict ____format_423, ... );// L364:L365 -extern int (__vfprintf_430) (__FILE_59 * __restrict ____s_425, const char * __restrict ____format_427, ____gnuc_va_list_86 ____arg_428);// L371:L372 -extern int (__vprintf_437) (const char * __restrict ____format_434, ____gnuc_va_list_86 ____arg_435);// L377 -extern int (__vsprintf_443) (char * __restrict ____s_439, const char * __restrict ____format_440, ____gnuc_va_list_86 ____arg_441);// L379:L380 -extern int (__snprintf_448) (char * __restrict ____s_445, __size_t_1 ____maxlen_446, const char * __restrict ____format_447, ... );// L386:L388 -extern int (__vsnprintf_454) (char * __restrict ____s_449, __size_t_1 ____maxlen_450, const char * __restrict ____format_451, ____gnuc_va_list_86 ____arg_452);// L390:L392 -extern int (__vdprintf_460) (int ____fd_456, const char * __restrict ____fmt_457, ____gnuc_va_list_86 ____arg_458);// L412:L414 -extern int (__dprintf_464) (int ____fd_462, const char * __restrict ____fmt_463, ... );// L415:L416 -extern int (__fscanf_468) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__fscanf_470) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__fscanf_472) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__fscanf_474) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__scanf_477) (const char * __restrict ____format_476, ... );// L431 -extern int (__scanf_478) (const char * __restrict ____format_476, ... );// L431 -extern int (__sscanf_481) (const char * __restrict ____s_479, const char * __restrict ____format_480, ... );// L433:L434 - - - - - - - -extern int (__vfscanf_509) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 -extern int (__vfscanf_513) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 -extern int (__vscanf_520) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 -extern int (__vscanf_522) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 -extern int (__vsscanf_528) (const char * __restrict ____s_524, const char * __restrict ____format_525, ____gnuc_va_list_86 ____arg_526);// L483:L485 - - - - - -extern int (__fgetc_563) (__FILE_59 * (____stream_561));// L531 -extern int (__getc_567) (__FILE_59 * (____stream_565));// L532 -extern int (__getchar_569) (void );// L538 -extern int (__getc_unlocked_572) (__FILE_59 * (____stream_570));// L550 -extern int (__getchar_unlocked_574) (void );// L551 -extern int (__fgetc_unlocked_577) (__FILE_59 * (____stream_575));// L561 -extern int (__fputc_582) (int ____c_579, __FILE_59 * (____stream_580));// L573 -extern int (__fputc_584) (int ____c_579, __FILE_59 * (____stream_580));// L573 -extern int (__putc_589) (int ____c_586, __FILE_59 * (____stream_587));// L574 -extern int (__putchar_592) (int ____c_591);// L580 -extern int (__fputc_unlocked_596) (int ____c_593, __FILE_59 * (____stream_594));// L594 -extern int (__putc_unlocked_601) (int ____c_598, __FILE_59 * (____stream_599));// L602 -extern int (__putchar_unlocked_604) (int ____c_603);// L603 -extern int (__getw_607) (__FILE_59 * (____stream_605));// L610 -extern int (__putw_612) (int ____w_609, __FILE_59 * (____stream_610));// L613 -extern char * ((__fgets_618) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern char * ((__fgets_620) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern char * ((__fgets_622) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern char * ((__fgets_624) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern ____ssize_t_49 (____getdelim_631) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 -extern ____ssize_t_49 (____getdelim_635) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 -extern ____ssize_t_49 (__getdelim_644) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 -extern ____ssize_t_49 (__getdelim_648) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 -extern ____ssize_t_49 (__getline_656) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 -extern ____ssize_t_49 (__getline_660) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 -extern int (__fputs_667) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 -extern int (__fputs_669) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 -extern int (__puts_672) (const char * (____s_671));// L695 -extern int (__ungetc_676) (int ____c_673, __FILE_59 * (____stream_674));// L702 -extern int (__fseek_714) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 -extern int (__fseek_716) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 -extern long int (__ftell_720) (__FILE_59 * (____stream_718));// L754 -extern long int (__ftell_722) (__FILE_59 * (____stream_718));// L754 -extern void (__rewind_726) (__FILE_59 * (____stream_724));// L759 -extern int (__fseeko_733) (__FILE_59 * (____stream_728), ____off_t_23 ____off_730, int ____whence_732);// L773 -extern int (__fseeko_744) (__FILE_59 * (____stream_739), ____off64_t_24 ____off_741, int ____whence_743);// L781:L783 -extern ____off_t_23 (__ftello_758) (__FILE_59 * (____stream_737));// L778 -extern ____off_t_23 (__ftello_750) (__FILE_59 * (____stream_737));// L778 -extern int (__fgetpos_766) (__FILE_59 * __restrict ____stream_762, __fpos_t_287 * __restrict ____pos_764);// L798 -extern ____off64_t_24 (__ftello_754) (__FILE_59 * (____stream_748));// L784 -extern int (__fgetpos_778) (__FILE_59 * __restrict ____stream_774, __fpos_t_289 * __restrict ____pos_776);// L806:L807 -extern int (__fsetpos_786) (__FILE_59 * (____stream_770), const __fpos_t_287 * (____pos_772));// L803 -extern int (__fsetpos_790) (__FILE_59 * (____stream_782), const __fpos_t_289 * (____pos_784));// L808:L809 -extern void (__clearerr_796) (__FILE_59 * (____stream_794));// L826 -extern int (__feof_800) (__FILE_59 * (____stream_798));// L828 -extern int (__feof_802) (__FILE_59 * (____stream_798));// L828 -extern int (__ferror_806) (__FILE_59 * (____stream_804));// L830 -extern int (__ferror_808) (__FILE_59 * (____stream_804));// L830 -extern void (__clearerr_unlocked_812) (__FILE_59 * (____stream_810));// L835 -extern int (__feof_unlocked_816) (__FILE_59 * (____stream_814));// L836 -extern int (__feof_unlocked_818) (__FILE_59 * (____stream_814));// L836 -extern int (__ferror_unlocked_822) (__FILE_59 * (____stream_820));// L837 -extern int (__ferror_unlocked_824) (__FILE_59 * (____stream_820));// L837 -extern void (__perror_827) (const char * (____s_826));// L846 -extern void (__perror_828) (const char * (____s_826));// L846 -extern int __sys_nerr_829;// L26 - -extern int (__fileno_835) (__FILE_59 * (____stream_831));// L858 -extern int (__fileno_833) (__FILE_59 * (____stream_831));// L858 -extern int (__fileno_unlocked_841) (__FILE_59 * (____stream_837));// L863 -extern int (__fileno_unlocked_839) (__FILE_59 * (____stream_837));// L863 -extern __FILE_59 * ((__popen_845) (const char * (____command_843), const char * (____modes_844)));// L872 -extern __FILE_59 * ((__popen_847) (const char * (____command_843), const char * (____modes_844)));// L872 -extern int (__pclose_851) (__FILE_59 * (____stream_849));// L878 -extern char * ((__ctermid_854) (char * (____s_853)));// L884 -extern void (__flockfile_857) (__FILE_59 * (____stream_855));// L912 -extern int (__ftrylockfile_861) (__FILE_59 * (____stream_859));// L916 -extern int (__ftrylockfile_863) (__FILE_59 * (____stream_859));// L916 -extern void (__funlockfile_867) (__FILE_59 * (____stream_865));// L919 -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ +extern struct ___IO_FILE_95 * (__stdin_252);// L168 +extern struct ___IO_FILE_119 * (__stdin_253);// L168 +extern struct ___IO_FILE_95 * (__stdout_254);// L169 +extern struct ___IO_FILE_119 * (__stdout_255);// L169 +extern struct ___IO_FILE_95 * (__stderr_256);// L170 +extern struct ___IO_FILE_119 * (__stderr_257);// L170 +extern int (__remove_259) (const char * (____filename_258));// L178 +extern int (__rename_262) (const char * (____old_260), const char * (____new_261));// L180 +extern __FILE_58 * ((__tmpfile_263) (void ));// L195 +extern __FILE_58 * ((__tmpfile_269) (void ));// L198 +extern __FILE_58 * ((__tmpfile_267) (void ));// L198 +extern __FILE_58 * ((__tmpfile_265) (void ));// L195 +extern char * ((__tmpnam_272) (char * (____s_271)));// L209 +extern char * ((__tmpnam_273) (char * (____s_271)));// L209 +extern int (__fclose_276) (__FILE_58 * (____stream_274));// L237 +extern int (__fflush_280) (__FILE_58 * (____stream_278));// L242 +extern __FILE_58 * ((__fopen_283) (const char * __restrict ____filename_281, const char * __restrict ____modes_282));// L272:L273 +extern __FILE_58 * ((__fopen_285) (const char * __restrict ____filename_281, const char * __restrict ____modes_282));// L272:L273 +extern __FILE_58 * ((__fopen_293) (const char * __restrict ____filename_291, const char * __restrict ____modes_292));// L283:L285 +extern __FILE_58 * ((__fopen_295) (const char * __restrict ____filename_291, const char * __restrict ____modes_292));// L283:L285 +extern __FILE_58 * ((__freopen_301) (const char * __restrict ____filename_287, const char * __restrict ____modes_288, __FILE_58 * __restrict ____stream_289));// L278:L280 +extern __FILE_58 * ((__freopen_307) (const char * __restrict ____filename_297, const char * __restrict ____modes_298, __FILE_58 * __restrict ____stream_299));// L286:L289 +extern __FILE_58 * ((__freopen_305) (const char * __restrict ____filename_297, const char * __restrict ____modes_298, __FILE_58 * __restrict ____stream_299));// L286:L289 +extern __FILE_58 * ((__freopen_303) (const char * __restrict ____filename_287, const char * __restrict ____modes_288, __FILE_58 * __restrict ____stream_289));// L278:L280 +extern void (__setbuf_312) (__FILE_58 * __restrict ____stream_309, char * __restrict ____buf_311);// L332 +extern int (__setvbuf_318) (__FILE_58 * __restrict ____stream_313, char * __restrict ____buf_315, int ____modes_316, __size_t_1 ____n_317);// L336:L337 +extern int (__fprintf_322) (__FILE_58 * __restrict ____stream_319, const char * __restrict ____format_321, ... );// L356:L357 +extern int (__printf_324) (const char * __restrict ____format_323, ... );// L362 +extern int (__sprintf_327) (char * __restrict ____s_325, const char * __restrict ____format_326, ... );// L364:L365 +extern int (__vfprintf_333) (__FILE_58 * __restrict ____s_328, const char * __restrict ____format_330, ____gnuc_va_list_82 ____arg_331);// L371:L372 +extern int (__vprintf_340) (const char * __restrict ____format_337, ____gnuc_va_list_82 ____arg_338);// L377 +extern int (__vsprintf_346) (char * __restrict ____s_342, const char * __restrict ____format_343, ____gnuc_va_list_82 ____arg_344);// L379:L380 +extern int (__snprintf_350) (char * __restrict ____s_347, __size_t_1 ____maxlen_348, const char * __restrict ____format_349, ... );// L386:L388 +extern int (__vsnprintf_356) (char * __restrict ____s_351, __size_t_1 ____maxlen_352, const char * __restrict ____format_353, ____gnuc_va_list_82 ____arg_354);// L390:L392 +extern int (__fscanf_360) (__FILE_58 * __restrict ____stream_357, const char * __restrict ____format_359, ... );// L425:L426 +extern int (__fscanf_362) (__FILE_58 * __restrict ____stream_357, const char * __restrict ____format_359, ... );// L425:L426 +extern int (__scanf_365) (const char * __restrict ____format_364, ... );// L431 +extern int (__scanf_366) (const char * __restrict ____format_364, ... );// L431 +extern int (__sscanf_369) (const char * __restrict ____s_367, const char * __restrict ____format_368, ... );// L433:L434 + + + + + +extern int (__vfscanf_392) (__FILE_58 * __restrict ____s_387, const char * __restrict ____format_389, ____gnuc_va_list_82 ____arg_390);// L471:L473 +extern int (__vfscanf_396) (__FILE_58 * __restrict ____s_387, const char * __restrict ____format_389, ____gnuc_va_list_82 ____arg_390);// L471:L473 +extern int (__vscanf_403) (const char * __restrict ____format_400, ____gnuc_va_list_82 ____arg_401);// L479:L480 +extern int (__vscanf_405) (const char * __restrict ____format_400, ____gnuc_va_list_82 ____arg_401);// L479:L480 +extern int (__vsscanf_411) (const char * __restrict ____s_407, const char * __restrict ____format_408, ____gnuc_va_list_82 ____arg_409);// L483:L485 + + + + + +extern int (__fgetc_444) (__FILE_58 * (____stream_442));// L531 +extern int (__getc_447) (__FILE_58 * (____stream_445));// L532 +extern int (__getchar_448) (void );// L538 +extern int (__fputc_452) (int ____c_449, __FILE_58 * (____stream_450));// L573 +extern int (__putc_456) (int ____c_453, __FILE_58 * (____stream_454));// L574 +extern int (__putchar_458) (int ____c_457);// L580 +extern char * ((__fgets_463) (char * __restrict ____s_459, int ____n_460, __FILE_58 * __restrict ____stream_461));// L622:L623 +extern char * ((__fgets_465) (char * __restrict ____s_459, int ____n_460, __FILE_58 * __restrict ____stream_461));// L622:L623 +extern int (__fputs_470) (const char * __restrict ____s_467, __FILE_58 * __restrict ____stream_468);// L689 +extern int (__puts_472) (const char * (____s_471));// L695 +extern int (__ungetc_476) (int ____c_473, __FILE_58 * (____stream_474));// L702 +extern int (__fseek_496) (__FILE_58 * (____stream_492), long int ____off_494, int ____whence_495);// L749 +extern long int (__ftell_499) (__FILE_58 * (____stream_497));// L754 +extern long int (__ftell_501) (__FILE_58 * (____stream_497));// L754 +extern void (__rewind_505) (__FILE_58 * (____stream_503));// L759 +extern int (__fgetpos_510) (__FILE_58 * __restrict ____stream_506, __fpos_t_248 * __restrict ____pos_508);// L798 +extern int (__fgetpos_522) (__FILE_58 * __restrict ____stream_518, __fpos_t_250 * __restrict ____pos_520);// L806:L807 +extern int (__fsetpos_530) (__FILE_58 * (____stream_514), const __fpos_t_248 * (____pos_516));// L803 +extern int (__fsetpos_534) (__FILE_58 * (____stream_526), const __fpos_t_250 * (____pos_528));// L808:L809 +extern void (__clearerr_540) (__FILE_58 * (____stream_538));// L826 +extern int (__feof_543) (__FILE_58 * (____stream_541));// L828 +extern int (__feof_545) (__FILE_58 * (____stream_541));// L828 +extern int (__ferror_549) (__FILE_58 * (____stream_547));// L830 +extern int (__ferror_551) (__FILE_58 * (____stream_547));// L830 +extern void (__perror_554) (const char * (____s_553));// L846 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ +extern int (____sprintf_chk_564) (char * __restrict ____s_560, int ____flag_561, __size_t_1 ____slen_562, const char * __restrict ____format_563, ... );// L23:L24 +extern int (____vsprintf_chk_571) (char * __restrict ____s_565, int ____flag_566, __size_t_1 ____slen_567, const char * __restrict ____format_568, ____gnuc_va_list_82 ____ap_569);// L25:L27 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ +extern int (____snprintf_chk_585) (char * __restrict ____s_580, __size_t_1 ____n_581, int ____flag_582, __size_t_1 ____slen_583, const char * __restrict ____format_584, ... );// L52:L54 +extern int (____vsnprintf_chk_593) (char * __restrict ____s_586, __size_t_1 ____n_587, int ____flag_588, __size_t_1 ____slen_589, const char * __restrict ____format_590, ____gnuc_va_list_82 ____ap_591);// L55:L57 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____sprintf_chk_899) (char * __restrict ____s_895, int ____flag_896, __size_t_1 ____slen_897, const char * __restrict ____format_898, ... );// L23:L24 -extern int (____vsprintf_chk_906) (char * __restrict ____s_900, int ____flag_901, __size_t_1 ____slen_902, const char * __restrict ____format_903, ____gnuc_va_list_86 ____ap_904);// L25:L27 +extern int (____fprintf_chk_608) (__FILE_58 * __restrict ____stream_604, int ____flag_606, const char * __restrict ____format_607, ... );// L85:L86 +extern int (____printf_chk_612) (int ____flag_610, const char * __restrict ____format_611, ... );// L87 +extern int (____vfprintf_chk_619) (__FILE_58 * __restrict ____stream_613, int ____flag_615, const char * __restrict ____format_616, ____gnuc_va_list_82 ____ap_617);// L88:L89 +extern int (____vprintf_chk_627) (int ____flag_623, const char * __restrict ____format_624, ____gnuc_va_list_82 ____ap_625);// L90:L91 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____snprintf_chk_920) (char * __restrict ____s_915, __size_t_1 ____n_916, int ____flag_917, __size_t_1 ____slen_918, const char * __restrict ____format_919, ... );// L52:L54 -extern int (____vsnprintf_chk_928) (char * __restrict ____s_921, __size_t_1 ____n_922, int ____flag_923, __size_t_1 ____slen_924, const char * __restrict ____format_925, ____gnuc_va_list_86 ____ap_926);// L55:L57 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____fprintf_chk_943) (__FILE_59 * __restrict ____stream_939, int ____flag_941, const char * __restrict ____format_942, ... );// L85:L86 -extern int (____printf_chk_947) (int ____flag_945, const char * __restrict ____format_946, ... );// L87 -extern int (____vfprintf_chk_954) (__FILE_59 * __restrict ____stream_948, int ____flag_950, const char * __restrict ____format_951, ____gnuc_va_list_86 ____ap_952);// L88:L89 -extern int (____vprintf_chk_962) (int ____flag_958, const char * __restrict ____format_959, ____gnuc_va_list_86 ____ap_960);// L90:L91 +extern char * ((____fgets_chk_651) (char * __restrict ____s_646, __size_t_1 ____size_647, int ____n_648, __FILE_58 * __restrict ____stream_649));// L241:L242 +extern char * ((____fgets_chk_653) (char * __restrict ____s_646, __size_t_1 ____size_647, int ____n_648, __FILE_58 * __restrict ____stream_649));// L241:L242 +extern char * ((____fgets_alias_659) (char * __restrict ____s_655, int ____n_656, __FILE_58 * __restrict ____stream_657));// L243:L245 +extern char * ((____fgets_chk_warn_666) (char * __restrict ____s_661, __size_t_1 ____size_662, int ____n_663, __FILE_58 * __restrict ____stream_664));// L246:L250 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -extern int (____dprintf_chk_984) (int ____fd_981, int ____flag_982, const char * __restrict ____fmt_983, ... );// L131:L132 -extern int (____vdprintf_chk_990) (int ____fd_985, int ____flag_986, const char * __restrict ____fmt_987, ____gnuc_va_list_86 ____arg_988);// L133:L135 -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -extern char * ((____fgets_chk_1004) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 -extern char * ((____fgets_chk_1006) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 -extern char * ((____fgets_chk_1008) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 -extern char * ((____fgets_alias_1014) (char * __restrict ____s_1010, int ____n_1011, __FILE_59 * __restrict ____stream_1012));// L243:L245 -extern char * ((____fgets_chk_warn_1021) (char * __restrict ____s_1016, __size_t_1 ____size_1017, int ____n_1018, __FILE_59 * __restrict ____stream_1019));// L246:L250 -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -static __inline unsigned int (____bswap_32_1158) (unsigned int ____bsx_1157) { - -if (__static_condition_default_1159) { - -{ -{ - - - -__static_type_error("invalid type found in return expression"); -} -} - - -} -} -static __inline ____uint64_t_13 (____bswap_64_1162) (____uint64_t_13 ____bsx_1160) { - -if (__static_condition_default_1164) { - -{ -{ - - - -__static_type_error("invalid type found in return expression"); -} -} - - -} -} -static __inline ____uint64_t_1112 (____bswap_64_1163) (____uint64_t_1112 ____bsx_1161) { - -if (__static_condition_default_1165) { - -{ -{ - - - -__static_type_error("invalid type found in return expression"); -} -} - - -} -} -union __wait_1177 ;// L66 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern __size_t_1 (____ctype_get_mb_cur_max_1201) (void );// L139 -extern __size_t_1093 (____ctype_get_mb_cur_max_1202) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_1203) (void );// L139 -extern __size_t_1093 (____ctype_get_mb_cur_max_1204) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_1205) (void );// L139 -extern __size_t_1093 (____ctype_get_mb_cur_max_1206) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_1207) (void );// L139 -extern __size_t_1093 (____ctype_get_mb_cur_max_1208) (void );// L139 -extern double (__atof_1210) (const char * (____nptr_1209));// L144:L145 -extern double (__atof_1211) (const char * (____nptr_1209));// L144:L145 -extern int (__atoi_1213) (const char * (____nptr_1212));// L147:L148 -extern int (__atoi_1214) (const char * (____nptr_1212));// L147:L148 -extern long int (__atol_1216) (const char * (____nptr_1215));// L150:L151 -extern long int (__atol_1217) (const char * (____nptr_1215));// L150:L151 -extern long long int (__atoll_1219) (const char * (____nptr_1218));// L157:L158 -extern long long int (__atoll_1220) (const char * (____nptr_1218));// L157:L158 -extern double (__strtod_1223) (const char * __restrict ____nptr_1221, char * (* __restrict ____endptr_1222));// L164:L166 -extern float (__strtof_1226) (const char * __restrict ____nptr_1224, char * (* __restrict ____endptr_1225));// L172:L173 -extern long double (__strtold_1229) (const char * __restrict ____nptr_1227, char * (* __restrict ____endptr_1228));// L175:L177 -extern long int (__strtol_1233) (const char * __restrict ____nptr_1230, char * (* __restrict ____endptr_1231), int ____base_1232);// L183:L185 -extern unsigned long int (__strtoul_1237) (const char * __restrict ____nptr_1234, char * (* __restrict ____endptr_1235), int ____base_1236);// L187:L189 -extern long long int (__strtoq_1241) (const char * __restrict ____nptr_1238, char * (* __restrict ____endptr_1239), int ____base_1240);// L195:L197 -extern unsigned long long int (__strtouq_1245) (const char * __restrict ____nptr_1242, char * (* __restrict ____endptr_1243), int ____base_1244);// L200:L202 -extern long long int (__strtoll_1249) (const char * __restrict ____nptr_1246, char * (* __restrict ____endptr_1247), int ____base_1248);// L209:L211 -extern long long int (__strtoll_1250) (const char * __restrict ____nptr_1246, char * (* __restrict ____endptr_1247), int ____base_1248);// L209:L211 -extern unsigned long long int (__strtoull_1254) (const char * __restrict ____nptr_1251, char * (* __restrict ____endptr_1252), int ____base_1253);// L214:L216 +extern __size_t_1 (____ctype_get_mb_cur_max_721) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_722) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_723) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_724) (void );// L139 +extern double (__atof_726) (const char * (____nptr_725));// L144:L145 +extern double (__atof_727) (const char * (____nptr_725));// L144:L145 +extern int (__atoi_729) (const char * (____nptr_728));// L147:L148 +extern int (__atoi_730) (const char * (____nptr_728));// L147:L148 +extern long int (__atol_732) (const char * (____nptr_731));// L150:L151 +extern long int (__atol_733) (const char * (____nptr_731));// L150:L151 +extern long long int (__atoll_735) (const char * (____nptr_734));// L157:L158 +extern long long int (__atoll_736) (const char * (____nptr_734));// L157:L158 +extern double (__strtod_739) (const char * __restrict ____nptr_737, char * (* __restrict ____endptr_738));// L164:L166 +extern float (__strtof_742) (const char * __restrict ____nptr_740, char * (* __restrict ____endptr_741));// L172:L173 +extern long double (__strtold_745) (const char * __restrict ____nptr_743, char * (* __restrict ____endptr_744));// L175:L177 +extern long int (__strtol_749) (const char * __restrict ____nptr_746, char * (* __restrict ____endptr_747), int ____base_748);// L183:L185 +extern unsigned long int (__strtoul_753) (const char * __restrict ____nptr_750, char * (* __restrict ____endptr_751), int ____base_752);// L187:L189 +extern long long int (__strtoll_757) (const char * __restrict ____nptr_754, char * (* __restrict ____endptr_755), int ____base_756);// L209:L211 +extern unsigned long long int (__strtoull_761) (const char * __restrict ____nptr_758, char * (* __restrict ____endptr_759), int ____base_760);// L214:L216 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ __extension__/* no function due to type errors in the function prototype */ -extern char * ((__l64a_1259) (long int ____n_1258));// L305 -extern char * ((__l64a_1260) (long int ____n_1258));// L305 -extern long int (__a64l_1262) (const char * (____s_1261));// L308:L309 -extern long int (__a64l_1263) (const char * (____s_1261));// L308:L309 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -static __inline unsigned int (____bswap_32_1452) (unsigned int ____bsx_1451) { - -if (__static_condition_default_1453) { - -{ -{ - - - -__static_type_error("invalid type found in return expression"); -} -} - - -} -} -static __inline ____uint64_t_13 (____bswap_64_1456) (____uint64_t_13 ____bsx_1454) { - -if (__static_condition_default_1458) { - -{ -{ - - - -__static_type_error("invalid type found in return expression"); -} -} - - -} -} -static __inline ____uint64_t_1275 (____bswap_64_1457) (____uint64_t_1275 ____bsx_1455) { - -if (__static_condition_default_1459) { - -{ -{ - - - -__static_type_error("invalid type found in return expression"); -} -} - - -} -} -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -struct __timespec_1466 ;// L120 - -struct __timeval_1476 ;// L30 - -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern int (__select_1513) (int ____nfds_1502, __fd_set_1499 * __restrict ____readfds_1503, __fd_set_1499 * __restrict ____writefds_1505, __fd_set_1499 * __restrict ____exceptfds_1507, struct __timeval_1476 * __restrict ____timeout_1510);// L106:L109 -extern int (__select_1514) (int ____nfds_1502, __fd_set_1499 * __restrict ____readfds_1503, __fd_set_1499 * __restrict ____writefds_1505, __fd_set_1499 * __restrict ____exceptfds_1507, struct __forward_tag_reference_1509 * __restrict ____timeout_1512);// L106:L109 -extern int (__pselect_1529) (int ____nfds_1517, __fd_set_1499 * __restrict ____readfds_1518, __fd_set_1499 * __restrict ____writefds_1520, __fd_set_1499 * __restrict ____exceptfds_1522, const struct __timespec_1466 * __restrict ____timeout_1525, const ____sigset_t_1464 * __restrict ____sigmask_1528);// L118:L122 -extern int (__pselect_1530) (int ____nfds_1517, __fd_set_1499 * __restrict ____readfds_1518, __fd_set_1499 * __restrict ____writefds_1520, __fd_set_1499 * __restrict ____exceptfds_1522, const struct __forward_tag_reference_1524 * __restrict ____timeout_1527, const ____sigset_t_1464 * __restrict ____sigmask_1528);// L118:L122 -extern long int (____fdelt_chk_1534) (long int ____d_1533);// L24 -extern long int (____fdelt_warn_1536) (long int ____d_1535);// L25:L26 -extern unsigned int (__gnu_dev_major_1538) (unsigned long long int ____dev_1537);// L27:L28 -extern unsigned int (__gnu_dev_major_1539) (unsigned long long int ____dev_1537);// L27:L28 -extern unsigned int (__gnu_dev_minor_1541) (unsigned long long int ____dev_1540);// L30:L31 -extern unsigned long long int (__gnu_dev_makedev_1544) (unsigned int ____major_1542, unsigned int ____minor_1543);// L33:L35 -__extension__/* no function due to type errors in the function prototype */ -__extension__/* no function due to type errors in the function prototype */ -__extension__/* no function due to type errors in the function prototype */ -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -union __pthread_attr_t_1578 ;// L63 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern int (__rand_1609) (void );// L374 -extern void (__srand_1611) (unsigned int ____seed_1610);// L376 -extern int (__rand_r_1613) (unsigned int * (____seed_1612));// L381 -extern double (__drand48_1614) (void );// L389 -extern double (__erand48_1616) (unsigned short int ____xsubi_1615[3]);// L390 -extern long int (__lrand48_1617) (void );// L393 -extern long int (__nrand48_1619) (unsigned short int ____xsubi_1618[3]);// L394:L395 -extern long int (__mrand48_1620) (void );// L398 -extern long int (__jrand48_1622) (unsigned short int ____xsubi_1621[3]);// L399:L400 -extern void (__srand48_1624) (long int ____seedval_1623);// L403 -extern unsigned short int * ((__seed48_1626) (unsigned short int ____seed16v_1625[3]));// L404:L405 -extern void (__lcong48_1628) (unsigned short int ____param_1627[7]);// L406 -extern void * ((__malloc_1631) (__size_t_1 ____size_1629));// L466 -extern void * ((__malloc_1632) (__size_t_1093 ____size_1630));// L466 -extern void * ((__malloc_1633) (__size_t_1 ____size_1629));// L466 -extern void * ((__malloc_1634) (__size_t_1093 ____size_1630));// L466 -extern void * ((__calloc_1639) (__size_t_1 ____nmemb_1635, __size_t_1 ____size_1637));// L468:L469 -extern void * ((__calloc_1640) (__size_t_1093 ____nmemb_1636, __size_t_1093 ____size_1638));// L468:L469 -extern void * ((__calloc_1641) (__size_t_1 ____nmemb_1635, __size_t_1 ____size_1637));// L468:L469 -extern void * ((__calloc_1642) (__size_t_1093 ____nmemb_1636, __size_t_1093 ____size_1638));// L468:L469 -extern void * ((__realloc_1646) (void * (____ptr_1643), __size_t_1 ____size_1644));// L480:L481 -extern void * ((__realloc_1647) (void * (____ptr_1643), __size_t_1093 ____size_1645));// L480:L481 -extern void (__free_1649) (void * (____ptr_1648));// L483 -extern void (__cfree_1651) (void * (____ptr_1650));// L488 -extern void * ((__alloca_1654) (__size_t_1 ____size_1652));// L32 -extern void * ((__alloca_1655) (__size_t_1093 ____size_1653));// L32 -extern void * ((__valloc_1658) (__size_t_1 ____size_1656));// L498 -extern void * ((__valloc_1659) (__size_t_1093 ____size_1657));// L498 -extern void * ((__valloc_1660) (__size_t_1 ____size_1656));// L498 -extern void * ((__valloc_1661) (__size_t_1093 ____size_1657));// L498 -extern int (__posix_memalign_1667) (void * (* (____memptr_1662)), __size_t_1 ____alignment_1663, __size_t_1 ____size_1665);// L503:L504 -extern int (__posix_memalign_1668) (void * (* (____memptr_1662)), __size_t_1093 ____alignment_1664, __size_t_1093 ____size_1666);// L503:L504 -extern int (__posix_memalign_1669) (void * (* (____memptr_1662)), __size_t_1 ____alignment_1663, __size_t_1 ____size_1665);// L503:L504 -extern int (__posix_memalign_1670) (void * (* (____memptr_1662)), __size_t_1093 ____alignment_1664, __size_t_1093 ____size_1666);// L503:L504 -extern void * ((__aligned_alloc_1675) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 -extern void * ((__aligned_alloc_1676) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 -extern void * ((__aligned_alloc_1677) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 -extern void * ((__aligned_alloc_1678) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 -extern void * ((__aligned_alloc_1679) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 -extern void * ((__aligned_alloc_1680) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 -extern void * ((__aligned_alloc_1681) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 -extern void * ((__aligned_alloc_1682) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 -extern void (__abort_1683) (void );// L515 -extern int (__atexit_1685) (void (* (____func_1684)) (void ));// L519 -extern int (__at_quick_exit_1687) (void (* (____func_1686)) (void ));// L527 -extern int (__on_exit_1692) (void (* (____func_1690)) (int ____status_1688, void * (____arg_1689)), void * (____arg_1691));// L535:L536 -extern void (__exit_1694) (int ____status_1693);// L543 -extern void (__exit_1695) (int ____status_1693);// L543 -extern void (__quick_exit_1697) (int ____status_1696);// L549 -extern void (___Exit_1699) (int ____status_1698);// L557 -extern char * ((__getenv_1701) (const char * (____name_1700)));// L564 -extern char * ((__getenv_1702) (const char * (____name_1700)));// L564 -extern int (__putenv_1704) (char * (____string_1703));// L578 -extern int (__setenv_1708) (const char * (____name_1705), const char * (____value_1706), int ____replace_1707);// L584:L585 -extern int (__unsetenv_1710) (const char * (____name_1709));// L588 -extern int (__clearenv_1711) (void );// L595 -extern char * ((__mktemp_1713) (char * (____template_1712)));// L606 -extern int (__mkstemp_1716) (char * (____template_1714));// L619 -extern int (__mkstemp_1718) (char * (____template_1714));// L619 -extern int (__mkstemp_1717) (char * (____template_1715));// L622:L623 -extern int (__mkstemp_1719) (char * (____template_1715));// L622:L623 -extern int (__mkstemps_1724) (char * (____template_1720), int ____suffixlen_1721);// L641 -extern int (__mkstemps_1725) (char * (____template_1722), int ____suffixlen_1723);// L644:L645 -extern int (__mkstemps_1726) (char * (____template_1720), int ____suffixlen_1721);// L641 -extern int (__mkstemps_1727) (char * (____template_1722), int ____suffixlen_1723);// L644:L645 -extern char * ((__mkdtemp_1729) (char * (____template_1728)));// L662 -extern char * ((__mkdtemp_1730) (char * (____template_1728)));// L662 -extern int (__system_1732) (const char * (____command_1731));// L716 -extern int (__system_1733) (const char * (____command_1731));// L716 -extern int (__system_1734) (const char * (____command_1731));// L716 -extern int (__system_1735) (const char * (____command_1731));// L716 -extern char * ((__realpath_1738) (const char * __restrict ____name_1736, char * __restrict ____resolved_1737));// L733:L734 -extern char * ((__realpath_1739) (const char * __restrict ____name_1736, char * __restrict ____resolved_1737));// L733:L734 -// typedef moved to top of scope -extern void * ((__bsearch_1751) (const void * (____key_1741), const void * (____base_1742), __size_t_1 ____nmemb_1743, __size_t_1 ____size_1745, ____compar_fn_t_1740 ____compar_1747));// L754:L756 -extern void * ((__bsearch_1752) (const void * (____key_1741), const void * (____base_1742), __size_t_1093 ____nmemb_1744, __size_t_1093 ____size_1746, ____compar_fn_t_1740 ____compar_1747));// L754:L756 -extern void * ((__bsearch_1755) (const void * (____key_1741), const void * (____base_1742), __size_t_1 ____nmemb_1743, __size_t_1 ____size_1745, ____compar_fn_t_1740 ____compar_1747));// L754:L756 -extern void * ((__bsearch_1756) (const void * (____key_1741), const void * (____base_1742), __size_t_1093 ____nmemb_1744, __size_t_1093 ____size_1746, ____compar_fn_t_1740 ____compar_1747));// L754:L756 +extern int (__rand_765) (void );// L374 +extern int (__rand_766) (void );// L374 +extern void (__srand_768) (unsigned int ____seed_767);// L376 +extern void * ((__malloc_770) (__size_t_1 ____size_769));// L466 +extern void * ((__malloc_771) (__size_t_1 ____size_769));// L466 +extern void * ((__calloc_774) (__size_t_1 ____nmemb_772, __size_t_1 ____size_773));// L468:L469 +extern void * ((__calloc_775) (__size_t_1 ____nmemb_772, __size_t_1 ____size_773));// L468:L469 +extern void * ((__realloc_778) (void * (____ptr_776), __size_t_1 ____size_777));// L480:L481 +extern void * ((__realloc_779) (void * (____ptr_776), __size_t_1 ____size_777));// L480:L481 +extern void (__free_781) (void * (____ptr_780));// L483 +extern void * ((__aligned_alloc_784) (__size_t_1 ____alignment_782, __size_t_1 ____size_783));// L509:L510 +extern void * ((__aligned_alloc_785) (__size_t_1 ____alignment_782, __size_t_1 ____size_783));// L509:L510 +extern void (__abort_786) (void );// L515 +extern int (__atexit_788) (void (* (____func_787)) (void ));// L519 +extern int (__at_quick_exit_790) (void (* (____func_789)) (void ));// L527 +extern void (__exit_792) (int ____status_791);// L543 +extern void (__quick_exit_794) (int ____status_793);// L549 +extern void (___Exit_796) (int ____status_795);// L557 +extern char * ((__getenv_798) (const char * (____name_797)));// L564 +extern char * ((__getenv_799) (const char * (____name_797)));// L564 +extern int (__system_801) (const char * (____command_800));// L716 +extern int (__system_802) (const char * (____command_800));// L716 +// typedef moved to top of scope +extern void * ((__bsearch_811) (const void * (____key_804), const void * (____base_805), __size_t_1 ____nmemb_806, __size_t_1 ____size_807, ____compar_fn_t_803 ____compar_808));// L754:L756 +extern void * ((__bsearch_813) (const void * (____key_804), const void * (____base_805), __size_t_1 ____nmemb_806, __size_t_1 ____size_807, ____compar_fn_t_803 ____compar_808));// L754:L756 /* no function due to type errors in the function prototype */ -extern void (__qsort_1784) (void * (____base_1777), __size_t_1 ____nmemb_1778, __size_t_1 ____size_1780, ____compar_fn_t_1740 ____compar_1782);// L764:L765 -extern void (__qsort_1786) (void * (____base_1777), __size_t_1093 ____nmemb_1779, __size_t_1093 ____size_1781, ____compar_fn_t_1740 ____compar_1782);// L764:L765 -extern void (__qsort_1788) (void * (____base_1777), __size_t_1 ____nmemb_1778, __size_t_1 ____size_1780, ____compar_fn_t_1740 ____compar_1782);// L764:L765 -extern void (__qsort_1790) (void * (____base_1777), __size_t_1093 ____nmemb_1779, __size_t_1093 ____size_1781, ____compar_fn_t_1740 ____compar_1782);// L764:L765 -extern int (__abs_1793) (int ____x_1792);// L774 -extern int (__abs_1794) (int ____x_1792);// L774 -extern long int (__labs_1796) (long int ____x_1795);// L775 -extern long int (__labs_1797) (long int ____x_1795);// L775 -extern long long int (__llabs_1799) (long long int ____x_1798);// L779:L780 -extern long long int (__llabs_1800) (long long int ____x_1798);// L779:L780 -extern __div_t_1190 (__div_1803) (int ____numer_1801, int ____denom_1802);// L788:L789 -extern __div_t_1190 (__div_1804) (int ____numer_1801, int ____denom_1802);// L788:L789 -extern __ldiv_t_1195 (__ldiv_1807) (long int ____numer_1805, long int ____denom_1806);// L790:L791 -extern __ldiv_t_1195 (__ldiv_1809) (long int ____numer_1805, long int ____denom_1806);// L790:L791 -extern __lldiv_t_1200 (__lldiv_1813) (long long int ____numer_1811, long long int ____denom_1812);// L796:L798 -extern __lldiv_t_1200 (__lldiv_1815) (long long int ____numer_1811, long long int ____denom_1812);// L796:L798 -extern char * ((__ecvt_1821) (double ____value_1817, int ____ndigit_1818, int * __restrict ____decpt_1819, int * __restrict ____sign_1820));// L811:L812 -extern char * ((__ecvt_1822) (double ____value_1817, int ____ndigit_1818, int * __restrict ____decpt_1819, int * __restrict ____sign_1820));// L811:L812 -extern char * ((__fcvt_1827) (double ____value_1823, int ____ndigit_1824, int * __restrict ____decpt_1825, int * __restrict ____sign_1826));// L817:L818 -extern char * ((__fcvt_1828) (double ____value_1823, int ____ndigit_1824, int * __restrict ____decpt_1825, int * __restrict ____sign_1826));// L817:L818 -extern char * ((__gcvt_1832) (double ____value_1829, int ____ndigit_1830, char * (____buf_1831)));// L823:L824 -extern char * ((__gcvt_1833) (double ____value_1829, int ____ndigit_1830, char * (____buf_1831)));// L823:L824 -extern char * ((__qecvt_1838) (long double ____value_1834, int ____ndigit_1835, int * __restrict ____decpt_1836, int * __restrict ____sign_1837));// L829:L831 -extern char * ((__qecvt_1839) (long double ____value_1834, int ____ndigit_1835, int * __restrict ____decpt_1836, int * __restrict ____sign_1837));// L829:L831 -extern char * ((__qfcvt_1844) (long double ____value_1840, int ____ndigit_1841, int * __restrict ____decpt_1842, int * __restrict ____sign_1843));// L832:L834 -extern char * ((__qfcvt_1845) (long double ____value_1840, int ____ndigit_1841, int * __restrict ____decpt_1842, int * __restrict ____sign_1843));// L832:L834 -extern char * ((__qgcvt_1849) (long double ____value_1846, int ____ndigit_1847, char * (____buf_1848)));// L835:L836 -extern char * ((__qgcvt_1850) (long double ____value_1846, int ____ndigit_1847, char * (____buf_1848)));// L835:L836 -extern int (__ecvt_r_1858) (double ____value_1851, int ____ndigit_1852, int * __restrict ____decpt_1853, int * __restrict ____sign_1854, char * __restrict ____buf_1855, __size_t_1 ____len_1856);// L841:L843 -extern int (__ecvt_r_1859) (double ____value_1851, int ____ndigit_1852, int * __restrict ____decpt_1853, int * __restrict ____sign_1854, char * __restrict ____buf_1855, __size_t_1093 ____len_1857);// L841:L843 -extern int (__fcvt_r_1867) (double ____value_1860, int ____ndigit_1861, int * __restrict ____decpt_1862, int * __restrict ____sign_1863, char * __restrict ____buf_1864, __size_t_1 ____len_1865);// L844:L846 -extern int (__fcvt_r_1868) (double ____value_1860, int ____ndigit_1861, int * __restrict ____decpt_1862, int * __restrict ____sign_1863, char * __restrict ____buf_1864, __size_t_1093 ____len_1866);// L844:L846 -extern int (__qecvt_r_1876) (long double ____value_1869, int ____ndigit_1870, int * __restrict ____decpt_1871, int * __restrict ____sign_1872, char * __restrict ____buf_1873, __size_t_1 ____len_1874);// L848:L851 -extern int (__qecvt_r_1877) (long double ____value_1869, int ____ndigit_1870, int * __restrict ____decpt_1871, int * __restrict ____sign_1872, char * __restrict ____buf_1873, __size_t_1093 ____len_1875);// L848:L851 -extern int (__qfcvt_r_1885) (long double ____value_1878, int ____ndigit_1879, int * __restrict ____decpt_1880, int * __restrict ____sign_1881, char * __restrict ____buf_1882, __size_t_1 ____len_1883);// L852:L855 -extern int (__qfcvt_r_1886) (long double ____value_1878, int ____ndigit_1879, int * __restrict ____decpt_1880, int * __restrict ____sign_1881, char * __restrict ____buf_1882, __size_t_1093 ____len_1884);// L852:L855 -extern int (__mblen_1890) (const char * (____s_1887), __size_t_1 ____n_1888);// L862 -extern int (__mblen_1891) (const char * (____s_1887), __size_t_1093 ____n_1889);// L862 -extern int (__mblen_1892) (const char * (____s_1887), __size_t_1 ____n_1888);// L862 -extern int (__mblen_1893) (const char * (____s_1887), __size_t_1093 ____n_1889);// L862 -extern int (__mbtowc_1898) (__wchar_t_1094 * __restrict ____pwc_1894, const char * __restrict ____s_1895, __size_t_1 ____n_1896);// L865:L866 -extern int (__mbtowc_1899) (__wchar_t_1094 * __restrict ____pwc_1894, const char * __restrict ____s_1895, __size_t_1093 ____n_1897);// L865:L866 -extern int (__wctomb_1902) (char * (____s_1900), __wchar_t_1094 ____wchar_1901);// L869 -extern __size_t_1 (__mbstowcs_1907) (__wchar_t_1094 * __restrict ____pwcs_1903, const char * __restrict ____s_1904, __size_t_1 ____n_1905);// L873:L874 -extern __size_t_1093 (__mbstowcs_1908) (__wchar_t_1094 * __restrict ____pwcs_1903, const char * __restrict ____s_1904, __size_t_1093 ____n_1906);// L873:L874 -extern __size_t_1 (__wcstombs_1913) (char * __restrict ____s_1909, const __wchar_t_1094 * __restrict ____pwcs_1910, __size_t_1 ____n_1911);// L876:L878 -extern __size_t_1093 (__wcstombs_1914) (char * __restrict ____s_1909, const __wchar_t_1094 * __restrict ____pwcs_1910, __size_t_1093 ____n_1912);// L876:L878 -extern int (__rpmatch_1917) (const char * (____response_1915));// L887 -extern int (__rpmatch_1916) (const char * (____response_1915));// L887 -extern int (__getsubopt_1922) (char * (* __restrict ____optionp_1918), char * const * __restrict ____tokens_1919, char * (* __restrict ____valuep_1920));// L898:L901 -extern int (__getsubopt_1921) (char * (* __restrict ____optionp_1918), char * const * __restrict ____tokens_1919, char * (* __restrict ____valuep_1920));// L898:L901 -extern int (__getloadavg_1925) (double ____loadavg_1923[], int ____nelem_1924);// L950:L951 +extern void (__qsort_832) (void * (____base_827), __size_t_1 ____nmemb_828, __size_t_1 ____size_829, ____compar_fn_t_803 ____compar_830);// L764:L765 +extern void (__qsort_834) (void * (____base_827), __size_t_1 ____nmemb_828, __size_t_1 ____size_829, ____compar_fn_t_803 ____compar_830);// L764:L765 +extern int (__abs_837) (int ____x_836);// L774 +extern int (__abs_838) (int ____x_836);// L774 +extern long int (__labs_840) (long int ____x_839);// L775 +extern long int (__labs_841) (long int ____x_839);// L775 +extern long long int (__llabs_843) (long long int ____x_842);// L779:L780 +extern long long int (__llabs_844) (long long int ____x_842);// L779:L780 +extern __div_t_710 (__div_847) (int ____numer_845, int ____denom_846);// L788:L789 +extern __div_t_710 (__div_848) (int ____numer_845, int ____denom_846);// L788:L789 +extern __ldiv_t_715 (__ldiv_851) (long int ____numer_849, long int ____denom_850);// L790:L791 +extern __ldiv_t_715 (__ldiv_853) (long int ____numer_849, long int ____denom_850);// L790:L791 +extern __lldiv_t_720 (__lldiv_857) (long long int ____numer_855, long long int ____denom_856);// L796:L798 +extern __lldiv_t_720 (__lldiv_859) (long long int ____numer_855, long long int ____denom_856);// L796:L798 +extern int (__mblen_863) (const char * (____s_861), __size_t_1 ____n_862);// L862 +extern int (__mbtowc_868) (__wchar_t_704 * __restrict ____pwc_864, const char * __restrict ____s_866, __size_t_1 ____n_867);// L865:L866 +extern int (__mbtowc_869) (__wchar_t_705 * __restrict ____pwc_865, const char * __restrict ____s_866, __size_t_1 ____n_867);// L865:L866 +extern int (__wctomb_873) (char * (____s_870), __wchar_t_704 ____wchar_871);// L869 +extern int (__wctomb_874) (char * (____s_870), __wchar_t_705 ____wchar_872);// L869 +extern __size_t_1 (__mbstowcs_879) (__wchar_t_704 * __restrict ____pwcs_875, const char * __restrict ____s_877, __size_t_1 ____n_878);// L873:L874 +extern __size_t_1 (__mbstowcs_880) (__wchar_t_705 * __restrict ____pwcs_876, const char * __restrict ____s_877, __size_t_1 ____n_878);// L873:L874 +extern __size_t_1 (__wcstombs_885) (char * __restrict ____s_881, const __wchar_t_704 * __restrict ____pwcs_882, __size_t_1 ____n_884);// L876:L878 +extern __size_t_1 (__wcstombs_886) (char * __restrict ____s_881, const __wchar_t_705 * __restrict ____pwcs_883, __size_t_1 ____n_884);// L876:L878 /* no function due to type errors in the function prototype */ -extern char * ((____realpath_chk_1931) (const char * __restrict ____name_1927, char * __restrict ____resolved_1928, __size_t_1 ____resolvedlen_1929));// L23:L25 -extern char * ((____realpath_chk_1932) (const char * __restrict ____name_1927, char * __restrict ____resolved_1928, __size_t_1093 ____resolvedlen_1930));// L23:L25 -extern char * ((____realpath_alias_1935) (const char * __restrict ____name_1933, char * __restrict ____resolved_1934));// L26:L28 -extern char * ((____realpath_chk_warn_1940) (const char * __restrict ____name_1936, char * __restrict ____resolved_1937, __size_t_1 ____resolvedlen_1938));// L29:L34 -extern char * ((____realpath_chk_warn_1941) (const char * __restrict ____name_1936, char * __restrict ____resolved_1937, __size_t_1093 ____resolvedlen_1939));// L29:L34 +extern char * ((____realpath_chk_891) (const char * __restrict ____name_888, char * __restrict ____resolved_889, __size_t_1 ____resolvedlen_890));// L23:L25 +extern char * ((____realpath_alias_894) (const char * __restrict ____name_892, char * __restrict ____resolved_893));// L26:L28 +extern char * ((____realpath_chk_warn_898) (const char * __restrict ____name_895, char * __restrict ____resolved_896, __size_t_1 ____resolvedlen_897));// L29:L34 /* no function due to type errors in the function prototype */ -extern int (____ptsname_r_chk_1951) (int ____fd_1945, char * (____buf_1946), __size_t_1 ____buflen_1947, __size_t_1 ____nreal_1949);// L52:L53 -extern int (____ptsname_r_chk_1952) (int ____fd_1945, char * (____buf_1946), __size_t_1093 ____buflen_1948, __size_t_1093 ____nreal_1950);// L52:L53 -extern int (____ptsname_r_alias_1957) (int ____fd_1953, char * (____buf_1954), __size_t_1 ____buflen_1955);// L54:L56 -extern int (____ptsname_r_alias_1958) (int ____fd_1953, char * (____buf_1954), __size_t_1093 ____buflen_1956);// L54:L56 -extern int (____ptsname_r_chk_warn_1965) (int ____fd_1959, char * (____buf_1960), __size_t_1 ____buflen_1961, __size_t_1 ____nreal_1963);// L57:L61 -extern int (____ptsname_r_chk_warn_1966) (int ____fd_1959, char * (____buf_1960), __size_t_1093 ____buflen_1962, __size_t_1093 ____nreal_1964);// L57:L61 +extern int (____ptsname_r_chk_906) (int ____fd_902, char * (____buf_903), __size_t_1 ____buflen_904, __size_t_1 ____nreal_905);// L52:L53 +extern int (____ptsname_r_alias_910) (int ____fd_907, char * (____buf_908), __size_t_1 ____buflen_909);// L54:L56 +extern int (____ptsname_r_chk_warn_915) (int ____fd_911, char * (____buf_912), __size_t_1 ____buflen_913, __size_t_1 ____nreal_914);// L57:L61 /* no function due to type errors in the function prototype */ -extern int (____wctomb_chk_1977) (char * (____s_1973), __wchar_t_1094 ____wchar_1974, __size_t_1 ____buflen_1975);// L77:L78 -extern int (____wctomb_chk_1978) (char * (____s_1973), __wchar_t_1094 ____wchar_1974, __size_t_1093 ____buflen_1976);// L77:L78 -extern int (____wctomb_alias_1981) (char * (____s_1979), __wchar_t_1094 ____wchar_1980);// L79:L80 +extern int (____wctomb_chk_923) (char * (____s_920), __wchar_t_705 ____wchar_921, __size_t_1 ____buflen_922);// L77:L78 +extern int (____wctomb_alias_926) (char * (____s_924), __wchar_t_705 ____wchar_925);// L79:L80 /* no function due to type errors in the function prototype */ -extern __size_t_1 (____mbstowcs_chk_1990) (__wchar_t_1094 * __restrict ____dst_1984, const char * __restrict ____src_1985, __size_t_1 ____len_1986, __size_t_1 ____dstlen_1988);// L98:L100 -extern __size_t_1093 (____mbstowcs_chk_1991) (__wchar_t_1094 * __restrict ____dst_1984, const char * __restrict ____src_1985, __size_t_1093 ____len_1987, __size_t_1093 ____dstlen_1989);// L98:L100 -extern __size_t_1 (____mbstowcs_alias_1996) (__wchar_t_1094 * __restrict ____dst_1992, const char * __restrict ____src_1993, __size_t_1 ____len_1994);// L101:L104 -extern __size_t_1093 (____mbstowcs_alias_1997) (__wchar_t_1094 * __restrict ____dst_1992, const char * __restrict ____src_1993, __size_t_1093 ____len_1995);// L101:L104 -extern __size_t_1 (____mbstowcs_chk_warn_2004) (__wchar_t_1094 * __restrict ____dst_1998, const char * __restrict ____src_1999, __size_t_1 ____len_2000, __size_t_1 ____dstlen_2002);// L105:L110 -extern __size_t_1093 (____mbstowcs_chk_warn_2005) (__wchar_t_1094 * __restrict ____dst_1998, const char * __restrict ____src_1999, __size_t_1093 ____len_2001, __size_t_1093 ____dstlen_2003);// L105:L110 +extern __size_t_1 (____mbstowcs_chk_933) (__wchar_t_705 * __restrict ____dst_929, const char * __restrict ____src_930, __size_t_1 ____len_931, __size_t_1 ____dstlen_932);// L98:L100 +extern __size_t_1 (____mbstowcs_alias_937) (__wchar_t_705 * __restrict ____dst_934, const char * __restrict ____src_935, __size_t_1 ____len_936);// L101:L104 +extern __size_t_1 (____mbstowcs_chk_warn_942) (__wchar_t_705 * __restrict ____dst_938, const char * __restrict ____src_939, __size_t_1 ____len_940, __size_t_1 ____dstlen_941);// L105:L110 /* no function due to type errors in the function prototype */ -extern __size_t_1 (____wcstombs_chk_2016) (char * __restrict ____dst_2010, const __wchar_t_1094 * __restrict ____src_2011, __size_t_1 ____len_2012, __size_t_1 ____dstlen_2014);// L130:L132 -extern __size_t_1093 (____wcstombs_chk_2017) (char * __restrict ____dst_2010, const __wchar_t_1094 * __restrict ____src_2011, __size_t_1093 ____len_2013, __size_t_1093 ____dstlen_2015);// L130:L132 -extern __size_t_1 (____wcstombs_alias_2022) (char * __restrict ____dst_2018, const __wchar_t_1094 * __restrict ____src_2019, __size_t_1 ____len_2020);// L133:L136 -extern __size_t_1093 (____wcstombs_alias_2023) (char * __restrict ____dst_2018, const __wchar_t_1094 * __restrict ____src_2019, __size_t_1093 ____len_2021);// L133:L136 -extern __size_t_1 (____wcstombs_chk_warn_2030) (char * __restrict ____dst_2024, const __wchar_t_1094 * __restrict ____src_2025, __size_t_1 ____len_2026, __size_t_1 ____dstlen_2028);// L137:L141 -extern __size_t_1093 (____wcstombs_chk_warn_2031) (char * __restrict ____dst_2024, const __wchar_t_1094 * __restrict ____src_2025, __size_t_1093 ____len_2027, __size_t_1093 ____dstlen_2029);// L137:L141 +extern __size_t_1 (____wcstombs_chk_950) (char * __restrict ____dst_946, const __wchar_t_705 * __restrict ____src_947, __size_t_1 ____len_948, __size_t_1 ____dstlen_949);// L130:L132 +extern __size_t_1 (____wcstombs_alias_954) (char * __restrict ____dst_951, const __wchar_t_705 * __restrict ____src_952, __size_t_1 ____len_953);// L133:L136 +extern __size_t_1 (____wcstombs_chk_warn_959) (char * __restrict ____dst_955, const __wchar_t_705 * __restrict ____src_956, __size_t_1 ____len_957, __size_t_1 ____dstlen_958);// L137:L141 /* no function due to type errors in the function prototype */ -int (__main_2044) (int __argc_2036, char * (* (__argv_2037))) { +int (__main_971) (int __argc_963, char * (* (__argv_964))) { -if (__static_condition_default_2047) { +if (__static_condition_default_973) { { { -int __r_2038= rand( ) % 2;// L6 +int __r_965= rand( ) % 2;// L6 -int __m_has_modinfo_2040;// L7 +int __r_966= rand( ) % 2;// L6 -int __exit_status_2041= - 1;// L8 +int __m_has_modinfo_967;// L7 -int __someInt_2042= 1;// L9 +int __exit_status_968= - 1;// L8 -int __k_crcs_2043;// L12 +int __someInt_969= 1;// L9 -if (__static_condition_default_2048) { -if ( __r_2038 )// L15 +int __k_crcs_970;// L12 + +if (__static_condition_default_974) { +if ( __r_965 )// L15 { -if (__static_condition_default_2049) { - __m_has_modinfo_2040 = 0 ; // L16 +if (__static_condition_default_974) { + __m_has_modinfo_967 = 0 ; // L16 } } else { -if (__static_condition_default_2048) { - __m_has_modinfo_2040 = 1 ; // L18 +if (__static_condition_default_974) { + __m_has_modinfo_967 = 1 ; // L18 } } } -if (__static_condition_default_2050) { -if ( __r_2038 )// L15 +if (__static_condition_default_975) { +if ( __r_966 )// L15 { -if (__static_condition_default_2051) { - __m_has_modinfo_2040 = 0 ; // L16 +if (__static_condition_default_975) { + __m_has_modinfo_967 = 0 ; // L16 } } else { -if (__static_condition_default_2050) { - __m_has_modinfo_2040 = 1 ; // L18 -} +if (__static_condition_default_975) { + __m_has_modinfo_967 = 1 ; // L18 } } -if (__static_condition_default_2052) { - __k_crcs_2043 = 0 ; // L21 } -if (__static_condition_default_2053) { -if ( __r_2038 )// L24 + __k_crcs_970 = 0 ; // L21 +if (__static_condition_default_976) { +if ( __r_965 )// L24 { -if (__static_condition_default_2053) { +if (__static_condition_default_976) { { { -__static_type_error("type error") ; // L25 + __k_crcs_970 = __someInt_969 ; // L25 } } } } else { -if (__static_condition_default_2053) { +if (__static_condition_default_976) { { { -if (__static_condition_default_2054) { - __printf_421 ("Not configured to support old kernels") ; // L27 -} -if (__static_condition_default_2055) { -__static_type_error("type error") ; // L27 -} + __printf_324 ("Not configured to support old kernels") ; // L27 { goto out_0; @@ -2992,36 +1191,31 @@ goto out_0; } } } -if (__static_condition_default_2056) { -if ( __r_2038 )// L24 +if (__static_condition_default_977) { +if ( __r_966 )// L24 { -if (__static_condition_default_2056) { +if (__static_condition_default_977) { { { - __k_crcs_2043 = __someInt_2042 ; // L25 + __k_crcs_970 = __someInt_969 ; // L25 } } } } else { -if (__static_condition_default_2056) { +if (__static_condition_default_977) { { { -if (__static_condition_default_2057) { - __printf_421 ("Not configured to support old kernels") ; // L27 -} -if (__static_condition_default_2058) { -__static_type_error("type error") ; // L27 -} + __printf_324 ("Not configured to support old kernels") ; // L27 { goto out_0; @@ -3034,7 +1228,7 @@ goto out_0; out_0: { -return ( __exit_status_2041 ) ;// L32 +return ( __exit_status_968 ) ;// L32 } return 0 ;// L34 } @@ -3043,86 +1237,81 @@ return 0 ;// L34 } } -int (__main_2045) (int __argc_2036, char * (* (__argv_2037))) { +int (__main_972) (int __argc_963, char * (* (__argv_964))) { -if (__static_condition_default_2059) { +if (__static_condition_default_978) { { { -int __r_2038= rand( ) % 2;// L6 +int __r_965= rand( ) % 2;// L6 + +int __r_966= rand( ) % 2;// L6 -int __m_has_modinfo_2040;// L7 +int __m_has_modinfo_967;// L7 -int __exit_status_2041= - 1;// L8 +int __exit_status_968= - 1;// L8 -int __someInt_2042= 1;// L9 +int __someInt_969= 1;// L9 -int __k_crcs_2043;// L12 +int __k_crcs_970;// L12 -if (__static_condition_default_2060) { -if ( __r_2038 )// L15 +if (__static_condition_default_979) { +if ( __r_965 )// L15 { -if (__static_condition_default_2061) { - __m_has_modinfo_2040 = 0 ; // L16 +if (__static_condition_default_979) { + __m_has_modinfo_967 = 0 ; // L16 } } else { -if (__static_condition_default_2060) { - __m_has_modinfo_2040 = 1 ; // L18 +if (__static_condition_default_979) { + __m_has_modinfo_967 = 1 ; // L18 } } } -if (__static_condition_default_2062) { -if ( __r_2038 )// L15 +if (__static_condition_default_980) { +if ( __r_966 )// L15 { -if (__static_condition_default_2063) { - __m_has_modinfo_2040 = 0 ; // L16 +if (__static_condition_default_980) { + __m_has_modinfo_967 = 0 ; // L16 } } else { -if (__static_condition_default_2062) { - __m_has_modinfo_2040 = 1 ; // L18 +if (__static_condition_default_980) { + __m_has_modinfo_967 = 1 ; // L18 } } } -if (__static_condition_default_2064) { - __k_crcs_2043 = 0 ; // L21 -} -if (__static_condition_default_2065) { -if ( __r_2038 )// L24 + __k_crcs_970 = 0 ; // L21 +if (__static_condition_default_981) { +if ( __r_965 )// L24 { -if (__static_condition_default_2065) { +if (__static_condition_default_981) { { { -__static_type_error("type error") ; // L25 + __k_crcs_970 = __someInt_969 ; // L25 } } } } else { -if (__static_condition_default_2065) { +if (__static_condition_default_981) { { { -if (__static_condition_default_2066) { - __printf_421 ("Not configured to support old kernels") ; // L27 -} -if (__static_condition_default_2067) { -__static_type_error("type error") ; // L27 -} + __printf_324 ("Not configured to support old kernels") ; // L27 { goto out_1; @@ -3132,36 +1321,31 @@ goto out_1; } } } -if (__static_condition_default_2068) { -if ( __r_2038 )// L24 +if (__static_condition_default_982) { +if ( __r_966 )// L24 { -if (__static_condition_default_2068) { +if (__static_condition_default_982) { { { - __k_crcs_2043 = __someInt_2042 ; // L25 + __k_crcs_970 = __someInt_969 ; // L25 } } } } else { -if (__static_condition_default_2068) { +if (__static_condition_default_982) { { { -if (__static_condition_default_2069) { - __printf_421 ("Not configured to support old kernels") ; // L27 -} -if (__static_condition_default_2070) { -__static_type_error("type error") ; // L27 -} + __printf_324 ("Not configured to support old kernels") ; // L27 { goto out_1; @@ -3174,45 +1358,7 @@ goto out_1; out_1: { -return ( __exit_status_2041 ) ;// L32 -} -return 0 ;// L34 -} -} - - -} -} -int (__main_2046) (int __argc_2036, char * (* (__argv_2037))) { - -if (__static_condition_default_2071) { - -{ -{ - - - -if (__static_condition_default_2039) { -__static_type_error("invalid declaration of r under this presence condition"); -} - -int __m_has_modinfo_2040;// L7 - -int __exit_status_2041= - 1;// L8 - -int __someInt_2042= 1;// L9 - -int __k_crcs_2043;// L12 - -__static_type_error("invalid type found in ifelse statement"); -if (__static_condition_default_2072) { - __k_crcs_2043 = 0 ; // L21 -} -__static_type_error("invalid type found in ifelse statement"); - -out_2: -{ -return ( __exit_status_2041 ) ;// L32 +return ( __exit_status_968 ) ;// L32 } return 0 ;// L34 } diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.clangres index 020783f4..227bb2fb 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.clangres @@ -1,40 +1,43 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:2929:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] - __m_has_modinfo_2040 = 0 ; // L16 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:2935:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] - __m_has_modinfo_2040 = 1 ; // L18 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:2943:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] - __m_has_modinfo_2040 = 0 ; // L16 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:2949:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] - __m_has_modinfo_2040 = 1 ; // L18 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:2954:2: warning: Value stored to '__k_crcs_2043' is never read [deadcode.DeadStores] - __k_crcs_2043 = 0 ; // L21 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3005:2: warning: Value stored to '__k_crcs_2043' is never read [deadcode.DeadStores] - __k_crcs_2043 = __someInt_2042 ; // L25 - ^ ~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3069:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] - __m_has_modinfo_2040 = 0 ; // L16 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3075:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] - __m_has_modinfo_2040 = 1 ; // L18 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3083:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] - __m_has_modinfo_2040 = 0 ; // L16 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3089:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] - __m_has_modinfo_2040 = 1 ; // L18 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3094:2: warning: Value stored to '__k_crcs_2043' is never read [deadcode.DeadStores] - __k_crcs_2043 = 0 ; // L21 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3145:2: warning: Value stored to '__k_crcs_2043' is never read [deadcode.DeadStores] - __k_crcs_2043 = __someInt_2042 ; // L25 - ^ ~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3209:2: warning: Value stored to '__k_crcs_2043' is never read [deadcode.DeadStores] - __k_crcs_2043 = 0 ; // L21 - ^ ~ -13 warnings generated. +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1135:2: warning: Value stored to '__m_has_modinfo_967' is never read [deadcode.DeadStores] + __m_has_modinfo_967 = 0 ; // L16 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1141:2: warning: Value stored to '__m_has_modinfo_967' is never read [deadcode.DeadStores] + __m_has_modinfo_967 = 1 ; // L18 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1149:2: warning: Value stored to '__m_has_modinfo_967' is never read [deadcode.DeadStores] + __m_has_modinfo_967 = 0 ; // L16 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1155:2: warning: Value stored to '__m_has_modinfo_967' is never read [deadcode.DeadStores] + __m_has_modinfo_967 = 1 ; // L18 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1159:2: warning: Value stored to '__k_crcs_970' is never read [deadcode.DeadStores] + __k_crcs_970 = 0 ; // L21 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1170:2: warning: Value stored to '__k_crcs_970' is never read [deadcode.DeadStores] + __k_crcs_970 = __someInt_969 ; // L25 + ^ ~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1204:2: warning: Value stored to '__k_crcs_970' is never read [deadcode.DeadStores] + __k_crcs_970 = __someInt_969 ; // L25 + ^ ~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1265:2: warning: Value stored to '__m_has_modinfo_967' is never read [deadcode.DeadStores] + __m_has_modinfo_967 = 0 ; // L16 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1271:2: warning: Value stored to '__m_has_modinfo_967' is never read [deadcode.DeadStores] + __m_has_modinfo_967 = 1 ; // L18 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1279:2: warning: Value stored to '__m_has_modinfo_967' is never read [deadcode.DeadStores] + __m_has_modinfo_967 = 0 ; // L16 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1285:2: warning: Value stored to '__m_has_modinfo_967' is never read [deadcode.DeadStores] + __m_has_modinfo_967 = 1 ; // L18 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1289:2: warning: Value stored to '__k_crcs_970' is never read [deadcode.DeadStores] + __k_crcs_970 = 0 ; // L21 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1300:2: warning: Value stored to '__k_crcs_970' is never read [deadcode.DeadStores] + __k_crcs_970 = __someInt_969 ; // L25 + ^ ~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1334:2: warning: Value stored to '__k_crcs_970' is never read [deadcode.DeadStores] + __k_crcs_970 = __someInt_969 ; // L25 + ^ ~~~~~~~~~~~~~ +14 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.inferres index cc4794e5..7180583a 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.inferres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.inferres @@ -1,50 +1,50 @@ -BUSYBOX/5275b1e49f6.desugared.c:3005: error: Dead Store - The value written to &__k_crcs_2043 (type int) is never used. - 3003. - 3004. - 3005. __k_crcs_2043 = __someInt_2042 ; // L25 +BUSYBOX/5275b1e49f6.desugared.c:1170: error: Dead Store + The value written to &__k_crcs_970 (type int) is never used. + 1168. + 1169. + 1170. __k_crcs_970 = __someInt_969 ; // L25 ^ - 3006. } - 3007. } + 1171. } + 1172. } -BUSYBOX/5275b1e49f6.desugared.c:2935: error: Dead Store - The value written to &__m_has_modinfo_2040 (type int) is never used. - 2933. { - 2934. if (__static_condition_default_2048) { - 2935. __m_has_modinfo_2040 = 1 ; // L18 +BUSYBOX/5275b1e49f6.desugared.c:1204: error: Dead Store + The value written to &__k_crcs_970 (type int) is never used. + 1202. + 1203. + 1204. __k_crcs_970 = __someInt_969 ; // L25 ^ - 2936. } - 2937. } + 1205. } + 1206. } -BUSYBOX/5275b1e49f6.desugared.c:2949: error: Dead Store - The value written to &__m_has_modinfo_2040 (type int) is never used. - 2947. { - 2948. if (__static_condition_default_2050) { - 2949. __m_has_modinfo_2040 = 1 ; // L18 +BUSYBOX/5275b1e49f6.desugared.c:1141: error: Dead Store + The value written to &__m_has_modinfo_967 (type int) is never used. + 1139. { + 1140. if (__static_condition_default_974) { + 1141. __m_has_modinfo_967 = 1 ; // L18 ^ - 2950. } - 2951. } + 1142. } + 1143. } -BUSYBOX/5275b1e49f6.desugared.c:3145: error: Dead Store - The value written to &__k_crcs_2043 (type int) is never used. - 3143. - 3144. - 3145. __k_crcs_2043 = __someInt_2042 ; // L25 +BUSYBOX/5275b1e49f6.desugared.c:1155: error: Dead Store + The value written to &__m_has_modinfo_967 (type int) is never used. + 1153. { + 1154. if (__static_condition_default_975) { + 1155. __m_has_modinfo_967 = 1 ; // L18 ^ - 3146. } - 3147. } + 1156. } + 1157. } -BUSYBOX/5275b1e49f6.desugared.c:3075: error: Dead Store - The value written to &__m_has_modinfo_2040 (type int) is never used. - 3073. { - 3074. if (__static_condition_default_2060) { - 3075. __m_has_modinfo_2040 = 1 ; // L18 +BUSYBOX/5275b1e49f6.desugared.c:1300: error: Dead Store + The value written to &__k_crcs_970 (type int) is never used. + 1298. + 1299. + 1300. __k_crcs_970 = __someInt_969 ; // L25 ^ - 3076. } - 3077. } + 1301. } + 1302. } -Found 7 issues (console output truncated to 5, see '/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/infer-out/report.txt' for the full list) +Found 8 issues (console output truncated to 5, see '/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/infer-out/report.txt' for the full list) Issue Type(ISSUED_TYPE_ID): # - Dead Store(DEAD_STORE): 7 + Dead Store(DEAD_STORE): 8 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/5cd6461b6fb.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/5cd6461b6fb.desugared.c index db3ac14f..b3e69275 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/5cd6461b6fb.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/5cd6461b6fb.desugared.c @@ -7,357 +7,238 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_1377; -extern const bool __static_condition_default_693; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_875; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_1576; -extern const bool __static_condition_default_1365; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_1773; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_709; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_1532; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_1498; -extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_1388; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_887; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_1402; -extern const bool __static_condition_default_789; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_488; -extern const bool __static_condition_default_315; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_2047; -extern const bool __static_condition_default_543; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_461; -extern const bool __static_condition_default_1774; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_248; -extern const bool __static_condition_default_761; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_1814; -extern const bool __static_condition_default_2057; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_1791; -extern const bool __static_condition_default_2062; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_957; -extern const bool __static_condition_default_1165; -extern const bool __static_condition_default_393; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_1453; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_1416; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_549; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_2052; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_963; -extern const bool __static_condition_default_2060; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_2058; -extern const bool __static_condition_default_590; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_1391; -extern const bool __static_condition_default_76; -extern const bool __static_condition_default_787; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_848; -extern const bool __static_condition_default_559; -extern const bool __static_condition_default_1944; -extern const bool __static_condition_default_1398; -extern const bool __static_condition_default_515; +extern const bool __static_condition_default_567; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_1396; +extern const bool __static_condition_default_502; +extern const bool __static_condition_default_579; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_983; +extern const bool __static_condition_default_743; extern const bool __static_condition_default_715; -extern const bool __static_condition_default_290; -extern const bool __static_condition_default_1564; -extern const bool __static_condition_default_1787; -extern const bool __static_condition_default_645; -extern const bool __static_condition_default_2048; -extern const bool __static_condition_default_438; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_612; +extern const bool __static_condition_default_232; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_358; +extern const bool __static_condition_default_326; +extern const bool __static_condition_default_474; extern const bool __static_condition_default_475; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_1816; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_386; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_929; -extern const bool __static_condition_default_1531; -extern const bool __static_condition_default_2046; -extern const bool __static_condition_default_2049; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_1373; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_1405; -extern const bool __static_condition_default_198; -extern const bool __static_condition_default_337; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_294; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_917; +extern const bool __static_condition_default_429; +extern const bool __static_condition_default_451; +extern const bool __static_condition_default_533; +extern const bool __static_condition_default_1611; +extern const bool __static_condition_default_935; +extern const bool __static_condition_default_1616; +extern const bool __static_condition_default_496; +extern const bool __static_condition_default_648; +extern const bool __static_condition_default_459; +extern const bool __static_condition_default_804; +extern const bool __static_condition_default_435; +extern const bool __static_condition_default_1625; +extern const bool __static_condition_default_1618; +extern const bool __static_condition_default_1431; +extern const bool __static_condition_default_1607; +extern const bool __static_condition_default_446; +extern const bool __static_condition_default_457; +extern const bool __static_condition_default_349; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_1622; +extern const bool __static_condition_default_330; +extern const bool __static_condition_default_304; extern const bool __static_condition_default_433; -extern const bool __static_condition_default_380; -extern const bool __static_condition_default_779; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_1552; -extern const bool __static_condition_default_701; -extern const bool __static_condition_default_408; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_1345; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_2044; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_956; -extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_747; -extern const bool __static_condition_default_907; -extern const bool __static_condition_default_568; -extern const bool __static_condition_default_2045; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_753; -extern const bool __static_condition_default_1754; +extern const bool __static_condition_default_672; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_833; +extern const bool __static_condition_default_976; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_586; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_1608; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_694; +extern const bool __static_condition_default_642; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_1619; +extern const bool __static_condition_default_1630; +extern const bool __static_condition_default_332; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_507; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_379; +extern const bool __static_condition_default_595; extern const bool __static_condition_default_801; -extern const bool __static_condition_default_623; +extern const bool __static_condition_default_1404; +extern const bool __static_condition_default_421; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_855; +extern const bool __static_condition_default_1167; +extern const bool __static_condition_default_729; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_696; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_820; +extern const bool __static_condition_default_1397; +extern const bool __static_condition_default_276; +extern const bool __static_condition_default_639; extern const bool __static_condition_default_684; -extern const bool __static_condition_default_1385; -extern const bool __static_condition_default_2042; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_955; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_1458; -extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_659; +extern const bool __static_condition_default_338; +extern const bool __static_condition_default_471; extern const bool __static_condition_default_235; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_357; -extern const bool __static_condition_default_204; -extern const bool __static_condition_default_1361; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_646; -extern const bool __static_condition_default_1560; -extern const bool __static_condition_default_2059; -extern const bool __static_condition_default_803; -extern const bool __static_condition_default_670; -extern const bool __static_condition_default_1152; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_914; -extern const bool __static_condition_default_1808; -extern const bool __static_condition_default_1485; +extern const bool __static_condition_default_739; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_556; extern const bool __static_condition_default_473; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_187; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_632; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_1357; -extern const bool __static_condition_default_1164; -extern const bool __static_condition_default_1459; -extern const bool __static_condition_default_367; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_412; -extern const bool __static_condition_default_512; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_793; -extern const bool __static_condition_default_2068; -extern const bool __static_condition_default_769; -extern const bool __static_condition_default_1749; -extern const bool __static_condition_default_217; -extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_1428; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_313; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_347; -extern const bool __static_condition_default_1753; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_872; -extern const bool __static_condition_default_1572; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_402; -extern const bool __static_condition_default_1432; -extern const bool __static_condition_default_2054; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_482; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_454; +extern const bool __static_condition_default_817; extern const bool __static_condition_default_431; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_382; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_1775; -extern const bool __static_condition_default_662; +extern const bool __static_condition_default_508; +extern const bool __static_condition_default_162; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_453; +extern const bool __static_condition_default_118; +extern const bool __static_condition_default_720; +extern const bool __static_condition_default_762; +extern const bool __static_condition_default_517; +extern const bool __static_condition_default_968; +extern const bool __static_condition_default_999; +extern const bool __static_condition_default_500; +extern const bool __static_condition_default_706; +extern const bool __static_condition_default_400; +extern const bool __static_condition_default_624; +extern const bool __static_condition_default_641; +extern const bool __static_condition_default_1609; +extern const bool __static_condition_default_1017; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_356; +extern const bool __static_condition_default_719; +extern const bool __static_condition_default_733; +extern const bool __static_condition_default_984; +extern const bool __static_condition_default_226; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_774; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_318; +extern const bool __static_condition_default_603; extern const bool __static_condition_default_727; -extern const bool __static_condition_default_536; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_1409; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_583; -extern const bool __static_condition_default_1568; -extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_1341; -extern const bool __static_condition_default_1381; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_1353; -extern const bool __static_condition_default_1556; -extern const bool __static_condition_default_2043; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_882; +extern const bool __static_condition_default_351; +extern const bool __static_condition_default_370; +extern const bool __static_condition_default_881; +extern const bool __static_condition_default_992; +extern const bool __static_condition_default_336; +extern const bool __static_condition_default_749; +extern const bool __static_condition_default_1383; +extern const bool __static_condition_default_501; +extern const bool __static_condition_default_310; +extern const bool __static_condition_default_540; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_480; +extern const bool __static_condition_default_577; +extern const bool __static_condition_default_948; +extern const bool __static_condition_default_448; +extern const bool __static_condition_default_227; +extern const bool __static_condition_default_551; +extern const bool __static_condition_default_718; +extern const bool __static_condition_default_296; extern const bool __static_condition_default_998; -extern const bool __static_condition_default_842; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_638; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_2063; -extern const bool __static_condition_default_685; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_1395; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_1516; -extern const bool __static_condition_default_1810; -extern const bool __static_condition_default_521; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_1315; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_677; -extern const bool __static_condition_default_755; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_53; -extern const bool __static_condition_default_419; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_780; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_333; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_1420; -extern const bool __static_condition_default_846; -extern const bool __static_condition_default_702; -extern const bool __static_condition_default_1475; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_891; -extern const bool __static_condition_default_1789; -extern const bool __static_condition_default_2056; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_1159; -extern const bool __static_condition_default_1515; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_1785; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_236; +extern const bool __static_condition_default_889; +extern const bool __static_condition_default_962; +extern const bool __static_condition_default_225; +extern const bool __static_condition_default_495; +extern const bool __static_condition_default_1624; +extern const bool __static_condition_default_790; +extern const bool __static_condition_default_575; +extern const bool __static_condition_default_798; +extern const bool __static_condition_default_328; +extern const bool __static_condition_default_766; +extern const bool __static_condition_default_716; +extern const bool __static_condition_default_470; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_714; +extern const bool __static_condition_default_1538; +extern const bool __static_condition_default_1610; +extern const bool __static_condition_default_954; extern const bool __static_condition_default_883; -extern const bool __static_condition_default_1436; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_1369; +extern const bool __static_condition_default_904; +extern const bool __static_condition_default_1406; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_688; +extern const bool __static_condition_default_343; +extern const bool __static_condition_default_1606; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_381; +extern const bool __static_condition_default_695; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_1620; +extern const bool __static_condition_default_300; +extern const bool __static_condition_default_562; +extern const bool __static_condition_default_640; +extern const bool __static_condition_default_374; +extern const bool __static_condition_default_707; +extern const bool __static_condition_default_528; +extern const bool __static_condition_default_961; +extern const bool __static_condition_default_1429; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_969; +extern const bool __static_condition_default_870; +extern const bool __static_condition_default_931; +extern const bool __static_condition_default_74; +extern const bool __static_condition_default_394; +extern const bool __static_condition_default_627; +extern const bool __static_condition_default_778; +extern const bool __static_condition_default_254; +extern const bool __static_condition_default_1016; +extern const bool __static_condition_default_588; +extern const bool __static_condition_default_320; +extern const bool __static_condition_default_680; +extern const bool __static_condition_default_1006; +extern const bool __static_condition_default_1425; +extern const bool __static_condition_default_1614; +extern const bool __static_condition_default_953; extern const bool __static_condition_default_395; -extern const bool __static_condition_default_894; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_388; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_613; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_1750; -extern const bool __static_condition_default_1776; -extern const bool __static_condition_default_1424; -extern const bool __static_condition_default_317; -extern const bool __static_condition_default_564; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_1489; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_2061; -extern const bool __static_condition_default_311; -extern const bool __static_condition_default_858; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_1349; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_683; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_898; +extern const bool __static_condition_default_906; +extern const bool __static_condition_default_772; +extern const bool __static_condition_default_610; +extern const bool __static_condition_default_234; +extern const bool __static_condition_default_230; +extern const bool __static_condition_default_308; +extern const bool __static_condition_default_1621; +extern const bool __static_condition_default_794; +extern const bool __static_condition_default_893; +extern const bool __static_condition_default_626; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_449; +extern const bool __static_condition_default_605; +extern const bool __static_condition_default_784; +extern const bool __static_condition_default_1381; +extern const bool __static_condition_default_933; +extern const bool __static_condition_default_905; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_165; +extern const bool __static_condition_default_924; +extern const bool __static_condition_default_977; +extern const bool __static_condition_default_655; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_941; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_1423; +extern const bool __static_condition_default_256; +extern const bool __static_condition_default_161; +extern const bool __static_condition_default_1623; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -409,1053 +290,696 @@ __static_renaming("____ssize_t_49", "__ssize_t"); __static_renaming("____syscall_slong_t_50", "__syscall_slong_t"); __static_renaming("____syscall_ulong_t_51", "__syscall_ulong_t"); __static_renaming("____loff_t_52", "__loff_t"); -__static_renaming("____qaddr_t_54", "__qaddr_t"); -__static_renaming("____caddr_t_55", "__caddr_t"); -__static_renaming("____intptr_t_56", "__intptr_t"); -__static_renaming("____socklen_t_57", "__socklen_t"); -__static_renaming("__FILE_59", "FILE"); -__static_renaming("____FILE_60", "__FILE"); -__static_renaming("____mbstate_t_69", "__mbstate_t"); -__static_renaming("___G_fpos_t_77", "_G_fpos_t"); -__static_renaming("___G_fpos64_t_85", "_G_fpos64_t"); -__static_renaming("____gnuc_va_list_86", "__gnuc_va_list"); -__static_renaming("___IO_lock_t_88", "_IO_lock_t"); -__static_renaming("___IO_FILE_171", "_IO_FILE"); -__static_renaming("___IO_FILE_172", "_IO_FILE"); -__static_renaming("___IO_2_1_stdin__175", "_IO_2_1_stdin_"); -__static_renaming("___IO_2_1_stdout__176", "_IO_2_1_stdout_"); -__static_renaming("___IO_2_1_stderr__177", "_IO_2_1_stderr_"); -__static_renaming("____io_read_fn_181", "__io_read_fn"); -__static_renaming("____io_write_fn_186", "__io_write_fn"); -__static_renaming("____io_seek_fn_192", "__io_seek_fn"); -__static_renaming("____io_close_fn_195", "__io_close_fn"); -__static_renaming("____underflow_196", "__underflow"); -__static_renaming("____underflow_197", "__underflow"); -__static_renaming("____uflow_199", "__uflow"); -__static_renaming("____uflow_200", "__uflow"); -__static_renaming("____overflow_202", "__overflow"); -__static_renaming("____overflow_203", "__overflow"); -__static_renaming("___IO_getc_208", "_IO_getc"); -__static_renaming("___IO_getc_209", "_IO_getc"); -__static_renaming("___IO_putc_215", "_IO_putc"); -__static_renaming("___IO_putc_216", "_IO_putc"); -__static_renaming("___IO_feof_221", "_IO_feof"); -__static_renaming("___IO_feof_222", "_IO_feof"); -__static_renaming("___IO_ferror_227", "_IO_ferror"); -__static_renaming("___IO_ferror_228", "_IO_ferror"); -__static_renaming("___IO_peekc_locked_233", "_IO_peekc_locked"); -__static_renaming("___IO_peekc_locked_234", "_IO_peekc_locked"); -__static_renaming("___IO_flockfile_236", "_IO_flockfile"); -__static_renaming("___IO_flockfile_237", "_IO_flockfile"); -__static_renaming("___IO_funlockfile_239", "_IO_funlockfile"); -__static_renaming("___IO_funlockfile_240", "_IO_funlockfile"); -__static_renaming("___IO_ftrylockfile_242", "_IO_ftrylockfile"); -__static_renaming("___IO_ftrylockfile_243", "_IO_ftrylockfile"); -__static_renaming("___IO_vfscanf_245", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_247", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_251", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_252", "_IO_vfscanf"); -__static_renaming("___IO_vfprintf_254", "_IO_vfprintf"); -__static_renaming("___IO_vfprintf_256", "_IO_vfprintf"); -__static_renaming("___IO_vfprintf_260", "_IO_vfprintf"); -__static_renaming("___IO_padn_261", "_IO_padn"); -__static_renaming("___IO_padn_262", "_IO_padn"); -__static_renaming("___IO_sgetn_265", "_IO_sgetn"); -__static_renaming("___IO_sgetn_266", "_IO_sgetn"); -__static_renaming("___IO_seekoff_268", "_IO_seekoff"); -__static_renaming("___IO_seekoff_269", "_IO_seekoff"); -__static_renaming("___IO_seekpos_272", "_IO_seekpos"); -__static_renaming("___IO_seekpos_273", "_IO_seekpos"); -__static_renaming("___IO_free_backup_area_276", "_IO_free_backup_area"); -__static_renaming("___IO_free_backup_area_277", "_IO_free_backup_area"); -__static_renaming("__va_list_279", "va_list"); -__static_renaming("__off_t_281", "off_t"); -__static_renaming("__off_t_283", "off_t"); -__static_renaming("__ssize_t_285", "ssize_t"); -__static_renaming("__fpos_t_287", "fpos_t"); -__static_renaming("__fpos_t_289", "fpos_t"); -__static_renaming("__stdin_291", "stdin"); -__static_renaming("__stdin_292", "stdin"); -__static_renaming("__stdout_294", "stdout"); -__static_renaming("__stdout_295", "stdout"); -__static_renaming("__stderr_297", "stderr"); -__static_renaming("__stderr_298", "stderr"); -__static_renaming("__remove_301", "remove"); -__static_renaming("__rename_304", "rename"); -__static_renaming("__renameat_309", "renameat"); -__static_renaming("__tmpfile_310", "tmpfile"); -__static_renaming("__tmpfile_312", "tmpfile"); -__static_renaming("__tmpfile_314", "tmpfile"); -__static_renaming("__tmpfile_316", "tmpfile"); -__static_renaming("__tmpnam_319", "tmpnam"); -__static_renaming("__tmpnam_320", "tmpnam"); -__static_renaming("__tmpnam_r_322", "tmpnam_r"); -__static_renaming("__tmpnam_r_323", "tmpnam_r"); -__static_renaming("__tempnam_326", "tempnam"); -__static_renaming("__tempnam_327", "tempnam"); -__static_renaming("__fclose_330", "fclose"); -__static_renaming("__fclose_332", "fclose"); -__static_renaming("__fflush_336", "fflush"); -__static_renaming("__fflush_unlocked_340", "fflush_unlocked"); -__static_renaming("__fopen_344", "fopen"); -__static_renaming("__fopen_346", "fopen"); -__static_renaming("__fopen_354", "fopen"); -__static_renaming("__fopen_356", "fopen"); -__static_renaming("__freopen_362", "freopen"); -__static_renaming("__freopen_364", "freopen"); -__static_renaming("__freopen_366", "freopen"); -__static_renaming("__freopen_368", "freopen"); -__static_renaming("__fdopen_372", "fdopen"); -__static_renaming("__fdopen_374", "fdopen"); -__static_renaming("__fmemopen_379", "fmemopen"); -__static_renaming("__fmemopen_381", "fmemopen"); -__static_renaming("__open_memstream_385", "open_memstream"); -__static_renaming("__open_memstream_387", "open_memstream"); -__static_renaming("__setbuf_392", "setbuf"); -__static_renaming("__setbuf_394", "setbuf"); -__static_renaming("__setvbuf_401", "setvbuf"); -__static_renaming("__setbuffer_407", "setbuffer"); -__static_renaming("__setlinebuf_411", "setlinebuf"); -__static_renaming("__fprintf_416", "fprintf"); -__static_renaming("__fprintf_418", "fprintf"); -__static_renaming("__printf_421", "printf"); -__static_renaming("__sprintf_424", "sprintf"); -__static_renaming("__vfprintf_430", "vfprintf"); -__static_renaming("__vprintf_437", "vprintf"); -__static_renaming("__vsprintf_443", "vsprintf"); -__static_renaming("__snprintf_448", "snprintf"); -__static_renaming("__vsnprintf_454", "vsnprintf"); -__static_renaming("__vdprintf_460", "vdprintf"); -__static_renaming("__dprintf_464", "dprintf"); -__static_renaming("__fscanf_468", "fscanf"); -__static_renaming("__fscanf_470", "fscanf"); -__static_renaming("__fscanf_472", "fscanf"); -__static_renaming("__fscanf_474", "fscanf"); -__static_renaming("__scanf_477", "scanf"); -__static_renaming("__scanf_478", "scanf"); -__static_renaming("__sscanf_481", "sscanf"); -__static_renaming("__vfscanf_509", "vfscanf"); -__static_renaming("__vfscanf_513", "vfscanf"); -__static_renaming("__vscanf_520", "vscanf"); -__static_renaming("__vscanf_522", "vscanf"); -__static_renaming("__vsscanf_528", "vsscanf"); -__static_renaming("__fgetc_563", "fgetc"); -__static_renaming("__getc_567", "getc"); -__static_renaming("__getchar_569", "getchar"); -__static_renaming("__getc_unlocked_572", "getc_unlocked"); -__static_renaming("__getchar_unlocked_574", "getchar_unlocked"); -__static_renaming("__fgetc_unlocked_577", "fgetc_unlocked"); -__static_renaming("__fputc_582", "fputc"); -__static_renaming("__fputc_584", "fputc"); -__static_renaming("__putc_589", "putc"); -__static_renaming("__putchar_592", "putchar"); -__static_renaming("__fputc_unlocked_596", "fputc_unlocked"); -__static_renaming("__putc_unlocked_601", "putc_unlocked"); -__static_renaming("__putchar_unlocked_604", "putchar_unlocked"); -__static_renaming("__getw_607", "getw"); -__static_renaming("__putw_612", "putw"); -__static_renaming("__fgets_618", "fgets"); -__static_renaming("__fgets_620", "fgets"); -__static_renaming("__fgets_622", "fgets"); -__static_renaming("__fgets_624", "fgets"); -__static_renaming("____getdelim_631", "__getdelim"); -__static_renaming("____getdelim_635", "__getdelim"); -__static_renaming("__getdelim_644", "getdelim"); -__static_renaming("__getdelim_648", "getdelim"); -__static_renaming("__getline_656", "getline"); -__static_renaming("__getline_660", "getline"); -__static_renaming("__fputs_667", "fputs"); -__static_renaming("__fputs_669", "fputs"); -__static_renaming("__puts_672", "puts"); -__static_renaming("__ungetc_676", "ungetc"); -__static_renaming("__fseek_714", "fseek"); -__static_renaming("__fseek_716", "fseek"); -__static_renaming("__ftell_720", "ftell"); -__static_renaming("__ftell_722", "ftell"); -__static_renaming("__rewind_726", "rewind"); -__static_renaming("__fseeko_733", "fseeko"); -__static_renaming("__fseeko_744", "fseeko"); -__static_renaming("__ftello_750", "ftello"); -__static_renaming("__ftello_754", "ftello"); -__static_renaming("__ftello_758", "ftello"); -__static_renaming("__fgetpos_766", "fgetpos"); -__static_renaming("__fgetpos_778", "fgetpos"); -__static_renaming("__fsetpos_786", "fsetpos"); -__static_renaming("__fsetpos_790", "fsetpos"); -__static_renaming("__clearerr_796", "clearerr"); -__static_renaming("__feof_800", "feof"); -__static_renaming("__feof_802", "feof"); -__static_renaming("__ferror_806", "ferror"); -__static_renaming("__ferror_808", "ferror"); -__static_renaming("__clearerr_unlocked_812", "clearerr_unlocked"); -__static_renaming("__feof_unlocked_816", "feof_unlocked"); -__static_renaming("__feof_unlocked_818", "feof_unlocked"); -__static_renaming("__ferror_unlocked_822", "ferror_unlocked"); -__static_renaming("__ferror_unlocked_824", "ferror_unlocked"); -__static_renaming("__perror_827", "perror"); -__static_renaming("__perror_828", "perror"); -__static_renaming("__sys_nerr_829", "sys_nerr"); -__static_renaming("__sys_errlist_830", "sys_errlist"); -__static_renaming("__fileno_833", "fileno"); -__static_renaming("__fileno_835", "fileno"); -__static_renaming("__fileno_unlocked_839", "fileno_unlocked"); -__static_renaming("__fileno_unlocked_841", "fileno_unlocked"); -__static_renaming("__popen_845", "popen"); -__static_renaming("__popen_847", "popen"); -__static_renaming("__pclose_851", "pclose"); -__static_renaming("__ctermid_854", "ctermid"); -__static_renaming("__flockfile_857", "flockfile"); -__static_renaming("__ftrylockfile_861", "ftrylockfile"); -__static_renaming("__ftrylockfile_863", "ftrylockfile"); -__static_renaming("__funlockfile_867", "funlockfile"); -__static_renaming("____sprintf_chk_899", "__sprintf_chk"); -__static_renaming("____vsprintf_chk_906", "__vsprintf_chk"); -__static_renaming("____snprintf_chk_920", "__snprintf_chk"); -__static_renaming("____vsnprintf_chk_928", "__vsnprintf_chk"); -__static_renaming("____fprintf_chk_943", "__fprintf_chk"); -__static_renaming("____printf_chk_947", "__printf_chk"); -__static_renaming("____vfprintf_chk_954", "__vfprintf_chk"); -__static_renaming("____vprintf_chk_962", "__vprintf_chk"); -__static_renaming("____dprintf_chk_984", "__dprintf_chk"); -__static_renaming("____vdprintf_chk_990", "__vdprintf_chk"); -__static_renaming("____fgets_chk_1004", "__fgets_chk"); -__static_renaming("____fgets_chk_1006", "__fgets_chk"); -__static_renaming("____fgets_chk_1008", "__fgets_chk"); -__static_renaming("____fgets_alias_1014", "__fgets_alias"); -__static_renaming("____fgets_chk_warn_1021", "__fgets_chk_warn"); -__static_renaming("____cnt_1087", "__cnt"); -__static_renaming("____cptr_1088", "__cptr"); -__static_renaming("__ptrdiff_t_1092", "ptrdiff_t"); -__static_renaming("__size_t_1093", "size_t"); -__static_renaming("__wchar_t_1094", "wchar_t"); -__static_renaming("__idtype_t_1100", "idtype_t"); -__static_renaming("____u_char_1101", "__u_char"); -__static_renaming("____u_short_1102", "__u_short"); -__static_renaming("____u_int_1103", "__u_int"); -__static_renaming("____u_long_1104", "__u_long"); -__static_renaming("____int8_t_1105", "__int8_t"); -__static_renaming("____uint8_t_1106", "__uint8_t"); -__static_renaming("____int16_t_1107", "__int16_t"); -__static_renaming("____uint16_t_1108", "__uint16_t"); -__static_renaming("____int32_t_1109", "__int32_t"); -__static_renaming("____uint32_t_1110", "__uint32_t"); -__static_renaming("____int64_t_1111", "__int64_t"); -__static_renaming("____uint64_t_1112", "__uint64_t"); -__static_renaming("____quad_t_1113", "__quad_t"); -__static_renaming("____u_quad_t_1114", "__u_quad_t"); -__static_renaming("____dev_t_1115", "__dev_t"); -__static_renaming("____uid_t_1116", "__uid_t"); -__static_renaming("____gid_t_1117", "__gid_t"); -__static_renaming("____ino_t_1118", "__ino_t"); -__static_renaming("____ino64_t_1119", "__ino64_t"); -__static_renaming("____mode_t_1120", "__mode_t"); -__static_renaming("____nlink_t_1121", "__nlink_t"); -__static_renaming("____off_t_1122", "__off_t"); -__static_renaming("____off64_t_1123", "__off64_t"); -__static_renaming("____pid_t_1124", "__pid_t"); -__static_renaming("____fsid_t_1128", "__fsid_t"); -__static_renaming("____clock_t_1129", "__clock_t"); -__static_renaming("____rlim_t_1130", "__rlim_t"); -__static_renaming("____rlim64_t_1131", "__rlim64_t"); -__static_renaming("____id_t_1132", "__id_t"); -__static_renaming("____time_t_1133", "__time_t"); -__static_renaming("____useconds_t_1134", "__useconds_t"); -__static_renaming("____suseconds_t_1135", "__suseconds_t"); -__static_renaming("____daddr_t_1136", "__daddr_t"); -__static_renaming("____key_t_1137", "__key_t"); -__static_renaming("____clockid_t_1138", "__clockid_t"); -__static_renaming("____timer_t_1139", "__timer_t"); -__static_renaming("____blksize_t_1140", "__blksize_t"); -__static_renaming("____blkcnt_t_1141", "__blkcnt_t"); -__static_renaming("____blkcnt64_t_1142", "__blkcnt64_t"); -__static_renaming("____fsblkcnt_t_1143", "__fsblkcnt_t"); -__static_renaming("____fsblkcnt64_t_1144", "__fsblkcnt64_t"); -__static_renaming("____fsfilcnt_t_1145", "__fsfilcnt_t"); -__static_renaming("____fsfilcnt64_t_1146", "__fsfilcnt64_t"); -__static_renaming("____fsword_t_1147", "__fsword_t"); -__static_renaming("____ssize_t_1148", "__ssize_t"); -__static_renaming("____syscall_slong_t_1149", "__syscall_slong_t"); -__static_renaming("____syscall_ulong_t_1150", "__syscall_ulong_t"); -__static_renaming("____loff_t_1151", "__loff_t"); -__static_renaming("____qaddr_t_1153", "__qaddr_t"); -__static_renaming("____caddr_t_1154", "__caddr_t"); -__static_renaming("____intptr_t_1155", "__intptr_t"); -__static_renaming("____socklen_t_1156", "__socklen_t"); -__static_renaming("____bswap_32_1158", "__bswap_32"); -__static_renaming("____bswap_64_1162", "__bswap_64"); -__static_renaming("____bswap_64_1163", "__bswap_64"); -__static_renaming("____WAIT_STATUS_1185", "__WAIT_STATUS"); -__static_renaming("__div_t_1190", "div_t"); -__static_renaming("__ldiv_t_1195", "ldiv_t"); -__static_renaming("__lldiv_t_1200", "lldiv_t"); -__static_renaming("____ctype_get_mb_cur_max_1201", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1202", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1203", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1204", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1205", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1206", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1207", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1208", "__ctype_get_mb_cur_max"); -__static_renaming("__atof_1210", "atof"); -__static_renaming("__atof_1211", "atof"); -__static_renaming("__atoi_1213", "atoi"); -__static_renaming("__atoi_1214", "atoi"); -__static_renaming("__atol_1216", "atol"); -__static_renaming("__atol_1217", "atol"); -__static_renaming("__atoll_1219", "atoll"); -__static_renaming("__atoll_1220", "atoll"); -__static_renaming("__strtod_1223", "strtod"); -__static_renaming("__strtof_1226", "strtof"); -__static_renaming("__strtold_1229", "strtold"); -__static_renaming("__strtol_1233", "strtol"); -__static_renaming("__strtoul_1237", "strtoul"); -__static_renaming("__strtoq_1241", "strtoq"); -__static_renaming("__strtouq_1245", "strtouq"); -__static_renaming("__strtoll_1249", "strtoll"); -__static_renaming("__strtoll_1250", "strtoll"); -__static_renaming("__strtoull_1254", "strtoull"); -__static_renaming("__l64a_1259", "l64a"); -__static_renaming("__l64a_1260", "l64a"); -__static_renaming("__a64l_1262", "a64l"); -__static_renaming("__a64l_1263", "a64l"); -__static_renaming("____u_char_1264", "__u_char"); -__static_renaming("____u_short_1265", "__u_short"); -__static_renaming("____u_int_1266", "__u_int"); -__static_renaming("____u_long_1267", "__u_long"); -__static_renaming("____int8_t_1268", "__int8_t"); -__static_renaming("____uint8_t_1269", "__uint8_t"); -__static_renaming("____int16_t_1270", "__int16_t"); -__static_renaming("____uint16_t_1271", "__uint16_t"); -__static_renaming("____int32_t_1272", "__int32_t"); -__static_renaming("____uint32_t_1273", "__uint32_t"); -__static_renaming("____int64_t_1274", "__int64_t"); -__static_renaming("____uint64_t_1275", "__uint64_t"); -__static_renaming("____quad_t_1276", "__quad_t"); -__static_renaming("____u_quad_t_1277", "__u_quad_t"); -__static_renaming("____dev_t_1278", "__dev_t"); -__static_renaming("____uid_t_1279", "__uid_t"); -__static_renaming("____gid_t_1280", "__gid_t"); -__static_renaming("____ino_t_1281", "__ino_t"); -__static_renaming("____ino64_t_1282", "__ino64_t"); -__static_renaming("____mode_t_1283", "__mode_t"); -__static_renaming("____nlink_t_1284", "__nlink_t"); -__static_renaming("____off_t_1285", "__off_t"); -__static_renaming("____off64_t_1286", "__off64_t"); -__static_renaming("____pid_t_1287", "__pid_t"); -__static_renaming("____fsid_t_1291", "__fsid_t"); -__static_renaming("____clock_t_1292", "__clock_t"); -__static_renaming("____rlim_t_1293", "__rlim_t"); -__static_renaming("____rlim64_t_1294", "__rlim64_t"); -__static_renaming("____id_t_1295", "__id_t"); -__static_renaming("____time_t_1296", "__time_t"); -__static_renaming("____useconds_t_1297", "__useconds_t"); -__static_renaming("____suseconds_t_1298", "__suseconds_t"); -__static_renaming("____daddr_t_1299", "__daddr_t"); -__static_renaming("____key_t_1300", "__key_t"); -__static_renaming("____clockid_t_1301", "__clockid_t"); -__static_renaming("____timer_t_1302", "__timer_t"); -__static_renaming("____blksize_t_1303", "__blksize_t"); -__static_renaming("____blkcnt_t_1304", "__blkcnt_t"); -__static_renaming("____blkcnt64_t_1305", "__blkcnt64_t"); -__static_renaming("____fsblkcnt_t_1306", "__fsblkcnt_t"); -__static_renaming("____fsblkcnt64_t_1307", "__fsblkcnt64_t"); -__static_renaming("____fsfilcnt_t_1308", "__fsfilcnt_t"); -__static_renaming("____fsfilcnt64_t_1309", "__fsfilcnt64_t"); -__static_renaming("____fsword_t_1310", "__fsword_t"); -__static_renaming("____ssize_t_1311", "__ssize_t"); -__static_renaming("____syscall_slong_t_1312", "__syscall_slong_t"); -__static_renaming("____syscall_ulong_t_1313", "__syscall_ulong_t"); -__static_renaming("____loff_t_1314", "__loff_t"); -__static_renaming("____qaddr_t_1316", "__qaddr_t"); -__static_renaming("____caddr_t_1317", "__caddr_t"); -__static_renaming("____intptr_t_1318", "__intptr_t"); -__static_renaming("____socklen_t_1319", "__socklen_t"); -__static_renaming("__u_char_1320", "u_char"); -__static_renaming("__u_char_1321", "u_char"); -__static_renaming("__u_char_1322", "u_char"); -__static_renaming("__u_short_1323", "u_short"); -__static_renaming("__u_short_1324", "u_short"); -__static_renaming("__u_short_1325", "u_short"); -__static_renaming("__u_int_1326", "u_int"); -__static_renaming("__u_int_1327", "u_int"); -__static_renaming("__u_int_1328", "u_int"); -__static_renaming("__u_long_1329", "u_long"); -__static_renaming("__u_long_1330", "u_long"); -__static_renaming("__u_long_1331", "u_long"); -__static_renaming("__quad_t_1332", "quad_t"); -__static_renaming("__quad_t_1333", "quad_t"); -__static_renaming("__quad_t_1334", "quad_t"); -__static_renaming("__u_quad_t_1335", "u_quad_t"); -__static_renaming("__u_quad_t_1336", "u_quad_t"); -__static_renaming("__u_quad_t_1337", "u_quad_t"); -__static_renaming("__fsid_t_1338", "fsid_t"); -__static_renaming("__fsid_t_1339", "fsid_t"); -__static_renaming("__fsid_t_1340", "fsid_t"); -__static_renaming("__loff_t_1342", "loff_t"); -__static_renaming("__loff_t_1343", "loff_t"); -__static_renaming("__loff_t_1344", "loff_t"); -__static_renaming("__loff_t_1346", "loff_t"); -__static_renaming("__loff_t_1347", "loff_t"); -__static_renaming("__loff_t_1348", "loff_t"); -__static_renaming("__ino_t_1350", "ino_t"); -__static_renaming("__ino_t_1351", "ino_t"); -__static_renaming("__ino_t_1352", "ino_t"); -__static_renaming("__ino_t_1354", "ino_t"); -__static_renaming("__ino_t_1355", "ino_t"); -__static_renaming("__ino_t_1356", "ino_t"); -__static_renaming("__dev_t_1358", "dev_t"); -__static_renaming("__dev_t_1359", "dev_t"); -__static_renaming("__dev_t_1360", "dev_t"); -__static_renaming("__gid_t_1362", "gid_t"); -__static_renaming("__gid_t_1363", "gid_t"); -__static_renaming("__gid_t_1364", "gid_t"); -__static_renaming("__gid_t_1366", "gid_t"); -__static_renaming("__gid_t_1367", "gid_t"); -__static_renaming("__gid_t_1368", "gid_t"); -__static_renaming("__mode_t_1370", "mode_t"); -__static_renaming("__mode_t_1371", "mode_t"); -__static_renaming("__mode_t_1372", "mode_t"); -__static_renaming("__nlink_t_1374", "nlink_t"); -__static_renaming("__nlink_t_1375", "nlink_t"); -__static_renaming("__nlink_t_1376", "nlink_t"); -__static_renaming("__uid_t_1378", "uid_t"); -__static_renaming("__uid_t_1379", "uid_t"); -__static_renaming("__uid_t_1380", "uid_t"); -__static_renaming("__uid_t_1382", "uid_t"); -__static_renaming("__uid_t_1383", "uid_t"); -__static_renaming("__uid_t_1384", "uid_t"); -__static_renaming("__off_t_1386", "off_t"); -__static_renaming("__off_t_1387", "off_t"); -__static_renaming("__off_t_1389", "off_t"); -__static_renaming("__off_t_1390", "off_t"); -__static_renaming("__pid_t_1392", "pid_t"); -__static_renaming("__pid_t_1393", "pid_t"); -__static_renaming("__pid_t_1394", "pid_t"); -__static_renaming("__pid_t_1396", "pid_t"); -__static_renaming("__pid_t_1397", "pid_t"); -__static_renaming("__id_t_1399", "id_t"); -__static_renaming("__id_t_1400", "id_t"); -__static_renaming("__id_t_1401", "id_t"); -__static_renaming("__ssize_t_1403", "ssize_t"); -__static_renaming("__ssize_t_1404", "ssize_t"); -__static_renaming("__daddr_t_1406", "daddr_t"); -__static_renaming("__daddr_t_1407", "daddr_t"); -__static_renaming("__daddr_t_1408", "daddr_t"); -__static_renaming("__caddr_t_1410", "caddr_t"); -__static_renaming("__caddr_t_1411", "caddr_t"); -__static_renaming("__caddr_t_1412", "caddr_t"); -__static_renaming("__key_t_1413", "key_t"); -__static_renaming("__key_t_1414", "key_t"); -__static_renaming("__key_t_1415", "key_t"); -__static_renaming("__key_t_1417", "key_t"); -__static_renaming("__key_t_1418", "key_t"); -__static_renaming("__key_t_1419", "key_t"); -__static_renaming("__clock_t_1421", "clock_t"); -__static_renaming("__clock_t_1422", "clock_t"); -__static_renaming("__clock_t_1423", "clock_t"); -__static_renaming("__time_t_1425", "time_t"); -__static_renaming("__time_t_1426", "time_t"); -__static_renaming("__time_t_1427", "time_t"); -__static_renaming("__clockid_t_1429", "clockid_t"); -__static_renaming("__clockid_t_1430", "clockid_t"); -__static_renaming("__clockid_t_1431", "clockid_t"); -__static_renaming("__timer_t_1433", "timer_t"); -__static_renaming("__timer_t_1434", "timer_t"); -__static_renaming("__timer_t_1435", "timer_t"); -__static_renaming("__ulong_1437", "ulong"); -__static_renaming("__ulong_1438", "ulong"); -__static_renaming("__ulong_1439", "ulong"); -__static_renaming("__ushort_1440", "ushort"); -__static_renaming("__uint_1441", "uint"); -__static_renaming("__int8_t_1442", "int8_t"); -__static_renaming("__int16_t_1443", "int16_t"); -__static_renaming("__int32_t_1444", "int32_t"); -__static_renaming("__int64_t_1445", "int64_t"); -__static_renaming("__u_int8_t_1446", "u_int8_t"); -__static_renaming("__u_int16_t_1447", "u_int16_t"); -__static_renaming("__u_int32_t_1448", "u_int32_t"); -__static_renaming("__u_int64_t_1449", "u_int64_t"); -__static_renaming("__register_t_1450", "register_t"); -__static_renaming("____bswap_32_1452", "__bswap_32"); -__static_renaming("____bswap_64_1456", "__bswap_64"); -__static_renaming("____bswap_64_1457", "__bswap_64"); -__static_renaming("____sig_atomic_t_1460", "__sig_atomic_t"); -__static_renaming("____sigset_t_1464", "__sigset_t"); -__static_renaming("__sigset_t_1465", "sigset_t"); -__static_renaming("__suseconds_t_1486", "suseconds_t"); -__static_renaming("__suseconds_t_1487", "suseconds_t"); -__static_renaming("__suseconds_t_1488", "suseconds_t"); -__static_renaming("____fd_mask_1490", "__fd_mask"); -__static_renaming("____fd_mask_1491", "__fd_mask"); -__static_renaming("__fd_set_1499", "fd_set"); -__static_renaming("__fd_mask_1500", "fd_mask"); -__static_renaming("__fd_mask_1501", "fd_mask"); -__static_renaming("__select_1513", "select"); -__static_renaming("__select_1514", "select"); -__static_renaming("__pselect_1529", "pselect"); -__static_renaming("__pselect_1530", "pselect"); -__static_renaming("____fdelt_chk_1534", "__fdelt_chk"); -__static_renaming("____fdelt_warn_1536", "__fdelt_warn"); -__static_renaming("__gnu_dev_major_1538", "gnu_dev_major"); -__static_renaming("__gnu_dev_major_1539", "gnu_dev_major"); -__static_renaming("__gnu_dev_minor_1541", "gnu_dev_minor"); -__static_renaming("__gnu_dev_makedev_1544", "gnu_dev_makedev"); -__static_renaming("__blksize_t_1549", "blksize_t"); -__static_renaming("__blksize_t_1550", "blksize_t"); -__static_renaming("__blksize_t_1551", "blksize_t"); -__static_renaming("__blkcnt_t_1553", "blkcnt_t"); -__static_renaming("__blkcnt_t_1554", "blkcnt_t"); -__static_renaming("__blkcnt_t_1555", "blkcnt_t"); -__static_renaming("__fsblkcnt_t_1557", "fsblkcnt_t"); -__static_renaming("__fsblkcnt_t_1558", "fsblkcnt_t"); -__static_renaming("__fsblkcnt_t_1559", "fsblkcnt_t"); -__static_renaming("__blkcnt_t_1561", "blkcnt_t"); -__static_renaming("__blkcnt_t_1562", "blkcnt_t"); -__static_renaming("__blkcnt_t_1563", "blkcnt_t"); -__static_renaming("__fsblkcnt_t_1565", "fsblkcnt_t"); -__static_renaming("__fsblkcnt_t_1566", "fsblkcnt_t"); -__static_renaming("__fsblkcnt_t_1567", "fsblkcnt_t"); -__static_renaming("__fsfilcnt_t_1569", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_1570", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_1571", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_1573", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_1574", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_1575", "fsfilcnt_t"); -__static_renaming("__pthread_t_1577", "pthread_t"); -__static_renaming("__pthread_attr_t_1581", "pthread_attr_t"); -__static_renaming("____pthread_list_t_1586", "__pthread_list_t"); -__static_renaming("____pthread_list_t_1587", "__pthread_list_t"); -__static_renaming("__pthread_mutex_t_1603", "pthread_mutex_t"); -__static_renaming("__pthread_mutexattr_t_1608", "pthread_mutexattr_t"); -__static_renaming("__rand_1609", "rand"); -__static_renaming("__srand_1611", "srand"); -__static_renaming("__rand_r_1613", "rand_r"); -__static_renaming("__drand48_1614", "drand48"); -__static_renaming("__erand48_1616", "erand48"); -__static_renaming("__lrand48_1617", "lrand48"); -__static_renaming("__nrand48_1619", "nrand48"); -__static_renaming("__mrand48_1620", "mrand48"); -__static_renaming("__jrand48_1622", "jrand48"); -__static_renaming("__srand48_1624", "srand48"); -__static_renaming("__seed48_1626", "seed48"); -__static_renaming("__lcong48_1628", "lcong48"); -__static_renaming("__malloc_1631", "malloc"); -__static_renaming("__malloc_1632", "malloc"); -__static_renaming("__malloc_1633", "malloc"); -__static_renaming("__malloc_1634", "malloc"); -__static_renaming("__calloc_1639", "calloc"); -__static_renaming("__calloc_1640", "calloc"); -__static_renaming("__calloc_1641", "calloc"); -__static_renaming("__calloc_1642", "calloc"); -__static_renaming("__realloc_1646", "realloc"); -__static_renaming("__realloc_1647", "realloc"); -__static_renaming("__free_1649", "free"); -__static_renaming("__cfree_1651", "cfree"); -__static_renaming("__alloca_1654", "alloca"); -__static_renaming("__alloca_1655", "alloca"); -__static_renaming("__valloc_1658", "valloc"); -__static_renaming("__valloc_1659", "valloc"); -__static_renaming("__valloc_1660", "valloc"); -__static_renaming("__valloc_1661", "valloc"); -__static_renaming("__posix_memalign_1667", "posix_memalign"); -__static_renaming("__posix_memalign_1668", "posix_memalign"); -__static_renaming("__posix_memalign_1669", "posix_memalign"); -__static_renaming("__posix_memalign_1670", "posix_memalign"); -__static_renaming("__aligned_alloc_1675", "aligned_alloc"); -__static_renaming("__aligned_alloc_1676", "aligned_alloc"); -__static_renaming("__aligned_alloc_1677", "aligned_alloc"); -__static_renaming("__aligned_alloc_1678", "aligned_alloc"); -__static_renaming("__aligned_alloc_1679", "aligned_alloc"); -__static_renaming("__aligned_alloc_1680", "aligned_alloc"); -__static_renaming("__aligned_alloc_1681", "aligned_alloc"); -__static_renaming("__aligned_alloc_1682", "aligned_alloc"); -__static_renaming("__abort_1683", "abort"); -__static_renaming("__atexit_1685", "atexit"); -__static_renaming("__at_quick_exit_1687", "at_quick_exit"); -__static_renaming("__on_exit_1692", "on_exit"); -__static_renaming("__exit_1694", "exit"); -__static_renaming("__exit_1695", "exit"); -__static_renaming("__quick_exit_1697", "quick_exit"); -__static_renaming("___Exit_1699", "_Exit"); -__static_renaming("__getenv_1701", "getenv"); -__static_renaming("__getenv_1702", "getenv"); -__static_renaming("__putenv_1704", "putenv"); -__static_renaming("__setenv_1708", "setenv"); -__static_renaming("__unsetenv_1710", "unsetenv"); -__static_renaming("__clearenv_1711", "clearenv"); -__static_renaming("__mktemp_1713", "mktemp"); -__static_renaming("__mkstemp_1716", "mkstemp"); -__static_renaming("__mkstemp_1717", "mkstemp"); -__static_renaming("__mkstemp_1718", "mkstemp"); -__static_renaming("__mkstemp_1719", "mkstemp"); -__static_renaming("__mkstemps_1724", "mkstemps"); -__static_renaming("__mkstemps_1725", "mkstemps"); -__static_renaming("__mkstemps_1726", "mkstemps"); -__static_renaming("__mkstemps_1727", "mkstemps"); -__static_renaming("__mkdtemp_1729", "mkdtemp"); -__static_renaming("__mkdtemp_1730", "mkdtemp"); -__static_renaming("__system_1732", "system"); -__static_renaming("__system_1733", "system"); -__static_renaming("__system_1734", "system"); -__static_renaming("__system_1735", "system"); -__static_renaming("__realpath_1738", "realpath"); -__static_renaming("__realpath_1739", "realpath"); -__static_renaming("____compar_fn_t_1740", "__compar_fn_t"); -__static_renaming("__bsearch_1751", "bsearch"); -__static_renaming("__bsearch_1752", "bsearch"); -__static_renaming("__bsearch_1755", "bsearch"); -__static_renaming("__bsearch_1756", "bsearch"); -__static_renaming("____l_1765", "__l"); -__static_renaming("____l_1766", "__l"); -__static_renaming("____u_1767", "__u"); -__static_renaming("____u_1768", "__u"); -__static_renaming("____idx_1769", "__idx"); -__static_renaming("____idx_1770", "__idx"); -__static_renaming("____p_1771", "__p"); -__static_renaming("____comparison_1772", "__comparison"); -__static_renaming("__qsort_1784", "qsort"); -__static_renaming("__qsort_1786", "qsort"); -__static_renaming("__qsort_1788", "qsort"); -__static_renaming("__qsort_1790", "qsort"); -__static_renaming("__abs_1793", "abs"); -__static_renaming("__abs_1794", "abs"); -__static_renaming("__labs_1796", "labs"); -__static_renaming("__labs_1797", "labs"); -__static_renaming("__llabs_1799", "llabs"); -__static_renaming("__llabs_1800", "llabs"); -__static_renaming("__div_1803", "div"); -__static_renaming("__div_1804", "div"); -__static_renaming("__ldiv_1807", "ldiv"); -__static_renaming("__ldiv_1809", "ldiv"); -__static_renaming("__lldiv_1813", "lldiv"); -__static_renaming("__lldiv_1815", "lldiv"); -__static_renaming("__ecvt_1821", "ecvt"); -__static_renaming("__ecvt_1822", "ecvt"); -__static_renaming("__fcvt_1827", "fcvt"); -__static_renaming("__fcvt_1828", "fcvt"); -__static_renaming("__gcvt_1832", "gcvt"); -__static_renaming("__gcvt_1833", "gcvt"); -__static_renaming("__qecvt_1838", "qecvt"); -__static_renaming("__qecvt_1839", "qecvt"); -__static_renaming("__qfcvt_1844", "qfcvt"); -__static_renaming("__qfcvt_1845", "qfcvt"); -__static_renaming("__qgcvt_1849", "qgcvt"); -__static_renaming("__qgcvt_1850", "qgcvt"); -__static_renaming("__ecvt_r_1858", "ecvt_r"); -__static_renaming("__ecvt_r_1859", "ecvt_r"); -__static_renaming("__fcvt_r_1867", "fcvt_r"); -__static_renaming("__fcvt_r_1868", "fcvt_r"); -__static_renaming("__qecvt_r_1876", "qecvt_r"); -__static_renaming("__qecvt_r_1877", "qecvt_r"); -__static_renaming("__qfcvt_r_1885", "qfcvt_r"); -__static_renaming("__qfcvt_r_1886", "qfcvt_r"); -__static_renaming("__mblen_1890", "mblen"); -__static_renaming("__mblen_1891", "mblen"); -__static_renaming("__mblen_1892", "mblen"); -__static_renaming("__mblen_1893", "mblen"); -__static_renaming("__mbtowc_1898", "mbtowc"); -__static_renaming("__mbtowc_1899", "mbtowc"); -__static_renaming("__wctomb_1902", "wctomb"); -__static_renaming("__mbstowcs_1907", "mbstowcs"); -__static_renaming("__mbstowcs_1908", "mbstowcs"); -__static_renaming("__wcstombs_1913", "wcstombs"); -__static_renaming("__wcstombs_1914", "wcstombs"); -__static_renaming("__rpmatch_1916", "rpmatch"); -__static_renaming("__rpmatch_1917", "rpmatch"); -__static_renaming("__getsubopt_1921", "getsubopt"); -__static_renaming("__getsubopt_1922", "getsubopt"); -__static_renaming("__getloadavg_1925", "getloadavg"); -__static_renaming("____realpath_chk_1931", "__realpath_chk"); -__static_renaming("____realpath_chk_1932", "__realpath_chk"); -__static_renaming("____realpath_alias_1935", "__realpath_alias"); -__static_renaming("____realpath_chk_warn_1940", "__realpath_chk_warn"); -__static_renaming("____realpath_chk_warn_1941", "__realpath_chk_warn"); -__static_renaming("____ptsname_r_chk_1951", "__ptsname_r_chk"); -__static_renaming("____ptsname_r_chk_1952", "__ptsname_r_chk"); -__static_renaming("____ptsname_r_alias_1957", "__ptsname_r_alias"); -__static_renaming("____ptsname_r_alias_1958", "__ptsname_r_alias"); -__static_renaming("____ptsname_r_chk_warn_1965", "__ptsname_r_chk_warn"); -__static_renaming("____ptsname_r_chk_warn_1966", "__ptsname_r_chk_warn"); -__static_renaming("____wctomb_chk_1977", "__wctomb_chk"); -__static_renaming("____wctomb_chk_1978", "__wctomb_chk"); -__static_renaming("____wctomb_alias_1981", "__wctomb_alias"); -__static_renaming("____mbstowcs_chk_1990", "__mbstowcs_chk"); -__static_renaming("____mbstowcs_chk_1991", "__mbstowcs_chk"); -__static_renaming("____mbstowcs_alias_1996", "__mbstowcs_alias"); -__static_renaming("____mbstowcs_alias_1997", "__mbstowcs_alias"); -__static_renaming("____mbstowcs_chk_warn_2004", "__mbstowcs_chk_warn"); -__static_renaming("____mbstowcs_chk_warn_2005", "__mbstowcs_chk_warn"); -__static_renaming("____wcstombs_chk_2016", "__wcstombs_chk"); -__static_renaming("____wcstombs_chk_2017", "__wcstombs_chk"); -__static_renaming("____wcstombs_alias_2022", "__wcstombs_alias"); -__static_renaming("____wcstombs_alias_2023", "__wcstombs_alias"); -__static_renaming("____wcstombs_chk_warn_2030", "__wcstombs_chk_warn"); -__static_renaming("____wcstombs_chk_warn_2031", "__wcstombs_chk_warn"); -__static_renaming("__request_GET_2036", "request_GET"); -__static_renaming("__total_2038", "total"); -__static_renaming("__total_2039", "total"); -__static_renaming("__sendHeaders_2040", "sendHeaders"); -__static_renaming("__sendHeaders_2041", "sendHeaders"); -__static_renaming("__random_2051", "random"); -__static_renaming("__http_unauthorized_2053", "http_unauthorized"); -__static_renaming("__handleIncoming_2055", "handleIncoming"); -__static_renaming("__request_2066", "request"); -__static_renaming("__main_2067", "main"); - -__static_condition_renaming("__static_condition_default_53", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_76", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_84", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_123", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_169", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_170", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_173", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_182", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_187", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_193", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_198", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_201", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_204", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_210", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_217", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_223", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_229", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_235", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_238", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_241", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_244", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_246", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_248", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_249", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_250", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_253", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_255", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_257", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_258", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_259", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_263", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_264", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_267", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_270", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_271", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_274", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_275", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_278", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_280", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); -__static_condition_renaming("__static_condition_default_282", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_284", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_286", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_288", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_290", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_293", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_296", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_299", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_311", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_313", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_315", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_317", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_331", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_333", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_337", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_341", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_345", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_347", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_355", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_357", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_363", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_365", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_367", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_369", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_373", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_375", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_380", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_382", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_386", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_388", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_393", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_395", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_402", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_408", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_412", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_417", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_419", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_431", "!(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_432", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_433", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_438", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_444", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_455", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_461", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_469", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_471", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_473", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_475", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_486", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_488", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_489", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_491", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_493", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_494", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_497", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_499", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_503", "!(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_510", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_511", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_512", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_514", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_515", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_516", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_521", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_523", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_529", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_536", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_537", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_538", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_539", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_541", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_542", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_543", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_544", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_549", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_550", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_552", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_553", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_559", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_560", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_564", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_568", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_573", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_578", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_583", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_585", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_590", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_597", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_602", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_608", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_613", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_619", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_621", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_623", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_625", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_632", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_633", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_634", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_636", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_637", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_638", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_645", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_646", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_647", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_649", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_650", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_651", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_657", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_658", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_659", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_661", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_662", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_663", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_668", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_670", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_677", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_683", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_684", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_685", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_686", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_692", "!(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_693", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_699", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_700", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_701", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_702", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_708", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_709", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_715", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_717", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_721", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_723", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_727", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_734", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_735", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_736", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_745", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_746", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_747", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_751", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_752", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_753", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_755", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_756", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_757", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_759", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_760", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_761", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_767", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_768", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_769", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_779", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_780", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_781", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_787", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_788", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_789", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_791", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_792", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_793", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_797", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_801", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_803", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_807", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_809", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_813", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_817", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_819", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_823", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_825", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_834", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_836", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_840", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_842", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_846", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_848", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_852", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_858", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_862", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_864", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_868", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_872", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_875", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_878", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_883", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_887", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_891", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_894", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_907", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_914", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_929", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_938", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_944", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_955", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_956", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_957", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_963", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_967", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_972", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_978", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_979", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_980", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_991", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_998", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1005", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1007", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1009", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1015", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1022", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1027", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1028", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1035", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1036", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1042", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1043", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1050", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1051", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1057", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1058", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1065", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1066", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1072", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1073", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1080", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1081", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1089", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_1090", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1091", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1152", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1159", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1164", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1165", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1315", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1341", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __u_char_defined)"); -__static_condition_renaming("__static_condition_default_1345", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __u_char_defined)"); -__static_condition_renaming("__static_condition_default_1349", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __u_char_defined)"); -__static_condition_renaming("__static_condition_default_1353", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined)"); -__static_condition_renaming("__static_condition_default_1357", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined)"); -__static_condition_renaming("__static_condition_default_1361", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_1365", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_1369", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_1373", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1377", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __nlink_t_defined)"); -__static_condition_renaming("__static_condition_default_1381", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __nlink_t_defined)"); -__static_condition_renaming("__static_condition_default_1385", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __nlink_t_defined)"); -__static_condition_renaming("__static_condition_default_1388", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1391", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1395", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && (defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1398", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1402", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __id_t_defined)"); -__static_condition_renaming("__static_condition_default_1405", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1409", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_1416", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_1420", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_1424", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __clock_t_defined)"); -__static_condition_renaming("__static_condition_default_1428", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __time_t_defined)"); -__static_condition_renaming("__static_condition_default_1432", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __clockid_t_defined)"); -__static_condition_renaming("__static_condition_default_1436", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timer_t_defined)"); -__static_condition_renaming("__static_condition_default_1453", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1458", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1459", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1475", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_1485", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_1489", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __suseconds_t_defined)"); -__static_condition_renaming("__static_condition_default_1498", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1515", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_1516", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_1531", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_1532", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_1552", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blksize_t_defined)"); -__static_condition_renaming("__static_condition_default_1556", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined)"); -__static_condition_renaming("__static_condition_default_1560", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1564", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined)"); -__static_condition_renaming("__static_condition_default_1568", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1572", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1576", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1749", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1750", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1753", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1754", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1773", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1774", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1775", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1776", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1785", "!(defined __need___FILE) && !(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1787", "(defined __need___FILE) && !(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1789", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1791", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1808", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1810", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1814", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1816", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1944", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_2042", "!(defined CONFIG_FEATURE_HTTPD_CGI)"); -__static_condition_renaming("__static_condition_default_2043", "!(defined __need___FILE) && !(defined CONFIG_FEATURE_HTTPD_CGI) && (defined CONFIG_LFS)"); -__static_condition_renaming("__static_condition_default_2044", "!(defined __need___FILE) && !(defined CONFIG_FEATURE_HTTPD_CGI) && !(defined CONFIG_LFS)"); -__static_condition_renaming("__static_condition_default_2045", "(defined __need___FILE) && !(defined CONFIG_FEATURE_HTTPD_CGI)"); -__static_condition_renaming("__static_condition_default_2046", "(defined CONFIG_FEATURE_HTTPD_CGI)"); -__static_condition_renaming("__static_condition_default_2047", "!(defined __need___FILE) && (defined CONFIG_FEATURE_HTTPD_CGI) && (defined CONFIG_LFS)"); -__static_condition_renaming("__static_condition_default_2048", "!(defined __need___FILE) && (defined CONFIG_FEATURE_HTTPD_CGI) && !(defined CONFIG_LFS)"); -__static_condition_renaming("__static_condition_default_2049", "(defined __need___FILE) && (defined CONFIG_FEATURE_HTTPD_CGI)"); -__static_condition_renaming("__static_condition_default_2052", "!(defined __STRICT_ANSI__) && (defined CONFIG_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined CONFIG_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_2054", "!(defined __STRICT_ANSI__) && (defined CONFIG_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined CONFIG_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_2056", "!(defined CONFIG_FEATURE_HTTPD_CGI)"); -__static_condition_renaming("__static_condition_default_2057", "(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HTTPD_CGI) && (defined CONFIG_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_2058", "!(defined __STRICT_ANSI__) && !(defined CONFIG_FEATURE_HTTPD_CGI) && (defined CONFIG_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HTTPD_CGI) && (defined CONFIG_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _STDLIB_H) && !(defined CONFIG_FEATURE_HTTPD_CGI) && (defined CONFIG_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_2059", "(defined CONFIG_FEATURE_HTTPD_CGI)"); -__static_condition_renaming("__static_condition_default_2060", "(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HTTPD_CGI) && (defined CONFIG_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_2061", "!(defined __STRICT_ANSI__) && (defined CONFIG_FEATURE_HTTPD_CGI) && (defined CONFIG_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HTTPD_CGI) && (defined CONFIG_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined CONFIG_FEATURE_HTTPD_CGI) && (defined CONFIG_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_2062", "(defined CONFIG_FEATURE_HTTPD_CGI) && !(defined CONFIG_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_2063", "(defined CONFIG_FEATURE_HTTPD_CGI) && (defined CONFIG_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_2068", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); - -if (__static_condition_default_2068) -{ +__static_renaming("____qaddr_t_53", "__qaddr_t"); +__static_renaming("____caddr_t_54", "__caddr_t"); +__static_renaming("____intptr_t_55", "__intptr_t"); +__static_renaming("____socklen_t_56", "__socklen_t"); +__static_renaming("__FILE_58", "FILE"); +__static_renaming("____FILE_59", "__FILE"); +__static_renaming("____mbstate_t_68", "__mbstate_t"); +__static_renaming("___G_fpos_t_75", "_G_fpos_t"); +__static_renaming("___G_fpos64_t_81", "_G_fpos64_t"); +__static_renaming("____gnuc_va_list_82", "__gnuc_va_list"); +__static_renaming("___IO_lock_t_84", "_IO_lock_t"); +__static_renaming("___IO_FILE_163", "_IO_FILE"); +__static_renaming("___IO_FILE_164", "_IO_FILE"); +__static_renaming("___IO_2_1_stdin__167", "_IO_2_1_stdin_"); +__static_renaming("___IO_2_1_stdout__168", "_IO_2_1_stdout_"); +__static_renaming("___IO_2_1_stderr__169", "_IO_2_1_stderr_"); +__static_renaming("____io_read_fn_173", "__io_read_fn"); +__static_renaming("____io_write_fn_177", "__io_write_fn"); +__static_renaming("____io_seek_fn_181", "__io_seek_fn"); +__static_renaming("____io_close_fn_183", "__io_close_fn"); +__static_renaming("____underflow_184", "__underflow"); +__static_renaming("____underflow_185", "__underflow"); +__static_renaming("____uflow_186", "__uflow"); +__static_renaming("____uflow_187", "__uflow"); +__static_renaming("____overflow_188", "__overflow"); +__static_renaming("____overflow_189", "__overflow"); +__static_renaming("___IO_getc_193", "_IO_getc"); +__static_renaming("___IO_getc_194", "_IO_getc"); +__static_renaming("___IO_putc_199", "_IO_putc"); +__static_renaming("___IO_putc_200", "_IO_putc"); +__static_renaming("___IO_feof_204", "_IO_feof"); +__static_renaming("___IO_feof_205", "_IO_feof"); +__static_renaming("___IO_ferror_209", "_IO_ferror"); +__static_renaming("___IO_ferror_210", "_IO_ferror"); +__static_renaming("___IO_peekc_locked_214", "_IO_peekc_locked"); +__static_renaming("___IO_peekc_locked_215", "_IO_peekc_locked"); +__static_renaming("___IO_flockfile_216", "_IO_flockfile"); +__static_renaming("___IO_flockfile_217", "_IO_flockfile"); +__static_renaming("___IO_funlockfile_218", "_IO_funlockfile"); +__static_renaming("___IO_funlockfile_219", "_IO_funlockfile"); +__static_renaming("___IO_ftrylockfile_220", "_IO_ftrylockfile"); +__static_renaming("___IO_ftrylockfile_221", "_IO_ftrylockfile"); +__static_renaming("___IO_vfscanf_222", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_224", "_IO_vfscanf"); +__static_renaming("___IO_vfprintf_231", "_IO_vfprintf"); +__static_renaming("___IO_vfprintf_233", "_IO_vfprintf"); +__static_renaming("___IO_padn_238", "_IO_padn"); +__static_renaming("___IO_padn_239", "_IO_padn"); +__static_renaming("___IO_sgetn_240", "_IO_sgetn"); +__static_renaming("___IO_sgetn_241", "_IO_sgetn"); +__static_renaming("___IO_seekoff_242", "_IO_seekoff"); +__static_renaming("___IO_seekoff_243", "_IO_seekoff"); +__static_renaming("___IO_seekpos_244", "_IO_seekpos"); +__static_renaming("___IO_seekpos_245", "_IO_seekpos"); +__static_renaming("___IO_free_backup_area_246", "_IO_free_backup_area"); +__static_renaming("___IO_free_backup_area_247", "_IO_free_backup_area"); +__static_renaming("__va_list_248", "va_list"); +__static_renaming("__off_t_250", "off_t"); +__static_renaming("__off_t_251", "off_t"); +__static_renaming("__ssize_t_252", "ssize_t"); +__static_renaming("__fpos_t_253", "fpos_t"); +__static_renaming("__fpos_t_255", "fpos_t"); +__static_renaming("__stdin_257", "stdin"); +__static_renaming("__stdin_258", "stdin"); +__static_renaming("__stdout_259", "stdout"); +__static_renaming("__stdout_260", "stdout"); +__static_renaming("__stderr_261", "stderr"); +__static_renaming("__stderr_262", "stderr"); +__static_renaming("__remove_264", "remove"); +__static_renaming("__rename_267", "rename"); +__static_renaming("__renameat_272", "renameat"); +__static_renaming("__tmpfile_273", "tmpfile"); +__static_renaming("__tmpfile_275", "tmpfile"); +__static_renaming("__tmpfile_277", "tmpfile"); +__static_renaming("__tmpfile_279", "tmpfile"); +__static_renaming("__tmpnam_282", "tmpnam"); +__static_renaming("__tmpnam_283", "tmpnam"); +__static_renaming("__tmpnam_r_285", "tmpnam_r"); +__static_renaming("__tmpnam_r_286", "tmpnam_r"); +__static_renaming("__tempnam_289", "tempnam"); +__static_renaming("__tempnam_290", "tempnam"); +__static_renaming("__fclose_293", "fclose"); +__static_renaming("__fclose_295", "fclose"); +__static_renaming("__fflush_299", "fflush"); +__static_renaming("__fflush_unlocked_303", "fflush_unlocked"); +__static_renaming("__fopen_307", "fopen"); +__static_renaming("__fopen_309", "fopen"); +__static_renaming("__fopen_317", "fopen"); +__static_renaming("__fopen_319", "fopen"); +__static_renaming("__freopen_325", "freopen"); +__static_renaming("__freopen_327", "freopen"); +__static_renaming("__freopen_329", "freopen"); +__static_renaming("__freopen_331", "freopen"); +__static_renaming("__fdopen_335", "fdopen"); +__static_renaming("__fdopen_337", "fdopen"); +__static_renaming("__fmemopen_342", "fmemopen"); +__static_renaming("__fmemopen_344", "fmemopen"); +__static_renaming("__open_memstream_348", "open_memstream"); +__static_renaming("__open_memstream_350", "open_memstream"); +__static_renaming("__setbuf_355", "setbuf"); +__static_renaming("__setbuf_357", "setbuf"); +__static_renaming("__setvbuf_364", "setvbuf"); +__static_renaming("__setbuffer_369", "setbuffer"); +__static_renaming("__setlinebuf_373", "setlinebuf"); +__static_renaming("__fprintf_378", "fprintf"); +__static_renaming("__fprintf_380", "fprintf"); +__static_renaming("__printf_383", "printf"); +__static_renaming("__sprintf_386", "sprintf"); +__static_renaming("__vfprintf_392", "vfprintf"); +__static_renaming("__vprintf_399", "vprintf"); +__static_renaming("__vsprintf_405", "vsprintf"); +__static_renaming("__snprintf_409", "snprintf"); +__static_renaming("__vsnprintf_415", "vsnprintf"); +__static_renaming("__vdprintf_420", "vdprintf"); +__static_renaming("__dprintf_424", "dprintf"); +__static_renaming("__fscanf_428", "fscanf"); +__static_renaming("__fscanf_430", "fscanf"); +__static_renaming("__fscanf_432", "fscanf"); +__static_renaming("__fscanf_434", "fscanf"); +__static_renaming("__scanf_437", "scanf"); +__static_renaming("__scanf_438", "scanf"); +__static_renaming("__sscanf_441", "sscanf"); +__static_renaming("__vfscanf_468", "vfscanf"); +__static_renaming("__vfscanf_472", "vfscanf"); +__static_renaming("__vscanf_479", "vscanf"); +__static_renaming("__vscanf_481", "vscanf"); +__static_renaming("__vsscanf_487", "vsscanf"); +__static_renaming("__fgetc_520", "fgetc"); +__static_renaming("__getc_523", "getc"); +__static_renaming("__getchar_524", "getchar"); +__static_renaming("__getc_unlocked_527", "getc_unlocked"); +__static_renaming("__getchar_unlocked_529", "getchar_unlocked"); +__static_renaming("__fgetc_unlocked_532", "fgetc_unlocked"); +__static_renaming("__fputc_537", "fputc"); +__static_renaming("__fputc_539", "fputc"); +__static_renaming("__putc_544", "putc"); +__static_renaming("__putchar_546", "putchar"); +__static_renaming("__fputc_unlocked_550", "fputc_unlocked"); +__static_renaming("__putc_unlocked_555", "putc_unlocked"); +__static_renaming("__putchar_unlocked_558", "putchar_unlocked"); +__static_renaming("__getw_561", "getw"); +__static_renaming("__putw_566", "putw"); +__static_renaming("__fgets_572", "fgets"); +__static_renaming("__fgets_574", "fgets"); +__static_renaming("__fgets_576", "fgets"); +__static_renaming("__fgets_578", "fgets"); +__static_renaming("____getdelim_585", "__getdelim"); +__static_renaming("____getdelim_587", "__getdelim"); +__static_renaming("__getdelim_594", "getdelim"); +__static_renaming("__getdelim_596", "getdelim"); +__static_renaming("__getline_602", "getline"); +__static_renaming("__getline_604", "getline"); +__static_renaming("__fputs_609", "fputs"); +__static_renaming("__fputs_611", "fputs"); +__static_renaming("__puts_614", "puts"); +__static_renaming("__ungetc_618", "ungetc"); +__static_renaming("__fseek_654", "fseek"); +__static_renaming("__fseek_656", "fseek"); +__static_renaming("__ftell_660", "ftell"); +__static_renaming("__ftell_662", "ftell"); +__static_renaming("__rewind_666", "rewind"); +__static_renaming("__fseeko_671", "fseeko"); +__static_renaming("__fseeko_679", "fseeko"); +__static_renaming("__ftello_683", "ftello"); +__static_renaming("__ftello_685", "ftello"); +__static_renaming("__ftello_687", "ftello"); +__static_renaming("__fgetpos_693", "fgetpos"); +__static_renaming("__fgetpos_705", "fgetpos"); +__static_renaming("__fsetpos_713", "fsetpos"); +__static_renaming("__fsetpos_717", "fsetpos"); +__static_renaming("__clearerr_723", "clearerr"); +__static_renaming("__feof_726", "feof"); +__static_renaming("__feof_728", "feof"); +__static_renaming("__ferror_732", "ferror"); +__static_renaming("__ferror_734", "ferror"); +__static_renaming("__clearerr_unlocked_738", "clearerr_unlocked"); +__static_renaming("__feof_unlocked_742", "feof_unlocked"); +__static_renaming("__feof_unlocked_744", "feof_unlocked"); +__static_renaming("__ferror_unlocked_748", "ferror_unlocked"); +__static_renaming("__ferror_unlocked_750", "ferror_unlocked"); +__static_renaming("__perror_753", "perror"); +__static_renaming("__perror_754", "perror"); +__static_renaming("__sys_nerr_755", "sys_nerr"); +__static_renaming("__sys_errlist_756", "sys_errlist"); +__static_renaming("__fileno_759", "fileno"); +__static_renaming("__fileno_761", "fileno"); +__static_renaming("__fileno_unlocked_765", "fileno_unlocked"); +__static_renaming("__fileno_unlocked_767", "fileno_unlocked"); +__static_renaming("__popen_771", "popen"); +__static_renaming("__popen_773", "popen"); +__static_renaming("__pclose_777", "pclose"); +__static_renaming("__ctermid_780", "ctermid"); +__static_renaming("__flockfile_783", "flockfile"); +__static_renaming("__ftrylockfile_787", "ftrylockfile"); +__static_renaming("__ftrylockfile_789", "ftrylockfile"); +__static_renaming("__funlockfile_793", "funlockfile"); +__static_renaming("____sprintf_chk_825", "__sprintf_chk"); +__static_renaming("____vsprintf_chk_832", "__vsprintf_chk"); +__static_renaming("____snprintf_chk_846", "__snprintf_chk"); +__static_renaming("____vsnprintf_chk_854", "__vsnprintf_chk"); +__static_renaming("____fprintf_chk_869", "__fprintf_chk"); +__static_renaming("____printf_chk_873", "__printf_chk"); +__static_renaming("____vfprintf_chk_880", "__vfprintf_chk"); +__static_renaming("____vprintf_chk_888", "__vprintf_chk"); +__static_renaming("____dprintf_chk_910", "__dprintf_chk"); +__static_renaming("____vdprintf_chk_916", "__vdprintf_chk"); +__static_renaming("____fgets_chk_930", "__fgets_chk"); +__static_renaming("____fgets_chk_932", "__fgets_chk"); +__static_renaming("____fgets_chk_934", "__fgets_chk"); +__static_renaming("____fgets_alias_940", "__fgets_alias"); +__static_renaming("____fgets_chk_warn_947", "__fgets_chk_warn"); +__static_renaming("____cnt_1013", "__cnt"); +__static_renaming("____cptr_1014", "__cptr"); +__static_renaming("__wchar_t_1018", "wchar_t"); +__static_renaming("__idtype_t_1024", "idtype_t"); +__static_renaming("____bswap_32_1026", "__bswap_32"); +__static_renaming("____bswap_64_1029", "__bswap_64"); +__static_renaming("____WAIT_STATUS_1049", "__WAIT_STATUS"); +__static_renaming("__div_t_1054", "div_t"); +__static_renaming("__ldiv_t_1059", "ldiv_t"); +__static_renaming("__lldiv_t_1064", "lldiv_t"); +__static_renaming("____ctype_get_mb_cur_max_1065", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1066", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1067", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1068", "__ctype_get_mb_cur_max"); +__static_renaming("__atof_1070", "atof"); +__static_renaming("__atof_1071", "atof"); +__static_renaming("__atoi_1073", "atoi"); +__static_renaming("__atoi_1074", "atoi"); +__static_renaming("__atol_1076", "atol"); +__static_renaming("__atol_1077", "atol"); +__static_renaming("__atoll_1079", "atoll"); +__static_renaming("__atoll_1080", "atoll"); +__static_renaming("__strtod_1083", "strtod"); +__static_renaming("__strtof_1086", "strtof"); +__static_renaming("__strtold_1089", "strtold"); +__static_renaming("__strtol_1093", "strtol"); +__static_renaming("__strtoul_1097", "strtoul"); +__static_renaming("__strtoq_1101", "strtoq"); +__static_renaming("__strtouq_1105", "strtouq"); +__static_renaming("__strtoll_1109", "strtoll"); +__static_renaming("__strtoll_1110", "strtoll"); +__static_renaming("__strtoull_1114", "strtoull"); +__static_renaming("__l64a_1119", "l64a"); +__static_renaming("__l64a_1120", "l64a"); +__static_renaming("__a64l_1122", "a64l"); +__static_renaming("__a64l_1123", "a64l"); +__static_renaming("__u_char_1124", "u_char"); +__static_renaming("__u_short_1125", "u_short"); +__static_renaming("__u_int_1126", "u_int"); +__static_renaming("__u_long_1127", "u_long"); +__static_renaming("__quad_t_1128", "quad_t"); +__static_renaming("__u_quad_t_1129", "u_quad_t"); +__static_renaming("__fsid_t_1130", "fsid_t"); +__static_renaming("__loff_t_1131", "loff_t"); +__static_renaming("__ino_t_1132", "ino_t"); +__static_renaming("__ino_t_1133", "ino_t"); +__static_renaming("__dev_t_1134", "dev_t"); +__static_renaming("__gid_t_1135", "gid_t"); +__static_renaming("__gid_t_1136", "gid_t"); +__static_renaming("__mode_t_1137", "mode_t"); +__static_renaming("__nlink_t_1138", "nlink_t"); +__static_renaming("__uid_t_1139", "uid_t"); +__static_renaming("__uid_t_1140", "uid_t"); +__static_renaming("__pid_t_1141", "pid_t"); +__static_renaming("__id_t_1142", "id_t"); +__static_renaming("__daddr_t_1143", "daddr_t"); +__static_renaming("__caddr_t_1144", "caddr_t"); +__static_renaming("__key_t_1145", "key_t"); +__static_renaming("__key_t_1146", "key_t"); +__static_renaming("__clock_t_1147", "clock_t"); +__static_renaming("__time_t_1148", "time_t"); +__static_renaming("__clockid_t_1149", "clockid_t"); +__static_renaming("__timer_t_1150", "timer_t"); +__static_renaming("__ulong_1151", "ulong"); +__static_renaming("__ulong_1152", "ulong"); +__static_renaming("__ulong_1153", "ulong"); +__static_renaming("__ushort_1154", "ushort"); +__static_renaming("__uint_1155", "uint"); +__static_renaming("__int8_t_1156", "int8_t"); +__static_renaming("__int16_t_1157", "int16_t"); +__static_renaming("__int32_t_1158", "int32_t"); +__static_renaming("__int64_t_1159", "int64_t"); +__static_renaming("__u_int8_t_1160", "u_int8_t"); +__static_renaming("__u_int16_t_1161", "u_int16_t"); +__static_renaming("__u_int32_t_1162", "u_int32_t"); +__static_renaming("__u_int64_t_1163", "u_int64_t"); +__static_renaming("__register_t_1164", "register_t"); +__static_renaming("____bswap_32_1166", "__bswap_32"); +__static_renaming("____bswap_64_1169", "__bswap_64"); +__static_renaming("____sig_atomic_t_1170", "__sig_atomic_t"); +__static_renaming("____sigset_t_1174", "__sigset_t"); +__static_renaming("__sigset_t_1175", "sigset_t"); +__static_renaming("__suseconds_t_1182", "suseconds_t"); +__static_renaming("____fd_mask_1183", "__fd_mask"); +__static_renaming("____fd_mask_1184", "__fd_mask"); +__static_renaming("__fd_set_1189", "fd_set"); +__static_renaming("__fd_mask_1190", "fd_mask"); +__static_renaming("__fd_mask_1191", "fd_mask"); +__static_renaming("__select_1199", "select"); +__static_renaming("__select_1200", "select"); +__static_renaming("__pselect_1209", "pselect"); +__static_renaming("__pselect_1210", "pselect"); +__static_renaming("____fdelt_chk_1212", "__fdelt_chk"); +__static_renaming("____fdelt_warn_1214", "__fdelt_warn"); +__static_renaming("__gnu_dev_major_1216", "gnu_dev_major"); +__static_renaming("__gnu_dev_major_1217", "gnu_dev_major"); +__static_renaming("__gnu_dev_minor_1219", "gnu_dev_minor"); +__static_renaming("__gnu_dev_makedev_1222", "gnu_dev_makedev"); +__static_renaming("__blksize_t_1227", "blksize_t"); +__static_renaming("__blkcnt_t_1228", "blkcnt_t"); +__static_renaming("__fsblkcnt_t_1229", "fsblkcnt_t"); +__static_renaming("__blkcnt_t_1230", "blkcnt_t"); +__static_renaming("__fsblkcnt_t_1231", "fsblkcnt_t"); +__static_renaming("__fsfilcnt_t_1232", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_1233", "fsfilcnt_t"); +__static_renaming("__pthread_t_1234", "pthread_t"); +__static_renaming("__pthread_attr_t_1238", "pthread_attr_t"); +__static_renaming("____pthread_list_t_1243", "__pthread_list_t"); +__static_renaming("____pthread_list_t_1244", "__pthread_list_t"); +__static_renaming("__pthread_mutex_t_1260", "pthread_mutex_t"); +__static_renaming("__pthread_mutexattr_t_1265", "pthread_mutexattr_t"); +__static_renaming("__rand_1266", "rand"); +__static_renaming("__srand_1268", "srand"); +__static_renaming("__rand_r_1270", "rand_r"); +__static_renaming("__drand48_1271", "drand48"); +__static_renaming("__erand48_1273", "erand48"); +__static_renaming("__lrand48_1274", "lrand48"); +__static_renaming("__nrand48_1276", "nrand48"); +__static_renaming("__mrand48_1277", "mrand48"); +__static_renaming("__jrand48_1279", "jrand48"); +__static_renaming("__srand48_1281", "srand48"); +__static_renaming("__seed48_1283", "seed48"); +__static_renaming("__lcong48_1285", "lcong48"); +__static_renaming("__malloc_1287", "malloc"); +__static_renaming("__malloc_1288", "malloc"); +__static_renaming("__calloc_1291", "calloc"); +__static_renaming("__calloc_1292", "calloc"); +__static_renaming("__realloc_1295", "realloc"); +__static_renaming("__realloc_1296", "realloc"); +__static_renaming("__free_1298", "free"); +__static_renaming("__cfree_1300", "cfree"); +__static_renaming("__alloca_1302", "alloca"); +__static_renaming("__valloc_1304", "valloc"); +__static_renaming("__valloc_1305", "valloc"); +__static_renaming("__posix_memalign_1309", "posix_memalign"); +__static_renaming("__posix_memalign_1310", "posix_memalign"); +__static_renaming("__aligned_alloc_1313", "aligned_alloc"); +__static_renaming("__aligned_alloc_1314", "aligned_alloc"); +__static_renaming("__aligned_alloc_1315", "aligned_alloc"); +__static_renaming("__aligned_alloc_1316", "aligned_alloc"); +__static_renaming("__abort_1317", "abort"); +__static_renaming("__atexit_1319", "atexit"); +__static_renaming("__at_quick_exit_1321", "at_quick_exit"); +__static_renaming("__on_exit_1326", "on_exit"); +__static_renaming("__exit_1328", "exit"); +__static_renaming("__exit_1329", "exit"); +__static_renaming("__quick_exit_1331", "quick_exit"); +__static_renaming("___Exit_1333", "_Exit"); +__static_renaming("__getenv_1335", "getenv"); +__static_renaming("__getenv_1336", "getenv"); +__static_renaming("__putenv_1338", "putenv"); +__static_renaming("__setenv_1342", "setenv"); +__static_renaming("__unsetenv_1344", "unsetenv"); +__static_renaming("__clearenv_1345", "clearenv"); +__static_renaming("__mktemp_1347", "mktemp"); +__static_renaming("__mkstemp_1350", "mkstemp"); +__static_renaming("__mkstemp_1351", "mkstemp"); +__static_renaming("__mkstemp_1352", "mkstemp"); +__static_renaming("__mkstemp_1353", "mkstemp"); +__static_renaming("__mkstemps_1358", "mkstemps"); +__static_renaming("__mkstemps_1359", "mkstemps"); +__static_renaming("__mkstemps_1360", "mkstemps"); +__static_renaming("__mkstemps_1361", "mkstemps"); +__static_renaming("__mkdtemp_1363", "mkdtemp"); +__static_renaming("__mkdtemp_1364", "mkdtemp"); +__static_renaming("__system_1366", "system"); +__static_renaming("__system_1367", "system"); +__static_renaming("__system_1368", "system"); +__static_renaming("__system_1369", "system"); +__static_renaming("__realpath_1372", "realpath"); +__static_renaming("__realpath_1373", "realpath"); +__static_renaming("____compar_fn_t_1374", "__compar_fn_t"); +__static_renaming("__bsearch_1382", "bsearch"); +__static_renaming("__bsearch_1384", "bsearch"); +__static_renaming("____l_1391", "__l"); +__static_renaming("____u_1392", "__u"); +__static_renaming("____idx_1393", "__idx"); +__static_renaming("____p_1394", "__p"); +__static_renaming("____comparison_1395", "__comparison"); +__static_renaming("__qsort_1403", "qsort"); +__static_renaming("__qsort_1405", "qsort"); +__static_renaming("__abs_1408", "abs"); +__static_renaming("__abs_1409", "abs"); +__static_renaming("__labs_1411", "labs"); +__static_renaming("__labs_1412", "labs"); +__static_renaming("__llabs_1414", "llabs"); +__static_renaming("__llabs_1415", "llabs"); +__static_renaming("__div_1418", "div"); +__static_renaming("__div_1419", "div"); +__static_renaming("__ldiv_1422", "ldiv"); +__static_renaming("__ldiv_1424", "ldiv"); +__static_renaming("__lldiv_1428", "lldiv"); +__static_renaming("__lldiv_1430", "lldiv"); +__static_renaming("__ecvt_1436", "ecvt"); +__static_renaming("__ecvt_1437", "ecvt"); +__static_renaming("__fcvt_1442", "fcvt"); +__static_renaming("__fcvt_1443", "fcvt"); +__static_renaming("__gcvt_1447", "gcvt"); +__static_renaming("__gcvt_1448", "gcvt"); +__static_renaming("__qecvt_1453", "qecvt"); +__static_renaming("__qecvt_1454", "qecvt"); +__static_renaming("__qfcvt_1459", "qfcvt"); +__static_renaming("__qfcvt_1460", "qfcvt"); +__static_renaming("__qgcvt_1464", "qgcvt"); +__static_renaming("__qgcvt_1465", "qgcvt"); +__static_renaming("__ecvt_r_1472", "ecvt_r"); +__static_renaming("__fcvt_r_1479", "fcvt_r"); +__static_renaming("__qecvt_r_1486", "qecvt_r"); +__static_renaming("__qfcvt_r_1493", "qfcvt_r"); +__static_renaming("__mblen_1496", "mblen"); +__static_renaming("__mblen_1497", "mblen"); +__static_renaming("__mbtowc_1501", "mbtowc"); +__static_renaming("__wctomb_1504", "wctomb"); +__static_renaming("__mbstowcs_1508", "mbstowcs"); +__static_renaming("__wcstombs_1512", "wcstombs"); +__static_renaming("__rpmatch_1514", "rpmatch"); +__static_renaming("__rpmatch_1515", "rpmatch"); +__static_renaming("__getsubopt_1519", "getsubopt"); +__static_renaming("__getsubopt_1520", "getsubopt"); +__static_renaming("__getloadavg_1523", "getloadavg"); +__static_renaming("____realpath_chk_1528", "__realpath_chk"); +__static_renaming("____realpath_alias_1531", "__realpath_alias"); +__static_renaming("____realpath_chk_warn_1535", "__realpath_chk_warn"); +__static_renaming("____ptsname_r_chk_1543", "__ptsname_r_chk"); +__static_renaming("____ptsname_r_alias_1547", "__ptsname_r_alias"); +__static_renaming("____ptsname_r_chk_warn_1552", "__ptsname_r_chk_warn"); +__static_renaming("____wctomb_chk_1560", "__wctomb_chk"); +__static_renaming("____wctomb_alias_1563", "__wctomb_alias"); +__static_renaming("____mbstowcs_chk_1570", "__mbstowcs_chk"); +__static_renaming("____mbstowcs_alias_1574", "__mbstowcs_alias"); +__static_renaming("____mbstowcs_chk_warn_1579", "__mbstowcs_chk_warn"); +__static_renaming("____wcstombs_chk_1587", "__wcstombs_chk"); +__static_renaming("____wcstombs_alias_1591", "__wcstombs_alias"); +__static_renaming("____wcstombs_chk_warn_1596", "__wcstombs_chk_warn"); +__static_renaming("__request_GET_1600", "request_GET"); +__static_renaming("__total_1602", "total"); +__static_renaming("__total_1603", "total"); +__static_renaming("__sendHeaders_1604", "sendHeaders"); +__static_renaming("__sendHeaders_1605", "sendHeaders"); +__static_renaming("__random_1613", "random"); +__static_renaming("__http_unauthorized_1615", "http_unauthorized"); +__static_renaming("__handleIncoming_1617", "handleIncoming"); +__static_renaming("__request_1628", "request"); +__static_renaming("__main_1629", "main"); + +__static_condition_renaming("__static_condition_default_74", "(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_118", "(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_161", "(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_162", "(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_165", "(defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_223", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_225", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_226", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_227", "(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_230", "(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_232", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_234", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_235", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_236", "(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_249", "!(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); +__static_condition_renaming("__static_condition_default_254", "!(defined _FILE_OFFSET_BITS) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_256", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_274", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_276", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_278", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_280", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_294", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_296", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_300", "(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_304", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_308", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_310", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_318", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_320", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_326", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_328", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_330", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_332", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_336", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_338", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_343", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_345", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_349", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_351", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_356", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_358", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_370", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_374", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_379", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_381", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_393", "!(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_394", "(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_395", "(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_400", "!(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_421", "!(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_429", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_431", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_433", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_435", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_446", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_448", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_449", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_451", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_453", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_454", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_457", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_459", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_469", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_470", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_471", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_473", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_474", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_475", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_480", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_482", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_494", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_495", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_496", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_497", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_499", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_500", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_501", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_502", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_507", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_508", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_510", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_511", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_517", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_528", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_533", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_538", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_540", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_551", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_556", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_562", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_567", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_573", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_575", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_577", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_579", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_586", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_588", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_595", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_597", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_603", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_605", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_610", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_612", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_624", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_625", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_626", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_627", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_633", "!(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_639", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_640", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_641", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_642", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_648", "!(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_649", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_655", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_657", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_661", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_663", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_672", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_680", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_684", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_686", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_688", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_694", "!(defined _FILE_OFFSET_BITS) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_695", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_696", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_706", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_707", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_708", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_714", "!(defined _FILE_OFFSET_BITS) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_715", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_716", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_718", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_719", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_720", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_727", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_729", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_733", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_735", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_739", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_743", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_745", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_749", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_751", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_760", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_762", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_766", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_768", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_772", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_774", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_778", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_784", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_788", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_790", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_794", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_798", "!(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_801", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_804", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_809", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_813", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_817", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_820", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_833", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_840", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_855", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_864", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_870", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_881", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_882", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_883", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_889", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_893", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_898", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_904", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_905", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_906", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_917", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_924", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_931", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_933", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_935", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_941", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_948", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_953", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_954", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_961", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_962", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_968", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_969", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_976", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_977", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_983", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_984", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_991", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_992", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_998", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_999", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1006", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1007", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1015", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_1016", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1017", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1027", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1167", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1381", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1383", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1396", "(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1397", "(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1404", "!(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1406", "(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1423", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1425", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1429", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1431", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1538", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1606", "!(defined CONFIG_FEATURE_HTTPD_CGI)"); +__static_condition_renaming("__static_condition_default_1607", "!(defined CONFIG_FEATURE_HTTPD_CGI) && (defined CONFIG_LFS)"); +__static_condition_renaming("__static_condition_default_1608", "!(defined CONFIG_FEATURE_HTTPD_CGI) && !(defined CONFIG_LFS)"); +__static_condition_renaming("__static_condition_default_1609", "(defined CONFIG_FEATURE_HTTPD_CGI)"); +__static_condition_renaming("__static_condition_default_1610", "(defined CONFIG_FEATURE_HTTPD_CGI) && (defined CONFIG_LFS)"); +__static_condition_renaming("__static_condition_default_1611", "(defined CONFIG_FEATURE_HTTPD_CGI) && !(defined CONFIG_LFS)"); +__static_condition_renaming("__static_condition_default_1614", "!(defined __STRICT_ANSI__) && (defined CONFIG_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined CONFIG_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_1616", "!(defined __STRICT_ANSI__) && (defined CONFIG_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined CONFIG_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_1618", "!(defined CONFIG_FEATURE_HTTPD_CGI)"); +__static_condition_renaming("__static_condition_default_1619", "(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HTTPD_CGI) && (defined CONFIG_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_1620", "!(defined __STRICT_ANSI__) && !(defined CONFIG_FEATURE_HTTPD_CGI) && (defined CONFIG_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HTTPD_CGI) && (defined CONFIG_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _STDLIB_H) && !(defined CONFIG_FEATURE_HTTPD_CGI) && (defined CONFIG_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_1621", "(defined CONFIG_FEATURE_HTTPD_CGI)"); +__static_condition_renaming("__static_condition_default_1622", "(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HTTPD_CGI) && (defined CONFIG_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_1623", "!(defined __STRICT_ANSI__) && (defined CONFIG_FEATURE_HTTPD_CGI) && (defined CONFIG_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HTTPD_CGI) && (defined CONFIG_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined CONFIG_FEATURE_HTTPD_CGI) && (defined CONFIG_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_1624", "(defined CONFIG_FEATURE_HTTPD_CGI) && !(defined CONFIG_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_1625", "(defined CONFIG_FEATURE_HTTPD_CGI) && (defined CONFIG_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_1630", "!(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); + +if (__static_condition_default_1630) { __static_parse_error("Unable to parse"); } }; @@ -1512,499 +1036,298 @@ typedef long int ____ssize_t_49;// L110:L172 typedef long int ____syscall_slong_t_50;// L93:L175 typedef unsigned long int ____syscall_ulong_t_51;// L94:L177 typedef ____off64_t_24 ____loff_t_52;// L181 -typedef ____quad_t_14 * (____qaddr_t_54);// L182 -typedef char * (____caddr_t_55);// L183 -typedef long int ____intptr_t_56;// L110:L186 -typedef unsigned int ____socklen_t_57;// L92:L189 -typedef struct __forward_tag_reference_58 __FILE_59;// L48 -typedef struct __forward_tag_reference_58 ____FILE_60;// L64 -union ____anonymous_tag_61_62 { -unsigned int ____wch_63;// L265 -char ____wchb_64[4];// L92 +typedef ____quad_t_14 * (____qaddr_t_53);// L182 +typedef char * (____caddr_t_54);// L183 +typedef long int ____intptr_t_55;// L110:L186 +typedef unsigned int ____socklen_t_56;// L92:L189 +typedef struct __forward_tag_reference_57 __FILE_58;// L48 +typedef struct __forward_tag_reference_57 ____FILE_59;// L64 +union ____anonymous_tag_60_61 { +unsigned int ____wch_62;// L265 +char ____wchb_63[4];// L92 }; -struct ____anonymous_tag_65_66 { -int ____count_67;// L84 -union ____anonymous_tag_61_62 ____value_68;// L85 +struct ____anonymous_tag_64_65 { +int ____count_66;// L84 +union ____anonymous_tag_60_61 ____value_67;// L85 }; -typedef struct ____anonymous_tag_65_66 ____mbstate_t_69;// L82:L94 -struct ____anonymous_tag_70_71 { -____off_t_23 ____pos_72;// L0 -____mbstate_t_69 ____state_74;// L0 +typedef struct ____anonymous_tag_64_65 ____mbstate_t_68;// L82:L94 +struct ____anonymous_tag_69_70 { +____off_t_23 ____pos_71;// L0 +____mbstate_t_68 ____state_72;// L0 }; -typedef struct ____anonymous_tag_70_71 ___G_fpos_t_77;// L21:L25 -struct ____anonymous_tag_78_79 { -____off64_t_24 ____pos_80;// L0 -____mbstate_t_69 ____state_82;// L0 +typedef struct ____anonymous_tag_69_70 ___G_fpos_t_75;// L21:L25 +struct ____anonymous_tag_76_77 { +____off64_t_24 ____pos_78;// L0 +____mbstate_t_68 ____state_79;// L0 }; -typedef struct ____anonymous_tag_78_79 ___G_fpos64_t_85;// L26:L30 -typedef __builtin_va_list ____gnuc_va_list_86;// L40 -typedef void ___IO_lock_t_88;// L150 -struct ___IO_marker_90 { -struct __forward_tag_reference_89 * (___next_91);// L0 -struct __forward_tag_reference_58 * (___sbuf_92);// L0 -int ___pos_93;// L162 +typedef struct ____anonymous_tag_76_77 ___G_fpos64_t_81;// L26:L30 +typedef __builtin_va_list ____gnuc_va_list_82;// L40 +typedef void ___IO_lock_t_84;// L150 +struct ___IO_marker_86 { +struct __forward_tag_reference_85 * (___next_87);// L0 +struct __forward_tag_reference_57 * (___sbuf_88);// L0 +int ___pos_89;// L162 }; -enum ____codecvt_result_98 { -____codecvt_ok_94, -____codecvt_partial_95, -____codecvt_error_96, -____codecvt_noconv_97, +enum ____codecvt_result_94 { +____codecvt_ok_90, +____codecvt_partial_91, +____codecvt_error_92, +____codecvt_noconv_93, }; -struct ___IO_FILE_99 { -int ___flags_100;// L242 -char * (___IO_read_ptr_101);// L247 -char * (___IO_read_end_102);// L248 -char * (___IO_read_base_103);// L249 -char * (___IO_write_base_104);// L250 -char * (___IO_write_ptr_105);// L251 -char * (___IO_write_end_106);// L252 -char * (___IO_buf_base_107);// L253 -char * (___IO_buf_end_108);// L254 -char * (___IO_save_base_109);// L256 -char * (___IO_backup_base_110);// L257 -char * (___IO_save_end_111);// L258 -struct ___IO_marker_90 * (___markers_112);// L260 -struct __forward_tag_reference_58 * (___chain_113);// L0 -int ___fileno_114;// L264 -int ___flags2_115;// L268 -____off_t_23 ___old_offset_116;// L0 -unsigned short ___cur_column_118;// L274 -signed char ___vtable_offset_119;// L275 -char ___shortbuf_120[1];// L276 -___IO_lock_t_88 * (___lock_121);// L0 +struct ___IO_FILE_95 { +int ___flags_96;// L242 +char * (___IO_read_ptr_97);// L247 +char * (___IO_read_end_98);// L248 +char * (___IO_read_base_99);// L249 +char * (___IO_write_base_100);// L250 +char * (___IO_write_ptr_101);// L251 +char * (___IO_write_end_102);// L252 +char * (___IO_buf_base_103);// L253 +char * (___IO_buf_end_104);// L254 +char * (___IO_save_base_105);// L256 +char * (___IO_backup_base_106);// L257 +char * (___IO_save_end_107);// L258 +struct ___IO_marker_86 * (___markers_108);// L260 +struct __forward_tag_reference_57 * (___chain_109);// L0 +int ___fileno_110;// L264 +int ___flags2_111;// L268 +____off_t_23 ___old_offset_112;// L0 +unsigned short ___cur_column_113;// L274 +signed char ___vtable_offset_114;// L275 +char ___shortbuf_115[1];// L276 +___IO_lock_t_84 * (___lock_116);// L0 }; -struct ___IO_FILE_124 { -int ___flags_125;// L242 -char * (___IO_read_ptr_126);// L247 -char * (___IO_read_end_127);// L248 -char * (___IO_read_base_128);// L249 -char * (___IO_write_base_129);// L250 -char * (___IO_write_ptr_130);// L251 -char * (___IO_write_end_131);// L252 -char * (___IO_buf_base_132);// L253 -char * (___IO_buf_end_133);// L254 -char * (___IO_save_base_134);// L256 -char * (___IO_backup_base_135);// L257 -char * (___IO_save_end_136);// L258 -struct ___IO_marker_90 * (___markers_137);// L260 -struct __forward_tag_reference_58 * (___chain_138);// L0 -int ___fileno_139;// L264 -int ___flags2_140;// L268 -____off_t_23 ___old_offset_141;// L0 -unsigned short ___cur_column_143;// L274 -signed char ___vtable_offset_144;// L275 -char ___shortbuf_145[1];// L276 -___IO_lock_t_88 * (___lock_146);// L0 -____off64_t_24 ___offset_148;// L0 -void * (____pad1_150);// L297 -void * (____pad2_151);// L298 -void * (____pad3_152);// L299 -void * (____pad4_153);// L300 -__size_t_1 ____pad5_154;// L0 -int ___mode_155;// L303 -char ___unused2_156[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +struct ___IO_FILE_119 { +int ___flags_120;// L242 +char * (___IO_read_ptr_121);// L247 +char * (___IO_read_end_122);// L248 +char * (___IO_read_base_123);// L249 +char * (___IO_write_base_124);// L250 +char * (___IO_write_ptr_125);// L251 +char * (___IO_write_end_126);// L252 +char * (___IO_buf_base_127);// L253 +char * (___IO_buf_end_128);// L254 +char * (___IO_save_base_129);// L256 +char * (___IO_backup_base_130);// L257 +char * (___IO_save_end_131);// L258 +struct ___IO_marker_86 * (___markers_132);// L260 +struct __forward_tag_reference_57 * (___chain_133);// L0 +int ___fileno_134;// L264 +int ___flags2_135;// L268 +____off_t_23 ___old_offset_136;// L0 +unsigned short ___cur_column_137;// L274 +signed char ___vtable_offset_138;// L275 +char ___shortbuf_139[1];// L276 +___IO_lock_t_84 * (___lock_140);// L0 +____off64_t_24 ___offset_142;// L0 +void * (____pad1_143);// L297 +void * (____pad2_144);// L298 +void * (____pad3_145);// L299 +void * (____pad4_146);// L300 +__size_t_1 ____pad5_147;// L0 +int ___mode_148;// L303 +char ___unused2_149[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -struct ___IO_FILE_complete_157 { -struct ___IO_FILE_99 ___file_158;// L286 -____off64_t_24 ___offset_160;// L0 -void * (____pad1_162);// L297 -void * (____pad2_163);// L298 -void * (____pad3_164);// L299 -void * (____pad4_165);// L300 -__size_t_1 ____pad5_166;// L0 -int ___mode_167;// L303 -char ___unused2_168[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +struct ___IO_FILE_complete_150 { +struct ___IO_FILE_95 ___file_151;// L286 +____off64_t_24 ___offset_153;// L0 +void * (____pad1_154);// L297 +void * (____pad2_155);// L298 +void * (____pad3_156);// L299 +void * (____pad4_157);// L300 +__size_t_1 ____pad5_158;// L0 +int ___mode_159;// L303 +char ___unused2_160[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -typedef struct ___IO_FILE_99 ___IO_FILE_171;// L310 -typedef struct ___IO_FILE_124 ___IO_FILE_172;// L310 -typedef ____ssize_t_49 (____io_read_fn_181) (void * (____cookie_178), char * (____buf_179), __size_t_1 ____nbytes_180);// L333 -typedef ____ssize_t_49 (____io_write_fn_186) (void * (____cookie_183), const char * (____buf_184), __size_t_1 ____n_185);// L341:L342 -typedef int (____io_seek_fn_192) (void * (____cookie_188), ____off64_t_24 * (____pos_189), int ____w_191);// L350 -typedef int (____io_close_fn_195) (void * (____cookie_194));// L353 -typedef ____gnuc_va_list_86 __va_list_279;// L79 -typedef ____off_t_23 __off_t_281;// L90 -typedef ____off64_t_24 __off_t_283;// L92 -typedef ____ssize_t_49 __ssize_t_285;// L102 -typedef ___G_fpos_t_77 __fpos_t_287;// L110 -typedef ___G_fpos64_t_85 __fpos_t_289;// L112 -extern const char * const __sys_errlist_830[];// L27 -typedef long int __ptrdiff_t_1092;// L143:L324 -typedef long unsigned int __size_t_1093;// L177:L209 -typedef int __wchar_t_1094;// L243:L321 -enum ____anonymous_tag_1098_1099 { -__P_ALL_1095, -__P_PID_1096, -__P_PGID_1097, +typedef struct ___IO_FILE_95 ___IO_FILE_163;// L310 +typedef struct ___IO_FILE_119 ___IO_FILE_164;// L310 +typedef ____ssize_t_49 (____io_read_fn_173) (void * (____cookie_170), char * (____buf_171), __size_t_1 ____nbytes_172);// L333 +typedef ____ssize_t_49 (____io_write_fn_177) (void * (____cookie_174), const char * (____buf_175), __size_t_1 ____n_176);// L341:L342 +typedef int (____io_seek_fn_181) (void * (____cookie_178), ____off64_t_24 * (____pos_179), int ____w_180);// L350 +typedef int (____io_close_fn_183) (void * (____cookie_182));// L353 +typedef ____gnuc_va_list_82 __va_list_248;// L79 +typedef ____off_t_23 __off_t_250;// L90 +typedef ____off64_t_24 __off_t_251;// L92 +typedef ____ssize_t_49 __ssize_t_252;// L102 +typedef ___G_fpos_t_75 __fpos_t_253;// L110 +typedef ___G_fpos64_t_81 __fpos_t_255;// L112 +extern const char * const __sys_errlist_756[];// L27 +typedef int __wchar_t_1018;// L243:L321 +enum ____anonymous_tag_1022_1023 { +__P_ALL_1019, +__P_PID_1020, +__P_PGID_1021, }; -typedef enum ____anonymous_tag_1098_1099 __idtype_t_1100;// L50:L55 -typedef unsigned char ____u_char_1101;// L30 -typedef unsigned short int ____u_short_1102;// L31 -typedef unsigned int ____u_int_1103;// L32 -typedef unsigned long int ____u_long_1104;// L33 -typedef signed char ____int8_t_1105;// L36 -typedef unsigned char ____uint8_t_1106;// L37 -typedef signed short int ____int16_t_1107;// L38 -typedef unsigned short int ____uint16_t_1108;// L39 -typedef signed int ____int32_t_1109;// L40 -typedef unsigned int ____uint32_t_1110;// L41 -typedef signed long int ____int64_t_1111;// L43 -typedef unsigned long int ____uint64_t_1112;// L44 -typedef long int ____quad_t_1113;// L52 -typedef unsigned long int ____u_quad_t_1114;// L53 -typedef unsigned long int ____dev_t_1115;// L109:L124 -typedef unsigned int ____uid_t_1116;// L92:L125 -typedef unsigned int ____gid_t_1117;// L92:L126 -typedef unsigned long int ____ino_t_1118;// L94:L127 -typedef unsigned long int ____ino64_t_1119;// L109:L128 -typedef unsigned int ____mode_t_1120;// L92:L129 -typedef unsigned long int ____nlink_t_1121;// L94:L130 -typedef long int ____off_t_1122;// L93:L131 -typedef long int ____off64_t_1123;// L108:L132 -typedef int ____pid_t_1124;// L91:L133 -struct ____anonymous_tag_1125_1126 { -int ____val_1127[2];// L72 +typedef enum ____anonymous_tag_1022_1023 __idtype_t_1024;// L50:L55 +struct ____anonymous_tag_1030_1031 { +unsigned int ____w_termsig_1032 : 7;// L72 +unsigned int ____w_coredump_1033 : 1;// L73 +unsigned int ____w_retcode_1034 : 8;// L74 +unsigned int __anon_id_0_1035 : 16;// L75 }; -typedef struct ____anonymous_tag_1125_1126 ____fsid_t_1128;// L72:L134 -typedef long int ____clock_t_1129;// L93:L135 -typedef unsigned long int ____rlim_t_1130;// L94:L136 -typedef unsigned long int ____rlim64_t_1131;// L109:L137 -typedef unsigned int ____id_t_1132;// L92:L138 -typedef long int ____time_t_1133;// L93:L139 -typedef unsigned int ____useconds_t_1134;// L92:L140 -typedef long int ____suseconds_t_1135;// L93:L141 -typedef int ____daddr_t_1136;// L91:L143 -typedef int ____key_t_1137;// L91:L144 -typedef int ____clockid_t_1138;// L91:L147 -typedef void * (____timer_t_1139);// L70:L150 -typedef long int ____blksize_t_1140;// L93:L153 -typedef long int ____blkcnt_t_1141;// L93:L158 -typedef long int ____blkcnt64_t_1142;// L108:L159 -typedef unsigned long int ____fsblkcnt_t_1143;// L94:L162 -typedef unsigned long int ____fsblkcnt64_t_1144;// L109:L163 -typedef unsigned long int ____fsfilcnt_t_1145;// L94:L166 -typedef unsigned long int ____fsfilcnt64_t_1146;// L109:L167 -typedef long int ____fsword_t_1147;// L93:L170 -typedef long int ____ssize_t_1148;// L110:L172 -typedef long int ____syscall_slong_t_1149;// L93:L175 -typedef unsigned long int ____syscall_ulong_t_1150;// L94:L177 -typedef ____off64_t_1123 ____loff_t_1151;// L181 -typedef ____quad_t_1113 * (____qaddr_t_1153);// L182 -typedef char * (____caddr_t_1154);// L183 -typedef long int ____intptr_t_1155;// L110:L186 -typedef unsigned int ____socklen_t_1156;// L92:L189 -struct ____anonymous_tag_1166_1167 { -unsigned int ____w_termsig_1168 : 7;// L72 -unsigned int ____w_coredump_1169 : 1;// L73 -unsigned int ____w_retcode_1170 : 8;// L74 -unsigned int __anon_id_0_1171 : 16;// L75 +struct ____anonymous_tag_1036_1037 { +unsigned int ____w_stopval_1038 : 8;// L87 +unsigned int ____w_stopsig_1039 : 8;// L88 +unsigned int __anon_id_1_1040 : 16;// L89 }; -struct ____anonymous_tag_1172_1173 { -unsigned int ____w_stopval_1174 : 8;// L87 -unsigned int ____w_stopsig_1175 : 8;// L88 -unsigned int __anon_id_1_1176 : 16;// L89 +union __wait_1041 { +int __w_status_1042;// L68 +struct ____anonymous_tag_1030_1031 ____wait_terminated_1043;// L69 +struct ____anonymous_tag_1036_1037 ____wait_stopped_1044;// L84 }; -union __wait_1177 { -int __w_status_1178;// L68 -struct ____anonymous_tag_1166_1167 ____wait_terminated_1179;// L69 -struct ____anonymous_tag_1172_1173 ____wait_stopped_1180;// L84 +union ____anonymous_tag_1045_1046 { +union __wait_1041 * (____uptr_1047);// L69 +int * (____iptr_1048);// L70 }; -union ____anonymous_tag_1181_1182 { -union __wait_1177 * (____uptr_1183);// L69 -int * (____iptr_1184);// L70 +typedef union ____anonymous_tag_1045_1046 ____WAIT_STATUS_1049;// L67:L71 +struct ____anonymous_tag_1050_1051 { +int __quot_1052;// L99 +int __rem_1053;// L100 }; -typedef union ____anonymous_tag_1181_1182 ____WAIT_STATUS_1185;// L67:L71 -struct ____anonymous_tag_1186_1187 { -int __quot_1188;// L99 -int __rem_1189;// L100 +typedef struct ____anonymous_tag_1050_1051 __div_t_1054;// L97:L101 +struct ____anonymous_tag_1055_1056 { +long int __quot_1057;// L107 +long int __rem_1058;// L108 }; -typedef struct ____anonymous_tag_1186_1187 __div_t_1190;// L97:L101 -struct ____anonymous_tag_1191_1192 { -long int __quot_1193;// L107 -long int __rem_1194;// L108 +typedef struct ____anonymous_tag_1055_1056 __ldiv_t_1059;// L105:L109 +struct ____anonymous_tag_1060_1061 { +long long int __quot_1062;// L119 +long long int __rem_1063;// L120 }; -typedef struct ____anonymous_tag_1191_1192 __ldiv_t_1195;// L105:L109 -struct ____anonymous_tag_1196_1197 { -long long int __quot_1198;// L119 -long long int __rem_1199;// L120 +typedef struct ____anonymous_tag_1060_1061 __lldiv_t_1064;// L117:L121 +typedef ____u_char_2 __u_char_1124;// L33 +typedef ____u_short_3 __u_short_1125;// L34 +typedef ____u_int_4 __u_int_1126;// L35 +typedef ____u_long_5 __u_long_1127;// L36 +typedef ____quad_t_14 __quad_t_1128;// L37 +typedef ____u_quad_t_15 __u_quad_t_1129;// L38 +typedef ____fsid_t_29 __fsid_t_1130;// L39 +typedef ____loff_t_52 __loff_t_1131;// L44 +typedef ____ino64_t_20 __ino_t_1132;// L50 +typedef ____ino_t_19 __ino_t_1133;// L48 +typedef ____dev_t_16 __dev_t_1134;// L60 +typedef ____gid_t_18 __gid_t_1135;// L65 +typedef ____gid_t_18 __gid_t_1136;// L65 +typedef ____mode_t_21 __mode_t_1137;// L70 +typedef ____nlink_t_22 __nlink_t_1138;// L75 +typedef ____uid_t_17 __uid_t_1139;// L80 +typedef ____uid_t_17 __uid_t_1140;// L80 +typedef ____pid_t_25 __pid_t_1141;// L98 +typedef ____id_t_33 __id_t_1142;// L104 +typedef ____daddr_t_37 __daddr_t_1143;// L115 +typedef ____caddr_t_54 __caddr_t_1144;// L116 +typedef ____key_t_38 __key_t_1145;// L122 +typedef ____key_t_38 __key_t_1146;// L122 +typedef ____clock_t_30 __clock_t_1147;// L59 +typedef ____time_t_34 __time_t_1148;// L75 +typedef ____clockid_t_39 __clockid_t_1149;// L91 +typedef ____timer_t_40 __timer_t_1150;// L103 +typedef unsigned long int __ulong_1151;// L150 +typedef unsigned long int __ulong_1152;// L150 +typedef unsigned long int __ulong_1153;// L150 +typedef unsigned short int __ushort_1154;// L151 +typedef unsigned int __uint_1155;// L152 +typedef int __int8_t_1156;// L188:L194 +typedef int __int16_t_1157;// L188:L195 +typedef int __int32_t_1158;// L188:L196 +typedef int __int64_t_1159;// L188:L197 +typedef unsigned int __u_int8_t_1160;// L190:L200 +typedef unsigned int __u_int16_t_1161;// L190:L201 +typedef unsigned int __u_int32_t_1162;// L190:L202 +typedef unsigned int __u_int64_t_1163;// L190:L203 +typedef int __register_t_1164;// L205 +typedef int ____sig_atomic_t_1170;// L22 +struct ____anonymous_tag_1171_1172 { +unsigned long int ____val_1173[( 1024 / ( 8 * sizeof(unsigned long) ) )];// L29 }; -typedef struct ____anonymous_tag_1196_1197 __lldiv_t_1200;// L117:L121 -typedef unsigned char ____u_char_1264;// L30 -typedef unsigned short int ____u_short_1265;// L31 -typedef unsigned int ____u_int_1266;// L32 -typedef unsigned long int ____u_long_1267;// L33 -typedef signed char ____int8_t_1268;// L36 -typedef unsigned char ____uint8_t_1269;// L37 -typedef signed short int ____int16_t_1270;// L38 -typedef unsigned short int ____uint16_t_1271;// L39 -typedef signed int ____int32_t_1272;// L40 -typedef unsigned int ____uint32_t_1273;// L41 -typedef signed long int ____int64_t_1274;// L43 -typedef unsigned long int ____uint64_t_1275;// L44 -typedef long int ____quad_t_1276;// L52 -typedef unsigned long int ____u_quad_t_1277;// L53 -typedef unsigned long int ____dev_t_1278;// L109:L124 -typedef unsigned int ____uid_t_1279;// L92:L125 -typedef unsigned int ____gid_t_1280;// L92:L126 -typedef unsigned long int ____ino_t_1281;// L94:L127 -typedef unsigned long int ____ino64_t_1282;// L109:L128 -typedef unsigned int ____mode_t_1283;// L92:L129 -typedef unsigned long int ____nlink_t_1284;// L94:L130 -typedef long int ____off_t_1285;// L93:L131 -typedef long int ____off64_t_1286;// L108:L132 -typedef int ____pid_t_1287;// L91:L133 -struct ____anonymous_tag_1288_1289 { -int ____val_1290[2];// L72 +typedef struct ____anonymous_tag_1171_1172 ____sigset_t_1174;// L27:L30 +typedef ____sigset_t_1174 __sigset_t_1175;// L37 +struct __timespec_1176 { +____time_t_34 __tv_sec_1177;// L0 +____syscall_slong_t_50 __tv_nsec_1178;// L0 }; -typedef struct ____anonymous_tag_1288_1289 ____fsid_t_1291;// L72:L134 -typedef long int ____clock_t_1292;// L93:L135 -typedef unsigned long int ____rlim_t_1293;// L94:L136 -typedef unsigned long int ____rlim64_t_1294;// L109:L137 -typedef unsigned int ____id_t_1295;// L92:L138 -typedef long int ____time_t_1296;// L93:L139 -typedef unsigned int ____useconds_t_1297;// L92:L140 -typedef long int ____suseconds_t_1298;// L93:L141 -typedef int ____daddr_t_1299;// L91:L143 -typedef int ____key_t_1300;// L91:L144 -typedef int ____clockid_t_1301;// L91:L147 -typedef void * (____timer_t_1302);// L70:L150 -typedef long int ____blksize_t_1303;// L93:L153 -typedef long int ____blkcnt_t_1304;// L93:L158 -typedef long int ____blkcnt64_t_1305;// L108:L159 -typedef unsigned long int ____fsblkcnt_t_1306;// L94:L162 -typedef unsigned long int ____fsblkcnt64_t_1307;// L109:L163 -typedef unsigned long int ____fsfilcnt_t_1308;// L94:L166 -typedef unsigned long int ____fsfilcnt64_t_1309;// L109:L167 -typedef long int ____fsword_t_1310;// L93:L170 -typedef long int ____ssize_t_1311;// L110:L172 -typedef long int ____syscall_slong_t_1312;// L93:L175 -typedef unsigned long int ____syscall_ulong_t_1313;// L94:L177 -typedef ____off64_t_1286 ____loff_t_1314;// L181 -typedef ____quad_t_1276 * (____qaddr_t_1316);// L182 -typedef char * (____caddr_t_1317);// L183 -typedef long int ____intptr_t_1318;// L110:L186 -typedef unsigned int ____socklen_t_1319;// L92:L189 -typedef ____u_char_2 __u_char_1320;// L33 -typedef ____u_char_1101 __u_char_1321;// L33 -typedef ____u_char_1264 __u_char_1322;// L33 -typedef ____u_short_3 __u_short_1323;// L34 -typedef ____u_short_1102 __u_short_1324;// L34 -typedef ____u_short_1265 __u_short_1325;// L34 -typedef ____u_int_4 __u_int_1326;// L35 -typedef ____u_int_1103 __u_int_1327;// L35 -typedef ____u_int_1266 __u_int_1328;// L35 -typedef ____u_long_5 __u_long_1329;// L36 -typedef ____u_long_1104 __u_long_1330;// L36 -typedef ____u_long_1267 __u_long_1331;// L36 -typedef ____quad_t_14 __quad_t_1332;// L37 -typedef ____quad_t_1113 __quad_t_1333;// L37 -typedef ____quad_t_1276 __quad_t_1334;// L37 -typedef ____u_quad_t_15 __u_quad_t_1335;// L38 -typedef ____u_quad_t_1114 __u_quad_t_1336;// L38 -typedef ____u_quad_t_1277 __u_quad_t_1337;// L38 -typedef ____fsid_t_29 __fsid_t_1338;// L39 -typedef ____fsid_t_1128 __fsid_t_1339;// L39 -typedef ____fsid_t_1291 __fsid_t_1340;// L39 -typedef ____loff_t_52 __loff_t_1342;// L44 -typedef ____loff_t_1151 __loff_t_1343;// L44 -typedef ____loff_t_1314 __loff_t_1344;// L44 -typedef ____loff_t_52 __loff_t_1346;// L44 -typedef ____loff_t_1151 __loff_t_1347;// L44 -typedef ____loff_t_1314 __loff_t_1348;// L44 -typedef ____ino64_t_20 __ino_t_1350;// L50 -typedef ____ino64_t_1119 __ino_t_1351;// L50 -typedef ____ino64_t_1282 __ino_t_1352;// L50 -typedef ____ino_t_19 __ino_t_1354;// L48 -typedef ____ino_t_1118 __ino_t_1355;// L48 -typedef ____ino_t_1281 __ino_t_1356;// L48 -typedef ____dev_t_16 __dev_t_1358;// L60 -typedef ____dev_t_1115 __dev_t_1359;// L60 -typedef ____dev_t_1278 __dev_t_1360;// L60 -typedef ____gid_t_18 __gid_t_1362;// L65 -typedef ____gid_t_1117 __gid_t_1363;// L65 -typedef ____gid_t_1280 __gid_t_1364;// L65 -typedef ____gid_t_18 __gid_t_1366;// L65 -typedef ____gid_t_1117 __gid_t_1367;// L65 -typedef ____gid_t_1280 __gid_t_1368;// L65 -typedef ____mode_t_21 __mode_t_1370;// L70 -typedef ____mode_t_1120 __mode_t_1371;// L70 -typedef ____mode_t_1283 __mode_t_1372;// L70 -typedef ____nlink_t_22 __nlink_t_1374;// L75 -typedef ____nlink_t_1121 __nlink_t_1375;// L75 -typedef ____nlink_t_1284 __nlink_t_1376;// L75 -typedef ____uid_t_17 __uid_t_1378;// L80 -typedef ____uid_t_1116 __uid_t_1379;// L80 -typedef ____uid_t_1279 __uid_t_1380;// L80 -typedef ____uid_t_17 __uid_t_1382;// L80 -typedef ____uid_t_1116 __uid_t_1383;// L80 -typedef ____uid_t_1279 __uid_t_1384;// L80 -typedef ____off64_t_1123 __off_t_1386;// L88 -typedef ____off64_t_1286 __off_t_1387;// L88 -typedef ____off_t_1122 __off_t_1389;// L86 -typedef ____off_t_1285 __off_t_1390;// L86 -typedef ____pid_t_25 __pid_t_1392;// L98 -typedef ____pid_t_1124 __pid_t_1393;// L98 -typedef ____pid_t_1287 __pid_t_1394;// L98 -typedef ____pid_t_1124 __pid_t_1396;// L98 -typedef ____pid_t_1287 __pid_t_1397;// L98 -typedef ____id_t_33 __id_t_1399;// L104 -typedef ____id_t_1132 __id_t_1400;// L104 -typedef ____id_t_1295 __id_t_1401;// L104 -typedef ____ssize_t_1148 __ssize_t_1403;// L109 -typedef ____ssize_t_1311 __ssize_t_1404;// L109 -typedef ____daddr_t_37 __daddr_t_1406;// L115 -typedef ____daddr_t_1136 __daddr_t_1407;// L115 -typedef ____daddr_t_1299 __daddr_t_1408;// L115 -typedef ____caddr_t_55 __caddr_t_1410;// L116 -typedef ____caddr_t_1154 __caddr_t_1411;// L116 -typedef ____caddr_t_1317 __caddr_t_1412;// L116 -typedef ____key_t_38 __key_t_1413;// L122 -typedef ____key_t_1137 __key_t_1414;// L122 -typedef ____key_t_1300 __key_t_1415;// L122 -typedef ____key_t_38 __key_t_1417;// L122 -typedef ____key_t_1137 __key_t_1418;// L122 -typedef ____key_t_1300 __key_t_1419;// L122 -typedef ____clock_t_30 __clock_t_1421;// L59 -typedef ____clock_t_1129 __clock_t_1422;// L59 -typedef ____clock_t_1292 __clock_t_1423;// L59 -typedef ____time_t_34 __time_t_1425;// L75 -typedef ____time_t_1133 __time_t_1426;// L75 -typedef ____time_t_1296 __time_t_1427;// L75 -typedef ____clockid_t_39 __clockid_t_1429;// L91 -typedef ____clockid_t_1138 __clockid_t_1430;// L91 -typedef ____clockid_t_1301 __clockid_t_1431;// L91 -typedef ____timer_t_40 __timer_t_1433;// L103 -typedef ____timer_t_1139 __timer_t_1434;// L103 -typedef ____timer_t_1302 __timer_t_1435;// L103 -typedef unsigned long int __ulong_1437;// L150 -typedef unsigned long int __ulong_1438;// L150 -typedef unsigned long int __ulong_1439;// L150 -typedef unsigned short int __ushort_1440;// L151 -typedef unsigned int __uint_1441;// L152 -typedef int __int8_t_1442;// L188:L194 -typedef int __int16_t_1443;// L188:L195 -typedef int __int32_t_1444;// L188:L196 -typedef int __int64_t_1445;// L188:L197 -typedef unsigned int __u_int8_t_1446;// L190:L200 -typedef unsigned int __u_int16_t_1447;// L190:L201 -typedef unsigned int __u_int32_t_1448;// L190:L202 -typedef unsigned int __u_int64_t_1449;// L190:L203 -typedef int __register_t_1450;// L205 -typedef int ____sig_atomic_t_1460;// L22 -struct ____anonymous_tag_1461_1462 { -unsigned long int ____val_1463[( 1024 / ( 8 * sizeof(unsigned long) ) )];// L29 +struct __timeval_1179 { +____time_t_34 __tv_sec_1180;// L0 +____suseconds_t_36 __tv_usec_1181;// L0 }; -typedef struct ____anonymous_tag_1461_1462 ____sigset_t_1464;// L27:L30 -typedef ____sigset_t_1464 __sigset_t_1465;// L37 -struct __timespec_1466 { -____time_t_34 __tv_sec_1467;// L0 -____time_t_1133 __tv_sec_1468;// L0 -____time_t_1296 __tv_sec_1469;// L0 -____syscall_slong_t_50 __tv_nsec_1471;// L0 -____syscall_slong_t_1149 __tv_nsec_1472;// L0 -____syscall_slong_t_1312 __tv_nsec_1473;// L0 +typedef ____suseconds_t_36 __suseconds_t_1182;// L48 +typedef long int ____fd_mask_1183;// L54 +typedef long int ____fd_mask_1184;// L54 +struct ____anonymous_tag_1185_1186 { +____fd_mask_1183 ____fds_bits_1187[1024 / ( 8 * ( int ) sizeof(long) )];// L0 +____fd_mask_1184 ____fds_bits_1188[1024 / ( 8 * ( int ) sizeof(long) )];// L0 }; -struct __timeval_1476 { -____time_t_34 __tv_sec_1477;// L0 -____time_t_1133 __tv_sec_1478;// L0 -____time_t_1296 __tv_sec_1479;// L0 -____suseconds_t_36 __tv_usec_1481;// L0 -____suseconds_t_1135 __tv_usec_1482;// L0 -____suseconds_t_1298 __tv_usec_1483;// L0 +typedef struct ____anonymous_tag_1185_1186 __fd_set_1189;// L64:L75 +typedef ____fd_mask_1183 __fd_mask_1190;// L82 +typedef ____fd_mask_1184 __fd_mask_1191;// L82 +typedef ____blksize_t_41 __blksize_t_1227;// L228 +typedef ____blkcnt_t_42 __blkcnt_t_1228;// L235 +typedef ____fsblkcnt_t_44 __fsblkcnt_t_1229;// L239 +typedef ____blkcnt64_t_43 __blkcnt_t_1230;// L248 +typedef ____fsblkcnt64_t_45 __fsblkcnt_t_1231;// L252 +typedef ____fsfilcnt_t_46 __fsfilcnt_t_1232;// L243 +typedef ____fsfilcnt64_t_47 __fsfilcnt_t_1233;// L256 +typedef unsigned long int __pthread_t_1234;// L60 +union __pthread_attr_t_1235 { +char ____size_1236[56];// L65 +long int ____align_1237;// L66 }; -typedef ____suseconds_t_36 __suseconds_t_1486;// L48 -typedef ____suseconds_t_1135 __suseconds_t_1487;// L48 -typedef ____suseconds_t_1298 __suseconds_t_1488;// L48 -typedef long int ____fd_mask_1490;// L54 -typedef long int ____fd_mask_1491;// L54 -struct ____anonymous_tag_1492_1493 { -____fd_mask_1490 ____fds_bits_1494[1024 / ( 8 * ( int ) sizeof(long) )];// L0 -____fd_mask_1491 ____fds_bits_1496[1024 / ( 8 * ( int ) sizeof(long) )];// L0 +typedef union __pthread_attr_t_1235 __pthread_attr_t_1238;// L69 +struct ____pthread_internal_list_1240 { +struct __forward_tag_reference_1239 * (____prev_1241);// L0 +struct __forward_tag_reference_1239 * (____next_1242);// L0 }; -typedef struct ____anonymous_tag_1492_1493 __fd_set_1499;// L64:L75 -typedef ____fd_mask_1490 __fd_mask_1500;// L82 -typedef ____fd_mask_1491 __fd_mask_1501;// L82 -typedef ____blksize_t_41 __blksize_t_1549;// L228 -typedef ____blksize_t_1140 __blksize_t_1550;// L228 -typedef ____blksize_t_1303 __blksize_t_1551;// L228 -typedef ____blkcnt_t_42 __blkcnt_t_1553;// L235 -typedef ____blkcnt_t_1141 __blkcnt_t_1554;// L235 -typedef ____blkcnt_t_1304 __blkcnt_t_1555;// L235 -typedef ____fsblkcnt_t_44 __fsblkcnt_t_1557;// L239 -typedef ____fsblkcnt_t_1143 __fsblkcnt_t_1558;// L239 -typedef ____fsblkcnt_t_1306 __fsblkcnt_t_1559;// L239 -typedef ____blkcnt64_t_43 __blkcnt_t_1561;// L248 -typedef ____blkcnt64_t_1142 __blkcnt_t_1562;// L248 -typedef ____blkcnt64_t_1305 __blkcnt_t_1563;// L248 -typedef ____fsblkcnt64_t_45 __fsblkcnt_t_1565;// L252 -typedef ____fsblkcnt64_t_1144 __fsblkcnt_t_1566;// L252 -typedef ____fsblkcnt64_t_1307 __fsblkcnt_t_1567;// L252 -typedef ____fsfilcnt_t_46 __fsfilcnt_t_1569;// L243 -typedef ____fsfilcnt_t_1145 __fsfilcnt_t_1570;// L243 -typedef ____fsfilcnt_t_1308 __fsfilcnt_t_1571;// L243 -typedef ____fsfilcnt64_t_47 __fsfilcnt_t_1573;// L256 -typedef ____fsfilcnt64_t_1146 __fsfilcnt_t_1574;// L256 -typedef ____fsfilcnt64_t_1309 __fsfilcnt_t_1575;// L256 -typedef unsigned long int __pthread_t_1577;// L60 -union __pthread_attr_t_1578 { -char ____size_1579[56];// L65 -long int ____align_1580;// L66 +typedef struct ____pthread_internal_list_1240 ____pthread_list_t_1243;// L75:L79 +typedef struct ____pthread_internal_list_1240 ____pthread_list_t_1244;// L75:L79 +struct ____pthread_mutex_s_1245 { +int ____lock_1246;// L94 +unsigned int ____count_1247;// L95 +int ____owner_1248;// L96 +unsigned int ____nusers_1249;// L98 +int ____kind_1250;// L102 +short ____spins_1251;// L104 +short ____elision_1252;// L105 +____pthread_list_t_1243 ____list_1253;// L0 +____pthread_list_t_1244 ____list_1254;// L0 }; -typedef union __pthread_attr_t_1578 __pthread_attr_t_1581;// L69 -struct ____pthread_internal_list_1583 { -struct __forward_tag_reference_1582 * (____prev_1584);// L0 -struct __forward_tag_reference_1582 * (____next_1585);// L0 +union ____anonymous_tag_1255_1256 { +struct ____pthread_mutex_s_1245 ____data_1257;// L92 +char ____size_1258[40];// L126 +long int ____align_1259;// L127 }; -typedef struct ____pthread_internal_list_1583 ____pthread_list_t_1586;// L75:L79 -typedef struct ____pthread_internal_list_1583 ____pthread_list_t_1587;// L75:L79 -struct ____pthread_mutex_s_1588 { -int ____lock_1589;// L94 -unsigned int ____count_1590;// L95 -int ____owner_1591;// L96 -unsigned int ____nusers_1592;// L98 -int ____kind_1593;// L102 -short ____spins_1594;// L104 -short ____elision_1595;// L105 -____pthread_list_t_1586 ____list_1596;// L0 -____pthread_list_t_1587 ____list_1597;// L0 +typedef union ____anonymous_tag_1255_1256 __pthread_mutex_t_1260;// L90:L128 +union ____anonymous_tag_1261_1262 { +char ____size_1263[4];// L132 +int ____align_1264;// L133 }; -union ____anonymous_tag_1598_1599 { -struct ____pthread_mutex_s_1588 ____data_1600;// L92 -char ____size_1601[40];// L126 -long int ____align_1602;// L127 -}; -typedef union ____anonymous_tag_1598_1599 __pthread_mutex_t_1603;// L90:L128 -union ____anonymous_tag_1604_1605 { -char ____size_1606[4];// L132 -int ____align_1607;// L133 -}; -typedef union ____anonymous_tag_1604_1605 __pthread_mutexattr_t_1608;// L130:L134 -typedef int (* (____compar_fn_t_1740)) (const void *, const void *);// L741 -static const char __request_GET_2036[]= "GET";// L10 +typedef union ____anonymous_tag_1261_1262 __pthread_mutexattr_t_1265;// L130:L134 +typedef int (* (____compar_fn_t_1374)) (const void *, const void *);// L741 +static const char __request_GET_1600[]= "GET";// L10 -struct __forward_tag_reference_89 { // generated union of struct variations +struct __forward_tag_reference_57 { // generated union of struct variations union { -struct ___IO_marker_90 ___IO_marker_90; +struct ___IO_FILE_95 ___IO_FILE_95; +struct ___IO_FILE_119 ___IO_FILE_119; }; }; -struct __forward_tag_reference_1582 { // generated union of struct variations +struct __forward_tag_reference_85 { // generated union of struct variations union { +struct ___IO_marker_86 ___IO_marker_86; }; }; -struct __forward_tag_reference_58 { // generated union of struct variations +struct __forward_tag_reference_1239 { // generated union of struct variations union { -struct ___IO_FILE_99 ___IO_FILE_99; -struct ___IO_FILE_124 ___IO_FILE_124; }; }; -struct __forward_tag_reference_87 { // generated union of struct variations +struct __forward_tag_reference_83 { // generated union of struct variations union { }; }; -struct __forward_tag_reference_174 { // generated union of struct variations +struct __forward_tag_reference_166 { // generated union of struct variations union { }; }; @@ -2063,225 +1386,225 @@ union { // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_58 ;// L0 +struct __forward_tag_reference_57 ;// L0 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_87 ;// L0 -struct __forward_tag_reference_87 ;// L0 -struct __forward_tag_reference_58 ;// L0 +struct __forward_tag_reference_83 ;// L0 +struct __forward_tag_reference_83 ;// L0 +struct __forward_tag_reference_57 ;// L0 // typedef moved to top of scope -struct ___IO_marker_90 ;// L156 -enum ____codecvt_result_98 ;// L176 -struct ___IO_FILE_99 ;// L241 +struct ___IO_marker_86 ;// L156 +enum ____codecvt_result_94 ;// L176 +struct ___IO_FILE_95 ;// L241 -struct ___IO_FILE_124 ;// L241 -struct ___IO_FILE_complete_157 ;// L241 +struct ___IO_FILE_119 ;// L241 +struct ___IO_FILE_complete_150 ;// L241 // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_174 ;// L0 -extern struct __forward_tag_reference_174 ___IO_2_1_stdin__175;// L315 -extern struct __forward_tag_reference_174 ___IO_2_1_stdout__176;// L316 -extern struct __forward_tag_reference_174 ___IO_2_1_stderr__177;// L317 +struct __forward_tag_reference_166 ;// L0 +extern struct __forward_tag_reference_166 ___IO_2_1_stdin__167;// L315 +extern struct __forward_tag_reference_166 ___IO_2_1_stdout__168;// L316 +extern struct __forward_tag_reference_166 ___IO_2_1_stderr__169;// L317 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern int (____underflow_196) (___IO_FILE_171 *);// L385 -extern int (____underflow_197) (___IO_FILE_172 *);// L385 -extern int (____uflow_199) (___IO_FILE_171 *);// L386 -extern int (____uflow_200) (___IO_FILE_172 *);// L386 -extern int (____overflow_202) (___IO_FILE_171 *, int );// L387 -extern int (____overflow_203) (___IO_FILE_172 *, int );// L387 -extern int (___IO_getc_208) (___IO_FILE_171 * (____fp_205));// L429 -extern int (___IO_getc_209) (___IO_FILE_172 * (____fp_206));// L429 -extern int (___IO_putc_215) (int ____c_211, ___IO_FILE_171 * (____fp_212));// L430 -extern int (___IO_putc_216) (int ____c_211, ___IO_FILE_172 * (____fp_213));// L430 -extern int (___IO_feof_221) (___IO_FILE_171 * (____fp_218));// L431 -extern int (___IO_feof_222) (___IO_FILE_172 * (____fp_219));// L431 -extern int (___IO_ferror_227) (___IO_FILE_171 * (____fp_224));// L432 -extern int (___IO_ferror_228) (___IO_FILE_172 * (____fp_225));// L432 -extern int (___IO_peekc_locked_233) (___IO_FILE_171 * (____fp_230));// L434 -extern int (___IO_peekc_locked_234) (___IO_FILE_172 * (____fp_231));// L434 -extern void (___IO_flockfile_236) (___IO_FILE_171 *);// L440 -extern void (___IO_flockfile_237) (___IO_FILE_172 *);// L440 -extern void (___IO_funlockfile_239) (___IO_FILE_171 *);// L441 -extern void (___IO_funlockfile_240) (___IO_FILE_172 *);// L441 -extern int (___IO_ftrylockfile_242) (___IO_FILE_171 *);// L442 -extern int (___IO_ftrylockfile_243) (___IO_FILE_172 *);// L442 -extern int (___IO_vfscanf_245) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_247) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_251) (___IO_FILE_171 * __restrict , const char * __restrict , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_252) (___IO_FILE_172 * __restrict , const char * __restrict , int * __restrict );// L459:L460 -extern int (___IO_vfprintf_254) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 -extern int (___IO_vfprintf_256) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 -extern int (___IO_vfprintf_260) ();// L461:L462 -extern ____ssize_t_49 (___IO_padn_261) (___IO_FILE_171 *, int , ____ssize_t_49 );// L463 -extern ____ssize_t_49 (___IO_padn_262) (___IO_FILE_172 *, int , ____ssize_t_49 );// L463 -extern __size_t_1 (___IO_sgetn_265) (___IO_FILE_171 *, void *, __size_t_1 );// L464 -extern __size_t_1 (___IO_sgetn_266) (___IO_FILE_172 *, void *, __size_t_1 );// L464 -extern ____off64_t_24 (___IO_seekoff_268) (___IO_FILE_171 *, ____off64_t_24 , int , int );// L466 -extern ____off64_t_24 (___IO_seekoff_269) (___IO_FILE_172 *, ____off64_t_24 , int , int );// L466 -extern ____off64_t_24 (___IO_seekpos_272) (___IO_FILE_171 *, ____off64_t_24 , int );// L467 -extern ____off64_t_24 (___IO_seekpos_273) (___IO_FILE_172 *, ____off64_t_24 , int );// L467 -extern void (___IO_free_backup_area_276) (___IO_FILE_171 *);// L469 -extern void (___IO_free_backup_area_277) (___IO_FILE_172 *);// L469 +extern int (____underflow_184) (___IO_FILE_163 *);// L385 +extern int (____underflow_185) (___IO_FILE_164 *);// L385 +extern int (____uflow_186) (___IO_FILE_163 *);// L386 +extern int (____uflow_187) (___IO_FILE_164 *);// L386 +extern int (____overflow_188) (___IO_FILE_163 *, int );// L387 +extern int (____overflow_189) (___IO_FILE_164 *, int );// L387 +extern int (___IO_getc_193) (___IO_FILE_163 * (____fp_190));// L429 +extern int (___IO_getc_194) (___IO_FILE_164 * (____fp_191));// L429 +extern int (___IO_putc_199) (int ____c_195, ___IO_FILE_163 * (____fp_196));// L430 +extern int (___IO_putc_200) (int ____c_195, ___IO_FILE_164 * (____fp_197));// L430 +extern int (___IO_feof_204) (___IO_FILE_163 * (____fp_201));// L431 +extern int (___IO_feof_205) (___IO_FILE_164 * (____fp_202));// L431 +extern int (___IO_ferror_209) (___IO_FILE_163 * (____fp_206));// L432 +extern int (___IO_ferror_210) (___IO_FILE_164 * (____fp_207));// L432 +extern int (___IO_peekc_locked_214) (___IO_FILE_163 * (____fp_211));// L434 +extern int (___IO_peekc_locked_215) (___IO_FILE_164 * (____fp_212));// L434 +extern void (___IO_flockfile_216) (___IO_FILE_163 *);// L440 +extern void (___IO_flockfile_217) (___IO_FILE_164 *);// L440 +extern void (___IO_funlockfile_218) (___IO_FILE_163 *);// L441 +extern void (___IO_funlockfile_219) (___IO_FILE_164 *);// L441 +extern int (___IO_ftrylockfile_220) (___IO_FILE_163 *);// L442 +extern int (___IO_ftrylockfile_221) (___IO_FILE_164 *);// L442 +extern int (___IO_vfscanf_222) (___IO_FILE_163 * __restrict , const char * __restrict , ____gnuc_va_list_82 , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_224) (___IO_FILE_164 * __restrict , const char * __restrict , ____gnuc_va_list_82 , int * __restrict );// L459:L460 + + +extern int (___IO_vfprintf_231) (___IO_FILE_163 * __restrict , const char * __restrict , ____gnuc_va_list_82 );// L461:L462 +extern int (___IO_vfprintf_233) (___IO_FILE_164 * __restrict , const char * __restrict , ____gnuc_va_list_82 );// L461:L462 + +extern ____ssize_t_49 (___IO_padn_238) (___IO_FILE_163 *, int , ____ssize_t_49 );// L463 +extern ____ssize_t_49 (___IO_padn_239) (___IO_FILE_164 *, int , ____ssize_t_49 );// L463 +extern __size_t_1 (___IO_sgetn_240) (___IO_FILE_163 *, void *, __size_t_1 );// L464 +extern __size_t_1 (___IO_sgetn_241) (___IO_FILE_164 *, void *, __size_t_1 );// L464 +extern ____off64_t_24 (___IO_seekoff_242) (___IO_FILE_163 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekoff_243) (___IO_FILE_164 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekpos_244) (___IO_FILE_163 *, ____off64_t_24 , int );// L467 +extern ____off64_t_24 (___IO_seekpos_245) (___IO_FILE_164 *, ____off64_t_24 , int );// L467 +extern void (___IO_free_backup_area_246) (___IO_FILE_163 *);// L469 +extern void (___IO_free_backup_area_247) (___IO_FILE_164 *);// L469 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern struct ___IO_FILE_99 * (__stdin_291);// L168 -extern struct ___IO_FILE_124 * (__stdin_292);// L168 -extern struct ___IO_FILE_99 * (__stdout_294);// L169 -extern struct ___IO_FILE_124 * (__stdout_295);// L169 -extern struct ___IO_FILE_99 * (__stderr_297);// L170 -extern struct ___IO_FILE_124 * (__stderr_298);// L170 -extern int (__remove_301) (const char * (____filename_300));// L178 -extern int (__rename_304) (const char * (____old_302), const char * (____new_303));// L180 -extern int (__renameat_309) (int ____oldfd_305, const char * (____old_306), int ____newfd_307, const char * (____new_308));// L185:L186 -extern __FILE_59 * ((__tmpfile_310) (void ));// L195 -extern __FILE_59 * ((__tmpfile_316) (void ));// L198 -extern __FILE_59 * ((__tmpfile_314) (void ));// L195 -extern __FILE_59 * ((__tmpfile_312) (void ));// L198 -extern char * ((__tmpnam_319) (char * (____s_318)));// L209 -extern char * ((__tmpnam_320) (char * (____s_318)));// L209 -extern char * ((__tmpnam_r_322) (char * (____s_321)));// L215 -extern char * ((__tmpnam_r_323) (char * (____s_321)));// L215 -extern char * ((__tempnam_326) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 -extern char * ((__tempnam_327) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 -extern int (__fclose_330) (__FILE_59 * (____stream_328));// L237 -extern int (__fclose_332) (__FILE_59 * (____stream_328));// L237 -extern int (__fflush_336) (__FILE_59 * (____stream_334));// L242 -extern int (__fflush_unlocked_340) (__FILE_59 * (____stream_338));// L252 -extern __FILE_59 * ((__fopen_344) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 -extern __FILE_59 * ((__fopen_346) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 -extern __FILE_59 * ((__fopen_354) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 -extern __FILE_59 * ((__fopen_356) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 -extern __FILE_59 * ((__freopen_362) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 -extern __FILE_59 * ((__freopen_368) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 -extern __FILE_59 * ((__freopen_366) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 -extern __FILE_59 * ((__freopen_364) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 -extern __FILE_59 * ((__fdopen_372) (int ____fd_370, const char * (____modes_371)));// L306 -extern __FILE_59 * ((__fdopen_374) (int ____fd_370, const char * (____modes_371)));// L306 -extern __FILE_59 * ((__fmemopen_379) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 -extern __FILE_59 * ((__fmemopen_381) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 -extern __FILE_59 * ((__open_memstream_385) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 -extern __FILE_59 * ((__open_memstream_387) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 -extern void (__setbuf_392) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 -extern void (__setbuf_394) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 -extern int (__setvbuf_401) (__FILE_59 * __restrict ____stream_396, char * __restrict ____buf_398, int ____modes_399, __size_t_1 ____n_400);// L336:L337 -extern void (__setbuffer_407) (__FILE_59 * __restrict ____stream_403, char * __restrict ____buf_405, __size_t_1 ____size_406);// L343:L344 -extern void (__setlinebuf_411) (__FILE_59 * (____stream_409));// L347 -extern int (__fprintf_416) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 -extern int (__fprintf_418) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 -extern int (__printf_421) (const char * __restrict ____format_420, ... );// L362 -extern int (__sprintf_424) (char * __restrict ____s_422, const char * __restrict ____format_423, ... );// L364:L365 -extern int (__vfprintf_430) (__FILE_59 * __restrict ____s_425, const char * __restrict ____format_427, ____gnuc_va_list_86 ____arg_428);// L371:L372 -extern int (__vprintf_437) (const char * __restrict ____format_434, ____gnuc_va_list_86 ____arg_435);// L377 -extern int (__vsprintf_443) (char * __restrict ____s_439, const char * __restrict ____format_440, ____gnuc_va_list_86 ____arg_441);// L379:L380 -extern int (__snprintf_448) (char * __restrict ____s_445, __size_t_1 ____maxlen_446, const char * __restrict ____format_447, ... );// L386:L388 -extern int (__vsnprintf_454) (char * __restrict ____s_449, __size_t_1 ____maxlen_450, const char * __restrict ____format_451, ____gnuc_va_list_86 ____arg_452);// L390:L392 -extern int (__vdprintf_460) (int ____fd_456, const char * __restrict ____fmt_457, ____gnuc_va_list_86 ____arg_458);// L412:L414 -extern int (__dprintf_464) (int ____fd_462, const char * __restrict ____fmt_463, ... );// L415:L416 -extern int (__fscanf_468) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__fscanf_470) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__fscanf_472) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__fscanf_474) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__scanf_477) (const char * __restrict ____format_476, ... );// L431 -extern int (__scanf_478) (const char * __restrict ____format_476, ... );// L431 -extern int (__sscanf_481) (const char * __restrict ____s_479, const char * __restrict ____format_480, ... );// L433:L434 - - - - - - - -extern int (__vfscanf_509) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 -extern int (__vfscanf_513) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 -extern int (__vscanf_520) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 -extern int (__vscanf_522) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 -extern int (__vsscanf_528) (const char * __restrict ____s_524, const char * __restrict ____format_525, ____gnuc_va_list_86 ____arg_526);// L483:L485 - - - - - -extern int (__fgetc_563) (__FILE_59 * (____stream_561));// L531 -extern int (__getc_567) (__FILE_59 * (____stream_565));// L532 -extern int (__getchar_569) (void );// L538 -extern int (__getc_unlocked_572) (__FILE_59 * (____stream_570));// L550 -extern int (__getchar_unlocked_574) (void );// L551 -extern int (__fgetc_unlocked_577) (__FILE_59 * (____stream_575));// L561 -extern int (__fputc_582) (int ____c_579, __FILE_59 * (____stream_580));// L573 -extern int (__fputc_584) (int ____c_579, __FILE_59 * (____stream_580));// L573 -extern int (__putc_589) (int ____c_586, __FILE_59 * (____stream_587));// L574 -extern int (__putchar_592) (int ____c_591);// L580 -extern int (__fputc_unlocked_596) (int ____c_593, __FILE_59 * (____stream_594));// L594 -extern int (__putc_unlocked_601) (int ____c_598, __FILE_59 * (____stream_599));// L602 -extern int (__putchar_unlocked_604) (int ____c_603);// L603 -extern int (__getw_607) (__FILE_59 * (____stream_605));// L610 -extern int (__putw_612) (int ____w_609, __FILE_59 * (____stream_610));// L613 -extern char * ((__fgets_618) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern char * ((__fgets_620) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern char * ((__fgets_622) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern char * ((__fgets_624) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern ____ssize_t_49 (____getdelim_631) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 -extern ____ssize_t_49 (____getdelim_635) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 -extern ____ssize_t_49 (__getdelim_644) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 -extern ____ssize_t_49 (__getdelim_648) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 -extern ____ssize_t_49 (__getline_656) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 -extern ____ssize_t_49 (__getline_660) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 -extern int (__fputs_667) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 -extern int (__fputs_669) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 -extern int (__puts_672) (const char * (____s_671));// L695 -extern int (__ungetc_676) (int ____c_673, __FILE_59 * (____stream_674));// L702 -extern int (__fseek_714) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 -extern int (__fseek_716) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 -extern long int (__ftell_720) (__FILE_59 * (____stream_718));// L754 -extern long int (__ftell_722) (__FILE_59 * (____stream_718));// L754 -extern void (__rewind_726) (__FILE_59 * (____stream_724));// L759 -extern int (__fseeko_733) (__FILE_59 * (____stream_728), ____off_t_23 ____off_730, int ____whence_732);// L773 -extern int (__fseeko_744) (__FILE_59 * (____stream_739), ____off64_t_24 ____off_741, int ____whence_743);// L781:L783 -extern ____off_t_23 (__ftello_758) (__FILE_59 * (____stream_737));// L778 -extern ____off_t_23 (__ftello_750) (__FILE_59 * (____stream_737));// L778 -extern int (__fgetpos_766) (__FILE_59 * __restrict ____stream_762, __fpos_t_287 * __restrict ____pos_764);// L798 -extern ____off64_t_24 (__ftello_754) (__FILE_59 * (____stream_748));// L784 -extern int (__fgetpos_778) (__FILE_59 * __restrict ____stream_774, __fpos_t_289 * __restrict ____pos_776);// L806:L807 -extern int (__fsetpos_786) (__FILE_59 * (____stream_770), const __fpos_t_287 * (____pos_772));// L803 -extern int (__fsetpos_790) (__FILE_59 * (____stream_782), const __fpos_t_289 * (____pos_784));// L808:L809 -extern void (__clearerr_796) (__FILE_59 * (____stream_794));// L826 -extern int (__feof_800) (__FILE_59 * (____stream_798));// L828 -extern int (__feof_802) (__FILE_59 * (____stream_798));// L828 -extern int (__ferror_806) (__FILE_59 * (____stream_804));// L830 -extern int (__ferror_808) (__FILE_59 * (____stream_804));// L830 -extern void (__clearerr_unlocked_812) (__FILE_59 * (____stream_810));// L835 -extern int (__feof_unlocked_816) (__FILE_59 * (____stream_814));// L836 -extern int (__feof_unlocked_818) (__FILE_59 * (____stream_814));// L836 -extern int (__ferror_unlocked_822) (__FILE_59 * (____stream_820));// L837 -extern int (__ferror_unlocked_824) (__FILE_59 * (____stream_820));// L837 -extern void (__perror_827) (const char * (____s_826));// L846 -extern void (__perror_828) (const char * (____s_826));// L846 -extern int __sys_nerr_829;// L26 - -extern int (__fileno_835) (__FILE_59 * (____stream_831));// L858 -extern int (__fileno_833) (__FILE_59 * (____stream_831));// L858 -extern int (__fileno_unlocked_841) (__FILE_59 * (____stream_837));// L863 -extern int (__fileno_unlocked_839) (__FILE_59 * (____stream_837));// L863 -extern __FILE_59 * ((__popen_845) (const char * (____command_843), const char * (____modes_844)));// L872 -extern __FILE_59 * ((__popen_847) (const char * (____command_843), const char * (____modes_844)));// L872 -extern int (__pclose_851) (__FILE_59 * (____stream_849));// L878 -extern char * ((__ctermid_854) (char * (____s_853)));// L884 -extern void (__flockfile_857) (__FILE_59 * (____stream_855));// L912 -extern int (__ftrylockfile_861) (__FILE_59 * (____stream_859));// L916 -extern int (__ftrylockfile_863) (__FILE_59 * (____stream_859));// L916 -extern void (__funlockfile_867) (__FILE_59 * (____stream_865));// L919 +extern struct ___IO_FILE_95 * (__stdin_257);// L168 +extern struct ___IO_FILE_119 * (__stdin_258);// L168 +extern struct ___IO_FILE_95 * (__stdout_259);// L169 +extern struct ___IO_FILE_119 * (__stdout_260);// L169 +extern struct ___IO_FILE_95 * (__stderr_261);// L170 +extern struct ___IO_FILE_119 * (__stderr_262);// L170 +extern int (__remove_264) (const char * (____filename_263));// L178 +extern int (__rename_267) (const char * (____old_265), const char * (____new_266));// L180 +extern int (__renameat_272) (int ____oldfd_268, const char * (____old_269), int ____newfd_270, const char * (____new_271));// L185:L186 +extern __FILE_58 * ((__tmpfile_273) (void ));// L195 +extern __FILE_58 * ((__tmpfile_279) (void ));// L198 +extern __FILE_58 * ((__tmpfile_277) (void ));// L198 +extern __FILE_58 * ((__tmpfile_275) (void ));// L195 +extern char * ((__tmpnam_282) (char * (____s_281)));// L209 +extern char * ((__tmpnam_283) (char * (____s_281)));// L209 +extern char * ((__tmpnam_r_285) (char * (____s_284)));// L215 +extern char * ((__tmpnam_r_286) (char * (____s_284)));// L215 +extern char * ((__tempnam_289) (const char * (____dir_287), const char * (____pfx_288)));// L227:L228 +extern char * ((__tempnam_290) (const char * (____dir_287), const char * (____pfx_288)));// L227:L228 +extern int (__fclose_293) (__FILE_58 * (____stream_291));// L237 +extern int (__fclose_295) (__FILE_58 * (____stream_291));// L237 +extern int (__fflush_299) (__FILE_58 * (____stream_297));// L242 +extern int (__fflush_unlocked_303) (__FILE_58 * (____stream_301));// L252 +extern __FILE_58 * ((__fopen_307) (const char * __restrict ____filename_305, const char * __restrict ____modes_306));// L272:L273 +extern __FILE_58 * ((__fopen_309) (const char * __restrict ____filename_305, const char * __restrict ____modes_306));// L272:L273 +extern __FILE_58 * ((__fopen_317) (const char * __restrict ____filename_315, const char * __restrict ____modes_316));// L283:L285 +extern __FILE_58 * ((__fopen_319) (const char * __restrict ____filename_315, const char * __restrict ____modes_316));// L283:L285 +extern __FILE_58 * ((__freopen_325) (const char * __restrict ____filename_311, const char * __restrict ____modes_312, __FILE_58 * __restrict ____stream_313));// L278:L280 +extern __FILE_58 * ((__freopen_331) (const char * __restrict ____filename_321, const char * __restrict ____modes_322, __FILE_58 * __restrict ____stream_323));// L286:L289 +extern __FILE_58 * ((__freopen_329) (const char * __restrict ____filename_321, const char * __restrict ____modes_322, __FILE_58 * __restrict ____stream_323));// L286:L289 +extern __FILE_58 * ((__freopen_327) (const char * __restrict ____filename_311, const char * __restrict ____modes_312, __FILE_58 * __restrict ____stream_313));// L278:L280 +extern __FILE_58 * ((__fdopen_335) (int ____fd_333, const char * (____modes_334)));// L306 +extern __FILE_58 * ((__fdopen_337) (int ____fd_333, const char * (____modes_334)));// L306 +extern __FILE_58 * ((__fmemopen_342) (void * (____s_339), __size_t_1 ____len_340, const char * (____modes_341)));// L319:L320 +extern __FILE_58 * ((__fmemopen_344) (void * (____s_339), __size_t_1 ____len_340, const char * (____modes_341)));// L319:L320 +extern __FILE_58 * ((__open_memstream_348) (char * (* (____bufloc_346)), __size_t_1 * (____sizeloc_347)));// L325 +extern __FILE_58 * ((__open_memstream_350) (char * (* (____bufloc_346)), __size_t_1 * (____sizeloc_347)));// L325 +extern void (__setbuf_355) (__FILE_58 * __restrict ____stream_352, char * __restrict ____buf_354);// L332 +extern void (__setbuf_357) (__FILE_58 * __restrict ____stream_352, char * __restrict ____buf_354);// L332 +extern int (__setvbuf_364) (__FILE_58 * __restrict ____stream_359, char * __restrict ____buf_361, int ____modes_362, __size_t_1 ____n_363);// L336:L337 +extern void (__setbuffer_369) (__FILE_58 * __restrict ____stream_365, char * __restrict ____buf_367, __size_t_1 ____size_368);// L343:L344 +extern void (__setlinebuf_373) (__FILE_58 * (____stream_371));// L347 +extern int (__fprintf_378) (__FILE_58 * __restrict ____stream_375, const char * __restrict ____format_377, ... );// L356:L357 +extern int (__fprintf_380) (__FILE_58 * __restrict ____stream_375, const char * __restrict ____format_377, ... );// L356:L357 +extern int (__printf_383) (const char * __restrict ____format_382, ... );// L362 +extern int (__sprintf_386) (char * __restrict ____s_384, const char * __restrict ____format_385, ... );// L364:L365 +extern int (__vfprintf_392) (__FILE_58 * __restrict ____s_387, const char * __restrict ____format_389, ____gnuc_va_list_82 ____arg_390);// L371:L372 +extern int (__vprintf_399) (const char * __restrict ____format_396, ____gnuc_va_list_82 ____arg_397);// L377 +extern int (__vsprintf_405) (char * __restrict ____s_401, const char * __restrict ____format_402, ____gnuc_va_list_82 ____arg_403);// L379:L380 +extern int (__snprintf_409) (char * __restrict ____s_406, __size_t_1 ____maxlen_407, const char * __restrict ____format_408, ... );// L386:L388 +extern int (__vsnprintf_415) (char * __restrict ____s_410, __size_t_1 ____maxlen_411, const char * __restrict ____format_412, ____gnuc_va_list_82 ____arg_413);// L390:L392 +extern int (__vdprintf_420) (int ____fd_416, const char * __restrict ____fmt_417, ____gnuc_va_list_82 ____arg_418);// L412:L414 +extern int (__dprintf_424) (int ____fd_422, const char * __restrict ____fmt_423, ... );// L415:L416 +extern int (__fscanf_428) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 +extern int (__fscanf_430) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 +extern int (__fscanf_432) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 +extern int (__fscanf_434) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 +extern int (__scanf_437) (const char * __restrict ____format_436, ... );// L431 +extern int (__scanf_438) (const char * __restrict ____format_436, ... );// L431 +extern int (__sscanf_441) (const char * __restrict ____s_439, const char * __restrict ____format_440, ... );// L433:L434 + + + + + + + +extern int (__vfscanf_468) (__FILE_58 * __restrict ____s_463, const char * __restrict ____format_465, ____gnuc_va_list_82 ____arg_466);// L471:L473 +extern int (__vfscanf_472) (__FILE_58 * __restrict ____s_463, const char * __restrict ____format_465, ____gnuc_va_list_82 ____arg_466);// L471:L473 +extern int (__vscanf_479) (const char * __restrict ____format_476, ____gnuc_va_list_82 ____arg_477);// L479:L480 +extern int (__vscanf_481) (const char * __restrict ____format_476, ____gnuc_va_list_82 ____arg_477);// L479:L480 +extern int (__vsscanf_487) (const char * __restrict ____s_483, const char * __restrict ____format_484, ____gnuc_va_list_82 ____arg_485);// L483:L485 + + + + + +extern int (__fgetc_520) (__FILE_58 * (____stream_518));// L531 +extern int (__getc_523) (__FILE_58 * (____stream_521));// L532 +extern int (__getchar_524) (void );// L538 +extern int (__getc_unlocked_527) (__FILE_58 * (____stream_525));// L550 +extern int (__getchar_unlocked_529) (void );// L551 +extern int (__fgetc_unlocked_532) (__FILE_58 * (____stream_530));// L561 +extern int (__fputc_537) (int ____c_534, __FILE_58 * (____stream_535));// L573 +extern int (__fputc_539) (int ____c_534, __FILE_58 * (____stream_535));// L573 +extern int (__putc_544) (int ____c_541, __FILE_58 * (____stream_542));// L574 +extern int (__putchar_546) (int ____c_545);// L580 +extern int (__fputc_unlocked_550) (int ____c_547, __FILE_58 * (____stream_548));// L594 +extern int (__putc_unlocked_555) (int ____c_552, __FILE_58 * (____stream_553));// L602 +extern int (__putchar_unlocked_558) (int ____c_557);// L603 +extern int (__getw_561) (__FILE_58 * (____stream_559));// L610 +extern int (__putw_566) (int ____w_563, __FILE_58 * (____stream_564));// L613 +extern char * ((__fgets_572) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 +extern char * ((__fgets_574) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 +extern char * ((__fgets_576) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 +extern char * ((__fgets_578) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 +extern ____ssize_t_49 (____getdelim_585) (char * (* __restrict ____lineptr_580), __size_t_1 * __restrict ____n_581, int ____delimiter_582, __FILE_58 * __restrict ____stream_583);// L665:L667 +extern ____ssize_t_49 (____getdelim_587) (char * (* __restrict ____lineptr_580), __size_t_1 * __restrict ____n_581, int ____delimiter_582, __FILE_58 * __restrict ____stream_583);// L665:L667 +extern ____ssize_t_49 (__getdelim_594) (char * (* __restrict ____lineptr_589), __size_t_1 * __restrict ____n_590, int ____delimiter_591, __FILE_58 * __restrict ____stream_592);// L668:L670 +extern ____ssize_t_49 (__getdelim_596) (char * (* __restrict ____lineptr_589), __size_t_1 * __restrict ____n_590, int ____delimiter_591, __FILE_58 * __restrict ____stream_592);// L668:L670 +extern ____ssize_t_49 (__getline_602) (char * (* __restrict ____lineptr_598), __size_t_1 * __restrict ____n_599, __FILE_58 * __restrict ____stream_600);// L678:L680 +extern ____ssize_t_49 (__getline_604) (char * (* __restrict ____lineptr_598), __size_t_1 * __restrict ____n_599, __FILE_58 * __restrict ____stream_600);// L678:L680 +extern int (__fputs_609) (const char * __restrict ____s_606, __FILE_58 * __restrict ____stream_607);// L689 +extern int (__fputs_611) (const char * __restrict ____s_606, __FILE_58 * __restrict ____stream_607);// L689 +extern int (__puts_614) (const char * (____s_613));// L695 +extern int (__ungetc_618) (int ____c_615, __FILE_58 * (____stream_616));// L702 +extern int (__fseek_654) (__FILE_58 * (____stream_650), long int ____off_652, int ____whence_653);// L749 +extern int (__fseek_656) (__FILE_58 * (____stream_650), long int ____off_652, int ____whence_653);// L749 +extern long int (__ftell_660) (__FILE_58 * (____stream_658));// L754 +extern long int (__ftell_662) (__FILE_58 * (____stream_658));// L754 +extern void (__rewind_666) (__FILE_58 * (____stream_664));// L759 +extern int (__fseeko_671) (__FILE_58 * (____stream_667), ____off_t_23 ____off_669, int ____whence_670);// L773 +extern int (__fseeko_679) (__FILE_58 * (____stream_675), ____off64_t_24 ____off_677, int ____whence_678);// L781:L783 +extern ____off_t_23 (__ftello_683) (__FILE_58 * (____stream_673));// L778 +extern ____off_t_23 (__ftello_685) (__FILE_58 * (____stream_673));// L778 +extern int (__fgetpos_693) (__FILE_58 * __restrict ____stream_689, __fpos_t_253 * __restrict ____pos_691);// L798 +extern ____off64_t_24 (__ftello_687) (__FILE_58 * (____stream_681));// L784 +extern int (__fgetpos_705) (__FILE_58 * __restrict ____stream_701, __fpos_t_255 * __restrict ____pos_703);// L806:L807 +extern int (__fsetpos_713) (__FILE_58 * (____stream_697), const __fpos_t_253 * (____pos_699));// L803 +extern int (__fsetpos_717) (__FILE_58 * (____stream_709), const __fpos_t_255 * (____pos_711));// L808:L809 +extern void (__clearerr_723) (__FILE_58 * (____stream_721));// L826 +extern int (__feof_726) (__FILE_58 * (____stream_724));// L828 +extern int (__feof_728) (__FILE_58 * (____stream_724));// L828 +extern int (__ferror_732) (__FILE_58 * (____stream_730));// L830 +extern int (__ferror_734) (__FILE_58 * (____stream_730));// L830 +extern void (__clearerr_unlocked_738) (__FILE_58 * (____stream_736));// L835 +extern int (__feof_unlocked_742) (__FILE_58 * (____stream_740));// L836 +extern int (__feof_unlocked_744) (__FILE_58 * (____stream_740));// L836 +extern int (__ferror_unlocked_748) (__FILE_58 * (____stream_746));// L837 +extern int (__ferror_unlocked_750) (__FILE_58 * (____stream_746));// L837 +extern void (__perror_753) (const char * (____s_752));// L846 +extern void (__perror_754) (const char * (____s_752));// L846 +extern int __sys_nerr_755;// L26 + +extern int (__fileno_761) (__FILE_58 * (____stream_757));// L858 +extern int (__fileno_759) (__FILE_58 * (____stream_757));// L858 +extern int (__fileno_unlocked_767) (__FILE_58 * (____stream_763));// L863 +extern int (__fileno_unlocked_765) (__FILE_58 * (____stream_763));// L863 +extern __FILE_58 * ((__popen_771) (const char * (____command_769), const char * (____modes_770)));// L872 +extern __FILE_58 * ((__popen_773) (const char * (____command_769), const char * (____modes_770)));// L872 +extern int (__pclose_777) (__FILE_58 * (____stream_775));// L878 +extern char * ((__ctermid_780) (char * (____s_779)));// L884 +extern void (__flockfile_783) (__FILE_58 * (____stream_781));// L912 +extern int (__ftrylockfile_787) (__FILE_58 * (____stream_785));// L916 +extern int (__ftrylockfile_789) (__FILE_58 * (____stream_785));// L916 +extern void (__funlockfile_793) (__FILE_58 * (____stream_791));// L919 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ @@ -2293,93 +1616,39 @@ extern void (__funlockfile_867) (__FILE_59 * (____stream_865));// L919 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____sprintf_chk_899) (char * __restrict ____s_895, int ____flag_896, __size_t_1 ____slen_897, const char * __restrict ____format_898, ... );// L23:L24 -extern int (____vsprintf_chk_906) (char * __restrict ____s_900, int ____flag_901, __size_t_1 ____slen_902, const char * __restrict ____format_903, ____gnuc_va_list_86 ____ap_904);// L25:L27 +extern int (____sprintf_chk_825) (char * __restrict ____s_821, int ____flag_822, __size_t_1 ____slen_823, const char * __restrict ____format_824, ... );// L23:L24 +extern int (____vsprintf_chk_832) (char * __restrict ____s_826, int ____flag_827, __size_t_1 ____slen_828, const char * __restrict ____format_829, ____gnuc_va_list_82 ____ap_830);// L25:L27 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____snprintf_chk_920) (char * __restrict ____s_915, __size_t_1 ____n_916, int ____flag_917, __size_t_1 ____slen_918, const char * __restrict ____format_919, ... );// L52:L54 -extern int (____vsnprintf_chk_928) (char * __restrict ____s_921, __size_t_1 ____n_922, int ____flag_923, __size_t_1 ____slen_924, const char * __restrict ____format_925, ____gnuc_va_list_86 ____ap_926);// L55:L57 +extern int (____snprintf_chk_846) (char * __restrict ____s_841, __size_t_1 ____n_842, int ____flag_843, __size_t_1 ____slen_844, const char * __restrict ____format_845, ... );// L52:L54 +extern int (____vsnprintf_chk_854) (char * __restrict ____s_847, __size_t_1 ____n_848, int ____flag_849, __size_t_1 ____slen_850, const char * __restrict ____format_851, ____gnuc_va_list_82 ____ap_852);// L55:L57 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____fprintf_chk_943) (__FILE_59 * __restrict ____stream_939, int ____flag_941, const char * __restrict ____format_942, ... );// L85:L86 -extern int (____printf_chk_947) (int ____flag_945, const char * __restrict ____format_946, ... );// L87 -extern int (____vfprintf_chk_954) (__FILE_59 * __restrict ____stream_948, int ____flag_950, const char * __restrict ____format_951, ____gnuc_va_list_86 ____ap_952);// L88:L89 -extern int (____vprintf_chk_962) (int ____flag_958, const char * __restrict ____format_959, ____gnuc_va_list_86 ____ap_960);// L90:L91 +extern int (____fprintf_chk_869) (__FILE_58 * __restrict ____stream_865, int ____flag_867, const char * __restrict ____format_868, ... );// L85:L86 +extern int (____printf_chk_873) (int ____flag_871, const char * __restrict ____format_872, ... );// L87 +extern int (____vfprintf_chk_880) (__FILE_58 * __restrict ____stream_874, int ____flag_876, const char * __restrict ____format_877, ____gnuc_va_list_82 ____ap_878);// L88:L89 +extern int (____vprintf_chk_888) (int ____flag_884, const char * __restrict ____format_885, ____gnuc_va_list_82 ____ap_886);// L90:L91 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____dprintf_chk_984) (int ____fd_981, int ____flag_982, const char * __restrict ____fmt_983, ... );// L131:L132 -extern int (____vdprintf_chk_990) (int ____fd_985, int ____flag_986, const char * __restrict ____fmt_987, ____gnuc_va_list_86 ____arg_988);// L133:L135 +extern int (____dprintf_chk_910) (int ____fd_907, int ____flag_908, const char * __restrict ____fmt_909, ... );// L131:L132 +extern int (____vdprintf_chk_916) (int ____fd_911, int ____flag_912, const char * __restrict ____fmt_913, ____gnuc_va_list_82 ____arg_914);// L133:L135 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern char * ((____fgets_chk_1004) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 -extern char * ((____fgets_chk_1006) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 -extern char * ((____fgets_chk_1008) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 -extern char * ((____fgets_alias_1014) (char * __restrict ____s_1010, int ____n_1011, __FILE_59 * __restrict ____stream_1012));// L243:L245 -extern char * ((____fgets_chk_warn_1021) (char * __restrict ____s_1016, __size_t_1 ____size_1017, int ____n_1018, __FILE_59 * __restrict ____stream_1019));// L246:L250 +extern char * ((____fgets_chk_930) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 +extern char * ((____fgets_chk_932) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 +extern char * ((____fgets_chk_934) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 +extern char * ((____fgets_alias_940) (char * __restrict ____s_936, int ____n_937, __FILE_58 * __restrict ____stream_938));// L243:L245 +extern char * ((____fgets_chk_warn_947) (char * __restrict ____s_942, __size_t_1 ____size_943, int ____n_944, __FILE_58 * __restrict ____stream_945));// L246:L250 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ // typedef moved to top of scope // typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -static __inline unsigned int (____bswap_32_1158) (unsigned int ____bsx_1157) { +static __inline unsigned int (____bswap_32_1026) (unsigned int ____bsx_1025) { -if (__static_condition_default_1159) { +if (__static_condition_default_1027) { { { @@ -2393,9 +1662,9 @@ __static_type_error("invalid type found in return expression"); } } -static __inline ____uint64_t_13 (____bswap_64_1162) (____uint64_t_13 ____bsx_1160) { +static __inline ____uint64_t_13 (____bswap_64_1029) (____uint64_t_13 ____bsx_1028) { -if (__static_condition_default_1164) { +if (__static_condition_default_1027) { { { @@ -2409,177 +1678,40 @@ __static_type_error("invalid type found in return expression"); } } -static __inline ____uint64_t_1112 (____bswap_64_1163) (____uint64_t_1112 ____bsx_1161) { - -if (__static_condition_default_1165) { - -{ -{ - - - -__static_type_error("invalid type found in return expression"); -} -} - - -} -} -union __wait_1177 ;// L66 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern __size_t_1 (____ctype_get_mb_cur_max_1201) (void );// L139 -extern __size_t_1093 (____ctype_get_mb_cur_max_1202) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_1203) (void );// L139 -extern __size_t_1093 (____ctype_get_mb_cur_max_1204) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_1205) (void );// L139 -extern __size_t_1093 (____ctype_get_mb_cur_max_1206) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_1207) (void );// L139 -extern __size_t_1093 (____ctype_get_mb_cur_max_1208) (void );// L139 -extern double (__atof_1210) (const char * (____nptr_1209));// L144:L145 -extern double (__atof_1211) (const char * (____nptr_1209));// L144:L145 -extern int (__atoi_1213) (const char * (____nptr_1212));// L147:L148 -extern int (__atoi_1214) (const char * (____nptr_1212));// L147:L148 -extern long int (__atol_1216) (const char * (____nptr_1215));// L150:L151 -extern long int (__atol_1217) (const char * (____nptr_1215));// L150:L151 -extern long long int (__atoll_1219) (const char * (____nptr_1218));// L157:L158 -extern long long int (__atoll_1220) (const char * (____nptr_1218));// L157:L158 -extern double (__strtod_1223) (const char * __restrict ____nptr_1221, char * (* __restrict ____endptr_1222));// L164:L166 -extern float (__strtof_1226) (const char * __restrict ____nptr_1224, char * (* __restrict ____endptr_1225));// L172:L173 -extern long double (__strtold_1229) (const char * __restrict ____nptr_1227, char * (* __restrict ____endptr_1228));// L175:L177 -extern long int (__strtol_1233) (const char * __restrict ____nptr_1230, char * (* __restrict ____endptr_1231), int ____base_1232);// L183:L185 -extern unsigned long int (__strtoul_1237) (const char * __restrict ____nptr_1234, char * (* __restrict ____endptr_1235), int ____base_1236);// L187:L189 -extern long long int (__strtoq_1241) (const char * __restrict ____nptr_1238, char * (* __restrict ____endptr_1239), int ____base_1240);// L195:L197 -extern unsigned long long int (__strtouq_1245) (const char * __restrict ____nptr_1242, char * (* __restrict ____endptr_1243), int ____base_1244);// L200:L202 -extern long long int (__strtoll_1249) (const char * __restrict ____nptr_1246, char * (* __restrict ____endptr_1247), int ____base_1248);// L209:L211 -extern long long int (__strtoll_1250) (const char * __restrict ____nptr_1246, char * (* __restrict ____endptr_1247), int ____base_1248);// L209:L211 -extern unsigned long long int (__strtoull_1254) (const char * __restrict ____nptr_1251, char * (* __restrict ____endptr_1252), int ____base_1253);// L214:L216 -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -__extension__/* no function due to type errors in the function prototype */ -extern char * ((__l64a_1259) (long int ____n_1258));// L305 -extern char * ((__l64a_1260) (long int ____n_1258));// L305 -extern long int (__a64l_1262) (const char * (____s_1261));// L308:L309 -extern long int (__a64l_1263) (const char * (____s_1261));// L308:L309 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope +union __wait_1041 ;// L66 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope +extern __size_t_1 (____ctype_get_mb_cur_max_1065) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_1066) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_1067) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_1068) (void );// L139 +extern double (__atof_1070) (const char * (____nptr_1069));// L144:L145 +extern double (__atof_1071) (const char * (____nptr_1069));// L144:L145 +extern int (__atoi_1073) (const char * (____nptr_1072));// L147:L148 +extern int (__atoi_1074) (const char * (____nptr_1072));// L147:L148 +extern long int (__atol_1076) (const char * (____nptr_1075));// L150:L151 +extern long int (__atol_1077) (const char * (____nptr_1075));// L150:L151 +extern long long int (__atoll_1079) (const char * (____nptr_1078));// L157:L158 +extern long long int (__atoll_1080) (const char * (____nptr_1078));// L157:L158 +extern double (__strtod_1083) (const char * __restrict ____nptr_1081, char * (* __restrict ____endptr_1082));// L164:L166 +extern float (__strtof_1086) (const char * __restrict ____nptr_1084, char * (* __restrict ____endptr_1085));// L172:L173 +extern long double (__strtold_1089) (const char * __restrict ____nptr_1087, char * (* __restrict ____endptr_1088));// L175:L177 +extern long int (__strtol_1093) (const char * __restrict ____nptr_1090, char * (* __restrict ____endptr_1091), int ____base_1092);// L183:L185 +extern unsigned long int (__strtoul_1097) (const char * __restrict ____nptr_1094, char * (* __restrict ____endptr_1095), int ____base_1096);// L187:L189 +extern long long int (__strtoq_1101) (const char * __restrict ____nptr_1098, char * (* __restrict ____endptr_1099), int ____base_1100);// L195:L197 +extern unsigned long long int (__strtouq_1105) (const char * __restrict ____nptr_1102, char * (* __restrict ____endptr_1103), int ____base_1104);// L200:L202 +extern long long int (__strtoll_1109) (const char * __restrict ____nptr_1106, char * (* __restrict ____endptr_1107), int ____base_1108);// L209:L211 +extern long long int (__strtoll_1110) (const char * __restrict ____nptr_1106, char * (* __restrict ____endptr_1107), int ____base_1108);// L209:L211 +extern unsigned long long int (__strtoull_1114) (const char * __restrict ____nptr_1111, char * (* __restrict ____endptr_1112), int ____base_1113);// L214:L216 +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +__extension__/* no function due to type errors in the function prototype */ +extern char * ((__l64a_1119) (long int ____n_1118));// L305 +extern char * ((__l64a_1120) (long int ____n_1118));// L305 +extern long int (__a64l_1122) (const char * (____s_1121));// L308:L309 +extern long int (__a64l_1123) (const char * (____s_1121));// L308:L309 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope @@ -2621,9 +1753,9 @@ extern long int (__a64l_1263) (const char * (____s_1261));// L308:L309 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -static __inline unsigned int (____bswap_32_1452) (unsigned int ____bsx_1451) { +static __inline unsigned int (____bswap_32_1166) (unsigned int ____bsx_1165) { -if (__static_condition_default_1453) { +if (__static_condition_default_1167) { { { @@ -2637,9 +1769,9 @@ __static_type_error("invalid type found in return expression"); } } -static __inline ____uint64_t_13 (____bswap_64_1456) (____uint64_t_13 ____bsx_1454) { +static __inline ____uint64_t_13 (____bswap_64_1169) (____uint64_t_13 ____bsx_1168) { -if (__static_condition_default_1458) { +if (__static_condition_default_1167) { { { @@ -2653,47 +1785,27 @@ __static_type_error("invalid type found in return expression"); } } -static __inline ____uint64_t_1275 (____bswap_64_1457) (____uint64_t_1275 ____bsx_1455) { - -if (__static_condition_default_1459) { - -{ -{ - - - -__static_type_error("invalid type found in return expression"); -} -} - - -} -} -// typedef moved to top of scope -// typedef moved to top of scope // typedef moved to top of scope -struct __timespec_1466 ;// L120 - -struct __timeval_1476 ;// L30 - // typedef moved to top of scope // typedef moved to top of scope +struct __timespec_1176 ;// L120 +struct __timeval_1179 ;// L30 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern int (__select_1513) (int ____nfds_1502, __fd_set_1499 * __restrict ____readfds_1503, __fd_set_1499 * __restrict ____writefds_1505, __fd_set_1499 * __restrict ____exceptfds_1507, struct __timeval_1476 * __restrict ____timeout_1510);// L106:L109 -extern int (__select_1514) (int ____nfds_1502, __fd_set_1499 * __restrict ____readfds_1503, __fd_set_1499 * __restrict ____writefds_1505, __fd_set_1499 * __restrict ____exceptfds_1507, struct __forward_tag_reference_1509 * __restrict ____timeout_1512);// L106:L109 -extern int (__pselect_1529) (int ____nfds_1517, __fd_set_1499 * __restrict ____readfds_1518, __fd_set_1499 * __restrict ____writefds_1520, __fd_set_1499 * __restrict ____exceptfds_1522, const struct __timespec_1466 * __restrict ____timeout_1525, const ____sigset_t_1464 * __restrict ____sigmask_1528);// L118:L122 -extern int (__pselect_1530) (int ____nfds_1517, __fd_set_1499 * __restrict ____readfds_1518, __fd_set_1499 * __restrict ____writefds_1520, __fd_set_1499 * __restrict ____exceptfds_1522, const struct __forward_tag_reference_1524 * __restrict ____timeout_1527, const ____sigset_t_1464 * __restrict ____sigmask_1528);// L118:L122 -extern long int (____fdelt_chk_1534) (long int ____d_1533);// L24 -extern long int (____fdelt_warn_1536) (long int ____d_1535);// L25:L26 -extern unsigned int (__gnu_dev_major_1538) (unsigned long long int ____dev_1537);// L27:L28 -extern unsigned int (__gnu_dev_major_1539) (unsigned long long int ____dev_1537);// L27:L28 -extern unsigned int (__gnu_dev_minor_1541) (unsigned long long int ____dev_1540);// L30:L31 -extern unsigned long long int (__gnu_dev_makedev_1544) (unsigned int ____major_1542, unsigned int ____minor_1543);// L33:L35 +extern int (__select_1199) (int ____nfds_1192, __fd_set_1189 * __restrict ____readfds_1193, __fd_set_1189 * __restrict ____writefds_1194, __fd_set_1189 * __restrict ____exceptfds_1195, struct __timeval_1179 * __restrict ____timeout_1197);// L106:L109 +extern int (__select_1200) (int ____nfds_1192, __fd_set_1189 * __restrict ____readfds_1193, __fd_set_1189 * __restrict ____writefds_1194, __fd_set_1189 * __restrict ____exceptfds_1195, struct __forward_tag_reference_1196 * __restrict ____timeout_1198);// L106:L109 +extern int (__pselect_1209) (int ____nfds_1201, __fd_set_1189 * __restrict ____readfds_1202, __fd_set_1189 * __restrict ____writefds_1203, __fd_set_1189 * __restrict ____exceptfds_1204, const struct __timespec_1176 * __restrict ____timeout_1206, const ____sigset_t_1174 * __restrict ____sigmask_1208);// L118:L122 +extern int (__pselect_1210) (int ____nfds_1201, __fd_set_1189 * __restrict ____readfds_1202, __fd_set_1189 * __restrict ____writefds_1203, __fd_set_1189 * __restrict ____exceptfds_1204, const struct __forward_tag_reference_1205 * __restrict ____timeout_1207, const ____sigset_t_1174 * __restrict ____sigmask_1208);// L118:L122 +extern long int (____fdelt_chk_1212) (long int ____d_1211);// L24 +extern long int (____fdelt_warn_1214) (long int ____d_1213);// L25:L26 +extern unsigned int (__gnu_dev_major_1216) (unsigned long long int ____dev_1215);// L27:L28 +extern unsigned int (__gnu_dev_major_1217) (unsigned long long int ____dev_1215);// L27:L28 +extern unsigned int (__gnu_dev_minor_1219) (unsigned long long int ____dev_1218);// L30:L31 +extern unsigned long long int (__gnu_dev_makedev_1222) (unsigned int ____major_1220, unsigned int ____minor_1221);// L33:L35 __extension__/* no function due to type errors in the function prototype */ __extension__/* no function due to type errors in the function prototype */ __extension__/* no function due to type errors in the function prototype */ @@ -2705,211 +1817,156 @@ __extension__/* no function due to type errors in the function prototype */ // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -union __pthread_attr_t_1578 ;// L63 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern int (__rand_1609) (void );// L374 -extern void (__srand_1611) (unsigned int ____seed_1610);// L376 -extern int (__rand_r_1613) (unsigned int * (____seed_1612));// L381 -extern double (__drand48_1614) (void );// L389 -extern double (__erand48_1616) (unsigned short int ____xsubi_1615[3]);// L390 -extern long int (__lrand48_1617) (void );// L393 -extern long int (__nrand48_1619) (unsigned short int ____xsubi_1618[3]);// L394:L395 -extern long int (__mrand48_1620) (void );// L398 -extern long int (__jrand48_1622) (unsigned short int ____xsubi_1621[3]);// L399:L400 -extern void (__srand48_1624) (long int ____seedval_1623);// L403 -extern unsigned short int * ((__seed48_1626) (unsigned short int ____seed16v_1625[3]));// L404:L405 -extern void (__lcong48_1628) (unsigned short int ____param_1627[7]);// L406 -extern void * ((__malloc_1631) (__size_t_1 ____size_1629));// L466 -extern void * ((__malloc_1632) (__size_t_1093 ____size_1630));// L466 -extern void * ((__malloc_1633) (__size_t_1 ____size_1629));// L466 -extern void * ((__malloc_1634) (__size_t_1093 ____size_1630));// L466 -extern void * ((__calloc_1639) (__size_t_1 ____nmemb_1635, __size_t_1 ____size_1637));// L468:L469 -extern void * ((__calloc_1640) (__size_t_1093 ____nmemb_1636, __size_t_1093 ____size_1638));// L468:L469 -extern void * ((__calloc_1641) (__size_t_1 ____nmemb_1635, __size_t_1 ____size_1637));// L468:L469 -extern void * ((__calloc_1642) (__size_t_1093 ____nmemb_1636, __size_t_1093 ____size_1638));// L468:L469 -extern void * ((__realloc_1646) (void * (____ptr_1643), __size_t_1 ____size_1644));// L480:L481 -extern void * ((__realloc_1647) (void * (____ptr_1643), __size_t_1093 ____size_1645));// L480:L481 -extern void (__free_1649) (void * (____ptr_1648));// L483 -extern void (__cfree_1651) (void * (____ptr_1650));// L488 -extern void * ((__alloca_1654) (__size_t_1 ____size_1652));// L32 -extern void * ((__alloca_1655) (__size_t_1093 ____size_1653));// L32 -extern void * ((__valloc_1658) (__size_t_1 ____size_1656));// L498 -extern void * ((__valloc_1659) (__size_t_1093 ____size_1657));// L498 -extern void * ((__valloc_1660) (__size_t_1 ____size_1656));// L498 -extern void * ((__valloc_1661) (__size_t_1093 ____size_1657));// L498 -extern int (__posix_memalign_1667) (void * (* (____memptr_1662)), __size_t_1 ____alignment_1663, __size_t_1 ____size_1665);// L503:L504 -extern int (__posix_memalign_1668) (void * (* (____memptr_1662)), __size_t_1093 ____alignment_1664, __size_t_1093 ____size_1666);// L503:L504 -extern int (__posix_memalign_1669) (void * (* (____memptr_1662)), __size_t_1 ____alignment_1663, __size_t_1 ____size_1665);// L503:L504 -extern int (__posix_memalign_1670) (void * (* (____memptr_1662)), __size_t_1093 ____alignment_1664, __size_t_1093 ____size_1666);// L503:L504 -extern void * ((__aligned_alloc_1675) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 -extern void * ((__aligned_alloc_1676) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 -extern void * ((__aligned_alloc_1677) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 -extern void * ((__aligned_alloc_1678) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 -extern void * ((__aligned_alloc_1679) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 -extern void * ((__aligned_alloc_1680) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 -extern void * ((__aligned_alloc_1681) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 -extern void * ((__aligned_alloc_1682) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 -extern void (__abort_1683) (void );// L515 -extern int (__atexit_1685) (void (* (____func_1684)) (void ));// L519 -extern int (__at_quick_exit_1687) (void (* (____func_1686)) (void ));// L527 -extern int (__on_exit_1692) (void (* (____func_1690)) (int ____status_1688, void * (____arg_1689)), void * (____arg_1691));// L535:L536 -extern void (__exit_1694) (int ____status_1693);// L543 -extern void (__exit_1695) (int ____status_1693);// L543 -extern void (__quick_exit_1697) (int ____status_1696);// L549 -extern void (___Exit_1699) (int ____status_1698);// L557 -extern char * ((__getenv_1701) (const char * (____name_1700)));// L564 -extern char * ((__getenv_1702) (const char * (____name_1700)));// L564 -extern int (__putenv_1704) (char * (____string_1703));// L578 -extern int (__setenv_1708) (const char * (____name_1705), const char * (____value_1706), int ____replace_1707);// L584:L585 -extern int (__unsetenv_1710) (const char * (____name_1709));// L588 -extern int (__clearenv_1711) (void );// L595 -extern char * ((__mktemp_1713) (char * (____template_1712)));// L606 -extern int (__mkstemp_1716) (char * (____template_1714));// L619 -extern int (__mkstemp_1718) (char * (____template_1714));// L619 -extern int (__mkstemp_1717) (char * (____template_1715));// L622:L623 -extern int (__mkstemp_1719) (char * (____template_1715));// L622:L623 -extern int (__mkstemps_1724) (char * (____template_1720), int ____suffixlen_1721);// L641 -extern int (__mkstemps_1725) (char * (____template_1722), int ____suffixlen_1723);// L644:L645 -extern int (__mkstemps_1726) (char * (____template_1720), int ____suffixlen_1721);// L641 -extern int (__mkstemps_1727) (char * (____template_1722), int ____suffixlen_1723);// L644:L645 -extern char * ((__mkdtemp_1729) (char * (____template_1728)));// L662 -extern char * ((__mkdtemp_1730) (char * (____template_1728)));// L662 -extern int (__system_1732) (const char * (____command_1731));// L716 -extern int (__system_1733) (const char * (____command_1731));// L716 -extern int (__system_1734) (const char * (____command_1731));// L716 -extern int (__system_1735) (const char * (____command_1731));// L716 -extern char * ((__realpath_1738) (const char * __restrict ____name_1736, char * __restrict ____resolved_1737));// L733:L734 -extern char * ((__realpath_1739) (const char * __restrict ____name_1736, char * __restrict ____resolved_1737));// L733:L734 -// typedef moved to top of scope -extern void * ((__bsearch_1751) (const void * (____key_1741), const void * (____base_1742), __size_t_1 ____nmemb_1743, __size_t_1 ____size_1745, ____compar_fn_t_1740 ____compar_1747));// L754:L756 -extern void * ((__bsearch_1752) (const void * (____key_1741), const void * (____base_1742), __size_t_1093 ____nmemb_1744, __size_t_1093 ____size_1746, ____compar_fn_t_1740 ____compar_1747));// L754:L756 -extern void * ((__bsearch_1755) (const void * (____key_1741), const void * (____base_1742), __size_t_1 ____nmemb_1743, __size_t_1 ____size_1745, ____compar_fn_t_1740 ____compar_1747));// L754:L756 -extern void * ((__bsearch_1756) (const void * (____key_1741), const void * (____base_1742), __size_t_1093 ____nmemb_1744, __size_t_1093 ____size_1746, ____compar_fn_t_1740 ____compar_1747));// L754:L756 +union __pthread_attr_t_1235 ;// L63 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern int (__rand_1266) (void );// L374 +extern void (__srand_1268) (unsigned int ____seed_1267);// L376 +extern int (__rand_r_1270) (unsigned int * (____seed_1269));// L381 +extern double (__drand48_1271) (void );// L389 +extern double (__erand48_1273) (unsigned short int ____xsubi_1272[3]);// L390 +extern long int (__lrand48_1274) (void );// L393 +extern long int (__nrand48_1276) (unsigned short int ____xsubi_1275[3]);// L394:L395 +extern long int (__mrand48_1277) (void );// L398 +extern long int (__jrand48_1279) (unsigned short int ____xsubi_1278[3]);// L399:L400 +extern void (__srand48_1281) (long int ____seedval_1280);// L403 +extern unsigned short int * ((__seed48_1283) (unsigned short int ____seed16v_1282[3]));// L404:L405 +extern void (__lcong48_1285) (unsigned short int ____param_1284[7]);// L406 +extern void * ((__malloc_1287) (__size_t_1 ____size_1286));// L466 +extern void * ((__malloc_1288) (__size_t_1 ____size_1286));// L466 +extern void * ((__calloc_1291) (__size_t_1 ____nmemb_1289, __size_t_1 ____size_1290));// L468:L469 +extern void * ((__calloc_1292) (__size_t_1 ____nmemb_1289, __size_t_1 ____size_1290));// L468:L469 +extern void * ((__realloc_1295) (void * (____ptr_1293), __size_t_1 ____size_1294));// L480:L481 +extern void * ((__realloc_1296) (void * (____ptr_1293), __size_t_1 ____size_1294));// L480:L481 +extern void (__free_1298) (void * (____ptr_1297));// L483 +extern void (__cfree_1300) (void * (____ptr_1299));// L488 +extern void * ((__alloca_1302) (__size_t_1 ____size_1301));// L32 +extern void * ((__valloc_1304) (__size_t_1 ____size_1303));// L498 +extern void * ((__valloc_1305) (__size_t_1 ____size_1303));// L498 +extern int (__posix_memalign_1309) (void * (* (____memptr_1306)), __size_t_1 ____alignment_1307, __size_t_1 ____size_1308);// L503:L504 +extern int (__posix_memalign_1310) (void * (* (____memptr_1306)), __size_t_1 ____alignment_1307, __size_t_1 ____size_1308);// L503:L504 +extern void * ((__aligned_alloc_1313) (__size_t_1 ____alignment_1311, __size_t_1 ____size_1312));// L509:L510 +extern void * ((__aligned_alloc_1314) (__size_t_1 ____alignment_1311, __size_t_1 ____size_1312));// L509:L510 +extern void * ((__aligned_alloc_1315) (__size_t_1 ____alignment_1311, __size_t_1 ____size_1312));// L509:L510 +extern void * ((__aligned_alloc_1316) (__size_t_1 ____alignment_1311, __size_t_1 ____size_1312));// L509:L510 +extern void (__abort_1317) (void );// L515 +extern int (__atexit_1319) (void (* (____func_1318)) (void ));// L519 +extern int (__at_quick_exit_1321) (void (* (____func_1320)) (void ));// L527 +extern int (__on_exit_1326) (void (* (____func_1324)) (int ____status_1322, void * (____arg_1323)), void * (____arg_1325));// L535:L536 +extern void (__exit_1328) (int ____status_1327);// L543 +extern void (__exit_1329) (int ____status_1327);// L543 +extern void (__quick_exit_1331) (int ____status_1330);// L549 +extern void (___Exit_1333) (int ____status_1332);// L557 +extern char * ((__getenv_1335) (const char * (____name_1334)));// L564 +extern char * ((__getenv_1336) (const char * (____name_1334)));// L564 +extern int (__putenv_1338) (char * (____string_1337));// L578 +extern int (__setenv_1342) (const char * (____name_1339), const char * (____value_1340), int ____replace_1341);// L584:L585 +extern int (__unsetenv_1344) (const char * (____name_1343));// L588 +extern int (__clearenv_1345) (void );// L595 +extern char * ((__mktemp_1347) (char * (____template_1346)));// L606 +extern int (__mkstemp_1350) (char * (____template_1348));// L619 +extern int (__mkstemp_1352) (char * (____template_1348));// L619 +extern int (__mkstemp_1351) (char * (____template_1349));// L622:L623 +extern int (__mkstemp_1353) (char * (____template_1349));// L622:L623 +extern int (__mkstemps_1358) (char * (____template_1354), int ____suffixlen_1355);// L641 +extern int (__mkstemps_1359) (char * (____template_1356), int ____suffixlen_1357);// L644:L645 +extern int (__mkstemps_1360) (char * (____template_1354), int ____suffixlen_1355);// L641 +extern int (__mkstemps_1361) (char * (____template_1356), int ____suffixlen_1357);// L644:L645 +extern char * ((__mkdtemp_1363) (char * (____template_1362)));// L662 +extern char * ((__mkdtemp_1364) (char * (____template_1362)));// L662 +extern int (__system_1366) (const char * (____command_1365));// L716 +extern int (__system_1367) (const char * (____command_1365));// L716 +extern int (__system_1368) (const char * (____command_1365));// L716 +extern int (__system_1369) (const char * (____command_1365));// L716 +extern char * ((__realpath_1372) (const char * __restrict ____name_1370, char * __restrict ____resolved_1371));// L733:L734 +extern char * ((__realpath_1373) (const char * __restrict ____name_1370, char * __restrict ____resolved_1371));// L733:L734 +// typedef moved to top of scope +extern void * ((__bsearch_1382) (const void * (____key_1375), const void * (____base_1376), __size_t_1 ____nmemb_1377, __size_t_1 ____size_1378, ____compar_fn_t_1374 ____compar_1379));// L754:L756 +extern void * ((__bsearch_1384) (const void * (____key_1375), const void * (____base_1376), __size_t_1 ____nmemb_1377, __size_t_1 ____size_1378, ____compar_fn_t_1374 ____compar_1379));// L754:L756 /* no function due to type errors in the function prototype */ -extern void (__qsort_1784) (void * (____base_1777), __size_t_1 ____nmemb_1778, __size_t_1 ____size_1780, ____compar_fn_t_1740 ____compar_1782);// L764:L765 -extern void (__qsort_1786) (void * (____base_1777), __size_t_1093 ____nmemb_1779, __size_t_1093 ____size_1781, ____compar_fn_t_1740 ____compar_1782);// L764:L765 -extern void (__qsort_1788) (void * (____base_1777), __size_t_1 ____nmemb_1778, __size_t_1 ____size_1780, ____compar_fn_t_1740 ____compar_1782);// L764:L765 -extern void (__qsort_1790) (void * (____base_1777), __size_t_1093 ____nmemb_1779, __size_t_1093 ____size_1781, ____compar_fn_t_1740 ____compar_1782);// L764:L765 -extern int (__abs_1793) (int ____x_1792);// L774 -extern int (__abs_1794) (int ____x_1792);// L774 -extern long int (__labs_1796) (long int ____x_1795);// L775 -extern long int (__labs_1797) (long int ____x_1795);// L775 -extern long long int (__llabs_1799) (long long int ____x_1798);// L779:L780 -extern long long int (__llabs_1800) (long long int ____x_1798);// L779:L780 -extern __div_t_1190 (__div_1803) (int ____numer_1801, int ____denom_1802);// L788:L789 -extern __div_t_1190 (__div_1804) (int ____numer_1801, int ____denom_1802);// L788:L789 -extern __ldiv_t_1195 (__ldiv_1807) (long int ____numer_1805, long int ____denom_1806);// L790:L791 -extern __ldiv_t_1195 (__ldiv_1809) (long int ____numer_1805, long int ____denom_1806);// L790:L791 -extern __lldiv_t_1200 (__lldiv_1813) (long long int ____numer_1811, long long int ____denom_1812);// L796:L798 -extern __lldiv_t_1200 (__lldiv_1815) (long long int ____numer_1811, long long int ____denom_1812);// L796:L798 -extern char * ((__ecvt_1821) (double ____value_1817, int ____ndigit_1818, int * __restrict ____decpt_1819, int * __restrict ____sign_1820));// L811:L812 -extern char * ((__ecvt_1822) (double ____value_1817, int ____ndigit_1818, int * __restrict ____decpt_1819, int * __restrict ____sign_1820));// L811:L812 -extern char * ((__fcvt_1827) (double ____value_1823, int ____ndigit_1824, int * __restrict ____decpt_1825, int * __restrict ____sign_1826));// L817:L818 -extern char * ((__fcvt_1828) (double ____value_1823, int ____ndigit_1824, int * __restrict ____decpt_1825, int * __restrict ____sign_1826));// L817:L818 -extern char * ((__gcvt_1832) (double ____value_1829, int ____ndigit_1830, char * (____buf_1831)));// L823:L824 -extern char * ((__gcvt_1833) (double ____value_1829, int ____ndigit_1830, char * (____buf_1831)));// L823:L824 -extern char * ((__qecvt_1838) (long double ____value_1834, int ____ndigit_1835, int * __restrict ____decpt_1836, int * __restrict ____sign_1837));// L829:L831 -extern char * ((__qecvt_1839) (long double ____value_1834, int ____ndigit_1835, int * __restrict ____decpt_1836, int * __restrict ____sign_1837));// L829:L831 -extern char * ((__qfcvt_1844) (long double ____value_1840, int ____ndigit_1841, int * __restrict ____decpt_1842, int * __restrict ____sign_1843));// L832:L834 -extern char * ((__qfcvt_1845) (long double ____value_1840, int ____ndigit_1841, int * __restrict ____decpt_1842, int * __restrict ____sign_1843));// L832:L834 -extern char * ((__qgcvt_1849) (long double ____value_1846, int ____ndigit_1847, char * (____buf_1848)));// L835:L836 -extern char * ((__qgcvt_1850) (long double ____value_1846, int ____ndigit_1847, char * (____buf_1848)));// L835:L836 -extern int (__ecvt_r_1858) (double ____value_1851, int ____ndigit_1852, int * __restrict ____decpt_1853, int * __restrict ____sign_1854, char * __restrict ____buf_1855, __size_t_1 ____len_1856);// L841:L843 -extern int (__ecvt_r_1859) (double ____value_1851, int ____ndigit_1852, int * __restrict ____decpt_1853, int * __restrict ____sign_1854, char * __restrict ____buf_1855, __size_t_1093 ____len_1857);// L841:L843 -extern int (__fcvt_r_1867) (double ____value_1860, int ____ndigit_1861, int * __restrict ____decpt_1862, int * __restrict ____sign_1863, char * __restrict ____buf_1864, __size_t_1 ____len_1865);// L844:L846 -extern int (__fcvt_r_1868) (double ____value_1860, int ____ndigit_1861, int * __restrict ____decpt_1862, int * __restrict ____sign_1863, char * __restrict ____buf_1864, __size_t_1093 ____len_1866);// L844:L846 -extern int (__qecvt_r_1876) (long double ____value_1869, int ____ndigit_1870, int * __restrict ____decpt_1871, int * __restrict ____sign_1872, char * __restrict ____buf_1873, __size_t_1 ____len_1874);// L848:L851 -extern int (__qecvt_r_1877) (long double ____value_1869, int ____ndigit_1870, int * __restrict ____decpt_1871, int * __restrict ____sign_1872, char * __restrict ____buf_1873, __size_t_1093 ____len_1875);// L848:L851 -extern int (__qfcvt_r_1885) (long double ____value_1878, int ____ndigit_1879, int * __restrict ____decpt_1880, int * __restrict ____sign_1881, char * __restrict ____buf_1882, __size_t_1 ____len_1883);// L852:L855 -extern int (__qfcvt_r_1886) (long double ____value_1878, int ____ndigit_1879, int * __restrict ____decpt_1880, int * __restrict ____sign_1881, char * __restrict ____buf_1882, __size_t_1093 ____len_1884);// L852:L855 -extern int (__mblen_1890) (const char * (____s_1887), __size_t_1 ____n_1888);// L862 -extern int (__mblen_1891) (const char * (____s_1887), __size_t_1093 ____n_1889);// L862 -extern int (__mblen_1892) (const char * (____s_1887), __size_t_1 ____n_1888);// L862 -extern int (__mblen_1893) (const char * (____s_1887), __size_t_1093 ____n_1889);// L862 -extern int (__mbtowc_1898) (__wchar_t_1094 * __restrict ____pwc_1894, const char * __restrict ____s_1895, __size_t_1 ____n_1896);// L865:L866 -extern int (__mbtowc_1899) (__wchar_t_1094 * __restrict ____pwc_1894, const char * __restrict ____s_1895, __size_t_1093 ____n_1897);// L865:L866 -extern int (__wctomb_1902) (char * (____s_1900), __wchar_t_1094 ____wchar_1901);// L869 -extern __size_t_1 (__mbstowcs_1907) (__wchar_t_1094 * __restrict ____pwcs_1903, const char * __restrict ____s_1904, __size_t_1 ____n_1905);// L873:L874 -extern __size_t_1093 (__mbstowcs_1908) (__wchar_t_1094 * __restrict ____pwcs_1903, const char * __restrict ____s_1904, __size_t_1093 ____n_1906);// L873:L874 -extern __size_t_1 (__wcstombs_1913) (char * __restrict ____s_1909, const __wchar_t_1094 * __restrict ____pwcs_1910, __size_t_1 ____n_1911);// L876:L878 -extern __size_t_1093 (__wcstombs_1914) (char * __restrict ____s_1909, const __wchar_t_1094 * __restrict ____pwcs_1910, __size_t_1093 ____n_1912);// L876:L878 -extern int (__rpmatch_1917) (const char * (____response_1915));// L887 -extern int (__rpmatch_1916) (const char * (____response_1915));// L887 -extern int (__getsubopt_1922) (char * (* __restrict ____optionp_1918), char * const * __restrict ____tokens_1919, char * (* __restrict ____valuep_1920));// L898:L901 -extern int (__getsubopt_1921) (char * (* __restrict ____optionp_1918), char * const * __restrict ____tokens_1919, char * (* __restrict ____valuep_1920));// L898:L901 -extern int (__getloadavg_1925) (double ____loadavg_1923[], int ____nelem_1924);// L950:L951 +extern void (__qsort_1403) (void * (____base_1398), __size_t_1 ____nmemb_1399, __size_t_1 ____size_1400, ____compar_fn_t_1374 ____compar_1401);// L764:L765 +extern void (__qsort_1405) (void * (____base_1398), __size_t_1 ____nmemb_1399, __size_t_1 ____size_1400, ____compar_fn_t_1374 ____compar_1401);// L764:L765 +extern int (__abs_1408) (int ____x_1407);// L774 +extern int (__abs_1409) (int ____x_1407);// L774 +extern long int (__labs_1411) (long int ____x_1410);// L775 +extern long int (__labs_1412) (long int ____x_1410);// L775 +extern long long int (__llabs_1414) (long long int ____x_1413);// L779:L780 +extern long long int (__llabs_1415) (long long int ____x_1413);// L779:L780 +extern __div_t_1054 (__div_1418) (int ____numer_1416, int ____denom_1417);// L788:L789 +extern __div_t_1054 (__div_1419) (int ____numer_1416, int ____denom_1417);// L788:L789 +extern __ldiv_t_1059 (__ldiv_1422) (long int ____numer_1420, long int ____denom_1421);// L790:L791 +extern __ldiv_t_1059 (__ldiv_1424) (long int ____numer_1420, long int ____denom_1421);// L790:L791 +extern __lldiv_t_1064 (__lldiv_1428) (long long int ____numer_1426, long long int ____denom_1427);// L796:L798 +extern __lldiv_t_1064 (__lldiv_1430) (long long int ____numer_1426, long long int ____denom_1427);// L796:L798 +extern char * ((__ecvt_1436) (double ____value_1432, int ____ndigit_1433, int * __restrict ____decpt_1434, int * __restrict ____sign_1435));// L811:L812 +extern char * ((__ecvt_1437) (double ____value_1432, int ____ndigit_1433, int * __restrict ____decpt_1434, int * __restrict ____sign_1435));// L811:L812 +extern char * ((__fcvt_1442) (double ____value_1438, int ____ndigit_1439, int * __restrict ____decpt_1440, int * __restrict ____sign_1441));// L817:L818 +extern char * ((__fcvt_1443) (double ____value_1438, int ____ndigit_1439, int * __restrict ____decpt_1440, int * __restrict ____sign_1441));// L817:L818 +extern char * ((__gcvt_1447) (double ____value_1444, int ____ndigit_1445, char * (____buf_1446)));// L823:L824 +extern char * ((__gcvt_1448) (double ____value_1444, int ____ndigit_1445, char * (____buf_1446)));// L823:L824 +extern char * ((__qecvt_1453) (long double ____value_1449, int ____ndigit_1450, int * __restrict ____decpt_1451, int * __restrict ____sign_1452));// L829:L831 +extern char * ((__qecvt_1454) (long double ____value_1449, int ____ndigit_1450, int * __restrict ____decpt_1451, int * __restrict ____sign_1452));// L829:L831 +extern char * ((__qfcvt_1459) (long double ____value_1455, int ____ndigit_1456, int * __restrict ____decpt_1457, int * __restrict ____sign_1458));// L832:L834 +extern char * ((__qfcvt_1460) (long double ____value_1455, int ____ndigit_1456, int * __restrict ____decpt_1457, int * __restrict ____sign_1458));// L832:L834 +extern char * ((__qgcvt_1464) (long double ____value_1461, int ____ndigit_1462, char * (____buf_1463)));// L835:L836 +extern char * ((__qgcvt_1465) (long double ____value_1461, int ____ndigit_1462, char * (____buf_1463)));// L835:L836 +extern int (__ecvt_r_1472) (double ____value_1466, int ____ndigit_1467, int * __restrict ____decpt_1468, int * __restrict ____sign_1469, char * __restrict ____buf_1470, __size_t_1 ____len_1471);// L841:L843 +extern int (__fcvt_r_1479) (double ____value_1473, int ____ndigit_1474, int * __restrict ____decpt_1475, int * __restrict ____sign_1476, char * __restrict ____buf_1477, __size_t_1 ____len_1478);// L844:L846 +extern int (__qecvt_r_1486) (long double ____value_1480, int ____ndigit_1481, int * __restrict ____decpt_1482, int * __restrict ____sign_1483, char * __restrict ____buf_1484, __size_t_1 ____len_1485);// L848:L851 +extern int (__qfcvt_r_1493) (long double ____value_1487, int ____ndigit_1488, int * __restrict ____decpt_1489, int * __restrict ____sign_1490, char * __restrict ____buf_1491, __size_t_1 ____len_1492);// L852:L855 +extern int (__mblen_1496) (const char * (____s_1494), __size_t_1 ____n_1495);// L862 +extern int (__mblen_1497) (const char * (____s_1494), __size_t_1 ____n_1495);// L862 +extern int (__mbtowc_1501) (__wchar_t_1018 * __restrict ____pwc_1498, const char * __restrict ____s_1499, __size_t_1 ____n_1500);// L865:L866 +extern int (__wctomb_1504) (char * (____s_1502), __wchar_t_1018 ____wchar_1503);// L869 +extern __size_t_1 (__mbstowcs_1508) (__wchar_t_1018 * __restrict ____pwcs_1505, const char * __restrict ____s_1506, __size_t_1 ____n_1507);// L873:L874 +extern __size_t_1 (__wcstombs_1512) (char * __restrict ____s_1509, const __wchar_t_1018 * __restrict ____pwcs_1510, __size_t_1 ____n_1511);// L876:L878 +extern int (__rpmatch_1515) (const char * (____response_1513));// L887 +extern int (__rpmatch_1514) (const char * (____response_1513));// L887 +extern int (__getsubopt_1520) (char * (* __restrict ____optionp_1516), char * const * __restrict ____tokens_1517, char * (* __restrict ____valuep_1518));// L898:L901 +extern int (__getsubopt_1519) (char * (* __restrict ____optionp_1516), char * const * __restrict ____tokens_1517, char * (* __restrict ____valuep_1518));// L898:L901 +extern int (__getloadavg_1523) (double ____loadavg_1521[], int ____nelem_1522);// L950:L951 /* no function due to type errors in the function prototype */ -extern char * ((____realpath_chk_1931) (const char * __restrict ____name_1927, char * __restrict ____resolved_1928, __size_t_1 ____resolvedlen_1929));// L23:L25 -extern char * ((____realpath_chk_1932) (const char * __restrict ____name_1927, char * __restrict ____resolved_1928, __size_t_1093 ____resolvedlen_1930));// L23:L25 -extern char * ((____realpath_alias_1935) (const char * __restrict ____name_1933, char * __restrict ____resolved_1934));// L26:L28 -extern char * ((____realpath_chk_warn_1940) (const char * __restrict ____name_1936, char * __restrict ____resolved_1937, __size_t_1 ____resolvedlen_1938));// L29:L34 -extern char * ((____realpath_chk_warn_1941) (const char * __restrict ____name_1936, char * __restrict ____resolved_1937, __size_t_1093 ____resolvedlen_1939));// L29:L34 +extern char * ((____realpath_chk_1528) (const char * __restrict ____name_1525, char * __restrict ____resolved_1526, __size_t_1 ____resolvedlen_1527));// L23:L25 +extern char * ((____realpath_alias_1531) (const char * __restrict ____name_1529, char * __restrict ____resolved_1530));// L26:L28 +extern char * ((____realpath_chk_warn_1535) (const char * __restrict ____name_1532, char * __restrict ____resolved_1533, __size_t_1 ____resolvedlen_1534));// L29:L34 /* no function due to type errors in the function prototype */ -extern int (____ptsname_r_chk_1951) (int ____fd_1945, char * (____buf_1946), __size_t_1 ____buflen_1947, __size_t_1 ____nreal_1949);// L52:L53 -extern int (____ptsname_r_chk_1952) (int ____fd_1945, char * (____buf_1946), __size_t_1093 ____buflen_1948, __size_t_1093 ____nreal_1950);// L52:L53 -extern int (____ptsname_r_alias_1957) (int ____fd_1953, char * (____buf_1954), __size_t_1 ____buflen_1955);// L54:L56 -extern int (____ptsname_r_alias_1958) (int ____fd_1953, char * (____buf_1954), __size_t_1093 ____buflen_1956);// L54:L56 -extern int (____ptsname_r_chk_warn_1965) (int ____fd_1959, char * (____buf_1960), __size_t_1 ____buflen_1961, __size_t_1 ____nreal_1963);// L57:L61 -extern int (____ptsname_r_chk_warn_1966) (int ____fd_1959, char * (____buf_1960), __size_t_1093 ____buflen_1962, __size_t_1093 ____nreal_1964);// L57:L61 +extern int (____ptsname_r_chk_1543) (int ____fd_1539, char * (____buf_1540), __size_t_1 ____buflen_1541, __size_t_1 ____nreal_1542);// L52:L53 +extern int (____ptsname_r_alias_1547) (int ____fd_1544, char * (____buf_1545), __size_t_1 ____buflen_1546);// L54:L56 +extern int (____ptsname_r_chk_warn_1552) (int ____fd_1548, char * (____buf_1549), __size_t_1 ____buflen_1550, __size_t_1 ____nreal_1551);// L57:L61 /* no function due to type errors in the function prototype */ -extern int (____wctomb_chk_1977) (char * (____s_1973), __wchar_t_1094 ____wchar_1974, __size_t_1 ____buflen_1975);// L77:L78 -extern int (____wctomb_chk_1978) (char * (____s_1973), __wchar_t_1094 ____wchar_1974, __size_t_1093 ____buflen_1976);// L77:L78 -extern int (____wctomb_alias_1981) (char * (____s_1979), __wchar_t_1094 ____wchar_1980);// L79:L80 +extern int (____wctomb_chk_1560) (char * (____s_1557), __wchar_t_1018 ____wchar_1558, __size_t_1 ____buflen_1559);// L77:L78 +extern int (____wctomb_alias_1563) (char * (____s_1561), __wchar_t_1018 ____wchar_1562);// L79:L80 /* no function due to type errors in the function prototype */ -extern __size_t_1 (____mbstowcs_chk_1990) (__wchar_t_1094 * __restrict ____dst_1984, const char * __restrict ____src_1985, __size_t_1 ____len_1986, __size_t_1 ____dstlen_1988);// L98:L100 -extern __size_t_1093 (____mbstowcs_chk_1991) (__wchar_t_1094 * __restrict ____dst_1984, const char * __restrict ____src_1985, __size_t_1093 ____len_1987, __size_t_1093 ____dstlen_1989);// L98:L100 -extern __size_t_1 (____mbstowcs_alias_1996) (__wchar_t_1094 * __restrict ____dst_1992, const char * __restrict ____src_1993, __size_t_1 ____len_1994);// L101:L104 -extern __size_t_1093 (____mbstowcs_alias_1997) (__wchar_t_1094 * __restrict ____dst_1992, const char * __restrict ____src_1993, __size_t_1093 ____len_1995);// L101:L104 -extern __size_t_1 (____mbstowcs_chk_warn_2004) (__wchar_t_1094 * __restrict ____dst_1998, const char * __restrict ____src_1999, __size_t_1 ____len_2000, __size_t_1 ____dstlen_2002);// L105:L110 -extern __size_t_1093 (____mbstowcs_chk_warn_2005) (__wchar_t_1094 * __restrict ____dst_1998, const char * __restrict ____src_1999, __size_t_1093 ____len_2001, __size_t_1093 ____dstlen_2003);// L105:L110 +extern __size_t_1 (____mbstowcs_chk_1570) (__wchar_t_1018 * __restrict ____dst_1566, const char * __restrict ____src_1567, __size_t_1 ____len_1568, __size_t_1 ____dstlen_1569);// L98:L100 +extern __size_t_1 (____mbstowcs_alias_1574) (__wchar_t_1018 * __restrict ____dst_1571, const char * __restrict ____src_1572, __size_t_1 ____len_1573);// L101:L104 +extern __size_t_1 (____mbstowcs_chk_warn_1579) (__wchar_t_1018 * __restrict ____dst_1575, const char * __restrict ____src_1576, __size_t_1 ____len_1577, __size_t_1 ____dstlen_1578);// L105:L110 /* no function due to type errors in the function prototype */ -extern __size_t_1 (____wcstombs_chk_2016) (char * __restrict ____dst_2010, const __wchar_t_1094 * __restrict ____src_2011, __size_t_1 ____len_2012, __size_t_1 ____dstlen_2014);// L130:L132 -extern __size_t_1093 (____wcstombs_chk_2017) (char * __restrict ____dst_2010, const __wchar_t_1094 * __restrict ____src_2011, __size_t_1093 ____len_2013, __size_t_1093 ____dstlen_2015);// L130:L132 -extern __size_t_1 (____wcstombs_alias_2022) (char * __restrict ____dst_2018, const __wchar_t_1094 * __restrict ____src_2019, __size_t_1 ____len_2020);// L133:L136 -extern __size_t_1093 (____wcstombs_alias_2023) (char * __restrict ____dst_2018, const __wchar_t_1094 * __restrict ____src_2019, __size_t_1093 ____len_2021);// L133:L136 -extern __size_t_1 (____wcstombs_chk_warn_2030) (char * __restrict ____dst_2024, const __wchar_t_1094 * __restrict ____src_2025, __size_t_1 ____len_2026, __size_t_1 ____dstlen_2028);// L137:L141 -extern __size_t_1093 (____wcstombs_chk_warn_2031) (char * __restrict ____dst_2024, const __wchar_t_1094 * __restrict ____src_2025, __size_t_1093 ____len_2027, __size_t_1093 ____dstlen_2029);// L137:L141 +extern __size_t_1 (____wcstombs_chk_1587) (char * __restrict ____dst_1583, const __wchar_t_1018 * __restrict ____src_1584, __size_t_1 ____len_1585, __size_t_1 ____dstlen_1586);// L130:L132 +extern __size_t_1 (____wcstombs_alias_1591) (char * __restrict ____dst_1588, const __wchar_t_1018 * __restrict ____src_1589, __size_t_1 ____len_1590);// L133:L136 +extern __size_t_1 (____wcstombs_chk_warn_1596) (char * __restrict ____dst_1592, const __wchar_t_1018 * __restrict ____src_1593, __size_t_1 ____len_1594, __size_t_1 ____dstlen_1595);// L137:L141 /* no function due to type errors in the function prototype */ -void (__sendHeaders_2040) (int __responseNum_2037) { +void (__sendHeaders_1604) (int __responseNum_1601) { -if (__static_condition_default_2042) { +if (__static_condition_default_1606) { { { -long long __total_2038= 10LL;// L16 +long long __total_1602= 10LL;// L16 -long __total_2039= 10L;// L18 +long __total_1603= 10L;// L18 -if (__static_condition_default_2043) { - __printf_421 ("%ld\r\n", __total_2038 ) ; // L21 +if (__static_condition_default_1607) { + __printf_383 ("%ld\r\n", __total_1602 ) ; // L21 } -if (__static_condition_default_2044) { - __printf_421 ("%ld\r\n", __total_2039 ) ; // L21 -} -if (__static_condition_default_2045) { -__static_type_error("type error") ; // L21 +if (__static_condition_default_1608) { + __printf_383 ("%ld\r\n", __total_1603 ) ; // L21 } } } @@ -2917,27 +1974,24 @@ __static_type_error("type error") ; // L21 } } -void (__sendHeaders_2041) (int __responseNum_2037) { +void (__sendHeaders_1605) (int __responseNum_1601) { -if (__static_condition_default_2046) { +if (__static_condition_default_1609) { { { -long long __total_2038= 10LL;// L16 +long long __total_1602= 10LL;// L16 -long __total_2039= 10L;// L18 +long __total_1603= 10L;// L18 -if (__static_condition_default_2047) { - __printf_421 ("%ld\r\n", __total_2038 ) ; // L21 -} -if (__static_condition_default_2048) { - __printf_421 ("%ld\r\n", __total_2039 ) ; // L21 +if (__static_condition_default_1610) { + __printf_383 ("%ld\r\n", __total_1602 ) ; // L21 } -if (__static_condition_default_2049) { -__static_type_error("type error") ; // L21 +if (__static_condition_default_1611) { + __printf_383 ("%ld\r\n", __total_1603 ) ; // L21 } } } @@ -2945,30 +1999,30 @@ __static_type_error("type error") ; // L21 } } -void (__handleIncoming_2055) (const char * (__request_2050)) { +void (__handleIncoming_1617) (const char * (__request_1612)) { { -if (__static_condition_default_2056) { +if (__static_condition_default_1618) { { { -int __random_2051= rand( ) % 2;// L27 +int __random_1613= rand( ) % 2;// L27 -if (__static_condition_default_2052) { +if (__static_condition_default_1614) { __static_type_error("invalid declaration of random under this presence condition"); } -int __http_unauthorized_2053= __random_2051 ;// L28 +int __http_unauthorized_1615= __random_1613 ;// L28 -if (__static_condition_default_2054) { +if (__static_condition_default_1616) { __static_type_error("invalid declaration of http_unauthorized under this presence condition"); } -if (__static_condition_default_2057) { -if ( __http_unauthorized_2053 )// L30 +if (__static_condition_default_1619) { +if ( __http_unauthorized_1615 )// L30 { { @@ -2976,12 +2030,12 @@ if ( __http_unauthorized_2053 )// L30 - __sendHeaders_2040 (401) ; // L31 + __sendHeaders_1604 (401) ; // L31 } } } } -if (__static_condition_default_2058) { +if (__static_condition_default_1620) { __static_type_error("invalid type found in if statement"); } } @@ -2990,27 +2044,27 @@ __static_type_error("invalid type found in if statement"); } -if (__static_condition_default_2059) { +if (__static_condition_default_1621) { { { -int __random_2051= rand( ) % 2;// L27 +int __random_1613= rand( ) % 2;// L27 -if (__static_condition_default_2052) { +if (__static_condition_default_1614) { __static_type_error("invalid declaration of random under this presence condition"); } -int __http_unauthorized_2053= __random_2051 ;// L28 +int __http_unauthorized_1615= __random_1613 ;// L28 -if (__static_condition_default_2054) { +if (__static_condition_default_1616) { __static_type_error("invalid declaration of http_unauthorized under this presence condition"); } -if (__static_condition_default_2060) { -if ( __http_unauthorized_2053 )// L30 +if (__static_condition_default_1622) { +if ( __http_unauthorized_1615 )// L30 { { @@ -3018,16 +2072,16 @@ if ( __http_unauthorized_2053 )// L30 - __sendHeaders_2041 (401) ; // L31 + __sendHeaders_1605 (401) ; // L31 } } } } -if (__static_condition_default_2061) { +if (__static_condition_default_1623) { __static_type_error("invalid type found in if statement"); } -if (__static_condition_default_2062) { -if ( __request_2050 != __request_GET_2036 )// L36 +if (__static_condition_default_1624) { +if ( __request_1612 != __request_GET_1600 )// L36 { { @@ -3035,13 +2089,13 @@ if ( __request_2050 != __request_GET_2036 )// L36 - __sendHeaders_2041 (501) ; // L37 + __sendHeaders_1605 (501) ; // L37 } } } } -if (__static_condition_default_2063) { -if ( __request_2050 != __request_GET_2036 )// L36 +if (__static_condition_default_1625) { +if ( __request_1612 != __request_GET_1600 )// L36 { { @@ -3049,7 +2103,7 @@ if ( __request_2050 != __request_GET_2036 )// L36 - __sendHeaders_2041 (501) ; // L37 + __sendHeaders_1605 (501) ; // L37 } } } @@ -3061,16 +2115,16 @@ if ( __request_2050 != __request_GET_2036 )// L36 } }} -int (__main_2067) (int __argc_2064, char * (* (__argv_2065))) { +int (__main_1629) (int __argc_1626, char * (* (__argv_1627))) { { { -const char __request_2066[]= "POST";// L44 +const char __request_1628[]= "POST";// L44 - __handleIncoming_2055 ( __request_2066 ) ; // L45 + __handleIncoming_1617 ( __request_1628 ) ; // L45 return 0 ;// L46 } } diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.clangres index 9ac3944b..09796bc5 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.clangres @@ -4,4 +4,7 @@ char *iobuf = malloc(IOBUF_SIZE); /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.c:23:30: error: use of undeclared identifier 'HTTP_OK' mime_type = responseNum == HTTP_OK ? "application/octet-stream" : "text/html"; ^ -2 errors generated. +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.c:35:7: error: use of undeclared identifier 'content_gzip' + if (content_gzip) + ^ +3 errors generated. diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c index 706c3650..6e45f400 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c @@ -7,427 +7,301 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_412; -extern const bool __static_condition_default_1568; -extern const bool __static_condition_default_2064; -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_2445; -extern const bool __static_condition_default_419; -extern const bool __static_condition_default_2415; -extern const bool __static_condition_default_2322; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_747; -extern const bool __static_condition_default_2389; -extern const bool __static_condition_default_956; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_1017; +extern const bool __static_condition_default_1834; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_774; +extern const bool __static_condition_default_451; +extern const bool __static_condition_default_1847; +extern const bool __static_condition_default_1842; +extern const bool __static_condition_default_320; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_343; +extern const bool __static_condition_default_1917; +extern const bool __static_condition_default_300; +extern const bool __static_condition_default_1899; +extern const bool __static_condition_default_496; +extern const bool __static_condition_default_579; +extern const bool __static_condition_default_766; +extern const bool __static_condition_default_495; +extern const bool __static_condition_default_882; +extern const bool __static_condition_default_1893; +extern const bool __static_condition_default_1407; +extern const bool __static_condition_default_961; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_254; +extern const bool __static_condition_default_470; +extern const bool __static_condition_default_983; +extern const bool __static_condition_default_304; +extern const bool __static_condition_default_1430; +extern const bool __static_condition_default_1895; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_1384; +extern const bool __static_condition_default_517; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_1848; +extern const bool __static_condition_default_448; +extern const bool __static_condition_default_118; +extern const bool __static_condition_default_898; +extern const bool __static_condition_default_1896; +extern const bool __static_condition_default_641; +extern const bool __static_condition_default_833; +extern const bool __static_condition_default_1167; +extern const bool __static_condition_default_459; +extern const bool __static_condition_default_234; +extern const bool __static_condition_default_1868; +extern const bool __static_condition_default_1432; +extern const bool __static_condition_default_1874; +extern const bool __static_condition_default_1606; +extern const bool __static_condition_default_421; +extern const bool __static_condition_default_551; +extern const bool __static_condition_default_501; +extern const bool __static_condition_default_1835; +extern const bool __static_condition_default_308; +extern const bool __static_condition_default_889; +extern const bool __static_condition_default_1844; +extern const bool __static_condition_default_1892; +extern const bool __static_condition_default_718; +extern const bool __static_condition_default_680; +extern const bool __static_condition_default_379; +extern const bool __static_condition_default_1818; extern const bool __static_condition_default_235; -extern const bool __static_condition_default_1377; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_2417; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_1385; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_957; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_457; +extern const bool __static_condition_default_318; +extern const bool __static_condition_default_696; +extern const bool __static_condition_default_332; +extern const bool __static_condition_default_1902; +extern const bool __static_condition_default_256; +extern const bool __static_condition_default_1871; +extern const bool __static_condition_default_429; +extern const bool __static_condition_default_374; +extern const bool __static_condition_default_507; +extern const bool __static_condition_default_567; +extern const bool __static_condition_default_941; +extern const bool __static_condition_default_707; +extern const bool __static_condition_default_400; +extern const bool __static_condition_default_1890; +extern const bool __static_condition_default_1904; +extern const bool __static_condition_default_935; +extern const bool __static_condition_default_1852; +extern const bool __static_condition_default_500; +extern const bool __static_condition_default_739; +extern const bool __static_condition_default_639; +extern const bool __static_condition_default_798; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_790; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_1908; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_1006; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_1877; +extern const bool __static_condition_default_232; +extern const bool __static_condition_default_370; +extern const bool __static_condition_default_1845; +extern const bool __static_condition_default_1426; +extern const bool __static_condition_default_326; +extern const bool __static_condition_default_508; +extern const bool __static_condition_default_1860; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_1905; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_1850; +extern const bool __static_condition_default_627; +extern const bool __static_condition_default_533; +extern const bool __static_condition_default_161; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_772; +extern const bool __static_condition_default_226; +extern const bool __static_condition_default_794; +extern const bool __static_condition_default_642; +extern const bool __static_condition_default_648; +extern const bool __static_condition_default_820; +extern const bool __static_condition_default_1778; +extern const bool __static_condition_default_1872; +extern const bool __static_condition_default_1856; +extern const bool __static_condition_default_1859; +extern const bool __static_condition_default_603; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_294; +extern const bool __static_condition_default_870; +extern const bool __static_condition_default_330; +extern const bool __static_condition_default_165; +extern const bool __static_condition_default_482; +extern const bool __static_condition_default_716; +extern const bool __static_condition_default_992; +extern const bool __static_condition_default_976; extern const bool __static_condition_default_1405; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_2479; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_512; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_693; -extern const bool __static_condition_default_1458; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_217; -extern const bool __static_condition_default_559; -extern const bool __static_condition_default_883; +extern const bool __static_condition_default_381; +extern const bool __static_condition_default_1398; +extern const bool __static_condition_default_969; +extern const bool __static_condition_default_540; +extern const bool __static_condition_default_968; +extern const bool __static_condition_default_227; +extern const bool __static_condition_default_310; +extern const bool __static_condition_default_577; +extern const bool __static_condition_default_1785; +extern const bool __static_condition_default_349; +extern const bool __static_condition_default_225; +extern const bool __static_condition_default_502; +extern const bool __static_condition_default_1836; +extern const bool __static_condition_default_1910; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_1838; +extern const bool __static_condition_default_1604; +extern const bool __static_condition_default_595; +extern const bool __static_condition_default_948; +extern const bool __static_condition_default_1864; +extern const bool __static_condition_default_1798; +extern const bool __static_condition_default_1863; +extern const bool __static_condition_default_336; extern const bool __static_condition_default_249; -extern const bool __static_condition_default_1341; -extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_583; -extern const bool __static_condition_default_685; -extern const bool __static_condition_default_2396; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_2427; -extern const bool __static_condition_default_1361; -extern const bool __static_condition_default_1515; -extern const bool __static_condition_default_2463; -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_431; -extern const bool __static_condition_default_1774; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_1395; -extern const bool __static_condition_default_842; -extern const bool __static_condition_default_1556; -extern const bool __static_condition_default_2408; -extern const bool __static_condition_default_929; -extern const bool __static_condition_default_1773; -extern const bool __static_condition_default_198; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_2451; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_2431; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_2420; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_2406; +extern const bool __static_condition_default_588; +extern const bool __static_condition_default_358; +extern const bool __static_condition_default_684; extern const bool __static_condition_default_395; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_2449; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_1152; -extern const bool __static_condition_default_2418; -extern const bool __static_condition_default_1428; -extern const bool __static_condition_default_2429; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_1373; -extern const bool __static_condition_default_1532; -extern const bool __static_condition_default_2407; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_1791; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_461; -extern const bool __static_condition_default_2456; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_2044; +extern const bool __static_condition_default_1907; +extern const bool __static_condition_default_236; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_881; +extern const bool __static_condition_default_1382; +extern const bool __static_condition_default_1851; +extern const bool __static_condition_default_556; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_586; +extern const bool __static_condition_default_729; extern const bool __static_condition_default_788; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_1785; -extern const bool __static_condition_default_1453; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_2377; -extern const bool __static_condition_default_1753; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_438; -extern const bool __static_condition_default_590; -extern const bool __static_condition_default_701; +extern const bool __static_condition_default_1906; +extern const bool __static_condition_default_1900; +extern const bool __static_condition_default_906; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_328; +extern const bool __static_condition_default_610; extern const bool __static_condition_default_768; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_2416; -extern const bool __static_condition_default_1369; -extern const bool __static_condition_default_2464; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_2320; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_2457; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_53; -extern const bool __static_condition_default_1560; -extern const bool __static_condition_default_2376; -extern const bool __static_condition_default_1416; -extern const bool __static_condition_default_2467; -extern const bool __static_condition_default_2452; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_382; -extern const bool __static_condition_default_2460; -extern const bool __static_condition_default_613; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_2409; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_709; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_1159; -extern const bool __static_condition_default_2046; -extern const bool __static_condition_default_1552; -extern const bool __static_condition_default_2387; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_1485; -extern const bool __static_condition_default_1576; -extern const bool __static_condition_default_2413; -extern const bool __static_condition_default_963; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_2458; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_2434; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_891; -extern const bool __static_condition_default_848; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_2350; -extern const bool __static_condition_default_2412; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_1849; extern const bool __static_condition_default_745; -extern const bool __static_condition_default_1349; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_2381; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_248; -extern const bool __static_condition_default_388; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_2461; -extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_2472; -extern const bool __static_condition_default_2063; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_1357; -extern const bool __static_condition_default_2477; -extern const bool __static_condition_default_1391; -extern const bool __static_condition_default_536; -extern const bool __static_condition_default_2062; -extern const bool __static_condition_default_408; -extern const bool __static_condition_default_769; -extern const bool __static_condition_default_875; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_1489; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_638; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_789; -extern const bool __static_condition_default_955; -extern const bool __static_condition_default_564; -extern const bool __static_condition_default_402; -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_2455; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_2453; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_204; -extern const bool __static_condition_default_549; -extern const bool __static_condition_default_315; -extern const bool __static_condition_default_347; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_2388; -extern const bool __static_condition_default_317; -extern const bool __static_condition_default_1165; -extern const bool __static_condition_default_2351; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_753; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_645; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_2465; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_670; +extern const bool __static_condition_default_688; +extern const bool __static_condition_default_1846; +extern const bool __static_condition_default_1903; extern const bool __static_condition_default_661; -extern const bool __static_condition_default_1749; -extern const bool __static_condition_default_1816; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_2401; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_1869; +extern const bool __static_condition_default_933; +extern const bool __static_condition_default_1811; +extern const bool __static_condition_default_1866; +extern const bool __static_condition_default_1898; +extern const bool __static_condition_default_905; +extern const bool __static_condition_default_1861; +extern const bool __static_condition_default_528; +extern const bool __static_condition_default_1916; +extern const bool __static_condition_default_74; +extern const bool __static_condition_default_706; +extern const bool __static_condition_default_1605; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_446; +extern const bool __static_condition_default_962; +extern const bool __static_condition_default_672; +extern const bool __static_condition_default_453; +extern const bool __static_condition_default_719; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_1837; +extern const bool __static_condition_default_977; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_1875; +extern const bool __static_condition_default_1901; +extern const bool __static_condition_default_931; +extern const bool __static_condition_default_1858; extern const bool __static_condition_default_473; -extern const bool __static_condition_default_380; -extern const bool __static_condition_default_1787; -extern const bool __static_condition_default_2430; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_187; -extern const bool __static_condition_default_488; -extern const bool __static_condition_default_2410; -extern const bool __static_condition_default_2448; -extern const bool __static_condition_default_521; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_542; +extern const bool __static_condition_default_893; +extern const bool __static_condition_default_1897; +extern const bool __static_condition_default_1839; +extern const bool __static_condition_default_435; +extern const bool __static_condition_default_749; +extern const bool __static_condition_default_954; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_917; +extern const bool __static_condition_default_1615; +extern const bool __static_condition_default_575; +extern const bool __static_condition_default_1867; +extern const bool __static_condition_default_162; +extern const bool __static_condition_default_474; +extern const bool __static_condition_default_605; +extern const bool __static_condition_default_626; +extern const bool __static_condition_default_1854; +extern const bool __static_condition_default_394; +extern const bool __static_condition_default_694; +extern const bool __static_condition_default_953; +extern const bool __static_condition_default_1841; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_449; +extern const bool __static_condition_default_1862; +extern const bool __static_condition_default_338; +extern const bool __static_condition_default_351; +extern const bool __static_condition_default_695; +extern const bool __static_condition_default_714; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_1539; +extern const bool __static_condition_default_612; +extern const bool __static_condition_default_1891; +extern const bool __static_condition_default_778; +extern const bool __static_condition_default_784; +extern const bool __static_condition_default_276; +extern const bool __static_condition_default_720; +extern const bool __static_condition_default_1865; +extern const bool __static_condition_default_640; +extern const bool __static_condition_default_1876; +extern const bool __static_condition_default_562; +extern const bool __static_condition_default_1793; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_804; +extern const bool __static_condition_default_1855; +extern const bool __static_condition_default_855; +extern const bool __static_condition_default_296; extern const bool __static_condition_default_686; -extern const bool __static_condition_default_2468; -extern const bool __static_condition_default_2043; -extern const bool __static_condition_default_2329; -extern const bool __static_condition_default_858; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_2432; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_1402; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_290; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_1353; -extern const bool __static_condition_default_2414; -extern const bool __static_condition_default_386; -extern const bool __static_condition_default_803; -extern const bool __static_condition_default_2349; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_2425; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_702; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_2411; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_2424; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_846; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_632; -extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_1873; +extern const bool __static_condition_default_1915; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_1870; +extern const bool __static_condition_default_624; +extern const bool __static_condition_default_1397; +extern const bool __static_condition_default_1424; +extern const bool __static_condition_default_1889; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_1794; extern const bool __static_condition_default_511; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_2314; -extern const bool __static_condition_default_2433; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_2454; -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_2446; -extern const bool __static_condition_default_1775; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_779; -extern const bool __static_condition_default_2450; -extern const bool __static_condition_default_2423; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_793; -extern const bool __static_condition_default_872; -extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_2466; -extern const bool __static_condition_default_2313; -extern const bool __static_condition_default_1459; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_1750; -extern const bool __static_condition_default_1365; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_2421; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_2459; -extern const bool __static_condition_default_887; -extern const bool __static_condition_default_646; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_1315; -extern const bool __static_condition_default_2478; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_1498; -extern const bool __static_condition_default_333; -extern const bool __static_condition_default_761; -extern const bool __static_condition_default_2426; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_1398; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_1420; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_1016; +extern const bool __static_condition_default_480; +extern const bool __static_condition_default_984; +extern const bool __static_condition_default_1857; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_1840; +extern const bool __static_condition_default_1843; +extern const bool __static_condition_default_743; extern const bool __static_condition_default_1814; -extern const bool __static_condition_default_2342; -extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_1424; -extern const bool __static_condition_default_2045; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_780; -extern const bool __static_condition_default_2469; -extern const bool __static_condition_default_393; -extern const bool __static_condition_default_543; -extern const bool __static_condition_default_2330; -extern const bool __static_condition_default_1789; -extern const bool __static_condition_default_1808; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_2312; -extern const bool __static_condition_default_568; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_2470; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_2422; -extern const bool __static_condition_default_787; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_1436; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_357; -extern const bool __static_condition_default_1944; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_311; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_1516; -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_76; +extern const bool __static_condition_default_904; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_1894; +extern const bool __static_condition_default_733; +extern const bool __static_condition_default_924; +extern const bool __static_condition_default_1853; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_356; +extern const bool __static_condition_default_762; +extern const bool __static_condition_default_230; extern const bool __static_condition_default_649; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_1810; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_755; -extern const bool __static_condition_default_1432; -extern const bool __static_condition_default_1572; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_1381; -extern const bool __static_condition_default_1345; -extern const bool __static_condition_default_2462; -extern const bool __static_condition_default_677; -extern const bool __static_condition_default_1564; -extern const bool __static_condition_default_2428; -extern const bool __static_condition_default_1754; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_914; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_1776; -extern const bool __static_condition_default_1475; -extern const bool __static_condition_default_894; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_313; -extern const bool __static_condition_default_907; -extern const bool __static_condition_default_2378; -extern const bool __static_condition_default_367; -extern const bool __static_condition_default_2328; -extern const bool __static_condition_default_1164; -extern const bool __static_condition_default_2321; -extern const bool __static_condition_default_2419; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_2047; -extern const bool __static_condition_default_1388; -extern const bool __static_condition_default_1409; -extern const bool __static_condition_default_2343; -extern const bool __static_condition_default_1531; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_760; +extern const bool __static_condition_default_999; +extern const bool __static_condition_default_454; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_655; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -479,1248 +353,831 @@ __static_renaming("____ssize_t_49", "__ssize_t"); __static_renaming("____syscall_slong_t_50", "__syscall_slong_t"); __static_renaming("____syscall_ulong_t_51", "__syscall_ulong_t"); __static_renaming("____loff_t_52", "__loff_t"); -__static_renaming("____qaddr_t_54", "__qaddr_t"); -__static_renaming("____caddr_t_55", "__caddr_t"); -__static_renaming("____intptr_t_56", "__intptr_t"); -__static_renaming("____socklen_t_57", "__socklen_t"); -__static_renaming("__FILE_59", "FILE"); -__static_renaming("____FILE_60", "__FILE"); -__static_renaming("____mbstate_t_69", "__mbstate_t"); -__static_renaming("___G_fpos_t_77", "_G_fpos_t"); -__static_renaming("___G_fpos64_t_85", "_G_fpos64_t"); -__static_renaming("____gnuc_va_list_86", "__gnuc_va_list"); -__static_renaming("___IO_lock_t_88", "_IO_lock_t"); -__static_renaming("___IO_FILE_171", "_IO_FILE"); -__static_renaming("___IO_FILE_172", "_IO_FILE"); -__static_renaming("___IO_2_1_stdin__175", "_IO_2_1_stdin_"); -__static_renaming("___IO_2_1_stdout__176", "_IO_2_1_stdout_"); -__static_renaming("___IO_2_1_stderr__177", "_IO_2_1_stderr_"); -__static_renaming("____io_read_fn_181", "__io_read_fn"); -__static_renaming("____io_write_fn_186", "__io_write_fn"); -__static_renaming("____io_seek_fn_192", "__io_seek_fn"); -__static_renaming("____io_close_fn_195", "__io_close_fn"); -__static_renaming("____underflow_196", "__underflow"); -__static_renaming("____underflow_197", "__underflow"); -__static_renaming("____uflow_199", "__uflow"); -__static_renaming("____uflow_200", "__uflow"); -__static_renaming("____overflow_202", "__overflow"); -__static_renaming("____overflow_203", "__overflow"); -__static_renaming("___IO_getc_208", "_IO_getc"); -__static_renaming("___IO_getc_209", "_IO_getc"); -__static_renaming("___IO_putc_215", "_IO_putc"); -__static_renaming("___IO_putc_216", "_IO_putc"); -__static_renaming("___IO_feof_221", "_IO_feof"); -__static_renaming("___IO_feof_222", "_IO_feof"); -__static_renaming("___IO_ferror_227", "_IO_ferror"); -__static_renaming("___IO_ferror_228", "_IO_ferror"); -__static_renaming("___IO_peekc_locked_233", "_IO_peekc_locked"); -__static_renaming("___IO_peekc_locked_234", "_IO_peekc_locked"); -__static_renaming("___IO_flockfile_236", "_IO_flockfile"); -__static_renaming("___IO_flockfile_237", "_IO_flockfile"); -__static_renaming("___IO_funlockfile_239", "_IO_funlockfile"); -__static_renaming("___IO_funlockfile_240", "_IO_funlockfile"); -__static_renaming("___IO_ftrylockfile_242", "_IO_ftrylockfile"); -__static_renaming("___IO_ftrylockfile_243", "_IO_ftrylockfile"); -__static_renaming("___IO_vfscanf_245", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_247", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_251", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_252", "_IO_vfscanf"); -__static_renaming("___IO_vfprintf_254", "_IO_vfprintf"); -__static_renaming("___IO_vfprintf_256", "_IO_vfprintf"); -__static_renaming("___IO_vfprintf_260", "_IO_vfprintf"); -__static_renaming("___IO_padn_261", "_IO_padn"); -__static_renaming("___IO_padn_262", "_IO_padn"); -__static_renaming("___IO_sgetn_265", "_IO_sgetn"); -__static_renaming("___IO_sgetn_266", "_IO_sgetn"); -__static_renaming("___IO_seekoff_268", "_IO_seekoff"); -__static_renaming("___IO_seekoff_269", "_IO_seekoff"); -__static_renaming("___IO_seekpos_272", "_IO_seekpos"); -__static_renaming("___IO_seekpos_273", "_IO_seekpos"); -__static_renaming("___IO_free_backup_area_276", "_IO_free_backup_area"); -__static_renaming("___IO_free_backup_area_277", "_IO_free_backup_area"); -__static_renaming("__va_list_279", "va_list"); -__static_renaming("__off_t_281", "off_t"); -__static_renaming("__off_t_283", "off_t"); -__static_renaming("__ssize_t_285", "ssize_t"); -__static_renaming("__fpos_t_287", "fpos_t"); -__static_renaming("__fpos_t_289", "fpos_t"); -__static_renaming("__stdin_291", "stdin"); -__static_renaming("__stdin_292", "stdin"); -__static_renaming("__stdout_294", "stdout"); -__static_renaming("__stdout_295", "stdout"); -__static_renaming("__stderr_297", "stderr"); -__static_renaming("__stderr_298", "stderr"); -__static_renaming("__remove_301", "remove"); -__static_renaming("__rename_304", "rename"); -__static_renaming("__renameat_309", "renameat"); -__static_renaming("__tmpfile_310", "tmpfile"); -__static_renaming("__tmpfile_312", "tmpfile"); -__static_renaming("__tmpfile_314", "tmpfile"); -__static_renaming("__tmpfile_316", "tmpfile"); -__static_renaming("__tmpnam_319", "tmpnam"); -__static_renaming("__tmpnam_320", "tmpnam"); -__static_renaming("__tmpnam_r_322", "tmpnam_r"); -__static_renaming("__tmpnam_r_323", "tmpnam_r"); -__static_renaming("__tempnam_326", "tempnam"); -__static_renaming("__tempnam_327", "tempnam"); -__static_renaming("__fclose_330", "fclose"); -__static_renaming("__fclose_332", "fclose"); -__static_renaming("__fflush_336", "fflush"); -__static_renaming("__fflush_unlocked_340", "fflush_unlocked"); -__static_renaming("__fopen_344", "fopen"); -__static_renaming("__fopen_346", "fopen"); -__static_renaming("__fopen_354", "fopen"); -__static_renaming("__fopen_356", "fopen"); -__static_renaming("__freopen_362", "freopen"); -__static_renaming("__freopen_364", "freopen"); -__static_renaming("__freopen_366", "freopen"); -__static_renaming("__freopen_368", "freopen"); -__static_renaming("__fdopen_372", "fdopen"); -__static_renaming("__fdopen_374", "fdopen"); -__static_renaming("__fmemopen_379", "fmemopen"); -__static_renaming("__fmemopen_381", "fmemopen"); -__static_renaming("__open_memstream_385", "open_memstream"); -__static_renaming("__open_memstream_387", "open_memstream"); -__static_renaming("__setbuf_392", "setbuf"); -__static_renaming("__setbuf_394", "setbuf"); -__static_renaming("__setvbuf_401", "setvbuf"); -__static_renaming("__setbuffer_407", "setbuffer"); -__static_renaming("__setlinebuf_411", "setlinebuf"); -__static_renaming("__fprintf_416", "fprintf"); -__static_renaming("__fprintf_418", "fprintf"); -__static_renaming("__printf_421", "printf"); -__static_renaming("__sprintf_424", "sprintf"); -__static_renaming("__vfprintf_430", "vfprintf"); -__static_renaming("__vprintf_437", "vprintf"); -__static_renaming("__vsprintf_443", "vsprintf"); -__static_renaming("__snprintf_448", "snprintf"); -__static_renaming("__vsnprintf_454", "vsnprintf"); -__static_renaming("__vdprintf_460", "vdprintf"); -__static_renaming("__dprintf_464", "dprintf"); -__static_renaming("__fscanf_468", "fscanf"); -__static_renaming("__fscanf_470", "fscanf"); -__static_renaming("__fscanf_472", "fscanf"); -__static_renaming("__fscanf_474", "fscanf"); -__static_renaming("__scanf_477", "scanf"); -__static_renaming("__scanf_478", "scanf"); -__static_renaming("__sscanf_481", "sscanf"); -__static_renaming("__vfscanf_509", "vfscanf"); -__static_renaming("__vfscanf_513", "vfscanf"); -__static_renaming("__vscanf_520", "vscanf"); -__static_renaming("__vscanf_522", "vscanf"); -__static_renaming("__vsscanf_528", "vsscanf"); -__static_renaming("__fgetc_563", "fgetc"); -__static_renaming("__getc_567", "getc"); -__static_renaming("__getchar_569", "getchar"); -__static_renaming("__getc_unlocked_572", "getc_unlocked"); -__static_renaming("__getchar_unlocked_574", "getchar_unlocked"); -__static_renaming("__fgetc_unlocked_577", "fgetc_unlocked"); -__static_renaming("__fputc_582", "fputc"); -__static_renaming("__fputc_584", "fputc"); -__static_renaming("__putc_589", "putc"); -__static_renaming("__putchar_592", "putchar"); -__static_renaming("__fputc_unlocked_596", "fputc_unlocked"); -__static_renaming("__putc_unlocked_601", "putc_unlocked"); -__static_renaming("__putchar_unlocked_604", "putchar_unlocked"); -__static_renaming("__getw_607", "getw"); -__static_renaming("__putw_612", "putw"); -__static_renaming("__fgets_618", "fgets"); -__static_renaming("__fgets_620", "fgets"); -__static_renaming("__fgets_622", "fgets"); -__static_renaming("__fgets_624", "fgets"); -__static_renaming("____getdelim_631", "__getdelim"); -__static_renaming("____getdelim_635", "__getdelim"); -__static_renaming("__getdelim_644", "getdelim"); -__static_renaming("__getdelim_648", "getdelim"); -__static_renaming("__getline_656", "getline"); -__static_renaming("__getline_660", "getline"); -__static_renaming("__fputs_667", "fputs"); -__static_renaming("__fputs_669", "fputs"); -__static_renaming("__puts_672", "puts"); -__static_renaming("__ungetc_676", "ungetc"); -__static_renaming("__fseek_714", "fseek"); -__static_renaming("__fseek_716", "fseek"); -__static_renaming("__ftell_720", "ftell"); -__static_renaming("__ftell_722", "ftell"); -__static_renaming("__rewind_726", "rewind"); -__static_renaming("__fseeko_733", "fseeko"); -__static_renaming("__fseeko_744", "fseeko"); -__static_renaming("__ftello_750", "ftello"); -__static_renaming("__ftello_754", "ftello"); -__static_renaming("__ftello_758", "ftello"); -__static_renaming("__fgetpos_766", "fgetpos"); -__static_renaming("__fgetpos_778", "fgetpos"); -__static_renaming("__fsetpos_786", "fsetpos"); -__static_renaming("__fsetpos_790", "fsetpos"); -__static_renaming("__clearerr_796", "clearerr"); -__static_renaming("__feof_800", "feof"); -__static_renaming("__feof_802", "feof"); -__static_renaming("__ferror_806", "ferror"); -__static_renaming("__ferror_808", "ferror"); -__static_renaming("__clearerr_unlocked_812", "clearerr_unlocked"); -__static_renaming("__feof_unlocked_816", "feof_unlocked"); -__static_renaming("__feof_unlocked_818", "feof_unlocked"); -__static_renaming("__ferror_unlocked_822", "ferror_unlocked"); -__static_renaming("__ferror_unlocked_824", "ferror_unlocked"); -__static_renaming("__perror_827", "perror"); -__static_renaming("__perror_828", "perror"); -__static_renaming("__sys_nerr_829", "sys_nerr"); -__static_renaming("__sys_errlist_830", "sys_errlist"); -__static_renaming("__fileno_833", "fileno"); -__static_renaming("__fileno_835", "fileno"); -__static_renaming("__fileno_unlocked_839", "fileno_unlocked"); -__static_renaming("__fileno_unlocked_841", "fileno_unlocked"); -__static_renaming("__popen_845", "popen"); -__static_renaming("__popen_847", "popen"); -__static_renaming("__pclose_851", "pclose"); -__static_renaming("__ctermid_854", "ctermid"); -__static_renaming("__flockfile_857", "flockfile"); -__static_renaming("__ftrylockfile_861", "ftrylockfile"); -__static_renaming("__ftrylockfile_863", "ftrylockfile"); -__static_renaming("__funlockfile_867", "funlockfile"); -__static_renaming("____sprintf_chk_899", "__sprintf_chk"); -__static_renaming("____vsprintf_chk_906", "__vsprintf_chk"); -__static_renaming("____snprintf_chk_920", "__snprintf_chk"); -__static_renaming("____vsnprintf_chk_928", "__vsnprintf_chk"); -__static_renaming("____fprintf_chk_943", "__fprintf_chk"); -__static_renaming("____printf_chk_947", "__printf_chk"); -__static_renaming("____vfprintf_chk_954", "__vfprintf_chk"); -__static_renaming("____vprintf_chk_962", "__vprintf_chk"); -__static_renaming("____dprintf_chk_984", "__dprintf_chk"); -__static_renaming("____vdprintf_chk_990", "__vdprintf_chk"); -__static_renaming("____fgets_chk_1004", "__fgets_chk"); -__static_renaming("____fgets_chk_1006", "__fgets_chk"); -__static_renaming("____fgets_chk_1008", "__fgets_chk"); -__static_renaming("____fgets_alias_1014", "__fgets_alias"); -__static_renaming("____fgets_chk_warn_1021", "__fgets_chk_warn"); -__static_renaming("____cnt_1087", "__cnt"); -__static_renaming("____cptr_1088", "__cptr"); -__static_renaming("__ptrdiff_t_1092", "ptrdiff_t"); -__static_renaming("__size_t_1093", "size_t"); -__static_renaming("__wchar_t_1094", "wchar_t"); -__static_renaming("__idtype_t_1100", "idtype_t"); -__static_renaming("____u_char_1101", "__u_char"); -__static_renaming("____u_short_1102", "__u_short"); -__static_renaming("____u_int_1103", "__u_int"); -__static_renaming("____u_long_1104", "__u_long"); -__static_renaming("____int8_t_1105", "__int8_t"); -__static_renaming("____uint8_t_1106", "__uint8_t"); -__static_renaming("____int16_t_1107", "__int16_t"); -__static_renaming("____uint16_t_1108", "__uint16_t"); -__static_renaming("____int32_t_1109", "__int32_t"); -__static_renaming("____uint32_t_1110", "__uint32_t"); -__static_renaming("____int64_t_1111", "__int64_t"); -__static_renaming("____uint64_t_1112", "__uint64_t"); -__static_renaming("____quad_t_1113", "__quad_t"); -__static_renaming("____u_quad_t_1114", "__u_quad_t"); -__static_renaming("____dev_t_1115", "__dev_t"); -__static_renaming("____uid_t_1116", "__uid_t"); -__static_renaming("____gid_t_1117", "__gid_t"); -__static_renaming("____ino_t_1118", "__ino_t"); -__static_renaming("____ino64_t_1119", "__ino64_t"); -__static_renaming("____mode_t_1120", "__mode_t"); -__static_renaming("____nlink_t_1121", "__nlink_t"); -__static_renaming("____off_t_1122", "__off_t"); -__static_renaming("____off64_t_1123", "__off64_t"); -__static_renaming("____pid_t_1124", "__pid_t"); -__static_renaming("____fsid_t_1128", "__fsid_t"); -__static_renaming("____clock_t_1129", "__clock_t"); -__static_renaming("____rlim_t_1130", "__rlim_t"); -__static_renaming("____rlim64_t_1131", "__rlim64_t"); -__static_renaming("____id_t_1132", "__id_t"); -__static_renaming("____time_t_1133", "__time_t"); -__static_renaming("____useconds_t_1134", "__useconds_t"); -__static_renaming("____suseconds_t_1135", "__suseconds_t"); -__static_renaming("____daddr_t_1136", "__daddr_t"); -__static_renaming("____key_t_1137", "__key_t"); -__static_renaming("____clockid_t_1138", "__clockid_t"); -__static_renaming("____timer_t_1139", "__timer_t"); -__static_renaming("____blksize_t_1140", "__blksize_t"); -__static_renaming("____blkcnt_t_1141", "__blkcnt_t"); -__static_renaming("____blkcnt64_t_1142", "__blkcnt64_t"); -__static_renaming("____fsblkcnt_t_1143", "__fsblkcnt_t"); -__static_renaming("____fsblkcnt64_t_1144", "__fsblkcnt64_t"); -__static_renaming("____fsfilcnt_t_1145", "__fsfilcnt_t"); -__static_renaming("____fsfilcnt64_t_1146", "__fsfilcnt64_t"); -__static_renaming("____fsword_t_1147", "__fsword_t"); -__static_renaming("____ssize_t_1148", "__ssize_t"); -__static_renaming("____syscall_slong_t_1149", "__syscall_slong_t"); -__static_renaming("____syscall_ulong_t_1150", "__syscall_ulong_t"); -__static_renaming("____loff_t_1151", "__loff_t"); -__static_renaming("____qaddr_t_1153", "__qaddr_t"); -__static_renaming("____caddr_t_1154", "__caddr_t"); -__static_renaming("____intptr_t_1155", "__intptr_t"); -__static_renaming("____socklen_t_1156", "__socklen_t"); -__static_renaming("____bswap_32_1158", "__bswap_32"); -__static_renaming("____bswap_64_1162", "__bswap_64"); -__static_renaming("____bswap_64_1163", "__bswap_64"); -__static_renaming("____WAIT_STATUS_1185", "__WAIT_STATUS"); -__static_renaming("__div_t_1190", "div_t"); -__static_renaming("__ldiv_t_1195", "ldiv_t"); -__static_renaming("__lldiv_t_1200", "lldiv_t"); -__static_renaming("____ctype_get_mb_cur_max_1201", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1202", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1203", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1204", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1205", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1206", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1207", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1208", "__ctype_get_mb_cur_max"); -__static_renaming("__atof_1210", "atof"); -__static_renaming("__atof_1211", "atof"); -__static_renaming("__atoi_1213", "atoi"); -__static_renaming("__atoi_1214", "atoi"); -__static_renaming("__atol_1216", "atol"); -__static_renaming("__atol_1217", "atol"); -__static_renaming("__atoll_1219", "atoll"); -__static_renaming("__atoll_1220", "atoll"); -__static_renaming("__strtod_1223", "strtod"); -__static_renaming("__strtof_1226", "strtof"); -__static_renaming("__strtold_1229", "strtold"); -__static_renaming("__strtol_1233", "strtol"); -__static_renaming("__strtoul_1237", "strtoul"); -__static_renaming("__strtoq_1241", "strtoq"); -__static_renaming("__strtouq_1245", "strtouq"); -__static_renaming("__strtoll_1249", "strtoll"); -__static_renaming("__strtoll_1250", "strtoll"); -__static_renaming("__strtoull_1254", "strtoull"); -__static_renaming("__l64a_1259", "l64a"); -__static_renaming("__l64a_1260", "l64a"); -__static_renaming("__a64l_1262", "a64l"); -__static_renaming("__a64l_1263", "a64l"); -__static_renaming("____u_char_1264", "__u_char"); -__static_renaming("____u_short_1265", "__u_short"); -__static_renaming("____u_int_1266", "__u_int"); -__static_renaming("____u_long_1267", "__u_long"); -__static_renaming("____int8_t_1268", "__int8_t"); -__static_renaming("____uint8_t_1269", "__uint8_t"); -__static_renaming("____int16_t_1270", "__int16_t"); -__static_renaming("____uint16_t_1271", "__uint16_t"); -__static_renaming("____int32_t_1272", "__int32_t"); -__static_renaming("____uint32_t_1273", "__uint32_t"); -__static_renaming("____int64_t_1274", "__int64_t"); -__static_renaming("____uint64_t_1275", "__uint64_t"); -__static_renaming("____quad_t_1276", "__quad_t"); -__static_renaming("____u_quad_t_1277", "__u_quad_t"); -__static_renaming("____dev_t_1278", "__dev_t"); -__static_renaming("____uid_t_1279", "__uid_t"); -__static_renaming("____gid_t_1280", "__gid_t"); -__static_renaming("____ino_t_1281", "__ino_t"); -__static_renaming("____ino64_t_1282", "__ino64_t"); -__static_renaming("____mode_t_1283", "__mode_t"); -__static_renaming("____nlink_t_1284", "__nlink_t"); -__static_renaming("____off_t_1285", "__off_t"); -__static_renaming("____off64_t_1286", "__off64_t"); -__static_renaming("____pid_t_1287", "__pid_t"); -__static_renaming("____fsid_t_1291", "__fsid_t"); -__static_renaming("____clock_t_1292", "__clock_t"); -__static_renaming("____rlim_t_1293", "__rlim_t"); -__static_renaming("____rlim64_t_1294", "__rlim64_t"); -__static_renaming("____id_t_1295", "__id_t"); -__static_renaming("____time_t_1296", "__time_t"); -__static_renaming("____useconds_t_1297", "__useconds_t"); -__static_renaming("____suseconds_t_1298", "__suseconds_t"); -__static_renaming("____daddr_t_1299", "__daddr_t"); -__static_renaming("____key_t_1300", "__key_t"); -__static_renaming("____clockid_t_1301", "__clockid_t"); -__static_renaming("____timer_t_1302", "__timer_t"); -__static_renaming("____blksize_t_1303", "__blksize_t"); -__static_renaming("____blkcnt_t_1304", "__blkcnt_t"); -__static_renaming("____blkcnt64_t_1305", "__blkcnt64_t"); -__static_renaming("____fsblkcnt_t_1306", "__fsblkcnt_t"); -__static_renaming("____fsblkcnt64_t_1307", "__fsblkcnt64_t"); -__static_renaming("____fsfilcnt_t_1308", "__fsfilcnt_t"); -__static_renaming("____fsfilcnt64_t_1309", "__fsfilcnt64_t"); -__static_renaming("____fsword_t_1310", "__fsword_t"); -__static_renaming("____ssize_t_1311", "__ssize_t"); -__static_renaming("____syscall_slong_t_1312", "__syscall_slong_t"); -__static_renaming("____syscall_ulong_t_1313", "__syscall_ulong_t"); -__static_renaming("____loff_t_1314", "__loff_t"); -__static_renaming("____qaddr_t_1316", "__qaddr_t"); -__static_renaming("____caddr_t_1317", "__caddr_t"); -__static_renaming("____intptr_t_1318", "__intptr_t"); -__static_renaming("____socklen_t_1319", "__socklen_t"); -__static_renaming("__u_char_1320", "u_char"); -__static_renaming("__u_char_1321", "u_char"); -__static_renaming("__u_char_1322", "u_char"); -__static_renaming("__u_short_1323", "u_short"); -__static_renaming("__u_short_1324", "u_short"); -__static_renaming("__u_short_1325", "u_short"); -__static_renaming("__u_int_1326", "u_int"); -__static_renaming("__u_int_1327", "u_int"); -__static_renaming("__u_int_1328", "u_int"); -__static_renaming("__u_long_1329", "u_long"); -__static_renaming("__u_long_1330", "u_long"); -__static_renaming("__u_long_1331", "u_long"); -__static_renaming("__quad_t_1332", "quad_t"); -__static_renaming("__quad_t_1333", "quad_t"); -__static_renaming("__quad_t_1334", "quad_t"); -__static_renaming("__u_quad_t_1335", "u_quad_t"); -__static_renaming("__u_quad_t_1336", "u_quad_t"); -__static_renaming("__u_quad_t_1337", "u_quad_t"); -__static_renaming("__fsid_t_1338", "fsid_t"); -__static_renaming("__fsid_t_1339", "fsid_t"); -__static_renaming("__fsid_t_1340", "fsid_t"); -__static_renaming("__loff_t_1342", "loff_t"); -__static_renaming("__loff_t_1343", "loff_t"); -__static_renaming("__loff_t_1344", "loff_t"); -__static_renaming("__loff_t_1346", "loff_t"); -__static_renaming("__loff_t_1347", "loff_t"); -__static_renaming("__loff_t_1348", "loff_t"); -__static_renaming("__ino_t_1350", "ino_t"); -__static_renaming("__ino_t_1351", "ino_t"); -__static_renaming("__ino_t_1352", "ino_t"); -__static_renaming("__ino_t_1354", "ino_t"); -__static_renaming("__ino_t_1355", "ino_t"); -__static_renaming("__ino_t_1356", "ino_t"); -__static_renaming("__dev_t_1358", "dev_t"); -__static_renaming("__dev_t_1359", "dev_t"); -__static_renaming("__dev_t_1360", "dev_t"); -__static_renaming("__gid_t_1362", "gid_t"); -__static_renaming("__gid_t_1363", "gid_t"); -__static_renaming("__gid_t_1364", "gid_t"); -__static_renaming("__gid_t_1366", "gid_t"); -__static_renaming("__gid_t_1367", "gid_t"); -__static_renaming("__gid_t_1368", "gid_t"); -__static_renaming("__mode_t_1370", "mode_t"); -__static_renaming("__mode_t_1371", "mode_t"); -__static_renaming("__mode_t_1372", "mode_t"); -__static_renaming("__nlink_t_1374", "nlink_t"); -__static_renaming("__nlink_t_1375", "nlink_t"); -__static_renaming("__nlink_t_1376", "nlink_t"); -__static_renaming("__uid_t_1378", "uid_t"); -__static_renaming("__uid_t_1379", "uid_t"); -__static_renaming("__uid_t_1380", "uid_t"); -__static_renaming("__uid_t_1382", "uid_t"); -__static_renaming("__uid_t_1383", "uid_t"); -__static_renaming("__uid_t_1384", "uid_t"); -__static_renaming("__off_t_1386", "off_t"); -__static_renaming("__off_t_1387", "off_t"); -__static_renaming("__off_t_1389", "off_t"); -__static_renaming("__off_t_1390", "off_t"); -__static_renaming("__pid_t_1392", "pid_t"); -__static_renaming("__pid_t_1393", "pid_t"); -__static_renaming("__pid_t_1394", "pid_t"); -__static_renaming("__pid_t_1396", "pid_t"); -__static_renaming("__pid_t_1397", "pid_t"); -__static_renaming("__id_t_1399", "id_t"); -__static_renaming("__id_t_1400", "id_t"); -__static_renaming("__id_t_1401", "id_t"); -__static_renaming("__ssize_t_1403", "ssize_t"); -__static_renaming("__ssize_t_1404", "ssize_t"); -__static_renaming("__daddr_t_1406", "daddr_t"); -__static_renaming("__daddr_t_1407", "daddr_t"); -__static_renaming("__daddr_t_1408", "daddr_t"); -__static_renaming("__caddr_t_1410", "caddr_t"); -__static_renaming("__caddr_t_1411", "caddr_t"); -__static_renaming("__caddr_t_1412", "caddr_t"); -__static_renaming("__key_t_1413", "key_t"); -__static_renaming("__key_t_1414", "key_t"); -__static_renaming("__key_t_1415", "key_t"); -__static_renaming("__key_t_1417", "key_t"); -__static_renaming("__key_t_1418", "key_t"); -__static_renaming("__key_t_1419", "key_t"); -__static_renaming("__clock_t_1421", "clock_t"); -__static_renaming("__clock_t_1422", "clock_t"); -__static_renaming("__clock_t_1423", "clock_t"); -__static_renaming("__time_t_1425", "time_t"); -__static_renaming("__time_t_1426", "time_t"); -__static_renaming("__time_t_1427", "time_t"); -__static_renaming("__clockid_t_1429", "clockid_t"); -__static_renaming("__clockid_t_1430", "clockid_t"); -__static_renaming("__clockid_t_1431", "clockid_t"); -__static_renaming("__timer_t_1433", "timer_t"); -__static_renaming("__timer_t_1434", "timer_t"); -__static_renaming("__timer_t_1435", "timer_t"); -__static_renaming("__ulong_1437", "ulong"); -__static_renaming("__ulong_1438", "ulong"); -__static_renaming("__ulong_1439", "ulong"); -__static_renaming("__ushort_1440", "ushort"); -__static_renaming("__uint_1441", "uint"); -__static_renaming("__int8_t_1442", "int8_t"); -__static_renaming("__int16_t_1443", "int16_t"); -__static_renaming("__int32_t_1444", "int32_t"); -__static_renaming("__int64_t_1445", "int64_t"); -__static_renaming("__u_int8_t_1446", "u_int8_t"); -__static_renaming("__u_int16_t_1447", "u_int16_t"); -__static_renaming("__u_int32_t_1448", "u_int32_t"); -__static_renaming("__u_int64_t_1449", "u_int64_t"); -__static_renaming("__register_t_1450", "register_t"); -__static_renaming("____bswap_32_1452", "__bswap_32"); -__static_renaming("____bswap_64_1456", "__bswap_64"); -__static_renaming("____bswap_64_1457", "__bswap_64"); -__static_renaming("____sig_atomic_t_1460", "__sig_atomic_t"); -__static_renaming("____sigset_t_1464", "__sigset_t"); -__static_renaming("__sigset_t_1465", "sigset_t"); -__static_renaming("__suseconds_t_1486", "suseconds_t"); -__static_renaming("__suseconds_t_1487", "suseconds_t"); -__static_renaming("__suseconds_t_1488", "suseconds_t"); -__static_renaming("____fd_mask_1490", "__fd_mask"); -__static_renaming("____fd_mask_1491", "__fd_mask"); -__static_renaming("__fd_set_1499", "fd_set"); -__static_renaming("__fd_mask_1500", "fd_mask"); -__static_renaming("__fd_mask_1501", "fd_mask"); -__static_renaming("__select_1513", "select"); -__static_renaming("__select_1514", "select"); -__static_renaming("__pselect_1529", "pselect"); -__static_renaming("__pselect_1530", "pselect"); -__static_renaming("____fdelt_chk_1534", "__fdelt_chk"); -__static_renaming("____fdelt_warn_1536", "__fdelt_warn"); -__static_renaming("__gnu_dev_major_1538", "gnu_dev_major"); -__static_renaming("__gnu_dev_major_1539", "gnu_dev_major"); -__static_renaming("__gnu_dev_minor_1541", "gnu_dev_minor"); -__static_renaming("__gnu_dev_makedev_1544", "gnu_dev_makedev"); -__static_renaming("__blksize_t_1549", "blksize_t"); -__static_renaming("__blksize_t_1550", "blksize_t"); -__static_renaming("__blksize_t_1551", "blksize_t"); -__static_renaming("__blkcnt_t_1553", "blkcnt_t"); -__static_renaming("__blkcnt_t_1554", "blkcnt_t"); -__static_renaming("__blkcnt_t_1555", "blkcnt_t"); -__static_renaming("__fsblkcnt_t_1557", "fsblkcnt_t"); -__static_renaming("__fsblkcnt_t_1558", "fsblkcnt_t"); -__static_renaming("__fsblkcnt_t_1559", "fsblkcnt_t"); -__static_renaming("__blkcnt_t_1561", "blkcnt_t"); -__static_renaming("__blkcnt_t_1562", "blkcnt_t"); -__static_renaming("__blkcnt_t_1563", "blkcnt_t"); -__static_renaming("__fsblkcnt_t_1565", "fsblkcnt_t"); -__static_renaming("__fsblkcnt_t_1566", "fsblkcnt_t"); -__static_renaming("__fsblkcnt_t_1567", "fsblkcnt_t"); -__static_renaming("__fsfilcnt_t_1569", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_1570", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_1571", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_1573", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_1574", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_1575", "fsfilcnt_t"); -__static_renaming("__pthread_t_1577", "pthread_t"); -__static_renaming("__pthread_attr_t_1581", "pthread_attr_t"); -__static_renaming("____pthread_list_t_1586", "__pthread_list_t"); -__static_renaming("____pthread_list_t_1587", "__pthread_list_t"); -__static_renaming("__pthread_mutex_t_1603", "pthread_mutex_t"); -__static_renaming("__pthread_mutexattr_t_1608", "pthread_mutexattr_t"); -__static_renaming("__rand_1609", "rand"); -__static_renaming("__srand_1611", "srand"); -__static_renaming("__rand_r_1613", "rand_r"); -__static_renaming("__drand48_1614", "drand48"); -__static_renaming("__erand48_1616", "erand48"); -__static_renaming("__lrand48_1617", "lrand48"); -__static_renaming("__nrand48_1619", "nrand48"); -__static_renaming("__mrand48_1620", "mrand48"); -__static_renaming("__jrand48_1622", "jrand48"); -__static_renaming("__srand48_1624", "srand48"); -__static_renaming("__seed48_1626", "seed48"); -__static_renaming("__lcong48_1628", "lcong48"); -__static_renaming("__malloc_1631", "malloc"); -__static_renaming("__malloc_1632", "malloc"); -__static_renaming("__malloc_1633", "malloc"); -__static_renaming("__malloc_1634", "malloc"); -__static_renaming("__calloc_1639", "calloc"); -__static_renaming("__calloc_1640", "calloc"); -__static_renaming("__calloc_1641", "calloc"); -__static_renaming("__calloc_1642", "calloc"); -__static_renaming("__realloc_1646", "realloc"); -__static_renaming("__realloc_1647", "realloc"); -__static_renaming("__free_1649", "free"); -__static_renaming("__cfree_1651", "cfree"); -__static_renaming("__alloca_1654", "alloca"); -__static_renaming("__alloca_1655", "alloca"); -__static_renaming("__valloc_1658", "valloc"); -__static_renaming("__valloc_1659", "valloc"); -__static_renaming("__valloc_1660", "valloc"); -__static_renaming("__valloc_1661", "valloc"); -__static_renaming("__posix_memalign_1667", "posix_memalign"); -__static_renaming("__posix_memalign_1668", "posix_memalign"); -__static_renaming("__posix_memalign_1669", "posix_memalign"); -__static_renaming("__posix_memalign_1670", "posix_memalign"); -__static_renaming("__aligned_alloc_1675", "aligned_alloc"); -__static_renaming("__aligned_alloc_1676", "aligned_alloc"); -__static_renaming("__aligned_alloc_1677", "aligned_alloc"); -__static_renaming("__aligned_alloc_1678", "aligned_alloc"); -__static_renaming("__aligned_alloc_1679", "aligned_alloc"); -__static_renaming("__aligned_alloc_1680", "aligned_alloc"); -__static_renaming("__aligned_alloc_1681", "aligned_alloc"); -__static_renaming("__aligned_alloc_1682", "aligned_alloc"); -__static_renaming("__abort_1683", "abort"); -__static_renaming("__atexit_1685", "atexit"); -__static_renaming("__at_quick_exit_1687", "at_quick_exit"); -__static_renaming("__on_exit_1692", "on_exit"); -__static_renaming("__exit_1694", "exit"); -__static_renaming("__exit_1695", "exit"); -__static_renaming("__quick_exit_1697", "quick_exit"); -__static_renaming("___Exit_1699", "_Exit"); -__static_renaming("__getenv_1701", "getenv"); -__static_renaming("__getenv_1702", "getenv"); -__static_renaming("__putenv_1704", "putenv"); -__static_renaming("__setenv_1708", "setenv"); -__static_renaming("__unsetenv_1710", "unsetenv"); -__static_renaming("__clearenv_1711", "clearenv"); -__static_renaming("__mktemp_1713", "mktemp"); -__static_renaming("__mkstemp_1716", "mkstemp"); -__static_renaming("__mkstemp_1717", "mkstemp"); -__static_renaming("__mkstemp_1718", "mkstemp"); -__static_renaming("__mkstemp_1719", "mkstemp"); -__static_renaming("__mkstemps_1724", "mkstemps"); -__static_renaming("__mkstemps_1725", "mkstemps"); -__static_renaming("__mkstemps_1726", "mkstemps"); -__static_renaming("__mkstemps_1727", "mkstemps"); -__static_renaming("__mkdtemp_1729", "mkdtemp"); -__static_renaming("__mkdtemp_1730", "mkdtemp"); -__static_renaming("__system_1732", "system"); -__static_renaming("__system_1733", "system"); -__static_renaming("__system_1734", "system"); -__static_renaming("__system_1735", "system"); -__static_renaming("__realpath_1738", "realpath"); -__static_renaming("__realpath_1739", "realpath"); -__static_renaming("____compar_fn_t_1740", "__compar_fn_t"); -__static_renaming("__bsearch_1751", "bsearch"); -__static_renaming("__bsearch_1752", "bsearch"); -__static_renaming("__bsearch_1755", "bsearch"); -__static_renaming("__bsearch_1756", "bsearch"); -__static_renaming("____l_1765", "__l"); -__static_renaming("____l_1766", "__l"); -__static_renaming("____u_1767", "__u"); -__static_renaming("____u_1768", "__u"); -__static_renaming("____idx_1769", "__idx"); -__static_renaming("____idx_1770", "__idx"); -__static_renaming("____p_1771", "__p"); -__static_renaming("____comparison_1772", "__comparison"); -__static_renaming("__qsort_1784", "qsort"); -__static_renaming("__qsort_1786", "qsort"); -__static_renaming("__qsort_1788", "qsort"); -__static_renaming("__qsort_1790", "qsort"); -__static_renaming("__abs_1793", "abs"); -__static_renaming("__abs_1794", "abs"); -__static_renaming("__labs_1796", "labs"); -__static_renaming("__labs_1797", "labs"); -__static_renaming("__llabs_1799", "llabs"); -__static_renaming("__llabs_1800", "llabs"); -__static_renaming("__div_1803", "div"); -__static_renaming("__div_1804", "div"); -__static_renaming("__ldiv_1807", "ldiv"); -__static_renaming("__ldiv_1809", "ldiv"); -__static_renaming("__lldiv_1813", "lldiv"); -__static_renaming("__lldiv_1815", "lldiv"); -__static_renaming("__ecvt_1821", "ecvt"); -__static_renaming("__ecvt_1822", "ecvt"); -__static_renaming("__fcvt_1827", "fcvt"); -__static_renaming("__fcvt_1828", "fcvt"); -__static_renaming("__gcvt_1832", "gcvt"); -__static_renaming("__gcvt_1833", "gcvt"); -__static_renaming("__qecvt_1838", "qecvt"); -__static_renaming("__qecvt_1839", "qecvt"); -__static_renaming("__qfcvt_1844", "qfcvt"); -__static_renaming("__qfcvt_1845", "qfcvt"); -__static_renaming("__qgcvt_1849", "qgcvt"); -__static_renaming("__qgcvt_1850", "qgcvt"); -__static_renaming("__ecvt_r_1858", "ecvt_r"); -__static_renaming("__ecvt_r_1859", "ecvt_r"); -__static_renaming("__fcvt_r_1867", "fcvt_r"); -__static_renaming("__fcvt_r_1868", "fcvt_r"); -__static_renaming("__qecvt_r_1876", "qecvt_r"); -__static_renaming("__qecvt_r_1877", "qecvt_r"); -__static_renaming("__qfcvt_r_1885", "qfcvt_r"); -__static_renaming("__qfcvt_r_1886", "qfcvt_r"); -__static_renaming("__mblen_1890", "mblen"); -__static_renaming("__mblen_1891", "mblen"); -__static_renaming("__mblen_1892", "mblen"); -__static_renaming("__mblen_1893", "mblen"); -__static_renaming("__mbtowc_1898", "mbtowc"); -__static_renaming("__mbtowc_1899", "mbtowc"); -__static_renaming("__wctomb_1902", "wctomb"); -__static_renaming("__mbstowcs_1907", "mbstowcs"); -__static_renaming("__mbstowcs_1908", "mbstowcs"); -__static_renaming("__wcstombs_1913", "wcstombs"); -__static_renaming("__wcstombs_1914", "wcstombs"); -__static_renaming("__rpmatch_1916", "rpmatch"); -__static_renaming("__rpmatch_1917", "rpmatch"); -__static_renaming("__getsubopt_1921", "getsubopt"); -__static_renaming("__getsubopt_1922", "getsubopt"); -__static_renaming("__getloadavg_1925", "getloadavg"); -__static_renaming("____realpath_chk_1931", "__realpath_chk"); -__static_renaming("____realpath_chk_1932", "__realpath_chk"); -__static_renaming("____realpath_alias_1935", "__realpath_alias"); -__static_renaming("____realpath_chk_warn_1940", "__realpath_chk_warn"); -__static_renaming("____realpath_chk_warn_1941", "__realpath_chk_warn"); -__static_renaming("____ptsname_r_chk_1951", "__ptsname_r_chk"); -__static_renaming("____ptsname_r_chk_1952", "__ptsname_r_chk"); -__static_renaming("____ptsname_r_alias_1957", "__ptsname_r_alias"); -__static_renaming("____ptsname_r_alias_1958", "__ptsname_r_alias"); -__static_renaming("____ptsname_r_chk_warn_1965", "__ptsname_r_chk_warn"); -__static_renaming("____ptsname_r_chk_warn_1966", "__ptsname_r_chk_warn"); -__static_renaming("____wctomb_chk_1977", "__wctomb_chk"); -__static_renaming("____wctomb_chk_1978", "__wctomb_chk"); -__static_renaming("____wctomb_alias_1981", "__wctomb_alias"); -__static_renaming("____mbstowcs_chk_1990", "__mbstowcs_chk"); -__static_renaming("____mbstowcs_chk_1991", "__mbstowcs_chk"); -__static_renaming("____mbstowcs_alias_1996", "__mbstowcs_alias"); -__static_renaming("____mbstowcs_alias_1997", "__mbstowcs_alias"); -__static_renaming("____mbstowcs_chk_warn_2004", "__mbstowcs_chk_warn"); -__static_renaming("____mbstowcs_chk_warn_2005", "__mbstowcs_chk_warn"); -__static_renaming("____wcstombs_chk_2016", "__wcstombs_chk"); -__static_renaming("____wcstombs_chk_2017", "__wcstombs_chk"); -__static_renaming("____wcstombs_alias_2022", "__wcstombs_alias"); -__static_renaming("____wcstombs_alias_2023", "__wcstombs_alias"); -__static_renaming("____wcstombs_chk_warn_2030", "__wcstombs_chk_warn"); -__static_renaming("____wcstombs_chk_warn_2031", "__wcstombs_chk_warn"); -__static_renaming("__ptrdiff_t_2036", "ptrdiff_t"); -__static_renaming("__size_t_2037", "size_t"); -__static_renaming("__memmove_2053", "memmove"); -__static_renaming("__memmove_2054", "memmove"); -__static_renaming("__memmove_2055", "memmove"); -__static_renaming("__memset_2070", "memset"); -__static_renaming("__memset_2071", "memset"); -__static_renaming("__memset_2072", "memset"); -__static_renaming("__memset_2073", "memset"); -__static_renaming("__memset_2074", "memset"); -__static_renaming("__memset_2075", "memset"); -__static_renaming("__memcmp_2081", "memcmp"); -__static_renaming("__memcmp_2082", "memcmp"); -__static_renaming("__memcmp_2083", "memcmp"); -__static_renaming("__memchr_2089", "memchr"); -__static_renaming("__memchr_2090", "memchr"); -__static_renaming("__memchr_2091", "memchr"); -__static_renaming("__strcpy_2094", "strcpy"); -__static_renaming("__strncpy_2100", "strncpy"); -__static_renaming("__strncpy_2101", "strncpy"); -__static_renaming("__strncpy_2102", "strncpy"); -__static_renaming("__strcat_2105", "strcat"); -__static_renaming("__strncat_2111", "strncat"); -__static_renaming("__strncat_2112", "strncat"); -__static_renaming("__strncat_2113", "strncat"); -__static_renaming("__strcmp_2116", "strcmp"); -__static_renaming("__strncmp_2122", "strncmp"); -__static_renaming("__strncmp_2123", "strncmp"); -__static_renaming("__strncmp_2124", "strncmp"); -__static_renaming("__strcoll_2127", "strcoll"); -__static_renaming("__strxfrm_2133", "strxfrm"); -__static_renaming("__strxfrm_2134", "strxfrm"); -__static_renaming("__strxfrm_2135", "strxfrm"); -__static_renaming("____locale_t_2143", "__locale_t"); -__static_renaming("__locale_t_2144", "locale_t"); -__static_renaming("__strcoll_l_2148", "strcoll_l"); -__static_renaming("__strxfrm_l_2155", "strxfrm_l"); -__static_renaming("__strxfrm_l_2156", "strxfrm_l"); -__static_renaming("__strxfrm_l_2157", "strxfrm_l"); -__static_renaming("__strdup_2159", "strdup"); -__static_renaming("__strndup_2164", "strndup"); -__static_renaming("__strndup_2165", "strndup"); -__static_renaming("__strndup_2166", "strndup"); -__static_renaming("__strchr_2169", "strchr"); -__static_renaming("__strrchr_2172", "strrchr"); -__static_renaming("__strcspn_2175", "strcspn"); -__static_renaming("__strcspn_2176", "strcspn"); -__static_renaming("__strcspn_2177", "strcspn"); -__static_renaming("__strspn_2180", "strspn"); -__static_renaming("__strspn_2181", "strspn"); -__static_renaming("__strspn_2182", "strspn"); -__static_renaming("__strpbrk_2185", "strpbrk"); -__static_renaming("__strstr_2188", "strstr"); -__static_renaming("__strtok_2191", "strtok"); -__static_renaming("____strtok_r_2195", "__strtok_r"); -__static_renaming("__strtok_r_2199", "strtok_r"); -__static_renaming("__strlen_2201", "strlen"); -__static_renaming("__strlen_2202", "strlen"); -__static_renaming("__strlen_2203", "strlen"); -__static_renaming("__strlen_2204", "strlen"); -__static_renaming("__strlen_2205", "strlen"); -__static_renaming("__strlen_2206", "strlen"); -__static_renaming("__strnlen_2211", "strnlen"); -__static_renaming("__strnlen_2212", "strnlen"); -__static_renaming("__strnlen_2213", "strnlen"); -__static_renaming("__strerror_2215", "strerror"); -__static_renaming("__strerror_2216", "strerror"); -__static_renaming("__strerror_r_2222", "strerror_r"); -__static_renaming("__strerror_r_2223", "strerror_r"); -__static_renaming("__strerror_r_2224", "strerror_r"); -__static_renaming("__strerror_l_2227", "strerror_l"); -__static_renaming("____bzero_2232", "__bzero"); -__static_renaming("____bzero_2233", "__bzero"); -__static_renaming("____bzero_2234", "__bzero"); -__static_renaming("____bzero_2235", "__bzero"); -__static_renaming("____bzero_2236", "__bzero"); -__static_renaming("____bzero_2237", "__bzero"); -__static_renaming("__bcopy_2243", "bcopy"); -__static_renaming("__bcopy_2244", "bcopy"); -__static_renaming("__bcopy_2245", "bcopy"); -__static_renaming("__bzero_2250", "bzero"); -__static_renaming("__bzero_2251", "bzero"); -__static_renaming("__bzero_2252", "bzero"); -__static_renaming("__bcmp_2258", "bcmp"); -__static_renaming("__bcmp_2259", "bcmp"); -__static_renaming("__bcmp_2260", "bcmp"); -__static_renaming("__index_2263", "index"); -__static_renaming("__rindex_2266", "rindex"); -__static_renaming("__ffs_2268", "ffs"); -__static_renaming("__strcasecmp_2271", "strcasecmp"); -__static_renaming("__strncasecmp_2277", "strncasecmp"); -__static_renaming("__strncasecmp_2278", "strncasecmp"); -__static_renaming("__strncasecmp_2279", "strncasecmp"); -__static_renaming("__strsep_2282", "strsep"); -__static_renaming("__strsignal_2284", "strsignal"); -__static_renaming("____stpcpy_2287", "__stpcpy"); -__static_renaming("__stpcpy_2290", "stpcpy"); -__static_renaming("____stpncpy_2296", "__stpncpy"); -__static_renaming("____stpncpy_2297", "__stpncpy"); -__static_renaming("____stpncpy_2298", "__stpncpy"); -__static_renaming("__stpncpy_2304", "stpncpy"); -__static_renaming("__stpncpy_2305", "stpncpy"); -__static_renaming("__stpncpy_2306", "stpncpy"); -__static_renaming("____stpncpy_chk_2360", "__stpncpy_chk"); -__static_renaming("____stpncpy_chk_2361", "__stpncpy_chk"); -__static_renaming("____stpncpy_chk_2362", "__stpncpy_chk"); -__static_renaming("____stpncpy_alias_2368", "__stpncpy_alias"); -__static_renaming("____stpncpy_alias_2369", "__stpncpy_alias"); -__static_renaming("____stpncpy_alias_2370", "__stpncpy_alias"); -__static_renaming("__content_gzip_2390", "content_gzip"); -__static_renaming("__authorized_2391", "authorized"); -__static_renaming("__iobuf_2392", "iobuf"); -__static_renaming("__iobuf_2393", "iobuf"); -__static_renaming("__iobuf_2394", "iobuf"); -__static_renaming("__iobuf_2395", "iobuf"); -__static_renaming("__iobuf_2397", "iobuf"); -__static_renaming("__iobuf_2398", "iobuf"); -__static_renaming("__iobuf_2399", "iobuf"); -__static_renaming("__iobuf_2400", "iobuf"); -__static_renaming("__mime_type_2403", "mime_type"); -__static_renaming("__len_2404", "len"); -__static_renaming("__send_headers_2405", "send_headers"); -__static_renaming("__send_headers_and_exit_2436", "send_headers_and_exit"); -__static_renaming("__s_2437", "s"); -__static_renaming("__s_2438", "s"); -__static_renaming("__s_2439", "s"); -__static_renaming("__s_2440", "s"); -__static_renaming("__s_2441", "s"); -__static_renaming("__s_2442", "s"); -__static_renaming("__s_2443", "s"); -__static_renaming("__s_2444", "s"); -__static_renaming("__handle_incoming_and_exit_2447", "handle_incoming_and_exit"); -__static_renaming("__mini_httpd_2471", "mini_httpd"); -__static_renaming("__main_2475", "main"); -__static_renaming("__main_2476", "main"); - -__static_condition_renaming("__static_condition_default_53", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_76", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_84", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_123", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_169", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_170", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_173", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_182", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_187", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_193", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_198", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_201", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_204", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_210", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_217", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_223", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_229", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_235", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_238", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_241", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_244", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_246", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_248", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_249", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_250", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_253", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_255", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_257", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_258", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_259", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_263", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_264", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_267", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_270", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_271", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_274", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_275", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_278", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_280", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); -__static_condition_renaming("__static_condition_default_282", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_284", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_286", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_288", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_290", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_293", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_296", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_299", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_311", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_313", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_315", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_317", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_331", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_333", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_337", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_341", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_345", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_347", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_355", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_357", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_363", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_365", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_367", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_369", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_373", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_375", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_380", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_382", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_386", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_388", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_393", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_395", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_402", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_408", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_412", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_417", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_419", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_431", "!(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_432", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_433", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_438", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_444", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_455", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_461", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_469", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_471", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_473", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_475", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_486", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_488", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_489", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_491", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_493", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_494", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_497", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_499", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_503", "!(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_510", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_511", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_512", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_514", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_515", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_516", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_521", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_523", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_529", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_536", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_537", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_538", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_539", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_541", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_542", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_543", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_544", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_549", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_550", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_552", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_553", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_559", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_560", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_564", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_568", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_573", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_578", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_583", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_585", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_590", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_597", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_602", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_608", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_613", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_619", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_621", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_623", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_625", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_632", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_633", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_634", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_636", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_637", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_638", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_645", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_646", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_647", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_649", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_650", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_651", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_657", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_658", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_659", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_661", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_662", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_663", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_668", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_670", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_677", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_683", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_684", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_685", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_686", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_692", "!(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_693", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_699", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_700", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_701", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_702", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_708", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_709", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_715", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_717", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_721", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_723", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_727", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_734", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_735", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_736", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_745", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_746", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_747", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_751", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_752", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_753", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_755", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_756", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_757", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_759", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_760", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_761", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_767", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_768", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_769", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_779", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_780", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_781", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_787", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_788", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_789", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_791", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_792", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_793", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_797", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_801", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_803", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_807", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_809", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_813", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_817", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_819", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_823", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_825", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_834", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_836", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_840", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_842", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_846", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_848", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_852", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_858", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_862", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_864", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_868", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_872", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_875", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_878", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_883", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_887", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_891", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_894", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_907", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_914", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_929", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_938", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_944", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_955", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_956", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_957", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_963", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_967", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_972", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_978", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_979", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_980", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_991", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_998", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1005", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1007", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1009", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1015", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1022", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1027", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1028", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1035", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1036", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1042", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1043", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1050", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1051", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1057", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1058", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1065", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1066", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1072", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1073", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1080", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1081", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1089", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_1090", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1091", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1152", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1159", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1164", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1165", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1315", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1341", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __u_char_defined)"); -__static_condition_renaming("__static_condition_default_1345", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __u_char_defined)"); -__static_condition_renaming("__static_condition_default_1349", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __u_char_defined)"); -__static_condition_renaming("__static_condition_default_1353", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined)"); -__static_condition_renaming("__static_condition_default_1357", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined)"); -__static_condition_renaming("__static_condition_default_1361", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_1365", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_1369", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_1373", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1377", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __nlink_t_defined)"); -__static_condition_renaming("__static_condition_default_1381", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __nlink_t_defined)"); -__static_condition_renaming("__static_condition_default_1385", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __nlink_t_defined)"); -__static_condition_renaming("__static_condition_default_1388", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1391", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1395", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && (defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1398", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1402", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __id_t_defined)"); -__static_condition_renaming("__static_condition_default_1405", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1409", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_1416", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_1420", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_1424", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __clock_t_defined)"); -__static_condition_renaming("__static_condition_default_1428", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __time_t_defined)"); -__static_condition_renaming("__static_condition_default_1432", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __clockid_t_defined)"); -__static_condition_renaming("__static_condition_default_1436", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timer_t_defined)"); -__static_condition_renaming("__static_condition_default_1453", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1458", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1459", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1475", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_1485", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_1489", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __suseconds_t_defined)"); -__static_condition_renaming("__static_condition_default_1498", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1515", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_1516", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_1531", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_1532", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_1552", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blksize_t_defined)"); -__static_condition_renaming("__static_condition_default_1556", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined)"); -__static_condition_renaming("__static_condition_default_1560", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1564", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined)"); -__static_condition_renaming("__static_condition_default_1568", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1572", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1576", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1749", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1750", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1753", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1754", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1773", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1774", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1775", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1776", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1785", "!(defined __need___FILE) && !(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1787", "(defined __need___FILE) && !(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1789", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1791", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1808", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1810", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1814", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1816", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1944", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_2043", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_2044", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_2045", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _STDLIB_H) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDLIB_H) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDLIB_H) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDLIB_H) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2046", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2047", "(defined __need___FILE) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2062", "!(defined __need___FILE) && !(defined __STRICT_ANSI__)"); -__static_condition_renaming("__static_condition_default_2063", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2064", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2312", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2313", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2314", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2320", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2321", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2322", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2328", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2329", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2330", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2342", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2343", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2349", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2350", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2351", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2376", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2377", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2378", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2381", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2387", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2388", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2389", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2396", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __STRICT_ANSI__) && (defined _STDLIB_H) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && (defined _STDLIB_H) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH"); -__static_condition_renaming("__static_condition_default_2401", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __STRICT_ANSI__) && (defined _STDLIB_H) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && (defined _STDLIB_H) && ENABLE_FEATURE_HTTPD_BASIC_AUTH"); -__static_condition_renaming("__static_condition_default_2406", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH"); -__static_condition_renaming("__static_condition_default_2407", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH"); -__static_condition_renaming("__static_condition_default_2408", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH"); -__static_condition_renaming("__static_condition_default_2409", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH"); -__static_condition_renaming("__static_condition_default_2410", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _STDLIB_H) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _STDLIB_H) || (defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_2411", "(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_2412", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_2413", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_2414", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_2415", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_2416", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_2417", "(defined ENABLE_FEATURE_HTTPD_GZIP) && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_2418", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_2419", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_2420", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_2421", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_2422", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_2423", "(defined ENABLE_FEATURE_HTTPD_GZIP) && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_2424", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_2425", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_2426", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_2427", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_2428", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined ENABLE_FEATURE_HTTPD_GZIP) && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined ENABLE_FEATURE_HTTPD_GZIP) && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && (defined ENABLE_FEATURE_HTTPD_GZIP) && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_2429", "!(defined ENABLE_FEATURE_HTTPD_GZIP)"); -__static_condition_renaming("__static_condition_default_2430", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH"); -__static_condition_renaming("__static_condition_default_2431", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH"); -__static_condition_renaming("__static_condition_default_2432", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH"); -__static_condition_renaming("__static_condition_default_2433", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH"); -__static_condition_renaming("__static_condition_default_2434", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _STDLIB_H) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _STDLIB_H) || (defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_2445", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) || !(defined __STRICT_ANSI__) && (defined _STDLIB_H) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) || (defined __STRICT_ANSI__) && (defined _STDLIB_H) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP)"); -__static_condition_renaming("__static_condition_default_2446", "(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP)"); -__static_condition_renaming("__static_condition_default_2448", "!(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_2449", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_2450", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_2451", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_2452", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_2453", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_2454", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_2455", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_2456", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_2457", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_2458", "(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_2459", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_2460", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_2461", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_2462", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_2463", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_2464", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_2465", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_2466", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_2467", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined ENABLE_FEATURE_HTTPD_GZIP) && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined ENABLE_FEATURE_HTTPD_GZIP) && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_2468", "(defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_2469", "!(defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_2470", "!ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_2472", "(defined BB_MMU)"); -__static_condition_renaming("__static_condition_default_2477", "!(defined BB_MMU)"); -__static_condition_renaming("__static_condition_default_2478", "(defined BB_MMU)"); -__static_condition_renaming("__static_condition_default_2479", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && (defined _STDLIB_H) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && (defined _STDLIB_H) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO)"); - -if (__static_condition_default_2479) -{ +__static_renaming("____qaddr_t_53", "__qaddr_t"); +__static_renaming("____caddr_t_54", "__caddr_t"); +__static_renaming("____intptr_t_55", "__intptr_t"); +__static_renaming("____socklen_t_56", "__socklen_t"); +__static_renaming("__FILE_58", "FILE"); +__static_renaming("____FILE_59", "__FILE"); +__static_renaming("____mbstate_t_68", "__mbstate_t"); +__static_renaming("___G_fpos_t_75", "_G_fpos_t"); +__static_renaming("___G_fpos64_t_81", "_G_fpos64_t"); +__static_renaming("____gnuc_va_list_82", "__gnuc_va_list"); +__static_renaming("___IO_lock_t_84", "_IO_lock_t"); +__static_renaming("___IO_FILE_163", "_IO_FILE"); +__static_renaming("___IO_FILE_164", "_IO_FILE"); +__static_renaming("___IO_2_1_stdin__167", "_IO_2_1_stdin_"); +__static_renaming("___IO_2_1_stdout__168", "_IO_2_1_stdout_"); +__static_renaming("___IO_2_1_stderr__169", "_IO_2_1_stderr_"); +__static_renaming("____io_read_fn_173", "__io_read_fn"); +__static_renaming("____io_write_fn_177", "__io_write_fn"); +__static_renaming("____io_seek_fn_181", "__io_seek_fn"); +__static_renaming("____io_close_fn_183", "__io_close_fn"); +__static_renaming("____underflow_184", "__underflow"); +__static_renaming("____underflow_185", "__underflow"); +__static_renaming("____uflow_186", "__uflow"); +__static_renaming("____uflow_187", "__uflow"); +__static_renaming("____overflow_188", "__overflow"); +__static_renaming("____overflow_189", "__overflow"); +__static_renaming("___IO_getc_193", "_IO_getc"); +__static_renaming("___IO_getc_194", "_IO_getc"); +__static_renaming("___IO_putc_199", "_IO_putc"); +__static_renaming("___IO_putc_200", "_IO_putc"); +__static_renaming("___IO_feof_204", "_IO_feof"); +__static_renaming("___IO_feof_205", "_IO_feof"); +__static_renaming("___IO_ferror_209", "_IO_ferror"); +__static_renaming("___IO_ferror_210", "_IO_ferror"); +__static_renaming("___IO_peekc_locked_214", "_IO_peekc_locked"); +__static_renaming("___IO_peekc_locked_215", "_IO_peekc_locked"); +__static_renaming("___IO_flockfile_216", "_IO_flockfile"); +__static_renaming("___IO_flockfile_217", "_IO_flockfile"); +__static_renaming("___IO_funlockfile_218", "_IO_funlockfile"); +__static_renaming("___IO_funlockfile_219", "_IO_funlockfile"); +__static_renaming("___IO_ftrylockfile_220", "_IO_ftrylockfile"); +__static_renaming("___IO_ftrylockfile_221", "_IO_ftrylockfile"); +__static_renaming("___IO_vfscanf_222", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_224", "_IO_vfscanf"); +__static_renaming("___IO_vfprintf_231", "_IO_vfprintf"); +__static_renaming("___IO_vfprintf_233", "_IO_vfprintf"); +__static_renaming("___IO_padn_238", "_IO_padn"); +__static_renaming("___IO_padn_239", "_IO_padn"); +__static_renaming("___IO_sgetn_240", "_IO_sgetn"); +__static_renaming("___IO_sgetn_241", "_IO_sgetn"); +__static_renaming("___IO_seekoff_242", "_IO_seekoff"); +__static_renaming("___IO_seekoff_243", "_IO_seekoff"); +__static_renaming("___IO_seekpos_244", "_IO_seekpos"); +__static_renaming("___IO_seekpos_245", "_IO_seekpos"); +__static_renaming("___IO_free_backup_area_246", "_IO_free_backup_area"); +__static_renaming("___IO_free_backup_area_247", "_IO_free_backup_area"); +__static_renaming("__va_list_248", "va_list"); +__static_renaming("__off_t_250", "off_t"); +__static_renaming("__off_t_251", "off_t"); +__static_renaming("__ssize_t_252", "ssize_t"); +__static_renaming("__fpos_t_253", "fpos_t"); +__static_renaming("__fpos_t_255", "fpos_t"); +__static_renaming("__stdin_257", "stdin"); +__static_renaming("__stdin_258", "stdin"); +__static_renaming("__stdout_259", "stdout"); +__static_renaming("__stdout_260", "stdout"); +__static_renaming("__stderr_261", "stderr"); +__static_renaming("__stderr_262", "stderr"); +__static_renaming("__remove_264", "remove"); +__static_renaming("__rename_267", "rename"); +__static_renaming("__renameat_272", "renameat"); +__static_renaming("__tmpfile_273", "tmpfile"); +__static_renaming("__tmpfile_275", "tmpfile"); +__static_renaming("__tmpfile_277", "tmpfile"); +__static_renaming("__tmpfile_279", "tmpfile"); +__static_renaming("__tmpnam_282", "tmpnam"); +__static_renaming("__tmpnam_283", "tmpnam"); +__static_renaming("__tmpnam_r_285", "tmpnam_r"); +__static_renaming("__tmpnam_r_286", "tmpnam_r"); +__static_renaming("__tempnam_289", "tempnam"); +__static_renaming("__tempnam_290", "tempnam"); +__static_renaming("__fclose_293", "fclose"); +__static_renaming("__fclose_295", "fclose"); +__static_renaming("__fflush_299", "fflush"); +__static_renaming("__fflush_unlocked_303", "fflush_unlocked"); +__static_renaming("__fopen_307", "fopen"); +__static_renaming("__fopen_309", "fopen"); +__static_renaming("__fopen_317", "fopen"); +__static_renaming("__fopen_319", "fopen"); +__static_renaming("__freopen_325", "freopen"); +__static_renaming("__freopen_327", "freopen"); +__static_renaming("__freopen_329", "freopen"); +__static_renaming("__freopen_331", "freopen"); +__static_renaming("__fdopen_335", "fdopen"); +__static_renaming("__fdopen_337", "fdopen"); +__static_renaming("__fmemopen_342", "fmemopen"); +__static_renaming("__fmemopen_344", "fmemopen"); +__static_renaming("__open_memstream_348", "open_memstream"); +__static_renaming("__open_memstream_350", "open_memstream"); +__static_renaming("__setbuf_355", "setbuf"); +__static_renaming("__setbuf_357", "setbuf"); +__static_renaming("__setvbuf_364", "setvbuf"); +__static_renaming("__setbuffer_369", "setbuffer"); +__static_renaming("__setlinebuf_373", "setlinebuf"); +__static_renaming("__fprintf_378", "fprintf"); +__static_renaming("__fprintf_380", "fprintf"); +__static_renaming("__printf_383", "printf"); +__static_renaming("__sprintf_386", "sprintf"); +__static_renaming("__vfprintf_392", "vfprintf"); +__static_renaming("__vprintf_399", "vprintf"); +__static_renaming("__vsprintf_405", "vsprintf"); +__static_renaming("__snprintf_409", "snprintf"); +__static_renaming("__vsnprintf_415", "vsnprintf"); +__static_renaming("__vdprintf_420", "vdprintf"); +__static_renaming("__dprintf_424", "dprintf"); +__static_renaming("__fscanf_428", "fscanf"); +__static_renaming("__fscanf_430", "fscanf"); +__static_renaming("__fscanf_432", "fscanf"); +__static_renaming("__fscanf_434", "fscanf"); +__static_renaming("__scanf_437", "scanf"); +__static_renaming("__scanf_438", "scanf"); +__static_renaming("__sscanf_441", "sscanf"); +__static_renaming("__vfscanf_468", "vfscanf"); +__static_renaming("__vfscanf_472", "vfscanf"); +__static_renaming("__vscanf_479", "vscanf"); +__static_renaming("__vscanf_481", "vscanf"); +__static_renaming("__vsscanf_487", "vsscanf"); +__static_renaming("__fgetc_520", "fgetc"); +__static_renaming("__getc_523", "getc"); +__static_renaming("__getchar_524", "getchar"); +__static_renaming("__getc_unlocked_527", "getc_unlocked"); +__static_renaming("__getchar_unlocked_529", "getchar_unlocked"); +__static_renaming("__fgetc_unlocked_532", "fgetc_unlocked"); +__static_renaming("__fputc_537", "fputc"); +__static_renaming("__fputc_539", "fputc"); +__static_renaming("__putc_544", "putc"); +__static_renaming("__putchar_546", "putchar"); +__static_renaming("__fputc_unlocked_550", "fputc_unlocked"); +__static_renaming("__putc_unlocked_555", "putc_unlocked"); +__static_renaming("__putchar_unlocked_558", "putchar_unlocked"); +__static_renaming("__getw_561", "getw"); +__static_renaming("__putw_566", "putw"); +__static_renaming("__fgets_572", "fgets"); +__static_renaming("__fgets_574", "fgets"); +__static_renaming("__fgets_576", "fgets"); +__static_renaming("__fgets_578", "fgets"); +__static_renaming("____getdelim_585", "__getdelim"); +__static_renaming("____getdelim_587", "__getdelim"); +__static_renaming("__getdelim_594", "getdelim"); +__static_renaming("__getdelim_596", "getdelim"); +__static_renaming("__getline_602", "getline"); +__static_renaming("__getline_604", "getline"); +__static_renaming("__fputs_609", "fputs"); +__static_renaming("__fputs_611", "fputs"); +__static_renaming("__puts_614", "puts"); +__static_renaming("__ungetc_618", "ungetc"); +__static_renaming("__fseek_654", "fseek"); +__static_renaming("__fseek_656", "fseek"); +__static_renaming("__ftell_660", "ftell"); +__static_renaming("__ftell_662", "ftell"); +__static_renaming("__rewind_666", "rewind"); +__static_renaming("__fseeko_671", "fseeko"); +__static_renaming("__fseeko_679", "fseeko"); +__static_renaming("__ftello_683", "ftello"); +__static_renaming("__ftello_685", "ftello"); +__static_renaming("__ftello_687", "ftello"); +__static_renaming("__fgetpos_693", "fgetpos"); +__static_renaming("__fgetpos_705", "fgetpos"); +__static_renaming("__fsetpos_713", "fsetpos"); +__static_renaming("__fsetpos_717", "fsetpos"); +__static_renaming("__clearerr_723", "clearerr"); +__static_renaming("__feof_726", "feof"); +__static_renaming("__feof_728", "feof"); +__static_renaming("__ferror_732", "ferror"); +__static_renaming("__ferror_734", "ferror"); +__static_renaming("__clearerr_unlocked_738", "clearerr_unlocked"); +__static_renaming("__feof_unlocked_742", "feof_unlocked"); +__static_renaming("__feof_unlocked_744", "feof_unlocked"); +__static_renaming("__ferror_unlocked_748", "ferror_unlocked"); +__static_renaming("__ferror_unlocked_750", "ferror_unlocked"); +__static_renaming("__perror_753", "perror"); +__static_renaming("__perror_754", "perror"); +__static_renaming("__sys_nerr_755", "sys_nerr"); +__static_renaming("__sys_errlist_756", "sys_errlist"); +__static_renaming("__fileno_759", "fileno"); +__static_renaming("__fileno_761", "fileno"); +__static_renaming("__fileno_unlocked_765", "fileno_unlocked"); +__static_renaming("__fileno_unlocked_767", "fileno_unlocked"); +__static_renaming("__popen_771", "popen"); +__static_renaming("__popen_773", "popen"); +__static_renaming("__pclose_777", "pclose"); +__static_renaming("__ctermid_780", "ctermid"); +__static_renaming("__flockfile_783", "flockfile"); +__static_renaming("__ftrylockfile_787", "ftrylockfile"); +__static_renaming("__ftrylockfile_789", "ftrylockfile"); +__static_renaming("__funlockfile_793", "funlockfile"); +__static_renaming("____sprintf_chk_825", "__sprintf_chk"); +__static_renaming("____vsprintf_chk_832", "__vsprintf_chk"); +__static_renaming("____snprintf_chk_846", "__snprintf_chk"); +__static_renaming("____vsnprintf_chk_854", "__vsnprintf_chk"); +__static_renaming("____fprintf_chk_869", "__fprintf_chk"); +__static_renaming("____printf_chk_873", "__printf_chk"); +__static_renaming("____vfprintf_chk_880", "__vfprintf_chk"); +__static_renaming("____vprintf_chk_888", "__vprintf_chk"); +__static_renaming("____dprintf_chk_910", "__dprintf_chk"); +__static_renaming("____vdprintf_chk_916", "__vdprintf_chk"); +__static_renaming("____fgets_chk_930", "__fgets_chk"); +__static_renaming("____fgets_chk_932", "__fgets_chk"); +__static_renaming("____fgets_chk_934", "__fgets_chk"); +__static_renaming("____fgets_alias_940", "__fgets_alias"); +__static_renaming("____fgets_chk_warn_947", "__fgets_chk_warn"); +__static_renaming("____cnt_1013", "__cnt"); +__static_renaming("____cptr_1014", "__cptr"); +__static_renaming("__wchar_t_1018", "wchar_t"); +__static_renaming("__idtype_t_1024", "idtype_t"); +__static_renaming("____bswap_32_1026", "__bswap_32"); +__static_renaming("____bswap_64_1029", "__bswap_64"); +__static_renaming("____WAIT_STATUS_1049", "__WAIT_STATUS"); +__static_renaming("__div_t_1054", "div_t"); +__static_renaming("__ldiv_t_1059", "ldiv_t"); +__static_renaming("__lldiv_t_1064", "lldiv_t"); +__static_renaming("____ctype_get_mb_cur_max_1065", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1066", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1067", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1068", "__ctype_get_mb_cur_max"); +__static_renaming("__atof_1070", "atof"); +__static_renaming("__atof_1071", "atof"); +__static_renaming("__atoi_1073", "atoi"); +__static_renaming("__atoi_1074", "atoi"); +__static_renaming("__atol_1076", "atol"); +__static_renaming("__atol_1077", "atol"); +__static_renaming("__atoll_1079", "atoll"); +__static_renaming("__atoll_1080", "atoll"); +__static_renaming("__strtod_1083", "strtod"); +__static_renaming("__strtof_1086", "strtof"); +__static_renaming("__strtold_1089", "strtold"); +__static_renaming("__strtol_1093", "strtol"); +__static_renaming("__strtoul_1097", "strtoul"); +__static_renaming("__strtoq_1101", "strtoq"); +__static_renaming("__strtouq_1105", "strtouq"); +__static_renaming("__strtoll_1109", "strtoll"); +__static_renaming("__strtoll_1110", "strtoll"); +__static_renaming("__strtoull_1114", "strtoull"); +__static_renaming("__l64a_1119", "l64a"); +__static_renaming("__l64a_1120", "l64a"); +__static_renaming("__a64l_1122", "a64l"); +__static_renaming("__a64l_1123", "a64l"); +__static_renaming("__u_char_1124", "u_char"); +__static_renaming("__u_short_1125", "u_short"); +__static_renaming("__u_int_1126", "u_int"); +__static_renaming("__u_long_1127", "u_long"); +__static_renaming("__quad_t_1128", "quad_t"); +__static_renaming("__u_quad_t_1129", "u_quad_t"); +__static_renaming("__fsid_t_1130", "fsid_t"); +__static_renaming("__loff_t_1131", "loff_t"); +__static_renaming("__ino_t_1132", "ino_t"); +__static_renaming("__ino_t_1133", "ino_t"); +__static_renaming("__dev_t_1134", "dev_t"); +__static_renaming("__gid_t_1135", "gid_t"); +__static_renaming("__gid_t_1136", "gid_t"); +__static_renaming("__mode_t_1137", "mode_t"); +__static_renaming("__nlink_t_1138", "nlink_t"); +__static_renaming("__uid_t_1139", "uid_t"); +__static_renaming("__uid_t_1140", "uid_t"); +__static_renaming("__pid_t_1141", "pid_t"); +__static_renaming("__id_t_1142", "id_t"); +__static_renaming("__daddr_t_1143", "daddr_t"); +__static_renaming("__caddr_t_1144", "caddr_t"); +__static_renaming("__key_t_1145", "key_t"); +__static_renaming("__key_t_1146", "key_t"); +__static_renaming("__clock_t_1147", "clock_t"); +__static_renaming("__time_t_1148", "time_t"); +__static_renaming("__clockid_t_1149", "clockid_t"); +__static_renaming("__timer_t_1150", "timer_t"); +__static_renaming("__ulong_1151", "ulong"); +__static_renaming("__ulong_1152", "ulong"); +__static_renaming("__ulong_1153", "ulong"); +__static_renaming("__ushort_1154", "ushort"); +__static_renaming("__uint_1155", "uint"); +__static_renaming("__int8_t_1156", "int8_t"); +__static_renaming("__int16_t_1157", "int16_t"); +__static_renaming("__int32_t_1158", "int32_t"); +__static_renaming("__int64_t_1159", "int64_t"); +__static_renaming("__u_int8_t_1160", "u_int8_t"); +__static_renaming("__u_int16_t_1161", "u_int16_t"); +__static_renaming("__u_int32_t_1162", "u_int32_t"); +__static_renaming("__u_int64_t_1163", "u_int64_t"); +__static_renaming("__register_t_1164", "register_t"); +__static_renaming("____bswap_32_1166", "__bswap_32"); +__static_renaming("____bswap_64_1169", "__bswap_64"); +__static_renaming("____sig_atomic_t_1170", "__sig_atomic_t"); +__static_renaming("____sigset_t_1174", "__sigset_t"); +__static_renaming("__sigset_t_1175", "sigset_t"); +__static_renaming("__suseconds_t_1182", "suseconds_t"); +__static_renaming("____fd_mask_1183", "__fd_mask"); +__static_renaming("____fd_mask_1184", "__fd_mask"); +__static_renaming("__fd_set_1189", "fd_set"); +__static_renaming("__fd_mask_1190", "fd_mask"); +__static_renaming("__fd_mask_1191", "fd_mask"); +__static_renaming("__select_1199", "select"); +__static_renaming("__select_1200", "select"); +__static_renaming("__pselect_1209", "pselect"); +__static_renaming("__pselect_1210", "pselect"); +__static_renaming("____fdelt_chk_1212", "__fdelt_chk"); +__static_renaming("____fdelt_warn_1214", "__fdelt_warn"); +__static_renaming("__gnu_dev_major_1216", "gnu_dev_major"); +__static_renaming("__gnu_dev_major_1217", "gnu_dev_major"); +__static_renaming("__gnu_dev_minor_1219", "gnu_dev_minor"); +__static_renaming("__gnu_dev_makedev_1222", "gnu_dev_makedev"); +__static_renaming("__blksize_t_1227", "blksize_t"); +__static_renaming("__blkcnt_t_1228", "blkcnt_t"); +__static_renaming("__fsblkcnt_t_1229", "fsblkcnt_t"); +__static_renaming("__blkcnt_t_1230", "blkcnt_t"); +__static_renaming("__fsblkcnt_t_1231", "fsblkcnt_t"); +__static_renaming("__fsfilcnt_t_1232", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_1233", "fsfilcnt_t"); +__static_renaming("__pthread_t_1234", "pthread_t"); +__static_renaming("__pthread_attr_t_1238", "pthread_attr_t"); +__static_renaming("____pthread_list_t_1243", "__pthread_list_t"); +__static_renaming("____pthread_list_t_1244", "__pthread_list_t"); +__static_renaming("__pthread_mutex_t_1260", "pthread_mutex_t"); +__static_renaming("__pthread_mutexattr_t_1265", "pthread_mutexattr_t"); +__static_renaming("__rand_1266", "rand"); +__static_renaming("__srand_1268", "srand"); +__static_renaming("__rand_r_1270", "rand_r"); +__static_renaming("__drand48_1271", "drand48"); +__static_renaming("__erand48_1273", "erand48"); +__static_renaming("__lrand48_1274", "lrand48"); +__static_renaming("__nrand48_1276", "nrand48"); +__static_renaming("__mrand48_1277", "mrand48"); +__static_renaming("__jrand48_1279", "jrand48"); +__static_renaming("__srand48_1281", "srand48"); +__static_renaming("__seed48_1283", "seed48"); +__static_renaming("__lcong48_1285", "lcong48"); +__static_renaming("__malloc_1287", "malloc"); +__static_renaming("__malloc_1288", "malloc"); +__static_renaming("__malloc_1289", "malloc"); +__static_renaming("__malloc_1290", "malloc"); +__static_renaming("__calloc_1293", "calloc"); +__static_renaming("__calloc_1294", "calloc"); +__static_renaming("__realloc_1297", "realloc"); +__static_renaming("__free_1299", "free"); +__static_renaming("__cfree_1301", "cfree"); +__static_renaming("__alloca_1303", "alloca"); +__static_renaming("__valloc_1305", "valloc"); +__static_renaming("__valloc_1306", "valloc"); +__static_renaming("__posix_memalign_1310", "posix_memalign"); +__static_renaming("__posix_memalign_1311", "posix_memalign"); +__static_renaming("__aligned_alloc_1314", "aligned_alloc"); +__static_renaming("__aligned_alloc_1315", "aligned_alloc"); +__static_renaming("__aligned_alloc_1316", "aligned_alloc"); +__static_renaming("__aligned_alloc_1317", "aligned_alloc"); +__static_renaming("__abort_1318", "abort"); +__static_renaming("__atexit_1320", "atexit"); +__static_renaming("__at_quick_exit_1322", "at_quick_exit"); +__static_renaming("__on_exit_1327", "on_exit"); +__static_renaming("__exit_1329", "exit"); +__static_renaming("__exit_1330", "exit"); +__static_renaming("__quick_exit_1332", "quick_exit"); +__static_renaming("___Exit_1334", "_Exit"); +__static_renaming("__getenv_1336", "getenv"); +__static_renaming("__getenv_1337", "getenv"); +__static_renaming("__putenv_1339", "putenv"); +__static_renaming("__setenv_1343", "setenv"); +__static_renaming("__unsetenv_1345", "unsetenv"); +__static_renaming("__clearenv_1346", "clearenv"); +__static_renaming("__mktemp_1348", "mktemp"); +__static_renaming("__mkstemp_1351", "mkstemp"); +__static_renaming("__mkstemp_1352", "mkstemp"); +__static_renaming("__mkstemp_1353", "mkstemp"); +__static_renaming("__mkstemp_1354", "mkstemp"); +__static_renaming("__mkstemps_1359", "mkstemps"); +__static_renaming("__mkstemps_1360", "mkstemps"); +__static_renaming("__mkstemps_1361", "mkstemps"); +__static_renaming("__mkstemps_1362", "mkstemps"); +__static_renaming("__mkdtemp_1364", "mkdtemp"); +__static_renaming("__mkdtemp_1365", "mkdtemp"); +__static_renaming("__system_1367", "system"); +__static_renaming("__system_1368", "system"); +__static_renaming("__system_1369", "system"); +__static_renaming("__system_1370", "system"); +__static_renaming("__realpath_1373", "realpath"); +__static_renaming("__realpath_1374", "realpath"); +__static_renaming("____compar_fn_t_1375", "__compar_fn_t"); +__static_renaming("__bsearch_1383", "bsearch"); +__static_renaming("__bsearch_1385", "bsearch"); +__static_renaming("____l_1392", "__l"); +__static_renaming("____u_1393", "__u"); +__static_renaming("____idx_1394", "__idx"); +__static_renaming("____p_1395", "__p"); +__static_renaming("____comparison_1396", "__comparison"); +__static_renaming("__qsort_1404", "qsort"); +__static_renaming("__qsort_1406", "qsort"); +__static_renaming("__abs_1409", "abs"); +__static_renaming("__abs_1410", "abs"); +__static_renaming("__labs_1412", "labs"); +__static_renaming("__labs_1413", "labs"); +__static_renaming("__llabs_1415", "llabs"); +__static_renaming("__llabs_1416", "llabs"); +__static_renaming("__div_1419", "div"); +__static_renaming("__div_1420", "div"); +__static_renaming("__ldiv_1423", "ldiv"); +__static_renaming("__ldiv_1425", "ldiv"); +__static_renaming("__lldiv_1429", "lldiv"); +__static_renaming("__lldiv_1431", "lldiv"); +__static_renaming("__ecvt_1437", "ecvt"); +__static_renaming("__ecvt_1438", "ecvt"); +__static_renaming("__fcvt_1443", "fcvt"); +__static_renaming("__fcvt_1444", "fcvt"); +__static_renaming("__gcvt_1448", "gcvt"); +__static_renaming("__gcvt_1449", "gcvt"); +__static_renaming("__qecvt_1454", "qecvt"); +__static_renaming("__qecvt_1455", "qecvt"); +__static_renaming("__qfcvt_1460", "qfcvt"); +__static_renaming("__qfcvt_1461", "qfcvt"); +__static_renaming("__qgcvt_1465", "qgcvt"); +__static_renaming("__qgcvt_1466", "qgcvt"); +__static_renaming("__ecvt_r_1473", "ecvt_r"); +__static_renaming("__fcvt_r_1480", "fcvt_r"); +__static_renaming("__qecvt_r_1487", "qecvt_r"); +__static_renaming("__qfcvt_r_1494", "qfcvt_r"); +__static_renaming("__mblen_1497", "mblen"); +__static_renaming("__mblen_1498", "mblen"); +__static_renaming("__mbtowc_1502", "mbtowc"); +__static_renaming("__wctomb_1505", "wctomb"); +__static_renaming("__mbstowcs_1509", "mbstowcs"); +__static_renaming("__wcstombs_1513", "wcstombs"); +__static_renaming("__rpmatch_1515", "rpmatch"); +__static_renaming("__rpmatch_1516", "rpmatch"); +__static_renaming("__getsubopt_1520", "getsubopt"); +__static_renaming("__getsubopt_1521", "getsubopt"); +__static_renaming("__getloadavg_1524", "getloadavg"); +__static_renaming("____realpath_chk_1529", "__realpath_chk"); +__static_renaming("____realpath_alias_1532", "__realpath_alias"); +__static_renaming("____realpath_chk_warn_1536", "__realpath_chk_warn"); +__static_renaming("____ptsname_r_chk_1544", "__ptsname_r_chk"); +__static_renaming("____ptsname_r_alias_1548", "__ptsname_r_alias"); +__static_renaming("____ptsname_r_chk_warn_1553", "__ptsname_r_chk_warn"); +__static_renaming("____wctomb_chk_1561", "__wctomb_chk"); +__static_renaming("____wctomb_alias_1564", "__wctomb_alias"); +__static_renaming("____mbstowcs_chk_1571", "__mbstowcs_chk"); +__static_renaming("____mbstowcs_alias_1575", "__mbstowcs_alias"); +__static_renaming("____mbstowcs_chk_warn_1580", "__mbstowcs_chk_warn"); +__static_renaming("____wcstombs_chk_1588", "__wcstombs_chk"); +__static_renaming("____wcstombs_alias_1592", "__wcstombs_alias"); +__static_renaming("____wcstombs_chk_warn_1597", "__wcstombs_chk_warn"); +__static_renaming("__memmove_1610", "memmove"); +__static_renaming("__memset_1619", "memset"); +__static_renaming("__memset_1620", "memset"); +__static_renaming("__memcmp_1624", "memcmp"); +__static_renaming("__memchr_1628", "memchr"); +__static_renaming("__strcpy_1631", "strcpy"); +__static_renaming("__strncpy_1635", "strncpy"); +__static_renaming("__strcat_1638", "strcat"); +__static_renaming("__strncat_1642", "strncat"); +__static_renaming("__strcmp_1645", "strcmp"); +__static_renaming("__strncmp_1649", "strncmp"); +__static_renaming("__strcoll_1652", "strcoll"); +__static_renaming("__strxfrm_1656", "strxfrm"); +__static_renaming("____locale_t_1664", "__locale_t"); +__static_renaming("__locale_t_1665", "locale_t"); +__static_renaming("__strcoll_l_1669", "strcoll_l"); +__static_renaming("__strxfrm_l_1674", "strxfrm_l"); +__static_renaming("__strdup_1676", "strdup"); +__static_renaming("__strndup_1679", "strndup"); +__static_renaming("__strchr_1682", "strchr"); +__static_renaming("__strchr_1683", "strchr"); +__static_renaming("__strrchr_1686", "strrchr"); +__static_renaming("__strcspn_1689", "strcspn"); +__static_renaming("__strspn_1692", "strspn"); +__static_renaming("__strpbrk_1695", "strpbrk"); +__static_renaming("__strstr_1698", "strstr"); +__static_renaming("__strtok_1701", "strtok"); +__static_renaming("____strtok_r_1705", "__strtok_r"); +__static_renaming("__strtok_r_1709", "strtok_r"); +__static_renaming("__strlen_1711", "strlen"); +__static_renaming("__strlen_1712", "strlen"); +__static_renaming("__strnlen_1715", "strnlen"); +__static_renaming("__strerror_1717", "strerror"); +__static_renaming("__strerror_1718", "strerror"); +__static_renaming("__strerror_r_1722", "strerror_r"); +__static_renaming("__strerror_l_1725", "strerror_l"); +__static_renaming("____bzero_1728", "__bzero"); +__static_renaming("____bzero_1729", "__bzero"); +__static_renaming("__bcopy_1733", "bcopy"); +__static_renaming("__bzero_1736", "bzero"); +__static_renaming("__bcmp_1740", "bcmp"); +__static_renaming("__index_1743", "index"); +__static_renaming("__rindex_1746", "rindex"); +__static_renaming("__ffs_1748", "ffs"); +__static_renaming("__strcasecmp_1751", "strcasecmp"); +__static_renaming("__strncasecmp_1755", "strncasecmp"); +__static_renaming("__strsep_1758", "strsep"); +__static_renaming("__strsignal_1760", "strsignal"); +__static_renaming("____stpcpy_1763", "__stpcpy"); +__static_renaming("__stpcpy_1766", "stpcpy"); +__static_renaming("____stpncpy_1770", "__stpncpy"); +__static_renaming("__stpncpy_1774", "stpncpy"); +__static_renaming("____stpncpy_chk_1803", "__stpncpy_chk"); +__static_renaming("____stpncpy_alias_1807", "__stpncpy_alias"); +__static_renaming("__content_gzip_1819", "content_gzip"); +__static_renaming("__content_gzip_1820", "content_gzip"); +__static_renaming("__authorized_1821", "authorized"); +__static_renaming("__iobuf_1822", "iobuf"); +__static_renaming("__iobuf_1823", "iobuf"); +__static_renaming("__iobuf_1824", "iobuf"); +__static_renaming("__iobuf_1825", "iobuf"); +__static_renaming("__iobuf_1826", "iobuf"); +__static_renaming("__iobuf_1827", "iobuf"); +__static_renaming("__iobuf_1828", "iobuf"); +__static_renaming("__iobuf_1829", "iobuf"); +__static_renaming("__mime_type_1831", "mime_type"); +__static_renaming("__len_1832", "len"); +__static_renaming("__send_headers_1833", "send_headers"); +__static_renaming("__send_headers_and_exit_1879", "send_headers_and_exit"); +__static_renaming("__s_1880", "s"); +__static_renaming("__s_1881", "s"); +__static_renaming("__s_1882", "s"); +__static_renaming("__s_1883", "s"); +__static_renaming("__s_1884", "s"); +__static_renaming("__s_1885", "s"); +__static_renaming("__s_1886", "s"); +__static_renaming("__s_1887", "s"); +__static_renaming("__handle_incoming_and_exit_1888", "handle_incoming_and_exit"); +__static_renaming("__mini_httpd_1909", "mini_httpd"); +__static_renaming("__main_1913", "main"); +__static_renaming("__main_1914", "main"); + +__static_condition_renaming("__static_condition_default_74", "(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_118", "(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_161", "(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_162", "(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_165", "(defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_223", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_225", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_226", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_227", "(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_230", "(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_232", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_234", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_235", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_236", "(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_249", "!(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); +__static_condition_renaming("__static_condition_default_254", "!(defined _FILE_OFFSET_BITS) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_256", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_274", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_276", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_278", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_280", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_294", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_296", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_300", "(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_304", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_308", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_310", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_318", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_320", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_326", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_328", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_330", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_332", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_336", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_338", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_343", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_345", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_349", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_351", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_356", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_358", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_370", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_374", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_379", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_381", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_393", "!(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_394", "(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_395", "(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_400", "!(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_421", "!(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_429", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_431", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_433", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_435", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_446", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_448", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_449", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_451", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_453", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_454", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_457", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_459", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_469", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_470", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_471", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_473", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_474", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_475", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_480", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_482", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_494", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_495", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_496", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_497", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_499", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_500", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_501", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_502", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_507", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_508", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_510", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_511", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_517", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_528", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_533", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_538", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_540", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_551", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_556", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_562", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_567", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_573", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_575", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_577", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_579", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_586", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_588", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_595", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_597", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_603", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_605", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_610", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_612", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_624", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_625", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_626", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_627", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_633", "!(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_639", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_640", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_641", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_642", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_648", "!(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_649", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_655", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_657", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_661", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_663", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_672", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_680", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_684", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_686", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_688", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_694", "!(defined _FILE_OFFSET_BITS) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_695", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_696", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_706", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_707", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_708", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_714", "!(defined _FILE_OFFSET_BITS) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_715", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_716", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_718", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_719", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_720", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_727", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_729", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_733", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_735", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_739", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_743", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_745", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_749", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_751", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_760", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_762", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_766", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_768", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_772", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_774", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_778", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_784", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_788", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_790", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_794", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_798", "!(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_801", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_804", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_809", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_813", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_817", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_820", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_833", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_840", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_855", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_864", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_870", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_881", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_882", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_883", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_889", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_893", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_898", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_904", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_905", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_906", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_917", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_924", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_931", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_933", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_935", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_941", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_948", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_953", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_954", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_961", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_962", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_968", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_969", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_976", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_977", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_983", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_984", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_991", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_992", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_998", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_999", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1006", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1007", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1015", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_1016", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1017", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1027", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1167", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1382", "!(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1384", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1397", "(defined __USE_EXTERN_INLINES) && !(defined __need_malloc_and_calloc) && !(defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1398", "(defined __USE_EXTERN_INLINES) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1405", "!(defined __USE_EXTERN_INLINES) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1407", "(defined __USE_EXTERN_INLINES) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1424", "!(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1426", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1430", "!(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1432", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1539", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1604", "!(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1605", "(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1606", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1615", "!(defined __STRICT_ANSI__)"); +__static_condition_renaming("__static_condition_default_1778", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1785", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1793", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1794", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1798", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1811", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1814", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1818", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1834", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH"); +__static_condition_renaming("__static_condition_default_1835", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH"); +__static_condition_renaming("__static_condition_default_1836", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH"); +__static_condition_renaming("__static_condition_default_1837", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH"); +__static_condition_renaming("__static_condition_default_1838", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH"); +__static_condition_renaming("__static_condition_default_1839", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH"); +__static_condition_renaming("__static_condition_default_1840", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH"); +__static_condition_renaming("__static_condition_default_1841", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH"); +__static_condition_renaming("__static_condition_default_1842", "(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_1843", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_1844", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_1845", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_1846", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_1847", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_1848", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_1849", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_1850", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_1851", "!(defined _FORTIFY_SOURCE) && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_1852", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_1853", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_1854", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_1855", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_1856", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_1857", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_1858", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_1859", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_1860", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_1861", "!(defined _FORTIFY_SOURCE) && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_1862", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_1863", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_1864", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_1865", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_1866", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_1867", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_1868", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_1869", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_1870", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_1871", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH"); +__static_condition_renaming("__static_condition_default_1872", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH"); +__static_condition_renaming("__static_condition_default_1873", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH"); +__static_condition_renaming("__static_condition_default_1874", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH"); +__static_condition_renaming("__static_condition_default_1875", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH"); +__static_condition_renaming("__static_condition_default_1876", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH"); +__static_condition_renaming("__static_condition_default_1877", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH"); +__static_condition_renaming("__static_condition_default_1889", "!(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_1890", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_1891", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_1892", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_1893", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_1894", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_1895", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_1896", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_1897", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_1898", "(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_1899", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_1900", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_1901", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_1902", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_1903", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_1904", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_1905", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_1906", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_1907", "ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_1908", "!ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_1910", "(defined BB_MMU)"); +__static_condition_renaming("__static_condition_default_1915", "!(defined BB_MMU)"); +__static_condition_renaming("__static_condition_default_1916", "(defined BB_MMU)"); +__static_condition_renaming("__static_condition_default_1917", "!(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined __need_malloc_and_calloc) || (defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); + +if (__static_condition_default_1917) { __static_parse_error("Unable to parse"); } }; @@ -1777,514 +1234,311 @@ typedef long int ____ssize_t_49;// L110:L172 typedef long int ____syscall_slong_t_50;// L93:L175 typedef unsigned long int ____syscall_ulong_t_51;// L94:L177 typedef ____off64_t_24 ____loff_t_52;// L181 -typedef ____quad_t_14 * (____qaddr_t_54);// L182 -typedef char * (____caddr_t_55);// L183 -typedef long int ____intptr_t_56;// L110:L186 -typedef unsigned int ____socklen_t_57;// L92:L189 -typedef struct __forward_tag_reference_58 __FILE_59;// L48 -typedef struct __forward_tag_reference_58 ____FILE_60;// L64 -union ____anonymous_tag_61_62 { -unsigned int ____wch_63;// L265 -char ____wchb_64[4];// L92 -}; -struct ____anonymous_tag_65_66 { -int ____count_67;// L84 -union ____anonymous_tag_61_62 ____value_68;// L85 -}; -typedef struct ____anonymous_tag_65_66 ____mbstate_t_69;// L82:L94 -struct ____anonymous_tag_70_71 { -____off_t_23 ____pos_72;// L0 -____mbstate_t_69 ____state_74;// L0 +typedef ____quad_t_14 * (____qaddr_t_53);// L182 +typedef char * (____caddr_t_54);// L183 +typedef long int ____intptr_t_55;// L110:L186 +typedef unsigned int ____socklen_t_56;// L92:L189 +typedef struct __forward_tag_reference_57 __FILE_58;// L48 +typedef struct __forward_tag_reference_57 ____FILE_59;// L64 +union ____anonymous_tag_60_61 { +unsigned int ____wch_62;// L265 +char ____wchb_63[4];// L92 }; -typedef struct ____anonymous_tag_70_71 ___G_fpos_t_77;// L21:L25 -struct ____anonymous_tag_78_79 { -____off64_t_24 ____pos_80;// L0 -____mbstate_t_69 ____state_82;// L0 +struct ____anonymous_tag_64_65 { +int ____count_66;// L84 +union ____anonymous_tag_60_61 ____value_67;// L85 }; -typedef struct ____anonymous_tag_78_79 ___G_fpos64_t_85;// L26:L30 -typedef __builtin_va_list ____gnuc_va_list_86;// L40 -typedef void ___IO_lock_t_88;// L150 -struct ___IO_marker_90 { -struct __forward_tag_reference_89 * (___next_91);// L0 -struct __forward_tag_reference_58 * (___sbuf_92);// L0 -int ___pos_93;// L162 +typedef struct ____anonymous_tag_64_65 ____mbstate_t_68;// L82:L94 +struct ____anonymous_tag_69_70 { +____off_t_23 ____pos_71;// L0 +____mbstate_t_68 ____state_72;// L0 }; -enum ____codecvt_result_98 { -____codecvt_ok_94, -____codecvt_partial_95, -____codecvt_error_96, -____codecvt_noconv_97, +typedef struct ____anonymous_tag_69_70 ___G_fpos_t_75;// L21:L25 +struct ____anonymous_tag_76_77 { +____off64_t_24 ____pos_78;// L0 +____mbstate_t_68 ____state_79;// L0 }; -struct ___IO_FILE_99 { -int ___flags_100;// L242 -char * (___IO_read_ptr_101);// L247 -char * (___IO_read_end_102);// L248 -char * (___IO_read_base_103);// L249 -char * (___IO_write_base_104);// L250 -char * (___IO_write_ptr_105);// L251 -char * (___IO_write_end_106);// L252 -char * (___IO_buf_base_107);// L253 -char * (___IO_buf_end_108);// L254 -char * (___IO_save_base_109);// L256 -char * (___IO_backup_base_110);// L257 -char * (___IO_save_end_111);// L258 -struct ___IO_marker_90 * (___markers_112);// L260 -struct __forward_tag_reference_58 * (___chain_113);// L0 -int ___fileno_114;// L264 -int ___flags2_115;// L268 -____off_t_23 ___old_offset_116;// L0 -unsigned short ___cur_column_118;// L274 -signed char ___vtable_offset_119;// L275 -char ___shortbuf_120[1];// L276 -___IO_lock_t_88 * (___lock_121);// L0 +typedef struct ____anonymous_tag_76_77 ___G_fpos64_t_81;// L26:L30 +typedef __builtin_va_list ____gnuc_va_list_82;// L40 +typedef void ___IO_lock_t_84;// L150 +struct ___IO_marker_86 { +struct __forward_tag_reference_85 * (___next_87);// L0 +struct __forward_tag_reference_57 * (___sbuf_88);// L0 +int ___pos_89;// L162 }; -struct ___IO_FILE_124 { -int ___flags_125;// L242 -char * (___IO_read_ptr_126);// L247 -char * (___IO_read_end_127);// L248 -char * (___IO_read_base_128);// L249 -char * (___IO_write_base_129);// L250 -char * (___IO_write_ptr_130);// L251 -char * (___IO_write_end_131);// L252 -char * (___IO_buf_base_132);// L253 -char * (___IO_buf_end_133);// L254 -char * (___IO_save_base_134);// L256 -char * (___IO_backup_base_135);// L257 -char * (___IO_save_end_136);// L258 -struct ___IO_marker_90 * (___markers_137);// L260 -struct __forward_tag_reference_58 * (___chain_138);// L0 -int ___fileno_139;// L264 -int ___flags2_140;// L268 -____off_t_23 ___old_offset_141;// L0 -unsigned short ___cur_column_143;// L274 -signed char ___vtable_offset_144;// L275 -char ___shortbuf_145[1];// L276 -___IO_lock_t_88 * (___lock_146);// L0 -____off64_t_24 ___offset_148;// L0 -void * (____pad1_150);// L297 -void * (____pad2_151);// L298 -void * (____pad3_152);// L299 -void * (____pad4_153);// L300 -__size_t_1 ____pad5_154;// L0 -int ___mode_155;// L303 -char ___unused2_156[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +enum ____codecvt_result_94 { +____codecvt_ok_90, +____codecvt_partial_91, +____codecvt_error_92, +____codecvt_noconv_93, }; -struct ___IO_FILE_complete_157 { -struct ___IO_FILE_99 ___file_158;// L286 -____off64_t_24 ___offset_160;// L0 -void * (____pad1_162);// L297 -void * (____pad2_163);// L298 -void * (____pad3_164);// L299 -void * (____pad4_165);// L300 -__size_t_1 ____pad5_166;// L0 -int ___mode_167;// L303 -char ___unused2_168[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +struct ___IO_FILE_95 { +int ___flags_96;// L242 +char * (___IO_read_ptr_97);// L247 +char * (___IO_read_end_98);// L248 +char * (___IO_read_base_99);// L249 +char * (___IO_write_base_100);// L250 +char * (___IO_write_ptr_101);// L251 +char * (___IO_write_end_102);// L252 +char * (___IO_buf_base_103);// L253 +char * (___IO_buf_end_104);// L254 +char * (___IO_save_base_105);// L256 +char * (___IO_backup_base_106);// L257 +char * (___IO_save_end_107);// L258 +struct ___IO_marker_86 * (___markers_108);// L260 +struct __forward_tag_reference_57 * (___chain_109);// L0 +int ___fileno_110;// L264 +int ___flags2_111;// L268 +____off_t_23 ___old_offset_112;// L0 +unsigned short ___cur_column_113;// L274 +signed char ___vtable_offset_114;// L275 +char ___shortbuf_115[1];// L276 +___IO_lock_t_84 * (___lock_116);// L0 }; -typedef struct ___IO_FILE_99 ___IO_FILE_171;// L310 -typedef struct ___IO_FILE_124 ___IO_FILE_172;// L310 -typedef ____ssize_t_49 (____io_read_fn_181) (void * (____cookie_178), char * (____buf_179), __size_t_1 ____nbytes_180);// L333 -typedef ____ssize_t_49 (____io_write_fn_186) (void * (____cookie_183), const char * (____buf_184), __size_t_1 ____n_185);// L341:L342 -typedef int (____io_seek_fn_192) (void * (____cookie_188), ____off64_t_24 * (____pos_189), int ____w_191);// L350 -typedef int (____io_close_fn_195) (void * (____cookie_194));// L353 -typedef ____gnuc_va_list_86 __va_list_279;// L79 -typedef ____off_t_23 __off_t_281;// L90 -typedef ____off64_t_24 __off_t_283;// L92 -typedef ____ssize_t_49 __ssize_t_285;// L102 -typedef ___G_fpos_t_77 __fpos_t_287;// L110 -typedef ___G_fpos64_t_85 __fpos_t_289;// L112 -extern const char * const __sys_errlist_830[];// L27 -typedef long int __ptrdiff_t_1092;// L143:L324 -typedef long unsigned int __size_t_1093;// L177:L209 -typedef int __wchar_t_1094;// L243:L321 -enum ____anonymous_tag_1098_1099 { -__P_ALL_1095, -__P_PID_1096, -__P_PGID_1097, +struct ___IO_FILE_119 { +int ___flags_120;// L242 +char * (___IO_read_ptr_121);// L247 +char * (___IO_read_end_122);// L248 +char * (___IO_read_base_123);// L249 +char * (___IO_write_base_124);// L250 +char * (___IO_write_ptr_125);// L251 +char * (___IO_write_end_126);// L252 +char * (___IO_buf_base_127);// L253 +char * (___IO_buf_end_128);// L254 +char * (___IO_save_base_129);// L256 +char * (___IO_backup_base_130);// L257 +char * (___IO_save_end_131);// L258 +struct ___IO_marker_86 * (___markers_132);// L260 +struct __forward_tag_reference_57 * (___chain_133);// L0 +int ___fileno_134;// L264 +int ___flags2_135;// L268 +____off_t_23 ___old_offset_136;// L0 +unsigned short ___cur_column_137;// L274 +signed char ___vtable_offset_138;// L275 +char ___shortbuf_139[1];// L276 +___IO_lock_t_84 * (___lock_140);// L0 +____off64_t_24 ___offset_142;// L0 +void * (____pad1_143);// L297 +void * (____pad2_144);// L298 +void * (____pad3_145);// L299 +void * (____pad4_146);// L300 +__size_t_1 ____pad5_147;// L0 +int ___mode_148;// L303 +char ___unused2_149[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -typedef enum ____anonymous_tag_1098_1099 __idtype_t_1100;// L50:L55 -typedef unsigned char ____u_char_1101;// L30 -typedef unsigned short int ____u_short_1102;// L31 -typedef unsigned int ____u_int_1103;// L32 -typedef unsigned long int ____u_long_1104;// L33 -typedef signed char ____int8_t_1105;// L36 -typedef unsigned char ____uint8_t_1106;// L37 -typedef signed short int ____int16_t_1107;// L38 -typedef unsigned short int ____uint16_t_1108;// L39 -typedef signed int ____int32_t_1109;// L40 -typedef unsigned int ____uint32_t_1110;// L41 -typedef signed long int ____int64_t_1111;// L43 -typedef unsigned long int ____uint64_t_1112;// L44 -typedef long int ____quad_t_1113;// L52 -typedef unsigned long int ____u_quad_t_1114;// L53 -typedef unsigned long int ____dev_t_1115;// L109:L124 -typedef unsigned int ____uid_t_1116;// L92:L125 -typedef unsigned int ____gid_t_1117;// L92:L126 -typedef unsigned long int ____ino_t_1118;// L94:L127 -typedef unsigned long int ____ino64_t_1119;// L109:L128 -typedef unsigned int ____mode_t_1120;// L92:L129 -typedef unsigned long int ____nlink_t_1121;// L94:L130 -typedef long int ____off_t_1122;// L93:L131 -typedef long int ____off64_t_1123;// L108:L132 -typedef int ____pid_t_1124;// L91:L133 -struct ____anonymous_tag_1125_1126 { -int ____val_1127[2];// L72 +struct ___IO_FILE_complete_150 { +struct ___IO_FILE_95 ___file_151;// L286 +____off64_t_24 ___offset_153;// L0 +void * (____pad1_154);// L297 +void * (____pad2_155);// L298 +void * (____pad3_156);// L299 +void * (____pad4_157);// L300 +__size_t_1 ____pad5_158;// L0 +int ___mode_159;// L303 +char ___unused2_160[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -typedef struct ____anonymous_tag_1125_1126 ____fsid_t_1128;// L72:L134 -typedef long int ____clock_t_1129;// L93:L135 -typedef unsigned long int ____rlim_t_1130;// L94:L136 -typedef unsigned long int ____rlim64_t_1131;// L109:L137 -typedef unsigned int ____id_t_1132;// L92:L138 -typedef long int ____time_t_1133;// L93:L139 -typedef unsigned int ____useconds_t_1134;// L92:L140 -typedef long int ____suseconds_t_1135;// L93:L141 -typedef int ____daddr_t_1136;// L91:L143 -typedef int ____key_t_1137;// L91:L144 -typedef int ____clockid_t_1138;// L91:L147 -typedef void * (____timer_t_1139);// L70:L150 -typedef long int ____blksize_t_1140;// L93:L153 -typedef long int ____blkcnt_t_1141;// L93:L158 -typedef long int ____blkcnt64_t_1142;// L108:L159 -typedef unsigned long int ____fsblkcnt_t_1143;// L94:L162 -typedef unsigned long int ____fsblkcnt64_t_1144;// L109:L163 -typedef unsigned long int ____fsfilcnt_t_1145;// L94:L166 -typedef unsigned long int ____fsfilcnt64_t_1146;// L109:L167 -typedef long int ____fsword_t_1147;// L93:L170 -typedef long int ____ssize_t_1148;// L110:L172 -typedef long int ____syscall_slong_t_1149;// L93:L175 -typedef unsigned long int ____syscall_ulong_t_1150;// L94:L177 -typedef ____off64_t_1123 ____loff_t_1151;// L181 -typedef ____quad_t_1113 * (____qaddr_t_1153);// L182 -typedef char * (____caddr_t_1154);// L183 -typedef long int ____intptr_t_1155;// L110:L186 -typedef unsigned int ____socklen_t_1156;// L92:L189 -struct ____anonymous_tag_1166_1167 { -unsigned int ____w_termsig_1168 : 7;// L72 -unsigned int ____w_coredump_1169 : 1;// L73 -unsigned int ____w_retcode_1170 : 8;// L74 -unsigned int __anon_id_0_1171 : 16;// L75 +typedef struct ___IO_FILE_95 ___IO_FILE_163;// L310 +typedef struct ___IO_FILE_119 ___IO_FILE_164;// L310 +typedef ____ssize_t_49 (____io_read_fn_173) (void * (____cookie_170), char * (____buf_171), __size_t_1 ____nbytes_172);// L333 +typedef ____ssize_t_49 (____io_write_fn_177) (void * (____cookie_174), const char * (____buf_175), __size_t_1 ____n_176);// L341:L342 +typedef int (____io_seek_fn_181) (void * (____cookie_178), ____off64_t_24 * (____pos_179), int ____w_180);// L350 +typedef int (____io_close_fn_183) (void * (____cookie_182));// L353 +typedef ____gnuc_va_list_82 __va_list_248;// L79 +typedef ____off_t_23 __off_t_250;// L90 +typedef ____off64_t_24 __off_t_251;// L92 +typedef ____ssize_t_49 __ssize_t_252;// L102 +typedef ___G_fpos_t_75 __fpos_t_253;// L110 +typedef ___G_fpos64_t_81 __fpos_t_255;// L112 +extern const char * const __sys_errlist_756[];// L27 +typedef int __wchar_t_1018;// L243:L321 +enum ____anonymous_tag_1022_1023 { +__P_ALL_1019, +__P_PID_1020, +__P_PGID_1021, }; -struct ____anonymous_tag_1172_1173 { -unsigned int ____w_stopval_1174 : 8;// L87 -unsigned int ____w_stopsig_1175 : 8;// L88 -unsigned int __anon_id_1_1176 : 16;// L89 +typedef enum ____anonymous_tag_1022_1023 __idtype_t_1024;// L50:L55 +struct ____anonymous_tag_1030_1031 { +unsigned int ____w_termsig_1032 : 7;// L72 +unsigned int ____w_coredump_1033 : 1;// L73 +unsigned int ____w_retcode_1034 : 8;// L74 +unsigned int __anon_id_0_1035 : 16;// L75 }; -union __wait_1177 { -int __w_status_1178;// L68 -struct ____anonymous_tag_1166_1167 ____wait_terminated_1179;// L69 -struct ____anonymous_tag_1172_1173 ____wait_stopped_1180;// L84 +struct ____anonymous_tag_1036_1037 { +unsigned int ____w_stopval_1038 : 8;// L87 +unsigned int ____w_stopsig_1039 : 8;// L88 +unsigned int __anon_id_1_1040 : 16;// L89 }; -union ____anonymous_tag_1181_1182 { -union __wait_1177 * (____uptr_1183);// L69 -int * (____iptr_1184);// L70 +union __wait_1041 { +int __w_status_1042;// L68 +struct ____anonymous_tag_1030_1031 ____wait_terminated_1043;// L69 +struct ____anonymous_tag_1036_1037 ____wait_stopped_1044;// L84 }; -typedef union ____anonymous_tag_1181_1182 ____WAIT_STATUS_1185;// L67:L71 -struct ____anonymous_tag_1186_1187 { -int __quot_1188;// L99 -int __rem_1189;// L100 +union ____anonymous_tag_1045_1046 { +union __wait_1041 * (____uptr_1047);// L69 +int * (____iptr_1048);// L70 }; -typedef struct ____anonymous_tag_1186_1187 __div_t_1190;// L97:L101 -struct ____anonymous_tag_1191_1192 { -long int __quot_1193;// L107 -long int __rem_1194;// L108 +typedef union ____anonymous_tag_1045_1046 ____WAIT_STATUS_1049;// L67:L71 +struct ____anonymous_tag_1050_1051 { +int __quot_1052;// L99 +int __rem_1053;// L100 }; -typedef struct ____anonymous_tag_1191_1192 __ldiv_t_1195;// L105:L109 -struct ____anonymous_tag_1196_1197 { -long long int __quot_1198;// L119 -long long int __rem_1199;// L120 +typedef struct ____anonymous_tag_1050_1051 __div_t_1054;// L97:L101 +struct ____anonymous_tag_1055_1056 { +long int __quot_1057;// L107 +long int __rem_1058;// L108 }; -typedef struct ____anonymous_tag_1196_1197 __lldiv_t_1200;// L117:L121 -typedef unsigned char ____u_char_1264;// L30 -typedef unsigned short int ____u_short_1265;// L31 -typedef unsigned int ____u_int_1266;// L32 -typedef unsigned long int ____u_long_1267;// L33 -typedef signed char ____int8_t_1268;// L36 -typedef unsigned char ____uint8_t_1269;// L37 -typedef signed short int ____int16_t_1270;// L38 -typedef unsigned short int ____uint16_t_1271;// L39 -typedef signed int ____int32_t_1272;// L40 -typedef unsigned int ____uint32_t_1273;// L41 -typedef signed long int ____int64_t_1274;// L43 -typedef unsigned long int ____uint64_t_1275;// L44 -typedef long int ____quad_t_1276;// L52 -typedef unsigned long int ____u_quad_t_1277;// L53 -typedef unsigned long int ____dev_t_1278;// L109:L124 -typedef unsigned int ____uid_t_1279;// L92:L125 -typedef unsigned int ____gid_t_1280;// L92:L126 -typedef unsigned long int ____ino_t_1281;// L94:L127 -typedef unsigned long int ____ino64_t_1282;// L109:L128 -typedef unsigned int ____mode_t_1283;// L92:L129 -typedef unsigned long int ____nlink_t_1284;// L94:L130 -typedef long int ____off_t_1285;// L93:L131 -typedef long int ____off64_t_1286;// L108:L132 -typedef int ____pid_t_1287;// L91:L133 -struct ____anonymous_tag_1288_1289 { -int ____val_1290[2];// L72 +typedef struct ____anonymous_tag_1055_1056 __ldiv_t_1059;// L105:L109 +struct ____anonymous_tag_1060_1061 { +long long int __quot_1062;// L119 +long long int __rem_1063;// L120 }; -typedef struct ____anonymous_tag_1288_1289 ____fsid_t_1291;// L72:L134 -typedef long int ____clock_t_1292;// L93:L135 -typedef unsigned long int ____rlim_t_1293;// L94:L136 -typedef unsigned long int ____rlim64_t_1294;// L109:L137 -typedef unsigned int ____id_t_1295;// L92:L138 -typedef long int ____time_t_1296;// L93:L139 -typedef unsigned int ____useconds_t_1297;// L92:L140 -typedef long int ____suseconds_t_1298;// L93:L141 -typedef int ____daddr_t_1299;// L91:L143 -typedef int ____key_t_1300;// L91:L144 -typedef int ____clockid_t_1301;// L91:L147 -typedef void * (____timer_t_1302);// L70:L150 -typedef long int ____blksize_t_1303;// L93:L153 -typedef long int ____blkcnt_t_1304;// L93:L158 -typedef long int ____blkcnt64_t_1305;// L108:L159 -typedef unsigned long int ____fsblkcnt_t_1306;// L94:L162 -typedef unsigned long int ____fsblkcnt64_t_1307;// L109:L163 -typedef unsigned long int ____fsfilcnt_t_1308;// L94:L166 -typedef unsigned long int ____fsfilcnt64_t_1309;// L109:L167 -typedef long int ____fsword_t_1310;// L93:L170 -typedef long int ____ssize_t_1311;// L110:L172 -typedef long int ____syscall_slong_t_1312;// L93:L175 -typedef unsigned long int ____syscall_ulong_t_1313;// L94:L177 -typedef ____off64_t_1286 ____loff_t_1314;// L181 -typedef ____quad_t_1276 * (____qaddr_t_1316);// L182 -typedef char * (____caddr_t_1317);// L183 -typedef long int ____intptr_t_1318;// L110:L186 -typedef unsigned int ____socklen_t_1319;// L92:L189 -typedef ____u_char_2 __u_char_1320;// L33 -typedef ____u_char_1101 __u_char_1321;// L33 -typedef ____u_char_1264 __u_char_1322;// L33 -typedef ____u_short_3 __u_short_1323;// L34 -typedef ____u_short_1102 __u_short_1324;// L34 -typedef ____u_short_1265 __u_short_1325;// L34 -typedef ____u_int_4 __u_int_1326;// L35 -typedef ____u_int_1103 __u_int_1327;// L35 -typedef ____u_int_1266 __u_int_1328;// L35 -typedef ____u_long_5 __u_long_1329;// L36 -typedef ____u_long_1104 __u_long_1330;// L36 -typedef ____u_long_1267 __u_long_1331;// L36 -typedef ____quad_t_14 __quad_t_1332;// L37 -typedef ____quad_t_1113 __quad_t_1333;// L37 -typedef ____quad_t_1276 __quad_t_1334;// L37 -typedef ____u_quad_t_15 __u_quad_t_1335;// L38 -typedef ____u_quad_t_1114 __u_quad_t_1336;// L38 -typedef ____u_quad_t_1277 __u_quad_t_1337;// L38 -typedef ____fsid_t_29 __fsid_t_1338;// L39 -typedef ____fsid_t_1128 __fsid_t_1339;// L39 -typedef ____fsid_t_1291 __fsid_t_1340;// L39 -typedef ____loff_t_52 __loff_t_1342;// L44 -typedef ____loff_t_1151 __loff_t_1343;// L44 -typedef ____loff_t_1314 __loff_t_1344;// L44 -typedef ____loff_t_52 __loff_t_1346;// L44 -typedef ____loff_t_1151 __loff_t_1347;// L44 -typedef ____loff_t_1314 __loff_t_1348;// L44 -typedef ____ino64_t_20 __ino_t_1350;// L50 -typedef ____ino64_t_1119 __ino_t_1351;// L50 -typedef ____ino64_t_1282 __ino_t_1352;// L50 -typedef ____ino_t_19 __ino_t_1354;// L48 -typedef ____ino_t_1118 __ino_t_1355;// L48 -typedef ____ino_t_1281 __ino_t_1356;// L48 -typedef ____dev_t_16 __dev_t_1358;// L60 -typedef ____dev_t_1115 __dev_t_1359;// L60 -typedef ____dev_t_1278 __dev_t_1360;// L60 -typedef ____gid_t_18 __gid_t_1362;// L65 -typedef ____gid_t_1117 __gid_t_1363;// L65 -typedef ____gid_t_1280 __gid_t_1364;// L65 -typedef ____gid_t_18 __gid_t_1366;// L65 -typedef ____gid_t_1117 __gid_t_1367;// L65 -typedef ____gid_t_1280 __gid_t_1368;// L65 -typedef ____mode_t_21 __mode_t_1370;// L70 -typedef ____mode_t_1120 __mode_t_1371;// L70 -typedef ____mode_t_1283 __mode_t_1372;// L70 -typedef ____nlink_t_22 __nlink_t_1374;// L75 -typedef ____nlink_t_1121 __nlink_t_1375;// L75 -typedef ____nlink_t_1284 __nlink_t_1376;// L75 -typedef ____uid_t_17 __uid_t_1378;// L80 -typedef ____uid_t_1116 __uid_t_1379;// L80 -typedef ____uid_t_1279 __uid_t_1380;// L80 -typedef ____uid_t_17 __uid_t_1382;// L80 -typedef ____uid_t_1116 __uid_t_1383;// L80 -typedef ____uid_t_1279 __uid_t_1384;// L80 -typedef ____off64_t_1123 __off_t_1386;// L88 -typedef ____off64_t_1286 __off_t_1387;// L88 -typedef ____off_t_1122 __off_t_1389;// L86 -typedef ____off_t_1285 __off_t_1390;// L86 -typedef ____pid_t_25 __pid_t_1392;// L98 -typedef ____pid_t_1124 __pid_t_1393;// L98 -typedef ____pid_t_1287 __pid_t_1394;// L98 -typedef ____pid_t_1124 __pid_t_1396;// L98 -typedef ____pid_t_1287 __pid_t_1397;// L98 -typedef ____id_t_33 __id_t_1399;// L104 -typedef ____id_t_1132 __id_t_1400;// L104 -typedef ____id_t_1295 __id_t_1401;// L104 -typedef ____ssize_t_1148 __ssize_t_1403;// L109 -typedef ____ssize_t_1311 __ssize_t_1404;// L109 -typedef ____daddr_t_37 __daddr_t_1406;// L115 -typedef ____daddr_t_1136 __daddr_t_1407;// L115 -typedef ____daddr_t_1299 __daddr_t_1408;// L115 -typedef ____caddr_t_55 __caddr_t_1410;// L116 -typedef ____caddr_t_1154 __caddr_t_1411;// L116 -typedef ____caddr_t_1317 __caddr_t_1412;// L116 -typedef ____key_t_38 __key_t_1413;// L122 -typedef ____key_t_1137 __key_t_1414;// L122 -typedef ____key_t_1300 __key_t_1415;// L122 -typedef ____key_t_38 __key_t_1417;// L122 -typedef ____key_t_1137 __key_t_1418;// L122 -typedef ____key_t_1300 __key_t_1419;// L122 -typedef ____clock_t_30 __clock_t_1421;// L59 -typedef ____clock_t_1129 __clock_t_1422;// L59 -typedef ____clock_t_1292 __clock_t_1423;// L59 -typedef ____time_t_34 __time_t_1425;// L75 -typedef ____time_t_1133 __time_t_1426;// L75 -typedef ____time_t_1296 __time_t_1427;// L75 -typedef ____clockid_t_39 __clockid_t_1429;// L91 -typedef ____clockid_t_1138 __clockid_t_1430;// L91 -typedef ____clockid_t_1301 __clockid_t_1431;// L91 -typedef ____timer_t_40 __timer_t_1433;// L103 -typedef ____timer_t_1139 __timer_t_1434;// L103 -typedef ____timer_t_1302 __timer_t_1435;// L103 -typedef unsigned long int __ulong_1437;// L150 -typedef unsigned long int __ulong_1438;// L150 -typedef unsigned long int __ulong_1439;// L150 -typedef unsigned short int __ushort_1440;// L151 -typedef unsigned int __uint_1441;// L152 -typedef int __int8_t_1442;// L188:L194 -typedef int __int16_t_1443;// L188:L195 -typedef int __int32_t_1444;// L188:L196 -typedef int __int64_t_1445;// L188:L197 -typedef unsigned int __u_int8_t_1446;// L190:L200 -typedef unsigned int __u_int16_t_1447;// L190:L201 -typedef unsigned int __u_int32_t_1448;// L190:L202 -typedef unsigned int __u_int64_t_1449;// L190:L203 -typedef int __register_t_1450;// L205 -typedef int ____sig_atomic_t_1460;// L22 -struct ____anonymous_tag_1461_1462 { -unsigned long int ____val_1463[( 1024 / ( 8 * sizeof(unsigned long) ) )];// L29 +typedef struct ____anonymous_tag_1060_1061 __lldiv_t_1064;// L117:L121 +typedef ____u_char_2 __u_char_1124;// L33 +typedef ____u_short_3 __u_short_1125;// L34 +typedef ____u_int_4 __u_int_1126;// L35 +typedef ____u_long_5 __u_long_1127;// L36 +typedef ____quad_t_14 __quad_t_1128;// L37 +typedef ____u_quad_t_15 __u_quad_t_1129;// L38 +typedef ____fsid_t_29 __fsid_t_1130;// L39 +typedef ____loff_t_52 __loff_t_1131;// L44 +typedef ____ino_t_19 __ino_t_1132;// L48 +typedef ____ino64_t_20 __ino_t_1133;// L50 +typedef ____dev_t_16 __dev_t_1134;// L60 +typedef ____gid_t_18 __gid_t_1135;// L65 +typedef ____gid_t_18 __gid_t_1136;// L65 +typedef ____mode_t_21 __mode_t_1137;// L70 +typedef ____nlink_t_22 __nlink_t_1138;// L75 +typedef ____uid_t_17 __uid_t_1139;// L80 +typedef ____uid_t_17 __uid_t_1140;// L80 +typedef ____pid_t_25 __pid_t_1141;// L98 +typedef ____id_t_33 __id_t_1142;// L104 +typedef ____daddr_t_37 __daddr_t_1143;// L115 +typedef ____caddr_t_54 __caddr_t_1144;// L116 +typedef ____key_t_38 __key_t_1145;// L122 +typedef ____key_t_38 __key_t_1146;// L122 +typedef ____clock_t_30 __clock_t_1147;// L59 +typedef ____time_t_34 __time_t_1148;// L75 +typedef ____clockid_t_39 __clockid_t_1149;// L91 +typedef ____timer_t_40 __timer_t_1150;// L103 +typedef unsigned long int __ulong_1151;// L150 +typedef unsigned long int __ulong_1152;// L150 +typedef unsigned long int __ulong_1153;// L150 +typedef unsigned short int __ushort_1154;// L151 +typedef unsigned int __uint_1155;// L152 +typedef int __int8_t_1156;// L188:L194 +typedef int __int16_t_1157;// L188:L195 +typedef int __int32_t_1158;// L188:L196 +typedef int __int64_t_1159;// L188:L197 +typedef unsigned int __u_int8_t_1160;// L190:L200 +typedef unsigned int __u_int16_t_1161;// L190:L201 +typedef unsigned int __u_int32_t_1162;// L190:L202 +typedef unsigned int __u_int64_t_1163;// L190:L203 +typedef int __register_t_1164;// L205 +typedef int ____sig_atomic_t_1170;// L22 +struct ____anonymous_tag_1171_1172 { +unsigned long int ____val_1173[( 1024 / ( 8 * sizeof(unsigned long) ) )];// L29 }; -typedef struct ____anonymous_tag_1461_1462 ____sigset_t_1464;// L27:L30 -typedef ____sigset_t_1464 __sigset_t_1465;// L37 -struct __timespec_1466 { -____time_t_34 __tv_sec_1467;// L0 -____time_t_1133 __tv_sec_1468;// L0 -____time_t_1296 __tv_sec_1469;// L0 -____syscall_slong_t_50 __tv_nsec_1471;// L0 -____syscall_slong_t_1149 __tv_nsec_1472;// L0 -____syscall_slong_t_1312 __tv_nsec_1473;// L0 +typedef struct ____anonymous_tag_1171_1172 ____sigset_t_1174;// L27:L30 +typedef ____sigset_t_1174 __sigset_t_1175;// L37 +struct __timespec_1176 { +____time_t_34 __tv_sec_1177;// L0 +____syscall_slong_t_50 __tv_nsec_1178;// L0 }; -struct __timeval_1476 { -____time_t_34 __tv_sec_1477;// L0 -____time_t_1133 __tv_sec_1478;// L0 -____time_t_1296 __tv_sec_1479;// L0 -____suseconds_t_36 __tv_usec_1481;// L0 -____suseconds_t_1135 __tv_usec_1482;// L0 -____suseconds_t_1298 __tv_usec_1483;// L0 +struct __timeval_1179 { +____time_t_34 __tv_sec_1180;// L0 +____suseconds_t_36 __tv_usec_1181;// L0 }; -typedef ____suseconds_t_36 __suseconds_t_1486;// L48 -typedef ____suseconds_t_1135 __suseconds_t_1487;// L48 -typedef ____suseconds_t_1298 __suseconds_t_1488;// L48 -typedef long int ____fd_mask_1490;// L54 -typedef long int ____fd_mask_1491;// L54 -struct ____anonymous_tag_1492_1493 { -____fd_mask_1490 ____fds_bits_1494[1024 / ( 8 * ( int ) sizeof(long) )];// L0 -____fd_mask_1491 ____fds_bits_1496[1024 / ( 8 * ( int ) sizeof(long) )];// L0 +typedef ____suseconds_t_36 __suseconds_t_1182;// L48 +typedef long int ____fd_mask_1183;// L54 +typedef long int ____fd_mask_1184;// L54 +struct ____anonymous_tag_1185_1186 { +____fd_mask_1183 ____fds_bits_1187[1024 / ( 8 * ( int ) sizeof(long) )];// L0 +____fd_mask_1184 ____fds_bits_1188[1024 / ( 8 * ( int ) sizeof(long) )];// L0 }; -typedef struct ____anonymous_tag_1492_1493 __fd_set_1499;// L64:L75 -typedef ____fd_mask_1490 __fd_mask_1500;// L82 -typedef ____fd_mask_1491 __fd_mask_1501;// L82 -typedef ____blksize_t_41 __blksize_t_1549;// L228 -typedef ____blksize_t_1140 __blksize_t_1550;// L228 -typedef ____blksize_t_1303 __blksize_t_1551;// L228 -typedef ____blkcnt_t_42 __blkcnt_t_1553;// L235 -typedef ____blkcnt_t_1141 __blkcnt_t_1554;// L235 -typedef ____blkcnt_t_1304 __blkcnt_t_1555;// L235 -typedef ____fsblkcnt_t_44 __fsblkcnt_t_1557;// L239 -typedef ____fsblkcnt_t_1143 __fsblkcnt_t_1558;// L239 -typedef ____fsblkcnt_t_1306 __fsblkcnt_t_1559;// L239 -typedef ____blkcnt64_t_43 __blkcnt_t_1561;// L248 -typedef ____blkcnt64_t_1142 __blkcnt_t_1562;// L248 -typedef ____blkcnt64_t_1305 __blkcnt_t_1563;// L248 -typedef ____fsblkcnt64_t_45 __fsblkcnt_t_1565;// L252 -typedef ____fsblkcnt64_t_1144 __fsblkcnt_t_1566;// L252 -typedef ____fsblkcnt64_t_1307 __fsblkcnt_t_1567;// L252 -typedef ____fsfilcnt_t_46 __fsfilcnt_t_1569;// L243 -typedef ____fsfilcnt_t_1145 __fsfilcnt_t_1570;// L243 -typedef ____fsfilcnt_t_1308 __fsfilcnt_t_1571;// L243 -typedef ____fsfilcnt64_t_47 __fsfilcnt_t_1573;// L256 -typedef ____fsfilcnt64_t_1146 __fsfilcnt_t_1574;// L256 -typedef ____fsfilcnt64_t_1309 __fsfilcnt_t_1575;// L256 -typedef unsigned long int __pthread_t_1577;// L60 -union __pthread_attr_t_1578 { -char ____size_1579[56];// L65 -long int ____align_1580;// L66 +typedef struct ____anonymous_tag_1185_1186 __fd_set_1189;// L64:L75 +typedef ____fd_mask_1183 __fd_mask_1190;// L82 +typedef ____fd_mask_1184 __fd_mask_1191;// L82 +typedef ____blksize_t_41 __blksize_t_1227;// L228 +typedef ____blkcnt_t_42 __blkcnt_t_1228;// L235 +typedef ____fsblkcnt_t_44 __fsblkcnt_t_1229;// L239 +typedef ____blkcnt64_t_43 __blkcnt_t_1230;// L248 +typedef ____fsblkcnt64_t_45 __fsblkcnt_t_1231;// L252 +typedef ____fsfilcnt_t_46 __fsfilcnt_t_1232;// L243 +typedef ____fsfilcnt64_t_47 __fsfilcnt_t_1233;// L256 +typedef unsigned long int __pthread_t_1234;// L60 +union __pthread_attr_t_1235 { +char ____size_1236[56];// L65 +long int ____align_1237;// L66 }; -typedef union __pthread_attr_t_1578 __pthread_attr_t_1581;// L69 -struct ____pthread_internal_list_1583 { -struct __forward_tag_reference_1582 * (____prev_1584);// L0 -struct __forward_tag_reference_1582 * (____next_1585);// L0 +typedef union __pthread_attr_t_1235 __pthread_attr_t_1238;// L69 +struct ____pthread_internal_list_1240 { +struct __forward_tag_reference_1239 * (____prev_1241);// L0 +struct __forward_tag_reference_1239 * (____next_1242);// L0 }; -typedef struct ____pthread_internal_list_1583 ____pthread_list_t_1586;// L75:L79 -typedef struct ____pthread_internal_list_1583 ____pthread_list_t_1587;// L75:L79 -struct ____pthread_mutex_s_1588 { -int ____lock_1589;// L94 -unsigned int ____count_1590;// L95 -int ____owner_1591;// L96 -unsigned int ____nusers_1592;// L98 -int ____kind_1593;// L102 -short ____spins_1594;// L104 -short ____elision_1595;// L105 -____pthread_list_t_1586 ____list_1596;// L0 -____pthread_list_t_1587 ____list_1597;// L0 +typedef struct ____pthread_internal_list_1240 ____pthread_list_t_1243;// L75:L79 +typedef struct ____pthread_internal_list_1240 ____pthread_list_t_1244;// L75:L79 +struct ____pthread_mutex_s_1245 { +int ____lock_1246;// L94 +unsigned int ____count_1247;// L95 +int ____owner_1248;// L96 +unsigned int ____nusers_1249;// L98 +int ____kind_1250;// L102 +short ____spins_1251;// L104 +short ____elision_1252;// L105 +____pthread_list_t_1243 ____list_1253;// L0 +____pthread_list_t_1244 ____list_1254;// L0 }; -union ____anonymous_tag_1598_1599 { -struct ____pthread_mutex_s_1588 ____data_1600;// L92 -char ____size_1601[40];// L126 -long int ____align_1602;// L127 +union ____anonymous_tag_1255_1256 { +struct ____pthread_mutex_s_1245 ____data_1257;// L92 +char ____size_1258[40];// L126 +long int ____align_1259;// L127 }; -typedef union ____anonymous_tag_1598_1599 __pthread_mutex_t_1603;// L90:L128 -union ____anonymous_tag_1604_1605 { -char ____size_1606[4];// L132 -int ____align_1607;// L133 +typedef union ____anonymous_tag_1255_1256 __pthread_mutex_t_1260;// L90:L128 +union ____anonymous_tag_1261_1262 { +char ____size_1263[4];// L132 +int ____align_1264;// L133 }; -typedef union ____anonymous_tag_1604_1605 __pthread_mutexattr_t_1608;// L130:L134 -typedef int (* (____compar_fn_t_1740)) (const void *, const void *);// L741 -typedef long int __ptrdiff_t_2036;// L143:L324 -typedef long unsigned int __size_t_2037;// L177:L209 -struct ____locale_struct_2137 { -struct __forward_tag_reference_2136 * (____locales_2138[13]);// L0 -const unsigned short int * (____ctype_b_2139);// L33 -const int * (____ctype_tolower_2140);// L34 -const int * (____ctype_toupper_2141);// L35 -const char * (____names_2142[13]);// L38 +typedef union ____anonymous_tag_1261_1262 __pthread_mutexattr_t_1265;// L130:L134 +typedef int (* (____compar_fn_t_1375)) (const void *, const void *);// L741 +struct ____locale_struct_1658 { +struct __forward_tag_reference_1657 * (____locales_1659[13]);// L0 +const unsigned short int * (____ctype_b_1660);// L33 +const int * (____ctype_tolower_1661);// L34 +const int * (____ctype_toupper_1662);// L35 +const char * (____names_1663[13]);// L38 }; -typedef struct ____locale_struct_2137 * (____locale_t_2143);// L27:L39 -typedef ____locale_t_2143 __locale_t_2144;// L42 +typedef struct ____locale_struct_1658 * (____locale_t_1664);// L27:L39 +typedef ____locale_t_1664 __locale_t_1665;// L42 -struct __forward_tag_reference_89 { // generated union of struct variations +struct __forward_tag_reference_57 { // generated union of struct variations union { -struct ___IO_marker_90 ___IO_marker_90; +struct ___IO_FILE_95 ___IO_FILE_95; +struct ___IO_FILE_119 ___IO_FILE_119; }; }; -struct __forward_tag_reference_1582 { // generated union of struct variations +struct __forward_tag_reference_85 { // generated union of struct variations union { +struct ___IO_marker_86 ___IO_marker_86; }; }; -struct __forward_tag_reference_58 { // generated union of struct variations +struct __forward_tag_reference_1239 { // generated union of struct variations union { -struct ___IO_FILE_99 ___IO_FILE_99; -struct ___IO_FILE_124 ___IO_FILE_124; }; }; -struct __forward_tag_reference_2136 { // generated union of struct variations +struct __forward_tag_reference_83 { // generated union of struct variations union { }; }; -struct __forward_tag_reference_87 { // generated union of struct variations +struct __forward_tag_reference_1657 { // generated union of struct variations union { }; }; -struct __forward_tag_reference_174 { // generated union of struct variations +struct __forward_tag_reference_166 { // generated union of struct variations union { }; }; @@ -2343,225 +1597,225 @@ union { // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_58 ;// L0 +struct __forward_tag_reference_57 ;// L0 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_87 ;// L0 -struct __forward_tag_reference_87 ;// L0 -struct __forward_tag_reference_58 ;// L0 +struct __forward_tag_reference_83 ;// L0 +struct __forward_tag_reference_83 ;// L0 +struct __forward_tag_reference_57 ;// L0 // typedef moved to top of scope -struct ___IO_marker_90 ;// L156 -enum ____codecvt_result_98 ;// L176 -struct ___IO_FILE_99 ;// L241 +struct ___IO_marker_86 ;// L156 +enum ____codecvt_result_94 ;// L176 +struct ___IO_FILE_95 ;// L241 -struct ___IO_FILE_124 ;// L241 -struct ___IO_FILE_complete_157 ;// L241 +struct ___IO_FILE_119 ;// L241 +struct ___IO_FILE_complete_150 ;// L241 // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_174 ;// L0 -extern struct __forward_tag_reference_174 ___IO_2_1_stdin__175;// L315 -extern struct __forward_tag_reference_174 ___IO_2_1_stdout__176;// L316 -extern struct __forward_tag_reference_174 ___IO_2_1_stderr__177;// L317 +struct __forward_tag_reference_166 ;// L0 +extern struct __forward_tag_reference_166 ___IO_2_1_stdin__167;// L315 +extern struct __forward_tag_reference_166 ___IO_2_1_stdout__168;// L316 +extern struct __forward_tag_reference_166 ___IO_2_1_stderr__169;// L317 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern int (____underflow_196) (___IO_FILE_171 *);// L385 -extern int (____underflow_197) (___IO_FILE_172 *);// L385 -extern int (____uflow_199) (___IO_FILE_171 *);// L386 -extern int (____uflow_200) (___IO_FILE_172 *);// L386 -extern int (____overflow_202) (___IO_FILE_171 *, int );// L387 -extern int (____overflow_203) (___IO_FILE_172 *, int );// L387 -extern int (___IO_getc_208) (___IO_FILE_171 * (____fp_205));// L429 -extern int (___IO_getc_209) (___IO_FILE_172 * (____fp_206));// L429 -extern int (___IO_putc_215) (int ____c_211, ___IO_FILE_171 * (____fp_212));// L430 -extern int (___IO_putc_216) (int ____c_211, ___IO_FILE_172 * (____fp_213));// L430 -extern int (___IO_feof_221) (___IO_FILE_171 * (____fp_218));// L431 -extern int (___IO_feof_222) (___IO_FILE_172 * (____fp_219));// L431 -extern int (___IO_ferror_227) (___IO_FILE_171 * (____fp_224));// L432 -extern int (___IO_ferror_228) (___IO_FILE_172 * (____fp_225));// L432 -extern int (___IO_peekc_locked_233) (___IO_FILE_171 * (____fp_230));// L434 -extern int (___IO_peekc_locked_234) (___IO_FILE_172 * (____fp_231));// L434 -extern void (___IO_flockfile_236) (___IO_FILE_171 *);// L440 -extern void (___IO_flockfile_237) (___IO_FILE_172 *);// L440 -extern void (___IO_funlockfile_239) (___IO_FILE_171 *);// L441 -extern void (___IO_funlockfile_240) (___IO_FILE_172 *);// L441 -extern int (___IO_ftrylockfile_242) (___IO_FILE_171 *);// L442 -extern int (___IO_ftrylockfile_243) (___IO_FILE_172 *);// L442 -extern int (___IO_vfscanf_245) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_247) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_251) (___IO_FILE_171 * __restrict , const char * __restrict , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_252) (___IO_FILE_172 * __restrict , const char * __restrict , int * __restrict );// L459:L460 -extern int (___IO_vfprintf_254) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 -extern int (___IO_vfprintf_256) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 -extern int (___IO_vfprintf_260) ();// L461:L462 -extern ____ssize_t_49 (___IO_padn_261) (___IO_FILE_171 *, int , ____ssize_t_49 );// L463 -extern ____ssize_t_49 (___IO_padn_262) (___IO_FILE_172 *, int , ____ssize_t_49 );// L463 -extern __size_t_1 (___IO_sgetn_265) (___IO_FILE_171 *, void *, __size_t_1 );// L464 -extern __size_t_1 (___IO_sgetn_266) (___IO_FILE_172 *, void *, __size_t_1 );// L464 -extern ____off64_t_24 (___IO_seekoff_268) (___IO_FILE_171 *, ____off64_t_24 , int , int );// L466 -extern ____off64_t_24 (___IO_seekoff_269) (___IO_FILE_172 *, ____off64_t_24 , int , int );// L466 -extern ____off64_t_24 (___IO_seekpos_272) (___IO_FILE_171 *, ____off64_t_24 , int );// L467 -extern ____off64_t_24 (___IO_seekpos_273) (___IO_FILE_172 *, ____off64_t_24 , int );// L467 -extern void (___IO_free_backup_area_276) (___IO_FILE_171 *);// L469 -extern void (___IO_free_backup_area_277) (___IO_FILE_172 *);// L469 +extern int (____underflow_184) (___IO_FILE_163 *);// L385 +extern int (____underflow_185) (___IO_FILE_164 *);// L385 +extern int (____uflow_186) (___IO_FILE_163 *);// L386 +extern int (____uflow_187) (___IO_FILE_164 *);// L386 +extern int (____overflow_188) (___IO_FILE_163 *, int );// L387 +extern int (____overflow_189) (___IO_FILE_164 *, int );// L387 +extern int (___IO_getc_193) (___IO_FILE_163 * (____fp_190));// L429 +extern int (___IO_getc_194) (___IO_FILE_164 * (____fp_191));// L429 +extern int (___IO_putc_199) (int ____c_195, ___IO_FILE_163 * (____fp_196));// L430 +extern int (___IO_putc_200) (int ____c_195, ___IO_FILE_164 * (____fp_197));// L430 +extern int (___IO_feof_204) (___IO_FILE_163 * (____fp_201));// L431 +extern int (___IO_feof_205) (___IO_FILE_164 * (____fp_202));// L431 +extern int (___IO_ferror_209) (___IO_FILE_163 * (____fp_206));// L432 +extern int (___IO_ferror_210) (___IO_FILE_164 * (____fp_207));// L432 +extern int (___IO_peekc_locked_214) (___IO_FILE_163 * (____fp_211));// L434 +extern int (___IO_peekc_locked_215) (___IO_FILE_164 * (____fp_212));// L434 +extern void (___IO_flockfile_216) (___IO_FILE_163 *);// L440 +extern void (___IO_flockfile_217) (___IO_FILE_164 *);// L440 +extern void (___IO_funlockfile_218) (___IO_FILE_163 *);// L441 +extern void (___IO_funlockfile_219) (___IO_FILE_164 *);// L441 +extern int (___IO_ftrylockfile_220) (___IO_FILE_163 *);// L442 +extern int (___IO_ftrylockfile_221) (___IO_FILE_164 *);// L442 +extern int (___IO_vfscanf_222) (___IO_FILE_163 * __restrict , const char * __restrict , ____gnuc_va_list_82 , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_224) (___IO_FILE_164 * __restrict , const char * __restrict , ____gnuc_va_list_82 , int * __restrict );// L459:L460 + + +extern int (___IO_vfprintf_231) (___IO_FILE_163 * __restrict , const char * __restrict , ____gnuc_va_list_82 );// L461:L462 +extern int (___IO_vfprintf_233) (___IO_FILE_164 * __restrict , const char * __restrict , ____gnuc_va_list_82 );// L461:L462 + +extern ____ssize_t_49 (___IO_padn_238) (___IO_FILE_163 *, int , ____ssize_t_49 );// L463 +extern ____ssize_t_49 (___IO_padn_239) (___IO_FILE_164 *, int , ____ssize_t_49 );// L463 +extern __size_t_1 (___IO_sgetn_240) (___IO_FILE_163 *, void *, __size_t_1 );// L464 +extern __size_t_1 (___IO_sgetn_241) (___IO_FILE_164 *, void *, __size_t_1 );// L464 +extern ____off64_t_24 (___IO_seekoff_242) (___IO_FILE_163 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekoff_243) (___IO_FILE_164 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekpos_244) (___IO_FILE_163 *, ____off64_t_24 , int );// L467 +extern ____off64_t_24 (___IO_seekpos_245) (___IO_FILE_164 *, ____off64_t_24 , int );// L467 +extern void (___IO_free_backup_area_246) (___IO_FILE_163 *);// L469 +extern void (___IO_free_backup_area_247) (___IO_FILE_164 *);// L469 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern struct ___IO_FILE_99 * (__stdin_291);// L168 -extern struct ___IO_FILE_124 * (__stdin_292);// L168 -extern struct ___IO_FILE_99 * (__stdout_294);// L169 -extern struct ___IO_FILE_124 * (__stdout_295);// L169 -extern struct ___IO_FILE_99 * (__stderr_297);// L170 -extern struct ___IO_FILE_124 * (__stderr_298);// L170 -extern int (__remove_301) (const char * (____filename_300));// L178 -extern int (__rename_304) (const char * (____old_302), const char * (____new_303));// L180 -extern int (__renameat_309) (int ____oldfd_305, const char * (____old_306), int ____newfd_307, const char * (____new_308));// L185:L186 -extern __FILE_59 * ((__tmpfile_310) (void ));// L195 -extern __FILE_59 * ((__tmpfile_316) (void ));// L198 -extern __FILE_59 * ((__tmpfile_314) (void ));// L195 -extern __FILE_59 * ((__tmpfile_312) (void ));// L198 -extern char * ((__tmpnam_319) (char * (____s_318)));// L209 -extern char * ((__tmpnam_320) (char * (____s_318)));// L209 -extern char * ((__tmpnam_r_322) (char * (____s_321)));// L215 -extern char * ((__tmpnam_r_323) (char * (____s_321)));// L215 -extern char * ((__tempnam_326) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 -extern char * ((__tempnam_327) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 -extern int (__fclose_330) (__FILE_59 * (____stream_328));// L237 -extern int (__fclose_332) (__FILE_59 * (____stream_328));// L237 -extern int (__fflush_336) (__FILE_59 * (____stream_334));// L242 -extern int (__fflush_unlocked_340) (__FILE_59 * (____stream_338));// L252 -extern __FILE_59 * ((__fopen_344) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 -extern __FILE_59 * ((__fopen_346) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 -extern __FILE_59 * ((__fopen_354) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 -extern __FILE_59 * ((__fopen_356) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 -extern __FILE_59 * ((__freopen_362) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 -extern __FILE_59 * ((__freopen_368) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 -extern __FILE_59 * ((__freopen_366) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 -extern __FILE_59 * ((__freopen_364) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 -extern __FILE_59 * ((__fdopen_372) (int ____fd_370, const char * (____modes_371)));// L306 -extern __FILE_59 * ((__fdopen_374) (int ____fd_370, const char * (____modes_371)));// L306 -extern __FILE_59 * ((__fmemopen_379) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 -extern __FILE_59 * ((__fmemopen_381) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 -extern __FILE_59 * ((__open_memstream_385) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 -extern __FILE_59 * ((__open_memstream_387) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 -extern void (__setbuf_392) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 -extern void (__setbuf_394) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 -extern int (__setvbuf_401) (__FILE_59 * __restrict ____stream_396, char * __restrict ____buf_398, int ____modes_399, __size_t_1 ____n_400);// L336:L337 -extern void (__setbuffer_407) (__FILE_59 * __restrict ____stream_403, char * __restrict ____buf_405, __size_t_1 ____size_406);// L343:L344 -extern void (__setlinebuf_411) (__FILE_59 * (____stream_409));// L347 -extern int (__fprintf_416) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 -extern int (__fprintf_418) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 -extern int (__printf_421) (const char * __restrict ____format_420, ... );// L362 -extern int (__sprintf_424) (char * __restrict ____s_422, const char * __restrict ____format_423, ... );// L364:L365 -extern int (__vfprintf_430) (__FILE_59 * __restrict ____s_425, const char * __restrict ____format_427, ____gnuc_va_list_86 ____arg_428);// L371:L372 -extern int (__vprintf_437) (const char * __restrict ____format_434, ____gnuc_va_list_86 ____arg_435);// L377 -extern int (__vsprintf_443) (char * __restrict ____s_439, const char * __restrict ____format_440, ____gnuc_va_list_86 ____arg_441);// L379:L380 -extern int (__snprintf_448) (char * __restrict ____s_445, __size_t_1 ____maxlen_446, const char * __restrict ____format_447, ... );// L386:L388 -extern int (__vsnprintf_454) (char * __restrict ____s_449, __size_t_1 ____maxlen_450, const char * __restrict ____format_451, ____gnuc_va_list_86 ____arg_452);// L390:L392 -extern int (__vdprintf_460) (int ____fd_456, const char * __restrict ____fmt_457, ____gnuc_va_list_86 ____arg_458);// L412:L414 -extern int (__dprintf_464) (int ____fd_462, const char * __restrict ____fmt_463, ... );// L415:L416 -extern int (__fscanf_468) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__fscanf_470) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__fscanf_472) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__fscanf_474) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__scanf_477) (const char * __restrict ____format_476, ... );// L431 -extern int (__scanf_478) (const char * __restrict ____format_476, ... );// L431 -extern int (__sscanf_481) (const char * __restrict ____s_479, const char * __restrict ____format_480, ... );// L433:L434 - - - - - - - -extern int (__vfscanf_509) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 -extern int (__vfscanf_513) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 -extern int (__vscanf_520) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 -extern int (__vscanf_522) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 -extern int (__vsscanf_528) (const char * __restrict ____s_524, const char * __restrict ____format_525, ____gnuc_va_list_86 ____arg_526);// L483:L485 - - - - - -extern int (__fgetc_563) (__FILE_59 * (____stream_561));// L531 -extern int (__getc_567) (__FILE_59 * (____stream_565));// L532 -extern int (__getchar_569) (void );// L538 -extern int (__getc_unlocked_572) (__FILE_59 * (____stream_570));// L550 -extern int (__getchar_unlocked_574) (void );// L551 -extern int (__fgetc_unlocked_577) (__FILE_59 * (____stream_575));// L561 -extern int (__fputc_582) (int ____c_579, __FILE_59 * (____stream_580));// L573 -extern int (__fputc_584) (int ____c_579, __FILE_59 * (____stream_580));// L573 -extern int (__putc_589) (int ____c_586, __FILE_59 * (____stream_587));// L574 -extern int (__putchar_592) (int ____c_591);// L580 -extern int (__fputc_unlocked_596) (int ____c_593, __FILE_59 * (____stream_594));// L594 -extern int (__putc_unlocked_601) (int ____c_598, __FILE_59 * (____stream_599));// L602 -extern int (__putchar_unlocked_604) (int ____c_603);// L603 -extern int (__getw_607) (__FILE_59 * (____stream_605));// L610 -extern int (__putw_612) (int ____w_609, __FILE_59 * (____stream_610));// L613 -extern char * ((__fgets_618) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern char * ((__fgets_620) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern char * ((__fgets_622) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern char * ((__fgets_624) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern ____ssize_t_49 (____getdelim_631) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 -extern ____ssize_t_49 (____getdelim_635) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 -extern ____ssize_t_49 (__getdelim_644) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 -extern ____ssize_t_49 (__getdelim_648) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 -extern ____ssize_t_49 (__getline_656) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 -extern ____ssize_t_49 (__getline_660) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 -extern int (__fputs_667) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 -extern int (__fputs_669) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 -extern int (__puts_672) (const char * (____s_671));// L695 -extern int (__ungetc_676) (int ____c_673, __FILE_59 * (____stream_674));// L702 -extern int (__fseek_714) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 -extern int (__fseek_716) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 -extern long int (__ftell_720) (__FILE_59 * (____stream_718));// L754 -extern long int (__ftell_722) (__FILE_59 * (____stream_718));// L754 -extern void (__rewind_726) (__FILE_59 * (____stream_724));// L759 -extern int (__fseeko_733) (__FILE_59 * (____stream_728), ____off_t_23 ____off_730, int ____whence_732);// L773 -extern int (__fseeko_744) (__FILE_59 * (____stream_739), ____off64_t_24 ____off_741, int ____whence_743);// L781:L783 -extern ____off_t_23 (__ftello_758) (__FILE_59 * (____stream_737));// L778 -extern ____off_t_23 (__ftello_750) (__FILE_59 * (____stream_737));// L778 -extern int (__fgetpos_766) (__FILE_59 * __restrict ____stream_762, __fpos_t_287 * __restrict ____pos_764);// L798 -extern ____off64_t_24 (__ftello_754) (__FILE_59 * (____stream_748));// L784 -extern int (__fgetpos_778) (__FILE_59 * __restrict ____stream_774, __fpos_t_289 * __restrict ____pos_776);// L806:L807 -extern int (__fsetpos_786) (__FILE_59 * (____stream_770), const __fpos_t_287 * (____pos_772));// L803 -extern int (__fsetpos_790) (__FILE_59 * (____stream_782), const __fpos_t_289 * (____pos_784));// L808:L809 -extern void (__clearerr_796) (__FILE_59 * (____stream_794));// L826 -extern int (__feof_800) (__FILE_59 * (____stream_798));// L828 -extern int (__feof_802) (__FILE_59 * (____stream_798));// L828 -extern int (__ferror_806) (__FILE_59 * (____stream_804));// L830 -extern int (__ferror_808) (__FILE_59 * (____stream_804));// L830 -extern void (__clearerr_unlocked_812) (__FILE_59 * (____stream_810));// L835 -extern int (__feof_unlocked_816) (__FILE_59 * (____stream_814));// L836 -extern int (__feof_unlocked_818) (__FILE_59 * (____stream_814));// L836 -extern int (__ferror_unlocked_822) (__FILE_59 * (____stream_820));// L837 -extern int (__ferror_unlocked_824) (__FILE_59 * (____stream_820));// L837 -extern void (__perror_827) (const char * (____s_826));// L846 -extern void (__perror_828) (const char * (____s_826));// L846 -extern int __sys_nerr_829;// L26 - -extern int (__fileno_835) (__FILE_59 * (____stream_831));// L858 -extern int (__fileno_833) (__FILE_59 * (____stream_831));// L858 -extern int (__fileno_unlocked_841) (__FILE_59 * (____stream_837));// L863 -extern int (__fileno_unlocked_839) (__FILE_59 * (____stream_837));// L863 -extern __FILE_59 * ((__popen_845) (const char * (____command_843), const char * (____modes_844)));// L872 -extern __FILE_59 * ((__popen_847) (const char * (____command_843), const char * (____modes_844)));// L872 -extern int (__pclose_851) (__FILE_59 * (____stream_849));// L878 -extern char * ((__ctermid_854) (char * (____s_853)));// L884 -extern void (__flockfile_857) (__FILE_59 * (____stream_855));// L912 -extern int (__ftrylockfile_861) (__FILE_59 * (____stream_859));// L916 -extern int (__ftrylockfile_863) (__FILE_59 * (____stream_859));// L916 -extern void (__funlockfile_867) (__FILE_59 * (____stream_865));// L919 +extern struct ___IO_FILE_95 * (__stdin_257);// L168 +extern struct ___IO_FILE_119 * (__stdin_258);// L168 +extern struct ___IO_FILE_95 * (__stdout_259);// L169 +extern struct ___IO_FILE_119 * (__stdout_260);// L169 +extern struct ___IO_FILE_95 * (__stderr_261);// L170 +extern struct ___IO_FILE_119 * (__stderr_262);// L170 +extern int (__remove_264) (const char * (____filename_263));// L178 +extern int (__rename_267) (const char * (____old_265), const char * (____new_266));// L180 +extern int (__renameat_272) (int ____oldfd_268, const char * (____old_269), int ____newfd_270, const char * (____new_271));// L185:L186 +extern __FILE_58 * ((__tmpfile_273) (void ));// L195 +extern __FILE_58 * ((__tmpfile_279) (void ));// L198 +extern __FILE_58 * ((__tmpfile_277) (void ));// L198 +extern __FILE_58 * ((__tmpfile_275) (void ));// L195 +extern char * ((__tmpnam_282) (char * (____s_281)));// L209 +extern char * ((__tmpnam_283) (char * (____s_281)));// L209 +extern char * ((__tmpnam_r_285) (char * (____s_284)));// L215 +extern char * ((__tmpnam_r_286) (char * (____s_284)));// L215 +extern char * ((__tempnam_289) (const char * (____dir_287), const char * (____pfx_288)));// L227:L228 +extern char * ((__tempnam_290) (const char * (____dir_287), const char * (____pfx_288)));// L227:L228 +extern int (__fclose_293) (__FILE_58 * (____stream_291));// L237 +extern int (__fclose_295) (__FILE_58 * (____stream_291));// L237 +extern int (__fflush_299) (__FILE_58 * (____stream_297));// L242 +extern int (__fflush_unlocked_303) (__FILE_58 * (____stream_301));// L252 +extern __FILE_58 * ((__fopen_307) (const char * __restrict ____filename_305, const char * __restrict ____modes_306));// L272:L273 +extern __FILE_58 * ((__fopen_309) (const char * __restrict ____filename_305, const char * __restrict ____modes_306));// L272:L273 +extern __FILE_58 * ((__fopen_317) (const char * __restrict ____filename_315, const char * __restrict ____modes_316));// L283:L285 +extern __FILE_58 * ((__fopen_319) (const char * __restrict ____filename_315, const char * __restrict ____modes_316));// L283:L285 +extern __FILE_58 * ((__freopen_325) (const char * __restrict ____filename_311, const char * __restrict ____modes_312, __FILE_58 * __restrict ____stream_313));// L278:L280 +extern __FILE_58 * ((__freopen_331) (const char * __restrict ____filename_321, const char * __restrict ____modes_322, __FILE_58 * __restrict ____stream_323));// L286:L289 +extern __FILE_58 * ((__freopen_329) (const char * __restrict ____filename_321, const char * __restrict ____modes_322, __FILE_58 * __restrict ____stream_323));// L286:L289 +extern __FILE_58 * ((__freopen_327) (const char * __restrict ____filename_311, const char * __restrict ____modes_312, __FILE_58 * __restrict ____stream_313));// L278:L280 +extern __FILE_58 * ((__fdopen_335) (int ____fd_333, const char * (____modes_334)));// L306 +extern __FILE_58 * ((__fdopen_337) (int ____fd_333, const char * (____modes_334)));// L306 +extern __FILE_58 * ((__fmemopen_342) (void * (____s_339), __size_t_1 ____len_340, const char * (____modes_341)));// L319:L320 +extern __FILE_58 * ((__fmemopen_344) (void * (____s_339), __size_t_1 ____len_340, const char * (____modes_341)));// L319:L320 +extern __FILE_58 * ((__open_memstream_348) (char * (* (____bufloc_346)), __size_t_1 * (____sizeloc_347)));// L325 +extern __FILE_58 * ((__open_memstream_350) (char * (* (____bufloc_346)), __size_t_1 * (____sizeloc_347)));// L325 +extern void (__setbuf_355) (__FILE_58 * __restrict ____stream_352, char * __restrict ____buf_354);// L332 +extern void (__setbuf_357) (__FILE_58 * __restrict ____stream_352, char * __restrict ____buf_354);// L332 +extern int (__setvbuf_364) (__FILE_58 * __restrict ____stream_359, char * __restrict ____buf_361, int ____modes_362, __size_t_1 ____n_363);// L336:L337 +extern void (__setbuffer_369) (__FILE_58 * __restrict ____stream_365, char * __restrict ____buf_367, __size_t_1 ____size_368);// L343:L344 +extern void (__setlinebuf_373) (__FILE_58 * (____stream_371));// L347 +extern int (__fprintf_378) (__FILE_58 * __restrict ____stream_375, const char * __restrict ____format_377, ... );// L356:L357 +extern int (__fprintf_380) (__FILE_58 * __restrict ____stream_375, const char * __restrict ____format_377, ... );// L356:L357 +extern int (__printf_383) (const char * __restrict ____format_382, ... );// L362 +extern int (__sprintf_386) (char * __restrict ____s_384, const char * __restrict ____format_385, ... );// L364:L365 +extern int (__vfprintf_392) (__FILE_58 * __restrict ____s_387, const char * __restrict ____format_389, ____gnuc_va_list_82 ____arg_390);// L371:L372 +extern int (__vprintf_399) (const char * __restrict ____format_396, ____gnuc_va_list_82 ____arg_397);// L377 +extern int (__vsprintf_405) (char * __restrict ____s_401, const char * __restrict ____format_402, ____gnuc_va_list_82 ____arg_403);// L379:L380 +extern int (__snprintf_409) (char * __restrict ____s_406, __size_t_1 ____maxlen_407, const char * __restrict ____format_408, ... );// L386:L388 +extern int (__vsnprintf_415) (char * __restrict ____s_410, __size_t_1 ____maxlen_411, const char * __restrict ____format_412, ____gnuc_va_list_82 ____arg_413);// L390:L392 +extern int (__vdprintf_420) (int ____fd_416, const char * __restrict ____fmt_417, ____gnuc_va_list_82 ____arg_418);// L412:L414 +extern int (__dprintf_424) (int ____fd_422, const char * __restrict ____fmt_423, ... );// L415:L416 +extern int (__fscanf_428) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 +extern int (__fscanf_430) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 +extern int (__fscanf_432) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 +extern int (__fscanf_434) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 +extern int (__scanf_437) (const char * __restrict ____format_436, ... );// L431 +extern int (__scanf_438) (const char * __restrict ____format_436, ... );// L431 +extern int (__sscanf_441) (const char * __restrict ____s_439, const char * __restrict ____format_440, ... );// L433:L434 + + + + + + + +extern int (__vfscanf_468) (__FILE_58 * __restrict ____s_463, const char * __restrict ____format_465, ____gnuc_va_list_82 ____arg_466);// L471:L473 +extern int (__vfscanf_472) (__FILE_58 * __restrict ____s_463, const char * __restrict ____format_465, ____gnuc_va_list_82 ____arg_466);// L471:L473 +extern int (__vscanf_479) (const char * __restrict ____format_476, ____gnuc_va_list_82 ____arg_477);// L479:L480 +extern int (__vscanf_481) (const char * __restrict ____format_476, ____gnuc_va_list_82 ____arg_477);// L479:L480 +extern int (__vsscanf_487) (const char * __restrict ____s_483, const char * __restrict ____format_484, ____gnuc_va_list_82 ____arg_485);// L483:L485 + + + + + +extern int (__fgetc_520) (__FILE_58 * (____stream_518));// L531 +extern int (__getc_523) (__FILE_58 * (____stream_521));// L532 +extern int (__getchar_524) (void );// L538 +extern int (__getc_unlocked_527) (__FILE_58 * (____stream_525));// L550 +extern int (__getchar_unlocked_529) (void );// L551 +extern int (__fgetc_unlocked_532) (__FILE_58 * (____stream_530));// L561 +extern int (__fputc_537) (int ____c_534, __FILE_58 * (____stream_535));// L573 +extern int (__fputc_539) (int ____c_534, __FILE_58 * (____stream_535));// L573 +extern int (__putc_544) (int ____c_541, __FILE_58 * (____stream_542));// L574 +extern int (__putchar_546) (int ____c_545);// L580 +extern int (__fputc_unlocked_550) (int ____c_547, __FILE_58 * (____stream_548));// L594 +extern int (__putc_unlocked_555) (int ____c_552, __FILE_58 * (____stream_553));// L602 +extern int (__putchar_unlocked_558) (int ____c_557);// L603 +extern int (__getw_561) (__FILE_58 * (____stream_559));// L610 +extern int (__putw_566) (int ____w_563, __FILE_58 * (____stream_564));// L613 +extern char * ((__fgets_572) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 +extern char * ((__fgets_574) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 +extern char * ((__fgets_576) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 +extern char * ((__fgets_578) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 +extern ____ssize_t_49 (____getdelim_585) (char * (* __restrict ____lineptr_580), __size_t_1 * __restrict ____n_581, int ____delimiter_582, __FILE_58 * __restrict ____stream_583);// L665:L667 +extern ____ssize_t_49 (____getdelim_587) (char * (* __restrict ____lineptr_580), __size_t_1 * __restrict ____n_581, int ____delimiter_582, __FILE_58 * __restrict ____stream_583);// L665:L667 +extern ____ssize_t_49 (__getdelim_594) (char * (* __restrict ____lineptr_589), __size_t_1 * __restrict ____n_590, int ____delimiter_591, __FILE_58 * __restrict ____stream_592);// L668:L670 +extern ____ssize_t_49 (__getdelim_596) (char * (* __restrict ____lineptr_589), __size_t_1 * __restrict ____n_590, int ____delimiter_591, __FILE_58 * __restrict ____stream_592);// L668:L670 +extern ____ssize_t_49 (__getline_602) (char * (* __restrict ____lineptr_598), __size_t_1 * __restrict ____n_599, __FILE_58 * __restrict ____stream_600);// L678:L680 +extern ____ssize_t_49 (__getline_604) (char * (* __restrict ____lineptr_598), __size_t_1 * __restrict ____n_599, __FILE_58 * __restrict ____stream_600);// L678:L680 +extern int (__fputs_609) (const char * __restrict ____s_606, __FILE_58 * __restrict ____stream_607);// L689 +extern int (__fputs_611) (const char * __restrict ____s_606, __FILE_58 * __restrict ____stream_607);// L689 +extern int (__puts_614) (const char * (____s_613));// L695 +extern int (__ungetc_618) (int ____c_615, __FILE_58 * (____stream_616));// L702 +extern int (__fseek_654) (__FILE_58 * (____stream_650), long int ____off_652, int ____whence_653);// L749 +extern int (__fseek_656) (__FILE_58 * (____stream_650), long int ____off_652, int ____whence_653);// L749 +extern long int (__ftell_660) (__FILE_58 * (____stream_658));// L754 +extern long int (__ftell_662) (__FILE_58 * (____stream_658));// L754 +extern void (__rewind_666) (__FILE_58 * (____stream_664));// L759 +extern int (__fseeko_671) (__FILE_58 * (____stream_667), ____off_t_23 ____off_669, int ____whence_670);// L773 +extern int (__fseeko_679) (__FILE_58 * (____stream_675), ____off64_t_24 ____off_677, int ____whence_678);// L781:L783 +extern ____off_t_23 (__ftello_683) (__FILE_58 * (____stream_673));// L778 +extern ____off_t_23 (__ftello_685) (__FILE_58 * (____stream_673));// L778 +extern int (__fgetpos_693) (__FILE_58 * __restrict ____stream_689, __fpos_t_253 * __restrict ____pos_691);// L798 +extern ____off64_t_24 (__ftello_687) (__FILE_58 * (____stream_681));// L784 +extern int (__fgetpos_705) (__FILE_58 * __restrict ____stream_701, __fpos_t_255 * __restrict ____pos_703);// L806:L807 +extern int (__fsetpos_713) (__FILE_58 * (____stream_697), const __fpos_t_253 * (____pos_699));// L803 +extern int (__fsetpos_717) (__FILE_58 * (____stream_709), const __fpos_t_255 * (____pos_711));// L808:L809 +extern void (__clearerr_723) (__FILE_58 * (____stream_721));// L826 +extern int (__feof_726) (__FILE_58 * (____stream_724));// L828 +extern int (__feof_728) (__FILE_58 * (____stream_724));// L828 +extern int (__ferror_732) (__FILE_58 * (____stream_730));// L830 +extern int (__ferror_734) (__FILE_58 * (____stream_730));// L830 +extern void (__clearerr_unlocked_738) (__FILE_58 * (____stream_736));// L835 +extern int (__feof_unlocked_742) (__FILE_58 * (____stream_740));// L836 +extern int (__feof_unlocked_744) (__FILE_58 * (____stream_740));// L836 +extern int (__ferror_unlocked_748) (__FILE_58 * (____stream_746));// L837 +extern int (__ferror_unlocked_750) (__FILE_58 * (____stream_746));// L837 +extern void (__perror_753) (const char * (____s_752));// L846 +extern void (__perror_754) (const char * (____s_752));// L846 +extern int __sys_nerr_755;// L26 + +extern int (__fileno_761) (__FILE_58 * (____stream_757));// L858 +extern int (__fileno_759) (__FILE_58 * (____stream_757));// L858 +extern int (__fileno_unlocked_767) (__FILE_58 * (____stream_763));// L863 +extern int (__fileno_unlocked_765) (__FILE_58 * (____stream_763));// L863 +extern __FILE_58 * ((__popen_771) (const char * (____command_769), const char * (____modes_770)));// L872 +extern __FILE_58 * ((__popen_773) (const char * (____command_769), const char * (____modes_770)));// L872 +extern int (__pclose_777) (__FILE_58 * (____stream_775));// L878 +extern char * ((__ctermid_780) (char * (____s_779)));// L884 +extern void (__flockfile_783) (__FILE_58 * (____stream_781));// L912 +extern int (__ftrylockfile_787) (__FILE_58 * (____stream_785));// L916 +extern int (__ftrylockfile_789) (__FILE_58 * (____stream_785));// L916 +extern void (__funlockfile_793) (__FILE_58 * (____stream_791));// L919 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ @@ -2573,109 +1827,39 @@ extern void (__funlockfile_867) (__FILE_59 * (____stream_865));// L919 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____sprintf_chk_899) (char * __restrict ____s_895, int ____flag_896, __size_t_1 ____slen_897, const char * __restrict ____format_898, ... );// L23:L24 -extern int (____vsprintf_chk_906) (char * __restrict ____s_900, int ____flag_901, __size_t_1 ____slen_902, const char * __restrict ____format_903, ____gnuc_va_list_86 ____ap_904);// L25:L27 +extern int (____sprintf_chk_825) (char * __restrict ____s_821, int ____flag_822, __size_t_1 ____slen_823, const char * __restrict ____format_824, ... );// L23:L24 +extern int (____vsprintf_chk_832) (char * __restrict ____s_826, int ____flag_827, __size_t_1 ____slen_828, const char * __restrict ____format_829, ____gnuc_va_list_82 ____ap_830);// L25:L27 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____snprintf_chk_920) (char * __restrict ____s_915, __size_t_1 ____n_916, int ____flag_917, __size_t_1 ____slen_918, const char * __restrict ____format_919, ... );// L52:L54 -extern int (____vsnprintf_chk_928) (char * __restrict ____s_921, __size_t_1 ____n_922, int ____flag_923, __size_t_1 ____slen_924, const char * __restrict ____format_925, ____gnuc_va_list_86 ____ap_926);// L55:L57 +extern int (____snprintf_chk_846) (char * __restrict ____s_841, __size_t_1 ____n_842, int ____flag_843, __size_t_1 ____slen_844, const char * __restrict ____format_845, ... );// L52:L54 +extern int (____vsnprintf_chk_854) (char * __restrict ____s_847, __size_t_1 ____n_848, int ____flag_849, __size_t_1 ____slen_850, const char * __restrict ____format_851, ____gnuc_va_list_82 ____ap_852);// L55:L57 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____fprintf_chk_943) (__FILE_59 * __restrict ____stream_939, int ____flag_941, const char * __restrict ____format_942, ... );// L85:L86 -extern int (____printf_chk_947) (int ____flag_945, const char * __restrict ____format_946, ... );// L87 -extern int (____vfprintf_chk_954) (__FILE_59 * __restrict ____stream_948, int ____flag_950, const char * __restrict ____format_951, ____gnuc_va_list_86 ____ap_952);// L88:L89 -extern int (____vprintf_chk_962) (int ____flag_958, const char * __restrict ____format_959, ____gnuc_va_list_86 ____ap_960);// L90:L91 +extern int (____fprintf_chk_869) (__FILE_58 * __restrict ____stream_865, int ____flag_867, const char * __restrict ____format_868, ... );// L85:L86 +extern int (____printf_chk_873) (int ____flag_871, const char * __restrict ____format_872, ... );// L87 +extern int (____vfprintf_chk_880) (__FILE_58 * __restrict ____stream_874, int ____flag_876, const char * __restrict ____format_877, ____gnuc_va_list_82 ____ap_878);// L88:L89 +extern int (____vprintf_chk_888) (int ____flag_884, const char * __restrict ____format_885, ____gnuc_va_list_82 ____ap_886);// L90:L91 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____dprintf_chk_984) (int ____fd_981, int ____flag_982, const char * __restrict ____fmt_983, ... );// L131:L132 -extern int (____vdprintf_chk_990) (int ____fd_985, int ____flag_986, const char * __restrict ____fmt_987, ____gnuc_va_list_86 ____arg_988);// L133:L135 +extern int (____dprintf_chk_910) (int ____fd_907, int ____flag_908, const char * __restrict ____fmt_909, ... );// L131:L132 +extern int (____vdprintf_chk_916) (int ____fd_911, int ____flag_912, const char * __restrict ____fmt_913, ____gnuc_va_list_82 ____arg_914);// L133:L135 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern char * ((____fgets_chk_1004) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 -extern char * ((____fgets_chk_1006) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 -extern char * ((____fgets_chk_1008) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 -extern char * ((____fgets_alias_1014) (char * __restrict ____s_1010, int ____n_1011, __FILE_59 * __restrict ____stream_1012));// L243:L245 -extern char * ((____fgets_chk_warn_1021) (char * __restrict ____s_1016, __size_t_1 ____size_1017, int ____n_1018, __FILE_59 * __restrict ____stream_1019));// L246:L250 +extern char * ((____fgets_chk_930) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 +extern char * ((____fgets_chk_932) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 +extern char * ((____fgets_chk_934) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 +extern char * ((____fgets_alias_940) (char * __restrict ____s_936, int ____n_937, __FILE_58 * __restrict ____stream_938));// L243:L245 +extern char * ((____fgets_chk_warn_947) (char * __restrict ____s_942, __size_t_1 ____size_943, int ____n_944, __FILE_58 * __restrict ____stream_945));// L246:L250 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ // typedef moved to top of scope // typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -static __inline unsigned int (____bswap_32_1158) (unsigned int ____bsx_1157) { - -if (__static_condition_default_1159) { - -{ -{ +static __inline unsigned int (____bswap_32_1026) (unsigned int ____bsx_1025) { - - -__static_type_error("invalid type found in return expression"); -} -} - - -} -} -static __inline ____uint64_t_13 (____bswap_64_1162) (____uint64_t_13 ____bsx_1160) { - -if (__static_condition_default_1164) { +if (__static_condition_default_1027) { { { @@ -2689,9 +1873,9 @@ __static_type_error("invalid type found in return expression"); } } -static __inline ____uint64_t_1112 (____bswap_64_1163) (____uint64_t_1112 ____bsx_1161) { +static __inline ____uint64_t_13 (____bswap_64_1029) (____uint64_t_13 ____bsx_1028) { -if (__static_condition_default_1165) { +if (__static_condition_default_1027) { { { @@ -2705,56 +1889,40 @@ __static_type_error("invalid type found in return expression"); } } -union __wait_1177 ;// L66 +union __wait_1041 ;// L66 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern __size_t_1 (____ctype_get_mb_cur_max_1201) (void );// L139 -extern __size_t_1093 (____ctype_get_mb_cur_max_1202) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_1203) (void );// L139 -extern __size_t_1093 (____ctype_get_mb_cur_max_1204) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_1205) (void );// L139 -extern __size_t_1093 (____ctype_get_mb_cur_max_1206) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_1207) (void );// L139 -extern __size_t_1093 (____ctype_get_mb_cur_max_1208) (void );// L139 -extern double (__atof_1210) (const char * (____nptr_1209));// L144:L145 -extern double (__atof_1211) (const char * (____nptr_1209));// L144:L145 -extern int (__atoi_1213) (const char * (____nptr_1212));// L147:L148 -extern int (__atoi_1214) (const char * (____nptr_1212));// L147:L148 -extern long int (__atol_1216) (const char * (____nptr_1215));// L150:L151 -extern long int (__atol_1217) (const char * (____nptr_1215));// L150:L151 -extern long long int (__atoll_1219) (const char * (____nptr_1218));// L157:L158 -extern long long int (__atoll_1220) (const char * (____nptr_1218));// L157:L158 -extern double (__strtod_1223) (const char * __restrict ____nptr_1221, char * (* __restrict ____endptr_1222));// L164:L166 -extern float (__strtof_1226) (const char * __restrict ____nptr_1224, char * (* __restrict ____endptr_1225));// L172:L173 -extern long double (__strtold_1229) (const char * __restrict ____nptr_1227, char * (* __restrict ____endptr_1228));// L175:L177 -extern long int (__strtol_1233) (const char * __restrict ____nptr_1230, char * (* __restrict ____endptr_1231), int ____base_1232);// L183:L185 -extern unsigned long int (__strtoul_1237) (const char * __restrict ____nptr_1234, char * (* __restrict ____endptr_1235), int ____base_1236);// L187:L189 -extern long long int (__strtoq_1241) (const char * __restrict ____nptr_1238, char * (* __restrict ____endptr_1239), int ____base_1240);// L195:L197 -extern unsigned long long int (__strtouq_1245) (const char * __restrict ____nptr_1242, char * (* __restrict ____endptr_1243), int ____base_1244);// L200:L202 -extern long long int (__strtoll_1249) (const char * __restrict ____nptr_1246, char * (* __restrict ____endptr_1247), int ____base_1248);// L209:L211 -extern long long int (__strtoll_1250) (const char * __restrict ____nptr_1246, char * (* __restrict ____endptr_1247), int ____base_1248);// L209:L211 -extern unsigned long long int (__strtoull_1254) (const char * __restrict ____nptr_1251, char * (* __restrict ____endptr_1252), int ____base_1253);// L214:L216 +extern __size_t_1 (____ctype_get_mb_cur_max_1065) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_1066) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_1067) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_1068) (void );// L139 +extern double (__atof_1070) (const char * (____nptr_1069));// L144:L145 +extern double (__atof_1071) (const char * (____nptr_1069));// L144:L145 +extern int (__atoi_1073) (const char * (____nptr_1072));// L147:L148 +extern int (__atoi_1074) (const char * (____nptr_1072));// L147:L148 +extern long int (__atol_1076) (const char * (____nptr_1075));// L150:L151 +extern long int (__atol_1077) (const char * (____nptr_1075));// L150:L151 +extern long long int (__atoll_1079) (const char * (____nptr_1078));// L157:L158 +extern long long int (__atoll_1080) (const char * (____nptr_1078));// L157:L158 +extern double (__strtod_1083) (const char * __restrict ____nptr_1081, char * (* __restrict ____endptr_1082));// L164:L166 +extern float (__strtof_1086) (const char * __restrict ____nptr_1084, char * (* __restrict ____endptr_1085));// L172:L173 +extern long double (__strtold_1089) (const char * __restrict ____nptr_1087, char * (* __restrict ____endptr_1088));// L175:L177 +extern long int (__strtol_1093) (const char * __restrict ____nptr_1090, char * (* __restrict ____endptr_1091), int ____base_1092);// L183:L185 +extern unsigned long int (__strtoul_1097) (const char * __restrict ____nptr_1094, char * (* __restrict ____endptr_1095), int ____base_1096);// L187:L189 +extern long long int (__strtoq_1101) (const char * __restrict ____nptr_1098, char * (* __restrict ____endptr_1099), int ____base_1100);// L195:L197 +extern unsigned long long int (__strtouq_1105) (const char * __restrict ____nptr_1102, char * (* __restrict ____endptr_1103), int ____base_1104);// L200:L202 +extern long long int (__strtoll_1109) (const char * __restrict ____nptr_1106, char * (* __restrict ____endptr_1107), int ____base_1108);// L209:L211 +extern long long int (__strtoll_1110) (const char * __restrict ____nptr_1106, char * (* __restrict ____endptr_1107), int ____base_1108);// L209:L211 +extern unsigned long long int (__strtoull_1114) (const char * __restrict ____nptr_1111, char * (* __restrict ____endptr_1112), int ____base_1113);// L214:L216 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ __extension__/* no function due to type errors in the function prototype */ -extern char * ((__l64a_1259) (long int ____n_1258));// L305 -extern char * ((__l64a_1260) (long int ____n_1258));// L305 -extern long int (__a64l_1262) (const char * (____s_1261));// L308:L309 -extern long int (__a64l_1263) (const char * (____s_1261));// L308:L309 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope +extern char * ((__l64a_1119) (long int ____n_1118));// L305 +extern char * ((__l64a_1120) (long int ____n_1118));// L305 +extern long int (__a64l_1122) (const char * (____s_1121));// L308:L309 +extern long int (__a64l_1123) (const char * (____s_1121));// L308:L309 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope @@ -2796,130 +1964,9 @@ extern long int (__a64l_1263) (const char * (____s_1261));// L308:L309 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -static __inline unsigned int (____bswap_32_1452) (unsigned int ____bsx_1451) { - -if (__static_condition_default_1453) { - -{ -{ - - +static __inline unsigned int (____bswap_32_1166) (unsigned int ____bsx_1165) { -__static_type_error("invalid type found in return expression"); -} -} - - -} -} -static __inline ____uint64_t_13 (____bswap_64_1456) (____uint64_t_13 ____bsx_1454) { - -if (__static_condition_default_1458) { +if (__static_condition_default_1167) { { { @@ -2933,9 +1980,9 @@ __static_type_error("invalid type found in return expression"); } } -static __inline ____uint64_t_1275 (____bswap_64_1457) (____uint64_t_1275 ____bsx_1455) { +static __inline ____uint64_t_13 (____bswap_64_1169) (____uint64_t_13 ____bsx_1168) { -if (__static_condition_default_1459) { +if (__static_condition_default_1167) { { { @@ -2952,28 +1999,24 @@ __static_type_error("invalid type found in return expression"); // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __timespec_1466 ;// L120 - -struct __timeval_1476 ;// L30 - -// typedef moved to top of scope -// typedef moved to top of scope +struct __timespec_1176 ;// L120 +struct __timeval_1179 ;// L30 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern int (__select_1513) (int ____nfds_1502, __fd_set_1499 * __restrict ____readfds_1503, __fd_set_1499 * __restrict ____writefds_1505, __fd_set_1499 * __restrict ____exceptfds_1507, struct __timeval_1476 * __restrict ____timeout_1510);// L106:L109 -extern int (__select_1514) (int ____nfds_1502, __fd_set_1499 * __restrict ____readfds_1503, __fd_set_1499 * __restrict ____writefds_1505, __fd_set_1499 * __restrict ____exceptfds_1507, struct __forward_tag_reference_1509 * __restrict ____timeout_1512);// L106:L109 -extern int (__pselect_1529) (int ____nfds_1517, __fd_set_1499 * __restrict ____readfds_1518, __fd_set_1499 * __restrict ____writefds_1520, __fd_set_1499 * __restrict ____exceptfds_1522, const struct __timespec_1466 * __restrict ____timeout_1525, const ____sigset_t_1464 * __restrict ____sigmask_1528);// L118:L122 -extern int (__pselect_1530) (int ____nfds_1517, __fd_set_1499 * __restrict ____readfds_1518, __fd_set_1499 * __restrict ____writefds_1520, __fd_set_1499 * __restrict ____exceptfds_1522, const struct __forward_tag_reference_1524 * __restrict ____timeout_1527, const ____sigset_t_1464 * __restrict ____sigmask_1528);// L118:L122 -extern long int (____fdelt_chk_1534) (long int ____d_1533);// L24 -extern long int (____fdelt_warn_1536) (long int ____d_1535);// L25:L26 -extern unsigned int (__gnu_dev_major_1538) (unsigned long long int ____dev_1537);// L27:L28 -extern unsigned int (__gnu_dev_major_1539) (unsigned long long int ____dev_1537);// L27:L28 -extern unsigned int (__gnu_dev_minor_1541) (unsigned long long int ____dev_1540);// L30:L31 -extern unsigned long long int (__gnu_dev_makedev_1544) (unsigned int ____major_1542, unsigned int ____minor_1543);// L33:L35 +extern int (__select_1199) (int ____nfds_1192, __fd_set_1189 * __restrict ____readfds_1193, __fd_set_1189 * __restrict ____writefds_1194, __fd_set_1189 * __restrict ____exceptfds_1195, struct __timeval_1179 * __restrict ____timeout_1197);// L106:L109 +extern int (__select_1200) (int ____nfds_1192, __fd_set_1189 * __restrict ____readfds_1193, __fd_set_1189 * __restrict ____writefds_1194, __fd_set_1189 * __restrict ____exceptfds_1195, struct __forward_tag_reference_1196 * __restrict ____timeout_1198);// L106:L109 +extern int (__pselect_1209) (int ____nfds_1201, __fd_set_1189 * __restrict ____readfds_1202, __fd_set_1189 * __restrict ____writefds_1203, __fd_set_1189 * __restrict ____exceptfds_1204, const struct __timespec_1176 * __restrict ____timeout_1206, const ____sigset_t_1174 * __restrict ____sigmask_1208);// L118:L122 +extern int (__pselect_1210) (int ____nfds_1201, __fd_set_1189 * __restrict ____readfds_1202, __fd_set_1189 * __restrict ____writefds_1203, __fd_set_1189 * __restrict ____exceptfds_1204, const struct __forward_tag_reference_1205 * __restrict ____timeout_1207, const ____sigset_t_1174 * __restrict ____sigmask_1208);// L118:L122 +extern long int (____fdelt_chk_1212) (long int ____d_1211);// L24 +extern long int (____fdelt_warn_1214) (long int ____d_1213);// L25:L26 +extern unsigned int (__gnu_dev_major_1216) (unsigned long long int ____dev_1215);// L27:L28 +extern unsigned int (__gnu_dev_major_1217) (unsigned long long int ____dev_1215);// L27:L28 +extern unsigned int (__gnu_dev_minor_1219) (unsigned long long int ____dev_1218);// L30:L31 +extern unsigned long long int (__gnu_dev_makedev_1222) (unsigned int ____major_1220, unsigned int ____minor_1221);// L33:L35 __extension__/* no function due to type errors in the function prototype */ __extension__/* no function due to type errors in the function prototype */ __extension__/* no function due to type errors in the function prototype */ @@ -2985,292 +2028,190 @@ __extension__/* no function due to type errors in the function prototype */ // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -union __pthread_attr_t_1578 ;// L63 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern int (__rand_1609) (void );// L374 -extern void (__srand_1611) (unsigned int ____seed_1610);// L376 -extern int (__rand_r_1613) (unsigned int * (____seed_1612));// L381 -extern double (__drand48_1614) (void );// L389 -extern double (__erand48_1616) (unsigned short int ____xsubi_1615[3]);// L390 -extern long int (__lrand48_1617) (void );// L393 -extern long int (__nrand48_1619) (unsigned short int ____xsubi_1618[3]);// L394:L395 -extern long int (__mrand48_1620) (void );// L398 -extern long int (__jrand48_1622) (unsigned short int ____xsubi_1621[3]);// L399:L400 -extern void (__srand48_1624) (long int ____seedval_1623);// L403 -extern unsigned short int * ((__seed48_1626) (unsigned short int ____seed16v_1625[3]));// L404:L405 -extern void (__lcong48_1628) (unsigned short int ____param_1627[7]);// L406 -extern void * ((__malloc_1631) (__size_t_1 ____size_1629));// L466 -extern void * ((__malloc_1632) (__size_t_1093 ____size_1630));// L466 -extern void * ((__malloc_1633) (__size_t_1 ____size_1629));// L466 -extern void * ((__malloc_1634) (__size_t_1093 ____size_1630));// L466 -extern void * ((__calloc_1639) (__size_t_1 ____nmemb_1635, __size_t_1 ____size_1637));// L468:L469 -extern void * ((__calloc_1640) (__size_t_1093 ____nmemb_1636, __size_t_1093 ____size_1638));// L468:L469 -extern void * ((__calloc_1641) (__size_t_1 ____nmemb_1635, __size_t_1 ____size_1637));// L468:L469 -extern void * ((__calloc_1642) (__size_t_1093 ____nmemb_1636, __size_t_1093 ____size_1638));// L468:L469 -extern void * ((__realloc_1646) (void * (____ptr_1643), __size_t_1 ____size_1644));// L480:L481 -extern void * ((__realloc_1647) (void * (____ptr_1643), __size_t_1093 ____size_1645));// L480:L481 -extern void (__free_1649) (void * (____ptr_1648));// L483 -extern void (__cfree_1651) (void * (____ptr_1650));// L488 -extern void * ((__alloca_1654) (__size_t_1 ____size_1652));// L32 -extern void * ((__alloca_1655) (__size_t_1093 ____size_1653));// L32 -extern void * ((__valloc_1658) (__size_t_1 ____size_1656));// L498 -extern void * ((__valloc_1659) (__size_t_1093 ____size_1657));// L498 -extern void * ((__valloc_1660) (__size_t_1 ____size_1656));// L498 -extern void * ((__valloc_1661) (__size_t_1093 ____size_1657));// L498 -extern int (__posix_memalign_1667) (void * (* (____memptr_1662)), __size_t_1 ____alignment_1663, __size_t_1 ____size_1665);// L503:L504 -extern int (__posix_memalign_1668) (void * (* (____memptr_1662)), __size_t_1093 ____alignment_1664, __size_t_1093 ____size_1666);// L503:L504 -extern int (__posix_memalign_1669) (void * (* (____memptr_1662)), __size_t_1 ____alignment_1663, __size_t_1 ____size_1665);// L503:L504 -extern int (__posix_memalign_1670) (void * (* (____memptr_1662)), __size_t_1093 ____alignment_1664, __size_t_1093 ____size_1666);// L503:L504 -extern void * ((__aligned_alloc_1675) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 -extern void * ((__aligned_alloc_1676) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 -extern void * ((__aligned_alloc_1677) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 -extern void * ((__aligned_alloc_1678) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 -extern void * ((__aligned_alloc_1679) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 -extern void * ((__aligned_alloc_1680) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 -extern void * ((__aligned_alloc_1681) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 -extern void * ((__aligned_alloc_1682) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 -extern void (__abort_1683) (void );// L515 -extern int (__atexit_1685) (void (* (____func_1684)) (void ));// L519 -extern int (__at_quick_exit_1687) (void (* (____func_1686)) (void ));// L527 -extern int (__on_exit_1692) (void (* (____func_1690)) (int ____status_1688, void * (____arg_1689)), void * (____arg_1691));// L535:L536 -extern void (__exit_1694) (int ____status_1693);// L543 -extern void (__exit_1695) (int ____status_1693);// L543 -extern void (__quick_exit_1697) (int ____status_1696);// L549 -extern void (___Exit_1699) (int ____status_1698);// L557 -extern char * ((__getenv_1701) (const char * (____name_1700)));// L564 -extern char * ((__getenv_1702) (const char * (____name_1700)));// L564 -extern int (__putenv_1704) (char * (____string_1703));// L578 -extern int (__setenv_1708) (const char * (____name_1705), const char * (____value_1706), int ____replace_1707);// L584:L585 -extern int (__unsetenv_1710) (const char * (____name_1709));// L588 -extern int (__clearenv_1711) (void );// L595 -extern char * ((__mktemp_1713) (char * (____template_1712)));// L606 -extern int (__mkstemp_1716) (char * (____template_1714));// L619 -extern int (__mkstemp_1718) (char * (____template_1714));// L619 -extern int (__mkstemp_1717) (char * (____template_1715));// L622:L623 -extern int (__mkstemp_1719) (char * (____template_1715));// L622:L623 -extern int (__mkstemps_1724) (char * (____template_1720), int ____suffixlen_1721);// L641 -extern int (__mkstemps_1725) (char * (____template_1722), int ____suffixlen_1723);// L644:L645 -extern int (__mkstemps_1726) (char * (____template_1720), int ____suffixlen_1721);// L641 -extern int (__mkstemps_1727) (char * (____template_1722), int ____suffixlen_1723);// L644:L645 -extern char * ((__mkdtemp_1729) (char * (____template_1728)));// L662 -extern char * ((__mkdtemp_1730) (char * (____template_1728)));// L662 -extern int (__system_1732) (const char * (____command_1731));// L716 -extern int (__system_1733) (const char * (____command_1731));// L716 -extern int (__system_1734) (const char * (____command_1731));// L716 -extern int (__system_1735) (const char * (____command_1731));// L716 -extern char * ((__realpath_1738) (const char * __restrict ____name_1736, char * __restrict ____resolved_1737));// L733:L734 -extern char * ((__realpath_1739) (const char * __restrict ____name_1736, char * __restrict ____resolved_1737));// L733:L734 -// typedef moved to top of scope -extern void * ((__bsearch_1751) (const void * (____key_1741), const void * (____base_1742), __size_t_1 ____nmemb_1743, __size_t_1 ____size_1745, ____compar_fn_t_1740 ____compar_1747));// L754:L756 -extern void * ((__bsearch_1752) (const void * (____key_1741), const void * (____base_1742), __size_t_1093 ____nmemb_1744, __size_t_1093 ____size_1746, ____compar_fn_t_1740 ____compar_1747));// L754:L756 -extern void * ((__bsearch_1755) (const void * (____key_1741), const void * (____base_1742), __size_t_1 ____nmemb_1743, __size_t_1 ____size_1745, ____compar_fn_t_1740 ____compar_1747));// L754:L756 -extern void * ((__bsearch_1756) (const void * (____key_1741), const void * (____base_1742), __size_t_1093 ____nmemb_1744, __size_t_1093 ____size_1746, ____compar_fn_t_1740 ____compar_1747));// L754:L756 +union __pthread_attr_t_1235 ;// L63 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern int (__rand_1266) (void );// L374 +extern void (__srand_1268) (unsigned int ____seed_1267);// L376 +extern int (__rand_r_1270) (unsigned int * (____seed_1269));// L381 +extern double (__drand48_1271) (void );// L389 +extern double (__erand48_1273) (unsigned short int ____xsubi_1272[3]);// L390 +extern long int (__lrand48_1274) (void );// L393 +extern long int (__nrand48_1276) (unsigned short int ____xsubi_1275[3]);// L394:L395 +extern long int (__mrand48_1277) (void );// L398 +extern long int (__jrand48_1279) (unsigned short int ____xsubi_1278[3]);// L399:L400 +extern void (__srand48_1281) (long int ____seedval_1280);// L403 +extern unsigned short int * ((__seed48_1283) (unsigned short int ____seed16v_1282[3]));// L404:L405 +extern void (__lcong48_1285) (unsigned short int ____param_1284[7]);// L406 +extern void * ((__malloc_1287) (__size_t_1 ____size_1286));// L466 +extern void * ((__malloc_1288) (__size_t_1 ____size_1286));// L466 +extern void * ((__malloc_1289) (__size_t_1 ____size_1286));// L466 +extern void * ((__malloc_1290) (__size_t_1 ____size_1286));// L466 +extern void * ((__calloc_1293) (__size_t_1 ____nmemb_1291, __size_t_1 ____size_1292));// L468:L469 +extern void * ((__calloc_1294) (__size_t_1 ____nmemb_1291, __size_t_1 ____size_1292));// L468:L469 +extern void * ((__realloc_1297) (void * (____ptr_1295), __size_t_1 ____size_1296));// L480:L481 +extern void (__free_1299) (void * (____ptr_1298));// L483 +extern void (__cfree_1301) (void * (____ptr_1300));// L488 +extern void * ((__alloca_1303) (__size_t_1 ____size_1302));// L32 +extern void * ((__valloc_1305) (__size_t_1 ____size_1304));// L498 +extern void * ((__valloc_1306) (__size_t_1 ____size_1304));// L498 +extern int (__posix_memalign_1310) (void * (* (____memptr_1307)), __size_t_1 ____alignment_1308, __size_t_1 ____size_1309);// L503:L504 +extern int (__posix_memalign_1311) (void * (* (____memptr_1307)), __size_t_1 ____alignment_1308, __size_t_1 ____size_1309);// L503:L504 +extern void * ((__aligned_alloc_1314) (__size_t_1 ____alignment_1312, __size_t_1 ____size_1313));// L509:L510 +extern void * ((__aligned_alloc_1315) (__size_t_1 ____alignment_1312, __size_t_1 ____size_1313));// L509:L510 +extern void * ((__aligned_alloc_1316) (__size_t_1 ____alignment_1312, __size_t_1 ____size_1313));// L509:L510 +extern void * ((__aligned_alloc_1317) (__size_t_1 ____alignment_1312, __size_t_1 ____size_1313));// L509:L510 +extern void (__abort_1318) (void );// L515 +extern int (__atexit_1320) (void (* (____func_1319)) (void ));// L519 +extern int (__at_quick_exit_1322) (void (* (____func_1321)) (void ));// L527 +extern int (__on_exit_1327) (void (* (____func_1325)) (int ____status_1323, void * (____arg_1324)), void * (____arg_1326));// L535:L536 +extern void (__exit_1329) (int ____status_1328);// L543 +extern void (__exit_1330) (int ____status_1328);// L543 +extern void (__quick_exit_1332) (int ____status_1331);// L549 +extern void (___Exit_1334) (int ____status_1333);// L557 +extern char * ((__getenv_1336) (const char * (____name_1335)));// L564 +extern char * ((__getenv_1337) (const char * (____name_1335)));// L564 +extern int (__putenv_1339) (char * (____string_1338));// L578 +extern int (__setenv_1343) (const char * (____name_1340), const char * (____value_1341), int ____replace_1342);// L584:L585 +extern int (__unsetenv_1345) (const char * (____name_1344));// L588 +extern int (__clearenv_1346) (void );// L595 +extern char * ((__mktemp_1348) (char * (____template_1347)));// L606 +extern int (__mkstemp_1351) (char * (____template_1349));// L619 +extern int (__mkstemp_1353) (char * (____template_1349));// L619 +extern int (__mkstemp_1352) (char * (____template_1350));// L622:L623 +extern int (__mkstemp_1354) (char * (____template_1350));// L622:L623 +extern int (__mkstemps_1359) (char * (____template_1355), int ____suffixlen_1356);// L641 +extern int (__mkstemps_1360) (char * (____template_1357), int ____suffixlen_1358);// L644:L645 +extern int (__mkstemps_1361) (char * (____template_1355), int ____suffixlen_1356);// L641 +extern int (__mkstemps_1362) (char * (____template_1357), int ____suffixlen_1358);// L644:L645 +extern char * ((__mkdtemp_1364) (char * (____template_1363)));// L662 +extern char * ((__mkdtemp_1365) (char * (____template_1363)));// L662 +extern int (__system_1367) (const char * (____command_1366));// L716 +extern int (__system_1368) (const char * (____command_1366));// L716 +extern int (__system_1369) (const char * (____command_1366));// L716 +extern int (__system_1370) (const char * (____command_1366));// L716 +extern char * ((__realpath_1373) (const char * __restrict ____name_1371, char * __restrict ____resolved_1372));// L733:L734 +extern char * ((__realpath_1374) (const char * __restrict ____name_1371, char * __restrict ____resolved_1372));// L733:L734 +// typedef moved to top of scope +extern void * ((__bsearch_1383) (const void * (____key_1376), const void * (____base_1377), __size_t_1 ____nmemb_1378, __size_t_1 ____size_1379, ____compar_fn_t_1375 ____compar_1380));// L754:L756 +extern void * ((__bsearch_1385) (const void * (____key_1376), const void * (____base_1377), __size_t_1 ____nmemb_1378, __size_t_1 ____size_1379, ____compar_fn_t_1375 ____compar_1380));// L754:L756 /* no function due to type errors in the function prototype */ -extern void (__qsort_1784) (void * (____base_1777), __size_t_1 ____nmemb_1778, __size_t_1 ____size_1780, ____compar_fn_t_1740 ____compar_1782);// L764:L765 -extern void (__qsort_1786) (void * (____base_1777), __size_t_1093 ____nmemb_1779, __size_t_1093 ____size_1781, ____compar_fn_t_1740 ____compar_1782);// L764:L765 -extern void (__qsort_1788) (void * (____base_1777), __size_t_1 ____nmemb_1778, __size_t_1 ____size_1780, ____compar_fn_t_1740 ____compar_1782);// L764:L765 -extern void (__qsort_1790) (void * (____base_1777), __size_t_1093 ____nmemb_1779, __size_t_1093 ____size_1781, ____compar_fn_t_1740 ____compar_1782);// L764:L765 -extern int (__abs_1793) (int ____x_1792);// L774 -extern int (__abs_1794) (int ____x_1792);// L774 -extern long int (__labs_1796) (long int ____x_1795);// L775 -extern long int (__labs_1797) (long int ____x_1795);// L775 -extern long long int (__llabs_1799) (long long int ____x_1798);// L779:L780 -extern long long int (__llabs_1800) (long long int ____x_1798);// L779:L780 -extern __div_t_1190 (__div_1803) (int ____numer_1801, int ____denom_1802);// L788:L789 -extern __div_t_1190 (__div_1804) (int ____numer_1801, int ____denom_1802);// L788:L789 -extern __ldiv_t_1195 (__ldiv_1807) (long int ____numer_1805, long int ____denom_1806);// L790:L791 -extern __ldiv_t_1195 (__ldiv_1809) (long int ____numer_1805, long int ____denom_1806);// L790:L791 -extern __lldiv_t_1200 (__lldiv_1813) (long long int ____numer_1811, long long int ____denom_1812);// L796:L798 -extern __lldiv_t_1200 (__lldiv_1815) (long long int ____numer_1811, long long int ____denom_1812);// L796:L798 -extern char * ((__ecvt_1821) (double ____value_1817, int ____ndigit_1818, int * __restrict ____decpt_1819, int * __restrict ____sign_1820));// L811:L812 -extern char * ((__ecvt_1822) (double ____value_1817, int ____ndigit_1818, int * __restrict ____decpt_1819, int * __restrict ____sign_1820));// L811:L812 -extern char * ((__fcvt_1827) (double ____value_1823, int ____ndigit_1824, int * __restrict ____decpt_1825, int * __restrict ____sign_1826));// L817:L818 -extern char * ((__fcvt_1828) (double ____value_1823, int ____ndigit_1824, int * __restrict ____decpt_1825, int * __restrict ____sign_1826));// L817:L818 -extern char * ((__gcvt_1832) (double ____value_1829, int ____ndigit_1830, char * (____buf_1831)));// L823:L824 -extern char * ((__gcvt_1833) (double ____value_1829, int ____ndigit_1830, char * (____buf_1831)));// L823:L824 -extern char * ((__qecvt_1838) (long double ____value_1834, int ____ndigit_1835, int * __restrict ____decpt_1836, int * __restrict ____sign_1837));// L829:L831 -extern char * ((__qecvt_1839) (long double ____value_1834, int ____ndigit_1835, int * __restrict ____decpt_1836, int * __restrict ____sign_1837));// L829:L831 -extern char * ((__qfcvt_1844) (long double ____value_1840, int ____ndigit_1841, int * __restrict ____decpt_1842, int * __restrict ____sign_1843));// L832:L834 -extern char * ((__qfcvt_1845) (long double ____value_1840, int ____ndigit_1841, int * __restrict ____decpt_1842, int * __restrict ____sign_1843));// L832:L834 -extern char * ((__qgcvt_1849) (long double ____value_1846, int ____ndigit_1847, char * (____buf_1848)));// L835:L836 -extern char * ((__qgcvt_1850) (long double ____value_1846, int ____ndigit_1847, char * (____buf_1848)));// L835:L836 -extern int (__ecvt_r_1858) (double ____value_1851, int ____ndigit_1852, int * __restrict ____decpt_1853, int * __restrict ____sign_1854, char * __restrict ____buf_1855, __size_t_1 ____len_1856);// L841:L843 -extern int (__ecvt_r_1859) (double ____value_1851, int ____ndigit_1852, int * __restrict ____decpt_1853, int * __restrict ____sign_1854, char * __restrict ____buf_1855, __size_t_1093 ____len_1857);// L841:L843 -extern int (__fcvt_r_1867) (double ____value_1860, int ____ndigit_1861, int * __restrict ____decpt_1862, int * __restrict ____sign_1863, char * __restrict ____buf_1864, __size_t_1 ____len_1865);// L844:L846 -extern int (__fcvt_r_1868) (double ____value_1860, int ____ndigit_1861, int * __restrict ____decpt_1862, int * __restrict ____sign_1863, char * __restrict ____buf_1864, __size_t_1093 ____len_1866);// L844:L846 -extern int (__qecvt_r_1876) (long double ____value_1869, int ____ndigit_1870, int * __restrict ____decpt_1871, int * __restrict ____sign_1872, char * __restrict ____buf_1873, __size_t_1 ____len_1874);// L848:L851 -extern int (__qecvt_r_1877) (long double ____value_1869, int ____ndigit_1870, int * __restrict ____decpt_1871, int * __restrict ____sign_1872, char * __restrict ____buf_1873, __size_t_1093 ____len_1875);// L848:L851 -extern int (__qfcvt_r_1885) (long double ____value_1878, int ____ndigit_1879, int * __restrict ____decpt_1880, int * __restrict ____sign_1881, char * __restrict ____buf_1882, __size_t_1 ____len_1883);// L852:L855 -extern int (__qfcvt_r_1886) (long double ____value_1878, int ____ndigit_1879, int * __restrict ____decpt_1880, int * __restrict ____sign_1881, char * __restrict ____buf_1882, __size_t_1093 ____len_1884);// L852:L855 -extern int (__mblen_1890) (const char * (____s_1887), __size_t_1 ____n_1888);// L862 -extern int (__mblen_1891) (const char * (____s_1887), __size_t_1093 ____n_1889);// L862 -extern int (__mblen_1892) (const char * (____s_1887), __size_t_1 ____n_1888);// L862 -extern int (__mblen_1893) (const char * (____s_1887), __size_t_1093 ____n_1889);// L862 -extern int (__mbtowc_1898) (__wchar_t_1094 * __restrict ____pwc_1894, const char * __restrict ____s_1895, __size_t_1 ____n_1896);// L865:L866 -extern int (__mbtowc_1899) (__wchar_t_1094 * __restrict ____pwc_1894, const char * __restrict ____s_1895, __size_t_1093 ____n_1897);// L865:L866 -extern int (__wctomb_1902) (char * (____s_1900), __wchar_t_1094 ____wchar_1901);// L869 -extern __size_t_1 (__mbstowcs_1907) (__wchar_t_1094 * __restrict ____pwcs_1903, const char * __restrict ____s_1904, __size_t_1 ____n_1905);// L873:L874 -extern __size_t_1093 (__mbstowcs_1908) (__wchar_t_1094 * __restrict ____pwcs_1903, const char * __restrict ____s_1904, __size_t_1093 ____n_1906);// L873:L874 -extern __size_t_1 (__wcstombs_1913) (char * __restrict ____s_1909, const __wchar_t_1094 * __restrict ____pwcs_1910, __size_t_1 ____n_1911);// L876:L878 -extern __size_t_1093 (__wcstombs_1914) (char * __restrict ____s_1909, const __wchar_t_1094 * __restrict ____pwcs_1910, __size_t_1093 ____n_1912);// L876:L878 -extern int (__rpmatch_1917) (const char * (____response_1915));// L887 -extern int (__rpmatch_1916) (const char * (____response_1915));// L887 -extern int (__getsubopt_1922) (char * (* __restrict ____optionp_1918), char * const * __restrict ____tokens_1919, char * (* __restrict ____valuep_1920));// L898:L901 -extern int (__getsubopt_1921) (char * (* __restrict ____optionp_1918), char * const * __restrict ____tokens_1919, char * (* __restrict ____valuep_1920));// L898:L901 -extern int (__getloadavg_1925) (double ____loadavg_1923[], int ____nelem_1924);// L950:L951 +extern void (__qsort_1404) (void * (____base_1399), __size_t_1 ____nmemb_1400, __size_t_1 ____size_1401, ____compar_fn_t_1375 ____compar_1402);// L764:L765 +extern void (__qsort_1406) (void * (____base_1399), __size_t_1 ____nmemb_1400, __size_t_1 ____size_1401, ____compar_fn_t_1375 ____compar_1402);// L764:L765 +extern int (__abs_1409) (int ____x_1408);// L774 +extern int (__abs_1410) (int ____x_1408);// L774 +extern long int (__labs_1412) (long int ____x_1411);// L775 +extern long int (__labs_1413) (long int ____x_1411);// L775 +extern long long int (__llabs_1415) (long long int ____x_1414);// L779:L780 +extern long long int (__llabs_1416) (long long int ____x_1414);// L779:L780 +extern __div_t_1054 (__div_1419) (int ____numer_1417, int ____denom_1418);// L788:L789 +extern __div_t_1054 (__div_1420) (int ____numer_1417, int ____denom_1418);// L788:L789 +extern __ldiv_t_1059 (__ldiv_1423) (long int ____numer_1421, long int ____denom_1422);// L790:L791 +extern __ldiv_t_1059 (__ldiv_1425) (long int ____numer_1421, long int ____denom_1422);// L790:L791 +extern __lldiv_t_1064 (__lldiv_1429) (long long int ____numer_1427, long long int ____denom_1428);// L796:L798 +extern __lldiv_t_1064 (__lldiv_1431) (long long int ____numer_1427, long long int ____denom_1428);// L796:L798 +extern char * ((__ecvt_1437) (double ____value_1433, int ____ndigit_1434, int * __restrict ____decpt_1435, int * __restrict ____sign_1436));// L811:L812 +extern char * ((__ecvt_1438) (double ____value_1433, int ____ndigit_1434, int * __restrict ____decpt_1435, int * __restrict ____sign_1436));// L811:L812 +extern char * ((__fcvt_1443) (double ____value_1439, int ____ndigit_1440, int * __restrict ____decpt_1441, int * __restrict ____sign_1442));// L817:L818 +extern char * ((__fcvt_1444) (double ____value_1439, int ____ndigit_1440, int * __restrict ____decpt_1441, int * __restrict ____sign_1442));// L817:L818 +extern char * ((__gcvt_1448) (double ____value_1445, int ____ndigit_1446, char * (____buf_1447)));// L823:L824 +extern char * ((__gcvt_1449) (double ____value_1445, int ____ndigit_1446, char * (____buf_1447)));// L823:L824 +extern char * ((__qecvt_1454) (long double ____value_1450, int ____ndigit_1451, int * __restrict ____decpt_1452, int * __restrict ____sign_1453));// L829:L831 +extern char * ((__qecvt_1455) (long double ____value_1450, int ____ndigit_1451, int * __restrict ____decpt_1452, int * __restrict ____sign_1453));// L829:L831 +extern char * ((__qfcvt_1460) (long double ____value_1456, int ____ndigit_1457, int * __restrict ____decpt_1458, int * __restrict ____sign_1459));// L832:L834 +extern char * ((__qfcvt_1461) (long double ____value_1456, int ____ndigit_1457, int * __restrict ____decpt_1458, int * __restrict ____sign_1459));// L832:L834 +extern char * ((__qgcvt_1465) (long double ____value_1462, int ____ndigit_1463, char * (____buf_1464)));// L835:L836 +extern char * ((__qgcvt_1466) (long double ____value_1462, int ____ndigit_1463, char * (____buf_1464)));// L835:L836 +extern int (__ecvt_r_1473) (double ____value_1467, int ____ndigit_1468, int * __restrict ____decpt_1469, int * __restrict ____sign_1470, char * __restrict ____buf_1471, __size_t_1 ____len_1472);// L841:L843 +extern int (__fcvt_r_1480) (double ____value_1474, int ____ndigit_1475, int * __restrict ____decpt_1476, int * __restrict ____sign_1477, char * __restrict ____buf_1478, __size_t_1 ____len_1479);// L844:L846 +extern int (__qecvt_r_1487) (long double ____value_1481, int ____ndigit_1482, int * __restrict ____decpt_1483, int * __restrict ____sign_1484, char * __restrict ____buf_1485, __size_t_1 ____len_1486);// L848:L851 +extern int (__qfcvt_r_1494) (long double ____value_1488, int ____ndigit_1489, int * __restrict ____decpt_1490, int * __restrict ____sign_1491, char * __restrict ____buf_1492, __size_t_1 ____len_1493);// L852:L855 +extern int (__mblen_1497) (const char * (____s_1495), __size_t_1 ____n_1496);// L862 +extern int (__mblen_1498) (const char * (____s_1495), __size_t_1 ____n_1496);// L862 +extern int (__mbtowc_1502) (__wchar_t_1018 * __restrict ____pwc_1499, const char * __restrict ____s_1500, __size_t_1 ____n_1501);// L865:L866 +extern int (__wctomb_1505) (char * (____s_1503), __wchar_t_1018 ____wchar_1504);// L869 +extern __size_t_1 (__mbstowcs_1509) (__wchar_t_1018 * __restrict ____pwcs_1506, const char * __restrict ____s_1507, __size_t_1 ____n_1508);// L873:L874 +extern __size_t_1 (__wcstombs_1513) (char * __restrict ____s_1510, const __wchar_t_1018 * __restrict ____pwcs_1511, __size_t_1 ____n_1512);// L876:L878 +extern int (__rpmatch_1516) (const char * (____response_1514));// L887 +extern int (__rpmatch_1515) (const char * (____response_1514));// L887 +extern int (__getsubopt_1521) (char * (* __restrict ____optionp_1517), char * const * __restrict ____tokens_1518, char * (* __restrict ____valuep_1519));// L898:L901 +extern int (__getsubopt_1520) (char * (* __restrict ____optionp_1517), char * const * __restrict ____tokens_1518, char * (* __restrict ____valuep_1519));// L898:L901 +extern int (__getloadavg_1524) (double ____loadavg_1522[], int ____nelem_1523);// L950:L951 /* no function due to type errors in the function prototype */ -extern char * ((____realpath_chk_1931) (const char * __restrict ____name_1927, char * __restrict ____resolved_1928, __size_t_1 ____resolvedlen_1929));// L23:L25 -extern char * ((____realpath_chk_1932) (const char * __restrict ____name_1927, char * __restrict ____resolved_1928, __size_t_1093 ____resolvedlen_1930));// L23:L25 -extern char * ((____realpath_alias_1935) (const char * __restrict ____name_1933, char * __restrict ____resolved_1934));// L26:L28 -extern char * ((____realpath_chk_warn_1940) (const char * __restrict ____name_1936, char * __restrict ____resolved_1937, __size_t_1 ____resolvedlen_1938));// L29:L34 -extern char * ((____realpath_chk_warn_1941) (const char * __restrict ____name_1936, char * __restrict ____resolved_1937, __size_t_1093 ____resolvedlen_1939));// L29:L34 +extern char * ((____realpath_chk_1529) (const char * __restrict ____name_1526, char * __restrict ____resolved_1527, __size_t_1 ____resolvedlen_1528));// L23:L25 +extern char * ((____realpath_alias_1532) (const char * __restrict ____name_1530, char * __restrict ____resolved_1531));// L26:L28 +extern char * ((____realpath_chk_warn_1536) (const char * __restrict ____name_1533, char * __restrict ____resolved_1534, __size_t_1 ____resolvedlen_1535));// L29:L34 /* no function due to type errors in the function prototype */ -extern int (____ptsname_r_chk_1951) (int ____fd_1945, char * (____buf_1946), __size_t_1 ____buflen_1947, __size_t_1 ____nreal_1949);// L52:L53 -extern int (____ptsname_r_chk_1952) (int ____fd_1945, char * (____buf_1946), __size_t_1093 ____buflen_1948, __size_t_1093 ____nreal_1950);// L52:L53 -extern int (____ptsname_r_alias_1957) (int ____fd_1953, char * (____buf_1954), __size_t_1 ____buflen_1955);// L54:L56 -extern int (____ptsname_r_alias_1958) (int ____fd_1953, char * (____buf_1954), __size_t_1093 ____buflen_1956);// L54:L56 -extern int (____ptsname_r_chk_warn_1965) (int ____fd_1959, char * (____buf_1960), __size_t_1 ____buflen_1961, __size_t_1 ____nreal_1963);// L57:L61 -extern int (____ptsname_r_chk_warn_1966) (int ____fd_1959, char * (____buf_1960), __size_t_1093 ____buflen_1962, __size_t_1093 ____nreal_1964);// L57:L61 +extern int (____ptsname_r_chk_1544) (int ____fd_1540, char * (____buf_1541), __size_t_1 ____buflen_1542, __size_t_1 ____nreal_1543);// L52:L53 +extern int (____ptsname_r_alias_1548) (int ____fd_1545, char * (____buf_1546), __size_t_1 ____buflen_1547);// L54:L56 +extern int (____ptsname_r_chk_warn_1553) (int ____fd_1549, char * (____buf_1550), __size_t_1 ____buflen_1551, __size_t_1 ____nreal_1552);// L57:L61 /* no function due to type errors in the function prototype */ -extern int (____wctomb_chk_1977) (char * (____s_1973), __wchar_t_1094 ____wchar_1974, __size_t_1 ____buflen_1975);// L77:L78 -extern int (____wctomb_chk_1978) (char * (____s_1973), __wchar_t_1094 ____wchar_1974, __size_t_1093 ____buflen_1976);// L77:L78 -extern int (____wctomb_alias_1981) (char * (____s_1979), __wchar_t_1094 ____wchar_1980);// L79:L80 +extern int (____wctomb_chk_1561) (char * (____s_1558), __wchar_t_1018 ____wchar_1559, __size_t_1 ____buflen_1560);// L77:L78 +extern int (____wctomb_alias_1564) (char * (____s_1562), __wchar_t_1018 ____wchar_1563);// L79:L80 /* no function due to type errors in the function prototype */ -extern __size_t_1 (____mbstowcs_chk_1990) (__wchar_t_1094 * __restrict ____dst_1984, const char * __restrict ____src_1985, __size_t_1 ____len_1986, __size_t_1 ____dstlen_1988);// L98:L100 -extern __size_t_1093 (____mbstowcs_chk_1991) (__wchar_t_1094 * __restrict ____dst_1984, const char * __restrict ____src_1985, __size_t_1093 ____len_1987, __size_t_1093 ____dstlen_1989);// L98:L100 -extern __size_t_1 (____mbstowcs_alias_1996) (__wchar_t_1094 * __restrict ____dst_1992, const char * __restrict ____src_1993, __size_t_1 ____len_1994);// L101:L104 -extern __size_t_1093 (____mbstowcs_alias_1997) (__wchar_t_1094 * __restrict ____dst_1992, const char * __restrict ____src_1993, __size_t_1093 ____len_1995);// L101:L104 -extern __size_t_1 (____mbstowcs_chk_warn_2004) (__wchar_t_1094 * __restrict ____dst_1998, const char * __restrict ____src_1999, __size_t_1 ____len_2000, __size_t_1 ____dstlen_2002);// L105:L110 -extern __size_t_1093 (____mbstowcs_chk_warn_2005) (__wchar_t_1094 * __restrict ____dst_1998, const char * __restrict ____src_1999, __size_t_1093 ____len_2001, __size_t_1093 ____dstlen_2003);// L105:L110 +extern __size_t_1 (____mbstowcs_chk_1571) (__wchar_t_1018 * __restrict ____dst_1567, const char * __restrict ____src_1568, __size_t_1 ____len_1569, __size_t_1 ____dstlen_1570);// L98:L100 +extern __size_t_1 (____mbstowcs_alias_1575) (__wchar_t_1018 * __restrict ____dst_1572, const char * __restrict ____src_1573, __size_t_1 ____len_1574);// L101:L104 +extern __size_t_1 (____mbstowcs_chk_warn_1580) (__wchar_t_1018 * __restrict ____dst_1576, const char * __restrict ____src_1577, __size_t_1 ____len_1578, __size_t_1 ____dstlen_1579);// L105:L110 /* no function due to type errors in the function prototype */ -extern __size_t_1 (____wcstombs_chk_2016) (char * __restrict ____dst_2010, const __wchar_t_1094 * __restrict ____src_2011, __size_t_1 ____len_2012, __size_t_1 ____dstlen_2014);// L130:L132 -extern __size_t_1093 (____wcstombs_chk_2017) (char * __restrict ____dst_2010, const __wchar_t_1094 * __restrict ____src_2011, __size_t_1093 ____len_2013, __size_t_1093 ____dstlen_2015);// L130:L132 -extern __size_t_1 (____wcstombs_alias_2022) (char * __restrict ____dst_2018, const __wchar_t_1094 * __restrict ____src_2019, __size_t_1 ____len_2020);// L133:L136 -extern __size_t_1093 (____wcstombs_alias_2023) (char * __restrict ____dst_2018, const __wchar_t_1094 * __restrict ____src_2019, __size_t_1093 ____len_2021);// L133:L136 -extern __size_t_1 (____wcstombs_chk_warn_2030) (char * __restrict ____dst_2024, const __wchar_t_1094 * __restrict ____src_2025, __size_t_1 ____len_2026, __size_t_1 ____dstlen_2028);// L137:L141 -extern __size_t_1093 (____wcstombs_chk_warn_2031) (char * __restrict ____dst_2024, const __wchar_t_1094 * __restrict ____src_2025, __size_t_1093 ____len_2027, __size_t_1093 ____dstlen_2029);// L137:L141 -// typedef moved to top of scope -// typedef moved to top of scope +extern __size_t_1 (____wcstombs_chk_1588) (char * __restrict ____dst_1584, const __wchar_t_1018 * __restrict ____src_1585, __size_t_1 ____len_1586, __size_t_1 ____dstlen_1587);// L130:L132 +extern __size_t_1 (____wcstombs_alias_1592) (char * __restrict ____dst_1589, const __wchar_t_1018 * __restrict ____src_1590, __size_t_1 ____len_1591);// L133:L136 +extern __size_t_1 (____wcstombs_chk_warn_1597) (char * __restrict ____dst_1593, const __wchar_t_1018 * __restrict ____src_1594, __size_t_1 ____len_1595, __size_t_1 ____dstlen_1596);// L137:L141 /* no function due to type errors in the function prototype */ -extern void * ((__memmove_2053) (void * (____dest_2048), const void * (____src_2049), __size_t_1 ____n_2050));// L46:L47 -extern void * ((__memmove_2054) (void * (____dest_2048), const void * (____src_2049), __size_t_1093 ____n_2051));// L46:L47 -extern void * ((__memmove_2055) (void * (____dest_2048), const void * (____src_2049), __size_t_2037 ____n_2052));// L46:L47 -extern void * ((__memset_2070) (void * (____s_2065), int ____c_2066, __size_t_1 ____n_2067));// L62 -extern void * ((__memset_2071) (void * (____s_2065), int ____c_2066, __size_t_1093 ____n_2068));// L62 -extern void * ((__memset_2072) (void * (____s_2065), int ____c_2066, __size_t_2037 ____n_2069));// L62 -extern void * ((__memset_2073) (void * (____s_2065), int ____c_2066, __size_t_1 ____n_2067));// L62 -extern void * ((__memset_2074) (void * (____s_2065), int ____c_2066, __size_t_1093 ____n_2068));// L62 -extern void * ((__memset_2075) (void * (____s_2065), int ____c_2066, __size_t_2037 ____n_2069));// L62 -extern int (__memcmp_2081) (const void * (____s1_2076), const void * (____s2_2077), __size_t_1 ____n_2078);// L65:L66 -extern int (__memcmp_2082) (const void * (____s1_2076), const void * (____s2_2077), __size_t_1093 ____n_2079);// L65:L66 -extern int (__memcmp_2083) (const void * (____s1_2076), const void * (____s2_2077), __size_t_2037 ____n_2080);// L65:L66 -extern void * ((__memchr_2089) (const void * (____s_2084), int ____c_2085, __size_t_1 ____n_2086));// L92:L93 -extern void * ((__memchr_2090) (const void * (____s_2084), int ____c_2085, __size_t_1093 ____n_2087));// L92:L93 -extern void * ((__memchr_2091) (const void * (____s_2084), int ____c_2085, __size_t_2037 ____n_2088));// L92:L93 -extern char * ((__strcpy_2094) (char * __restrict ____dest_2092, const char * __restrict ____src_2093));// L125:L126 -extern char * ((__strncpy_2100) (char * __restrict ____dest_2095, const char * __restrict ____src_2096, __size_t_1 ____n_2097));// L128:L130 -extern char * ((__strncpy_2101) (char * __restrict ____dest_2095, const char * __restrict ____src_2096, __size_t_1093 ____n_2098));// L128:L130 -extern char * ((__strncpy_2102) (char * __restrict ____dest_2095, const char * __restrict ____src_2096, __size_t_2037 ____n_2099));// L128:L130 -extern char * ((__strcat_2105) (char * __restrict ____dest_2103, const char * __restrict ____src_2104));// L133:L134 -extern char * ((__strncat_2111) (char * __restrict ____dest_2106, const char * __restrict ____src_2107, __size_t_1 ____n_2108));// L136:L137 -extern char * ((__strncat_2112) (char * __restrict ____dest_2106, const char * __restrict ____src_2107, __size_t_1093 ____n_2109));// L136:L137 -extern char * ((__strncat_2113) (char * __restrict ____dest_2106, const char * __restrict ____src_2107, __size_t_2037 ____n_2110));// L136:L137 -extern int (__strcmp_2116) (const char * (____s1_2114), const char * (____s2_2115));// L140:L141 -extern int (__strncmp_2122) (const char * (____s1_2117), const char * (____s2_2118), __size_t_1 ____n_2119);// L143:L144 -extern int (__strncmp_2123) (const char * (____s1_2117), const char * (____s2_2118), __size_t_1093 ____n_2120);// L143:L144 -extern int (__strncmp_2124) (const char * (____s1_2117), const char * (____s2_2118), __size_t_2037 ____n_2121);// L143:L144 -extern int (__strcoll_2127) (const char * (____s1_2125), const char * (____s2_2126));// L147:L148 -extern __size_t_1 (__strxfrm_2133) (char * __restrict ____dest_2128, const char * __restrict ____src_2129, __size_t_1 ____n_2130);// L150:L152 -extern __size_t_1093 (__strxfrm_2134) (char * __restrict ____dest_2128, const char * __restrict ____src_2129, __size_t_1093 ____n_2131);// L150:L152 -extern __size_t_2037 (__strxfrm_2135) (char * __restrict ____dest_2128, const char * __restrict ____src_2129, __size_t_2037 ____n_2132);// L150:L152 -// typedef moved to top of scope -// typedef moved to top of scope -extern int (__strcoll_l_2148) (const char * (____s1_2145), const char * (____s2_2146), ____locale_t_2143 ____l_2147);// L162:L163 -extern __size_t_1 (__strxfrm_l_2155) (char * (____dest_2149), const char * (____src_2150), __size_t_1 ____n_2151, ____locale_t_2143 ____l_2154);// L165:L166 -extern __size_t_1093 (__strxfrm_l_2156) (char * (____dest_2149), const char * (____src_2150), __size_t_1093 ____n_2152, ____locale_t_2143 ____l_2154);// L165:L166 -extern __size_t_2037 (__strxfrm_l_2157) (char * (____dest_2149), const char * (____src_2150), __size_t_2037 ____n_2153, ____locale_t_2143 ____l_2154);// L165:L166 -extern char * ((__strdup_2159) (const char * (____s_2158)));// L171:L172 -extern char * ((__strndup_2164) (const char * (____string_2160), __size_t_1 ____n_2161));// L179:L180 -extern char * ((__strndup_2165) (const char * (____string_2160), __size_t_1093 ____n_2162));// L179:L180 -extern char * ((__strndup_2166) (const char * (____string_2160), __size_t_2037 ____n_2163));// L179:L180 -extern char * ((__strchr_2169) (const char * (____s_2167), int ____c_2168));// L231:L232 -extern char * ((__strrchr_2172) (const char * (____s_2170), int ____c_2171));// L258:L259 -extern __size_t_1 (__strcspn_2175) (const char * (____s_2173), const char * (____reject_2174));// L280:L281 -extern __size_t_1093 (__strcspn_2176) (const char * (____s_2173), const char * (____reject_2174));// L280:L281 -extern __size_t_2037 (__strcspn_2177) (const char * (____s_2173), const char * (____reject_2174));// L280:L281 -extern __size_t_1 (__strspn_2180) (const char * (____s_2178), const char * (____accept_2179));// L284:L285 -extern __size_t_1093 (__strspn_2181) (const char * (____s_2178), const char * (____accept_2179));// L284:L285 -extern __size_t_2037 (__strspn_2182) (const char * (____s_2178), const char * (____accept_2179));// L284:L285 -extern char * ((__strpbrk_2185) (const char * (____s_2183), const char * (____accept_2184)));// L310:L311 -extern char * ((__strstr_2188) (const char * (____haystack_2186), const char * (____needle_2187)));// L337:L338 -extern char * ((__strtok_2191) (char * __restrict ____s_2189, const char * __restrict ____delim_2190));// L343:L344 -extern char * ((____strtok_r_2195) (char * __restrict ____s_2192, const char * __restrict ____delim_2193, char * (* __restrict ____save_ptr_2194)));// L349:L352 -extern char * ((__strtok_r_2199) (char * __restrict ____s_2196, const char * __restrict ____delim_2197, char * (* __restrict ____save_ptr_2198)));// L354:L356 -extern __size_t_1 (__strlen_2201) (const char * (____s_2200));// L394:L395 -extern __size_t_1093 (__strlen_2202) (const char * (____s_2200));// L394:L395 -extern __size_t_2037 (__strlen_2203) (const char * (____s_2200));// L394:L395 -extern __size_t_1 (__strlen_2204) (const char * (____s_2200));// L394:L395 -extern __size_t_1093 (__strlen_2205) (const char * (____s_2200));// L394:L395 -extern __size_t_2037 (__strlen_2206) (const char * (____s_2200));// L394:L395 -extern __size_t_1 (__strnlen_2211) (const char * (____string_2207), __size_t_1 ____maxlen_2208);// L401:L402 -extern __size_t_1093 (__strnlen_2212) (const char * (____string_2207), __size_t_1093 ____maxlen_2209);// L401:L402 -extern __size_t_2037 (__strnlen_2213) (const char * (____string_2207), __size_t_2037 ____maxlen_2210);// L401:L402 -extern char * ((__strerror_2215) (int ____errnum_2214));// L408 -extern char * ((__strerror_2216) (int ____errnum_2214));// L408 -extern int (__strerror_r_2222) (int ____errnum_2217, char * (____buf_2218), __size_t_1 ____buflen_2219);// L422:L424 -extern int (__strerror_r_2223) (int ____errnum_2217, char * (____buf_2218), __size_t_1093 ____buflen_2220);// L422:L424 -extern int (__strerror_r_2224) (int ____errnum_2217, char * (____buf_2218), __size_t_2037 ____buflen_2221);// L422:L424 -extern char * ((__strerror_l_2227) (int ____errnum_2225, ____locale_t_2143 ____l_2226));// L440 -extern void (____bzero_2232) (void * (____s_2228), __size_t_1 ____n_2229);// L446 -extern void (____bzero_2233) (void * (____s_2228), __size_t_1093 ____n_2230);// L446 -extern void (____bzero_2234) (void * (____s_2228), __size_t_2037 ____n_2231);// L446 -extern void (____bzero_2235) (void * (____s_2228), __size_t_1 ____n_2229);// L446 -extern void (____bzero_2236) (void * (____s_2228), __size_t_1093 ____n_2230);// L446 -extern void (____bzero_2237) (void * (____s_2228), __size_t_2037 ____n_2231);// L446 -extern void (__bcopy_2243) (const void * (____src_2238), void * (____dest_2239), __size_t_1 ____n_2240);// L450:L451 -extern void (__bcopy_2244) (const void * (____src_2238), void * (____dest_2239), __size_t_1093 ____n_2241);// L450:L451 -extern void (__bcopy_2245) (const void * (____src_2238), void * (____dest_2239), __size_t_2037 ____n_2242);// L450:L451 -extern void (__bzero_2250) (void * (____s_2246), __size_t_1 ____n_2247);// L454 -extern void (__bzero_2251) (void * (____s_2246), __size_t_1093 ____n_2248);// L454 -extern void (__bzero_2252) (void * (____s_2246), __size_t_2037 ____n_2249);// L454 -extern int (__bcmp_2258) (const void * (____s1_2253), const void * (____s2_2254), __size_t_1 ____n_2255);// L457:L458 -extern int (__bcmp_2259) (const void * (____s1_2253), const void * (____s2_2254), __size_t_1093 ____n_2256);// L457:L458 -extern int (__bcmp_2260) (const void * (____s1_2253), const void * (____s2_2254), __size_t_2037 ____n_2257);// L457:L458 -extern char * ((__index_2263) (const char * (____s_2261), int ____c_2262));// L484:L485 -extern char * ((__rindex_2266) (const char * (____s_2264), int ____c_2265));// L512:L513 -extern int (__ffs_2268) (int ____i_2267);// L518 -extern int (__strcasecmp_2271) (const char * (____s1_2269), const char * (____s2_2270));// L529:L530 -extern int (__strncasecmp_2277) (const char * (____s1_2272), const char * (____s2_2273), __size_t_1 ____n_2274);// L533:L534 -extern int (__strncasecmp_2278) (const char * (____s1_2272), const char * (____s2_2273), __size_t_1093 ____n_2275);// L533:L534 -extern int (__strncasecmp_2279) (const char * (____s1_2272), const char * (____s2_2273), __size_t_2037 ____n_2276);// L533:L534 -extern char * ((__strsep_2282) (char * (* __restrict ____stringp_2280), const char * __restrict ____delim_2281));// L552:L554 -extern char * ((__strsignal_2284) (int ____sig_2283));// L559 -extern char * ((____stpcpy_2287) (char * __restrict ____dest_2285, const char * __restrict ____src_2286));// L562:L563 -extern char * ((__stpcpy_2290) (char * __restrict ____dest_2288, const char * __restrict ____src_2289));// L564:L565 -extern char * ((____stpncpy_2296) (char * __restrict ____dest_2291, const char * __restrict ____src_2292, __size_t_1 ____n_2293));// L569:L571 -extern char * ((____stpncpy_2297) (char * __restrict ____dest_2291, const char * __restrict ____src_2292, __size_t_1093 ____n_2294));// L569:L571 -extern char * ((____stpncpy_2298) (char * __restrict ____dest_2291, const char * __restrict ____src_2292, __size_t_2037 ____n_2295));// L569:L571 -extern char * ((__stpncpy_2304) (char * __restrict ____dest_2299, const char * __restrict ____src_2300, __size_t_1 ____n_2301));// L572:L574 -extern char * ((__stpncpy_2305) (char * __restrict ____dest_2299, const char * __restrict ____src_2300, __size_t_1093 ____n_2302));// L572:L574 -extern char * ((__stpncpy_2306) (char * __restrict ____dest_2299, const char * __restrict ____src_2300, __size_t_2037 ____n_2303));// L572:L574 +extern void * ((__memmove_1610) (void * (____dest_1607), const void * (____src_1608), __size_t_1 ____n_1609));// L46:L47 +extern void * ((__memset_1619) (void * (____s_1616), int ____c_1617, __size_t_1 ____n_1618));// L62 +extern void * ((__memset_1620) (void * (____s_1616), int ____c_1617, __size_t_1 ____n_1618));// L62 +extern int (__memcmp_1624) (const void * (____s1_1621), const void * (____s2_1622), __size_t_1 ____n_1623);// L65:L66 +extern void * ((__memchr_1628) (const void * (____s_1625), int ____c_1626, __size_t_1 ____n_1627));// L92:L93 +extern char * ((__strcpy_1631) (char * __restrict ____dest_1629, const char * __restrict ____src_1630));// L125:L126 +extern char * ((__strncpy_1635) (char * __restrict ____dest_1632, const char * __restrict ____src_1633, __size_t_1 ____n_1634));// L128:L130 +extern char * ((__strcat_1638) (char * __restrict ____dest_1636, const char * __restrict ____src_1637));// L133:L134 +extern char * ((__strncat_1642) (char * __restrict ____dest_1639, const char * __restrict ____src_1640, __size_t_1 ____n_1641));// L136:L137 +extern int (__strcmp_1645) (const char * (____s1_1643), const char * (____s2_1644));// L140:L141 +extern int (__strncmp_1649) (const char * (____s1_1646), const char * (____s2_1647), __size_t_1 ____n_1648);// L143:L144 +extern int (__strcoll_1652) (const char * (____s1_1650), const char * (____s2_1651));// L147:L148 +extern __size_t_1 (__strxfrm_1656) (char * __restrict ____dest_1653, const char * __restrict ____src_1654, __size_t_1 ____n_1655);// L150:L152 +// typedef moved to top of scope +// typedef moved to top of scope +extern int (__strcoll_l_1669) (const char * (____s1_1666), const char * (____s2_1667), ____locale_t_1664 ____l_1668);// L162:L163 +extern __size_t_1 (__strxfrm_l_1674) (char * (____dest_1670), const char * (____src_1671), __size_t_1 ____n_1672, ____locale_t_1664 ____l_1673);// L165:L166 +extern char * ((__strdup_1676) (const char * (____s_1675)));// L171:L172 +extern char * ((__strndup_1679) (const char * (____string_1677), __size_t_1 ____n_1678));// L179:L180 +extern char * ((__strchr_1682) (const char * (____s_1680), int ____c_1681));// L231:L232 +extern char * ((__strchr_1683) (const char * (____s_1680), int ____c_1681));// L231:L232 +extern char * ((__strrchr_1686) (const char * (____s_1684), int ____c_1685));// L258:L259 +extern __size_t_1 (__strcspn_1689) (const char * (____s_1687), const char * (____reject_1688));// L280:L281 +extern __size_t_1 (__strspn_1692) (const char * (____s_1690), const char * (____accept_1691));// L284:L285 +extern char * ((__strpbrk_1695) (const char * (____s_1693), const char * (____accept_1694)));// L310:L311 +extern char * ((__strstr_1698) (const char * (____haystack_1696), const char * (____needle_1697)));// L337:L338 +extern char * ((__strtok_1701) (char * __restrict ____s_1699, const char * __restrict ____delim_1700));// L343:L344 +extern char * ((____strtok_r_1705) (char * __restrict ____s_1702, const char * __restrict ____delim_1703, char * (* __restrict ____save_ptr_1704)));// L349:L352 +extern char * ((__strtok_r_1709) (char * __restrict ____s_1706, const char * __restrict ____delim_1707, char * (* __restrict ____save_ptr_1708)));// L354:L356 +extern __size_t_1 (__strlen_1711) (const char * (____s_1710));// L394:L395 +extern __size_t_1 (__strlen_1712) (const char * (____s_1710));// L394:L395 +extern __size_t_1 (__strnlen_1715) (const char * (____string_1713), __size_t_1 ____maxlen_1714);// L401:L402 +extern char * ((__strerror_1717) (int ____errnum_1716));// L408 +extern char * ((__strerror_1718) (int ____errnum_1716));// L408 +extern int (__strerror_r_1722) (int ____errnum_1719, char * (____buf_1720), __size_t_1 ____buflen_1721);// L422:L424 +extern char * ((__strerror_l_1725) (int ____errnum_1723, ____locale_t_1664 ____l_1724));// L440 +extern void (____bzero_1728) (void * (____s_1726), __size_t_1 ____n_1727);// L446 +extern void (____bzero_1729) (void * (____s_1726), __size_t_1 ____n_1727);// L446 +extern void (__bcopy_1733) (const void * (____src_1730), void * (____dest_1731), __size_t_1 ____n_1732);// L450:L451 +extern void (__bzero_1736) (void * (____s_1734), __size_t_1 ____n_1735);// L454 +extern int (__bcmp_1740) (const void * (____s1_1737), const void * (____s2_1738), __size_t_1 ____n_1739);// L457:L458 +extern char * ((__index_1743) (const char * (____s_1741), int ____c_1742));// L484:L485 +extern char * ((__rindex_1746) (const char * (____s_1744), int ____c_1745));// L512:L513 +extern int (__ffs_1748) (int ____i_1747);// L518 +extern int (__strcasecmp_1751) (const char * (____s1_1749), const char * (____s2_1750));// L529:L530 +extern int (__strncasecmp_1755) (const char * (____s1_1752), const char * (____s2_1753), __size_t_1 ____n_1754);// L533:L534 +extern char * ((__strsep_1758) (char * (* __restrict ____stringp_1756), const char * __restrict ____delim_1757));// L552:L554 +extern char * ((__strsignal_1760) (int ____sig_1759));// L559 +extern char * ((____stpcpy_1763) (char * __restrict ____dest_1761, const char * __restrict ____src_1762));// L562:L563 +extern char * ((__stpcpy_1766) (char * __restrict ____dest_1764, const char * __restrict ____src_1765));// L564:L565 +extern char * ((____stpncpy_1770) (char * __restrict ____dest_1767, const char * __restrict ____src_1768, __size_t_1 ____n_1769));// L569:L571 +extern char * ((__stpncpy_1774) (char * __restrict ____dest_1771, const char * __restrict ____src_1772, __size_t_1 ____n_1773));// L572:L574 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ @@ -3278,54 +2219,60 @@ extern char * ((__stpncpy_2306) (char * __restrict ____dest_2299, const char /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern char * ((____stpncpy_chk_2360) (char * (____dest_2352), const char * (____src_2353), __size_t_1 ____n_2354, __size_t_1 ____destlen_2357));// L130:L131 -extern char * ((____stpncpy_chk_2361) (char * (____dest_2352), const char * (____src_2353), __size_t_1093 ____n_2355, __size_t_1093 ____destlen_2358));// L130:L131 -extern char * ((____stpncpy_chk_2362) (char * (____dest_2352), const char * (____src_2353), __size_t_2037 ____n_2356, __size_t_2037 ____destlen_2359));// L130:L131 -extern char * ((____stpncpy_alias_2368) (char * (____dest_2363), const char * (____src_2364), __size_t_1 ____n_2365));// L132:L133 -extern char * ((____stpncpy_alias_2369) (char * (____dest_2363), const char * (____src_2364), __size_t_1093 ____n_2366));// L132:L133 -extern char * ((____stpncpy_alias_2370) (char * (____dest_2363), const char * (____src_2364), __size_t_2037 ____n_2367));// L132:L133 +extern char * ((____stpncpy_chk_1803) (char * (____dest_1799), const char * (____src_1800), __size_t_1 ____n_1801, __size_t_1 ____destlen_1802));// L130:L131 +extern char * ((____stpncpy_alias_1807) (char * (____dest_1804), const char * (____src_1805), __size_t_1 ____n_1806));// L132:L133 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -int __content_gzip_2390= 0;// L6 -int __authorized_2391= 0;// L10 -char * (__iobuf_2392)= malloc (8192);// L15 -char * (__iobuf_2393)= malloc (8192);// L15 -char * (__iobuf_2394)= malloc (8192);// L15 -char * (__iobuf_2395)= malloc (8192);// L15 -char * (__iobuf_2397)= malloc (8192);// L15 -char * (__iobuf_2398)= malloc (8192);// L15 -char * (__iobuf_2399)= malloc (8192);// L15 -char * (__iobuf_2400)= malloc (8192);// L15 -void (__send_headers_2405) (int __responseNum_2402) { +int __content_gzip_1819= 0;// L6 +int __content_gzip_1820= 0;// L6 +int __authorized_1821= 0;// L10 +char * (__iobuf_1822)= malloc (8192);// L15 +char * (__iobuf_1823)= malloc (8192);// L15 +char * (__iobuf_1824)= malloc (8192);// L15 +char * (__iobuf_1825)= malloc (8192);// L15 +char * (__iobuf_1826)= malloc (8192);// L15 +char * (__iobuf_1827)= malloc (8192);// L15 +char * (__iobuf_1828)= malloc (8192);// L15 +char * (__iobuf_1829)= malloc (8192);// L15 +void (__send_headers_1833) (int __responseNum_1830) { { { -const char * (__mime_type_2403);// L19 +const char * (__mime_type_1831);// L19 -int __len_2404;// L20 +int __len_1832;// L20 __static_type_error("type error : no valid expression"); // L23 -if (__static_condition_default_2406) { - __len_2404 = __sprintf_424 ( __iobuf_2392 ,"HTTP/1.0 %d\r\nContent-type: %s\r\n", __responseNum_2402 , __mime_type_2403 ) ; // L25:L26 +if (__static_condition_default_1834) { + __len_1832 = __sprintf_386 ( __iobuf_1822 ,"HTTP/1.0 %d\r\nContent-type: %s\r\n", __responseNum_1830 , __mime_type_1831 ) ; // L25:L26 +} +if (__static_condition_default_1835) { + __len_1832 = __sprintf_386 ( __iobuf_1823 ,"HTTP/1.0 %d\r\nContent-type: %s\r\n", __responseNum_1830 , __mime_type_1831 ) ; // L25:L26 +} +if (__static_condition_default_1836) { + __len_1832 = __sprintf_386 ( __iobuf_1824 ,"HTTP/1.0 %d\r\nContent-type: %s\r\n", __responseNum_1830 , __mime_type_1831 ) ; // L25:L26 } -if (__static_condition_default_2407) { - __len_2404 = __sprintf_424 ( __iobuf_2394 ,"HTTP/1.0 %d\r\nContent-type: %s\r\n", __responseNum_2402 , __mime_type_2403 ) ; // L25:L26 +if (__static_condition_default_1837) { + __len_1832 = __sprintf_386 ( __iobuf_1825 ,"HTTP/1.0 %d\r\nContent-type: %s\r\n", __responseNum_1830 , __mime_type_1831 ) ; // L25:L26 } -if (__static_condition_default_2408) { - __len_2404 = __sprintf_424 ( __iobuf_2397 ,"HTTP/1.0 %d\r\nContent-type: %s\r\n", __responseNum_2402 , __mime_type_2403 ) ; // L25:L26 +if (__static_condition_default_1838) { + __len_1832 = __sprintf_386 ( __iobuf_1826 ,"HTTP/1.0 %d\r\nContent-type: %s\r\n", __responseNum_1830 , __mime_type_1831 ) ; // L25:L26 } -if (__static_condition_default_2409) { - __len_2404 = __sprintf_424 ( __iobuf_2399 ,"HTTP/1.0 %d\r\nContent-type: %s\r\n", __responseNum_2402 , __mime_type_2403 ) ; // L25:L26 +if (__static_condition_default_1839) { + __len_1832 = __sprintf_386 ( __iobuf_1827 ,"HTTP/1.0 %d\r\nContent-type: %s\r\n", __responseNum_1830 , __mime_type_1831 ) ; // L25:L26 } -if (__static_condition_default_2410) { -__static_type_error("type error") ; // L25:L26 +if (__static_condition_default_1840) { + __len_1832 = __sprintf_386 ( __iobuf_1828 ,"HTTP/1.0 %d\r\nContent-type: %s\r\n", __responseNum_1830 , __mime_type_1831 ) ; // L25:L26 } -if (__static_condition_default_2411) { -if ( __responseNum_2402 == 401 )// L29 +if (__static_condition_default_1841) { + __len_1832 = __sprintf_386 ( __iobuf_1829 ,"HTTP/1.0 %d\r\nContent-type: %s\r\n", __responseNum_1830 , __mime_type_1831 ) ; // L25:L26 +} +if (__static_condition_default_1842) { +if ( __responseNum_1830 == 401 )// L29 { { @@ -3333,181 +2280,217 @@ if ( __responseNum_2402 == 401 )// L29 -if (__static_condition_default_2412) { - __len_2404 += __sprintf_424 ( __iobuf_2392 + __len_2404 ,"WWW-Authenticate: Basic realm=\"Web Server Authentication\"\r\n") ; // L30:L31 +if (__static_condition_default_1843) { + __len_1832 += __sprintf_386 ( __iobuf_1822 + __len_1832 ,"WWW-Authenticate: Basic realm=\"Web Server Authentication\"\r\n") ; // L30:L31 +} +if (__static_condition_default_1844) { + __len_1832 += __sprintf_386 ( __iobuf_1823 + __len_1832 ,"WWW-Authenticate: Basic realm=\"Web Server Authentication\"\r\n") ; // L30:L31 +} +if (__static_condition_default_1845) { + __len_1832 += __sprintf_386 ( __iobuf_1824 + __len_1832 ,"WWW-Authenticate: Basic realm=\"Web Server Authentication\"\r\n") ; // L30:L31 +} +if (__static_condition_default_1846) { + __len_1832 += __sprintf_386 ( __iobuf_1825 + __len_1832 ,"WWW-Authenticate: Basic realm=\"Web Server Authentication\"\r\n") ; // L30:L31 +} +if (__static_condition_default_1847) { + __len_1832 += __sprintf_386 ( __iobuf_1826 + __len_1832 ,"WWW-Authenticate: Basic realm=\"Web Server Authentication\"\r\n") ; // L30:L31 +} +if (__static_condition_default_1848) { + __len_1832 += __sprintf_386 ( __iobuf_1827 + __len_1832 ,"WWW-Authenticate: Basic realm=\"Web Server Authentication\"\r\n") ; // L30:L31 +} +if (__static_condition_default_1849) { + __len_1832 += __sprintf_386 ( __iobuf_1828 + __len_1832 ,"WWW-Authenticate: Basic realm=\"Web Server Authentication\"\r\n") ; // L30:L31 +} +if (__static_condition_default_1850) { + __len_1832 += __sprintf_386 ( __iobuf_1829 + __len_1832 ,"WWW-Authenticate: Basic realm=\"Web Server Authentication\"\r\n") ; // L30:L31 } -if (__static_condition_default_2413) { - __len_2404 += __sprintf_424 ( __iobuf_2394 + __len_2404 ,"WWW-Authenticate: Basic realm=\"Web Server Authentication\"\r\n") ; // L30:L31 } -if (__static_condition_default_2414) { - __len_2404 += __sprintf_424 ( __iobuf_2397 + __len_2404 ,"WWW-Authenticate: Basic realm=\"Web Server Authentication\"\r\n") ; // L30:L31 } -if (__static_condition_default_2415) { - __len_2404 += __sprintf_424 ( __iobuf_2399 + __len_2404 ,"WWW-Authenticate: Basic realm=\"Web Server Authentication\"\r\n") ; // L30:L31 } -if (__static_condition_default_2416) { -__static_type_error("type error") ; // L30:L31 } +if (__static_condition_default_1851) { +if ( __content_gzip_1819 )// L35 +{ +if (__static_condition_default_1852) { + __len_1832 += __sprintf_386 ( __iobuf_1822 + __len_1832 ,"Content-Encoding: gzip\r\n") ; // L36 +} +if (__static_condition_default_1853) { + __len_1832 += __sprintf_386 ( __iobuf_1823 + __len_1832 ,"Content-Encoding: gzip\r\n") ; // L36 +} +if (__static_condition_default_1854) { + __len_1832 += __sprintf_386 ( __iobuf_1826 + __len_1832 ,"Content-Encoding: gzip\r\n") ; // L36 } +if (__static_condition_default_1855) { + __len_1832 += __sprintf_386 ( __iobuf_1827 + __len_1832 ,"Content-Encoding: gzip\r\n") ; // L36 } } } -if (__static_condition_default_2417) { -if ( __content_gzip_2390 )// L35 +if (__static_condition_default_1856) { +if ( __content_gzip_1820 )// L35 { -if (__static_condition_default_2418) { - __len_2404 += __sprintf_424 ( __iobuf_2392 + __len_2404 ,"Content-Encoding: gzip\r\n") ; // L36 +if (__static_condition_default_1857) { + __len_1832 += __sprintf_386 ( __iobuf_1824 + __len_1832 ,"Content-Encoding: gzip\r\n") ; // L36 } -if (__static_condition_default_2419) { - __len_2404 += __sprintf_424 ( __iobuf_2394 + __len_2404 ,"Content-Encoding: gzip\r\n") ; // L36 +if (__static_condition_default_1858) { + __len_1832 += __sprintf_386 ( __iobuf_1825 + __len_1832 ,"Content-Encoding: gzip\r\n") ; // L36 } -if (__static_condition_default_2420) { - __len_2404 += __sprintf_424 ( __iobuf_2397 + __len_2404 ,"Content-Encoding: gzip\r\n") ; // L36 +if (__static_condition_default_1859) { + __len_1832 += __sprintf_386 ( __iobuf_1828 + __len_1832 ,"Content-Encoding: gzip\r\n") ; // L36 } -if (__static_condition_default_2421) { - __len_2404 += __sprintf_424 ( __iobuf_2399 + __len_2404 ,"Content-Encoding: gzip\r\n") ; // L36 +if (__static_condition_default_1860) { + __len_1832 += __sprintf_386 ( __iobuf_1829 + __len_1832 ,"Content-Encoding: gzip\r\n") ; // L36 } -if (__static_condition_default_2422) { -__static_type_error("type error") ; // L36 } } +if (__static_condition_default_1861) { +if ( __content_gzip_1819 )// L35 +{ +if (__static_condition_default_1862) { + __len_1832 += __sprintf_386 ( __iobuf_1822 + __len_1832 ,"Content-Encoding: gzip\r\n") ; // L36 +} +if (__static_condition_default_1863) { + __len_1832 += __sprintf_386 ( __iobuf_1823 + __len_1832 ,"Content-Encoding: gzip\r\n") ; // L36 +} +if (__static_condition_default_1864) { + __len_1832 += __sprintf_386 ( __iobuf_1826 + __len_1832 ,"Content-Encoding: gzip\r\n") ; // L36 } -if (__static_condition_default_2423) { -if ( __content_gzip_2390 )// L35 +if (__static_condition_default_1865) { + __len_1832 += __sprintf_386 ( __iobuf_1827 + __len_1832 ,"Content-Encoding: gzip\r\n") ; // L36 +} +} +} +if (__static_condition_default_1866) { +if ( __content_gzip_1820 )// L35 { -if (__static_condition_default_2424) { - __len_2404 += __sprintf_424 ( __iobuf_2392 + __len_2404 ,"Content-Encoding: gzip\r\n") ; // L36 +if (__static_condition_default_1867) { + __len_1832 += __sprintf_386 ( __iobuf_1824 + __len_1832 ,"Content-Encoding: gzip\r\n") ; // L36 } -if (__static_condition_default_2425) { - __len_2404 += __sprintf_424 ( __iobuf_2394 + __len_2404 ,"Content-Encoding: gzip\r\n") ; // L36 +if (__static_condition_default_1868) { + __len_1832 += __sprintf_386 ( __iobuf_1825 + __len_1832 ,"Content-Encoding: gzip\r\n") ; // L36 } -if (__static_condition_default_2426) { - __len_2404 += __sprintf_424 ( __iobuf_2397 + __len_2404 ,"Content-Encoding: gzip\r\n") ; // L36 +if (__static_condition_default_1869) { + __len_1832 += __sprintf_386 ( __iobuf_1828 + __len_1832 ,"Content-Encoding: gzip\r\n") ; // L36 } -if (__static_condition_default_2427) { - __len_2404 += __sprintf_424 ( __iobuf_2399 + __len_2404 ,"Content-Encoding: gzip\r\n") ; // L36 +if (__static_condition_default_1870) { + __len_1832 += __sprintf_386 ( __iobuf_1829 + __len_1832 ,"Content-Encoding: gzip\r\n") ; // L36 } -if (__static_condition_default_2428) { -__static_type_error("type error") ; // L36 } } +if (__static_condition_default_1834) { + __printf_383 ("headers: '%s'\n", __iobuf_1822 ) ; // L38 } -if (__static_condition_default_2429) { -__static_type_error("invalid type found in if statement"); +if (__static_condition_default_1871) { + __printf_383 ("headers: '%s'\n", __iobuf_1823 ) ; // L38 +} +if (__static_condition_default_1872) { + __printf_383 ("headers: '%s'\n", __iobuf_1824 ) ; // L38 } -if (__static_condition_default_2430) { - __printf_421 ("headers: '%s'\n", __iobuf_2392 ) ; // L38 +if (__static_condition_default_1873) { + __printf_383 ("headers: '%s'\n", __iobuf_1825 ) ; // L38 } -if (__static_condition_default_2431) { - __printf_421 ("headers: '%s'\n", __iobuf_2394 ) ; // L38 +if (__static_condition_default_1874) { + __printf_383 ("headers: '%s'\n", __iobuf_1826 ) ; // L38 } -if (__static_condition_default_2432) { - __printf_421 ("headers: '%s'\n", __iobuf_2397 ) ; // L38 +if (__static_condition_default_1875) { + __printf_383 ("headers: '%s'\n", __iobuf_1827 ) ; // L38 } -if (__static_condition_default_2433) { - __printf_421 ("headers: '%s'\n", __iobuf_2399 ) ; // L38 +if (__static_condition_default_1876) { + __printf_383 ("headers: '%s'\n", __iobuf_1828 ) ; // L38 } -if (__static_condition_default_2434) { -__static_type_error("type error") ; // L38 +if (__static_condition_default_1877) { + __printf_383 ("headers: '%s'\n", __iobuf_1829 ) ; // L38 } } } } -void (__send_headers_and_exit_2436) (int __responseNum_2435) { +void (__send_headers_and_exit_1879) (int __responseNum_1878) { { { - __send_headers_2405 ( __responseNum_2435 ) ; // L43 + __send_headers_1833 ( __responseNum_1878 ) ; // L43 } } } -void (__handle_incoming_and_exit_2447) () { +void (__handle_incoming_and_exit_1888) () { { -if (__static_condition_default_2448) { +if (__static_condition_default_1889) { { { -const char * (__s_2437)= __strstr_2188 ( __iobuf_2392 ,"gzip");// L50 +const char * (__s_1880)= __strstr_1698 ( __iobuf_1822 ,"gzip");// L50 -const char * (__s_2438)= __strstr_2188 ( __iobuf_2393 ,"gzip");// L50 +const char * (__s_1881)= __strstr_1698 ( __iobuf_1823 ,"gzip");// L50 -const char * (__s_2439)= __strstr_2188 ( __iobuf_2394 ,"gzip");// L50 +const char * (__s_1882)= __strstr_1698 ( __iobuf_1824 ,"gzip");// L50 -const char * (__s_2440)= __strstr_2188 ( __iobuf_2395 ,"gzip");// L50 +const char * (__s_1883)= __strstr_1698 ( __iobuf_1825 ,"gzip");// L50 -const char * (__s_2441)= __strstr_2188 ( __iobuf_2397 ,"gzip");// L50 +const char * (__s_1884)= __strstr_1698 ( __iobuf_1826 ,"gzip");// L50 -const char * (__s_2442)= __strstr_2188 ( __iobuf_2398 ,"gzip");// L50 +const char * (__s_1885)= __strstr_1698 ( __iobuf_1827 ,"gzip");// L50 -const char * (__s_2443)= __strstr_2188 ( __iobuf_2399 ,"gzip");// L50 +const char * (__s_1886)= __strstr_1698 ( __iobuf_1828 ,"gzip");// L50 -const char * (__s_2444)= __strstr_2188 ( __iobuf_2400 ,"gzip");// L50 +const char * (__s_1887)= __strstr_1698 ( __iobuf_1829 ,"gzip");// L50 -if (__static_condition_default_2445) { -__static_type_error("invalid declaration of s under this presence condition"); -} - -if (__static_condition_default_2449) { -if ( __s_2437 )// L51 +if (__static_condition_default_1890) { +if ( __s_1880 )// L51 { - __content_gzip_2390 = 1 ; // L52 + __content_gzip_1819 = 1 ; // L52 } } -if (__static_condition_default_2450) { -if ( __s_2438 )// L51 +if (__static_condition_default_1891) { +if ( __s_1881 )// L51 { - __content_gzip_2390 = 1 ; // L52 + __content_gzip_1819 = 1 ; // L52 } } -if (__static_condition_default_2451) { -if ( __s_2439 )// L51 +if (__static_condition_default_1892) { +if ( __s_1882 )// L51 { - __content_gzip_2390 = 1 ; // L52 + __content_gzip_1820 = 1 ; // L52 } } -if (__static_condition_default_2452) { -if ( __s_2440 )// L51 +if (__static_condition_default_1893) { +if ( __s_1883 )// L51 { - __content_gzip_2390 = 1 ; // L52 + __content_gzip_1820 = 1 ; // L52 } } -if (__static_condition_default_2453) { -if ( __s_2441 )// L51 +if (__static_condition_default_1894) { +if ( __s_1884 )// L51 { - __content_gzip_2390 = 1 ; // L52 + __content_gzip_1819 = 1 ; // L52 } } -if (__static_condition_default_2454) { -if ( __s_2442 )// L51 +if (__static_condition_default_1895) { +if ( __s_1885 )// L51 { - __content_gzip_2390 = 1 ; // L52 + __content_gzip_1819 = 1 ; // L52 } } -if (__static_condition_default_2455) { -if ( __s_2443 )// L51 +if (__static_condition_default_1896) { +if ( __s_1886 )// L51 { - __content_gzip_2390 = 1 ; // L52 + __content_gzip_1820 = 1 ; // L52 } } -if (__static_condition_default_2456) { -if ( __s_2444 )// L51 +if (__static_condition_default_1897) { +if ( __s_1887 )// L51 { - __content_gzip_2390 = 1 ; // L52 -} + __content_gzip_1820 = 1 ; // L52 } -if (__static_condition_default_2457) { -__static_type_error("invalid type found in if statement"); } } } @@ -3515,97 +2498,84 @@ __static_type_error("invalid type found in if statement"); } -if (__static_condition_default_2458) { +if (__static_condition_default_1898) { { { -const char * (__s_2437)= __strstr_2188 ( __iobuf_2392 ,"gzip");// L50 - -const char * (__s_2438)= __strstr_2188 ( __iobuf_2393 ,"gzip");// L50 +const char * (__s_1880)= __strstr_1698 ( __iobuf_1822 ,"gzip");// L50 -const char * (__s_2439)= __strstr_2188 ( __iobuf_2394 ,"gzip");// L50 +const char * (__s_1881)= __strstr_1698 ( __iobuf_1823 ,"gzip");// L50 -const char * (__s_2440)= __strstr_2188 ( __iobuf_2395 ,"gzip");// L50 +const char * (__s_1882)= __strstr_1698 ( __iobuf_1824 ,"gzip");// L50 -const char * (__s_2441)= __strstr_2188 ( __iobuf_2397 ,"gzip");// L50 +const char * (__s_1883)= __strstr_1698 ( __iobuf_1825 ,"gzip");// L50 -const char * (__s_2442)= __strstr_2188 ( __iobuf_2398 ,"gzip");// L50 +const char * (__s_1884)= __strstr_1698 ( __iobuf_1826 ,"gzip");// L50 -const char * (__s_2443)= __strstr_2188 ( __iobuf_2399 ,"gzip");// L50 +const char * (__s_1885)= __strstr_1698 ( __iobuf_1827 ,"gzip");// L50 -const char * (__s_2444)= __strstr_2188 ( __iobuf_2400 ,"gzip");// L50 +const char * (__s_1886)= __strstr_1698 ( __iobuf_1828 ,"gzip");// L50 -if (__static_condition_default_2445) { -__static_type_error("invalid declaration of s under this presence condition"); -} +const char * (__s_1887)= __strstr_1698 ( __iobuf_1829 ,"gzip");// L50 -if (__static_condition_default_2459) { -if ( __s_2437 )// L51 +if (__static_condition_default_1899) { +if ( __s_1880 )// L51 { - __content_gzip_2390 = 1 ; // L52 + __content_gzip_1819 = 1 ; // L52 } } -if (__static_condition_default_2460) { -if ( __s_2438 )// L51 +if (__static_condition_default_1900) { +if ( __s_1881 )// L51 { - __content_gzip_2390 = 1 ; // L52 + __content_gzip_1819 = 1 ; // L52 } } -if (__static_condition_default_2461) { -if ( __s_2439 )// L51 +if (__static_condition_default_1901) { +if ( __s_1882 )// L51 { - __content_gzip_2390 = 1 ; // L52 + __content_gzip_1820 = 1 ; // L52 } } -if (__static_condition_default_2462) { -if ( __s_2440 )// L51 +if (__static_condition_default_1902) { +if ( __s_1883 )// L51 { - __content_gzip_2390 = 1 ; // L52 + __content_gzip_1820 = 1 ; // L52 } } -if (__static_condition_default_2463) { -if ( __s_2441 )// L51 +if (__static_condition_default_1903) { +if ( __s_1884 )// L51 { - __content_gzip_2390 = 1 ; // L52 + __content_gzip_1819 = 1 ; // L52 } } -if (__static_condition_default_2464) { -if ( __s_2442 )// L51 +if (__static_condition_default_1904) { +if ( __s_1885 )// L51 { - __content_gzip_2390 = 1 ; // L52 + __content_gzip_1819 = 1 ; // L52 } } -if (__static_condition_default_2465) { -if ( __s_2443 )// L51 +if (__static_condition_default_1905) { +if ( __s_1886 )// L51 { - __content_gzip_2390 = 1 ; // L52 + __content_gzip_1820 = 1 ; // L52 } } -if (__static_condition_default_2466) { -if ( __s_2444 )// L51 -{ - __content_gzip_2390 = 1 ; // L52 -} -} -if (__static_condition_default_2467) { -__static_type_error("invalid type found in if statement"); -} -if (__static_condition_default_2468) { -if ( ! __authorized_2391 )// L56 +if (__static_condition_default_1906) { +if ( __s_1887 )// L51 { - __send_headers_and_exit_2436 (401) ; // L57 + __content_gzip_1820 = 1 ; // L52 } } -if (__static_condition_default_2469) { -if ( ! __authorized_2391 )// L56 +if (__static_condition_default_1907) { +if ( ! __authorized_1821 )// L56 { - __send_headers_and_exit_2436 (401) ; // L57 + __send_headers_and_exit_1879 (401) ; // L57 } } -if (__static_condition_default_2470) { +if (__static_condition_default_1908) { __static_type_error("invalid type found in if statement"); } } @@ -3615,25 +2585,25 @@ __static_type_error("invalid type found in if statement"); } }} -void (__mini_httpd_2471) () { +void (__mini_httpd_1909) () { -if (__static_condition_default_2472) { +if (__static_condition_default_1910) { { { - __handle_incoming_and_exit_2447 ( ) ; // L64 + __handle_incoming_and_exit_1888 ( ) ; // L64 } } } } -int (__main_2475) (int __argc_2473, char * (* (__argv_2474))) { +int (__main_1913) (int __argc_1911, char * (* (__argv_1912))) { -if (__static_condition_default_2477) { +if (__static_condition_default_1915) { { { @@ -3647,16 +2617,16 @@ return 0 ;// L73 } } -int (__main_2476) (int __argc_2473, char * (* (__argv_2474))) { +int (__main_1914) (int __argc_1911, char * (* (__argv_1912))) { -if (__static_condition_default_2478) { +if (__static_condition_default_1916) { { { - __mini_httpd_2471 ( ) ; // L71 + __mini_httpd_1909 ( ) ; // L71 return 0 ;// L73 } } diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.clangres index 6095d9b5..22d040bb 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.clangres @@ -1,25 +1,25 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c:3292:25: error: initializer element is not a compile-time constant -char * (__iobuf_2392)= malloc (8192);// L15 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c:2230:25: error: initializer element is not a compile-time constant +char * (__iobuf_1822)= malloc (8192);// L15 ^~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c:3293:25: error: initializer element is not a compile-time constant -char * (__iobuf_2393)= malloc (8192);// L15 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c:2231:25: error: initializer element is not a compile-time constant +char * (__iobuf_1823)= malloc (8192);// L15 ^~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c:3294:25: error: initializer element is not a compile-time constant -char * (__iobuf_2394)= malloc (8192);// L15 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c:2232:25: error: initializer element is not a compile-time constant +char * (__iobuf_1824)= malloc (8192);// L15 ^~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c:3295:25: error: initializer element is not a compile-time constant -char * (__iobuf_2395)= malloc (8192);// L15 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c:2233:25: error: initializer element is not a compile-time constant +char * (__iobuf_1825)= malloc (8192);// L15 ^~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c:3296:25: error: initializer element is not a compile-time constant -char * (__iobuf_2397)= malloc (8192);// L15 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c:2234:25: error: initializer element is not a compile-time constant +char * (__iobuf_1826)= malloc (8192);// L15 ^~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c:3297:25: error: initializer element is not a compile-time constant -char * (__iobuf_2398)= malloc (8192);// L15 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c:2235:25: error: initializer element is not a compile-time constant +char * (__iobuf_1827)= malloc (8192);// L15 ^~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c:3298:25: error: initializer element is not a compile-time constant -char * (__iobuf_2399)= malloc (8192);// L15 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c:2236:25: error: initializer element is not a compile-time constant +char * (__iobuf_1828)= malloc (8192);// L15 ^~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c:3299:25: error: initializer element is not a compile-time constant -char * (__iobuf_2400)= malloc (8192);// L15 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c:2237:25: error: initializer element is not a compile-time constant +char * (__iobuf_1829)= malloc (8192);// L15 ^~~~~~~~~~~~~ 8 errors generated. diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.clangres index 43cb4241..e69de29b 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.clangres @@ -1,4 +0,0 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.c:16:5: warning: 2nd function call argument is an uninitialized value [core.CallAndMessage] - printf("%d", info); // ERROR - ^~~~~~~~~~~~~~~~~~ -1 warning generated. diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.c index 09cf1bc4..726e1526 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.c @@ -7,366 +7,366 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_402; -extern const bool __static_condition_default_1754; -extern const bool __static_condition_default_1164; -extern const bool __static_condition_default_1152; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_2067; -extern const bool __static_condition_default_1402; -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_521; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_1409; +extern const bool __static_condition_default_1810; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_1775; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_2048; +extern const bool __static_condition_default_2050; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_419; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_1385; +extern const bool __static_condition_default_2045; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_1516; +extern const bool __static_condition_default_2065; +extern const bool __static_condition_default_1315; +extern const bool __static_condition_default_433; extern const bool __static_condition_default_1475; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_2058; -extern const bool __static_condition_default_549; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_1420; +extern const bool __static_condition_default_1814; +extern const bool __static_condition_default_1373; extern const bool __static_condition_default_751; -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_1388; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_825; +extern const bool __static_condition_default_2040; +extern const bool __static_condition_default_2041; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_1568; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_1357; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_746; extern const bool __static_condition_default_1428; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_2054; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_1814; -extern const bool __static_condition_default_2042; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_578; +extern const bool __static_condition_default_388; +extern const bool __static_condition_default_1459; extern const bool __static_condition_default_780; -extern const bool __static_condition_default_787; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_1341; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_412; -extern const bool __static_condition_default_789; -extern const bool __static_condition_default_1773; -extern const bool __static_condition_default_755; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_317; -extern const bool __static_condition_default_510; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_852; extern const bool __static_condition_default_2062; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_357; -extern const bool __static_condition_default_955; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_701; -extern const bool __static_condition_default_646; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_1165; -extern const bool __static_condition_default_419; -extern const bool __static_condition_default_2055; -extern const bool __static_condition_default_685; -extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_891; -extern const bool __static_condition_default_914; -extern const bool __static_condition_default_315; +extern const bool __static_condition_default_1395; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_583; +extern const bool __static_condition_default_2049; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_1152; +extern const bool __static_condition_default_1498; +extern const bool __static_condition_default_337; extern const bool __static_condition_default_637; -extern const bool __static_condition_default_1564; -extern const bool __static_condition_default_1785; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_1458; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_521; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_1365; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_2065; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_1556; -extern const bool __static_condition_default_2063; -extern const bool __static_condition_default_1436; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_53; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_1353; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_182; extern const bool __static_condition_default_408; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_1576; -extern const bool __static_condition_default_1787; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_761; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_1810; -extern const bool __static_condition_default_1944; -extern const bool __static_condition_default_2046; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_1416; -extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_583; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_187; +extern const bool __static_condition_default_542; extern const bool __static_condition_default_803; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_2056; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_645; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_1531; -extern const bool __static_condition_default_388; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_559; -extern const bool __static_condition_default_1568; -extern const bool __static_condition_default_2051; -extern const bool __static_condition_default_1753; -extern const bool __static_condition_default_1345; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_386; -extern const bool __static_condition_default_625; +extern const bool __static_condition_default_1572; +extern const bool __static_condition_default_929; extern const bool __static_condition_default_823; -extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_1349; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_1453; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_1816; -extern const bool __static_condition_default_1385; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_1381; -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_613; -extern const bool __static_condition_default_1377; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_461; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_1532; -extern const bool __static_condition_default_747; +extern const bool __static_condition_default_1432; extern const bool __static_condition_default_282; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_2049; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_2040; +extern const bool __static_condition_default_365; +extern const bool __static_condition_default_761; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_347; +extern const bool __static_condition_default_549; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_757; extern const bool __static_condition_default_769; -extern const bool __static_condition_default_2057; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_1750; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_1485; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_957; -extern const bool __static_condition_default_2053; -extern const bool __static_condition_default_544; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_791; extern const bool __static_condition_default_1515; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_1789; -extern const bool __static_condition_default_702; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_1791; -extern const bool __static_condition_default_872; -extern const bool __static_condition_default_2059; -extern const bool __static_condition_default_1489; -extern const bool __static_condition_default_1373; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_380; +extern const bool __static_condition_default_1773; +extern const bool __static_condition_default_1754; +extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_1750; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_613; +extern const bool __static_condition_default_894; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_1532; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_834; +extern const bool __static_condition_default_536; extern const bool __static_condition_default_564; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_1405; -extern const bool __static_condition_default_2052; -extern const bool __static_condition_default_488; -extern const bool __static_condition_default_1432; -extern const bool __static_condition_default_1808; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_788; extern const bool __static_condition_default_1560; -extern const bool __static_condition_default_1409; +extern const bool __static_condition_default_842; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_891; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_2058; +extern const bool __static_condition_default_382; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_2046; +extern const bool __static_condition_default_907; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_1416; +extern const bool __static_condition_default_1774; extern const bool __static_condition_default_2060; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_367; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_331; +extern const bool __static_condition_default_2071; extern const bool __static_condition_default_469; -extern const bool __static_condition_default_907; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_929; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_638; -extern const bool __static_condition_default_2043; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_842; extern const bool __static_condition_default_978; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_887; -extern const bool __static_condition_default_2071; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_173; +extern const bool __static_condition_default_1753; +extern const bool __static_condition_default_2056; +extern const bool __static_condition_default_1944; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_619; +extern const bool __static_condition_default_550; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_2061; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_296; extern const bool __static_condition_default_663; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_2055; +extern const bool __static_condition_default_311; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_1377; +extern const bool __static_condition_default_367; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_84; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_559; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_872; extern const bool __static_condition_default_223; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_1516; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_347; -extern const bool __static_condition_default_313; -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_2066; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_1775; -extern const bool __static_condition_default_2044; -extern const bool __static_condition_default_198; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_76; -extern const bool __static_condition_default_217; -extern const bool __static_condition_default_2047; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_650; +extern const bool __static_condition_default_693; extern const bool __static_condition_default_275; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_248; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_380; -extern const bool __static_condition_default_848; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_858; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_585; extern const bool __static_condition_default_753; +extern const bool __static_condition_default_386; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_963; +extern const bool __static_condition_default_2066; +extern const bool __static_condition_default_1345; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_779; extern const bool __static_condition_default_846; -extern const bool __static_condition_default_438; -extern const bool __static_condition_default_1353; -extern const bool __static_condition_default_1357; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_417; +extern const bool __static_condition_default_955; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_2042; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_1402; extern const bool __static_condition_default_1369; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_894; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_1349; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_1556; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_489; +extern const bool __static_condition_default_568; +extern const bool __static_condition_default_333; +extern const bool __static_condition_default_2044; +extern const bool __static_condition_default_1453; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_1164; +extern const bool __static_condition_default_1398; +extern const bool __static_condition_default_1816; +extern const bool __static_condition_default_363; extern const bool __static_condition_default_590; -extern const bool __static_condition_default_2050; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_382; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_2061; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_693; -extern const bool __static_condition_default_956; -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_677; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_1315; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_494; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_636; +extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_1489; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_1531; +extern const bool __static_condition_default_1789; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_1424; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_2057; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_2053; extern const bool __static_condition_default_529; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_875; -extern const bool __static_condition_default_1459; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_2045; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_727; extern const bool __static_condition_default_670; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_311; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_1552; extern const bool __static_condition_default_944; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_2048; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_1572; -extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_2063; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_1405; +extern const bool __static_condition_default_255; extern const bool __static_condition_default_475; -extern const bool __static_condition_default_568; +extern const bool __static_condition_default_1808; +extern const bool __static_condition_default_875; +extern const bool __static_condition_default_2047; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_488; +extern const bool __static_condition_default_1564; +extern const bool __static_condition_default_2052; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_1388; +extern const bool __static_condition_default_1165; +extern const bool __static_condition_default_2067; extern const bool __static_condition_default_1361; -extern const bool __static_condition_default_393; -extern const bool __static_condition_default_793; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_1498; -extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_1774; -extern const bool __static_condition_default_2041; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_512; -extern const bool __static_condition_default_661; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_759; extern const bool __static_condition_default_1776; +extern const bool __static_condition_default_2054; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_747; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_204; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_544; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_1785; +extern const bool __static_condition_default_1159; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_1436; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_1576; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_736; extern const bool __static_condition_default_573; -extern const bool __static_condition_default_431; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_1552; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_677; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_1458; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_402; extern const bool __static_condition_default_760; -extern const bool __static_condition_default_963; -extern const bool __static_condition_default_709; -extern const bool __static_condition_default_552; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_721; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_512; +extern const bool __static_condition_default_2059; +extern const bool __static_condition_default_76; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_1791; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_1485; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_1341; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_1365; +extern const bool __static_condition_default_2043; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_187; +extern const bool __static_condition_default_2051; +extern const bool __static_condition_default_789; extern const bool __static_condition_default_700; -extern const bool __static_condition_default_333; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_1159; -extern const bool __static_condition_default_1395; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_543; +extern const bool __static_condition_default_702; +extern const bool __static_condition_default_280; extern const bool __static_condition_default_1391; -extern const bool __static_condition_default_779; -extern const bool __static_condition_default_1398; -extern const bool __static_condition_default_1420; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_1787; +extern const bool __static_condition_default_455; extern const bool __static_condition_default_290; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_536; -extern const bool __static_condition_default_632; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_1424; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_1381; extern const bool __static_condition_default_1749; -extern const bool __static_condition_default_204; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_432; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -1468,8 +1468,7 @@ __static_condition_renaming("__static_condition_default_2066", "(defined _FORTIF __static_condition_renaming("__static_condition_default_2067", "!(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined _STDLIB_H)"); __static_condition_renaming("__static_condition_default_2071", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -if (__static_condition_default_2071) -{ +if (__static_condition_default_2071) { __static_parse_error("Unable to parse"); } }; diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.clangres index c744fc0c..96a144fa 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.clangres @@ -1,16 +1,16 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.c:2937:2: warning: 2nd function call argument is an uninitialized value [core.CallAndMessage] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.c:2936:2: warning: 2nd function call argument is an uninitialized value [core.CallAndMessage] __printf_421 ("%d", __info_2036 ) ; // L16 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.c:2948:2: warning: 2nd function call argument is an uninitialized value [core.CallAndMessage] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.c:2947:2: warning: 2nd function call argument is an uninitialized value [core.CallAndMessage] __printf_421 ("%d", __info_2036 ) ; // L16 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.c:3008:2: warning: 2nd function call argument is an uninitialized value [core.CallAndMessage] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.c:3007:2: warning: 2nd function call argument is an uninitialized value [core.CallAndMessage] __printf_421 ("%d", __info_2036 ) ; // L16 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.c:3019:2: warning: 2nd function call argument is an uninitialized value [core.CallAndMessage] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.c:3018:2: warning: 2nd function call argument is an uninitialized value [core.CallAndMessage] __printf_421 ("%d", __info_2036 ) ; // L16 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.c:3073:2: warning: Value stored to '__info_2036' is never read [deadcode.DeadStores] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.c:3072:2: warning: Value stored to '__info_2036' is never read [deadcode.DeadStores] __info_2036 = 0 ; // L11 ^ ~ 5 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.inferres index 0513a99e..2cb125a8 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.inferres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.inferres @@ -1,39 +1,39 @@ -BUSYBOX/b273d665181.desugared.c:2937: error: Uninitialized Value +BUSYBOX/b273d665181.desugared.c:2936: error: Uninitialized Value The value read from __info_2036 was never initialized. - 2935. { - 2936. if (__static_condition_default_2044) { - 2937. __printf_421 ("%d", __info_2036 ) ; // L16 + 2934. { + 2935. if (__static_condition_default_2044) { + 2936. __printf_421 ("%d", __info_2036 ) ; // L16 ^ - 2938. } - 2939. if (__static_condition_default_2045) { + 2937. } + 2938. if (__static_condition_default_2045) { -BUSYBOX/b273d665181.desugared.c:2948: error: Uninitialized Value +BUSYBOX/b273d665181.desugared.c:2947: error: Uninitialized Value The value read from __info_2036 was never initialized. - 2946. { - 2947. if (__static_condition_default_2047) { - 2948. __printf_421 ("%d", __info_2036 ) ; // L16 + 2945. { + 2946. if (__static_condition_default_2047) { + 2947. __printf_421 ("%d", __info_2036 ) ; // L16 ^ - 2949. } - 2950. if (__static_condition_default_2048) { + 2948. } + 2949. if (__static_condition_default_2048) { -BUSYBOX/b273d665181.desugared.c:3008: error: Uninitialized Value +BUSYBOX/b273d665181.desugared.c:3007: error: Uninitialized Value The value read from __info_2036 was never initialized. - 3006. { - 3007. if (__static_condition_default_2054) { - 3008. __printf_421 ("%d", __info_2036 ) ; // L16 + 3005. { + 3006. if (__static_condition_default_2054) { + 3007. __printf_421 ("%d", __info_2036 ) ; // L16 ^ - 3009. } - 3010. if (__static_condition_default_2055) { + 3008. } + 3009. if (__static_condition_default_2055) { -BUSYBOX/b273d665181.desugared.c:3019: error: Uninitialized Value +BUSYBOX/b273d665181.desugared.c:3018: error: Uninitialized Value The value read from __info_2036 was never initialized. - 3017. { - 3018. if (__static_condition_default_2057) { - 3019. __printf_421 ("%d", __info_2036 ) ; // L16 + 3016. { + 3017. if (__static_condition_default_2057) { + 3018. __printf_421 ("%d", __info_2036 ) ; // L16 ^ - 3020. } - 3021. if (__static_condition_default_2058) { + 3019. } + 3020. if (__static_condition_default_2058) { Found 4 issues diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.clangres index 341fd15b..e69de29b 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.clangres @@ -1,7 +0,0 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.c:14:9: warning: Value stored to 'a' during its initialization is never read [deadcode.DeadStores] - char *a = val; - ^ ~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.c:16:3: warning: Value stored to 'val' is never read [deadcode.DeadStores] - val = (s && s[1]) ? s+1 : NULL; - ^ ~~~~~~~~~~~~~~~~~~~~~~~~ -2 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c index 44baf0e8..a4260808 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c @@ -7,388 +7,224 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_412; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_2330; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_204; -extern const bool __static_condition_default_1568; -extern const bool __static_condition_default_549; -extern const bool __static_condition_default_315; -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_347; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_2387; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_419; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_317; -extern const bool __static_condition_default_1165; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_2409; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_747; -extern const bool __static_condition_default_753; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_645; -extern const bool __static_condition_default_956; -extern const bool __static_condition_default_751; +extern const bool __static_condition_default_577; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_726; +extern const bool __static_condition_default_343; +extern const bool __static_condition_default_518; extern const bool __static_condition_default_235; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_1377; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_670; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_1749; -extern const bool __static_condition_default_1816; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_1385; -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_380; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_957; -extern const bool __static_condition_default_1405; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_1787; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_187; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_488; -extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_2397; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_2381; -extern const bool __static_condition_default_521; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_512; -extern const bool __static_condition_default_2388; -extern const bool __static_condition_default_858; +extern const bool __static_condition_default_300; +extern const bool __static_condition_default_1104; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_434; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_1222; +extern const bool __static_condition_default_890; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_758; +extern const bool __static_condition_default_1212; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_531; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_741; extern const bool __static_condition_default_275; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_1402; -extern const bool __static_condition_default_2064; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_693; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_1458; -extern const bool __static_condition_default_290; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_217; -extern const bool __static_condition_default_2044; -extern const bool __static_condition_default_2398; -extern const bool __static_condition_default_559; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_1353; -extern const bool __static_condition_default_386; -extern const bool __static_condition_default_2389; +extern const bool __static_condition_default_551; +extern const bool __static_condition_default_923; +extern const bool __static_condition_default_748; extern const bool __static_condition_default_249; -extern const bool __static_condition_default_803; -extern const bool __static_condition_default_2063; -extern const bool __static_condition_default_2410; -extern const bool __static_condition_default_1341; -extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_288; +extern const bool __static_condition_default_319; +extern const bool __static_condition_default_1248; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_707; +extern const bool __static_condition_default_415; +extern const bool __static_condition_default_1102; +extern const bool __static_condition_default_1213; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_339; +extern const bool __static_condition_default_439; +extern const bool __static_condition_default_1257; +extern const bool __static_condition_default_1282; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_1101; +extern const bool __static_condition_default_348; +extern const bool __static_condition_default_681; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_1206; +extern const bool __static_condition_default_440; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_396; +extern const bool __static_condition_default_1273; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_492; +extern const bool __static_condition_default_498; extern const bool __static_condition_default_583; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_685; -extern const bool __static_condition_default_2313; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_702; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_1361; -extern const bool __static_condition_default_1515; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_684; +extern const bool __static_condition_default_605; +extern const bool __static_condition_default_1272; +extern const bool __static_condition_default_911; +extern const bool __static_condition_default_285; +extern const bool __static_condition_default_588; +extern const bool __static_condition_default_912; +extern const bool __static_condition_default_436; +extern const bool __static_condition_default_76; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_427; extern const bool __static_condition_default_223; -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_846; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_632; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_431; -extern const bool __static_condition_default_1774; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_1395; -extern const bool __static_condition_default_842; -extern const bool __static_condition_default_1556; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_929; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_1773; -extern const bool __static_condition_default_198; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_2045; -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_2376; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_1775; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_2412; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_779; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_2321; -extern const bool __static_condition_default_793; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_872; -extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_2411; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_1152; -extern const bool __static_condition_default_2320; -extern const bool __static_condition_default_1428; -extern const bool __static_condition_default_1459; extern const bool __static_condition_default_271; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_1750; -extern const bool __static_condition_default_1373; -extern const bool __static_condition_default_1532; -extern const bool __static_condition_default_1365; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_2329; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_1791; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_2350; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_887; -extern const bool __static_condition_default_646; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_461; -extern const bool __static_condition_default_1315; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_1498; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_2401; -extern const bool __static_condition_default_333; -extern const bool __static_condition_default_761; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_1785; -extern const bool __static_condition_default_1453; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_2047; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_2407; -extern const bool __static_condition_default_1398; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_1420; -extern const bool __static_condition_default_1814; -extern const bool __static_condition_default_1753; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_438; -extern const bool __static_condition_default_590; -extern const bool __static_condition_default_2377; -extern const bool __static_condition_default_2417; -extern const bool __static_condition_default_2402; -extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_1424; -extern const bool __static_condition_default_701; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_780; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_393; -extern const bool __static_condition_default_543; -extern const bool __static_condition_default_1369; -extern const bool __static_condition_default_2406; -extern const bool __static_condition_default_1789; -extern const bool __static_condition_default_1808; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_568; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_2419; -extern const bool __static_condition_default_787; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_589; +extern const bool __static_condition_default_302; +extern const bool __static_condition_default_304; +extern const bool __static_condition_default_298; +extern const bool __static_condition_default_1270; +extern const bool __static_condition_default_675; +extern const bool __static_condition_default_593; +extern const bool __static_condition_default_921; +extern const bool __static_condition_default_329; +extern const bool __static_condition_default_1287; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_749; +extern const bool __static_condition_default_603; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_952; +extern const bool __static_condition_default_257; extern const bool __static_condition_default_270; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_1436; +extern const bool __static_condition_default_1251; +extern const bool __static_condition_default_1276; +extern const bool __static_condition_default_713; +extern const bool __static_condition_default_733; +extern const bool __static_condition_default_453; +extern const bool __static_condition_default_374; +extern const bool __static_condition_default_673; extern const bool __static_condition_default_662; -extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_2405; +extern const bool __static_condition_default_484; +extern const bool __static_condition_default_1266; +extern const bool __static_condition_default_1277; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_927; +extern const bool __static_condition_default_465; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_674; +extern const bool __static_condition_default_1283; +extern const bool __static_condition_default_925; +extern const bool __static_condition_default_84; +extern const bool __static_condition_default_385; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_1227; +extern const bool __static_condition_default_886; +extern const bool __static_condition_default_697; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_533; +extern const bool __static_condition_default_1271; +extern const bool __static_condition_default_321; +extern const bool __static_condition_default_1275; +extern const bool __static_condition_default_1103; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_1286; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_1228; +extern const bool __static_condition_default_690; +extern const bool __static_condition_default_1285; +extern const bool __static_condition_default_360; +extern const bool __static_condition_default_599; +extern const bool __static_condition_default_534; +extern const bool __static_condition_default_740; +extern const bool __static_condition_default_1288; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_696; +extern const bool __static_condition_default_466; +extern const bool __static_condition_default_525; +extern const bool __static_condition_default_910; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_460; +extern const bool __static_condition_default_511; extern const bool __static_condition_default_53; -extern const bool __static_condition_default_357; -extern const bool __static_condition_default_1944; +extern const bool __static_condition_default_418; +extern const bool __static_condition_default_445; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_462; +extern const bool __static_condition_default_1278; extern const bool __static_condition_default_258; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_187; +extern const bool __static_condition_default_467; +extern const bool __static_condition_default_476; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_540; +extern const bool __static_condition_default_587; +extern const bool __static_condition_default_513; +extern const bool __static_condition_default_423; +extern const bool __static_condition_default_1247; +extern const bool __static_condition_default_950; extern const bool __static_condition_default_311; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_1560; -extern const bool __static_condition_default_2322; -extern const bool __static_condition_default_1416; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_1516; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_2343; -extern const bool __static_condition_default_382; -extern const bool __static_condition_default_76; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_613; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_2314; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_1810; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_709; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_2378; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_2342; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_755; -extern const bool __static_condition_default_1159; -extern const bool __static_condition_default_1432; -extern const bool __static_condition_default_2408; -extern const bool __static_condition_default_2062; -extern const bool __static_condition_default_2404; -extern const bool __static_condition_default_1572; -extern const bool __static_condition_default_2312; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_1552; -extern const bool __static_condition_default_2349; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_1381; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_2351; -extern const bool __static_condition_default_1345; -extern const bool __static_condition_default_1485; -extern const bool __static_condition_default_677; -extern const bool __static_condition_default_1564; -extern const bool __static_condition_default_1576; -extern const bool __static_condition_default_2399; -extern const bool __static_condition_default_1754; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_963; -extern const bool __static_condition_default_2043; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_2420; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_914; -extern const bool __static_condition_default_891; -extern const bool __static_condition_default_848; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_2400; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_1349; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_1776; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_248; -extern const bool __static_condition_default_388; -extern const bool __static_condition_default_1475; extern const bool __static_condition_default_417; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_2418; -extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_894; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_1357; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_313; -extern const bool __static_condition_default_907; -extern const bool __static_condition_default_367; -extern const bool __static_condition_default_1164; -extern const bool __static_condition_default_1391; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_536; -extern const bool __static_condition_default_2046; -extern const bool __static_condition_default_408; -extern const bool __static_condition_default_769; -extern const bool __static_condition_default_875; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_1388; -extern const bool __static_condition_default_2403; -extern const bool __static_condition_default_1409; -extern const bool __static_condition_default_1489; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_638; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_789; -extern const bool __static_condition_default_955; -extern const bool __static_condition_default_1531; +extern const bool __static_condition_default_182; extern const bool __static_condition_default_564; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_402; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_2328; -extern const bool __static_condition_default_2416; +extern const bool __static_condition_default_1256; +extern const bool __static_condition_default_611; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_468; +extern const bool __static_condition_default_1284; +extern const bool __static_condition_default_889; +extern const bool __static_condition_default_1207; +extern const bool __static_condition_default_563; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_414; +extern const bool __static_condition_default_720; +extern const bool __static_condition_default_565; +extern const bool __static_condition_default_725; +extern const bool __static_condition_default_1218; +extern const bool __static_condition_default_401; +extern const bool __static_condition_default_557; +extern const bool __static_condition_default_1274; +extern const bool __static_condition_default_1269; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_584; +extern const bool __static_condition_default_885; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_204; +extern const bool __static_condition_default_532; +extern const bool __static_condition_default_447; +extern const bool __static_condition_default_909; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_946; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_474; +extern const bool __static_condition_default_379; +extern const bool __static_condition_default_435; +extern const bool __static_condition_default_656; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_421; +extern const bool __static_condition_default_291; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_698; +extern const bool __static_condition_default_372; +extern const bool __static_condition_default_483; +extern const bool __static_condition_default_576; +extern const bool __static_condition_default_705; +extern const bool __static_condition_default_1267; +extern const bool __static_condition_default_477; +extern const bool __static_condition_default_575; +extern const bool __static_condition_default_1265; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_1219; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_1268; +extern const bool __static_condition_default_547; +extern const bool __static_condition_default_337; +extern const bool __static_condition_default_403; +extern const bool __static_condition_default_488; +extern const bool __static_condition_default_463; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -499,746 +335,264 @@ __static_renaming("___IO_seekpos_272", "_IO_seekpos"); __static_renaming("___IO_seekpos_273", "_IO_seekpos"); __static_renaming("___IO_free_backup_area_276", "_IO_free_backup_area"); __static_renaming("___IO_free_backup_area_277", "_IO_free_backup_area"); -__static_renaming("__va_list_279", "va_list"); -__static_renaming("__off_t_281", "off_t"); -__static_renaming("__off_t_283", "off_t"); -__static_renaming("__ssize_t_285", "ssize_t"); -__static_renaming("__fpos_t_287", "fpos_t"); -__static_renaming("__fpos_t_289", "fpos_t"); -__static_renaming("__stdin_291", "stdin"); -__static_renaming("__stdin_292", "stdin"); -__static_renaming("__stdout_294", "stdout"); -__static_renaming("__stdout_295", "stdout"); -__static_renaming("__stderr_297", "stderr"); -__static_renaming("__stderr_298", "stderr"); -__static_renaming("__remove_301", "remove"); -__static_renaming("__rename_304", "rename"); -__static_renaming("__renameat_309", "renameat"); -__static_renaming("__tmpfile_310", "tmpfile"); -__static_renaming("__tmpfile_312", "tmpfile"); -__static_renaming("__tmpfile_314", "tmpfile"); -__static_renaming("__tmpfile_316", "tmpfile"); -__static_renaming("__tmpnam_319", "tmpnam"); -__static_renaming("__tmpnam_320", "tmpnam"); -__static_renaming("__tmpnam_r_322", "tmpnam_r"); -__static_renaming("__tmpnam_r_323", "tmpnam_r"); -__static_renaming("__tempnam_326", "tempnam"); -__static_renaming("__tempnam_327", "tempnam"); -__static_renaming("__fclose_330", "fclose"); -__static_renaming("__fclose_332", "fclose"); -__static_renaming("__fflush_336", "fflush"); -__static_renaming("__fflush_unlocked_340", "fflush_unlocked"); -__static_renaming("__fopen_344", "fopen"); -__static_renaming("__fopen_346", "fopen"); -__static_renaming("__fopen_354", "fopen"); -__static_renaming("__fopen_356", "fopen"); -__static_renaming("__freopen_362", "freopen"); -__static_renaming("__freopen_364", "freopen"); -__static_renaming("__freopen_366", "freopen"); -__static_renaming("__freopen_368", "freopen"); -__static_renaming("__fdopen_372", "fdopen"); -__static_renaming("__fdopen_374", "fdopen"); -__static_renaming("__fmemopen_379", "fmemopen"); -__static_renaming("__fmemopen_381", "fmemopen"); -__static_renaming("__open_memstream_385", "open_memstream"); -__static_renaming("__open_memstream_387", "open_memstream"); -__static_renaming("__setbuf_392", "setbuf"); -__static_renaming("__setbuf_394", "setbuf"); -__static_renaming("__setvbuf_401", "setvbuf"); -__static_renaming("__setbuffer_407", "setbuffer"); -__static_renaming("__setlinebuf_411", "setlinebuf"); -__static_renaming("__fprintf_416", "fprintf"); -__static_renaming("__fprintf_418", "fprintf"); -__static_renaming("__printf_421", "printf"); -__static_renaming("__sprintf_424", "sprintf"); -__static_renaming("__vfprintf_430", "vfprintf"); -__static_renaming("__vprintf_437", "vprintf"); -__static_renaming("__vsprintf_443", "vsprintf"); -__static_renaming("__snprintf_448", "snprintf"); -__static_renaming("__vsnprintf_454", "vsnprintf"); -__static_renaming("__vdprintf_460", "vdprintf"); -__static_renaming("__dprintf_464", "dprintf"); -__static_renaming("__fscanf_468", "fscanf"); -__static_renaming("__fscanf_470", "fscanf"); -__static_renaming("__fscanf_472", "fscanf"); -__static_renaming("__fscanf_474", "fscanf"); -__static_renaming("__scanf_477", "scanf"); -__static_renaming("__scanf_478", "scanf"); -__static_renaming("__sscanf_481", "sscanf"); -__static_renaming("__vfscanf_509", "vfscanf"); -__static_renaming("__vfscanf_513", "vfscanf"); -__static_renaming("__vscanf_520", "vscanf"); -__static_renaming("__vscanf_522", "vscanf"); -__static_renaming("__vsscanf_528", "vsscanf"); -__static_renaming("__fgetc_563", "fgetc"); -__static_renaming("__getc_567", "getc"); -__static_renaming("__getchar_569", "getchar"); -__static_renaming("__getc_unlocked_572", "getc_unlocked"); -__static_renaming("__getchar_unlocked_574", "getchar_unlocked"); -__static_renaming("__fgetc_unlocked_577", "fgetc_unlocked"); -__static_renaming("__fputc_582", "fputc"); -__static_renaming("__fputc_584", "fputc"); -__static_renaming("__putc_589", "putc"); -__static_renaming("__putchar_592", "putchar"); -__static_renaming("__fputc_unlocked_596", "fputc_unlocked"); -__static_renaming("__putc_unlocked_601", "putc_unlocked"); -__static_renaming("__putchar_unlocked_604", "putchar_unlocked"); -__static_renaming("__getw_607", "getw"); -__static_renaming("__putw_612", "putw"); -__static_renaming("__fgets_618", "fgets"); -__static_renaming("__fgets_620", "fgets"); -__static_renaming("__fgets_622", "fgets"); -__static_renaming("__fgets_624", "fgets"); -__static_renaming("____getdelim_631", "__getdelim"); -__static_renaming("____getdelim_635", "__getdelim"); -__static_renaming("__getdelim_644", "getdelim"); -__static_renaming("__getdelim_648", "getdelim"); -__static_renaming("__getline_656", "getline"); -__static_renaming("__getline_660", "getline"); -__static_renaming("__fputs_667", "fputs"); -__static_renaming("__fputs_669", "fputs"); -__static_renaming("__puts_672", "puts"); -__static_renaming("__ungetc_676", "ungetc"); -__static_renaming("__fseek_714", "fseek"); -__static_renaming("__fseek_716", "fseek"); -__static_renaming("__ftell_720", "ftell"); -__static_renaming("__ftell_722", "ftell"); -__static_renaming("__rewind_726", "rewind"); -__static_renaming("__fseeko_733", "fseeko"); -__static_renaming("__fseeko_744", "fseeko"); -__static_renaming("__ftello_750", "ftello"); -__static_renaming("__ftello_754", "ftello"); -__static_renaming("__ftello_758", "ftello"); -__static_renaming("__fgetpos_766", "fgetpos"); -__static_renaming("__fgetpos_778", "fgetpos"); -__static_renaming("__fsetpos_786", "fsetpos"); -__static_renaming("__fsetpos_790", "fsetpos"); -__static_renaming("__clearerr_796", "clearerr"); -__static_renaming("__feof_800", "feof"); -__static_renaming("__feof_802", "feof"); -__static_renaming("__ferror_806", "ferror"); -__static_renaming("__ferror_808", "ferror"); -__static_renaming("__clearerr_unlocked_812", "clearerr_unlocked"); -__static_renaming("__feof_unlocked_816", "feof_unlocked"); -__static_renaming("__feof_unlocked_818", "feof_unlocked"); -__static_renaming("__ferror_unlocked_822", "ferror_unlocked"); -__static_renaming("__ferror_unlocked_824", "ferror_unlocked"); -__static_renaming("__perror_827", "perror"); -__static_renaming("__perror_828", "perror"); -__static_renaming("__sys_nerr_829", "sys_nerr"); -__static_renaming("__sys_errlist_830", "sys_errlist"); -__static_renaming("__fileno_833", "fileno"); -__static_renaming("__fileno_835", "fileno"); -__static_renaming("__fileno_unlocked_839", "fileno_unlocked"); -__static_renaming("__fileno_unlocked_841", "fileno_unlocked"); -__static_renaming("__popen_845", "popen"); -__static_renaming("__popen_847", "popen"); -__static_renaming("__pclose_851", "pclose"); -__static_renaming("__ctermid_854", "ctermid"); -__static_renaming("__flockfile_857", "flockfile"); -__static_renaming("__ftrylockfile_861", "ftrylockfile"); -__static_renaming("__ftrylockfile_863", "ftrylockfile"); -__static_renaming("__funlockfile_867", "funlockfile"); -__static_renaming("____sprintf_chk_899", "__sprintf_chk"); -__static_renaming("____vsprintf_chk_906", "__vsprintf_chk"); -__static_renaming("____snprintf_chk_920", "__snprintf_chk"); -__static_renaming("____vsnprintf_chk_928", "__vsnprintf_chk"); -__static_renaming("____fprintf_chk_943", "__fprintf_chk"); -__static_renaming("____printf_chk_947", "__printf_chk"); -__static_renaming("____vfprintf_chk_954", "__vfprintf_chk"); -__static_renaming("____vprintf_chk_962", "__vprintf_chk"); -__static_renaming("____dprintf_chk_984", "__dprintf_chk"); -__static_renaming("____vdprintf_chk_990", "__vdprintf_chk"); -__static_renaming("____fgets_chk_1004", "__fgets_chk"); -__static_renaming("____fgets_chk_1006", "__fgets_chk"); -__static_renaming("____fgets_chk_1008", "__fgets_chk"); -__static_renaming("____fgets_alias_1014", "__fgets_alias"); -__static_renaming("____fgets_chk_warn_1021", "__fgets_chk_warn"); -__static_renaming("____cnt_1087", "__cnt"); -__static_renaming("____cptr_1088", "__cptr"); -__static_renaming("__ptrdiff_t_1092", "ptrdiff_t"); -__static_renaming("__size_t_1093", "size_t"); -__static_renaming("__wchar_t_1094", "wchar_t"); -__static_renaming("__idtype_t_1100", "idtype_t"); -__static_renaming("____u_char_1101", "__u_char"); -__static_renaming("____u_short_1102", "__u_short"); -__static_renaming("____u_int_1103", "__u_int"); -__static_renaming("____u_long_1104", "__u_long"); -__static_renaming("____int8_t_1105", "__int8_t"); -__static_renaming("____uint8_t_1106", "__uint8_t"); -__static_renaming("____int16_t_1107", "__int16_t"); -__static_renaming("____uint16_t_1108", "__uint16_t"); -__static_renaming("____int32_t_1109", "__int32_t"); -__static_renaming("____uint32_t_1110", "__uint32_t"); -__static_renaming("____int64_t_1111", "__int64_t"); -__static_renaming("____uint64_t_1112", "__uint64_t"); -__static_renaming("____quad_t_1113", "__quad_t"); -__static_renaming("____u_quad_t_1114", "__u_quad_t"); -__static_renaming("____dev_t_1115", "__dev_t"); -__static_renaming("____uid_t_1116", "__uid_t"); -__static_renaming("____gid_t_1117", "__gid_t"); -__static_renaming("____ino_t_1118", "__ino_t"); -__static_renaming("____ino64_t_1119", "__ino64_t"); -__static_renaming("____mode_t_1120", "__mode_t"); -__static_renaming("____nlink_t_1121", "__nlink_t"); -__static_renaming("____off_t_1122", "__off_t"); -__static_renaming("____off64_t_1123", "__off64_t"); -__static_renaming("____pid_t_1124", "__pid_t"); -__static_renaming("____fsid_t_1128", "__fsid_t"); -__static_renaming("____clock_t_1129", "__clock_t"); -__static_renaming("____rlim_t_1130", "__rlim_t"); -__static_renaming("____rlim64_t_1131", "__rlim64_t"); -__static_renaming("____id_t_1132", "__id_t"); -__static_renaming("____time_t_1133", "__time_t"); -__static_renaming("____useconds_t_1134", "__useconds_t"); -__static_renaming("____suseconds_t_1135", "__suseconds_t"); -__static_renaming("____daddr_t_1136", "__daddr_t"); -__static_renaming("____key_t_1137", "__key_t"); -__static_renaming("____clockid_t_1138", "__clockid_t"); -__static_renaming("____timer_t_1139", "__timer_t"); -__static_renaming("____blksize_t_1140", "__blksize_t"); -__static_renaming("____blkcnt_t_1141", "__blkcnt_t"); -__static_renaming("____blkcnt64_t_1142", "__blkcnt64_t"); -__static_renaming("____fsblkcnt_t_1143", "__fsblkcnt_t"); -__static_renaming("____fsblkcnt64_t_1144", "__fsblkcnt64_t"); -__static_renaming("____fsfilcnt_t_1145", "__fsfilcnt_t"); -__static_renaming("____fsfilcnt64_t_1146", "__fsfilcnt64_t"); -__static_renaming("____fsword_t_1147", "__fsword_t"); -__static_renaming("____ssize_t_1148", "__ssize_t"); -__static_renaming("____syscall_slong_t_1149", "__syscall_slong_t"); -__static_renaming("____syscall_ulong_t_1150", "__syscall_ulong_t"); -__static_renaming("____loff_t_1151", "__loff_t"); -__static_renaming("____qaddr_t_1153", "__qaddr_t"); -__static_renaming("____caddr_t_1154", "__caddr_t"); -__static_renaming("____intptr_t_1155", "__intptr_t"); -__static_renaming("____socklen_t_1156", "__socklen_t"); -__static_renaming("____bswap_32_1158", "__bswap_32"); -__static_renaming("____bswap_64_1162", "__bswap_64"); -__static_renaming("____bswap_64_1163", "__bswap_64"); -__static_renaming("____WAIT_STATUS_1185", "__WAIT_STATUS"); -__static_renaming("__div_t_1190", "div_t"); -__static_renaming("__ldiv_t_1195", "ldiv_t"); -__static_renaming("__lldiv_t_1200", "lldiv_t"); -__static_renaming("____ctype_get_mb_cur_max_1201", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1202", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1203", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1204", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1205", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1206", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1207", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1208", "__ctype_get_mb_cur_max"); -__static_renaming("__atof_1210", "atof"); -__static_renaming("__atof_1211", "atof"); -__static_renaming("__atoi_1213", "atoi"); -__static_renaming("__atoi_1214", "atoi"); -__static_renaming("__atol_1216", "atol"); -__static_renaming("__atol_1217", "atol"); -__static_renaming("__atoll_1219", "atoll"); -__static_renaming("__atoll_1220", "atoll"); -__static_renaming("__strtod_1223", "strtod"); -__static_renaming("__strtof_1226", "strtof"); -__static_renaming("__strtold_1229", "strtold"); -__static_renaming("__strtol_1233", "strtol"); -__static_renaming("__strtoul_1237", "strtoul"); -__static_renaming("__strtoq_1241", "strtoq"); -__static_renaming("__strtouq_1245", "strtouq"); -__static_renaming("__strtoll_1249", "strtoll"); -__static_renaming("__strtoll_1250", "strtoll"); -__static_renaming("__strtoull_1254", "strtoull"); -__static_renaming("__l64a_1259", "l64a"); -__static_renaming("__l64a_1260", "l64a"); -__static_renaming("__a64l_1262", "a64l"); -__static_renaming("__a64l_1263", "a64l"); -__static_renaming("____u_char_1264", "__u_char"); -__static_renaming("____u_short_1265", "__u_short"); -__static_renaming("____u_int_1266", "__u_int"); -__static_renaming("____u_long_1267", "__u_long"); -__static_renaming("____int8_t_1268", "__int8_t"); -__static_renaming("____uint8_t_1269", "__uint8_t"); -__static_renaming("____int16_t_1270", "__int16_t"); -__static_renaming("____uint16_t_1271", "__uint16_t"); -__static_renaming("____int32_t_1272", "__int32_t"); -__static_renaming("____uint32_t_1273", "__uint32_t"); -__static_renaming("____int64_t_1274", "__int64_t"); -__static_renaming("____uint64_t_1275", "__uint64_t"); -__static_renaming("____quad_t_1276", "__quad_t"); -__static_renaming("____u_quad_t_1277", "__u_quad_t"); -__static_renaming("____dev_t_1278", "__dev_t"); -__static_renaming("____uid_t_1279", "__uid_t"); -__static_renaming("____gid_t_1280", "__gid_t"); -__static_renaming("____ino_t_1281", "__ino_t"); -__static_renaming("____ino64_t_1282", "__ino64_t"); -__static_renaming("____mode_t_1283", "__mode_t"); -__static_renaming("____nlink_t_1284", "__nlink_t"); -__static_renaming("____off_t_1285", "__off_t"); -__static_renaming("____off64_t_1286", "__off64_t"); -__static_renaming("____pid_t_1287", "__pid_t"); -__static_renaming("____fsid_t_1291", "__fsid_t"); -__static_renaming("____clock_t_1292", "__clock_t"); -__static_renaming("____rlim_t_1293", "__rlim_t"); -__static_renaming("____rlim64_t_1294", "__rlim64_t"); -__static_renaming("____id_t_1295", "__id_t"); -__static_renaming("____time_t_1296", "__time_t"); -__static_renaming("____useconds_t_1297", "__useconds_t"); -__static_renaming("____suseconds_t_1298", "__suseconds_t"); -__static_renaming("____daddr_t_1299", "__daddr_t"); -__static_renaming("____key_t_1300", "__key_t"); -__static_renaming("____clockid_t_1301", "__clockid_t"); -__static_renaming("____timer_t_1302", "__timer_t"); -__static_renaming("____blksize_t_1303", "__blksize_t"); -__static_renaming("____blkcnt_t_1304", "__blkcnt_t"); -__static_renaming("____blkcnt64_t_1305", "__blkcnt64_t"); -__static_renaming("____fsblkcnt_t_1306", "__fsblkcnt_t"); -__static_renaming("____fsblkcnt64_t_1307", "__fsblkcnt64_t"); -__static_renaming("____fsfilcnt_t_1308", "__fsfilcnt_t"); -__static_renaming("____fsfilcnt64_t_1309", "__fsfilcnt64_t"); -__static_renaming("____fsword_t_1310", "__fsword_t"); -__static_renaming("____ssize_t_1311", "__ssize_t"); -__static_renaming("____syscall_slong_t_1312", "__syscall_slong_t"); -__static_renaming("____syscall_ulong_t_1313", "__syscall_ulong_t"); -__static_renaming("____loff_t_1314", "__loff_t"); -__static_renaming("____qaddr_t_1316", "__qaddr_t"); -__static_renaming("____caddr_t_1317", "__caddr_t"); -__static_renaming("____intptr_t_1318", "__intptr_t"); -__static_renaming("____socklen_t_1319", "__socklen_t"); -__static_renaming("__u_char_1320", "u_char"); -__static_renaming("__u_char_1321", "u_char"); -__static_renaming("__u_char_1322", "u_char"); -__static_renaming("__u_short_1323", "u_short"); -__static_renaming("__u_short_1324", "u_short"); -__static_renaming("__u_short_1325", "u_short"); -__static_renaming("__u_int_1326", "u_int"); -__static_renaming("__u_int_1327", "u_int"); -__static_renaming("__u_int_1328", "u_int"); -__static_renaming("__u_long_1329", "u_long"); -__static_renaming("__u_long_1330", "u_long"); -__static_renaming("__u_long_1331", "u_long"); -__static_renaming("__quad_t_1332", "quad_t"); -__static_renaming("__quad_t_1333", "quad_t"); -__static_renaming("__quad_t_1334", "quad_t"); -__static_renaming("__u_quad_t_1335", "u_quad_t"); -__static_renaming("__u_quad_t_1336", "u_quad_t"); -__static_renaming("__u_quad_t_1337", "u_quad_t"); -__static_renaming("__fsid_t_1338", "fsid_t"); -__static_renaming("__fsid_t_1339", "fsid_t"); -__static_renaming("__fsid_t_1340", "fsid_t"); -__static_renaming("__loff_t_1342", "loff_t"); -__static_renaming("__loff_t_1343", "loff_t"); -__static_renaming("__loff_t_1344", "loff_t"); -__static_renaming("__loff_t_1346", "loff_t"); -__static_renaming("__loff_t_1347", "loff_t"); -__static_renaming("__loff_t_1348", "loff_t"); -__static_renaming("__ino_t_1350", "ino_t"); -__static_renaming("__ino_t_1351", "ino_t"); -__static_renaming("__ino_t_1352", "ino_t"); -__static_renaming("__ino_t_1354", "ino_t"); -__static_renaming("__ino_t_1355", "ino_t"); -__static_renaming("__ino_t_1356", "ino_t"); -__static_renaming("__dev_t_1358", "dev_t"); -__static_renaming("__dev_t_1359", "dev_t"); -__static_renaming("__dev_t_1360", "dev_t"); -__static_renaming("__gid_t_1362", "gid_t"); -__static_renaming("__gid_t_1363", "gid_t"); -__static_renaming("__gid_t_1364", "gid_t"); -__static_renaming("__gid_t_1366", "gid_t"); -__static_renaming("__gid_t_1367", "gid_t"); -__static_renaming("__gid_t_1368", "gid_t"); -__static_renaming("__mode_t_1370", "mode_t"); -__static_renaming("__mode_t_1371", "mode_t"); -__static_renaming("__mode_t_1372", "mode_t"); -__static_renaming("__nlink_t_1374", "nlink_t"); -__static_renaming("__nlink_t_1375", "nlink_t"); -__static_renaming("__nlink_t_1376", "nlink_t"); -__static_renaming("__uid_t_1378", "uid_t"); -__static_renaming("__uid_t_1379", "uid_t"); -__static_renaming("__uid_t_1380", "uid_t"); -__static_renaming("__uid_t_1382", "uid_t"); -__static_renaming("__uid_t_1383", "uid_t"); -__static_renaming("__uid_t_1384", "uid_t"); -__static_renaming("__off_t_1386", "off_t"); -__static_renaming("__off_t_1387", "off_t"); -__static_renaming("__off_t_1389", "off_t"); -__static_renaming("__off_t_1390", "off_t"); -__static_renaming("__pid_t_1392", "pid_t"); -__static_renaming("__pid_t_1393", "pid_t"); -__static_renaming("__pid_t_1394", "pid_t"); -__static_renaming("__pid_t_1396", "pid_t"); -__static_renaming("__pid_t_1397", "pid_t"); -__static_renaming("__id_t_1399", "id_t"); -__static_renaming("__id_t_1400", "id_t"); -__static_renaming("__id_t_1401", "id_t"); -__static_renaming("__ssize_t_1403", "ssize_t"); -__static_renaming("__ssize_t_1404", "ssize_t"); -__static_renaming("__daddr_t_1406", "daddr_t"); -__static_renaming("__daddr_t_1407", "daddr_t"); -__static_renaming("__daddr_t_1408", "daddr_t"); -__static_renaming("__caddr_t_1410", "caddr_t"); -__static_renaming("__caddr_t_1411", "caddr_t"); -__static_renaming("__caddr_t_1412", "caddr_t"); -__static_renaming("__key_t_1413", "key_t"); -__static_renaming("__key_t_1414", "key_t"); -__static_renaming("__key_t_1415", "key_t"); -__static_renaming("__key_t_1417", "key_t"); -__static_renaming("__key_t_1418", "key_t"); -__static_renaming("__key_t_1419", "key_t"); -__static_renaming("__clock_t_1421", "clock_t"); -__static_renaming("__clock_t_1422", "clock_t"); -__static_renaming("__clock_t_1423", "clock_t"); -__static_renaming("__time_t_1425", "time_t"); -__static_renaming("__time_t_1426", "time_t"); -__static_renaming("__time_t_1427", "time_t"); -__static_renaming("__clockid_t_1429", "clockid_t"); -__static_renaming("__clockid_t_1430", "clockid_t"); -__static_renaming("__clockid_t_1431", "clockid_t"); -__static_renaming("__timer_t_1433", "timer_t"); -__static_renaming("__timer_t_1434", "timer_t"); -__static_renaming("__timer_t_1435", "timer_t"); -__static_renaming("__ulong_1437", "ulong"); -__static_renaming("__ulong_1438", "ulong"); -__static_renaming("__ulong_1439", "ulong"); -__static_renaming("__ushort_1440", "ushort"); -__static_renaming("__uint_1441", "uint"); -__static_renaming("__int8_t_1442", "int8_t"); -__static_renaming("__int16_t_1443", "int16_t"); -__static_renaming("__int32_t_1444", "int32_t"); -__static_renaming("__int64_t_1445", "int64_t"); -__static_renaming("__u_int8_t_1446", "u_int8_t"); -__static_renaming("__u_int16_t_1447", "u_int16_t"); -__static_renaming("__u_int32_t_1448", "u_int32_t"); -__static_renaming("__u_int64_t_1449", "u_int64_t"); -__static_renaming("__register_t_1450", "register_t"); -__static_renaming("____bswap_32_1452", "__bswap_32"); -__static_renaming("____bswap_64_1456", "__bswap_64"); -__static_renaming("____bswap_64_1457", "__bswap_64"); -__static_renaming("____sig_atomic_t_1460", "__sig_atomic_t"); -__static_renaming("____sigset_t_1464", "__sigset_t"); -__static_renaming("__sigset_t_1465", "sigset_t"); -__static_renaming("__suseconds_t_1486", "suseconds_t"); -__static_renaming("__suseconds_t_1487", "suseconds_t"); -__static_renaming("__suseconds_t_1488", "suseconds_t"); -__static_renaming("____fd_mask_1490", "__fd_mask"); -__static_renaming("____fd_mask_1491", "__fd_mask"); -__static_renaming("__fd_set_1499", "fd_set"); -__static_renaming("__fd_mask_1500", "fd_mask"); -__static_renaming("__fd_mask_1501", "fd_mask"); -__static_renaming("__select_1513", "select"); -__static_renaming("__select_1514", "select"); -__static_renaming("__pselect_1529", "pselect"); -__static_renaming("__pselect_1530", "pselect"); -__static_renaming("____fdelt_chk_1534", "__fdelt_chk"); -__static_renaming("____fdelt_warn_1536", "__fdelt_warn"); -__static_renaming("__gnu_dev_major_1538", "gnu_dev_major"); -__static_renaming("__gnu_dev_major_1539", "gnu_dev_major"); -__static_renaming("__gnu_dev_minor_1541", "gnu_dev_minor"); -__static_renaming("__gnu_dev_makedev_1544", "gnu_dev_makedev"); -__static_renaming("__blksize_t_1549", "blksize_t"); -__static_renaming("__blksize_t_1550", "blksize_t"); -__static_renaming("__blksize_t_1551", "blksize_t"); -__static_renaming("__blkcnt_t_1553", "blkcnt_t"); -__static_renaming("__blkcnt_t_1554", "blkcnt_t"); -__static_renaming("__blkcnt_t_1555", "blkcnt_t"); -__static_renaming("__fsblkcnt_t_1557", "fsblkcnt_t"); -__static_renaming("__fsblkcnt_t_1558", "fsblkcnt_t"); -__static_renaming("__fsblkcnt_t_1559", "fsblkcnt_t"); -__static_renaming("__blkcnt_t_1561", "blkcnt_t"); -__static_renaming("__blkcnt_t_1562", "blkcnt_t"); -__static_renaming("__blkcnt_t_1563", "blkcnt_t"); -__static_renaming("__fsblkcnt_t_1565", "fsblkcnt_t"); -__static_renaming("__fsblkcnt_t_1566", "fsblkcnt_t"); -__static_renaming("__fsblkcnt_t_1567", "fsblkcnt_t"); -__static_renaming("__fsfilcnt_t_1569", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_1570", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_1571", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_1573", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_1574", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_1575", "fsfilcnt_t"); -__static_renaming("__pthread_t_1577", "pthread_t"); -__static_renaming("__pthread_attr_t_1581", "pthread_attr_t"); -__static_renaming("____pthread_list_t_1586", "__pthread_list_t"); -__static_renaming("____pthread_list_t_1587", "__pthread_list_t"); -__static_renaming("__pthread_mutex_t_1603", "pthread_mutex_t"); -__static_renaming("__pthread_mutexattr_t_1608", "pthread_mutexattr_t"); -__static_renaming("__rand_1609", "rand"); -__static_renaming("__srand_1611", "srand"); -__static_renaming("__rand_r_1613", "rand_r"); -__static_renaming("__drand48_1614", "drand48"); -__static_renaming("__erand48_1616", "erand48"); -__static_renaming("__lrand48_1617", "lrand48"); -__static_renaming("__nrand48_1619", "nrand48"); -__static_renaming("__mrand48_1620", "mrand48"); -__static_renaming("__jrand48_1622", "jrand48"); -__static_renaming("__srand48_1624", "srand48"); -__static_renaming("__seed48_1626", "seed48"); -__static_renaming("__lcong48_1628", "lcong48"); -__static_renaming("__malloc_1631", "malloc"); -__static_renaming("__malloc_1632", "malloc"); -__static_renaming("__malloc_1633", "malloc"); -__static_renaming("__malloc_1634", "malloc"); -__static_renaming("__calloc_1639", "calloc"); -__static_renaming("__calloc_1640", "calloc"); -__static_renaming("__calloc_1641", "calloc"); -__static_renaming("__calloc_1642", "calloc"); -__static_renaming("__realloc_1646", "realloc"); -__static_renaming("__realloc_1647", "realloc"); -__static_renaming("__free_1649", "free"); -__static_renaming("__cfree_1651", "cfree"); -__static_renaming("__alloca_1654", "alloca"); -__static_renaming("__alloca_1655", "alloca"); -__static_renaming("__valloc_1658", "valloc"); -__static_renaming("__valloc_1659", "valloc"); -__static_renaming("__valloc_1660", "valloc"); -__static_renaming("__valloc_1661", "valloc"); -__static_renaming("__posix_memalign_1667", "posix_memalign"); -__static_renaming("__posix_memalign_1668", "posix_memalign"); -__static_renaming("__posix_memalign_1669", "posix_memalign"); -__static_renaming("__posix_memalign_1670", "posix_memalign"); -__static_renaming("__aligned_alloc_1675", "aligned_alloc"); -__static_renaming("__aligned_alloc_1676", "aligned_alloc"); -__static_renaming("__aligned_alloc_1677", "aligned_alloc"); -__static_renaming("__aligned_alloc_1678", "aligned_alloc"); -__static_renaming("__aligned_alloc_1679", "aligned_alloc"); -__static_renaming("__aligned_alloc_1680", "aligned_alloc"); -__static_renaming("__aligned_alloc_1681", "aligned_alloc"); -__static_renaming("__aligned_alloc_1682", "aligned_alloc"); -__static_renaming("__abort_1683", "abort"); -__static_renaming("__atexit_1685", "atexit"); -__static_renaming("__at_quick_exit_1687", "at_quick_exit"); -__static_renaming("__on_exit_1692", "on_exit"); -__static_renaming("__exit_1694", "exit"); -__static_renaming("__exit_1695", "exit"); -__static_renaming("__quick_exit_1697", "quick_exit"); -__static_renaming("___Exit_1699", "_Exit"); -__static_renaming("__getenv_1701", "getenv"); -__static_renaming("__getenv_1702", "getenv"); -__static_renaming("__putenv_1704", "putenv"); -__static_renaming("__setenv_1708", "setenv"); -__static_renaming("__unsetenv_1710", "unsetenv"); -__static_renaming("__clearenv_1711", "clearenv"); -__static_renaming("__mktemp_1713", "mktemp"); -__static_renaming("__mkstemp_1716", "mkstemp"); -__static_renaming("__mkstemp_1717", "mkstemp"); -__static_renaming("__mkstemp_1718", "mkstemp"); -__static_renaming("__mkstemp_1719", "mkstemp"); -__static_renaming("__mkstemps_1724", "mkstemps"); -__static_renaming("__mkstemps_1725", "mkstemps"); -__static_renaming("__mkstemps_1726", "mkstemps"); -__static_renaming("__mkstemps_1727", "mkstemps"); -__static_renaming("__mkdtemp_1729", "mkdtemp"); -__static_renaming("__mkdtemp_1730", "mkdtemp"); -__static_renaming("__system_1732", "system"); -__static_renaming("__system_1733", "system"); -__static_renaming("__system_1734", "system"); -__static_renaming("__system_1735", "system"); -__static_renaming("__realpath_1738", "realpath"); -__static_renaming("__realpath_1739", "realpath"); -__static_renaming("____compar_fn_t_1740", "__compar_fn_t"); -__static_renaming("__bsearch_1751", "bsearch"); -__static_renaming("__bsearch_1752", "bsearch"); -__static_renaming("__bsearch_1755", "bsearch"); -__static_renaming("__bsearch_1756", "bsearch"); -__static_renaming("____l_1765", "__l"); -__static_renaming("____l_1766", "__l"); -__static_renaming("____u_1767", "__u"); -__static_renaming("____u_1768", "__u"); -__static_renaming("____idx_1769", "__idx"); -__static_renaming("____idx_1770", "__idx"); -__static_renaming("____p_1771", "__p"); -__static_renaming("____comparison_1772", "__comparison"); -__static_renaming("__qsort_1784", "qsort"); -__static_renaming("__qsort_1786", "qsort"); -__static_renaming("__qsort_1788", "qsort"); -__static_renaming("__qsort_1790", "qsort"); -__static_renaming("__abs_1793", "abs"); -__static_renaming("__abs_1794", "abs"); -__static_renaming("__labs_1796", "labs"); -__static_renaming("__labs_1797", "labs"); -__static_renaming("__llabs_1799", "llabs"); -__static_renaming("__llabs_1800", "llabs"); -__static_renaming("__div_1803", "div"); -__static_renaming("__div_1804", "div"); -__static_renaming("__ldiv_1807", "ldiv"); -__static_renaming("__ldiv_1809", "ldiv"); -__static_renaming("__lldiv_1813", "lldiv"); -__static_renaming("__lldiv_1815", "lldiv"); -__static_renaming("__ecvt_1821", "ecvt"); -__static_renaming("__ecvt_1822", "ecvt"); -__static_renaming("__fcvt_1827", "fcvt"); -__static_renaming("__fcvt_1828", "fcvt"); -__static_renaming("__gcvt_1832", "gcvt"); -__static_renaming("__gcvt_1833", "gcvt"); -__static_renaming("__qecvt_1838", "qecvt"); -__static_renaming("__qecvt_1839", "qecvt"); -__static_renaming("__qfcvt_1844", "qfcvt"); -__static_renaming("__qfcvt_1845", "qfcvt"); -__static_renaming("__qgcvt_1849", "qgcvt"); -__static_renaming("__qgcvt_1850", "qgcvt"); -__static_renaming("__ecvt_r_1858", "ecvt_r"); -__static_renaming("__ecvt_r_1859", "ecvt_r"); -__static_renaming("__fcvt_r_1867", "fcvt_r"); -__static_renaming("__fcvt_r_1868", "fcvt_r"); -__static_renaming("__qecvt_r_1876", "qecvt_r"); -__static_renaming("__qecvt_r_1877", "qecvt_r"); -__static_renaming("__qfcvt_r_1885", "qfcvt_r"); -__static_renaming("__qfcvt_r_1886", "qfcvt_r"); -__static_renaming("__mblen_1890", "mblen"); -__static_renaming("__mblen_1891", "mblen"); -__static_renaming("__mblen_1892", "mblen"); -__static_renaming("__mblen_1893", "mblen"); -__static_renaming("__mbtowc_1898", "mbtowc"); -__static_renaming("__mbtowc_1899", "mbtowc"); -__static_renaming("__wctomb_1902", "wctomb"); -__static_renaming("__mbstowcs_1907", "mbstowcs"); -__static_renaming("__mbstowcs_1908", "mbstowcs"); -__static_renaming("__wcstombs_1913", "wcstombs"); -__static_renaming("__wcstombs_1914", "wcstombs"); -__static_renaming("__rpmatch_1916", "rpmatch"); -__static_renaming("__rpmatch_1917", "rpmatch"); -__static_renaming("__getsubopt_1921", "getsubopt"); -__static_renaming("__getsubopt_1922", "getsubopt"); -__static_renaming("__getloadavg_1925", "getloadavg"); -__static_renaming("____realpath_chk_1931", "__realpath_chk"); -__static_renaming("____realpath_chk_1932", "__realpath_chk"); -__static_renaming("____realpath_alias_1935", "__realpath_alias"); -__static_renaming("____realpath_chk_warn_1940", "__realpath_chk_warn"); -__static_renaming("____realpath_chk_warn_1941", "__realpath_chk_warn"); -__static_renaming("____ptsname_r_chk_1951", "__ptsname_r_chk"); -__static_renaming("____ptsname_r_chk_1952", "__ptsname_r_chk"); -__static_renaming("____ptsname_r_alias_1957", "__ptsname_r_alias"); -__static_renaming("____ptsname_r_alias_1958", "__ptsname_r_alias"); -__static_renaming("____ptsname_r_chk_warn_1965", "__ptsname_r_chk_warn"); -__static_renaming("____ptsname_r_chk_warn_1966", "__ptsname_r_chk_warn"); -__static_renaming("____wctomb_chk_1977", "__wctomb_chk"); -__static_renaming("____wctomb_chk_1978", "__wctomb_chk"); -__static_renaming("____wctomb_alias_1981", "__wctomb_alias"); -__static_renaming("____mbstowcs_chk_1990", "__mbstowcs_chk"); -__static_renaming("____mbstowcs_chk_1991", "__mbstowcs_chk"); -__static_renaming("____mbstowcs_alias_1996", "__mbstowcs_alias"); -__static_renaming("____mbstowcs_alias_1997", "__mbstowcs_alias"); -__static_renaming("____mbstowcs_chk_warn_2004", "__mbstowcs_chk_warn"); -__static_renaming("____mbstowcs_chk_warn_2005", "__mbstowcs_chk_warn"); -__static_renaming("____wcstombs_chk_2016", "__wcstombs_chk"); -__static_renaming("____wcstombs_chk_2017", "__wcstombs_chk"); -__static_renaming("____wcstombs_alias_2022", "__wcstombs_alias"); -__static_renaming("____wcstombs_alias_2023", "__wcstombs_alias"); -__static_renaming("____wcstombs_chk_warn_2030", "__wcstombs_chk_warn"); -__static_renaming("____wcstombs_chk_warn_2031", "__wcstombs_chk_warn"); -__static_renaming("__ptrdiff_t_2036", "ptrdiff_t"); -__static_renaming("__size_t_2037", "size_t"); -__static_renaming("__memmove_2053", "memmove"); -__static_renaming("__memmove_2054", "memmove"); -__static_renaming("__memmove_2055", "memmove"); -__static_renaming("__memset_2070", "memset"); -__static_renaming("__memset_2071", "memset"); -__static_renaming("__memset_2072", "memset"); -__static_renaming("__memset_2073", "memset"); -__static_renaming("__memset_2074", "memset"); -__static_renaming("__memset_2075", "memset"); -__static_renaming("__memcmp_2081", "memcmp"); -__static_renaming("__memcmp_2082", "memcmp"); -__static_renaming("__memcmp_2083", "memcmp"); -__static_renaming("__memchr_2089", "memchr"); -__static_renaming("__memchr_2090", "memchr"); -__static_renaming("__memchr_2091", "memchr"); -__static_renaming("__strcpy_2094", "strcpy"); -__static_renaming("__strncpy_2100", "strncpy"); -__static_renaming("__strncpy_2101", "strncpy"); -__static_renaming("__strncpy_2102", "strncpy"); -__static_renaming("__strcat_2105", "strcat"); -__static_renaming("__strncat_2111", "strncat"); -__static_renaming("__strncat_2112", "strncat"); -__static_renaming("__strncat_2113", "strncat"); -__static_renaming("__strcmp_2116", "strcmp"); -__static_renaming("__strncmp_2122", "strncmp"); -__static_renaming("__strncmp_2123", "strncmp"); -__static_renaming("__strncmp_2124", "strncmp"); -__static_renaming("__strcoll_2127", "strcoll"); -__static_renaming("__strxfrm_2133", "strxfrm"); -__static_renaming("__strxfrm_2134", "strxfrm"); -__static_renaming("__strxfrm_2135", "strxfrm"); -__static_renaming("____locale_t_2143", "__locale_t"); -__static_renaming("__locale_t_2144", "locale_t"); -__static_renaming("__strcoll_l_2148", "strcoll_l"); -__static_renaming("__strxfrm_l_2155", "strxfrm_l"); -__static_renaming("__strxfrm_l_2156", "strxfrm_l"); -__static_renaming("__strxfrm_l_2157", "strxfrm_l"); -__static_renaming("__strdup_2159", "strdup"); -__static_renaming("__strndup_2164", "strndup"); -__static_renaming("__strndup_2165", "strndup"); -__static_renaming("__strndup_2166", "strndup"); -__static_renaming("__strchr_2169", "strchr"); -__static_renaming("__strrchr_2172", "strrchr"); -__static_renaming("__strcspn_2175", "strcspn"); -__static_renaming("__strcspn_2176", "strcspn"); -__static_renaming("__strcspn_2177", "strcspn"); -__static_renaming("__strspn_2180", "strspn"); -__static_renaming("__strspn_2181", "strspn"); -__static_renaming("__strspn_2182", "strspn"); -__static_renaming("__strpbrk_2185", "strpbrk"); -__static_renaming("__strstr_2188", "strstr"); -__static_renaming("__strtok_2191", "strtok"); -__static_renaming("____strtok_r_2195", "__strtok_r"); -__static_renaming("__strtok_r_2199", "strtok_r"); -__static_renaming("__strlen_2201", "strlen"); -__static_renaming("__strlen_2202", "strlen"); -__static_renaming("__strlen_2203", "strlen"); -__static_renaming("__strlen_2204", "strlen"); -__static_renaming("__strlen_2205", "strlen"); -__static_renaming("__strlen_2206", "strlen"); -__static_renaming("__strnlen_2211", "strnlen"); -__static_renaming("__strnlen_2212", "strnlen"); -__static_renaming("__strnlen_2213", "strnlen"); -__static_renaming("__strerror_2215", "strerror"); -__static_renaming("__strerror_2216", "strerror"); -__static_renaming("__strerror_r_2222", "strerror_r"); -__static_renaming("__strerror_r_2223", "strerror_r"); -__static_renaming("__strerror_r_2224", "strerror_r"); -__static_renaming("__strerror_l_2227", "strerror_l"); -__static_renaming("____bzero_2232", "__bzero"); -__static_renaming("____bzero_2233", "__bzero"); -__static_renaming("____bzero_2234", "__bzero"); -__static_renaming("____bzero_2235", "__bzero"); -__static_renaming("____bzero_2236", "__bzero"); -__static_renaming("____bzero_2237", "__bzero"); -__static_renaming("__bcopy_2243", "bcopy"); -__static_renaming("__bcopy_2244", "bcopy"); -__static_renaming("__bcopy_2245", "bcopy"); -__static_renaming("__bzero_2250", "bzero"); -__static_renaming("__bzero_2251", "bzero"); -__static_renaming("__bzero_2252", "bzero"); -__static_renaming("__bcmp_2258", "bcmp"); -__static_renaming("__bcmp_2259", "bcmp"); -__static_renaming("__bcmp_2260", "bcmp"); -__static_renaming("__index_2263", "index"); -__static_renaming("__rindex_2266", "rindex"); -__static_renaming("__ffs_2268", "ffs"); -__static_renaming("__strcasecmp_2271", "strcasecmp"); -__static_renaming("__strncasecmp_2277", "strncasecmp"); -__static_renaming("__strncasecmp_2278", "strncasecmp"); -__static_renaming("__strncasecmp_2279", "strncasecmp"); -__static_renaming("__strsep_2282", "strsep"); -__static_renaming("__strsignal_2284", "strsignal"); -__static_renaming("____stpcpy_2287", "__stpcpy"); -__static_renaming("__stpcpy_2290", "stpcpy"); -__static_renaming("____stpncpy_2296", "__stpncpy"); -__static_renaming("____stpncpy_2297", "__stpncpy"); -__static_renaming("____stpncpy_2298", "__stpncpy"); -__static_renaming("__stpncpy_2304", "stpncpy"); -__static_renaming("__stpncpy_2305", "stpncpy"); -__static_renaming("__stpncpy_2306", "stpncpy"); -__static_renaming("____stpncpy_chk_2360", "__stpncpy_chk"); -__static_renaming("____stpncpy_chk_2361", "__stpncpy_chk"); -__static_renaming("____stpncpy_chk_2362", "__stpncpy_chk"); -__static_renaming("____stpncpy_alias_2368", "__stpncpy_alias"); -__static_renaming("____stpncpy_alias_2369", "__stpncpy_alias"); -__static_renaming("____stpncpy_alias_2370", "__stpncpy_alias"); -__static_renaming("__val_2390", "val"); -__static_renaming("__s_2391", "s"); -__static_renaming("__p_2392", "p"); -__static_renaming("__a_2393", "a"); -__static_renaming("__n_2394", "n"); -__static_renaming("__make_device_2395", "make_device"); -__static_renaming("__make_device_2396", "make_device"); -__static_renaming("__main_2415", "main"); +__static_renaming("__fpos_t_279", "fpos_t"); +__static_renaming("__fpos_t_281", "fpos_t"); +__static_renaming("__stdin_283", "stdin"); +__static_renaming("__stdin_284", "stdin"); +__static_renaming("__stdout_286", "stdout"); +__static_renaming("__stdout_287", "stdout"); +__static_renaming("__stderr_289", "stderr"); +__static_renaming("__stderr_290", "stderr"); +__static_renaming("__remove_293", "remove"); +__static_renaming("__rename_296", "rename"); +__static_renaming("__tmpfile_297", "tmpfile"); +__static_renaming("__tmpfile_299", "tmpfile"); +__static_renaming("__tmpfile_301", "tmpfile"); +__static_renaming("__tmpfile_303", "tmpfile"); +__static_renaming("__tmpnam_306", "tmpnam"); +__static_renaming("__tmpnam_307", "tmpnam"); +__static_renaming("__fclose_310", "fclose"); +__static_renaming("__fflush_314", "fflush"); +__static_renaming("__fopen_318", "fopen"); +__static_renaming("__fopen_320", "fopen"); +__static_renaming("__fopen_328", "fopen"); +__static_renaming("__fopen_330", "fopen"); +__static_renaming("__freopen_336", "freopen"); +__static_renaming("__freopen_338", "freopen"); +__static_renaming("__freopen_340", "freopen"); +__static_renaming("__freopen_342", "freopen"); +__static_renaming("__setbuf_347", "setbuf"); +__static_renaming("__setvbuf_354", "setvbuf"); +__static_renaming("__fprintf_359", "fprintf"); +__static_renaming("__printf_362", "printf"); +__static_renaming("__sprintf_365", "sprintf"); +__static_renaming("__vfprintf_371", "vfprintf"); +__static_renaming("__vprintf_378", "vprintf"); +__static_renaming("__vsprintf_384", "vsprintf"); +__static_renaming("__snprintf_389", "snprintf"); +__static_renaming("__vsnprintf_395", "vsnprintf"); +__static_renaming("__fscanf_400", "fscanf"); +__static_renaming("__fscanf_402", "fscanf"); +__static_renaming("__scanf_405", "scanf"); +__static_renaming("__scanf_406", "scanf"); +__static_renaming("__sscanf_409", "sscanf"); +__static_renaming("__vfscanf_433", "vfscanf"); +__static_renaming("__vfscanf_437", "vfscanf"); +__static_renaming("__vscanf_444", "vscanf"); +__static_renaming("__vscanf_446", "vscanf"); +__static_renaming("__vsscanf_452", "vsscanf"); +__static_renaming("__fgetc_487", "fgetc"); +__static_renaming("__getc_491", "getc"); +__static_renaming("__getchar_493", "getchar"); +__static_renaming("__fputc_497", "fputc"); +__static_renaming("__putc_502", "putc"); +__static_renaming("__putchar_505", "putchar"); +__static_renaming("__fgets_510", "fgets"); +__static_renaming("__fgets_512", "fgets"); +__static_renaming("__fputs_517", "fputs"); +__static_renaming("__puts_520", "puts"); +__static_renaming("__ungetc_524", "ungetc"); +__static_renaming("__fseek_546", "fseek"); +__static_renaming("__ftell_550", "ftell"); +__static_renaming("__ftell_552", "ftell"); +__static_renaming("__rewind_556", "rewind"); +__static_renaming("__fgetpos_562", "fgetpos"); +__static_renaming("__fgetpos_574", "fgetpos"); +__static_renaming("__fsetpos_582", "fsetpos"); +__static_renaming("__fsetpos_586", "fsetpos"); +__static_renaming("__clearerr_592", "clearerr"); +__static_renaming("__feof_596", "feof"); +__static_renaming("__feof_598", "feof"); +__static_renaming("__ferror_602", "ferror"); +__static_renaming("__ferror_604", "ferror"); +__static_renaming("__perror_607", "perror"); +__static_renaming("____sprintf_chk_617", "__sprintf_chk"); +__static_renaming("____vsprintf_chk_624", "__vsprintf_chk"); +__static_renaming("____snprintf_chk_638", "__snprintf_chk"); +__static_renaming("____vsnprintf_chk_646", "__vsnprintf_chk"); +__static_renaming("____fprintf_chk_661", "__fprintf_chk"); +__static_renaming("____printf_chk_665", "__printf_chk"); +__static_renaming("____vfprintf_chk_672", "__vfprintf_chk"); +__static_renaming("____vprintf_chk_680", "__vprintf_chk"); +__static_renaming("____fgets_chk_704", "__fgets_chk"); +__static_renaming("____fgets_chk_706", "__fgets_chk"); +__static_renaming("____fgets_alias_712", "__fgets_alias"); +__static_renaming("____fgets_chk_warn_719", "__fgets_chk_warn"); +__static_renaming("__ptrdiff_t_755", "ptrdiff_t"); +__static_renaming("__size_t_756", "size_t"); +__static_renaming("__wchar_t_759", "wchar_t"); +__static_renaming("__wchar_t_760", "wchar_t"); +__static_renaming("__div_t_765", "div_t"); +__static_renaming("__ldiv_t_770", "ldiv_t"); +__static_renaming("__lldiv_t_775", "lldiv_t"); +__static_renaming("____ctype_get_mb_cur_max_776", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_777", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_778", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_779", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_780", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_781", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_782", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_783", "__ctype_get_mb_cur_max"); +__static_renaming("__atof_785", "atof"); +__static_renaming("__atof_786", "atof"); +__static_renaming("__atoi_788", "atoi"); +__static_renaming("__atoi_789", "atoi"); +__static_renaming("__atol_791", "atol"); +__static_renaming("__atol_792", "atol"); +__static_renaming("__atoll_794", "atoll"); +__static_renaming("__atoll_795", "atoll"); +__static_renaming("__strtod_798", "strtod"); +__static_renaming("__strtof_801", "strtof"); +__static_renaming("__strtold_804", "strtold"); +__static_renaming("__strtol_808", "strtol"); +__static_renaming("__strtoul_812", "strtoul"); +__static_renaming("__strtoll_816", "strtoll"); +__static_renaming("__strtoull_820", "strtoull"); +__static_renaming("__rand_824", "rand"); +__static_renaming("__rand_825", "rand"); +__static_renaming("__srand_827", "srand"); +__static_renaming("__malloc_830", "malloc"); +__static_renaming("__malloc_831", "malloc"); +__static_renaming("__malloc_832", "malloc"); +__static_renaming("__malloc_833", "malloc"); +__static_renaming("__calloc_838", "calloc"); +__static_renaming("__calloc_839", "calloc"); +__static_renaming("__calloc_840", "calloc"); +__static_renaming("__calloc_841", "calloc"); +__static_renaming("__realloc_845", "realloc"); +__static_renaming("__realloc_846", "realloc"); +__static_renaming("__realloc_847", "realloc"); +__static_renaming("__realloc_848", "realloc"); +__static_renaming("__free_850", "free"); +__static_renaming("__aligned_alloc_855", "aligned_alloc"); +__static_renaming("__aligned_alloc_856", "aligned_alloc"); +__static_renaming("__aligned_alloc_857", "aligned_alloc"); +__static_renaming("__aligned_alloc_858", "aligned_alloc"); +__static_renaming("__abort_859", "abort"); +__static_renaming("__atexit_861", "atexit"); +__static_renaming("__at_quick_exit_863", "at_quick_exit"); +__static_renaming("__exit_865", "exit"); +__static_renaming("__quick_exit_867", "quick_exit"); +__static_renaming("___Exit_869", "_Exit"); +__static_renaming("__getenv_871", "getenv"); +__static_renaming("__getenv_872", "getenv"); +__static_renaming("__system_874", "system"); +__static_renaming("__system_875", "system"); +__static_renaming("____compar_fn_t_876", "__compar_fn_t"); +__static_renaming("__bsearch_887", "bsearch"); +__static_renaming("__bsearch_888", "bsearch"); +__static_renaming("__bsearch_891", "bsearch"); +__static_renaming("__bsearch_892", "bsearch"); +__static_renaming("____l_901", "__l"); +__static_renaming("____l_902", "__l"); +__static_renaming("____u_903", "__u"); +__static_renaming("____u_904", "__u"); +__static_renaming("____idx_905", "__idx"); +__static_renaming("____idx_906", "__idx"); +__static_renaming("____p_907", "__p"); +__static_renaming("____comparison_908", "__comparison"); +__static_renaming("__qsort_920", "qsort"); +__static_renaming("__qsort_922", "qsort"); +__static_renaming("__qsort_924", "qsort"); +__static_renaming("__qsort_926", "qsort"); +__static_renaming("__abs_929", "abs"); +__static_renaming("__abs_930", "abs"); +__static_renaming("__labs_932", "labs"); +__static_renaming("__labs_933", "labs"); +__static_renaming("__llabs_935", "llabs"); +__static_renaming("__llabs_936", "llabs"); +__static_renaming("__div_939", "div"); +__static_renaming("__div_940", "div"); +__static_renaming("__ldiv_943", "ldiv"); +__static_renaming("__ldiv_945", "ldiv"); +__static_renaming("__lldiv_949", "lldiv"); +__static_renaming("__lldiv_951", "lldiv"); +__static_renaming("__mblen_956", "mblen"); +__static_renaming("__mblen_957", "mblen"); +__static_renaming("__mbtowc_963", "mbtowc"); +__static_renaming("__mbtowc_964", "mbtowc"); +__static_renaming("__mbtowc_965", "mbtowc"); +__static_renaming("__wctomb_969", "wctomb"); +__static_renaming("__wctomb_970", "wctomb"); +__static_renaming("__mbstowcs_976", "mbstowcs"); +__static_renaming("__mbstowcs_977", "mbstowcs"); +__static_renaming("__mbstowcs_978", "mbstowcs"); +__static_renaming("__wcstombs_984", "wcstombs"); +__static_renaming("__wcstombs_985", "wcstombs"); +__static_renaming("__wcstombs_986", "wcstombs"); +__static_renaming("____realpath_chk_992", "__realpath_chk"); +__static_renaming("____realpath_chk_993", "__realpath_chk"); +__static_renaming("____realpath_alias_996", "__realpath_alias"); +__static_renaming("____realpath_chk_warn_1001", "__realpath_chk_warn"); +__static_renaming("____realpath_chk_warn_1002", "__realpath_chk_warn"); +__static_renaming("____ptsname_r_chk_1012", "__ptsname_r_chk"); +__static_renaming("____ptsname_r_chk_1013", "__ptsname_r_chk"); +__static_renaming("____ptsname_r_alias_1018", "__ptsname_r_alias"); +__static_renaming("____ptsname_r_alias_1019", "__ptsname_r_alias"); +__static_renaming("____ptsname_r_chk_warn_1026", "__ptsname_r_chk_warn"); +__static_renaming("____ptsname_r_chk_warn_1027", "__ptsname_r_chk_warn"); +__static_renaming("____wctomb_chk_1038", "__wctomb_chk"); +__static_renaming("____wctomb_chk_1039", "__wctomb_chk"); +__static_renaming("____wctomb_alias_1042", "__wctomb_alias"); +__static_renaming("____mbstowcs_chk_1051", "__mbstowcs_chk"); +__static_renaming("____mbstowcs_chk_1052", "__mbstowcs_chk"); +__static_renaming("____mbstowcs_alias_1057", "__mbstowcs_alias"); +__static_renaming("____mbstowcs_alias_1058", "__mbstowcs_alias"); +__static_renaming("____mbstowcs_chk_warn_1065", "__mbstowcs_chk_warn"); +__static_renaming("____mbstowcs_chk_warn_1066", "__mbstowcs_chk_warn"); +__static_renaming("____wcstombs_chk_1077", "__wcstombs_chk"); +__static_renaming("____wcstombs_chk_1078", "__wcstombs_chk"); +__static_renaming("____wcstombs_alias_1083", "__wcstombs_alias"); +__static_renaming("____wcstombs_alias_1084", "__wcstombs_alias"); +__static_renaming("____wcstombs_chk_warn_1091", "__wcstombs_chk_warn"); +__static_renaming("____wcstombs_chk_warn_1092", "__wcstombs_chk_warn"); +__static_renaming("__memmove_1109", "memmove"); +__static_renaming("__memmove_1110", "memmove"); +__static_renaming("__memset_1115", "memset"); +__static_renaming("__memset_1116", "memset"); +__static_renaming("__memcmp_1121", "memcmp"); +__static_renaming("__memcmp_1122", "memcmp"); +__static_renaming("__memchr_1127", "memchr"); +__static_renaming("__memchr_1128", "memchr"); +__static_renaming("__strcpy_1131", "strcpy"); +__static_renaming("__strncpy_1136", "strncpy"); +__static_renaming("__strncpy_1137", "strncpy"); +__static_renaming("__strcat_1140", "strcat"); +__static_renaming("__strncat_1145", "strncat"); +__static_renaming("__strncat_1146", "strncat"); +__static_renaming("__strcmp_1149", "strcmp"); +__static_renaming("__strncmp_1154", "strncmp"); +__static_renaming("__strncmp_1155", "strncmp"); +__static_renaming("__strcoll_1158", "strcoll"); +__static_renaming("__strxfrm_1163", "strxfrm"); +__static_renaming("__strxfrm_1164", "strxfrm"); +__static_renaming("__strchr_1167", "strchr"); +__static_renaming("__strrchr_1170", "strrchr"); +__static_renaming("__strcspn_1173", "strcspn"); +__static_renaming("__strcspn_1174", "strcspn"); +__static_renaming("__strspn_1177", "strspn"); +__static_renaming("__strspn_1178", "strspn"); +__static_renaming("__strpbrk_1181", "strpbrk"); +__static_renaming("__strstr_1184", "strstr"); +__static_renaming("__strtok_1187", "strtok"); +__static_renaming("____strtok_r_1191", "__strtok_r"); +__static_renaming("__strlen_1193", "strlen"); +__static_renaming("__strlen_1194", "strlen"); +__static_renaming("__strerror_1196", "strerror"); +__static_renaming("____bzero_1200", "__bzero"); +__static_renaming("____bzero_1201", "__bzero"); +__static_renaming("____stpncpy_chk_1235", "__stpncpy_chk"); +__static_renaming("____stpncpy_chk_1236", "__stpncpy_chk"); +__static_renaming("____stpncpy_alias_1241", "__stpncpy_alias"); +__static_renaming("____stpncpy_alias_1242", "__stpncpy_alias"); +__static_renaming("__val_1258", "val"); +__static_renaming("__s_1259", "s"); +__static_renaming("__p_1260", "p"); +__static_renaming("__a_1261", "a"); +__static_renaming("__n_1262", "n"); +__static_renaming("__make_device_1263", "make_device"); +__static_renaming("__make_device_1264", "make_device"); +__static_renaming("__main_1281", "main"); __static_condition_renaming("__static_condition_default_53", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); __static_condition_renaming("__static_condition_default_76", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); @@ -1278,353 +632,188 @@ __static_condition_renaming("__static_condition_default_271", "!(defined __need_ __static_condition_renaming("__static_condition_default_274", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); __static_condition_renaming("__static_condition_default_275", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); __static_condition_renaming("__static_condition_default_278", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_280", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); -__static_condition_renaming("__static_condition_default_282", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_284", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_286", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_288", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_290", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_293", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_296", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_299", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_311", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_313", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_315", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_317", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_331", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_333", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_337", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_341", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_345", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_347", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_355", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_357", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_363", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_365", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_367", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_369", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_373", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_375", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_380", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_382", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_386", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_388", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_393", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_395", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_402", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_408", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_412", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_417", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_419", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_431", "!(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_432", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_433", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_438", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_444", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_455", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_461", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_469", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_471", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_473", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_475", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_486", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_488", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_489", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_491", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_493", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_494", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_497", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_499", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_503", "!(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_510", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_511", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_512", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_514", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_515", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_516", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_521", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_523", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_529", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_536", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_537", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_538", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_539", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_541", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_542", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_543", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_544", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_549", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_550", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_552", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_553", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_559", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_560", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_564", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_568", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_573", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_578", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_583", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_585", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_590", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_597", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_602", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_608", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_613", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_619", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_621", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_623", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_625", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_632", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_633", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_634", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_636", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_637", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_638", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_645", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_646", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_647", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_649", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_650", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_651", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_657", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_658", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_659", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_661", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_662", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_663", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_668", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_670", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_677", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_683", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_684", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_685", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_686", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_692", "!(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_693", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_699", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_700", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_701", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_702", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_708", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_709", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_715", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_717", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_721", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_723", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_727", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_734", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_735", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_736", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_745", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_746", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_747", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_751", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_752", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_753", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_755", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_756", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_757", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_759", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_760", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_761", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_767", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_768", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_769", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_779", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_780", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_781", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_787", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_788", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_789", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_791", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_792", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_793", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_797", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_801", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_803", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_807", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_809", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_813", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_817", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_819", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_823", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_825", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_834", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_836", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_840", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_842", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_846", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_848", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_852", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_858", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_862", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_864", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_868", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_872", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_875", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_878", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_883", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_887", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_891", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_894", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_907", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_914", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_929", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_938", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_944", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_955", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_956", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_957", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_963", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_967", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_972", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_978", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_979", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_980", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_991", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_998", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1005", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1007", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1009", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1015", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1022", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1027", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1028", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1035", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1036", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1042", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1043", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1050", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1051", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1057", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1058", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1065", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1066", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1072", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1073", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1080", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1081", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1089", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_1090", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1091", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1152", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1159", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1164", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1165", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1315", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1341", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __u_char_defined)"); -__static_condition_renaming("__static_condition_default_1345", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __u_char_defined)"); -__static_condition_renaming("__static_condition_default_1349", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __u_char_defined)"); -__static_condition_renaming("__static_condition_default_1353", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined)"); -__static_condition_renaming("__static_condition_default_1357", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined)"); -__static_condition_renaming("__static_condition_default_1361", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_1365", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_1369", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_1373", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1377", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __nlink_t_defined)"); -__static_condition_renaming("__static_condition_default_1381", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __nlink_t_defined)"); -__static_condition_renaming("__static_condition_default_1385", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __nlink_t_defined)"); -__static_condition_renaming("__static_condition_default_1388", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1391", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1395", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && (defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1398", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1402", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __id_t_defined)"); -__static_condition_renaming("__static_condition_default_1405", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1409", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_1416", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_1420", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_1424", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __clock_t_defined)"); -__static_condition_renaming("__static_condition_default_1428", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __time_t_defined)"); -__static_condition_renaming("__static_condition_default_1432", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __clockid_t_defined)"); -__static_condition_renaming("__static_condition_default_1436", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timer_t_defined)"); -__static_condition_renaming("__static_condition_default_1453", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1458", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1459", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1475", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_1485", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_1489", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __suseconds_t_defined)"); -__static_condition_renaming("__static_condition_default_1498", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1515", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_1516", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_1531", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_1532", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_1552", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blksize_t_defined)"); -__static_condition_renaming("__static_condition_default_1556", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined)"); -__static_condition_renaming("__static_condition_default_1560", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1564", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined)"); -__static_condition_renaming("__static_condition_default_1568", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1572", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1576", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1749", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1750", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1753", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1754", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1773", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1774", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1775", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1776", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1785", "!(defined __need___FILE) && !(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1787", "(defined __need___FILE) && !(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1789", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1791", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1808", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1810", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1814", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1816", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1944", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_2043", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_2044", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_2045", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _STDLIB_H) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDLIB_H) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDLIB_H) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDLIB_H) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2046", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2047", "(defined __need___FILE) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2062", "!(defined __need___FILE) && !(defined __STRICT_ANSI__)"); -__static_condition_renaming("__static_condition_default_2063", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2064", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2312", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2313", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2314", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2320", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2321", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2322", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2328", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2329", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2330", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2342", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2343", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2349", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2350", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2351", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2376", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2377", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2378", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2381", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2387", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2388", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2389", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2397", "!(defined _FORTIFY_SOURCE) && !(defined ENABLE_FEATURE_MDEV_CONF) || !(defined _FORTIFY_SOURCE) && (defined ENABLE_FEATURE_MDEV_CONF) && !(defined ENABLE_FEATURE_MDEV_RENAME) || !(defined _FORTIFY_SOURCE) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined ENABLE_FEATURE_MDEV_CONF) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && !(defined ENABLE_FEATURE_MDEV_RENAME) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined ENABLE_FEATURE_MDEV_CONF) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined ENABLE_FEATURE_MDEV_CONF) && !(defined ENABLE_FEATURE_MDEV_RENAME) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined ENABLE_FEATURE_MDEV_CONF) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && !(defined ENABLE_FEATURE_MDEV_RENAME) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP)"); -__static_condition_renaming("__static_condition_default_2398", "!(defined _FORTIFY_SOURCE) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP)"); -__static_condition_renaming("__static_condition_default_2399", "!(defined _FORTIFY_SOURCE) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP)"); -__static_condition_renaming("__static_condition_default_2400", "!(defined _FORTIFY_SOURCE) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP)"); -__static_condition_renaming("__static_condition_default_2401", "!(defined _FORTIFY_SOURCE) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP)"); -__static_condition_renaming("__static_condition_default_2402", "!(defined _FORTIFY_SOURCE) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP)"); -__static_condition_renaming("__static_condition_default_2403", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP)"); -__static_condition_renaming("__static_condition_default_2404", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDLIB_H) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDLIB_H) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDLIB_H) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDLIB_H) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP)"); -__static_condition_renaming("__static_condition_default_2405", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined ENABLE_FEATURE_MDEV_CONF) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && !(defined ENABLE_FEATURE_MDEV_RENAME) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP)"); -__static_condition_renaming("__static_condition_default_2406", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP)"); -__static_condition_renaming("__static_condition_default_2407", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP)"); -__static_condition_renaming("__static_condition_default_2408", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP)"); -__static_condition_renaming("__static_condition_default_2409", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP)"); -__static_condition_renaming("__static_condition_default_2410", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP)"); -__static_condition_renaming("__static_condition_default_2411", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP)"); -__static_condition_renaming("__static_condition_default_2412", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP)"); -__static_condition_renaming("__static_condition_default_2416", "(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_2417", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_2418", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_2419", "!(defined __STRICT_ANSI__) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined __STRICT_ANSI__) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2420", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && (defined _STDLIB_H) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && (defined _STDLIB_H) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO)"); - -if (__static_condition_default_2420) -{ +__static_condition_renaming("__static_condition_default_280", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_282", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_285", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_288", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_291", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_298", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_300", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_302", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_304", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_311", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_315", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_319", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_321", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_329", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_331", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_337", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_339", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_341", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_343", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_348", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_355", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_360", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_372", "!(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_373", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_374", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_379", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_385", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_396", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_401", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_403", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_414", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_415", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_417", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_418", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_421", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_423", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_427", "!(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_434", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_435", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_436", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_438", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_439", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_440", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_445", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_447", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_453", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_460", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_461", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_462", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_463", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_465", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_466", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_467", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_468", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_473", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_474", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_476", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_477", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_483", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_484", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_488", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_492", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_498", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_503", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_511", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_513", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_518", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_525", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_531", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_532", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_533", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_534", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_540", "!(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_541", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_547", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_551", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_553", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_557", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_563", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_564", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_565", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_575", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_576", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_577", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_583", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_584", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_585", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_587", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_588", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_589", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_593", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_597", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_599", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_603", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_605", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_611", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_625", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_632", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_647", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_656", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_662", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_673", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_674", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_675", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_681", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_685", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_690", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_696", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_697", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_698", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_705", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_707", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_713", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_720", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_725", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_726", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_733", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_734", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_740", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_741", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_748", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_749", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_757", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_758", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_885", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_886", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_889", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_890", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_909", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_910", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_911", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_912", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_921", "!(defined __need___FILE) && !(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_923", "(defined __need___FILE) && !(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_925", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_927", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_944", "!(defined _FORTIFY_SOURCE) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_946", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_950", "!(defined _FORTIFY_SOURCE) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_952", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1005", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1101", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1102", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1103", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1104", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1206", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1207", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1212", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1213", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1218", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1219", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1222", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1227", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1228", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1247", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1248", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1251", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1256", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1257", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1265", "!(defined _FORTIFY_SOURCE) && !(defined ENABLE_FEATURE_MDEV_CONF) || !(defined _FORTIFY_SOURCE) && (defined ENABLE_FEATURE_MDEV_CONF) && !(defined ENABLE_FEATURE_MDEV_RENAME) || !(defined _FORTIFY_SOURCE) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined ENABLE_FEATURE_MDEV_CONF) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && !(defined ENABLE_FEATURE_MDEV_RENAME) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined ENABLE_FEATURE_MDEV_CONF) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined ENABLE_FEATURE_MDEV_CONF) && !(defined ENABLE_FEATURE_MDEV_RENAME) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined ENABLE_FEATURE_MDEV_CONF) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && !(defined ENABLE_FEATURE_MDEV_RENAME) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP)"); +__static_condition_renaming("__static_condition_default_1266", "!(defined _FORTIFY_SOURCE) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP)"); +__static_condition_renaming("__static_condition_default_1267", "!(defined _FORTIFY_SOURCE) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP)"); +__static_condition_renaming("__static_condition_default_1268", "!(defined _FORTIFY_SOURCE) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP)"); +__static_condition_renaming("__static_condition_default_1269", "!(defined _FORTIFY_SOURCE) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP)"); +__static_condition_renaming("__static_condition_default_1270", "!(defined _FORTIFY_SOURCE) && !(defined __USE_EXTERN_INLINES) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __USE_EXTERN_INLINES) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __USE_EXTERN_INLINES) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __USE_EXTERN_INLINES) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP)"); +__static_condition_renaming("__static_condition_default_1271", "!(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP)"); +__static_condition_renaming("__static_condition_default_1272", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined ENABLE_FEATURE_MDEV_CONF) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && !(defined ENABLE_FEATURE_MDEV_RENAME) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP)"); +__static_condition_renaming("__static_condition_default_1273", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP)"); +__static_condition_renaming("__static_condition_default_1274", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP)"); +__static_condition_renaming("__static_condition_default_1275", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP)"); +__static_condition_renaming("__static_condition_default_1276", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP)"); +__static_condition_renaming("__static_condition_default_1277", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __USE_EXTERN_INLINES) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP)"); +__static_condition_renaming("__static_condition_default_1278", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP)"); +__static_condition_renaming("__static_condition_default_1282", "!(defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_1283", "!(defined _FORTIFY_SOURCE) && !(defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_1284", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_1285", "(defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_1286", "!(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_1287", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_1288", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); + +if (__static_condition_default_1288) { __static_parse_error("Unable to parse"); } }; @@ -1790,375 +979,28 @@ typedef ____ssize_t_49 (____io_read_fn_181) (void * (____cookie_178), char * typedef ____ssize_t_49 (____io_write_fn_186) (void * (____cookie_183), const char * (____buf_184), __size_t_1 ____n_185);// L341:L342 typedef int (____io_seek_fn_192) (void * (____cookie_188), ____off64_t_24 * (____pos_189), int ____w_191);// L350 typedef int (____io_close_fn_195) (void * (____cookie_194));// L353 -typedef ____gnuc_va_list_86 __va_list_279;// L79 -typedef ____off_t_23 __off_t_281;// L90 -typedef ____off64_t_24 __off_t_283;// L92 -typedef ____ssize_t_49 __ssize_t_285;// L102 -typedef ___G_fpos_t_77 __fpos_t_287;// L110 -typedef ___G_fpos64_t_85 __fpos_t_289;// L112 -extern const char * const __sys_errlist_830[];// L27 -typedef long int __ptrdiff_t_1092;// L143:L324 -typedef long unsigned int __size_t_1093;// L177:L209 -typedef int __wchar_t_1094;// L243:L321 -enum ____anonymous_tag_1098_1099 { -__P_ALL_1095, -__P_PID_1096, -__P_PGID_1097, -}; -typedef enum ____anonymous_tag_1098_1099 __idtype_t_1100;// L50:L55 -typedef unsigned char ____u_char_1101;// L30 -typedef unsigned short int ____u_short_1102;// L31 -typedef unsigned int ____u_int_1103;// L32 -typedef unsigned long int ____u_long_1104;// L33 -typedef signed char ____int8_t_1105;// L36 -typedef unsigned char ____uint8_t_1106;// L37 -typedef signed short int ____int16_t_1107;// L38 -typedef unsigned short int ____uint16_t_1108;// L39 -typedef signed int ____int32_t_1109;// L40 -typedef unsigned int ____uint32_t_1110;// L41 -typedef signed long int ____int64_t_1111;// L43 -typedef unsigned long int ____uint64_t_1112;// L44 -typedef long int ____quad_t_1113;// L52 -typedef unsigned long int ____u_quad_t_1114;// L53 -typedef unsigned long int ____dev_t_1115;// L109:L124 -typedef unsigned int ____uid_t_1116;// L92:L125 -typedef unsigned int ____gid_t_1117;// L92:L126 -typedef unsigned long int ____ino_t_1118;// L94:L127 -typedef unsigned long int ____ino64_t_1119;// L109:L128 -typedef unsigned int ____mode_t_1120;// L92:L129 -typedef unsigned long int ____nlink_t_1121;// L94:L130 -typedef long int ____off_t_1122;// L93:L131 -typedef long int ____off64_t_1123;// L108:L132 -typedef int ____pid_t_1124;// L91:L133 -struct ____anonymous_tag_1125_1126 { -int ____val_1127[2];// L72 -}; -typedef struct ____anonymous_tag_1125_1126 ____fsid_t_1128;// L72:L134 -typedef long int ____clock_t_1129;// L93:L135 -typedef unsigned long int ____rlim_t_1130;// L94:L136 -typedef unsigned long int ____rlim64_t_1131;// L109:L137 -typedef unsigned int ____id_t_1132;// L92:L138 -typedef long int ____time_t_1133;// L93:L139 -typedef unsigned int ____useconds_t_1134;// L92:L140 -typedef long int ____suseconds_t_1135;// L93:L141 -typedef int ____daddr_t_1136;// L91:L143 -typedef int ____key_t_1137;// L91:L144 -typedef int ____clockid_t_1138;// L91:L147 -typedef void * (____timer_t_1139);// L70:L150 -typedef long int ____blksize_t_1140;// L93:L153 -typedef long int ____blkcnt_t_1141;// L93:L158 -typedef long int ____blkcnt64_t_1142;// L108:L159 -typedef unsigned long int ____fsblkcnt_t_1143;// L94:L162 -typedef unsigned long int ____fsblkcnt64_t_1144;// L109:L163 -typedef unsigned long int ____fsfilcnt_t_1145;// L94:L166 -typedef unsigned long int ____fsfilcnt64_t_1146;// L109:L167 -typedef long int ____fsword_t_1147;// L93:L170 -typedef long int ____ssize_t_1148;// L110:L172 -typedef long int ____syscall_slong_t_1149;// L93:L175 -typedef unsigned long int ____syscall_ulong_t_1150;// L94:L177 -typedef ____off64_t_1123 ____loff_t_1151;// L181 -typedef ____quad_t_1113 * (____qaddr_t_1153);// L182 -typedef char * (____caddr_t_1154);// L183 -typedef long int ____intptr_t_1155;// L110:L186 -typedef unsigned int ____socklen_t_1156;// L92:L189 -struct ____anonymous_tag_1166_1167 { -unsigned int ____w_termsig_1168 : 7;// L72 -unsigned int ____w_coredump_1169 : 1;// L73 -unsigned int ____w_retcode_1170 : 8;// L74 -unsigned int __anon_id_0_1171 : 16;// L75 -}; -struct ____anonymous_tag_1172_1173 { -unsigned int ____w_stopval_1174 : 8;// L87 -unsigned int ____w_stopsig_1175 : 8;// L88 -unsigned int __anon_id_1_1176 : 16;// L89 -}; -union __wait_1177 { -int __w_status_1178;// L68 -struct ____anonymous_tag_1166_1167 ____wait_terminated_1179;// L69 -struct ____anonymous_tag_1172_1173 ____wait_stopped_1180;// L84 -}; -union ____anonymous_tag_1181_1182 { -union __wait_1177 * (____uptr_1183);// L69 -int * (____iptr_1184);// L70 -}; -typedef union ____anonymous_tag_1181_1182 ____WAIT_STATUS_1185;// L67:L71 -struct ____anonymous_tag_1186_1187 { -int __quot_1188;// L99 -int __rem_1189;// L100 -}; -typedef struct ____anonymous_tag_1186_1187 __div_t_1190;// L97:L101 -struct ____anonymous_tag_1191_1192 { -long int __quot_1193;// L107 -long int __rem_1194;// L108 -}; -typedef struct ____anonymous_tag_1191_1192 __ldiv_t_1195;// L105:L109 -struct ____anonymous_tag_1196_1197 { -long long int __quot_1198;// L119 -long long int __rem_1199;// L120 -}; -typedef struct ____anonymous_tag_1196_1197 __lldiv_t_1200;// L117:L121 -typedef unsigned char ____u_char_1264;// L30 -typedef unsigned short int ____u_short_1265;// L31 -typedef unsigned int ____u_int_1266;// L32 -typedef unsigned long int ____u_long_1267;// L33 -typedef signed char ____int8_t_1268;// L36 -typedef unsigned char ____uint8_t_1269;// L37 -typedef signed short int ____int16_t_1270;// L38 -typedef unsigned short int ____uint16_t_1271;// L39 -typedef signed int ____int32_t_1272;// L40 -typedef unsigned int ____uint32_t_1273;// L41 -typedef signed long int ____int64_t_1274;// L43 -typedef unsigned long int ____uint64_t_1275;// L44 -typedef long int ____quad_t_1276;// L52 -typedef unsigned long int ____u_quad_t_1277;// L53 -typedef unsigned long int ____dev_t_1278;// L109:L124 -typedef unsigned int ____uid_t_1279;// L92:L125 -typedef unsigned int ____gid_t_1280;// L92:L126 -typedef unsigned long int ____ino_t_1281;// L94:L127 -typedef unsigned long int ____ino64_t_1282;// L109:L128 -typedef unsigned int ____mode_t_1283;// L92:L129 -typedef unsigned long int ____nlink_t_1284;// L94:L130 -typedef long int ____off_t_1285;// L93:L131 -typedef long int ____off64_t_1286;// L108:L132 -typedef int ____pid_t_1287;// L91:L133 -struct ____anonymous_tag_1288_1289 { -int ____val_1290[2];// L72 -}; -typedef struct ____anonymous_tag_1288_1289 ____fsid_t_1291;// L72:L134 -typedef long int ____clock_t_1292;// L93:L135 -typedef unsigned long int ____rlim_t_1293;// L94:L136 -typedef unsigned long int ____rlim64_t_1294;// L109:L137 -typedef unsigned int ____id_t_1295;// L92:L138 -typedef long int ____time_t_1296;// L93:L139 -typedef unsigned int ____useconds_t_1297;// L92:L140 -typedef long int ____suseconds_t_1298;// L93:L141 -typedef int ____daddr_t_1299;// L91:L143 -typedef int ____key_t_1300;// L91:L144 -typedef int ____clockid_t_1301;// L91:L147 -typedef void * (____timer_t_1302);// L70:L150 -typedef long int ____blksize_t_1303;// L93:L153 -typedef long int ____blkcnt_t_1304;// L93:L158 -typedef long int ____blkcnt64_t_1305;// L108:L159 -typedef unsigned long int ____fsblkcnt_t_1306;// L94:L162 -typedef unsigned long int ____fsblkcnt64_t_1307;// L109:L163 -typedef unsigned long int ____fsfilcnt_t_1308;// L94:L166 -typedef unsigned long int ____fsfilcnt64_t_1309;// L109:L167 -typedef long int ____fsword_t_1310;// L93:L170 -typedef long int ____ssize_t_1311;// L110:L172 -typedef long int ____syscall_slong_t_1312;// L93:L175 -typedef unsigned long int ____syscall_ulong_t_1313;// L94:L177 -typedef ____off64_t_1286 ____loff_t_1314;// L181 -typedef ____quad_t_1276 * (____qaddr_t_1316);// L182 -typedef char * (____caddr_t_1317);// L183 -typedef long int ____intptr_t_1318;// L110:L186 -typedef unsigned int ____socklen_t_1319;// L92:L189 -typedef ____u_char_2 __u_char_1320;// L33 -typedef ____u_char_1101 __u_char_1321;// L33 -typedef ____u_char_1264 __u_char_1322;// L33 -typedef ____u_short_3 __u_short_1323;// L34 -typedef ____u_short_1102 __u_short_1324;// L34 -typedef ____u_short_1265 __u_short_1325;// L34 -typedef ____u_int_4 __u_int_1326;// L35 -typedef ____u_int_1103 __u_int_1327;// L35 -typedef ____u_int_1266 __u_int_1328;// L35 -typedef ____u_long_5 __u_long_1329;// L36 -typedef ____u_long_1104 __u_long_1330;// L36 -typedef ____u_long_1267 __u_long_1331;// L36 -typedef ____quad_t_14 __quad_t_1332;// L37 -typedef ____quad_t_1113 __quad_t_1333;// L37 -typedef ____quad_t_1276 __quad_t_1334;// L37 -typedef ____u_quad_t_15 __u_quad_t_1335;// L38 -typedef ____u_quad_t_1114 __u_quad_t_1336;// L38 -typedef ____u_quad_t_1277 __u_quad_t_1337;// L38 -typedef ____fsid_t_29 __fsid_t_1338;// L39 -typedef ____fsid_t_1128 __fsid_t_1339;// L39 -typedef ____fsid_t_1291 __fsid_t_1340;// L39 -typedef ____loff_t_52 __loff_t_1342;// L44 -typedef ____loff_t_1151 __loff_t_1343;// L44 -typedef ____loff_t_1314 __loff_t_1344;// L44 -typedef ____loff_t_52 __loff_t_1346;// L44 -typedef ____loff_t_1151 __loff_t_1347;// L44 -typedef ____loff_t_1314 __loff_t_1348;// L44 -typedef ____ino64_t_20 __ino_t_1350;// L50 -typedef ____ino64_t_1119 __ino_t_1351;// L50 -typedef ____ino64_t_1282 __ino_t_1352;// L50 -typedef ____ino_t_19 __ino_t_1354;// L48 -typedef ____ino_t_1118 __ino_t_1355;// L48 -typedef ____ino_t_1281 __ino_t_1356;// L48 -typedef ____dev_t_16 __dev_t_1358;// L60 -typedef ____dev_t_1115 __dev_t_1359;// L60 -typedef ____dev_t_1278 __dev_t_1360;// L60 -typedef ____gid_t_18 __gid_t_1362;// L65 -typedef ____gid_t_1117 __gid_t_1363;// L65 -typedef ____gid_t_1280 __gid_t_1364;// L65 -typedef ____gid_t_18 __gid_t_1366;// L65 -typedef ____gid_t_1117 __gid_t_1367;// L65 -typedef ____gid_t_1280 __gid_t_1368;// L65 -typedef ____mode_t_21 __mode_t_1370;// L70 -typedef ____mode_t_1120 __mode_t_1371;// L70 -typedef ____mode_t_1283 __mode_t_1372;// L70 -typedef ____nlink_t_22 __nlink_t_1374;// L75 -typedef ____nlink_t_1121 __nlink_t_1375;// L75 -typedef ____nlink_t_1284 __nlink_t_1376;// L75 -typedef ____uid_t_17 __uid_t_1378;// L80 -typedef ____uid_t_1116 __uid_t_1379;// L80 -typedef ____uid_t_1279 __uid_t_1380;// L80 -typedef ____uid_t_17 __uid_t_1382;// L80 -typedef ____uid_t_1116 __uid_t_1383;// L80 -typedef ____uid_t_1279 __uid_t_1384;// L80 -typedef ____off64_t_1123 __off_t_1386;// L88 -typedef ____off64_t_1286 __off_t_1387;// L88 -typedef ____off_t_1122 __off_t_1389;// L86 -typedef ____off_t_1285 __off_t_1390;// L86 -typedef ____pid_t_25 __pid_t_1392;// L98 -typedef ____pid_t_1124 __pid_t_1393;// L98 -typedef ____pid_t_1287 __pid_t_1394;// L98 -typedef ____pid_t_1124 __pid_t_1396;// L98 -typedef ____pid_t_1287 __pid_t_1397;// L98 -typedef ____id_t_33 __id_t_1399;// L104 -typedef ____id_t_1132 __id_t_1400;// L104 -typedef ____id_t_1295 __id_t_1401;// L104 -typedef ____ssize_t_1148 __ssize_t_1403;// L109 -typedef ____ssize_t_1311 __ssize_t_1404;// L109 -typedef ____daddr_t_37 __daddr_t_1406;// L115 -typedef ____daddr_t_1136 __daddr_t_1407;// L115 -typedef ____daddr_t_1299 __daddr_t_1408;// L115 -typedef ____caddr_t_55 __caddr_t_1410;// L116 -typedef ____caddr_t_1154 __caddr_t_1411;// L116 -typedef ____caddr_t_1317 __caddr_t_1412;// L116 -typedef ____key_t_38 __key_t_1413;// L122 -typedef ____key_t_1137 __key_t_1414;// L122 -typedef ____key_t_1300 __key_t_1415;// L122 -typedef ____key_t_38 __key_t_1417;// L122 -typedef ____key_t_1137 __key_t_1418;// L122 -typedef ____key_t_1300 __key_t_1419;// L122 -typedef ____clock_t_30 __clock_t_1421;// L59 -typedef ____clock_t_1129 __clock_t_1422;// L59 -typedef ____clock_t_1292 __clock_t_1423;// L59 -typedef ____time_t_34 __time_t_1425;// L75 -typedef ____time_t_1133 __time_t_1426;// L75 -typedef ____time_t_1296 __time_t_1427;// L75 -typedef ____clockid_t_39 __clockid_t_1429;// L91 -typedef ____clockid_t_1138 __clockid_t_1430;// L91 -typedef ____clockid_t_1301 __clockid_t_1431;// L91 -typedef ____timer_t_40 __timer_t_1433;// L103 -typedef ____timer_t_1139 __timer_t_1434;// L103 -typedef ____timer_t_1302 __timer_t_1435;// L103 -typedef unsigned long int __ulong_1437;// L150 -typedef unsigned long int __ulong_1438;// L150 -typedef unsigned long int __ulong_1439;// L150 -typedef unsigned short int __ushort_1440;// L151 -typedef unsigned int __uint_1441;// L152 -typedef int __int8_t_1442;// L188:L194 -typedef int __int16_t_1443;// L188:L195 -typedef int __int32_t_1444;// L188:L196 -typedef int __int64_t_1445;// L188:L197 -typedef unsigned int __u_int8_t_1446;// L190:L200 -typedef unsigned int __u_int16_t_1447;// L190:L201 -typedef unsigned int __u_int32_t_1448;// L190:L202 -typedef unsigned int __u_int64_t_1449;// L190:L203 -typedef int __register_t_1450;// L205 -typedef int ____sig_atomic_t_1460;// L22 -struct ____anonymous_tag_1461_1462 { -unsigned long int ____val_1463[( 1024 / ( 8 * sizeof(unsigned long) ) )];// L29 -}; -typedef struct ____anonymous_tag_1461_1462 ____sigset_t_1464;// L27:L30 -typedef ____sigset_t_1464 __sigset_t_1465;// L37 -struct __timespec_1466 { -____time_t_34 __tv_sec_1467;// L0 -____time_t_1133 __tv_sec_1468;// L0 -____time_t_1296 __tv_sec_1469;// L0 -____syscall_slong_t_50 __tv_nsec_1471;// L0 -____syscall_slong_t_1149 __tv_nsec_1472;// L0 -____syscall_slong_t_1312 __tv_nsec_1473;// L0 -}; -struct __timeval_1476 { -____time_t_34 __tv_sec_1477;// L0 -____time_t_1133 __tv_sec_1478;// L0 -____time_t_1296 __tv_sec_1479;// L0 -____suseconds_t_36 __tv_usec_1481;// L0 -____suseconds_t_1135 __tv_usec_1482;// L0 -____suseconds_t_1298 __tv_usec_1483;// L0 -}; -typedef ____suseconds_t_36 __suseconds_t_1486;// L48 -typedef ____suseconds_t_1135 __suseconds_t_1487;// L48 -typedef ____suseconds_t_1298 __suseconds_t_1488;// L48 -typedef long int ____fd_mask_1490;// L54 -typedef long int ____fd_mask_1491;// L54 -struct ____anonymous_tag_1492_1493 { -____fd_mask_1490 ____fds_bits_1494[1024 / ( 8 * ( int ) sizeof(long) )];// L0 -____fd_mask_1491 ____fds_bits_1496[1024 / ( 8 * ( int ) sizeof(long) )];// L0 +typedef ___G_fpos_t_77 __fpos_t_279;// L110 +typedef ___G_fpos64_t_85 __fpos_t_281;// L112 +typedef long int __ptrdiff_t_755;// L143:L324 +typedef long unsigned int __size_t_756;// L177:L209 +typedef int __wchar_t_759;// L243:L321 +typedef int __wchar_t_760;// L243:L321 +struct ____anonymous_tag_761_762 { +int __quot_763;// L99 +int __rem_764;// L100 }; -typedef struct ____anonymous_tag_1492_1493 __fd_set_1499;// L64:L75 -typedef ____fd_mask_1490 __fd_mask_1500;// L82 -typedef ____fd_mask_1491 __fd_mask_1501;// L82 -typedef ____blksize_t_41 __blksize_t_1549;// L228 -typedef ____blksize_t_1140 __blksize_t_1550;// L228 -typedef ____blksize_t_1303 __blksize_t_1551;// L228 -typedef ____blkcnt_t_42 __blkcnt_t_1553;// L235 -typedef ____blkcnt_t_1141 __blkcnt_t_1554;// L235 -typedef ____blkcnt_t_1304 __blkcnt_t_1555;// L235 -typedef ____fsblkcnt_t_44 __fsblkcnt_t_1557;// L239 -typedef ____fsblkcnt_t_1143 __fsblkcnt_t_1558;// L239 -typedef ____fsblkcnt_t_1306 __fsblkcnt_t_1559;// L239 -typedef ____blkcnt64_t_43 __blkcnt_t_1561;// L248 -typedef ____blkcnt64_t_1142 __blkcnt_t_1562;// L248 -typedef ____blkcnt64_t_1305 __blkcnt_t_1563;// L248 -typedef ____fsblkcnt64_t_45 __fsblkcnt_t_1565;// L252 -typedef ____fsblkcnt64_t_1144 __fsblkcnt_t_1566;// L252 -typedef ____fsblkcnt64_t_1307 __fsblkcnt_t_1567;// L252 -typedef ____fsfilcnt_t_46 __fsfilcnt_t_1569;// L243 -typedef ____fsfilcnt_t_1145 __fsfilcnt_t_1570;// L243 -typedef ____fsfilcnt_t_1308 __fsfilcnt_t_1571;// L243 -typedef ____fsfilcnt64_t_47 __fsfilcnt_t_1573;// L256 -typedef ____fsfilcnt64_t_1146 __fsfilcnt_t_1574;// L256 -typedef ____fsfilcnt64_t_1309 __fsfilcnt_t_1575;// L256 -typedef unsigned long int __pthread_t_1577;// L60 -union __pthread_attr_t_1578 { -char ____size_1579[56];// L65 -long int ____align_1580;// L66 +typedef struct ____anonymous_tag_761_762 __div_t_765;// L97:L101 +struct ____anonymous_tag_766_767 { +long int __quot_768;// L107 +long int __rem_769;// L108 }; -typedef union __pthread_attr_t_1578 __pthread_attr_t_1581;// L69 -struct ____pthread_internal_list_1583 { -struct __forward_tag_reference_1582 * (____prev_1584);// L0 -struct __forward_tag_reference_1582 * (____next_1585);// L0 +typedef struct ____anonymous_tag_766_767 __ldiv_t_770;// L105:L109 +struct ____anonymous_tag_771_772 { +long long int __quot_773;// L119 +long long int __rem_774;// L120 }; -typedef struct ____pthread_internal_list_1583 ____pthread_list_t_1586;// L75:L79 -typedef struct ____pthread_internal_list_1583 ____pthread_list_t_1587;// L75:L79 -struct ____pthread_mutex_s_1588 { -int ____lock_1589;// L94 -unsigned int ____count_1590;// L95 -int ____owner_1591;// L96 -unsigned int ____nusers_1592;// L98 -int ____kind_1593;// L102 -short ____spins_1594;// L104 -short ____elision_1595;// L105 -____pthread_list_t_1586 ____list_1596;// L0 -____pthread_list_t_1587 ____list_1597;// L0 -}; -union ____anonymous_tag_1598_1599 { -struct ____pthread_mutex_s_1588 ____data_1600;// L92 -char ____size_1601[40];// L126 -long int ____align_1602;// L127 -}; -typedef union ____anonymous_tag_1598_1599 __pthread_mutex_t_1603;// L90:L128 -union ____anonymous_tag_1604_1605 { -char ____size_1606[4];// L132 -int ____align_1607;// L133 -}; -typedef union ____anonymous_tag_1604_1605 __pthread_mutexattr_t_1608;// L130:L134 -typedef int (* (____compar_fn_t_1740)) (const void *, const void *);// L741 -typedef long int __ptrdiff_t_2036;// L143:L324 -typedef long unsigned int __size_t_2037;// L177:L209 -struct ____locale_struct_2137 { -struct __forward_tag_reference_2136 * (____locales_2138[13]);// L0 -const unsigned short int * (____ctype_b_2139);// L33 -const int * (____ctype_tolower_2140);// L34 -const int * (____ctype_toupper_2141);// L35 -const char * (____names_2142[13]);// L38 -}; -typedef struct ____locale_struct_2137 * (____locale_t_2143);// L27:L39 -typedef ____locale_t_2143 __locale_t_2144;// L42 +typedef struct ____anonymous_tag_771_772 __lldiv_t_775;// L117:L121 +typedef int (* (____compar_fn_t_876)) (const void *, const void *);// L741 struct __forward_tag_reference_89 { // generated union of struct variations union { @@ -2166,11 +1008,6 @@ struct ___IO_marker_90 ___IO_marker_90; }; }; -struct __forward_tag_reference_1582 { // generated union of struct variations -union { -}; -}; - struct __forward_tag_reference_58 { // generated union of struct variations union { struct ___IO_FILE_99 ___IO_FILE_99; @@ -2178,11 +1015,6 @@ struct ___IO_FILE_124 ___IO_FILE_124; }; }; -struct __forward_tag_reference_2136 { // generated union of struct variations -union { -}; -}; - struct __forward_tag_reference_87 { // generated union of struct variations union { }; @@ -2316,907 +1148,418 @@ extern void (___IO_free_backup_area_276) (___IO_FILE_171 *);// L469 extern void (___IO_free_backup_area_277) (___IO_FILE_172 *);// L469 // typedef moved to top of scope // typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern struct ___IO_FILE_99 * (__stdin_291);// L168 -extern struct ___IO_FILE_124 * (__stdin_292);// L168 -extern struct ___IO_FILE_99 * (__stdout_294);// L169 -extern struct ___IO_FILE_124 * (__stdout_295);// L169 -extern struct ___IO_FILE_99 * (__stderr_297);// L170 -extern struct ___IO_FILE_124 * (__stderr_298);// L170 -extern int (__remove_301) (const char * (____filename_300));// L178 -extern int (__rename_304) (const char * (____old_302), const char * (____new_303));// L180 -extern int (__renameat_309) (int ____oldfd_305, const char * (____old_306), int ____newfd_307, const char * (____new_308));// L185:L186 -extern __FILE_59 * ((__tmpfile_310) (void ));// L195 -extern __FILE_59 * ((__tmpfile_316) (void ));// L198 -extern __FILE_59 * ((__tmpfile_314) (void ));// L195 -extern __FILE_59 * ((__tmpfile_312) (void ));// L198 -extern char * ((__tmpnam_319) (char * (____s_318)));// L209 -extern char * ((__tmpnam_320) (char * (____s_318)));// L209 -extern char * ((__tmpnam_r_322) (char * (____s_321)));// L215 -extern char * ((__tmpnam_r_323) (char * (____s_321)));// L215 -extern char * ((__tempnam_326) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 -extern char * ((__tempnam_327) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 -extern int (__fclose_330) (__FILE_59 * (____stream_328));// L237 -extern int (__fclose_332) (__FILE_59 * (____stream_328));// L237 -extern int (__fflush_336) (__FILE_59 * (____stream_334));// L242 -extern int (__fflush_unlocked_340) (__FILE_59 * (____stream_338));// L252 -extern __FILE_59 * ((__fopen_344) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 -extern __FILE_59 * ((__fopen_346) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 -extern __FILE_59 * ((__fopen_354) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 -extern __FILE_59 * ((__fopen_356) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 -extern __FILE_59 * ((__freopen_362) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 -extern __FILE_59 * ((__freopen_368) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 -extern __FILE_59 * ((__freopen_366) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 -extern __FILE_59 * ((__freopen_364) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 -extern __FILE_59 * ((__fdopen_372) (int ____fd_370, const char * (____modes_371)));// L306 -extern __FILE_59 * ((__fdopen_374) (int ____fd_370, const char * (____modes_371)));// L306 -extern __FILE_59 * ((__fmemopen_379) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 -extern __FILE_59 * ((__fmemopen_381) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 -extern __FILE_59 * ((__open_memstream_385) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 -extern __FILE_59 * ((__open_memstream_387) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 -extern void (__setbuf_392) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 -extern void (__setbuf_394) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 -extern int (__setvbuf_401) (__FILE_59 * __restrict ____stream_396, char * __restrict ____buf_398, int ____modes_399, __size_t_1 ____n_400);// L336:L337 -extern void (__setbuffer_407) (__FILE_59 * __restrict ____stream_403, char * __restrict ____buf_405, __size_t_1 ____size_406);// L343:L344 -extern void (__setlinebuf_411) (__FILE_59 * (____stream_409));// L347 -extern int (__fprintf_416) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 -extern int (__fprintf_418) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 -extern int (__printf_421) (const char * __restrict ____format_420, ... );// L362 -extern int (__sprintf_424) (char * __restrict ____s_422, const char * __restrict ____format_423, ... );// L364:L365 -extern int (__vfprintf_430) (__FILE_59 * __restrict ____s_425, const char * __restrict ____format_427, ____gnuc_va_list_86 ____arg_428);// L371:L372 -extern int (__vprintf_437) (const char * __restrict ____format_434, ____gnuc_va_list_86 ____arg_435);// L377 -extern int (__vsprintf_443) (char * __restrict ____s_439, const char * __restrict ____format_440, ____gnuc_va_list_86 ____arg_441);// L379:L380 -extern int (__snprintf_448) (char * __restrict ____s_445, __size_t_1 ____maxlen_446, const char * __restrict ____format_447, ... );// L386:L388 -extern int (__vsnprintf_454) (char * __restrict ____s_449, __size_t_1 ____maxlen_450, const char * __restrict ____format_451, ____gnuc_va_list_86 ____arg_452);// L390:L392 -extern int (__vdprintf_460) (int ____fd_456, const char * __restrict ____fmt_457, ____gnuc_va_list_86 ____arg_458);// L412:L414 -extern int (__dprintf_464) (int ____fd_462, const char * __restrict ____fmt_463, ... );// L415:L416 -extern int (__fscanf_468) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__fscanf_470) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__fscanf_472) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__fscanf_474) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__scanf_477) (const char * __restrict ____format_476, ... );// L431 -extern int (__scanf_478) (const char * __restrict ____format_476, ... );// L431 -extern int (__sscanf_481) (const char * __restrict ____s_479, const char * __restrict ____format_480, ... );// L433:L434 - - - - - - - -extern int (__vfscanf_509) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 -extern int (__vfscanf_513) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 -extern int (__vscanf_520) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 -extern int (__vscanf_522) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 -extern int (__vsscanf_528) (const char * __restrict ____s_524, const char * __restrict ____format_525, ____gnuc_va_list_86 ____arg_526);// L483:L485 - - - - - -extern int (__fgetc_563) (__FILE_59 * (____stream_561));// L531 -extern int (__getc_567) (__FILE_59 * (____stream_565));// L532 -extern int (__getchar_569) (void );// L538 -extern int (__getc_unlocked_572) (__FILE_59 * (____stream_570));// L550 -extern int (__getchar_unlocked_574) (void );// L551 -extern int (__fgetc_unlocked_577) (__FILE_59 * (____stream_575));// L561 -extern int (__fputc_582) (int ____c_579, __FILE_59 * (____stream_580));// L573 -extern int (__fputc_584) (int ____c_579, __FILE_59 * (____stream_580));// L573 -extern int (__putc_589) (int ____c_586, __FILE_59 * (____stream_587));// L574 -extern int (__putchar_592) (int ____c_591);// L580 -extern int (__fputc_unlocked_596) (int ____c_593, __FILE_59 * (____stream_594));// L594 -extern int (__putc_unlocked_601) (int ____c_598, __FILE_59 * (____stream_599));// L602 -extern int (__putchar_unlocked_604) (int ____c_603);// L603 -extern int (__getw_607) (__FILE_59 * (____stream_605));// L610 -extern int (__putw_612) (int ____w_609, __FILE_59 * (____stream_610));// L613 -extern char * ((__fgets_618) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern char * ((__fgets_620) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern char * ((__fgets_622) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern char * ((__fgets_624) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern ____ssize_t_49 (____getdelim_631) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 -extern ____ssize_t_49 (____getdelim_635) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 -extern ____ssize_t_49 (__getdelim_644) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 -extern ____ssize_t_49 (__getdelim_648) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 -extern ____ssize_t_49 (__getline_656) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 -extern ____ssize_t_49 (__getline_660) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 -extern int (__fputs_667) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 -extern int (__fputs_669) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 -extern int (__puts_672) (const char * (____s_671));// L695 -extern int (__ungetc_676) (int ____c_673, __FILE_59 * (____stream_674));// L702 -extern int (__fseek_714) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 -extern int (__fseek_716) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 -extern long int (__ftell_720) (__FILE_59 * (____stream_718));// L754 -extern long int (__ftell_722) (__FILE_59 * (____stream_718));// L754 -extern void (__rewind_726) (__FILE_59 * (____stream_724));// L759 -extern int (__fseeko_733) (__FILE_59 * (____stream_728), ____off_t_23 ____off_730, int ____whence_732);// L773 -extern int (__fseeko_744) (__FILE_59 * (____stream_739), ____off64_t_24 ____off_741, int ____whence_743);// L781:L783 -extern ____off_t_23 (__ftello_758) (__FILE_59 * (____stream_737));// L778 -extern ____off_t_23 (__ftello_750) (__FILE_59 * (____stream_737));// L778 -extern int (__fgetpos_766) (__FILE_59 * __restrict ____stream_762, __fpos_t_287 * __restrict ____pos_764);// L798 -extern ____off64_t_24 (__ftello_754) (__FILE_59 * (____stream_748));// L784 -extern int (__fgetpos_778) (__FILE_59 * __restrict ____stream_774, __fpos_t_289 * __restrict ____pos_776);// L806:L807 -extern int (__fsetpos_786) (__FILE_59 * (____stream_770), const __fpos_t_287 * (____pos_772));// L803 -extern int (__fsetpos_790) (__FILE_59 * (____stream_782), const __fpos_t_289 * (____pos_784));// L808:L809 -extern void (__clearerr_796) (__FILE_59 * (____stream_794));// L826 -extern int (__feof_800) (__FILE_59 * (____stream_798));// L828 -extern int (__feof_802) (__FILE_59 * (____stream_798));// L828 -extern int (__ferror_806) (__FILE_59 * (____stream_804));// L830 -extern int (__ferror_808) (__FILE_59 * (____stream_804));// L830 -extern void (__clearerr_unlocked_812) (__FILE_59 * (____stream_810));// L835 -extern int (__feof_unlocked_816) (__FILE_59 * (____stream_814));// L836 -extern int (__feof_unlocked_818) (__FILE_59 * (____stream_814));// L836 -extern int (__ferror_unlocked_822) (__FILE_59 * (____stream_820));// L837 -extern int (__ferror_unlocked_824) (__FILE_59 * (____stream_820));// L837 -extern void (__perror_827) (const char * (____s_826));// L846 -extern void (__perror_828) (const char * (____s_826));// L846 -extern int __sys_nerr_829;// L26 - -extern int (__fileno_835) (__FILE_59 * (____stream_831));// L858 -extern int (__fileno_833) (__FILE_59 * (____stream_831));// L858 -extern int (__fileno_unlocked_841) (__FILE_59 * (____stream_837));// L863 -extern int (__fileno_unlocked_839) (__FILE_59 * (____stream_837));// L863 -extern __FILE_59 * ((__popen_845) (const char * (____command_843), const char * (____modes_844)));// L872 -extern __FILE_59 * ((__popen_847) (const char * (____command_843), const char * (____modes_844)));// L872 -extern int (__pclose_851) (__FILE_59 * (____stream_849));// L878 -extern char * ((__ctermid_854) (char * (____s_853)));// L884 -extern void (__flockfile_857) (__FILE_59 * (____stream_855));// L912 -extern int (__ftrylockfile_861) (__FILE_59 * (____stream_859));// L916 -extern int (__ftrylockfile_863) (__FILE_59 * (____stream_859));// L916 -extern void (__funlockfile_867) (__FILE_59 * (____stream_865));// L919 +extern struct ___IO_FILE_99 * (__stdin_283);// L168 +extern struct ___IO_FILE_124 * (__stdin_284);// L168 +extern struct ___IO_FILE_99 * (__stdout_286);// L169 +extern struct ___IO_FILE_124 * (__stdout_287);// L169 +extern struct ___IO_FILE_99 * (__stderr_289);// L170 +extern struct ___IO_FILE_124 * (__stderr_290);// L170 +extern int (__remove_293) (const char * (____filename_292));// L178 +extern int (__rename_296) (const char * (____old_294), const char * (____new_295));// L180 +extern __FILE_59 * ((__tmpfile_297) (void ));// L195 +extern __FILE_59 * ((__tmpfile_303) (void ));// L198 +extern __FILE_59 * ((__tmpfile_301) (void ));// L195 +extern __FILE_59 * ((__tmpfile_299) (void ));// L198 +extern char * ((__tmpnam_306) (char * (____s_305)));// L209 +extern char * ((__tmpnam_307) (char * (____s_305)));// L209 +extern int (__fclose_310) (__FILE_59 * (____stream_308));// L237 +extern int (__fflush_314) (__FILE_59 * (____stream_312));// L242 +extern __FILE_59 * ((__fopen_318) (const char * __restrict ____filename_316, const char * __restrict ____modes_317));// L272:L273 +extern __FILE_59 * ((__fopen_320) (const char * __restrict ____filename_316, const char * __restrict ____modes_317));// L272:L273 +extern __FILE_59 * ((__fopen_328) (const char * __restrict ____filename_326, const char * __restrict ____modes_327));// L283:L285 +extern __FILE_59 * ((__fopen_330) (const char * __restrict ____filename_326, const char * __restrict ____modes_327));// L283:L285 +extern __FILE_59 * ((__freopen_336) (const char * __restrict ____filename_322, const char * __restrict ____modes_323, __FILE_59 * __restrict ____stream_324));// L278:L280 +extern __FILE_59 * ((__freopen_342) (const char * __restrict ____filename_332, const char * __restrict ____modes_333, __FILE_59 * __restrict ____stream_334));// L286:L289 +extern __FILE_59 * ((__freopen_340) (const char * __restrict ____filename_322, const char * __restrict ____modes_323, __FILE_59 * __restrict ____stream_324));// L278:L280 +extern __FILE_59 * ((__freopen_338) (const char * __restrict ____filename_332, const char * __restrict ____modes_333, __FILE_59 * __restrict ____stream_334));// L286:L289 +extern void (__setbuf_347) (__FILE_59 * __restrict ____stream_344, char * __restrict ____buf_346);// L332 +extern int (__setvbuf_354) (__FILE_59 * __restrict ____stream_349, char * __restrict ____buf_351, int ____modes_352, __size_t_1 ____n_353);// L336:L337 +extern int (__fprintf_359) (__FILE_59 * __restrict ____stream_356, const char * __restrict ____format_358, ... );// L356:L357 +extern int (__printf_362) (const char * __restrict ____format_361, ... );// L362 +extern int (__sprintf_365) (char * __restrict ____s_363, const char * __restrict ____format_364, ... );// L364:L365 +extern int (__vfprintf_371) (__FILE_59 * __restrict ____s_366, const char * __restrict ____format_368, ____gnuc_va_list_86 ____arg_369);// L371:L372 +extern int (__vprintf_378) (const char * __restrict ____format_375, ____gnuc_va_list_86 ____arg_376);// L377 +extern int (__vsprintf_384) (char * __restrict ____s_380, const char * __restrict ____format_381, ____gnuc_va_list_86 ____arg_382);// L379:L380 +extern int (__snprintf_389) (char * __restrict ____s_386, __size_t_1 ____maxlen_387, const char * __restrict ____format_388, ... );// L386:L388 +extern int (__vsnprintf_395) (char * __restrict ____s_390, __size_t_1 ____maxlen_391, const char * __restrict ____format_392, ____gnuc_va_list_86 ____arg_393);// L390:L392 +extern int (__fscanf_400) (__FILE_59 * __restrict ____stream_397, const char * __restrict ____format_399, ... );// L425:L426 +extern int (__fscanf_402) (__FILE_59 * __restrict ____stream_397, const char * __restrict ____format_399, ... );// L425:L426 +extern int (__scanf_405) (const char * __restrict ____format_404, ... );// L431 +extern int (__scanf_406) (const char * __restrict ____format_404, ... );// L431 +extern int (__sscanf_409) (const char * __restrict ____s_407, const char * __restrict ____format_408, ... );// L433:L434 + + + + + +extern int (__vfscanf_433) (__FILE_59 * __restrict ____s_428, const char * __restrict ____format_430, ____gnuc_va_list_86 ____arg_431);// L471:L473 +extern int (__vfscanf_437) (__FILE_59 * __restrict ____s_428, const char * __restrict ____format_430, ____gnuc_va_list_86 ____arg_431);// L471:L473 +extern int (__vscanf_444) (const char * __restrict ____format_441, ____gnuc_va_list_86 ____arg_442);// L479:L480 +extern int (__vscanf_446) (const char * __restrict ____format_441, ____gnuc_va_list_86 ____arg_442);// L479:L480 +extern int (__vsscanf_452) (const char * __restrict ____s_448, const char * __restrict ____format_449, ____gnuc_va_list_86 ____arg_450);// L483:L485 + + + + + +extern int (__fgetc_487) (__FILE_59 * (____stream_485));// L531 +extern int (__getc_491) (__FILE_59 * (____stream_489));// L532 +extern int (__getchar_493) (void );// L538 +extern int (__fputc_497) (int ____c_494, __FILE_59 * (____stream_495));// L573 +extern int (__putc_502) (int ____c_499, __FILE_59 * (____stream_500));// L574 +extern int (__putchar_505) (int ____c_504);// L580 +extern char * ((__fgets_510) (char * __restrict ____s_506, int ____n_507, __FILE_59 * __restrict ____stream_508));// L622:L623 +extern char * ((__fgets_512) (char * __restrict ____s_506, int ____n_507, __FILE_59 * __restrict ____stream_508));// L622:L623 +extern int (__fputs_517) (const char * __restrict ____s_514, __FILE_59 * __restrict ____stream_515);// L689 +extern int (__puts_520) (const char * (____s_519));// L695 +extern int (__ungetc_524) (int ____c_521, __FILE_59 * (____stream_522));// L702 +extern int (__fseek_546) (__FILE_59 * (____stream_542), long int ____off_544, int ____whence_545);// L749 +extern long int (__ftell_550) (__FILE_59 * (____stream_548));// L754 +extern long int (__ftell_552) (__FILE_59 * (____stream_548));// L754 +extern void (__rewind_556) (__FILE_59 * (____stream_554));// L759 +extern int (__fgetpos_562) (__FILE_59 * __restrict ____stream_558, __fpos_t_279 * __restrict ____pos_560);// L798 +extern int (__fgetpos_574) (__FILE_59 * __restrict ____stream_570, __fpos_t_281 * __restrict ____pos_572);// L806:L807 +extern int (__fsetpos_582) (__FILE_59 * (____stream_566), const __fpos_t_279 * (____pos_568));// L803 +extern int (__fsetpos_586) (__FILE_59 * (____stream_578), const __fpos_t_281 * (____pos_580));// L808:L809 +extern void (__clearerr_592) (__FILE_59 * (____stream_590));// L826 +extern int (__feof_596) (__FILE_59 * (____stream_594));// L828 +extern int (__feof_598) (__FILE_59 * (____stream_594));// L828 +extern int (__ferror_602) (__FILE_59 * (____stream_600));// L830 +extern int (__ferror_604) (__FILE_59 * (____stream_600));// L830 +extern void (__perror_607) (const char * (____s_606));// L846 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ +extern int (____sprintf_chk_617) (char * __restrict ____s_613, int ____flag_614, __size_t_1 ____slen_615, const char * __restrict ____format_616, ... );// L23:L24 +extern int (____vsprintf_chk_624) (char * __restrict ____s_618, int ____flag_619, __size_t_1 ____slen_620, const char * __restrict ____format_621, ____gnuc_va_list_86 ____ap_622);// L25:L27 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ +extern int (____snprintf_chk_638) (char * __restrict ____s_633, __size_t_1 ____n_634, int ____flag_635, __size_t_1 ____slen_636, const char * __restrict ____format_637, ... );// L52:L54 +extern int (____vsnprintf_chk_646) (char * __restrict ____s_639, __size_t_1 ____n_640, int ____flag_641, __size_t_1 ____slen_642, const char * __restrict ____format_643, ____gnuc_va_list_86 ____ap_644);// L55:L57 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ +extern int (____fprintf_chk_661) (__FILE_59 * __restrict ____stream_657, int ____flag_659, const char * __restrict ____format_660, ... );// L85:L86 +extern int (____printf_chk_665) (int ____flag_663, const char * __restrict ____format_664, ... );// L87 +extern int (____vfprintf_chk_672) (__FILE_59 * __restrict ____stream_666, int ____flag_668, const char * __restrict ____format_669, ____gnuc_va_list_86 ____ap_670);// L88:L89 +extern int (____vprintf_chk_680) (int ____flag_676, const char * __restrict ____format_677, ____gnuc_va_list_86 ____ap_678);// L90:L91 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____sprintf_chk_899) (char * __restrict ____s_895, int ____flag_896, __size_t_1 ____slen_897, const char * __restrict ____format_898, ... );// L23:L24 -extern int (____vsprintf_chk_906) (char * __restrict ____s_900, int ____flag_901, __size_t_1 ____slen_902, const char * __restrict ____format_903, ____gnuc_va_list_86 ____ap_904);// L25:L27 +extern char * ((____fgets_chk_704) (char * __restrict ____s_699, __size_t_1 ____size_700, int ____n_701, __FILE_59 * __restrict ____stream_702));// L241:L242 +extern char * ((____fgets_chk_706) (char * __restrict ____s_699, __size_t_1 ____size_700, int ____n_701, __FILE_59 * __restrict ____stream_702));// L241:L242 +extern char * ((____fgets_alias_712) (char * __restrict ____s_708, int ____n_709, __FILE_59 * __restrict ____stream_710));// L243:L245 +extern char * ((____fgets_chk_warn_719) (char * __restrict ____s_714, __size_t_1 ____size_715, int ____n_716, __FILE_59 * __restrict ____stream_717));// L246:L250 /* no function due to type errors in the function prototype */ +// typedef moved to top of scope +// typedef moved to top of scope /* no function due to type errors in the function prototype */ -extern int (____snprintf_chk_920) (char * __restrict ____s_915, __size_t_1 ____n_916, int ____flag_917, __size_t_1 ____slen_918, const char * __restrict ____format_919, ... );// L52:L54 -extern int (____vsnprintf_chk_928) (char * __restrict ____s_921, __size_t_1 ____n_922, int ____flag_923, __size_t_1 ____slen_924, const char * __restrict ____format_925, ____gnuc_va_list_86 ____ap_926);// L55:L57 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern __size_t_1 (____ctype_get_mb_cur_max_776) (void );// L139 +extern __size_t_756 (____ctype_get_mb_cur_max_777) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_778) (void );// L139 +extern __size_t_756 (____ctype_get_mb_cur_max_779) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_780) (void );// L139 +extern __size_t_756 (____ctype_get_mb_cur_max_781) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_782) (void );// L139 +extern __size_t_756 (____ctype_get_mb_cur_max_783) (void );// L139 +extern double (__atof_785) (const char * (____nptr_784));// L144:L145 +extern double (__atof_786) (const char * (____nptr_784));// L144:L145 +extern int (__atoi_788) (const char * (____nptr_787));// L147:L148 +extern int (__atoi_789) (const char * (____nptr_787));// L147:L148 +extern long int (__atol_791) (const char * (____nptr_790));// L150:L151 +extern long int (__atol_792) (const char * (____nptr_790));// L150:L151 +extern long long int (__atoll_794) (const char * (____nptr_793));// L157:L158 +extern long long int (__atoll_795) (const char * (____nptr_793));// L157:L158 +extern double (__strtod_798) (const char * __restrict ____nptr_796, char * (* __restrict ____endptr_797));// L164:L166 +extern float (__strtof_801) (const char * __restrict ____nptr_799, char * (* __restrict ____endptr_800));// L172:L173 +extern long double (__strtold_804) (const char * __restrict ____nptr_802, char * (* __restrict ____endptr_803));// L175:L177 +extern long int (__strtol_808) (const char * __restrict ____nptr_805, char * (* __restrict ____endptr_806), int ____base_807);// L183:L185 +extern unsigned long int (__strtoul_812) (const char * __restrict ____nptr_809, char * (* __restrict ____endptr_810), int ____base_811);// L187:L189 +extern long long int (__strtoll_816) (const char * __restrict ____nptr_813, char * (* __restrict ____endptr_814), int ____base_815);// L209:L211 +extern unsigned long long int (__strtoull_820) (const char * __restrict ____nptr_817, char * (* __restrict ____endptr_818), int ____base_819);// L214:L216 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____fprintf_chk_943) (__FILE_59 * __restrict ____stream_939, int ____flag_941, const char * __restrict ____format_942, ... );// L85:L86 -extern int (____printf_chk_947) (int ____flag_945, const char * __restrict ____format_946, ... );// L87 -extern int (____vfprintf_chk_954) (__FILE_59 * __restrict ____stream_948, int ____flag_950, const char * __restrict ____format_951, ____gnuc_va_list_86 ____ap_952);// L88:L89 -extern int (____vprintf_chk_962) (int ____flag_958, const char * __restrict ____format_959, ____gnuc_va_list_86 ____ap_960);// L90:L91 +__extension__/* no function due to type errors in the function prototype */ +extern int (__rand_824) (void );// L374 +extern int (__rand_825) (void );// L374 +extern void (__srand_827) (unsigned int ____seed_826);// L376 +extern void * ((__malloc_830) (__size_t_1 ____size_828));// L466 +extern void * ((__malloc_831) (__size_t_756 ____size_829));// L466 +extern void * ((__malloc_832) (__size_t_1 ____size_828));// L466 +extern void * ((__malloc_833) (__size_t_756 ____size_829));// L466 +extern void * ((__calloc_838) (__size_t_1 ____nmemb_834, __size_t_1 ____size_836));// L468:L469 +extern void * ((__calloc_839) (__size_t_756 ____nmemb_835, __size_t_756 ____size_837));// L468:L469 +extern void * ((__calloc_840) (__size_t_1 ____nmemb_834, __size_t_1 ____size_836));// L468:L469 +extern void * ((__calloc_841) (__size_t_756 ____nmemb_835, __size_t_756 ____size_837));// L468:L469 +extern void * ((__realloc_845) (void * (____ptr_842), __size_t_1 ____size_843));// L480:L481 +extern void * ((__realloc_846) (void * (____ptr_842), __size_t_756 ____size_844));// L480:L481 +extern void * ((__realloc_847) (void * (____ptr_842), __size_t_1 ____size_843));// L480:L481 +extern void * ((__realloc_848) (void * (____ptr_842), __size_t_756 ____size_844));// L480:L481 +extern void (__free_850) (void * (____ptr_849));// L483 +extern void * ((__aligned_alloc_855) (__size_t_1 ____alignment_851, __size_t_1 ____size_853));// L509:L510 +extern void * ((__aligned_alloc_856) (__size_t_756 ____alignment_852, __size_t_756 ____size_854));// L509:L510 +extern void * ((__aligned_alloc_857) (__size_t_1 ____alignment_851, __size_t_1 ____size_853));// L509:L510 +extern void * ((__aligned_alloc_858) (__size_t_756 ____alignment_852, __size_t_756 ____size_854));// L509:L510 +extern void (__abort_859) (void );// L515 +extern int (__atexit_861) (void (* (____func_860)) (void ));// L519 +extern int (__at_quick_exit_863) (void (* (____func_862)) (void ));// L527 +extern void (__exit_865) (int ____status_864);// L543 +extern void (__quick_exit_867) (int ____status_866);// L549 +extern void (___Exit_869) (int ____status_868);// L557 +extern char * ((__getenv_871) (const char * (____name_870)));// L564 +extern char * ((__getenv_872) (const char * (____name_870)));// L564 +extern int (__system_874) (const char * (____command_873));// L716 +extern int (__system_875) (const char * (____command_873));// L716 +// typedef moved to top of scope +extern void * ((__bsearch_887) (const void * (____key_877), const void * (____base_878), __size_t_1 ____nmemb_879, __size_t_1 ____size_881, ____compar_fn_t_876 ____compar_883));// L754:L756 +extern void * ((__bsearch_888) (const void * (____key_877), const void * (____base_878), __size_t_756 ____nmemb_880, __size_t_756 ____size_882, ____compar_fn_t_876 ____compar_883));// L754:L756 +extern void * ((__bsearch_891) (const void * (____key_877), const void * (____base_878), __size_t_1 ____nmemb_879, __size_t_1 ____size_881, ____compar_fn_t_876 ____compar_883));// L754:L756 +extern void * ((__bsearch_892) (const void * (____key_877), const void * (____base_878), __size_t_756 ____nmemb_880, __size_t_756 ____size_882, ____compar_fn_t_876 ____compar_883));// L754:L756 /* no function due to type errors in the function prototype */ +extern void (__qsort_920) (void * (____base_913), __size_t_1 ____nmemb_914, __size_t_1 ____size_916, ____compar_fn_t_876 ____compar_918);// L764:L765 +extern void (__qsort_922) (void * (____base_913), __size_t_756 ____nmemb_915, __size_t_756 ____size_917, ____compar_fn_t_876 ____compar_918);// L764:L765 +extern void (__qsort_924) (void * (____base_913), __size_t_1 ____nmemb_914, __size_t_1 ____size_916, ____compar_fn_t_876 ____compar_918);// L764:L765 +extern void (__qsort_926) (void * (____base_913), __size_t_756 ____nmemb_915, __size_t_756 ____size_917, ____compar_fn_t_876 ____compar_918);// L764:L765 +extern int (__abs_929) (int ____x_928);// L774 +extern int (__abs_930) (int ____x_928);// L774 +extern long int (__labs_932) (long int ____x_931);// L775 +extern long int (__labs_933) (long int ____x_931);// L775 +extern long long int (__llabs_935) (long long int ____x_934);// L779:L780 +extern long long int (__llabs_936) (long long int ____x_934);// L779:L780 +extern __div_t_765 (__div_939) (int ____numer_937, int ____denom_938);// L788:L789 +extern __div_t_765 (__div_940) (int ____numer_937, int ____denom_938);// L788:L789 +extern __ldiv_t_770 (__ldiv_943) (long int ____numer_941, long int ____denom_942);// L790:L791 +extern __ldiv_t_770 (__ldiv_945) (long int ____numer_941, long int ____denom_942);// L790:L791 +extern __lldiv_t_775 (__lldiv_949) (long long int ____numer_947, long long int ____denom_948);// L796:L798 +extern __lldiv_t_775 (__lldiv_951) (long long int ____numer_947, long long int ____denom_948);// L796:L798 +extern int (__mblen_956) (const char * (____s_953), __size_t_1 ____n_954);// L862 +extern int (__mblen_957) (const char * (____s_953), __size_t_756 ____n_955);// L862 +extern int (__mbtowc_963) (__wchar_t_759 * __restrict ____pwc_958, const char * __restrict ____s_960, __size_t_1 ____n_961);// L865:L866 +extern int (__mbtowc_964) (__wchar_t_760 * __restrict ____pwc_959, const char * __restrict ____s_960, __size_t_1 ____n_961);// L865:L866 +extern int (__mbtowc_965) (__wchar_t_760 * __restrict ____pwc_959, const char * __restrict ____s_960, __size_t_756 ____n_962);// L865:L866 +extern int (__wctomb_969) (char * (____s_966), __wchar_t_759 ____wchar_967);// L869 +extern int (__wctomb_970) (char * (____s_966), __wchar_t_760 ____wchar_968);// L869 +extern __size_t_1 (__mbstowcs_976) (__wchar_t_759 * __restrict ____pwcs_971, const char * __restrict ____s_973, __size_t_1 ____n_974);// L873:L874 +extern __size_t_1 (__mbstowcs_977) (__wchar_t_760 * __restrict ____pwcs_972, const char * __restrict ____s_973, __size_t_1 ____n_974);// L873:L874 +extern __size_t_756 (__mbstowcs_978) (__wchar_t_760 * __restrict ____pwcs_972, const char * __restrict ____s_973, __size_t_756 ____n_975);// L873:L874 +extern __size_t_1 (__wcstombs_984) (char * __restrict ____s_979, const __wchar_t_759 * __restrict ____pwcs_980, __size_t_1 ____n_982);// L876:L878 +extern __size_t_1 (__wcstombs_985) (char * __restrict ____s_979, const __wchar_t_760 * __restrict ____pwcs_981, __size_t_1 ____n_982);// L876:L878 +extern __size_t_756 (__wcstombs_986) (char * __restrict ____s_979, const __wchar_t_760 * __restrict ____pwcs_981, __size_t_756 ____n_983);// L876:L878 /* no function due to type errors in the function prototype */ +extern char * ((____realpath_chk_992) (const char * __restrict ____name_988, char * __restrict ____resolved_989, __size_t_1 ____resolvedlen_990));// L23:L25 +extern char * ((____realpath_chk_993) (const char * __restrict ____name_988, char * __restrict ____resolved_989, __size_t_756 ____resolvedlen_991));// L23:L25 +extern char * ((____realpath_alias_996) (const char * __restrict ____name_994, char * __restrict ____resolved_995));// L26:L28 +extern char * ((____realpath_chk_warn_1001) (const char * __restrict ____name_997, char * __restrict ____resolved_998, __size_t_1 ____resolvedlen_999));// L29:L34 +extern char * ((____realpath_chk_warn_1002) (const char * __restrict ____name_997, char * __restrict ____resolved_998, __size_t_756 ____resolvedlen_1000));// L29:L34 /* no function due to type errors in the function prototype */ +extern int (____ptsname_r_chk_1012) (int ____fd_1006, char * (____buf_1007), __size_t_1 ____buflen_1008, __size_t_1 ____nreal_1010);// L52:L53 +extern int (____ptsname_r_chk_1013) (int ____fd_1006, char * (____buf_1007), __size_t_756 ____buflen_1009, __size_t_756 ____nreal_1011);// L52:L53 +extern int (____ptsname_r_alias_1018) (int ____fd_1014, char * (____buf_1015), __size_t_1 ____buflen_1016);// L54:L56 +extern int (____ptsname_r_alias_1019) (int ____fd_1014, char * (____buf_1015), __size_t_756 ____buflen_1017);// L54:L56 +extern int (____ptsname_r_chk_warn_1026) (int ____fd_1020, char * (____buf_1021), __size_t_1 ____buflen_1022, __size_t_1 ____nreal_1024);// L57:L61 +extern int (____ptsname_r_chk_warn_1027) (int ____fd_1020, char * (____buf_1021), __size_t_756 ____buflen_1023, __size_t_756 ____nreal_1025);// L57:L61 /* no function due to type errors in the function prototype */ -extern int (____dprintf_chk_984) (int ____fd_981, int ____flag_982, const char * __restrict ____fmt_983, ... );// L131:L132 -extern int (____vdprintf_chk_990) (int ____fd_985, int ____flag_986, const char * __restrict ____fmt_987, ____gnuc_va_list_86 ____arg_988);// L133:L135 +extern int (____wctomb_chk_1038) (char * (____s_1034), __wchar_t_760 ____wchar_1035, __size_t_1 ____buflen_1036);// L77:L78 +extern int (____wctomb_chk_1039) (char * (____s_1034), __wchar_t_760 ____wchar_1035, __size_t_756 ____buflen_1037);// L77:L78 +extern int (____wctomb_alias_1042) (char * (____s_1040), __wchar_t_760 ____wchar_1041);// L79:L80 /* no function due to type errors in the function prototype */ +extern __size_t_1 (____mbstowcs_chk_1051) (__wchar_t_760 * __restrict ____dst_1045, const char * __restrict ____src_1046, __size_t_1 ____len_1047, __size_t_1 ____dstlen_1049);// L98:L100 +extern __size_t_756 (____mbstowcs_chk_1052) (__wchar_t_760 * __restrict ____dst_1045, const char * __restrict ____src_1046, __size_t_756 ____len_1048, __size_t_756 ____dstlen_1050);// L98:L100 +extern __size_t_1 (____mbstowcs_alias_1057) (__wchar_t_760 * __restrict ____dst_1053, const char * __restrict ____src_1054, __size_t_1 ____len_1055);// L101:L104 +extern __size_t_756 (____mbstowcs_alias_1058) (__wchar_t_760 * __restrict ____dst_1053, const char * __restrict ____src_1054, __size_t_756 ____len_1056);// L101:L104 +extern __size_t_1 (____mbstowcs_chk_warn_1065) (__wchar_t_760 * __restrict ____dst_1059, const char * __restrict ____src_1060, __size_t_1 ____len_1061, __size_t_1 ____dstlen_1063);// L105:L110 +extern __size_t_756 (____mbstowcs_chk_warn_1066) (__wchar_t_760 * __restrict ____dst_1059, const char * __restrict ____src_1060, __size_t_756 ____len_1062, __size_t_756 ____dstlen_1064);// L105:L110 /* no function due to type errors in the function prototype */ -extern char * ((____fgets_chk_1004) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 -extern char * ((____fgets_chk_1006) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 -extern char * ((____fgets_chk_1008) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 -extern char * ((____fgets_alias_1014) (char * __restrict ____s_1010, int ____n_1011, __FILE_59 * __restrict ____stream_1012));// L243:L245 -extern char * ((____fgets_chk_warn_1021) (char * __restrict ____s_1016, __size_t_1 ____size_1017, int ____n_1018, __FILE_59 * __restrict ____stream_1019));// L246:L250 +extern __size_t_1 (____wcstombs_chk_1077) (char * __restrict ____dst_1071, const __wchar_t_760 * __restrict ____src_1072, __size_t_1 ____len_1073, __size_t_1 ____dstlen_1075);// L130:L132 +extern __size_t_756 (____wcstombs_chk_1078) (char * __restrict ____dst_1071, const __wchar_t_760 * __restrict ____src_1072, __size_t_756 ____len_1074, __size_t_756 ____dstlen_1076);// L130:L132 +extern __size_t_1 (____wcstombs_alias_1083) (char * __restrict ____dst_1079, const __wchar_t_760 * __restrict ____src_1080, __size_t_1 ____len_1081);// L133:L136 +extern __size_t_756 (____wcstombs_alias_1084) (char * __restrict ____dst_1079, const __wchar_t_760 * __restrict ____src_1080, __size_t_756 ____len_1082);// L133:L136 +extern __size_t_1 (____wcstombs_chk_warn_1091) (char * __restrict ____dst_1085, const __wchar_t_760 * __restrict ____src_1086, __size_t_1 ____len_1087, __size_t_1 ____dstlen_1089);// L137:L141 +extern __size_t_756 (____wcstombs_chk_warn_1092) (char * __restrict ____dst_1085, const __wchar_t_760 * __restrict ____src_1086, __size_t_756 ____len_1088, __size_t_756 ____dstlen_1090);// L137:L141 /* no function due to type errors in the function prototype */ +extern void * ((__memmove_1109) (void * (____dest_1105), const void * (____src_1106), __size_t_1 ____n_1107));// L46:L47 +extern void * ((__memmove_1110) (void * (____dest_1105), const void * (____src_1106), __size_t_756 ____n_1108));// L46:L47 +extern void * ((__memset_1115) (void * (____s_1111), int ____c_1112, __size_t_1 ____n_1113));// L62 +extern void * ((__memset_1116) (void * (____s_1111), int ____c_1112, __size_t_756 ____n_1114));// L62 +extern int (__memcmp_1121) (const void * (____s1_1117), const void * (____s2_1118), __size_t_1 ____n_1119);// L65:L66 +extern int (__memcmp_1122) (const void * (____s1_1117), const void * (____s2_1118), __size_t_756 ____n_1120);// L65:L66 +extern void * ((__memchr_1127) (const void * (____s_1123), int ____c_1124, __size_t_1 ____n_1125));// L92:L93 +extern void * ((__memchr_1128) (const void * (____s_1123), int ____c_1124, __size_t_756 ____n_1126));// L92:L93 +extern char * ((__strcpy_1131) (char * __restrict ____dest_1129, const char * __restrict ____src_1130));// L125:L126 +extern char * ((__strncpy_1136) (char * __restrict ____dest_1132, const char * __restrict ____src_1133, __size_t_1 ____n_1134));// L128:L130 +extern char * ((__strncpy_1137) (char * __restrict ____dest_1132, const char * __restrict ____src_1133, __size_t_756 ____n_1135));// L128:L130 +extern char * ((__strcat_1140) (char * __restrict ____dest_1138, const char * __restrict ____src_1139));// L133:L134 +extern char * ((__strncat_1145) (char * __restrict ____dest_1141, const char * __restrict ____src_1142, __size_t_1 ____n_1143));// L136:L137 +extern char * ((__strncat_1146) (char * __restrict ____dest_1141, const char * __restrict ____src_1142, __size_t_756 ____n_1144));// L136:L137 +extern int (__strcmp_1149) (const char * (____s1_1147), const char * (____s2_1148));// L140:L141 +extern int (__strncmp_1154) (const char * (____s1_1150), const char * (____s2_1151), __size_t_1 ____n_1152);// L143:L144 +extern int (__strncmp_1155) (const char * (____s1_1150), const char * (____s2_1151), __size_t_756 ____n_1153);// L143:L144 +extern int (__strcoll_1158) (const char * (____s1_1156), const char * (____s2_1157));// L147:L148 +extern __size_t_1 (__strxfrm_1163) (char * __restrict ____dest_1159, const char * __restrict ____src_1160, __size_t_1 ____n_1161);// L150:L152 +extern __size_t_756 (__strxfrm_1164) (char * __restrict ____dest_1159, const char * __restrict ____src_1160, __size_t_756 ____n_1162);// L150:L152 +extern char * ((__strchr_1167) (const char * (____s_1165), int ____c_1166));// L231:L232 +extern char * ((__strrchr_1170) (const char * (____s_1168), int ____c_1169));// L258:L259 +extern __size_t_1 (__strcspn_1173) (const char * (____s_1171), const char * (____reject_1172));// L280:L281 +extern __size_t_756 (__strcspn_1174) (const char * (____s_1171), const char * (____reject_1172));// L280:L281 +extern __size_t_1 (__strspn_1177) (const char * (____s_1175), const char * (____accept_1176));// L284:L285 +extern __size_t_756 (__strspn_1178) (const char * (____s_1175), const char * (____accept_1176));// L284:L285 +extern char * ((__strpbrk_1181) (const char * (____s_1179), const char * (____accept_1180)));// L310:L311 +extern char * ((__strstr_1184) (const char * (____haystack_1182), const char * (____needle_1183)));// L337:L338 +extern char * ((__strtok_1187) (char * __restrict ____s_1185, const char * __restrict ____delim_1186));// L343:L344 +extern char * ((____strtok_r_1191) (char * __restrict ____s_1188, const char * __restrict ____delim_1189, char * (* __restrict ____save_ptr_1190)));// L349:L352 +extern __size_t_1 (__strlen_1193) (const char * (____s_1192));// L394:L395 +extern __size_t_756 (__strlen_1194) (const char * (____s_1192));// L394:L395 +extern char * ((__strerror_1196) (int ____errnum_1195));// L408 +extern void (____bzero_1200) (void * (____s_1197), __size_t_1 ____n_1198);// L446 +extern void (____bzero_1201) (void * (____s_1197), __size_t_756 ____n_1199);// L446 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -static __inline unsigned int (____bswap_32_1158) (unsigned int ____bsx_1157) { +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +extern char * ((____stpncpy_chk_1235) (char * (____dest_1229), const char * (____src_1230), __size_t_1 ____n_1231, __size_t_1 ____destlen_1233));// L130:L131 +extern char * ((____stpncpy_chk_1236) (char * (____dest_1229), const char * (____src_1230), __size_t_756 ____n_1232, __size_t_756 ____destlen_1234));// L130:L131 +extern char * ((____stpncpy_alias_1241) (char * (____dest_1237), const char * (____src_1238), __size_t_1 ____n_1239));// L132:L133 +extern char * ((____stpncpy_alias_1242) (char * (____dest_1237), const char * (____src_1238), __size_t_756 ____n_1240));// L132:L133 +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +void (__make_device_1263) () { -if (__static_condition_default_1159) { +{ +if (__static_condition_default_1265) { { { -__static_type_error("invalid type found in return expression"); +char * (__val_1258);// L10 + +char * (__s_1259);// L11 + +char * (__p_1260);// L11 + +if (__static_condition_default_1266) { + __val_1258 = "mode - device permissions" ; // L12 +} +char * (__a_1261)= __val_1258 ;// L14 + +if (__static_condition_default_1267) { + __s_1259 = __strchr_1167 ( __val_1258 ,' ') ; // L15 +} +if (__static_condition_default_1268) { + __val_1258 = ( __s_1259 && __s_1259 [ 1 ] ) ? __s_1259 + 1 : ( ( void * ) 0 ) ; // L16:L395 +} } } } -} -static __inline ____uint64_t_13 (____bswap_64_1162) (____uint64_t_13 ____bsx_1160) { -if (__static_condition_default_1164) { +if (__static_condition_default_1269) { { { -__static_type_error("invalid type found in return expression"); -} -} +char * (__val_1258);// L10 + +char * (__s_1259);// L11 + +char * (__p_1260);// L11 + + __val_1258 = "mode - device permissions" ; // L12 +char * (__a_1261)= __val_1258 ;// L14 + + __s_1259 = __strchr_1167 ( __val_1258 ,' ') ; // L15 + __val_1258 = ( __s_1259 && __s_1259 [ 1 ] ) ? __s_1259 + 1 : ( ( void * ) 0 ) ; // L16:L395 +int __n_1262= 0;// L20 + + __s_1259 = __a_1261 ; // L21 +while ( * __s_1259 )// L23 +{ + +{ +{ -} -} -static __inline ____uint64_t_1112 (____bswap_64_1163) (____uint64_t_1112 ____bsx_1161) { -if (__static_condition_default_1165) { +* __p_1260 = * __s_1259 ; // L24 +if (__static_condition_default_1270) { +if ( rand( ) % 2 )// L26 +{ { { -__static_type_error("invalid type found in return expression"); + __n_1262 ++ ; // L27 + __p_1260 += __n_1262 - 1 ; // L28 +} +} } } +if (__static_condition_default_1271) { +if ( rand( ) % 2 )// L26 +{ + +{ +{ + + __n_1262 ++ ; // L27 + __p_1260 += __n_1262 - 1 ; // L28 } } -union __wait_1177 ;// L66 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern __size_t_1 (____ctype_get_mb_cur_max_1201) (void );// L139 -extern __size_t_1093 (____ctype_get_mb_cur_max_1202) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_1203) (void );// L139 -extern __size_t_1093 (____ctype_get_mb_cur_max_1204) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_1205) (void );// L139 -extern __size_t_1093 (____ctype_get_mb_cur_max_1206) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_1207) (void );// L139 -extern __size_t_1093 (____ctype_get_mb_cur_max_1208) (void );// L139 -extern double (__atof_1210) (const char * (____nptr_1209));// L144:L145 -extern double (__atof_1211) (const char * (____nptr_1209));// L144:L145 -extern int (__atoi_1213) (const char * (____nptr_1212));// L147:L148 -extern int (__atoi_1214) (const char * (____nptr_1212));// L147:L148 -extern long int (__atol_1216) (const char * (____nptr_1215));// L150:L151 -extern long int (__atol_1217) (const char * (____nptr_1215));// L150:L151 -extern long long int (__atoll_1219) (const char * (____nptr_1218));// L157:L158 -extern long long int (__atoll_1220) (const char * (____nptr_1218));// L157:L158 -extern double (__strtod_1223) (const char * __restrict ____nptr_1221, char * (* __restrict ____endptr_1222));// L164:L166 -extern float (__strtof_1226) (const char * __restrict ____nptr_1224, char * (* __restrict ____endptr_1225));// L172:L173 -extern long double (__strtold_1229) (const char * __restrict ____nptr_1227, char * (* __restrict ____endptr_1228));// L175:L177 -extern long int (__strtol_1233) (const char * __restrict ____nptr_1230, char * (* __restrict ____endptr_1231), int ____base_1232);// L183:L185 -extern unsigned long int (__strtoul_1237) (const char * __restrict ____nptr_1234, char * (* __restrict ____endptr_1235), int ____base_1236);// L187:L189 -extern long long int (__strtoq_1241) (const char * __restrict ____nptr_1238, char * (* __restrict ____endptr_1239), int ____base_1240);// L195:L197 -extern unsigned long long int (__strtouq_1245) (const char * __restrict ____nptr_1242, char * (* __restrict ____endptr_1243), int ____base_1244);// L200:L202 -extern long long int (__strtoll_1249) (const char * __restrict ____nptr_1246, char * (* __restrict ____endptr_1247), int ____base_1248);// L209:L211 -extern long long int (__strtoll_1250) (const char * __restrict ____nptr_1246, char * (* __restrict ____endptr_1247), int ____base_1248);// L209:L211 -extern unsigned long long int (__strtoull_1254) (const char * __restrict ____nptr_1251, char * (* __restrict ____endptr_1252), int ____base_1253);// L214:L216 -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -__extension__/* no function due to type errors in the function prototype */ -extern char * ((__l64a_1259) (long int ____n_1258));// L305 -extern char * ((__l64a_1260) (long int ____n_1258));// L305 -extern long int (__a64l_1262) (const char * (____s_1261));// L308:L309 -extern long int (__a64l_1263) (const char * (____s_1261));// L308:L309 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -static __inline unsigned int (____bswap_32_1452) (unsigned int ____bsx_1451) { - -if (__static_condition_default_1453) { - -{ -{ - - - -__static_type_error("invalid type found in return expression"); -} } - - -} -} -static __inline ____uint64_t_13 (____bswap_64_1456) (____uint64_t_13 ____bsx_1454) { - -if (__static_condition_default_1458) { - -{ -{ - - - -__static_type_error("invalid type found in return expression"); } + __p_1260 ++ ; // L31 + __s_1259 ++ ; // L32 } - - } } -static __inline ____uint64_t_1275 (____bswap_64_1457) (____uint64_t_1275 ____bsx_1455) { - -if (__static_condition_default_1459) { - -{ -{ - - - -__static_type_error("invalid type found in return expression"); } } } -} -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -struct __timespec_1466 ;// L120 -struct __timeval_1476 ;// L30 - -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern int (__select_1513) (int ____nfds_1502, __fd_set_1499 * __restrict ____readfds_1503, __fd_set_1499 * __restrict ____writefds_1505, __fd_set_1499 * __restrict ____exceptfds_1507, struct __timeval_1476 * __restrict ____timeout_1510);// L106:L109 -extern int (__select_1514) (int ____nfds_1502, __fd_set_1499 * __restrict ____readfds_1503, __fd_set_1499 * __restrict ____writefds_1505, __fd_set_1499 * __restrict ____exceptfds_1507, struct __forward_tag_reference_1509 * __restrict ____timeout_1512);// L106:L109 -extern int (__pselect_1529) (int ____nfds_1517, __fd_set_1499 * __restrict ____readfds_1518, __fd_set_1499 * __restrict ____writefds_1520, __fd_set_1499 * __restrict ____exceptfds_1522, const struct __timespec_1466 * __restrict ____timeout_1525, const ____sigset_t_1464 * __restrict ____sigmask_1528);// L118:L122 -extern int (__pselect_1530) (int ____nfds_1517, __fd_set_1499 * __restrict ____readfds_1518, __fd_set_1499 * __restrict ____writefds_1520, __fd_set_1499 * __restrict ____exceptfds_1522, const struct __forward_tag_reference_1524 * __restrict ____timeout_1527, const ____sigset_t_1464 * __restrict ____sigmask_1528);// L118:L122 -extern long int (____fdelt_chk_1534) (long int ____d_1533);// L24 -extern long int (____fdelt_warn_1536) (long int ____d_1535);// L25:L26 -extern unsigned int (__gnu_dev_major_1538) (unsigned long long int ____dev_1537);// L27:L28 -extern unsigned int (__gnu_dev_major_1539) (unsigned long long int ____dev_1537);// L27:L28 -extern unsigned int (__gnu_dev_minor_1541) (unsigned long long int ____dev_1540);// L30:L31 -extern unsigned long long int (__gnu_dev_makedev_1544) (unsigned int ____major_1542, unsigned int ____minor_1543);// L33:L35 -__extension__/* no function due to type errors in the function prototype */ -__extension__/* no function due to type errors in the function prototype */ -__extension__/* no function due to type errors in the function prototype */ -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -union __pthread_attr_t_1578 ;// L63 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern int (__rand_1609) (void );// L374 -extern void (__srand_1611) (unsigned int ____seed_1610);// L376 -extern int (__rand_r_1613) (unsigned int * (____seed_1612));// L381 -extern double (__drand48_1614) (void );// L389 -extern double (__erand48_1616) (unsigned short int ____xsubi_1615[3]);// L390 -extern long int (__lrand48_1617) (void );// L393 -extern long int (__nrand48_1619) (unsigned short int ____xsubi_1618[3]);// L394:L395 -extern long int (__mrand48_1620) (void );// L398 -extern long int (__jrand48_1622) (unsigned short int ____xsubi_1621[3]);// L399:L400 -extern void (__srand48_1624) (long int ____seedval_1623);// L403 -extern unsigned short int * ((__seed48_1626) (unsigned short int ____seed16v_1625[3]));// L404:L405 -extern void (__lcong48_1628) (unsigned short int ____param_1627[7]);// L406 -extern void * ((__malloc_1631) (__size_t_1 ____size_1629));// L466 -extern void * ((__malloc_1632) (__size_t_1093 ____size_1630));// L466 -extern void * ((__malloc_1633) (__size_t_1 ____size_1629));// L466 -extern void * ((__malloc_1634) (__size_t_1093 ____size_1630));// L466 -extern void * ((__calloc_1639) (__size_t_1 ____nmemb_1635, __size_t_1 ____size_1637));// L468:L469 -extern void * ((__calloc_1640) (__size_t_1093 ____nmemb_1636, __size_t_1093 ____size_1638));// L468:L469 -extern void * ((__calloc_1641) (__size_t_1 ____nmemb_1635, __size_t_1 ____size_1637));// L468:L469 -extern void * ((__calloc_1642) (__size_t_1093 ____nmemb_1636, __size_t_1093 ____size_1638));// L468:L469 -extern void * ((__realloc_1646) (void * (____ptr_1643), __size_t_1 ____size_1644));// L480:L481 -extern void * ((__realloc_1647) (void * (____ptr_1643), __size_t_1093 ____size_1645));// L480:L481 -extern void (__free_1649) (void * (____ptr_1648));// L483 -extern void (__cfree_1651) (void * (____ptr_1650));// L488 -extern void * ((__alloca_1654) (__size_t_1 ____size_1652));// L32 -extern void * ((__alloca_1655) (__size_t_1093 ____size_1653));// L32 -extern void * ((__valloc_1658) (__size_t_1 ____size_1656));// L498 -extern void * ((__valloc_1659) (__size_t_1093 ____size_1657));// L498 -extern void * ((__valloc_1660) (__size_t_1 ____size_1656));// L498 -extern void * ((__valloc_1661) (__size_t_1093 ____size_1657));// L498 -extern int (__posix_memalign_1667) (void * (* (____memptr_1662)), __size_t_1 ____alignment_1663, __size_t_1 ____size_1665);// L503:L504 -extern int (__posix_memalign_1668) (void * (* (____memptr_1662)), __size_t_1093 ____alignment_1664, __size_t_1093 ____size_1666);// L503:L504 -extern int (__posix_memalign_1669) (void * (* (____memptr_1662)), __size_t_1 ____alignment_1663, __size_t_1 ____size_1665);// L503:L504 -extern int (__posix_memalign_1670) (void * (* (____memptr_1662)), __size_t_1093 ____alignment_1664, __size_t_1093 ____size_1666);// L503:L504 -extern void * ((__aligned_alloc_1675) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 -extern void * ((__aligned_alloc_1676) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 -extern void * ((__aligned_alloc_1677) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 -extern void * ((__aligned_alloc_1678) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 -extern void * ((__aligned_alloc_1679) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 -extern void * ((__aligned_alloc_1680) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 -extern void * ((__aligned_alloc_1681) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 -extern void * ((__aligned_alloc_1682) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 -extern void (__abort_1683) (void );// L515 -extern int (__atexit_1685) (void (* (____func_1684)) (void ));// L519 -extern int (__at_quick_exit_1687) (void (* (____func_1686)) (void ));// L527 -extern int (__on_exit_1692) (void (* (____func_1690)) (int ____status_1688, void * (____arg_1689)), void * (____arg_1691));// L535:L536 -extern void (__exit_1694) (int ____status_1693);// L543 -extern void (__exit_1695) (int ____status_1693);// L543 -extern void (__quick_exit_1697) (int ____status_1696);// L549 -extern void (___Exit_1699) (int ____status_1698);// L557 -extern char * ((__getenv_1701) (const char * (____name_1700)));// L564 -extern char * ((__getenv_1702) (const char * (____name_1700)));// L564 -extern int (__putenv_1704) (char * (____string_1703));// L578 -extern int (__setenv_1708) (const char * (____name_1705), const char * (____value_1706), int ____replace_1707);// L584:L585 -extern int (__unsetenv_1710) (const char * (____name_1709));// L588 -extern int (__clearenv_1711) (void );// L595 -extern char * ((__mktemp_1713) (char * (____template_1712)));// L606 -extern int (__mkstemp_1716) (char * (____template_1714));// L619 -extern int (__mkstemp_1718) (char * (____template_1714));// L619 -extern int (__mkstemp_1717) (char * (____template_1715));// L622:L623 -extern int (__mkstemp_1719) (char * (____template_1715));// L622:L623 -extern int (__mkstemps_1724) (char * (____template_1720), int ____suffixlen_1721);// L641 -extern int (__mkstemps_1725) (char * (____template_1722), int ____suffixlen_1723);// L644:L645 -extern int (__mkstemps_1726) (char * (____template_1720), int ____suffixlen_1721);// L641 -extern int (__mkstemps_1727) (char * (____template_1722), int ____suffixlen_1723);// L644:L645 -extern char * ((__mkdtemp_1729) (char * (____template_1728)));// L662 -extern char * ((__mkdtemp_1730) (char * (____template_1728)));// L662 -extern int (__system_1732) (const char * (____command_1731));// L716 -extern int (__system_1733) (const char * (____command_1731));// L716 -extern int (__system_1734) (const char * (____command_1731));// L716 -extern int (__system_1735) (const char * (____command_1731));// L716 -extern char * ((__realpath_1738) (const char * __restrict ____name_1736, char * __restrict ____resolved_1737));// L733:L734 -extern char * ((__realpath_1739) (const char * __restrict ____name_1736, char * __restrict ____resolved_1737));// L733:L734 -// typedef moved to top of scope -extern void * ((__bsearch_1751) (const void * (____key_1741), const void * (____base_1742), __size_t_1 ____nmemb_1743, __size_t_1 ____size_1745, ____compar_fn_t_1740 ____compar_1747));// L754:L756 -extern void * ((__bsearch_1752) (const void * (____key_1741), const void * (____base_1742), __size_t_1093 ____nmemb_1744, __size_t_1093 ____size_1746, ____compar_fn_t_1740 ____compar_1747));// L754:L756 -extern void * ((__bsearch_1755) (const void * (____key_1741), const void * (____base_1742), __size_t_1 ____nmemb_1743, __size_t_1 ____size_1745, ____compar_fn_t_1740 ____compar_1747));// L754:L756 -extern void * ((__bsearch_1756) (const void * (____key_1741), const void * (____base_1742), __size_t_1093 ____nmemb_1744, __size_t_1093 ____size_1746, ____compar_fn_t_1740 ____compar_1747));// L754:L756 -/* no function due to type errors in the function prototype */ -extern void (__qsort_1784) (void * (____base_1777), __size_t_1 ____nmemb_1778, __size_t_1 ____size_1780, ____compar_fn_t_1740 ____compar_1782);// L764:L765 -extern void (__qsort_1786) (void * (____base_1777), __size_t_1093 ____nmemb_1779, __size_t_1093 ____size_1781, ____compar_fn_t_1740 ____compar_1782);// L764:L765 -extern void (__qsort_1788) (void * (____base_1777), __size_t_1 ____nmemb_1778, __size_t_1 ____size_1780, ____compar_fn_t_1740 ____compar_1782);// L764:L765 -extern void (__qsort_1790) (void * (____base_1777), __size_t_1093 ____nmemb_1779, __size_t_1093 ____size_1781, ____compar_fn_t_1740 ____compar_1782);// L764:L765 -extern int (__abs_1793) (int ____x_1792);// L774 -extern int (__abs_1794) (int ____x_1792);// L774 -extern long int (__labs_1796) (long int ____x_1795);// L775 -extern long int (__labs_1797) (long int ____x_1795);// L775 -extern long long int (__llabs_1799) (long long int ____x_1798);// L779:L780 -extern long long int (__llabs_1800) (long long int ____x_1798);// L779:L780 -extern __div_t_1190 (__div_1803) (int ____numer_1801, int ____denom_1802);// L788:L789 -extern __div_t_1190 (__div_1804) (int ____numer_1801, int ____denom_1802);// L788:L789 -extern __ldiv_t_1195 (__ldiv_1807) (long int ____numer_1805, long int ____denom_1806);// L790:L791 -extern __ldiv_t_1195 (__ldiv_1809) (long int ____numer_1805, long int ____denom_1806);// L790:L791 -extern __lldiv_t_1200 (__lldiv_1813) (long long int ____numer_1811, long long int ____denom_1812);// L796:L798 -extern __lldiv_t_1200 (__lldiv_1815) (long long int ____numer_1811, long long int ____denom_1812);// L796:L798 -extern char * ((__ecvt_1821) (double ____value_1817, int ____ndigit_1818, int * __restrict ____decpt_1819, int * __restrict ____sign_1820));// L811:L812 -extern char * ((__ecvt_1822) (double ____value_1817, int ____ndigit_1818, int * __restrict ____decpt_1819, int * __restrict ____sign_1820));// L811:L812 -extern char * ((__fcvt_1827) (double ____value_1823, int ____ndigit_1824, int * __restrict ____decpt_1825, int * __restrict ____sign_1826));// L817:L818 -extern char * ((__fcvt_1828) (double ____value_1823, int ____ndigit_1824, int * __restrict ____decpt_1825, int * __restrict ____sign_1826));// L817:L818 -extern char * ((__gcvt_1832) (double ____value_1829, int ____ndigit_1830, char * (____buf_1831)));// L823:L824 -extern char * ((__gcvt_1833) (double ____value_1829, int ____ndigit_1830, char * (____buf_1831)));// L823:L824 -extern char * ((__qecvt_1838) (long double ____value_1834, int ____ndigit_1835, int * __restrict ____decpt_1836, int * __restrict ____sign_1837));// L829:L831 -extern char * ((__qecvt_1839) (long double ____value_1834, int ____ndigit_1835, int * __restrict ____decpt_1836, int * __restrict ____sign_1837));// L829:L831 -extern char * ((__qfcvt_1844) (long double ____value_1840, int ____ndigit_1841, int * __restrict ____decpt_1842, int * __restrict ____sign_1843));// L832:L834 -extern char * ((__qfcvt_1845) (long double ____value_1840, int ____ndigit_1841, int * __restrict ____decpt_1842, int * __restrict ____sign_1843));// L832:L834 -extern char * ((__qgcvt_1849) (long double ____value_1846, int ____ndigit_1847, char * (____buf_1848)));// L835:L836 -extern char * ((__qgcvt_1850) (long double ____value_1846, int ____ndigit_1847, char * (____buf_1848)));// L835:L836 -extern int (__ecvt_r_1858) (double ____value_1851, int ____ndigit_1852, int * __restrict ____decpt_1853, int * __restrict ____sign_1854, char * __restrict ____buf_1855, __size_t_1 ____len_1856);// L841:L843 -extern int (__ecvt_r_1859) (double ____value_1851, int ____ndigit_1852, int * __restrict ____decpt_1853, int * __restrict ____sign_1854, char * __restrict ____buf_1855, __size_t_1093 ____len_1857);// L841:L843 -extern int (__fcvt_r_1867) (double ____value_1860, int ____ndigit_1861, int * __restrict ____decpt_1862, int * __restrict ____sign_1863, char * __restrict ____buf_1864, __size_t_1 ____len_1865);// L844:L846 -extern int (__fcvt_r_1868) (double ____value_1860, int ____ndigit_1861, int * __restrict ____decpt_1862, int * __restrict ____sign_1863, char * __restrict ____buf_1864, __size_t_1093 ____len_1866);// L844:L846 -extern int (__qecvt_r_1876) (long double ____value_1869, int ____ndigit_1870, int * __restrict ____decpt_1871, int * __restrict ____sign_1872, char * __restrict ____buf_1873, __size_t_1 ____len_1874);// L848:L851 -extern int (__qecvt_r_1877) (long double ____value_1869, int ____ndigit_1870, int * __restrict ____decpt_1871, int * __restrict ____sign_1872, char * __restrict ____buf_1873, __size_t_1093 ____len_1875);// L848:L851 -extern int (__qfcvt_r_1885) (long double ____value_1878, int ____ndigit_1879, int * __restrict ____decpt_1880, int * __restrict ____sign_1881, char * __restrict ____buf_1882, __size_t_1 ____len_1883);// L852:L855 -extern int (__qfcvt_r_1886) (long double ____value_1878, int ____ndigit_1879, int * __restrict ____decpt_1880, int * __restrict ____sign_1881, char * __restrict ____buf_1882, __size_t_1093 ____len_1884);// L852:L855 -extern int (__mblen_1890) (const char * (____s_1887), __size_t_1 ____n_1888);// L862 -extern int (__mblen_1891) (const char * (____s_1887), __size_t_1093 ____n_1889);// L862 -extern int (__mblen_1892) (const char * (____s_1887), __size_t_1 ____n_1888);// L862 -extern int (__mblen_1893) (const char * (____s_1887), __size_t_1093 ____n_1889);// L862 -extern int (__mbtowc_1898) (__wchar_t_1094 * __restrict ____pwc_1894, const char * __restrict ____s_1895, __size_t_1 ____n_1896);// L865:L866 -extern int (__mbtowc_1899) (__wchar_t_1094 * __restrict ____pwc_1894, const char * __restrict ____s_1895, __size_t_1093 ____n_1897);// L865:L866 -extern int (__wctomb_1902) (char * (____s_1900), __wchar_t_1094 ____wchar_1901);// L869 -extern __size_t_1 (__mbstowcs_1907) (__wchar_t_1094 * __restrict ____pwcs_1903, const char * __restrict ____s_1904, __size_t_1 ____n_1905);// L873:L874 -extern __size_t_1093 (__mbstowcs_1908) (__wchar_t_1094 * __restrict ____pwcs_1903, const char * __restrict ____s_1904, __size_t_1093 ____n_1906);// L873:L874 -extern __size_t_1 (__wcstombs_1913) (char * __restrict ____s_1909, const __wchar_t_1094 * __restrict ____pwcs_1910, __size_t_1 ____n_1911);// L876:L878 -extern __size_t_1093 (__wcstombs_1914) (char * __restrict ____s_1909, const __wchar_t_1094 * __restrict ____pwcs_1910, __size_t_1093 ____n_1912);// L876:L878 -extern int (__rpmatch_1917) (const char * (____response_1915));// L887 -extern int (__rpmatch_1916) (const char * (____response_1915));// L887 -extern int (__getsubopt_1922) (char * (* __restrict ____optionp_1918), char * const * __restrict ____tokens_1919, char * (* __restrict ____valuep_1920));// L898:L901 -extern int (__getsubopt_1921) (char * (* __restrict ____optionp_1918), char * const * __restrict ____tokens_1919, char * (* __restrict ____valuep_1920));// L898:L901 -extern int (__getloadavg_1925) (double ____loadavg_1923[], int ____nelem_1924);// L950:L951 -/* no function due to type errors in the function prototype */ -extern char * ((____realpath_chk_1931) (const char * __restrict ____name_1927, char * __restrict ____resolved_1928, __size_t_1 ____resolvedlen_1929));// L23:L25 -extern char * ((____realpath_chk_1932) (const char * __restrict ____name_1927, char * __restrict ____resolved_1928, __size_t_1093 ____resolvedlen_1930));// L23:L25 -extern char * ((____realpath_alias_1935) (const char * __restrict ____name_1933, char * __restrict ____resolved_1934));// L26:L28 -extern char * ((____realpath_chk_warn_1940) (const char * __restrict ____name_1936, char * __restrict ____resolved_1937, __size_t_1 ____resolvedlen_1938));// L29:L34 -extern char * ((____realpath_chk_warn_1941) (const char * __restrict ____name_1936, char * __restrict ____resolved_1937, __size_t_1093 ____resolvedlen_1939));// L29:L34 -/* no function due to type errors in the function prototype */ -extern int (____ptsname_r_chk_1951) (int ____fd_1945, char * (____buf_1946), __size_t_1 ____buflen_1947, __size_t_1 ____nreal_1949);// L52:L53 -extern int (____ptsname_r_chk_1952) (int ____fd_1945, char * (____buf_1946), __size_t_1093 ____buflen_1948, __size_t_1093 ____nreal_1950);// L52:L53 -extern int (____ptsname_r_alias_1957) (int ____fd_1953, char * (____buf_1954), __size_t_1 ____buflen_1955);// L54:L56 -extern int (____ptsname_r_alias_1958) (int ____fd_1953, char * (____buf_1954), __size_t_1093 ____buflen_1956);// L54:L56 -extern int (____ptsname_r_chk_warn_1965) (int ____fd_1959, char * (____buf_1960), __size_t_1 ____buflen_1961, __size_t_1 ____nreal_1963);// L57:L61 -extern int (____ptsname_r_chk_warn_1966) (int ____fd_1959, char * (____buf_1960), __size_t_1093 ____buflen_1962, __size_t_1093 ____nreal_1964);// L57:L61 -/* no function due to type errors in the function prototype */ -extern int (____wctomb_chk_1977) (char * (____s_1973), __wchar_t_1094 ____wchar_1974, __size_t_1 ____buflen_1975);// L77:L78 -extern int (____wctomb_chk_1978) (char * (____s_1973), __wchar_t_1094 ____wchar_1974, __size_t_1093 ____buflen_1976);// L77:L78 -extern int (____wctomb_alias_1981) (char * (____s_1979), __wchar_t_1094 ____wchar_1980);// L79:L80 -/* no function due to type errors in the function prototype */ -extern __size_t_1 (____mbstowcs_chk_1990) (__wchar_t_1094 * __restrict ____dst_1984, const char * __restrict ____src_1985, __size_t_1 ____len_1986, __size_t_1 ____dstlen_1988);// L98:L100 -extern __size_t_1093 (____mbstowcs_chk_1991) (__wchar_t_1094 * __restrict ____dst_1984, const char * __restrict ____src_1985, __size_t_1093 ____len_1987, __size_t_1093 ____dstlen_1989);// L98:L100 -extern __size_t_1 (____mbstowcs_alias_1996) (__wchar_t_1094 * __restrict ____dst_1992, const char * __restrict ____src_1993, __size_t_1 ____len_1994);// L101:L104 -extern __size_t_1093 (____mbstowcs_alias_1997) (__wchar_t_1094 * __restrict ____dst_1992, const char * __restrict ____src_1993, __size_t_1093 ____len_1995);// L101:L104 -extern __size_t_1 (____mbstowcs_chk_warn_2004) (__wchar_t_1094 * __restrict ____dst_1998, const char * __restrict ____src_1999, __size_t_1 ____len_2000, __size_t_1 ____dstlen_2002);// L105:L110 -extern __size_t_1093 (____mbstowcs_chk_warn_2005) (__wchar_t_1094 * __restrict ____dst_1998, const char * __restrict ____src_1999, __size_t_1093 ____len_2001, __size_t_1093 ____dstlen_2003);// L105:L110 -/* no function due to type errors in the function prototype */ -extern __size_t_1 (____wcstombs_chk_2016) (char * __restrict ____dst_2010, const __wchar_t_1094 * __restrict ____src_2011, __size_t_1 ____len_2012, __size_t_1 ____dstlen_2014);// L130:L132 -extern __size_t_1093 (____wcstombs_chk_2017) (char * __restrict ____dst_2010, const __wchar_t_1094 * __restrict ____src_2011, __size_t_1093 ____len_2013, __size_t_1093 ____dstlen_2015);// L130:L132 -extern __size_t_1 (____wcstombs_alias_2022) (char * __restrict ____dst_2018, const __wchar_t_1094 * __restrict ____src_2019, __size_t_1 ____len_2020);// L133:L136 -extern __size_t_1093 (____wcstombs_alias_2023) (char * __restrict ____dst_2018, const __wchar_t_1094 * __restrict ____src_2019, __size_t_1093 ____len_2021);// L133:L136 -extern __size_t_1 (____wcstombs_chk_warn_2030) (char * __restrict ____dst_2024, const __wchar_t_1094 * __restrict ____src_2025, __size_t_1 ____len_2026, __size_t_1 ____dstlen_2028);// L137:L141 -extern __size_t_1093 (____wcstombs_chk_warn_2031) (char * __restrict ____dst_2024, const __wchar_t_1094 * __restrict ____src_2025, __size_t_1093 ____len_2027, __size_t_1093 ____dstlen_2029);// L137:L141 -// typedef moved to top of scope -// typedef moved to top of scope -/* no function due to type errors in the function prototype */ -extern void * ((__memmove_2053) (void * (____dest_2048), const void * (____src_2049), __size_t_1 ____n_2050));// L46:L47 -extern void * ((__memmove_2054) (void * (____dest_2048), const void * (____src_2049), __size_t_1093 ____n_2051));// L46:L47 -extern void * ((__memmove_2055) (void * (____dest_2048), const void * (____src_2049), __size_t_2037 ____n_2052));// L46:L47 -extern void * ((__memset_2070) (void * (____s_2065), int ____c_2066, __size_t_1 ____n_2067));// L62 -extern void * ((__memset_2071) (void * (____s_2065), int ____c_2066, __size_t_1093 ____n_2068));// L62 -extern void * ((__memset_2072) (void * (____s_2065), int ____c_2066, __size_t_2037 ____n_2069));// L62 -extern void * ((__memset_2073) (void * (____s_2065), int ____c_2066, __size_t_1 ____n_2067));// L62 -extern void * ((__memset_2074) (void * (____s_2065), int ____c_2066, __size_t_1093 ____n_2068));// L62 -extern void * ((__memset_2075) (void * (____s_2065), int ____c_2066, __size_t_2037 ____n_2069));// L62 -extern int (__memcmp_2081) (const void * (____s1_2076), const void * (____s2_2077), __size_t_1 ____n_2078);// L65:L66 -extern int (__memcmp_2082) (const void * (____s1_2076), const void * (____s2_2077), __size_t_1093 ____n_2079);// L65:L66 -extern int (__memcmp_2083) (const void * (____s1_2076), const void * (____s2_2077), __size_t_2037 ____n_2080);// L65:L66 -extern void * ((__memchr_2089) (const void * (____s_2084), int ____c_2085, __size_t_1 ____n_2086));// L92:L93 -extern void * ((__memchr_2090) (const void * (____s_2084), int ____c_2085, __size_t_1093 ____n_2087));// L92:L93 -extern void * ((__memchr_2091) (const void * (____s_2084), int ____c_2085, __size_t_2037 ____n_2088));// L92:L93 -extern char * ((__strcpy_2094) (char * __restrict ____dest_2092, const char * __restrict ____src_2093));// L125:L126 -extern char * ((__strncpy_2100) (char * __restrict ____dest_2095, const char * __restrict ____src_2096, __size_t_1 ____n_2097));// L128:L130 -extern char * ((__strncpy_2101) (char * __restrict ____dest_2095, const char * __restrict ____src_2096, __size_t_1093 ____n_2098));// L128:L130 -extern char * ((__strncpy_2102) (char * __restrict ____dest_2095, const char * __restrict ____src_2096, __size_t_2037 ____n_2099));// L128:L130 -extern char * ((__strcat_2105) (char * __restrict ____dest_2103, const char * __restrict ____src_2104));// L133:L134 -extern char * ((__strncat_2111) (char * __restrict ____dest_2106, const char * __restrict ____src_2107, __size_t_1 ____n_2108));// L136:L137 -extern char * ((__strncat_2112) (char * __restrict ____dest_2106, const char * __restrict ____src_2107, __size_t_1093 ____n_2109));// L136:L137 -extern char * ((__strncat_2113) (char * __restrict ____dest_2106, const char * __restrict ____src_2107, __size_t_2037 ____n_2110));// L136:L137 -extern int (__strcmp_2116) (const char * (____s1_2114), const char * (____s2_2115));// L140:L141 -extern int (__strncmp_2122) (const char * (____s1_2117), const char * (____s2_2118), __size_t_1 ____n_2119);// L143:L144 -extern int (__strncmp_2123) (const char * (____s1_2117), const char * (____s2_2118), __size_t_1093 ____n_2120);// L143:L144 -extern int (__strncmp_2124) (const char * (____s1_2117), const char * (____s2_2118), __size_t_2037 ____n_2121);// L143:L144 -extern int (__strcoll_2127) (const char * (____s1_2125), const char * (____s2_2126));// L147:L148 -extern __size_t_1 (__strxfrm_2133) (char * __restrict ____dest_2128, const char * __restrict ____src_2129, __size_t_1 ____n_2130);// L150:L152 -extern __size_t_1093 (__strxfrm_2134) (char * __restrict ____dest_2128, const char * __restrict ____src_2129, __size_t_1093 ____n_2131);// L150:L152 -extern __size_t_2037 (__strxfrm_2135) (char * __restrict ____dest_2128, const char * __restrict ____src_2129, __size_t_2037 ____n_2132);// L150:L152 -// typedef moved to top of scope -// typedef moved to top of scope -extern int (__strcoll_l_2148) (const char * (____s1_2145), const char * (____s2_2146), ____locale_t_2143 ____l_2147);// L162:L163 -extern __size_t_1 (__strxfrm_l_2155) (char * (____dest_2149), const char * (____src_2150), __size_t_1 ____n_2151, ____locale_t_2143 ____l_2154);// L165:L166 -extern __size_t_1093 (__strxfrm_l_2156) (char * (____dest_2149), const char * (____src_2150), __size_t_1093 ____n_2152, ____locale_t_2143 ____l_2154);// L165:L166 -extern __size_t_2037 (__strxfrm_l_2157) (char * (____dest_2149), const char * (____src_2150), __size_t_2037 ____n_2153, ____locale_t_2143 ____l_2154);// L165:L166 -extern char * ((__strdup_2159) (const char * (____s_2158)));// L171:L172 -extern char * ((__strndup_2164) (const char * (____string_2160), __size_t_1 ____n_2161));// L179:L180 -extern char * ((__strndup_2165) (const char * (____string_2160), __size_t_1093 ____n_2162));// L179:L180 -extern char * ((__strndup_2166) (const char * (____string_2160), __size_t_2037 ____n_2163));// L179:L180 -extern char * ((__strchr_2169) (const char * (____s_2167), int ____c_2168));// L231:L232 -extern char * ((__strrchr_2172) (const char * (____s_2170), int ____c_2171));// L258:L259 -extern __size_t_1 (__strcspn_2175) (const char * (____s_2173), const char * (____reject_2174));// L280:L281 -extern __size_t_1093 (__strcspn_2176) (const char * (____s_2173), const char * (____reject_2174));// L280:L281 -extern __size_t_2037 (__strcspn_2177) (const char * (____s_2173), const char * (____reject_2174));// L280:L281 -extern __size_t_1 (__strspn_2180) (const char * (____s_2178), const char * (____accept_2179));// L284:L285 -extern __size_t_1093 (__strspn_2181) (const char * (____s_2178), const char * (____accept_2179));// L284:L285 -extern __size_t_2037 (__strspn_2182) (const char * (____s_2178), const char * (____accept_2179));// L284:L285 -extern char * ((__strpbrk_2185) (const char * (____s_2183), const char * (____accept_2184)));// L310:L311 -extern char * ((__strstr_2188) (const char * (____haystack_2186), const char * (____needle_2187)));// L337:L338 -extern char * ((__strtok_2191) (char * __restrict ____s_2189, const char * __restrict ____delim_2190));// L343:L344 -extern char * ((____strtok_r_2195) (char * __restrict ____s_2192, const char * __restrict ____delim_2193, char * (* __restrict ____save_ptr_2194)));// L349:L352 -extern char * ((__strtok_r_2199) (char * __restrict ____s_2196, const char * __restrict ____delim_2197, char * (* __restrict ____save_ptr_2198)));// L354:L356 -extern __size_t_1 (__strlen_2201) (const char * (____s_2200));// L394:L395 -extern __size_t_1093 (__strlen_2202) (const char * (____s_2200));// L394:L395 -extern __size_t_2037 (__strlen_2203) (const char * (____s_2200));// L394:L395 -extern __size_t_1 (__strlen_2204) (const char * (____s_2200));// L394:L395 -extern __size_t_1093 (__strlen_2205) (const char * (____s_2200));// L394:L395 -extern __size_t_2037 (__strlen_2206) (const char * (____s_2200));// L394:L395 -extern __size_t_1 (__strnlen_2211) (const char * (____string_2207), __size_t_1 ____maxlen_2208);// L401:L402 -extern __size_t_1093 (__strnlen_2212) (const char * (____string_2207), __size_t_1093 ____maxlen_2209);// L401:L402 -extern __size_t_2037 (__strnlen_2213) (const char * (____string_2207), __size_t_2037 ____maxlen_2210);// L401:L402 -extern char * ((__strerror_2215) (int ____errnum_2214));// L408 -extern char * ((__strerror_2216) (int ____errnum_2214));// L408 -extern int (__strerror_r_2222) (int ____errnum_2217, char * (____buf_2218), __size_t_1 ____buflen_2219);// L422:L424 -extern int (__strerror_r_2223) (int ____errnum_2217, char * (____buf_2218), __size_t_1093 ____buflen_2220);// L422:L424 -extern int (__strerror_r_2224) (int ____errnum_2217, char * (____buf_2218), __size_t_2037 ____buflen_2221);// L422:L424 -extern char * ((__strerror_l_2227) (int ____errnum_2225, ____locale_t_2143 ____l_2226));// L440 -extern void (____bzero_2232) (void * (____s_2228), __size_t_1 ____n_2229);// L446 -extern void (____bzero_2233) (void * (____s_2228), __size_t_1093 ____n_2230);// L446 -extern void (____bzero_2234) (void * (____s_2228), __size_t_2037 ____n_2231);// L446 -extern void (____bzero_2235) (void * (____s_2228), __size_t_1 ____n_2229);// L446 -extern void (____bzero_2236) (void * (____s_2228), __size_t_1093 ____n_2230);// L446 -extern void (____bzero_2237) (void * (____s_2228), __size_t_2037 ____n_2231);// L446 -extern void (__bcopy_2243) (const void * (____src_2238), void * (____dest_2239), __size_t_1 ____n_2240);// L450:L451 -extern void (__bcopy_2244) (const void * (____src_2238), void * (____dest_2239), __size_t_1093 ____n_2241);// L450:L451 -extern void (__bcopy_2245) (const void * (____src_2238), void * (____dest_2239), __size_t_2037 ____n_2242);// L450:L451 -extern void (__bzero_2250) (void * (____s_2246), __size_t_1 ____n_2247);// L454 -extern void (__bzero_2251) (void * (____s_2246), __size_t_1093 ____n_2248);// L454 -extern void (__bzero_2252) (void * (____s_2246), __size_t_2037 ____n_2249);// L454 -extern int (__bcmp_2258) (const void * (____s1_2253), const void * (____s2_2254), __size_t_1 ____n_2255);// L457:L458 -extern int (__bcmp_2259) (const void * (____s1_2253), const void * (____s2_2254), __size_t_1093 ____n_2256);// L457:L458 -extern int (__bcmp_2260) (const void * (____s1_2253), const void * (____s2_2254), __size_t_2037 ____n_2257);// L457:L458 -extern char * ((__index_2263) (const char * (____s_2261), int ____c_2262));// L484:L485 -extern char * ((__rindex_2266) (const char * (____s_2264), int ____c_2265));// L512:L513 -extern int (__ffs_2268) (int ____i_2267);// L518 -extern int (__strcasecmp_2271) (const char * (____s1_2269), const char * (____s2_2270));// L529:L530 -extern int (__strncasecmp_2277) (const char * (____s1_2272), const char * (____s2_2273), __size_t_1 ____n_2274);// L533:L534 -extern int (__strncasecmp_2278) (const char * (____s1_2272), const char * (____s2_2273), __size_t_1093 ____n_2275);// L533:L534 -extern int (__strncasecmp_2279) (const char * (____s1_2272), const char * (____s2_2273), __size_t_2037 ____n_2276);// L533:L534 -extern char * ((__strsep_2282) (char * (* __restrict ____stringp_2280), const char * __restrict ____delim_2281));// L552:L554 -extern char * ((__strsignal_2284) (int ____sig_2283));// L559 -extern char * ((____stpcpy_2287) (char * __restrict ____dest_2285, const char * __restrict ____src_2286));// L562:L563 -extern char * ((__stpcpy_2290) (char * __restrict ____dest_2288, const char * __restrict ____src_2289));// L564:L565 -extern char * ((____stpncpy_2296) (char * __restrict ____dest_2291, const char * __restrict ____src_2292, __size_t_1 ____n_2293));// L569:L571 -extern char * ((____stpncpy_2297) (char * __restrict ____dest_2291, const char * __restrict ____src_2292, __size_t_1093 ____n_2294));// L569:L571 -extern char * ((____stpncpy_2298) (char * __restrict ____dest_2291, const char * __restrict ____src_2292, __size_t_2037 ____n_2295));// L569:L571 -extern char * ((__stpncpy_2304) (char * __restrict ____dest_2299, const char * __restrict ____src_2300, __size_t_1 ____n_2301));// L572:L574 -extern char * ((__stpncpy_2305) (char * __restrict ____dest_2299, const char * __restrict ____src_2300, __size_t_1093 ____n_2302));// L572:L574 -extern char * ((__stpncpy_2306) (char * __restrict ____dest_2299, const char * __restrict ____src_2300, __size_t_2037 ____n_2303));// L572:L574 -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -extern char * ((____stpncpy_chk_2360) (char * (____dest_2352), const char * (____src_2353), __size_t_1 ____n_2354, __size_t_1 ____destlen_2357));// L130:L131 -extern char * ((____stpncpy_chk_2361) (char * (____dest_2352), const char * (____src_2353), __size_t_1093 ____n_2355, __size_t_1093 ____destlen_2358));// L130:L131 -extern char * ((____stpncpy_chk_2362) (char * (____dest_2352), const char * (____src_2353), __size_t_2037 ____n_2356, __size_t_2037 ____destlen_2359));// L130:L131 -extern char * ((____stpncpy_alias_2368) (char * (____dest_2363), const char * (____src_2364), __size_t_1 ____n_2365));// L132:L133 -extern char * ((____stpncpy_alias_2369) (char * (____dest_2363), const char * (____src_2364), __size_t_1093 ____n_2366));// L132:L133 -extern char * ((____stpncpy_alias_2370) (char * (____dest_2363), const char * (____src_2364), __size_t_2037 ____n_2367));// L132:L133 -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -void (__make_device_2395) () { +}} +void (__make_device_1264) () { { -if (__static_condition_default_2397) { +if (__static_condition_default_1272) { { { -char * (__val_2390);// L10 +char * (__val_1258);// L10 -char * (__s_2391);// L11 +char * (__s_1259);// L11 -char * (__p_2392);// L11 +char * (__p_1260);// L11 -if (__static_condition_default_2398) { - __val_2390 = "mode - device permissions" ; // L12 +if (__static_condition_default_1273) { + __val_1258 = "mode - device permissions" ; // L12 } -char * (__a_2393)= __val_2390 ;// L14 +char * (__a_1261)= __val_1258 ;// L14 -if (__static_condition_default_2399) { - __s_2391 = __strchr_2169 ( __val_2390 ,' ') ; // L15 +if (__static_condition_default_1274) { + __s_1259 = __strchr_1167 ( __val_1258 ,' ') ; // L15 } -if (__static_condition_default_2400) { - __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 +if (__static_condition_default_1275) { + __val_1258 = ( __s_1259 && __s_1259 [ 1 ] ) ? __s_1259 + 1 : ( ( void * ) 0 ) ; // L16:L395 } } } @@ -3224,30 +1567,28 @@ if (__static_condition_default_2400) { } -if (__static_condition_default_2401) { +if (__static_condition_default_1276) { { { -char * (__val_2390);// L10 +char * (__val_1258);// L10 -char * (__s_2391);// L11 +char * (__s_1259);// L11 -char * (__p_2392);// L11 +char * (__p_1260);// L11 - __val_2390 = "mode - device permissions" ; // L12 -char * (__a_2393)= __val_2390 ;// L14 + __val_1258 = "mode - device permissions" ; // L12 +char * (__a_1261)= __val_1258 ;// L14 -if (__static_condition_default_2402) { - __s_2391 = __strchr_2169 ( __val_2390 ,' ') ; // L15 -} - __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 -int __n_2394= 0;// L20 + __s_1259 = __strchr_1167 ( __val_1258 ,' ') ; // L15 + __val_1258 = ( __s_1259 && __s_1259 [ 1 ] ) ? __s_1259 + 1 : ( ( void * ) 0 ) ; // L16:L395 +int __n_1262= 0;// L20 - __s_2391 = __a_2393 ; // L21 -while ( * __s_2391 )// L23 + __s_1259 = __a_1261 ; // L21 +while ( * __s_1259 )// L23 { { @@ -3255,8 +1596,8 @@ while ( * __s_2391 )// L23 -* __p_2392 = * __s_2391 ; // L24 -if (__static_condition_default_2403) { +* __p_1260 = * __s_1259 ; // L24 +if (__static_condition_default_1277) { if ( rand( ) % 2 )// L26 { @@ -3265,93 +1606,13 @@ if ( rand( ) % 2 )// L26 - __n_2394 ++ ; // L27 - __p_2392 += __n_2394 - 1 ; // L28 -} + __n_1262 ++ ; // L27 + __p_1260 += __n_1262 - 1 ; // L28 } } } -if (__static_condition_default_2404) { -__static_type_error("invalid type found in if statement"); } - __p_2392 ++ ; // L31 - __s_2391 ++ ; // L32 -} -} -} -} -} - - -} - -}} -void (__make_device_2396) () { - -{ -if (__static_condition_default_2405) { - -{ -{ - - - -char * (__val_2390);// L10 - -char * (__s_2391);// L11 - -char * (__p_2392);// L11 - -if (__static_condition_default_2406) { - __val_2390 = "mode - device permissions" ; // L12 -} -char * (__a_2393)= __val_2390 ;// L14 - -if (__static_condition_default_2407) { - __s_2391 = __strchr_2169 ( __val_2390 ,' ') ; // L15 -} -if (__static_condition_default_2408) { - __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 -} -} -} - - -} - -if (__static_condition_default_2409) { - -{ -{ - - - -char * (__val_2390);// L10 - -char * (__s_2391);// L11 - -char * (__p_2392);// L11 - - __val_2390 = "mode - device permissions" ; // L12 -char * (__a_2393)= __val_2390 ;// L14 - -if (__static_condition_default_2410) { - __s_2391 = __strchr_2169 ( __val_2390 ,' ') ; // L15 -} - __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 -int __n_2394= 0;// L20 - - __s_2391 = __a_2393 ; // L21 -while ( * __s_2391 )// L23 -{ - -{ -{ - - - -* __p_2392 = * __s_2391 ; // L24 -if (__static_condition_default_2411) { +if (__static_condition_default_1278) { if ( rand( ) % 2 )// L26 { @@ -3360,17 +1621,14 @@ if ( rand( ) % 2 )// L26 - __n_2394 ++ ; // L27 - __p_2392 += __n_2394 - 1 ; // L28 + __n_1262 ++ ; // L27 + __p_1260 += __n_1262 - 1 ; // L28 } } } } -if (__static_condition_default_2412) { -__static_type_error("invalid type found in if statement"); -} - __p_2392 ++ ; // L31 - __s_2391 ++ ; // L32 + __p_1260 ++ ; // L31 + __s_1259 ++ ; // L32 } } } @@ -3381,26 +1639,34 @@ __static_type_error("invalid type found in if statement"); } }} -int (__main_2415) (int __argc_2413, char * (* (__argv_2414))) { +int (__main_1281) (int __argc_1279, char * (* (__argv_1280))) { { { -if (__static_condition_default_2416) { +if (__static_condition_default_1282) { if ( rand( ) % 2 )// L43 { -if (__static_condition_default_2417) { - __make_device_2395 ( ) ; // L44 +if (__static_condition_default_1283) { + __make_device_1263 ( ) ; // L44 +} +if (__static_condition_default_1284) { + __make_device_1264 ( ) ; // L44 } -if (__static_condition_default_2418) { - __make_device_2396 ( ) ; // L44 } } +if (__static_condition_default_1285) { +if ( rand( ) % 2 )// L43 +{ +if (__static_condition_default_1286) { + __make_device_1263 ( ) ; // L44 +} +if (__static_condition_default_1287) { + __make_device_1264 ( ) ; // L44 +} } -if (__static_condition_default_2419) { -__static_type_error("invalid type found in if statement"); } return 0 ;// L45 } diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.clangres index b91364d7..0568aaee 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.clangres @@ -1,43 +1,37 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3213:1: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] -char * (__a_2393)= __val_2390 ;// L14 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1451:1: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] +char * (__a_1261)= __val_1258 ;// L14 ^~~~~~~~~~~~~~~~~ ~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3213:10: warning: Value stored to '__a_2393' during its initialization is never read [deadcode.DeadStores] -char * (__a_2393)= __val_2390 ;// L14 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1451:10: warning: Value stored to '__a_1261' during its initialization is never read [deadcode.DeadStores] +char * (__a_1261)= __val_1258 ;// L14 ^~~~~~~~ ~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3219:2: warning: Value stored to '__val_2390' is never read [deadcode.DeadStores] - __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1457:2: warning: Value stored to '__val_1258' is never read [deadcode.DeadStores] + __val_1258 = ( __s_1259 && __s_1259 [ 1 ] ) ? __s_1259 + 1 : ( ( void * ) 0 ) ; // L16:L395 ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3219:19: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] - __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1457:19: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] + __val_1258 = ( __s_1259 && __s_1259 [ 1 ] ) ? __s_1259 + 1 : ( ( void * ) 0 ) ; // L16:L395 ^~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3246:2: warning: Value stored to '__val_2390' is never read [deadcode.DeadStores] - __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1482:2: warning: Value stored to '__val_1258' is never read [deadcode.DeadStores] + __val_1258 = ( __s_1259 && __s_1259 [ 1 ] ) ? __s_1259 + 1 : ( ( void * ) 0 ) ; // L16:L395 ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3246:19: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] - __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 - ^~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3258:14: warning: Dereference of undefined pointer value [core.NullDereference] -* __p_2392 = * __s_2391 ; // L24 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1494:14: warning: Dereference of undefined pointer value [core.NullDereference] +* __p_1260 = * __s_1259 ; // L24 ~~~~~~~~~~~~~^~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3308:1: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] -char * (__a_2393)= __val_2390 ;// L14 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1556:1: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] +char * (__a_1261)= __val_1258 ;// L14 ^~~~~~~~~~~~~~~~~ ~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3308:10: warning: Value stored to '__a_2393' during its initialization is never read [deadcode.DeadStores] -char * (__a_2393)= __val_2390 ;// L14 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1556:10: warning: Value stored to '__a_1261' during its initialization is never read [deadcode.DeadStores] +char * (__a_1261)= __val_1258 ;// L14 ^~~~~~~~ ~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3314:2: warning: Value stored to '__val_2390' is never read [deadcode.DeadStores] - __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1562:2: warning: Value stored to '__val_1258' is never read [deadcode.DeadStores] + __val_1258 = ( __s_1259 && __s_1259 [ 1 ] ) ? __s_1259 + 1 : ( ( void * ) 0 ) ; // L16:L395 ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3314:19: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] - __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1562:19: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] + __val_1258 = ( __s_1259 && __s_1259 [ 1 ] ) ? __s_1259 + 1 : ( ( void * ) 0 ) ; // L16:L395 ^~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3341:2: warning: Value stored to '__val_2390' is never read [deadcode.DeadStores] - __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1587:2: warning: Value stored to '__val_1258' is never read [deadcode.DeadStores] + __val_1258 = ( __s_1259 && __s_1259 [ 1 ] ) ? __s_1259 + 1 : ( ( void * ) 0 ) ; // L16:L395 ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3341:19: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] - __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 - ^~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3353:14: warning: Dereference of undefined pointer value [core.NullDereference] -* __p_2392 = * __s_2391 ; // L24 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1599:14: warning: Dereference of undefined pointer value [core.NullDereference] +* __p_1260 = * __s_1259 ; // L24 ~~~~~~~~~~~~~^~~~~~~~~~~~~ -14 warnings generated. +12 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.inferres index ab7a9b6e..6a93a88d 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.inferres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.inferres @@ -1,51 +1,51 @@ -BUSYBOX/b62bd7b261b.desugared.c:3213: error: Dead Store - The value written to &__a_2393 (type char*) is never used. - 3211. __val_2390 = "mode - device permissions" ; // L12 - 3212. } - 3213. char * (__a_2393)= __val_2390 ;// L14 +BUSYBOX/b62bd7b261b.desugared.c:1451: error: Dead Store + The value written to &__a_1261 (type char*) is never used. + 1449. __val_1258 = "mode - device permissions" ; // L12 + 1450. } + 1451. char * (__a_1261)= __val_1258 ;// L14 ^ - 3214. - 3215. if (__static_condition_default_2399) { + 1452. + 1453. if (__static_condition_default_1267) { -BUSYBOX/b62bd7b261b.desugared.c:3219: error: Dead Store - The value written to &__val_2390 (type char*) is never used. - 3217. } - 3218. if (__static_condition_default_2400) { - 3219. __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 +BUSYBOX/b62bd7b261b.desugared.c:1457: error: Dead Store + The value written to &__val_1258 (type char*) is never used. + 1455. } + 1456. if (__static_condition_default_1268) { + 1457. __val_1258 = ( __s_1259 && __s_1259 [ 1 ] ) ? __s_1259 + 1 : ( ( void * ) 0 ) ; // L16:L395 ^ - 3220. } - 3221. } + 1458. } + 1459. } -BUSYBOX/b62bd7b261b.desugared.c:3246: error: Dead Store - The value written to &__val_2390 (type char*) is never used. - 3244. __s_2391 = __strchr_2169 ( __val_2390 ,' ') ; // L15 - 3245. } - 3246. __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 +BUSYBOX/b62bd7b261b.desugared.c:1482: error: Dead Store + The value written to &__val_1258 (type char*) is never used. + 1480. + 1481. __s_1259 = __strchr_1167 ( __val_1258 ,' ') ; // L15 + 1482. __val_1258 = ( __s_1259 && __s_1259 [ 1 ] ) ? __s_1259 + 1 : ( ( void * ) 0 ) ; // L16:L395 ^ - 3247. int __n_2394= 0;// L20 - 3248. + 1483. int __n_1262= 0;// L20 + 1484. -BUSYBOX/b62bd7b261b.desugared.c:3269: error: Uninitialized Value - The value read from __p_2392 was never initialized. - 3267. - 3268. __n_2394 ++ ; // L27 - 3269. __p_2392 += __n_2394 - 1 ; // L28 +BUSYBOX/b62bd7b261b.desugared.c:1505: error: Uninitialized Value + The value read from __p_1260 was never initialized. + 1503. + 1504. __n_1262 ++ ; // L27 + 1505. __p_1260 += __n_1262 - 1 ; // L28 ^ - 3270. } - 3271. } + 1506. } + 1507. } -BUSYBOX/b62bd7b261b.desugared.c:3277: error: Uninitialized Value - The value read from __p_2392 was never initialized. - 3275. __static_type_error("invalid type found in if statement"); - 3276. } - 3277. __p_2392 ++ ; // L31 +BUSYBOX/b62bd7b261b.desugared.c:1520: error: Uninitialized Value + The value read from __p_1260 was never initialized. + 1518. + 1519. __n_1262 ++ ; // L27 + 1520. __p_1260 += __n_1262 - 1 ; // L28 ^ - 3278. __s_2391 ++ ; // L32 - 3279. } + 1521. } + 1522. } -Found 20 issues (console output truncated to 5, see '/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/infer-out/report.txt' for the full list) +Found 18 issues (console output truncated to 5, see '/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/infer-out/report.txt' for the full list) Issue Type(ISSUED_TYPE_ID): # - Uninitialized Value(UNINITIALIZED_VALUE): 14 + Uninitialized Value(UNINITIALIZED_VALUE): 12 Dead Store(DEAD_STORE): 6 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.desugared.c index 1fe304fd..00fff96b 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.desugared.c @@ -7,1299 +7,251 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_349; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_234; -extern const bool __static_condition_default_378; -extern const bool __static_condition_default_279; -extern const bool __static_condition_default_273; -extern const bool __static_condition_default_581; -extern const bool __static_condition_default_67; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_361; -extern const bool __static_condition_default_252; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_240; -extern const bool __static_condition_default_302; -extern const bool __static_condition_default_426; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_429; -extern const bool __static_condition_default_394; -extern const bool __static_condition_default_595; -extern const bool __static_condition_default_60; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_579; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_805; -extern const bool __static_condition_default_414; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_604; -extern const bool __static_condition_default_808; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_627; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_305; -extern const bool __static_condition_default_308; -extern const bool __static_condition_default_285; -extern const bool __static_condition_default_379; -extern const bool __static_condition_default_423; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_352; -extern const bool __static_condition_default_420; -extern const bool __static_condition_default_243; -extern const bool __static_condition_default_276; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_629; +extern const bool __static_condition_default_109; +extern const bool __static_condition_default_151; +extern const bool __static_condition_default_190; +extern const bool __static_condition_default_130; +extern const bool __static_condition_default_149; +extern const bool __static_condition_default_132; +extern const bool __static_condition_default_107; extern const bool __static_condition_default_261; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_594; -extern const bool __static_condition_default_237; -extern const bool __static_condition_default_804; -extern const bool __static_condition_default_325; -extern const bool __static_condition_default_806; -extern const bool __static_condition_default_215; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_157; +extern const bool __static_condition_default_260; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_262; +extern const bool __static_condition_default_155; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_122; +extern const bool __static_condition_default_259; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); __static_renaming("__wchar_t_2", "wchar_t"); -__static_renaming("__idtype_t_8", "idtype_t"); -__static_renaming("____u_char_9", "__u_char"); -__static_renaming("____u_short_10", "__u_short"); -__static_renaming("____u_int_11", "__u_int"); -__static_renaming("____u_long_12", "__u_long"); -__static_renaming("____int8_t_13", "__int8_t"); -__static_renaming("____uint8_t_14", "__uint8_t"); -__static_renaming("____int16_t_15", "__int16_t"); -__static_renaming("____uint16_t_16", "__uint16_t"); -__static_renaming("____int32_t_17", "__int32_t"); -__static_renaming("____uint32_t_18", "__uint32_t"); -__static_renaming("____int64_t_19", "__int64_t"); -__static_renaming("____uint64_t_20", "__uint64_t"); -__static_renaming("____quad_t_21", "__quad_t"); -__static_renaming("____u_quad_t_22", "__u_quad_t"); -__static_renaming("____dev_t_23", "__dev_t"); -__static_renaming("____uid_t_24", "__uid_t"); -__static_renaming("____gid_t_25", "__gid_t"); -__static_renaming("____ino_t_26", "__ino_t"); -__static_renaming("____ino64_t_27", "__ino64_t"); -__static_renaming("____mode_t_28", "__mode_t"); -__static_renaming("____nlink_t_29", "__nlink_t"); -__static_renaming("____off_t_30", "__off_t"); -__static_renaming("____off64_t_31", "__off64_t"); -__static_renaming("____pid_t_32", "__pid_t"); -__static_renaming("____fsid_t_36", "__fsid_t"); -__static_renaming("____clock_t_37", "__clock_t"); -__static_renaming("____rlim_t_38", "__rlim_t"); -__static_renaming("____rlim64_t_39", "__rlim64_t"); -__static_renaming("____id_t_40", "__id_t"); -__static_renaming("____time_t_41", "__time_t"); -__static_renaming("____useconds_t_42", "__useconds_t"); -__static_renaming("____suseconds_t_43", "__suseconds_t"); -__static_renaming("____daddr_t_44", "__daddr_t"); -__static_renaming("____key_t_45", "__key_t"); -__static_renaming("____clockid_t_46", "__clockid_t"); -__static_renaming("____timer_t_47", "__timer_t"); -__static_renaming("____blksize_t_48", "__blksize_t"); -__static_renaming("____blkcnt_t_49", "__blkcnt_t"); -__static_renaming("____blkcnt64_t_50", "__blkcnt64_t"); -__static_renaming("____fsblkcnt_t_51", "__fsblkcnt_t"); -__static_renaming("____fsblkcnt64_t_52", "__fsblkcnt64_t"); -__static_renaming("____fsfilcnt_t_53", "__fsfilcnt_t"); -__static_renaming("____fsfilcnt64_t_54", "__fsfilcnt64_t"); -__static_renaming("____fsword_t_55", "__fsword_t"); -__static_renaming("____ssize_t_56", "__ssize_t"); -__static_renaming("____syscall_slong_t_57", "__syscall_slong_t"); -__static_renaming("____syscall_ulong_t_58", "__syscall_ulong_t"); -__static_renaming("____loff_t_59", "__loff_t"); -__static_renaming("____qaddr_t_61", "__qaddr_t"); -__static_renaming("____caddr_t_62", "__caddr_t"); -__static_renaming("____intptr_t_63", "__intptr_t"); -__static_renaming("____socklen_t_64", "__socklen_t"); -__static_renaming("____bswap_32_66", "__bswap_32"); -__static_renaming("____bswap_64_69", "__bswap_64"); -__static_renaming("____WAIT_STATUS_89", "__WAIT_STATUS"); -__static_renaming("__div_t_94", "div_t"); -__static_renaming("__ldiv_t_99", "ldiv_t"); -__static_renaming("__lldiv_t_104", "lldiv_t"); -__static_renaming("____ctype_get_mb_cur_max_105", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_106", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_107", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_108", "__ctype_get_mb_cur_max"); -__static_renaming("__atof_110", "atof"); -__static_renaming("__atof_111", "atof"); -__static_renaming("__atoi_113", "atoi"); -__static_renaming("__atoi_114", "atoi"); -__static_renaming("__atol_116", "atol"); -__static_renaming("__atol_117", "atol"); -__static_renaming("__atoll_119", "atoll"); -__static_renaming("__atoll_120", "atoll"); -__static_renaming("__strtod_123", "strtod"); -__static_renaming("__strtof_126", "strtof"); -__static_renaming("__strtold_129", "strtold"); -__static_renaming("__strtol_133", "strtol"); -__static_renaming("__strtoul_137", "strtoul"); -__static_renaming("__strtoq_141", "strtoq"); -__static_renaming("__strtouq_145", "strtouq"); -__static_renaming("__strtoll_149", "strtoll"); -__static_renaming("__strtoll_150", "strtoll"); -__static_renaming("__strtoull_154", "strtoull"); -__static_renaming("__l64a_159", "l64a"); -__static_renaming("__l64a_160", "l64a"); -__static_renaming("__a64l_162", "a64l"); -__static_renaming("__a64l_163", "a64l"); -__static_renaming("____u_char_164", "__u_char"); -__static_renaming("____u_short_165", "__u_short"); -__static_renaming("____u_int_166", "__u_int"); -__static_renaming("____u_long_167", "__u_long"); -__static_renaming("____int8_t_168", "__int8_t"); -__static_renaming("____uint8_t_169", "__uint8_t"); -__static_renaming("____int16_t_170", "__int16_t"); -__static_renaming("____uint16_t_171", "__uint16_t"); -__static_renaming("____int32_t_172", "__int32_t"); -__static_renaming("____uint32_t_173", "__uint32_t"); -__static_renaming("____int64_t_174", "__int64_t"); -__static_renaming("____uint64_t_175", "__uint64_t"); -__static_renaming("____quad_t_176", "__quad_t"); -__static_renaming("____u_quad_t_177", "__u_quad_t"); -__static_renaming("____dev_t_178", "__dev_t"); -__static_renaming("____uid_t_179", "__uid_t"); -__static_renaming("____gid_t_180", "__gid_t"); -__static_renaming("____ino_t_181", "__ino_t"); -__static_renaming("____ino64_t_182", "__ino64_t"); -__static_renaming("____mode_t_183", "__mode_t"); -__static_renaming("____nlink_t_184", "__nlink_t"); -__static_renaming("____off_t_185", "__off_t"); -__static_renaming("____off64_t_186", "__off64_t"); -__static_renaming("____pid_t_187", "__pid_t"); -__static_renaming("____fsid_t_191", "__fsid_t"); -__static_renaming("____clock_t_192", "__clock_t"); -__static_renaming("____rlim_t_193", "__rlim_t"); -__static_renaming("____rlim64_t_194", "__rlim64_t"); -__static_renaming("____id_t_195", "__id_t"); -__static_renaming("____time_t_196", "__time_t"); -__static_renaming("____useconds_t_197", "__useconds_t"); -__static_renaming("____suseconds_t_198", "__suseconds_t"); -__static_renaming("____daddr_t_199", "__daddr_t"); -__static_renaming("____key_t_200", "__key_t"); -__static_renaming("____clockid_t_201", "__clockid_t"); -__static_renaming("____timer_t_202", "__timer_t"); -__static_renaming("____blksize_t_203", "__blksize_t"); -__static_renaming("____blkcnt_t_204", "__blkcnt_t"); -__static_renaming("____blkcnt64_t_205", "__blkcnt64_t"); -__static_renaming("____fsblkcnt_t_206", "__fsblkcnt_t"); -__static_renaming("____fsblkcnt64_t_207", "__fsblkcnt64_t"); -__static_renaming("____fsfilcnt_t_208", "__fsfilcnt_t"); -__static_renaming("____fsfilcnt64_t_209", "__fsfilcnt64_t"); -__static_renaming("____fsword_t_210", "__fsword_t"); -__static_renaming("____ssize_t_211", "__ssize_t"); -__static_renaming("____syscall_slong_t_212", "__syscall_slong_t"); -__static_renaming("____syscall_ulong_t_213", "__syscall_ulong_t"); -__static_renaming("____loff_t_214", "__loff_t"); -__static_renaming("____qaddr_t_216", "__qaddr_t"); -__static_renaming("____caddr_t_217", "__caddr_t"); -__static_renaming("____intptr_t_218", "__intptr_t"); -__static_renaming("____socklen_t_219", "__socklen_t"); -__static_renaming("__u_char_220", "u_char"); -__static_renaming("__u_char_221", "u_char"); -__static_renaming("__u_short_222", "u_short"); -__static_renaming("__u_short_223", "u_short"); -__static_renaming("__u_int_224", "u_int"); -__static_renaming("__u_int_225", "u_int"); -__static_renaming("__u_long_226", "u_long"); -__static_renaming("__u_long_227", "u_long"); -__static_renaming("__quad_t_228", "quad_t"); -__static_renaming("__quad_t_229", "quad_t"); -__static_renaming("__u_quad_t_230", "u_quad_t"); -__static_renaming("__u_quad_t_231", "u_quad_t"); -__static_renaming("__fsid_t_232", "fsid_t"); -__static_renaming("__fsid_t_233", "fsid_t"); -__static_renaming("__loff_t_235", "loff_t"); -__static_renaming("__loff_t_236", "loff_t"); -__static_renaming("__loff_t_238", "loff_t"); -__static_renaming("__loff_t_239", "loff_t"); -__static_renaming("__ino_t_241", "ino_t"); -__static_renaming("__ino_t_242", "ino_t"); -__static_renaming("__ino_t_244", "ino_t"); -__static_renaming("__ino_t_245", "ino_t"); -__static_renaming("__dev_t_247", "dev_t"); -__static_renaming("__dev_t_248", "dev_t"); -__static_renaming("__gid_t_250", "gid_t"); -__static_renaming("__gid_t_251", "gid_t"); -__static_renaming("__gid_t_253", "gid_t"); -__static_renaming("__gid_t_254", "gid_t"); -__static_renaming("__mode_t_256", "mode_t"); -__static_renaming("__mode_t_257", "mode_t"); -__static_renaming("__nlink_t_259", "nlink_t"); -__static_renaming("__nlink_t_260", "nlink_t"); -__static_renaming("__uid_t_262", "uid_t"); -__static_renaming("__uid_t_263", "uid_t"); -__static_renaming("__uid_t_265", "uid_t"); -__static_renaming("__uid_t_266", "uid_t"); -__static_renaming("__off_t_268", "off_t"); -__static_renaming("__off_t_269", "off_t"); -__static_renaming("__off_t_271", "off_t"); -__static_renaming("__off_t_272", "off_t"); -__static_renaming("__pid_t_274", "pid_t"); -__static_renaming("__pid_t_275", "pid_t"); -__static_renaming("__pid_t_277", "pid_t"); -__static_renaming("__pid_t_278", "pid_t"); -__static_renaming("__id_t_280", "id_t"); -__static_renaming("__id_t_281", "id_t"); -__static_renaming("__ssize_t_283", "ssize_t"); -__static_renaming("__ssize_t_284", "ssize_t"); -__static_renaming("__daddr_t_286", "daddr_t"); -__static_renaming("__daddr_t_287", "daddr_t"); -__static_renaming("__caddr_t_289", "caddr_t"); -__static_renaming("__caddr_t_290", "caddr_t"); -__static_renaming("__key_t_291", "key_t"); -__static_renaming("__key_t_292", "key_t"); -__static_renaming("__key_t_294", "key_t"); -__static_renaming("__key_t_295", "key_t"); -__static_renaming("__clock_t_297", "clock_t"); -__static_renaming("__clock_t_298", "clock_t"); -__static_renaming("__time_t_300", "time_t"); -__static_renaming("__time_t_301", "time_t"); -__static_renaming("__clockid_t_303", "clockid_t"); -__static_renaming("__clockid_t_304", "clockid_t"); -__static_renaming("__timer_t_306", "timer_t"); -__static_renaming("__timer_t_307", "timer_t"); -__static_renaming("__ulong_309", "ulong"); -__static_renaming("__ulong_310", "ulong"); -__static_renaming("__ulong_311", "ulong"); -__static_renaming("__ushort_312", "ushort"); -__static_renaming("__uint_313", "uint"); -__static_renaming("__int8_t_314", "int8_t"); -__static_renaming("__int16_t_315", "int16_t"); -__static_renaming("__int32_t_316", "int32_t"); -__static_renaming("__int64_t_317", "int64_t"); -__static_renaming("__u_int8_t_318", "u_int8_t"); -__static_renaming("__u_int16_t_319", "u_int16_t"); -__static_renaming("__u_int32_t_320", "u_int32_t"); -__static_renaming("__u_int64_t_321", "u_int64_t"); -__static_renaming("__register_t_322", "register_t"); -__static_renaming("____bswap_32_324", "__bswap_32"); -__static_renaming("____bswap_64_327", "__bswap_64"); -__static_renaming("____sig_atomic_t_328", "__sig_atomic_t"); -__static_renaming("____sigset_t_332", "__sigset_t"); -__static_renaming("__sigset_t_333", "sigset_t"); -__static_renaming("__suseconds_t_350", "suseconds_t"); -__static_renaming("__suseconds_t_351", "suseconds_t"); -__static_renaming("____fd_mask_353", "__fd_mask"); -__static_renaming("____fd_mask_354", "__fd_mask"); -__static_renaming("__fd_set_362", "fd_set"); -__static_renaming("__fd_mask_363", "fd_mask"); -__static_renaming("__fd_mask_364", "fd_mask"); -__static_renaming("__select_376", "select"); -__static_renaming("__select_377", "select"); -__static_renaming("__pselect_392", "pselect"); -__static_renaming("__pselect_393", "pselect"); -__static_renaming("____fdelt_chk_397", "__fdelt_chk"); -__static_renaming("____fdelt_warn_399", "__fdelt_warn"); -__static_renaming("__gnu_dev_major_401", "gnu_dev_major"); -__static_renaming("__gnu_dev_major_402", "gnu_dev_major"); -__static_renaming("__gnu_dev_minor_404", "gnu_dev_minor"); -__static_renaming("__gnu_dev_makedev_407", "gnu_dev_makedev"); -__static_renaming("__blksize_t_412", "blksize_t"); -__static_renaming("__blksize_t_413", "blksize_t"); -__static_renaming("__blkcnt_t_415", "blkcnt_t"); -__static_renaming("__blkcnt_t_416", "blkcnt_t"); -__static_renaming("__fsblkcnt_t_418", "fsblkcnt_t"); -__static_renaming("__fsblkcnt_t_419", "fsblkcnt_t"); -__static_renaming("__blkcnt_t_421", "blkcnt_t"); -__static_renaming("__blkcnt_t_422", "blkcnt_t"); -__static_renaming("__fsblkcnt_t_424", "fsblkcnt_t"); -__static_renaming("__fsblkcnt_t_425", "fsblkcnt_t"); -__static_renaming("__fsfilcnt_t_427", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_428", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_430", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_431", "fsfilcnt_t"); -__static_renaming("__pthread_t_433", "pthread_t"); -__static_renaming("__pthread_attr_t_437", "pthread_attr_t"); -__static_renaming("____pthread_list_t_442", "__pthread_list_t"); -__static_renaming("____pthread_list_t_443", "__pthread_list_t"); -__static_renaming("__pthread_mutex_t_459", "pthread_mutex_t"); -__static_renaming("__pthread_mutexattr_t_464", "pthread_mutexattr_t"); -__static_renaming("__rand_465", "rand"); -__static_renaming("__srand_467", "srand"); -__static_renaming("__rand_r_469", "rand_r"); -__static_renaming("__drand48_470", "drand48"); -__static_renaming("__erand48_472", "erand48"); -__static_renaming("__lrand48_473", "lrand48"); -__static_renaming("__nrand48_475", "nrand48"); -__static_renaming("__mrand48_476", "mrand48"); -__static_renaming("__jrand48_478", "jrand48"); -__static_renaming("__srand48_480", "srand48"); -__static_renaming("__seed48_482", "seed48"); -__static_renaming("__lcong48_484", "lcong48"); -__static_renaming("__malloc_486", "malloc"); -__static_renaming("__malloc_487", "malloc"); -__static_renaming("__calloc_490", "calloc"); -__static_renaming("__calloc_491", "calloc"); -__static_renaming("__realloc_494", "realloc"); -__static_renaming("__free_496", "free"); -__static_renaming("__cfree_498", "cfree"); -__static_renaming("__alloca_500", "alloca"); -__static_renaming("__valloc_502", "valloc"); -__static_renaming("__valloc_503", "valloc"); -__static_renaming("__posix_memalign_507", "posix_memalign"); -__static_renaming("__posix_memalign_508", "posix_memalign"); -__static_renaming("__aligned_alloc_511", "aligned_alloc"); -__static_renaming("__aligned_alloc_512", "aligned_alloc"); -__static_renaming("__aligned_alloc_513", "aligned_alloc"); -__static_renaming("__aligned_alloc_514", "aligned_alloc"); -__static_renaming("__abort_515", "abort"); -__static_renaming("__atexit_517", "atexit"); -__static_renaming("__at_quick_exit_519", "at_quick_exit"); -__static_renaming("__on_exit_524", "on_exit"); -__static_renaming("__exit_526", "exit"); -__static_renaming("__exit_527", "exit"); -__static_renaming("__quick_exit_529", "quick_exit"); -__static_renaming("___Exit_531", "_Exit"); -__static_renaming("__getenv_533", "getenv"); -__static_renaming("__getenv_534", "getenv"); -__static_renaming("__putenv_536", "putenv"); -__static_renaming("__setenv_540", "setenv"); -__static_renaming("__unsetenv_542", "unsetenv"); -__static_renaming("__clearenv_543", "clearenv"); -__static_renaming("__mktemp_545", "mktemp"); -__static_renaming("__mkstemp_548", "mkstemp"); -__static_renaming("__mkstemp_549", "mkstemp"); -__static_renaming("__mkstemp_550", "mkstemp"); -__static_renaming("__mkstemp_551", "mkstemp"); -__static_renaming("__mkstemps_556", "mkstemps"); -__static_renaming("__mkstemps_557", "mkstemps"); -__static_renaming("__mkstemps_558", "mkstemps"); -__static_renaming("__mkstemps_559", "mkstemps"); -__static_renaming("__mkdtemp_561", "mkdtemp"); -__static_renaming("__mkdtemp_562", "mkdtemp"); -__static_renaming("__system_564", "system"); -__static_renaming("__system_565", "system"); -__static_renaming("__system_566", "system"); -__static_renaming("__system_567", "system"); -__static_renaming("__realpath_570", "realpath"); -__static_renaming("__realpath_571", "realpath"); -__static_renaming("____compar_fn_t_572", "__compar_fn_t"); -__static_renaming("__bsearch_580", "bsearch"); -__static_renaming("__bsearch_582", "bsearch"); -__static_renaming("____l_589", "__l"); -__static_renaming("____u_590", "__u"); -__static_renaming("____idx_591", "__idx"); -__static_renaming("____p_592", "__p"); -__static_renaming("____comparison_593", "__comparison"); -__static_renaming("__qsort_601", "qsort"); -__static_renaming("__qsort_603", "qsort"); -__static_renaming("__abs_606", "abs"); -__static_renaming("__abs_607", "abs"); -__static_renaming("__labs_609", "labs"); -__static_renaming("__labs_610", "labs"); -__static_renaming("__llabs_612", "llabs"); -__static_renaming("__llabs_613", "llabs"); -__static_renaming("__div_616", "div"); -__static_renaming("__div_617", "div"); -__static_renaming("__ldiv_620", "ldiv"); -__static_renaming("__ldiv_622", "ldiv"); -__static_renaming("__lldiv_626", "lldiv"); -__static_renaming("__lldiv_628", "lldiv"); -__static_renaming("__ecvt_634", "ecvt"); -__static_renaming("__ecvt_635", "ecvt"); -__static_renaming("__fcvt_640", "fcvt"); -__static_renaming("__fcvt_641", "fcvt"); -__static_renaming("__gcvt_645", "gcvt"); -__static_renaming("__gcvt_646", "gcvt"); -__static_renaming("__qecvt_651", "qecvt"); -__static_renaming("__qecvt_652", "qecvt"); -__static_renaming("__qfcvt_657", "qfcvt"); -__static_renaming("__qfcvt_658", "qfcvt"); -__static_renaming("__qgcvt_662", "qgcvt"); -__static_renaming("__qgcvt_663", "qgcvt"); -__static_renaming("__ecvt_r_670", "ecvt_r"); -__static_renaming("__fcvt_r_677", "fcvt_r"); -__static_renaming("__qecvt_r_684", "qecvt_r"); -__static_renaming("__qfcvt_r_691", "qfcvt_r"); -__static_renaming("__mblen_694", "mblen"); -__static_renaming("__mblen_695", "mblen"); -__static_renaming("__mbtowc_699", "mbtowc"); -__static_renaming("__wctomb_702", "wctomb"); -__static_renaming("__mbstowcs_706", "mbstowcs"); -__static_renaming("__wcstombs_710", "wcstombs"); -__static_renaming("__rpmatch_712", "rpmatch"); -__static_renaming("__rpmatch_713", "rpmatch"); -__static_renaming("__getsubopt_717", "getsubopt"); -__static_renaming("__getsubopt_718", "getsubopt"); -__static_renaming("__getloadavg_721", "getloadavg"); -__static_renaming("____realpath_chk_726", "__realpath_chk"); -__static_renaming("____realpath_alias_729", "__realpath_alias"); -__static_renaming("____realpath_chk_warn_733", "__realpath_chk_warn"); -__static_renaming("____ptsname_r_chk_741", "__ptsname_r_chk"); -__static_renaming("____ptsname_r_alias_745", "__ptsname_r_alias"); -__static_renaming("____ptsname_r_chk_warn_750", "__ptsname_r_chk_warn"); -__static_renaming("____wctomb_chk_758", "__wctomb_chk"); -__static_renaming("____wctomb_alias_761", "__wctomb_alias"); -__static_renaming("____mbstowcs_chk_768", "__mbstowcs_chk"); -__static_renaming("____mbstowcs_alias_772", "__mbstowcs_alias"); -__static_renaming("____mbstowcs_chk_warn_777", "__mbstowcs_chk_warn"); -__static_renaming("____wcstombs_chk_785", "__wcstombs_chk"); -__static_renaming("____wcstombs_alias_789", "__wcstombs_alias"); -__static_renaming("____wcstombs_chk_warn_794", "__wcstombs_chk_warn"); -__static_renaming("__all_fmt_798", "all_fmt"); -__static_renaming("__all_fmt_799", "all_fmt"); -__static_renaming("__all_fmt_800", "all_fmt"); -__static_renaming("__main_803", "main"); - -__static_condition_renaming("__static_condition_default_60", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_67", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_215", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_234", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __u_char_defined)"); -__static_condition_renaming("__static_condition_default_237", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __u_char_defined)"); -__static_condition_renaming("__static_condition_default_240", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __u_char_defined)"); -__static_condition_renaming("__static_condition_default_243", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ino_t_defined)"); -__static_condition_renaming("__static_condition_default_246", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ino_t_defined) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ino_t_defined)"); -__static_condition_renaming("__static_condition_default_249", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_252", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_255", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_258", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_261", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __nlink_t_defined)"); -__static_condition_renaming("__static_condition_default_264", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __nlink_t_defined)"); -__static_condition_renaming("__static_condition_default_267", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __nlink_t_defined)"); -__static_condition_renaming("__static_condition_default_270", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_273", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_276", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_279", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_282", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __id_t_defined)"); -__static_condition_renaming("__static_condition_default_285", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_288", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_293", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_296", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_299", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __clock_t_defined)"); -__static_condition_renaming("__static_condition_default_302", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __time_t_defined)"); -__static_condition_renaming("__static_condition_default_305", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __clockid_t_defined)"); -__static_condition_renaming("__static_condition_default_308", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __timer_t_defined)"); -__static_condition_renaming("__static_condition_default_325", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_341", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_349", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_352", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __suseconds_t_defined)"); -__static_condition_renaming("__static_condition_default_361", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_378", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_379", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_394", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_395", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_414", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blksize_t_defined)"); -__static_condition_renaming("__static_condition_default_417", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blkcnt_t_defined) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blkcnt_t_defined)"); -__static_condition_renaming("__static_condition_default_420", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_423", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blkcnt_t_defined)"); -__static_condition_renaming("__static_condition_default_426", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_429", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_432", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_579", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_581", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_594", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __USE_EXTERN_INLINES) && !(defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_595", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_602", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_604", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_621", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_623", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_627", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_629", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_736", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_804", "!(defined _STDLIB_H) && (defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_805", "!(defined _STDLIB_H) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_TIMESTAMPS) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_TIMESTAMPS) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_TIMESTAMPS) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_TIMESTAMPS)"); -__static_condition_renaming("__static_condition_default_806", "!(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_TIMESTAMPS)"); -__static_condition_renaming("__static_condition_default_807", "!(defined _STDLIB_H) && (defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_TIMESTAMPS)"); -__static_condition_renaming("__static_condition_default_808", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined __need_malloc_and_calloc) || (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_809", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc)"); +__static_renaming("__div_t_7", "div_t"); +__static_renaming("__ldiv_t_12", "ldiv_t"); +__static_renaming("__lldiv_t_17", "lldiv_t"); +__static_renaming("____ctype_get_mb_cur_max_18", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_19", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_20", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_21", "__ctype_get_mb_cur_max"); +__static_renaming("__atof_23", "atof"); +__static_renaming("__atof_24", "atof"); +__static_renaming("__atoi_26", "atoi"); +__static_renaming("__atoi_27", "atoi"); +__static_renaming("__atol_29", "atol"); +__static_renaming("__atol_30", "atol"); +__static_renaming("__atoll_32", "atoll"); +__static_renaming("__atoll_33", "atoll"); +__static_renaming("__strtod_36", "strtod"); +__static_renaming("__strtof_39", "strtof"); +__static_renaming("__strtold_42", "strtold"); +__static_renaming("__strtol_46", "strtol"); +__static_renaming("__strtoul_50", "strtoul"); +__static_renaming("__strtoll_54", "strtoll"); +__static_renaming("__strtoull_58", "strtoull"); +__static_renaming("__rand_62", "rand"); +__static_renaming("__rand_63", "rand"); +__static_renaming("__srand_65", "srand"); +__static_renaming("__malloc_67", "malloc"); +__static_renaming("__malloc_68", "malloc"); +__static_renaming("__calloc_71", "calloc"); +__static_renaming("__calloc_72", "calloc"); +__static_renaming("__realloc_75", "realloc"); +__static_renaming("__realloc_76", "realloc"); +__static_renaming("__free_78", "free"); +__static_renaming("__aligned_alloc_81", "aligned_alloc"); +__static_renaming("__aligned_alloc_82", "aligned_alloc"); +__static_renaming("__abort_83", "abort"); +__static_renaming("__atexit_85", "atexit"); +__static_renaming("__at_quick_exit_87", "at_quick_exit"); +__static_renaming("__exit_89", "exit"); +__static_renaming("__quick_exit_91", "quick_exit"); +__static_renaming("___Exit_93", "_Exit"); +__static_renaming("__getenv_95", "getenv"); +__static_renaming("__getenv_96", "getenv"); +__static_renaming("__system_98", "system"); +__static_renaming("__system_99", "system"); +__static_renaming("____compar_fn_t_100", "__compar_fn_t"); +__static_renaming("__bsearch_108", "bsearch"); +__static_renaming("__bsearch_110", "bsearch"); +__static_renaming("____l_117", "__l"); +__static_renaming("____u_118", "__u"); +__static_renaming("____idx_119", "__idx"); +__static_renaming("____p_120", "__p"); +__static_renaming("____comparison_121", "__comparison"); +__static_renaming("__qsort_129", "qsort"); +__static_renaming("__qsort_131", "qsort"); +__static_renaming("__abs_134", "abs"); +__static_renaming("__abs_135", "abs"); +__static_renaming("__labs_137", "labs"); +__static_renaming("__labs_138", "labs"); +__static_renaming("__llabs_140", "llabs"); +__static_renaming("__llabs_141", "llabs"); +__static_renaming("__div_144", "div"); +__static_renaming("__div_145", "div"); +__static_renaming("__ldiv_148", "ldiv"); +__static_renaming("__ldiv_150", "ldiv"); +__static_renaming("__lldiv_154", "lldiv"); +__static_renaming("__lldiv_156", "lldiv"); +__static_renaming("__mblen_160", "mblen"); +__static_renaming("__mbtowc_164", "mbtowc"); +__static_renaming("__wctomb_167", "wctomb"); +__static_renaming("__mbstowcs_171", "mbstowcs"); +__static_renaming("__wcstombs_175", "wcstombs"); +__static_renaming("____realpath_chk_180", "__realpath_chk"); +__static_renaming("____realpath_alias_183", "__realpath_alias"); +__static_renaming("____realpath_chk_warn_187", "__realpath_chk_warn"); +__static_renaming("____ptsname_r_chk_195", "__ptsname_r_chk"); +__static_renaming("____ptsname_r_alias_199", "__ptsname_r_alias"); +__static_renaming("____ptsname_r_chk_warn_204", "__ptsname_r_chk_warn"); +__static_renaming("____wctomb_chk_212", "__wctomb_chk"); +__static_renaming("____wctomb_alias_215", "__wctomb_alias"); +__static_renaming("____mbstowcs_chk_222", "__mbstowcs_chk"); +__static_renaming("____mbstowcs_alias_226", "__mbstowcs_alias"); +__static_renaming("____mbstowcs_chk_warn_231", "__mbstowcs_chk_warn"); +__static_renaming("____wcstombs_chk_239", "__wcstombs_chk"); +__static_renaming("____wcstombs_alias_243", "__wcstombs_alias"); +__static_renaming("____wcstombs_chk_warn_248", "__wcstombs_chk_warn"); +__static_renaming("__all_fmt_252", "all_fmt"); +__static_renaming("__all_fmt_253", "all_fmt"); +__static_renaming("__main_256", "main"); + +__static_condition_renaming("__static_condition_default_107", "!(defined _FORTIFY_SOURCE) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_109", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_122", "(defined __USE_EXTERN_INLINES) && !(defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_123", "(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_130", "!(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_132", "(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_149", "!(defined _FORTIFY_SOURCE) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_151", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_155", "!(defined _FORTIFY_SOURCE) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_157", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_190", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_257", "!(defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_258", "!(defined _FORTIFY_SOURCE) && !(defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_259", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_260", "(defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_261", "!(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_262", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); -if (__static_condition_default_809) -{ -__static_parse_error("Unable to parse"); -} }; typedef long int __ptrdiff_t_0;// L143:L324 typedef long unsigned int __size_t_1;// L177:L209 typedef int __wchar_t_2;// L243:L321 -enum ____anonymous_tag_6_7 { -__P_ALL_3, -__P_PID_4, -__P_PGID_5, -}; -typedef enum ____anonymous_tag_6_7 __idtype_t_8;// L50:L55 -typedef unsigned char ____u_char_9;// L30 -typedef unsigned short int ____u_short_10;// L31 -typedef unsigned int ____u_int_11;// L32 -typedef unsigned long int ____u_long_12;// L33 -typedef signed char ____int8_t_13;// L36 -typedef unsigned char ____uint8_t_14;// L37 -typedef signed short int ____int16_t_15;// L38 -typedef unsigned short int ____uint16_t_16;// L39 -typedef signed int ____int32_t_17;// L40 -typedef unsigned int ____uint32_t_18;// L41 -typedef signed long int ____int64_t_19;// L43 -typedef unsigned long int ____uint64_t_20;// L44 -typedef long int ____quad_t_21;// L52 -typedef unsigned long int ____u_quad_t_22;// L53 -typedef unsigned long int ____dev_t_23;// L109:L124 -typedef unsigned int ____uid_t_24;// L92:L125 -typedef unsigned int ____gid_t_25;// L92:L126 -typedef unsigned long int ____ino_t_26;// L94:L127 -typedef unsigned long int ____ino64_t_27;// L109:L128 -typedef unsigned int ____mode_t_28;// L92:L129 -typedef unsigned long int ____nlink_t_29;// L94:L130 -typedef long int ____off_t_30;// L93:L131 -typedef long int ____off64_t_31;// L108:L132 -typedef int ____pid_t_32;// L91:L133 -struct ____anonymous_tag_33_34 { -int ____val_35[2];// L72 -}; -typedef struct ____anonymous_tag_33_34 ____fsid_t_36;// L72:L134 -typedef long int ____clock_t_37;// L93:L135 -typedef unsigned long int ____rlim_t_38;// L94:L136 -typedef unsigned long int ____rlim64_t_39;// L109:L137 -typedef unsigned int ____id_t_40;// L92:L138 -typedef long int ____time_t_41;// L93:L139 -typedef unsigned int ____useconds_t_42;// L92:L140 -typedef long int ____suseconds_t_43;// L93:L141 -typedef int ____daddr_t_44;// L91:L143 -typedef int ____key_t_45;// L91:L144 -typedef int ____clockid_t_46;// L91:L147 -typedef void * (____timer_t_47);// L70:L150 -typedef long int ____blksize_t_48;// L93:L153 -typedef long int ____blkcnt_t_49;// L93:L158 -typedef long int ____blkcnt64_t_50;// L108:L159 -typedef unsigned long int ____fsblkcnt_t_51;// L94:L162 -typedef unsigned long int ____fsblkcnt64_t_52;// L109:L163 -typedef unsigned long int ____fsfilcnt_t_53;// L94:L166 -typedef unsigned long int ____fsfilcnt64_t_54;// L109:L167 -typedef long int ____fsword_t_55;// L93:L170 -typedef long int ____ssize_t_56;// L110:L172 -typedef long int ____syscall_slong_t_57;// L93:L175 -typedef unsigned long int ____syscall_ulong_t_58;// L94:L177 -typedef ____off64_t_31 ____loff_t_59;// L181 -typedef ____quad_t_21 * (____qaddr_t_61);// L182 -typedef char * (____caddr_t_62);// L183 -typedef long int ____intptr_t_63;// L110:L186 -typedef unsigned int ____socklen_t_64;// L92:L189 -struct ____anonymous_tag_70_71 { -unsigned int ____w_termsig_72 : 7;// L72 -unsigned int ____w_coredump_73 : 1;// L73 -unsigned int ____w_retcode_74 : 8;// L74 -unsigned int __anon_id_0_75 : 16;// L75 -}; -struct ____anonymous_tag_76_77 { -unsigned int ____w_stopval_78 : 8;// L87 -unsigned int ____w_stopsig_79 : 8;// L88 -unsigned int __anon_id_1_80 : 16;// L89 -}; -union __wait_81 { -int __w_status_82;// L68 -struct ____anonymous_tag_70_71 ____wait_terminated_83;// L69 -struct ____anonymous_tag_76_77 ____wait_stopped_84;// L84 -}; -union ____anonymous_tag_85_86 { -union __wait_81 * (____uptr_87);// L69 -int * (____iptr_88);// L70 -}; -typedef union ____anonymous_tag_85_86 ____WAIT_STATUS_89;// L67:L71 -struct ____anonymous_tag_90_91 { -int __quot_92;// L99 -int __rem_93;// L100 -}; -typedef struct ____anonymous_tag_90_91 __div_t_94;// L97:L101 -struct ____anonymous_tag_95_96 { -long int __quot_97;// L107 -long int __rem_98;// L108 -}; -typedef struct ____anonymous_tag_95_96 __ldiv_t_99;// L105:L109 -struct ____anonymous_tag_100_101 { -long long int __quot_102;// L119 -long long int __rem_103;// L120 -}; -typedef struct ____anonymous_tag_100_101 __lldiv_t_104;// L117:L121 -typedef unsigned char ____u_char_164;// L30 -typedef unsigned short int ____u_short_165;// L31 -typedef unsigned int ____u_int_166;// L32 -typedef unsigned long int ____u_long_167;// L33 -typedef signed char ____int8_t_168;// L36 -typedef unsigned char ____uint8_t_169;// L37 -typedef signed short int ____int16_t_170;// L38 -typedef unsigned short int ____uint16_t_171;// L39 -typedef signed int ____int32_t_172;// L40 -typedef unsigned int ____uint32_t_173;// L41 -typedef signed long int ____int64_t_174;// L43 -typedef unsigned long int ____uint64_t_175;// L44 -typedef long int ____quad_t_176;// L52 -typedef unsigned long int ____u_quad_t_177;// L53 -typedef unsigned long int ____dev_t_178;// L109:L124 -typedef unsigned int ____uid_t_179;// L92:L125 -typedef unsigned int ____gid_t_180;// L92:L126 -typedef unsigned long int ____ino_t_181;// L94:L127 -typedef unsigned long int ____ino64_t_182;// L109:L128 -typedef unsigned int ____mode_t_183;// L92:L129 -typedef unsigned long int ____nlink_t_184;// L94:L130 -typedef long int ____off_t_185;// L93:L131 -typedef long int ____off64_t_186;// L108:L132 -typedef int ____pid_t_187;// L91:L133 -struct ____anonymous_tag_188_189 { -int ____val_190[2];// L72 -}; -typedef struct ____anonymous_tag_188_189 ____fsid_t_191;// L72:L134 -typedef long int ____clock_t_192;// L93:L135 -typedef unsigned long int ____rlim_t_193;// L94:L136 -typedef unsigned long int ____rlim64_t_194;// L109:L137 -typedef unsigned int ____id_t_195;// L92:L138 -typedef long int ____time_t_196;// L93:L139 -typedef unsigned int ____useconds_t_197;// L92:L140 -typedef long int ____suseconds_t_198;// L93:L141 -typedef int ____daddr_t_199;// L91:L143 -typedef int ____key_t_200;// L91:L144 -typedef int ____clockid_t_201;// L91:L147 -typedef void * (____timer_t_202);// L70:L150 -typedef long int ____blksize_t_203;// L93:L153 -typedef long int ____blkcnt_t_204;// L93:L158 -typedef long int ____blkcnt64_t_205;// L108:L159 -typedef unsigned long int ____fsblkcnt_t_206;// L94:L162 -typedef unsigned long int ____fsblkcnt64_t_207;// L109:L163 -typedef unsigned long int ____fsfilcnt_t_208;// L94:L166 -typedef unsigned long int ____fsfilcnt64_t_209;// L109:L167 -typedef long int ____fsword_t_210;// L93:L170 -typedef long int ____ssize_t_211;// L110:L172 -typedef long int ____syscall_slong_t_212;// L93:L175 -typedef unsigned long int ____syscall_ulong_t_213;// L94:L177 -typedef ____off64_t_186 ____loff_t_214;// L181 -typedef ____quad_t_176 * (____qaddr_t_216);// L182 -typedef char * (____caddr_t_217);// L183 -typedef long int ____intptr_t_218;// L110:L186 -typedef unsigned int ____socklen_t_219;// L92:L189 -typedef ____u_char_9 __u_char_220;// L33 -typedef ____u_char_164 __u_char_221;// L33 -typedef ____u_short_10 __u_short_222;// L34 -typedef ____u_short_165 __u_short_223;// L34 -typedef ____u_int_11 __u_int_224;// L35 -typedef ____u_int_166 __u_int_225;// L35 -typedef ____u_long_12 __u_long_226;// L36 -typedef ____u_long_167 __u_long_227;// L36 -typedef ____quad_t_21 __quad_t_228;// L37 -typedef ____quad_t_176 __quad_t_229;// L37 -typedef ____u_quad_t_22 __u_quad_t_230;// L38 -typedef ____u_quad_t_177 __u_quad_t_231;// L38 -typedef ____fsid_t_36 __fsid_t_232;// L39 -typedef ____fsid_t_191 __fsid_t_233;// L39 -typedef ____loff_t_59 __loff_t_235;// L44 -typedef ____loff_t_214 __loff_t_236;// L44 -typedef ____loff_t_59 __loff_t_238;// L44 -typedef ____loff_t_214 __loff_t_239;// L44 -typedef ____ino64_t_27 __ino_t_241;// L50 -typedef ____ino64_t_182 __ino_t_242;// L50 -typedef ____ino_t_26 __ino_t_244;// L48 -typedef ____ino_t_181 __ino_t_245;// L48 -typedef ____dev_t_23 __dev_t_247;// L60 -typedef ____dev_t_178 __dev_t_248;// L60 -typedef ____gid_t_25 __gid_t_250;// L65 -typedef ____gid_t_180 __gid_t_251;// L65 -typedef ____gid_t_25 __gid_t_253;// L65 -typedef ____gid_t_180 __gid_t_254;// L65 -typedef ____mode_t_28 __mode_t_256;// L70 -typedef ____mode_t_183 __mode_t_257;// L70 -typedef ____nlink_t_29 __nlink_t_259;// L75 -typedef ____nlink_t_184 __nlink_t_260;// L75 -typedef ____uid_t_24 __uid_t_262;// L80 -typedef ____uid_t_179 __uid_t_263;// L80 -typedef ____uid_t_24 __uid_t_265;// L80 -typedef ____uid_t_179 __uid_t_266;// L80 -typedef ____off64_t_31 __off_t_268;// L88 -typedef ____off64_t_186 __off_t_269;// L88 -typedef ____off_t_30 __off_t_271;// L86 -typedef ____off_t_185 __off_t_272;// L86 -typedef ____pid_t_32 __pid_t_274;// L98 -typedef ____pid_t_187 __pid_t_275;// L98 -typedef ____pid_t_32 __pid_t_277;// L98 -typedef ____pid_t_187 __pid_t_278;// L98 -typedef ____id_t_40 __id_t_280;// L104 -typedef ____id_t_195 __id_t_281;// L104 -typedef ____ssize_t_56 __ssize_t_283;// L109 -typedef ____ssize_t_211 __ssize_t_284;// L109 -typedef ____daddr_t_44 __daddr_t_286;// L115 -typedef ____daddr_t_199 __daddr_t_287;// L115 -typedef ____caddr_t_62 __caddr_t_289;// L116 -typedef ____caddr_t_217 __caddr_t_290;// L116 -typedef ____key_t_45 __key_t_291;// L122 -typedef ____key_t_200 __key_t_292;// L122 -typedef ____key_t_45 __key_t_294;// L122 -typedef ____key_t_200 __key_t_295;// L122 -typedef ____clock_t_37 __clock_t_297;// L59 -typedef ____clock_t_192 __clock_t_298;// L59 -typedef ____time_t_41 __time_t_300;// L75 -typedef ____time_t_196 __time_t_301;// L75 -typedef ____clockid_t_46 __clockid_t_303;// L91 -typedef ____clockid_t_201 __clockid_t_304;// L91 -typedef ____timer_t_47 __timer_t_306;// L103 -typedef ____timer_t_202 __timer_t_307;// L103 -typedef unsigned long int __ulong_309;// L150 -typedef unsigned long int __ulong_310;// L150 -typedef unsigned long int __ulong_311;// L150 -typedef unsigned short int __ushort_312;// L151 -typedef unsigned int __uint_313;// L152 -typedef int __int8_t_314;// L188:L194 -typedef int __int16_t_315;// L188:L195 -typedef int __int32_t_316;// L188:L196 -typedef int __int64_t_317;// L188:L197 -typedef unsigned int __u_int8_t_318;// L190:L200 -typedef unsigned int __u_int16_t_319;// L190:L201 -typedef unsigned int __u_int32_t_320;// L190:L202 -typedef unsigned int __u_int64_t_321;// L190:L203 -typedef int __register_t_322;// L205 -typedef int ____sig_atomic_t_328;// L22 -struct ____anonymous_tag_329_330 { -unsigned long int ____val_331[( 1024 / ( 8 * sizeof(unsigned long) ) )];// L29 -}; -typedef struct ____anonymous_tag_329_330 ____sigset_t_332;// L27:L30 -typedef ____sigset_t_332 __sigset_t_333;// L37 -struct __timespec_334 { -____time_t_41 __tv_sec_335;// L0 -____time_t_196 __tv_sec_336;// L0 -____syscall_slong_t_57 __tv_nsec_338;// L0 -____syscall_slong_t_212 __tv_nsec_339;// L0 -}; -struct __timeval_342 { -____time_t_41 __tv_sec_343;// L0 -____time_t_196 __tv_sec_344;// L0 -____suseconds_t_43 __tv_usec_346;// L0 -____suseconds_t_198 __tv_usec_347;// L0 -}; -typedef ____suseconds_t_43 __suseconds_t_350;// L48 -typedef ____suseconds_t_198 __suseconds_t_351;// L48 -typedef long int ____fd_mask_353;// L54 -typedef long int ____fd_mask_354;// L54 -struct ____anonymous_tag_355_356 { -____fd_mask_353 ____fds_bits_357[1024 / ( 8 * ( int ) sizeof(long) )];// L0 -____fd_mask_354 ____fds_bits_359[1024 / ( 8 * ( int ) sizeof(long) )];// L0 -}; -typedef struct ____anonymous_tag_355_356 __fd_set_362;// L64:L75 -typedef ____fd_mask_353 __fd_mask_363;// L82 -typedef ____fd_mask_354 __fd_mask_364;// L82 -typedef ____blksize_t_48 __blksize_t_412;// L228 -typedef ____blksize_t_203 __blksize_t_413;// L228 -typedef ____blkcnt_t_49 __blkcnt_t_415;// L235 -typedef ____blkcnt_t_204 __blkcnt_t_416;// L235 -typedef ____fsblkcnt_t_51 __fsblkcnt_t_418;// L239 -typedef ____fsblkcnt_t_206 __fsblkcnt_t_419;// L239 -typedef ____blkcnt64_t_50 __blkcnt_t_421;// L248 -typedef ____blkcnt64_t_205 __blkcnt_t_422;// L248 -typedef ____fsblkcnt64_t_52 __fsblkcnt_t_424;// L252 -typedef ____fsblkcnt64_t_207 __fsblkcnt_t_425;// L252 -typedef ____fsfilcnt_t_53 __fsfilcnt_t_427;// L243 -typedef ____fsfilcnt_t_208 __fsfilcnt_t_428;// L243 -typedef ____fsfilcnt64_t_54 __fsfilcnt_t_430;// L256 -typedef ____fsfilcnt64_t_209 __fsfilcnt_t_431;// L256 -typedef unsigned long int __pthread_t_433;// L60 -union __pthread_attr_t_434 { -char ____size_435[56];// L65 -long int ____align_436;// L66 -}; -typedef union __pthread_attr_t_434 __pthread_attr_t_437;// L69 -struct ____pthread_internal_list_439 { -struct __forward_tag_reference_438 * (____prev_440);// L0 -struct __forward_tag_reference_438 * (____next_441);// L0 +struct ____anonymous_tag_3_4 { +int __quot_5;// L99 +int __rem_6;// L100 }; -typedef struct ____pthread_internal_list_439 ____pthread_list_t_442;// L75:L79 -typedef struct ____pthread_internal_list_439 ____pthread_list_t_443;// L75:L79 -struct ____pthread_mutex_s_444 { -int ____lock_445;// L94 -unsigned int ____count_446;// L95 -int ____owner_447;// L96 -unsigned int ____nusers_448;// L98 -int ____kind_449;// L102 -short ____spins_450;// L104 -short ____elision_451;// L105 -____pthread_list_t_442 ____list_452;// L0 -____pthread_list_t_443 ____list_453;// L0 +typedef struct ____anonymous_tag_3_4 __div_t_7;// L97:L101 +struct ____anonymous_tag_8_9 { +long int __quot_10;// L107 +long int __rem_11;// L108 }; -union ____anonymous_tag_454_455 { -struct ____pthread_mutex_s_444 ____data_456;// L92 -char ____size_457[40];// L126 -long int ____align_458;// L127 +typedef struct ____anonymous_tag_8_9 __ldiv_t_12;// L105:L109 +struct ____anonymous_tag_13_14 { +long long int __quot_15;// L119 +long long int __rem_16;// L120 }; -typedef union ____anonymous_tag_454_455 __pthread_mutex_t_459;// L90:L128 -union ____anonymous_tag_460_461 { -char ____size_462[4];// L132 -int ____align_463;// L133 -}; -typedef union ____anonymous_tag_460_461 __pthread_mutexattr_t_464;// L130:L134 -typedef int (* (____compar_fn_t_572)) (const void *, const void *);// L741 +typedef struct ____anonymous_tag_13_14 __lldiv_t_17;// L117:L121 +typedef int (* (____compar_fn_t_100)) (const void *, const void *);// L741 -struct __forward_tag_reference_438 { // generated union of struct variations -union { -}; -}; - -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -static __inline unsigned int (____bswap_32_66) (unsigned int ____bsx_65) { - -if (__static_condition_default_67) { - -{ -{ - - - -__static_type_error("invalid type found in return expression"); -} -} - - -} -} -static __inline ____uint64_t_20 (____bswap_64_69) (____uint64_t_20 ____bsx_68) { - -if (__static_condition_default_67) { - -{ -{ - - - -__static_type_error("invalid type found in return expression"); -} -} - - -} -} -union __wait_81 ;// L66 -// typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern __size_t_1 (____ctype_get_mb_cur_max_105) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_106) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_107) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_108) (void );// L139 -extern double (__atof_110) (const char * (____nptr_109));// L144:L145 -extern double (__atof_111) (const char * (____nptr_109));// L144:L145 -extern int (__atoi_113) (const char * (____nptr_112));// L147:L148 -extern int (__atoi_114) (const char * (____nptr_112));// L147:L148 -extern long int (__atol_116) (const char * (____nptr_115));// L150:L151 -extern long int (__atol_117) (const char * (____nptr_115));// L150:L151 -extern long long int (__atoll_119) (const char * (____nptr_118));// L157:L158 -extern long long int (__atoll_120) (const char * (____nptr_118));// L157:L158 -extern double (__strtod_123) (const char * __restrict ____nptr_121, char * (* __restrict ____endptr_122));// L164:L166 -extern float (__strtof_126) (const char * __restrict ____nptr_124, char * (* __restrict ____endptr_125));// L172:L173 -extern long double (__strtold_129) (const char * __restrict ____nptr_127, char * (* __restrict ____endptr_128));// L175:L177 -extern long int (__strtol_133) (const char * __restrict ____nptr_130, char * (* __restrict ____endptr_131), int ____base_132);// L183:L185 -extern unsigned long int (__strtoul_137) (const char * __restrict ____nptr_134, char * (* __restrict ____endptr_135), int ____base_136);// L187:L189 -extern long long int (__strtoq_141) (const char * __restrict ____nptr_138, char * (* __restrict ____endptr_139), int ____base_140);// L195:L197 -extern unsigned long long int (__strtouq_145) (const char * __restrict ____nptr_142, char * (* __restrict ____endptr_143), int ____base_144);// L200:L202 -extern long long int (__strtoll_149) (const char * __restrict ____nptr_146, char * (* __restrict ____endptr_147), int ____base_148);// L209:L211 -extern long long int (__strtoll_150) (const char * __restrict ____nptr_146, char * (* __restrict ____endptr_147), int ____base_148);// L209:L211 -extern unsigned long long int (__strtoull_154) (const char * __restrict ____nptr_151, char * (* __restrict ____endptr_152), int ____base_153);// L214:L216 +extern __size_t_1 (____ctype_get_mb_cur_max_18) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_19) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_20) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_21) (void );// L139 +extern double (__atof_23) (const char * (____nptr_22));// L144:L145 +extern double (__atof_24) (const char * (____nptr_22));// L144:L145 +extern int (__atoi_26) (const char * (____nptr_25));// L147:L148 +extern int (__atoi_27) (const char * (____nptr_25));// L147:L148 +extern long int (__atol_29) (const char * (____nptr_28));// L150:L151 +extern long int (__atol_30) (const char * (____nptr_28));// L150:L151 +extern long long int (__atoll_32) (const char * (____nptr_31));// L157:L158 +extern long long int (__atoll_33) (const char * (____nptr_31));// L157:L158 +extern double (__strtod_36) (const char * __restrict ____nptr_34, char * (* __restrict ____endptr_35));// L164:L166 +extern float (__strtof_39) (const char * __restrict ____nptr_37, char * (* __restrict ____endptr_38));// L172:L173 +extern long double (__strtold_42) (const char * __restrict ____nptr_40, char * (* __restrict ____endptr_41));// L175:L177 +extern long int (__strtol_46) (const char * __restrict ____nptr_43, char * (* __restrict ____endptr_44), int ____base_45);// L183:L185 +extern unsigned long int (__strtoul_50) (const char * __restrict ____nptr_47, char * (* __restrict ____endptr_48), int ____base_49);// L187:L189 +extern long long int (__strtoll_54) (const char * __restrict ____nptr_51, char * (* __restrict ____endptr_52), int ____base_53);// L209:L211 +extern unsigned long long int (__strtoull_58) (const char * __restrict ____nptr_55, char * (* __restrict ____endptr_56), int ____base_57);// L214:L216 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ __extension__/* no function due to type errors in the function prototype */ -extern char * ((__l64a_159) (long int ____n_158));// L305 -extern char * ((__l64a_160) (long int ____n_158));// L305 -extern long int (__a64l_162) (const char * (____s_161));// L308:L309 -extern long int (__a64l_163) (const char * (____s_161));// L308:L309 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -static __inline unsigned int (____bswap_32_324) (unsigned int ____bsx_323) { - -if (__static_condition_default_325) { - -{ -{ - - - -__static_type_error("invalid type found in return expression"); -} -} - - -} -} -static __inline ____uint64_t_175 (____bswap_64_327) (____uint64_t_175 ____bsx_326) { - -if (__static_condition_default_325) { - -{ -{ - - - -__static_type_error("invalid type found in return expression"); -} -} - - -} -} -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -struct __timespec_334 ;// L120 - -struct __timeval_342 ;// L30 - -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern int (__select_376) (int ____nfds_365, __fd_set_362 * __restrict ____readfds_366, __fd_set_362 * __restrict ____writefds_368, __fd_set_362 * __restrict ____exceptfds_370, struct __timeval_342 * __restrict ____timeout_373);// L106:L109 -extern int (__select_377) (int ____nfds_365, __fd_set_362 * __restrict ____readfds_366, __fd_set_362 * __restrict ____writefds_368, __fd_set_362 * __restrict ____exceptfds_370, struct __forward_tag_reference_372 * __restrict ____timeout_375);// L106:L109 -extern int (__pselect_392) (int ____nfds_380, __fd_set_362 * __restrict ____readfds_381, __fd_set_362 * __restrict ____writefds_383, __fd_set_362 * __restrict ____exceptfds_385, const struct __timespec_334 * __restrict ____timeout_388, const ____sigset_t_332 * __restrict ____sigmask_391);// L118:L122 -extern int (__pselect_393) (int ____nfds_380, __fd_set_362 * __restrict ____readfds_381, __fd_set_362 * __restrict ____writefds_383, __fd_set_362 * __restrict ____exceptfds_385, const struct __forward_tag_reference_387 * __restrict ____timeout_390, const ____sigset_t_332 * __restrict ____sigmask_391);// L118:L122 -extern long int (____fdelt_chk_397) (long int ____d_396);// L24 -extern long int (____fdelt_warn_399) (long int ____d_398);// L25:L26 -extern unsigned int (__gnu_dev_major_401) (unsigned long long int ____dev_400);// L27:L28 -extern unsigned int (__gnu_dev_major_402) (unsigned long long int ____dev_400);// L27:L28 -extern unsigned int (__gnu_dev_minor_404) (unsigned long long int ____dev_403);// L30:L31 -extern unsigned long long int (__gnu_dev_makedev_407) (unsigned int ____major_405, unsigned int ____minor_406);// L33:L35 -__extension__/* no function due to type errors in the function prototype */ -__extension__/* no function due to type errors in the function prototype */ -__extension__/* no function due to type errors in the function prototype */ -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -union __pthread_attr_t_434 ;// L63 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern int (__rand_465) (void );// L374 -extern void (__srand_467) (unsigned int ____seed_466);// L376 -extern int (__rand_r_469) (unsigned int * (____seed_468));// L381 -extern double (__drand48_470) (void );// L389 -extern double (__erand48_472) (unsigned short int ____xsubi_471[3]);// L390 -extern long int (__lrand48_473) (void );// L393 -extern long int (__nrand48_475) (unsigned short int ____xsubi_474[3]);// L394:L395 -extern long int (__mrand48_476) (void );// L398 -extern long int (__jrand48_478) (unsigned short int ____xsubi_477[3]);// L399:L400 -extern void (__srand48_480) (long int ____seedval_479);// L403 -extern unsigned short int * ((__seed48_482) (unsigned short int ____seed16v_481[3]));// L404:L405 -extern void (__lcong48_484) (unsigned short int ____param_483[7]);// L406 -extern void * ((__malloc_486) (__size_t_1 ____size_485));// L466 -extern void * ((__malloc_487) (__size_t_1 ____size_485));// L466 -extern void * ((__calloc_490) (__size_t_1 ____nmemb_488, __size_t_1 ____size_489));// L468:L469 -extern void * ((__calloc_491) (__size_t_1 ____nmemb_488, __size_t_1 ____size_489));// L468:L469 -extern void * ((__realloc_494) (void * (____ptr_492), __size_t_1 ____size_493));// L480:L481 -extern void (__free_496) (void * (____ptr_495));// L483 -extern void (__cfree_498) (void * (____ptr_497));// L488 -extern void * ((__alloca_500) (__size_t_1 ____size_499));// L32 -extern void * ((__valloc_502) (__size_t_1 ____size_501));// L498 -extern void * ((__valloc_503) (__size_t_1 ____size_501));// L498 -extern int (__posix_memalign_507) (void * (* (____memptr_504)), __size_t_1 ____alignment_505, __size_t_1 ____size_506);// L503:L504 -extern int (__posix_memalign_508) (void * (* (____memptr_504)), __size_t_1 ____alignment_505, __size_t_1 ____size_506);// L503:L504 -extern void * ((__aligned_alloc_511) (__size_t_1 ____alignment_509, __size_t_1 ____size_510));// L509:L510 -extern void * ((__aligned_alloc_512) (__size_t_1 ____alignment_509, __size_t_1 ____size_510));// L509:L510 -extern void * ((__aligned_alloc_513) (__size_t_1 ____alignment_509, __size_t_1 ____size_510));// L509:L510 -extern void * ((__aligned_alloc_514) (__size_t_1 ____alignment_509, __size_t_1 ____size_510));// L509:L510 -extern void (__abort_515) (void );// L515 -extern int (__atexit_517) (void (* (____func_516)) (void ));// L519 -extern int (__at_quick_exit_519) (void (* (____func_518)) (void ));// L527 -extern int (__on_exit_524) (void (* (____func_522)) (int ____status_520, void * (____arg_521)), void * (____arg_523));// L535:L536 -extern void (__exit_526) (int ____status_525);// L543 -extern void (__exit_527) (int ____status_525);// L543 -extern void (__quick_exit_529) (int ____status_528);// L549 -extern void (___Exit_531) (int ____status_530);// L557 -extern char * ((__getenv_533) (const char * (____name_532)));// L564 -extern char * ((__getenv_534) (const char * (____name_532)));// L564 -extern int (__putenv_536) (char * (____string_535));// L578 -extern int (__setenv_540) (const char * (____name_537), const char * (____value_538), int ____replace_539);// L584:L585 -extern int (__unsetenv_542) (const char * (____name_541));// L588 -extern int (__clearenv_543) (void );// L595 -extern char * ((__mktemp_545) (char * (____template_544)));// L606 -extern int (__mkstemp_548) (char * (____template_546));// L619 -extern int (__mkstemp_550) (char * (____template_546));// L619 -extern int (__mkstemp_549) (char * (____template_547));// L622:L623 -extern int (__mkstemp_551) (char * (____template_547));// L622:L623 -extern int (__mkstemps_556) (char * (____template_552), int ____suffixlen_553);// L641 -extern int (__mkstemps_557) (char * (____template_554), int ____suffixlen_555);// L644:L645 -extern int (__mkstemps_558) (char * (____template_552), int ____suffixlen_553);// L641 -extern int (__mkstemps_559) (char * (____template_554), int ____suffixlen_555);// L644:L645 -extern char * ((__mkdtemp_561) (char * (____template_560)));// L662 -extern char * ((__mkdtemp_562) (char * (____template_560)));// L662 -extern int (__system_564) (const char * (____command_563));// L716 -extern int (__system_565) (const char * (____command_563));// L716 -extern int (__system_566) (const char * (____command_563));// L716 -extern int (__system_567) (const char * (____command_563));// L716 -extern char * ((__realpath_570) (const char * __restrict ____name_568, char * __restrict ____resolved_569));// L733:L734 -extern char * ((__realpath_571) (const char * __restrict ____name_568, char * __restrict ____resolved_569));// L733:L734 -// typedef moved to top of scope -extern void * ((__bsearch_580) (const void * (____key_573), const void * (____base_574), __size_t_1 ____nmemb_575, __size_t_1 ____size_576, ____compar_fn_t_572 ____compar_577));// L754:L756 -extern void * ((__bsearch_582) (const void * (____key_573), const void * (____base_574), __size_t_1 ____nmemb_575, __size_t_1 ____size_576, ____compar_fn_t_572 ____compar_577));// L754:L756 +extern int (__rand_62) (void );// L374 +extern int (__rand_63) (void );// L374 +extern void (__srand_65) (unsigned int ____seed_64);// L376 +extern void * ((__malloc_67) (__size_t_1 ____size_66));// L466 +extern void * ((__malloc_68) (__size_t_1 ____size_66));// L466 +extern void * ((__calloc_71) (__size_t_1 ____nmemb_69, __size_t_1 ____size_70));// L468:L469 +extern void * ((__calloc_72) (__size_t_1 ____nmemb_69, __size_t_1 ____size_70));// L468:L469 +extern void * ((__realloc_75) (void * (____ptr_73), __size_t_1 ____size_74));// L480:L481 +extern void * ((__realloc_76) (void * (____ptr_73), __size_t_1 ____size_74));// L480:L481 +extern void (__free_78) (void * (____ptr_77));// L483 +extern void * ((__aligned_alloc_81) (__size_t_1 ____alignment_79, __size_t_1 ____size_80));// L509:L510 +extern void * ((__aligned_alloc_82) (__size_t_1 ____alignment_79, __size_t_1 ____size_80));// L509:L510 +extern void (__abort_83) (void );// L515 +extern int (__atexit_85) (void (* (____func_84)) (void ));// L519 +extern int (__at_quick_exit_87) (void (* (____func_86)) (void ));// L527 +extern void (__exit_89) (int ____status_88);// L543 +extern void (__quick_exit_91) (int ____status_90);// L549 +extern void (___Exit_93) (int ____status_92);// L557 +extern char * ((__getenv_95) (const char * (____name_94)));// L564 +extern char * ((__getenv_96) (const char * (____name_94)));// L564 +extern int (__system_98) (const char * (____command_97));// L716 +extern int (__system_99) (const char * (____command_97));// L716 +// typedef moved to top of scope +extern void * ((__bsearch_108) (const void * (____key_101), const void * (____base_102), __size_t_1 ____nmemb_103, __size_t_1 ____size_104, ____compar_fn_t_100 ____compar_105));// L754:L756 +extern void * ((__bsearch_110) (const void * (____key_101), const void * (____base_102), __size_t_1 ____nmemb_103, __size_t_1 ____size_104, ____compar_fn_t_100 ____compar_105));// L754:L756 /* no function due to type errors in the function prototype */ -extern void (__qsort_601) (void * (____base_596), __size_t_1 ____nmemb_597, __size_t_1 ____size_598, ____compar_fn_t_572 ____compar_599);// L764:L765 -extern void (__qsort_603) (void * (____base_596), __size_t_1 ____nmemb_597, __size_t_1 ____size_598, ____compar_fn_t_572 ____compar_599);// L764:L765 -extern int (__abs_606) (int ____x_605);// L774 -extern int (__abs_607) (int ____x_605);// L774 -extern long int (__labs_609) (long int ____x_608);// L775 -extern long int (__labs_610) (long int ____x_608);// L775 -extern long long int (__llabs_612) (long long int ____x_611);// L779:L780 -extern long long int (__llabs_613) (long long int ____x_611);// L779:L780 -extern __div_t_94 (__div_616) (int ____numer_614, int ____denom_615);// L788:L789 -extern __div_t_94 (__div_617) (int ____numer_614, int ____denom_615);// L788:L789 -extern __ldiv_t_99 (__ldiv_620) (long int ____numer_618, long int ____denom_619);// L790:L791 -extern __ldiv_t_99 (__ldiv_622) (long int ____numer_618, long int ____denom_619);// L790:L791 -extern __lldiv_t_104 (__lldiv_626) (long long int ____numer_624, long long int ____denom_625);// L796:L798 -extern __lldiv_t_104 (__lldiv_628) (long long int ____numer_624, long long int ____denom_625);// L796:L798 -extern char * ((__ecvt_634) (double ____value_630, int ____ndigit_631, int * __restrict ____decpt_632, int * __restrict ____sign_633));// L811:L812 -extern char * ((__ecvt_635) (double ____value_630, int ____ndigit_631, int * __restrict ____decpt_632, int * __restrict ____sign_633));// L811:L812 -extern char * ((__fcvt_640) (double ____value_636, int ____ndigit_637, int * __restrict ____decpt_638, int * __restrict ____sign_639));// L817:L818 -extern char * ((__fcvt_641) (double ____value_636, int ____ndigit_637, int * __restrict ____decpt_638, int * __restrict ____sign_639));// L817:L818 -extern char * ((__gcvt_645) (double ____value_642, int ____ndigit_643, char * (____buf_644)));// L823:L824 -extern char * ((__gcvt_646) (double ____value_642, int ____ndigit_643, char * (____buf_644)));// L823:L824 -extern char * ((__qecvt_651) (long double ____value_647, int ____ndigit_648, int * __restrict ____decpt_649, int * __restrict ____sign_650));// L829:L831 -extern char * ((__qecvt_652) (long double ____value_647, int ____ndigit_648, int * __restrict ____decpt_649, int * __restrict ____sign_650));// L829:L831 -extern char * ((__qfcvt_657) (long double ____value_653, int ____ndigit_654, int * __restrict ____decpt_655, int * __restrict ____sign_656));// L832:L834 -extern char * ((__qfcvt_658) (long double ____value_653, int ____ndigit_654, int * __restrict ____decpt_655, int * __restrict ____sign_656));// L832:L834 -extern char * ((__qgcvt_662) (long double ____value_659, int ____ndigit_660, char * (____buf_661)));// L835:L836 -extern char * ((__qgcvt_663) (long double ____value_659, int ____ndigit_660, char * (____buf_661)));// L835:L836 -extern int (__ecvt_r_670) (double ____value_664, int ____ndigit_665, int * __restrict ____decpt_666, int * __restrict ____sign_667, char * __restrict ____buf_668, __size_t_1 ____len_669);// L841:L843 -extern int (__fcvt_r_677) (double ____value_671, int ____ndigit_672, int * __restrict ____decpt_673, int * __restrict ____sign_674, char * __restrict ____buf_675, __size_t_1 ____len_676);// L844:L846 -extern int (__qecvt_r_684) (long double ____value_678, int ____ndigit_679, int * __restrict ____decpt_680, int * __restrict ____sign_681, char * __restrict ____buf_682, __size_t_1 ____len_683);// L848:L851 -extern int (__qfcvt_r_691) (long double ____value_685, int ____ndigit_686, int * __restrict ____decpt_687, int * __restrict ____sign_688, char * __restrict ____buf_689, __size_t_1 ____len_690);// L852:L855 -extern int (__mblen_694) (const char * (____s_692), __size_t_1 ____n_693);// L862 -extern int (__mblen_695) (const char * (____s_692), __size_t_1 ____n_693);// L862 -extern int (__mbtowc_699) (__wchar_t_2 * __restrict ____pwc_696, const char * __restrict ____s_697, __size_t_1 ____n_698);// L865:L866 -extern int (__wctomb_702) (char * (____s_700), __wchar_t_2 ____wchar_701);// L869 -extern __size_t_1 (__mbstowcs_706) (__wchar_t_2 * __restrict ____pwcs_703, const char * __restrict ____s_704, __size_t_1 ____n_705);// L873:L874 -extern __size_t_1 (__wcstombs_710) (char * __restrict ____s_707, const __wchar_t_2 * __restrict ____pwcs_708, __size_t_1 ____n_709);// L876:L878 -extern int (__rpmatch_713) (const char * (____response_711));// L887 -extern int (__rpmatch_712) (const char * (____response_711));// L887 -extern int (__getsubopt_718) (char * (* __restrict ____optionp_714), char * const * __restrict ____tokens_715, char * (* __restrict ____valuep_716));// L898:L901 -extern int (__getsubopt_717) (char * (* __restrict ____optionp_714), char * const * __restrict ____tokens_715, char * (* __restrict ____valuep_716));// L898:L901 -extern int (__getloadavg_721) (double ____loadavg_719[], int ____nelem_720);// L950:L951 +extern void (__qsort_129) (void * (____base_124), __size_t_1 ____nmemb_125, __size_t_1 ____size_126, ____compar_fn_t_100 ____compar_127);// L764:L765 +extern void (__qsort_131) (void * (____base_124), __size_t_1 ____nmemb_125, __size_t_1 ____size_126, ____compar_fn_t_100 ____compar_127);// L764:L765 +extern int (__abs_134) (int ____x_133);// L774 +extern int (__abs_135) (int ____x_133);// L774 +extern long int (__labs_137) (long int ____x_136);// L775 +extern long int (__labs_138) (long int ____x_136);// L775 +extern long long int (__llabs_140) (long long int ____x_139);// L779:L780 +extern long long int (__llabs_141) (long long int ____x_139);// L779:L780 +extern __div_t_7 (__div_144) (int ____numer_142, int ____denom_143);// L788:L789 +extern __div_t_7 (__div_145) (int ____numer_142, int ____denom_143);// L788:L789 +extern __ldiv_t_12 (__ldiv_148) (long int ____numer_146, long int ____denom_147);// L790:L791 +extern __ldiv_t_12 (__ldiv_150) (long int ____numer_146, long int ____denom_147);// L790:L791 +extern __lldiv_t_17 (__lldiv_154) (long long int ____numer_152, long long int ____denom_153);// L796:L798 +extern __lldiv_t_17 (__lldiv_156) (long long int ____numer_152, long long int ____denom_153);// L796:L798 +extern int (__mblen_160) (const char * (____s_158), __size_t_1 ____n_159);// L862 +extern int (__mbtowc_164) (__wchar_t_2 * __restrict ____pwc_161, const char * __restrict ____s_162, __size_t_1 ____n_163);// L865:L866 +extern int (__wctomb_167) (char * (____s_165), __wchar_t_2 ____wchar_166);// L869 +extern __size_t_1 (__mbstowcs_171) (__wchar_t_2 * __restrict ____pwcs_168, const char * __restrict ____s_169, __size_t_1 ____n_170);// L873:L874 +extern __size_t_1 (__wcstombs_175) (char * __restrict ____s_172, const __wchar_t_2 * __restrict ____pwcs_173, __size_t_1 ____n_174);// L876:L878 /* no function due to type errors in the function prototype */ -extern char * ((____realpath_chk_726) (const char * __restrict ____name_723, char * __restrict ____resolved_724, __size_t_1 ____resolvedlen_725));// L23:L25 -extern char * ((____realpath_alias_729) (const char * __restrict ____name_727, char * __restrict ____resolved_728));// L26:L28 -extern char * ((____realpath_chk_warn_733) (const char * __restrict ____name_730, char * __restrict ____resolved_731, __size_t_1 ____resolvedlen_732));// L29:L34 +extern char * ((____realpath_chk_180) (const char * __restrict ____name_177, char * __restrict ____resolved_178, __size_t_1 ____resolvedlen_179));// L23:L25 +extern char * ((____realpath_alias_183) (const char * __restrict ____name_181, char * __restrict ____resolved_182));// L26:L28 +extern char * ((____realpath_chk_warn_187) (const char * __restrict ____name_184, char * __restrict ____resolved_185, __size_t_1 ____resolvedlen_186));// L29:L34 /* no function due to type errors in the function prototype */ -extern int (____ptsname_r_chk_741) (int ____fd_737, char * (____buf_738), __size_t_1 ____buflen_739, __size_t_1 ____nreal_740);// L52:L53 -extern int (____ptsname_r_alias_745) (int ____fd_742, char * (____buf_743), __size_t_1 ____buflen_744);// L54:L56 -extern int (____ptsname_r_chk_warn_750) (int ____fd_746, char * (____buf_747), __size_t_1 ____buflen_748, __size_t_1 ____nreal_749);// L57:L61 +extern int (____ptsname_r_chk_195) (int ____fd_191, char * (____buf_192), __size_t_1 ____buflen_193, __size_t_1 ____nreal_194);// L52:L53 +extern int (____ptsname_r_alias_199) (int ____fd_196, char * (____buf_197), __size_t_1 ____buflen_198);// L54:L56 +extern int (____ptsname_r_chk_warn_204) (int ____fd_200, char * (____buf_201), __size_t_1 ____buflen_202, __size_t_1 ____nreal_203);// L57:L61 /* no function due to type errors in the function prototype */ -extern int (____wctomb_chk_758) (char * (____s_755), __wchar_t_2 ____wchar_756, __size_t_1 ____buflen_757);// L77:L78 -extern int (____wctomb_alias_761) (char * (____s_759), __wchar_t_2 ____wchar_760);// L79:L80 +extern int (____wctomb_chk_212) (char * (____s_209), __wchar_t_2 ____wchar_210, __size_t_1 ____buflen_211);// L77:L78 +extern int (____wctomb_alias_215) (char * (____s_213), __wchar_t_2 ____wchar_214);// L79:L80 /* no function due to type errors in the function prototype */ -extern __size_t_1 (____mbstowcs_chk_768) (__wchar_t_2 * __restrict ____dst_764, const char * __restrict ____src_765, __size_t_1 ____len_766, __size_t_1 ____dstlen_767);// L98:L100 -extern __size_t_1 (____mbstowcs_alias_772) (__wchar_t_2 * __restrict ____dst_769, const char * __restrict ____src_770, __size_t_1 ____len_771);// L101:L104 -extern __size_t_1 (____mbstowcs_chk_warn_777) (__wchar_t_2 * __restrict ____dst_773, const char * __restrict ____src_774, __size_t_1 ____len_775, __size_t_1 ____dstlen_776);// L105:L110 +extern __size_t_1 (____mbstowcs_chk_222) (__wchar_t_2 * __restrict ____dst_218, const char * __restrict ____src_219, __size_t_1 ____len_220, __size_t_1 ____dstlen_221);// L98:L100 +extern __size_t_1 (____mbstowcs_alias_226) (__wchar_t_2 * __restrict ____dst_223, const char * __restrict ____src_224, __size_t_1 ____len_225);// L101:L104 +extern __size_t_1 (____mbstowcs_chk_warn_231) (__wchar_t_2 * __restrict ____dst_227, const char * __restrict ____src_228, __size_t_1 ____len_229, __size_t_1 ____dstlen_230);// L105:L110 /* no function due to type errors in the function prototype */ -extern __size_t_1 (____wcstombs_chk_785) (char * __restrict ____dst_781, const __wchar_t_2 * __restrict ____src_782, __size_t_1 ____len_783, __size_t_1 ____dstlen_784);// L130:L132 -extern __size_t_1 (____wcstombs_alias_789) (char * __restrict ____dst_786, const __wchar_t_2 * __restrict ____src_787, __size_t_1 ____len_788);// L133:L136 -extern __size_t_1 (____wcstombs_chk_warn_794) (char * __restrict ____dst_790, const __wchar_t_2 * __restrict ____src_791, __size_t_1 ____len_792, __size_t_1 ____dstlen_793);// L137:L141 +extern __size_t_1 (____wcstombs_chk_239) (char * __restrict ____dst_235, const __wchar_t_2 * __restrict ____src_236, __size_t_1 ____len_237, __size_t_1 ____dstlen_238);// L130:L132 +extern __size_t_1 (____wcstombs_alias_243) (char * __restrict ____dst_240, const __wchar_t_2 * __restrict ____src_241, __size_t_1 ____len_242);// L133:L136 +extern __size_t_1 (____wcstombs_chk_warn_248) (char * __restrict ____dst_244, const __wchar_t_2 * __restrict ____src_245, __size_t_1 ____len_246, __size_t_1 ____dstlen_247);// L137:L141 /* no function due to type errors in the function prototype */ -static unsigned int __all_fmt_798;// L9 -static unsigned int __all_fmt_799;// L9 -static unsigned int __all_fmt_800;// L9 -int (__main_803) (int __argc_801, char * (* (__argv_802))) { +static unsigned int __all_fmt_252;// L9 +static unsigned int __all_fmt_253;// L9 +int (__main_256) (int __argc_254, char * (* (__argv_255))) { { { @@ -1307,7 +259,7 @@ int (__main_803) (int __argc_801, char * (* (__argv_802))) { __static_type_error("type error : no valid expression"); // L13 -if (__static_condition_default_804) { +if (__static_condition_default_257) { if ( rand( ) % 2 )// L15 { @@ -1316,21 +268,34 @@ if ( rand( ) % 2 )// L15 -if (__static_condition_default_805) { - __all_fmt_798 &= ~ ( 3U << 23 ) ; // L4:L16 +if (__static_condition_default_258) { + __all_fmt_252 &= ~ ( 3U << 23 ) ; // L4:L16 +} +if (__static_condition_default_259) { + __all_fmt_253 &= ~ ( 3U << 23 ) ; // L4:L16 +} +} } -if (__static_condition_default_806) { - __all_fmt_800 &= ~ ( 3U << 23 ) ; // L4:L16 } -if (__static_condition_default_807) { -__static_type_error("type error : no valid expression"); // L16 } +if (__static_condition_default_260) { +if ( rand( ) % 2 )// L15 +{ + +{ +{ + + + +if (__static_condition_default_261) { + __all_fmt_252 &= ~ ( 3U << 23 ) ; // L4:L16 +} +if (__static_condition_default_262) { + __all_fmt_253 &= ~ ( 3U << 23 ) ; // L4:L16 } } } } -if (__static_condition_default_808) { -__static_type_error("invalid type found in if statement"); } return 0 ;// L19 } diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.clangres index bde91b29..2a11ca26 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.clangres @@ -1,4 +1,4 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.c:43:29: warning: Use of memory after it is freed [unix.Malloc] - for (ch = clist; ch; ch = ch->next) // ERROR - ^~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.c:46:3: warning: Potential leak of memory pointed to by 'clist' [unix.Malloc] + return 0; + ^~~~~~~~ 1 warning generated. diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c index 5703e724..e855ccf0 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c @@ -7,404 +7,260 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_412; -extern const bool __static_condition_default_2435; -extern const bool __static_condition_default_2330; -extern const bool __static_condition_default_1568; -extern const bool __static_condition_default_2437; -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_419; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_747; -extern const bool __static_condition_default_956; -extern const bool __static_condition_default_2458; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_1831; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_1017; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_774; +extern const bool __static_condition_default_451; +extern const bool __static_condition_default_320; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_343; +extern const bool __static_condition_default_300; +extern const bool __static_condition_default_496; +extern const bool __static_condition_default_579; +extern const bool __static_condition_default_766; +extern const bool __static_condition_default_495; +extern const bool __static_condition_default_882; +extern const bool __static_condition_default_1407; +extern const bool __static_condition_default_961; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_254; +extern const bool __static_condition_default_470; +extern const bool __static_condition_default_983; +extern const bool __static_condition_default_304; +extern const bool __static_condition_default_1430; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_1384; +extern const bool __static_condition_default_517; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_1794; +extern const bool __static_condition_default_448; +extern const bool __static_condition_default_118; +extern const bool __static_condition_default_898; +extern const bool __static_condition_default_641; +extern const bool __static_condition_default_833; +extern const bool __static_condition_default_1167; +extern const bool __static_condition_default_459; +extern const bool __static_condition_default_234; +extern const bool __static_condition_default_1432; +extern const bool __static_condition_default_1606; +extern const bool __static_condition_default_421; +extern const bool __static_condition_default_551; +extern const bool __static_condition_default_501; +extern const bool __static_condition_default_308; +extern const bool __static_condition_default_889; +extern const bool __static_condition_default_718; +extern const bool __static_condition_default_680; +extern const bool __static_condition_default_379; extern const bool __static_condition_default_235; -extern const bool __static_condition_default_1377; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_1385; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_957; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_457; +extern const bool __static_condition_default_1862; +extern const bool __static_condition_default_318; +extern const bool __static_condition_default_696; +extern const bool __static_condition_default_332; +extern const bool __static_condition_default_256; +extern const bool __static_condition_default_429; +extern const bool __static_condition_default_374; +extern const bool __static_condition_default_507; +extern const bool __static_condition_default_567; +extern const bool __static_condition_default_941; +extern const bool __static_condition_default_707; +extern const bool __static_condition_default_400; +extern const bool __static_condition_default_1835; +extern const bool __static_condition_default_1833; +extern const bool __static_condition_default_935; +extern const bool __static_condition_default_500; +extern const bool __static_condition_default_739; +extern const bool __static_condition_default_639; +extern const bool __static_condition_default_798; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_790; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_1878; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_1006; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_232; +extern const bool __static_condition_default_370; +extern const bool __static_condition_default_1426; +extern const bool __static_condition_default_326; +extern const bool __static_condition_default_508; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_627; +extern const bool __static_condition_default_1864; +extern const bool __static_condition_default_533; +extern const bool __static_condition_default_1818; +extern const bool __static_condition_default_161; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_772; +extern const bool __static_condition_default_226; +extern const bool __static_condition_default_1836; +extern const bool __static_condition_default_794; +extern const bool __static_condition_default_642; +extern const bool __static_condition_default_648; +extern const bool __static_condition_default_820; +extern const bool __static_condition_default_603; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_294; +extern const bool __static_condition_default_870; +extern const bool __static_condition_default_330; +extern const bool __static_condition_default_1785; +extern const bool __static_condition_default_165; +extern const bool __static_condition_default_482; +extern const bool __static_condition_default_716; +extern const bool __static_condition_default_992; +extern const bool __static_condition_default_976; extern const bool __static_condition_default_1405; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_2381; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_512; -extern const bool __static_condition_default_2388; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_2064; -extern const bool __static_condition_default_2432; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_693; -extern const bool __static_condition_default_1458; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_217; -extern const bool __static_condition_default_2044; -extern const bool __static_condition_default_559; -extern const bool __static_condition_default_883; +extern const bool __static_condition_default_1861; +extern const bool __static_condition_default_381; +extern const bool __static_condition_default_1793; +extern const bool __static_condition_default_1811; +extern const bool __static_condition_default_1398; +extern const bool __static_condition_default_1838; +extern const bool __static_condition_default_969; +extern const bool __static_condition_default_540; +extern const bool __static_condition_default_968; +extern const bool __static_condition_default_227; +extern const bool __static_condition_default_310; +extern const bool __static_condition_default_577; +extern const bool __static_condition_default_349; +extern const bool __static_condition_default_225; +extern const bool __static_condition_default_502; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_1604; +extern const bool __static_condition_default_595; +extern const bool __static_condition_default_948; +extern const bool __static_condition_default_336; extern const bool __static_condition_default_249; -extern const bool __static_condition_default_2063; -extern const bool __static_condition_default_1341; -extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_583; -extern const bool __static_condition_default_685; -extern const bool __static_condition_default_2313; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_1361; -extern const bool __static_condition_default_1515; -extern const bool __static_condition_default_2408; -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_431; -extern const bool __static_condition_default_1774; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_1395; -extern const bool __static_condition_default_842; -extern const bool __static_condition_default_1556; -extern const bool __static_condition_default_929; -extern const bool __static_condition_default_1773; -extern const bool __static_condition_default_198; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_2433; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_2443; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_2456; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_2441; -extern const bool __static_condition_default_608; +extern const bool __static_condition_default_588; +extern const bool __static_condition_default_1829; +extern const bool __static_condition_default_1876; +extern const bool __static_condition_default_358; +extern const bool __static_condition_default_684; extern const bool __static_condition_default_395; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_1152; -extern const bool __static_condition_default_1428; -extern const bool __static_condition_default_2460; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_1373; -extern const bool __static_condition_default_1532; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_1791; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_461; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_236; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_881; +extern const bool __static_condition_default_1834; +extern const bool __static_condition_default_1382; +extern const bool __static_condition_default_1844; +extern const bool __static_condition_default_1867; +extern const bool __static_condition_default_1778; +extern const bool __static_condition_default_556; +extern const bool __static_condition_default_1798; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_586; +extern const bool __static_condition_default_729; extern const bool __static_condition_default_788; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_1785; -extern const bool __static_condition_default_1453; -extern const bool __static_condition_default_2414; -extern const bool __static_condition_default_2047; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_1753; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_438; -extern const bool __static_condition_default_590; -extern const bool __static_condition_default_2377; -extern const bool __static_condition_default_2409; -extern const bool __static_condition_default_701; +extern const bool __static_condition_default_1814; +extern const bool __static_condition_default_906; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_328; +extern const bool __static_condition_default_610; extern const bool __static_condition_default_768; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_2401; -extern const bool __static_condition_default_1369; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_2403; -extern const bool __static_condition_default_2444; -extern const bool __static_condition_default_2438; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_2404; -extern const bool __static_condition_default_53; -extern const bool __static_condition_default_1560; -extern const bool __static_condition_default_2322; -extern const bool __static_condition_default_1416; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_382; -extern const bool __static_condition_default_613; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_709; -extern const bool __static_condition_default_2378; -extern const bool __static_condition_default_2342; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_1159; -extern const bool __static_condition_default_2062; -extern const bool __static_condition_default_2312; -extern const bool __static_condition_default_1552; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_2430; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_2351; -extern const bool __static_condition_default_1485; -extern const bool __static_condition_default_1576; -extern const bool __static_condition_default_963; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_2415; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_891; -extern const bool __static_condition_default_848; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_692; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_1860; extern const bool __static_condition_default_745; -extern const bool __static_condition_default_1349; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_248; -extern const bool __static_condition_default_388; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_1357; -extern const bool __static_condition_default_1391; -extern const bool __static_condition_default_536; -extern const bool __static_condition_default_408; -extern const bool __static_condition_default_769; -extern const bool __static_condition_default_875; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_1489; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_638; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_789; -extern const bool __static_condition_default_955; -extern const bool __static_condition_default_564; -extern const bool __static_condition_default_402; -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_204; -extern const bool __static_condition_default_549; -extern const bool __static_condition_default_315; -extern const bool __static_condition_default_347; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_2387; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_317; -extern const bool __static_condition_default_1165; -extern const bool __static_condition_default_2429; -extern const bool __static_condition_default_2406; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_753; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_645; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_670; +extern const bool __static_condition_default_688; extern const bool __static_condition_default_661; -extern const bool __static_condition_default_1749; -extern const bool __static_condition_default_1816; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_286; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_933; +extern const bool __static_condition_default_905; +extern const bool __static_condition_default_1859; +extern const bool __static_condition_default_528; +extern const bool __static_condition_default_74; +extern const bool __static_condition_default_706; +extern const bool __static_condition_default_1605; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_446; +extern const bool __static_condition_default_962; +extern const bool __static_condition_default_672; +extern const bool __static_condition_default_453; +extern const bool __static_condition_default_1837; +extern const bool __static_condition_default_719; +extern const bool __static_condition_default_1877; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_977; +extern const bool __static_condition_default_1830; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_1843; +extern const bool __static_condition_default_931; extern const bool __static_condition_default_473; -extern const bool __static_condition_default_380; -extern const bool __static_condition_default_1787; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_187; -extern const bool __static_condition_default_2434; -extern const bool __static_condition_default_488; -extern const bool __static_condition_default_2436; -extern const bool __static_condition_default_521; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_542; +extern const bool __static_condition_default_893; +extern const bool __static_condition_default_435; +extern const bool __static_condition_default_749; +extern const bool __static_condition_default_954; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_917; +extern const bool __static_condition_default_1615; +extern const bool __static_condition_default_575; +extern const bool __static_condition_default_1866; +extern const bool __static_condition_default_162; +extern const bool __static_condition_default_474; +extern const bool __static_condition_default_1865; +extern const bool __static_condition_default_605; +extern const bool __static_condition_default_626; +extern const bool __static_condition_default_394; +extern const bool __static_condition_default_694; +extern const bool __static_condition_default_953; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_449; +extern const bool __static_condition_default_338; +extern const bool __static_condition_default_351; +extern const bool __static_condition_default_695; +extern const bool __static_condition_default_714; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_1539; +extern const bool __static_condition_default_612; +extern const bool __static_condition_default_778; +extern const bool __static_condition_default_784; +extern const bool __static_condition_default_276; +extern const bool __static_condition_default_1832; +extern const bool __static_condition_default_720; +extern const bool __static_condition_default_640; +extern const bool __static_condition_default_562; +extern const bool __static_condition_default_1863; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_804; +extern const bool __static_condition_default_1875; +extern const bool __static_condition_default_855; +extern const bool __static_condition_default_296; extern const bool __static_condition_default_686; -extern const bool __static_condition_default_858; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_1402; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_290; +extern const bool __static_condition_default_1879; +extern const bool __static_condition_default_1858; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_624; +extern const bool __static_condition_default_1397; +extern const bool __static_condition_default_1424; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_1016; +extern const bool __static_condition_default_480; +extern const bool __static_condition_default_984; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_743; +extern const bool __static_condition_default_904; extern const bool __static_condition_default_715; -extern const bool __static_condition_default_1353; -extern const bool __static_condition_default_386; -extern const bool __static_condition_default_2389; -extern const bool __static_condition_default_803; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_244; +extern const bool __static_condition_default_733; +extern const bool __static_condition_default_924; extern const bool __static_condition_default_278; -extern const bool __static_condition_default_2402; -extern const bool __static_condition_default_702; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_2459; -extern const bool __static_condition_default_2440; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_846; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_632; -extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_2400; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_2045; -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_2376; -extern const bool __static_condition_default_1775; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_779; -extern const bool __static_condition_default_2447; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_2321; -extern const bool __static_condition_default_793; -extern const bool __static_condition_default_872; -extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_2320; -extern const bool __static_condition_default_1459; -extern const bool __static_condition_default_2439; -extern const bool __static_condition_default_2407; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_1750; -extern const bool __static_condition_default_1365; -extern const bool __static_condition_default_2329; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_2350; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_887; -extern const bool __static_condition_default_646; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_1315; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_1498; -extern const bool __static_condition_default_333; -extern const bool __static_condition_default_761; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_1398; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_1420; -extern const bool __static_condition_default_1814; -extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_1424; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_780; -extern const bool __static_condition_default_393; -extern const bool __static_condition_default_543; -extern const bool __static_condition_default_1789; -extern const bool __static_condition_default_1808; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_568; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_2442; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_787; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_1436; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_357; -extern const bool __static_condition_default_1944; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_311; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_1516; -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_2343; -extern const bool __static_condition_default_76; +extern const bool __static_condition_default_356; +extern const bool __static_condition_default_762; +extern const bool __static_condition_default_230; extern const bool __static_condition_default_649; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_2314; -extern const bool __static_condition_default_1810; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_755; -extern const bool __static_condition_default_1432; -extern const bool __static_condition_default_1572; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_2349; -extern const bool __static_condition_default_1381; -extern const bool __static_condition_default_1345; -extern const bool __static_condition_default_677; -extern const bool __static_condition_default_1564; -extern const bool __static_condition_default_2448; -extern const bool __static_condition_default_2405; -extern const bool __static_condition_default_1754; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_2043; -extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_2431; -extern const bool __static_condition_default_914; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_2457; -extern const bool __static_condition_default_1776; -extern const bool __static_condition_default_2446; -extern const bool __static_condition_default_1475; -extern const bool __static_condition_default_894; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_313; -extern const bool __static_condition_default_907; -extern const bool __static_condition_default_367; -extern const bool __static_condition_default_1164; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_2046; -extern const bool __static_condition_default_1388; -extern const bool __static_condition_default_2445; -extern const bool __static_condition_default_1409; -extern const bool __static_condition_default_1531; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_2328; +extern const bool __static_condition_default_999; +extern const bool __static_condition_default_454; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_655; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -456,1214 +312,778 @@ __static_renaming("____ssize_t_49", "__ssize_t"); __static_renaming("____syscall_slong_t_50", "__syscall_slong_t"); __static_renaming("____syscall_ulong_t_51", "__syscall_ulong_t"); __static_renaming("____loff_t_52", "__loff_t"); -__static_renaming("____qaddr_t_54", "__qaddr_t"); -__static_renaming("____caddr_t_55", "__caddr_t"); -__static_renaming("____intptr_t_56", "__intptr_t"); -__static_renaming("____socklen_t_57", "__socklen_t"); -__static_renaming("__FILE_59", "FILE"); -__static_renaming("____FILE_60", "__FILE"); -__static_renaming("____mbstate_t_69", "__mbstate_t"); -__static_renaming("___G_fpos_t_77", "_G_fpos_t"); -__static_renaming("___G_fpos64_t_85", "_G_fpos64_t"); -__static_renaming("____gnuc_va_list_86", "__gnuc_va_list"); -__static_renaming("___IO_lock_t_88", "_IO_lock_t"); -__static_renaming("___IO_FILE_171", "_IO_FILE"); -__static_renaming("___IO_FILE_172", "_IO_FILE"); -__static_renaming("___IO_2_1_stdin__175", "_IO_2_1_stdin_"); -__static_renaming("___IO_2_1_stdout__176", "_IO_2_1_stdout_"); -__static_renaming("___IO_2_1_stderr__177", "_IO_2_1_stderr_"); -__static_renaming("____io_read_fn_181", "__io_read_fn"); -__static_renaming("____io_write_fn_186", "__io_write_fn"); -__static_renaming("____io_seek_fn_192", "__io_seek_fn"); -__static_renaming("____io_close_fn_195", "__io_close_fn"); -__static_renaming("____underflow_196", "__underflow"); -__static_renaming("____underflow_197", "__underflow"); -__static_renaming("____uflow_199", "__uflow"); -__static_renaming("____uflow_200", "__uflow"); -__static_renaming("____overflow_202", "__overflow"); -__static_renaming("____overflow_203", "__overflow"); -__static_renaming("___IO_getc_208", "_IO_getc"); -__static_renaming("___IO_getc_209", "_IO_getc"); -__static_renaming("___IO_putc_215", "_IO_putc"); -__static_renaming("___IO_putc_216", "_IO_putc"); -__static_renaming("___IO_feof_221", "_IO_feof"); -__static_renaming("___IO_feof_222", "_IO_feof"); -__static_renaming("___IO_ferror_227", "_IO_ferror"); -__static_renaming("___IO_ferror_228", "_IO_ferror"); -__static_renaming("___IO_peekc_locked_233", "_IO_peekc_locked"); -__static_renaming("___IO_peekc_locked_234", "_IO_peekc_locked"); -__static_renaming("___IO_flockfile_236", "_IO_flockfile"); -__static_renaming("___IO_flockfile_237", "_IO_flockfile"); -__static_renaming("___IO_funlockfile_239", "_IO_funlockfile"); -__static_renaming("___IO_funlockfile_240", "_IO_funlockfile"); -__static_renaming("___IO_ftrylockfile_242", "_IO_ftrylockfile"); -__static_renaming("___IO_ftrylockfile_243", "_IO_ftrylockfile"); -__static_renaming("___IO_vfscanf_245", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_247", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_251", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_252", "_IO_vfscanf"); -__static_renaming("___IO_vfprintf_254", "_IO_vfprintf"); -__static_renaming("___IO_vfprintf_256", "_IO_vfprintf"); -__static_renaming("___IO_vfprintf_260", "_IO_vfprintf"); -__static_renaming("___IO_padn_261", "_IO_padn"); -__static_renaming("___IO_padn_262", "_IO_padn"); -__static_renaming("___IO_sgetn_265", "_IO_sgetn"); -__static_renaming("___IO_sgetn_266", "_IO_sgetn"); -__static_renaming("___IO_seekoff_268", "_IO_seekoff"); -__static_renaming("___IO_seekoff_269", "_IO_seekoff"); -__static_renaming("___IO_seekpos_272", "_IO_seekpos"); -__static_renaming("___IO_seekpos_273", "_IO_seekpos"); -__static_renaming("___IO_free_backup_area_276", "_IO_free_backup_area"); -__static_renaming("___IO_free_backup_area_277", "_IO_free_backup_area"); -__static_renaming("__va_list_279", "va_list"); -__static_renaming("__off_t_281", "off_t"); -__static_renaming("__off_t_283", "off_t"); -__static_renaming("__ssize_t_285", "ssize_t"); -__static_renaming("__fpos_t_287", "fpos_t"); -__static_renaming("__fpos_t_289", "fpos_t"); -__static_renaming("__stdin_291", "stdin"); -__static_renaming("__stdin_292", "stdin"); -__static_renaming("__stdout_294", "stdout"); -__static_renaming("__stdout_295", "stdout"); -__static_renaming("__stderr_297", "stderr"); -__static_renaming("__stderr_298", "stderr"); -__static_renaming("__remove_301", "remove"); -__static_renaming("__rename_304", "rename"); -__static_renaming("__renameat_309", "renameat"); -__static_renaming("__tmpfile_310", "tmpfile"); -__static_renaming("__tmpfile_312", "tmpfile"); -__static_renaming("__tmpfile_314", "tmpfile"); -__static_renaming("__tmpfile_316", "tmpfile"); -__static_renaming("__tmpnam_319", "tmpnam"); -__static_renaming("__tmpnam_320", "tmpnam"); -__static_renaming("__tmpnam_r_322", "tmpnam_r"); -__static_renaming("__tmpnam_r_323", "tmpnam_r"); -__static_renaming("__tempnam_326", "tempnam"); -__static_renaming("__tempnam_327", "tempnam"); -__static_renaming("__fclose_330", "fclose"); -__static_renaming("__fclose_332", "fclose"); -__static_renaming("__fflush_336", "fflush"); -__static_renaming("__fflush_unlocked_340", "fflush_unlocked"); -__static_renaming("__fopen_344", "fopen"); -__static_renaming("__fopen_346", "fopen"); -__static_renaming("__fopen_354", "fopen"); -__static_renaming("__fopen_356", "fopen"); -__static_renaming("__freopen_362", "freopen"); -__static_renaming("__freopen_364", "freopen"); -__static_renaming("__freopen_366", "freopen"); -__static_renaming("__freopen_368", "freopen"); -__static_renaming("__fdopen_372", "fdopen"); -__static_renaming("__fdopen_374", "fdopen"); -__static_renaming("__fmemopen_379", "fmemopen"); -__static_renaming("__fmemopen_381", "fmemopen"); -__static_renaming("__open_memstream_385", "open_memstream"); -__static_renaming("__open_memstream_387", "open_memstream"); -__static_renaming("__setbuf_392", "setbuf"); -__static_renaming("__setbuf_394", "setbuf"); -__static_renaming("__setvbuf_401", "setvbuf"); -__static_renaming("__setbuffer_407", "setbuffer"); -__static_renaming("__setlinebuf_411", "setlinebuf"); -__static_renaming("__fprintf_416", "fprintf"); -__static_renaming("__fprintf_418", "fprintf"); -__static_renaming("__printf_421", "printf"); -__static_renaming("__sprintf_424", "sprintf"); -__static_renaming("__vfprintf_430", "vfprintf"); -__static_renaming("__vprintf_437", "vprintf"); -__static_renaming("__vsprintf_443", "vsprintf"); -__static_renaming("__snprintf_448", "snprintf"); -__static_renaming("__vsnprintf_454", "vsnprintf"); -__static_renaming("__vdprintf_460", "vdprintf"); -__static_renaming("__dprintf_464", "dprintf"); -__static_renaming("__fscanf_468", "fscanf"); -__static_renaming("__fscanf_470", "fscanf"); -__static_renaming("__fscanf_472", "fscanf"); -__static_renaming("__fscanf_474", "fscanf"); -__static_renaming("__scanf_477", "scanf"); -__static_renaming("__scanf_478", "scanf"); -__static_renaming("__sscanf_481", "sscanf"); -__static_renaming("__vfscanf_509", "vfscanf"); -__static_renaming("__vfscanf_513", "vfscanf"); -__static_renaming("__vscanf_520", "vscanf"); -__static_renaming("__vscanf_522", "vscanf"); -__static_renaming("__vsscanf_528", "vsscanf"); -__static_renaming("__fgetc_563", "fgetc"); -__static_renaming("__getc_567", "getc"); -__static_renaming("__getchar_569", "getchar"); -__static_renaming("__getc_unlocked_572", "getc_unlocked"); -__static_renaming("__getchar_unlocked_574", "getchar_unlocked"); -__static_renaming("__fgetc_unlocked_577", "fgetc_unlocked"); -__static_renaming("__fputc_582", "fputc"); -__static_renaming("__fputc_584", "fputc"); -__static_renaming("__putc_589", "putc"); -__static_renaming("__putchar_592", "putchar"); -__static_renaming("__fputc_unlocked_596", "fputc_unlocked"); -__static_renaming("__putc_unlocked_601", "putc_unlocked"); -__static_renaming("__putchar_unlocked_604", "putchar_unlocked"); -__static_renaming("__getw_607", "getw"); -__static_renaming("__putw_612", "putw"); -__static_renaming("__fgets_618", "fgets"); -__static_renaming("__fgets_620", "fgets"); -__static_renaming("__fgets_622", "fgets"); -__static_renaming("__fgets_624", "fgets"); -__static_renaming("____getdelim_631", "__getdelim"); -__static_renaming("____getdelim_635", "__getdelim"); -__static_renaming("__getdelim_644", "getdelim"); -__static_renaming("__getdelim_648", "getdelim"); -__static_renaming("__getline_656", "getline"); -__static_renaming("__getline_660", "getline"); -__static_renaming("__fputs_667", "fputs"); -__static_renaming("__fputs_669", "fputs"); -__static_renaming("__puts_672", "puts"); -__static_renaming("__ungetc_676", "ungetc"); -__static_renaming("__fseek_714", "fseek"); -__static_renaming("__fseek_716", "fseek"); -__static_renaming("__ftell_720", "ftell"); -__static_renaming("__ftell_722", "ftell"); -__static_renaming("__rewind_726", "rewind"); -__static_renaming("__fseeko_733", "fseeko"); -__static_renaming("__fseeko_744", "fseeko"); -__static_renaming("__ftello_750", "ftello"); -__static_renaming("__ftello_754", "ftello"); -__static_renaming("__ftello_758", "ftello"); -__static_renaming("__fgetpos_766", "fgetpos"); -__static_renaming("__fgetpos_778", "fgetpos"); -__static_renaming("__fsetpos_786", "fsetpos"); -__static_renaming("__fsetpos_790", "fsetpos"); -__static_renaming("__clearerr_796", "clearerr"); -__static_renaming("__feof_800", "feof"); -__static_renaming("__feof_802", "feof"); -__static_renaming("__ferror_806", "ferror"); -__static_renaming("__ferror_808", "ferror"); -__static_renaming("__clearerr_unlocked_812", "clearerr_unlocked"); -__static_renaming("__feof_unlocked_816", "feof_unlocked"); -__static_renaming("__feof_unlocked_818", "feof_unlocked"); -__static_renaming("__ferror_unlocked_822", "ferror_unlocked"); -__static_renaming("__ferror_unlocked_824", "ferror_unlocked"); -__static_renaming("__perror_827", "perror"); -__static_renaming("__perror_828", "perror"); -__static_renaming("__sys_nerr_829", "sys_nerr"); -__static_renaming("__sys_errlist_830", "sys_errlist"); -__static_renaming("__fileno_833", "fileno"); -__static_renaming("__fileno_835", "fileno"); -__static_renaming("__fileno_unlocked_839", "fileno_unlocked"); -__static_renaming("__fileno_unlocked_841", "fileno_unlocked"); -__static_renaming("__popen_845", "popen"); -__static_renaming("__popen_847", "popen"); -__static_renaming("__pclose_851", "pclose"); -__static_renaming("__ctermid_854", "ctermid"); -__static_renaming("__flockfile_857", "flockfile"); -__static_renaming("__ftrylockfile_861", "ftrylockfile"); -__static_renaming("__ftrylockfile_863", "ftrylockfile"); -__static_renaming("__funlockfile_867", "funlockfile"); -__static_renaming("____sprintf_chk_899", "__sprintf_chk"); -__static_renaming("____vsprintf_chk_906", "__vsprintf_chk"); -__static_renaming("____snprintf_chk_920", "__snprintf_chk"); -__static_renaming("____vsnprintf_chk_928", "__vsnprintf_chk"); -__static_renaming("____fprintf_chk_943", "__fprintf_chk"); -__static_renaming("____printf_chk_947", "__printf_chk"); -__static_renaming("____vfprintf_chk_954", "__vfprintf_chk"); -__static_renaming("____vprintf_chk_962", "__vprintf_chk"); -__static_renaming("____dprintf_chk_984", "__dprintf_chk"); -__static_renaming("____vdprintf_chk_990", "__vdprintf_chk"); -__static_renaming("____fgets_chk_1004", "__fgets_chk"); -__static_renaming("____fgets_chk_1006", "__fgets_chk"); -__static_renaming("____fgets_chk_1008", "__fgets_chk"); -__static_renaming("____fgets_alias_1014", "__fgets_alias"); -__static_renaming("____fgets_chk_warn_1021", "__fgets_chk_warn"); -__static_renaming("____cnt_1087", "__cnt"); -__static_renaming("____cptr_1088", "__cptr"); -__static_renaming("__ptrdiff_t_1092", "ptrdiff_t"); -__static_renaming("__size_t_1093", "size_t"); -__static_renaming("__wchar_t_1094", "wchar_t"); -__static_renaming("__idtype_t_1100", "idtype_t"); -__static_renaming("____u_char_1101", "__u_char"); -__static_renaming("____u_short_1102", "__u_short"); -__static_renaming("____u_int_1103", "__u_int"); -__static_renaming("____u_long_1104", "__u_long"); -__static_renaming("____int8_t_1105", "__int8_t"); -__static_renaming("____uint8_t_1106", "__uint8_t"); -__static_renaming("____int16_t_1107", "__int16_t"); -__static_renaming("____uint16_t_1108", "__uint16_t"); -__static_renaming("____int32_t_1109", "__int32_t"); -__static_renaming("____uint32_t_1110", "__uint32_t"); -__static_renaming("____int64_t_1111", "__int64_t"); -__static_renaming("____uint64_t_1112", "__uint64_t"); -__static_renaming("____quad_t_1113", "__quad_t"); -__static_renaming("____u_quad_t_1114", "__u_quad_t"); -__static_renaming("____dev_t_1115", "__dev_t"); -__static_renaming("____uid_t_1116", "__uid_t"); -__static_renaming("____gid_t_1117", "__gid_t"); -__static_renaming("____ino_t_1118", "__ino_t"); -__static_renaming("____ino64_t_1119", "__ino64_t"); -__static_renaming("____mode_t_1120", "__mode_t"); -__static_renaming("____nlink_t_1121", "__nlink_t"); -__static_renaming("____off_t_1122", "__off_t"); -__static_renaming("____off64_t_1123", "__off64_t"); -__static_renaming("____pid_t_1124", "__pid_t"); -__static_renaming("____fsid_t_1128", "__fsid_t"); -__static_renaming("____clock_t_1129", "__clock_t"); -__static_renaming("____rlim_t_1130", "__rlim_t"); -__static_renaming("____rlim64_t_1131", "__rlim64_t"); -__static_renaming("____id_t_1132", "__id_t"); -__static_renaming("____time_t_1133", "__time_t"); -__static_renaming("____useconds_t_1134", "__useconds_t"); -__static_renaming("____suseconds_t_1135", "__suseconds_t"); -__static_renaming("____daddr_t_1136", "__daddr_t"); -__static_renaming("____key_t_1137", "__key_t"); -__static_renaming("____clockid_t_1138", "__clockid_t"); -__static_renaming("____timer_t_1139", "__timer_t"); -__static_renaming("____blksize_t_1140", "__blksize_t"); -__static_renaming("____blkcnt_t_1141", "__blkcnt_t"); -__static_renaming("____blkcnt64_t_1142", "__blkcnt64_t"); -__static_renaming("____fsblkcnt_t_1143", "__fsblkcnt_t"); -__static_renaming("____fsblkcnt64_t_1144", "__fsblkcnt64_t"); -__static_renaming("____fsfilcnt_t_1145", "__fsfilcnt_t"); -__static_renaming("____fsfilcnt64_t_1146", "__fsfilcnt64_t"); -__static_renaming("____fsword_t_1147", "__fsword_t"); -__static_renaming("____ssize_t_1148", "__ssize_t"); -__static_renaming("____syscall_slong_t_1149", "__syscall_slong_t"); -__static_renaming("____syscall_ulong_t_1150", "__syscall_ulong_t"); -__static_renaming("____loff_t_1151", "__loff_t"); -__static_renaming("____qaddr_t_1153", "__qaddr_t"); -__static_renaming("____caddr_t_1154", "__caddr_t"); -__static_renaming("____intptr_t_1155", "__intptr_t"); -__static_renaming("____socklen_t_1156", "__socklen_t"); -__static_renaming("____bswap_32_1158", "__bswap_32"); -__static_renaming("____bswap_64_1162", "__bswap_64"); -__static_renaming("____bswap_64_1163", "__bswap_64"); -__static_renaming("____WAIT_STATUS_1185", "__WAIT_STATUS"); -__static_renaming("__div_t_1190", "div_t"); -__static_renaming("__ldiv_t_1195", "ldiv_t"); -__static_renaming("__lldiv_t_1200", "lldiv_t"); -__static_renaming("____ctype_get_mb_cur_max_1201", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1202", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1203", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1204", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1205", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1206", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1207", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1208", "__ctype_get_mb_cur_max"); -__static_renaming("__atof_1210", "atof"); -__static_renaming("__atof_1211", "atof"); -__static_renaming("__atoi_1213", "atoi"); -__static_renaming("__atoi_1214", "atoi"); -__static_renaming("__atol_1216", "atol"); -__static_renaming("__atol_1217", "atol"); -__static_renaming("__atoll_1219", "atoll"); -__static_renaming("__atoll_1220", "atoll"); -__static_renaming("__strtod_1223", "strtod"); -__static_renaming("__strtof_1226", "strtof"); -__static_renaming("__strtold_1229", "strtold"); -__static_renaming("__strtol_1233", "strtol"); -__static_renaming("__strtoul_1237", "strtoul"); -__static_renaming("__strtoq_1241", "strtoq"); -__static_renaming("__strtouq_1245", "strtouq"); -__static_renaming("__strtoll_1249", "strtoll"); -__static_renaming("__strtoll_1250", "strtoll"); -__static_renaming("__strtoull_1254", "strtoull"); -__static_renaming("__l64a_1259", "l64a"); -__static_renaming("__l64a_1260", "l64a"); -__static_renaming("__a64l_1262", "a64l"); -__static_renaming("__a64l_1263", "a64l"); -__static_renaming("____u_char_1264", "__u_char"); -__static_renaming("____u_short_1265", "__u_short"); -__static_renaming("____u_int_1266", "__u_int"); -__static_renaming("____u_long_1267", "__u_long"); -__static_renaming("____int8_t_1268", "__int8_t"); -__static_renaming("____uint8_t_1269", "__uint8_t"); -__static_renaming("____int16_t_1270", "__int16_t"); -__static_renaming("____uint16_t_1271", "__uint16_t"); -__static_renaming("____int32_t_1272", "__int32_t"); -__static_renaming("____uint32_t_1273", "__uint32_t"); -__static_renaming("____int64_t_1274", "__int64_t"); -__static_renaming("____uint64_t_1275", "__uint64_t"); -__static_renaming("____quad_t_1276", "__quad_t"); -__static_renaming("____u_quad_t_1277", "__u_quad_t"); -__static_renaming("____dev_t_1278", "__dev_t"); -__static_renaming("____uid_t_1279", "__uid_t"); -__static_renaming("____gid_t_1280", "__gid_t"); -__static_renaming("____ino_t_1281", "__ino_t"); -__static_renaming("____ino64_t_1282", "__ino64_t"); -__static_renaming("____mode_t_1283", "__mode_t"); -__static_renaming("____nlink_t_1284", "__nlink_t"); -__static_renaming("____off_t_1285", "__off_t"); -__static_renaming("____off64_t_1286", "__off64_t"); -__static_renaming("____pid_t_1287", "__pid_t"); -__static_renaming("____fsid_t_1291", "__fsid_t"); -__static_renaming("____clock_t_1292", "__clock_t"); -__static_renaming("____rlim_t_1293", "__rlim_t"); -__static_renaming("____rlim64_t_1294", "__rlim64_t"); -__static_renaming("____id_t_1295", "__id_t"); -__static_renaming("____time_t_1296", "__time_t"); -__static_renaming("____useconds_t_1297", "__useconds_t"); -__static_renaming("____suseconds_t_1298", "__suseconds_t"); -__static_renaming("____daddr_t_1299", "__daddr_t"); -__static_renaming("____key_t_1300", "__key_t"); -__static_renaming("____clockid_t_1301", "__clockid_t"); -__static_renaming("____timer_t_1302", "__timer_t"); -__static_renaming("____blksize_t_1303", "__blksize_t"); -__static_renaming("____blkcnt_t_1304", "__blkcnt_t"); -__static_renaming("____blkcnt64_t_1305", "__blkcnt64_t"); -__static_renaming("____fsblkcnt_t_1306", "__fsblkcnt_t"); -__static_renaming("____fsblkcnt64_t_1307", "__fsblkcnt64_t"); -__static_renaming("____fsfilcnt_t_1308", "__fsfilcnt_t"); -__static_renaming("____fsfilcnt64_t_1309", "__fsfilcnt64_t"); -__static_renaming("____fsword_t_1310", "__fsword_t"); -__static_renaming("____ssize_t_1311", "__ssize_t"); -__static_renaming("____syscall_slong_t_1312", "__syscall_slong_t"); -__static_renaming("____syscall_ulong_t_1313", "__syscall_ulong_t"); -__static_renaming("____loff_t_1314", "__loff_t"); -__static_renaming("____qaddr_t_1316", "__qaddr_t"); -__static_renaming("____caddr_t_1317", "__caddr_t"); -__static_renaming("____intptr_t_1318", "__intptr_t"); -__static_renaming("____socklen_t_1319", "__socklen_t"); -__static_renaming("__u_char_1320", "u_char"); -__static_renaming("__u_char_1321", "u_char"); -__static_renaming("__u_char_1322", "u_char"); -__static_renaming("__u_short_1323", "u_short"); -__static_renaming("__u_short_1324", "u_short"); -__static_renaming("__u_short_1325", "u_short"); -__static_renaming("__u_int_1326", "u_int"); -__static_renaming("__u_int_1327", "u_int"); -__static_renaming("__u_int_1328", "u_int"); -__static_renaming("__u_long_1329", "u_long"); -__static_renaming("__u_long_1330", "u_long"); -__static_renaming("__u_long_1331", "u_long"); -__static_renaming("__quad_t_1332", "quad_t"); -__static_renaming("__quad_t_1333", "quad_t"); -__static_renaming("__quad_t_1334", "quad_t"); -__static_renaming("__u_quad_t_1335", "u_quad_t"); -__static_renaming("__u_quad_t_1336", "u_quad_t"); -__static_renaming("__u_quad_t_1337", "u_quad_t"); -__static_renaming("__fsid_t_1338", "fsid_t"); -__static_renaming("__fsid_t_1339", "fsid_t"); -__static_renaming("__fsid_t_1340", "fsid_t"); -__static_renaming("__loff_t_1342", "loff_t"); -__static_renaming("__loff_t_1343", "loff_t"); -__static_renaming("__loff_t_1344", "loff_t"); -__static_renaming("__loff_t_1346", "loff_t"); -__static_renaming("__loff_t_1347", "loff_t"); -__static_renaming("__loff_t_1348", "loff_t"); -__static_renaming("__ino_t_1350", "ino_t"); -__static_renaming("__ino_t_1351", "ino_t"); -__static_renaming("__ino_t_1352", "ino_t"); -__static_renaming("__ino_t_1354", "ino_t"); -__static_renaming("__ino_t_1355", "ino_t"); -__static_renaming("__ino_t_1356", "ino_t"); -__static_renaming("__dev_t_1358", "dev_t"); -__static_renaming("__dev_t_1359", "dev_t"); -__static_renaming("__dev_t_1360", "dev_t"); -__static_renaming("__gid_t_1362", "gid_t"); -__static_renaming("__gid_t_1363", "gid_t"); -__static_renaming("__gid_t_1364", "gid_t"); -__static_renaming("__gid_t_1366", "gid_t"); -__static_renaming("__gid_t_1367", "gid_t"); -__static_renaming("__gid_t_1368", "gid_t"); -__static_renaming("__mode_t_1370", "mode_t"); -__static_renaming("__mode_t_1371", "mode_t"); -__static_renaming("__mode_t_1372", "mode_t"); -__static_renaming("__nlink_t_1374", "nlink_t"); -__static_renaming("__nlink_t_1375", "nlink_t"); -__static_renaming("__nlink_t_1376", "nlink_t"); -__static_renaming("__uid_t_1378", "uid_t"); -__static_renaming("__uid_t_1379", "uid_t"); -__static_renaming("__uid_t_1380", "uid_t"); -__static_renaming("__uid_t_1382", "uid_t"); -__static_renaming("__uid_t_1383", "uid_t"); -__static_renaming("__uid_t_1384", "uid_t"); -__static_renaming("__off_t_1386", "off_t"); -__static_renaming("__off_t_1387", "off_t"); -__static_renaming("__off_t_1389", "off_t"); -__static_renaming("__off_t_1390", "off_t"); -__static_renaming("__pid_t_1392", "pid_t"); -__static_renaming("__pid_t_1393", "pid_t"); -__static_renaming("__pid_t_1394", "pid_t"); -__static_renaming("__pid_t_1396", "pid_t"); -__static_renaming("__pid_t_1397", "pid_t"); -__static_renaming("__id_t_1399", "id_t"); -__static_renaming("__id_t_1400", "id_t"); -__static_renaming("__id_t_1401", "id_t"); -__static_renaming("__ssize_t_1403", "ssize_t"); -__static_renaming("__ssize_t_1404", "ssize_t"); -__static_renaming("__daddr_t_1406", "daddr_t"); -__static_renaming("__daddr_t_1407", "daddr_t"); -__static_renaming("__daddr_t_1408", "daddr_t"); -__static_renaming("__caddr_t_1410", "caddr_t"); -__static_renaming("__caddr_t_1411", "caddr_t"); -__static_renaming("__caddr_t_1412", "caddr_t"); -__static_renaming("__key_t_1413", "key_t"); -__static_renaming("__key_t_1414", "key_t"); -__static_renaming("__key_t_1415", "key_t"); -__static_renaming("__key_t_1417", "key_t"); -__static_renaming("__key_t_1418", "key_t"); -__static_renaming("__key_t_1419", "key_t"); -__static_renaming("__clock_t_1421", "clock_t"); -__static_renaming("__clock_t_1422", "clock_t"); -__static_renaming("__clock_t_1423", "clock_t"); -__static_renaming("__time_t_1425", "time_t"); -__static_renaming("__time_t_1426", "time_t"); -__static_renaming("__time_t_1427", "time_t"); -__static_renaming("__clockid_t_1429", "clockid_t"); -__static_renaming("__clockid_t_1430", "clockid_t"); -__static_renaming("__clockid_t_1431", "clockid_t"); -__static_renaming("__timer_t_1433", "timer_t"); -__static_renaming("__timer_t_1434", "timer_t"); -__static_renaming("__timer_t_1435", "timer_t"); -__static_renaming("__ulong_1437", "ulong"); -__static_renaming("__ulong_1438", "ulong"); -__static_renaming("__ulong_1439", "ulong"); -__static_renaming("__ushort_1440", "ushort"); -__static_renaming("__uint_1441", "uint"); -__static_renaming("__int8_t_1442", "int8_t"); -__static_renaming("__int16_t_1443", "int16_t"); -__static_renaming("__int32_t_1444", "int32_t"); -__static_renaming("__int64_t_1445", "int64_t"); -__static_renaming("__u_int8_t_1446", "u_int8_t"); -__static_renaming("__u_int16_t_1447", "u_int16_t"); -__static_renaming("__u_int32_t_1448", "u_int32_t"); -__static_renaming("__u_int64_t_1449", "u_int64_t"); -__static_renaming("__register_t_1450", "register_t"); -__static_renaming("____bswap_32_1452", "__bswap_32"); -__static_renaming("____bswap_64_1456", "__bswap_64"); -__static_renaming("____bswap_64_1457", "__bswap_64"); -__static_renaming("____sig_atomic_t_1460", "__sig_atomic_t"); -__static_renaming("____sigset_t_1464", "__sigset_t"); -__static_renaming("__sigset_t_1465", "sigset_t"); -__static_renaming("__suseconds_t_1486", "suseconds_t"); -__static_renaming("__suseconds_t_1487", "suseconds_t"); -__static_renaming("__suseconds_t_1488", "suseconds_t"); -__static_renaming("____fd_mask_1490", "__fd_mask"); -__static_renaming("____fd_mask_1491", "__fd_mask"); -__static_renaming("__fd_set_1499", "fd_set"); -__static_renaming("__fd_mask_1500", "fd_mask"); -__static_renaming("__fd_mask_1501", "fd_mask"); -__static_renaming("__select_1513", "select"); -__static_renaming("__select_1514", "select"); -__static_renaming("__pselect_1529", "pselect"); -__static_renaming("__pselect_1530", "pselect"); -__static_renaming("____fdelt_chk_1534", "__fdelt_chk"); -__static_renaming("____fdelt_warn_1536", "__fdelt_warn"); -__static_renaming("__gnu_dev_major_1538", "gnu_dev_major"); -__static_renaming("__gnu_dev_major_1539", "gnu_dev_major"); -__static_renaming("__gnu_dev_minor_1541", "gnu_dev_minor"); -__static_renaming("__gnu_dev_makedev_1544", "gnu_dev_makedev"); -__static_renaming("__blksize_t_1549", "blksize_t"); -__static_renaming("__blksize_t_1550", "blksize_t"); -__static_renaming("__blksize_t_1551", "blksize_t"); -__static_renaming("__blkcnt_t_1553", "blkcnt_t"); -__static_renaming("__blkcnt_t_1554", "blkcnt_t"); -__static_renaming("__blkcnt_t_1555", "blkcnt_t"); -__static_renaming("__fsblkcnt_t_1557", "fsblkcnt_t"); -__static_renaming("__fsblkcnt_t_1558", "fsblkcnt_t"); -__static_renaming("__fsblkcnt_t_1559", "fsblkcnt_t"); -__static_renaming("__blkcnt_t_1561", "blkcnt_t"); -__static_renaming("__blkcnt_t_1562", "blkcnt_t"); -__static_renaming("__blkcnt_t_1563", "blkcnt_t"); -__static_renaming("__fsblkcnt_t_1565", "fsblkcnt_t"); -__static_renaming("__fsblkcnt_t_1566", "fsblkcnt_t"); -__static_renaming("__fsblkcnt_t_1567", "fsblkcnt_t"); -__static_renaming("__fsfilcnt_t_1569", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_1570", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_1571", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_1573", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_1574", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_1575", "fsfilcnt_t"); -__static_renaming("__pthread_t_1577", "pthread_t"); -__static_renaming("__pthread_attr_t_1581", "pthread_attr_t"); -__static_renaming("____pthread_list_t_1586", "__pthread_list_t"); -__static_renaming("____pthread_list_t_1587", "__pthread_list_t"); -__static_renaming("__pthread_mutex_t_1603", "pthread_mutex_t"); -__static_renaming("__pthread_mutexattr_t_1608", "pthread_mutexattr_t"); -__static_renaming("__rand_1609", "rand"); -__static_renaming("__srand_1611", "srand"); -__static_renaming("__rand_r_1613", "rand_r"); -__static_renaming("__drand48_1614", "drand48"); -__static_renaming("__erand48_1616", "erand48"); -__static_renaming("__lrand48_1617", "lrand48"); -__static_renaming("__nrand48_1619", "nrand48"); -__static_renaming("__mrand48_1620", "mrand48"); -__static_renaming("__jrand48_1622", "jrand48"); -__static_renaming("__srand48_1624", "srand48"); -__static_renaming("__seed48_1626", "seed48"); -__static_renaming("__lcong48_1628", "lcong48"); -__static_renaming("__malloc_1631", "malloc"); -__static_renaming("__malloc_1632", "malloc"); -__static_renaming("__malloc_1633", "malloc"); -__static_renaming("__malloc_1634", "malloc"); -__static_renaming("__calloc_1639", "calloc"); -__static_renaming("__calloc_1640", "calloc"); -__static_renaming("__calloc_1641", "calloc"); -__static_renaming("__calloc_1642", "calloc"); -__static_renaming("__realloc_1646", "realloc"); -__static_renaming("__realloc_1647", "realloc"); -__static_renaming("__free_1649", "free"); -__static_renaming("__cfree_1651", "cfree"); -__static_renaming("__alloca_1654", "alloca"); -__static_renaming("__alloca_1655", "alloca"); -__static_renaming("__valloc_1658", "valloc"); -__static_renaming("__valloc_1659", "valloc"); -__static_renaming("__valloc_1660", "valloc"); -__static_renaming("__valloc_1661", "valloc"); -__static_renaming("__posix_memalign_1667", "posix_memalign"); -__static_renaming("__posix_memalign_1668", "posix_memalign"); -__static_renaming("__posix_memalign_1669", "posix_memalign"); -__static_renaming("__posix_memalign_1670", "posix_memalign"); -__static_renaming("__aligned_alloc_1675", "aligned_alloc"); -__static_renaming("__aligned_alloc_1676", "aligned_alloc"); -__static_renaming("__aligned_alloc_1677", "aligned_alloc"); -__static_renaming("__aligned_alloc_1678", "aligned_alloc"); -__static_renaming("__aligned_alloc_1679", "aligned_alloc"); -__static_renaming("__aligned_alloc_1680", "aligned_alloc"); -__static_renaming("__aligned_alloc_1681", "aligned_alloc"); -__static_renaming("__aligned_alloc_1682", "aligned_alloc"); -__static_renaming("__abort_1683", "abort"); -__static_renaming("__atexit_1685", "atexit"); -__static_renaming("__at_quick_exit_1687", "at_quick_exit"); -__static_renaming("__on_exit_1692", "on_exit"); -__static_renaming("__exit_1694", "exit"); -__static_renaming("__exit_1695", "exit"); -__static_renaming("__quick_exit_1697", "quick_exit"); -__static_renaming("___Exit_1699", "_Exit"); -__static_renaming("__getenv_1701", "getenv"); -__static_renaming("__getenv_1702", "getenv"); -__static_renaming("__putenv_1704", "putenv"); -__static_renaming("__setenv_1708", "setenv"); -__static_renaming("__unsetenv_1710", "unsetenv"); -__static_renaming("__clearenv_1711", "clearenv"); -__static_renaming("__mktemp_1713", "mktemp"); -__static_renaming("__mkstemp_1716", "mkstemp"); -__static_renaming("__mkstemp_1717", "mkstemp"); -__static_renaming("__mkstemp_1718", "mkstemp"); -__static_renaming("__mkstemp_1719", "mkstemp"); -__static_renaming("__mkstemps_1724", "mkstemps"); -__static_renaming("__mkstemps_1725", "mkstemps"); -__static_renaming("__mkstemps_1726", "mkstemps"); -__static_renaming("__mkstemps_1727", "mkstemps"); -__static_renaming("__mkdtemp_1729", "mkdtemp"); -__static_renaming("__mkdtemp_1730", "mkdtemp"); -__static_renaming("__system_1732", "system"); -__static_renaming("__system_1733", "system"); -__static_renaming("__system_1734", "system"); -__static_renaming("__system_1735", "system"); -__static_renaming("__realpath_1738", "realpath"); -__static_renaming("__realpath_1739", "realpath"); -__static_renaming("____compar_fn_t_1740", "__compar_fn_t"); -__static_renaming("__bsearch_1751", "bsearch"); -__static_renaming("__bsearch_1752", "bsearch"); -__static_renaming("__bsearch_1755", "bsearch"); -__static_renaming("__bsearch_1756", "bsearch"); -__static_renaming("____l_1765", "__l"); -__static_renaming("____l_1766", "__l"); -__static_renaming("____u_1767", "__u"); -__static_renaming("____u_1768", "__u"); -__static_renaming("____idx_1769", "__idx"); -__static_renaming("____idx_1770", "__idx"); -__static_renaming("____p_1771", "__p"); -__static_renaming("____comparison_1772", "__comparison"); -__static_renaming("__qsort_1784", "qsort"); -__static_renaming("__qsort_1786", "qsort"); -__static_renaming("__qsort_1788", "qsort"); -__static_renaming("__qsort_1790", "qsort"); -__static_renaming("__abs_1793", "abs"); -__static_renaming("__abs_1794", "abs"); -__static_renaming("__labs_1796", "labs"); -__static_renaming("__labs_1797", "labs"); -__static_renaming("__llabs_1799", "llabs"); -__static_renaming("__llabs_1800", "llabs"); -__static_renaming("__div_1803", "div"); -__static_renaming("__div_1804", "div"); -__static_renaming("__ldiv_1807", "ldiv"); -__static_renaming("__ldiv_1809", "ldiv"); -__static_renaming("__lldiv_1813", "lldiv"); -__static_renaming("__lldiv_1815", "lldiv"); -__static_renaming("__ecvt_1821", "ecvt"); -__static_renaming("__ecvt_1822", "ecvt"); -__static_renaming("__fcvt_1827", "fcvt"); -__static_renaming("__fcvt_1828", "fcvt"); -__static_renaming("__gcvt_1832", "gcvt"); -__static_renaming("__gcvt_1833", "gcvt"); -__static_renaming("__qecvt_1838", "qecvt"); -__static_renaming("__qecvt_1839", "qecvt"); -__static_renaming("__qfcvt_1844", "qfcvt"); -__static_renaming("__qfcvt_1845", "qfcvt"); -__static_renaming("__qgcvt_1849", "qgcvt"); -__static_renaming("__qgcvt_1850", "qgcvt"); -__static_renaming("__ecvt_r_1858", "ecvt_r"); -__static_renaming("__ecvt_r_1859", "ecvt_r"); -__static_renaming("__fcvt_r_1867", "fcvt_r"); -__static_renaming("__fcvt_r_1868", "fcvt_r"); -__static_renaming("__qecvt_r_1876", "qecvt_r"); -__static_renaming("__qecvt_r_1877", "qecvt_r"); -__static_renaming("__qfcvt_r_1885", "qfcvt_r"); -__static_renaming("__qfcvt_r_1886", "qfcvt_r"); -__static_renaming("__mblen_1890", "mblen"); -__static_renaming("__mblen_1891", "mblen"); -__static_renaming("__mblen_1892", "mblen"); -__static_renaming("__mblen_1893", "mblen"); -__static_renaming("__mbtowc_1898", "mbtowc"); -__static_renaming("__mbtowc_1899", "mbtowc"); -__static_renaming("__wctomb_1902", "wctomb"); -__static_renaming("__mbstowcs_1907", "mbstowcs"); -__static_renaming("__mbstowcs_1908", "mbstowcs"); -__static_renaming("__wcstombs_1913", "wcstombs"); -__static_renaming("__wcstombs_1914", "wcstombs"); -__static_renaming("__rpmatch_1916", "rpmatch"); -__static_renaming("__rpmatch_1917", "rpmatch"); -__static_renaming("__getsubopt_1921", "getsubopt"); -__static_renaming("__getsubopt_1922", "getsubopt"); -__static_renaming("__getloadavg_1925", "getloadavg"); -__static_renaming("____realpath_chk_1931", "__realpath_chk"); -__static_renaming("____realpath_chk_1932", "__realpath_chk"); -__static_renaming("____realpath_alias_1935", "__realpath_alias"); -__static_renaming("____realpath_chk_warn_1940", "__realpath_chk_warn"); -__static_renaming("____realpath_chk_warn_1941", "__realpath_chk_warn"); -__static_renaming("____ptsname_r_chk_1951", "__ptsname_r_chk"); -__static_renaming("____ptsname_r_chk_1952", "__ptsname_r_chk"); -__static_renaming("____ptsname_r_alias_1957", "__ptsname_r_alias"); -__static_renaming("____ptsname_r_alias_1958", "__ptsname_r_alias"); -__static_renaming("____ptsname_r_chk_warn_1965", "__ptsname_r_chk_warn"); -__static_renaming("____ptsname_r_chk_warn_1966", "__ptsname_r_chk_warn"); -__static_renaming("____wctomb_chk_1977", "__wctomb_chk"); -__static_renaming("____wctomb_chk_1978", "__wctomb_chk"); -__static_renaming("____wctomb_alias_1981", "__wctomb_alias"); -__static_renaming("____mbstowcs_chk_1990", "__mbstowcs_chk"); -__static_renaming("____mbstowcs_chk_1991", "__mbstowcs_chk"); -__static_renaming("____mbstowcs_alias_1996", "__mbstowcs_alias"); -__static_renaming("____mbstowcs_alias_1997", "__mbstowcs_alias"); -__static_renaming("____mbstowcs_chk_warn_2004", "__mbstowcs_chk_warn"); -__static_renaming("____mbstowcs_chk_warn_2005", "__mbstowcs_chk_warn"); -__static_renaming("____wcstombs_chk_2016", "__wcstombs_chk"); -__static_renaming("____wcstombs_chk_2017", "__wcstombs_chk"); -__static_renaming("____wcstombs_alias_2022", "__wcstombs_alias"); -__static_renaming("____wcstombs_alias_2023", "__wcstombs_alias"); -__static_renaming("____wcstombs_chk_warn_2030", "__wcstombs_chk_warn"); -__static_renaming("____wcstombs_chk_warn_2031", "__wcstombs_chk_warn"); -__static_renaming("__ptrdiff_t_2036", "ptrdiff_t"); -__static_renaming("__size_t_2037", "size_t"); -__static_renaming("__memmove_2053", "memmove"); -__static_renaming("__memmove_2054", "memmove"); -__static_renaming("__memmove_2055", "memmove"); -__static_renaming("__memset_2070", "memset"); -__static_renaming("__memset_2071", "memset"); -__static_renaming("__memset_2072", "memset"); -__static_renaming("__memset_2073", "memset"); -__static_renaming("__memset_2074", "memset"); -__static_renaming("__memset_2075", "memset"); -__static_renaming("__memcmp_2081", "memcmp"); -__static_renaming("__memcmp_2082", "memcmp"); -__static_renaming("__memcmp_2083", "memcmp"); -__static_renaming("__memchr_2089", "memchr"); -__static_renaming("__memchr_2090", "memchr"); -__static_renaming("__memchr_2091", "memchr"); -__static_renaming("__strcpy_2094", "strcpy"); -__static_renaming("__strncpy_2100", "strncpy"); -__static_renaming("__strncpy_2101", "strncpy"); -__static_renaming("__strncpy_2102", "strncpy"); -__static_renaming("__strcat_2105", "strcat"); -__static_renaming("__strncat_2111", "strncat"); -__static_renaming("__strncat_2112", "strncat"); -__static_renaming("__strncat_2113", "strncat"); -__static_renaming("__strcmp_2116", "strcmp"); -__static_renaming("__strncmp_2122", "strncmp"); -__static_renaming("__strncmp_2123", "strncmp"); -__static_renaming("__strncmp_2124", "strncmp"); -__static_renaming("__strcoll_2127", "strcoll"); -__static_renaming("__strxfrm_2133", "strxfrm"); -__static_renaming("__strxfrm_2134", "strxfrm"); -__static_renaming("__strxfrm_2135", "strxfrm"); -__static_renaming("____locale_t_2143", "__locale_t"); -__static_renaming("__locale_t_2144", "locale_t"); -__static_renaming("__strcoll_l_2148", "strcoll_l"); -__static_renaming("__strxfrm_l_2155", "strxfrm_l"); -__static_renaming("__strxfrm_l_2156", "strxfrm_l"); -__static_renaming("__strxfrm_l_2157", "strxfrm_l"); -__static_renaming("__strdup_2159", "strdup"); -__static_renaming("__strndup_2164", "strndup"); -__static_renaming("__strndup_2165", "strndup"); -__static_renaming("__strndup_2166", "strndup"); -__static_renaming("__strchr_2169", "strchr"); -__static_renaming("__strrchr_2172", "strrchr"); -__static_renaming("__strcspn_2175", "strcspn"); -__static_renaming("__strcspn_2176", "strcspn"); -__static_renaming("__strcspn_2177", "strcspn"); -__static_renaming("__strspn_2180", "strspn"); -__static_renaming("__strspn_2181", "strspn"); -__static_renaming("__strspn_2182", "strspn"); -__static_renaming("__strpbrk_2185", "strpbrk"); -__static_renaming("__strstr_2188", "strstr"); -__static_renaming("__strtok_2191", "strtok"); -__static_renaming("____strtok_r_2195", "__strtok_r"); -__static_renaming("__strtok_r_2199", "strtok_r"); -__static_renaming("__strlen_2201", "strlen"); -__static_renaming("__strlen_2202", "strlen"); -__static_renaming("__strlen_2203", "strlen"); -__static_renaming("__strlen_2204", "strlen"); -__static_renaming("__strlen_2205", "strlen"); -__static_renaming("__strlen_2206", "strlen"); -__static_renaming("__strnlen_2211", "strnlen"); -__static_renaming("__strnlen_2212", "strnlen"); -__static_renaming("__strnlen_2213", "strnlen"); -__static_renaming("__strerror_2215", "strerror"); -__static_renaming("__strerror_2216", "strerror"); -__static_renaming("__strerror_r_2222", "strerror_r"); -__static_renaming("__strerror_r_2223", "strerror_r"); -__static_renaming("__strerror_r_2224", "strerror_r"); -__static_renaming("__strerror_l_2227", "strerror_l"); -__static_renaming("____bzero_2232", "__bzero"); -__static_renaming("____bzero_2233", "__bzero"); -__static_renaming("____bzero_2234", "__bzero"); -__static_renaming("____bzero_2235", "__bzero"); -__static_renaming("____bzero_2236", "__bzero"); -__static_renaming("____bzero_2237", "__bzero"); -__static_renaming("__bcopy_2243", "bcopy"); -__static_renaming("__bcopy_2244", "bcopy"); -__static_renaming("__bcopy_2245", "bcopy"); -__static_renaming("__bzero_2250", "bzero"); -__static_renaming("__bzero_2251", "bzero"); -__static_renaming("__bzero_2252", "bzero"); -__static_renaming("__bcmp_2258", "bcmp"); -__static_renaming("__bcmp_2259", "bcmp"); -__static_renaming("__bcmp_2260", "bcmp"); -__static_renaming("__index_2263", "index"); -__static_renaming("__rindex_2266", "rindex"); -__static_renaming("__ffs_2268", "ffs"); -__static_renaming("__strcasecmp_2271", "strcasecmp"); -__static_renaming("__strncasecmp_2277", "strncasecmp"); -__static_renaming("__strncasecmp_2278", "strncasecmp"); -__static_renaming("__strncasecmp_2279", "strncasecmp"); -__static_renaming("__strsep_2282", "strsep"); -__static_renaming("__strsignal_2284", "strsignal"); -__static_renaming("____stpcpy_2287", "__stpcpy"); -__static_renaming("__stpcpy_2290", "stpcpy"); -__static_renaming("____stpncpy_2296", "__stpncpy"); -__static_renaming("____stpncpy_2297", "__stpncpy"); -__static_renaming("____stpncpy_2298", "__stpncpy"); -__static_renaming("__stpncpy_2304", "stpncpy"); -__static_renaming("__stpncpy_2305", "stpncpy"); -__static_renaming("__stpncpy_2306", "stpncpy"); -__static_renaming("____stpncpy_chk_2360", "__stpncpy_chk"); -__static_renaming("____stpncpy_chk_2361", "__stpncpy_chk"); -__static_renaming("____stpncpy_chk_2362", "__stpncpy_chk"); -__static_renaming("____stpncpy_alias_2368", "__stpncpy_alias"); -__static_renaming("____stpncpy_alias_2369", "__stpncpy_alias"); -__static_renaming("____stpncpy_alias_2370", "__stpncpy_alias"); -__static_renaming("__ethtable_t_2394", "ethtable_t"); -__static_renaming("__ethtable_t_2395", "ethtable_t"); -__static_renaming("__delete_eth_table_2398", "delete_eth_table"); -__static_renaming("__delete_eth_table_2399", "delete_eth_table"); -__static_renaming("__delete_eth_table_2412", "delete_eth_table"); -__static_renaming("__delete_eth_table_2413", "delete_eth_table"); -__static_renaming("__ch_2419", "ch"); -__static_renaming("__ch_2420", "ch"); -__static_renaming("__prepend_new_eth_table_2427", "prepend_new_eth_table"); -__static_renaming("__prepend_new_eth_table_2428", "prepend_new_eth_table"); -__static_renaming("__clist_2451", "clist"); -__static_renaming("__clist_2452", "clist"); -__static_renaming("__ch_2453", "ch"); -__static_renaming("__ch_2454", "ch"); -__static_renaming("__main_2455", "main"); - -__static_condition_renaming("__static_condition_default_53", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_76", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_84", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_123", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_169", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_170", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_173", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_182", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_187", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_193", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_198", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_201", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_204", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_210", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_217", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_223", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_229", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_235", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_238", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_241", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_244", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_246", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_248", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_249", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_250", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_253", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_255", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_257", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_258", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_259", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_263", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_264", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_267", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_270", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_271", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_274", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_275", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_278", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_280", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); -__static_condition_renaming("__static_condition_default_282", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_284", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_286", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_288", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_290", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_293", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_296", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_299", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_311", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_313", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_315", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_317", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_331", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_333", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_337", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_341", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_345", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_347", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_355", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_357", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_363", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_365", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_367", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_369", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_373", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_375", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_380", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_382", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_386", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_388", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_393", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_395", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_402", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_408", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_412", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_417", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_419", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_431", "!(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_432", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_433", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_438", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_444", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_455", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_461", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_469", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_471", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_473", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_475", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_486", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_488", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_489", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_491", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_493", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_494", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_497", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_499", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_503", "!(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_510", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_511", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_512", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_514", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_515", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_516", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_521", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_523", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_529", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_536", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_537", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_538", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_539", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_541", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_542", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_543", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_544", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_549", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_550", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_552", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_553", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_559", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_560", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_564", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_568", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_573", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_578", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_583", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_585", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_590", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_597", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_602", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_608", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_613", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_619", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_621", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_623", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_625", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_632", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_633", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_634", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_636", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_637", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_638", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_645", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_646", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_647", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_649", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_650", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_651", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_657", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_658", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_659", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_661", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_662", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_663", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_668", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_670", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_677", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_683", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_684", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_685", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_686", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_692", "!(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_693", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_699", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_700", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_701", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_702", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_708", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_709", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_715", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_717", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_721", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_723", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_727", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_734", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_735", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_736", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_745", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_746", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_747", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_751", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_752", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_753", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_755", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_756", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_757", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_759", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_760", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_761", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_767", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_768", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_769", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_779", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_780", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_781", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_787", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_788", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_789", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_791", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_792", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_793", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_797", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_801", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_803", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_807", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_809", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_813", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_817", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_819", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_823", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_825", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_834", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_836", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_840", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_842", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_846", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_848", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_852", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_858", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_862", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_864", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_868", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_872", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_875", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_878", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_883", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_887", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_891", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_894", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_907", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_914", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_929", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_938", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_944", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_955", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_956", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_957", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_963", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_967", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_972", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_978", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_979", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_980", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_991", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_998", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1005", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1007", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1009", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1015", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1022", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1027", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1028", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1035", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1036", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1042", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1043", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1050", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1051", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1057", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1058", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1065", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1066", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1072", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1073", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1080", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1081", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1089", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_1090", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1091", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1152", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1159", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1164", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1165", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1315", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1341", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __u_char_defined)"); -__static_condition_renaming("__static_condition_default_1345", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __u_char_defined)"); -__static_condition_renaming("__static_condition_default_1349", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __u_char_defined)"); -__static_condition_renaming("__static_condition_default_1353", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined)"); -__static_condition_renaming("__static_condition_default_1357", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined)"); -__static_condition_renaming("__static_condition_default_1361", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_1365", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_1369", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_1373", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1377", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __nlink_t_defined)"); -__static_condition_renaming("__static_condition_default_1381", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __nlink_t_defined)"); -__static_condition_renaming("__static_condition_default_1385", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __nlink_t_defined)"); -__static_condition_renaming("__static_condition_default_1388", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1391", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1395", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && (defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1398", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1402", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __id_t_defined)"); -__static_condition_renaming("__static_condition_default_1405", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1409", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_1416", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_1420", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_1424", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __clock_t_defined)"); -__static_condition_renaming("__static_condition_default_1428", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __time_t_defined)"); -__static_condition_renaming("__static_condition_default_1432", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __clockid_t_defined)"); -__static_condition_renaming("__static_condition_default_1436", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timer_t_defined)"); -__static_condition_renaming("__static_condition_default_1453", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1458", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1459", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1475", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_1485", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_1489", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __suseconds_t_defined)"); -__static_condition_renaming("__static_condition_default_1498", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1515", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_1516", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_1531", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_1532", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_1552", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blksize_t_defined)"); -__static_condition_renaming("__static_condition_default_1556", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined)"); -__static_condition_renaming("__static_condition_default_1560", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1564", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined)"); -__static_condition_renaming("__static_condition_default_1568", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1572", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1576", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1749", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1750", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1753", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1754", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1773", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1774", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1775", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1776", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1785", "!(defined __need___FILE) && !(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1787", "(defined __need___FILE) && !(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1789", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1791", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1808", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1810", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1814", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1816", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1944", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_2043", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_2044", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_2045", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _STDLIB_H) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDLIB_H) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDLIB_H) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDLIB_H) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2046", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2047", "(defined __need___FILE) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2062", "!(defined __need___FILE) && !(defined __STRICT_ANSI__)"); -__static_condition_renaming("__static_condition_default_2063", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2064", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2312", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2313", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2314", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2320", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2321", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2322", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2328", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2329", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2330", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2342", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2343", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2349", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2350", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2351", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2376", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2377", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2378", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2381", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2387", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2388", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2389", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2400", "!(defined _FORTIFY_SOURCE) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_CLEAN_UP)"); -__static_condition_renaming("__static_condition_default_2401", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP)"); -__static_condition_renaming("__static_condition_default_2402", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP) || !(defined _FORTIFY_SOURCE) && (defined _STDLIB_H) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDLIB_H) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDLIB_H) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDLIB_H) && (defined ENABLE_FEATURE_CLEAN_UP)"); -__static_condition_renaming("__static_condition_default_2403", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP)"); -__static_condition_renaming("__static_condition_default_2404", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP) || !(defined _FORTIFY_SOURCE) && (defined _STDLIB_H) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDLIB_H) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDLIB_H) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDLIB_H) && (defined ENABLE_FEATURE_CLEAN_UP)"); -__static_condition_renaming("__static_condition_default_2405", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_CLEAN_UP)"); -__static_condition_renaming("__static_condition_default_2406", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP)"); -__static_condition_renaming("__static_condition_default_2407", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H) && (defined ENABLE_FEATURE_CLEAN_UP)"); -__static_condition_renaming("__static_condition_default_2408", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP)"); -__static_condition_renaming("__static_condition_default_2409", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H) && (defined ENABLE_FEATURE_CLEAN_UP)"); -__static_condition_renaming("__static_condition_default_2414", "!(defined _FORTIFY_SOURCE) && !(defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined ENABLE_FEATURE_CLEAN_UP)"); -__static_condition_renaming("__static_condition_default_2415", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined ENABLE_FEATURE_CLEAN_UP)"); -__static_condition_renaming("__static_condition_default_2429", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2430", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2431", "(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2432", "(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDLIB_H) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDLIB_H) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDLIB_H) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2433", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2434", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2435", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDLIB_H) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDLIB_H) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDLIB_H) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2436", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined)"); -__static_condition_renaming("__static_condition_default_2437", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || (defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined)"); -__static_condition_renaming("__static_condition_default_2438", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDLIB_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDLIB_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDLIB_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDLIB_H) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDLIB_H) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDLIB_H) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDLIB_H) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2439", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2440", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2441", "(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2442", "(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2443", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2444", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2445", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2446", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined)"); -__static_condition_renaming("__static_condition_default_2447", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined)"); -__static_condition_renaming("__static_condition_default_2448", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2456", "!(defined _FORTIFY_SOURCE) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_CLEAN_UP)"); -__static_condition_renaming("__static_condition_default_2457", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_CLEAN_UP)"); -__static_condition_renaming("__static_condition_default_2458", "!(defined ENABLE_FEATURE_CLEAN_UP)"); -__static_condition_renaming("__static_condition_default_2459", "(defined ENABLE_FEATURE_CLEAN_UP)"); -__static_condition_renaming("__static_condition_default_2460", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && (defined _STDLIB_H) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && (defined _STDLIB_H) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO)"); - -if (__static_condition_default_2460) -{ +__static_renaming("____qaddr_t_53", "__qaddr_t"); +__static_renaming("____caddr_t_54", "__caddr_t"); +__static_renaming("____intptr_t_55", "__intptr_t"); +__static_renaming("____socklen_t_56", "__socklen_t"); +__static_renaming("__FILE_58", "FILE"); +__static_renaming("____FILE_59", "__FILE"); +__static_renaming("____mbstate_t_68", "__mbstate_t"); +__static_renaming("___G_fpos_t_75", "_G_fpos_t"); +__static_renaming("___G_fpos64_t_81", "_G_fpos64_t"); +__static_renaming("____gnuc_va_list_82", "__gnuc_va_list"); +__static_renaming("___IO_lock_t_84", "_IO_lock_t"); +__static_renaming("___IO_FILE_163", "_IO_FILE"); +__static_renaming("___IO_FILE_164", "_IO_FILE"); +__static_renaming("___IO_2_1_stdin__167", "_IO_2_1_stdin_"); +__static_renaming("___IO_2_1_stdout__168", "_IO_2_1_stdout_"); +__static_renaming("___IO_2_1_stderr__169", "_IO_2_1_stderr_"); +__static_renaming("____io_read_fn_173", "__io_read_fn"); +__static_renaming("____io_write_fn_177", "__io_write_fn"); +__static_renaming("____io_seek_fn_181", "__io_seek_fn"); +__static_renaming("____io_close_fn_183", "__io_close_fn"); +__static_renaming("____underflow_184", "__underflow"); +__static_renaming("____underflow_185", "__underflow"); +__static_renaming("____uflow_186", "__uflow"); +__static_renaming("____uflow_187", "__uflow"); +__static_renaming("____overflow_188", "__overflow"); +__static_renaming("____overflow_189", "__overflow"); +__static_renaming("___IO_getc_193", "_IO_getc"); +__static_renaming("___IO_getc_194", "_IO_getc"); +__static_renaming("___IO_putc_199", "_IO_putc"); +__static_renaming("___IO_putc_200", "_IO_putc"); +__static_renaming("___IO_feof_204", "_IO_feof"); +__static_renaming("___IO_feof_205", "_IO_feof"); +__static_renaming("___IO_ferror_209", "_IO_ferror"); +__static_renaming("___IO_ferror_210", "_IO_ferror"); +__static_renaming("___IO_peekc_locked_214", "_IO_peekc_locked"); +__static_renaming("___IO_peekc_locked_215", "_IO_peekc_locked"); +__static_renaming("___IO_flockfile_216", "_IO_flockfile"); +__static_renaming("___IO_flockfile_217", "_IO_flockfile"); +__static_renaming("___IO_funlockfile_218", "_IO_funlockfile"); +__static_renaming("___IO_funlockfile_219", "_IO_funlockfile"); +__static_renaming("___IO_ftrylockfile_220", "_IO_ftrylockfile"); +__static_renaming("___IO_ftrylockfile_221", "_IO_ftrylockfile"); +__static_renaming("___IO_vfscanf_222", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_224", "_IO_vfscanf"); +__static_renaming("___IO_vfprintf_231", "_IO_vfprintf"); +__static_renaming("___IO_vfprintf_233", "_IO_vfprintf"); +__static_renaming("___IO_padn_238", "_IO_padn"); +__static_renaming("___IO_padn_239", "_IO_padn"); +__static_renaming("___IO_sgetn_240", "_IO_sgetn"); +__static_renaming("___IO_sgetn_241", "_IO_sgetn"); +__static_renaming("___IO_seekoff_242", "_IO_seekoff"); +__static_renaming("___IO_seekoff_243", "_IO_seekoff"); +__static_renaming("___IO_seekpos_244", "_IO_seekpos"); +__static_renaming("___IO_seekpos_245", "_IO_seekpos"); +__static_renaming("___IO_free_backup_area_246", "_IO_free_backup_area"); +__static_renaming("___IO_free_backup_area_247", "_IO_free_backup_area"); +__static_renaming("__va_list_248", "va_list"); +__static_renaming("__off_t_250", "off_t"); +__static_renaming("__off_t_251", "off_t"); +__static_renaming("__ssize_t_252", "ssize_t"); +__static_renaming("__fpos_t_253", "fpos_t"); +__static_renaming("__fpos_t_255", "fpos_t"); +__static_renaming("__stdin_257", "stdin"); +__static_renaming("__stdin_258", "stdin"); +__static_renaming("__stdout_259", "stdout"); +__static_renaming("__stdout_260", "stdout"); +__static_renaming("__stderr_261", "stderr"); +__static_renaming("__stderr_262", "stderr"); +__static_renaming("__remove_264", "remove"); +__static_renaming("__rename_267", "rename"); +__static_renaming("__renameat_272", "renameat"); +__static_renaming("__tmpfile_273", "tmpfile"); +__static_renaming("__tmpfile_275", "tmpfile"); +__static_renaming("__tmpfile_277", "tmpfile"); +__static_renaming("__tmpfile_279", "tmpfile"); +__static_renaming("__tmpnam_282", "tmpnam"); +__static_renaming("__tmpnam_283", "tmpnam"); +__static_renaming("__tmpnam_r_285", "tmpnam_r"); +__static_renaming("__tmpnam_r_286", "tmpnam_r"); +__static_renaming("__tempnam_289", "tempnam"); +__static_renaming("__tempnam_290", "tempnam"); +__static_renaming("__fclose_293", "fclose"); +__static_renaming("__fclose_295", "fclose"); +__static_renaming("__fflush_299", "fflush"); +__static_renaming("__fflush_unlocked_303", "fflush_unlocked"); +__static_renaming("__fopen_307", "fopen"); +__static_renaming("__fopen_309", "fopen"); +__static_renaming("__fopen_317", "fopen"); +__static_renaming("__fopen_319", "fopen"); +__static_renaming("__freopen_325", "freopen"); +__static_renaming("__freopen_327", "freopen"); +__static_renaming("__freopen_329", "freopen"); +__static_renaming("__freopen_331", "freopen"); +__static_renaming("__fdopen_335", "fdopen"); +__static_renaming("__fdopen_337", "fdopen"); +__static_renaming("__fmemopen_342", "fmemopen"); +__static_renaming("__fmemopen_344", "fmemopen"); +__static_renaming("__open_memstream_348", "open_memstream"); +__static_renaming("__open_memstream_350", "open_memstream"); +__static_renaming("__setbuf_355", "setbuf"); +__static_renaming("__setbuf_357", "setbuf"); +__static_renaming("__setvbuf_364", "setvbuf"); +__static_renaming("__setbuffer_369", "setbuffer"); +__static_renaming("__setlinebuf_373", "setlinebuf"); +__static_renaming("__fprintf_378", "fprintf"); +__static_renaming("__fprintf_380", "fprintf"); +__static_renaming("__printf_383", "printf"); +__static_renaming("__sprintf_386", "sprintf"); +__static_renaming("__vfprintf_392", "vfprintf"); +__static_renaming("__vprintf_399", "vprintf"); +__static_renaming("__vsprintf_405", "vsprintf"); +__static_renaming("__snprintf_409", "snprintf"); +__static_renaming("__vsnprintf_415", "vsnprintf"); +__static_renaming("__vdprintf_420", "vdprintf"); +__static_renaming("__dprintf_424", "dprintf"); +__static_renaming("__fscanf_428", "fscanf"); +__static_renaming("__fscanf_430", "fscanf"); +__static_renaming("__fscanf_432", "fscanf"); +__static_renaming("__fscanf_434", "fscanf"); +__static_renaming("__scanf_437", "scanf"); +__static_renaming("__scanf_438", "scanf"); +__static_renaming("__sscanf_441", "sscanf"); +__static_renaming("__vfscanf_468", "vfscanf"); +__static_renaming("__vfscanf_472", "vfscanf"); +__static_renaming("__vscanf_479", "vscanf"); +__static_renaming("__vscanf_481", "vscanf"); +__static_renaming("__vsscanf_487", "vsscanf"); +__static_renaming("__fgetc_520", "fgetc"); +__static_renaming("__getc_523", "getc"); +__static_renaming("__getchar_524", "getchar"); +__static_renaming("__getc_unlocked_527", "getc_unlocked"); +__static_renaming("__getchar_unlocked_529", "getchar_unlocked"); +__static_renaming("__fgetc_unlocked_532", "fgetc_unlocked"); +__static_renaming("__fputc_537", "fputc"); +__static_renaming("__fputc_539", "fputc"); +__static_renaming("__putc_544", "putc"); +__static_renaming("__putchar_546", "putchar"); +__static_renaming("__fputc_unlocked_550", "fputc_unlocked"); +__static_renaming("__putc_unlocked_555", "putc_unlocked"); +__static_renaming("__putchar_unlocked_558", "putchar_unlocked"); +__static_renaming("__getw_561", "getw"); +__static_renaming("__putw_566", "putw"); +__static_renaming("__fgets_572", "fgets"); +__static_renaming("__fgets_574", "fgets"); +__static_renaming("__fgets_576", "fgets"); +__static_renaming("__fgets_578", "fgets"); +__static_renaming("____getdelim_585", "__getdelim"); +__static_renaming("____getdelim_587", "__getdelim"); +__static_renaming("__getdelim_594", "getdelim"); +__static_renaming("__getdelim_596", "getdelim"); +__static_renaming("__getline_602", "getline"); +__static_renaming("__getline_604", "getline"); +__static_renaming("__fputs_609", "fputs"); +__static_renaming("__fputs_611", "fputs"); +__static_renaming("__puts_614", "puts"); +__static_renaming("__ungetc_618", "ungetc"); +__static_renaming("__fseek_654", "fseek"); +__static_renaming("__fseek_656", "fseek"); +__static_renaming("__ftell_660", "ftell"); +__static_renaming("__ftell_662", "ftell"); +__static_renaming("__rewind_666", "rewind"); +__static_renaming("__fseeko_671", "fseeko"); +__static_renaming("__fseeko_679", "fseeko"); +__static_renaming("__ftello_683", "ftello"); +__static_renaming("__ftello_685", "ftello"); +__static_renaming("__ftello_687", "ftello"); +__static_renaming("__fgetpos_693", "fgetpos"); +__static_renaming("__fgetpos_705", "fgetpos"); +__static_renaming("__fsetpos_713", "fsetpos"); +__static_renaming("__fsetpos_717", "fsetpos"); +__static_renaming("__clearerr_723", "clearerr"); +__static_renaming("__feof_726", "feof"); +__static_renaming("__feof_728", "feof"); +__static_renaming("__ferror_732", "ferror"); +__static_renaming("__ferror_734", "ferror"); +__static_renaming("__clearerr_unlocked_738", "clearerr_unlocked"); +__static_renaming("__feof_unlocked_742", "feof_unlocked"); +__static_renaming("__feof_unlocked_744", "feof_unlocked"); +__static_renaming("__ferror_unlocked_748", "ferror_unlocked"); +__static_renaming("__ferror_unlocked_750", "ferror_unlocked"); +__static_renaming("__perror_753", "perror"); +__static_renaming("__perror_754", "perror"); +__static_renaming("__sys_nerr_755", "sys_nerr"); +__static_renaming("__sys_errlist_756", "sys_errlist"); +__static_renaming("__fileno_759", "fileno"); +__static_renaming("__fileno_761", "fileno"); +__static_renaming("__fileno_unlocked_765", "fileno_unlocked"); +__static_renaming("__fileno_unlocked_767", "fileno_unlocked"); +__static_renaming("__popen_771", "popen"); +__static_renaming("__popen_773", "popen"); +__static_renaming("__pclose_777", "pclose"); +__static_renaming("__ctermid_780", "ctermid"); +__static_renaming("__flockfile_783", "flockfile"); +__static_renaming("__ftrylockfile_787", "ftrylockfile"); +__static_renaming("__ftrylockfile_789", "ftrylockfile"); +__static_renaming("__funlockfile_793", "funlockfile"); +__static_renaming("____sprintf_chk_825", "__sprintf_chk"); +__static_renaming("____vsprintf_chk_832", "__vsprintf_chk"); +__static_renaming("____snprintf_chk_846", "__snprintf_chk"); +__static_renaming("____vsnprintf_chk_854", "__vsnprintf_chk"); +__static_renaming("____fprintf_chk_869", "__fprintf_chk"); +__static_renaming("____printf_chk_873", "__printf_chk"); +__static_renaming("____vfprintf_chk_880", "__vfprintf_chk"); +__static_renaming("____vprintf_chk_888", "__vprintf_chk"); +__static_renaming("____dprintf_chk_910", "__dprintf_chk"); +__static_renaming("____vdprintf_chk_916", "__vdprintf_chk"); +__static_renaming("____fgets_chk_930", "__fgets_chk"); +__static_renaming("____fgets_chk_932", "__fgets_chk"); +__static_renaming("____fgets_chk_934", "__fgets_chk"); +__static_renaming("____fgets_alias_940", "__fgets_alias"); +__static_renaming("____fgets_chk_warn_947", "__fgets_chk_warn"); +__static_renaming("____cnt_1013", "__cnt"); +__static_renaming("____cptr_1014", "__cptr"); +__static_renaming("__wchar_t_1018", "wchar_t"); +__static_renaming("__idtype_t_1024", "idtype_t"); +__static_renaming("____bswap_32_1026", "__bswap_32"); +__static_renaming("____bswap_64_1029", "__bswap_64"); +__static_renaming("____WAIT_STATUS_1049", "__WAIT_STATUS"); +__static_renaming("__div_t_1054", "div_t"); +__static_renaming("__ldiv_t_1059", "ldiv_t"); +__static_renaming("__lldiv_t_1064", "lldiv_t"); +__static_renaming("____ctype_get_mb_cur_max_1065", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1066", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1067", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1068", "__ctype_get_mb_cur_max"); +__static_renaming("__atof_1070", "atof"); +__static_renaming("__atof_1071", "atof"); +__static_renaming("__atoi_1073", "atoi"); +__static_renaming("__atoi_1074", "atoi"); +__static_renaming("__atol_1076", "atol"); +__static_renaming("__atol_1077", "atol"); +__static_renaming("__atoll_1079", "atoll"); +__static_renaming("__atoll_1080", "atoll"); +__static_renaming("__strtod_1083", "strtod"); +__static_renaming("__strtof_1086", "strtof"); +__static_renaming("__strtold_1089", "strtold"); +__static_renaming("__strtol_1093", "strtol"); +__static_renaming("__strtoul_1097", "strtoul"); +__static_renaming("__strtoq_1101", "strtoq"); +__static_renaming("__strtouq_1105", "strtouq"); +__static_renaming("__strtoll_1109", "strtoll"); +__static_renaming("__strtoll_1110", "strtoll"); +__static_renaming("__strtoull_1114", "strtoull"); +__static_renaming("__l64a_1119", "l64a"); +__static_renaming("__l64a_1120", "l64a"); +__static_renaming("__a64l_1122", "a64l"); +__static_renaming("__a64l_1123", "a64l"); +__static_renaming("__u_char_1124", "u_char"); +__static_renaming("__u_short_1125", "u_short"); +__static_renaming("__u_int_1126", "u_int"); +__static_renaming("__u_long_1127", "u_long"); +__static_renaming("__quad_t_1128", "quad_t"); +__static_renaming("__u_quad_t_1129", "u_quad_t"); +__static_renaming("__fsid_t_1130", "fsid_t"); +__static_renaming("__loff_t_1131", "loff_t"); +__static_renaming("__ino_t_1132", "ino_t"); +__static_renaming("__ino_t_1133", "ino_t"); +__static_renaming("__dev_t_1134", "dev_t"); +__static_renaming("__gid_t_1135", "gid_t"); +__static_renaming("__gid_t_1136", "gid_t"); +__static_renaming("__mode_t_1137", "mode_t"); +__static_renaming("__nlink_t_1138", "nlink_t"); +__static_renaming("__uid_t_1139", "uid_t"); +__static_renaming("__uid_t_1140", "uid_t"); +__static_renaming("__pid_t_1141", "pid_t"); +__static_renaming("__id_t_1142", "id_t"); +__static_renaming("__daddr_t_1143", "daddr_t"); +__static_renaming("__caddr_t_1144", "caddr_t"); +__static_renaming("__key_t_1145", "key_t"); +__static_renaming("__key_t_1146", "key_t"); +__static_renaming("__clock_t_1147", "clock_t"); +__static_renaming("__time_t_1148", "time_t"); +__static_renaming("__clockid_t_1149", "clockid_t"); +__static_renaming("__timer_t_1150", "timer_t"); +__static_renaming("__ulong_1151", "ulong"); +__static_renaming("__ulong_1152", "ulong"); +__static_renaming("__ulong_1153", "ulong"); +__static_renaming("__ushort_1154", "ushort"); +__static_renaming("__uint_1155", "uint"); +__static_renaming("__int8_t_1156", "int8_t"); +__static_renaming("__int16_t_1157", "int16_t"); +__static_renaming("__int32_t_1158", "int32_t"); +__static_renaming("__int64_t_1159", "int64_t"); +__static_renaming("__u_int8_t_1160", "u_int8_t"); +__static_renaming("__u_int16_t_1161", "u_int16_t"); +__static_renaming("__u_int32_t_1162", "u_int32_t"); +__static_renaming("__u_int64_t_1163", "u_int64_t"); +__static_renaming("__register_t_1164", "register_t"); +__static_renaming("____bswap_32_1166", "__bswap_32"); +__static_renaming("____bswap_64_1169", "__bswap_64"); +__static_renaming("____sig_atomic_t_1170", "__sig_atomic_t"); +__static_renaming("____sigset_t_1174", "__sigset_t"); +__static_renaming("__sigset_t_1175", "sigset_t"); +__static_renaming("__suseconds_t_1182", "suseconds_t"); +__static_renaming("____fd_mask_1183", "__fd_mask"); +__static_renaming("____fd_mask_1184", "__fd_mask"); +__static_renaming("__fd_set_1189", "fd_set"); +__static_renaming("__fd_mask_1190", "fd_mask"); +__static_renaming("__fd_mask_1191", "fd_mask"); +__static_renaming("__select_1199", "select"); +__static_renaming("__select_1200", "select"); +__static_renaming("__pselect_1209", "pselect"); +__static_renaming("__pselect_1210", "pselect"); +__static_renaming("____fdelt_chk_1212", "__fdelt_chk"); +__static_renaming("____fdelt_warn_1214", "__fdelt_warn"); +__static_renaming("__gnu_dev_major_1216", "gnu_dev_major"); +__static_renaming("__gnu_dev_major_1217", "gnu_dev_major"); +__static_renaming("__gnu_dev_minor_1219", "gnu_dev_minor"); +__static_renaming("__gnu_dev_makedev_1222", "gnu_dev_makedev"); +__static_renaming("__blksize_t_1227", "blksize_t"); +__static_renaming("__blkcnt_t_1228", "blkcnt_t"); +__static_renaming("__fsblkcnt_t_1229", "fsblkcnt_t"); +__static_renaming("__blkcnt_t_1230", "blkcnt_t"); +__static_renaming("__fsblkcnt_t_1231", "fsblkcnt_t"); +__static_renaming("__fsfilcnt_t_1232", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_1233", "fsfilcnt_t"); +__static_renaming("__pthread_t_1234", "pthread_t"); +__static_renaming("__pthread_attr_t_1238", "pthread_attr_t"); +__static_renaming("____pthread_list_t_1243", "__pthread_list_t"); +__static_renaming("____pthread_list_t_1244", "__pthread_list_t"); +__static_renaming("__pthread_mutex_t_1260", "pthread_mutex_t"); +__static_renaming("__pthread_mutexattr_t_1265", "pthread_mutexattr_t"); +__static_renaming("__rand_1266", "rand"); +__static_renaming("__srand_1268", "srand"); +__static_renaming("__rand_r_1270", "rand_r"); +__static_renaming("__drand48_1271", "drand48"); +__static_renaming("__erand48_1273", "erand48"); +__static_renaming("__lrand48_1274", "lrand48"); +__static_renaming("__nrand48_1276", "nrand48"); +__static_renaming("__mrand48_1277", "mrand48"); +__static_renaming("__jrand48_1279", "jrand48"); +__static_renaming("__srand48_1281", "srand48"); +__static_renaming("__seed48_1283", "seed48"); +__static_renaming("__lcong48_1285", "lcong48"); +__static_renaming("__malloc_1287", "malloc"); +__static_renaming("__malloc_1288", "malloc"); +__static_renaming("__malloc_1289", "malloc"); +__static_renaming("__malloc_1290", "malloc"); +__static_renaming("__calloc_1293", "calloc"); +__static_renaming("__calloc_1294", "calloc"); +__static_renaming("__realloc_1297", "realloc"); +__static_renaming("__free_1299", "free"); +__static_renaming("__cfree_1301", "cfree"); +__static_renaming("__alloca_1303", "alloca"); +__static_renaming("__valloc_1305", "valloc"); +__static_renaming("__valloc_1306", "valloc"); +__static_renaming("__posix_memalign_1310", "posix_memalign"); +__static_renaming("__posix_memalign_1311", "posix_memalign"); +__static_renaming("__aligned_alloc_1314", "aligned_alloc"); +__static_renaming("__aligned_alloc_1315", "aligned_alloc"); +__static_renaming("__aligned_alloc_1316", "aligned_alloc"); +__static_renaming("__aligned_alloc_1317", "aligned_alloc"); +__static_renaming("__abort_1318", "abort"); +__static_renaming("__atexit_1320", "atexit"); +__static_renaming("__at_quick_exit_1322", "at_quick_exit"); +__static_renaming("__on_exit_1327", "on_exit"); +__static_renaming("__exit_1329", "exit"); +__static_renaming("__exit_1330", "exit"); +__static_renaming("__quick_exit_1332", "quick_exit"); +__static_renaming("___Exit_1334", "_Exit"); +__static_renaming("__getenv_1336", "getenv"); +__static_renaming("__getenv_1337", "getenv"); +__static_renaming("__putenv_1339", "putenv"); +__static_renaming("__setenv_1343", "setenv"); +__static_renaming("__unsetenv_1345", "unsetenv"); +__static_renaming("__clearenv_1346", "clearenv"); +__static_renaming("__mktemp_1348", "mktemp"); +__static_renaming("__mkstemp_1351", "mkstemp"); +__static_renaming("__mkstemp_1352", "mkstemp"); +__static_renaming("__mkstemp_1353", "mkstemp"); +__static_renaming("__mkstemp_1354", "mkstemp"); +__static_renaming("__mkstemps_1359", "mkstemps"); +__static_renaming("__mkstemps_1360", "mkstemps"); +__static_renaming("__mkstemps_1361", "mkstemps"); +__static_renaming("__mkstemps_1362", "mkstemps"); +__static_renaming("__mkdtemp_1364", "mkdtemp"); +__static_renaming("__mkdtemp_1365", "mkdtemp"); +__static_renaming("__system_1367", "system"); +__static_renaming("__system_1368", "system"); +__static_renaming("__system_1369", "system"); +__static_renaming("__system_1370", "system"); +__static_renaming("__realpath_1373", "realpath"); +__static_renaming("__realpath_1374", "realpath"); +__static_renaming("____compar_fn_t_1375", "__compar_fn_t"); +__static_renaming("__bsearch_1383", "bsearch"); +__static_renaming("__bsearch_1385", "bsearch"); +__static_renaming("____l_1392", "__l"); +__static_renaming("____u_1393", "__u"); +__static_renaming("____idx_1394", "__idx"); +__static_renaming("____p_1395", "__p"); +__static_renaming("____comparison_1396", "__comparison"); +__static_renaming("__qsort_1404", "qsort"); +__static_renaming("__qsort_1406", "qsort"); +__static_renaming("__abs_1409", "abs"); +__static_renaming("__abs_1410", "abs"); +__static_renaming("__labs_1412", "labs"); +__static_renaming("__labs_1413", "labs"); +__static_renaming("__llabs_1415", "llabs"); +__static_renaming("__llabs_1416", "llabs"); +__static_renaming("__div_1419", "div"); +__static_renaming("__div_1420", "div"); +__static_renaming("__ldiv_1423", "ldiv"); +__static_renaming("__ldiv_1425", "ldiv"); +__static_renaming("__lldiv_1429", "lldiv"); +__static_renaming("__lldiv_1431", "lldiv"); +__static_renaming("__ecvt_1437", "ecvt"); +__static_renaming("__ecvt_1438", "ecvt"); +__static_renaming("__fcvt_1443", "fcvt"); +__static_renaming("__fcvt_1444", "fcvt"); +__static_renaming("__gcvt_1448", "gcvt"); +__static_renaming("__gcvt_1449", "gcvt"); +__static_renaming("__qecvt_1454", "qecvt"); +__static_renaming("__qecvt_1455", "qecvt"); +__static_renaming("__qfcvt_1460", "qfcvt"); +__static_renaming("__qfcvt_1461", "qfcvt"); +__static_renaming("__qgcvt_1465", "qgcvt"); +__static_renaming("__qgcvt_1466", "qgcvt"); +__static_renaming("__ecvt_r_1473", "ecvt_r"); +__static_renaming("__fcvt_r_1480", "fcvt_r"); +__static_renaming("__qecvt_r_1487", "qecvt_r"); +__static_renaming("__qfcvt_r_1494", "qfcvt_r"); +__static_renaming("__mblen_1497", "mblen"); +__static_renaming("__mblen_1498", "mblen"); +__static_renaming("__mbtowc_1502", "mbtowc"); +__static_renaming("__wctomb_1505", "wctomb"); +__static_renaming("__mbstowcs_1509", "mbstowcs"); +__static_renaming("__wcstombs_1513", "wcstombs"); +__static_renaming("__rpmatch_1515", "rpmatch"); +__static_renaming("__rpmatch_1516", "rpmatch"); +__static_renaming("__getsubopt_1520", "getsubopt"); +__static_renaming("__getsubopt_1521", "getsubopt"); +__static_renaming("__getloadavg_1524", "getloadavg"); +__static_renaming("____realpath_chk_1529", "__realpath_chk"); +__static_renaming("____realpath_alias_1532", "__realpath_alias"); +__static_renaming("____realpath_chk_warn_1536", "__realpath_chk_warn"); +__static_renaming("____ptsname_r_chk_1544", "__ptsname_r_chk"); +__static_renaming("____ptsname_r_alias_1548", "__ptsname_r_alias"); +__static_renaming("____ptsname_r_chk_warn_1553", "__ptsname_r_chk_warn"); +__static_renaming("____wctomb_chk_1561", "__wctomb_chk"); +__static_renaming("____wctomb_alias_1564", "__wctomb_alias"); +__static_renaming("____mbstowcs_chk_1571", "__mbstowcs_chk"); +__static_renaming("____mbstowcs_alias_1575", "__mbstowcs_alias"); +__static_renaming("____mbstowcs_chk_warn_1580", "__mbstowcs_chk_warn"); +__static_renaming("____wcstombs_chk_1588", "__wcstombs_chk"); +__static_renaming("____wcstombs_alias_1592", "__wcstombs_alias"); +__static_renaming("____wcstombs_chk_warn_1597", "__wcstombs_chk_warn"); +__static_renaming("__memmove_1610", "memmove"); +__static_renaming("__memset_1619", "memset"); +__static_renaming("__memset_1620", "memset"); +__static_renaming("__memcmp_1624", "memcmp"); +__static_renaming("__memchr_1628", "memchr"); +__static_renaming("__strcpy_1631", "strcpy"); +__static_renaming("__strncpy_1635", "strncpy"); +__static_renaming("__strcat_1638", "strcat"); +__static_renaming("__strncat_1642", "strncat"); +__static_renaming("__strcmp_1645", "strcmp"); +__static_renaming("__strncmp_1649", "strncmp"); +__static_renaming("__strcoll_1652", "strcoll"); +__static_renaming("__strxfrm_1656", "strxfrm"); +__static_renaming("____locale_t_1664", "__locale_t"); +__static_renaming("__locale_t_1665", "locale_t"); +__static_renaming("__strcoll_l_1669", "strcoll_l"); +__static_renaming("__strxfrm_l_1674", "strxfrm_l"); +__static_renaming("__strdup_1676", "strdup"); +__static_renaming("__strndup_1679", "strndup"); +__static_renaming("__strchr_1682", "strchr"); +__static_renaming("__strchr_1683", "strchr"); +__static_renaming("__strrchr_1686", "strrchr"); +__static_renaming("__strcspn_1689", "strcspn"); +__static_renaming("__strspn_1692", "strspn"); +__static_renaming("__strpbrk_1695", "strpbrk"); +__static_renaming("__strstr_1698", "strstr"); +__static_renaming("__strtok_1701", "strtok"); +__static_renaming("____strtok_r_1705", "__strtok_r"); +__static_renaming("__strtok_r_1709", "strtok_r"); +__static_renaming("__strlen_1711", "strlen"); +__static_renaming("__strlen_1712", "strlen"); +__static_renaming("__strnlen_1715", "strnlen"); +__static_renaming("__strerror_1717", "strerror"); +__static_renaming("__strerror_1718", "strerror"); +__static_renaming("__strerror_r_1722", "strerror_r"); +__static_renaming("__strerror_l_1725", "strerror_l"); +__static_renaming("____bzero_1728", "__bzero"); +__static_renaming("____bzero_1729", "__bzero"); +__static_renaming("__bcopy_1733", "bcopy"); +__static_renaming("__bzero_1736", "bzero"); +__static_renaming("__bcmp_1740", "bcmp"); +__static_renaming("__index_1743", "index"); +__static_renaming("__rindex_1746", "rindex"); +__static_renaming("__ffs_1748", "ffs"); +__static_renaming("__strcasecmp_1751", "strcasecmp"); +__static_renaming("__strncasecmp_1755", "strncasecmp"); +__static_renaming("__strsep_1758", "strsep"); +__static_renaming("__strsignal_1760", "strsignal"); +__static_renaming("____stpcpy_1763", "__stpcpy"); +__static_renaming("__stpcpy_1766", "stpcpy"); +__static_renaming("____stpncpy_1770", "__stpncpy"); +__static_renaming("__stpncpy_1774", "stpncpy"); +__static_renaming("____stpncpy_chk_1803", "__stpncpy_chk"); +__static_renaming("____stpncpy_alias_1807", "__stpncpy_alias"); +__static_renaming("__ethtable_t_1823", "ethtable_t"); +__static_renaming("__ethtable_t_1824", "ethtable_t"); +__static_renaming("__delete_eth_table_1827", "delete_eth_table"); +__static_renaming("__delete_eth_table_1828", "delete_eth_table"); +__static_renaming("__delete_eth_table_1841", "delete_eth_table"); +__static_renaming("__delete_eth_table_1842", "delete_eth_table"); +__static_renaming("__ch_1848", "ch"); +__static_renaming("__ch_1849", "ch"); +__static_renaming("__prepend_new_eth_table_1856", "prepend_new_eth_table"); +__static_renaming("__prepend_new_eth_table_1857", "prepend_new_eth_table"); +__static_renaming("__clist_1870", "clist"); +__static_renaming("__clist_1871", "clist"); +__static_renaming("__ch_1872", "ch"); +__static_renaming("__ch_1873", "ch"); +__static_renaming("__main_1874", "main"); + +__static_condition_renaming("__static_condition_default_74", "(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_118", "(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_161", "(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_162", "(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_165", "(defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_223", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_225", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_226", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_227", "(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_230", "(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_232", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_234", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_235", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_236", "(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_249", "!(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); +__static_condition_renaming("__static_condition_default_254", "!(defined _FILE_OFFSET_BITS) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_256", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_274", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_276", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_278", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_280", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_294", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_296", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_300", "(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_304", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_308", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_310", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_318", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_320", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_326", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_328", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_330", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_332", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_336", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_338", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_343", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_345", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_349", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_351", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_356", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_358", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_370", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_374", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_379", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_381", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_393", "!(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_394", "(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_395", "(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_400", "!(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_421", "!(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_429", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_431", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_433", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_435", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_446", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_448", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_449", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_451", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_453", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_454", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_457", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_459", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_469", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_470", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_471", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_473", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_474", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_475", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_480", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_482", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_494", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_495", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_496", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_497", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_499", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_500", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_501", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_502", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_507", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_508", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_510", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_511", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_517", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_528", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_533", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_538", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_540", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_551", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_556", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_562", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_567", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_573", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_575", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_577", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_579", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_586", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_588", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_595", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_597", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_603", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_605", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_610", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_612", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_624", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_625", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_626", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_627", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_633", "!(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_639", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_640", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_641", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_642", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_648", "!(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_649", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_655", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_657", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_661", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_663", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_672", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_680", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_684", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_686", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_688", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_694", "!(defined _FILE_OFFSET_BITS) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_695", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_696", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_706", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_707", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_708", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_714", "!(defined _FILE_OFFSET_BITS) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_715", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_716", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_718", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_719", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_720", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_727", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_729", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_733", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_735", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_739", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_743", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_745", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_749", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_751", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_760", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_762", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_766", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_768", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_772", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_774", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_778", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_784", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_788", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_790", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_794", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_798", "!(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_801", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_804", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_809", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_813", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_817", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_820", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_833", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_840", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_855", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_864", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_870", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_881", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_882", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_883", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_889", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_893", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_898", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_904", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_905", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_906", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_917", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_924", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_931", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_933", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_935", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_941", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_948", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_953", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_954", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_961", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_962", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_968", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_969", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_976", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_977", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_983", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_984", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_991", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_992", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_998", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_999", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1006", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1007", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1015", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_1016", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1017", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1027", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1167", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1382", "!(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1384", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1397", "(defined __USE_EXTERN_INLINES) && !(defined __need_malloc_and_calloc) && !(defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1398", "(defined __USE_EXTERN_INLINES) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1405", "!(defined __USE_EXTERN_INLINES) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1407", "(defined __USE_EXTERN_INLINES) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1424", "!(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1426", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1430", "!(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1432", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1539", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1604", "!(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1605", "(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1606", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1615", "!(defined __STRICT_ANSI__)"); +__static_condition_renaming("__static_condition_default_1778", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1785", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1793", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1794", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1798", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1811", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1814", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1818", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1829", "!(defined _FORTIFY_SOURCE) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_CLEAN_UP)"); +__static_condition_renaming("__static_condition_default_1830", "!(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP)"); +__static_condition_renaming("__static_condition_default_1831", "!(defined _FORTIFY_SOURCE) && (defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP)"); +__static_condition_renaming("__static_condition_default_1832", "!(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP)"); +__static_condition_renaming("__static_condition_default_1833", "!(defined _FORTIFY_SOURCE) && (defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP)"); +__static_condition_renaming("__static_condition_default_1834", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_CLEAN_UP)"); +__static_condition_renaming("__static_condition_default_1835", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP)"); +__static_condition_renaming("__static_condition_default_1836", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP)"); +__static_condition_renaming("__static_condition_default_1837", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP)"); +__static_condition_renaming("__static_condition_default_1838", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP)"); +__static_condition_renaming("__static_condition_default_1843", "!(defined _FORTIFY_SOURCE) && !(defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined ENABLE_FEATURE_CLEAN_UP)"); +__static_condition_renaming("__static_condition_default_1844", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined ENABLE_FEATURE_CLEAN_UP)"); +__static_condition_renaming("__static_condition_default_1858", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1859", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1860", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1861", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1862", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need_malloc_and_calloc) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need_malloc_and_calloc) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need_malloc_and_calloc) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1863", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1864", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1865", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1866", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1867", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1875", "!(defined _FORTIFY_SOURCE) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_CLEAN_UP)"); +__static_condition_renaming("__static_condition_default_1876", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_CLEAN_UP)"); +__static_condition_renaming("__static_condition_default_1877", "!(defined ENABLE_FEATURE_CLEAN_UP)"); +__static_condition_renaming("__static_condition_default_1878", "(defined ENABLE_FEATURE_CLEAN_UP)"); +__static_condition_renaming("__static_condition_default_1879", "!(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined __need_malloc_and_calloc) || (defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); + +if (__static_condition_default_1879) { __static_parse_error("Unable to parse"); } }; @@ -1720,527 +1140,324 @@ typedef long int ____ssize_t_49;// L110:L172 typedef long int ____syscall_slong_t_50;// L93:L175 typedef unsigned long int ____syscall_ulong_t_51;// L94:L177 typedef ____off64_t_24 ____loff_t_52;// L181 -typedef ____quad_t_14 * (____qaddr_t_54);// L182 -typedef char * (____caddr_t_55);// L183 -typedef long int ____intptr_t_56;// L110:L186 -typedef unsigned int ____socklen_t_57;// L92:L189 -typedef struct __forward_tag_reference_58 __FILE_59;// L48 -typedef struct __forward_tag_reference_58 ____FILE_60;// L64 -union ____anonymous_tag_61_62 { -unsigned int ____wch_63;// L265 -char ____wchb_64[4];// L92 -}; -struct ____anonymous_tag_65_66 { -int ____count_67;// L84 -union ____anonymous_tag_61_62 ____value_68;// L85 +typedef ____quad_t_14 * (____qaddr_t_53);// L182 +typedef char * (____caddr_t_54);// L183 +typedef long int ____intptr_t_55;// L110:L186 +typedef unsigned int ____socklen_t_56;// L92:L189 +typedef struct __forward_tag_reference_57 __FILE_58;// L48 +typedef struct __forward_tag_reference_57 ____FILE_59;// L64 +union ____anonymous_tag_60_61 { +unsigned int ____wch_62;// L265 +char ____wchb_63[4];// L92 }; -typedef struct ____anonymous_tag_65_66 ____mbstate_t_69;// L82:L94 -struct ____anonymous_tag_70_71 { -____off_t_23 ____pos_72;// L0 -____mbstate_t_69 ____state_74;// L0 +struct ____anonymous_tag_64_65 { +int ____count_66;// L84 +union ____anonymous_tag_60_61 ____value_67;// L85 }; -typedef struct ____anonymous_tag_70_71 ___G_fpos_t_77;// L21:L25 -struct ____anonymous_tag_78_79 { -____off64_t_24 ____pos_80;// L0 -____mbstate_t_69 ____state_82;// L0 +typedef struct ____anonymous_tag_64_65 ____mbstate_t_68;// L82:L94 +struct ____anonymous_tag_69_70 { +____off_t_23 ____pos_71;// L0 +____mbstate_t_68 ____state_72;// L0 }; -typedef struct ____anonymous_tag_78_79 ___G_fpos64_t_85;// L26:L30 -typedef __builtin_va_list ____gnuc_va_list_86;// L40 -typedef void ___IO_lock_t_88;// L150 -struct ___IO_marker_90 { -struct __forward_tag_reference_89 * (___next_91);// L0 -struct __forward_tag_reference_58 * (___sbuf_92);// L0 -int ___pos_93;// L162 +typedef struct ____anonymous_tag_69_70 ___G_fpos_t_75;// L21:L25 +struct ____anonymous_tag_76_77 { +____off64_t_24 ____pos_78;// L0 +____mbstate_t_68 ____state_79;// L0 }; -enum ____codecvt_result_98 { -____codecvt_ok_94, -____codecvt_partial_95, -____codecvt_error_96, -____codecvt_noconv_97, +typedef struct ____anonymous_tag_76_77 ___G_fpos64_t_81;// L26:L30 +typedef __builtin_va_list ____gnuc_va_list_82;// L40 +typedef void ___IO_lock_t_84;// L150 +struct ___IO_marker_86 { +struct __forward_tag_reference_85 * (___next_87);// L0 +struct __forward_tag_reference_57 * (___sbuf_88);// L0 +int ___pos_89;// L162 }; -struct ___IO_FILE_99 { -int ___flags_100;// L242 -char * (___IO_read_ptr_101);// L247 -char * (___IO_read_end_102);// L248 -char * (___IO_read_base_103);// L249 -char * (___IO_write_base_104);// L250 -char * (___IO_write_ptr_105);// L251 -char * (___IO_write_end_106);// L252 -char * (___IO_buf_base_107);// L253 -char * (___IO_buf_end_108);// L254 -char * (___IO_save_base_109);// L256 -char * (___IO_backup_base_110);// L257 -char * (___IO_save_end_111);// L258 -struct ___IO_marker_90 * (___markers_112);// L260 -struct __forward_tag_reference_58 * (___chain_113);// L0 -int ___fileno_114;// L264 -int ___flags2_115;// L268 -____off_t_23 ___old_offset_116;// L0 -unsigned short ___cur_column_118;// L274 -signed char ___vtable_offset_119;// L275 -char ___shortbuf_120[1];// L276 -___IO_lock_t_88 * (___lock_121);// L0 +enum ____codecvt_result_94 { +____codecvt_ok_90, +____codecvt_partial_91, +____codecvt_error_92, +____codecvt_noconv_93, }; -struct ___IO_FILE_124 { -int ___flags_125;// L242 -char * (___IO_read_ptr_126);// L247 -char * (___IO_read_end_127);// L248 -char * (___IO_read_base_128);// L249 -char * (___IO_write_base_129);// L250 -char * (___IO_write_ptr_130);// L251 -char * (___IO_write_end_131);// L252 -char * (___IO_buf_base_132);// L253 -char * (___IO_buf_end_133);// L254 -char * (___IO_save_base_134);// L256 -char * (___IO_backup_base_135);// L257 -char * (___IO_save_end_136);// L258 -struct ___IO_marker_90 * (___markers_137);// L260 -struct __forward_tag_reference_58 * (___chain_138);// L0 -int ___fileno_139;// L264 -int ___flags2_140;// L268 -____off_t_23 ___old_offset_141;// L0 -unsigned short ___cur_column_143;// L274 -signed char ___vtable_offset_144;// L275 -char ___shortbuf_145[1];// L276 -___IO_lock_t_88 * (___lock_146);// L0 -____off64_t_24 ___offset_148;// L0 -void * (____pad1_150);// L297 -void * (____pad2_151);// L298 -void * (____pad3_152);// L299 -void * (____pad4_153);// L300 -__size_t_1 ____pad5_154;// L0 -int ___mode_155;// L303 -char ___unused2_156[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +struct ___IO_FILE_95 { +int ___flags_96;// L242 +char * (___IO_read_ptr_97);// L247 +char * (___IO_read_end_98);// L248 +char * (___IO_read_base_99);// L249 +char * (___IO_write_base_100);// L250 +char * (___IO_write_ptr_101);// L251 +char * (___IO_write_end_102);// L252 +char * (___IO_buf_base_103);// L253 +char * (___IO_buf_end_104);// L254 +char * (___IO_save_base_105);// L256 +char * (___IO_backup_base_106);// L257 +char * (___IO_save_end_107);// L258 +struct ___IO_marker_86 * (___markers_108);// L260 +struct __forward_tag_reference_57 * (___chain_109);// L0 +int ___fileno_110;// L264 +int ___flags2_111;// L268 +____off_t_23 ___old_offset_112;// L0 +unsigned short ___cur_column_113;// L274 +signed char ___vtable_offset_114;// L275 +char ___shortbuf_115[1];// L276 +___IO_lock_t_84 * (___lock_116);// L0 }; -struct ___IO_FILE_complete_157 { -struct ___IO_FILE_99 ___file_158;// L286 -____off64_t_24 ___offset_160;// L0 -void * (____pad1_162);// L297 -void * (____pad2_163);// L298 -void * (____pad3_164);// L299 -void * (____pad4_165);// L300 -__size_t_1 ____pad5_166;// L0 -int ___mode_167;// L303 -char ___unused2_168[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +struct ___IO_FILE_119 { +int ___flags_120;// L242 +char * (___IO_read_ptr_121);// L247 +char * (___IO_read_end_122);// L248 +char * (___IO_read_base_123);// L249 +char * (___IO_write_base_124);// L250 +char * (___IO_write_ptr_125);// L251 +char * (___IO_write_end_126);// L252 +char * (___IO_buf_base_127);// L253 +char * (___IO_buf_end_128);// L254 +char * (___IO_save_base_129);// L256 +char * (___IO_backup_base_130);// L257 +char * (___IO_save_end_131);// L258 +struct ___IO_marker_86 * (___markers_132);// L260 +struct __forward_tag_reference_57 * (___chain_133);// L0 +int ___fileno_134;// L264 +int ___flags2_135;// L268 +____off_t_23 ___old_offset_136;// L0 +unsigned short ___cur_column_137;// L274 +signed char ___vtable_offset_138;// L275 +char ___shortbuf_139[1];// L276 +___IO_lock_t_84 * (___lock_140);// L0 +____off64_t_24 ___offset_142;// L0 +void * (____pad1_143);// L297 +void * (____pad2_144);// L298 +void * (____pad3_145);// L299 +void * (____pad4_146);// L300 +__size_t_1 ____pad5_147;// L0 +int ___mode_148;// L303 +char ___unused2_149[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -typedef struct ___IO_FILE_99 ___IO_FILE_171;// L310 -typedef struct ___IO_FILE_124 ___IO_FILE_172;// L310 -typedef ____ssize_t_49 (____io_read_fn_181) (void * (____cookie_178), char * (____buf_179), __size_t_1 ____nbytes_180);// L333 -typedef ____ssize_t_49 (____io_write_fn_186) (void * (____cookie_183), const char * (____buf_184), __size_t_1 ____n_185);// L341:L342 -typedef int (____io_seek_fn_192) (void * (____cookie_188), ____off64_t_24 * (____pos_189), int ____w_191);// L350 -typedef int (____io_close_fn_195) (void * (____cookie_194));// L353 -typedef ____gnuc_va_list_86 __va_list_279;// L79 -typedef ____off_t_23 __off_t_281;// L90 -typedef ____off64_t_24 __off_t_283;// L92 -typedef ____ssize_t_49 __ssize_t_285;// L102 -typedef ___G_fpos_t_77 __fpos_t_287;// L110 -typedef ___G_fpos64_t_85 __fpos_t_289;// L112 -extern const char * const __sys_errlist_830[];// L27 -typedef long int __ptrdiff_t_1092;// L143:L324 -typedef long unsigned int __size_t_1093;// L177:L209 -typedef int __wchar_t_1094;// L243:L321 -enum ____anonymous_tag_1098_1099 { -__P_ALL_1095, -__P_PID_1096, -__P_PGID_1097, +struct ___IO_FILE_complete_150 { +struct ___IO_FILE_95 ___file_151;// L286 +____off64_t_24 ___offset_153;// L0 +void * (____pad1_154);// L297 +void * (____pad2_155);// L298 +void * (____pad3_156);// L299 +void * (____pad4_157);// L300 +__size_t_1 ____pad5_158;// L0 +int ___mode_159;// L303 +char ___unused2_160[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -typedef enum ____anonymous_tag_1098_1099 __idtype_t_1100;// L50:L55 -typedef unsigned char ____u_char_1101;// L30 -typedef unsigned short int ____u_short_1102;// L31 -typedef unsigned int ____u_int_1103;// L32 -typedef unsigned long int ____u_long_1104;// L33 -typedef signed char ____int8_t_1105;// L36 -typedef unsigned char ____uint8_t_1106;// L37 -typedef signed short int ____int16_t_1107;// L38 -typedef unsigned short int ____uint16_t_1108;// L39 -typedef signed int ____int32_t_1109;// L40 -typedef unsigned int ____uint32_t_1110;// L41 -typedef signed long int ____int64_t_1111;// L43 -typedef unsigned long int ____uint64_t_1112;// L44 -typedef long int ____quad_t_1113;// L52 -typedef unsigned long int ____u_quad_t_1114;// L53 -typedef unsigned long int ____dev_t_1115;// L109:L124 -typedef unsigned int ____uid_t_1116;// L92:L125 -typedef unsigned int ____gid_t_1117;// L92:L126 -typedef unsigned long int ____ino_t_1118;// L94:L127 -typedef unsigned long int ____ino64_t_1119;// L109:L128 -typedef unsigned int ____mode_t_1120;// L92:L129 -typedef unsigned long int ____nlink_t_1121;// L94:L130 -typedef long int ____off_t_1122;// L93:L131 -typedef long int ____off64_t_1123;// L108:L132 -typedef int ____pid_t_1124;// L91:L133 -struct ____anonymous_tag_1125_1126 { -int ____val_1127[2];// L72 +typedef struct ___IO_FILE_95 ___IO_FILE_163;// L310 +typedef struct ___IO_FILE_119 ___IO_FILE_164;// L310 +typedef ____ssize_t_49 (____io_read_fn_173) (void * (____cookie_170), char * (____buf_171), __size_t_1 ____nbytes_172);// L333 +typedef ____ssize_t_49 (____io_write_fn_177) (void * (____cookie_174), const char * (____buf_175), __size_t_1 ____n_176);// L341:L342 +typedef int (____io_seek_fn_181) (void * (____cookie_178), ____off64_t_24 * (____pos_179), int ____w_180);// L350 +typedef int (____io_close_fn_183) (void * (____cookie_182));// L353 +typedef ____gnuc_va_list_82 __va_list_248;// L79 +typedef ____off_t_23 __off_t_250;// L90 +typedef ____off64_t_24 __off_t_251;// L92 +typedef ____ssize_t_49 __ssize_t_252;// L102 +typedef ___G_fpos_t_75 __fpos_t_253;// L110 +typedef ___G_fpos64_t_81 __fpos_t_255;// L112 +extern const char * const __sys_errlist_756[];// L27 +typedef int __wchar_t_1018;// L243:L321 +enum ____anonymous_tag_1022_1023 { +__P_ALL_1019, +__P_PID_1020, +__P_PGID_1021, }; -typedef struct ____anonymous_tag_1125_1126 ____fsid_t_1128;// L72:L134 -typedef long int ____clock_t_1129;// L93:L135 -typedef unsigned long int ____rlim_t_1130;// L94:L136 -typedef unsigned long int ____rlim64_t_1131;// L109:L137 -typedef unsigned int ____id_t_1132;// L92:L138 -typedef long int ____time_t_1133;// L93:L139 -typedef unsigned int ____useconds_t_1134;// L92:L140 -typedef long int ____suseconds_t_1135;// L93:L141 -typedef int ____daddr_t_1136;// L91:L143 -typedef int ____key_t_1137;// L91:L144 -typedef int ____clockid_t_1138;// L91:L147 -typedef void * (____timer_t_1139);// L70:L150 -typedef long int ____blksize_t_1140;// L93:L153 -typedef long int ____blkcnt_t_1141;// L93:L158 -typedef long int ____blkcnt64_t_1142;// L108:L159 -typedef unsigned long int ____fsblkcnt_t_1143;// L94:L162 -typedef unsigned long int ____fsblkcnt64_t_1144;// L109:L163 -typedef unsigned long int ____fsfilcnt_t_1145;// L94:L166 -typedef unsigned long int ____fsfilcnt64_t_1146;// L109:L167 -typedef long int ____fsword_t_1147;// L93:L170 -typedef long int ____ssize_t_1148;// L110:L172 -typedef long int ____syscall_slong_t_1149;// L93:L175 -typedef unsigned long int ____syscall_ulong_t_1150;// L94:L177 -typedef ____off64_t_1123 ____loff_t_1151;// L181 -typedef ____quad_t_1113 * (____qaddr_t_1153);// L182 -typedef char * (____caddr_t_1154);// L183 -typedef long int ____intptr_t_1155;// L110:L186 -typedef unsigned int ____socklen_t_1156;// L92:L189 -struct ____anonymous_tag_1166_1167 { -unsigned int ____w_termsig_1168 : 7;// L72 -unsigned int ____w_coredump_1169 : 1;// L73 -unsigned int ____w_retcode_1170 : 8;// L74 -unsigned int __anon_id_0_1171 : 16;// L75 +typedef enum ____anonymous_tag_1022_1023 __idtype_t_1024;// L50:L55 +struct ____anonymous_tag_1030_1031 { +unsigned int ____w_termsig_1032 : 7;// L72 +unsigned int ____w_coredump_1033 : 1;// L73 +unsigned int ____w_retcode_1034 : 8;// L74 +unsigned int __anon_id_0_1035 : 16;// L75 }; -struct ____anonymous_tag_1172_1173 { -unsigned int ____w_stopval_1174 : 8;// L87 -unsigned int ____w_stopsig_1175 : 8;// L88 -unsigned int __anon_id_1_1176 : 16;// L89 +struct ____anonymous_tag_1036_1037 { +unsigned int ____w_stopval_1038 : 8;// L87 +unsigned int ____w_stopsig_1039 : 8;// L88 +unsigned int __anon_id_1_1040 : 16;// L89 }; -union __wait_1177 { -int __w_status_1178;// L68 -struct ____anonymous_tag_1166_1167 ____wait_terminated_1179;// L69 -struct ____anonymous_tag_1172_1173 ____wait_stopped_1180;// L84 +union __wait_1041 { +int __w_status_1042;// L68 +struct ____anonymous_tag_1030_1031 ____wait_terminated_1043;// L69 +struct ____anonymous_tag_1036_1037 ____wait_stopped_1044;// L84 }; -union ____anonymous_tag_1181_1182 { -union __wait_1177 * (____uptr_1183);// L69 -int * (____iptr_1184);// L70 +union ____anonymous_tag_1045_1046 { +union __wait_1041 * (____uptr_1047);// L69 +int * (____iptr_1048);// L70 }; -typedef union ____anonymous_tag_1181_1182 ____WAIT_STATUS_1185;// L67:L71 -struct ____anonymous_tag_1186_1187 { -int __quot_1188;// L99 -int __rem_1189;// L100 +typedef union ____anonymous_tag_1045_1046 ____WAIT_STATUS_1049;// L67:L71 +struct ____anonymous_tag_1050_1051 { +int __quot_1052;// L99 +int __rem_1053;// L100 }; -typedef struct ____anonymous_tag_1186_1187 __div_t_1190;// L97:L101 -struct ____anonymous_tag_1191_1192 { -long int __quot_1193;// L107 -long int __rem_1194;// L108 +typedef struct ____anonymous_tag_1050_1051 __div_t_1054;// L97:L101 +struct ____anonymous_tag_1055_1056 { +long int __quot_1057;// L107 +long int __rem_1058;// L108 }; -typedef struct ____anonymous_tag_1191_1192 __ldiv_t_1195;// L105:L109 -struct ____anonymous_tag_1196_1197 { -long long int __quot_1198;// L119 -long long int __rem_1199;// L120 +typedef struct ____anonymous_tag_1055_1056 __ldiv_t_1059;// L105:L109 +struct ____anonymous_tag_1060_1061 { +long long int __quot_1062;// L119 +long long int __rem_1063;// L120 }; -typedef struct ____anonymous_tag_1196_1197 __lldiv_t_1200;// L117:L121 -typedef unsigned char ____u_char_1264;// L30 -typedef unsigned short int ____u_short_1265;// L31 -typedef unsigned int ____u_int_1266;// L32 -typedef unsigned long int ____u_long_1267;// L33 -typedef signed char ____int8_t_1268;// L36 -typedef unsigned char ____uint8_t_1269;// L37 -typedef signed short int ____int16_t_1270;// L38 -typedef unsigned short int ____uint16_t_1271;// L39 -typedef signed int ____int32_t_1272;// L40 -typedef unsigned int ____uint32_t_1273;// L41 -typedef signed long int ____int64_t_1274;// L43 -typedef unsigned long int ____uint64_t_1275;// L44 -typedef long int ____quad_t_1276;// L52 -typedef unsigned long int ____u_quad_t_1277;// L53 -typedef unsigned long int ____dev_t_1278;// L109:L124 -typedef unsigned int ____uid_t_1279;// L92:L125 -typedef unsigned int ____gid_t_1280;// L92:L126 -typedef unsigned long int ____ino_t_1281;// L94:L127 -typedef unsigned long int ____ino64_t_1282;// L109:L128 -typedef unsigned int ____mode_t_1283;// L92:L129 -typedef unsigned long int ____nlink_t_1284;// L94:L130 -typedef long int ____off_t_1285;// L93:L131 -typedef long int ____off64_t_1286;// L108:L132 -typedef int ____pid_t_1287;// L91:L133 -struct ____anonymous_tag_1288_1289 { -int ____val_1290[2];// L72 +typedef struct ____anonymous_tag_1060_1061 __lldiv_t_1064;// L117:L121 +typedef ____u_char_2 __u_char_1124;// L33 +typedef ____u_short_3 __u_short_1125;// L34 +typedef ____u_int_4 __u_int_1126;// L35 +typedef ____u_long_5 __u_long_1127;// L36 +typedef ____quad_t_14 __quad_t_1128;// L37 +typedef ____u_quad_t_15 __u_quad_t_1129;// L38 +typedef ____fsid_t_29 __fsid_t_1130;// L39 +typedef ____loff_t_52 __loff_t_1131;// L44 +typedef ____ino_t_19 __ino_t_1132;// L48 +typedef ____ino64_t_20 __ino_t_1133;// L50 +typedef ____dev_t_16 __dev_t_1134;// L60 +typedef ____gid_t_18 __gid_t_1135;// L65 +typedef ____gid_t_18 __gid_t_1136;// L65 +typedef ____mode_t_21 __mode_t_1137;// L70 +typedef ____nlink_t_22 __nlink_t_1138;// L75 +typedef ____uid_t_17 __uid_t_1139;// L80 +typedef ____uid_t_17 __uid_t_1140;// L80 +typedef ____pid_t_25 __pid_t_1141;// L98 +typedef ____id_t_33 __id_t_1142;// L104 +typedef ____daddr_t_37 __daddr_t_1143;// L115 +typedef ____caddr_t_54 __caddr_t_1144;// L116 +typedef ____key_t_38 __key_t_1145;// L122 +typedef ____key_t_38 __key_t_1146;// L122 +typedef ____clock_t_30 __clock_t_1147;// L59 +typedef ____time_t_34 __time_t_1148;// L75 +typedef ____clockid_t_39 __clockid_t_1149;// L91 +typedef ____timer_t_40 __timer_t_1150;// L103 +typedef unsigned long int __ulong_1151;// L150 +typedef unsigned long int __ulong_1152;// L150 +typedef unsigned long int __ulong_1153;// L150 +typedef unsigned short int __ushort_1154;// L151 +typedef unsigned int __uint_1155;// L152 +typedef int __int8_t_1156;// L188:L194 +typedef int __int16_t_1157;// L188:L195 +typedef int __int32_t_1158;// L188:L196 +typedef int __int64_t_1159;// L188:L197 +typedef unsigned int __u_int8_t_1160;// L190:L200 +typedef unsigned int __u_int16_t_1161;// L190:L201 +typedef unsigned int __u_int32_t_1162;// L190:L202 +typedef unsigned int __u_int64_t_1163;// L190:L203 +typedef int __register_t_1164;// L205 +typedef int ____sig_atomic_t_1170;// L22 +struct ____anonymous_tag_1171_1172 { +unsigned long int ____val_1173[( 1024 / ( 8 * sizeof(unsigned long) ) )];// L29 }; -typedef struct ____anonymous_tag_1288_1289 ____fsid_t_1291;// L72:L134 -typedef long int ____clock_t_1292;// L93:L135 -typedef unsigned long int ____rlim_t_1293;// L94:L136 -typedef unsigned long int ____rlim64_t_1294;// L109:L137 -typedef unsigned int ____id_t_1295;// L92:L138 -typedef long int ____time_t_1296;// L93:L139 -typedef unsigned int ____useconds_t_1297;// L92:L140 -typedef long int ____suseconds_t_1298;// L93:L141 -typedef int ____daddr_t_1299;// L91:L143 -typedef int ____key_t_1300;// L91:L144 -typedef int ____clockid_t_1301;// L91:L147 -typedef void * (____timer_t_1302);// L70:L150 -typedef long int ____blksize_t_1303;// L93:L153 -typedef long int ____blkcnt_t_1304;// L93:L158 -typedef long int ____blkcnt64_t_1305;// L108:L159 -typedef unsigned long int ____fsblkcnt_t_1306;// L94:L162 -typedef unsigned long int ____fsblkcnt64_t_1307;// L109:L163 -typedef unsigned long int ____fsfilcnt_t_1308;// L94:L166 -typedef unsigned long int ____fsfilcnt64_t_1309;// L109:L167 -typedef long int ____fsword_t_1310;// L93:L170 -typedef long int ____ssize_t_1311;// L110:L172 -typedef long int ____syscall_slong_t_1312;// L93:L175 -typedef unsigned long int ____syscall_ulong_t_1313;// L94:L177 -typedef ____off64_t_1286 ____loff_t_1314;// L181 -typedef ____quad_t_1276 * (____qaddr_t_1316);// L182 -typedef char * (____caddr_t_1317);// L183 -typedef long int ____intptr_t_1318;// L110:L186 -typedef unsigned int ____socklen_t_1319;// L92:L189 -typedef ____u_char_2 __u_char_1320;// L33 -typedef ____u_char_1101 __u_char_1321;// L33 -typedef ____u_char_1264 __u_char_1322;// L33 -typedef ____u_short_3 __u_short_1323;// L34 -typedef ____u_short_1102 __u_short_1324;// L34 -typedef ____u_short_1265 __u_short_1325;// L34 -typedef ____u_int_4 __u_int_1326;// L35 -typedef ____u_int_1103 __u_int_1327;// L35 -typedef ____u_int_1266 __u_int_1328;// L35 -typedef ____u_long_5 __u_long_1329;// L36 -typedef ____u_long_1104 __u_long_1330;// L36 -typedef ____u_long_1267 __u_long_1331;// L36 -typedef ____quad_t_14 __quad_t_1332;// L37 -typedef ____quad_t_1113 __quad_t_1333;// L37 -typedef ____quad_t_1276 __quad_t_1334;// L37 -typedef ____u_quad_t_15 __u_quad_t_1335;// L38 -typedef ____u_quad_t_1114 __u_quad_t_1336;// L38 -typedef ____u_quad_t_1277 __u_quad_t_1337;// L38 -typedef ____fsid_t_29 __fsid_t_1338;// L39 -typedef ____fsid_t_1128 __fsid_t_1339;// L39 -typedef ____fsid_t_1291 __fsid_t_1340;// L39 -typedef ____loff_t_52 __loff_t_1342;// L44 -typedef ____loff_t_1151 __loff_t_1343;// L44 -typedef ____loff_t_1314 __loff_t_1344;// L44 -typedef ____loff_t_52 __loff_t_1346;// L44 -typedef ____loff_t_1151 __loff_t_1347;// L44 -typedef ____loff_t_1314 __loff_t_1348;// L44 -typedef ____ino64_t_20 __ino_t_1350;// L50 -typedef ____ino64_t_1119 __ino_t_1351;// L50 -typedef ____ino64_t_1282 __ino_t_1352;// L50 -typedef ____ino_t_19 __ino_t_1354;// L48 -typedef ____ino_t_1118 __ino_t_1355;// L48 -typedef ____ino_t_1281 __ino_t_1356;// L48 -typedef ____dev_t_16 __dev_t_1358;// L60 -typedef ____dev_t_1115 __dev_t_1359;// L60 -typedef ____dev_t_1278 __dev_t_1360;// L60 -typedef ____gid_t_18 __gid_t_1362;// L65 -typedef ____gid_t_1117 __gid_t_1363;// L65 -typedef ____gid_t_1280 __gid_t_1364;// L65 -typedef ____gid_t_18 __gid_t_1366;// L65 -typedef ____gid_t_1117 __gid_t_1367;// L65 -typedef ____gid_t_1280 __gid_t_1368;// L65 -typedef ____mode_t_21 __mode_t_1370;// L70 -typedef ____mode_t_1120 __mode_t_1371;// L70 -typedef ____mode_t_1283 __mode_t_1372;// L70 -typedef ____nlink_t_22 __nlink_t_1374;// L75 -typedef ____nlink_t_1121 __nlink_t_1375;// L75 -typedef ____nlink_t_1284 __nlink_t_1376;// L75 -typedef ____uid_t_17 __uid_t_1378;// L80 -typedef ____uid_t_1116 __uid_t_1379;// L80 -typedef ____uid_t_1279 __uid_t_1380;// L80 -typedef ____uid_t_17 __uid_t_1382;// L80 -typedef ____uid_t_1116 __uid_t_1383;// L80 -typedef ____uid_t_1279 __uid_t_1384;// L80 -typedef ____off64_t_1123 __off_t_1386;// L88 -typedef ____off64_t_1286 __off_t_1387;// L88 -typedef ____off_t_1122 __off_t_1389;// L86 -typedef ____off_t_1285 __off_t_1390;// L86 -typedef ____pid_t_25 __pid_t_1392;// L98 -typedef ____pid_t_1124 __pid_t_1393;// L98 -typedef ____pid_t_1287 __pid_t_1394;// L98 -typedef ____pid_t_1124 __pid_t_1396;// L98 -typedef ____pid_t_1287 __pid_t_1397;// L98 -typedef ____id_t_33 __id_t_1399;// L104 -typedef ____id_t_1132 __id_t_1400;// L104 -typedef ____id_t_1295 __id_t_1401;// L104 -typedef ____ssize_t_1148 __ssize_t_1403;// L109 -typedef ____ssize_t_1311 __ssize_t_1404;// L109 -typedef ____daddr_t_37 __daddr_t_1406;// L115 -typedef ____daddr_t_1136 __daddr_t_1407;// L115 -typedef ____daddr_t_1299 __daddr_t_1408;// L115 -typedef ____caddr_t_55 __caddr_t_1410;// L116 -typedef ____caddr_t_1154 __caddr_t_1411;// L116 -typedef ____caddr_t_1317 __caddr_t_1412;// L116 -typedef ____key_t_38 __key_t_1413;// L122 -typedef ____key_t_1137 __key_t_1414;// L122 -typedef ____key_t_1300 __key_t_1415;// L122 -typedef ____key_t_38 __key_t_1417;// L122 -typedef ____key_t_1137 __key_t_1418;// L122 -typedef ____key_t_1300 __key_t_1419;// L122 -typedef ____clock_t_30 __clock_t_1421;// L59 -typedef ____clock_t_1129 __clock_t_1422;// L59 -typedef ____clock_t_1292 __clock_t_1423;// L59 -typedef ____time_t_34 __time_t_1425;// L75 -typedef ____time_t_1133 __time_t_1426;// L75 -typedef ____time_t_1296 __time_t_1427;// L75 -typedef ____clockid_t_39 __clockid_t_1429;// L91 -typedef ____clockid_t_1138 __clockid_t_1430;// L91 -typedef ____clockid_t_1301 __clockid_t_1431;// L91 -typedef ____timer_t_40 __timer_t_1433;// L103 -typedef ____timer_t_1139 __timer_t_1434;// L103 -typedef ____timer_t_1302 __timer_t_1435;// L103 -typedef unsigned long int __ulong_1437;// L150 -typedef unsigned long int __ulong_1438;// L150 -typedef unsigned long int __ulong_1439;// L150 -typedef unsigned short int __ushort_1440;// L151 -typedef unsigned int __uint_1441;// L152 -typedef int __int8_t_1442;// L188:L194 -typedef int __int16_t_1443;// L188:L195 -typedef int __int32_t_1444;// L188:L196 -typedef int __int64_t_1445;// L188:L197 -typedef unsigned int __u_int8_t_1446;// L190:L200 -typedef unsigned int __u_int16_t_1447;// L190:L201 -typedef unsigned int __u_int32_t_1448;// L190:L202 -typedef unsigned int __u_int64_t_1449;// L190:L203 -typedef int __register_t_1450;// L205 -typedef int ____sig_atomic_t_1460;// L22 -struct ____anonymous_tag_1461_1462 { -unsigned long int ____val_1463[( 1024 / ( 8 * sizeof(unsigned long) ) )];// L29 +typedef struct ____anonymous_tag_1171_1172 ____sigset_t_1174;// L27:L30 +typedef ____sigset_t_1174 __sigset_t_1175;// L37 +struct __timespec_1176 { +____time_t_34 __tv_sec_1177;// L0 +____syscall_slong_t_50 __tv_nsec_1178;// L0 }; -typedef struct ____anonymous_tag_1461_1462 ____sigset_t_1464;// L27:L30 -typedef ____sigset_t_1464 __sigset_t_1465;// L37 -struct __timespec_1466 { -____time_t_34 __tv_sec_1467;// L0 -____time_t_1133 __tv_sec_1468;// L0 -____time_t_1296 __tv_sec_1469;// L0 -____syscall_slong_t_50 __tv_nsec_1471;// L0 -____syscall_slong_t_1149 __tv_nsec_1472;// L0 -____syscall_slong_t_1312 __tv_nsec_1473;// L0 +struct __timeval_1179 { +____time_t_34 __tv_sec_1180;// L0 +____suseconds_t_36 __tv_usec_1181;// L0 }; -struct __timeval_1476 { -____time_t_34 __tv_sec_1477;// L0 -____time_t_1133 __tv_sec_1478;// L0 -____time_t_1296 __tv_sec_1479;// L0 -____suseconds_t_36 __tv_usec_1481;// L0 -____suseconds_t_1135 __tv_usec_1482;// L0 -____suseconds_t_1298 __tv_usec_1483;// L0 +typedef ____suseconds_t_36 __suseconds_t_1182;// L48 +typedef long int ____fd_mask_1183;// L54 +typedef long int ____fd_mask_1184;// L54 +struct ____anonymous_tag_1185_1186 { +____fd_mask_1183 ____fds_bits_1187[1024 / ( 8 * ( int ) sizeof(long) )];// L0 +____fd_mask_1184 ____fds_bits_1188[1024 / ( 8 * ( int ) sizeof(long) )];// L0 }; -typedef ____suseconds_t_36 __suseconds_t_1486;// L48 -typedef ____suseconds_t_1135 __suseconds_t_1487;// L48 -typedef ____suseconds_t_1298 __suseconds_t_1488;// L48 -typedef long int ____fd_mask_1490;// L54 -typedef long int ____fd_mask_1491;// L54 -struct ____anonymous_tag_1492_1493 { -____fd_mask_1490 ____fds_bits_1494[1024 / ( 8 * ( int ) sizeof(long) )];// L0 -____fd_mask_1491 ____fds_bits_1496[1024 / ( 8 * ( int ) sizeof(long) )];// L0 +typedef struct ____anonymous_tag_1185_1186 __fd_set_1189;// L64:L75 +typedef ____fd_mask_1183 __fd_mask_1190;// L82 +typedef ____fd_mask_1184 __fd_mask_1191;// L82 +typedef ____blksize_t_41 __blksize_t_1227;// L228 +typedef ____blkcnt_t_42 __blkcnt_t_1228;// L235 +typedef ____fsblkcnt_t_44 __fsblkcnt_t_1229;// L239 +typedef ____blkcnt64_t_43 __blkcnt_t_1230;// L248 +typedef ____fsblkcnt64_t_45 __fsblkcnt_t_1231;// L252 +typedef ____fsfilcnt_t_46 __fsfilcnt_t_1232;// L243 +typedef ____fsfilcnt64_t_47 __fsfilcnt_t_1233;// L256 +typedef unsigned long int __pthread_t_1234;// L60 +union __pthread_attr_t_1235 { +char ____size_1236[56];// L65 +long int ____align_1237;// L66 }; -typedef struct ____anonymous_tag_1492_1493 __fd_set_1499;// L64:L75 -typedef ____fd_mask_1490 __fd_mask_1500;// L82 -typedef ____fd_mask_1491 __fd_mask_1501;// L82 -typedef ____blksize_t_41 __blksize_t_1549;// L228 -typedef ____blksize_t_1140 __blksize_t_1550;// L228 -typedef ____blksize_t_1303 __blksize_t_1551;// L228 -typedef ____blkcnt_t_42 __blkcnt_t_1553;// L235 -typedef ____blkcnt_t_1141 __blkcnt_t_1554;// L235 -typedef ____blkcnt_t_1304 __blkcnt_t_1555;// L235 -typedef ____fsblkcnt_t_44 __fsblkcnt_t_1557;// L239 -typedef ____fsblkcnt_t_1143 __fsblkcnt_t_1558;// L239 -typedef ____fsblkcnt_t_1306 __fsblkcnt_t_1559;// L239 -typedef ____blkcnt64_t_43 __blkcnt_t_1561;// L248 -typedef ____blkcnt64_t_1142 __blkcnt_t_1562;// L248 -typedef ____blkcnt64_t_1305 __blkcnt_t_1563;// L248 -typedef ____fsblkcnt64_t_45 __fsblkcnt_t_1565;// L252 -typedef ____fsblkcnt64_t_1144 __fsblkcnt_t_1566;// L252 -typedef ____fsblkcnt64_t_1307 __fsblkcnt_t_1567;// L252 -typedef ____fsfilcnt_t_46 __fsfilcnt_t_1569;// L243 -typedef ____fsfilcnt_t_1145 __fsfilcnt_t_1570;// L243 -typedef ____fsfilcnt_t_1308 __fsfilcnt_t_1571;// L243 -typedef ____fsfilcnt64_t_47 __fsfilcnt_t_1573;// L256 -typedef ____fsfilcnt64_t_1146 __fsfilcnt_t_1574;// L256 -typedef ____fsfilcnt64_t_1309 __fsfilcnt_t_1575;// L256 -typedef unsigned long int __pthread_t_1577;// L60 -union __pthread_attr_t_1578 { -char ____size_1579[56];// L65 -long int ____align_1580;// L66 +typedef union __pthread_attr_t_1235 __pthread_attr_t_1238;// L69 +struct ____pthread_internal_list_1240 { +struct __forward_tag_reference_1239 * (____prev_1241);// L0 +struct __forward_tag_reference_1239 * (____next_1242);// L0 }; -typedef union __pthread_attr_t_1578 __pthread_attr_t_1581;// L69 -struct ____pthread_internal_list_1583 { -struct __forward_tag_reference_1582 * (____prev_1584);// L0 -struct __forward_tag_reference_1582 * (____next_1585);// L0 +typedef struct ____pthread_internal_list_1240 ____pthread_list_t_1243;// L75:L79 +typedef struct ____pthread_internal_list_1240 ____pthread_list_t_1244;// L75:L79 +struct ____pthread_mutex_s_1245 { +int ____lock_1246;// L94 +unsigned int ____count_1247;// L95 +int ____owner_1248;// L96 +unsigned int ____nusers_1249;// L98 +int ____kind_1250;// L102 +short ____spins_1251;// L104 +short ____elision_1252;// L105 +____pthread_list_t_1243 ____list_1253;// L0 +____pthread_list_t_1244 ____list_1254;// L0 }; -typedef struct ____pthread_internal_list_1583 ____pthread_list_t_1586;// L75:L79 -typedef struct ____pthread_internal_list_1583 ____pthread_list_t_1587;// L75:L79 -struct ____pthread_mutex_s_1588 { -int ____lock_1589;// L94 -unsigned int ____count_1590;// L95 -int ____owner_1591;// L96 -unsigned int ____nusers_1592;// L98 -int ____kind_1593;// L102 -short ____spins_1594;// L104 -short ____elision_1595;// L105 -____pthread_list_t_1586 ____list_1596;// L0 -____pthread_list_t_1587 ____list_1597;// L0 +union ____anonymous_tag_1255_1256 { +struct ____pthread_mutex_s_1245 ____data_1257;// L92 +char ____size_1258[40];// L126 +long int ____align_1259;// L127 }; -union ____anonymous_tag_1598_1599 { -struct ____pthread_mutex_s_1588 ____data_1600;// L92 -char ____size_1601[40];// L126 -long int ____align_1602;// L127 +typedef union ____anonymous_tag_1255_1256 __pthread_mutex_t_1260;// L90:L128 +union ____anonymous_tag_1261_1262 { +char ____size_1263[4];// L132 +int ____align_1264;// L133 }; -typedef union ____anonymous_tag_1598_1599 __pthread_mutex_t_1603;// L90:L128 -union ____anonymous_tag_1604_1605 { -char ____size_1606[4];// L132 -int ____align_1607;// L133 +typedef union ____anonymous_tag_1261_1262 __pthread_mutexattr_t_1265;// L130:L134 +typedef int (* (____compar_fn_t_1375)) (const void *, const void *);// L741 +struct ____locale_struct_1658 { +struct __forward_tag_reference_1657 * (____locales_1659[13]);// L0 +const unsigned short int * (____ctype_b_1660);// L33 +const int * (____ctype_tolower_1661);// L34 +const int * (____ctype_toupper_1662);// L35 +const char * (____names_1663[13]);// L38 }; -typedef union ____anonymous_tag_1604_1605 __pthread_mutexattr_t_1608;// L130:L134 -typedef int (* (____compar_fn_t_1740)) (const void *, const void *);// L741 -typedef long int __ptrdiff_t_2036;// L143:L324 -typedef long unsigned int __size_t_2037;// L177:L209 -struct ____locale_struct_2137 { -struct __forward_tag_reference_2136 * (____locales_2138[13]);// L0 -const unsigned short int * (____ctype_b_2139);// L33 -const int * (____ctype_tolower_2140);// L34 -const int * (____ctype_toupper_2141);// L35 -const char * (____names_2142[13]);// L38 +typedef struct ____locale_struct_1658 * (____locale_t_1664);// L27:L39 +typedef ____locale_t_1664 __locale_t_1665;// L42 +struct __ethtable_s_1820 { +struct __forward_tag_reference_1819 * (__next_1821);// L0 +char * (__ifname_1822);// L9 }; -typedef struct ____locale_struct_2137 * (____locale_t_2143);// L27:L39 -typedef ____locale_t_2143 __locale_t_2144;// L42 -struct __ethtable_s_2391 { -struct __forward_tag_reference_2390 * (__next_2392);// L0 -char * (__ifname_2393);// L9 -}; -typedef struct __ethtable_s_2391 __ethtable_t_2394;// L7:L10 -typedef struct __ethtable_s_2391 __ethtable_t_2395;// L7:L10 +typedef struct __ethtable_s_1820 __ethtable_t_1823;// L7:L10 +typedef struct __ethtable_s_1820 __ethtable_t_1824;// L7:L10 -struct __forward_tag_reference_89 { // generated union of struct variations +struct __forward_tag_reference_57 { // generated union of struct variations union { -struct ___IO_marker_90 ___IO_marker_90; +struct ___IO_FILE_95 ___IO_FILE_95; +struct ___IO_FILE_119 ___IO_FILE_119; }; }; -struct __forward_tag_reference_1582 { // generated union of struct variations +struct __forward_tag_reference_1819 { // generated union of struct variations union { +struct __ethtable_s_1820 __ethtable_s_1820; }; }; -struct __forward_tag_reference_58 { // generated union of struct variations +struct __forward_tag_reference_85 { // generated union of struct variations union { -struct ___IO_FILE_99 ___IO_FILE_99; -struct ___IO_FILE_124 ___IO_FILE_124; +struct ___IO_marker_86 ___IO_marker_86; }; }; -struct __forward_tag_reference_2136 { // generated union of struct variations +struct __forward_tag_reference_1239 { // generated union of struct variations union { }; }; -struct __forward_tag_reference_87 { // generated union of struct variations +struct __forward_tag_reference_83 { // generated union of struct variations union { }; }; -struct __forward_tag_reference_174 { // generated union of struct variations +struct __forward_tag_reference_1657 { // generated union of struct variations union { }; }; -struct __forward_tag_reference_2390 { // generated union of struct variations +struct __forward_tag_reference_166 { // generated union of struct variations union { -struct __ethtable_s_2391 __ethtable_s_2391; }; }; @@ -2298,225 +1515,225 @@ struct __ethtable_s_2391 __ethtable_s_2391; // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_58 ;// L0 +struct __forward_tag_reference_57 ;// L0 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_87 ;// L0 -struct __forward_tag_reference_87 ;// L0 -struct __forward_tag_reference_58 ;// L0 +struct __forward_tag_reference_83 ;// L0 +struct __forward_tag_reference_83 ;// L0 +struct __forward_tag_reference_57 ;// L0 // typedef moved to top of scope -struct ___IO_marker_90 ;// L156 -enum ____codecvt_result_98 ;// L176 -struct ___IO_FILE_99 ;// L241 +struct ___IO_marker_86 ;// L156 +enum ____codecvt_result_94 ;// L176 +struct ___IO_FILE_95 ;// L241 -struct ___IO_FILE_124 ;// L241 -struct ___IO_FILE_complete_157 ;// L241 +struct ___IO_FILE_119 ;// L241 +struct ___IO_FILE_complete_150 ;// L241 // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_174 ;// L0 -extern struct __forward_tag_reference_174 ___IO_2_1_stdin__175;// L315 -extern struct __forward_tag_reference_174 ___IO_2_1_stdout__176;// L316 -extern struct __forward_tag_reference_174 ___IO_2_1_stderr__177;// L317 +struct __forward_tag_reference_166 ;// L0 +extern struct __forward_tag_reference_166 ___IO_2_1_stdin__167;// L315 +extern struct __forward_tag_reference_166 ___IO_2_1_stdout__168;// L316 +extern struct __forward_tag_reference_166 ___IO_2_1_stderr__169;// L317 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern int (____underflow_196) (___IO_FILE_171 *);// L385 -extern int (____underflow_197) (___IO_FILE_172 *);// L385 -extern int (____uflow_199) (___IO_FILE_171 *);// L386 -extern int (____uflow_200) (___IO_FILE_172 *);// L386 -extern int (____overflow_202) (___IO_FILE_171 *, int );// L387 -extern int (____overflow_203) (___IO_FILE_172 *, int );// L387 -extern int (___IO_getc_208) (___IO_FILE_171 * (____fp_205));// L429 -extern int (___IO_getc_209) (___IO_FILE_172 * (____fp_206));// L429 -extern int (___IO_putc_215) (int ____c_211, ___IO_FILE_171 * (____fp_212));// L430 -extern int (___IO_putc_216) (int ____c_211, ___IO_FILE_172 * (____fp_213));// L430 -extern int (___IO_feof_221) (___IO_FILE_171 * (____fp_218));// L431 -extern int (___IO_feof_222) (___IO_FILE_172 * (____fp_219));// L431 -extern int (___IO_ferror_227) (___IO_FILE_171 * (____fp_224));// L432 -extern int (___IO_ferror_228) (___IO_FILE_172 * (____fp_225));// L432 -extern int (___IO_peekc_locked_233) (___IO_FILE_171 * (____fp_230));// L434 -extern int (___IO_peekc_locked_234) (___IO_FILE_172 * (____fp_231));// L434 -extern void (___IO_flockfile_236) (___IO_FILE_171 *);// L440 -extern void (___IO_flockfile_237) (___IO_FILE_172 *);// L440 -extern void (___IO_funlockfile_239) (___IO_FILE_171 *);// L441 -extern void (___IO_funlockfile_240) (___IO_FILE_172 *);// L441 -extern int (___IO_ftrylockfile_242) (___IO_FILE_171 *);// L442 -extern int (___IO_ftrylockfile_243) (___IO_FILE_172 *);// L442 -extern int (___IO_vfscanf_245) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_247) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_251) (___IO_FILE_171 * __restrict , const char * __restrict , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_252) (___IO_FILE_172 * __restrict , const char * __restrict , int * __restrict );// L459:L460 -extern int (___IO_vfprintf_254) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 -extern int (___IO_vfprintf_256) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 -extern int (___IO_vfprintf_260) ();// L461:L462 -extern ____ssize_t_49 (___IO_padn_261) (___IO_FILE_171 *, int , ____ssize_t_49 );// L463 -extern ____ssize_t_49 (___IO_padn_262) (___IO_FILE_172 *, int , ____ssize_t_49 );// L463 -extern __size_t_1 (___IO_sgetn_265) (___IO_FILE_171 *, void *, __size_t_1 );// L464 -extern __size_t_1 (___IO_sgetn_266) (___IO_FILE_172 *, void *, __size_t_1 );// L464 -extern ____off64_t_24 (___IO_seekoff_268) (___IO_FILE_171 *, ____off64_t_24 , int , int );// L466 -extern ____off64_t_24 (___IO_seekoff_269) (___IO_FILE_172 *, ____off64_t_24 , int , int );// L466 -extern ____off64_t_24 (___IO_seekpos_272) (___IO_FILE_171 *, ____off64_t_24 , int );// L467 -extern ____off64_t_24 (___IO_seekpos_273) (___IO_FILE_172 *, ____off64_t_24 , int );// L467 -extern void (___IO_free_backup_area_276) (___IO_FILE_171 *);// L469 -extern void (___IO_free_backup_area_277) (___IO_FILE_172 *);// L469 +extern int (____underflow_184) (___IO_FILE_163 *);// L385 +extern int (____underflow_185) (___IO_FILE_164 *);// L385 +extern int (____uflow_186) (___IO_FILE_163 *);// L386 +extern int (____uflow_187) (___IO_FILE_164 *);// L386 +extern int (____overflow_188) (___IO_FILE_163 *, int );// L387 +extern int (____overflow_189) (___IO_FILE_164 *, int );// L387 +extern int (___IO_getc_193) (___IO_FILE_163 * (____fp_190));// L429 +extern int (___IO_getc_194) (___IO_FILE_164 * (____fp_191));// L429 +extern int (___IO_putc_199) (int ____c_195, ___IO_FILE_163 * (____fp_196));// L430 +extern int (___IO_putc_200) (int ____c_195, ___IO_FILE_164 * (____fp_197));// L430 +extern int (___IO_feof_204) (___IO_FILE_163 * (____fp_201));// L431 +extern int (___IO_feof_205) (___IO_FILE_164 * (____fp_202));// L431 +extern int (___IO_ferror_209) (___IO_FILE_163 * (____fp_206));// L432 +extern int (___IO_ferror_210) (___IO_FILE_164 * (____fp_207));// L432 +extern int (___IO_peekc_locked_214) (___IO_FILE_163 * (____fp_211));// L434 +extern int (___IO_peekc_locked_215) (___IO_FILE_164 * (____fp_212));// L434 +extern void (___IO_flockfile_216) (___IO_FILE_163 *);// L440 +extern void (___IO_flockfile_217) (___IO_FILE_164 *);// L440 +extern void (___IO_funlockfile_218) (___IO_FILE_163 *);// L441 +extern void (___IO_funlockfile_219) (___IO_FILE_164 *);// L441 +extern int (___IO_ftrylockfile_220) (___IO_FILE_163 *);// L442 +extern int (___IO_ftrylockfile_221) (___IO_FILE_164 *);// L442 +extern int (___IO_vfscanf_222) (___IO_FILE_163 * __restrict , const char * __restrict , ____gnuc_va_list_82 , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_224) (___IO_FILE_164 * __restrict , const char * __restrict , ____gnuc_va_list_82 , int * __restrict );// L459:L460 + + +extern int (___IO_vfprintf_231) (___IO_FILE_163 * __restrict , const char * __restrict , ____gnuc_va_list_82 );// L461:L462 +extern int (___IO_vfprintf_233) (___IO_FILE_164 * __restrict , const char * __restrict , ____gnuc_va_list_82 );// L461:L462 + +extern ____ssize_t_49 (___IO_padn_238) (___IO_FILE_163 *, int , ____ssize_t_49 );// L463 +extern ____ssize_t_49 (___IO_padn_239) (___IO_FILE_164 *, int , ____ssize_t_49 );// L463 +extern __size_t_1 (___IO_sgetn_240) (___IO_FILE_163 *, void *, __size_t_1 );// L464 +extern __size_t_1 (___IO_sgetn_241) (___IO_FILE_164 *, void *, __size_t_1 );// L464 +extern ____off64_t_24 (___IO_seekoff_242) (___IO_FILE_163 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekoff_243) (___IO_FILE_164 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekpos_244) (___IO_FILE_163 *, ____off64_t_24 , int );// L467 +extern ____off64_t_24 (___IO_seekpos_245) (___IO_FILE_164 *, ____off64_t_24 , int );// L467 +extern void (___IO_free_backup_area_246) (___IO_FILE_163 *);// L469 +extern void (___IO_free_backup_area_247) (___IO_FILE_164 *);// L469 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern struct ___IO_FILE_99 * (__stdin_291);// L168 -extern struct ___IO_FILE_124 * (__stdin_292);// L168 -extern struct ___IO_FILE_99 * (__stdout_294);// L169 -extern struct ___IO_FILE_124 * (__stdout_295);// L169 -extern struct ___IO_FILE_99 * (__stderr_297);// L170 -extern struct ___IO_FILE_124 * (__stderr_298);// L170 -extern int (__remove_301) (const char * (____filename_300));// L178 -extern int (__rename_304) (const char * (____old_302), const char * (____new_303));// L180 -extern int (__renameat_309) (int ____oldfd_305, const char * (____old_306), int ____newfd_307, const char * (____new_308));// L185:L186 -extern __FILE_59 * ((__tmpfile_310) (void ));// L195 -extern __FILE_59 * ((__tmpfile_316) (void ));// L198 -extern __FILE_59 * ((__tmpfile_314) (void ));// L195 -extern __FILE_59 * ((__tmpfile_312) (void ));// L198 -extern char * ((__tmpnam_319) (char * (____s_318)));// L209 -extern char * ((__tmpnam_320) (char * (____s_318)));// L209 -extern char * ((__tmpnam_r_322) (char * (____s_321)));// L215 -extern char * ((__tmpnam_r_323) (char * (____s_321)));// L215 -extern char * ((__tempnam_326) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 -extern char * ((__tempnam_327) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 -extern int (__fclose_330) (__FILE_59 * (____stream_328));// L237 -extern int (__fclose_332) (__FILE_59 * (____stream_328));// L237 -extern int (__fflush_336) (__FILE_59 * (____stream_334));// L242 -extern int (__fflush_unlocked_340) (__FILE_59 * (____stream_338));// L252 -extern __FILE_59 * ((__fopen_344) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 -extern __FILE_59 * ((__fopen_346) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 -extern __FILE_59 * ((__fopen_354) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 -extern __FILE_59 * ((__fopen_356) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 -extern __FILE_59 * ((__freopen_362) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 -extern __FILE_59 * ((__freopen_368) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 -extern __FILE_59 * ((__freopen_366) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 -extern __FILE_59 * ((__freopen_364) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 -extern __FILE_59 * ((__fdopen_372) (int ____fd_370, const char * (____modes_371)));// L306 -extern __FILE_59 * ((__fdopen_374) (int ____fd_370, const char * (____modes_371)));// L306 -extern __FILE_59 * ((__fmemopen_379) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 -extern __FILE_59 * ((__fmemopen_381) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 -extern __FILE_59 * ((__open_memstream_385) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 -extern __FILE_59 * ((__open_memstream_387) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 -extern void (__setbuf_392) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 -extern void (__setbuf_394) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 -extern int (__setvbuf_401) (__FILE_59 * __restrict ____stream_396, char * __restrict ____buf_398, int ____modes_399, __size_t_1 ____n_400);// L336:L337 -extern void (__setbuffer_407) (__FILE_59 * __restrict ____stream_403, char * __restrict ____buf_405, __size_t_1 ____size_406);// L343:L344 -extern void (__setlinebuf_411) (__FILE_59 * (____stream_409));// L347 -extern int (__fprintf_416) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 -extern int (__fprintf_418) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 -extern int (__printf_421) (const char * __restrict ____format_420, ... );// L362 -extern int (__sprintf_424) (char * __restrict ____s_422, const char * __restrict ____format_423, ... );// L364:L365 -extern int (__vfprintf_430) (__FILE_59 * __restrict ____s_425, const char * __restrict ____format_427, ____gnuc_va_list_86 ____arg_428);// L371:L372 -extern int (__vprintf_437) (const char * __restrict ____format_434, ____gnuc_va_list_86 ____arg_435);// L377 -extern int (__vsprintf_443) (char * __restrict ____s_439, const char * __restrict ____format_440, ____gnuc_va_list_86 ____arg_441);// L379:L380 -extern int (__snprintf_448) (char * __restrict ____s_445, __size_t_1 ____maxlen_446, const char * __restrict ____format_447, ... );// L386:L388 -extern int (__vsnprintf_454) (char * __restrict ____s_449, __size_t_1 ____maxlen_450, const char * __restrict ____format_451, ____gnuc_va_list_86 ____arg_452);// L390:L392 -extern int (__vdprintf_460) (int ____fd_456, const char * __restrict ____fmt_457, ____gnuc_va_list_86 ____arg_458);// L412:L414 -extern int (__dprintf_464) (int ____fd_462, const char * __restrict ____fmt_463, ... );// L415:L416 -extern int (__fscanf_468) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__fscanf_470) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__fscanf_472) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__fscanf_474) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__scanf_477) (const char * __restrict ____format_476, ... );// L431 -extern int (__scanf_478) (const char * __restrict ____format_476, ... );// L431 -extern int (__sscanf_481) (const char * __restrict ____s_479, const char * __restrict ____format_480, ... );// L433:L434 - - - - - - - -extern int (__vfscanf_509) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 -extern int (__vfscanf_513) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 -extern int (__vscanf_520) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 -extern int (__vscanf_522) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 -extern int (__vsscanf_528) (const char * __restrict ____s_524, const char * __restrict ____format_525, ____gnuc_va_list_86 ____arg_526);// L483:L485 - - - - - -extern int (__fgetc_563) (__FILE_59 * (____stream_561));// L531 -extern int (__getc_567) (__FILE_59 * (____stream_565));// L532 -extern int (__getchar_569) (void );// L538 -extern int (__getc_unlocked_572) (__FILE_59 * (____stream_570));// L550 -extern int (__getchar_unlocked_574) (void );// L551 -extern int (__fgetc_unlocked_577) (__FILE_59 * (____stream_575));// L561 -extern int (__fputc_582) (int ____c_579, __FILE_59 * (____stream_580));// L573 -extern int (__fputc_584) (int ____c_579, __FILE_59 * (____stream_580));// L573 -extern int (__putc_589) (int ____c_586, __FILE_59 * (____stream_587));// L574 -extern int (__putchar_592) (int ____c_591);// L580 -extern int (__fputc_unlocked_596) (int ____c_593, __FILE_59 * (____stream_594));// L594 -extern int (__putc_unlocked_601) (int ____c_598, __FILE_59 * (____stream_599));// L602 -extern int (__putchar_unlocked_604) (int ____c_603);// L603 -extern int (__getw_607) (__FILE_59 * (____stream_605));// L610 -extern int (__putw_612) (int ____w_609, __FILE_59 * (____stream_610));// L613 -extern char * ((__fgets_618) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern char * ((__fgets_620) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern char * ((__fgets_622) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern char * ((__fgets_624) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern ____ssize_t_49 (____getdelim_631) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 -extern ____ssize_t_49 (____getdelim_635) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 -extern ____ssize_t_49 (__getdelim_644) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 -extern ____ssize_t_49 (__getdelim_648) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 -extern ____ssize_t_49 (__getline_656) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 -extern ____ssize_t_49 (__getline_660) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 -extern int (__fputs_667) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 -extern int (__fputs_669) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 -extern int (__puts_672) (const char * (____s_671));// L695 -extern int (__ungetc_676) (int ____c_673, __FILE_59 * (____stream_674));// L702 -extern int (__fseek_714) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 -extern int (__fseek_716) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 -extern long int (__ftell_720) (__FILE_59 * (____stream_718));// L754 -extern long int (__ftell_722) (__FILE_59 * (____stream_718));// L754 -extern void (__rewind_726) (__FILE_59 * (____stream_724));// L759 -extern int (__fseeko_733) (__FILE_59 * (____stream_728), ____off_t_23 ____off_730, int ____whence_732);// L773 -extern int (__fseeko_744) (__FILE_59 * (____stream_739), ____off64_t_24 ____off_741, int ____whence_743);// L781:L783 -extern ____off_t_23 (__ftello_758) (__FILE_59 * (____stream_737));// L778 -extern ____off_t_23 (__ftello_750) (__FILE_59 * (____stream_737));// L778 -extern int (__fgetpos_766) (__FILE_59 * __restrict ____stream_762, __fpos_t_287 * __restrict ____pos_764);// L798 -extern ____off64_t_24 (__ftello_754) (__FILE_59 * (____stream_748));// L784 -extern int (__fgetpos_778) (__FILE_59 * __restrict ____stream_774, __fpos_t_289 * __restrict ____pos_776);// L806:L807 -extern int (__fsetpos_786) (__FILE_59 * (____stream_770), const __fpos_t_287 * (____pos_772));// L803 -extern int (__fsetpos_790) (__FILE_59 * (____stream_782), const __fpos_t_289 * (____pos_784));// L808:L809 -extern void (__clearerr_796) (__FILE_59 * (____stream_794));// L826 -extern int (__feof_800) (__FILE_59 * (____stream_798));// L828 -extern int (__feof_802) (__FILE_59 * (____stream_798));// L828 -extern int (__ferror_806) (__FILE_59 * (____stream_804));// L830 -extern int (__ferror_808) (__FILE_59 * (____stream_804));// L830 -extern void (__clearerr_unlocked_812) (__FILE_59 * (____stream_810));// L835 -extern int (__feof_unlocked_816) (__FILE_59 * (____stream_814));// L836 -extern int (__feof_unlocked_818) (__FILE_59 * (____stream_814));// L836 -extern int (__ferror_unlocked_822) (__FILE_59 * (____stream_820));// L837 -extern int (__ferror_unlocked_824) (__FILE_59 * (____stream_820));// L837 -extern void (__perror_827) (const char * (____s_826));// L846 -extern void (__perror_828) (const char * (____s_826));// L846 -extern int __sys_nerr_829;// L26 - -extern int (__fileno_835) (__FILE_59 * (____stream_831));// L858 -extern int (__fileno_833) (__FILE_59 * (____stream_831));// L858 -extern int (__fileno_unlocked_841) (__FILE_59 * (____stream_837));// L863 -extern int (__fileno_unlocked_839) (__FILE_59 * (____stream_837));// L863 -extern __FILE_59 * ((__popen_845) (const char * (____command_843), const char * (____modes_844)));// L872 -extern __FILE_59 * ((__popen_847) (const char * (____command_843), const char * (____modes_844)));// L872 -extern int (__pclose_851) (__FILE_59 * (____stream_849));// L878 -extern char * ((__ctermid_854) (char * (____s_853)));// L884 -extern void (__flockfile_857) (__FILE_59 * (____stream_855));// L912 -extern int (__ftrylockfile_861) (__FILE_59 * (____stream_859));// L916 -extern int (__ftrylockfile_863) (__FILE_59 * (____stream_859));// L916 -extern void (__funlockfile_867) (__FILE_59 * (____stream_865));// L919 +extern struct ___IO_FILE_95 * (__stdin_257);// L168 +extern struct ___IO_FILE_119 * (__stdin_258);// L168 +extern struct ___IO_FILE_95 * (__stdout_259);// L169 +extern struct ___IO_FILE_119 * (__stdout_260);// L169 +extern struct ___IO_FILE_95 * (__stderr_261);// L170 +extern struct ___IO_FILE_119 * (__stderr_262);// L170 +extern int (__remove_264) (const char * (____filename_263));// L178 +extern int (__rename_267) (const char * (____old_265), const char * (____new_266));// L180 +extern int (__renameat_272) (int ____oldfd_268, const char * (____old_269), int ____newfd_270, const char * (____new_271));// L185:L186 +extern __FILE_58 * ((__tmpfile_273) (void ));// L195 +extern __FILE_58 * ((__tmpfile_279) (void ));// L198 +extern __FILE_58 * ((__tmpfile_277) (void ));// L198 +extern __FILE_58 * ((__tmpfile_275) (void ));// L195 +extern char * ((__tmpnam_282) (char * (____s_281)));// L209 +extern char * ((__tmpnam_283) (char * (____s_281)));// L209 +extern char * ((__tmpnam_r_285) (char * (____s_284)));// L215 +extern char * ((__tmpnam_r_286) (char * (____s_284)));// L215 +extern char * ((__tempnam_289) (const char * (____dir_287), const char * (____pfx_288)));// L227:L228 +extern char * ((__tempnam_290) (const char * (____dir_287), const char * (____pfx_288)));// L227:L228 +extern int (__fclose_293) (__FILE_58 * (____stream_291));// L237 +extern int (__fclose_295) (__FILE_58 * (____stream_291));// L237 +extern int (__fflush_299) (__FILE_58 * (____stream_297));// L242 +extern int (__fflush_unlocked_303) (__FILE_58 * (____stream_301));// L252 +extern __FILE_58 * ((__fopen_307) (const char * __restrict ____filename_305, const char * __restrict ____modes_306));// L272:L273 +extern __FILE_58 * ((__fopen_309) (const char * __restrict ____filename_305, const char * __restrict ____modes_306));// L272:L273 +extern __FILE_58 * ((__fopen_317) (const char * __restrict ____filename_315, const char * __restrict ____modes_316));// L283:L285 +extern __FILE_58 * ((__fopen_319) (const char * __restrict ____filename_315, const char * __restrict ____modes_316));// L283:L285 +extern __FILE_58 * ((__freopen_325) (const char * __restrict ____filename_311, const char * __restrict ____modes_312, __FILE_58 * __restrict ____stream_313));// L278:L280 +extern __FILE_58 * ((__freopen_331) (const char * __restrict ____filename_321, const char * __restrict ____modes_322, __FILE_58 * __restrict ____stream_323));// L286:L289 +extern __FILE_58 * ((__freopen_329) (const char * __restrict ____filename_321, const char * __restrict ____modes_322, __FILE_58 * __restrict ____stream_323));// L286:L289 +extern __FILE_58 * ((__freopen_327) (const char * __restrict ____filename_311, const char * __restrict ____modes_312, __FILE_58 * __restrict ____stream_313));// L278:L280 +extern __FILE_58 * ((__fdopen_335) (int ____fd_333, const char * (____modes_334)));// L306 +extern __FILE_58 * ((__fdopen_337) (int ____fd_333, const char * (____modes_334)));// L306 +extern __FILE_58 * ((__fmemopen_342) (void * (____s_339), __size_t_1 ____len_340, const char * (____modes_341)));// L319:L320 +extern __FILE_58 * ((__fmemopen_344) (void * (____s_339), __size_t_1 ____len_340, const char * (____modes_341)));// L319:L320 +extern __FILE_58 * ((__open_memstream_348) (char * (* (____bufloc_346)), __size_t_1 * (____sizeloc_347)));// L325 +extern __FILE_58 * ((__open_memstream_350) (char * (* (____bufloc_346)), __size_t_1 * (____sizeloc_347)));// L325 +extern void (__setbuf_355) (__FILE_58 * __restrict ____stream_352, char * __restrict ____buf_354);// L332 +extern void (__setbuf_357) (__FILE_58 * __restrict ____stream_352, char * __restrict ____buf_354);// L332 +extern int (__setvbuf_364) (__FILE_58 * __restrict ____stream_359, char * __restrict ____buf_361, int ____modes_362, __size_t_1 ____n_363);// L336:L337 +extern void (__setbuffer_369) (__FILE_58 * __restrict ____stream_365, char * __restrict ____buf_367, __size_t_1 ____size_368);// L343:L344 +extern void (__setlinebuf_373) (__FILE_58 * (____stream_371));// L347 +extern int (__fprintf_378) (__FILE_58 * __restrict ____stream_375, const char * __restrict ____format_377, ... );// L356:L357 +extern int (__fprintf_380) (__FILE_58 * __restrict ____stream_375, const char * __restrict ____format_377, ... );// L356:L357 +extern int (__printf_383) (const char * __restrict ____format_382, ... );// L362 +extern int (__sprintf_386) (char * __restrict ____s_384, const char * __restrict ____format_385, ... );// L364:L365 +extern int (__vfprintf_392) (__FILE_58 * __restrict ____s_387, const char * __restrict ____format_389, ____gnuc_va_list_82 ____arg_390);// L371:L372 +extern int (__vprintf_399) (const char * __restrict ____format_396, ____gnuc_va_list_82 ____arg_397);// L377 +extern int (__vsprintf_405) (char * __restrict ____s_401, const char * __restrict ____format_402, ____gnuc_va_list_82 ____arg_403);// L379:L380 +extern int (__snprintf_409) (char * __restrict ____s_406, __size_t_1 ____maxlen_407, const char * __restrict ____format_408, ... );// L386:L388 +extern int (__vsnprintf_415) (char * __restrict ____s_410, __size_t_1 ____maxlen_411, const char * __restrict ____format_412, ____gnuc_va_list_82 ____arg_413);// L390:L392 +extern int (__vdprintf_420) (int ____fd_416, const char * __restrict ____fmt_417, ____gnuc_va_list_82 ____arg_418);// L412:L414 +extern int (__dprintf_424) (int ____fd_422, const char * __restrict ____fmt_423, ... );// L415:L416 +extern int (__fscanf_428) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 +extern int (__fscanf_430) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 +extern int (__fscanf_432) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 +extern int (__fscanf_434) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 +extern int (__scanf_437) (const char * __restrict ____format_436, ... );// L431 +extern int (__scanf_438) (const char * __restrict ____format_436, ... );// L431 +extern int (__sscanf_441) (const char * __restrict ____s_439, const char * __restrict ____format_440, ... );// L433:L434 + + + + + + + +extern int (__vfscanf_468) (__FILE_58 * __restrict ____s_463, const char * __restrict ____format_465, ____gnuc_va_list_82 ____arg_466);// L471:L473 +extern int (__vfscanf_472) (__FILE_58 * __restrict ____s_463, const char * __restrict ____format_465, ____gnuc_va_list_82 ____arg_466);// L471:L473 +extern int (__vscanf_479) (const char * __restrict ____format_476, ____gnuc_va_list_82 ____arg_477);// L479:L480 +extern int (__vscanf_481) (const char * __restrict ____format_476, ____gnuc_va_list_82 ____arg_477);// L479:L480 +extern int (__vsscanf_487) (const char * __restrict ____s_483, const char * __restrict ____format_484, ____gnuc_va_list_82 ____arg_485);// L483:L485 + + + + + +extern int (__fgetc_520) (__FILE_58 * (____stream_518));// L531 +extern int (__getc_523) (__FILE_58 * (____stream_521));// L532 +extern int (__getchar_524) (void );// L538 +extern int (__getc_unlocked_527) (__FILE_58 * (____stream_525));// L550 +extern int (__getchar_unlocked_529) (void );// L551 +extern int (__fgetc_unlocked_532) (__FILE_58 * (____stream_530));// L561 +extern int (__fputc_537) (int ____c_534, __FILE_58 * (____stream_535));// L573 +extern int (__fputc_539) (int ____c_534, __FILE_58 * (____stream_535));// L573 +extern int (__putc_544) (int ____c_541, __FILE_58 * (____stream_542));// L574 +extern int (__putchar_546) (int ____c_545);// L580 +extern int (__fputc_unlocked_550) (int ____c_547, __FILE_58 * (____stream_548));// L594 +extern int (__putc_unlocked_555) (int ____c_552, __FILE_58 * (____stream_553));// L602 +extern int (__putchar_unlocked_558) (int ____c_557);// L603 +extern int (__getw_561) (__FILE_58 * (____stream_559));// L610 +extern int (__putw_566) (int ____w_563, __FILE_58 * (____stream_564));// L613 +extern char * ((__fgets_572) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 +extern char * ((__fgets_574) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 +extern char * ((__fgets_576) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 +extern char * ((__fgets_578) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 +extern ____ssize_t_49 (____getdelim_585) (char * (* __restrict ____lineptr_580), __size_t_1 * __restrict ____n_581, int ____delimiter_582, __FILE_58 * __restrict ____stream_583);// L665:L667 +extern ____ssize_t_49 (____getdelim_587) (char * (* __restrict ____lineptr_580), __size_t_1 * __restrict ____n_581, int ____delimiter_582, __FILE_58 * __restrict ____stream_583);// L665:L667 +extern ____ssize_t_49 (__getdelim_594) (char * (* __restrict ____lineptr_589), __size_t_1 * __restrict ____n_590, int ____delimiter_591, __FILE_58 * __restrict ____stream_592);// L668:L670 +extern ____ssize_t_49 (__getdelim_596) (char * (* __restrict ____lineptr_589), __size_t_1 * __restrict ____n_590, int ____delimiter_591, __FILE_58 * __restrict ____stream_592);// L668:L670 +extern ____ssize_t_49 (__getline_602) (char * (* __restrict ____lineptr_598), __size_t_1 * __restrict ____n_599, __FILE_58 * __restrict ____stream_600);// L678:L680 +extern ____ssize_t_49 (__getline_604) (char * (* __restrict ____lineptr_598), __size_t_1 * __restrict ____n_599, __FILE_58 * __restrict ____stream_600);// L678:L680 +extern int (__fputs_609) (const char * __restrict ____s_606, __FILE_58 * __restrict ____stream_607);// L689 +extern int (__fputs_611) (const char * __restrict ____s_606, __FILE_58 * __restrict ____stream_607);// L689 +extern int (__puts_614) (const char * (____s_613));// L695 +extern int (__ungetc_618) (int ____c_615, __FILE_58 * (____stream_616));// L702 +extern int (__fseek_654) (__FILE_58 * (____stream_650), long int ____off_652, int ____whence_653);// L749 +extern int (__fseek_656) (__FILE_58 * (____stream_650), long int ____off_652, int ____whence_653);// L749 +extern long int (__ftell_660) (__FILE_58 * (____stream_658));// L754 +extern long int (__ftell_662) (__FILE_58 * (____stream_658));// L754 +extern void (__rewind_666) (__FILE_58 * (____stream_664));// L759 +extern int (__fseeko_671) (__FILE_58 * (____stream_667), ____off_t_23 ____off_669, int ____whence_670);// L773 +extern int (__fseeko_679) (__FILE_58 * (____stream_675), ____off64_t_24 ____off_677, int ____whence_678);// L781:L783 +extern ____off_t_23 (__ftello_683) (__FILE_58 * (____stream_673));// L778 +extern ____off_t_23 (__ftello_685) (__FILE_58 * (____stream_673));// L778 +extern int (__fgetpos_693) (__FILE_58 * __restrict ____stream_689, __fpos_t_253 * __restrict ____pos_691);// L798 +extern ____off64_t_24 (__ftello_687) (__FILE_58 * (____stream_681));// L784 +extern int (__fgetpos_705) (__FILE_58 * __restrict ____stream_701, __fpos_t_255 * __restrict ____pos_703);// L806:L807 +extern int (__fsetpos_713) (__FILE_58 * (____stream_697), const __fpos_t_253 * (____pos_699));// L803 +extern int (__fsetpos_717) (__FILE_58 * (____stream_709), const __fpos_t_255 * (____pos_711));// L808:L809 +extern void (__clearerr_723) (__FILE_58 * (____stream_721));// L826 +extern int (__feof_726) (__FILE_58 * (____stream_724));// L828 +extern int (__feof_728) (__FILE_58 * (____stream_724));// L828 +extern int (__ferror_732) (__FILE_58 * (____stream_730));// L830 +extern int (__ferror_734) (__FILE_58 * (____stream_730));// L830 +extern void (__clearerr_unlocked_738) (__FILE_58 * (____stream_736));// L835 +extern int (__feof_unlocked_742) (__FILE_58 * (____stream_740));// L836 +extern int (__feof_unlocked_744) (__FILE_58 * (____stream_740));// L836 +extern int (__ferror_unlocked_748) (__FILE_58 * (____stream_746));// L837 +extern int (__ferror_unlocked_750) (__FILE_58 * (____stream_746));// L837 +extern void (__perror_753) (const char * (____s_752));// L846 +extern void (__perror_754) (const char * (____s_752));// L846 +extern int __sys_nerr_755;// L26 + +extern int (__fileno_761) (__FILE_58 * (____stream_757));// L858 +extern int (__fileno_759) (__FILE_58 * (____stream_757));// L858 +extern int (__fileno_unlocked_767) (__FILE_58 * (____stream_763));// L863 +extern int (__fileno_unlocked_765) (__FILE_58 * (____stream_763));// L863 +extern __FILE_58 * ((__popen_771) (const char * (____command_769), const char * (____modes_770)));// L872 +extern __FILE_58 * ((__popen_773) (const char * (____command_769), const char * (____modes_770)));// L872 +extern int (__pclose_777) (__FILE_58 * (____stream_775));// L878 +extern char * ((__ctermid_780) (char * (____s_779)));// L884 +extern void (__flockfile_783) (__FILE_58 * (____stream_781));// L912 +extern int (__ftrylockfile_787) (__FILE_58 * (____stream_785));// L916 +extern int (__ftrylockfile_789) (__FILE_58 * (____stream_785));// L916 +extern void (__funlockfile_793) (__FILE_58 * (____stream_791));// L919 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ @@ -2528,93 +1745,39 @@ extern void (__funlockfile_867) (__FILE_59 * (____stream_865));// L919 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____sprintf_chk_899) (char * __restrict ____s_895, int ____flag_896, __size_t_1 ____slen_897, const char * __restrict ____format_898, ... );// L23:L24 -extern int (____vsprintf_chk_906) (char * __restrict ____s_900, int ____flag_901, __size_t_1 ____slen_902, const char * __restrict ____format_903, ____gnuc_va_list_86 ____ap_904);// L25:L27 +extern int (____sprintf_chk_825) (char * __restrict ____s_821, int ____flag_822, __size_t_1 ____slen_823, const char * __restrict ____format_824, ... );// L23:L24 +extern int (____vsprintf_chk_832) (char * __restrict ____s_826, int ____flag_827, __size_t_1 ____slen_828, const char * __restrict ____format_829, ____gnuc_va_list_82 ____ap_830);// L25:L27 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____snprintf_chk_920) (char * __restrict ____s_915, __size_t_1 ____n_916, int ____flag_917, __size_t_1 ____slen_918, const char * __restrict ____format_919, ... );// L52:L54 -extern int (____vsnprintf_chk_928) (char * __restrict ____s_921, __size_t_1 ____n_922, int ____flag_923, __size_t_1 ____slen_924, const char * __restrict ____format_925, ____gnuc_va_list_86 ____ap_926);// L55:L57 +extern int (____snprintf_chk_846) (char * __restrict ____s_841, __size_t_1 ____n_842, int ____flag_843, __size_t_1 ____slen_844, const char * __restrict ____format_845, ... );// L52:L54 +extern int (____vsnprintf_chk_854) (char * __restrict ____s_847, __size_t_1 ____n_848, int ____flag_849, __size_t_1 ____slen_850, const char * __restrict ____format_851, ____gnuc_va_list_82 ____ap_852);// L55:L57 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____fprintf_chk_943) (__FILE_59 * __restrict ____stream_939, int ____flag_941, const char * __restrict ____format_942, ... );// L85:L86 -extern int (____printf_chk_947) (int ____flag_945, const char * __restrict ____format_946, ... );// L87 -extern int (____vfprintf_chk_954) (__FILE_59 * __restrict ____stream_948, int ____flag_950, const char * __restrict ____format_951, ____gnuc_va_list_86 ____ap_952);// L88:L89 -extern int (____vprintf_chk_962) (int ____flag_958, const char * __restrict ____format_959, ____gnuc_va_list_86 ____ap_960);// L90:L91 +extern int (____fprintf_chk_869) (__FILE_58 * __restrict ____stream_865, int ____flag_867, const char * __restrict ____format_868, ... );// L85:L86 +extern int (____printf_chk_873) (int ____flag_871, const char * __restrict ____format_872, ... );// L87 +extern int (____vfprintf_chk_880) (__FILE_58 * __restrict ____stream_874, int ____flag_876, const char * __restrict ____format_877, ____gnuc_va_list_82 ____ap_878);// L88:L89 +extern int (____vprintf_chk_888) (int ____flag_884, const char * __restrict ____format_885, ____gnuc_va_list_82 ____ap_886);// L90:L91 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____dprintf_chk_984) (int ____fd_981, int ____flag_982, const char * __restrict ____fmt_983, ... );// L131:L132 -extern int (____vdprintf_chk_990) (int ____fd_985, int ____flag_986, const char * __restrict ____fmt_987, ____gnuc_va_list_86 ____arg_988);// L133:L135 +extern int (____dprintf_chk_910) (int ____fd_907, int ____flag_908, const char * __restrict ____fmt_909, ... );// L131:L132 +extern int (____vdprintf_chk_916) (int ____fd_911, int ____flag_912, const char * __restrict ____fmt_913, ____gnuc_va_list_82 ____arg_914);// L133:L135 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern char * ((____fgets_chk_1004) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 -extern char * ((____fgets_chk_1006) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 -extern char * ((____fgets_chk_1008) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 -extern char * ((____fgets_alias_1014) (char * __restrict ____s_1010, int ____n_1011, __FILE_59 * __restrict ____stream_1012));// L243:L245 -extern char * ((____fgets_chk_warn_1021) (char * __restrict ____s_1016, __size_t_1 ____size_1017, int ____n_1018, __FILE_59 * __restrict ____stream_1019));// L246:L250 +extern char * ((____fgets_chk_930) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 +extern char * ((____fgets_chk_932) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 +extern char * ((____fgets_chk_934) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 +extern char * ((____fgets_alias_940) (char * __restrict ____s_936, int ____n_937, __FILE_58 * __restrict ____stream_938));// L243:L245 +extern char * ((____fgets_chk_warn_947) (char * __restrict ____s_942, __size_t_1 ____size_943, int ____n_944, __FILE_58 * __restrict ____stream_945));// L246:L250 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ // typedef moved to top of scope // typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -static __inline unsigned int (____bswap_32_1158) (unsigned int ____bsx_1157) { +static __inline unsigned int (____bswap_32_1026) (unsigned int ____bsx_1025) { -if (__static_condition_default_1159) { +if (__static_condition_default_1027) { { { @@ -2628,9 +1791,9 @@ __static_type_error("invalid type found in return expression"); } } -static __inline ____uint64_t_13 (____bswap_64_1162) (____uint64_t_13 ____bsx_1160) { +static __inline ____uint64_t_13 (____bswap_64_1029) (____uint64_t_13 ____bsx_1028) { -if (__static_condition_default_1164) { +if (__static_condition_default_1027) { { { @@ -2644,69 +1807,40 @@ __static_type_error("invalid type found in return expression"); } } -static __inline ____uint64_t_1112 (____bswap_64_1163) (____uint64_t_1112 ____bsx_1161) { - -if (__static_condition_default_1165) { - -{ -{ - - - -__static_type_error("invalid type found in return expression"); -} -} - - -} -} -union __wait_1177 ;// L66 +union __wait_1041 ;// L66 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern __size_t_1 (____ctype_get_mb_cur_max_1201) (void );// L139 -extern __size_t_1093 (____ctype_get_mb_cur_max_1202) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_1203) (void );// L139 -extern __size_t_1093 (____ctype_get_mb_cur_max_1204) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_1205) (void );// L139 -extern __size_t_1093 (____ctype_get_mb_cur_max_1206) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_1207) (void );// L139 -extern __size_t_1093 (____ctype_get_mb_cur_max_1208) (void );// L139 -extern double (__atof_1210) (const char * (____nptr_1209));// L144:L145 -extern double (__atof_1211) (const char * (____nptr_1209));// L144:L145 -extern int (__atoi_1213) (const char * (____nptr_1212));// L147:L148 -extern int (__atoi_1214) (const char * (____nptr_1212));// L147:L148 -extern long int (__atol_1216) (const char * (____nptr_1215));// L150:L151 -extern long int (__atol_1217) (const char * (____nptr_1215));// L150:L151 -extern long long int (__atoll_1219) (const char * (____nptr_1218));// L157:L158 -extern long long int (__atoll_1220) (const char * (____nptr_1218));// L157:L158 -extern double (__strtod_1223) (const char * __restrict ____nptr_1221, char * (* __restrict ____endptr_1222));// L164:L166 -extern float (__strtof_1226) (const char * __restrict ____nptr_1224, char * (* __restrict ____endptr_1225));// L172:L173 -extern long double (__strtold_1229) (const char * __restrict ____nptr_1227, char * (* __restrict ____endptr_1228));// L175:L177 -extern long int (__strtol_1233) (const char * __restrict ____nptr_1230, char * (* __restrict ____endptr_1231), int ____base_1232);// L183:L185 -extern unsigned long int (__strtoul_1237) (const char * __restrict ____nptr_1234, char * (* __restrict ____endptr_1235), int ____base_1236);// L187:L189 -extern long long int (__strtoq_1241) (const char * __restrict ____nptr_1238, char * (* __restrict ____endptr_1239), int ____base_1240);// L195:L197 -extern unsigned long long int (__strtouq_1245) (const char * __restrict ____nptr_1242, char * (* __restrict ____endptr_1243), int ____base_1244);// L200:L202 -extern long long int (__strtoll_1249) (const char * __restrict ____nptr_1246, char * (* __restrict ____endptr_1247), int ____base_1248);// L209:L211 -extern long long int (__strtoll_1250) (const char * __restrict ____nptr_1246, char * (* __restrict ____endptr_1247), int ____base_1248);// L209:L211 -extern unsigned long long int (__strtoull_1254) (const char * __restrict ____nptr_1251, char * (* __restrict ____endptr_1252), int ____base_1253);// L214:L216 +extern __size_t_1 (____ctype_get_mb_cur_max_1065) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_1066) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_1067) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_1068) (void );// L139 +extern double (__atof_1070) (const char * (____nptr_1069));// L144:L145 +extern double (__atof_1071) (const char * (____nptr_1069));// L144:L145 +extern int (__atoi_1073) (const char * (____nptr_1072));// L147:L148 +extern int (__atoi_1074) (const char * (____nptr_1072));// L147:L148 +extern long int (__atol_1076) (const char * (____nptr_1075));// L150:L151 +extern long int (__atol_1077) (const char * (____nptr_1075));// L150:L151 +extern long long int (__atoll_1079) (const char * (____nptr_1078));// L157:L158 +extern long long int (__atoll_1080) (const char * (____nptr_1078));// L157:L158 +extern double (__strtod_1083) (const char * __restrict ____nptr_1081, char * (* __restrict ____endptr_1082));// L164:L166 +extern float (__strtof_1086) (const char * __restrict ____nptr_1084, char * (* __restrict ____endptr_1085));// L172:L173 +extern long double (__strtold_1089) (const char * __restrict ____nptr_1087, char * (* __restrict ____endptr_1088));// L175:L177 +extern long int (__strtol_1093) (const char * __restrict ____nptr_1090, char * (* __restrict ____endptr_1091), int ____base_1092);// L183:L185 +extern unsigned long int (__strtoul_1097) (const char * __restrict ____nptr_1094, char * (* __restrict ____endptr_1095), int ____base_1096);// L187:L189 +extern long long int (__strtoq_1101) (const char * __restrict ____nptr_1098, char * (* __restrict ____endptr_1099), int ____base_1100);// L195:L197 +extern unsigned long long int (__strtouq_1105) (const char * __restrict ____nptr_1102, char * (* __restrict ____endptr_1103), int ____base_1104);// L200:L202 +extern long long int (__strtoll_1109) (const char * __restrict ____nptr_1106, char * (* __restrict ____endptr_1107), int ____base_1108);// L209:L211 +extern long long int (__strtoll_1110) (const char * __restrict ____nptr_1106, char * (* __restrict ____endptr_1107), int ____base_1108);// L209:L211 +extern unsigned long long int (__strtoull_1114) (const char * __restrict ____nptr_1111, char * (* __restrict ____endptr_1112), int ____base_1113);// L214:L216 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ __extension__/* no function due to type errors in the function prototype */ -extern char * ((__l64a_1259) (long int ____n_1258));// L305 -extern char * ((__l64a_1260) (long int ____n_1258));// L305 -extern long int (__a64l_1262) (const char * (____s_1261));// L308:L309 -extern long int (__a64l_1263) (const char * (____s_1261));// L308:L309 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope +extern char * ((__l64a_1119) (long int ____n_1118));// L305 +extern char * ((__l64a_1120) (long int ____n_1118));// L305 +extern long int (__a64l_1122) (const char * (____s_1121));// L308:L309 +extern long int (__a64l_1123) (const char * (____s_1121));// L308:L309 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope @@ -2748,133 +1882,9 @@ extern long int (__a64l_1263) (const char * (____s_1261));// L308:L309 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -static __inline unsigned int (____bswap_32_1452) (unsigned int ____bsx_1451) { - -if (__static_condition_default_1453) { +static __inline unsigned int (____bswap_32_1166) (unsigned int ____bsx_1165) { -{ -{ - - - -__static_type_error("invalid type found in return expression"); -} -} - - -} -} -static __inline ____uint64_t_13 (____bswap_64_1456) (____uint64_t_13 ____bsx_1454) { - -if (__static_condition_default_1458) { +if (__static_condition_default_1167) { { { @@ -2888,9 +1898,9 @@ __static_type_error("invalid type found in return expression"); } } -static __inline ____uint64_t_1275 (____bswap_64_1457) (____uint64_t_1275 ____bsx_1455) { +static __inline ____uint64_t_13 (____bswap_64_1169) (____uint64_t_13 ____bsx_1168) { -if (__static_condition_default_1459) { +if (__static_condition_default_1167) { { { @@ -2907,28 +1917,24 @@ __static_type_error("invalid type found in return expression"); // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __timespec_1466 ;// L120 - -struct __timeval_1476 ;// L30 - -// typedef moved to top of scope -// typedef moved to top of scope +struct __timespec_1176 ;// L120 +struct __timeval_1179 ;// L30 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern int (__select_1513) (int ____nfds_1502, __fd_set_1499 * __restrict ____readfds_1503, __fd_set_1499 * __restrict ____writefds_1505, __fd_set_1499 * __restrict ____exceptfds_1507, struct __timeval_1476 * __restrict ____timeout_1510);// L106:L109 -extern int (__select_1514) (int ____nfds_1502, __fd_set_1499 * __restrict ____readfds_1503, __fd_set_1499 * __restrict ____writefds_1505, __fd_set_1499 * __restrict ____exceptfds_1507, struct __forward_tag_reference_1509 * __restrict ____timeout_1512);// L106:L109 -extern int (__pselect_1529) (int ____nfds_1517, __fd_set_1499 * __restrict ____readfds_1518, __fd_set_1499 * __restrict ____writefds_1520, __fd_set_1499 * __restrict ____exceptfds_1522, const struct __timespec_1466 * __restrict ____timeout_1525, const ____sigset_t_1464 * __restrict ____sigmask_1528);// L118:L122 -extern int (__pselect_1530) (int ____nfds_1517, __fd_set_1499 * __restrict ____readfds_1518, __fd_set_1499 * __restrict ____writefds_1520, __fd_set_1499 * __restrict ____exceptfds_1522, const struct __forward_tag_reference_1524 * __restrict ____timeout_1527, const ____sigset_t_1464 * __restrict ____sigmask_1528);// L118:L122 -extern long int (____fdelt_chk_1534) (long int ____d_1533);// L24 -extern long int (____fdelt_warn_1536) (long int ____d_1535);// L25:L26 -extern unsigned int (__gnu_dev_major_1538) (unsigned long long int ____dev_1537);// L27:L28 -extern unsigned int (__gnu_dev_major_1539) (unsigned long long int ____dev_1537);// L27:L28 -extern unsigned int (__gnu_dev_minor_1541) (unsigned long long int ____dev_1540);// L30:L31 -extern unsigned long long int (__gnu_dev_makedev_1544) (unsigned int ____major_1542, unsigned int ____minor_1543);// L33:L35 +extern int (__select_1199) (int ____nfds_1192, __fd_set_1189 * __restrict ____readfds_1193, __fd_set_1189 * __restrict ____writefds_1194, __fd_set_1189 * __restrict ____exceptfds_1195, struct __timeval_1179 * __restrict ____timeout_1197);// L106:L109 +extern int (__select_1200) (int ____nfds_1192, __fd_set_1189 * __restrict ____readfds_1193, __fd_set_1189 * __restrict ____writefds_1194, __fd_set_1189 * __restrict ____exceptfds_1195, struct __forward_tag_reference_1196 * __restrict ____timeout_1198);// L106:L109 +extern int (__pselect_1209) (int ____nfds_1201, __fd_set_1189 * __restrict ____readfds_1202, __fd_set_1189 * __restrict ____writefds_1203, __fd_set_1189 * __restrict ____exceptfds_1204, const struct __timespec_1176 * __restrict ____timeout_1206, const ____sigset_t_1174 * __restrict ____sigmask_1208);// L118:L122 +extern int (__pselect_1210) (int ____nfds_1201, __fd_set_1189 * __restrict ____readfds_1202, __fd_set_1189 * __restrict ____writefds_1203, __fd_set_1189 * __restrict ____exceptfds_1204, const struct __forward_tag_reference_1205 * __restrict ____timeout_1207, const ____sigset_t_1174 * __restrict ____sigmask_1208);// L118:L122 +extern long int (____fdelt_chk_1212) (long int ____d_1211);// L24 +extern long int (____fdelt_warn_1214) (long int ____d_1213);// L25:L26 +extern unsigned int (__gnu_dev_major_1216) (unsigned long long int ____dev_1215);// L27:L28 +extern unsigned int (__gnu_dev_major_1217) (unsigned long long int ____dev_1215);// L27:L28 +extern unsigned int (__gnu_dev_minor_1219) (unsigned long long int ____dev_1218);// L30:L31 +extern unsigned long long int (__gnu_dev_makedev_1222) (unsigned int ____major_1220, unsigned int ____minor_1221);// L33:L35 __extension__/* no function due to type errors in the function prototype */ __extension__/* no function due to type errors in the function prototype */ __extension__/* no function due to type errors in the function prototype */ @@ -2940,292 +1946,190 @@ __extension__/* no function due to type errors in the function prototype */ // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -union __pthread_attr_t_1578 ;// L63 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern int (__rand_1609) (void );// L374 -extern void (__srand_1611) (unsigned int ____seed_1610);// L376 -extern int (__rand_r_1613) (unsigned int * (____seed_1612));// L381 -extern double (__drand48_1614) (void );// L389 -extern double (__erand48_1616) (unsigned short int ____xsubi_1615[3]);// L390 -extern long int (__lrand48_1617) (void );// L393 -extern long int (__nrand48_1619) (unsigned short int ____xsubi_1618[3]);// L394:L395 -extern long int (__mrand48_1620) (void );// L398 -extern long int (__jrand48_1622) (unsigned short int ____xsubi_1621[3]);// L399:L400 -extern void (__srand48_1624) (long int ____seedval_1623);// L403 -extern unsigned short int * ((__seed48_1626) (unsigned short int ____seed16v_1625[3]));// L404:L405 -extern void (__lcong48_1628) (unsigned short int ____param_1627[7]);// L406 -extern void * ((__malloc_1631) (__size_t_1 ____size_1629));// L466 -extern void * ((__malloc_1632) (__size_t_1093 ____size_1630));// L466 -extern void * ((__malloc_1633) (__size_t_1 ____size_1629));// L466 -extern void * ((__malloc_1634) (__size_t_1093 ____size_1630));// L466 -extern void * ((__calloc_1639) (__size_t_1 ____nmemb_1635, __size_t_1 ____size_1637));// L468:L469 -extern void * ((__calloc_1640) (__size_t_1093 ____nmemb_1636, __size_t_1093 ____size_1638));// L468:L469 -extern void * ((__calloc_1641) (__size_t_1 ____nmemb_1635, __size_t_1 ____size_1637));// L468:L469 -extern void * ((__calloc_1642) (__size_t_1093 ____nmemb_1636, __size_t_1093 ____size_1638));// L468:L469 -extern void * ((__realloc_1646) (void * (____ptr_1643), __size_t_1 ____size_1644));// L480:L481 -extern void * ((__realloc_1647) (void * (____ptr_1643), __size_t_1093 ____size_1645));// L480:L481 -extern void (__free_1649) (void * (____ptr_1648));// L483 -extern void (__cfree_1651) (void * (____ptr_1650));// L488 -extern void * ((__alloca_1654) (__size_t_1 ____size_1652));// L32 -extern void * ((__alloca_1655) (__size_t_1093 ____size_1653));// L32 -extern void * ((__valloc_1658) (__size_t_1 ____size_1656));// L498 -extern void * ((__valloc_1659) (__size_t_1093 ____size_1657));// L498 -extern void * ((__valloc_1660) (__size_t_1 ____size_1656));// L498 -extern void * ((__valloc_1661) (__size_t_1093 ____size_1657));// L498 -extern int (__posix_memalign_1667) (void * (* (____memptr_1662)), __size_t_1 ____alignment_1663, __size_t_1 ____size_1665);// L503:L504 -extern int (__posix_memalign_1668) (void * (* (____memptr_1662)), __size_t_1093 ____alignment_1664, __size_t_1093 ____size_1666);// L503:L504 -extern int (__posix_memalign_1669) (void * (* (____memptr_1662)), __size_t_1 ____alignment_1663, __size_t_1 ____size_1665);// L503:L504 -extern int (__posix_memalign_1670) (void * (* (____memptr_1662)), __size_t_1093 ____alignment_1664, __size_t_1093 ____size_1666);// L503:L504 -extern void * ((__aligned_alloc_1675) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 -extern void * ((__aligned_alloc_1676) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 -extern void * ((__aligned_alloc_1677) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 -extern void * ((__aligned_alloc_1678) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 -extern void * ((__aligned_alloc_1679) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 -extern void * ((__aligned_alloc_1680) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 -extern void * ((__aligned_alloc_1681) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 -extern void * ((__aligned_alloc_1682) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 -extern void (__abort_1683) (void );// L515 -extern int (__atexit_1685) (void (* (____func_1684)) (void ));// L519 -extern int (__at_quick_exit_1687) (void (* (____func_1686)) (void ));// L527 -extern int (__on_exit_1692) (void (* (____func_1690)) (int ____status_1688, void * (____arg_1689)), void * (____arg_1691));// L535:L536 -extern void (__exit_1694) (int ____status_1693);// L543 -extern void (__exit_1695) (int ____status_1693);// L543 -extern void (__quick_exit_1697) (int ____status_1696);// L549 -extern void (___Exit_1699) (int ____status_1698);// L557 -extern char * ((__getenv_1701) (const char * (____name_1700)));// L564 -extern char * ((__getenv_1702) (const char * (____name_1700)));// L564 -extern int (__putenv_1704) (char * (____string_1703));// L578 -extern int (__setenv_1708) (const char * (____name_1705), const char * (____value_1706), int ____replace_1707);// L584:L585 -extern int (__unsetenv_1710) (const char * (____name_1709));// L588 -extern int (__clearenv_1711) (void );// L595 -extern char * ((__mktemp_1713) (char * (____template_1712)));// L606 -extern int (__mkstemp_1716) (char * (____template_1714));// L619 -extern int (__mkstemp_1718) (char * (____template_1714));// L619 -extern int (__mkstemp_1717) (char * (____template_1715));// L622:L623 -extern int (__mkstemp_1719) (char * (____template_1715));// L622:L623 -extern int (__mkstemps_1724) (char * (____template_1720), int ____suffixlen_1721);// L641 -extern int (__mkstemps_1725) (char * (____template_1722), int ____suffixlen_1723);// L644:L645 -extern int (__mkstemps_1726) (char * (____template_1720), int ____suffixlen_1721);// L641 -extern int (__mkstemps_1727) (char * (____template_1722), int ____suffixlen_1723);// L644:L645 -extern char * ((__mkdtemp_1729) (char * (____template_1728)));// L662 -extern char * ((__mkdtemp_1730) (char * (____template_1728)));// L662 -extern int (__system_1732) (const char * (____command_1731));// L716 -extern int (__system_1733) (const char * (____command_1731));// L716 -extern int (__system_1734) (const char * (____command_1731));// L716 -extern int (__system_1735) (const char * (____command_1731));// L716 -extern char * ((__realpath_1738) (const char * __restrict ____name_1736, char * __restrict ____resolved_1737));// L733:L734 -extern char * ((__realpath_1739) (const char * __restrict ____name_1736, char * __restrict ____resolved_1737));// L733:L734 -// typedef moved to top of scope -extern void * ((__bsearch_1751) (const void * (____key_1741), const void * (____base_1742), __size_t_1 ____nmemb_1743, __size_t_1 ____size_1745, ____compar_fn_t_1740 ____compar_1747));// L754:L756 -extern void * ((__bsearch_1752) (const void * (____key_1741), const void * (____base_1742), __size_t_1093 ____nmemb_1744, __size_t_1093 ____size_1746, ____compar_fn_t_1740 ____compar_1747));// L754:L756 -extern void * ((__bsearch_1755) (const void * (____key_1741), const void * (____base_1742), __size_t_1 ____nmemb_1743, __size_t_1 ____size_1745, ____compar_fn_t_1740 ____compar_1747));// L754:L756 -extern void * ((__bsearch_1756) (const void * (____key_1741), const void * (____base_1742), __size_t_1093 ____nmemb_1744, __size_t_1093 ____size_1746, ____compar_fn_t_1740 ____compar_1747));// L754:L756 +union __pthread_attr_t_1235 ;// L63 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern int (__rand_1266) (void );// L374 +extern void (__srand_1268) (unsigned int ____seed_1267);// L376 +extern int (__rand_r_1270) (unsigned int * (____seed_1269));// L381 +extern double (__drand48_1271) (void );// L389 +extern double (__erand48_1273) (unsigned short int ____xsubi_1272[3]);// L390 +extern long int (__lrand48_1274) (void );// L393 +extern long int (__nrand48_1276) (unsigned short int ____xsubi_1275[3]);// L394:L395 +extern long int (__mrand48_1277) (void );// L398 +extern long int (__jrand48_1279) (unsigned short int ____xsubi_1278[3]);// L399:L400 +extern void (__srand48_1281) (long int ____seedval_1280);// L403 +extern unsigned short int * ((__seed48_1283) (unsigned short int ____seed16v_1282[3]));// L404:L405 +extern void (__lcong48_1285) (unsigned short int ____param_1284[7]);// L406 +extern void * ((__malloc_1287) (__size_t_1 ____size_1286));// L466 +extern void * ((__malloc_1288) (__size_t_1 ____size_1286));// L466 +extern void * ((__malloc_1289) (__size_t_1 ____size_1286));// L466 +extern void * ((__malloc_1290) (__size_t_1 ____size_1286));// L466 +extern void * ((__calloc_1293) (__size_t_1 ____nmemb_1291, __size_t_1 ____size_1292));// L468:L469 +extern void * ((__calloc_1294) (__size_t_1 ____nmemb_1291, __size_t_1 ____size_1292));// L468:L469 +extern void * ((__realloc_1297) (void * (____ptr_1295), __size_t_1 ____size_1296));// L480:L481 +extern void (__free_1299) (void * (____ptr_1298));// L483 +extern void (__cfree_1301) (void * (____ptr_1300));// L488 +extern void * ((__alloca_1303) (__size_t_1 ____size_1302));// L32 +extern void * ((__valloc_1305) (__size_t_1 ____size_1304));// L498 +extern void * ((__valloc_1306) (__size_t_1 ____size_1304));// L498 +extern int (__posix_memalign_1310) (void * (* (____memptr_1307)), __size_t_1 ____alignment_1308, __size_t_1 ____size_1309);// L503:L504 +extern int (__posix_memalign_1311) (void * (* (____memptr_1307)), __size_t_1 ____alignment_1308, __size_t_1 ____size_1309);// L503:L504 +extern void * ((__aligned_alloc_1314) (__size_t_1 ____alignment_1312, __size_t_1 ____size_1313));// L509:L510 +extern void * ((__aligned_alloc_1315) (__size_t_1 ____alignment_1312, __size_t_1 ____size_1313));// L509:L510 +extern void * ((__aligned_alloc_1316) (__size_t_1 ____alignment_1312, __size_t_1 ____size_1313));// L509:L510 +extern void * ((__aligned_alloc_1317) (__size_t_1 ____alignment_1312, __size_t_1 ____size_1313));// L509:L510 +extern void (__abort_1318) (void );// L515 +extern int (__atexit_1320) (void (* (____func_1319)) (void ));// L519 +extern int (__at_quick_exit_1322) (void (* (____func_1321)) (void ));// L527 +extern int (__on_exit_1327) (void (* (____func_1325)) (int ____status_1323, void * (____arg_1324)), void * (____arg_1326));// L535:L536 +extern void (__exit_1329) (int ____status_1328);// L543 +extern void (__exit_1330) (int ____status_1328);// L543 +extern void (__quick_exit_1332) (int ____status_1331);// L549 +extern void (___Exit_1334) (int ____status_1333);// L557 +extern char * ((__getenv_1336) (const char * (____name_1335)));// L564 +extern char * ((__getenv_1337) (const char * (____name_1335)));// L564 +extern int (__putenv_1339) (char * (____string_1338));// L578 +extern int (__setenv_1343) (const char * (____name_1340), const char * (____value_1341), int ____replace_1342);// L584:L585 +extern int (__unsetenv_1345) (const char * (____name_1344));// L588 +extern int (__clearenv_1346) (void );// L595 +extern char * ((__mktemp_1348) (char * (____template_1347)));// L606 +extern int (__mkstemp_1351) (char * (____template_1349));// L619 +extern int (__mkstemp_1353) (char * (____template_1349));// L619 +extern int (__mkstemp_1352) (char * (____template_1350));// L622:L623 +extern int (__mkstemp_1354) (char * (____template_1350));// L622:L623 +extern int (__mkstemps_1359) (char * (____template_1355), int ____suffixlen_1356);// L641 +extern int (__mkstemps_1360) (char * (____template_1357), int ____suffixlen_1358);// L644:L645 +extern int (__mkstemps_1361) (char * (____template_1355), int ____suffixlen_1356);// L641 +extern int (__mkstemps_1362) (char * (____template_1357), int ____suffixlen_1358);// L644:L645 +extern char * ((__mkdtemp_1364) (char * (____template_1363)));// L662 +extern char * ((__mkdtemp_1365) (char * (____template_1363)));// L662 +extern int (__system_1367) (const char * (____command_1366));// L716 +extern int (__system_1368) (const char * (____command_1366));// L716 +extern int (__system_1369) (const char * (____command_1366));// L716 +extern int (__system_1370) (const char * (____command_1366));// L716 +extern char * ((__realpath_1373) (const char * __restrict ____name_1371, char * __restrict ____resolved_1372));// L733:L734 +extern char * ((__realpath_1374) (const char * __restrict ____name_1371, char * __restrict ____resolved_1372));// L733:L734 +// typedef moved to top of scope +extern void * ((__bsearch_1383) (const void * (____key_1376), const void * (____base_1377), __size_t_1 ____nmemb_1378, __size_t_1 ____size_1379, ____compar_fn_t_1375 ____compar_1380));// L754:L756 +extern void * ((__bsearch_1385) (const void * (____key_1376), const void * (____base_1377), __size_t_1 ____nmemb_1378, __size_t_1 ____size_1379, ____compar_fn_t_1375 ____compar_1380));// L754:L756 /* no function due to type errors in the function prototype */ -extern void (__qsort_1784) (void * (____base_1777), __size_t_1 ____nmemb_1778, __size_t_1 ____size_1780, ____compar_fn_t_1740 ____compar_1782);// L764:L765 -extern void (__qsort_1786) (void * (____base_1777), __size_t_1093 ____nmemb_1779, __size_t_1093 ____size_1781, ____compar_fn_t_1740 ____compar_1782);// L764:L765 -extern void (__qsort_1788) (void * (____base_1777), __size_t_1 ____nmemb_1778, __size_t_1 ____size_1780, ____compar_fn_t_1740 ____compar_1782);// L764:L765 -extern void (__qsort_1790) (void * (____base_1777), __size_t_1093 ____nmemb_1779, __size_t_1093 ____size_1781, ____compar_fn_t_1740 ____compar_1782);// L764:L765 -extern int (__abs_1793) (int ____x_1792);// L774 -extern int (__abs_1794) (int ____x_1792);// L774 -extern long int (__labs_1796) (long int ____x_1795);// L775 -extern long int (__labs_1797) (long int ____x_1795);// L775 -extern long long int (__llabs_1799) (long long int ____x_1798);// L779:L780 -extern long long int (__llabs_1800) (long long int ____x_1798);// L779:L780 -extern __div_t_1190 (__div_1803) (int ____numer_1801, int ____denom_1802);// L788:L789 -extern __div_t_1190 (__div_1804) (int ____numer_1801, int ____denom_1802);// L788:L789 -extern __ldiv_t_1195 (__ldiv_1807) (long int ____numer_1805, long int ____denom_1806);// L790:L791 -extern __ldiv_t_1195 (__ldiv_1809) (long int ____numer_1805, long int ____denom_1806);// L790:L791 -extern __lldiv_t_1200 (__lldiv_1813) (long long int ____numer_1811, long long int ____denom_1812);// L796:L798 -extern __lldiv_t_1200 (__lldiv_1815) (long long int ____numer_1811, long long int ____denom_1812);// L796:L798 -extern char * ((__ecvt_1821) (double ____value_1817, int ____ndigit_1818, int * __restrict ____decpt_1819, int * __restrict ____sign_1820));// L811:L812 -extern char * ((__ecvt_1822) (double ____value_1817, int ____ndigit_1818, int * __restrict ____decpt_1819, int * __restrict ____sign_1820));// L811:L812 -extern char * ((__fcvt_1827) (double ____value_1823, int ____ndigit_1824, int * __restrict ____decpt_1825, int * __restrict ____sign_1826));// L817:L818 -extern char * ((__fcvt_1828) (double ____value_1823, int ____ndigit_1824, int * __restrict ____decpt_1825, int * __restrict ____sign_1826));// L817:L818 -extern char * ((__gcvt_1832) (double ____value_1829, int ____ndigit_1830, char * (____buf_1831)));// L823:L824 -extern char * ((__gcvt_1833) (double ____value_1829, int ____ndigit_1830, char * (____buf_1831)));// L823:L824 -extern char * ((__qecvt_1838) (long double ____value_1834, int ____ndigit_1835, int * __restrict ____decpt_1836, int * __restrict ____sign_1837));// L829:L831 -extern char * ((__qecvt_1839) (long double ____value_1834, int ____ndigit_1835, int * __restrict ____decpt_1836, int * __restrict ____sign_1837));// L829:L831 -extern char * ((__qfcvt_1844) (long double ____value_1840, int ____ndigit_1841, int * __restrict ____decpt_1842, int * __restrict ____sign_1843));// L832:L834 -extern char * ((__qfcvt_1845) (long double ____value_1840, int ____ndigit_1841, int * __restrict ____decpt_1842, int * __restrict ____sign_1843));// L832:L834 -extern char * ((__qgcvt_1849) (long double ____value_1846, int ____ndigit_1847, char * (____buf_1848)));// L835:L836 -extern char * ((__qgcvt_1850) (long double ____value_1846, int ____ndigit_1847, char * (____buf_1848)));// L835:L836 -extern int (__ecvt_r_1858) (double ____value_1851, int ____ndigit_1852, int * __restrict ____decpt_1853, int * __restrict ____sign_1854, char * __restrict ____buf_1855, __size_t_1 ____len_1856);// L841:L843 -extern int (__ecvt_r_1859) (double ____value_1851, int ____ndigit_1852, int * __restrict ____decpt_1853, int * __restrict ____sign_1854, char * __restrict ____buf_1855, __size_t_1093 ____len_1857);// L841:L843 -extern int (__fcvt_r_1867) (double ____value_1860, int ____ndigit_1861, int * __restrict ____decpt_1862, int * __restrict ____sign_1863, char * __restrict ____buf_1864, __size_t_1 ____len_1865);// L844:L846 -extern int (__fcvt_r_1868) (double ____value_1860, int ____ndigit_1861, int * __restrict ____decpt_1862, int * __restrict ____sign_1863, char * __restrict ____buf_1864, __size_t_1093 ____len_1866);// L844:L846 -extern int (__qecvt_r_1876) (long double ____value_1869, int ____ndigit_1870, int * __restrict ____decpt_1871, int * __restrict ____sign_1872, char * __restrict ____buf_1873, __size_t_1 ____len_1874);// L848:L851 -extern int (__qecvt_r_1877) (long double ____value_1869, int ____ndigit_1870, int * __restrict ____decpt_1871, int * __restrict ____sign_1872, char * __restrict ____buf_1873, __size_t_1093 ____len_1875);// L848:L851 -extern int (__qfcvt_r_1885) (long double ____value_1878, int ____ndigit_1879, int * __restrict ____decpt_1880, int * __restrict ____sign_1881, char * __restrict ____buf_1882, __size_t_1 ____len_1883);// L852:L855 -extern int (__qfcvt_r_1886) (long double ____value_1878, int ____ndigit_1879, int * __restrict ____decpt_1880, int * __restrict ____sign_1881, char * __restrict ____buf_1882, __size_t_1093 ____len_1884);// L852:L855 -extern int (__mblen_1890) (const char * (____s_1887), __size_t_1 ____n_1888);// L862 -extern int (__mblen_1891) (const char * (____s_1887), __size_t_1093 ____n_1889);// L862 -extern int (__mblen_1892) (const char * (____s_1887), __size_t_1 ____n_1888);// L862 -extern int (__mblen_1893) (const char * (____s_1887), __size_t_1093 ____n_1889);// L862 -extern int (__mbtowc_1898) (__wchar_t_1094 * __restrict ____pwc_1894, const char * __restrict ____s_1895, __size_t_1 ____n_1896);// L865:L866 -extern int (__mbtowc_1899) (__wchar_t_1094 * __restrict ____pwc_1894, const char * __restrict ____s_1895, __size_t_1093 ____n_1897);// L865:L866 -extern int (__wctomb_1902) (char * (____s_1900), __wchar_t_1094 ____wchar_1901);// L869 -extern __size_t_1 (__mbstowcs_1907) (__wchar_t_1094 * __restrict ____pwcs_1903, const char * __restrict ____s_1904, __size_t_1 ____n_1905);// L873:L874 -extern __size_t_1093 (__mbstowcs_1908) (__wchar_t_1094 * __restrict ____pwcs_1903, const char * __restrict ____s_1904, __size_t_1093 ____n_1906);// L873:L874 -extern __size_t_1 (__wcstombs_1913) (char * __restrict ____s_1909, const __wchar_t_1094 * __restrict ____pwcs_1910, __size_t_1 ____n_1911);// L876:L878 -extern __size_t_1093 (__wcstombs_1914) (char * __restrict ____s_1909, const __wchar_t_1094 * __restrict ____pwcs_1910, __size_t_1093 ____n_1912);// L876:L878 -extern int (__rpmatch_1917) (const char * (____response_1915));// L887 -extern int (__rpmatch_1916) (const char * (____response_1915));// L887 -extern int (__getsubopt_1922) (char * (* __restrict ____optionp_1918), char * const * __restrict ____tokens_1919, char * (* __restrict ____valuep_1920));// L898:L901 -extern int (__getsubopt_1921) (char * (* __restrict ____optionp_1918), char * const * __restrict ____tokens_1919, char * (* __restrict ____valuep_1920));// L898:L901 -extern int (__getloadavg_1925) (double ____loadavg_1923[], int ____nelem_1924);// L950:L951 +extern void (__qsort_1404) (void * (____base_1399), __size_t_1 ____nmemb_1400, __size_t_1 ____size_1401, ____compar_fn_t_1375 ____compar_1402);// L764:L765 +extern void (__qsort_1406) (void * (____base_1399), __size_t_1 ____nmemb_1400, __size_t_1 ____size_1401, ____compar_fn_t_1375 ____compar_1402);// L764:L765 +extern int (__abs_1409) (int ____x_1408);// L774 +extern int (__abs_1410) (int ____x_1408);// L774 +extern long int (__labs_1412) (long int ____x_1411);// L775 +extern long int (__labs_1413) (long int ____x_1411);// L775 +extern long long int (__llabs_1415) (long long int ____x_1414);// L779:L780 +extern long long int (__llabs_1416) (long long int ____x_1414);// L779:L780 +extern __div_t_1054 (__div_1419) (int ____numer_1417, int ____denom_1418);// L788:L789 +extern __div_t_1054 (__div_1420) (int ____numer_1417, int ____denom_1418);// L788:L789 +extern __ldiv_t_1059 (__ldiv_1423) (long int ____numer_1421, long int ____denom_1422);// L790:L791 +extern __ldiv_t_1059 (__ldiv_1425) (long int ____numer_1421, long int ____denom_1422);// L790:L791 +extern __lldiv_t_1064 (__lldiv_1429) (long long int ____numer_1427, long long int ____denom_1428);// L796:L798 +extern __lldiv_t_1064 (__lldiv_1431) (long long int ____numer_1427, long long int ____denom_1428);// L796:L798 +extern char * ((__ecvt_1437) (double ____value_1433, int ____ndigit_1434, int * __restrict ____decpt_1435, int * __restrict ____sign_1436));// L811:L812 +extern char * ((__ecvt_1438) (double ____value_1433, int ____ndigit_1434, int * __restrict ____decpt_1435, int * __restrict ____sign_1436));// L811:L812 +extern char * ((__fcvt_1443) (double ____value_1439, int ____ndigit_1440, int * __restrict ____decpt_1441, int * __restrict ____sign_1442));// L817:L818 +extern char * ((__fcvt_1444) (double ____value_1439, int ____ndigit_1440, int * __restrict ____decpt_1441, int * __restrict ____sign_1442));// L817:L818 +extern char * ((__gcvt_1448) (double ____value_1445, int ____ndigit_1446, char * (____buf_1447)));// L823:L824 +extern char * ((__gcvt_1449) (double ____value_1445, int ____ndigit_1446, char * (____buf_1447)));// L823:L824 +extern char * ((__qecvt_1454) (long double ____value_1450, int ____ndigit_1451, int * __restrict ____decpt_1452, int * __restrict ____sign_1453));// L829:L831 +extern char * ((__qecvt_1455) (long double ____value_1450, int ____ndigit_1451, int * __restrict ____decpt_1452, int * __restrict ____sign_1453));// L829:L831 +extern char * ((__qfcvt_1460) (long double ____value_1456, int ____ndigit_1457, int * __restrict ____decpt_1458, int * __restrict ____sign_1459));// L832:L834 +extern char * ((__qfcvt_1461) (long double ____value_1456, int ____ndigit_1457, int * __restrict ____decpt_1458, int * __restrict ____sign_1459));// L832:L834 +extern char * ((__qgcvt_1465) (long double ____value_1462, int ____ndigit_1463, char * (____buf_1464)));// L835:L836 +extern char * ((__qgcvt_1466) (long double ____value_1462, int ____ndigit_1463, char * (____buf_1464)));// L835:L836 +extern int (__ecvt_r_1473) (double ____value_1467, int ____ndigit_1468, int * __restrict ____decpt_1469, int * __restrict ____sign_1470, char * __restrict ____buf_1471, __size_t_1 ____len_1472);// L841:L843 +extern int (__fcvt_r_1480) (double ____value_1474, int ____ndigit_1475, int * __restrict ____decpt_1476, int * __restrict ____sign_1477, char * __restrict ____buf_1478, __size_t_1 ____len_1479);// L844:L846 +extern int (__qecvt_r_1487) (long double ____value_1481, int ____ndigit_1482, int * __restrict ____decpt_1483, int * __restrict ____sign_1484, char * __restrict ____buf_1485, __size_t_1 ____len_1486);// L848:L851 +extern int (__qfcvt_r_1494) (long double ____value_1488, int ____ndigit_1489, int * __restrict ____decpt_1490, int * __restrict ____sign_1491, char * __restrict ____buf_1492, __size_t_1 ____len_1493);// L852:L855 +extern int (__mblen_1497) (const char * (____s_1495), __size_t_1 ____n_1496);// L862 +extern int (__mblen_1498) (const char * (____s_1495), __size_t_1 ____n_1496);// L862 +extern int (__mbtowc_1502) (__wchar_t_1018 * __restrict ____pwc_1499, const char * __restrict ____s_1500, __size_t_1 ____n_1501);// L865:L866 +extern int (__wctomb_1505) (char * (____s_1503), __wchar_t_1018 ____wchar_1504);// L869 +extern __size_t_1 (__mbstowcs_1509) (__wchar_t_1018 * __restrict ____pwcs_1506, const char * __restrict ____s_1507, __size_t_1 ____n_1508);// L873:L874 +extern __size_t_1 (__wcstombs_1513) (char * __restrict ____s_1510, const __wchar_t_1018 * __restrict ____pwcs_1511, __size_t_1 ____n_1512);// L876:L878 +extern int (__rpmatch_1516) (const char * (____response_1514));// L887 +extern int (__rpmatch_1515) (const char * (____response_1514));// L887 +extern int (__getsubopt_1521) (char * (* __restrict ____optionp_1517), char * const * __restrict ____tokens_1518, char * (* __restrict ____valuep_1519));// L898:L901 +extern int (__getsubopt_1520) (char * (* __restrict ____optionp_1517), char * const * __restrict ____tokens_1518, char * (* __restrict ____valuep_1519));// L898:L901 +extern int (__getloadavg_1524) (double ____loadavg_1522[], int ____nelem_1523);// L950:L951 /* no function due to type errors in the function prototype */ -extern char * ((____realpath_chk_1931) (const char * __restrict ____name_1927, char * __restrict ____resolved_1928, __size_t_1 ____resolvedlen_1929));// L23:L25 -extern char * ((____realpath_chk_1932) (const char * __restrict ____name_1927, char * __restrict ____resolved_1928, __size_t_1093 ____resolvedlen_1930));// L23:L25 -extern char * ((____realpath_alias_1935) (const char * __restrict ____name_1933, char * __restrict ____resolved_1934));// L26:L28 -extern char * ((____realpath_chk_warn_1940) (const char * __restrict ____name_1936, char * __restrict ____resolved_1937, __size_t_1 ____resolvedlen_1938));// L29:L34 -extern char * ((____realpath_chk_warn_1941) (const char * __restrict ____name_1936, char * __restrict ____resolved_1937, __size_t_1093 ____resolvedlen_1939));// L29:L34 +extern char * ((____realpath_chk_1529) (const char * __restrict ____name_1526, char * __restrict ____resolved_1527, __size_t_1 ____resolvedlen_1528));// L23:L25 +extern char * ((____realpath_alias_1532) (const char * __restrict ____name_1530, char * __restrict ____resolved_1531));// L26:L28 +extern char * ((____realpath_chk_warn_1536) (const char * __restrict ____name_1533, char * __restrict ____resolved_1534, __size_t_1 ____resolvedlen_1535));// L29:L34 /* no function due to type errors in the function prototype */ -extern int (____ptsname_r_chk_1951) (int ____fd_1945, char * (____buf_1946), __size_t_1 ____buflen_1947, __size_t_1 ____nreal_1949);// L52:L53 -extern int (____ptsname_r_chk_1952) (int ____fd_1945, char * (____buf_1946), __size_t_1093 ____buflen_1948, __size_t_1093 ____nreal_1950);// L52:L53 -extern int (____ptsname_r_alias_1957) (int ____fd_1953, char * (____buf_1954), __size_t_1 ____buflen_1955);// L54:L56 -extern int (____ptsname_r_alias_1958) (int ____fd_1953, char * (____buf_1954), __size_t_1093 ____buflen_1956);// L54:L56 -extern int (____ptsname_r_chk_warn_1965) (int ____fd_1959, char * (____buf_1960), __size_t_1 ____buflen_1961, __size_t_1 ____nreal_1963);// L57:L61 -extern int (____ptsname_r_chk_warn_1966) (int ____fd_1959, char * (____buf_1960), __size_t_1093 ____buflen_1962, __size_t_1093 ____nreal_1964);// L57:L61 +extern int (____ptsname_r_chk_1544) (int ____fd_1540, char * (____buf_1541), __size_t_1 ____buflen_1542, __size_t_1 ____nreal_1543);// L52:L53 +extern int (____ptsname_r_alias_1548) (int ____fd_1545, char * (____buf_1546), __size_t_1 ____buflen_1547);// L54:L56 +extern int (____ptsname_r_chk_warn_1553) (int ____fd_1549, char * (____buf_1550), __size_t_1 ____buflen_1551, __size_t_1 ____nreal_1552);// L57:L61 /* no function due to type errors in the function prototype */ -extern int (____wctomb_chk_1977) (char * (____s_1973), __wchar_t_1094 ____wchar_1974, __size_t_1 ____buflen_1975);// L77:L78 -extern int (____wctomb_chk_1978) (char * (____s_1973), __wchar_t_1094 ____wchar_1974, __size_t_1093 ____buflen_1976);// L77:L78 -extern int (____wctomb_alias_1981) (char * (____s_1979), __wchar_t_1094 ____wchar_1980);// L79:L80 +extern int (____wctomb_chk_1561) (char * (____s_1558), __wchar_t_1018 ____wchar_1559, __size_t_1 ____buflen_1560);// L77:L78 +extern int (____wctomb_alias_1564) (char * (____s_1562), __wchar_t_1018 ____wchar_1563);// L79:L80 /* no function due to type errors in the function prototype */ -extern __size_t_1 (____mbstowcs_chk_1990) (__wchar_t_1094 * __restrict ____dst_1984, const char * __restrict ____src_1985, __size_t_1 ____len_1986, __size_t_1 ____dstlen_1988);// L98:L100 -extern __size_t_1093 (____mbstowcs_chk_1991) (__wchar_t_1094 * __restrict ____dst_1984, const char * __restrict ____src_1985, __size_t_1093 ____len_1987, __size_t_1093 ____dstlen_1989);// L98:L100 -extern __size_t_1 (____mbstowcs_alias_1996) (__wchar_t_1094 * __restrict ____dst_1992, const char * __restrict ____src_1993, __size_t_1 ____len_1994);// L101:L104 -extern __size_t_1093 (____mbstowcs_alias_1997) (__wchar_t_1094 * __restrict ____dst_1992, const char * __restrict ____src_1993, __size_t_1093 ____len_1995);// L101:L104 -extern __size_t_1 (____mbstowcs_chk_warn_2004) (__wchar_t_1094 * __restrict ____dst_1998, const char * __restrict ____src_1999, __size_t_1 ____len_2000, __size_t_1 ____dstlen_2002);// L105:L110 -extern __size_t_1093 (____mbstowcs_chk_warn_2005) (__wchar_t_1094 * __restrict ____dst_1998, const char * __restrict ____src_1999, __size_t_1093 ____len_2001, __size_t_1093 ____dstlen_2003);// L105:L110 +extern __size_t_1 (____mbstowcs_chk_1571) (__wchar_t_1018 * __restrict ____dst_1567, const char * __restrict ____src_1568, __size_t_1 ____len_1569, __size_t_1 ____dstlen_1570);// L98:L100 +extern __size_t_1 (____mbstowcs_alias_1575) (__wchar_t_1018 * __restrict ____dst_1572, const char * __restrict ____src_1573, __size_t_1 ____len_1574);// L101:L104 +extern __size_t_1 (____mbstowcs_chk_warn_1580) (__wchar_t_1018 * __restrict ____dst_1576, const char * __restrict ____src_1577, __size_t_1 ____len_1578, __size_t_1 ____dstlen_1579);// L105:L110 /* no function due to type errors in the function prototype */ -extern __size_t_1 (____wcstombs_chk_2016) (char * __restrict ____dst_2010, const __wchar_t_1094 * __restrict ____src_2011, __size_t_1 ____len_2012, __size_t_1 ____dstlen_2014);// L130:L132 -extern __size_t_1093 (____wcstombs_chk_2017) (char * __restrict ____dst_2010, const __wchar_t_1094 * __restrict ____src_2011, __size_t_1093 ____len_2013, __size_t_1093 ____dstlen_2015);// L130:L132 -extern __size_t_1 (____wcstombs_alias_2022) (char * __restrict ____dst_2018, const __wchar_t_1094 * __restrict ____src_2019, __size_t_1 ____len_2020);// L133:L136 -extern __size_t_1093 (____wcstombs_alias_2023) (char * __restrict ____dst_2018, const __wchar_t_1094 * __restrict ____src_2019, __size_t_1093 ____len_2021);// L133:L136 -extern __size_t_1 (____wcstombs_chk_warn_2030) (char * __restrict ____dst_2024, const __wchar_t_1094 * __restrict ____src_2025, __size_t_1 ____len_2026, __size_t_1 ____dstlen_2028);// L137:L141 -extern __size_t_1093 (____wcstombs_chk_warn_2031) (char * __restrict ____dst_2024, const __wchar_t_1094 * __restrict ____src_2025, __size_t_1093 ____len_2027, __size_t_1093 ____dstlen_2029);// L137:L141 -// typedef moved to top of scope -// typedef moved to top of scope +extern __size_t_1 (____wcstombs_chk_1588) (char * __restrict ____dst_1584, const __wchar_t_1018 * __restrict ____src_1585, __size_t_1 ____len_1586, __size_t_1 ____dstlen_1587);// L130:L132 +extern __size_t_1 (____wcstombs_alias_1592) (char * __restrict ____dst_1589, const __wchar_t_1018 * __restrict ____src_1590, __size_t_1 ____len_1591);// L133:L136 +extern __size_t_1 (____wcstombs_chk_warn_1597) (char * __restrict ____dst_1593, const __wchar_t_1018 * __restrict ____src_1594, __size_t_1 ____len_1595, __size_t_1 ____dstlen_1596);// L137:L141 /* no function due to type errors in the function prototype */ -extern void * ((__memmove_2053) (void * (____dest_2048), const void * (____src_2049), __size_t_1 ____n_2050));// L46:L47 -extern void * ((__memmove_2054) (void * (____dest_2048), const void * (____src_2049), __size_t_1093 ____n_2051));// L46:L47 -extern void * ((__memmove_2055) (void * (____dest_2048), const void * (____src_2049), __size_t_2037 ____n_2052));// L46:L47 -extern void * ((__memset_2070) (void * (____s_2065), int ____c_2066, __size_t_1 ____n_2067));// L62 -extern void * ((__memset_2071) (void * (____s_2065), int ____c_2066, __size_t_1093 ____n_2068));// L62 -extern void * ((__memset_2072) (void * (____s_2065), int ____c_2066, __size_t_2037 ____n_2069));// L62 -extern void * ((__memset_2073) (void * (____s_2065), int ____c_2066, __size_t_1 ____n_2067));// L62 -extern void * ((__memset_2074) (void * (____s_2065), int ____c_2066, __size_t_1093 ____n_2068));// L62 -extern void * ((__memset_2075) (void * (____s_2065), int ____c_2066, __size_t_2037 ____n_2069));// L62 -extern int (__memcmp_2081) (const void * (____s1_2076), const void * (____s2_2077), __size_t_1 ____n_2078);// L65:L66 -extern int (__memcmp_2082) (const void * (____s1_2076), const void * (____s2_2077), __size_t_1093 ____n_2079);// L65:L66 -extern int (__memcmp_2083) (const void * (____s1_2076), const void * (____s2_2077), __size_t_2037 ____n_2080);// L65:L66 -extern void * ((__memchr_2089) (const void * (____s_2084), int ____c_2085, __size_t_1 ____n_2086));// L92:L93 -extern void * ((__memchr_2090) (const void * (____s_2084), int ____c_2085, __size_t_1093 ____n_2087));// L92:L93 -extern void * ((__memchr_2091) (const void * (____s_2084), int ____c_2085, __size_t_2037 ____n_2088));// L92:L93 -extern char * ((__strcpy_2094) (char * __restrict ____dest_2092, const char * __restrict ____src_2093));// L125:L126 -extern char * ((__strncpy_2100) (char * __restrict ____dest_2095, const char * __restrict ____src_2096, __size_t_1 ____n_2097));// L128:L130 -extern char * ((__strncpy_2101) (char * __restrict ____dest_2095, const char * __restrict ____src_2096, __size_t_1093 ____n_2098));// L128:L130 -extern char * ((__strncpy_2102) (char * __restrict ____dest_2095, const char * __restrict ____src_2096, __size_t_2037 ____n_2099));// L128:L130 -extern char * ((__strcat_2105) (char * __restrict ____dest_2103, const char * __restrict ____src_2104));// L133:L134 -extern char * ((__strncat_2111) (char * __restrict ____dest_2106, const char * __restrict ____src_2107, __size_t_1 ____n_2108));// L136:L137 -extern char * ((__strncat_2112) (char * __restrict ____dest_2106, const char * __restrict ____src_2107, __size_t_1093 ____n_2109));// L136:L137 -extern char * ((__strncat_2113) (char * __restrict ____dest_2106, const char * __restrict ____src_2107, __size_t_2037 ____n_2110));// L136:L137 -extern int (__strcmp_2116) (const char * (____s1_2114), const char * (____s2_2115));// L140:L141 -extern int (__strncmp_2122) (const char * (____s1_2117), const char * (____s2_2118), __size_t_1 ____n_2119);// L143:L144 -extern int (__strncmp_2123) (const char * (____s1_2117), const char * (____s2_2118), __size_t_1093 ____n_2120);// L143:L144 -extern int (__strncmp_2124) (const char * (____s1_2117), const char * (____s2_2118), __size_t_2037 ____n_2121);// L143:L144 -extern int (__strcoll_2127) (const char * (____s1_2125), const char * (____s2_2126));// L147:L148 -extern __size_t_1 (__strxfrm_2133) (char * __restrict ____dest_2128, const char * __restrict ____src_2129, __size_t_1 ____n_2130);// L150:L152 -extern __size_t_1093 (__strxfrm_2134) (char * __restrict ____dest_2128, const char * __restrict ____src_2129, __size_t_1093 ____n_2131);// L150:L152 -extern __size_t_2037 (__strxfrm_2135) (char * __restrict ____dest_2128, const char * __restrict ____src_2129, __size_t_2037 ____n_2132);// L150:L152 -// typedef moved to top of scope -// typedef moved to top of scope -extern int (__strcoll_l_2148) (const char * (____s1_2145), const char * (____s2_2146), ____locale_t_2143 ____l_2147);// L162:L163 -extern __size_t_1 (__strxfrm_l_2155) (char * (____dest_2149), const char * (____src_2150), __size_t_1 ____n_2151, ____locale_t_2143 ____l_2154);// L165:L166 -extern __size_t_1093 (__strxfrm_l_2156) (char * (____dest_2149), const char * (____src_2150), __size_t_1093 ____n_2152, ____locale_t_2143 ____l_2154);// L165:L166 -extern __size_t_2037 (__strxfrm_l_2157) (char * (____dest_2149), const char * (____src_2150), __size_t_2037 ____n_2153, ____locale_t_2143 ____l_2154);// L165:L166 -extern char * ((__strdup_2159) (const char * (____s_2158)));// L171:L172 -extern char * ((__strndup_2164) (const char * (____string_2160), __size_t_1 ____n_2161));// L179:L180 -extern char * ((__strndup_2165) (const char * (____string_2160), __size_t_1093 ____n_2162));// L179:L180 -extern char * ((__strndup_2166) (const char * (____string_2160), __size_t_2037 ____n_2163));// L179:L180 -extern char * ((__strchr_2169) (const char * (____s_2167), int ____c_2168));// L231:L232 -extern char * ((__strrchr_2172) (const char * (____s_2170), int ____c_2171));// L258:L259 -extern __size_t_1 (__strcspn_2175) (const char * (____s_2173), const char * (____reject_2174));// L280:L281 -extern __size_t_1093 (__strcspn_2176) (const char * (____s_2173), const char * (____reject_2174));// L280:L281 -extern __size_t_2037 (__strcspn_2177) (const char * (____s_2173), const char * (____reject_2174));// L280:L281 -extern __size_t_1 (__strspn_2180) (const char * (____s_2178), const char * (____accept_2179));// L284:L285 -extern __size_t_1093 (__strspn_2181) (const char * (____s_2178), const char * (____accept_2179));// L284:L285 -extern __size_t_2037 (__strspn_2182) (const char * (____s_2178), const char * (____accept_2179));// L284:L285 -extern char * ((__strpbrk_2185) (const char * (____s_2183), const char * (____accept_2184)));// L310:L311 -extern char * ((__strstr_2188) (const char * (____haystack_2186), const char * (____needle_2187)));// L337:L338 -extern char * ((__strtok_2191) (char * __restrict ____s_2189, const char * __restrict ____delim_2190));// L343:L344 -extern char * ((____strtok_r_2195) (char * __restrict ____s_2192, const char * __restrict ____delim_2193, char * (* __restrict ____save_ptr_2194)));// L349:L352 -extern char * ((__strtok_r_2199) (char * __restrict ____s_2196, const char * __restrict ____delim_2197, char * (* __restrict ____save_ptr_2198)));// L354:L356 -extern __size_t_1 (__strlen_2201) (const char * (____s_2200));// L394:L395 -extern __size_t_1093 (__strlen_2202) (const char * (____s_2200));// L394:L395 -extern __size_t_2037 (__strlen_2203) (const char * (____s_2200));// L394:L395 -extern __size_t_1 (__strlen_2204) (const char * (____s_2200));// L394:L395 -extern __size_t_1093 (__strlen_2205) (const char * (____s_2200));// L394:L395 -extern __size_t_2037 (__strlen_2206) (const char * (____s_2200));// L394:L395 -extern __size_t_1 (__strnlen_2211) (const char * (____string_2207), __size_t_1 ____maxlen_2208);// L401:L402 -extern __size_t_1093 (__strnlen_2212) (const char * (____string_2207), __size_t_1093 ____maxlen_2209);// L401:L402 -extern __size_t_2037 (__strnlen_2213) (const char * (____string_2207), __size_t_2037 ____maxlen_2210);// L401:L402 -extern char * ((__strerror_2215) (int ____errnum_2214));// L408 -extern char * ((__strerror_2216) (int ____errnum_2214));// L408 -extern int (__strerror_r_2222) (int ____errnum_2217, char * (____buf_2218), __size_t_1 ____buflen_2219);// L422:L424 -extern int (__strerror_r_2223) (int ____errnum_2217, char * (____buf_2218), __size_t_1093 ____buflen_2220);// L422:L424 -extern int (__strerror_r_2224) (int ____errnum_2217, char * (____buf_2218), __size_t_2037 ____buflen_2221);// L422:L424 -extern char * ((__strerror_l_2227) (int ____errnum_2225, ____locale_t_2143 ____l_2226));// L440 -extern void (____bzero_2232) (void * (____s_2228), __size_t_1 ____n_2229);// L446 -extern void (____bzero_2233) (void * (____s_2228), __size_t_1093 ____n_2230);// L446 -extern void (____bzero_2234) (void * (____s_2228), __size_t_2037 ____n_2231);// L446 -extern void (____bzero_2235) (void * (____s_2228), __size_t_1 ____n_2229);// L446 -extern void (____bzero_2236) (void * (____s_2228), __size_t_1093 ____n_2230);// L446 -extern void (____bzero_2237) (void * (____s_2228), __size_t_2037 ____n_2231);// L446 -extern void (__bcopy_2243) (const void * (____src_2238), void * (____dest_2239), __size_t_1 ____n_2240);// L450:L451 -extern void (__bcopy_2244) (const void * (____src_2238), void * (____dest_2239), __size_t_1093 ____n_2241);// L450:L451 -extern void (__bcopy_2245) (const void * (____src_2238), void * (____dest_2239), __size_t_2037 ____n_2242);// L450:L451 -extern void (__bzero_2250) (void * (____s_2246), __size_t_1 ____n_2247);// L454 -extern void (__bzero_2251) (void * (____s_2246), __size_t_1093 ____n_2248);// L454 -extern void (__bzero_2252) (void * (____s_2246), __size_t_2037 ____n_2249);// L454 -extern int (__bcmp_2258) (const void * (____s1_2253), const void * (____s2_2254), __size_t_1 ____n_2255);// L457:L458 -extern int (__bcmp_2259) (const void * (____s1_2253), const void * (____s2_2254), __size_t_1093 ____n_2256);// L457:L458 -extern int (__bcmp_2260) (const void * (____s1_2253), const void * (____s2_2254), __size_t_2037 ____n_2257);// L457:L458 -extern char * ((__index_2263) (const char * (____s_2261), int ____c_2262));// L484:L485 -extern char * ((__rindex_2266) (const char * (____s_2264), int ____c_2265));// L512:L513 -extern int (__ffs_2268) (int ____i_2267);// L518 -extern int (__strcasecmp_2271) (const char * (____s1_2269), const char * (____s2_2270));// L529:L530 -extern int (__strncasecmp_2277) (const char * (____s1_2272), const char * (____s2_2273), __size_t_1 ____n_2274);// L533:L534 -extern int (__strncasecmp_2278) (const char * (____s1_2272), const char * (____s2_2273), __size_t_1093 ____n_2275);// L533:L534 -extern int (__strncasecmp_2279) (const char * (____s1_2272), const char * (____s2_2273), __size_t_2037 ____n_2276);// L533:L534 -extern char * ((__strsep_2282) (char * (* __restrict ____stringp_2280), const char * __restrict ____delim_2281));// L552:L554 -extern char * ((__strsignal_2284) (int ____sig_2283));// L559 -extern char * ((____stpcpy_2287) (char * __restrict ____dest_2285, const char * __restrict ____src_2286));// L562:L563 -extern char * ((__stpcpy_2290) (char * __restrict ____dest_2288, const char * __restrict ____src_2289));// L564:L565 -extern char * ((____stpncpy_2296) (char * __restrict ____dest_2291, const char * __restrict ____src_2292, __size_t_1 ____n_2293));// L569:L571 -extern char * ((____stpncpy_2297) (char * __restrict ____dest_2291, const char * __restrict ____src_2292, __size_t_1093 ____n_2294));// L569:L571 -extern char * ((____stpncpy_2298) (char * __restrict ____dest_2291, const char * __restrict ____src_2292, __size_t_2037 ____n_2295));// L569:L571 -extern char * ((__stpncpy_2304) (char * __restrict ____dest_2299, const char * __restrict ____src_2300, __size_t_1 ____n_2301));// L572:L574 -extern char * ((__stpncpy_2305) (char * __restrict ____dest_2299, const char * __restrict ____src_2300, __size_t_1093 ____n_2302));// L572:L574 -extern char * ((__stpncpy_2306) (char * __restrict ____dest_2299, const char * __restrict ____src_2300, __size_t_2037 ____n_2303));// L572:L574 +extern void * ((__memmove_1610) (void * (____dest_1607), const void * (____src_1608), __size_t_1 ____n_1609));// L46:L47 +extern void * ((__memset_1619) (void * (____s_1616), int ____c_1617, __size_t_1 ____n_1618));// L62 +extern void * ((__memset_1620) (void * (____s_1616), int ____c_1617, __size_t_1 ____n_1618));// L62 +extern int (__memcmp_1624) (const void * (____s1_1621), const void * (____s2_1622), __size_t_1 ____n_1623);// L65:L66 +extern void * ((__memchr_1628) (const void * (____s_1625), int ____c_1626, __size_t_1 ____n_1627));// L92:L93 +extern char * ((__strcpy_1631) (char * __restrict ____dest_1629, const char * __restrict ____src_1630));// L125:L126 +extern char * ((__strncpy_1635) (char * __restrict ____dest_1632, const char * __restrict ____src_1633, __size_t_1 ____n_1634));// L128:L130 +extern char * ((__strcat_1638) (char * __restrict ____dest_1636, const char * __restrict ____src_1637));// L133:L134 +extern char * ((__strncat_1642) (char * __restrict ____dest_1639, const char * __restrict ____src_1640, __size_t_1 ____n_1641));// L136:L137 +extern int (__strcmp_1645) (const char * (____s1_1643), const char * (____s2_1644));// L140:L141 +extern int (__strncmp_1649) (const char * (____s1_1646), const char * (____s2_1647), __size_t_1 ____n_1648);// L143:L144 +extern int (__strcoll_1652) (const char * (____s1_1650), const char * (____s2_1651));// L147:L148 +extern __size_t_1 (__strxfrm_1656) (char * __restrict ____dest_1653, const char * __restrict ____src_1654, __size_t_1 ____n_1655);// L150:L152 +// typedef moved to top of scope +// typedef moved to top of scope +extern int (__strcoll_l_1669) (const char * (____s1_1666), const char * (____s2_1667), ____locale_t_1664 ____l_1668);// L162:L163 +extern __size_t_1 (__strxfrm_l_1674) (char * (____dest_1670), const char * (____src_1671), __size_t_1 ____n_1672, ____locale_t_1664 ____l_1673);// L165:L166 +extern char * ((__strdup_1676) (const char * (____s_1675)));// L171:L172 +extern char * ((__strndup_1679) (const char * (____string_1677), __size_t_1 ____n_1678));// L179:L180 +extern char * ((__strchr_1682) (const char * (____s_1680), int ____c_1681));// L231:L232 +extern char * ((__strchr_1683) (const char * (____s_1680), int ____c_1681));// L231:L232 +extern char * ((__strrchr_1686) (const char * (____s_1684), int ____c_1685));// L258:L259 +extern __size_t_1 (__strcspn_1689) (const char * (____s_1687), const char * (____reject_1688));// L280:L281 +extern __size_t_1 (__strspn_1692) (const char * (____s_1690), const char * (____accept_1691));// L284:L285 +extern char * ((__strpbrk_1695) (const char * (____s_1693), const char * (____accept_1694)));// L310:L311 +extern char * ((__strstr_1698) (const char * (____haystack_1696), const char * (____needle_1697)));// L337:L338 +extern char * ((__strtok_1701) (char * __restrict ____s_1699, const char * __restrict ____delim_1700));// L343:L344 +extern char * ((____strtok_r_1705) (char * __restrict ____s_1702, const char * __restrict ____delim_1703, char * (* __restrict ____save_ptr_1704)));// L349:L352 +extern char * ((__strtok_r_1709) (char * __restrict ____s_1706, const char * __restrict ____delim_1707, char * (* __restrict ____save_ptr_1708)));// L354:L356 +extern __size_t_1 (__strlen_1711) (const char * (____s_1710));// L394:L395 +extern __size_t_1 (__strlen_1712) (const char * (____s_1710));// L394:L395 +extern __size_t_1 (__strnlen_1715) (const char * (____string_1713), __size_t_1 ____maxlen_1714);// L401:L402 +extern char * ((__strerror_1717) (int ____errnum_1716));// L408 +extern char * ((__strerror_1718) (int ____errnum_1716));// L408 +extern int (__strerror_r_1722) (int ____errnum_1719, char * (____buf_1720), __size_t_1 ____buflen_1721);// L422:L424 +extern char * ((__strerror_l_1725) (int ____errnum_1723, ____locale_t_1664 ____l_1724));// L440 +extern void (____bzero_1728) (void * (____s_1726), __size_t_1 ____n_1727);// L446 +extern void (____bzero_1729) (void * (____s_1726), __size_t_1 ____n_1727);// L446 +extern void (__bcopy_1733) (const void * (____src_1730), void * (____dest_1731), __size_t_1 ____n_1732);// L450:L451 +extern void (__bzero_1736) (void * (____s_1734), __size_t_1 ____n_1735);// L454 +extern int (__bcmp_1740) (const void * (____s1_1737), const void * (____s2_1738), __size_t_1 ____n_1739);// L457:L458 +extern char * ((__index_1743) (const char * (____s_1741), int ____c_1742));// L484:L485 +extern char * ((__rindex_1746) (const char * (____s_1744), int ____c_1745));// L512:L513 +extern int (__ffs_1748) (int ____i_1747);// L518 +extern int (__strcasecmp_1751) (const char * (____s1_1749), const char * (____s2_1750));// L529:L530 +extern int (__strncasecmp_1755) (const char * (____s1_1752), const char * (____s2_1753), __size_t_1 ____n_1754);// L533:L534 +extern char * ((__strsep_1758) (char * (* __restrict ____stringp_1756), const char * __restrict ____delim_1757));// L552:L554 +extern char * ((__strsignal_1760) (int ____sig_1759));// L559 +extern char * ((____stpcpy_1763) (char * __restrict ____dest_1761, const char * __restrict ____src_1762));// L562:L563 +extern char * ((__stpcpy_1766) (char * __restrict ____dest_1764, const char * __restrict ____src_1765));// L564:L565 +extern char * ((____stpncpy_1770) (char * __restrict ____dest_1767, const char * __restrict ____src_1768, __size_t_1 ____n_1769));// L569:L571 +extern char * ((__stpncpy_1774) (char * __restrict ____dest_1771, const char * __restrict ____src_1772, __size_t_1 ____n_1773));// L572:L574 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ @@ -3233,36 +2137,32 @@ extern char * ((__stpncpy_2306) (char * __restrict ____dest_2299, const char /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern char * ((____stpncpy_chk_2360) (char * (____dest_2352), const char * (____src_2353), __size_t_1 ____n_2354, __size_t_1 ____destlen_2357));// L130:L131 -extern char * ((____stpncpy_chk_2361) (char * (____dest_2352), const char * (____src_2353), __size_t_1093 ____n_2355, __size_t_1093 ____destlen_2358));// L130:L131 -extern char * ((____stpncpy_chk_2362) (char * (____dest_2352), const char * (____src_2353), __size_t_2037 ____n_2356, __size_t_2037 ____destlen_2359));// L130:L131 -extern char * ((____stpncpy_alias_2368) (char * (____dest_2363), const char * (____src_2364), __size_t_1 ____n_2365));// L132:L133 -extern char * ((____stpncpy_alias_2369) (char * (____dest_2363), const char * (____src_2364), __size_t_1093 ____n_2366));// L132:L133 -extern char * ((____stpncpy_alias_2370) (char * (____dest_2363), const char * (____src_2364), __size_t_2037 ____n_2367));// L132:L133 +extern char * ((____stpncpy_chk_1803) (char * (____dest_1799), const char * (____src_1800), __size_t_1 ____n_1801, __size_t_1 ____destlen_1802));// L130:L131 +extern char * ((____stpncpy_alias_1807) (char * (____dest_1804), const char * (____src_1805), __size_t_1 ____n_1806));// L132:L133 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ // typedef moved to top of scope // typedef moved to top of scope -static void (__delete_eth_table_2398) (__ethtable_t_2394 * (__ch_2396)) { +static void (__delete_eth_table_1827) (__ethtable_t_1823 * (__ch_1825)) { -if (__static_condition_default_2400) { +if (__static_condition_default_1829) { { { -if (__static_condition_default_2401) { -free ( __ch_2396 -> __ifname_2393) ; // L15 +if (__static_condition_default_1830) { +free ( __ch_1825 -> __ifname_1822) ; // L15 } -if (__static_condition_default_2402) { +if (__static_condition_default_1831) { __static_type_error("type error") ; // L15 } -if (__static_condition_default_2403) { -free ( __ch_2396 ) ; // L16 +if (__static_condition_default_1832) { +free ( __ch_1825 ) ; // L16 } -if (__static_condition_default_2404) { +if (__static_condition_default_1833) { __static_type_error("type error") ; // L16 } } @@ -3271,25 +2171,25 @@ __static_type_error("type error") ; // L16 } } -static void (__delete_eth_table_2399) (__ethtable_t_2395 * (__ch_2397)) { +static void (__delete_eth_table_1828) (__ethtable_t_1824 * (__ch_1826)) { -if (__static_condition_default_2405) { +if (__static_condition_default_1834) { { { -if (__static_condition_default_2406) { -free ( __ch_2397 -> __ifname_2393) ; // L15 +if (__static_condition_default_1835) { +free ( __ch_1826 -> __ifname_1822) ; // L15 } -if (__static_condition_default_2407) { +if (__static_condition_default_1836) { __static_type_error("type error") ; // L15 } -if (__static_condition_default_2408) { -free ( __ch_2397 ) ; // L16 +if (__static_condition_default_1837) { +free ( __ch_1826 ) ; // L16 } -if (__static_condition_default_2409) { +if (__static_condition_default_1838) { __static_type_error("type error") ; // L16 } } @@ -3298,9 +2198,9 @@ __static_type_error("type error") ; // L16 } } -;void (__delete_eth_table_2412) (__ethtable_t_2394 * (__ch_2410)) { +;void (__delete_eth_table_1841) (__ethtable_t_1823 * (__ch_1839)) { -if (__static_condition_default_2414) { +if (__static_condition_default_1843) { { { @@ -3313,9 +2213,9 @@ if (__static_condition_default_2414) { } } -void (__delete_eth_table_2413) (__ethtable_t_2395 * (__ch_2411)) { +void (__delete_eth_table_1842) (__ethtable_t_1824 * (__ch_1840)) { -if (__static_condition_default_2415) { +if (__static_condition_default_1844) { { { @@ -3328,177 +2228,123 @@ if (__static_condition_default_2415) { } } -static void (__prepend_new_eth_table_2427) (__ethtable_t_2394 * (* (__clist_2416)), char * (__ifname_2418)) { +static void (__prepend_new_eth_table_1856) (__ethtable_t_1823 * (* (__clist_1845)), char * (__ifname_1847)) { -if (__static_condition_default_2429) { +if (__static_condition_default_1858) { { { -struct { typeof( struct __forward_tag_reference_2390 *) __tmp_2421; typeof( char *) __tmp_2422; }__sizeofStandin_2423; -struct { typeof( struct __forward_tag_reference_2390 *) __tmp_2424; typeof( char *) __tmp_2425; }__sizeofStandin_2426; +struct { typeof( struct __forward_tag_reference_1819 *) __tmp_1850; typeof( char *) __tmp_1851; }__sizeofStandin_1852; +struct { typeof( struct __forward_tag_reference_1819 *) __tmp_1853; typeof( char *) __tmp_1854; }__sizeofStandin_1855; -__ethtable_t_2394 * (__ch_2419);// L26 +__ethtable_t_1823 * (__ch_1848);// L26 -if (__static_condition_default_2430) { -if ( __strlen_2201 ( __ifname_2418 ) >= 16 )// L27 +if (__static_condition_default_1859) { +if ( __strlen_1711 ( __ifname_1847 ) >= 16 )// L27 { - __printf_421 ("interface name '%s' too long", __ifname_2418 ) ; // L28 + __printf_383 ("interface name '%s' too long", __ifname_1847 ) ; // L28 } } -if (__static_condition_default_2431) { -if ( __strlen_2202 ( __ifname_2418 ) >= 16 )// L27 +if (__static_condition_default_1860) { +if ( __strlen_1712 ( __ifname_1847 ) >= 16 )// L27 { -__static_type_error("type error") ; // L28 + __printf_383 ("interface name '%s' too long", __ifname_1847 ) ; // L28 } } -if (__static_condition_default_2432) { -if ( __strlen_2203 ( __ifname_2418 ) >= 16 )// L27 -{ -__static_type_error("type error") ; // L28 -} +if (__static_condition_default_1861) { + __ch_1848 = malloc (sizeof(__sizeofStandin_1852)) ; // L29 } -if (__static_condition_default_2433) { -if ( __strlen_2204 ( __ifname_2418 ) >= 16 )// L27 -{ - __printf_421 ("interface name '%s' too long", __ifname_2418 ) ; // L28 +if (__static_condition_default_1862) { + __ch_1848 = malloc (sizeof(__sizeofStandin_1852)) ; // L29 } -} -if (__static_condition_default_2434) { -if ( __strlen_2205 ( __ifname_2418 ) >= 16 )// L27 -{ -__static_type_error("type error") ; // L28 -} -} -if (__static_condition_default_2435) { -if ( __strlen_2206 ( __ifname_2418 ) >= 16 )// L27 -{ -__static_type_error("type error") ; // L28 -} -} -if (__static_condition_default_2436) { - __ch_2419 = malloc (sizeof(__sizeofStandin_2423)) ; // L29 -} -if (__static_condition_default_2437) { - __ch_2419 = malloc (sizeof(__sizeofStandin_2423)) ; // L29 -} -if (__static_condition_default_2438) { -__static_type_error("type error") ; // L29 -} - __ch_2419 -> __ifname_2393 = __ifname_2418 ; // L30 - __ch_2419 -> __next_2392 = * __clist_2416 ; // L31 -* __clist_2416 = __ch_2419 ; // L32 + __ch_1848 -> __ifname_1822 = __ifname_1847 ; // L30 + __ch_1848 -> __next_1821 = * __clist_1845 ; // L31 +* __clist_1845 = __ch_1848 ; // L32 } } } } -static void (__prepend_new_eth_table_2428) (__ethtable_t_2395 * (* (__clist_2417)), char * (__ifname_2418)) { +static void (__prepend_new_eth_table_1857) (__ethtable_t_1824 * (* (__clist_1846)), char * (__ifname_1847)) { -if (__static_condition_default_2439) { +if (__static_condition_default_1863) { { { -struct { typeof( struct __forward_tag_reference_2390 *) __tmp_2421; typeof( char *) __tmp_2422; }__sizeofStandin_2423; -struct { typeof( struct __forward_tag_reference_2390 *) __tmp_2424; typeof( char *) __tmp_2425; }__sizeofStandin_2426; +struct { typeof( struct __forward_tag_reference_1819 *) __tmp_1850; typeof( char *) __tmp_1851; }__sizeofStandin_1852; +struct { typeof( struct __forward_tag_reference_1819 *) __tmp_1853; typeof( char *) __tmp_1854; }__sizeofStandin_1855; -__ethtable_t_2395 * (__ch_2420);// L26 +__ethtable_t_1824 * (__ch_1849);// L26 -if (__static_condition_default_2440) { -if ( __strlen_2201 ( __ifname_2418 ) >= 16 )// L27 -{ - __printf_421 ("interface name '%s' too long", __ifname_2418 ) ; // L28 -} -} -if (__static_condition_default_2441) { -if ( __strlen_2202 ( __ifname_2418 ) >= 16 )// L27 +if (__static_condition_default_1864) { +if ( __strlen_1711 ( __ifname_1847 ) >= 16 )// L27 { -__static_type_error("type error") ; // L28 + __printf_383 ("interface name '%s' too long", __ifname_1847 ) ; // L28 } } -if (__static_condition_default_2442) { -if ( __strlen_2203 ( __ifname_2418 ) >= 16 )// L27 +if (__static_condition_default_1865) { +if ( __strlen_1712 ( __ifname_1847 ) >= 16 )// L27 { -__static_type_error("type error") ; // L28 -} -} -if (__static_condition_default_2443) { -if ( __strlen_2204 ( __ifname_2418 ) >= 16 )// L27 -{ - __printf_421 ("interface name '%s' too long", __ifname_2418 ) ; // L28 -} -} -if (__static_condition_default_2444) { -if ( __strlen_2205 ( __ifname_2418 ) >= 16 )// L27 -{ -__static_type_error("type error") ; // L28 -} -} -if (__static_condition_default_2445) { -if ( __strlen_2206 ( __ifname_2418 ) >= 16 )// L27 -{ -__static_type_error("type error") ; // L28 -} + __printf_383 ("interface name '%s' too long", __ifname_1847 ) ; // L28 } -if (__static_condition_default_2446) { - __ch_2420 = malloc (sizeof(__sizeofStandin_2426)) ; // L29 } -if (__static_condition_default_2447) { - __ch_2420 = malloc (sizeof(__sizeofStandin_2426)) ; // L29 +if (__static_condition_default_1866) { + __ch_1849 = malloc (sizeof(__sizeofStandin_1855)) ; // L29 } -if (__static_condition_default_2448) { -__static_type_error("type error") ; // L29 +if (__static_condition_default_1867) { + __ch_1849 = malloc (sizeof(__sizeofStandin_1855)) ; // L29 } - __ch_2420 -> __ifname_2393 = __ifname_2418 ; // L30 - __ch_2420 -> __next_2392 = * __clist_2417 ; // L31 -* __clist_2417 = __ch_2420 ; // L32 + __ch_1849 -> __ifname_1822 = __ifname_1847 ; // L30 + __ch_1849 -> __next_1821 = * __clist_1846 ; // L31 +* __clist_1846 = __ch_1849 ; // L32 } } } } -int (__main_2455) (int __argc_2449, char * (* (__argv_2450))) { +int (__main_1874) (int __argc_1868, char * (* (__argv_1869))) { { { -__ethtable_t_2394 * (__clist_2451)= ( ( void * ) 0 );// L37 +__ethtable_t_1823 * (__clist_1870)= ( ( void * ) 0 );// L37 -__ethtable_t_2395 * (__clist_2452)= ( ( void * ) 0 );// L37 +__ethtable_t_1824 * (__clist_1871)= ( ( void * ) 0 );// L37 -__ethtable_t_2394 * (__ch_2453);// L38 +__ethtable_t_1823 * (__ch_1872);// L38 -__ethtable_t_2395 * (__ch_2454);// L38 +__ethtable_t_1824 * (__ch_1873);// L38 -if (__static_condition_default_2429) { - __prepend_new_eth_table_2427 (& __clist_2451 , __argv_2450 [ 0 ]) ; // L40 +if (__static_condition_default_1858) { + __prepend_new_eth_table_1856 (& __clist_1870 , __argv_1869 [ 0 ]) ; // L40 } -if (__static_condition_default_2439) { - __prepend_new_eth_table_2428 (& __clist_2452 , __argv_2450 [ 0 ]) ; // L40 +if (__static_condition_default_1863) { + __prepend_new_eth_table_1857 (& __clist_1871 , __argv_1869 [ 0 ]) ; // L40 } -if (__static_condition_default_2456) { -for ( __ch_2453 = __clist_2451 ; __ch_2453 ; __ch_2453 = __ch_2453 -> __next_2392 )// L43 +if (__static_condition_default_1875) { +for ( __ch_1872 = __clist_1870 ; __ch_1872 ; __ch_1872 = __ch_1872 -> __next_1821 )// L43 { - __delete_eth_table_2398 ( __ch_2453 ) ; // L44 + __delete_eth_table_1827 ( __ch_1872 ) ; // L44 } } -if (__static_condition_default_2457) { -for ( __ch_2454 = __clist_2452 ; __ch_2454 ; __ch_2454 = __ch_2454 -> __next_2392 )// L43 +if (__static_condition_default_1876) { +for ( __ch_1873 = __clist_1871 ; __ch_1873 ; __ch_1873 = __ch_1873 -> __next_1821 )// L43 { - __delete_eth_table_2399 ( __ch_2454 ) ; // L44 + __delete_eth_table_1828 ( __ch_1873 ) ; // L44 } } -if (__static_condition_default_2458) { +if (__static_condition_default_1877) { return 0 ;// L46 } -if (__static_condition_default_2459) { +if (__static_condition_default_1878) { return 0 ;// L46 } } diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.clangres index cbc5ed53..f60ed0a6 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.clangres @@ -1,37 +1,37 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3381:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_2394', which is incompatible with sizeof operand type 'struct (anonymous struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3338:1)' [unix.MallocSizeof] - __ch_2419 = malloc (sizeof(__sizeofStandin_2423)) ; // L29 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2257:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_1823', which is incompatible with sizeof operand type 'struct (anonymous struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2238:1)' [unix.MallocSizeof] + __ch_1848 = malloc (sizeof(__sizeofStandin_1852)) ; // L29 ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3384:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_2394', which is incompatible with sizeof operand type 'struct (anonymous struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3338:1)' [unix.MallocSizeof] - __ch_2419 = malloc (sizeof(__sizeofStandin_2423)) ; // L29 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2260:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_1823', which is incompatible with sizeof operand type 'struct (anonymous struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2238:1)' [unix.MallocSizeof] + __ch_1848 = malloc (sizeof(__sizeofStandin_1852)) ; // L29 ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3386:5: warning: Potential leak of memory pointed to by '__ch_2419' [unix.Malloc] -if (__static_condition_default_2438) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3389:30: warning: Dereference of undefined pointer value [core.NullDereference] - __ch_2419 -> __ifname_2393 = __ifname_2418 ; // L30 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2262:30: warning: Dereference of undefined pointer value [core.NullDereference] + __ch_1848 -> __ifname_1822 = __ifname_1847 ; // L30 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3448:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_2395', which is incompatible with sizeof operand type 'struct (anonymous struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3406:1)' [unix.MallocSizeof] - __ch_2420 = malloc (sizeof(__sizeofStandin_2426)) ; // L29 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2262:33: warning: Potential leak of memory pointed to by '__ch_1848' [unix.Malloc] + __ch_1848 -> __ifname_1822 = __ifname_1847 ; // L30 + ^~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2297:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_1824', which is incompatible with sizeof operand type 'struct (anonymous struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2279:1)' [unix.MallocSizeof] + __ch_1849 = malloc (sizeof(__sizeofStandin_1855)) ; // L29 ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3451:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_2395', which is incompatible with sizeof operand type 'struct (anonymous struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3406:1)' [unix.MallocSizeof] - __ch_2420 = malloc (sizeof(__sizeofStandin_2426)) ; // L29 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2300:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_1824', which is incompatible with sizeof operand type 'struct (anonymous struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2279:1)' [unix.MallocSizeof] + __ch_1849 = malloc (sizeof(__sizeofStandin_1855)) ; // L29 ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3453:5: warning: Potential leak of memory pointed to by '__ch_2420' [unix.Malloc] -if (__static_condition_default_2448) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3456:30: warning: Dereference of undefined pointer value [core.NullDereference] - __ch_2420 -> __ifname_2393 = __ifname_2418 ; // L30 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2302:30: warning: Dereference of undefined pointer value [core.NullDereference] + __ch_1849 -> __ifname_1822 = __ifname_1847 ; // L30 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3487:39: warning: Potential leak of memory pointed to by '__ch_2453' [unix.Malloc] -for ( __ch_2453 = __clist_2451 ; __ch_2453 ; __ch_2453 = __ch_2453 -> __next_2392 )// L43 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2302:33: warning: Potential leak of memory pointed to by '__ch_1849' [unix.Malloc] + __ch_1849 -> __ifname_1822 = __ifname_1847 ; // L30 + ^~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2333:39: warning: Potential leak of memory pointed to by '__ch_1872' [unix.Malloc] +for ( __ch_1872 = __clist_1870 ; __ch_1872 ; __ch_1872 = __ch_1872 -> __next_1821 )// L43 ^~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3492:5: warning: Potential leak of memory pointed to by '__clist_2451' [unix.Malloc] -if (__static_condition_default_2457) { +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2338:5: warning: Potential leak of memory pointed to by '__clist_1870' [unix.Malloc] +if (__static_condition_default_1876) { ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3493:39: warning: Potential leak of memory pointed to by '__ch_2454' [unix.Malloc] -for ( __ch_2454 = __clist_2452 ; __ch_2454 ; __ch_2454 = __ch_2454 -> __next_2392 )// L43 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2339:39: warning: Potential leak of memory pointed to by '__ch_1873' [unix.Malloc] +for ( __ch_1873 = __clist_1871 ; __ch_1873 ; __ch_1873 = __ch_1873 -> __next_1821 )// L43 ^~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3498:5: warning: Potential leak of memory pointed to by '__clist_2452' [unix.Malloc] -if (__static_condition_default_2458) { +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2344:5: warning: Potential leak of memory pointed to by '__clist_1871' [unix.Malloc] +if (__static_condition_default_1877) { ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 12 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.inferres index 57061ec8..34212b7d 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.inferres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.inferres @@ -1,21 +1,21 @@ -BUSYBOX/bc0ffc0e971.desugared.c:3391: error: Uninitialized Value - The value read from __ch_2419 was never initialized. - 3389. __ch_2419 -> __ifname_2393 = __ifname_2418 ; // L30 - 3390. __ch_2419 -> __next_2392 = * __clist_2416 ; // L31 - 3391. * __clist_2416 = __ch_2419 ; // L32 +BUSYBOX/bc0ffc0e971.desugared.c:2264: error: Uninitialized Value + The value read from __ch_1848 was never initialized. + 2262. __ch_1848 -> __ifname_1822 = __ifname_1847 ; // L30 + 2263. __ch_1848 -> __next_1821 = * __clist_1845 ; // L31 + 2264. * __clist_1845 = __ch_1848 ; // L32 ^ - 3392. } - 3393. } + 2265. } + 2266. } -BUSYBOX/bc0ffc0e971.desugared.c:3458: error: Uninitialized Value - The value read from __ch_2420 was never initialized. - 3456. __ch_2420 -> __ifname_2393 = __ifname_2418 ; // L30 - 3457. __ch_2420 -> __next_2392 = * __clist_2417 ; // L31 - 3458. * __clist_2417 = __ch_2420 ; // L32 +BUSYBOX/bc0ffc0e971.desugared.c:2304: error: Uninitialized Value + The value read from __ch_1849 was never initialized. + 2302. __ch_1849 -> __ifname_1822 = __ifname_1847 ; // L30 + 2303. __ch_1849 -> __next_1821 = * __clist_1846 ; // L31 + 2304. * __clist_1846 = __ch_1849 ; // L32 ^ - 3459. } - 3460. } + 2305. } + 2306. } Found 2 issues diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/cf1f2ace391.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/cf1f2ace391.desugared.c index 13c955c9..952f1d2f 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/cf1f2ace391.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/cf1f2ace391.desugared.c @@ -7,482 +7,247 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_1864; -extern const bool __static_condition_default_2140; -extern const bool __static_condition_default_2245; -extern const bool __static_condition_default_1151; -extern const bool __static_condition_default_1316; -extern const bool __static_condition_default_1356; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_1824; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_1158; -extern const bool __static_condition_default_386; -extern const bool __static_condition_default_1165; -extern const bool __static_condition_default_2217; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_769; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_1933; -extern const bool __static_condition_default_2266; -extern const bool __static_condition_default_1332; -extern const bool __static_condition_default_1977; -extern const bool __static_condition_default_907; -extern const bool __static_condition_default_1212; -extern const bool __static_condition_default_1861; -extern const bool __static_condition_default_2007; -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_1262; -extern const bool __static_condition_default_1843; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_2120; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_761; -extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_408; -extern const bool __static_condition_default_2304; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_1171; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_2405; -extern const bool __static_condition_default_1308; -extern const bool __static_condition_default_638; -extern const bool __static_condition_default_894; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_412; -extern const bool __static_condition_default_512; -extern const bool __static_condition_default_2507; -extern const bool __static_condition_default_1237; -extern const bool __static_condition_default_887; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_53; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_1412; -extern const bool __static_condition_default_388; -extern const bool __static_condition_default_2123; -extern const bool __static_condition_default_787; -extern const bool __static_condition_default_2215; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_1802; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_1384; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_2143; -extern const bool __static_condition_default_875; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_957; -extern const bool __static_condition_default_217; -extern const bool __static_condition_default_1936; -extern const bool __static_condition_default_1985; -extern const bool __static_condition_default_2396; -extern const bool __static_condition_default_1834; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_2001; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_2260; -extern const bool __static_condition_default_1304; -extern const bool __static_condition_default_2176; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_632; -extern const bool __static_condition_default_1292; -extern const bool __static_condition_default_1311; -extern const bool __static_condition_default_198; +extern const bool __static_condition_default_1913; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_1766; +extern const bool __static_condition_default_1791; +extern const bool __static_condition_default_954; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_784; +extern const bool __static_condition_default_1921; +extern const bool __static_condition_default_451; +extern const bool __static_condition_default_320; +extern const bool __static_condition_default_961; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_343; +extern const bool __static_condition_default_300; +extern const bool __static_condition_default_496; +extern const bool __static_condition_default_579; +extern const bool __static_condition_default_790; +extern const bool __static_condition_default_495; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_254; +extern const bool __static_condition_default_470; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_304; +extern const bool __static_condition_default_820; +extern const bool __static_condition_default_1093; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_1909; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_517; +extern const bool __static_condition_default_933; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_448; +extern const bool __static_condition_default_118; +extern const bool __static_condition_default_641; +extern const bool __static_condition_default_459; +extern const bool __static_condition_default_234; +extern const bool __static_condition_default_421; +extern const bool __static_condition_default_551; +extern const bool __static_condition_default_501; +extern const bool __static_condition_default_893; +extern const bool __static_condition_default_308; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_969; +extern const bool __static_condition_default_1083; +extern const bool __static_condition_default_941; +extern const bool __static_condition_default_718; +extern const bool __static_condition_default_680; +extern const bool __static_condition_default_379; extern const bool __static_condition_default_235; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_1231; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_1215; -extern const bool __static_condition_default_2311; -extern const bool __static_condition_default_402; -extern const bool __static_condition_default_793; -extern const bool __static_condition_default_955; -extern const bool __static_condition_default_1307; -extern const bool __static_condition_default_357; -extern const bool __static_condition_default_2205; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_313; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_1288; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_914; -extern const bool __static_condition_default_1230; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_2268; -extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_290; -extern const bool __static_condition_default_315; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_1323; -extern const bool __static_condition_default_2512; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_646; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_1214; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_2173; -extern const bool __static_condition_default_1827; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_2339; -extern const bool __static_condition_default_333; extern const bool __static_condition_default_393; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_1253; -extern const bool __static_condition_default_1927; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_2203; -extern const bool __static_condition_default_963; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_846; -extern const bool __static_condition_default_1986; -extern const bool __static_condition_default_670; -extern const bool __static_condition_default_543; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_491; +extern const bool __static_condition_default_1734; +extern const bool __static_condition_default_457; +extern const bool __static_condition_default_1779; +extern const bool __static_condition_default_318; +extern const bool __static_condition_default_696; +extern const bool __static_condition_default_332; +extern const bool __static_condition_default_256; +extern const bool __static_condition_default_429; +extern const bool __static_condition_default_374; +extern const bool __static_condition_default_1071; +extern const bool __static_condition_default_507; +extern const bool __static_condition_default_567; +extern const bool __static_condition_default_707; +extern const bool __static_condition_default_400; +extern const bool __static_condition_default_881; +extern const bool __static_condition_default_889; +extern const bool __static_condition_default_1593; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_500; +extern const bool __static_condition_default_739; +extern const bool __static_condition_default_639; +extern const bool __static_condition_default_1915; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_1756; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_905; +extern const bool __static_condition_default_1018; +extern const bool __static_condition_default_1914; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_870; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_232; +extern const bool __static_condition_default_370; +extern const bool __static_condition_default_326; +extern const bool __static_condition_default_508; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_1813; +extern const bool __static_condition_default_627; +extern const bool __static_condition_default_533; +extern const bool __static_condition_default_161; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_1606; +extern const bool __static_condition_default_226; +extern const bool __static_condition_default_798; +extern const bool __static_condition_default_642; +extern const bool __static_condition_default_648; +extern const bool __static_condition_default_999; +extern const bool __static_condition_default_794; +extern const bool __static_condition_default_948; +extern const bool __static_condition_default_1911; +extern const bool __static_condition_default_603; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_294; +extern const bool __static_condition_default_330; +extern const bool __static_condition_default_976; +extern const bool __static_condition_default_165; +extern const bool __static_condition_default_482; +extern const bool __static_condition_default_716; +extern const bool __static_condition_default_953; +extern const bool __static_condition_default_381; extern const bool __static_condition_default_788; -extern const bool __static_condition_default_461; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_1141; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_842; -extern const bool __static_condition_default_747; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_701; -extern const bool __static_condition_default_780; -extern const bool __static_condition_default_2236; -extern const bool __static_condition_default_2340; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_2204; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_1984; -extern const bool __static_condition_default_891; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_1250; -extern const bool __static_condition_default_2258; -extern const bool __static_condition_default_1152; -extern const bool __static_condition_default_753; -extern const bool __static_condition_default_1930; -extern const bool __static_condition_default_1289; -extern const bool __static_condition_default_1314; -extern const bool __static_condition_default_1199; -extern const bool __static_condition_default_1885; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_1329; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_1796; -extern const bool __static_condition_default_1238; -extern const bool __static_condition_default_1906; -extern const bool __static_condition_default_1903; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_1263; -extern const bool __static_condition_default_1239; -extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_1251; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_1290; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_540; +extern const bool __static_condition_default_1006; +extern const bool __static_condition_default_962; +extern const bool __static_condition_default_227; +extern const bool __static_condition_default_310; +extern const bool __static_condition_default_906; +extern const bool __static_condition_default_577; +extern const bool __static_condition_default_349; +extern const bool __static_condition_default_225; +extern const bool __static_condition_default_502; +extern const bool __static_condition_default_904; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_595; +extern const bool __static_condition_default_336; extern const bool __static_condition_default_249; -extern const bool __static_condition_default_685; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_1285; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_2008; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_2202; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_1891; -extern const bool __static_condition_default_1870; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_2002; -extern const bool __static_condition_default_613; -extern const bool __static_condition_default_1918; -extern const bool __static_condition_default_1921; -extern const bool __static_condition_default_1328; -extern const bool __static_condition_default_1168; +extern const bool __static_condition_default_588; +extern const bool __static_condition_default_1095; +extern const bool __static_condition_default_358; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_1741; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_778; +extern const bool __static_condition_default_1910; +extern const bool __static_condition_default_236; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_992; +extern const bool __static_condition_default_983; +extern const bool __static_condition_default_556; +extern const bool __static_condition_default_968; +extern const bool __static_condition_default_935; extern const bool __static_condition_default_817; -extern const bool __static_condition_default_1219; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_1293; -extern const bool __static_condition_default_1846; -extern const bool __static_condition_default_2302; -extern const bool __static_condition_default_2303; -extern const bool __static_condition_default_1291; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_1261; -extern const bool __static_condition_default_1155; -extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_1840; -extern const bool __static_condition_default_2194; -extern const bool __static_condition_default_803; -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_1213; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_2235; -extern const bool __static_condition_default_1280; -extern const bool __static_condition_default_549; -extern const bool __static_condition_default_568; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_702; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_2137; -extern const bool __static_condition_default_2388; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_1321; -extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_586; +extern const bool __static_condition_default_729; +extern const bool __static_condition_default_1762; +extern const bool __static_condition_default_1806; extern const bool __static_condition_default_538; -extern const bool __static_condition_default_2191; -extern const bool __static_condition_default_848; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_2223; -extern const bool __static_condition_default_1978; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_2281; -extern const bool __static_condition_default_2349; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_1260; -extern const bool __static_condition_default_2238; -extern const bool __static_condition_default_488; -extern const bool __static_condition_default_1882; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_2246; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_789; -extern const bool __static_condition_default_1222; -extern const bool __static_condition_default_1305; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_1282; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_1220; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_583; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_1831; -extern const bool __static_condition_default_382; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_1258; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_1979; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_1320; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_1255; -extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_2389; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_1254; -extern const bool __static_condition_default_536; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_1319; +extern const bool __static_condition_default_328; +extern const bool __static_condition_default_610; +extern const bool __static_condition_default_882; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_688; extern const bool __static_condition_default_661; -extern const bool __static_condition_default_1240; -extern const bool __static_condition_default_2192; -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_2126; -extern const bool __static_condition_default_367; -extern const bool __static_condition_default_347; -extern const bool __static_condition_default_419; -extern const bool __static_condition_default_677; -extern const bool __static_condition_default_1283; -extern const bool __static_condition_default_1849; -extern const bool __static_condition_default_590; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_872; -extern const bool __static_condition_default_1331; -extern const bool __static_condition_default_1900; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_2278; -extern const bool __static_condition_default_1368; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_1284; -extern const bool __static_condition_default_2218; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_1330; -extern const bool __static_condition_default_2267; -extern const bool __static_condition_default_559; -extern const bool __static_condition_default_1303; -extern const bool __static_condition_default_2411; -extern const bool __static_condition_default_2508; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_1409; -extern const bool __static_condition_default_2406; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_1162; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_2289; -extern const bool __static_condition_default_1315; -extern const bool __static_condition_default_2146; -extern const bool __static_condition_default_1306; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_2312; -extern const bool __static_condition_default_2265; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_2117; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_2280; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_2313; -extern const bool __static_condition_default_1371; -extern const bool __static_condition_default_1873; -extern const bool __static_condition_default_2513; -extern const bool __static_condition_default_709; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_2248; -extern const bool __static_condition_default_2247; +extern const bool __static_condition_default_1745; +extern const bool __static_condition_default_1751; +extern const bool __static_condition_default_977; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_1017; +extern const bool __static_condition_default_898; +extern const bool __static_condition_default_1773; +extern const bool __static_condition_default_528; +extern const bool __static_condition_default_74; +extern const bool __static_condition_default_706; extern const bool __static_condition_default_433; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_1202; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_2216; -extern const bool __static_condition_default_1799; -extern const bool __static_condition_default_2314; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_1259; -extern const bool __static_condition_default_1381; -extern const bool __static_condition_default_2259; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_956; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_2237; -extern const bool __static_condition_default_2257; -extern const bool __static_condition_default_1939; +extern const bool __static_condition_default_446; +extern const bool __static_condition_default_804; +extern const bool __static_condition_default_672; +extern const bool __static_condition_default_453; +extern const bool __static_condition_default_1908; +extern const bool __static_condition_default_719; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_1060; +extern const bool __static_condition_default_766; +extern const bool __static_condition_default_833; +extern const bool __static_condition_default_917; +extern const bool __static_condition_default_1054; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_1728; +extern const bool __static_condition_default_435; +extern const bool __static_condition_default_749; +extern const bool __static_condition_default_575; +extern const bool __static_condition_default_162; +extern const bool __static_condition_default_474; +extern const bool __static_condition_default_605; +extern const bool __static_condition_default_626; +extern const bool __static_condition_default_394; +extern const bool __static_condition_default_694; +extern const bool __static_condition_default_708; extern const bool __static_condition_default_431; -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_693; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_1324; -extern const bool __static_condition_default_858; -extern const bool __static_condition_default_1999; -extern const bool __static_condition_default_1394; -extern const bool __static_condition_default_1909; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_1894; -extern const bool __static_condition_default_2279; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_248; -extern const bool __static_condition_default_2305; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_2226; -extern const bool __static_condition_default_2509; -extern const bool __static_condition_default_1281; -extern const bool __static_condition_default_1160; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_929; -extern const bool __static_condition_default_76; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_1815; -extern const bool __static_condition_default_1327; -extern const bool __static_condition_default_438; -extern const bool __static_condition_default_204; -extern const bool __static_condition_default_1313; -extern const bool __static_condition_default_2000; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_1983; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_1221; -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_380; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_779; -extern const bool __static_condition_default_2005; -extern const bool __static_condition_default_311; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_2291; +extern const bool __static_condition_default_449; +extern const bool __static_condition_default_338; +extern const bool __static_condition_default_351; +extern const bool __static_condition_default_695; +extern const bool __static_condition_default_714; extern const bool __static_condition_default_510; -extern const bool __static_condition_default_1397; -extern const bool __static_condition_default_1350; -extern const bool __static_condition_default_2224; -extern const bool __static_condition_default_2179; -extern const bool __static_condition_default_187; -extern const bool __static_condition_default_755; -extern const bool __static_condition_default_2193; -extern const bool __static_condition_default_1852; -extern const bool __static_condition_default_2519; -extern const bool __static_condition_default_521; -extern const bool __static_condition_default_1322; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_2290; -extern const bool __static_condition_default_645; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_2292; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_317; -extern const bool __static_condition_default_2225; -extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_1148; -extern const bool __static_condition_default_1252; -extern const bool __static_condition_default_1980; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_2155; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_564; -extern const bool __static_condition_default_2170; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_1312; -extern const bool __static_condition_default_1232; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_2006; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_1233; +extern const bool __static_condition_default_612; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_276; +extern const bool __static_condition_default_720; +extern const bool __static_condition_default_640; +extern const bool __static_condition_default_562; +extern const bool __static_condition_default_772; +extern const bool __static_condition_default_1591; +extern const bool __static_condition_default_1063; +extern const bool __static_condition_default_762; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_774; +extern const bool __static_condition_default_1069; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_624; +extern const bool __static_condition_default_984; +extern const bool __static_condition_default_1786; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_1604; +extern const bool __static_condition_default_855; +extern const bool __static_condition_default_480; +extern const bool __static_condition_default_743; +extern const bool __static_condition_default_931; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_733; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_356; +extern const bool __static_condition_default_230; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_454; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_655; +extern const bool __static_condition_default_1707; +extern const bool __static_condition_default_924; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -534,1138 +299,709 @@ __static_renaming("____ssize_t_49", "__ssize_t"); __static_renaming("____syscall_slong_t_50", "__syscall_slong_t"); __static_renaming("____syscall_ulong_t_51", "__syscall_ulong_t"); __static_renaming("____loff_t_52", "__loff_t"); -__static_renaming("____qaddr_t_54", "__qaddr_t"); -__static_renaming("____caddr_t_55", "__caddr_t"); -__static_renaming("____intptr_t_56", "__intptr_t"); -__static_renaming("____socklen_t_57", "__socklen_t"); -__static_renaming("__FILE_59", "FILE"); -__static_renaming("____FILE_60", "__FILE"); -__static_renaming("____mbstate_t_69", "__mbstate_t"); -__static_renaming("___G_fpos_t_77", "_G_fpos_t"); -__static_renaming("___G_fpos64_t_85", "_G_fpos64_t"); -__static_renaming("____gnuc_va_list_86", "__gnuc_va_list"); -__static_renaming("___IO_lock_t_88", "_IO_lock_t"); -__static_renaming("___IO_FILE_171", "_IO_FILE"); -__static_renaming("___IO_FILE_172", "_IO_FILE"); -__static_renaming("___IO_2_1_stdin__175", "_IO_2_1_stdin_"); -__static_renaming("___IO_2_1_stdout__176", "_IO_2_1_stdout_"); -__static_renaming("___IO_2_1_stderr__177", "_IO_2_1_stderr_"); -__static_renaming("____io_read_fn_181", "__io_read_fn"); -__static_renaming("____io_write_fn_186", "__io_write_fn"); -__static_renaming("____io_seek_fn_192", "__io_seek_fn"); -__static_renaming("____io_close_fn_195", "__io_close_fn"); -__static_renaming("____underflow_196", "__underflow"); -__static_renaming("____underflow_197", "__underflow"); -__static_renaming("____uflow_199", "__uflow"); -__static_renaming("____uflow_200", "__uflow"); -__static_renaming("____overflow_202", "__overflow"); -__static_renaming("____overflow_203", "__overflow"); -__static_renaming("___IO_getc_208", "_IO_getc"); -__static_renaming("___IO_getc_209", "_IO_getc"); -__static_renaming("___IO_putc_215", "_IO_putc"); -__static_renaming("___IO_putc_216", "_IO_putc"); -__static_renaming("___IO_feof_221", "_IO_feof"); -__static_renaming("___IO_feof_222", "_IO_feof"); -__static_renaming("___IO_ferror_227", "_IO_ferror"); -__static_renaming("___IO_ferror_228", "_IO_ferror"); -__static_renaming("___IO_peekc_locked_233", "_IO_peekc_locked"); -__static_renaming("___IO_peekc_locked_234", "_IO_peekc_locked"); -__static_renaming("___IO_flockfile_236", "_IO_flockfile"); -__static_renaming("___IO_flockfile_237", "_IO_flockfile"); -__static_renaming("___IO_funlockfile_239", "_IO_funlockfile"); -__static_renaming("___IO_funlockfile_240", "_IO_funlockfile"); -__static_renaming("___IO_ftrylockfile_242", "_IO_ftrylockfile"); -__static_renaming("___IO_ftrylockfile_243", "_IO_ftrylockfile"); -__static_renaming("___IO_vfscanf_245", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_247", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_251", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_252", "_IO_vfscanf"); -__static_renaming("___IO_vfprintf_254", "_IO_vfprintf"); -__static_renaming("___IO_vfprintf_256", "_IO_vfprintf"); -__static_renaming("___IO_vfprintf_260", "_IO_vfprintf"); -__static_renaming("___IO_padn_261", "_IO_padn"); -__static_renaming("___IO_padn_262", "_IO_padn"); -__static_renaming("___IO_sgetn_265", "_IO_sgetn"); -__static_renaming("___IO_sgetn_266", "_IO_sgetn"); -__static_renaming("___IO_seekoff_268", "_IO_seekoff"); -__static_renaming("___IO_seekoff_269", "_IO_seekoff"); -__static_renaming("___IO_seekpos_272", "_IO_seekpos"); -__static_renaming("___IO_seekpos_273", "_IO_seekpos"); -__static_renaming("___IO_free_backup_area_276", "_IO_free_backup_area"); -__static_renaming("___IO_free_backup_area_277", "_IO_free_backup_area"); -__static_renaming("__va_list_279", "va_list"); -__static_renaming("__off_t_281", "off_t"); -__static_renaming("__off_t_283", "off_t"); -__static_renaming("__ssize_t_285", "ssize_t"); -__static_renaming("__fpos_t_287", "fpos_t"); -__static_renaming("__fpos_t_289", "fpos_t"); -__static_renaming("__stdin_291", "stdin"); -__static_renaming("__stdin_292", "stdin"); -__static_renaming("__stdout_294", "stdout"); -__static_renaming("__stdout_295", "stdout"); -__static_renaming("__stderr_297", "stderr"); -__static_renaming("__stderr_298", "stderr"); -__static_renaming("__remove_301", "remove"); -__static_renaming("__rename_304", "rename"); -__static_renaming("__renameat_309", "renameat"); -__static_renaming("__tmpfile_310", "tmpfile"); -__static_renaming("__tmpfile_312", "tmpfile"); -__static_renaming("__tmpfile_314", "tmpfile"); -__static_renaming("__tmpfile_316", "tmpfile"); -__static_renaming("__tmpnam_319", "tmpnam"); -__static_renaming("__tmpnam_320", "tmpnam"); -__static_renaming("__tmpnam_r_322", "tmpnam_r"); -__static_renaming("__tmpnam_r_323", "tmpnam_r"); -__static_renaming("__tempnam_326", "tempnam"); -__static_renaming("__tempnam_327", "tempnam"); -__static_renaming("__fclose_330", "fclose"); -__static_renaming("__fclose_332", "fclose"); -__static_renaming("__fflush_336", "fflush"); -__static_renaming("__fflush_unlocked_340", "fflush_unlocked"); -__static_renaming("__fopen_344", "fopen"); -__static_renaming("__fopen_346", "fopen"); -__static_renaming("__fopen_354", "fopen"); -__static_renaming("__fopen_356", "fopen"); -__static_renaming("__freopen_362", "freopen"); -__static_renaming("__freopen_364", "freopen"); -__static_renaming("__freopen_366", "freopen"); -__static_renaming("__freopen_368", "freopen"); -__static_renaming("__fdopen_372", "fdopen"); -__static_renaming("__fdopen_374", "fdopen"); -__static_renaming("__fmemopen_379", "fmemopen"); -__static_renaming("__fmemopen_381", "fmemopen"); -__static_renaming("__open_memstream_385", "open_memstream"); -__static_renaming("__open_memstream_387", "open_memstream"); -__static_renaming("__setbuf_392", "setbuf"); -__static_renaming("__setbuf_394", "setbuf"); -__static_renaming("__setvbuf_401", "setvbuf"); -__static_renaming("__setbuffer_407", "setbuffer"); -__static_renaming("__setlinebuf_411", "setlinebuf"); -__static_renaming("__fprintf_416", "fprintf"); -__static_renaming("__fprintf_418", "fprintf"); -__static_renaming("__printf_421", "printf"); -__static_renaming("__sprintf_424", "sprintf"); -__static_renaming("__vfprintf_430", "vfprintf"); -__static_renaming("__vprintf_437", "vprintf"); -__static_renaming("__vsprintf_443", "vsprintf"); -__static_renaming("__snprintf_448", "snprintf"); -__static_renaming("__vsnprintf_454", "vsnprintf"); -__static_renaming("__vdprintf_460", "vdprintf"); -__static_renaming("__dprintf_464", "dprintf"); -__static_renaming("__fscanf_468", "fscanf"); -__static_renaming("__fscanf_470", "fscanf"); -__static_renaming("__fscanf_472", "fscanf"); -__static_renaming("__fscanf_474", "fscanf"); -__static_renaming("__scanf_477", "scanf"); -__static_renaming("__scanf_478", "scanf"); -__static_renaming("__sscanf_481", "sscanf"); -__static_renaming("__vfscanf_509", "vfscanf"); -__static_renaming("__vfscanf_513", "vfscanf"); -__static_renaming("__vscanf_520", "vscanf"); -__static_renaming("__vscanf_522", "vscanf"); -__static_renaming("__vsscanf_528", "vsscanf"); -__static_renaming("__fgetc_563", "fgetc"); -__static_renaming("__getc_567", "getc"); -__static_renaming("__getchar_569", "getchar"); -__static_renaming("__getc_unlocked_572", "getc_unlocked"); -__static_renaming("__getchar_unlocked_574", "getchar_unlocked"); -__static_renaming("__fgetc_unlocked_577", "fgetc_unlocked"); -__static_renaming("__fputc_582", "fputc"); -__static_renaming("__fputc_584", "fputc"); -__static_renaming("__putc_589", "putc"); -__static_renaming("__putchar_592", "putchar"); -__static_renaming("__fputc_unlocked_596", "fputc_unlocked"); -__static_renaming("__putc_unlocked_601", "putc_unlocked"); -__static_renaming("__putchar_unlocked_604", "putchar_unlocked"); -__static_renaming("__getw_607", "getw"); -__static_renaming("__putw_612", "putw"); -__static_renaming("__fgets_618", "fgets"); -__static_renaming("__fgets_620", "fgets"); -__static_renaming("__fgets_622", "fgets"); -__static_renaming("__fgets_624", "fgets"); -__static_renaming("____getdelim_631", "__getdelim"); -__static_renaming("____getdelim_635", "__getdelim"); -__static_renaming("__getdelim_644", "getdelim"); -__static_renaming("__getdelim_648", "getdelim"); -__static_renaming("__getline_656", "getline"); -__static_renaming("__getline_660", "getline"); -__static_renaming("__fputs_667", "fputs"); -__static_renaming("__fputs_669", "fputs"); -__static_renaming("__puts_672", "puts"); -__static_renaming("__ungetc_676", "ungetc"); -__static_renaming("__fseek_714", "fseek"); -__static_renaming("__fseek_716", "fseek"); -__static_renaming("__ftell_720", "ftell"); -__static_renaming("__ftell_722", "ftell"); -__static_renaming("__rewind_726", "rewind"); -__static_renaming("__fseeko_733", "fseeko"); -__static_renaming("__fseeko_744", "fseeko"); -__static_renaming("__ftello_750", "ftello"); -__static_renaming("__ftello_754", "ftello"); -__static_renaming("__ftello_758", "ftello"); -__static_renaming("__fgetpos_766", "fgetpos"); -__static_renaming("__fgetpos_778", "fgetpos"); -__static_renaming("__fsetpos_786", "fsetpos"); -__static_renaming("__fsetpos_790", "fsetpos"); -__static_renaming("__clearerr_796", "clearerr"); -__static_renaming("__feof_800", "feof"); -__static_renaming("__feof_802", "feof"); -__static_renaming("__ferror_806", "ferror"); -__static_renaming("__ferror_808", "ferror"); -__static_renaming("__clearerr_unlocked_812", "clearerr_unlocked"); -__static_renaming("__feof_unlocked_816", "feof_unlocked"); -__static_renaming("__feof_unlocked_818", "feof_unlocked"); -__static_renaming("__ferror_unlocked_822", "ferror_unlocked"); -__static_renaming("__ferror_unlocked_824", "ferror_unlocked"); -__static_renaming("__perror_827", "perror"); -__static_renaming("__perror_828", "perror"); -__static_renaming("__sys_nerr_829", "sys_nerr"); -__static_renaming("__sys_errlist_830", "sys_errlist"); -__static_renaming("__fileno_833", "fileno"); -__static_renaming("__fileno_835", "fileno"); -__static_renaming("__fileno_unlocked_839", "fileno_unlocked"); -__static_renaming("__fileno_unlocked_841", "fileno_unlocked"); -__static_renaming("__popen_845", "popen"); -__static_renaming("__popen_847", "popen"); -__static_renaming("__pclose_851", "pclose"); -__static_renaming("__ctermid_854", "ctermid"); -__static_renaming("__flockfile_857", "flockfile"); -__static_renaming("__ftrylockfile_861", "ftrylockfile"); -__static_renaming("__ftrylockfile_863", "ftrylockfile"); -__static_renaming("__funlockfile_867", "funlockfile"); -__static_renaming("____sprintf_chk_899", "__sprintf_chk"); -__static_renaming("____vsprintf_chk_906", "__vsprintf_chk"); -__static_renaming("____snprintf_chk_920", "__snprintf_chk"); -__static_renaming("____vsnprintf_chk_928", "__vsnprintf_chk"); -__static_renaming("____fprintf_chk_943", "__fprintf_chk"); -__static_renaming("____printf_chk_947", "__printf_chk"); -__static_renaming("____vfprintf_chk_954", "__vfprintf_chk"); -__static_renaming("____vprintf_chk_962", "__vprintf_chk"); -__static_renaming("____dprintf_chk_984", "__dprintf_chk"); -__static_renaming("____vdprintf_chk_990", "__vdprintf_chk"); -__static_renaming("____fgets_chk_1004", "__fgets_chk"); -__static_renaming("____fgets_chk_1006", "__fgets_chk"); -__static_renaming("____fgets_chk_1008", "__fgets_chk"); -__static_renaming("____fgets_alias_1014", "__fgets_alias"); -__static_renaming("____fgets_chk_warn_1021", "__fgets_chk_warn"); -__static_renaming("____cnt_1087", "__cnt"); -__static_renaming("____cptr_1088", "__cptr"); -__static_renaming("____u_char_1090", "__u_char"); -__static_renaming("____u_short_1091", "__u_short"); -__static_renaming("____u_int_1092", "__u_int"); -__static_renaming("____u_long_1093", "__u_long"); -__static_renaming("____int8_t_1094", "__int8_t"); -__static_renaming("____uint8_t_1095", "__uint8_t"); -__static_renaming("____int16_t_1096", "__int16_t"); -__static_renaming("____uint16_t_1097", "__uint16_t"); -__static_renaming("____int32_t_1098", "__int32_t"); -__static_renaming("____uint32_t_1099", "__uint32_t"); -__static_renaming("____int64_t_1100", "__int64_t"); -__static_renaming("____uint64_t_1101", "__uint64_t"); -__static_renaming("____quad_t_1102", "__quad_t"); -__static_renaming("____u_quad_t_1103", "__u_quad_t"); -__static_renaming("____dev_t_1104", "__dev_t"); -__static_renaming("____uid_t_1105", "__uid_t"); -__static_renaming("____gid_t_1106", "__gid_t"); -__static_renaming("____ino_t_1107", "__ino_t"); -__static_renaming("____ino64_t_1108", "__ino64_t"); -__static_renaming("____mode_t_1109", "__mode_t"); -__static_renaming("____nlink_t_1110", "__nlink_t"); -__static_renaming("____off_t_1111", "__off_t"); -__static_renaming("____off64_t_1112", "__off64_t"); -__static_renaming("____pid_t_1113", "__pid_t"); -__static_renaming("____fsid_t_1117", "__fsid_t"); -__static_renaming("____clock_t_1118", "__clock_t"); -__static_renaming("____rlim_t_1119", "__rlim_t"); -__static_renaming("____rlim64_t_1120", "__rlim64_t"); -__static_renaming("____id_t_1121", "__id_t"); -__static_renaming("____time_t_1122", "__time_t"); -__static_renaming("____useconds_t_1123", "__useconds_t"); -__static_renaming("____suseconds_t_1124", "__suseconds_t"); -__static_renaming("____daddr_t_1125", "__daddr_t"); -__static_renaming("____key_t_1126", "__key_t"); -__static_renaming("____clockid_t_1127", "__clockid_t"); -__static_renaming("____timer_t_1128", "__timer_t"); -__static_renaming("____blksize_t_1129", "__blksize_t"); -__static_renaming("____blkcnt_t_1130", "__blkcnt_t"); -__static_renaming("____blkcnt64_t_1131", "__blkcnt64_t"); -__static_renaming("____fsblkcnt_t_1132", "__fsblkcnt_t"); -__static_renaming("____fsblkcnt64_t_1133", "__fsblkcnt64_t"); -__static_renaming("____fsfilcnt_t_1134", "__fsfilcnt_t"); -__static_renaming("____fsfilcnt64_t_1135", "__fsfilcnt64_t"); -__static_renaming("____fsword_t_1136", "__fsword_t"); -__static_renaming("____ssize_t_1137", "__ssize_t"); -__static_renaming("____syscall_slong_t_1138", "__syscall_slong_t"); -__static_renaming("____syscall_ulong_t_1139", "__syscall_ulong_t"); -__static_renaming("____loff_t_1140", "__loff_t"); -__static_renaming("____qaddr_t_1142", "__qaddr_t"); -__static_renaming("____caddr_t_1143", "__caddr_t"); -__static_renaming("____intptr_t_1144", "__intptr_t"); -__static_renaming("____socklen_t_1145", "__socklen_t"); -__static_renaming("__ssize_t_1146", "ssize_t"); -__static_renaming("__ssize_t_1147", "ssize_t"); -__static_renaming("__ptrdiff_t_1149", "ptrdiff_t"); -__static_renaming("__size_t_1150", "size_t"); -__static_renaming("__gid_t_1153", "gid_t"); -__static_renaming("__gid_t_1154", "gid_t"); -__static_renaming("__uid_t_1156", "uid_t"); -__static_renaming("__uid_t_1157", "uid_t"); -__static_renaming("__off_t_1159", "off_t"); -__static_renaming("__off_t_1161", "off_t"); -__static_renaming("__useconds_t_1163", "useconds_t"); -__static_renaming("__useconds_t_1164", "useconds_t"); -__static_renaming("__pid_t_1166", "pid_t"); -__static_renaming("__pid_t_1167", "pid_t"); -__static_renaming("__pid_t_1169", "pid_t"); -__static_renaming("__pid_t_1170", "pid_t"); -__static_renaming("__intptr_t_1172", "intptr_t"); -__static_renaming("__intptr_t_1173", "intptr_t"); -__static_renaming("__socklen_t_1174", "socklen_t"); -__static_renaming("__socklen_t_1175", "socklen_t"); -__static_renaming("__access_1178", "access"); -__static_renaming("__access_1179", "access"); -__static_renaming("__access_1180", "access"); -__static_renaming("__faccessat_1185", "faccessat"); -__static_renaming("__faccessat_1186", "faccessat"); -__static_renaming("__lseek_1197", "lseek"); -__static_renaming("__lseek_1198", "lseek"); -__static_renaming("__lseek_1200", "lseek"); -__static_renaming("__lseek_1201", "lseek"); -__static_renaming("__close_1204", "close"); -__static_renaming("__read_1209", "read"); -__static_renaming("__read_1210", "read"); -__static_renaming("__read_1211", "read"); -__static_renaming("__read_1216", "read"); -__static_renaming("__read_1217", "read"); -__static_renaming("__read_1218", "read"); -__static_renaming("__write_1227", "write"); -__static_renaming("__write_1228", "write"); -__static_renaming("__write_1229", "write"); -__static_renaming("__write_1234", "write"); -__static_renaming("__write_1235", "write"); -__static_renaming("__write_1236", "write"); -__static_renaming("__pread_1248", "pread"); -__static_renaming("__pread_1249", "pread"); -__static_renaming("__pread_1256", "pread"); -__static_renaming("__pread_1257", "pread"); -__static_renaming("__pread_1278", "pread"); -__static_renaming("__pread_1279", "pread"); -__static_renaming("__pread_1286", "pread"); -__static_renaming("__pread_1287", "pread"); -__static_renaming("__pwrite_1301", "pwrite"); -__static_renaming("__pwrite_1302", "pwrite"); -__static_renaming("__pwrite_1309", "pwrite"); -__static_renaming("__pwrite_1310", "pwrite"); -__static_renaming("__pwrite_1317", "pwrite"); -__static_renaming("__pwrite_1318", "pwrite"); -__static_renaming("__pwrite_1325", "pwrite"); -__static_renaming("__pwrite_1326", "pwrite"); -__static_renaming("__pipe_1334", "pipe"); -__static_renaming("__pipe_1335", "pipe"); -__static_renaming("__pipe_1336", "pipe"); -__static_renaming("__pipe_1337", "pipe"); -__static_renaming("__alarm_1339", "alarm"); -__static_renaming("__sleep_1341", "sleep"); -__static_renaming("__ualarm_1348", "ualarm"); -__static_renaming("__ualarm_1349", "ualarm"); -__static_renaming("__usleep_1354", "usleep"); -__static_renaming("__usleep_1355", "usleep"); -__static_renaming("__pause_1357", "pause"); -__static_renaming("__pause_1358", "pause"); -__static_renaming("__chown_1366", "chown"); -__static_renaming("__chown_1367", "chown"); -__static_renaming("__chown_1369", "chown"); -__static_renaming("__chown_1370", "chown"); -__static_renaming("__fchown_1379", "fchown"); -__static_renaming("__fchown_1380", "fchown"); -__static_renaming("__fchown_1382", "fchown"); -__static_renaming("__fchown_1383", "fchown"); -__static_renaming("__lchown_1392", "lchown"); -__static_renaming("__lchown_1393", "lchown"); -__static_renaming("__lchown_1395", "lchown"); -__static_renaming("__lchown_1396", "lchown"); -__static_renaming("__fchownat_1407", "fchownat"); -__static_renaming("__fchownat_1408", "fchownat"); -__static_renaming("__fchownat_1410", "fchownat"); -__static_renaming("__fchownat_1411", "fchownat"); -__static_renaming("__chdir_1414", "chdir"); -__static_renaming("__chdir_1415", "chdir"); -__static_renaming("__chdir_1416", "chdir"); -__static_renaming("__chdir_1417", "chdir"); -__static_renaming("__fchdir_1419", "fchdir"); -__static_renaming("__fchdir_1420", "fchdir"); -__static_renaming("__getcwd_1424", "getcwd"); -__static_renaming("__getcwd_1425", "getcwd"); -__static_renaming("__getcwd_1426", "getcwd"); -__static_renaming("__getcwd_1427", "getcwd"); -__static_renaming("__getcwd_1428", "getcwd"); -__static_renaming("__getcwd_1429", "getcwd"); -__static_renaming("__getcwd_1430", "getcwd"); -__static_renaming("__getcwd_1431", "getcwd"); -__static_renaming("__getwd_1433", "getwd"); -__static_renaming("__getwd_1434", "getwd"); -__static_renaming("__dup_1436", "dup"); -__static_renaming("__dup_1437", "dup"); -__static_renaming("__dup_1438", "dup"); -__static_renaming("__dup_1439", "dup"); -__static_renaming("__dup2_1442", "dup2"); -__static_renaming("____environ_1443", "__environ"); -__static_renaming("__execve_1447", "execve"); -__static_renaming("__fexecve_1451", "fexecve"); -__static_renaming("__execv_1454", "execv"); -__static_renaming("__execv_1455", "execv"); -__static_renaming("__execle_1458", "execle"); -__static_renaming("__execl_1461", "execl"); -__static_renaming("__execvp_1464", "execvp"); -__static_renaming("__execlp_1467", "execlp"); -__static_renaming("__nice_1469", "nice"); -__static_renaming("__nice_1470", "nice"); -__static_renaming("___exit_1472", "_exit"); -__static_renaming("___exit_1473", "_exit"); -__static_renaming("__pathconf_1782", "pathconf"); -__static_renaming("__fpathconf_1785", "fpathconf"); -__static_renaming("__sysconf_1787", "sysconf"); -__static_renaming("__confstr_1792", "confstr"); -__static_renaming("__confstr_1793", "confstr"); -__static_renaming("__getpid_1794", "getpid"); -__static_renaming("__getpid_1795", "getpid"); -__static_renaming("__getpid_1797", "getpid"); -__static_renaming("__getpid_1798", "getpid"); -__static_renaming("__getppid_1800", "getppid"); -__static_renaming("__getppid_1801", "getppid"); -__static_renaming("__getpgrp_1803", "getpgrp"); -__static_renaming("__getpgrp_1804", "getpgrp"); -__static_renaming("____getpgid_1808", "__getpgid"); -__static_renaming("____getpgid_1809", "__getpgid"); -__static_renaming("__getpgid_1813", "getpgid"); -__static_renaming("__getpgid_1814", "getpgid"); -__static_renaming("__setpgid_1822", "setpgid"); -__static_renaming("__setpgid_1823", "setpgid"); -__static_renaming("__setpgid_1825", "setpgid"); -__static_renaming("__setpgid_1826", "setpgid"); -__static_renaming("__setpgrp_1828", "setpgrp"); -__static_renaming("__setsid_1829", "setsid"); -__static_renaming("__setsid_1830", "setsid"); -__static_renaming("__setsid_1832", "setsid"); -__static_renaming("__setsid_1833", "setsid"); -__static_renaming("__getsid_1838", "getsid"); -__static_renaming("__getsid_1839", "getsid"); -__static_renaming("__getuid_1841", "getuid"); -__static_renaming("__getuid_1842", "getuid"); -__static_renaming("__getuid_1844", "getuid"); -__static_renaming("__getuid_1845", "getuid"); -__static_renaming("__geteuid_1847", "geteuid"); -__static_renaming("__geteuid_1848", "geteuid"); -__static_renaming("__getgid_1850", "getgid"); -__static_renaming("__getgid_1851", "getgid"); -__static_renaming("__getegid_1853", "getegid"); -__static_renaming("__getegid_1854", "getegid"); -__static_renaming("__getgroups_1859", "getgroups"); -__static_renaming("__getgroups_1860", "getgroups"); -__static_renaming("__getgroups_1862", "getgroups"); -__static_renaming("__getgroups_1863", "getgroups"); -__static_renaming("__setuid_1868", "setuid"); -__static_renaming("__setuid_1869", "setuid"); -__static_renaming("__setuid_1871", "setuid"); -__static_renaming("__setuid_1872", "setuid"); -__static_renaming("__setreuid_1880", "setreuid"); -__static_renaming("__setreuid_1881", "setreuid"); -__static_renaming("__setreuid_1883", "setreuid"); -__static_renaming("__setreuid_1884", "setreuid"); -__static_renaming("__seteuid_1889", "seteuid"); -__static_renaming("__seteuid_1890", "seteuid"); -__static_renaming("__seteuid_1892", "seteuid"); -__static_renaming("__seteuid_1893", "seteuid"); -__static_renaming("__setgid_1898", "setgid"); -__static_renaming("__setgid_1899", "setgid"); -__static_renaming("__setgid_1901", "setgid"); -__static_renaming("__setgid_1902", "setgid"); -__static_renaming("__setgid_1904", "setgid"); -__static_renaming("__setgid_1905", "setgid"); -__static_renaming("__setgid_1907", "setgid"); -__static_renaming("__setgid_1908", "setgid"); -__static_renaming("__setregid_1916", "setregid"); -__static_renaming("__setregid_1917", "setregid"); -__static_renaming("__setregid_1919", "setregid"); -__static_renaming("__setregid_1920", "setregid"); -__static_renaming("__setegid_1925", "setegid"); -__static_renaming("__setegid_1926", "setegid"); -__static_renaming("__setegid_1928", "setegid"); -__static_renaming("__setegid_1929", "setegid"); -__static_renaming("__fork_1931", "fork"); -__static_renaming("__fork_1932", "fork"); -__static_renaming("__fork_1934", "fork"); -__static_renaming("__fork_1935", "fork"); -__static_renaming("__vfork_1937", "vfork"); -__static_renaming("__vfork_1938", "vfork"); -__static_renaming("__ttyname_1941", "ttyname"); -__static_renaming("__ttyname_1942", "ttyname"); -__static_renaming("__ttyname_r_1947", "ttyname_r"); -__static_renaming("__ttyname_r_1948", "ttyname_r"); -__static_renaming("__ttyname_r_1949", "ttyname_r"); -__static_renaming("__ttyname_r_1950", "ttyname_r"); -__static_renaming("__isatty_1952", "isatty"); -__static_renaming("__ttyslot_1953", "ttyslot"); -__static_renaming("__link_1956", "link"); -__static_renaming("__link_1957", "link"); -__static_renaming("__link_1958", "link"); -__static_renaming("__link_1959", "link"); -__static_renaming("__linkat_1965", "linkat"); -__static_renaming("__linkat_1966", "linkat"); -__static_renaming("__symlink_1969", "symlink"); -__static_renaming("__symlink_1970", "symlink"); -__static_renaming("__readlink_1975", "readlink"); -__static_renaming("__readlink_1976", "readlink"); -__static_renaming("__readlink_1981", "readlink"); -__static_renaming("__readlink_1982", "readlink"); -__static_renaming("__symlinkat_1990", "symlinkat"); -__static_renaming("__symlinkat_1991", "symlinkat"); -__static_renaming("__readlinkat_1997", "readlinkat"); -__static_renaming("__readlinkat_1998", "readlinkat"); -__static_renaming("__readlinkat_2003", "readlinkat"); -__static_renaming("__readlinkat_2004", "readlinkat"); -__static_renaming("__unlink_2010", "unlink"); -__static_renaming("__unlink_2011", "unlink"); -__static_renaming("__unlinkat_2015", "unlinkat"); -__static_renaming("__rmdir_2017", "rmdir"); -__static_renaming("__rmdir_2018", "rmdir"); -__static_renaming("__tcgetpgrp_2020", "tcgetpgrp"); -__static_renaming("__tcgetpgrp_2021", "tcgetpgrp"); -__static_renaming("__tcsetpgrp_2026", "tcsetpgrp"); -__static_renaming("__tcsetpgrp_2027", "tcsetpgrp"); -__static_renaming("__getlogin_2028", "getlogin"); -__static_renaming("__getlogin_r_2032", "getlogin_r"); -__static_renaming("__getlogin_r_2033", "getlogin_r"); -__static_renaming("__setlogin_2035", "setlogin"); -__static_renaming("__optarg_2036", "optarg"); -__static_renaming("__optind_2037", "optind"); -__static_renaming("__opterr_2038", "opterr"); -__static_renaming("__optopt_2039", "optopt"); -__static_renaming("__getopt_2043", "getopt"); -__static_renaming("__gethostname_2047", "gethostname"); -__static_renaming("__gethostname_2048", "gethostname"); -__static_renaming("__sethostname_2052", "sethostname"); -__static_renaming("__sethostname_2053", "sethostname"); -__static_renaming("__sethostname_2054", "sethostname"); -__static_renaming("__sethostname_2055", "sethostname"); -__static_renaming("__sethostid_2057", "sethostid"); -__static_renaming("__sethostid_2058", "sethostid"); -__static_renaming("__getdomainname_2062", "getdomainname"); -__static_renaming("__getdomainname_2063", "getdomainname"); -__static_renaming("__getdomainname_2064", "getdomainname"); -__static_renaming("__getdomainname_2065", "getdomainname"); -__static_renaming("__setdomainname_2069", "setdomainname"); -__static_renaming("__setdomainname_2070", "setdomainname"); -__static_renaming("__setdomainname_2071", "setdomainname"); -__static_renaming("__setdomainname_2072", "setdomainname"); -__static_renaming("__vhangup_2073", "vhangup"); -__static_renaming("__revoke_2075", "revoke"); -__static_renaming("__revoke_2076", "revoke"); -__static_renaming("__profil_2083", "profil"); -__static_renaming("__profil_2084", "profil"); -__static_renaming("__acct_2086", "acct"); -__static_renaming("__getusershell_2087", "getusershell"); -__static_renaming("__endusershell_2088", "endusershell"); -__static_renaming("__setusershell_2089", "setusershell"); -__static_renaming("__daemon_2092", "daemon"); -__static_renaming("__daemon_2093", "daemon"); -__static_renaming("__chroot_2095", "chroot"); -__static_renaming("__chroot_2096", "chroot"); -__static_renaming("__getpass_2098", "getpass"); -__static_renaming("__fsync_2100", "fsync"); -__static_renaming("__fsync_2101", "fsync"); -__static_renaming("__fsync_2102", "fsync"); -__static_renaming("__gethostid_2103", "gethostid"); -__static_renaming("__sync_2104", "sync"); -__static_renaming("__getpagesize_2105", "getpagesize"); -__static_renaming("__getdtablesize_2106", "getdtablesize"); -__static_renaming("__truncate_2115", "truncate"); -__static_renaming("__truncate_2116", "truncate"); -__static_renaming("__truncate_2118", "truncate"); -__static_renaming("__truncate_2119", "truncate"); -__static_renaming("__truncate_2121", "truncate"); -__static_renaming("__truncate_2122", "truncate"); -__static_renaming("__truncate_2124", "truncate"); -__static_renaming("__truncate_2125", "truncate"); -__static_renaming("__ftruncate_2135", "ftruncate"); -__static_renaming("__ftruncate_2136", "ftruncate"); -__static_renaming("__ftruncate_2138", "ftruncate"); -__static_renaming("__ftruncate_2139", "ftruncate"); -__static_renaming("__ftruncate_2141", "ftruncate"); -__static_renaming("__ftruncate_2142", "ftruncate"); -__static_renaming("__ftruncate_2144", "ftruncate"); -__static_renaming("__ftruncate_2145", "ftruncate"); -__static_renaming("__brk_2148", "brk"); -__static_renaming("__brk_2149", "brk"); -__static_renaming("__sbrk_2153", "sbrk"); -__static_renaming("__sbrk_2154", "sbrk"); -__static_renaming("__syscall_2157", "syscall"); -__static_renaming("__lockf_2168", "lockf"); -__static_renaming("__lockf_2169", "lockf"); -__static_renaming("__lockf_2171", "lockf"); -__static_renaming("__lockf_2172", "lockf"); -__static_renaming("__lockf_2174", "lockf"); -__static_renaming("__lockf_2175", "lockf"); -__static_renaming("__lockf_2177", "lockf"); -__static_renaming("__lockf_2178", "lockf"); -__static_renaming("__fdatasync_2181", "fdatasync"); -__static_renaming("____read_chk_2188", "__read_chk"); -__static_renaming("____read_chk_2189", "__read_chk"); -__static_renaming("____read_chk_2190", "__read_chk"); -__static_renaming("____read_alias_2199", "__read_alias"); -__static_renaming("____read_alias_2200", "__read_alias"); -__static_renaming("____read_alias_2201", "__read_alias"); -__static_renaming("____read_chk_warn_2212", "__read_chk_warn"); -__static_renaming("____read_chk_warn_2213", "__read_chk_warn"); -__static_renaming("____read_chk_warn_2214", "__read_chk_warn"); -__static_renaming("____readlink_chk_2233", "__readlink_chk"); -__static_renaming("____readlink_chk_2234", "__readlink_chk"); -__static_renaming("____readlink_alias_2243", "__readlink_alias"); -__static_renaming("____readlink_alias_2244", "__readlink_alias"); -__static_renaming("____readlink_chk_warn_2255", "__readlink_chk_warn"); -__static_renaming("____readlink_chk_warn_2256", "__readlink_chk_warn"); -__static_renaming("____readlinkat_chk_2276", "__readlinkat_chk"); -__static_renaming("____readlinkat_chk_2277", "__readlinkat_chk"); -__static_renaming("____readlinkat_alias_2287", "__readlinkat_alias"); -__static_renaming("____readlinkat_alias_2288", "__readlinkat_alias"); -__static_renaming("____readlinkat_chk_warn_2300", "__readlinkat_chk_warn"); -__static_renaming("____readlinkat_chk_warn_2301", "__readlinkat_chk_warn"); -__static_renaming("____getcwd_chk_2320", "__getcwd_chk"); -__static_renaming("____getcwd_chk_2321", "__getcwd_chk"); -__static_renaming("____getcwd_chk_2322", "__getcwd_chk"); -__static_renaming("____getcwd_chk_2323", "__getcwd_chk"); -__static_renaming("____getcwd_alias_2327", "__getcwd_alias"); -__static_renaming("____getcwd_alias_2328", "__getcwd_alias"); -__static_renaming("____getcwd_chk_warn_2334", "__getcwd_chk_warn"); -__static_renaming("____getcwd_chk_warn_2335", "__getcwd_chk_warn"); -__static_renaming("____getwd_chk_2344", "__getwd_chk"); -__static_renaming("____getwd_chk_2345", "__getwd_chk"); -__static_renaming("____getwd_warn_2347", "__getwd_warn"); -__static_renaming("____confstr_chk_2356", "__confstr_chk"); -__static_renaming("____confstr_chk_2357", "__confstr_chk"); -__static_renaming("____confstr_chk_2358", "__confstr_chk"); -__static_renaming("____confstr_chk_2359", "__confstr_chk"); -__static_renaming("____confstr_alias_2364", "__confstr_alias"); -__static_renaming("____confstr_alias_2365", "__confstr_alias"); -__static_renaming("____confstr_chk_warn_2372", "__confstr_chk_warn"); -__static_renaming("____confstr_chk_warn_2373", "__confstr_chk_warn"); -__static_renaming("____getgroups_chk_2386", "__getgroups_chk"); -__static_renaming("____getgroups_chk_2387", "__getgroups_chk"); -__static_renaming("____getgroups_alias_2394", "__getgroups_alias"); -__static_renaming("____getgroups_alias_2395", "__getgroups_alias"); -__static_renaming("____getgroups_chk_warn_2403", "__getgroups_chk_warn"); -__static_renaming("____getgroups_chk_warn_2404", "__getgroups_chk_warn"); -__static_renaming("____ttyname_r_chk_2418", "__ttyname_r_chk"); -__static_renaming("____ttyname_r_chk_2419", "__ttyname_r_chk"); -__static_renaming("____ttyname_r_alias_2424", "__ttyname_r_alias"); -__static_renaming("____ttyname_r_alias_2425", "__ttyname_r_alias"); -__static_renaming("____ttyname_r_chk_warn_2432", "__ttyname_r_chk_warn"); -__static_renaming("____ttyname_r_chk_warn_2433", "__ttyname_r_chk_warn"); -__static_renaming("____getlogin_r_chk_2443", "__getlogin_r_chk"); -__static_renaming("____getlogin_r_chk_2444", "__getlogin_r_chk"); -__static_renaming("____getlogin_r_alias_2448", "__getlogin_r_alias"); -__static_renaming("____getlogin_r_alias_2449", "__getlogin_r_alias"); -__static_renaming("____getlogin_r_chk_warn_2455", "__getlogin_r_chk_warn"); -__static_renaming("____getlogin_r_chk_warn_2456", "__getlogin_r_chk_warn"); -__static_renaming("____gethostname_chk_2465", "__gethostname_chk"); -__static_renaming("____gethostname_chk_2466", "__gethostname_chk"); -__static_renaming("____gethostname_alias_2470", "__gethostname_alias"); -__static_renaming("____gethostname_alias_2471", "__gethostname_alias"); -__static_renaming("____gethostname_chk_warn_2477", "__gethostname_chk_warn"); -__static_renaming("____gethostname_chk_warn_2478", "__gethostname_chk_warn"); -__static_renaming("____getdomainname_chk_2487", "__getdomainname_chk"); -__static_renaming("____getdomainname_chk_2488", "__getdomainname_chk"); -__static_renaming("____getdomainname_alias_2492", "__getdomainname_alias"); -__static_renaming("____getdomainname_alias_2493", "__getdomainname_alias"); -__static_renaming("____getdomainname_chk_warn_2499", "__getdomainname_chk_warn"); -__static_renaming("____getdomainname_chk_warn_2500", "__getdomainname_chk_warn"); -__static_renaming("__m_2505", "m"); -__static_renaming("__shutdown_signal_2506", "shutdown_signal"); -__static_renaming("__open_new_terminal_2510", "open_new_terminal"); -__static_renaming("__open_new_terminal_2511", "open_new_terminal"); -__static_renaming("__run_2514", "run"); -__static_renaming("__run_actions_2515", "run_actions"); -__static_renaming("__main_2518", "main"); - -__static_condition_renaming("__static_condition_default_53", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_76", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_84", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_123", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_169", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_170", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_173", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_182", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_187", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_193", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_198", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_201", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_204", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_210", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_217", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_223", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_229", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_235", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_238", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_241", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_244", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_246", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_248", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_249", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_250", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_253", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_255", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_257", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_258", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_259", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_263", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_264", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_267", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_270", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_271", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_274", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_275", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_278", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_280", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); -__static_condition_renaming("__static_condition_default_282", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_284", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_286", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_288", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_290", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_293", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_296", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_299", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_311", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_313", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_315", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_317", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_331", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_333", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_337", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_341", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_345", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_347", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_355", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_357", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_363", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_365", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_367", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_369", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_373", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_375", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_380", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_382", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_386", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_388", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_393", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_395", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_402", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_408", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_412", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_417", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_419", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_431", "!(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_432", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_433", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_438", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_444", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_455", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_461", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_469", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_471", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_473", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_475", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_486", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_488", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_489", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_491", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_493", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_494", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_497", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_499", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_503", "!(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_510", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_511", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_512", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_514", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_515", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_516", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_521", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_523", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_529", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_536", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_537", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_538", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_539", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_541", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_542", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_543", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_544", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_549", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_550", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_552", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_553", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_559", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_560", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_564", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_568", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_573", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_578", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_583", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_585", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_590", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_597", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_602", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_608", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_613", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_619", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_621", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_623", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_625", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_632", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_633", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_634", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_636", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_637", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_638", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_645", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_646", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_647", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_649", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_650", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_651", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_657", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_658", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_659", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_661", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_662", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_663", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_668", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_670", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_677", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_683", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_684", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_685", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_686", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_692", "!(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_693", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_699", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_700", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_701", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_702", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_708", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_709", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_715", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_717", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_721", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_723", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_727", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_734", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_735", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_736", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_745", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_746", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_747", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_751", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_752", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_753", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_755", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_756", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_757", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_759", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_760", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_761", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_767", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_768", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_769", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_779", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_780", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_781", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_787", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_788", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_789", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_791", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_792", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_793", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_797", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_801", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_803", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_807", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_809", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_813", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_817", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_819", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_823", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_825", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_834", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_836", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_840", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_842", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_846", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_848", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_852", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_858", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_862", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_864", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_868", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_872", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_875", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_878", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_883", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_887", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_891", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_894", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_907", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_914", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_929", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_938", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_944", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_955", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_956", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_957", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_963", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_967", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_972", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_978", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_979", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_980", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_991", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_998", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1005", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1007", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1009", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1015", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1022", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1027", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1028", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1035", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1036", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1042", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1043", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1050", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1051", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1057", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1058", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1065", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1066", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1072", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1073", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1080", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1081", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1089", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_1141", "(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1148", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1151", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1152", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1155", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1158", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1160", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_1162", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_1165", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __useconds_t_defined)"); -__static_condition_renaming("__static_condition_default_1168", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && (defined __useconds_t_defined)"); -__static_condition_renaming("__static_condition_default_1171", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __useconds_t_defined)"); -__static_condition_renaming("__static_condition_default_1199", "!(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1202", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1212", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1213", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1214", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1215", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1219", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1220", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1221", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1222", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1230", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1231", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1232", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1233", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1237", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1238", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1239", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1240", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1250", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1251", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1252", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1253", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1254", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1255", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1258", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1259", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1260", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1261", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1262", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1263", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1280", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1281", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1282", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1283", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1284", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1285", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1288", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1289", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1290", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1291", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1292", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1293", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1303", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1304", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1305", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1306", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1307", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1308", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1311", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1312", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1313", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1314", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1315", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1316", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1319", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1320", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1321", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1322", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1323", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1324", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1327", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1328", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1329", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1330", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1331", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1332", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1350", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1356", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1368", "!(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1371", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1381", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1384", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1394", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1397", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1409", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1412", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1796", "(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1799", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1802", "(defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1815", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1824", "(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1827", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1831", "(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1834", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1840", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1843", "(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1846", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1849", "(defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1852", "(defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1861", "!(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1864", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1870", "!(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1873", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1882", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1885", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1891", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1894", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1900", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1903", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1906", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1909", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1918", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1921", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1927", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1930", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1933", "(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1936", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1939", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1977", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1978", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1979", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1980", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1983", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1984", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1985", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1986", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1999", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_2000", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_2001", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_2002", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_2005", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_2006", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_2007", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_2008", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_2117", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_2120", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_2123", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_2126", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_2137", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_2140", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_2143", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_2146", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_2155", "!(defined __STRICT_ANSI__) && (defined __intptr_t_defined)"); -__static_condition_renaming("__static_condition_default_2170", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined F_LOCK) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined F_LOCK)"); -__static_condition_renaming("__static_condition_default_2173", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined F_LOCK)"); -__static_condition_renaming("__static_condition_default_2176", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined F_LOCK) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined F_LOCK) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined F_LOCK) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined F_LOCK) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined F_LOCK) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined F_LOCK) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined F_LOCK) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined F_LOCK)"); -__static_condition_renaming("__static_condition_default_2179", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined F_LOCK) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined F_LOCK) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined F_LOCK) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined F_LOCK)"); -__static_condition_renaming("__static_condition_default_2191", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_2192", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_2193", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_2194", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_2202", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_2203", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_2204", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_2205", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_2215", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_2216", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_2217", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_2218", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_2223", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_2224", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_2225", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_2226", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_2235", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_2236", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_2237", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_2238", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_2245", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_2246", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_2247", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_2248", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_2257", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_2258", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_2259", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_2260", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_2265", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_2266", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_2267", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_2268", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_2278", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_2279", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_2280", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_2281", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_2289", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_2290", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_2291", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_2292", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_2302", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_2303", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_2304", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_2305", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_2311", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_2312", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_2313", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_2314", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_2339", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2340", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2349", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2388", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_2389", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_2396", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_2405", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_2406", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_2411", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_2507", "!(defined ENABLE_DEBUG_INIT)"); -__static_condition_renaming("__static_condition_default_2508", "!(defined __need___FILE) && !(defined ENABLE_DEBUG_INIT)"); -__static_condition_renaming("__static_condition_default_2509", "(defined __need___FILE) && !(defined ENABLE_DEBUG_INIT)"); -__static_condition_renaming("__static_condition_default_2512", "(defined ENABLE_DEBUG_INIT)"); -__static_condition_renaming("__static_condition_default_2513", "!(defined ENABLE_DEBUG_INIT)"); -__static_condition_renaming("__static_condition_default_2519", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) || (defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); - -if (__static_condition_default_2519) -{ +__static_renaming("____qaddr_t_53", "__qaddr_t"); +__static_renaming("____caddr_t_54", "__caddr_t"); +__static_renaming("____intptr_t_55", "__intptr_t"); +__static_renaming("____socklen_t_56", "__socklen_t"); +__static_renaming("__FILE_58", "FILE"); +__static_renaming("____FILE_59", "__FILE"); +__static_renaming("____mbstate_t_68", "__mbstate_t"); +__static_renaming("___G_fpos_t_75", "_G_fpos_t"); +__static_renaming("___G_fpos64_t_81", "_G_fpos64_t"); +__static_renaming("____gnuc_va_list_82", "__gnuc_va_list"); +__static_renaming("___IO_lock_t_84", "_IO_lock_t"); +__static_renaming("___IO_FILE_163", "_IO_FILE"); +__static_renaming("___IO_FILE_164", "_IO_FILE"); +__static_renaming("___IO_2_1_stdin__167", "_IO_2_1_stdin_"); +__static_renaming("___IO_2_1_stdout__168", "_IO_2_1_stdout_"); +__static_renaming("___IO_2_1_stderr__169", "_IO_2_1_stderr_"); +__static_renaming("____io_read_fn_173", "__io_read_fn"); +__static_renaming("____io_write_fn_177", "__io_write_fn"); +__static_renaming("____io_seek_fn_181", "__io_seek_fn"); +__static_renaming("____io_close_fn_183", "__io_close_fn"); +__static_renaming("____underflow_184", "__underflow"); +__static_renaming("____underflow_185", "__underflow"); +__static_renaming("____uflow_186", "__uflow"); +__static_renaming("____uflow_187", "__uflow"); +__static_renaming("____overflow_188", "__overflow"); +__static_renaming("____overflow_189", "__overflow"); +__static_renaming("___IO_getc_193", "_IO_getc"); +__static_renaming("___IO_getc_194", "_IO_getc"); +__static_renaming("___IO_putc_199", "_IO_putc"); +__static_renaming("___IO_putc_200", "_IO_putc"); +__static_renaming("___IO_feof_204", "_IO_feof"); +__static_renaming("___IO_feof_205", "_IO_feof"); +__static_renaming("___IO_ferror_209", "_IO_ferror"); +__static_renaming("___IO_ferror_210", "_IO_ferror"); +__static_renaming("___IO_peekc_locked_214", "_IO_peekc_locked"); +__static_renaming("___IO_peekc_locked_215", "_IO_peekc_locked"); +__static_renaming("___IO_flockfile_216", "_IO_flockfile"); +__static_renaming("___IO_flockfile_217", "_IO_flockfile"); +__static_renaming("___IO_funlockfile_218", "_IO_funlockfile"); +__static_renaming("___IO_funlockfile_219", "_IO_funlockfile"); +__static_renaming("___IO_ftrylockfile_220", "_IO_ftrylockfile"); +__static_renaming("___IO_ftrylockfile_221", "_IO_ftrylockfile"); +__static_renaming("___IO_vfscanf_222", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_224", "_IO_vfscanf"); +__static_renaming("___IO_vfprintf_231", "_IO_vfprintf"); +__static_renaming("___IO_vfprintf_233", "_IO_vfprintf"); +__static_renaming("___IO_padn_238", "_IO_padn"); +__static_renaming("___IO_padn_239", "_IO_padn"); +__static_renaming("___IO_sgetn_240", "_IO_sgetn"); +__static_renaming("___IO_sgetn_241", "_IO_sgetn"); +__static_renaming("___IO_seekoff_242", "_IO_seekoff"); +__static_renaming("___IO_seekoff_243", "_IO_seekoff"); +__static_renaming("___IO_seekpos_244", "_IO_seekpos"); +__static_renaming("___IO_seekpos_245", "_IO_seekpos"); +__static_renaming("___IO_free_backup_area_246", "_IO_free_backup_area"); +__static_renaming("___IO_free_backup_area_247", "_IO_free_backup_area"); +__static_renaming("__va_list_248", "va_list"); +__static_renaming("__off_t_250", "off_t"); +__static_renaming("__off_t_251", "off_t"); +__static_renaming("__ssize_t_252", "ssize_t"); +__static_renaming("__fpos_t_253", "fpos_t"); +__static_renaming("__fpos_t_255", "fpos_t"); +__static_renaming("__stdin_257", "stdin"); +__static_renaming("__stdin_258", "stdin"); +__static_renaming("__stdout_259", "stdout"); +__static_renaming("__stdout_260", "stdout"); +__static_renaming("__stderr_261", "stderr"); +__static_renaming("__stderr_262", "stderr"); +__static_renaming("__remove_264", "remove"); +__static_renaming("__rename_267", "rename"); +__static_renaming("__renameat_272", "renameat"); +__static_renaming("__tmpfile_273", "tmpfile"); +__static_renaming("__tmpfile_275", "tmpfile"); +__static_renaming("__tmpfile_277", "tmpfile"); +__static_renaming("__tmpfile_279", "tmpfile"); +__static_renaming("__tmpnam_282", "tmpnam"); +__static_renaming("__tmpnam_283", "tmpnam"); +__static_renaming("__tmpnam_r_285", "tmpnam_r"); +__static_renaming("__tmpnam_r_286", "tmpnam_r"); +__static_renaming("__tempnam_289", "tempnam"); +__static_renaming("__tempnam_290", "tempnam"); +__static_renaming("__fclose_293", "fclose"); +__static_renaming("__fclose_295", "fclose"); +__static_renaming("__fflush_299", "fflush"); +__static_renaming("__fflush_unlocked_303", "fflush_unlocked"); +__static_renaming("__fopen_307", "fopen"); +__static_renaming("__fopen_309", "fopen"); +__static_renaming("__fopen_317", "fopen"); +__static_renaming("__fopen_319", "fopen"); +__static_renaming("__freopen_325", "freopen"); +__static_renaming("__freopen_327", "freopen"); +__static_renaming("__freopen_329", "freopen"); +__static_renaming("__freopen_331", "freopen"); +__static_renaming("__fdopen_335", "fdopen"); +__static_renaming("__fdopen_337", "fdopen"); +__static_renaming("__fmemopen_342", "fmemopen"); +__static_renaming("__fmemopen_344", "fmemopen"); +__static_renaming("__open_memstream_348", "open_memstream"); +__static_renaming("__open_memstream_350", "open_memstream"); +__static_renaming("__setbuf_355", "setbuf"); +__static_renaming("__setbuf_357", "setbuf"); +__static_renaming("__setvbuf_364", "setvbuf"); +__static_renaming("__setbuffer_369", "setbuffer"); +__static_renaming("__setlinebuf_373", "setlinebuf"); +__static_renaming("__fprintf_378", "fprintf"); +__static_renaming("__fprintf_380", "fprintf"); +__static_renaming("__printf_383", "printf"); +__static_renaming("__sprintf_386", "sprintf"); +__static_renaming("__vfprintf_392", "vfprintf"); +__static_renaming("__vprintf_399", "vprintf"); +__static_renaming("__vsprintf_405", "vsprintf"); +__static_renaming("__snprintf_409", "snprintf"); +__static_renaming("__vsnprintf_415", "vsnprintf"); +__static_renaming("__vdprintf_420", "vdprintf"); +__static_renaming("__dprintf_424", "dprintf"); +__static_renaming("__fscanf_428", "fscanf"); +__static_renaming("__fscanf_430", "fscanf"); +__static_renaming("__fscanf_432", "fscanf"); +__static_renaming("__fscanf_434", "fscanf"); +__static_renaming("__scanf_437", "scanf"); +__static_renaming("__scanf_438", "scanf"); +__static_renaming("__sscanf_441", "sscanf"); +__static_renaming("__vfscanf_468", "vfscanf"); +__static_renaming("__vfscanf_472", "vfscanf"); +__static_renaming("__vscanf_479", "vscanf"); +__static_renaming("__vscanf_481", "vscanf"); +__static_renaming("__vsscanf_487", "vsscanf"); +__static_renaming("__fgetc_520", "fgetc"); +__static_renaming("__getc_523", "getc"); +__static_renaming("__getchar_524", "getchar"); +__static_renaming("__getc_unlocked_527", "getc_unlocked"); +__static_renaming("__getchar_unlocked_529", "getchar_unlocked"); +__static_renaming("__fgetc_unlocked_532", "fgetc_unlocked"); +__static_renaming("__fputc_537", "fputc"); +__static_renaming("__fputc_539", "fputc"); +__static_renaming("__putc_544", "putc"); +__static_renaming("__putchar_546", "putchar"); +__static_renaming("__fputc_unlocked_550", "fputc_unlocked"); +__static_renaming("__putc_unlocked_555", "putc_unlocked"); +__static_renaming("__putchar_unlocked_558", "putchar_unlocked"); +__static_renaming("__getw_561", "getw"); +__static_renaming("__putw_566", "putw"); +__static_renaming("__fgets_572", "fgets"); +__static_renaming("__fgets_574", "fgets"); +__static_renaming("__fgets_576", "fgets"); +__static_renaming("__fgets_578", "fgets"); +__static_renaming("____getdelim_585", "__getdelim"); +__static_renaming("____getdelim_587", "__getdelim"); +__static_renaming("__getdelim_594", "getdelim"); +__static_renaming("__getdelim_596", "getdelim"); +__static_renaming("__getline_602", "getline"); +__static_renaming("__getline_604", "getline"); +__static_renaming("__fputs_609", "fputs"); +__static_renaming("__fputs_611", "fputs"); +__static_renaming("__puts_614", "puts"); +__static_renaming("__ungetc_618", "ungetc"); +__static_renaming("__fseek_654", "fseek"); +__static_renaming("__fseek_656", "fseek"); +__static_renaming("__ftell_660", "ftell"); +__static_renaming("__ftell_662", "ftell"); +__static_renaming("__rewind_666", "rewind"); +__static_renaming("__fseeko_671", "fseeko"); +__static_renaming("__fseeko_679", "fseeko"); +__static_renaming("__ftello_683", "ftello"); +__static_renaming("__ftello_685", "ftello"); +__static_renaming("__ftello_687", "ftello"); +__static_renaming("__fgetpos_693", "fgetpos"); +__static_renaming("__fgetpos_705", "fgetpos"); +__static_renaming("__fsetpos_713", "fsetpos"); +__static_renaming("__fsetpos_717", "fsetpos"); +__static_renaming("__clearerr_723", "clearerr"); +__static_renaming("__feof_726", "feof"); +__static_renaming("__feof_728", "feof"); +__static_renaming("__ferror_732", "ferror"); +__static_renaming("__ferror_734", "ferror"); +__static_renaming("__clearerr_unlocked_738", "clearerr_unlocked"); +__static_renaming("__feof_unlocked_742", "feof_unlocked"); +__static_renaming("__feof_unlocked_744", "feof_unlocked"); +__static_renaming("__ferror_unlocked_748", "ferror_unlocked"); +__static_renaming("__ferror_unlocked_750", "ferror_unlocked"); +__static_renaming("__perror_753", "perror"); +__static_renaming("__perror_754", "perror"); +__static_renaming("__sys_nerr_755", "sys_nerr"); +__static_renaming("__sys_errlist_756", "sys_errlist"); +__static_renaming("__fileno_759", "fileno"); +__static_renaming("__fileno_761", "fileno"); +__static_renaming("__fileno_unlocked_765", "fileno_unlocked"); +__static_renaming("__fileno_unlocked_767", "fileno_unlocked"); +__static_renaming("__popen_771", "popen"); +__static_renaming("__popen_773", "popen"); +__static_renaming("__pclose_777", "pclose"); +__static_renaming("__ctermid_780", "ctermid"); +__static_renaming("__flockfile_783", "flockfile"); +__static_renaming("__ftrylockfile_787", "ftrylockfile"); +__static_renaming("__ftrylockfile_789", "ftrylockfile"); +__static_renaming("__funlockfile_793", "funlockfile"); +__static_renaming("____sprintf_chk_825", "__sprintf_chk"); +__static_renaming("____vsprintf_chk_832", "__vsprintf_chk"); +__static_renaming("____snprintf_chk_846", "__snprintf_chk"); +__static_renaming("____vsnprintf_chk_854", "__vsnprintf_chk"); +__static_renaming("____fprintf_chk_869", "__fprintf_chk"); +__static_renaming("____printf_chk_873", "__printf_chk"); +__static_renaming("____vfprintf_chk_880", "__vfprintf_chk"); +__static_renaming("____vprintf_chk_888", "__vprintf_chk"); +__static_renaming("____dprintf_chk_910", "__dprintf_chk"); +__static_renaming("____vdprintf_chk_916", "__vdprintf_chk"); +__static_renaming("____fgets_chk_930", "__fgets_chk"); +__static_renaming("____fgets_chk_932", "__fgets_chk"); +__static_renaming("____fgets_chk_934", "__fgets_chk"); +__static_renaming("____fgets_alias_940", "__fgets_alias"); +__static_renaming("____fgets_chk_warn_947", "__fgets_chk_warn"); +__static_renaming("____cnt_1013", "__cnt"); +__static_renaming("____cptr_1014", "__cptr"); +__static_renaming("__ssize_t_1016", "ssize_t"); +__static_renaming("__gid_t_1019", "gid_t"); +__static_renaming("__uid_t_1020", "uid_t"); +__static_renaming("__useconds_t_1021", "useconds_t"); +__static_renaming("__pid_t_1022", "pid_t"); +__static_renaming("__pid_t_1023", "pid_t"); +__static_renaming("__intptr_t_1024", "intptr_t"); +__static_renaming("__socklen_t_1025", "socklen_t"); +__static_renaming("__access_1028", "access"); +__static_renaming("__access_1029", "access"); +__static_renaming("__faccessat_1034", "faccessat"); +__static_renaming("__faccessat_1035", "faccessat"); +__static_renaming("__lseek_1042", "lseek"); +__static_renaming("__lseek_1043", "lseek"); +__static_renaming("__close_1045", "close"); +__static_renaming("__read_1049", "read"); +__static_renaming("__read_1050", "read"); +__static_renaming("__read_1052", "read"); +__static_renaming("__read_1053", "read"); +__static_renaming("__write_1058", "write"); +__static_renaming("__write_1059", "write"); +__static_renaming("__write_1061", "write"); +__static_renaming("__write_1062", "write"); +__static_renaming("__pread_1068", "pread"); +__static_renaming("__pread_1070", "pread"); +__static_renaming("__pread_1080", "pread"); +__static_renaming("__pread_1082", "pread"); +__static_renaming("__pwrite_1088", "pwrite"); +__static_renaming("__pwrite_1090", "pwrite"); +__static_renaming("__pwrite_1092", "pwrite"); +__static_renaming("__pwrite_1094", "pwrite"); +__static_renaming("__pipe_1097", "pipe"); +__static_renaming("__pipe_1098", "pipe"); +__static_renaming("__pipe_1099", "pipe"); +__static_renaming("__pipe_1100", "pipe"); +__static_renaming("__alarm_1102", "alarm"); +__static_renaming("__sleep_1104", "sleep"); +__static_renaming("__ualarm_1107", "ualarm"); +__static_renaming("__usleep_1109", "usleep"); +__static_renaming("__pause_1110", "pause"); +__static_renaming("__pause_1111", "pause"); +__static_renaming("__chown_1115", "chown"); +__static_renaming("__chown_1116", "chown"); +__static_renaming("__fchown_1120", "fchown"); +__static_renaming("__fchown_1121", "fchown"); +__static_renaming("__lchown_1125", "lchown"); +__static_renaming("__lchown_1126", "lchown"); +__static_renaming("__fchownat_1132", "fchownat"); +__static_renaming("__fchownat_1133", "fchownat"); +__static_renaming("__chdir_1135", "chdir"); +__static_renaming("__chdir_1136", "chdir"); +__static_renaming("__chdir_1137", "chdir"); +__static_renaming("__chdir_1138", "chdir"); +__static_renaming("__fchdir_1140", "fchdir"); +__static_renaming("__fchdir_1141", "fchdir"); +__static_renaming("__getcwd_1144", "getcwd"); +__static_renaming("__getcwd_1145", "getcwd"); +__static_renaming("__getcwd_1146", "getcwd"); +__static_renaming("__getcwd_1147", "getcwd"); +__static_renaming("__getwd_1149", "getwd"); +__static_renaming("__getwd_1150", "getwd"); +__static_renaming("__dup_1152", "dup"); +__static_renaming("__dup_1153", "dup"); +__static_renaming("__dup_1154", "dup"); +__static_renaming("__dup_1155", "dup"); +__static_renaming("__dup2_1158", "dup2"); +__static_renaming("____environ_1159", "__environ"); +__static_renaming("__execve_1163", "execve"); +__static_renaming("__fexecve_1167", "fexecve"); +__static_renaming("__execv_1170", "execv"); +__static_renaming("__execv_1171", "execv"); +__static_renaming("__execle_1174", "execle"); +__static_renaming("__execl_1177", "execl"); +__static_renaming("__execvp_1180", "execvp"); +__static_renaming("__execlp_1183", "execlp"); +__static_renaming("__nice_1185", "nice"); +__static_renaming("__nice_1186", "nice"); +__static_renaming("___exit_1188", "_exit"); +__static_renaming("___exit_1189", "_exit"); +__static_renaming("__pathconf_1498", "pathconf"); +__static_renaming("__fpathconf_1501", "fpathconf"); +__static_renaming("__sysconf_1503", "sysconf"); +__static_renaming("__confstr_1507", "confstr"); +__static_renaming("__getpid_1508", "getpid"); +__static_renaming("__getpid_1509", "getpid"); +__static_renaming("__getppid_1510", "getppid"); +__static_renaming("__getpgrp_1511", "getpgrp"); +__static_renaming("____getpgid_1513", "__getpgid"); +__static_renaming("__getpgid_1515", "getpgid"); +__static_renaming("__setpgid_1518", "setpgid"); +__static_renaming("__setpgid_1519", "setpgid"); +__static_renaming("__setpgrp_1520", "setpgrp"); +__static_renaming("__setsid_1521", "setsid"); +__static_renaming("__setsid_1522", "setsid"); +__static_renaming("__getsid_1524", "getsid"); +__static_renaming("__getuid_1525", "getuid"); +__static_renaming("__getuid_1526", "getuid"); +__static_renaming("__geteuid_1527", "geteuid"); +__static_renaming("__getgid_1528", "getgid"); +__static_renaming("__getegid_1529", "getegid"); +__static_renaming("__getgroups_1532", "getgroups"); +__static_renaming("__getgroups_1533", "getgroups"); +__static_renaming("__setuid_1535", "setuid"); +__static_renaming("__setuid_1536", "setuid"); +__static_renaming("__setreuid_1539", "setreuid"); +__static_renaming("__setreuid_1540", "setreuid"); +__static_renaming("__seteuid_1542", "seteuid"); +__static_renaming("__seteuid_1543", "seteuid"); +__static_renaming("__setgid_1545", "setgid"); +__static_renaming("__setgid_1546", "setgid"); +__static_renaming("__setgid_1547", "setgid"); +__static_renaming("__setgid_1548", "setgid"); +__static_renaming("__setregid_1551", "setregid"); +__static_renaming("__setregid_1552", "setregid"); +__static_renaming("__setegid_1554", "setegid"); +__static_renaming("__setegid_1555", "setegid"); +__static_renaming("__fork_1556", "fork"); +__static_renaming("__fork_1557", "fork"); +__static_renaming("__vfork_1558", "vfork"); +__static_renaming("__ttyname_1560", "ttyname"); +__static_renaming("__ttyname_1561", "ttyname"); +__static_renaming("__ttyname_r_1565", "ttyname_r"); +__static_renaming("__ttyname_r_1566", "ttyname_r"); +__static_renaming("__isatty_1568", "isatty"); +__static_renaming("__ttyslot_1569", "ttyslot"); +__static_renaming("__link_1572", "link"); +__static_renaming("__link_1573", "link"); +__static_renaming("__link_1574", "link"); +__static_renaming("__link_1575", "link"); +__static_renaming("__linkat_1581", "linkat"); +__static_renaming("__linkat_1582", "linkat"); +__static_renaming("__symlink_1585", "symlink"); +__static_renaming("__symlink_1586", "symlink"); +__static_renaming("__readlink_1590", "readlink"); +__static_renaming("__readlink_1592", "readlink"); +__static_renaming("__symlinkat_1597", "symlinkat"); +__static_renaming("__symlinkat_1598", "symlinkat"); +__static_renaming("__readlinkat_1603", "readlinkat"); +__static_renaming("__readlinkat_1605", "readlinkat"); +__static_renaming("__unlink_1608", "unlink"); +__static_renaming("__unlink_1609", "unlink"); +__static_renaming("__unlinkat_1613", "unlinkat"); +__static_renaming("__rmdir_1615", "rmdir"); +__static_renaming("__rmdir_1616", "rmdir"); +__static_renaming("__tcgetpgrp_1618", "tcgetpgrp"); +__static_renaming("__tcsetpgrp_1621", "tcsetpgrp"); +__static_renaming("__getlogin_1622", "getlogin"); +__static_renaming("__getlogin_r_1625", "getlogin_r"); +__static_renaming("__setlogin_1627", "setlogin"); +__static_renaming("__optarg_1628", "optarg"); +__static_renaming("__optind_1629", "optind"); +__static_renaming("__opterr_1630", "opterr"); +__static_renaming("__optopt_1631", "optopt"); +__static_renaming("__getopt_1635", "getopt"); +__static_renaming("__gethostname_1638", "gethostname"); +__static_renaming("__sethostname_1641", "sethostname"); +__static_renaming("__sethostname_1642", "sethostname"); +__static_renaming("__sethostid_1644", "sethostid"); +__static_renaming("__sethostid_1645", "sethostid"); +__static_renaming("__getdomainname_1648", "getdomainname"); +__static_renaming("__getdomainname_1649", "getdomainname"); +__static_renaming("__setdomainname_1652", "setdomainname"); +__static_renaming("__setdomainname_1653", "setdomainname"); +__static_renaming("__vhangup_1654", "vhangup"); +__static_renaming("__revoke_1656", "revoke"); +__static_renaming("__revoke_1657", "revoke"); +__static_renaming("__profil_1662", "profil"); +__static_renaming("__acct_1664", "acct"); +__static_renaming("__getusershell_1665", "getusershell"); +__static_renaming("__endusershell_1666", "endusershell"); +__static_renaming("__setusershell_1667", "setusershell"); +__static_renaming("__daemon_1670", "daemon"); +__static_renaming("__daemon_1671", "daemon"); +__static_renaming("__chroot_1673", "chroot"); +__static_renaming("__chroot_1674", "chroot"); +__static_renaming("__getpass_1676", "getpass"); +__static_renaming("__fsync_1678", "fsync"); +__static_renaming("__fsync_1679", "fsync"); +__static_renaming("__fsync_1680", "fsync"); +__static_renaming("__gethostid_1681", "gethostid"); +__static_renaming("__sync_1682", "sync"); +__static_renaming("__getpagesize_1683", "getpagesize"); +__static_renaming("__getdtablesize_1684", "getdtablesize"); +__static_renaming("__truncate_1689", "truncate"); +__static_renaming("__truncate_1690", "truncate"); +__static_renaming("__truncate_1691", "truncate"); +__static_renaming("__truncate_1692", "truncate"); +__static_renaming("__ftruncate_1697", "ftruncate"); +__static_renaming("__ftruncate_1698", "ftruncate"); +__static_renaming("__ftruncate_1699", "ftruncate"); +__static_renaming("__ftruncate_1700", "ftruncate"); +__static_renaming("__brk_1702", "brk"); +__static_renaming("__brk_1703", "brk"); +__static_renaming("__sbrk_1706", "sbrk"); +__static_renaming("__syscall_1709", "syscall"); +__static_renaming("__lockf_1716", "lockf"); +__static_renaming("__lockf_1717", "lockf"); +__static_renaming("__lockf_1718", "lockf"); +__static_renaming("__lockf_1719", "lockf"); +__static_renaming("__fdatasync_1721", "fdatasync"); +__static_renaming("____read_chk_1726", "__read_chk"); +__static_renaming("____read_chk_1727", "__read_chk"); +__static_renaming("____read_alias_1732", "__read_alias"); +__static_renaming("____read_alias_1733", "__read_alias"); +__static_renaming("____read_chk_warn_1739", "__read_chk_warn"); +__static_renaming("____read_chk_warn_1740", "__read_chk_warn"); +__static_renaming("____readlink_chk_1750", "__readlink_chk"); +__static_renaming("____readlink_alias_1755", "__readlink_alias"); +__static_renaming("____readlink_chk_warn_1761", "__readlink_chk_warn"); +__static_renaming("____readlinkat_chk_1772", "__readlinkat_chk"); +__static_renaming("____readlinkat_alias_1778", "__readlinkat_alias"); +__static_renaming("____readlinkat_chk_warn_1785", "__readlinkat_chk_warn"); +__static_renaming("____getcwd_chk_1795", "__getcwd_chk"); +__static_renaming("____getcwd_chk_1796", "__getcwd_chk"); +__static_renaming("____getcwd_alias_1799", "__getcwd_alias"); +__static_renaming("____getcwd_chk_warn_1803", "__getcwd_chk_warn"); +__static_renaming("____getwd_chk_1809", "__getwd_chk"); +__static_renaming("____getwd_warn_1811", "__getwd_warn"); +__static_renaming("____confstr_chk_1818", "__confstr_chk"); +__static_renaming("____confstr_chk_1819", "__confstr_chk"); +__static_renaming("____confstr_alias_1823", "__confstr_alias"); +__static_renaming("____confstr_chk_warn_1828", "__confstr_chk_warn"); +__static_renaming("____getgroups_chk_1836", "__getgroups_chk"); +__static_renaming("____getgroups_alias_1839", "__getgroups_alias"); +__static_renaming("____getgroups_chk_warn_1843", "__getgroups_chk_warn"); +__static_renaming("____ttyname_r_chk_1850", "__ttyname_r_chk"); +__static_renaming("____ttyname_r_alias_1854", "__ttyname_r_alias"); +__static_renaming("____ttyname_r_chk_warn_1859", "__ttyname_r_chk_warn"); +__static_renaming("____getlogin_r_chk_1866", "__getlogin_r_chk"); +__static_renaming("____getlogin_r_alias_1869", "__getlogin_r_alias"); +__static_renaming("____getlogin_r_chk_warn_1873", "__getlogin_r_chk_warn"); +__static_renaming("____gethostname_chk_1879", "__gethostname_chk"); +__static_renaming("____gethostname_alias_1882", "__gethostname_alias"); +__static_renaming("____gethostname_chk_warn_1886", "__gethostname_chk_warn"); +__static_renaming("____getdomainname_chk_1892", "__getdomainname_chk"); +__static_renaming("____getdomainname_alias_1895", "__getdomainname_alias"); +__static_renaming("____getdomainname_chk_warn_1899", "__getdomainname_chk_warn"); +__static_renaming("__m_1903", "m"); +__static_renaming("__shutdown_signal_1904", "shutdown_signal"); +__static_renaming("__shutdown_signal_1905", "shutdown_signal"); +__static_renaming("__shutdown_signal_1906", "shutdown_signal"); +__static_renaming("__shutdown_signal_1907", "shutdown_signal"); +__static_renaming("__open_new_terminal_1912", "open_new_terminal"); +__static_renaming("__run_1916", "run"); +__static_renaming("__run_actions_1917", "run_actions"); +__static_renaming("__main_1920", "main"); + +__static_condition_renaming("__static_condition_default_74", "(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_118", "(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_161", "(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_162", "(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_165", "(defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_223", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_225", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_226", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_227", "(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_230", "(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_232", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_234", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_235", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_236", "(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_249", "!(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); +__static_condition_renaming("__static_condition_default_254", "!(defined _FILE_OFFSET_BITS) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_256", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_274", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_276", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_278", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_280", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_294", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_296", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_300", "(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_304", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_308", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_310", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_318", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_320", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_326", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_328", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_330", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_332", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_336", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_338", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_343", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_345", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_349", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_351", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_356", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_358", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_370", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_374", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_379", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_381", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_393", "!(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_394", "(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_395", "(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_400", "!(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_421", "!(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_429", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_431", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_433", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_435", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_446", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_448", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_449", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_451", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_453", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_454", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_457", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_459", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_469", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_470", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_471", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_473", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_474", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_475", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_480", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_482", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_494", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_495", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_496", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_497", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_499", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_500", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_501", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_502", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_507", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_508", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_510", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_511", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_517", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_528", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_533", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_538", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_540", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_551", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_556", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_562", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_567", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_573", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_575", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_577", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_579", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_586", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_588", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_595", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_597", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_603", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_605", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_610", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_612", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_624", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_625", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_626", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_627", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_633", "!(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_639", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_640", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_641", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_642", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_648", "!(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_649", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_655", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_657", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_661", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_663", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_672", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_680", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_684", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_686", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_688", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_694", "!(defined _FILE_OFFSET_BITS) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_695", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_696", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_706", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_707", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_708", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_714", "!(defined _FILE_OFFSET_BITS) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_715", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_716", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_718", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_719", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_720", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_727", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_729", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_733", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_735", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_739", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_743", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_745", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_749", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_751", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_760", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_762", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_766", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_768", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_772", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_774", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_778", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_784", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_788", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_790", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_794", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_798", "!(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_801", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_804", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_809", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_813", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_817", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_820", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_833", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_840", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_855", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_864", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_870", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_881", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_882", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_883", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_889", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_893", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_898", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_904", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_905", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_906", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_917", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_924", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_931", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_933", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_935", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_941", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_948", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_953", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_954", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_961", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_962", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_968", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_969", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_976", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_977", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_983", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_984", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_991", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_992", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_998", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_999", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1006", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1007", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1015", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_1017", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1018", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1051", "!(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1054", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1060", "!(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1063", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1069", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1071", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1081", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1083", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1089", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1091", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1093", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1095", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1591", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1593", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1604", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1606", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1707", "!(defined __STRICT_ANSI__) && (defined __intptr_t_defined)"); +__static_condition_renaming("__static_condition_default_1728", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1734", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1741", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1745", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1751", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1756", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1762", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1766", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1773", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1779", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1786", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1791", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1806", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1813", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1908", "(defined __STRICT_ANSI__) && !(defined _REENTRANT) && (defined _THREAD_SAFE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) || (defined __STRICT_ANSI__) && (defined _REENTRANT) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1909", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1910", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1911", "(defined __STRICT_ANSI__) && !(defined _REENTRANT) && !(defined _THREAD_SAFE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1913", "(defined __STRICT_ANSI__) && !(defined _REENTRANT) && (defined _THREAD_SAFE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) || (defined __STRICT_ANSI__) && (defined _REENTRANT) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1914", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1915", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1921", "(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); + +if (__static_condition_default_1921) { __static_parse_error("Unable to parse"); } }; @@ -1722,523 +1058,456 @@ typedef long int ____ssize_t_49;// L110:L172 typedef long int ____syscall_slong_t_50;// L93:L175 typedef unsigned long int ____syscall_ulong_t_51;// L94:L177 typedef ____off64_t_24 ____loff_t_52;// L181 -typedef ____quad_t_14 * (____qaddr_t_54);// L182 -typedef char * (____caddr_t_55);// L183 -typedef long int ____intptr_t_56;// L110:L186 -typedef unsigned int ____socklen_t_57;// L92:L189 -typedef struct __forward_tag_reference_58 __FILE_59;// L48 -typedef struct __forward_tag_reference_58 ____FILE_60;// L64 -union ____anonymous_tag_61_62 { -unsigned int ____wch_63;// L265 -char ____wchb_64[4];// L92 +typedef ____quad_t_14 * (____qaddr_t_53);// L182 +typedef char * (____caddr_t_54);// L183 +typedef long int ____intptr_t_55;// L110:L186 +typedef unsigned int ____socklen_t_56;// L92:L189 +typedef struct __forward_tag_reference_57 __FILE_58;// L48 +typedef struct __forward_tag_reference_57 ____FILE_59;// L64 +union ____anonymous_tag_60_61 { +unsigned int ____wch_62;// L265 +char ____wchb_63[4];// L92 }; -struct ____anonymous_tag_65_66 { -int ____count_67;// L84 -union ____anonymous_tag_61_62 ____value_68;// L85 +struct ____anonymous_tag_64_65 { +int ____count_66;// L84 +union ____anonymous_tag_60_61 ____value_67;// L85 }; -typedef struct ____anonymous_tag_65_66 ____mbstate_t_69;// L82:L94 -struct ____anonymous_tag_70_71 { -____off_t_23 ____pos_72;// L0 -____mbstate_t_69 ____state_74;// L0 +typedef struct ____anonymous_tag_64_65 ____mbstate_t_68;// L82:L94 +struct ____anonymous_tag_69_70 { +____off_t_23 ____pos_71;// L0 +____mbstate_t_68 ____state_72;// L0 }; -typedef struct ____anonymous_tag_70_71 ___G_fpos_t_77;// L21:L25 -struct ____anonymous_tag_78_79 { -____off64_t_24 ____pos_80;// L0 -____mbstate_t_69 ____state_82;// L0 +typedef struct ____anonymous_tag_69_70 ___G_fpos_t_75;// L21:L25 +struct ____anonymous_tag_76_77 { +____off64_t_24 ____pos_78;// L0 +____mbstate_t_68 ____state_79;// L0 }; -typedef struct ____anonymous_tag_78_79 ___G_fpos64_t_85;// L26:L30 -typedef __builtin_va_list ____gnuc_va_list_86;// L40 -typedef void ___IO_lock_t_88;// L150 -struct ___IO_marker_90 { -struct __forward_tag_reference_89 * (___next_91);// L0 -struct __forward_tag_reference_58 * (___sbuf_92);// L0 -int ___pos_93;// L162 +typedef struct ____anonymous_tag_76_77 ___G_fpos64_t_81;// L26:L30 +typedef __builtin_va_list ____gnuc_va_list_82;// L40 +typedef void ___IO_lock_t_84;// L150 +struct ___IO_marker_86 { +struct __forward_tag_reference_85 * (___next_87);// L0 +struct __forward_tag_reference_57 * (___sbuf_88);// L0 +int ___pos_89;// L162 }; -enum ____codecvt_result_98 { -____codecvt_ok_94, -____codecvt_partial_95, -____codecvt_error_96, -____codecvt_noconv_97, +enum ____codecvt_result_94 { +____codecvt_ok_90, +____codecvt_partial_91, +____codecvt_error_92, +____codecvt_noconv_93, }; -struct ___IO_FILE_99 { -int ___flags_100;// L242 -char * (___IO_read_ptr_101);// L247 -char * (___IO_read_end_102);// L248 -char * (___IO_read_base_103);// L249 -char * (___IO_write_base_104);// L250 -char * (___IO_write_ptr_105);// L251 -char * (___IO_write_end_106);// L252 -char * (___IO_buf_base_107);// L253 -char * (___IO_buf_end_108);// L254 -char * (___IO_save_base_109);// L256 -char * (___IO_backup_base_110);// L257 -char * (___IO_save_end_111);// L258 -struct ___IO_marker_90 * (___markers_112);// L260 -struct __forward_tag_reference_58 * (___chain_113);// L0 -int ___fileno_114;// L264 -int ___flags2_115;// L268 -____off_t_23 ___old_offset_116;// L0 -unsigned short ___cur_column_118;// L274 -signed char ___vtable_offset_119;// L275 -char ___shortbuf_120[1];// L276 -___IO_lock_t_88 * (___lock_121);// L0 +struct ___IO_FILE_95 { +int ___flags_96;// L242 +char * (___IO_read_ptr_97);// L247 +char * (___IO_read_end_98);// L248 +char * (___IO_read_base_99);// L249 +char * (___IO_write_base_100);// L250 +char * (___IO_write_ptr_101);// L251 +char * (___IO_write_end_102);// L252 +char * (___IO_buf_base_103);// L253 +char * (___IO_buf_end_104);// L254 +char * (___IO_save_base_105);// L256 +char * (___IO_backup_base_106);// L257 +char * (___IO_save_end_107);// L258 +struct ___IO_marker_86 * (___markers_108);// L260 +struct __forward_tag_reference_57 * (___chain_109);// L0 +int ___fileno_110;// L264 +int ___flags2_111;// L268 +____off_t_23 ___old_offset_112;// L0 +unsigned short ___cur_column_113;// L274 +signed char ___vtable_offset_114;// L275 +char ___shortbuf_115[1];// L276 +___IO_lock_t_84 * (___lock_116);// L0 }; -struct ___IO_FILE_124 { -int ___flags_125;// L242 -char * (___IO_read_ptr_126);// L247 -char * (___IO_read_end_127);// L248 -char * (___IO_read_base_128);// L249 -char * (___IO_write_base_129);// L250 -char * (___IO_write_ptr_130);// L251 -char * (___IO_write_end_131);// L252 -char * (___IO_buf_base_132);// L253 -char * (___IO_buf_end_133);// L254 -char * (___IO_save_base_134);// L256 -char * (___IO_backup_base_135);// L257 -char * (___IO_save_end_136);// L258 -struct ___IO_marker_90 * (___markers_137);// L260 -struct __forward_tag_reference_58 * (___chain_138);// L0 -int ___fileno_139;// L264 -int ___flags2_140;// L268 -____off_t_23 ___old_offset_141;// L0 -unsigned short ___cur_column_143;// L274 -signed char ___vtable_offset_144;// L275 -char ___shortbuf_145[1];// L276 -___IO_lock_t_88 * (___lock_146);// L0 -____off64_t_24 ___offset_148;// L0 -void * (____pad1_150);// L297 -void * (____pad2_151);// L298 -void * (____pad3_152);// L299 -void * (____pad4_153);// L300 -__size_t_1 ____pad5_154;// L0 -int ___mode_155;// L303 -char ___unused2_156[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +struct ___IO_FILE_119 { +int ___flags_120;// L242 +char * (___IO_read_ptr_121);// L247 +char * (___IO_read_end_122);// L248 +char * (___IO_read_base_123);// L249 +char * (___IO_write_base_124);// L250 +char * (___IO_write_ptr_125);// L251 +char * (___IO_write_end_126);// L252 +char * (___IO_buf_base_127);// L253 +char * (___IO_buf_end_128);// L254 +char * (___IO_save_base_129);// L256 +char * (___IO_backup_base_130);// L257 +char * (___IO_save_end_131);// L258 +struct ___IO_marker_86 * (___markers_132);// L260 +struct __forward_tag_reference_57 * (___chain_133);// L0 +int ___fileno_134;// L264 +int ___flags2_135;// L268 +____off_t_23 ___old_offset_136;// L0 +unsigned short ___cur_column_137;// L274 +signed char ___vtable_offset_138;// L275 +char ___shortbuf_139[1];// L276 +___IO_lock_t_84 * (___lock_140);// L0 +____off64_t_24 ___offset_142;// L0 +void * (____pad1_143);// L297 +void * (____pad2_144);// L298 +void * (____pad3_145);// L299 +void * (____pad4_146);// L300 +__size_t_1 ____pad5_147;// L0 +int ___mode_148;// L303 +char ___unused2_149[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -struct ___IO_FILE_complete_157 { -struct ___IO_FILE_99 ___file_158;// L286 -____off64_t_24 ___offset_160;// L0 -void * (____pad1_162);// L297 -void * (____pad2_163);// L298 -void * (____pad3_164);// L299 -void * (____pad4_165);// L300 -__size_t_1 ____pad5_166;// L0 -int ___mode_167;// L303 -char ___unused2_168[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +struct ___IO_FILE_complete_150 { +struct ___IO_FILE_95 ___file_151;// L286 +____off64_t_24 ___offset_153;// L0 +void * (____pad1_154);// L297 +void * (____pad2_155);// L298 +void * (____pad3_156);// L299 +void * (____pad4_157);// L300 +__size_t_1 ____pad5_158;// L0 +int ___mode_159;// L303 +char ___unused2_160[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -typedef struct ___IO_FILE_99 ___IO_FILE_171;// L310 -typedef struct ___IO_FILE_124 ___IO_FILE_172;// L310 -typedef ____ssize_t_49 (____io_read_fn_181) (void * (____cookie_178), char * (____buf_179), __size_t_1 ____nbytes_180);// L333 -typedef ____ssize_t_49 (____io_write_fn_186) (void * (____cookie_183), const char * (____buf_184), __size_t_1 ____n_185);// L341:L342 -typedef int (____io_seek_fn_192) (void * (____cookie_188), ____off64_t_24 * (____pos_189), int ____w_191);// L350 -typedef int (____io_close_fn_195) (void * (____cookie_194));// L353 -typedef ____gnuc_va_list_86 __va_list_279;// L79 -typedef ____off_t_23 __off_t_281;// L90 -typedef ____off64_t_24 __off_t_283;// L92 -typedef ____ssize_t_49 __ssize_t_285;// L102 -typedef ___G_fpos_t_77 __fpos_t_287;// L110 -typedef ___G_fpos64_t_85 __fpos_t_289;// L112 -extern const char * const __sys_errlist_830[];// L27 -typedef unsigned char ____u_char_1090;// L30 -typedef unsigned short int ____u_short_1091;// L31 -typedef unsigned int ____u_int_1092;// L32 -typedef unsigned long int ____u_long_1093;// L33 -typedef signed char ____int8_t_1094;// L36 -typedef unsigned char ____uint8_t_1095;// L37 -typedef signed short int ____int16_t_1096;// L38 -typedef unsigned short int ____uint16_t_1097;// L39 -typedef signed int ____int32_t_1098;// L40 -typedef unsigned int ____uint32_t_1099;// L41 -typedef signed long int ____int64_t_1100;// L43 -typedef unsigned long int ____uint64_t_1101;// L44 -typedef long int ____quad_t_1102;// L52 -typedef unsigned long int ____u_quad_t_1103;// L53 -typedef unsigned long int ____dev_t_1104;// L109:L124 -typedef unsigned int ____uid_t_1105;// L92:L125 -typedef unsigned int ____gid_t_1106;// L92:L126 -typedef unsigned long int ____ino_t_1107;// L94:L127 -typedef unsigned long int ____ino64_t_1108;// L109:L128 -typedef unsigned int ____mode_t_1109;// L92:L129 -typedef unsigned long int ____nlink_t_1110;// L94:L130 -typedef long int ____off_t_1111;// L93:L131 -typedef long int ____off64_t_1112;// L108:L132 -typedef int ____pid_t_1113;// L91:L133 -struct ____anonymous_tag_1114_1115 { -int ____val_1116[2];// L72 +typedef struct ___IO_FILE_95 ___IO_FILE_163;// L310 +typedef struct ___IO_FILE_119 ___IO_FILE_164;// L310 +typedef ____ssize_t_49 (____io_read_fn_173) (void * (____cookie_170), char * (____buf_171), __size_t_1 ____nbytes_172);// L333 +typedef ____ssize_t_49 (____io_write_fn_177) (void * (____cookie_174), const char * (____buf_175), __size_t_1 ____n_176);// L341:L342 +typedef int (____io_seek_fn_181) (void * (____cookie_178), ____off64_t_24 * (____pos_179), int ____w_180);// L350 +typedef int (____io_close_fn_183) (void * (____cookie_182));// L353 +typedef ____gnuc_va_list_82 __va_list_248;// L79 +typedef ____off_t_23 __off_t_250;// L90 +typedef ____off64_t_24 __off_t_251;// L92 +typedef ____ssize_t_49 __ssize_t_252;// L102 +typedef ___G_fpos_t_75 __fpos_t_253;// L110 +typedef ___G_fpos64_t_81 __fpos_t_255;// L112 +extern const char * const __sys_errlist_756[];// L27 +typedef ____ssize_t_49 __ssize_t_1016;// L223 +typedef ____gid_t_18 __gid_t_1019;// L235 +typedef ____uid_t_17 __uid_t_1020;// L240 +typedef ____useconds_t_35 __useconds_t_1021;// L258 +typedef ____pid_t_25 __pid_t_1022;// L263 +typedef ____pid_t_25 __pid_t_1023;// L263 +typedef ____intptr_t_55 __intptr_t_1024;// L270 +typedef ____socklen_t_56 __socklen_t_1025;// L277 +enum ____anonymous_tag_1211_1212 { +___PC_LINK_MAX_1190, +___PC_MAX_CANON_1191, +___PC_MAX_INPUT_1192, +___PC_NAME_MAX_1193, +___PC_PATH_MAX_1194, +___PC_PIPE_BUF_1195, +___PC_CHOWN_RESTRICTED_1196, +___PC_NO_TRUNC_1197, +___PC_VDISABLE_1198, +___PC_SYNC_IO_1199, +___PC_ASYNC_IO_1200, +___PC_PRIO_IO_1201, +___PC_SOCK_MAXBUF_1202, +___PC_FILESIZEBITS_1203, +___PC_REC_INCR_XFER_SIZE_1204, +___PC_REC_MAX_XFER_SIZE_1205, +___PC_REC_MIN_XFER_SIZE_1206, +___PC_REC_XFER_ALIGN_1207, +___PC_ALLOC_SIZE_MIN_1208, +___PC_SYMLINK_MAX_1209, +___PC_2_SYMLINKS_1210, }; -typedef struct ____anonymous_tag_1114_1115 ____fsid_t_1117;// L72:L134 -typedef long int ____clock_t_1118;// L93:L135 -typedef unsigned long int ____rlim_t_1119;// L94:L136 -typedef unsigned long int ____rlim64_t_1120;// L109:L137 -typedef unsigned int ____id_t_1121;// L92:L138 -typedef long int ____time_t_1122;// L93:L139 -typedef unsigned int ____useconds_t_1123;// L92:L140 -typedef long int ____suseconds_t_1124;// L93:L141 -typedef int ____daddr_t_1125;// L91:L143 -typedef int ____key_t_1126;// L91:L144 -typedef int ____clockid_t_1127;// L91:L147 -typedef void * (____timer_t_1128);// L70:L150 -typedef long int ____blksize_t_1129;// L93:L153 -typedef long int ____blkcnt_t_1130;// L93:L158 -typedef long int ____blkcnt64_t_1131;// L108:L159 -typedef unsigned long int ____fsblkcnt_t_1132;// L94:L162 -typedef unsigned long int ____fsblkcnt64_t_1133;// L109:L163 -typedef unsigned long int ____fsfilcnt_t_1134;// L94:L166 -typedef unsigned long int ____fsfilcnt64_t_1135;// L109:L167 -typedef long int ____fsword_t_1136;// L93:L170 -typedef long int ____ssize_t_1137;// L110:L172 -typedef long int ____syscall_slong_t_1138;// L93:L175 -typedef unsigned long int ____syscall_ulong_t_1139;// L94:L177 -typedef ____off64_t_1112 ____loff_t_1140;// L181 -typedef ____quad_t_1102 * (____qaddr_t_1142);// L182 -typedef char * (____caddr_t_1143);// L183 -typedef long int ____intptr_t_1144;// L110:L186 -typedef unsigned int ____socklen_t_1145;// L92:L189 -typedef ____ssize_t_49 __ssize_t_1146;// L223 -typedef ____ssize_t_1137 __ssize_t_1147;// L223 -typedef long int __ptrdiff_t_1149;// L143:L324 -typedef long unsigned int __size_t_1150;// L177:L209 -typedef ____gid_t_18 __gid_t_1153;// L235 -typedef ____gid_t_1106 __gid_t_1154;// L235 -typedef ____uid_t_17 __uid_t_1156;// L240 -typedef ____uid_t_1105 __uid_t_1157;// L240 -typedef ____off_t_1111 __off_t_1159;// L246 -typedef ____off64_t_1112 __off_t_1161;// L248 -typedef ____useconds_t_35 __useconds_t_1163;// L258 -typedef ____useconds_t_1123 __useconds_t_1164;// L258 -typedef ____pid_t_25 __pid_t_1166;// L263 -typedef ____pid_t_1113 __pid_t_1167;// L263 -typedef ____pid_t_25 __pid_t_1169;// L263 -typedef ____pid_t_1113 __pid_t_1170;// L263 -typedef ____intptr_t_56 __intptr_t_1172;// L270 -typedef ____intptr_t_1144 __intptr_t_1173;// L270 -typedef ____socklen_t_57 __socklen_t_1174;// L277 -typedef ____socklen_t_1145 __socklen_t_1175;// L277 -enum ____anonymous_tag_1495_1496 { -___PC_LINK_MAX_1474, -___PC_MAX_CANON_1475, -___PC_MAX_INPUT_1476, -___PC_NAME_MAX_1477, -___PC_PATH_MAX_1478, -___PC_PIPE_BUF_1479, -___PC_CHOWN_RESTRICTED_1480, -___PC_NO_TRUNC_1481, -___PC_VDISABLE_1482, -___PC_SYNC_IO_1483, -___PC_ASYNC_IO_1484, -___PC_PRIO_IO_1485, -___PC_SOCK_MAXBUF_1486, -___PC_FILESIZEBITS_1487, -___PC_REC_INCR_XFER_SIZE_1488, -___PC_REC_MAX_XFER_SIZE_1489, -___PC_REC_MIN_XFER_SIZE_1490, -___PC_REC_XFER_ALIGN_1491, -___PC_ALLOC_SIZE_MIN_1492, -___PC_SYMLINK_MAX_1493, -___PC_2_SYMLINKS_1494, +enum ____anonymous_tag_1428_1429 { +___SC_ARG_MAX_1213, +___SC_CHILD_MAX_1214, +___SC_CLK_TCK_1215, +___SC_NGROUPS_MAX_1216, +___SC_OPEN_MAX_1217, +___SC_STREAM_MAX_1218, +___SC_TZNAME_MAX_1219, +___SC_JOB_CONTROL_1220, +___SC_SAVED_IDS_1221, +___SC_REALTIME_SIGNALS_1222, +___SC_PRIORITY_SCHEDULING_1223, +___SC_TIMERS_1224, +___SC_ASYNCHRONOUS_IO_1225, +___SC_PRIORITIZED_IO_1226, +___SC_SYNCHRONIZED_IO_1227, +___SC_FSYNC_1228, +___SC_MAPPED_FILES_1229, +___SC_MEMLOCK_1230, +___SC_MEMLOCK_RANGE_1231, +___SC_MEMORY_PROTECTION_1232, +___SC_MESSAGE_PASSING_1233, +___SC_SEMAPHORES_1234, +___SC_SHARED_MEMORY_OBJECTS_1235, +___SC_AIO_LISTIO_MAX_1236, +___SC_AIO_MAX_1237, +___SC_AIO_PRIO_DELTA_MAX_1238, +___SC_DELAYTIMER_MAX_1239, +___SC_MQ_OPEN_MAX_1240, +___SC_MQ_PRIO_MAX_1241, +___SC_VERSION_1242, +___SC_PAGESIZE_1243, +___SC_RTSIG_MAX_1244, +___SC_SEM_NSEMS_MAX_1245, +___SC_SEM_VALUE_MAX_1246, +___SC_SIGQUEUE_MAX_1247, +___SC_TIMER_MAX_1248, +___SC_BC_BASE_MAX_1249, +___SC_BC_DIM_MAX_1250, +___SC_BC_SCALE_MAX_1251, +___SC_BC_STRING_MAX_1252, +___SC_COLL_WEIGHTS_MAX_1253, +___SC_EQUIV_CLASS_MAX_1254, +___SC_EXPR_NEST_MAX_1255, +___SC_LINE_MAX_1256, +___SC_RE_DUP_MAX_1257, +___SC_CHARCLASS_NAME_MAX_1258, +___SC_2_VERSION_1259, +___SC_2_C_BIND_1260, +___SC_2_C_DEV_1261, +___SC_2_FORT_DEV_1262, +___SC_2_FORT_RUN_1263, +___SC_2_SW_DEV_1264, +___SC_2_LOCALEDEF_1265, +___SC_PII_1266, +___SC_PII_XTI_1267, +___SC_PII_SOCKET_1268, +___SC_PII_INTERNET_1269, +___SC_PII_OSI_1270, +___SC_POLL_1271, +___SC_SELECT_1272, +___SC_UIO_MAXIOV_1273, +___SC_IOV_MAX_1274 = ___SC_UIO_MAXIOV_1273 , +___SC_PII_INTERNET_STREAM_1275, +___SC_PII_INTERNET_DGRAM_1276, +___SC_PII_OSI_COTS_1277, +___SC_PII_OSI_CLTS_1278, +___SC_PII_OSI_M_1279, +___SC_T_IOV_MAX_1280, +___SC_THREADS_1281, +___SC_THREAD_SAFE_FUNCTIONS_1282, +___SC_GETGR_R_SIZE_MAX_1283, +___SC_GETPW_R_SIZE_MAX_1284, +___SC_LOGIN_NAME_MAX_1285, +___SC_TTY_NAME_MAX_1286, +___SC_THREAD_DESTRUCTOR_ITERATIONS_1287, +___SC_THREAD_KEYS_MAX_1288, +___SC_THREAD_STACK_MIN_1289, +___SC_THREAD_THREADS_MAX_1290, +___SC_THREAD_ATTR_STACKADDR_1291, +___SC_THREAD_ATTR_STACKSIZE_1292, +___SC_THREAD_PRIORITY_SCHEDULING_1293, +___SC_THREAD_PRIO_INHERIT_1294, +___SC_THREAD_PRIO_PROTECT_1295, +___SC_THREAD_PROCESS_SHARED_1296, +___SC_NPROCESSORS_CONF_1297, +___SC_NPROCESSORS_ONLN_1298, +___SC_PHYS_PAGES_1299, +___SC_AVPHYS_PAGES_1300, +___SC_ATEXIT_MAX_1301, +___SC_PASS_MAX_1302, +___SC_XOPEN_VERSION_1303, +___SC_XOPEN_XCU_VERSION_1304, +___SC_XOPEN_UNIX_1305, +___SC_XOPEN_CRYPT_1306, +___SC_XOPEN_ENH_I18N_1307, +___SC_XOPEN_SHM_1308, +___SC_2_CHAR_TERM_1309, +___SC_2_C_VERSION_1310, +___SC_2_UPE_1311, +___SC_XOPEN_XPG2_1312, +___SC_XOPEN_XPG3_1313, +___SC_XOPEN_XPG4_1314, +___SC_CHAR_BIT_1315, +___SC_CHAR_MAX_1316, +___SC_CHAR_MIN_1317, +___SC_INT_MAX_1318, +___SC_INT_MIN_1319, +___SC_LONG_BIT_1320, +___SC_WORD_BIT_1321, +___SC_MB_LEN_MAX_1322, +___SC_NZERO_1323, +___SC_SSIZE_MAX_1324, +___SC_SCHAR_MAX_1325, +___SC_SCHAR_MIN_1326, +___SC_SHRT_MAX_1327, +___SC_SHRT_MIN_1328, +___SC_UCHAR_MAX_1329, +___SC_UINT_MAX_1330, +___SC_ULONG_MAX_1331, +___SC_USHRT_MAX_1332, +___SC_NL_ARGMAX_1333, +___SC_NL_LANGMAX_1334, +___SC_NL_MSGMAX_1335, +___SC_NL_NMAX_1336, +___SC_NL_SETMAX_1337, +___SC_NL_TEXTMAX_1338, +___SC_XBS5_ILP32_OFF32_1339, +___SC_XBS5_ILP32_OFFBIG_1340, +___SC_XBS5_LP64_OFF64_1341, +___SC_XBS5_LPBIG_OFFBIG_1342, +___SC_XOPEN_LEGACY_1343, +___SC_XOPEN_REALTIME_1344, +___SC_XOPEN_REALTIME_THREADS_1345, +___SC_ADVISORY_INFO_1346, +___SC_BARRIERS_1347, +___SC_BASE_1348, +___SC_C_LANG_SUPPORT_1349, +___SC_C_LANG_SUPPORT_R_1350, +___SC_CLOCK_SELECTION_1351, +___SC_CPUTIME_1352, +___SC_THREAD_CPUTIME_1353, +___SC_DEVICE_IO_1354, +___SC_DEVICE_SPECIFIC_1355, +___SC_DEVICE_SPECIFIC_R_1356, +___SC_FD_MGMT_1357, +___SC_FIFO_1358, +___SC_PIPE_1359, +___SC_FILE_ATTRIBUTES_1360, +___SC_FILE_LOCKING_1361, +___SC_FILE_SYSTEM_1362, +___SC_MONOTONIC_CLOCK_1363, +___SC_MULTI_PROCESS_1364, +___SC_SINGLE_PROCESS_1365, +___SC_NETWORKING_1366, +___SC_READER_WRITER_LOCKS_1367, +___SC_SPIN_LOCKS_1368, +___SC_REGEXP_1369, +___SC_REGEX_VERSION_1370, +___SC_SHELL_1371, +___SC_SIGNALS_1372, +___SC_SPAWN_1373, +___SC_SPORADIC_SERVER_1374, +___SC_THREAD_SPORADIC_SERVER_1375, +___SC_SYSTEM_DATABASE_1376, +___SC_SYSTEM_DATABASE_R_1377, +___SC_TIMEOUTS_1378, +___SC_TYPED_MEMORY_OBJECTS_1379, +___SC_USER_GROUPS_1380, +___SC_USER_GROUPS_R_1381, +___SC_2_PBS_1382, +___SC_2_PBS_ACCOUNTING_1383, +___SC_2_PBS_LOCATE_1384, +___SC_2_PBS_MESSAGE_1385, +___SC_2_PBS_TRACK_1386, +___SC_SYMLOOP_MAX_1387, +___SC_STREAMS_1388, +___SC_2_PBS_CHECKPOINT_1389, +___SC_V6_ILP32_OFF32_1390, +___SC_V6_ILP32_OFFBIG_1391, +___SC_V6_LP64_OFF64_1392, +___SC_V6_LPBIG_OFFBIG_1393, +___SC_HOST_NAME_MAX_1394, +___SC_TRACE_1395, +___SC_TRACE_EVENT_FILTER_1396, +___SC_TRACE_INHERIT_1397, +___SC_TRACE_LOG_1398, +___SC_LEVEL1_ICACHE_SIZE_1399, +___SC_LEVEL1_ICACHE_ASSOC_1400, +___SC_LEVEL1_ICACHE_LINESIZE_1401, +___SC_LEVEL1_DCACHE_SIZE_1402, +___SC_LEVEL1_DCACHE_ASSOC_1403, +___SC_LEVEL1_DCACHE_LINESIZE_1404, +___SC_LEVEL2_CACHE_SIZE_1405, +___SC_LEVEL2_CACHE_ASSOC_1406, +___SC_LEVEL2_CACHE_LINESIZE_1407, +___SC_LEVEL3_CACHE_SIZE_1408, +___SC_LEVEL3_CACHE_ASSOC_1409, +___SC_LEVEL3_CACHE_LINESIZE_1410, +___SC_LEVEL4_CACHE_SIZE_1411, +___SC_LEVEL4_CACHE_ASSOC_1412, +___SC_LEVEL4_CACHE_LINESIZE_1413, +___SC_IPV6_1414 = ___SC_LEVEL1_ICACHE_SIZE_1399 + 50, +___SC_RAW_SOCKETS_1415, +___SC_V7_ILP32_OFF32_1416, +___SC_V7_ILP32_OFFBIG_1417, +___SC_V7_LP64_OFF64_1418, +___SC_V7_LPBIG_OFFBIG_1419, +___SC_SS_REPL_MAX_1420, +___SC_TRACE_EVENT_NAME_MAX_1421, +___SC_TRACE_NAME_MAX_1422, +___SC_TRACE_SYS_MAX_1423, +___SC_TRACE_USER_EVENT_MAX_1424, +___SC_XOPEN_STREAMS_1425, +___SC_THREAD_ROBUST_PRIO_INHERIT_1426, +___SC_THREAD_ROBUST_PRIO_PROTECT_1427, }; -enum ____anonymous_tag_1712_1713 { -___SC_ARG_MAX_1497, -___SC_CHILD_MAX_1498, -___SC_CLK_TCK_1499, -___SC_NGROUPS_MAX_1500, -___SC_OPEN_MAX_1501, -___SC_STREAM_MAX_1502, -___SC_TZNAME_MAX_1503, -___SC_JOB_CONTROL_1504, -___SC_SAVED_IDS_1505, -___SC_REALTIME_SIGNALS_1506, -___SC_PRIORITY_SCHEDULING_1507, -___SC_TIMERS_1508, -___SC_ASYNCHRONOUS_IO_1509, -___SC_PRIORITIZED_IO_1510, -___SC_SYNCHRONIZED_IO_1511, -___SC_FSYNC_1512, -___SC_MAPPED_FILES_1513, -___SC_MEMLOCK_1514, -___SC_MEMLOCK_RANGE_1515, -___SC_MEMORY_PROTECTION_1516, -___SC_MESSAGE_PASSING_1517, -___SC_SEMAPHORES_1518, -___SC_SHARED_MEMORY_OBJECTS_1519, -___SC_AIO_LISTIO_MAX_1520, -___SC_AIO_MAX_1521, -___SC_AIO_PRIO_DELTA_MAX_1522, -___SC_DELAYTIMER_MAX_1523, -___SC_MQ_OPEN_MAX_1524, -___SC_MQ_PRIO_MAX_1525, -___SC_VERSION_1526, -___SC_PAGESIZE_1527, -___SC_RTSIG_MAX_1528, -___SC_SEM_NSEMS_MAX_1529, -___SC_SEM_VALUE_MAX_1530, -___SC_SIGQUEUE_MAX_1531, -___SC_TIMER_MAX_1532, -___SC_BC_BASE_MAX_1533, -___SC_BC_DIM_MAX_1534, -___SC_BC_SCALE_MAX_1535, -___SC_BC_STRING_MAX_1536, -___SC_COLL_WEIGHTS_MAX_1537, -___SC_EQUIV_CLASS_MAX_1538, -___SC_EXPR_NEST_MAX_1539, -___SC_LINE_MAX_1540, -___SC_RE_DUP_MAX_1541, -___SC_CHARCLASS_NAME_MAX_1542, -___SC_2_VERSION_1543, -___SC_2_C_BIND_1544, -___SC_2_C_DEV_1545, -___SC_2_FORT_DEV_1546, -___SC_2_FORT_RUN_1547, -___SC_2_SW_DEV_1548, -___SC_2_LOCALEDEF_1549, -___SC_PII_1550, -___SC_PII_XTI_1551, -___SC_PII_SOCKET_1552, -___SC_PII_INTERNET_1553, -___SC_PII_OSI_1554, -___SC_POLL_1555, -___SC_SELECT_1556, -___SC_UIO_MAXIOV_1557, -___SC_IOV_MAX_1558 = ___SC_UIO_MAXIOV_1557 , -___SC_PII_INTERNET_STREAM_1559, -___SC_PII_INTERNET_DGRAM_1560, -___SC_PII_OSI_COTS_1561, -___SC_PII_OSI_CLTS_1562, -___SC_PII_OSI_M_1563, -___SC_T_IOV_MAX_1564, -___SC_THREADS_1565, -___SC_THREAD_SAFE_FUNCTIONS_1566, -___SC_GETGR_R_SIZE_MAX_1567, -___SC_GETPW_R_SIZE_MAX_1568, -___SC_LOGIN_NAME_MAX_1569, -___SC_TTY_NAME_MAX_1570, -___SC_THREAD_DESTRUCTOR_ITERATIONS_1571, -___SC_THREAD_KEYS_MAX_1572, -___SC_THREAD_STACK_MIN_1573, -___SC_THREAD_THREADS_MAX_1574, -___SC_THREAD_ATTR_STACKADDR_1575, -___SC_THREAD_ATTR_STACKSIZE_1576, -___SC_THREAD_PRIORITY_SCHEDULING_1577, -___SC_THREAD_PRIO_INHERIT_1578, -___SC_THREAD_PRIO_PROTECT_1579, -___SC_THREAD_PROCESS_SHARED_1580, -___SC_NPROCESSORS_CONF_1581, -___SC_NPROCESSORS_ONLN_1582, -___SC_PHYS_PAGES_1583, -___SC_AVPHYS_PAGES_1584, -___SC_ATEXIT_MAX_1585, -___SC_PASS_MAX_1586, -___SC_XOPEN_VERSION_1587, -___SC_XOPEN_XCU_VERSION_1588, -___SC_XOPEN_UNIX_1589, -___SC_XOPEN_CRYPT_1590, -___SC_XOPEN_ENH_I18N_1591, -___SC_XOPEN_SHM_1592, -___SC_2_CHAR_TERM_1593, -___SC_2_C_VERSION_1594, -___SC_2_UPE_1595, -___SC_XOPEN_XPG2_1596, -___SC_XOPEN_XPG3_1597, -___SC_XOPEN_XPG4_1598, -___SC_CHAR_BIT_1599, -___SC_CHAR_MAX_1600, -___SC_CHAR_MIN_1601, -___SC_INT_MAX_1602, -___SC_INT_MIN_1603, -___SC_LONG_BIT_1604, -___SC_WORD_BIT_1605, -___SC_MB_LEN_MAX_1606, -___SC_NZERO_1607, -___SC_SSIZE_MAX_1608, -___SC_SCHAR_MAX_1609, -___SC_SCHAR_MIN_1610, -___SC_SHRT_MAX_1611, -___SC_SHRT_MIN_1612, -___SC_UCHAR_MAX_1613, -___SC_UINT_MAX_1614, -___SC_ULONG_MAX_1615, -___SC_USHRT_MAX_1616, -___SC_NL_ARGMAX_1617, -___SC_NL_LANGMAX_1618, -___SC_NL_MSGMAX_1619, -___SC_NL_NMAX_1620, -___SC_NL_SETMAX_1621, -___SC_NL_TEXTMAX_1622, -___SC_XBS5_ILP32_OFF32_1623, -___SC_XBS5_ILP32_OFFBIG_1624, -___SC_XBS5_LP64_OFF64_1625, -___SC_XBS5_LPBIG_OFFBIG_1626, -___SC_XOPEN_LEGACY_1627, -___SC_XOPEN_REALTIME_1628, -___SC_XOPEN_REALTIME_THREADS_1629, -___SC_ADVISORY_INFO_1630, -___SC_BARRIERS_1631, -___SC_BASE_1632, -___SC_C_LANG_SUPPORT_1633, -___SC_C_LANG_SUPPORT_R_1634, -___SC_CLOCK_SELECTION_1635, -___SC_CPUTIME_1636, -___SC_THREAD_CPUTIME_1637, -___SC_DEVICE_IO_1638, -___SC_DEVICE_SPECIFIC_1639, -___SC_DEVICE_SPECIFIC_R_1640, -___SC_FD_MGMT_1641, -___SC_FIFO_1642, -___SC_PIPE_1643, -___SC_FILE_ATTRIBUTES_1644, -___SC_FILE_LOCKING_1645, -___SC_FILE_SYSTEM_1646, -___SC_MONOTONIC_CLOCK_1647, -___SC_MULTI_PROCESS_1648, -___SC_SINGLE_PROCESS_1649, -___SC_NETWORKING_1650, -___SC_READER_WRITER_LOCKS_1651, -___SC_SPIN_LOCKS_1652, -___SC_REGEXP_1653, -___SC_REGEX_VERSION_1654, -___SC_SHELL_1655, -___SC_SIGNALS_1656, -___SC_SPAWN_1657, -___SC_SPORADIC_SERVER_1658, -___SC_THREAD_SPORADIC_SERVER_1659, -___SC_SYSTEM_DATABASE_1660, -___SC_SYSTEM_DATABASE_R_1661, -___SC_TIMEOUTS_1662, -___SC_TYPED_MEMORY_OBJECTS_1663, -___SC_USER_GROUPS_1664, -___SC_USER_GROUPS_R_1665, -___SC_2_PBS_1666, -___SC_2_PBS_ACCOUNTING_1667, -___SC_2_PBS_LOCATE_1668, -___SC_2_PBS_MESSAGE_1669, -___SC_2_PBS_TRACK_1670, -___SC_SYMLOOP_MAX_1671, -___SC_STREAMS_1672, -___SC_2_PBS_CHECKPOINT_1673, -___SC_V6_ILP32_OFF32_1674, -___SC_V6_ILP32_OFFBIG_1675, -___SC_V6_LP64_OFF64_1676, -___SC_V6_LPBIG_OFFBIG_1677, -___SC_HOST_NAME_MAX_1678, -___SC_TRACE_1679, -___SC_TRACE_EVENT_FILTER_1680, -___SC_TRACE_INHERIT_1681, -___SC_TRACE_LOG_1682, -___SC_LEVEL1_ICACHE_SIZE_1683, -___SC_LEVEL1_ICACHE_ASSOC_1684, -___SC_LEVEL1_ICACHE_LINESIZE_1685, -___SC_LEVEL1_DCACHE_SIZE_1686, -___SC_LEVEL1_DCACHE_ASSOC_1687, -___SC_LEVEL1_DCACHE_LINESIZE_1688, -___SC_LEVEL2_CACHE_SIZE_1689, -___SC_LEVEL2_CACHE_ASSOC_1690, -___SC_LEVEL2_CACHE_LINESIZE_1691, -___SC_LEVEL3_CACHE_SIZE_1692, -___SC_LEVEL3_CACHE_ASSOC_1693, -___SC_LEVEL3_CACHE_LINESIZE_1694, -___SC_LEVEL4_CACHE_SIZE_1695, -___SC_LEVEL4_CACHE_ASSOC_1696, -___SC_LEVEL4_CACHE_LINESIZE_1697, -___SC_IPV6_1698 = ___SC_LEVEL1_ICACHE_SIZE_1683 + 50, -___SC_RAW_SOCKETS_1699, -___SC_V7_ILP32_OFF32_1700, -___SC_V7_ILP32_OFFBIG_1701, -___SC_V7_LP64_OFF64_1702, -___SC_V7_LPBIG_OFFBIG_1703, -___SC_SS_REPL_MAX_1704, -___SC_TRACE_EVENT_NAME_MAX_1705, -___SC_TRACE_NAME_MAX_1706, -___SC_TRACE_SYS_MAX_1707, -___SC_TRACE_USER_EVENT_MAX_1708, -___SC_XOPEN_STREAMS_1709, -___SC_THREAD_ROBUST_PRIO_INHERIT_1710, -___SC_THREAD_ROBUST_PRIO_PROTECT_1711, -}; -enum ____anonymous_tag_1778_1779 { -___CS_PATH_1714, -___CS_V6_WIDTH_RESTRICTED_ENVS_1715, -___CS_GNU_LIBC_VERSION_1716, -___CS_GNU_LIBPTHREAD_VERSION_1717, -___CS_V5_WIDTH_RESTRICTED_ENVS_1718, -___CS_V7_WIDTH_RESTRICTED_ENVS_1719, -___CS_LFS_CFLAGS_1720 = 1000, -___CS_LFS_LDFLAGS_1721, -___CS_LFS_LIBS_1722, -___CS_LFS_LINTFLAGS_1723, -___CS_LFS64_CFLAGS_1724, -___CS_LFS64_LDFLAGS_1725, -___CS_LFS64_LIBS_1726, -___CS_LFS64_LINTFLAGS_1727, -___CS_XBS5_ILP32_OFF32_CFLAGS_1728 = 1100, -___CS_XBS5_ILP32_OFF32_LDFLAGS_1729, -___CS_XBS5_ILP32_OFF32_LIBS_1730, -___CS_XBS5_ILP32_OFF32_LINTFLAGS_1731, -___CS_XBS5_ILP32_OFFBIG_CFLAGS_1732, -___CS_XBS5_ILP32_OFFBIG_LDFLAGS_1733, -___CS_XBS5_ILP32_OFFBIG_LIBS_1734, -___CS_XBS5_ILP32_OFFBIG_LINTFLAGS_1735, -___CS_XBS5_LP64_OFF64_CFLAGS_1736, -___CS_XBS5_LP64_OFF64_LDFLAGS_1737, -___CS_XBS5_LP64_OFF64_LIBS_1738, -___CS_XBS5_LP64_OFF64_LINTFLAGS_1739, -___CS_XBS5_LPBIG_OFFBIG_CFLAGS_1740, -___CS_XBS5_LPBIG_OFFBIG_LDFLAGS_1741, -___CS_XBS5_LPBIG_OFFBIG_LIBS_1742, -___CS_XBS5_LPBIG_OFFBIG_LINTFLAGS_1743, -___CS_POSIX_V6_ILP32_OFF32_CFLAGS_1744, -___CS_POSIX_V6_ILP32_OFF32_LDFLAGS_1745, -___CS_POSIX_V6_ILP32_OFF32_LIBS_1746, -___CS_POSIX_V6_ILP32_OFF32_LINTFLAGS_1747, -___CS_POSIX_V6_ILP32_OFFBIG_CFLAGS_1748, -___CS_POSIX_V6_ILP32_OFFBIG_LDFLAGS_1749, -___CS_POSIX_V6_ILP32_OFFBIG_LIBS_1750, -___CS_POSIX_V6_ILP32_OFFBIG_LINTFLAGS_1751, -___CS_POSIX_V6_LP64_OFF64_CFLAGS_1752, -___CS_POSIX_V6_LP64_OFF64_LDFLAGS_1753, -___CS_POSIX_V6_LP64_OFF64_LIBS_1754, -___CS_POSIX_V6_LP64_OFF64_LINTFLAGS_1755, -___CS_POSIX_V6_LPBIG_OFFBIG_CFLAGS_1756, -___CS_POSIX_V6_LPBIG_OFFBIG_LDFLAGS_1757, -___CS_POSIX_V6_LPBIG_OFFBIG_LIBS_1758, -___CS_POSIX_V6_LPBIG_OFFBIG_LINTFLAGS_1759, -___CS_POSIX_V7_ILP32_OFF32_CFLAGS_1760, -___CS_POSIX_V7_ILP32_OFF32_LDFLAGS_1761, -___CS_POSIX_V7_ILP32_OFF32_LIBS_1762, -___CS_POSIX_V7_ILP32_OFF32_LINTFLAGS_1763, -___CS_POSIX_V7_ILP32_OFFBIG_CFLAGS_1764, -___CS_POSIX_V7_ILP32_OFFBIG_LDFLAGS_1765, -___CS_POSIX_V7_ILP32_OFFBIG_LIBS_1766, -___CS_POSIX_V7_ILP32_OFFBIG_LINTFLAGS_1767, -___CS_POSIX_V7_LP64_OFF64_CFLAGS_1768, -___CS_POSIX_V7_LP64_OFF64_LDFLAGS_1769, -___CS_POSIX_V7_LP64_OFF64_LIBS_1770, -___CS_POSIX_V7_LP64_OFF64_LINTFLAGS_1771, -___CS_POSIX_V7_LPBIG_OFFBIG_CFLAGS_1772, -___CS_POSIX_V7_LPBIG_OFFBIG_LDFLAGS_1773, -___CS_POSIX_V7_LPBIG_OFFBIG_LIBS_1774, -___CS_POSIX_V7_LPBIG_OFFBIG_LINTFLAGS_1775, -___CS_V6_ENV_1776, -___CS_V7_ENV_1777, +enum ____anonymous_tag_1494_1495 { +___CS_PATH_1430, +___CS_V6_WIDTH_RESTRICTED_ENVS_1431, +___CS_GNU_LIBC_VERSION_1432, +___CS_GNU_LIBPTHREAD_VERSION_1433, +___CS_V5_WIDTH_RESTRICTED_ENVS_1434, +___CS_V7_WIDTH_RESTRICTED_ENVS_1435, +___CS_LFS_CFLAGS_1436 = 1000, +___CS_LFS_LDFLAGS_1437, +___CS_LFS_LIBS_1438, +___CS_LFS_LINTFLAGS_1439, +___CS_LFS64_CFLAGS_1440, +___CS_LFS64_LDFLAGS_1441, +___CS_LFS64_LIBS_1442, +___CS_LFS64_LINTFLAGS_1443, +___CS_XBS5_ILP32_OFF32_CFLAGS_1444 = 1100, +___CS_XBS5_ILP32_OFF32_LDFLAGS_1445, +___CS_XBS5_ILP32_OFF32_LIBS_1446, +___CS_XBS5_ILP32_OFF32_LINTFLAGS_1447, +___CS_XBS5_ILP32_OFFBIG_CFLAGS_1448, +___CS_XBS5_ILP32_OFFBIG_LDFLAGS_1449, +___CS_XBS5_ILP32_OFFBIG_LIBS_1450, +___CS_XBS5_ILP32_OFFBIG_LINTFLAGS_1451, +___CS_XBS5_LP64_OFF64_CFLAGS_1452, +___CS_XBS5_LP64_OFF64_LDFLAGS_1453, +___CS_XBS5_LP64_OFF64_LIBS_1454, +___CS_XBS5_LP64_OFF64_LINTFLAGS_1455, +___CS_XBS5_LPBIG_OFFBIG_CFLAGS_1456, +___CS_XBS5_LPBIG_OFFBIG_LDFLAGS_1457, +___CS_XBS5_LPBIG_OFFBIG_LIBS_1458, +___CS_XBS5_LPBIG_OFFBIG_LINTFLAGS_1459, +___CS_POSIX_V6_ILP32_OFF32_CFLAGS_1460, +___CS_POSIX_V6_ILP32_OFF32_LDFLAGS_1461, +___CS_POSIX_V6_ILP32_OFF32_LIBS_1462, +___CS_POSIX_V6_ILP32_OFF32_LINTFLAGS_1463, +___CS_POSIX_V6_ILP32_OFFBIG_CFLAGS_1464, +___CS_POSIX_V6_ILP32_OFFBIG_LDFLAGS_1465, +___CS_POSIX_V6_ILP32_OFFBIG_LIBS_1466, +___CS_POSIX_V6_ILP32_OFFBIG_LINTFLAGS_1467, +___CS_POSIX_V6_LP64_OFF64_CFLAGS_1468, +___CS_POSIX_V6_LP64_OFF64_LDFLAGS_1469, +___CS_POSIX_V6_LP64_OFF64_LIBS_1470, +___CS_POSIX_V6_LP64_OFF64_LINTFLAGS_1471, +___CS_POSIX_V6_LPBIG_OFFBIG_CFLAGS_1472, +___CS_POSIX_V6_LPBIG_OFFBIG_LDFLAGS_1473, +___CS_POSIX_V6_LPBIG_OFFBIG_LIBS_1474, +___CS_POSIX_V6_LPBIG_OFFBIG_LINTFLAGS_1475, +___CS_POSIX_V7_ILP32_OFF32_CFLAGS_1476, +___CS_POSIX_V7_ILP32_OFF32_LDFLAGS_1477, +___CS_POSIX_V7_ILP32_OFF32_LIBS_1478, +___CS_POSIX_V7_ILP32_OFF32_LINTFLAGS_1479, +___CS_POSIX_V7_ILP32_OFFBIG_CFLAGS_1480, +___CS_POSIX_V7_ILP32_OFFBIG_LDFLAGS_1481, +___CS_POSIX_V7_ILP32_OFFBIG_LIBS_1482, +___CS_POSIX_V7_ILP32_OFFBIG_LINTFLAGS_1483, +___CS_POSIX_V7_LP64_OFF64_CFLAGS_1484, +___CS_POSIX_V7_LP64_OFF64_LDFLAGS_1485, +___CS_POSIX_V7_LP64_OFF64_LIBS_1486, +___CS_POSIX_V7_LP64_OFF64_LINTFLAGS_1487, +___CS_POSIX_V7_LPBIG_OFFBIG_CFLAGS_1488, +___CS_POSIX_V7_LPBIG_OFFBIG_LDFLAGS_1489, +___CS_POSIX_V7_LPBIG_OFFBIG_LIBS_1490, +___CS_POSIX_V7_LPBIG_OFFBIG_LINTFLAGS_1491, +___CS_V6_ENV_1492, +___CS_V7_ENV_1493, }; -struct __forward_tag_reference_89 { // generated union of struct variations +struct __forward_tag_reference_57 { // generated union of struct variations union { -struct ___IO_marker_90 ___IO_marker_90; +struct ___IO_FILE_95 ___IO_FILE_95; +struct ___IO_FILE_119 ___IO_FILE_119; }; }; -struct __forward_tag_reference_58 { // generated union of struct variations +struct __forward_tag_reference_85 { // generated union of struct variations union { -struct ___IO_FILE_99 ___IO_FILE_99; -struct ___IO_FILE_124 ___IO_FILE_124; +struct ___IO_marker_86 ___IO_marker_86; }; }; -struct __forward_tag_reference_87 { // generated union of struct variations +struct __forward_tag_reference_83 { // generated union of struct variations union { }; }; -struct __forward_tag_reference_174 { // generated union of struct variations +struct __forward_tag_reference_166 { // generated union of struct variations union { }; }; @@ -2297,225 +1566,225 @@ union { // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_58 ;// L0 +struct __forward_tag_reference_57 ;// L0 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_87 ;// L0 -struct __forward_tag_reference_87 ;// L0 -struct __forward_tag_reference_58 ;// L0 +struct __forward_tag_reference_83 ;// L0 +struct __forward_tag_reference_83 ;// L0 +struct __forward_tag_reference_57 ;// L0 // typedef moved to top of scope -struct ___IO_marker_90 ;// L156 -enum ____codecvt_result_98 ;// L176 -struct ___IO_FILE_99 ;// L241 +struct ___IO_marker_86 ;// L156 +enum ____codecvt_result_94 ;// L176 +struct ___IO_FILE_95 ;// L241 -struct ___IO_FILE_124 ;// L241 -struct ___IO_FILE_complete_157 ;// L241 +struct ___IO_FILE_119 ;// L241 +struct ___IO_FILE_complete_150 ;// L241 // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_174 ;// L0 -extern struct __forward_tag_reference_174 ___IO_2_1_stdin__175;// L315 -extern struct __forward_tag_reference_174 ___IO_2_1_stdout__176;// L316 -extern struct __forward_tag_reference_174 ___IO_2_1_stderr__177;// L317 +struct __forward_tag_reference_166 ;// L0 +extern struct __forward_tag_reference_166 ___IO_2_1_stdin__167;// L315 +extern struct __forward_tag_reference_166 ___IO_2_1_stdout__168;// L316 +extern struct __forward_tag_reference_166 ___IO_2_1_stderr__169;// L317 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern int (____underflow_196) (___IO_FILE_171 *);// L385 -extern int (____underflow_197) (___IO_FILE_172 *);// L385 -extern int (____uflow_199) (___IO_FILE_171 *);// L386 -extern int (____uflow_200) (___IO_FILE_172 *);// L386 -extern int (____overflow_202) (___IO_FILE_171 *, int );// L387 -extern int (____overflow_203) (___IO_FILE_172 *, int );// L387 -extern int (___IO_getc_208) (___IO_FILE_171 * (____fp_205));// L429 -extern int (___IO_getc_209) (___IO_FILE_172 * (____fp_206));// L429 -extern int (___IO_putc_215) (int ____c_211, ___IO_FILE_171 * (____fp_212));// L430 -extern int (___IO_putc_216) (int ____c_211, ___IO_FILE_172 * (____fp_213));// L430 -extern int (___IO_feof_221) (___IO_FILE_171 * (____fp_218));// L431 -extern int (___IO_feof_222) (___IO_FILE_172 * (____fp_219));// L431 -extern int (___IO_ferror_227) (___IO_FILE_171 * (____fp_224));// L432 -extern int (___IO_ferror_228) (___IO_FILE_172 * (____fp_225));// L432 -extern int (___IO_peekc_locked_233) (___IO_FILE_171 * (____fp_230));// L434 -extern int (___IO_peekc_locked_234) (___IO_FILE_172 * (____fp_231));// L434 -extern void (___IO_flockfile_236) (___IO_FILE_171 *);// L440 -extern void (___IO_flockfile_237) (___IO_FILE_172 *);// L440 -extern void (___IO_funlockfile_239) (___IO_FILE_171 *);// L441 -extern void (___IO_funlockfile_240) (___IO_FILE_172 *);// L441 -extern int (___IO_ftrylockfile_242) (___IO_FILE_171 *);// L442 -extern int (___IO_ftrylockfile_243) (___IO_FILE_172 *);// L442 -extern int (___IO_vfscanf_245) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_247) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_251) (___IO_FILE_171 * __restrict , const char * __restrict , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_252) (___IO_FILE_172 * __restrict , const char * __restrict , int * __restrict );// L459:L460 -extern int (___IO_vfprintf_254) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 -extern int (___IO_vfprintf_256) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 -extern int (___IO_vfprintf_260) ();// L461:L462 -extern ____ssize_t_49 (___IO_padn_261) (___IO_FILE_171 *, int , ____ssize_t_49 );// L463 -extern ____ssize_t_49 (___IO_padn_262) (___IO_FILE_172 *, int , ____ssize_t_49 );// L463 -extern __size_t_1 (___IO_sgetn_265) (___IO_FILE_171 *, void *, __size_t_1 );// L464 -extern __size_t_1 (___IO_sgetn_266) (___IO_FILE_172 *, void *, __size_t_1 );// L464 -extern ____off64_t_24 (___IO_seekoff_268) (___IO_FILE_171 *, ____off64_t_24 , int , int );// L466 -extern ____off64_t_24 (___IO_seekoff_269) (___IO_FILE_172 *, ____off64_t_24 , int , int );// L466 -extern ____off64_t_24 (___IO_seekpos_272) (___IO_FILE_171 *, ____off64_t_24 , int );// L467 -extern ____off64_t_24 (___IO_seekpos_273) (___IO_FILE_172 *, ____off64_t_24 , int );// L467 -extern void (___IO_free_backup_area_276) (___IO_FILE_171 *);// L469 -extern void (___IO_free_backup_area_277) (___IO_FILE_172 *);// L469 +extern int (____underflow_184) (___IO_FILE_163 *);// L385 +extern int (____underflow_185) (___IO_FILE_164 *);// L385 +extern int (____uflow_186) (___IO_FILE_163 *);// L386 +extern int (____uflow_187) (___IO_FILE_164 *);// L386 +extern int (____overflow_188) (___IO_FILE_163 *, int );// L387 +extern int (____overflow_189) (___IO_FILE_164 *, int );// L387 +extern int (___IO_getc_193) (___IO_FILE_163 * (____fp_190));// L429 +extern int (___IO_getc_194) (___IO_FILE_164 * (____fp_191));// L429 +extern int (___IO_putc_199) (int ____c_195, ___IO_FILE_163 * (____fp_196));// L430 +extern int (___IO_putc_200) (int ____c_195, ___IO_FILE_164 * (____fp_197));// L430 +extern int (___IO_feof_204) (___IO_FILE_163 * (____fp_201));// L431 +extern int (___IO_feof_205) (___IO_FILE_164 * (____fp_202));// L431 +extern int (___IO_ferror_209) (___IO_FILE_163 * (____fp_206));// L432 +extern int (___IO_ferror_210) (___IO_FILE_164 * (____fp_207));// L432 +extern int (___IO_peekc_locked_214) (___IO_FILE_163 * (____fp_211));// L434 +extern int (___IO_peekc_locked_215) (___IO_FILE_164 * (____fp_212));// L434 +extern void (___IO_flockfile_216) (___IO_FILE_163 *);// L440 +extern void (___IO_flockfile_217) (___IO_FILE_164 *);// L440 +extern void (___IO_funlockfile_218) (___IO_FILE_163 *);// L441 +extern void (___IO_funlockfile_219) (___IO_FILE_164 *);// L441 +extern int (___IO_ftrylockfile_220) (___IO_FILE_163 *);// L442 +extern int (___IO_ftrylockfile_221) (___IO_FILE_164 *);// L442 +extern int (___IO_vfscanf_222) (___IO_FILE_163 * __restrict , const char * __restrict , ____gnuc_va_list_82 , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_224) (___IO_FILE_164 * __restrict , const char * __restrict , ____gnuc_va_list_82 , int * __restrict );// L459:L460 + + +extern int (___IO_vfprintf_231) (___IO_FILE_163 * __restrict , const char * __restrict , ____gnuc_va_list_82 );// L461:L462 +extern int (___IO_vfprintf_233) (___IO_FILE_164 * __restrict , const char * __restrict , ____gnuc_va_list_82 );// L461:L462 + +extern ____ssize_t_49 (___IO_padn_238) (___IO_FILE_163 *, int , ____ssize_t_49 );// L463 +extern ____ssize_t_49 (___IO_padn_239) (___IO_FILE_164 *, int , ____ssize_t_49 );// L463 +extern __size_t_1 (___IO_sgetn_240) (___IO_FILE_163 *, void *, __size_t_1 );// L464 +extern __size_t_1 (___IO_sgetn_241) (___IO_FILE_164 *, void *, __size_t_1 );// L464 +extern ____off64_t_24 (___IO_seekoff_242) (___IO_FILE_163 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekoff_243) (___IO_FILE_164 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekpos_244) (___IO_FILE_163 *, ____off64_t_24 , int );// L467 +extern ____off64_t_24 (___IO_seekpos_245) (___IO_FILE_164 *, ____off64_t_24 , int );// L467 +extern void (___IO_free_backup_area_246) (___IO_FILE_163 *);// L469 +extern void (___IO_free_backup_area_247) (___IO_FILE_164 *);// L469 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern struct ___IO_FILE_99 * (__stdin_291);// L168 -extern struct ___IO_FILE_124 * (__stdin_292);// L168 -extern struct ___IO_FILE_99 * (__stdout_294);// L169 -extern struct ___IO_FILE_124 * (__stdout_295);// L169 -extern struct ___IO_FILE_99 * (__stderr_297);// L170 -extern struct ___IO_FILE_124 * (__stderr_298);// L170 -extern int (__remove_301) (const char * (____filename_300));// L178 -extern int (__rename_304) (const char * (____old_302), const char * (____new_303));// L180 -extern int (__renameat_309) (int ____oldfd_305, const char * (____old_306), int ____newfd_307, const char * (____new_308));// L185:L186 -extern __FILE_59 * ((__tmpfile_310) (void ));// L195 -extern __FILE_59 * ((__tmpfile_316) (void ));// L198 -extern __FILE_59 * ((__tmpfile_314) (void ));// L195 -extern __FILE_59 * ((__tmpfile_312) (void ));// L198 -extern char * ((__tmpnam_319) (char * (____s_318)));// L209 -extern char * ((__tmpnam_320) (char * (____s_318)));// L209 -extern char * ((__tmpnam_r_322) (char * (____s_321)));// L215 -extern char * ((__tmpnam_r_323) (char * (____s_321)));// L215 -extern char * ((__tempnam_326) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 -extern char * ((__tempnam_327) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 -extern int (__fclose_330) (__FILE_59 * (____stream_328));// L237 -extern int (__fclose_332) (__FILE_59 * (____stream_328));// L237 -extern int (__fflush_336) (__FILE_59 * (____stream_334));// L242 -extern int (__fflush_unlocked_340) (__FILE_59 * (____stream_338));// L252 -extern __FILE_59 * ((__fopen_344) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 -extern __FILE_59 * ((__fopen_346) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 -extern __FILE_59 * ((__fopen_354) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 -extern __FILE_59 * ((__fopen_356) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 -extern __FILE_59 * ((__freopen_362) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 -extern __FILE_59 * ((__freopen_368) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 -extern __FILE_59 * ((__freopen_366) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 -extern __FILE_59 * ((__freopen_364) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 -extern __FILE_59 * ((__fdopen_372) (int ____fd_370, const char * (____modes_371)));// L306 -extern __FILE_59 * ((__fdopen_374) (int ____fd_370, const char * (____modes_371)));// L306 -extern __FILE_59 * ((__fmemopen_379) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 -extern __FILE_59 * ((__fmemopen_381) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 -extern __FILE_59 * ((__open_memstream_385) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 -extern __FILE_59 * ((__open_memstream_387) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 -extern void (__setbuf_392) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 -extern void (__setbuf_394) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 -extern int (__setvbuf_401) (__FILE_59 * __restrict ____stream_396, char * __restrict ____buf_398, int ____modes_399, __size_t_1 ____n_400);// L336:L337 -extern void (__setbuffer_407) (__FILE_59 * __restrict ____stream_403, char * __restrict ____buf_405, __size_t_1 ____size_406);// L343:L344 -extern void (__setlinebuf_411) (__FILE_59 * (____stream_409));// L347 -extern int (__fprintf_416) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 -extern int (__fprintf_418) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 -extern int (__printf_421) (const char * __restrict ____format_420, ... );// L362 -extern int (__sprintf_424) (char * __restrict ____s_422, const char * __restrict ____format_423, ... );// L364:L365 -extern int (__vfprintf_430) (__FILE_59 * __restrict ____s_425, const char * __restrict ____format_427, ____gnuc_va_list_86 ____arg_428);// L371:L372 -extern int (__vprintf_437) (const char * __restrict ____format_434, ____gnuc_va_list_86 ____arg_435);// L377 -extern int (__vsprintf_443) (char * __restrict ____s_439, const char * __restrict ____format_440, ____gnuc_va_list_86 ____arg_441);// L379:L380 -extern int (__snprintf_448) (char * __restrict ____s_445, __size_t_1 ____maxlen_446, const char * __restrict ____format_447, ... );// L386:L388 -extern int (__vsnprintf_454) (char * __restrict ____s_449, __size_t_1 ____maxlen_450, const char * __restrict ____format_451, ____gnuc_va_list_86 ____arg_452);// L390:L392 -extern int (__vdprintf_460) (int ____fd_456, const char * __restrict ____fmt_457, ____gnuc_va_list_86 ____arg_458);// L412:L414 -extern int (__dprintf_464) (int ____fd_462, const char * __restrict ____fmt_463, ... );// L415:L416 -extern int (__fscanf_468) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__fscanf_470) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__fscanf_472) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__fscanf_474) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__scanf_477) (const char * __restrict ____format_476, ... );// L431 -extern int (__scanf_478) (const char * __restrict ____format_476, ... );// L431 -extern int (__sscanf_481) (const char * __restrict ____s_479, const char * __restrict ____format_480, ... );// L433:L434 - - - - - - - -extern int (__vfscanf_509) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 -extern int (__vfscanf_513) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 -extern int (__vscanf_520) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 -extern int (__vscanf_522) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 -extern int (__vsscanf_528) (const char * __restrict ____s_524, const char * __restrict ____format_525, ____gnuc_va_list_86 ____arg_526);// L483:L485 - - - - - -extern int (__fgetc_563) (__FILE_59 * (____stream_561));// L531 -extern int (__getc_567) (__FILE_59 * (____stream_565));// L532 -extern int (__getchar_569) (void );// L538 -extern int (__getc_unlocked_572) (__FILE_59 * (____stream_570));// L550 -extern int (__getchar_unlocked_574) (void );// L551 -extern int (__fgetc_unlocked_577) (__FILE_59 * (____stream_575));// L561 -extern int (__fputc_582) (int ____c_579, __FILE_59 * (____stream_580));// L573 -extern int (__fputc_584) (int ____c_579, __FILE_59 * (____stream_580));// L573 -extern int (__putc_589) (int ____c_586, __FILE_59 * (____stream_587));// L574 -extern int (__putchar_592) (int ____c_591);// L580 -extern int (__fputc_unlocked_596) (int ____c_593, __FILE_59 * (____stream_594));// L594 -extern int (__putc_unlocked_601) (int ____c_598, __FILE_59 * (____stream_599));// L602 -extern int (__putchar_unlocked_604) (int ____c_603);// L603 -extern int (__getw_607) (__FILE_59 * (____stream_605));// L610 -extern int (__putw_612) (int ____w_609, __FILE_59 * (____stream_610));// L613 -extern char * ((__fgets_618) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern char * ((__fgets_620) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern char * ((__fgets_622) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern char * ((__fgets_624) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern ____ssize_t_49 (____getdelim_631) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 -extern ____ssize_t_49 (____getdelim_635) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 -extern ____ssize_t_49 (__getdelim_644) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 -extern ____ssize_t_49 (__getdelim_648) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 -extern ____ssize_t_49 (__getline_656) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 -extern ____ssize_t_49 (__getline_660) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 -extern int (__fputs_667) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 -extern int (__fputs_669) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 -extern int (__puts_672) (const char * (____s_671));// L695 -extern int (__ungetc_676) (int ____c_673, __FILE_59 * (____stream_674));// L702 -extern int (__fseek_714) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 -extern int (__fseek_716) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 -extern long int (__ftell_720) (__FILE_59 * (____stream_718));// L754 -extern long int (__ftell_722) (__FILE_59 * (____stream_718));// L754 -extern void (__rewind_726) (__FILE_59 * (____stream_724));// L759 -extern int (__fseeko_733) (__FILE_59 * (____stream_728), ____off_t_23 ____off_730, int ____whence_732);// L773 -extern int (__fseeko_744) (__FILE_59 * (____stream_739), ____off64_t_24 ____off_741, int ____whence_743);// L781:L783 -extern ____off_t_23 (__ftello_758) (__FILE_59 * (____stream_737));// L778 -extern ____off_t_23 (__ftello_750) (__FILE_59 * (____stream_737));// L778 -extern int (__fgetpos_766) (__FILE_59 * __restrict ____stream_762, __fpos_t_287 * __restrict ____pos_764);// L798 -extern ____off64_t_24 (__ftello_754) (__FILE_59 * (____stream_748));// L784 -extern int (__fgetpos_778) (__FILE_59 * __restrict ____stream_774, __fpos_t_289 * __restrict ____pos_776);// L806:L807 -extern int (__fsetpos_786) (__FILE_59 * (____stream_770), const __fpos_t_287 * (____pos_772));// L803 -extern int (__fsetpos_790) (__FILE_59 * (____stream_782), const __fpos_t_289 * (____pos_784));// L808:L809 -extern void (__clearerr_796) (__FILE_59 * (____stream_794));// L826 -extern int (__feof_800) (__FILE_59 * (____stream_798));// L828 -extern int (__feof_802) (__FILE_59 * (____stream_798));// L828 -extern int (__ferror_806) (__FILE_59 * (____stream_804));// L830 -extern int (__ferror_808) (__FILE_59 * (____stream_804));// L830 -extern void (__clearerr_unlocked_812) (__FILE_59 * (____stream_810));// L835 -extern int (__feof_unlocked_816) (__FILE_59 * (____stream_814));// L836 -extern int (__feof_unlocked_818) (__FILE_59 * (____stream_814));// L836 -extern int (__ferror_unlocked_822) (__FILE_59 * (____stream_820));// L837 -extern int (__ferror_unlocked_824) (__FILE_59 * (____stream_820));// L837 -extern void (__perror_827) (const char * (____s_826));// L846 -extern void (__perror_828) (const char * (____s_826));// L846 -extern int __sys_nerr_829;// L26 - -extern int (__fileno_835) (__FILE_59 * (____stream_831));// L858 -extern int (__fileno_833) (__FILE_59 * (____stream_831));// L858 -extern int (__fileno_unlocked_841) (__FILE_59 * (____stream_837));// L863 -extern int (__fileno_unlocked_839) (__FILE_59 * (____stream_837));// L863 -extern __FILE_59 * ((__popen_845) (const char * (____command_843), const char * (____modes_844)));// L872 -extern __FILE_59 * ((__popen_847) (const char * (____command_843), const char * (____modes_844)));// L872 -extern int (__pclose_851) (__FILE_59 * (____stream_849));// L878 -extern char * ((__ctermid_854) (char * (____s_853)));// L884 -extern void (__flockfile_857) (__FILE_59 * (____stream_855));// L912 -extern int (__ftrylockfile_861) (__FILE_59 * (____stream_859));// L916 -extern int (__ftrylockfile_863) (__FILE_59 * (____stream_859));// L916 -extern void (__funlockfile_867) (__FILE_59 * (____stream_865));// L919 +extern struct ___IO_FILE_95 * (__stdin_257);// L168 +extern struct ___IO_FILE_119 * (__stdin_258);// L168 +extern struct ___IO_FILE_95 * (__stdout_259);// L169 +extern struct ___IO_FILE_119 * (__stdout_260);// L169 +extern struct ___IO_FILE_95 * (__stderr_261);// L170 +extern struct ___IO_FILE_119 * (__stderr_262);// L170 +extern int (__remove_264) (const char * (____filename_263));// L178 +extern int (__rename_267) (const char * (____old_265), const char * (____new_266));// L180 +extern int (__renameat_272) (int ____oldfd_268, const char * (____old_269), int ____newfd_270, const char * (____new_271));// L185:L186 +extern __FILE_58 * ((__tmpfile_273) (void ));// L195 +extern __FILE_58 * ((__tmpfile_279) (void ));// L198 +extern __FILE_58 * ((__tmpfile_277) (void ));// L198 +extern __FILE_58 * ((__tmpfile_275) (void ));// L195 +extern char * ((__tmpnam_282) (char * (____s_281)));// L209 +extern char * ((__tmpnam_283) (char * (____s_281)));// L209 +extern char * ((__tmpnam_r_285) (char * (____s_284)));// L215 +extern char * ((__tmpnam_r_286) (char * (____s_284)));// L215 +extern char * ((__tempnam_289) (const char * (____dir_287), const char * (____pfx_288)));// L227:L228 +extern char * ((__tempnam_290) (const char * (____dir_287), const char * (____pfx_288)));// L227:L228 +extern int (__fclose_293) (__FILE_58 * (____stream_291));// L237 +extern int (__fclose_295) (__FILE_58 * (____stream_291));// L237 +extern int (__fflush_299) (__FILE_58 * (____stream_297));// L242 +extern int (__fflush_unlocked_303) (__FILE_58 * (____stream_301));// L252 +extern __FILE_58 * ((__fopen_307) (const char * __restrict ____filename_305, const char * __restrict ____modes_306));// L272:L273 +extern __FILE_58 * ((__fopen_309) (const char * __restrict ____filename_305, const char * __restrict ____modes_306));// L272:L273 +extern __FILE_58 * ((__fopen_317) (const char * __restrict ____filename_315, const char * __restrict ____modes_316));// L283:L285 +extern __FILE_58 * ((__fopen_319) (const char * __restrict ____filename_315, const char * __restrict ____modes_316));// L283:L285 +extern __FILE_58 * ((__freopen_325) (const char * __restrict ____filename_311, const char * __restrict ____modes_312, __FILE_58 * __restrict ____stream_313));// L278:L280 +extern __FILE_58 * ((__freopen_331) (const char * __restrict ____filename_321, const char * __restrict ____modes_322, __FILE_58 * __restrict ____stream_323));// L286:L289 +extern __FILE_58 * ((__freopen_329) (const char * __restrict ____filename_321, const char * __restrict ____modes_322, __FILE_58 * __restrict ____stream_323));// L286:L289 +extern __FILE_58 * ((__freopen_327) (const char * __restrict ____filename_311, const char * __restrict ____modes_312, __FILE_58 * __restrict ____stream_313));// L278:L280 +extern __FILE_58 * ((__fdopen_335) (int ____fd_333, const char * (____modes_334)));// L306 +extern __FILE_58 * ((__fdopen_337) (int ____fd_333, const char * (____modes_334)));// L306 +extern __FILE_58 * ((__fmemopen_342) (void * (____s_339), __size_t_1 ____len_340, const char * (____modes_341)));// L319:L320 +extern __FILE_58 * ((__fmemopen_344) (void * (____s_339), __size_t_1 ____len_340, const char * (____modes_341)));// L319:L320 +extern __FILE_58 * ((__open_memstream_348) (char * (* (____bufloc_346)), __size_t_1 * (____sizeloc_347)));// L325 +extern __FILE_58 * ((__open_memstream_350) (char * (* (____bufloc_346)), __size_t_1 * (____sizeloc_347)));// L325 +extern void (__setbuf_355) (__FILE_58 * __restrict ____stream_352, char * __restrict ____buf_354);// L332 +extern void (__setbuf_357) (__FILE_58 * __restrict ____stream_352, char * __restrict ____buf_354);// L332 +extern int (__setvbuf_364) (__FILE_58 * __restrict ____stream_359, char * __restrict ____buf_361, int ____modes_362, __size_t_1 ____n_363);// L336:L337 +extern void (__setbuffer_369) (__FILE_58 * __restrict ____stream_365, char * __restrict ____buf_367, __size_t_1 ____size_368);// L343:L344 +extern void (__setlinebuf_373) (__FILE_58 * (____stream_371));// L347 +extern int (__fprintf_378) (__FILE_58 * __restrict ____stream_375, const char * __restrict ____format_377, ... );// L356:L357 +extern int (__fprintf_380) (__FILE_58 * __restrict ____stream_375, const char * __restrict ____format_377, ... );// L356:L357 +extern int (__printf_383) (const char * __restrict ____format_382, ... );// L362 +extern int (__sprintf_386) (char * __restrict ____s_384, const char * __restrict ____format_385, ... );// L364:L365 +extern int (__vfprintf_392) (__FILE_58 * __restrict ____s_387, const char * __restrict ____format_389, ____gnuc_va_list_82 ____arg_390);// L371:L372 +extern int (__vprintf_399) (const char * __restrict ____format_396, ____gnuc_va_list_82 ____arg_397);// L377 +extern int (__vsprintf_405) (char * __restrict ____s_401, const char * __restrict ____format_402, ____gnuc_va_list_82 ____arg_403);// L379:L380 +extern int (__snprintf_409) (char * __restrict ____s_406, __size_t_1 ____maxlen_407, const char * __restrict ____format_408, ... );// L386:L388 +extern int (__vsnprintf_415) (char * __restrict ____s_410, __size_t_1 ____maxlen_411, const char * __restrict ____format_412, ____gnuc_va_list_82 ____arg_413);// L390:L392 +extern int (__vdprintf_420) (int ____fd_416, const char * __restrict ____fmt_417, ____gnuc_va_list_82 ____arg_418);// L412:L414 +extern int (__dprintf_424) (int ____fd_422, const char * __restrict ____fmt_423, ... );// L415:L416 +extern int (__fscanf_428) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 +extern int (__fscanf_430) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 +extern int (__fscanf_432) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 +extern int (__fscanf_434) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 +extern int (__scanf_437) (const char * __restrict ____format_436, ... );// L431 +extern int (__scanf_438) (const char * __restrict ____format_436, ... );// L431 +extern int (__sscanf_441) (const char * __restrict ____s_439, const char * __restrict ____format_440, ... );// L433:L434 + + + + + + + +extern int (__vfscanf_468) (__FILE_58 * __restrict ____s_463, const char * __restrict ____format_465, ____gnuc_va_list_82 ____arg_466);// L471:L473 +extern int (__vfscanf_472) (__FILE_58 * __restrict ____s_463, const char * __restrict ____format_465, ____gnuc_va_list_82 ____arg_466);// L471:L473 +extern int (__vscanf_479) (const char * __restrict ____format_476, ____gnuc_va_list_82 ____arg_477);// L479:L480 +extern int (__vscanf_481) (const char * __restrict ____format_476, ____gnuc_va_list_82 ____arg_477);// L479:L480 +extern int (__vsscanf_487) (const char * __restrict ____s_483, const char * __restrict ____format_484, ____gnuc_va_list_82 ____arg_485);// L483:L485 + + + + + +extern int (__fgetc_520) (__FILE_58 * (____stream_518));// L531 +extern int (__getc_523) (__FILE_58 * (____stream_521));// L532 +extern int (__getchar_524) (void );// L538 +extern int (__getc_unlocked_527) (__FILE_58 * (____stream_525));// L550 +extern int (__getchar_unlocked_529) (void );// L551 +extern int (__fgetc_unlocked_532) (__FILE_58 * (____stream_530));// L561 +extern int (__fputc_537) (int ____c_534, __FILE_58 * (____stream_535));// L573 +extern int (__fputc_539) (int ____c_534, __FILE_58 * (____stream_535));// L573 +extern int (__putc_544) (int ____c_541, __FILE_58 * (____stream_542));// L574 +extern int (__putchar_546) (int ____c_545);// L580 +extern int (__fputc_unlocked_550) (int ____c_547, __FILE_58 * (____stream_548));// L594 +extern int (__putc_unlocked_555) (int ____c_552, __FILE_58 * (____stream_553));// L602 +extern int (__putchar_unlocked_558) (int ____c_557);// L603 +extern int (__getw_561) (__FILE_58 * (____stream_559));// L610 +extern int (__putw_566) (int ____w_563, __FILE_58 * (____stream_564));// L613 +extern char * ((__fgets_572) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 +extern char * ((__fgets_574) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 +extern char * ((__fgets_576) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 +extern char * ((__fgets_578) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 +extern ____ssize_t_49 (____getdelim_585) (char * (* __restrict ____lineptr_580), __size_t_1 * __restrict ____n_581, int ____delimiter_582, __FILE_58 * __restrict ____stream_583);// L665:L667 +extern ____ssize_t_49 (____getdelim_587) (char * (* __restrict ____lineptr_580), __size_t_1 * __restrict ____n_581, int ____delimiter_582, __FILE_58 * __restrict ____stream_583);// L665:L667 +extern ____ssize_t_49 (__getdelim_594) (char * (* __restrict ____lineptr_589), __size_t_1 * __restrict ____n_590, int ____delimiter_591, __FILE_58 * __restrict ____stream_592);// L668:L670 +extern ____ssize_t_49 (__getdelim_596) (char * (* __restrict ____lineptr_589), __size_t_1 * __restrict ____n_590, int ____delimiter_591, __FILE_58 * __restrict ____stream_592);// L668:L670 +extern ____ssize_t_49 (__getline_602) (char * (* __restrict ____lineptr_598), __size_t_1 * __restrict ____n_599, __FILE_58 * __restrict ____stream_600);// L678:L680 +extern ____ssize_t_49 (__getline_604) (char * (* __restrict ____lineptr_598), __size_t_1 * __restrict ____n_599, __FILE_58 * __restrict ____stream_600);// L678:L680 +extern int (__fputs_609) (const char * __restrict ____s_606, __FILE_58 * __restrict ____stream_607);// L689 +extern int (__fputs_611) (const char * __restrict ____s_606, __FILE_58 * __restrict ____stream_607);// L689 +extern int (__puts_614) (const char * (____s_613));// L695 +extern int (__ungetc_618) (int ____c_615, __FILE_58 * (____stream_616));// L702 +extern int (__fseek_654) (__FILE_58 * (____stream_650), long int ____off_652, int ____whence_653);// L749 +extern int (__fseek_656) (__FILE_58 * (____stream_650), long int ____off_652, int ____whence_653);// L749 +extern long int (__ftell_660) (__FILE_58 * (____stream_658));// L754 +extern long int (__ftell_662) (__FILE_58 * (____stream_658));// L754 +extern void (__rewind_666) (__FILE_58 * (____stream_664));// L759 +extern int (__fseeko_671) (__FILE_58 * (____stream_667), ____off_t_23 ____off_669, int ____whence_670);// L773 +extern int (__fseeko_679) (__FILE_58 * (____stream_675), ____off64_t_24 ____off_677, int ____whence_678);// L781:L783 +extern ____off_t_23 (__ftello_683) (__FILE_58 * (____stream_673));// L778 +extern ____off_t_23 (__ftello_685) (__FILE_58 * (____stream_673));// L778 +extern int (__fgetpos_693) (__FILE_58 * __restrict ____stream_689, __fpos_t_253 * __restrict ____pos_691);// L798 +extern ____off64_t_24 (__ftello_687) (__FILE_58 * (____stream_681));// L784 +extern int (__fgetpos_705) (__FILE_58 * __restrict ____stream_701, __fpos_t_255 * __restrict ____pos_703);// L806:L807 +extern int (__fsetpos_713) (__FILE_58 * (____stream_697), const __fpos_t_253 * (____pos_699));// L803 +extern int (__fsetpos_717) (__FILE_58 * (____stream_709), const __fpos_t_255 * (____pos_711));// L808:L809 +extern void (__clearerr_723) (__FILE_58 * (____stream_721));// L826 +extern int (__feof_726) (__FILE_58 * (____stream_724));// L828 +extern int (__feof_728) (__FILE_58 * (____stream_724));// L828 +extern int (__ferror_732) (__FILE_58 * (____stream_730));// L830 +extern int (__ferror_734) (__FILE_58 * (____stream_730));// L830 +extern void (__clearerr_unlocked_738) (__FILE_58 * (____stream_736));// L835 +extern int (__feof_unlocked_742) (__FILE_58 * (____stream_740));// L836 +extern int (__feof_unlocked_744) (__FILE_58 * (____stream_740));// L836 +extern int (__ferror_unlocked_748) (__FILE_58 * (____stream_746));// L837 +extern int (__ferror_unlocked_750) (__FILE_58 * (____stream_746));// L837 +extern void (__perror_753) (const char * (____s_752));// L846 +extern void (__perror_754) (const char * (____s_752));// L846 +extern int __sys_nerr_755;// L26 + +extern int (__fileno_761) (__FILE_58 * (____stream_757));// L858 +extern int (__fileno_759) (__FILE_58 * (____stream_757));// L858 +extern int (__fileno_unlocked_767) (__FILE_58 * (____stream_763));// L863 +extern int (__fileno_unlocked_765) (__FILE_58 * (____stream_763));// L863 +extern __FILE_58 * ((__popen_771) (const char * (____command_769), const char * (____modes_770)));// L872 +extern __FILE_58 * ((__popen_773) (const char * (____command_769), const char * (____modes_770)));// L872 +extern int (__pclose_777) (__FILE_58 * (____stream_775));// L878 +extern char * ((__ctermid_780) (char * (____s_779)));// L884 +extern void (__flockfile_783) (__FILE_58 * (____stream_781));// L912 +extern int (__ftrylockfile_787) (__FILE_58 * (____stream_785));// L916 +extern int (__ftrylockfile_789) (__FILE_58 * (____stream_785));// L916 +extern void (__funlockfile_793) (__FILE_58 * (____stream_791));// L919 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ @@ -2527,89 +1796,33 @@ extern void (__funlockfile_867) (__FILE_59 * (____stream_865));// L919 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____sprintf_chk_899) (char * __restrict ____s_895, int ____flag_896, __size_t_1 ____slen_897, const char * __restrict ____format_898, ... );// L23:L24 -extern int (____vsprintf_chk_906) (char * __restrict ____s_900, int ____flag_901, __size_t_1 ____slen_902, const char * __restrict ____format_903, ____gnuc_va_list_86 ____ap_904);// L25:L27 +extern int (____sprintf_chk_825) (char * __restrict ____s_821, int ____flag_822, __size_t_1 ____slen_823, const char * __restrict ____format_824, ... );// L23:L24 +extern int (____vsprintf_chk_832) (char * __restrict ____s_826, int ____flag_827, __size_t_1 ____slen_828, const char * __restrict ____format_829, ____gnuc_va_list_82 ____ap_830);// L25:L27 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____snprintf_chk_920) (char * __restrict ____s_915, __size_t_1 ____n_916, int ____flag_917, __size_t_1 ____slen_918, const char * __restrict ____format_919, ... );// L52:L54 -extern int (____vsnprintf_chk_928) (char * __restrict ____s_921, __size_t_1 ____n_922, int ____flag_923, __size_t_1 ____slen_924, const char * __restrict ____format_925, ____gnuc_va_list_86 ____ap_926);// L55:L57 +extern int (____snprintf_chk_846) (char * __restrict ____s_841, __size_t_1 ____n_842, int ____flag_843, __size_t_1 ____slen_844, const char * __restrict ____format_845, ... );// L52:L54 +extern int (____vsnprintf_chk_854) (char * __restrict ____s_847, __size_t_1 ____n_848, int ____flag_849, __size_t_1 ____slen_850, const char * __restrict ____format_851, ____gnuc_va_list_82 ____ap_852);// L55:L57 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____fprintf_chk_943) (__FILE_59 * __restrict ____stream_939, int ____flag_941, const char * __restrict ____format_942, ... );// L85:L86 -extern int (____printf_chk_947) (int ____flag_945, const char * __restrict ____format_946, ... );// L87 -extern int (____vfprintf_chk_954) (__FILE_59 * __restrict ____stream_948, int ____flag_950, const char * __restrict ____format_951, ____gnuc_va_list_86 ____ap_952);// L88:L89 -extern int (____vprintf_chk_962) (int ____flag_958, const char * __restrict ____format_959, ____gnuc_va_list_86 ____ap_960);// L90:L91 +extern int (____fprintf_chk_869) (__FILE_58 * __restrict ____stream_865, int ____flag_867, const char * __restrict ____format_868, ... );// L85:L86 +extern int (____printf_chk_873) (int ____flag_871, const char * __restrict ____format_872, ... );// L87 +extern int (____vfprintf_chk_880) (__FILE_58 * __restrict ____stream_874, int ____flag_876, const char * __restrict ____format_877, ____gnuc_va_list_82 ____ap_878);// L88:L89 +extern int (____vprintf_chk_888) (int ____flag_884, const char * __restrict ____format_885, ____gnuc_va_list_82 ____ap_886);// L90:L91 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____dprintf_chk_984) (int ____fd_981, int ____flag_982, const char * __restrict ____fmt_983, ... );// L131:L132 -extern int (____vdprintf_chk_990) (int ____fd_985, int ____flag_986, const char * __restrict ____fmt_987, ____gnuc_va_list_86 ____arg_988);// L133:L135 +extern int (____dprintf_chk_910) (int ____fd_907, int ____flag_908, const char * __restrict ____fmt_909, ... );// L131:L132 +extern int (____vdprintf_chk_916) (int ____fd_911, int ____flag_912, const char * __restrict ____fmt_913, ____gnuc_va_list_82 ____arg_914);// L133:L135 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern char * ((____fgets_chk_1004) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 -extern char * ((____fgets_chk_1006) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 -extern char * ((____fgets_chk_1008) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 -extern char * ((____fgets_alias_1014) (char * __restrict ____s_1010, int ____n_1011, __FILE_59 * __restrict ____stream_1012));// L243:L245 -extern char * ((____fgets_chk_warn_1021) (char * __restrict ____s_1016, __size_t_1 ____size_1017, int ____n_1018, __FILE_59 * __restrict ____stream_1019));// L246:L250 +extern char * ((____fgets_chk_930) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 +extern char * ((____fgets_chk_932) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 +extern char * ((____fgets_chk_934) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 +extern char * ((____fgets_alias_940) (char * __restrict ____s_936, int ____n_937, __FILE_58 * __restrict ____stream_938));// L243:L245 +extern char * ((____fgets_chk_warn_947) (char * __restrict ____s_942, __size_t_1 ____size_943, int ____n_944, __FILE_58 * __restrict ____stream_945));// L246:L250 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope /* no function due to type errors in the function prototype */ // typedef moved to top of scope // typedef moved to top of scope @@ -2619,518 +1832,567 @@ extern char * ((____fgets_chk_warn_1021) (char * __restrict ____s_1016, __siz // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern int (__access_1178) (const char * (____name_1176), int ____type_1177);// L290 -extern int (__access_1179) (const char * (____name_1176), int ____type_1177);// L290 -extern int (__access_1180) (const char * (____name_1176), int ____type_1177);// L290 -extern int (__faccessat_1185) (int ____fd_1181, const char * (____file_1182), int ____type_1183, int ____flag_1184);// L307:L308 -extern int (__faccessat_1186) (int ____fd_1181, const char * (____file_1182), int ____type_1183, int ____flag_1184);// L307:L308 -extern ____off_t_23 (__lseek_1197) (int ____fd_1187, ____off_t_23 ____offset_1188, int ____whence_1191);// L337 -extern ____off_t_1111 (__lseek_1198) (int ____fd_1187, ____off_t_1111 ____offset_1189, int ____whence_1191);// L337 -extern ____off64_t_24 (__lseek_1200) (int ____fd_1192, ____off64_t_24 ____offset_1193, int ____whence_1196);// L340:L342 -extern ____off64_t_1112 (__lseek_1201) (int ____fd_1192, ____off64_t_1112 ____offset_1194, int ____whence_1196);// L340:L342 -extern int (__close_1204) (int ____fd_1203);// L356 -extern __ssize_t_285 (__read_1209) (int ____fd_1205, void * (____buf_1206), __size_t_1 ____nbytes_1207);// L363 -extern __ssize_t_1146 (__read_1210) (int ____fd_1205, void * (____buf_1206), __size_t_1 ____nbytes_1207);// L363 -extern __ssize_t_1147 (__read_1211) (int ____fd_1205, void * (____buf_1206), __size_t_1150 ____nbytes_1208);// L363 -extern __ssize_t_285 (__read_1216) (int ____fd_1205, void * (____buf_1206), __size_t_1 ____nbytes_1207);// L363 -extern __ssize_t_1146 (__read_1217) (int ____fd_1205, void * (____buf_1206), __size_t_1 ____nbytes_1207);// L363 -extern __ssize_t_1147 (__read_1218) (int ____fd_1205, void * (____buf_1206), __size_t_1150 ____nbytes_1208);// L363 -extern __ssize_t_285 (__write_1227) (int ____fd_1223, const void * (____buf_1224), __size_t_1 ____n_1225);// L369 -extern __ssize_t_1146 (__write_1228) (int ____fd_1223, const void * (____buf_1224), __size_t_1 ____n_1225);// L369 -extern __ssize_t_1147 (__write_1229) (int ____fd_1223, const void * (____buf_1224), __size_t_1150 ____n_1226);// L369 -extern __ssize_t_285 (__write_1234) (int ____fd_1223, const void * (____buf_1224), __size_t_1 ____n_1225);// L369 -extern __ssize_t_1146 (__write_1235) (int ____fd_1223, const void * (____buf_1224), __size_t_1 ____n_1225);// L369 -extern __ssize_t_1147 (__write_1236) (int ____fd_1223, const void * (____buf_1224), __size_t_1150 ____n_1226);// L369 -extern __ssize_t_285 (__pread_1248) (int ____fd_1241, void * (____buf_1242), __size_t_1 ____nbytes_1243, ____off_t_23 ____offset_1245);// L379:L380 -extern __ssize_t_1147 (__pread_1249) (int ____fd_1241, void * (____buf_1242), __size_t_1150 ____nbytes_1244, ____off_t_1111 ____offset_1246);// L379:L380 -extern __ssize_t_285 (__pread_1256) (int ____fd_1241, void * (____buf_1242), __size_t_1 ____nbytes_1243, ____off_t_23 ____offset_1245);// L379:L380 -extern __ssize_t_1147 (__pread_1257) (int ____fd_1241, void * (____buf_1242), __size_t_1150 ____nbytes_1244, ____off_t_1111 ____offset_1246);// L379:L380 -extern __ssize_t_285 (__pread_1278) (int ____fd_1271, void * (____buf_1272), __size_t_1 ____nbytes_1273, ____off64_t_24 ____offset_1275);// L391:L393 -extern __ssize_t_1147 (__pread_1279) (int ____fd_1271, void * (____buf_1272), __size_t_1150 ____nbytes_1274, ____off64_t_1112 ____offset_1276);// L391:L393 -extern __ssize_t_285 (__pread_1286) (int ____fd_1271, void * (____buf_1272), __size_t_1 ____nbytes_1273, ____off64_t_24 ____offset_1275);// L391:L393 -extern __ssize_t_1147 (__pread_1287) (int ____fd_1271, void * (____buf_1272), __size_t_1150 ____nbytes_1274, ____off64_t_1112 ____offset_1276);// L391:L393 -extern __ssize_t_285 (__pwrite_1325) (int ____fd_1294, const void * (____buf_1295), __size_t_1 ____nbytes_1296, ____off64_t_24 ____offset_1298);// L394:L396 -extern __ssize_t_1147 (__pwrite_1326) (int ____fd_1294, const void * (____buf_1295), __size_t_1150 ____nbytes_1297, ____off64_t_1112 ____offset_1299);// L394:L396 -extern __ssize_t_285 (__pwrite_1317) (int ____fd_1264, const void * (____buf_1265), __size_t_1 ____n_1266, ____off_t_23 ____offset_1268);// L387:L388 -extern __ssize_t_1147 (__pwrite_1318) (int ____fd_1264, const void * (____buf_1265), __size_t_1150 ____n_1267, ____off_t_1111 ____offset_1269);// L387:L388 -extern __ssize_t_285 (__pwrite_1309) (int ____fd_1294, const void * (____buf_1295), __size_t_1 ____nbytes_1296, ____off64_t_24 ____offset_1298);// L394:L396 -extern __ssize_t_1147 (__pwrite_1310) (int ____fd_1294, const void * (____buf_1295), __size_t_1150 ____nbytes_1297, ____off64_t_1112 ____offset_1299);// L394:L396 -extern __ssize_t_285 (__pwrite_1301) (int ____fd_1264, const void * (____buf_1265), __size_t_1 ____n_1266, ____off_t_23 ____offset_1268);// L387:L388 -extern __ssize_t_1147 (__pwrite_1302) (int ____fd_1264, const void * (____buf_1265), __size_t_1150 ____n_1267, ____off_t_1111 ____offset_1269);// L387:L388 -extern int (__pipe_1334) (int ____pipedes_1333[2]);// L420 -extern int (__pipe_1335) (int ____pipedes_1333[2]);// L420 -extern int (__pipe_1336) (int ____pipedes_1333[2]);// L420 -extern int (__pipe_1337) (int ____pipedes_1333[2]);// L420 -extern unsigned int (__alarm_1339) (unsigned int ____seconds_1338);// L435 -extern unsigned int (__sleep_1341) (unsigned int ____seconds_1340);// L447 -extern ____useconds_t_35 (__ualarm_1348) (____useconds_t_35 ____value_1342, ____useconds_t_35 ____interval_1345);// L455:L456 -extern ____useconds_t_1123 (__ualarm_1349) (____useconds_t_1123 ____value_1343, ____useconds_t_1123 ____interval_1346);// L455:L456 -extern int (__usleep_1354) (____useconds_t_35 ____useconds_1351);// L463 -extern int (__usleep_1355) (____useconds_t_1123 ____useconds_1352);// L463 -extern int (__pause_1357) (void );// L472 -extern int (__pause_1358) (void );// L472 -extern int (__chown_1366) (const char * (____file_1359), ____uid_t_17 ____owner_1360, ____gid_t_18 ____group_1363);// L476:L477 -extern int (__chown_1367) (const char * (____file_1359), ____uid_t_1105 ____owner_1361, ____gid_t_1106 ____group_1364);// L476:L477 -extern int (__chown_1369) (const char * (____file_1359), ____uid_t_17 ____owner_1360, ____gid_t_18 ____group_1363);// L476:L477 -extern int (__chown_1370) (const char * (____file_1359), ____uid_t_1105 ____owner_1361, ____gid_t_1106 ____group_1364);// L476:L477 -extern int (__fchown_1379) (int ____fd_1372, ____uid_t_17 ____owner_1373, ____gid_t_18 ____group_1376);// L481 -extern int (__fchown_1380) (int ____fd_1372, ____uid_t_1105 ____owner_1374, ____gid_t_1106 ____group_1377);// L481 -extern int (__fchown_1382) (int ____fd_1372, ____uid_t_17 ____owner_1373, ____gid_t_18 ____group_1376);// L481 -extern int (__fchown_1383) (int ____fd_1372, ____uid_t_1105 ____owner_1374, ____gid_t_1106 ____group_1377);// L481 -extern int (__lchown_1392) (const char * (____file_1385), ____uid_t_17 ____owner_1386, ____gid_t_18 ____group_1389);// L486:L487 -extern int (__lchown_1393) (const char * (____file_1385), ____uid_t_1105 ____owner_1387, ____gid_t_1106 ____group_1390);// L486:L487 -extern int (__lchown_1395) (const char * (____file_1385), ____uid_t_17 ____owner_1386, ____gid_t_18 ____group_1389);// L486:L487 -extern int (__lchown_1396) (const char * (____file_1385), ____uid_t_1105 ____owner_1387, ____gid_t_1106 ____group_1390);// L486:L487 -extern int (__fchownat_1407) (int ____fd_1398, const char * (____file_1399), ____uid_t_17 ____owner_1400, ____gid_t_18 ____group_1403, int ____flag_1406);// L494:L496 -extern int (__fchownat_1408) (int ____fd_1398, const char * (____file_1399), ____uid_t_1105 ____owner_1401, ____gid_t_1106 ____group_1404, int ____flag_1406);// L494:L496 -extern int (__fchownat_1410) (int ____fd_1398, const char * (____file_1399), ____uid_t_17 ____owner_1400, ____gid_t_18 ____group_1403, int ____flag_1406);// L494:L496 -extern int (__fchownat_1411) (int ____fd_1398, const char * (____file_1399), ____uid_t_1105 ____owner_1401, ____gid_t_1106 ____group_1404, int ____flag_1406);// L494:L496 -extern int (__chdir_1414) (const char * (____path_1413));// L500 -extern int (__chdir_1415) (const char * (____path_1413));// L500 -extern int (__chdir_1416) (const char * (____path_1413));// L500 -extern int (__chdir_1417) (const char * (____path_1413));// L500 -extern int (__fchdir_1419) (int ____fd_1418);// L504 -extern int (__fchdir_1420) (int ____fd_1418);// L504 -extern char * ((__getcwd_1424) (char * (____buf_1421), __size_t_1 ____size_1422));// L514 -extern char * ((__getcwd_1425) (char * (____buf_1421), __size_t_1150 ____size_1423));// L514 -extern char * ((__getcwd_1426) (char * (____buf_1421), __size_t_1 ____size_1422));// L514 -extern char * ((__getcwd_1427) (char * (____buf_1421), __size_t_1150 ____size_1423));// L514 -extern char * ((__getcwd_1428) (char * (____buf_1421), __size_t_1 ____size_1422));// L514 -extern char * ((__getcwd_1429) (char * (____buf_1421), __size_t_1150 ____size_1423));// L514 -extern char * ((__getcwd_1430) (char * (____buf_1421), __size_t_1 ____size_1422));// L514 -extern char * ((__getcwd_1431) (char * (____buf_1421), __size_t_1150 ____size_1423));// L514 -extern char * ((__getwd_1433) (char * (____buf_1432)));// L528:L529 -extern char * ((__getwd_1434) (char * (____buf_1432)));// L528:L529 -extern int (__dup_1436) (int ____fd_1435);// L534 -extern int (__dup_1437) (int ____fd_1435);// L534 -extern int (__dup_1438) (int ____fd_1435);// L534 -extern int (__dup_1439) (int ____fd_1435);// L534 -extern int (__dup2_1442) (int ____fd_1440, int ____fd2_1441);// L537 -extern char * (* (____environ_1443));// L546 -extern int (__execve_1447) (const char * (____path_1444), char * const ____argv_1445[], char * const ____envp_1446[]);// L554:L555 -extern int (__fexecve_1451) (int ____fd_1448, char * const ____argv_1449[], char * const ____envp_1450[]);// L560:L561 -extern int (__execv_1454) (const char * (____path_1452), char * const ____argv_1453[]);// L566:L567 -extern int (__execv_1455) (const char * (____path_1452), char * const ____argv_1453[]);// L566:L567 -extern int (__execle_1458) (const char * (____path_1456), const char * (____arg_1457), ... );// L571:L572 -extern int (__execl_1461) (const char * (____path_1459), const char * (____arg_1460), ... );// L576:L577 -extern int (__execvp_1464) (const char * (____file_1462), char * const ____argv_1463[]);// L581:L582 -extern int (__execlp_1467) (const char * (____file_1465), const char * (____arg_1466), ... );// L587:L588 -extern int (__nice_1469) (int ____inc_1468);// L601 -extern int (__nice_1470) (int ____inc_1468);// L601 -extern void (___exit_1472) (int ____status_1471);// L606 -extern void (___exit_1473) (int ____status_1471);// L606 -enum ____anonymous_tag_1495_1496 ;// L24 -enum ____anonymous_tag_1712_1713 ;// L71 -enum ____anonymous_tag_1778_1779 ;// L533 -extern long int (__pathconf_1782) (const char * (____path_1780), int ____name_1781);// L615:L616 -extern long int (__fpathconf_1785) (int ____fd_1783, int ____name_1784);// L619 -extern long int (__sysconf_1787) (int ____name_1786);// L622 -extern __size_t_1 (__confstr_1792) (int ____name_1788, char * (____buf_1789), __size_t_1 ____len_1790);// L626 -extern __size_t_1150 (__confstr_1793) (int ____name_1788, char * (____buf_1789), __size_t_1150 ____len_1791);// L626 -extern ____pid_t_25 (__getpid_1794) (void );// L631 -extern ____pid_t_1113 (__getpid_1795) (void );// L631 -extern ____pid_t_25 (__getpid_1797) (void );// L631 -extern ____pid_t_1113 (__getpid_1798) (void );// L631 -extern ____pid_t_25 (__getppid_1800) (void );// L634 -extern ____pid_t_1113 (__getppid_1801) (void );// L634 -extern ____pid_t_25 (__getpgrp_1803) (void );// L637 -extern ____pid_t_1113 (__getpgrp_1804) (void );// L637 -extern ____pid_t_25 (____getpgid_1808) (____pid_t_25 ____pid_1805);// L640 -extern ____pid_t_1113 (____getpgid_1809) (____pid_t_1113 ____pid_1806);// L640 -extern ____pid_t_25 (__getpgid_1813) (____pid_t_25 ____pid_1810);// L642 -extern ____pid_t_1113 (__getpgid_1814) (____pid_t_1113 ____pid_1811);// L642 -extern int (__setpgid_1822) (____pid_t_25 ____pid_1816, ____pid_t_25 ____pgid_1819);// L649 -extern int (__setpgid_1823) (____pid_t_1113 ____pid_1817, ____pid_t_1113 ____pgid_1820);// L649 -extern int (__setpgid_1825) (____pid_t_25 ____pid_1816, ____pid_t_25 ____pgid_1819);// L649 -extern int (__setpgid_1826) (____pid_t_1113 ____pid_1817, ____pid_t_1113 ____pgid_1820);// L649 -extern int (__setpgrp_1828) (void );// L663 -extern ____pid_t_25 (__setsid_1829) (void );// L670 -extern ____pid_t_1113 (__setsid_1830) (void );// L670 -extern ____pid_t_25 (__setsid_1832) (void );// L670 -extern ____pid_t_1113 (__setsid_1833) (void );// L670 -extern ____pid_t_25 (__getsid_1838) (____pid_t_25 ____pid_1835);// L674 -extern ____pid_t_1113 (__getsid_1839) (____pid_t_1113 ____pid_1836);// L674 -extern ____uid_t_17 (__getuid_1841) (void );// L678 -extern ____uid_t_1105 (__getuid_1842) (void );// L678 -extern ____uid_t_17 (__getuid_1844) (void );// L678 -extern ____uid_t_1105 (__getuid_1845) (void );// L678 -extern ____uid_t_17 (__geteuid_1847) (void );// L681 -extern ____uid_t_1105 (__geteuid_1848) (void );// L681 -extern ____gid_t_18 (__getgid_1850) (void );// L684 -extern ____gid_t_1106 (__getgid_1851) (void );// L684 -extern ____gid_t_18 (__getegid_1853) (void );// L687 -extern ____gid_t_1106 (__getegid_1854) (void );// L687 -extern int (__getgroups_1859) (int ____size_1855, ____gid_t_18 ____list_1856[]);// L692 -extern int (__getgroups_1860) (int ____size_1855, ____gid_t_1106 ____list_1857[]);// L692 -extern int (__getgroups_1862) (int ____size_1855, ____gid_t_18 ____list_1856[]);// L692 -extern int (__getgroups_1863) (int ____size_1855, ____gid_t_1106 ____list_1857[]);// L692 -extern int (__setuid_1868) (____uid_t_17 ____uid_1865);// L703 -extern int (__setuid_1869) (____uid_t_1105 ____uid_1866);// L703 -extern int (__setuid_1871) (____uid_t_17 ____uid_1865);// L703 -extern int (__setuid_1872) (____uid_t_1105 ____uid_1866);// L703 -extern int (__setreuid_1880) (____uid_t_17 ____ruid_1874, ____uid_t_17 ____euid_1877);// L708 -extern int (__setreuid_1881) (____uid_t_1105 ____ruid_1875, ____uid_t_1105 ____euid_1878);// L708 -extern int (__setreuid_1883) (____uid_t_17 ____ruid_1874, ____uid_t_17 ____euid_1877);// L708 -extern int (__setreuid_1884) (____uid_t_1105 ____ruid_1875, ____uid_t_1105 ____euid_1878);// L708 -extern int (__seteuid_1889) (____uid_t_17 ____uid_1886);// L713 -extern int (__seteuid_1890) (____uid_t_1105 ____uid_1887);// L713 -extern int (__seteuid_1892) (____uid_t_17 ____uid_1886);// L713 -extern int (__seteuid_1893) (____uid_t_1105 ____uid_1887);// L713 -extern int (__setgid_1898) (____gid_t_18 ____gid_1895);// L720 -extern int (__setgid_1899) (____gid_t_1106 ____gid_1896);// L720 -extern int (__setgid_1901) (____gid_t_18 ____gid_1895);// L720 -extern int (__setgid_1902) (____gid_t_1106 ____gid_1896);// L720 -extern int (__setgid_1904) (____gid_t_18 ____gid_1895);// L720 -extern int (__setgid_1905) (____gid_t_1106 ____gid_1896);// L720 -extern int (__setgid_1907) (____gid_t_18 ____gid_1895);// L720 -extern int (__setgid_1908) (____gid_t_1106 ____gid_1896);// L720 -extern int (__setregid_1916) (____gid_t_18 ____rgid_1910, ____gid_t_18 ____egid_1913);// L725 -extern int (__setregid_1917) (____gid_t_1106 ____rgid_1911, ____gid_t_1106 ____egid_1914);// L725 -extern int (__setregid_1919) (____gid_t_18 ____rgid_1910, ____gid_t_18 ____egid_1913);// L725 -extern int (__setregid_1920) (____gid_t_1106 ____rgid_1911, ____gid_t_1106 ____egid_1914);// L725 -extern int (__setegid_1925) (____gid_t_18 ____gid_1922);// L730 -extern int (__setegid_1926) (____gid_t_1106 ____gid_1923);// L730 -extern int (__setegid_1928) (____gid_t_18 ____gid_1922);// L730 -extern int (__setegid_1929) (____gid_t_1106 ____gid_1923);// L730 -extern ____pid_t_25 (__fork_1931) (void );// L759 -extern ____pid_t_1113 (__fork_1932) (void );// L759 -extern ____pid_t_25 (__fork_1934) (void );// L759 -extern ____pid_t_1113 (__fork_1935) (void );// L759 -extern ____pid_t_25 (__vfork_1937) (void );// L767 -extern ____pid_t_1113 (__vfork_1938) (void );// L767 -extern char * ((__ttyname_1941) (int ____fd_1940));// L773 -extern char * ((__ttyname_1942) (int ____fd_1940));// L773 -extern int (__ttyname_r_1947) (int ____fd_1943, char * (____buf_1944), __size_t_1 ____buflen_1945);// L777:L778 -extern int (__ttyname_r_1948) (int ____fd_1943, char * (____buf_1944), __size_t_1150 ____buflen_1946);// L777:L778 -extern int (__ttyname_r_1949) (int ____fd_1943, char * (____buf_1944), __size_t_1 ____buflen_1945);// L777:L778 -extern int (__ttyname_r_1950) (int ____fd_1943, char * (____buf_1944), __size_t_1150 ____buflen_1946);// L777:L778 -extern int (__isatty_1952) (int ____fd_1951);// L782 -extern int (__ttyslot_1953) (void );// L788 -extern int (__link_1956) (const char * (____from_1954), const char * (____to_1955));// L793:L794 -extern int (__link_1957) (const char * (____from_1954), const char * (____to_1955));// L793:L794 -extern int (__link_1958) (const char * (____from_1954), const char * (____to_1955));// L793:L794 -extern int (__link_1959) (const char * (____from_1954), const char * (____to_1955));// L793:L794 -extern int (__linkat_1965) (int ____fromfd_1960, const char * (____from_1961), int ____tofd_1962, const char * (____to_1963), int ____flags_1964);// L799:L801 -extern int (__linkat_1966) (int ____fromfd_1960, const char * (____from_1961), int ____tofd_1962, const char * (____to_1963), int ____flags_1964);// L799:L801 -extern int (__symlink_1969) (const char * (____from_1967), const char * (____to_1968));// L806:L807 -extern int (__symlink_1970) (const char * (____from_1967), const char * (____to_1968));// L806:L807 -extern __ssize_t_285 (__readlink_1975) (const char * __restrict ____path_1971, char * __restrict ____buf_1972, __size_t_1 ____len_1973);// L812:L814 -extern __ssize_t_1147 (__readlink_1976) (const char * __restrict ____path_1971, char * __restrict ____buf_1972, __size_t_1150 ____len_1974);// L812:L814 -extern __ssize_t_285 (__readlink_1981) (const char * __restrict ____path_1971, char * __restrict ____buf_1972, __size_t_1 ____len_1973);// L812:L814 -extern __ssize_t_1147 (__readlink_1982) (const char * __restrict ____path_1971, char * __restrict ____buf_1972, __size_t_1150 ____len_1974);// L812:L814 -extern int (__symlinkat_1990) (const char * (____from_1987), int ____tofd_1988, const char * (____to_1989));// L819:L820 -extern int (__symlinkat_1991) (const char * (____from_1987), int ____tofd_1988, const char * (____to_1989));// L819:L820 -extern __ssize_t_285 (__readlinkat_1997) (int ____fd_1992, const char * __restrict ____path_1993, char * __restrict ____buf_1994, __size_t_1 ____len_1995);// L823:L825 -extern __ssize_t_1147 (__readlinkat_1998) (int ____fd_1992, const char * __restrict ____path_1993, char * __restrict ____buf_1994, __size_t_1150 ____len_1996);// L823:L825 -extern __ssize_t_285 (__readlinkat_2003) (int ____fd_1992, const char * __restrict ____path_1993, char * __restrict ____buf_1994, __size_t_1 ____len_1995);// L823:L825 -extern __ssize_t_1147 (__readlinkat_2004) (int ____fd_1992, const char * __restrict ____path_1993, char * __restrict ____buf_1994, __size_t_1150 ____len_1996);// L823:L825 -extern int (__unlink_2010) (const char * (____name_2009));// L829 -extern int (__unlink_2011) (const char * (____name_2009));// L829 -extern int (__unlinkat_2015) (int ____fd_2012, const char * (____name_2013), int ____flag_2014);// L833:L834 -extern int (__rmdir_2017) (const char * (____path_2016));// L838 -extern int (__rmdir_2018) (const char * (____path_2016));// L838 -extern ____pid_t_25 (__tcgetpgrp_2020) (int ____fd_2019);// L842 -extern ____pid_t_1113 (__tcgetpgrp_2021) (int ____fd_2019);// L842 -extern int (__tcsetpgrp_2026) (int ____fd_2022, ____pid_t_25 ____pgrp_id_2023);// L845 -extern int (__tcsetpgrp_2027) (int ____fd_2022, ____pid_t_1113 ____pgrp_id_2024);// L845 -extern char * ((__getlogin_2028) (void ));// L852 -extern int (__getlogin_r_2032) (char * (____name_2029), __size_t_1 ____name_len_2030);// L860 -extern int (__getlogin_r_2033) (char * (____name_2029), __size_t_1150 ____name_len_2031);// L860 -extern int (__setlogin_2035) (const char * (____name_2034));// L865 -extern char * (__optarg_2036);// L57 -extern int __optind_2037;// L71 -extern int __opterr_2038;// L76 -extern int __optopt_2039;// L80 -extern int (__getopt_2043) (int _____argc_2040, char * const * (_____argv_2041), const char * (____shortopts_2042));// L150:L151 -extern int (__gethostname_2047) (char * (____name_2044), __size_t_1 ____len_2045);// L882 -extern int (__gethostname_2048) (char * (____name_2044), __size_t_1150 ____len_2046);// L882 -extern int (__sethostname_2052) (const char * (____name_2049), __size_t_1 ____len_2050);// L889:L890 -extern int (__sethostname_2053) (const char * (____name_2049), __size_t_1150 ____len_2051);// L889:L890 -extern int (__sethostname_2054) (const char * (____name_2049), __size_t_1 ____len_2050);// L889:L890 -extern int (__sethostname_2055) (const char * (____name_2049), __size_t_1150 ____len_2051);// L889:L890 -extern int (__sethostid_2057) (long int ____id_2056);// L894 -extern int (__sethostid_2058) (long int ____id_2056);// L894 -extern int (__getdomainname_2062) (char * (____name_2059), __size_t_1 ____len_2060);// L900:L901 -extern int (__getdomainname_2063) (char * (____name_2059), __size_t_1150 ____len_2061);// L900:L901 -extern int (__getdomainname_2064) (char * (____name_2059), __size_t_1 ____len_2060);// L900:L901 -extern int (__getdomainname_2065) (char * (____name_2059), __size_t_1150 ____len_2061);// L900:L901 -extern int (__setdomainname_2069) (const char * (____name_2066), __size_t_1 ____len_2067);// L902:L903 -extern int (__setdomainname_2070) (const char * (____name_2066), __size_t_1150 ____len_2068);// L902:L903 -extern int (__setdomainname_2071) (const char * (____name_2066), __size_t_1 ____len_2067);// L902:L903 -extern int (__setdomainname_2072) (const char * (____name_2066), __size_t_1150 ____len_2068);// L902:L903 -extern int (__vhangup_2073) (void );// L909 -extern int (__revoke_2075) (const char * (____file_2074));// L912 -extern int (__revoke_2076) (const char * (____file_2074));// L912 -extern int (__profil_2083) (unsigned short int * (____sample_buffer_2077), __size_t_1 ____size_2078, __size_t_1 ____offset_2080, unsigned int ____scale_2082);// L920:L922 -extern int (__profil_2084) (unsigned short int * (____sample_buffer_2077), __size_t_1150 ____size_2079, __size_t_1150 ____offset_2081, unsigned int ____scale_2082);// L920:L922 -extern int (__acct_2086) (const char * (____name_2085));// L928 -extern char * ((__getusershell_2087) (void ));// L932 -extern void (__endusershell_2088) (void );// L933 -extern void (__setusershell_2089) (void );// L934 -extern int (__daemon_2092) (int ____nochdir_2090, int ____noclose_2091);// L940 -extern int (__daemon_2093) (int ____nochdir_2090, int ____noclose_2091);// L940 -extern int (__chroot_2095) (const char * (____path_2094));// L947 -extern int (__chroot_2096) (const char * (____path_2094));// L947 -extern char * ((__getpass_2098) (const char * (____prompt_2097)));// L951 -extern int (__fsync_2100) (int ____fd_2099);// L959 -extern int (__fsync_2101) (int ____fd_2099);// L959 -extern int (__fsync_2102) (int ____fd_2099);// L959 -extern long int (__gethostid_2103) (void );// L972 -extern void (__sync_2104) (void );// L975 -extern int (__getpagesize_2105) (void );// L981 -extern int (__getdtablesize_2106) (void );// L986 -extern int (__truncate_2115) (const char * (____file_2107), ____off_t_23 ____length_2108);// L996:L997 -extern int (__truncate_2116) (const char * (____file_2107), ____off_t_1111 ____length_2109);// L996:L997 -extern int (__truncate_2121) (const char * (____file_2107), ____off_t_23 ____length_2108);// L996:L997 -extern int (__truncate_2122) (const char * (____file_2107), ____off_t_1111 ____length_2109);// L996:L997 -extern int (__truncate_2118) (const char * (____file_2111), ____off64_t_24 ____length_2112);// L1000:L1002 -extern int (__truncate_2119) (const char * (____file_2111), ____off64_t_1112 ____length_2113);// L1000:L1002 -extern int (__truncate_2124) (const char * (____file_2111), ____off64_t_24 ____length_2112);// L1000:L1002 -extern int (__truncate_2125) (const char * (____file_2111), ____off64_t_1112 ____length_2113);// L1000:L1002 -extern int (__ftruncate_2144) (int ____fd_2131, ____off64_t_24 ____length_2132);// L1022:L1023 -extern int (__ftruncate_2145) (int ____fd_2131, ____off64_t_1112 ____length_2133);// L1022:L1023 -extern int (__ftruncate_2141) (int ____fd_2127, ____off_t_23 ____length_2128);// L1019 -extern int (__ftruncate_2142) (int ____fd_2127, ____off_t_1111 ____length_2129);// L1019 -extern int (__ftruncate_2138) (int ____fd_2131, ____off64_t_24 ____length_2132);// L1022:L1023 -extern int (__ftruncate_2139) (int ____fd_2131, ____off64_t_1112 ____length_2133);// L1022:L1023 -extern int (__ftruncate_2135) (int ____fd_2127, ____off_t_23 ____length_2128);// L1019 -extern int (__ftruncate_2136) (int ____fd_2127, ____off_t_1111 ____length_2129);// L1019 -extern int (__brk_2148) (void * (____addr_2147));// L1040 -extern int (__brk_2149) (void * (____addr_2147));// L1040 -extern void * ((__sbrk_2153) (__intptr_t_1172 ____delta_2150));// L1046 -extern void * ((__sbrk_2154) (__intptr_t_1173 ____delta_2151));// L1046 -extern long int (__syscall_2157) (long int ____sysno_2156, ... );// L1061 -extern int (__lockf_2177) (int ____fd_2163, int ____cmd_2164, ____off64_t_24 ____len_2165);// L1087:L1088 -extern int (__lockf_2178) (int ____fd_2163, int ____cmd_2164, ____off64_t_1112 ____len_2166);// L1087:L1088 -extern int (__lockf_2174) (int ____fd_2158, int ____cmd_2159, ____off_t_23 ____len_2160);// L1084 -extern int (__lockf_2175) (int ____fd_2158, int ____cmd_2159, ____off_t_1111 ____len_2161);// L1084 -extern int (__lockf_2171) (int ____fd_2163, int ____cmd_2164, ____off64_t_24 ____len_2165);// L1087:L1088 -extern int (__lockf_2172) (int ____fd_2163, int ____cmd_2164, ____off64_t_1112 ____len_2166);// L1087:L1088 -extern int (__lockf_2168) (int ____fd_2158, int ____cmd_2159, ____off_t_23 ____len_2160);// L1084 -extern int (__lockf_2169) (int ____fd_2158, int ____cmd_2159, ____off_t_1111 ____len_2161);// L1084 -extern int (__fdatasync_2181) (int ____fildes_2180);// L1115 -extern __ssize_t_285 (____read_chk_2188) (int ____fd_2182, void * (____buf_2183), __size_t_1 ____nbytes_2184, __size_t_1 ____buflen_2186);// L23:L24 -extern __ssize_t_1146 (____read_chk_2189) (int ____fd_2182, void * (____buf_2183), __size_t_1 ____nbytes_2184, __size_t_1 ____buflen_2186);// L23:L24 -extern __ssize_t_1147 (____read_chk_2190) (int ____fd_2182, void * (____buf_2183), __size_t_1150 ____nbytes_2185, __size_t_1150 ____buflen_2187);// L23:L24 -extern __ssize_t_285 (____read_alias_2199) (int ____fd_2195, void * (____buf_2196), __size_t_1 ____nbytes_2197);// L25:L26 -extern __ssize_t_1146 (____read_alias_2200) (int ____fd_2195, void * (____buf_2196), __size_t_1 ____nbytes_2197);// L25:L26 -extern __ssize_t_1147 (____read_alias_2201) (int ____fd_2195, void * (____buf_2196), __size_t_1150 ____nbytes_2198);// L25:L26 -extern __ssize_t_285 (____read_chk_warn_2212) (int ____fd_2206, void * (____buf_2207), __size_t_1 ____nbytes_2208, __size_t_1 ____buflen_2210);// L27:L31 -extern __ssize_t_1146 (____read_chk_warn_2213) (int ____fd_2206, void * (____buf_2207), __size_t_1 ____nbytes_2208, __size_t_1 ____buflen_2210);// L27:L31 -extern __ssize_t_1147 (____read_chk_warn_2214) (int ____fd_2206, void * (____buf_2207), __size_t_1150 ____nbytes_2209, __size_t_1150 ____buflen_2211);// L27:L31 +extern int (__access_1028) (const char * (____name_1026), int ____type_1027);// L290 +extern int (__access_1029) (const char * (____name_1026), int ____type_1027);// L290 +extern int (__faccessat_1034) (int ____fd_1030, const char * (____file_1031), int ____type_1032, int ____flag_1033);// L307:L308 +extern int (__faccessat_1035) (int ____fd_1030, const char * (____file_1031), int ____type_1032, int ____flag_1033);// L307:L308 +extern ____off_t_23 (__lseek_1042) (int ____fd_1036, ____off_t_23 ____offset_1037, int ____whence_1038);// L337 +extern ____off64_t_24 (__lseek_1043) (int ____fd_1039, ____off64_t_24 ____offset_1040, int ____whence_1041);// L340:L342 +extern int (__close_1045) (int ____fd_1044);// L356 +extern __ssize_t_252 (__read_1049) (int ____fd_1046, void * (____buf_1047), __size_t_1 ____nbytes_1048);// L363 +extern __ssize_t_1016 (__read_1050) (int ____fd_1046, void * (____buf_1047), __size_t_1 ____nbytes_1048);// L363 +extern __ssize_t_252 (__read_1052) (int ____fd_1046, void * (____buf_1047), __size_t_1 ____nbytes_1048);// L363 +extern __ssize_t_1016 (__read_1053) (int ____fd_1046, void * (____buf_1047), __size_t_1 ____nbytes_1048);// L363 +extern __ssize_t_252 (__write_1058) (int ____fd_1055, const void * (____buf_1056), __size_t_1 ____n_1057);// L369 +extern __ssize_t_1016 (__write_1059) (int ____fd_1055, const void * (____buf_1056), __size_t_1 ____n_1057);// L369 +extern __ssize_t_252 (__write_1061) (int ____fd_1055, const void * (____buf_1056), __size_t_1 ____n_1057);// L369 +extern __ssize_t_1016 (__write_1062) (int ____fd_1055, const void * (____buf_1056), __size_t_1 ____n_1057);// L369 +extern __ssize_t_252 (__pread_1068) (int ____fd_1064, void * (____buf_1065), __size_t_1 ____nbytes_1066, ____off_t_23 ____offset_1067);// L379:L380 +extern __ssize_t_252 (__pread_1070) (int ____fd_1064, void * (____buf_1065), __size_t_1 ____nbytes_1066, ____off_t_23 ____offset_1067);// L379:L380 +extern __ssize_t_252 (__pread_1080) (int ____fd_1076, void * (____buf_1077), __size_t_1 ____nbytes_1078, ____off64_t_24 ____offset_1079);// L391:L393 +extern __ssize_t_252 (__pread_1082) (int ____fd_1076, void * (____buf_1077), __size_t_1 ____nbytes_1078, ____off64_t_24 ____offset_1079);// L391:L393 +extern __ssize_t_252 (__pwrite_1094) (int ____fd_1084, const void * (____buf_1085), __size_t_1 ____nbytes_1086, ____off64_t_24 ____offset_1087);// L394:L396 +extern __ssize_t_252 (__pwrite_1092) (int ____fd_1072, const void * (____buf_1073), __size_t_1 ____n_1074, ____off_t_23 ____offset_1075);// L387:L388 +extern __ssize_t_252 (__pwrite_1090) (int ____fd_1084, const void * (____buf_1085), __size_t_1 ____nbytes_1086, ____off64_t_24 ____offset_1087);// L394:L396 +extern __ssize_t_252 (__pwrite_1088) (int ____fd_1072, const void * (____buf_1073), __size_t_1 ____n_1074, ____off_t_23 ____offset_1075);// L387:L388 +extern int (__pipe_1097) (int ____pipedes_1096[2]);// L420 +extern int (__pipe_1098) (int ____pipedes_1096[2]);// L420 +extern int (__pipe_1099) (int ____pipedes_1096[2]);// L420 +extern int (__pipe_1100) (int ____pipedes_1096[2]);// L420 +extern unsigned int (__alarm_1102) (unsigned int ____seconds_1101);// L435 +extern unsigned int (__sleep_1104) (unsigned int ____seconds_1103);// L447 +extern ____useconds_t_35 (__ualarm_1107) (____useconds_t_35 ____value_1105, ____useconds_t_35 ____interval_1106);// L455:L456 +extern int (__usleep_1109) (____useconds_t_35 ____useconds_1108);// L463 +extern int (__pause_1110) (void );// L472 +extern int (__pause_1111) (void );// L472 +extern int (__chown_1115) (const char * (____file_1112), ____uid_t_17 ____owner_1113, ____gid_t_18 ____group_1114);// L476:L477 +extern int (__chown_1116) (const char * (____file_1112), ____uid_t_17 ____owner_1113, ____gid_t_18 ____group_1114);// L476:L477 +extern int (__fchown_1120) (int ____fd_1117, ____uid_t_17 ____owner_1118, ____gid_t_18 ____group_1119);// L481 +extern int (__fchown_1121) (int ____fd_1117, ____uid_t_17 ____owner_1118, ____gid_t_18 ____group_1119);// L481 +extern int (__lchown_1125) (const char * (____file_1122), ____uid_t_17 ____owner_1123, ____gid_t_18 ____group_1124);// L486:L487 +extern int (__lchown_1126) (const char * (____file_1122), ____uid_t_17 ____owner_1123, ____gid_t_18 ____group_1124);// L486:L487 +extern int (__fchownat_1132) (int ____fd_1127, const char * (____file_1128), ____uid_t_17 ____owner_1129, ____gid_t_18 ____group_1130, int ____flag_1131);// L494:L496 +extern int (__fchownat_1133) (int ____fd_1127, const char * (____file_1128), ____uid_t_17 ____owner_1129, ____gid_t_18 ____group_1130, int ____flag_1131);// L494:L496 +extern int (__chdir_1135) (const char * (____path_1134));// L500 +extern int (__chdir_1136) (const char * (____path_1134));// L500 +extern int (__chdir_1137) (const char * (____path_1134));// L500 +extern int (__chdir_1138) (const char * (____path_1134));// L500 +extern int (__fchdir_1140) (int ____fd_1139);// L504 +extern int (__fchdir_1141) (int ____fd_1139);// L504 +extern char * ((__getcwd_1144) (char * (____buf_1142), __size_t_1 ____size_1143));// L514 +extern char * ((__getcwd_1145) (char * (____buf_1142), __size_t_1 ____size_1143));// L514 +extern char * ((__getcwd_1146) (char * (____buf_1142), __size_t_1 ____size_1143));// L514 +extern char * ((__getcwd_1147) (char * (____buf_1142), __size_t_1 ____size_1143));// L514 +extern char * ((__getwd_1149) (char * (____buf_1148)));// L528:L529 +extern char * ((__getwd_1150) (char * (____buf_1148)));// L528:L529 +extern int (__dup_1152) (int ____fd_1151);// L534 +extern int (__dup_1153) (int ____fd_1151);// L534 +extern int (__dup_1154) (int ____fd_1151);// L534 +extern int (__dup_1155) (int ____fd_1151);// L534 +extern int (__dup2_1158) (int ____fd_1156, int ____fd2_1157);// L537 +extern char * (* (____environ_1159));// L546 +extern int (__execve_1163) (const char * (____path_1160), char * const ____argv_1161[], char * const ____envp_1162[]);// L554:L555 +extern int (__fexecve_1167) (int ____fd_1164, char * const ____argv_1165[], char * const ____envp_1166[]);// L560:L561 +extern int (__execv_1170) (const char * (____path_1168), char * const ____argv_1169[]);// L566:L567 +extern int (__execv_1171) (const char * (____path_1168), char * const ____argv_1169[]);// L566:L567 +extern int (__execle_1174) (const char * (____path_1172), const char * (____arg_1173), ... );// L571:L572 +extern int (__execl_1177) (const char * (____path_1175), const char * (____arg_1176), ... );// L576:L577 +extern int (__execvp_1180) (const char * (____file_1178), char * const ____argv_1179[]);// L581:L582 +extern int (__execlp_1183) (const char * (____file_1181), const char * (____arg_1182), ... );// L587:L588 +extern int (__nice_1185) (int ____inc_1184);// L601 +extern int (__nice_1186) (int ____inc_1184);// L601 +extern void (___exit_1188) (int ____status_1187);// L606 +extern void (___exit_1189) (int ____status_1187);// L606 +enum ____anonymous_tag_1211_1212 ;// L24 +enum ____anonymous_tag_1428_1429 ;// L71 +enum ____anonymous_tag_1494_1495 ;// L533 +extern long int (__pathconf_1498) (const char * (____path_1496), int ____name_1497);// L615:L616 +extern long int (__fpathconf_1501) (int ____fd_1499, int ____name_1500);// L619 +extern long int (__sysconf_1503) (int ____name_1502);// L622 +extern __size_t_1 (__confstr_1507) (int ____name_1504, char * (____buf_1505), __size_t_1 ____len_1506);// L626 +extern ____pid_t_25 (__getpid_1508) (void );// L631 +extern ____pid_t_25 (__getpid_1509) (void );// L631 +extern ____pid_t_25 (__getppid_1510) (void );// L634 +extern ____pid_t_25 (__getpgrp_1511) (void );// L637 +extern ____pid_t_25 (____getpgid_1513) (____pid_t_25 ____pid_1512);// L640 +extern ____pid_t_25 (__getpgid_1515) (____pid_t_25 ____pid_1514);// L642 +extern int (__setpgid_1518) (____pid_t_25 ____pid_1516, ____pid_t_25 ____pgid_1517);// L649 +extern int (__setpgid_1519) (____pid_t_25 ____pid_1516, ____pid_t_25 ____pgid_1517);// L649 +extern int (__setpgrp_1520) (void );// L663 +extern ____pid_t_25 (__setsid_1521) (void );// L670 +extern ____pid_t_25 (__setsid_1522) (void );// L670 +extern ____pid_t_25 (__getsid_1524) (____pid_t_25 ____pid_1523);// L674 +extern ____uid_t_17 (__getuid_1525) (void );// L678 +extern ____uid_t_17 (__getuid_1526) (void );// L678 +extern ____uid_t_17 (__geteuid_1527) (void );// L681 +extern ____gid_t_18 (__getgid_1528) (void );// L684 +extern ____gid_t_18 (__getegid_1529) (void );// L687 +extern int (__getgroups_1532) (int ____size_1530, ____gid_t_18 ____list_1531[]);// L692 +extern int (__getgroups_1533) (int ____size_1530, ____gid_t_18 ____list_1531[]);// L692 +extern int (__setuid_1535) (____uid_t_17 ____uid_1534);// L703 +extern int (__setuid_1536) (____uid_t_17 ____uid_1534);// L703 +extern int (__setreuid_1539) (____uid_t_17 ____ruid_1537, ____uid_t_17 ____euid_1538);// L708 +extern int (__setreuid_1540) (____uid_t_17 ____ruid_1537, ____uid_t_17 ____euid_1538);// L708 +extern int (__seteuid_1542) (____uid_t_17 ____uid_1541);// L713 +extern int (__seteuid_1543) (____uid_t_17 ____uid_1541);// L713 +extern int (__setgid_1545) (____gid_t_18 ____gid_1544);// L720 +extern int (__setgid_1546) (____gid_t_18 ____gid_1544);// L720 +extern int (__setgid_1547) (____gid_t_18 ____gid_1544);// L720 +extern int (__setgid_1548) (____gid_t_18 ____gid_1544);// L720 +extern int (__setregid_1551) (____gid_t_18 ____rgid_1549, ____gid_t_18 ____egid_1550);// L725 +extern int (__setregid_1552) (____gid_t_18 ____rgid_1549, ____gid_t_18 ____egid_1550);// L725 +extern int (__setegid_1554) (____gid_t_18 ____gid_1553);// L730 +extern int (__setegid_1555) (____gid_t_18 ____gid_1553);// L730 +extern ____pid_t_25 (__fork_1556) (void );// L759 +extern ____pid_t_25 (__fork_1557) (void );// L759 +extern ____pid_t_25 (__vfork_1558) (void );// L767 +extern char * ((__ttyname_1560) (int ____fd_1559));// L773 +extern char * ((__ttyname_1561) (int ____fd_1559));// L773 +extern int (__ttyname_r_1565) (int ____fd_1562, char * (____buf_1563), __size_t_1 ____buflen_1564);// L777:L778 +extern int (__ttyname_r_1566) (int ____fd_1562, char * (____buf_1563), __size_t_1 ____buflen_1564);// L777:L778 +extern int (__isatty_1568) (int ____fd_1567);// L782 +extern int (__ttyslot_1569) (void );// L788 +extern int (__link_1572) (const char * (____from_1570), const char * (____to_1571));// L793:L794 +extern int (__link_1573) (const char * (____from_1570), const char * (____to_1571));// L793:L794 +extern int (__link_1574) (const char * (____from_1570), const char * (____to_1571));// L793:L794 +extern int (__link_1575) (const char * (____from_1570), const char * (____to_1571));// L793:L794 +extern int (__linkat_1581) (int ____fromfd_1576, const char * (____from_1577), int ____tofd_1578, const char * (____to_1579), int ____flags_1580);// L799:L801 +extern int (__linkat_1582) (int ____fromfd_1576, const char * (____from_1577), int ____tofd_1578, const char * (____to_1579), int ____flags_1580);// L799:L801 +extern int (__symlink_1585) (const char * (____from_1583), const char * (____to_1584));// L806:L807 +extern int (__symlink_1586) (const char * (____from_1583), const char * (____to_1584));// L806:L807 +extern __ssize_t_252 (__readlink_1590) (const char * __restrict ____path_1587, char * __restrict ____buf_1588, __size_t_1 ____len_1589);// L812:L814 +extern __ssize_t_252 (__readlink_1592) (const char * __restrict ____path_1587, char * __restrict ____buf_1588, __size_t_1 ____len_1589);// L812:L814 +extern int (__symlinkat_1597) (const char * (____from_1594), int ____tofd_1595, const char * (____to_1596));// L819:L820 +extern int (__symlinkat_1598) (const char * (____from_1594), int ____tofd_1595, const char * (____to_1596));// L819:L820 +extern __ssize_t_252 (__readlinkat_1603) (int ____fd_1599, const char * __restrict ____path_1600, char * __restrict ____buf_1601, __size_t_1 ____len_1602);// L823:L825 +extern __ssize_t_252 (__readlinkat_1605) (int ____fd_1599, const char * __restrict ____path_1600, char * __restrict ____buf_1601, __size_t_1 ____len_1602);// L823:L825 +extern int (__unlink_1608) (const char * (____name_1607));// L829 +extern int (__unlink_1609) (const char * (____name_1607));// L829 +extern int (__unlinkat_1613) (int ____fd_1610, const char * (____name_1611), int ____flag_1612);// L833:L834 +extern int (__rmdir_1615) (const char * (____path_1614));// L838 +extern int (__rmdir_1616) (const char * (____path_1614));// L838 +extern ____pid_t_25 (__tcgetpgrp_1618) (int ____fd_1617);// L842 +extern int (__tcsetpgrp_1621) (int ____fd_1619, ____pid_t_25 ____pgrp_id_1620);// L845 +extern char * ((__getlogin_1622) (void ));// L852 +extern int (__getlogin_r_1625) (char * (____name_1623), __size_t_1 ____name_len_1624);// L860 +extern int (__setlogin_1627) (const char * (____name_1626));// L865 +extern char * (__optarg_1628);// L57 +extern int __optind_1629;// L71 +extern int __opterr_1630;// L76 +extern int __optopt_1631;// L80 +extern int (__getopt_1635) (int _____argc_1632, char * const * (_____argv_1633), const char * (____shortopts_1634));// L150:L151 +extern int (__gethostname_1638) (char * (____name_1636), __size_t_1 ____len_1637);// L882 +extern int (__sethostname_1641) (const char * (____name_1639), __size_t_1 ____len_1640);// L889:L890 +extern int (__sethostname_1642) (const char * (____name_1639), __size_t_1 ____len_1640);// L889:L890 +extern int (__sethostid_1644) (long int ____id_1643);// L894 +extern int (__sethostid_1645) (long int ____id_1643);// L894 +extern int (__getdomainname_1648) (char * (____name_1646), __size_t_1 ____len_1647);// L900:L901 +extern int (__getdomainname_1649) (char * (____name_1646), __size_t_1 ____len_1647);// L900:L901 +extern int (__setdomainname_1652) (const char * (____name_1650), __size_t_1 ____len_1651);// L902:L903 +extern int (__setdomainname_1653) (const char * (____name_1650), __size_t_1 ____len_1651);// L902:L903 +extern int (__vhangup_1654) (void );// L909 +extern int (__revoke_1656) (const char * (____file_1655));// L912 +extern int (__revoke_1657) (const char * (____file_1655));// L912 +extern int (__profil_1662) (unsigned short int * (____sample_buffer_1658), __size_t_1 ____size_1659, __size_t_1 ____offset_1660, unsigned int ____scale_1661);// L920:L922 +extern int (__acct_1664) (const char * (____name_1663));// L928 +extern char * ((__getusershell_1665) (void ));// L932 +extern void (__endusershell_1666) (void );// L933 +extern void (__setusershell_1667) (void );// L934 +extern int (__daemon_1670) (int ____nochdir_1668, int ____noclose_1669);// L940 +extern int (__daemon_1671) (int ____nochdir_1668, int ____noclose_1669);// L940 +extern int (__chroot_1673) (const char * (____path_1672));// L947 +extern int (__chroot_1674) (const char * (____path_1672));// L947 +extern char * ((__getpass_1676) (const char * (____prompt_1675)));// L951 +extern int (__fsync_1678) (int ____fd_1677);// L959 +extern int (__fsync_1679) (int ____fd_1677);// L959 +extern int (__fsync_1680) (int ____fd_1677);// L959 +extern long int (__gethostid_1681) (void );// L972 +extern void (__sync_1682) (void );// L975 +extern int (__getpagesize_1683) (void );// L981 +extern int (__getdtablesize_1684) (void );// L986 +extern int (__truncate_1689) (const char * (____file_1685), ____off_t_23 ____length_1686);// L996:L997 +extern int (__truncate_1691) (const char * (____file_1685), ____off_t_23 ____length_1686);// L996:L997 +extern int (__truncate_1690) (const char * (____file_1687), ____off64_t_24 ____length_1688);// L1000:L1002 +extern int (__truncate_1692) (const char * (____file_1687), ____off64_t_24 ____length_1688);// L1000:L1002 +extern int (__ftruncate_1700) (int ____fd_1695, ____off64_t_24 ____length_1696);// L1022:L1023 +extern int (__ftruncate_1699) (int ____fd_1693, ____off_t_23 ____length_1694);// L1019 +extern int (__ftruncate_1698) (int ____fd_1695, ____off64_t_24 ____length_1696);// L1022:L1023 +extern int (__ftruncate_1697) (int ____fd_1693, ____off_t_23 ____length_1694);// L1019 +extern int (__brk_1702) (void * (____addr_1701));// L1040 +extern int (__brk_1703) (void * (____addr_1701));// L1040 +extern void * ((__sbrk_1706) (__intptr_t_1024 ____delta_1704));// L1046 +extern long int (__syscall_1709) (long int ____sysno_1708, ... );// L1061 +extern int (__lockf_1719) (int ____fd_1713, int ____cmd_1714, ____off64_t_24 ____len_1715);// L1087:L1088 +extern int (__lockf_1718) (int ____fd_1710, int ____cmd_1711, ____off_t_23 ____len_1712);// L1084 +extern int (__lockf_1717) (int ____fd_1713, int ____cmd_1714, ____off64_t_24 ____len_1715);// L1087:L1088 +extern int (__lockf_1716) (int ____fd_1710, int ____cmd_1711, ____off_t_23 ____len_1712);// L1084 +extern int (__fdatasync_1721) (int ____fildes_1720);// L1115 +extern __ssize_t_252 (____read_chk_1726) (int ____fd_1722, void * (____buf_1723), __size_t_1 ____nbytes_1724, __size_t_1 ____buflen_1725);// L23:L24 +extern __ssize_t_1016 (____read_chk_1727) (int ____fd_1722, void * (____buf_1723), __size_t_1 ____nbytes_1724, __size_t_1 ____buflen_1725);// L23:L24 +extern __ssize_t_252 (____read_alias_1732) (int ____fd_1729, void * (____buf_1730), __size_t_1 ____nbytes_1731);// L25:L26 +extern __ssize_t_1016 (____read_alias_1733) (int ____fd_1729, void * (____buf_1730), __size_t_1 ____nbytes_1731);// L25:L26 +extern __ssize_t_252 (____read_chk_warn_1739) (int ____fd_1735, void * (____buf_1736), __size_t_1 ____nbytes_1737, __size_t_1 ____buflen_1738);// L27:L31 +extern __ssize_t_1016 (____read_chk_warn_1740) (int ____fd_1735, void * (____buf_1736), __size_t_1 ____nbytes_1737, __size_t_1 ____buflen_1738);// L27:L31 /* no function due to type errors in the function prototype */ -extern __ssize_t_285 (____readlink_chk_2233) (const char * __restrict ____path_2227, char * __restrict ____buf_2228, __size_t_1 ____len_2229, __size_t_1 ____buflen_2231);// L123:L126 -extern __ssize_t_1147 (____readlink_chk_2234) (const char * __restrict ____path_2227, char * __restrict ____buf_2228, __size_t_1150 ____len_2230, __size_t_1150 ____buflen_2232);// L123:L126 -extern __ssize_t_285 (____readlink_alias_2243) (const char * __restrict ____path_2239, char * __restrict ____buf_2240, __size_t_1 ____len_2241);// L127:L130 -extern __ssize_t_1147 (____readlink_alias_2244) (const char * __restrict ____path_2239, char * __restrict ____buf_2240, __size_t_1150 ____len_2242);// L127:L130 -extern __ssize_t_285 (____readlink_chk_warn_2255) (const char * __restrict ____path_2249, char * __restrict ____buf_2250, __size_t_1 ____len_2251, __size_t_1 ____buflen_2253);// L131:L136 -extern __ssize_t_1147 (____readlink_chk_warn_2256) (const char * __restrict ____path_2249, char * __restrict ____buf_2250, __size_t_1150 ____len_2252, __size_t_1150 ____buflen_2254);// L131:L136 +extern __ssize_t_252 (____readlink_chk_1750) (const char * __restrict ____path_1746, char * __restrict ____buf_1747, __size_t_1 ____len_1748, __size_t_1 ____buflen_1749);// L123:L126 +extern __ssize_t_252 (____readlink_alias_1755) (const char * __restrict ____path_1752, char * __restrict ____buf_1753, __size_t_1 ____len_1754);// L127:L130 +extern __ssize_t_252 (____readlink_chk_warn_1761) (const char * __restrict ____path_1757, char * __restrict ____buf_1758, __size_t_1 ____len_1759, __size_t_1 ____buflen_1760);// L131:L136 /* no function due to type errors in the function prototype */ -extern __ssize_t_285 (____readlinkat_chk_2276) (int ____fd_2269, const char * __restrict ____path_2270, char * __restrict ____buf_2271, __size_t_1 ____len_2272, __size_t_1 ____buflen_2274);// L155:L158 -extern __ssize_t_1147 (____readlinkat_chk_2277) (int ____fd_2269, const char * __restrict ____path_2270, char * __restrict ____buf_2271, __size_t_1150 ____len_2273, __size_t_1150 ____buflen_2275);// L155:L158 -extern __ssize_t_285 (____readlinkat_alias_2287) (int ____fd_2282, const char * __restrict ____path_2283, char * __restrict ____buf_2284, __size_t_1 ____len_2285);// L159:L163 -extern __ssize_t_1147 (____readlinkat_alias_2288) (int ____fd_2282, const char * __restrict ____path_2283, char * __restrict ____buf_2284, __size_t_1150 ____len_2286);// L159:L163 -extern __ssize_t_285 (____readlinkat_chk_warn_2300) (int ____fd_2293, const char * __restrict ____path_2294, char * __restrict ____buf_2295, __size_t_1 ____len_2296, __size_t_1 ____buflen_2298);// L164:L170 -extern __ssize_t_1147 (____readlinkat_chk_warn_2301) (int ____fd_2293, const char * __restrict ____path_2294, char * __restrict ____buf_2295, __size_t_1150 ____len_2297, __size_t_1150 ____buflen_2299);// L164:L170 +extern __ssize_t_252 (____readlinkat_chk_1772) (int ____fd_1767, const char * __restrict ____path_1768, char * __restrict ____buf_1769, __size_t_1 ____len_1770, __size_t_1 ____buflen_1771);// L155:L158 +extern __ssize_t_252 (____readlinkat_alias_1778) (int ____fd_1774, const char * __restrict ____path_1775, char * __restrict ____buf_1776, __size_t_1 ____len_1777);// L159:L163 +extern __ssize_t_252 (____readlinkat_chk_warn_1785) (int ____fd_1780, const char * __restrict ____path_1781, char * __restrict ____buf_1782, __size_t_1 ____len_1783, __size_t_1 ____buflen_1784);// L164:L170 /* no function due to type errors in the function prototype */ -extern char * ((____getcwd_chk_2320) (char * (____buf_2315), __size_t_1 ____size_2316, __size_t_1 ____buflen_2318));// L189:L190 -extern char * ((____getcwd_chk_2321) (char * (____buf_2315), __size_t_1150 ____size_2317, __size_t_1150 ____buflen_2319));// L189:L190 -extern char * ((____getcwd_chk_2322) (char * (____buf_2315), __size_t_1 ____size_2316, __size_t_1 ____buflen_2318));// L189:L190 -extern char * ((____getcwd_chk_2323) (char * (____buf_2315), __size_t_1150 ____size_2317, __size_t_1150 ____buflen_2319));// L189:L190 -extern char * ((____getcwd_alias_2327) (char * (____buf_2324), __size_t_1 ____size_2325));// L191:L192 -extern char * ((____getcwd_alias_2328) (char * (____buf_2324), __size_t_1150 ____size_2326));// L191:L192 -extern char * ((____getcwd_chk_warn_2334) (char * (____buf_2329), __size_t_1 ____size_2330, __size_t_1 ____buflen_2332));// L193:L197 -extern char * ((____getcwd_chk_warn_2335) (char * (____buf_2329), __size_t_1150 ____size_2331, __size_t_1150 ____buflen_2333));// L193:L197 +extern char * ((____getcwd_chk_1795) (char * (____buf_1792), __size_t_1 ____size_1793, __size_t_1 ____buflen_1794));// L189:L190 +extern char * ((____getcwd_chk_1796) (char * (____buf_1792), __size_t_1 ____size_1793, __size_t_1 ____buflen_1794));// L189:L190 +extern char * ((____getcwd_alias_1799) (char * (____buf_1797), __size_t_1 ____size_1798));// L191:L192 +extern char * ((____getcwd_chk_warn_1803) (char * (____buf_1800), __size_t_1 ____size_1801, __size_t_1 ____buflen_1802));// L193:L197 /* no function due to type errors in the function prototype */ -extern char * ((____getwd_chk_2344) (char * (____buf_2341), __size_t_1 __buflen_2342));// L214:L215 -extern char * ((____getwd_chk_2345) (char * (____buf_2341), __size_t_1150 __buflen_2343));// L214:L215 -extern char * ((____getwd_warn_2347) (char * (____buf_2346)));// L216:L218 +extern char * ((____getwd_chk_1809) (char * (____buf_1807), __size_t_1 __buflen_1808));// L214:L215 +extern char * ((____getwd_warn_1811) (char * (____buf_1810)));// L216:L218 /* no function due to type errors in the function prototype */ -extern __size_t_1 (____confstr_chk_2356) (int ____name_2350, char * (____buf_2351), __size_t_1 ____len_2352, __size_t_1 ____buflen_2354);// L229:L230 -extern __size_t_1150 (____confstr_chk_2357) (int ____name_2350, char * (____buf_2351), __size_t_1150 ____len_2353, __size_t_1150 ____buflen_2355);// L229:L230 -extern __size_t_1 (____confstr_chk_2358) (int ____name_2350, char * (____buf_2351), __size_t_1 ____len_2352, __size_t_1 ____buflen_2354);// L229:L230 -extern __size_t_1150 (____confstr_chk_2359) (int ____name_2350, char * (____buf_2351), __size_t_1150 ____len_2353, __size_t_1150 ____buflen_2355);// L229:L230 -extern __size_t_1 (____confstr_alias_2364) (int ____name_2360, char * (____buf_2361), __size_t_1 ____len_2362);// L231:L232 -extern __size_t_1150 (____confstr_alias_2365) (int ____name_2360, char * (____buf_2361), __size_t_1150 ____len_2363);// L231:L232 -extern __size_t_1 (____confstr_chk_warn_2372) (int ____name_2366, char * (____buf_2367), __size_t_1 ____len_2368, __size_t_1 ____buflen_2370);// L233:L237 -extern __size_t_1150 (____confstr_chk_warn_2373) (int ____name_2366, char * (____buf_2367), __size_t_1150 ____len_2369, __size_t_1150 ____buflen_2371);// L233:L237 +extern __size_t_1 (____confstr_chk_1818) (int ____name_1814, char * (____buf_1815), __size_t_1 ____len_1816, __size_t_1 ____buflen_1817);// L229:L230 +extern __size_t_1 (____confstr_chk_1819) (int ____name_1814, char * (____buf_1815), __size_t_1 ____len_1816, __size_t_1 ____buflen_1817);// L229:L230 +extern __size_t_1 (____confstr_alias_1823) (int ____name_1820, char * (____buf_1821), __size_t_1 ____len_1822);// L231:L232 +extern __size_t_1 (____confstr_chk_warn_1828) (int ____name_1824, char * (____buf_1825), __size_t_1 ____len_1826, __size_t_1 ____buflen_1827);// L233:L237 /* no function due to type errors in the function prototype */ -extern int (____getgroups_chk_2386) (int ____size_2380, ____gid_t_18 ____list_2381[], __size_t_1 ____listlen_2384);// L254:L255 -extern int (____getgroups_chk_2387) (int ____size_2380, ____gid_t_1106 ____list_2382[], __size_t_1150 ____listlen_2385);// L254:L255 -extern int (____getgroups_alias_2394) (int ____size_2390, ____gid_t_18 ____list_2391[]);// L256:L257 -extern int (____getgroups_alias_2395) (int ____size_2390, ____gid_t_1106 ____list_2392[]);// L256:L257 -extern int (____getgroups_chk_warn_2403) (int ____size_2397, ____gid_t_18 ____list_2398[], __size_t_1 ____listlen_2401);// L258:L262 -extern int (____getgroups_chk_warn_2404) (int ____size_2397, ____gid_t_1106 ____list_2399[], __size_t_1150 ____listlen_2402);// L258:L262 +extern int (____getgroups_chk_1836) (int ____size_1833, ____gid_t_18 ____list_1834[], __size_t_1 ____listlen_1835);// L254:L255 +extern int (____getgroups_alias_1839) (int ____size_1837, ____gid_t_18 ____list_1838[]);// L256:L257 +extern int (____getgroups_chk_warn_1843) (int ____size_1840, ____gid_t_18 ____list_1841[], __size_t_1 ____listlen_1842);// L258:L262 /* no function due to type errors in the function prototype */ -extern int (____ttyname_r_chk_2418) (int ____fd_2412, char * (____buf_2413), __size_t_1 ____buflen_2414, __size_t_1 ____nreal_2416);// L279:L280 -extern int (____ttyname_r_chk_2419) (int ____fd_2412, char * (____buf_2413), __size_t_1150 ____buflen_2415, __size_t_1150 ____nreal_2417);// L279:L280 -extern int (____ttyname_r_alias_2424) (int ____fd_2420, char * (____buf_2421), __size_t_1 ____buflen_2422);// L281:L283 -extern int (____ttyname_r_alias_2425) (int ____fd_2420, char * (____buf_2421), __size_t_1150 ____buflen_2423);// L281:L283 -extern int (____ttyname_r_chk_warn_2432) (int ____fd_2426, char * (____buf_2427), __size_t_1 ____buflen_2428, __size_t_1 ____nreal_2430);// L284:L288 -extern int (____ttyname_r_chk_warn_2433) (int ____fd_2426, char * (____buf_2427), __size_t_1150 ____buflen_2429, __size_t_1150 ____nreal_2431);// L284:L288 +extern int (____ttyname_r_chk_1850) (int ____fd_1846, char * (____buf_1847), __size_t_1 ____buflen_1848, __size_t_1 ____nreal_1849);// L279:L280 +extern int (____ttyname_r_alias_1854) (int ____fd_1851, char * (____buf_1852), __size_t_1 ____buflen_1853);// L281:L283 +extern int (____ttyname_r_chk_warn_1859) (int ____fd_1855, char * (____buf_1856), __size_t_1 ____buflen_1857, __size_t_1 ____nreal_1858);// L284:L288 /* no function due to type errors in the function prototype */ -extern int (____getlogin_r_chk_2443) (char * (____buf_2438), __size_t_1 ____buflen_2439, __size_t_1 ____nreal_2441);// L306:L307 -extern int (____getlogin_r_chk_2444) (char * (____buf_2438), __size_t_1150 ____buflen_2440, __size_t_1150 ____nreal_2442);// L306:L307 -extern int (____getlogin_r_alias_2448) (char * (____buf_2445), __size_t_1 ____buflen_2446);// L308:L309 -extern int (____getlogin_r_alias_2449) (char * (____buf_2445), __size_t_1150 ____buflen_2447);// L308:L309 -extern int (____getlogin_r_chk_warn_2455) (char * (____buf_2450), __size_t_1 ____buflen_2451, __size_t_1 ____nreal_2453);// L310:L314 -extern int (____getlogin_r_chk_warn_2456) (char * (____buf_2450), __size_t_1150 ____buflen_2452, __size_t_1150 ____nreal_2454);// L310:L314 +extern int (____getlogin_r_chk_1866) (char * (____buf_1863), __size_t_1 ____buflen_1864, __size_t_1 ____nreal_1865);// L306:L307 +extern int (____getlogin_r_alias_1869) (char * (____buf_1867), __size_t_1 ____buflen_1868);// L308:L309 +extern int (____getlogin_r_chk_warn_1873) (char * (____buf_1870), __size_t_1 ____buflen_1871, __size_t_1 ____nreal_1872);// L310:L314 /* no function due to type errors in the function prototype */ -extern int (____gethostname_chk_2465) (char * (____buf_2460), __size_t_1 ____buflen_2461, __size_t_1 ____nreal_2463);// L333:L334 -extern int (____gethostname_chk_2466) (char * (____buf_2460), __size_t_1150 ____buflen_2462, __size_t_1150 ____nreal_2464);// L333:L334 -extern int (____gethostname_alias_2470) (char * (____buf_2467), __size_t_1 ____buflen_2468);// L335:L336 -extern int (____gethostname_alias_2471) (char * (____buf_2467), __size_t_1150 ____buflen_2469);// L335:L336 -extern int (____gethostname_chk_warn_2477) (char * (____buf_2472), __size_t_1 ____buflen_2473, __size_t_1 ____nreal_2475);// L337:L341 -extern int (____gethostname_chk_warn_2478) (char * (____buf_2472), __size_t_1150 ____buflen_2474, __size_t_1150 ____nreal_2476);// L337:L341 +extern int (____gethostname_chk_1879) (char * (____buf_1876), __size_t_1 ____buflen_1877, __size_t_1 ____nreal_1878);// L333:L334 +extern int (____gethostname_alias_1882) (char * (____buf_1880), __size_t_1 ____buflen_1881);// L335:L336 +extern int (____gethostname_chk_warn_1886) (char * (____buf_1883), __size_t_1 ____buflen_1884, __size_t_1 ____nreal_1885);// L337:L341 /* no function due to type errors in the function prototype */ -extern int (____getdomainname_chk_2487) (char * (____buf_2482), __size_t_1 ____buflen_2483, __size_t_1 ____nreal_2485);// L360:L361 -extern int (____getdomainname_chk_2488) (char * (____buf_2482), __size_t_1150 ____buflen_2484, __size_t_1150 ____nreal_2486);// L360:L361 -extern int (____getdomainname_alias_2492) (char * (____buf_2489), __size_t_1 ____buflen_2490);// L362:L364 -extern int (____getdomainname_alias_2493) (char * (____buf_2489), __size_t_1150 ____buflen_2491);// L362:L364 -extern int (____getdomainname_chk_warn_2499) (char * (____buf_2494), __size_t_1 ____buflen_2495, __size_t_1 ____nreal_2497);// L365:L370 -extern int (____getdomainname_chk_warn_2500) (char * (____buf_2494), __size_t_1150 ____buflen_2496, __size_t_1150 ____nreal_2498);// L365:L370 +extern int (____getdomainname_chk_1892) (char * (____buf_1889), __size_t_1 ____buflen_1890, __size_t_1 ____nreal_1891);// L360:L361 +extern int (____getdomainname_alias_1895) (char * (____buf_1893), __size_t_1 ____buflen_1894);// L362:L364 +extern int (____getdomainname_chk_warn_1899) (char * (____buf_1896), __size_t_1 ____buflen_1897, __size_t_1 ____nreal_1898);// L365:L370 /* no function due to type errors in the function prototype */ -void (__shutdown_signal_2506) (int __sig_2504) { +void (__shutdown_signal_1904) (int __sig_1902) { -if (__static_condition_default_2507) { +if (__static_condition_default_1908) { { { -char * (__m_2505);// L11 +char * (__m_1903);// L11 -if ( __sig_2504 == 15 )// L13 +if ( __sig_1902 == 15 )// L13 { +if (__static_condition_default_1908) { { { - __m_2505 = "reboot" ; // L14 + __m_1903 = "reboot" ; // L14 +} } } } else { -if ( __sig_2504 == 31 )// L15 +if (__static_condition_default_1908) { +if ( __sig_1902 == 31 )// L15 { +if (__static_condition_default_1908) { { { - __m_2505 = "poweroff" ; // L16 + __m_1903 = "poweroff" ; // L16 +} } } } else { +if (__static_condition_default_1908) { { { - __m_2505 = "halt" ; // L18 + __m_1903 = "halt" ; // L18 +} +} } } } } -if (__static_condition_default_2508) { - __printf_421 ("Requesting system %s.", __m_2505 ) ; // L20 + __printf_383 ("Requesting system %s.", __m_1903 ) ; // L20 } -if (__static_condition_default_2509) { -__static_type_error("type error") ; // L20 } + + } } +void (__shutdown_signal_1905) (int __sig_1902) { + +if (__static_condition_default_1909) { + +{ +{ + + + +char * (__m_1903);// L11 + +if ( __sig_1902 == 15 )// L13 +{ +if (__static_condition_default_1909) { + +{ +{ + + + + __m_1903 = "reboot" ; // L14 +} +} +} +} +else +{ +if (__static_condition_default_1909) { +if ( __sig_1902 == 31 )// L15 +{ +if (__static_condition_default_1909) { + +{ +{ + + + + __m_1903 = "poweroff" ; // L16 +} +} +} +} +else +{ +if (__static_condition_default_1909) { + +{ +{ + + + + __m_1903 = "halt" ; // L18 +} +} +} +} +} +} + __printf_383 ("Requesting system %s.", __m_1903 ) ; // L20 +} +} + + +} +} +void (__shutdown_signal_1906) (int __sig_1902) { + +if (__static_condition_default_1910) { + +{ +{ + + + +char * (__m_1903);// L11 + +if ( __sig_1902 == 15 )// L13 +{ +if (__static_condition_default_1910) { + +{ +{ + + __m_1903 = "reboot" ; // L14 +} +} } } -void (__open_new_terminal_2510) () { +else +{ +if (__static_condition_default_1910) { +if ( __sig_1902 == 31 )// L15 +{ +if (__static_condition_default_1910) { + +{ +{ + + -if (__static_condition_default_2512) { + __m_1903 = "poweroff" ; // L16 +} +} +} +} +else +{ +if (__static_condition_default_1910) { { { -__static_type_error("type error") ; // L26 + __m_1903 = "halt" ; // L18 +} +} +} +} +} +} + __printf_383 ("Requesting system %s.", __m_1903 ) ; // L20 } } } } -void (__open_new_terminal_2511) () { +void (__shutdown_signal_1907) (int __sig_1902) { -if (__static_condition_default_2513) { +if (__static_condition_default_1911) { { { - __shutdown_signal_2506 (30) ; // L26 +char * (__m_1903);// L11 + +if ( __sig_1902 == 15 )// L13 +{ +if (__static_condition_default_1911) { + +{ +{ + + + + __m_1903 = "reboot" ; // L14 +} +} +} +} +else +{ +if (__static_condition_default_1911) { +if ( __sig_1902 == 31 )// L15 +{ +if (__static_condition_default_1911) { + +{ +{ + + + + __m_1903 = "poweroff" ; // L16 +} +} +} +} +else +{ +if (__static_condition_default_1911) { + +{ +{ + + + + __m_1903 = "halt" ; // L18 +} +} +} +} +} +} + __printf_383 ("Requesting system %s.", __m_1903 ) ; // L20 } } } } -void (__run_2514) () { +void (__open_new_terminal_1912) () { { { -if (__static_condition_default_2512) { - __open_new_terminal_2510 ( ) ; // L31 +if (__static_condition_default_1913) { + __shutdown_signal_1904 (30) ; // L26 +} +if (__static_condition_default_1914) { + __shutdown_signal_1905 (30) ; // L26 +} +if (__static_condition_default_1915) { + __shutdown_signal_1906 (30) ; // L26 +} +if (__static_condition_default_1911) { + __shutdown_signal_1907 (30) ; // L26 +} } -if (__static_condition_default_2513) { - __open_new_terminal_2511 ( ) ; // L31 } + + +} +void (__run_1916) () { + +{ +{ + + + + __open_new_terminal_1912 ( ) ; // L31 } } } -void (__run_actions_2515) () { +void (__run_actions_1917) () { { { - __run_2514 ( ) ; // L36 + __run_1916 ( ) ; // L36 } } } -int (__main_2518) (int __argc_2516, char * (* (__argv_2517))) { +int (__main_1920) (int __argc_1918, char * (* (__argv_1919))) { { { - __run_actions_2515 ( ) ; // L41 + __run_actions_1917 ( ) ; // L41 return 0 ;// L42 } } diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/df7b6577c6a.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/df7b6577c6a.desugared.c index da08b1c6..88b96fbb 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/df7b6577c6a.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/df7b6577c6a.desugared.c @@ -7,283 +7,211 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_382; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_380; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_198; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_1101; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_963; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_1098; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_583; -extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_204; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_543; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_747; -extern const bool __static_condition_default_512; -extern const bool __static_condition_default_649; +extern const bool __static_condition_default_870; +extern const bool __static_condition_default_820; +extern const bool __static_condition_default_74; +extern const bool __static_condition_default_338; +extern const bool __static_condition_default_474; extern const bool __static_condition_default_684; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_894; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_408; -extern const bool __static_condition_default_311; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_1099; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_577; +extern const bool __static_condition_default_707; +extern const bool __static_condition_default_924; +extern const bool __static_condition_default_162; +extern const bool __static_condition_default_626; extern const bool __static_condition_default_395; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_701; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_955; -extern const bool __static_condition_default_914; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_613; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_549; -extern const bool __static_condition_default_793; -extern const bool __static_condition_default_559; -extern const bool __static_condition_default_1107; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_488; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_1104; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_755; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_645; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_419; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_646; -extern const bool __static_condition_default_842; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_248; -extern const bool __static_condition_default_891; -extern const bool __static_condition_default_315; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_685; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_1072; extern const bool __static_condition_default_473; -extern const bool __static_condition_default_702; -extern const bool __static_condition_default_461; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_345; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_308; +extern const bool __static_condition_default_551; +extern const bool __static_condition_default_1023; +extern const bool __static_condition_default_236; +extern const bool __static_condition_default_743; +extern const bool __static_condition_default_318; extern const bool __static_condition_default_991; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_929; -extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_313; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_803; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_521; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_564; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_1103; -extern const bool __static_condition_default_761; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_536; -extern const bool __static_condition_default_658; +extern const bool __static_condition_default_435; +extern const bool __static_condition_default_575; +extern const bool __static_condition_default_774; +extern const bool __static_condition_default_790; extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_846; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_670; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_907; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_357; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_957; -extern const bool __static_condition_default_347; -extern const bool __static_condition_default_769; -extern const bool __static_condition_default_386; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_76; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_677; extern const bool __static_condition_default_296; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_217; -extern const bool __static_condition_default_1105; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_779; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_412; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_290; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_438; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_367; -extern const bool __static_condition_default_1100; -extern const bool __static_condition_default_709; -extern const bool __static_condition_default_875; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_402; -extern const bool __static_condition_default_393; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_780; -extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_53; -extern const bool __static_condition_default_789; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_751; +extern const bool __static_condition_default_1024; +extern const bool __static_condition_default_680; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_714; +extern const bool __static_condition_default_933; +extern const bool __static_condition_default_762; +extern const bool __static_condition_default_686; extern const bool __static_condition_default_223; -extern const bool __static_condition_default_602; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_969; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_881; +extern const bool __static_condition_default_234; +extern const bool __static_condition_default_772; +extern const bool __static_condition_default_336; +extern const bool __static_condition_default_320; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_719; +extern const bool __static_condition_default_586; +extern const bool __static_condition_default_733; +extern const bool __static_condition_default_641; +extern const bool __static_condition_default_356; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_495; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_343; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_276; +extern const bool __static_condition_default_706; +extern const bool __static_condition_default_695; +extern const bool __static_condition_default_605; +extern const bool __static_condition_default_528; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_961; +extern const bool __static_condition_default_788; extern const bool __static_condition_default_431; -extern const bool __static_condition_default_497; +extern const bool __static_condition_default_766; +extern const bool __static_condition_default_905; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_540; +extern const bool __static_condition_default_457; +extern const bool __static_condition_default_421; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_226; +extern const bool __static_condition_default_379; +extern const bool __static_condition_default_595; +extern const bool __static_condition_default_225; +extern const bool __static_condition_default_400; +extern const bool __static_condition_default_935; +extern const bool __static_condition_default_784; +extern const bool __static_condition_default_696; +extern const bool __static_condition_default_496; +extern const bool __static_condition_default_556; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_567; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_374; +extern const bool __static_condition_default_358; +extern const bool __static_condition_default_501; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_893; +extern const bool __static_condition_default_500; +extern const bool __static_condition_default_300; +extern const bool __static_condition_default_349; +extern const bool __static_condition_default_953; +extern const bool __static_condition_default_508; extern const bool __static_condition_default_745; -extern const bool __static_condition_default_590; -extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_638; -extern const bool __static_condition_default_388; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_693; -extern const bool __static_condition_default_1106; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_887; -extern const bool __static_condition_default_787; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_187; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_956; -extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_568; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_1102; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_369; +extern const bool __static_condition_default_1025; +extern const bool __static_condition_default_446; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_992; +extern const bool __static_condition_default_332; +extern const bool __static_condition_default_451; +extern const bool __static_condition_default_502; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_304; +extern const bool __static_condition_default_562; +extern const bool __static_condition_default_507; +extern const bool __static_condition_default_1017; extern const bool __static_condition_default_235; -extern const bool __static_condition_default_317; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_333; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_632; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_848; -extern const bool __static_condition_default_872; -extern const bool __static_condition_default_978; +extern const bool __static_condition_default_482; +extern const bool __static_condition_default_517; +extern const bool __static_condition_default_749; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_330; +extern const bool __static_condition_default_448; +extern const bool __static_condition_default_889; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_161; +extern const bool __static_condition_default_165; +extern const bool __static_condition_default_470; +extern const bool __static_condition_default_254; +extern const bool __static_condition_default_720; +extern const bool __static_condition_default_906; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_694; +extern const bool __static_condition_default_459; +extern const bool __static_condition_default_983; +extern const bool __static_condition_default_882; +extern const bool __static_condition_default_968; extern const bool __static_condition_default_278; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_753; -extern const bool __static_condition_default_858; +extern const bool __static_condition_default_118; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_798; +extern const bool __static_condition_default_833; +extern const bool __static_condition_default_954; +extern const bool __static_condition_default_381; +extern const bool __static_condition_default_579; +extern const bool __static_condition_default_672; +extern const bool __static_condition_default_904; +extern const bool __static_condition_default_610; +extern const bool __static_condition_default_612; +extern const bool __static_condition_default_648; +extern const bool __static_condition_default_962; +extern const bool __static_condition_default_688; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_917; +extern const bool __static_condition_default_227; +extern const bool __static_condition_default_588; +extern const bool __static_condition_default_294; +extern const bool __static_condition_default_898; +extern const bool __static_condition_default_328; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_729; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_739; +extern const bool __static_condition_default_453; +extern const bool __static_condition_default_984; +extern const bool __static_condition_default_1016; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_639; +extern const bool __static_condition_default_976; +extern const bool __static_condition_default_370; +extern const bool __static_condition_default_449; +extern const bool __static_condition_default_778; +extern const bool __static_condition_default_480; +extern const bool __static_condition_default_454; +extern const bool __static_condition_default_256; +extern const bool __static_condition_default_640; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_230; +extern const bool __static_condition_default_948; +extern const bool __static_condition_default_232; +extern const bool __static_condition_default_310; +extern const bool __static_condition_default_999; +extern const bool __static_condition_default_394; +extern const bool __static_condition_default_977; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_931; +extern const bool __static_condition_default_429; +extern const bool __static_condition_default_603; +extern const bool __static_condition_default_642; +extern const bool __static_condition_default_533; +extern const bool __static_condition_default_351; +extern const bool __static_condition_default_627; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_941; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_716; +extern const bool __static_condition_default_624; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_804; +extern const bool __static_condition_default_718; +extern const bool __static_condition_default_794; +extern const bool __static_condition_default_326; +extern const bool __static_condition_default_855; +extern const bool __static_condition_default_1006; +extern const bool __static_condition_default_655; +extern const bool __static_condition_default_1015; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -335,507 +263,430 @@ __static_renaming("____ssize_t_49", "__ssize_t"); __static_renaming("____syscall_slong_t_50", "__syscall_slong_t"); __static_renaming("____syscall_ulong_t_51", "__syscall_ulong_t"); __static_renaming("____loff_t_52", "__loff_t"); -__static_renaming("____qaddr_t_54", "__qaddr_t"); -__static_renaming("____caddr_t_55", "__caddr_t"); -__static_renaming("____intptr_t_56", "__intptr_t"); -__static_renaming("____socklen_t_57", "__socklen_t"); -__static_renaming("__FILE_59", "FILE"); -__static_renaming("____FILE_60", "__FILE"); -__static_renaming("____mbstate_t_69", "__mbstate_t"); -__static_renaming("___G_fpos_t_77", "_G_fpos_t"); -__static_renaming("___G_fpos64_t_85", "_G_fpos64_t"); -__static_renaming("____gnuc_va_list_86", "__gnuc_va_list"); -__static_renaming("___IO_lock_t_88", "_IO_lock_t"); -__static_renaming("___IO_FILE_171", "_IO_FILE"); -__static_renaming("___IO_FILE_172", "_IO_FILE"); -__static_renaming("___IO_2_1_stdin__175", "_IO_2_1_stdin_"); -__static_renaming("___IO_2_1_stdout__176", "_IO_2_1_stdout_"); -__static_renaming("___IO_2_1_stderr__177", "_IO_2_1_stderr_"); -__static_renaming("____io_read_fn_181", "__io_read_fn"); -__static_renaming("____io_write_fn_186", "__io_write_fn"); -__static_renaming("____io_seek_fn_192", "__io_seek_fn"); -__static_renaming("____io_close_fn_195", "__io_close_fn"); -__static_renaming("____underflow_196", "__underflow"); -__static_renaming("____underflow_197", "__underflow"); -__static_renaming("____uflow_199", "__uflow"); -__static_renaming("____uflow_200", "__uflow"); -__static_renaming("____overflow_202", "__overflow"); -__static_renaming("____overflow_203", "__overflow"); -__static_renaming("___IO_getc_208", "_IO_getc"); -__static_renaming("___IO_getc_209", "_IO_getc"); -__static_renaming("___IO_putc_215", "_IO_putc"); -__static_renaming("___IO_putc_216", "_IO_putc"); -__static_renaming("___IO_feof_221", "_IO_feof"); -__static_renaming("___IO_feof_222", "_IO_feof"); -__static_renaming("___IO_ferror_227", "_IO_ferror"); -__static_renaming("___IO_ferror_228", "_IO_ferror"); -__static_renaming("___IO_peekc_locked_233", "_IO_peekc_locked"); -__static_renaming("___IO_peekc_locked_234", "_IO_peekc_locked"); -__static_renaming("___IO_flockfile_236", "_IO_flockfile"); -__static_renaming("___IO_flockfile_237", "_IO_flockfile"); -__static_renaming("___IO_funlockfile_239", "_IO_funlockfile"); -__static_renaming("___IO_funlockfile_240", "_IO_funlockfile"); -__static_renaming("___IO_ftrylockfile_242", "_IO_ftrylockfile"); -__static_renaming("___IO_ftrylockfile_243", "_IO_ftrylockfile"); -__static_renaming("___IO_vfscanf_245", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_247", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_251", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_252", "_IO_vfscanf"); -__static_renaming("___IO_vfprintf_254", "_IO_vfprintf"); -__static_renaming("___IO_vfprintf_256", "_IO_vfprintf"); -__static_renaming("___IO_vfprintf_260", "_IO_vfprintf"); -__static_renaming("___IO_padn_261", "_IO_padn"); -__static_renaming("___IO_padn_262", "_IO_padn"); -__static_renaming("___IO_sgetn_265", "_IO_sgetn"); -__static_renaming("___IO_sgetn_266", "_IO_sgetn"); -__static_renaming("___IO_seekoff_268", "_IO_seekoff"); -__static_renaming("___IO_seekoff_269", "_IO_seekoff"); -__static_renaming("___IO_seekpos_272", "_IO_seekpos"); -__static_renaming("___IO_seekpos_273", "_IO_seekpos"); -__static_renaming("___IO_free_backup_area_276", "_IO_free_backup_area"); -__static_renaming("___IO_free_backup_area_277", "_IO_free_backup_area"); -__static_renaming("__va_list_279", "va_list"); -__static_renaming("__off_t_281", "off_t"); -__static_renaming("__off_t_283", "off_t"); -__static_renaming("__ssize_t_285", "ssize_t"); -__static_renaming("__fpos_t_287", "fpos_t"); -__static_renaming("__fpos_t_289", "fpos_t"); -__static_renaming("__stdin_291", "stdin"); -__static_renaming("__stdin_292", "stdin"); -__static_renaming("__stdout_294", "stdout"); -__static_renaming("__stdout_295", "stdout"); -__static_renaming("__stderr_297", "stderr"); -__static_renaming("__stderr_298", "stderr"); -__static_renaming("__remove_301", "remove"); -__static_renaming("__rename_304", "rename"); -__static_renaming("__renameat_309", "renameat"); -__static_renaming("__tmpfile_310", "tmpfile"); -__static_renaming("__tmpfile_312", "tmpfile"); -__static_renaming("__tmpfile_314", "tmpfile"); -__static_renaming("__tmpfile_316", "tmpfile"); -__static_renaming("__tmpnam_319", "tmpnam"); -__static_renaming("__tmpnam_320", "tmpnam"); -__static_renaming("__tmpnam_r_322", "tmpnam_r"); -__static_renaming("__tmpnam_r_323", "tmpnam_r"); -__static_renaming("__tempnam_326", "tempnam"); -__static_renaming("__tempnam_327", "tempnam"); -__static_renaming("__fclose_330", "fclose"); -__static_renaming("__fclose_332", "fclose"); -__static_renaming("__fflush_336", "fflush"); -__static_renaming("__fflush_unlocked_340", "fflush_unlocked"); -__static_renaming("__fopen_344", "fopen"); -__static_renaming("__fopen_346", "fopen"); -__static_renaming("__fopen_354", "fopen"); -__static_renaming("__fopen_356", "fopen"); -__static_renaming("__freopen_362", "freopen"); -__static_renaming("__freopen_364", "freopen"); -__static_renaming("__freopen_366", "freopen"); -__static_renaming("__freopen_368", "freopen"); -__static_renaming("__fdopen_372", "fdopen"); -__static_renaming("__fdopen_374", "fdopen"); -__static_renaming("__fmemopen_379", "fmemopen"); -__static_renaming("__fmemopen_381", "fmemopen"); -__static_renaming("__open_memstream_385", "open_memstream"); -__static_renaming("__open_memstream_387", "open_memstream"); -__static_renaming("__setbuf_392", "setbuf"); -__static_renaming("__setbuf_394", "setbuf"); -__static_renaming("__setvbuf_401", "setvbuf"); -__static_renaming("__setbuffer_407", "setbuffer"); -__static_renaming("__setlinebuf_411", "setlinebuf"); -__static_renaming("__fprintf_416", "fprintf"); -__static_renaming("__fprintf_418", "fprintf"); -__static_renaming("__printf_421", "printf"); -__static_renaming("__sprintf_424", "sprintf"); -__static_renaming("__vfprintf_430", "vfprintf"); -__static_renaming("__vprintf_437", "vprintf"); -__static_renaming("__vsprintf_443", "vsprintf"); -__static_renaming("__snprintf_448", "snprintf"); -__static_renaming("__vsnprintf_454", "vsnprintf"); -__static_renaming("__vdprintf_460", "vdprintf"); -__static_renaming("__dprintf_464", "dprintf"); -__static_renaming("__fscanf_468", "fscanf"); -__static_renaming("__fscanf_470", "fscanf"); -__static_renaming("__fscanf_472", "fscanf"); -__static_renaming("__fscanf_474", "fscanf"); -__static_renaming("__scanf_477", "scanf"); -__static_renaming("__scanf_478", "scanf"); -__static_renaming("__sscanf_481", "sscanf"); -__static_renaming("__vfscanf_509", "vfscanf"); -__static_renaming("__vfscanf_513", "vfscanf"); -__static_renaming("__vscanf_520", "vscanf"); -__static_renaming("__vscanf_522", "vscanf"); -__static_renaming("__vsscanf_528", "vsscanf"); -__static_renaming("__fgetc_563", "fgetc"); -__static_renaming("__getc_567", "getc"); -__static_renaming("__getchar_569", "getchar"); -__static_renaming("__getc_unlocked_572", "getc_unlocked"); -__static_renaming("__getchar_unlocked_574", "getchar_unlocked"); -__static_renaming("__fgetc_unlocked_577", "fgetc_unlocked"); -__static_renaming("__fputc_582", "fputc"); -__static_renaming("__fputc_584", "fputc"); -__static_renaming("__putc_589", "putc"); -__static_renaming("__putchar_592", "putchar"); -__static_renaming("__fputc_unlocked_596", "fputc_unlocked"); -__static_renaming("__putc_unlocked_601", "putc_unlocked"); -__static_renaming("__putchar_unlocked_604", "putchar_unlocked"); -__static_renaming("__getw_607", "getw"); -__static_renaming("__putw_612", "putw"); -__static_renaming("__fgets_618", "fgets"); -__static_renaming("__fgets_620", "fgets"); -__static_renaming("__fgets_622", "fgets"); -__static_renaming("__fgets_624", "fgets"); -__static_renaming("____getdelim_631", "__getdelim"); -__static_renaming("____getdelim_635", "__getdelim"); -__static_renaming("__getdelim_644", "getdelim"); -__static_renaming("__getdelim_648", "getdelim"); -__static_renaming("__getline_656", "getline"); -__static_renaming("__getline_660", "getline"); -__static_renaming("__fputs_667", "fputs"); -__static_renaming("__fputs_669", "fputs"); -__static_renaming("__puts_672", "puts"); -__static_renaming("__ungetc_676", "ungetc"); -__static_renaming("__fseek_714", "fseek"); -__static_renaming("__fseek_716", "fseek"); -__static_renaming("__ftell_720", "ftell"); -__static_renaming("__ftell_722", "ftell"); -__static_renaming("__rewind_726", "rewind"); -__static_renaming("__fseeko_733", "fseeko"); -__static_renaming("__fseeko_744", "fseeko"); -__static_renaming("__ftello_750", "ftello"); -__static_renaming("__ftello_754", "ftello"); -__static_renaming("__ftello_758", "ftello"); -__static_renaming("__fgetpos_766", "fgetpos"); -__static_renaming("__fgetpos_778", "fgetpos"); -__static_renaming("__fsetpos_786", "fsetpos"); -__static_renaming("__fsetpos_790", "fsetpos"); -__static_renaming("__clearerr_796", "clearerr"); -__static_renaming("__feof_800", "feof"); -__static_renaming("__feof_802", "feof"); -__static_renaming("__ferror_806", "ferror"); -__static_renaming("__ferror_808", "ferror"); -__static_renaming("__clearerr_unlocked_812", "clearerr_unlocked"); -__static_renaming("__feof_unlocked_816", "feof_unlocked"); -__static_renaming("__feof_unlocked_818", "feof_unlocked"); -__static_renaming("__ferror_unlocked_822", "ferror_unlocked"); -__static_renaming("__ferror_unlocked_824", "ferror_unlocked"); -__static_renaming("__perror_827", "perror"); -__static_renaming("__perror_828", "perror"); -__static_renaming("__sys_nerr_829", "sys_nerr"); -__static_renaming("__sys_errlist_830", "sys_errlist"); -__static_renaming("__fileno_833", "fileno"); -__static_renaming("__fileno_835", "fileno"); -__static_renaming("__fileno_unlocked_839", "fileno_unlocked"); -__static_renaming("__fileno_unlocked_841", "fileno_unlocked"); -__static_renaming("__popen_845", "popen"); -__static_renaming("__popen_847", "popen"); -__static_renaming("__pclose_851", "pclose"); -__static_renaming("__ctermid_854", "ctermid"); -__static_renaming("__flockfile_857", "flockfile"); -__static_renaming("__ftrylockfile_861", "ftrylockfile"); -__static_renaming("__ftrylockfile_863", "ftrylockfile"); -__static_renaming("__funlockfile_867", "funlockfile"); -__static_renaming("____sprintf_chk_899", "__sprintf_chk"); -__static_renaming("____vsprintf_chk_906", "__vsprintf_chk"); -__static_renaming("____snprintf_chk_920", "__snprintf_chk"); -__static_renaming("____vsnprintf_chk_928", "__vsnprintf_chk"); -__static_renaming("____fprintf_chk_943", "__fprintf_chk"); -__static_renaming("____printf_chk_947", "__printf_chk"); -__static_renaming("____vfprintf_chk_954", "__vfprintf_chk"); -__static_renaming("____vprintf_chk_962", "__vprintf_chk"); -__static_renaming("____dprintf_chk_984", "__dprintf_chk"); -__static_renaming("____vdprintf_chk_990", "__vdprintf_chk"); -__static_renaming("____fgets_chk_1004", "__fgets_chk"); -__static_renaming("____fgets_chk_1006", "__fgets_chk"); -__static_renaming("____fgets_chk_1008", "__fgets_chk"); -__static_renaming("____fgets_alias_1014", "__fgets_alias"); -__static_renaming("____fgets_chk_warn_1021", "__fgets_chk_warn"); -__static_renaming("____cnt_1087", "__cnt"); -__static_renaming("____cptr_1088", "__cptr"); -__static_renaming("__n_1094", "n"); -__static_renaming("__main_1095", "main"); -__static_renaming("__main_1096", "main"); -__static_renaming("__main_1097", "main"); - -__static_condition_renaming("__static_condition_default_53", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_76", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_84", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_123", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_169", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_170", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_173", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_182", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_187", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_193", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_198", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_201", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_204", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_210", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_217", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_223", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_229", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_235", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_238", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_241", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_244", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_246", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_248", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_249", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_250", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_253", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_255", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_257", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_258", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_259", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_263", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_264", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_267", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_270", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_271", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_274", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_275", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_278", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_280", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); -__static_condition_renaming("__static_condition_default_282", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_284", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_286", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_288", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_290", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_293", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_296", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_299", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_311", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_313", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_315", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_317", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_331", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_333", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_337", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_341", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_345", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_347", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_355", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_357", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_363", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_365", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_367", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_369", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_373", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_375", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_380", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_382", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_386", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_388", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_393", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_395", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_402", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_408", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_412", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_417", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_419", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_431", "!(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_432", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_433", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_438", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_444", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_455", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_461", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_469", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_471", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_473", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_475", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_486", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_488", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_489", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_491", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_493", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_494", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_497", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_499", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_503", "!(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_510", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_511", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_512", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_514", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_515", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_516", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_521", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_523", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_529", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_536", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_537", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_538", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_539", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_541", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_542", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_543", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_544", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_549", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_550", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_552", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_553", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_559", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_560", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_564", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_568", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_573", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_578", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_583", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_585", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_590", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_597", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_602", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_608", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_613", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_619", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_621", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_623", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_625", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_632", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_633", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_634", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_636", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_637", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_638", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_645", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_646", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_647", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_649", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_650", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_651", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_657", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_658", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_659", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_661", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_662", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_663", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_668", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_670", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_677", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_683", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_684", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_685", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_686", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_692", "!(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_693", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_699", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_700", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_701", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_702", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_708", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_709", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_715", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_717", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_721", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_723", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_727", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_734", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_735", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_736", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_745", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_746", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_747", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_751", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_752", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_753", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_755", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_756", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_757", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_759", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_760", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_761", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_767", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_768", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_769", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_779", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_780", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_781", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_787", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_788", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_789", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_791", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_792", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_793", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_797", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_801", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_803", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_807", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_809", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_813", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_817", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_819", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_823", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_825", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_834", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_836", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_840", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_842", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_846", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_848", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_852", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_858", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_862", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_864", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_868", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_872", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_875", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_878", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_883", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_887", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_891", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_894", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_907", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_914", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_929", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_938", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_944", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_955", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_956", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_957", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_963", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_967", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_972", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_978", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_979", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_980", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_991", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_998", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1005", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1007", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1009", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1015", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1022", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1027", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1028", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1035", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1036", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1042", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1043", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1050", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1051", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1057", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1058", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1065", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1066", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1072", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1073", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1080", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1081", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1089", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_1090", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1091", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1098", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) || !(defined __need___FILE) && (defined __STRICT_ANSI__)"); -__static_condition_renaming("__static_condition_default_1099", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined ENABLE_DESKTOP) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined ENABLE_DESKTOP) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined ENABLE_DESKTOP) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined ENABLE_DESKTOP) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined ENABLE_DESKTOP)"); -__static_condition_renaming("__static_condition_default_1100", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined ENABLE_DESKTOP) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined ENABLE_DESKTOP) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined ENABLE_DESKTOP) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined ENABLE_DESKTOP) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined ENABLE_DESKTOP)"); -__static_condition_renaming("__static_condition_default_1101", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1102", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined ENABLE_DESKTOP)"); -__static_condition_renaming("__static_condition_default_1103", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined ENABLE_DESKTOP)"); -__static_condition_renaming("__static_condition_default_1104", "(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_1105", "(defined __need___FILE) && !(defined ENABLE_DESKTOP)"); -__static_condition_renaming("__static_condition_default_1106", "(defined __need___FILE) && (defined ENABLE_DESKTOP)"); -__static_condition_renaming("__static_condition_default_1107", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); - -if (__static_condition_default_1107) -{ +__static_renaming("____qaddr_t_53", "__qaddr_t"); +__static_renaming("____caddr_t_54", "__caddr_t"); +__static_renaming("____intptr_t_55", "__intptr_t"); +__static_renaming("____socklen_t_56", "__socklen_t"); +__static_renaming("__FILE_58", "FILE"); +__static_renaming("____FILE_59", "__FILE"); +__static_renaming("____mbstate_t_68", "__mbstate_t"); +__static_renaming("___G_fpos_t_75", "_G_fpos_t"); +__static_renaming("___G_fpos64_t_81", "_G_fpos64_t"); +__static_renaming("____gnuc_va_list_82", "__gnuc_va_list"); +__static_renaming("___IO_lock_t_84", "_IO_lock_t"); +__static_renaming("___IO_FILE_163", "_IO_FILE"); +__static_renaming("___IO_FILE_164", "_IO_FILE"); +__static_renaming("___IO_2_1_stdin__167", "_IO_2_1_stdin_"); +__static_renaming("___IO_2_1_stdout__168", "_IO_2_1_stdout_"); +__static_renaming("___IO_2_1_stderr__169", "_IO_2_1_stderr_"); +__static_renaming("____io_read_fn_173", "__io_read_fn"); +__static_renaming("____io_write_fn_177", "__io_write_fn"); +__static_renaming("____io_seek_fn_181", "__io_seek_fn"); +__static_renaming("____io_close_fn_183", "__io_close_fn"); +__static_renaming("____underflow_184", "__underflow"); +__static_renaming("____underflow_185", "__underflow"); +__static_renaming("____uflow_186", "__uflow"); +__static_renaming("____uflow_187", "__uflow"); +__static_renaming("____overflow_188", "__overflow"); +__static_renaming("____overflow_189", "__overflow"); +__static_renaming("___IO_getc_193", "_IO_getc"); +__static_renaming("___IO_getc_194", "_IO_getc"); +__static_renaming("___IO_putc_199", "_IO_putc"); +__static_renaming("___IO_putc_200", "_IO_putc"); +__static_renaming("___IO_feof_204", "_IO_feof"); +__static_renaming("___IO_feof_205", "_IO_feof"); +__static_renaming("___IO_ferror_209", "_IO_ferror"); +__static_renaming("___IO_ferror_210", "_IO_ferror"); +__static_renaming("___IO_peekc_locked_214", "_IO_peekc_locked"); +__static_renaming("___IO_peekc_locked_215", "_IO_peekc_locked"); +__static_renaming("___IO_flockfile_216", "_IO_flockfile"); +__static_renaming("___IO_flockfile_217", "_IO_flockfile"); +__static_renaming("___IO_funlockfile_218", "_IO_funlockfile"); +__static_renaming("___IO_funlockfile_219", "_IO_funlockfile"); +__static_renaming("___IO_ftrylockfile_220", "_IO_ftrylockfile"); +__static_renaming("___IO_ftrylockfile_221", "_IO_ftrylockfile"); +__static_renaming("___IO_vfscanf_222", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_224", "_IO_vfscanf"); +__static_renaming("___IO_vfprintf_231", "_IO_vfprintf"); +__static_renaming("___IO_vfprintf_233", "_IO_vfprintf"); +__static_renaming("___IO_padn_238", "_IO_padn"); +__static_renaming("___IO_padn_239", "_IO_padn"); +__static_renaming("___IO_sgetn_240", "_IO_sgetn"); +__static_renaming("___IO_sgetn_241", "_IO_sgetn"); +__static_renaming("___IO_seekoff_242", "_IO_seekoff"); +__static_renaming("___IO_seekoff_243", "_IO_seekoff"); +__static_renaming("___IO_seekpos_244", "_IO_seekpos"); +__static_renaming("___IO_seekpos_245", "_IO_seekpos"); +__static_renaming("___IO_free_backup_area_246", "_IO_free_backup_area"); +__static_renaming("___IO_free_backup_area_247", "_IO_free_backup_area"); +__static_renaming("__va_list_248", "va_list"); +__static_renaming("__off_t_250", "off_t"); +__static_renaming("__off_t_251", "off_t"); +__static_renaming("__ssize_t_252", "ssize_t"); +__static_renaming("__fpos_t_253", "fpos_t"); +__static_renaming("__fpos_t_255", "fpos_t"); +__static_renaming("__stdin_257", "stdin"); +__static_renaming("__stdin_258", "stdin"); +__static_renaming("__stdout_259", "stdout"); +__static_renaming("__stdout_260", "stdout"); +__static_renaming("__stderr_261", "stderr"); +__static_renaming("__stderr_262", "stderr"); +__static_renaming("__remove_264", "remove"); +__static_renaming("__rename_267", "rename"); +__static_renaming("__renameat_272", "renameat"); +__static_renaming("__tmpfile_273", "tmpfile"); +__static_renaming("__tmpfile_275", "tmpfile"); +__static_renaming("__tmpfile_277", "tmpfile"); +__static_renaming("__tmpfile_279", "tmpfile"); +__static_renaming("__tmpnam_282", "tmpnam"); +__static_renaming("__tmpnam_283", "tmpnam"); +__static_renaming("__tmpnam_r_285", "tmpnam_r"); +__static_renaming("__tmpnam_r_286", "tmpnam_r"); +__static_renaming("__tempnam_289", "tempnam"); +__static_renaming("__tempnam_290", "tempnam"); +__static_renaming("__fclose_293", "fclose"); +__static_renaming("__fclose_295", "fclose"); +__static_renaming("__fflush_299", "fflush"); +__static_renaming("__fflush_unlocked_303", "fflush_unlocked"); +__static_renaming("__fopen_307", "fopen"); +__static_renaming("__fopen_309", "fopen"); +__static_renaming("__fopen_317", "fopen"); +__static_renaming("__fopen_319", "fopen"); +__static_renaming("__freopen_325", "freopen"); +__static_renaming("__freopen_327", "freopen"); +__static_renaming("__freopen_329", "freopen"); +__static_renaming("__freopen_331", "freopen"); +__static_renaming("__fdopen_335", "fdopen"); +__static_renaming("__fdopen_337", "fdopen"); +__static_renaming("__fmemopen_342", "fmemopen"); +__static_renaming("__fmemopen_344", "fmemopen"); +__static_renaming("__open_memstream_348", "open_memstream"); +__static_renaming("__open_memstream_350", "open_memstream"); +__static_renaming("__setbuf_355", "setbuf"); +__static_renaming("__setbuf_357", "setbuf"); +__static_renaming("__setvbuf_364", "setvbuf"); +__static_renaming("__setbuffer_369", "setbuffer"); +__static_renaming("__setlinebuf_373", "setlinebuf"); +__static_renaming("__fprintf_378", "fprintf"); +__static_renaming("__fprintf_380", "fprintf"); +__static_renaming("__printf_383", "printf"); +__static_renaming("__sprintf_386", "sprintf"); +__static_renaming("__vfprintf_392", "vfprintf"); +__static_renaming("__vprintf_399", "vprintf"); +__static_renaming("__vsprintf_405", "vsprintf"); +__static_renaming("__snprintf_409", "snprintf"); +__static_renaming("__vsnprintf_415", "vsnprintf"); +__static_renaming("__vdprintf_420", "vdprintf"); +__static_renaming("__dprintf_424", "dprintf"); +__static_renaming("__fscanf_428", "fscanf"); +__static_renaming("__fscanf_430", "fscanf"); +__static_renaming("__fscanf_432", "fscanf"); +__static_renaming("__fscanf_434", "fscanf"); +__static_renaming("__scanf_437", "scanf"); +__static_renaming("__scanf_438", "scanf"); +__static_renaming("__sscanf_441", "sscanf"); +__static_renaming("__vfscanf_468", "vfscanf"); +__static_renaming("__vfscanf_472", "vfscanf"); +__static_renaming("__vscanf_479", "vscanf"); +__static_renaming("__vscanf_481", "vscanf"); +__static_renaming("__vsscanf_487", "vsscanf"); +__static_renaming("__fgetc_520", "fgetc"); +__static_renaming("__getc_523", "getc"); +__static_renaming("__getchar_524", "getchar"); +__static_renaming("__getc_unlocked_527", "getc_unlocked"); +__static_renaming("__getchar_unlocked_529", "getchar_unlocked"); +__static_renaming("__fgetc_unlocked_532", "fgetc_unlocked"); +__static_renaming("__fputc_537", "fputc"); +__static_renaming("__fputc_539", "fputc"); +__static_renaming("__putc_544", "putc"); +__static_renaming("__putchar_546", "putchar"); +__static_renaming("__fputc_unlocked_550", "fputc_unlocked"); +__static_renaming("__putc_unlocked_555", "putc_unlocked"); +__static_renaming("__putchar_unlocked_558", "putchar_unlocked"); +__static_renaming("__getw_561", "getw"); +__static_renaming("__putw_566", "putw"); +__static_renaming("__fgets_572", "fgets"); +__static_renaming("__fgets_574", "fgets"); +__static_renaming("__fgets_576", "fgets"); +__static_renaming("__fgets_578", "fgets"); +__static_renaming("____getdelim_585", "__getdelim"); +__static_renaming("____getdelim_587", "__getdelim"); +__static_renaming("__getdelim_594", "getdelim"); +__static_renaming("__getdelim_596", "getdelim"); +__static_renaming("__getline_602", "getline"); +__static_renaming("__getline_604", "getline"); +__static_renaming("__fputs_609", "fputs"); +__static_renaming("__fputs_611", "fputs"); +__static_renaming("__puts_614", "puts"); +__static_renaming("__ungetc_618", "ungetc"); +__static_renaming("__fseek_654", "fseek"); +__static_renaming("__fseek_656", "fseek"); +__static_renaming("__ftell_660", "ftell"); +__static_renaming("__ftell_662", "ftell"); +__static_renaming("__rewind_666", "rewind"); +__static_renaming("__fseeko_671", "fseeko"); +__static_renaming("__fseeko_679", "fseeko"); +__static_renaming("__ftello_683", "ftello"); +__static_renaming("__ftello_685", "ftello"); +__static_renaming("__ftello_687", "ftello"); +__static_renaming("__fgetpos_693", "fgetpos"); +__static_renaming("__fgetpos_705", "fgetpos"); +__static_renaming("__fsetpos_713", "fsetpos"); +__static_renaming("__fsetpos_717", "fsetpos"); +__static_renaming("__clearerr_723", "clearerr"); +__static_renaming("__feof_726", "feof"); +__static_renaming("__feof_728", "feof"); +__static_renaming("__ferror_732", "ferror"); +__static_renaming("__ferror_734", "ferror"); +__static_renaming("__clearerr_unlocked_738", "clearerr_unlocked"); +__static_renaming("__feof_unlocked_742", "feof_unlocked"); +__static_renaming("__feof_unlocked_744", "feof_unlocked"); +__static_renaming("__ferror_unlocked_748", "ferror_unlocked"); +__static_renaming("__ferror_unlocked_750", "ferror_unlocked"); +__static_renaming("__perror_753", "perror"); +__static_renaming("__perror_754", "perror"); +__static_renaming("__sys_nerr_755", "sys_nerr"); +__static_renaming("__sys_errlist_756", "sys_errlist"); +__static_renaming("__fileno_759", "fileno"); +__static_renaming("__fileno_761", "fileno"); +__static_renaming("__fileno_unlocked_765", "fileno_unlocked"); +__static_renaming("__fileno_unlocked_767", "fileno_unlocked"); +__static_renaming("__popen_771", "popen"); +__static_renaming("__popen_773", "popen"); +__static_renaming("__pclose_777", "pclose"); +__static_renaming("__ctermid_780", "ctermid"); +__static_renaming("__flockfile_783", "flockfile"); +__static_renaming("__ftrylockfile_787", "ftrylockfile"); +__static_renaming("__ftrylockfile_789", "ftrylockfile"); +__static_renaming("__funlockfile_793", "funlockfile"); +__static_renaming("____sprintf_chk_825", "__sprintf_chk"); +__static_renaming("____vsprintf_chk_832", "__vsprintf_chk"); +__static_renaming("____snprintf_chk_846", "__snprintf_chk"); +__static_renaming("____vsnprintf_chk_854", "__vsnprintf_chk"); +__static_renaming("____fprintf_chk_869", "__fprintf_chk"); +__static_renaming("____printf_chk_873", "__printf_chk"); +__static_renaming("____vfprintf_chk_880", "__vfprintf_chk"); +__static_renaming("____vprintf_chk_888", "__vprintf_chk"); +__static_renaming("____dprintf_chk_910", "__dprintf_chk"); +__static_renaming("____vdprintf_chk_916", "__vdprintf_chk"); +__static_renaming("____fgets_chk_930", "__fgets_chk"); +__static_renaming("____fgets_chk_932", "__fgets_chk"); +__static_renaming("____fgets_chk_934", "__fgets_chk"); +__static_renaming("____fgets_alias_940", "__fgets_alias"); +__static_renaming("____fgets_chk_warn_947", "__fgets_chk_warn"); +__static_renaming("____cnt_1013", "__cnt"); +__static_renaming("____cptr_1014", "__cptr"); +__static_renaming("__n_1020", "n"); +__static_renaming("__main_1021", "main"); +__static_renaming("__main_1022", "main"); + +__static_condition_renaming("__static_condition_default_74", "(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_118", "(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_161", "(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_162", "(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_165", "(defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_223", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_225", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_226", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_227", "(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_230", "(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_232", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_234", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_235", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_236", "(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_249", "!(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); +__static_condition_renaming("__static_condition_default_254", "!(defined _FILE_OFFSET_BITS) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_256", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_274", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_276", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_278", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_280", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_294", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_296", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_300", "(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_304", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_308", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_310", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_318", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_320", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_326", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_328", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_330", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_332", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_336", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_338", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_343", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_345", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_349", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_351", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_356", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_358", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_370", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_374", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_379", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_381", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_393", "!(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_394", "(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_395", "(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_400", "!(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_421", "!(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_429", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_431", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_433", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_435", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_446", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_448", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_449", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_451", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_453", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_454", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_457", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_459", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_469", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_470", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_471", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_473", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_474", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_475", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_480", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_482", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_494", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_495", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_496", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_497", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_499", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_500", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_501", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_502", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_507", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_508", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_510", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_511", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_517", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_528", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_533", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_538", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_540", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_551", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_556", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_562", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_567", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_573", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_575", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_577", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_579", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_586", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_588", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_595", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_597", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_603", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_605", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_610", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_612", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_624", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_625", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_626", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_627", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_633", "!(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_639", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_640", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_641", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_642", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_648", "!(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_649", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_655", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_657", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_661", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_663", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_672", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_680", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_684", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_686", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_688", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_694", "!(defined _FILE_OFFSET_BITS) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_695", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_696", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_706", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_707", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_708", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_714", "!(defined _FILE_OFFSET_BITS) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_715", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_716", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_718", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_719", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_720", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_727", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_729", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_733", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_735", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_739", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_743", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_745", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_749", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_751", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_760", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_762", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_766", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_768", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_772", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_774", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_778", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_784", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_788", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_790", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_794", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_798", "!(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_801", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_804", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_809", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_813", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_817", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_820", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_833", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_840", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_855", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_864", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_870", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_881", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_882", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_883", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_889", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_893", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_898", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_904", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_905", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_906", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_917", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_924", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_931", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_933", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_935", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_941", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_948", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_953", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_954", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_961", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_962", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_968", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_969", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_976", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_977", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_983", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_984", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_991", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_992", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_998", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_999", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1006", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1007", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1015", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_1016", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1017", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1023", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) || (defined __STRICT_ANSI__)"); +__static_condition_renaming("__static_condition_default_1024", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1025", "(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); + +if (__static_condition_default_1025) { __static_parse_error("Unable to parse"); } }; @@ -892,142 +743,142 @@ typedef long int ____ssize_t_49;// L110:L172 typedef long int ____syscall_slong_t_50;// L93:L175 typedef unsigned long int ____syscall_ulong_t_51;// L94:L177 typedef ____off64_t_24 ____loff_t_52;// L181 -typedef ____quad_t_14 * (____qaddr_t_54);// L182 -typedef char * (____caddr_t_55);// L183 -typedef long int ____intptr_t_56;// L110:L186 -typedef unsigned int ____socklen_t_57;// L92:L189 -typedef struct __forward_tag_reference_58 __FILE_59;// L48 -typedef struct __forward_tag_reference_58 ____FILE_60;// L64 -union ____anonymous_tag_61_62 { -unsigned int ____wch_63;// L265 -char ____wchb_64[4];// L92 +typedef ____quad_t_14 * (____qaddr_t_53);// L182 +typedef char * (____caddr_t_54);// L183 +typedef long int ____intptr_t_55;// L110:L186 +typedef unsigned int ____socklen_t_56;// L92:L189 +typedef struct __forward_tag_reference_57 __FILE_58;// L48 +typedef struct __forward_tag_reference_57 ____FILE_59;// L64 +union ____anonymous_tag_60_61 { +unsigned int ____wch_62;// L265 +char ____wchb_63[4];// L92 }; -struct ____anonymous_tag_65_66 { -int ____count_67;// L84 -union ____anonymous_tag_61_62 ____value_68;// L85 +struct ____anonymous_tag_64_65 { +int ____count_66;// L84 +union ____anonymous_tag_60_61 ____value_67;// L85 }; -typedef struct ____anonymous_tag_65_66 ____mbstate_t_69;// L82:L94 -struct ____anonymous_tag_70_71 { -____off_t_23 ____pos_72;// L0 -____mbstate_t_69 ____state_74;// L0 +typedef struct ____anonymous_tag_64_65 ____mbstate_t_68;// L82:L94 +struct ____anonymous_tag_69_70 { +____off_t_23 ____pos_71;// L0 +____mbstate_t_68 ____state_72;// L0 }; -typedef struct ____anonymous_tag_70_71 ___G_fpos_t_77;// L21:L25 -struct ____anonymous_tag_78_79 { -____off64_t_24 ____pos_80;// L0 -____mbstate_t_69 ____state_82;// L0 +typedef struct ____anonymous_tag_69_70 ___G_fpos_t_75;// L21:L25 +struct ____anonymous_tag_76_77 { +____off64_t_24 ____pos_78;// L0 +____mbstate_t_68 ____state_79;// L0 }; -typedef struct ____anonymous_tag_78_79 ___G_fpos64_t_85;// L26:L30 -typedef __builtin_va_list ____gnuc_va_list_86;// L40 -typedef void ___IO_lock_t_88;// L150 -struct ___IO_marker_90 { -struct __forward_tag_reference_89 * (___next_91);// L0 -struct __forward_tag_reference_58 * (___sbuf_92);// L0 -int ___pos_93;// L162 +typedef struct ____anonymous_tag_76_77 ___G_fpos64_t_81;// L26:L30 +typedef __builtin_va_list ____gnuc_va_list_82;// L40 +typedef void ___IO_lock_t_84;// L150 +struct ___IO_marker_86 { +struct __forward_tag_reference_85 * (___next_87);// L0 +struct __forward_tag_reference_57 * (___sbuf_88);// L0 +int ___pos_89;// L162 }; -enum ____codecvt_result_98 { -____codecvt_ok_94, -____codecvt_partial_95, -____codecvt_error_96, -____codecvt_noconv_97, +enum ____codecvt_result_94 { +____codecvt_ok_90, +____codecvt_partial_91, +____codecvt_error_92, +____codecvt_noconv_93, }; -struct ___IO_FILE_99 { -int ___flags_100;// L242 -char * (___IO_read_ptr_101);// L247 -char * (___IO_read_end_102);// L248 -char * (___IO_read_base_103);// L249 -char * (___IO_write_base_104);// L250 -char * (___IO_write_ptr_105);// L251 -char * (___IO_write_end_106);// L252 -char * (___IO_buf_base_107);// L253 -char * (___IO_buf_end_108);// L254 -char * (___IO_save_base_109);// L256 -char * (___IO_backup_base_110);// L257 -char * (___IO_save_end_111);// L258 -struct ___IO_marker_90 * (___markers_112);// L260 -struct __forward_tag_reference_58 * (___chain_113);// L0 -int ___fileno_114;// L264 -int ___flags2_115;// L268 -____off_t_23 ___old_offset_116;// L0 -unsigned short ___cur_column_118;// L274 -signed char ___vtable_offset_119;// L275 -char ___shortbuf_120[1];// L276 -___IO_lock_t_88 * (___lock_121);// L0 +struct ___IO_FILE_95 { +int ___flags_96;// L242 +char * (___IO_read_ptr_97);// L247 +char * (___IO_read_end_98);// L248 +char * (___IO_read_base_99);// L249 +char * (___IO_write_base_100);// L250 +char * (___IO_write_ptr_101);// L251 +char * (___IO_write_end_102);// L252 +char * (___IO_buf_base_103);// L253 +char * (___IO_buf_end_104);// L254 +char * (___IO_save_base_105);// L256 +char * (___IO_backup_base_106);// L257 +char * (___IO_save_end_107);// L258 +struct ___IO_marker_86 * (___markers_108);// L260 +struct __forward_tag_reference_57 * (___chain_109);// L0 +int ___fileno_110;// L264 +int ___flags2_111;// L268 +____off_t_23 ___old_offset_112;// L0 +unsigned short ___cur_column_113;// L274 +signed char ___vtable_offset_114;// L275 +char ___shortbuf_115[1];// L276 +___IO_lock_t_84 * (___lock_116);// L0 }; -struct ___IO_FILE_124 { -int ___flags_125;// L242 -char * (___IO_read_ptr_126);// L247 -char * (___IO_read_end_127);// L248 -char * (___IO_read_base_128);// L249 -char * (___IO_write_base_129);// L250 -char * (___IO_write_ptr_130);// L251 -char * (___IO_write_end_131);// L252 -char * (___IO_buf_base_132);// L253 -char * (___IO_buf_end_133);// L254 -char * (___IO_save_base_134);// L256 -char * (___IO_backup_base_135);// L257 -char * (___IO_save_end_136);// L258 -struct ___IO_marker_90 * (___markers_137);// L260 -struct __forward_tag_reference_58 * (___chain_138);// L0 -int ___fileno_139;// L264 -int ___flags2_140;// L268 -____off_t_23 ___old_offset_141;// L0 -unsigned short ___cur_column_143;// L274 -signed char ___vtable_offset_144;// L275 -char ___shortbuf_145[1];// L276 -___IO_lock_t_88 * (___lock_146);// L0 -____off64_t_24 ___offset_148;// L0 -void * (____pad1_150);// L297 -void * (____pad2_151);// L298 -void * (____pad3_152);// L299 -void * (____pad4_153);// L300 -__size_t_1 ____pad5_154;// L0 -int ___mode_155;// L303 -char ___unused2_156[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +struct ___IO_FILE_119 { +int ___flags_120;// L242 +char * (___IO_read_ptr_121);// L247 +char * (___IO_read_end_122);// L248 +char * (___IO_read_base_123);// L249 +char * (___IO_write_base_124);// L250 +char * (___IO_write_ptr_125);// L251 +char * (___IO_write_end_126);// L252 +char * (___IO_buf_base_127);// L253 +char * (___IO_buf_end_128);// L254 +char * (___IO_save_base_129);// L256 +char * (___IO_backup_base_130);// L257 +char * (___IO_save_end_131);// L258 +struct ___IO_marker_86 * (___markers_132);// L260 +struct __forward_tag_reference_57 * (___chain_133);// L0 +int ___fileno_134;// L264 +int ___flags2_135;// L268 +____off_t_23 ___old_offset_136;// L0 +unsigned short ___cur_column_137;// L274 +signed char ___vtable_offset_138;// L275 +char ___shortbuf_139[1];// L276 +___IO_lock_t_84 * (___lock_140);// L0 +____off64_t_24 ___offset_142;// L0 +void * (____pad1_143);// L297 +void * (____pad2_144);// L298 +void * (____pad3_145);// L299 +void * (____pad4_146);// L300 +__size_t_1 ____pad5_147;// L0 +int ___mode_148;// L303 +char ___unused2_149[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -struct ___IO_FILE_complete_157 { -struct ___IO_FILE_99 ___file_158;// L286 -____off64_t_24 ___offset_160;// L0 -void * (____pad1_162);// L297 -void * (____pad2_163);// L298 -void * (____pad3_164);// L299 -void * (____pad4_165);// L300 -__size_t_1 ____pad5_166;// L0 -int ___mode_167;// L303 -char ___unused2_168[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +struct ___IO_FILE_complete_150 { +struct ___IO_FILE_95 ___file_151;// L286 +____off64_t_24 ___offset_153;// L0 +void * (____pad1_154);// L297 +void * (____pad2_155);// L298 +void * (____pad3_156);// L299 +void * (____pad4_157);// L300 +__size_t_1 ____pad5_158;// L0 +int ___mode_159;// L303 +char ___unused2_160[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -typedef struct ___IO_FILE_99 ___IO_FILE_171;// L310 -typedef struct ___IO_FILE_124 ___IO_FILE_172;// L310 -typedef ____ssize_t_49 (____io_read_fn_181) (void * (____cookie_178), char * (____buf_179), __size_t_1 ____nbytes_180);// L333 -typedef ____ssize_t_49 (____io_write_fn_186) (void * (____cookie_183), const char * (____buf_184), __size_t_1 ____n_185);// L341:L342 -typedef int (____io_seek_fn_192) (void * (____cookie_188), ____off64_t_24 * (____pos_189), int ____w_191);// L350 -typedef int (____io_close_fn_195) (void * (____cookie_194));// L353 -typedef ____gnuc_va_list_86 __va_list_279;// L79 -typedef ____off_t_23 __off_t_281;// L90 -typedef ____off64_t_24 __off_t_283;// L92 -typedef ____ssize_t_49 __ssize_t_285;// L102 -typedef ___G_fpos_t_77 __fpos_t_287;// L110 -typedef ___G_fpos64_t_85 __fpos_t_289;// L112 -extern const char * const __sys_errlist_830[];// L27 - -struct __forward_tag_reference_89 { // generated union of struct variations +typedef struct ___IO_FILE_95 ___IO_FILE_163;// L310 +typedef struct ___IO_FILE_119 ___IO_FILE_164;// L310 +typedef ____ssize_t_49 (____io_read_fn_173) (void * (____cookie_170), char * (____buf_171), __size_t_1 ____nbytes_172);// L333 +typedef ____ssize_t_49 (____io_write_fn_177) (void * (____cookie_174), const char * (____buf_175), __size_t_1 ____n_176);// L341:L342 +typedef int (____io_seek_fn_181) (void * (____cookie_178), ____off64_t_24 * (____pos_179), int ____w_180);// L350 +typedef int (____io_close_fn_183) (void * (____cookie_182));// L353 +typedef ____gnuc_va_list_82 __va_list_248;// L79 +typedef ____off_t_23 __off_t_250;// L90 +typedef ____off64_t_24 __off_t_251;// L92 +typedef ____ssize_t_49 __ssize_t_252;// L102 +typedef ___G_fpos_t_75 __fpos_t_253;// L110 +typedef ___G_fpos64_t_81 __fpos_t_255;// L112 +extern const char * const __sys_errlist_756[];// L27 + +struct __forward_tag_reference_57 { // generated union of struct variations union { -struct ___IO_marker_90 ___IO_marker_90; +struct ___IO_FILE_95 ___IO_FILE_95; +struct ___IO_FILE_119 ___IO_FILE_119; }; }; -struct __forward_tag_reference_58 { // generated union of struct variations +struct __forward_tag_reference_85 { // generated union of struct variations union { -struct ___IO_FILE_99 ___IO_FILE_99; -struct ___IO_FILE_124 ___IO_FILE_124; +struct ___IO_marker_86 ___IO_marker_86; }; }; -struct __forward_tag_reference_87 { // generated union of struct variations +struct __forward_tag_reference_83 { // generated union of struct variations union { }; }; -struct __forward_tag_reference_174 { // generated union of struct variations +struct __forward_tag_reference_166 { // generated union of struct variations union { }; }; @@ -1086,225 +937,225 @@ union { // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_58 ;// L0 +struct __forward_tag_reference_57 ;// L0 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_87 ;// L0 -struct __forward_tag_reference_87 ;// L0 -struct __forward_tag_reference_58 ;// L0 +struct __forward_tag_reference_83 ;// L0 +struct __forward_tag_reference_83 ;// L0 +struct __forward_tag_reference_57 ;// L0 // typedef moved to top of scope -struct ___IO_marker_90 ;// L156 -enum ____codecvt_result_98 ;// L176 -struct ___IO_FILE_99 ;// L241 +struct ___IO_marker_86 ;// L156 +enum ____codecvt_result_94 ;// L176 +struct ___IO_FILE_95 ;// L241 -struct ___IO_FILE_124 ;// L241 -struct ___IO_FILE_complete_157 ;// L241 +struct ___IO_FILE_119 ;// L241 +struct ___IO_FILE_complete_150 ;// L241 // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_174 ;// L0 -extern struct __forward_tag_reference_174 ___IO_2_1_stdin__175;// L315 -extern struct __forward_tag_reference_174 ___IO_2_1_stdout__176;// L316 -extern struct __forward_tag_reference_174 ___IO_2_1_stderr__177;// L317 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern int (____underflow_196) (___IO_FILE_171 *);// L385 -extern int (____underflow_197) (___IO_FILE_172 *);// L385 -extern int (____uflow_199) (___IO_FILE_171 *);// L386 -extern int (____uflow_200) (___IO_FILE_172 *);// L386 -extern int (____overflow_202) (___IO_FILE_171 *, int );// L387 -extern int (____overflow_203) (___IO_FILE_172 *, int );// L387 -extern int (___IO_getc_208) (___IO_FILE_171 * (____fp_205));// L429 -extern int (___IO_getc_209) (___IO_FILE_172 * (____fp_206));// L429 -extern int (___IO_putc_215) (int ____c_211, ___IO_FILE_171 * (____fp_212));// L430 -extern int (___IO_putc_216) (int ____c_211, ___IO_FILE_172 * (____fp_213));// L430 -extern int (___IO_feof_221) (___IO_FILE_171 * (____fp_218));// L431 -extern int (___IO_feof_222) (___IO_FILE_172 * (____fp_219));// L431 -extern int (___IO_ferror_227) (___IO_FILE_171 * (____fp_224));// L432 -extern int (___IO_ferror_228) (___IO_FILE_172 * (____fp_225));// L432 -extern int (___IO_peekc_locked_233) (___IO_FILE_171 * (____fp_230));// L434 -extern int (___IO_peekc_locked_234) (___IO_FILE_172 * (____fp_231));// L434 -extern void (___IO_flockfile_236) (___IO_FILE_171 *);// L440 -extern void (___IO_flockfile_237) (___IO_FILE_172 *);// L440 -extern void (___IO_funlockfile_239) (___IO_FILE_171 *);// L441 -extern void (___IO_funlockfile_240) (___IO_FILE_172 *);// L441 -extern int (___IO_ftrylockfile_242) (___IO_FILE_171 *);// L442 -extern int (___IO_ftrylockfile_243) (___IO_FILE_172 *);// L442 -extern int (___IO_vfscanf_245) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_247) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_251) (___IO_FILE_171 * __restrict , const char * __restrict , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_252) (___IO_FILE_172 * __restrict , const char * __restrict , int * __restrict );// L459:L460 -extern int (___IO_vfprintf_254) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 -extern int (___IO_vfprintf_256) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 -extern int (___IO_vfprintf_260) ();// L461:L462 -extern ____ssize_t_49 (___IO_padn_261) (___IO_FILE_171 *, int , ____ssize_t_49 );// L463 -extern ____ssize_t_49 (___IO_padn_262) (___IO_FILE_172 *, int , ____ssize_t_49 );// L463 -extern __size_t_1 (___IO_sgetn_265) (___IO_FILE_171 *, void *, __size_t_1 );// L464 -extern __size_t_1 (___IO_sgetn_266) (___IO_FILE_172 *, void *, __size_t_1 );// L464 -extern ____off64_t_24 (___IO_seekoff_268) (___IO_FILE_171 *, ____off64_t_24 , int , int );// L466 -extern ____off64_t_24 (___IO_seekoff_269) (___IO_FILE_172 *, ____off64_t_24 , int , int );// L466 -extern ____off64_t_24 (___IO_seekpos_272) (___IO_FILE_171 *, ____off64_t_24 , int );// L467 -extern ____off64_t_24 (___IO_seekpos_273) (___IO_FILE_172 *, ____off64_t_24 , int );// L467 -extern void (___IO_free_backup_area_276) (___IO_FILE_171 *);// L469 -extern void (___IO_free_backup_area_277) (___IO_FILE_172 *);// L469 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern struct ___IO_FILE_99 * (__stdin_291);// L168 -extern struct ___IO_FILE_124 * (__stdin_292);// L168 -extern struct ___IO_FILE_99 * (__stdout_294);// L169 -extern struct ___IO_FILE_124 * (__stdout_295);// L169 -extern struct ___IO_FILE_99 * (__stderr_297);// L170 -extern struct ___IO_FILE_124 * (__stderr_298);// L170 -extern int (__remove_301) (const char * (____filename_300));// L178 -extern int (__rename_304) (const char * (____old_302), const char * (____new_303));// L180 -extern int (__renameat_309) (int ____oldfd_305, const char * (____old_306), int ____newfd_307, const char * (____new_308));// L185:L186 -extern __FILE_59 * ((__tmpfile_310) (void ));// L195 -extern __FILE_59 * ((__tmpfile_316) (void ));// L198 -extern __FILE_59 * ((__tmpfile_314) (void ));// L195 -extern __FILE_59 * ((__tmpfile_312) (void ));// L198 -extern char * ((__tmpnam_319) (char * (____s_318)));// L209 -extern char * ((__tmpnam_320) (char * (____s_318)));// L209 -extern char * ((__tmpnam_r_322) (char * (____s_321)));// L215 -extern char * ((__tmpnam_r_323) (char * (____s_321)));// L215 -extern char * ((__tempnam_326) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 -extern char * ((__tempnam_327) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 -extern int (__fclose_330) (__FILE_59 * (____stream_328));// L237 -extern int (__fclose_332) (__FILE_59 * (____stream_328));// L237 -extern int (__fflush_336) (__FILE_59 * (____stream_334));// L242 -extern int (__fflush_unlocked_340) (__FILE_59 * (____stream_338));// L252 -extern __FILE_59 * ((__fopen_344) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 -extern __FILE_59 * ((__fopen_346) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 -extern __FILE_59 * ((__fopen_354) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 -extern __FILE_59 * ((__fopen_356) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 -extern __FILE_59 * ((__freopen_362) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 -extern __FILE_59 * ((__freopen_368) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 -extern __FILE_59 * ((__freopen_366) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 -extern __FILE_59 * ((__freopen_364) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 -extern __FILE_59 * ((__fdopen_372) (int ____fd_370, const char * (____modes_371)));// L306 -extern __FILE_59 * ((__fdopen_374) (int ____fd_370, const char * (____modes_371)));// L306 -extern __FILE_59 * ((__fmemopen_379) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 -extern __FILE_59 * ((__fmemopen_381) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 -extern __FILE_59 * ((__open_memstream_385) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 -extern __FILE_59 * ((__open_memstream_387) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 -extern void (__setbuf_392) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 -extern void (__setbuf_394) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 -extern int (__setvbuf_401) (__FILE_59 * __restrict ____stream_396, char * __restrict ____buf_398, int ____modes_399, __size_t_1 ____n_400);// L336:L337 -extern void (__setbuffer_407) (__FILE_59 * __restrict ____stream_403, char * __restrict ____buf_405, __size_t_1 ____size_406);// L343:L344 -extern void (__setlinebuf_411) (__FILE_59 * (____stream_409));// L347 -extern int (__fprintf_416) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 -extern int (__fprintf_418) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 -extern int (__printf_421) (const char * __restrict ____format_420, ... );// L362 -extern int (__sprintf_424) (char * __restrict ____s_422, const char * __restrict ____format_423, ... );// L364:L365 -extern int (__vfprintf_430) (__FILE_59 * __restrict ____s_425, const char * __restrict ____format_427, ____gnuc_va_list_86 ____arg_428);// L371:L372 -extern int (__vprintf_437) (const char * __restrict ____format_434, ____gnuc_va_list_86 ____arg_435);// L377 -extern int (__vsprintf_443) (char * __restrict ____s_439, const char * __restrict ____format_440, ____gnuc_va_list_86 ____arg_441);// L379:L380 -extern int (__snprintf_448) (char * __restrict ____s_445, __size_t_1 ____maxlen_446, const char * __restrict ____format_447, ... );// L386:L388 -extern int (__vsnprintf_454) (char * __restrict ____s_449, __size_t_1 ____maxlen_450, const char * __restrict ____format_451, ____gnuc_va_list_86 ____arg_452);// L390:L392 -extern int (__vdprintf_460) (int ____fd_456, const char * __restrict ____fmt_457, ____gnuc_va_list_86 ____arg_458);// L412:L414 -extern int (__dprintf_464) (int ____fd_462, const char * __restrict ____fmt_463, ... );// L415:L416 -extern int (__fscanf_468) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__fscanf_470) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__fscanf_472) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__fscanf_474) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__scanf_477) (const char * __restrict ____format_476, ... );// L431 -extern int (__scanf_478) (const char * __restrict ____format_476, ... );// L431 -extern int (__sscanf_481) (const char * __restrict ____s_479, const char * __restrict ____format_480, ... );// L433:L434 - - - - - - - -extern int (__vfscanf_509) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 -extern int (__vfscanf_513) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 -extern int (__vscanf_520) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 -extern int (__vscanf_522) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 -extern int (__vsscanf_528) (const char * __restrict ____s_524, const char * __restrict ____format_525, ____gnuc_va_list_86 ____arg_526);// L483:L485 - - - +struct __forward_tag_reference_166 ;// L0 +extern struct __forward_tag_reference_166 ___IO_2_1_stdin__167;// L315 +extern struct __forward_tag_reference_166 ___IO_2_1_stdout__168;// L316 +extern struct __forward_tag_reference_166 ___IO_2_1_stderr__169;// L317 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern int (____underflow_184) (___IO_FILE_163 *);// L385 +extern int (____underflow_185) (___IO_FILE_164 *);// L385 +extern int (____uflow_186) (___IO_FILE_163 *);// L386 +extern int (____uflow_187) (___IO_FILE_164 *);// L386 +extern int (____overflow_188) (___IO_FILE_163 *, int );// L387 +extern int (____overflow_189) (___IO_FILE_164 *, int );// L387 +extern int (___IO_getc_193) (___IO_FILE_163 * (____fp_190));// L429 +extern int (___IO_getc_194) (___IO_FILE_164 * (____fp_191));// L429 +extern int (___IO_putc_199) (int ____c_195, ___IO_FILE_163 * (____fp_196));// L430 +extern int (___IO_putc_200) (int ____c_195, ___IO_FILE_164 * (____fp_197));// L430 +extern int (___IO_feof_204) (___IO_FILE_163 * (____fp_201));// L431 +extern int (___IO_feof_205) (___IO_FILE_164 * (____fp_202));// L431 +extern int (___IO_ferror_209) (___IO_FILE_163 * (____fp_206));// L432 +extern int (___IO_ferror_210) (___IO_FILE_164 * (____fp_207));// L432 +extern int (___IO_peekc_locked_214) (___IO_FILE_163 * (____fp_211));// L434 +extern int (___IO_peekc_locked_215) (___IO_FILE_164 * (____fp_212));// L434 +extern void (___IO_flockfile_216) (___IO_FILE_163 *);// L440 +extern void (___IO_flockfile_217) (___IO_FILE_164 *);// L440 +extern void (___IO_funlockfile_218) (___IO_FILE_163 *);// L441 +extern void (___IO_funlockfile_219) (___IO_FILE_164 *);// L441 +extern int (___IO_ftrylockfile_220) (___IO_FILE_163 *);// L442 +extern int (___IO_ftrylockfile_221) (___IO_FILE_164 *);// L442 +extern int (___IO_vfscanf_222) (___IO_FILE_163 * __restrict , const char * __restrict , ____gnuc_va_list_82 , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_224) (___IO_FILE_164 * __restrict , const char * __restrict , ____gnuc_va_list_82 , int * __restrict );// L459:L460 -extern int (__fgetc_563) (__FILE_59 * (____stream_561));// L531 -extern int (__getc_567) (__FILE_59 * (____stream_565));// L532 -extern int (__getchar_569) (void );// L538 -extern int (__getc_unlocked_572) (__FILE_59 * (____stream_570));// L550 -extern int (__getchar_unlocked_574) (void );// L551 -extern int (__fgetc_unlocked_577) (__FILE_59 * (____stream_575));// L561 -extern int (__fputc_582) (int ____c_579, __FILE_59 * (____stream_580));// L573 -extern int (__fputc_584) (int ____c_579, __FILE_59 * (____stream_580));// L573 -extern int (__putc_589) (int ____c_586, __FILE_59 * (____stream_587));// L574 -extern int (__putchar_592) (int ____c_591);// L580 -extern int (__fputc_unlocked_596) (int ____c_593, __FILE_59 * (____stream_594));// L594 -extern int (__putc_unlocked_601) (int ____c_598, __FILE_59 * (____stream_599));// L602 -extern int (__putchar_unlocked_604) (int ____c_603);// L603 -extern int (__getw_607) (__FILE_59 * (____stream_605));// L610 -extern int (__putw_612) (int ____w_609, __FILE_59 * (____stream_610));// L613 -extern char * ((__fgets_618) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern char * ((__fgets_620) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern char * ((__fgets_622) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern char * ((__fgets_624) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern ____ssize_t_49 (____getdelim_631) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 -extern ____ssize_t_49 (____getdelim_635) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 -extern ____ssize_t_49 (__getdelim_644) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 -extern ____ssize_t_49 (__getdelim_648) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 -extern ____ssize_t_49 (__getline_656) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 -extern ____ssize_t_49 (__getline_660) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 -extern int (__fputs_667) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 -extern int (__fputs_669) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 -extern int (__puts_672) (const char * (____s_671));// L695 -extern int (__ungetc_676) (int ____c_673, __FILE_59 * (____stream_674));// L702 -extern int (__fseek_714) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 -extern int (__fseek_716) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 -extern long int (__ftell_720) (__FILE_59 * (____stream_718));// L754 -extern long int (__ftell_722) (__FILE_59 * (____stream_718));// L754 -extern void (__rewind_726) (__FILE_59 * (____stream_724));// L759 -extern int (__fseeko_733) (__FILE_59 * (____stream_728), ____off_t_23 ____off_730, int ____whence_732);// L773 -extern int (__fseeko_744) (__FILE_59 * (____stream_739), ____off64_t_24 ____off_741, int ____whence_743);// L781:L783 -extern ____off_t_23 (__ftello_758) (__FILE_59 * (____stream_737));// L778 -extern ____off_t_23 (__ftello_750) (__FILE_59 * (____stream_737));// L778 -extern int (__fgetpos_766) (__FILE_59 * __restrict ____stream_762, __fpos_t_287 * __restrict ____pos_764);// L798 -extern ____off64_t_24 (__ftello_754) (__FILE_59 * (____stream_748));// L784 -extern int (__fgetpos_778) (__FILE_59 * __restrict ____stream_774, __fpos_t_289 * __restrict ____pos_776);// L806:L807 -extern int (__fsetpos_786) (__FILE_59 * (____stream_770), const __fpos_t_287 * (____pos_772));// L803 -extern int (__fsetpos_790) (__FILE_59 * (____stream_782), const __fpos_t_289 * (____pos_784));// L808:L809 -extern void (__clearerr_796) (__FILE_59 * (____stream_794));// L826 -extern int (__feof_800) (__FILE_59 * (____stream_798));// L828 -extern int (__feof_802) (__FILE_59 * (____stream_798));// L828 -extern int (__ferror_806) (__FILE_59 * (____stream_804));// L830 -extern int (__ferror_808) (__FILE_59 * (____stream_804));// L830 -extern void (__clearerr_unlocked_812) (__FILE_59 * (____stream_810));// L835 -extern int (__feof_unlocked_816) (__FILE_59 * (____stream_814));// L836 -extern int (__feof_unlocked_818) (__FILE_59 * (____stream_814));// L836 -extern int (__ferror_unlocked_822) (__FILE_59 * (____stream_820));// L837 -extern int (__ferror_unlocked_824) (__FILE_59 * (____stream_820));// L837 -extern void (__perror_827) (const char * (____s_826));// L846 -extern void (__perror_828) (const char * (____s_826));// L846 -extern int __sys_nerr_829;// L26 +extern int (___IO_vfprintf_231) (___IO_FILE_163 * __restrict , const char * __restrict , ____gnuc_va_list_82 );// L461:L462 +extern int (___IO_vfprintf_233) (___IO_FILE_164 * __restrict , const char * __restrict , ____gnuc_va_list_82 );// L461:L462 -extern int (__fileno_835) (__FILE_59 * (____stream_831));// L858 -extern int (__fileno_833) (__FILE_59 * (____stream_831));// L858 -extern int (__fileno_unlocked_841) (__FILE_59 * (____stream_837));// L863 -extern int (__fileno_unlocked_839) (__FILE_59 * (____stream_837));// L863 -extern __FILE_59 * ((__popen_845) (const char * (____command_843), const char * (____modes_844)));// L872 -extern __FILE_59 * ((__popen_847) (const char * (____command_843), const char * (____modes_844)));// L872 -extern int (__pclose_851) (__FILE_59 * (____stream_849));// L878 -extern char * ((__ctermid_854) (char * (____s_853)));// L884 -extern void (__flockfile_857) (__FILE_59 * (____stream_855));// L912 -extern int (__ftrylockfile_861) (__FILE_59 * (____stream_859));// L916 -extern int (__ftrylockfile_863) (__FILE_59 * (____stream_859));// L916 -extern void (__funlockfile_867) (__FILE_59 * (____stream_865));// L919 +extern ____ssize_t_49 (___IO_padn_238) (___IO_FILE_163 *, int , ____ssize_t_49 );// L463 +extern ____ssize_t_49 (___IO_padn_239) (___IO_FILE_164 *, int , ____ssize_t_49 );// L463 +extern __size_t_1 (___IO_sgetn_240) (___IO_FILE_163 *, void *, __size_t_1 );// L464 +extern __size_t_1 (___IO_sgetn_241) (___IO_FILE_164 *, void *, __size_t_1 );// L464 +extern ____off64_t_24 (___IO_seekoff_242) (___IO_FILE_163 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekoff_243) (___IO_FILE_164 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekpos_244) (___IO_FILE_163 *, ____off64_t_24 , int );// L467 +extern ____off64_t_24 (___IO_seekpos_245) (___IO_FILE_164 *, ____off64_t_24 , int );// L467 +extern void (___IO_free_backup_area_246) (___IO_FILE_163 *);// L469 +extern void (___IO_free_backup_area_247) (___IO_FILE_164 *);// L469 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern struct ___IO_FILE_95 * (__stdin_257);// L168 +extern struct ___IO_FILE_119 * (__stdin_258);// L168 +extern struct ___IO_FILE_95 * (__stdout_259);// L169 +extern struct ___IO_FILE_119 * (__stdout_260);// L169 +extern struct ___IO_FILE_95 * (__stderr_261);// L170 +extern struct ___IO_FILE_119 * (__stderr_262);// L170 +extern int (__remove_264) (const char * (____filename_263));// L178 +extern int (__rename_267) (const char * (____old_265), const char * (____new_266));// L180 +extern int (__renameat_272) (int ____oldfd_268, const char * (____old_269), int ____newfd_270, const char * (____new_271));// L185:L186 +extern __FILE_58 * ((__tmpfile_273) (void ));// L195 +extern __FILE_58 * ((__tmpfile_279) (void ));// L198 +extern __FILE_58 * ((__tmpfile_277) (void ));// L198 +extern __FILE_58 * ((__tmpfile_275) (void ));// L195 +extern char * ((__tmpnam_282) (char * (____s_281)));// L209 +extern char * ((__tmpnam_283) (char * (____s_281)));// L209 +extern char * ((__tmpnam_r_285) (char * (____s_284)));// L215 +extern char * ((__tmpnam_r_286) (char * (____s_284)));// L215 +extern char * ((__tempnam_289) (const char * (____dir_287), const char * (____pfx_288)));// L227:L228 +extern char * ((__tempnam_290) (const char * (____dir_287), const char * (____pfx_288)));// L227:L228 +extern int (__fclose_293) (__FILE_58 * (____stream_291));// L237 +extern int (__fclose_295) (__FILE_58 * (____stream_291));// L237 +extern int (__fflush_299) (__FILE_58 * (____stream_297));// L242 +extern int (__fflush_unlocked_303) (__FILE_58 * (____stream_301));// L252 +extern __FILE_58 * ((__fopen_307) (const char * __restrict ____filename_305, const char * __restrict ____modes_306));// L272:L273 +extern __FILE_58 * ((__fopen_309) (const char * __restrict ____filename_305, const char * __restrict ____modes_306));// L272:L273 +extern __FILE_58 * ((__fopen_317) (const char * __restrict ____filename_315, const char * __restrict ____modes_316));// L283:L285 +extern __FILE_58 * ((__fopen_319) (const char * __restrict ____filename_315, const char * __restrict ____modes_316));// L283:L285 +extern __FILE_58 * ((__freopen_325) (const char * __restrict ____filename_311, const char * __restrict ____modes_312, __FILE_58 * __restrict ____stream_313));// L278:L280 +extern __FILE_58 * ((__freopen_331) (const char * __restrict ____filename_321, const char * __restrict ____modes_322, __FILE_58 * __restrict ____stream_323));// L286:L289 +extern __FILE_58 * ((__freopen_329) (const char * __restrict ____filename_321, const char * __restrict ____modes_322, __FILE_58 * __restrict ____stream_323));// L286:L289 +extern __FILE_58 * ((__freopen_327) (const char * __restrict ____filename_311, const char * __restrict ____modes_312, __FILE_58 * __restrict ____stream_313));// L278:L280 +extern __FILE_58 * ((__fdopen_335) (int ____fd_333, const char * (____modes_334)));// L306 +extern __FILE_58 * ((__fdopen_337) (int ____fd_333, const char * (____modes_334)));// L306 +extern __FILE_58 * ((__fmemopen_342) (void * (____s_339), __size_t_1 ____len_340, const char * (____modes_341)));// L319:L320 +extern __FILE_58 * ((__fmemopen_344) (void * (____s_339), __size_t_1 ____len_340, const char * (____modes_341)));// L319:L320 +extern __FILE_58 * ((__open_memstream_348) (char * (* (____bufloc_346)), __size_t_1 * (____sizeloc_347)));// L325 +extern __FILE_58 * ((__open_memstream_350) (char * (* (____bufloc_346)), __size_t_1 * (____sizeloc_347)));// L325 +extern void (__setbuf_355) (__FILE_58 * __restrict ____stream_352, char * __restrict ____buf_354);// L332 +extern void (__setbuf_357) (__FILE_58 * __restrict ____stream_352, char * __restrict ____buf_354);// L332 +extern int (__setvbuf_364) (__FILE_58 * __restrict ____stream_359, char * __restrict ____buf_361, int ____modes_362, __size_t_1 ____n_363);// L336:L337 +extern void (__setbuffer_369) (__FILE_58 * __restrict ____stream_365, char * __restrict ____buf_367, __size_t_1 ____size_368);// L343:L344 +extern void (__setlinebuf_373) (__FILE_58 * (____stream_371));// L347 +extern int (__fprintf_378) (__FILE_58 * __restrict ____stream_375, const char * __restrict ____format_377, ... );// L356:L357 +extern int (__fprintf_380) (__FILE_58 * __restrict ____stream_375, const char * __restrict ____format_377, ... );// L356:L357 +extern int (__printf_383) (const char * __restrict ____format_382, ... );// L362 +extern int (__sprintf_386) (char * __restrict ____s_384, const char * __restrict ____format_385, ... );// L364:L365 +extern int (__vfprintf_392) (__FILE_58 * __restrict ____s_387, const char * __restrict ____format_389, ____gnuc_va_list_82 ____arg_390);// L371:L372 +extern int (__vprintf_399) (const char * __restrict ____format_396, ____gnuc_va_list_82 ____arg_397);// L377 +extern int (__vsprintf_405) (char * __restrict ____s_401, const char * __restrict ____format_402, ____gnuc_va_list_82 ____arg_403);// L379:L380 +extern int (__snprintf_409) (char * __restrict ____s_406, __size_t_1 ____maxlen_407, const char * __restrict ____format_408, ... );// L386:L388 +extern int (__vsnprintf_415) (char * __restrict ____s_410, __size_t_1 ____maxlen_411, const char * __restrict ____format_412, ____gnuc_va_list_82 ____arg_413);// L390:L392 +extern int (__vdprintf_420) (int ____fd_416, const char * __restrict ____fmt_417, ____gnuc_va_list_82 ____arg_418);// L412:L414 +extern int (__dprintf_424) (int ____fd_422, const char * __restrict ____fmt_423, ... );// L415:L416 +extern int (__fscanf_428) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 +extern int (__fscanf_430) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 +extern int (__fscanf_432) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 +extern int (__fscanf_434) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 +extern int (__scanf_437) (const char * __restrict ____format_436, ... );// L431 +extern int (__scanf_438) (const char * __restrict ____format_436, ... );// L431 +extern int (__sscanf_441) (const char * __restrict ____s_439, const char * __restrict ____format_440, ... );// L433:L434 + + + + + + + +extern int (__vfscanf_468) (__FILE_58 * __restrict ____s_463, const char * __restrict ____format_465, ____gnuc_va_list_82 ____arg_466);// L471:L473 +extern int (__vfscanf_472) (__FILE_58 * __restrict ____s_463, const char * __restrict ____format_465, ____gnuc_va_list_82 ____arg_466);// L471:L473 +extern int (__vscanf_479) (const char * __restrict ____format_476, ____gnuc_va_list_82 ____arg_477);// L479:L480 +extern int (__vscanf_481) (const char * __restrict ____format_476, ____gnuc_va_list_82 ____arg_477);// L479:L480 +extern int (__vsscanf_487) (const char * __restrict ____s_483, const char * __restrict ____format_484, ____gnuc_va_list_82 ____arg_485);// L483:L485 + + + + + +extern int (__fgetc_520) (__FILE_58 * (____stream_518));// L531 +extern int (__getc_523) (__FILE_58 * (____stream_521));// L532 +extern int (__getchar_524) (void );// L538 +extern int (__getc_unlocked_527) (__FILE_58 * (____stream_525));// L550 +extern int (__getchar_unlocked_529) (void );// L551 +extern int (__fgetc_unlocked_532) (__FILE_58 * (____stream_530));// L561 +extern int (__fputc_537) (int ____c_534, __FILE_58 * (____stream_535));// L573 +extern int (__fputc_539) (int ____c_534, __FILE_58 * (____stream_535));// L573 +extern int (__putc_544) (int ____c_541, __FILE_58 * (____stream_542));// L574 +extern int (__putchar_546) (int ____c_545);// L580 +extern int (__fputc_unlocked_550) (int ____c_547, __FILE_58 * (____stream_548));// L594 +extern int (__putc_unlocked_555) (int ____c_552, __FILE_58 * (____stream_553));// L602 +extern int (__putchar_unlocked_558) (int ____c_557);// L603 +extern int (__getw_561) (__FILE_58 * (____stream_559));// L610 +extern int (__putw_566) (int ____w_563, __FILE_58 * (____stream_564));// L613 +extern char * ((__fgets_572) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 +extern char * ((__fgets_574) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 +extern char * ((__fgets_576) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 +extern char * ((__fgets_578) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 +extern ____ssize_t_49 (____getdelim_585) (char * (* __restrict ____lineptr_580), __size_t_1 * __restrict ____n_581, int ____delimiter_582, __FILE_58 * __restrict ____stream_583);// L665:L667 +extern ____ssize_t_49 (____getdelim_587) (char * (* __restrict ____lineptr_580), __size_t_1 * __restrict ____n_581, int ____delimiter_582, __FILE_58 * __restrict ____stream_583);// L665:L667 +extern ____ssize_t_49 (__getdelim_594) (char * (* __restrict ____lineptr_589), __size_t_1 * __restrict ____n_590, int ____delimiter_591, __FILE_58 * __restrict ____stream_592);// L668:L670 +extern ____ssize_t_49 (__getdelim_596) (char * (* __restrict ____lineptr_589), __size_t_1 * __restrict ____n_590, int ____delimiter_591, __FILE_58 * __restrict ____stream_592);// L668:L670 +extern ____ssize_t_49 (__getline_602) (char * (* __restrict ____lineptr_598), __size_t_1 * __restrict ____n_599, __FILE_58 * __restrict ____stream_600);// L678:L680 +extern ____ssize_t_49 (__getline_604) (char * (* __restrict ____lineptr_598), __size_t_1 * __restrict ____n_599, __FILE_58 * __restrict ____stream_600);// L678:L680 +extern int (__fputs_609) (const char * __restrict ____s_606, __FILE_58 * __restrict ____stream_607);// L689 +extern int (__fputs_611) (const char * __restrict ____s_606, __FILE_58 * __restrict ____stream_607);// L689 +extern int (__puts_614) (const char * (____s_613));// L695 +extern int (__ungetc_618) (int ____c_615, __FILE_58 * (____stream_616));// L702 +extern int (__fseek_654) (__FILE_58 * (____stream_650), long int ____off_652, int ____whence_653);// L749 +extern int (__fseek_656) (__FILE_58 * (____stream_650), long int ____off_652, int ____whence_653);// L749 +extern long int (__ftell_660) (__FILE_58 * (____stream_658));// L754 +extern long int (__ftell_662) (__FILE_58 * (____stream_658));// L754 +extern void (__rewind_666) (__FILE_58 * (____stream_664));// L759 +extern int (__fseeko_671) (__FILE_58 * (____stream_667), ____off_t_23 ____off_669, int ____whence_670);// L773 +extern int (__fseeko_679) (__FILE_58 * (____stream_675), ____off64_t_24 ____off_677, int ____whence_678);// L781:L783 +extern ____off_t_23 (__ftello_683) (__FILE_58 * (____stream_673));// L778 +extern ____off_t_23 (__ftello_685) (__FILE_58 * (____stream_673));// L778 +extern int (__fgetpos_693) (__FILE_58 * __restrict ____stream_689, __fpos_t_253 * __restrict ____pos_691);// L798 +extern ____off64_t_24 (__ftello_687) (__FILE_58 * (____stream_681));// L784 +extern int (__fgetpos_705) (__FILE_58 * __restrict ____stream_701, __fpos_t_255 * __restrict ____pos_703);// L806:L807 +extern int (__fsetpos_713) (__FILE_58 * (____stream_697), const __fpos_t_253 * (____pos_699));// L803 +extern int (__fsetpos_717) (__FILE_58 * (____stream_709), const __fpos_t_255 * (____pos_711));// L808:L809 +extern void (__clearerr_723) (__FILE_58 * (____stream_721));// L826 +extern int (__feof_726) (__FILE_58 * (____stream_724));// L828 +extern int (__feof_728) (__FILE_58 * (____stream_724));// L828 +extern int (__ferror_732) (__FILE_58 * (____stream_730));// L830 +extern int (__ferror_734) (__FILE_58 * (____stream_730));// L830 +extern void (__clearerr_unlocked_738) (__FILE_58 * (____stream_736));// L835 +extern int (__feof_unlocked_742) (__FILE_58 * (____stream_740));// L836 +extern int (__feof_unlocked_744) (__FILE_58 * (____stream_740));// L836 +extern int (__ferror_unlocked_748) (__FILE_58 * (____stream_746));// L837 +extern int (__ferror_unlocked_750) (__FILE_58 * (____stream_746));// L837 +extern void (__perror_753) (const char * (____s_752));// L846 +extern void (__perror_754) (const char * (____s_752));// L846 +extern int __sys_nerr_755;// L26 + +extern int (__fileno_761) (__FILE_58 * (____stream_757));// L858 +extern int (__fileno_759) (__FILE_58 * (____stream_757));// L858 +extern int (__fileno_unlocked_767) (__FILE_58 * (____stream_763));// L863 +extern int (__fileno_unlocked_765) (__FILE_58 * (____stream_763));// L863 +extern __FILE_58 * ((__popen_771) (const char * (____command_769), const char * (____modes_770)));// L872 +extern __FILE_58 * ((__popen_773) (const char * (____command_769), const char * (____modes_770)));// L872 +extern int (__pclose_777) (__FILE_58 * (____stream_775));// L878 +extern char * ((__ctermid_780) (char * (____s_779)));// L884 +extern void (__flockfile_783) (__FILE_58 * (____stream_781));// L912 +extern int (__ftrylockfile_787) (__FILE_58 * (____stream_785));// L916 +extern int (__ftrylockfile_789) (__FILE_58 * (____stream_785));// L916 +extern void (__funlockfile_793) (__FILE_58 * (____stream_791));// L919 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ @@ -1316,110 +1167,54 @@ extern void (__funlockfile_867) (__FILE_59 * (____stream_865));// L919 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____sprintf_chk_899) (char * __restrict ____s_895, int ____flag_896, __size_t_1 ____slen_897, const char * __restrict ____format_898, ... );// L23:L24 -extern int (____vsprintf_chk_906) (char * __restrict ____s_900, int ____flag_901, __size_t_1 ____slen_902, const char * __restrict ____format_903, ____gnuc_va_list_86 ____ap_904);// L25:L27 +extern int (____sprintf_chk_825) (char * __restrict ____s_821, int ____flag_822, __size_t_1 ____slen_823, const char * __restrict ____format_824, ... );// L23:L24 +extern int (____vsprintf_chk_832) (char * __restrict ____s_826, int ____flag_827, __size_t_1 ____slen_828, const char * __restrict ____format_829, ____gnuc_va_list_82 ____ap_830);// L25:L27 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____snprintf_chk_920) (char * __restrict ____s_915, __size_t_1 ____n_916, int ____flag_917, __size_t_1 ____slen_918, const char * __restrict ____format_919, ... );// L52:L54 -extern int (____vsnprintf_chk_928) (char * __restrict ____s_921, __size_t_1 ____n_922, int ____flag_923, __size_t_1 ____slen_924, const char * __restrict ____format_925, ____gnuc_va_list_86 ____ap_926);// L55:L57 +extern int (____snprintf_chk_846) (char * __restrict ____s_841, __size_t_1 ____n_842, int ____flag_843, __size_t_1 ____slen_844, const char * __restrict ____format_845, ... );// L52:L54 +extern int (____vsnprintf_chk_854) (char * __restrict ____s_847, __size_t_1 ____n_848, int ____flag_849, __size_t_1 ____slen_850, const char * __restrict ____format_851, ____gnuc_va_list_82 ____ap_852);// L55:L57 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____fprintf_chk_943) (__FILE_59 * __restrict ____stream_939, int ____flag_941, const char * __restrict ____format_942, ... );// L85:L86 -extern int (____printf_chk_947) (int ____flag_945, const char * __restrict ____format_946, ... );// L87 -extern int (____vfprintf_chk_954) (__FILE_59 * __restrict ____stream_948, int ____flag_950, const char * __restrict ____format_951, ____gnuc_va_list_86 ____ap_952);// L88:L89 -extern int (____vprintf_chk_962) (int ____flag_958, const char * __restrict ____format_959, ____gnuc_va_list_86 ____ap_960);// L90:L91 +extern int (____fprintf_chk_869) (__FILE_58 * __restrict ____stream_865, int ____flag_867, const char * __restrict ____format_868, ... );// L85:L86 +extern int (____printf_chk_873) (int ____flag_871, const char * __restrict ____format_872, ... );// L87 +extern int (____vfprintf_chk_880) (__FILE_58 * __restrict ____stream_874, int ____flag_876, const char * __restrict ____format_877, ____gnuc_va_list_82 ____ap_878);// L88:L89 +extern int (____vprintf_chk_888) (int ____flag_884, const char * __restrict ____format_885, ____gnuc_va_list_82 ____ap_886);// L90:L91 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____dprintf_chk_984) (int ____fd_981, int ____flag_982, const char * __restrict ____fmt_983, ... );// L131:L132 -extern int (____vdprintf_chk_990) (int ____fd_985, int ____flag_986, const char * __restrict ____fmt_987, ____gnuc_va_list_86 ____arg_988);// L133:L135 +extern int (____dprintf_chk_910) (int ____fd_907, int ____flag_908, const char * __restrict ____fmt_909, ... );// L131:L132 +extern int (____vdprintf_chk_916) (int ____fd_911, int ____flag_912, const char * __restrict ____fmt_913, ____gnuc_va_list_82 ____arg_914);// L133:L135 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern char * ((____fgets_chk_1004) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 -extern char * ((____fgets_chk_1006) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 -extern char * ((____fgets_chk_1008) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 -extern char * ((____fgets_alias_1014) (char * __restrict ____s_1010, int ____n_1011, __FILE_59 * __restrict ____stream_1012));// L243:L245 -extern char * ((____fgets_chk_warn_1021) (char * __restrict ____s_1016, __size_t_1 ____size_1017, int ____n_1018, __FILE_59 * __restrict ____stream_1019));// L246:L250 +extern char * ((____fgets_chk_930) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 +extern char * ((____fgets_chk_932) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 +extern char * ((____fgets_chk_934) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 +extern char * ((____fgets_alias_940) (char * __restrict ____s_936, int ____n_937, __FILE_58 * __restrict ____stream_938));// L243:L245 +extern char * ((____fgets_chk_warn_947) (char * __restrict ____s_942, __size_t_1 ____size_943, int ____n_944, __FILE_58 * __restrict ____stream_945));// L246:L250 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -int (__main_1095) (int __argc_1092, char * (* (__argv_1093))) { - -if (__static_condition_default_1098) { - -{ -{ - - - -int __n_1094= - 1;// L5 - -if ( __n_1094 < 0 )// L7 -{ -if (__static_condition_default_1099) { - -{ -{ - - - - __printf_421 ("can't get groups") ; // L9 -} -} -} -if (__static_condition_default_1100) { - -{ -{ - - - -__static_type_error("invalid type found in return expression"); -} -} -} -} -return 0 ;// L14 -} -} - - -} -} -int (__main_1096) (int __argc_1092, char * (* (__argv_1093))) { +int (__main_1021) (int __argc_1018, char * (* (__argv_1019))) { -if (__static_condition_default_1101) { +if (__static_condition_default_1023) { { { -int __n_1094= - 1;// L5 +int __n_1020= - 1;// L5 -if ( __n_1094 < 0 )// L7 +if ( __n_1020 < 0 )// L7 { -if (__static_condition_default_1102) { { { - __printf_421 ("can't get groups") ; // L9 -} -} -} -if (__static_condition_default_1103) { - -{ -{ - - - -__static_type_error("invalid type found in return expression"); -} + __printf_383 ("can't get groups") ; // L9 } } } @@ -1430,39 +1225,26 @@ return 0 ;// L14 } } -int (__main_1097) (int __argc_1092, char * (* (__argv_1093))) { +int (__main_1022) (int __argc_1018, char * (* (__argv_1019))) { -if (__static_condition_default_1104) { +if (__static_condition_default_1024) { { { -int __n_1094= - 1;// L5 +int __n_1020= - 1;// L5 -if ( __n_1094 < 0 )// L7 +if ( __n_1020 < 0 )// L7 { -if (__static_condition_default_1105) { { { -__static_type_error("type error") ; // L9 -} -} -} -if (__static_condition_default_1106) { - -{ -{ - - - -__static_type_error("invalid type found in return expression"); -} + __printf_383 ("can't get groups") ; // L9 } } } diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.clangres index e69de29b..f8544390 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.clangres @@ -0,0 +1,5 @@ +In file included from :342: +:1:8: error: 'defined' cannot be used as a macro name +#undef defined + ^ +1 error generated. diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.c index fe02b302..b4c0dca9 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.c @@ -7,351 +7,351 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_559; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_1420; +extern const bool __static_condition_default_1475; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_2058; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_1385; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_789; +extern const bool __static_condition_default_1498; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_875; +extern const bool __static_condition_default_2056; +extern const bool __static_condition_default_1787; extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_1515; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_393; +extern const bool __static_condition_default_1552; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_1531; +extern const bool __static_condition_default_1749; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_769; +extern const bool __static_condition_default_702; extern const bool __static_condition_default_813; -extern const bool __static_condition_default_367; -extern const bool __static_condition_default_779; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_2057; -extern const bool __static_condition_default_632; +extern const bool __static_condition_default_1377; +extern const bool __static_condition_default_1459; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_1405; +extern const bool __static_condition_default_568; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_1165; +extern const bool __static_condition_default_1564; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_187; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_1774; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_721; extern const bool __static_condition_default_583; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_315; -extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_621; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_1816; +extern const bool __static_condition_default_692; extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_246; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_1785; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_1810; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_388; +extern const bool __static_condition_default_1789; +extern const bool __static_condition_default_512; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_1458; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_2041; +extern const bool __static_condition_default_883; extern const bool __static_condition_default_432; -extern const bool __static_condition_default_2056; -extern const bool __static_condition_default_380; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_709; -extern const bool __static_condition_default_431; -extern const bool __static_condition_default_957; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_564; extern const bool __static_condition_default_1572; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_789; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_846; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_2049; -extern const bool __static_condition_default_1485; +extern const bool __static_condition_default_2047; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_761; +extern const bool __static_condition_default_1436; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_1791; +extern const bool __static_condition_default_311; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_1373; +extern const bool __static_condition_default_2046; +extern const bool __static_condition_default_1007; extern const bool __static_condition_default_759; -extern const bool __static_condition_default_1388; -extern const bool __static_condition_default_1532; -extern const bool __static_condition_default_1361; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_1775; -extern const bool __static_condition_default_347; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_1341; -extern const bool __static_condition_default_1498; -extern const bool __static_condition_default_613; -extern const bool __static_condition_default_864; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_1754; +extern const bool __static_condition_default_1516; +extern const bool __static_condition_default_510; extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_590; -extern const bool __static_condition_default_2051; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_894; -extern const bool __static_condition_default_1489; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_1432; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_357; -extern const bool __static_condition_default_1808; -extern const bool __static_condition_default_1165; -extern const bool __static_condition_default_317; -extern const bool __static_condition_default_883; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_1416; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_1750; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_891; +extern const bool __static_condition_default_1159; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_1773; +extern const bool __static_condition_default_1944; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_544; extern const bool __static_condition_default_488; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_1152; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_1776; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_1345; +extern const bool __static_condition_default_549; extern const bool __static_condition_default_274; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_1453; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_1787; -extern const bool __static_condition_default_382; -extern const bool __static_condition_default_1436; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_646; -extern const bool __static_condition_default_402; -extern const bool __static_condition_default_1458; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_1531; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_848; -extern const bool __static_condition_default_1349; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_2045; +extern const bool __static_condition_default_455; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_1568; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_559; +extern const bool __static_condition_default_801; extern const bool __static_condition_default_1395; -extern const bool __static_condition_default_76; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_1428; -extern const bool __static_condition_default_872; -extern const bool __static_condition_default_1385; -extern const bool __static_condition_default_651; +extern const bool __static_condition_default_1532; +extern const bool __static_condition_default_536; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_246; extern const bool __static_condition_default_683; -extern const bool __static_condition_default_2058; -extern const bool __static_condition_default_685; -extern const bool __static_condition_default_701; -extern const bool __static_condition_default_1377; -extern const bool __static_condition_default_972; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_1485; +extern const bool __static_condition_default_1391; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_538; extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_1369; -extern const bool __static_condition_default_2041; -extern const bool __static_condition_default_1398; -extern const bool __static_condition_default_198; -extern const bool __static_condition_default_564; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_963; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_1381; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_613; +extern const bool __static_condition_default_2040; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_955; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_1753; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_386; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_894; +extern const bool __static_condition_default_204; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_1365; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_1814; +extern const bool __static_condition_default_419; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_1515; extern const bool __static_condition_default_938; -extern const bool __static_condition_default_1750; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_333; -extern const bool __static_condition_default_2050; -extern const bool __static_condition_default_1475; extern const bool __static_condition_default_736; -extern const bool __static_condition_default_1159; -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_649; +extern const bool __static_condition_default_1398; +extern const bool __static_condition_default_768; extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_780; -extern const bool __static_condition_default_2039; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_1789; -extern const bool __static_condition_default_875; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_204; -extern const bool __static_condition_default_568; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_313; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_846; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_1775; +extern const bool __static_condition_default_809; extern const bool __static_condition_default_375; -extern const bool __static_condition_default_433; +extern const bool __static_condition_default_290; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_636; extern const bool __static_condition_default_373; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_1785; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_1420; -extern const bool __static_condition_default_169; +extern const bool __static_condition_default_1388; +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_1432; +extern const bool __static_condition_default_1576; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_619; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_382; +extern const bool __static_condition_default_1560; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_1489; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_1357; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_1428; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_337; +extern const bool __static_condition_default_779; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_380; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_1409; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_1353; +extern const bool __static_condition_default_677; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_1361; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_2048; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_1808; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_1315; +extern const bool __static_condition_default_333; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_1015; extern const bool __static_condition_default_395; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_536; -extern const bool __static_condition_default_803; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_1556; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_1381; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_2051; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_367; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_842; extern const bool __static_condition_default_858; -extern const bool __static_condition_default_290; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_193; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_1341; +extern const bool __static_condition_default_2039; +extern const bool __static_condition_default_1453; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_1152; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_834; +extern const bool __static_condition_default_475; extern const bool __static_condition_default_791; -extern const bool __static_condition_default_1405; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_755; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_1560; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_1402; -extern const bool __static_condition_default_386; -extern const bool __static_condition_default_1576; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_217; -extern const bool __static_condition_default_686; +extern const bool __static_condition_default_2049; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_1349; extern const bool __static_condition_default_693; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_1568; -extern const bool __static_condition_default_702; -extern const bool __static_condition_default_956; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_1164; -extern const bool __static_condition_default_53; -extern const bool __static_condition_default_634; extern const bool __static_condition_default_852; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_1564; -extern const bool __static_condition_default_438; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_2050; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_550; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_1424; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_347; +extern const bool __static_condition_default_1776; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_1402; +extern const bool __static_condition_default_444; extern const bool __static_condition_default_489; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_769; -extern const bool __static_condition_default_1791; -extern const bool __static_condition_default_1816; -extern const bool __static_condition_default_1353; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_1365; -extern const bool __static_condition_default_1944; -extern const bool __static_condition_default_1749; -extern const bool __static_condition_default_2045; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_1357; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_1556; -extern const bool __static_condition_default_473; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_76; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_963; extern const bool __static_condition_default_84; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_461; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_887; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_543; extern const bool __static_condition_default_747; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_1814; -extern const bool __static_condition_default_549; -extern const bool __static_condition_default_1424; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_2040; -extern const bool __static_condition_default_187; -extern const bool __static_condition_default_1373; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_668; extern const bool __static_condition_default_907; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_608; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_753; +extern const bool __static_condition_default_365; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_286; extern const bool __static_condition_default_929; -extern const bool __static_condition_default_1774; -extern const bool __static_condition_default_1552; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_670; -extern const bool __static_condition_default_388; -extern const bool __static_condition_default_793; -extern const bool __static_condition_default_311; -extern const bool __static_condition_default_2046; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_248; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_1773; -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_1315; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_1753; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_842; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_677; -extern const bool __static_condition_default_1516; -extern const bool __static_condition_default_1754; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_1391; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_2047; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_412; -extern const bool __static_condition_default_267; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_1164; extern const bool __static_condition_default_756; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_1409; +extern const bool __static_condition_default_471; extern const bool __static_condition_default_521; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_638; -extern const bool __static_condition_default_787; -extern const bool __static_condition_default_761; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_408; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_914; -extern const bool __static_condition_default_512; -extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_1459; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_891; -extern const bool __static_condition_default_753; -extern const bool __static_condition_default_1345; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_419; +extern const bool __static_condition_default_2057; +extern const bool __static_condition_default_670; +extern const bool __static_condition_default_1369; extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_2048; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_1416; -extern const bool __static_condition_default_955; -extern const bool __static_condition_default_1810; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_645; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_825; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -1438,8 +1438,7 @@ __static_condition_renaming("__static_condition_default_2056", "!(defined BB_CP_ __static_condition_renaming("__static_condition_default_2057", "(defined BB_CP_MV)"); __static_condition_renaming("__static_condition_default_2058", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -if (__static_condition_default_2058) -{ +if (__static_condition_default_2058) { __static_parse_error("Unable to parse"); } }; diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.clangres index 16f35fdd..6d2d91f3 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.clangres @@ -1,7 +1,7 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.c:2921:2: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.c:2920:2: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] __copySubFile_2038 ( __src_2042 , __dst_2043 ) ; // L18 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.c:2921:2: warning: 2nd function call argument is an uninitialized value [core.CallAndMessage] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.c:2920:2: warning: 2nd function call argument is an uninitialized value [core.CallAndMessage] __copySubFile_2038 ( __src_2042 , __dst_2043 ) ; // L18 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.inferres index 338ce5d8..15280db3 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.inferres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.inferres @@ -1,21 +1,21 @@ -BUSYBOX/ebee301c8b0.desugared.c:2921: error: Uninitialized Value +BUSYBOX/ebee301c8b0.desugared.c:2920: error: Uninitialized Value The value read from __dst_2043 was never initialized. - 2919. } - 2920. if (__static_condition_default_2050) { - 2921. __copySubFile_2038 ( __src_2042 , __dst_2043 ) ; // L18 + 2918. } + 2919. if (__static_condition_default_2050) { + 2920. __copySubFile_2038 ( __src_2042 , __dst_2043 ) ; // L18 ^ - 2922. } - 2923. if (__static_condition_default_2051) { + 2921. } + 2922. if (__static_condition_default_2051) { -BUSYBOX/ebee301c8b0.desugared.c:2921: error: Uninitialized Value +BUSYBOX/ebee301c8b0.desugared.c:2920: error: Uninitialized Value The value read from __src_2042 was never initialized. - 2919. } - 2920. if (__static_condition_default_2050) { - 2921. __copySubFile_2038 ( __src_2042 , __dst_2043 ) ; // L18 + 2918. } + 2919. if (__static_condition_default_2050) { + 2920. __copySubFile_2038 ( __src_2042 , __dst_2043 ) ; // L18 ^ - 2922. } - 2923. if (__static_condition_default_2051) { + 2921. } + 2922. if (__static_condition_default_2051) { Found 2 issues diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.clangres index 9bec800f..4449e9e7 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.clangres @@ -1,4 +1,7 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.c:30:7: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] - if (buf) { //WARNING - ^~~ -1 warning generated. +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.c:26:3: warning: Value stored to 'buf' is never read [deadcode.DeadStores] + buf = malloc(bufsize); + ^ ~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.c:34:10: warning: Potential leak of memory pointed to by 'buf' [unix.Malloc] + return 0; + ^ +2 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c index b7f15725..e69de29b 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c @@ -1,1770 +0,0 @@ -#include - -extern void __static_parse_error(char *msg); -extern void __static_type_error(char *msg); -extern void __static_renaming(char *renaming, char *original); -extern void __static_condition_renaming(char *expression, char *renaming); - -void __static_initializer_default(); - -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_977; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_629; -extern const bool __static_condition_default_976; -extern const bool __static_condition_default_352; -extern const bool __static_condition_default_627; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_379; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_579; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_975; -extern const bool __static_condition_default_308; -extern const bool __static_condition_default_361; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_325; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_279; -extern const bool __static_condition_default_414; -extern const bool __static_condition_default_849; -extern const bool __static_condition_default_394; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_234; -extern const bool __static_condition_default_67; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_240; -extern const bool __static_condition_default_60; -extern const bool __static_condition_default_595; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_252; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_261; -extern const bool __static_condition_default_237; -extern const bool __static_condition_default_243; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_349; -extern const bool __static_condition_default_423; -extern const bool __static_condition_default_594; -extern const bool __static_condition_default_970; -extern const bool __static_condition_default_971; -extern const bool __static_condition_default_302; -extern const bool __static_condition_default_581; -extern const bool __static_condition_default_969; -extern const bool __static_condition_default_285; -extern const bool __static_condition_default_273; -extern const bool __static_condition_default_973; -extern const bool __static_condition_default_974; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_378; -extern const bool __static_condition_default_426; -extern const bool __static_condition_default_429; -extern const bool __static_condition_default_604; -extern const bool __static_condition_default_420; -extern const bool __static_condition_default_305; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_215; -extern const bool __static_condition_default_276; -extern const bool __static_condition_default_856; -void __static_initializer_default() { -__static_renaming("__ptrdiff_t_0", "ptrdiff_t"); -__static_renaming("__size_t_1", "size_t"); -__static_renaming("__wchar_t_2", "wchar_t"); -__static_renaming("__idtype_t_8", "idtype_t"); -__static_renaming("____u_char_9", "__u_char"); -__static_renaming("____u_short_10", "__u_short"); -__static_renaming("____u_int_11", "__u_int"); -__static_renaming("____u_long_12", "__u_long"); -__static_renaming("____int8_t_13", "__int8_t"); -__static_renaming("____uint8_t_14", "__uint8_t"); -__static_renaming("____int16_t_15", "__int16_t"); -__static_renaming("____uint16_t_16", "__uint16_t"); -__static_renaming("____int32_t_17", "__int32_t"); -__static_renaming("____uint32_t_18", "__uint32_t"); -__static_renaming("____int64_t_19", "__int64_t"); -__static_renaming("____uint64_t_20", "__uint64_t"); -__static_renaming("____quad_t_21", "__quad_t"); -__static_renaming("____u_quad_t_22", "__u_quad_t"); -__static_renaming("____dev_t_23", "__dev_t"); -__static_renaming("____uid_t_24", "__uid_t"); -__static_renaming("____gid_t_25", "__gid_t"); -__static_renaming("____ino_t_26", "__ino_t"); -__static_renaming("____ino64_t_27", "__ino64_t"); -__static_renaming("____mode_t_28", "__mode_t"); -__static_renaming("____nlink_t_29", "__nlink_t"); -__static_renaming("____off_t_30", "__off_t"); -__static_renaming("____off64_t_31", "__off64_t"); -__static_renaming("____pid_t_32", "__pid_t"); -__static_renaming("____fsid_t_36", "__fsid_t"); -__static_renaming("____clock_t_37", "__clock_t"); -__static_renaming("____rlim_t_38", "__rlim_t"); -__static_renaming("____rlim64_t_39", "__rlim64_t"); -__static_renaming("____id_t_40", "__id_t"); -__static_renaming("____time_t_41", "__time_t"); -__static_renaming("____useconds_t_42", "__useconds_t"); -__static_renaming("____suseconds_t_43", "__suseconds_t"); -__static_renaming("____daddr_t_44", "__daddr_t"); -__static_renaming("____key_t_45", "__key_t"); -__static_renaming("____clockid_t_46", "__clockid_t"); -__static_renaming("____timer_t_47", "__timer_t"); -__static_renaming("____blksize_t_48", "__blksize_t"); -__static_renaming("____blkcnt_t_49", "__blkcnt_t"); -__static_renaming("____blkcnt64_t_50", "__blkcnt64_t"); -__static_renaming("____fsblkcnt_t_51", "__fsblkcnt_t"); -__static_renaming("____fsblkcnt64_t_52", "__fsblkcnt64_t"); -__static_renaming("____fsfilcnt_t_53", "__fsfilcnt_t"); -__static_renaming("____fsfilcnt64_t_54", "__fsfilcnt64_t"); -__static_renaming("____fsword_t_55", "__fsword_t"); -__static_renaming("____ssize_t_56", "__ssize_t"); -__static_renaming("____syscall_slong_t_57", "__syscall_slong_t"); -__static_renaming("____syscall_ulong_t_58", "__syscall_ulong_t"); -__static_renaming("____loff_t_59", "__loff_t"); -__static_renaming("____qaddr_t_61", "__qaddr_t"); -__static_renaming("____caddr_t_62", "__caddr_t"); -__static_renaming("____intptr_t_63", "__intptr_t"); -__static_renaming("____socklen_t_64", "__socklen_t"); -__static_renaming("____bswap_32_66", "__bswap_32"); -__static_renaming("____bswap_64_69", "__bswap_64"); -__static_renaming("____WAIT_STATUS_89", "__WAIT_STATUS"); -__static_renaming("__div_t_94", "div_t"); -__static_renaming("__ldiv_t_99", "ldiv_t"); -__static_renaming("__lldiv_t_104", "lldiv_t"); -__static_renaming("____ctype_get_mb_cur_max_105", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_106", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_107", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_108", "__ctype_get_mb_cur_max"); -__static_renaming("__atof_110", "atof"); -__static_renaming("__atof_111", "atof"); -__static_renaming("__atoi_113", "atoi"); -__static_renaming("__atoi_114", "atoi"); -__static_renaming("__atol_116", "atol"); -__static_renaming("__atol_117", "atol"); -__static_renaming("__atoll_119", "atoll"); -__static_renaming("__atoll_120", "atoll"); -__static_renaming("__strtod_123", "strtod"); -__static_renaming("__strtof_126", "strtof"); -__static_renaming("__strtold_129", "strtold"); -__static_renaming("__strtol_133", "strtol"); -__static_renaming("__strtoul_137", "strtoul"); -__static_renaming("__strtoq_141", "strtoq"); -__static_renaming("__strtouq_145", "strtouq"); -__static_renaming("__strtoll_149", "strtoll"); -__static_renaming("__strtoll_150", "strtoll"); -__static_renaming("__strtoull_154", "strtoull"); -__static_renaming("__l64a_159", "l64a"); -__static_renaming("__l64a_160", "l64a"); -__static_renaming("__a64l_162", "a64l"); -__static_renaming("__a64l_163", "a64l"); -__static_renaming("____u_char_164", "__u_char"); -__static_renaming("____u_short_165", "__u_short"); -__static_renaming("____u_int_166", "__u_int"); -__static_renaming("____u_long_167", "__u_long"); -__static_renaming("____int8_t_168", "__int8_t"); -__static_renaming("____uint8_t_169", "__uint8_t"); -__static_renaming("____int16_t_170", "__int16_t"); -__static_renaming("____uint16_t_171", "__uint16_t"); -__static_renaming("____int32_t_172", "__int32_t"); -__static_renaming("____uint32_t_173", "__uint32_t"); -__static_renaming("____int64_t_174", "__int64_t"); -__static_renaming("____uint64_t_175", "__uint64_t"); -__static_renaming("____quad_t_176", "__quad_t"); -__static_renaming("____u_quad_t_177", "__u_quad_t"); -__static_renaming("____dev_t_178", "__dev_t"); -__static_renaming("____uid_t_179", "__uid_t"); -__static_renaming("____gid_t_180", "__gid_t"); -__static_renaming("____ino_t_181", "__ino_t"); -__static_renaming("____ino64_t_182", "__ino64_t"); -__static_renaming("____mode_t_183", "__mode_t"); -__static_renaming("____nlink_t_184", "__nlink_t"); -__static_renaming("____off_t_185", "__off_t"); -__static_renaming("____off64_t_186", "__off64_t"); -__static_renaming("____pid_t_187", "__pid_t"); -__static_renaming("____fsid_t_191", "__fsid_t"); -__static_renaming("____clock_t_192", "__clock_t"); -__static_renaming("____rlim_t_193", "__rlim_t"); -__static_renaming("____rlim64_t_194", "__rlim64_t"); -__static_renaming("____id_t_195", "__id_t"); -__static_renaming("____time_t_196", "__time_t"); -__static_renaming("____useconds_t_197", "__useconds_t"); -__static_renaming("____suseconds_t_198", "__suseconds_t"); -__static_renaming("____daddr_t_199", "__daddr_t"); -__static_renaming("____key_t_200", "__key_t"); -__static_renaming("____clockid_t_201", "__clockid_t"); -__static_renaming("____timer_t_202", "__timer_t"); -__static_renaming("____blksize_t_203", "__blksize_t"); -__static_renaming("____blkcnt_t_204", "__blkcnt_t"); -__static_renaming("____blkcnt64_t_205", "__blkcnt64_t"); -__static_renaming("____fsblkcnt_t_206", "__fsblkcnt_t"); -__static_renaming("____fsblkcnt64_t_207", "__fsblkcnt64_t"); -__static_renaming("____fsfilcnt_t_208", "__fsfilcnt_t"); -__static_renaming("____fsfilcnt64_t_209", "__fsfilcnt64_t"); -__static_renaming("____fsword_t_210", "__fsword_t"); -__static_renaming("____ssize_t_211", "__ssize_t"); -__static_renaming("____syscall_slong_t_212", "__syscall_slong_t"); -__static_renaming("____syscall_ulong_t_213", "__syscall_ulong_t"); -__static_renaming("____loff_t_214", "__loff_t"); -__static_renaming("____qaddr_t_216", "__qaddr_t"); -__static_renaming("____caddr_t_217", "__caddr_t"); -__static_renaming("____intptr_t_218", "__intptr_t"); -__static_renaming("____socklen_t_219", "__socklen_t"); -__static_renaming("__u_char_220", "u_char"); -__static_renaming("__u_char_221", "u_char"); -__static_renaming("__u_short_222", "u_short"); -__static_renaming("__u_short_223", "u_short"); -__static_renaming("__u_int_224", "u_int"); -__static_renaming("__u_int_225", "u_int"); -__static_renaming("__u_long_226", "u_long"); -__static_renaming("__u_long_227", "u_long"); -__static_renaming("__quad_t_228", "quad_t"); -__static_renaming("__quad_t_229", "quad_t"); -__static_renaming("__u_quad_t_230", "u_quad_t"); -__static_renaming("__u_quad_t_231", "u_quad_t"); -__static_renaming("__fsid_t_232", "fsid_t"); -__static_renaming("__fsid_t_233", "fsid_t"); -__static_renaming("__loff_t_235", "loff_t"); -__static_renaming("__loff_t_236", "loff_t"); -__static_renaming("__loff_t_238", "loff_t"); -__static_renaming("__loff_t_239", "loff_t"); -__static_renaming("__ino_t_241", "ino_t"); -__static_renaming("__ino_t_242", "ino_t"); -__static_renaming("__ino_t_244", "ino_t"); -__static_renaming("__ino_t_245", "ino_t"); -__static_renaming("__dev_t_247", "dev_t"); -__static_renaming("__dev_t_248", "dev_t"); -__static_renaming("__gid_t_250", "gid_t"); -__static_renaming("__gid_t_251", "gid_t"); -__static_renaming("__gid_t_253", "gid_t"); -__static_renaming("__gid_t_254", "gid_t"); -__static_renaming("__mode_t_256", "mode_t"); -__static_renaming("__mode_t_257", "mode_t"); -__static_renaming("__nlink_t_259", "nlink_t"); -__static_renaming("__nlink_t_260", "nlink_t"); -__static_renaming("__uid_t_262", "uid_t"); -__static_renaming("__uid_t_263", "uid_t"); -__static_renaming("__uid_t_265", "uid_t"); -__static_renaming("__uid_t_266", "uid_t"); -__static_renaming("__off_t_268", "off_t"); -__static_renaming("__off_t_269", "off_t"); -__static_renaming("__off_t_271", "off_t"); -__static_renaming("__off_t_272", "off_t"); -__static_renaming("__pid_t_274", "pid_t"); -__static_renaming("__pid_t_275", "pid_t"); -__static_renaming("__pid_t_277", "pid_t"); -__static_renaming("__pid_t_278", "pid_t"); -__static_renaming("__id_t_280", "id_t"); -__static_renaming("__id_t_281", "id_t"); -__static_renaming("__ssize_t_283", "ssize_t"); -__static_renaming("__ssize_t_284", "ssize_t"); -__static_renaming("__daddr_t_286", "daddr_t"); -__static_renaming("__daddr_t_287", "daddr_t"); -__static_renaming("__caddr_t_289", "caddr_t"); -__static_renaming("__caddr_t_290", "caddr_t"); -__static_renaming("__key_t_291", "key_t"); -__static_renaming("__key_t_292", "key_t"); -__static_renaming("__key_t_294", "key_t"); -__static_renaming("__key_t_295", "key_t"); -__static_renaming("__clock_t_297", "clock_t"); -__static_renaming("__clock_t_298", "clock_t"); -__static_renaming("__time_t_300", "time_t"); -__static_renaming("__time_t_301", "time_t"); -__static_renaming("__clockid_t_303", "clockid_t"); -__static_renaming("__clockid_t_304", "clockid_t"); -__static_renaming("__timer_t_306", "timer_t"); -__static_renaming("__timer_t_307", "timer_t"); -__static_renaming("__ulong_309", "ulong"); -__static_renaming("__ulong_310", "ulong"); -__static_renaming("__ulong_311", "ulong"); -__static_renaming("__ushort_312", "ushort"); -__static_renaming("__uint_313", "uint"); -__static_renaming("__int8_t_314", "int8_t"); -__static_renaming("__int16_t_315", "int16_t"); -__static_renaming("__int32_t_316", "int32_t"); -__static_renaming("__int64_t_317", "int64_t"); -__static_renaming("__u_int8_t_318", "u_int8_t"); -__static_renaming("__u_int16_t_319", "u_int16_t"); -__static_renaming("__u_int32_t_320", "u_int32_t"); -__static_renaming("__u_int64_t_321", "u_int64_t"); -__static_renaming("__register_t_322", "register_t"); -__static_renaming("____bswap_32_324", "__bswap_32"); -__static_renaming("____bswap_64_327", "__bswap_64"); -__static_renaming("____sig_atomic_t_328", "__sig_atomic_t"); -__static_renaming("____sigset_t_332", "__sigset_t"); -__static_renaming("__sigset_t_333", "sigset_t"); -__static_renaming("__suseconds_t_350", "suseconds_t"); -__static_renaming("__suseconds_t_351", "suseconds_t"); -__static_renaming("____fd_mask_353", "__fd_mask"); -__static_renaming("____fd_mask_354", "__fd_mask"); -__static_renaming("__fd_set_362", "fd_set"); -__static_renaming("__fd_mask_363", "fd_mask"); -__static_renaming("__fd_mask_364", "fd_mask"); -__static_renaming("__select_376", "select"); -__static_renaming("__select_377", "select"); -__static_renaming("__pselect_392", "pselect"); -__static_renaming("__pselect_393", "pselect"); -__static_renaming("____fdelt_chk_397", "__fdelt_chk"); -__static_renaming("____fdelt_warn_399", "__fdelt_warn"); -__static_renaming("__gnu_dev_major_401", "gnu_dev_major"); -__static_renaming("__gnu_dev_major_402", "gnu_dev_major"); -__static_renaming("__gnu_dev_minor_404", "gnu_dev_minor"); -__static_renaming("__gnu_dev_makedev_407", "gnu_dev_makedev"); -__static_renaming("__blksize_t_412", "blksize_t"); -__static_renaming("__blksize_t_413", "blksize_t"); -__static_renaming("__blkcnt_t_415", "blkcnt_t"); -__static_renaming("__blkcnt_t_416", "blkcnt_t"); -__static_renaming("__fsblkcnt_t_418", "fsblkcnt_t"); -__static_renaming("__fsblkcnt_t_419", "fsblkcnt_t"); -__static_renaming("__blkcnt_t_421", "blkcnt_t"); -__static_renaming("__blkcnt_t_422", "blkcnt_t"); -__static_renaming("__fsblkcnt_t_424", "fsblkcnt_t"); -__static_renaming("__fsblkcnt_t_425", "fsblkcnt_t"); -__static_renaming("__fsfilcnt_t_427", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_428", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_430", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_431", "fsfilcnt_t"); -__static_renaming("__pthread_t_433", "pthread_t"); -__static_renaming("__pthread_attr_t_437", "pthread_attr_t"); -__static_renaming("____pthread_list_t_442", "__pthread_list_t"); -__static_renaming("____pthread_list_t_443", "__pthread_list_t"); -__static_renaming("__pthread_mutex_t_459", "pthread_mutex_t"); -__static_renaming("__pthread_mutexattr_t_464", "pthread_mutexattr_t"); -__static_renaming("__rand_465", "rand"); -__static_renaming("__srand_467", "srand"); -__static_renaming("__rand_r_469", "rand_r"); -__static_renaming("__drand48_470", "drand48"); -__static_renaming("__erand48_472", "erand48"); -__static_renaming("__lrand48_473", "lrand48"); -__static_renaming("__nrand48_475", "nrand48"); -__static_renaming("__mrand48_476", "mrand48"); -__static_renaming("__jrand48_478", "jrand48"); -__static_renaming("__srand48_480", "srand48"); -__static_renaming("__seed48_482", "seed48"); -__static_renaming("__lcong48_484", "lcong48"); -__static_renaming("__malloc_486", "malloc"); -__static_renaming("__malloc_487", "malloc"); -__static_renaming("__calloc_490", "calloc"); -__static_renaming("__calloc_491", "calloc"); -__static_renaming("__realloc_494", "realloc"); -__static_renaming("__free_496", "free"); -__static_renaming("__cfree_498", "cfree"); -__static_renaming("__alloca_500", "alloca"); -__static_renaming("__valloc_502", "valloc"); -__static_renaming("__valloc_503", "valloc"); -__static_renaming("__posix_memalign_507", "posix_memalign"); -__static_renaming("__posix_memalign_508", "posix_memalign"); -__static_renaming("__aligned_alloc_511", "aligned_alloc"); -__static_renaming("__aligned_alloc_512", "aligned_alloc"); -__static_renaming("__aligned_alloc_513", "aligned_alloc"); -__static_renaming("__aligned_alloc_514", "aligned_alloc"); -__static_renaming("__abort_515", "abort"); -__static_renaming("__atexit_517", "atexit"); -__static_renaming("__at_quick_exit_519", "at_quick_exit"); -__static_renaming("__on_exit_524", "on_exit"); -__static_renaming("__exit_526", "exit"); -__static_renaming("__exit_527", "exit"); -__static_renaming("__quick_exit_529", "quick_exit"); -__static_renaming("___Exit_531", "_Exit"); -__static_renaming("__getenv_533", "getenv"); -__static_renaming("__getenv_534", "getenv"); -__static_renaming("__putenv_536", "putenv"); -__static_renaming("__setenv_540", "setenv"); -__static_renaming("__unsetenv_542", "unsetenv"); -__static_renaming("__clearenv_543", "clearenv"); -__static_renaming("__mktemp_545", "mktemp"); -__static_renaming("__mkstemp_548", "mkstemp"); -__static_renaming("__mkstemp_549", "mkstemp"); -__static_renaming("__mkstemp_550", "mkstemp"); -__static_renaming("__mkstemp_551", "mkstemp"); -__static_renaming("__mkstemps_556", "mkstemps"); -__static_renaming("__mkstemps_557", "mkstemps"); -__static_renaming("__mkstemps_558", "mkstemps"); -__static_renaming("__mkstemps_559", "mkstemps"); -__static_renaming("__mkdtemp_561", "mkdtemp"); -__static_renaming("__mkdtemp_562", "mkdtemp"); -__static_renaming("__system_564", "system"); -__static_renaming("__system_565", "system"); -__static_renaming("__system_566", "system"); -__static_renaming("__system_567", "system"); -__static_renaming("__realpath_570", "realpath"); -__static_renaming("__realpath_571", "realpath"); -__static_renaming("____compar_fn_t_572", "__compar_fn_t"); -__static_renaming("__bsearch_580", "bsearch"); -__static_renaming("__bsearch_582", "bsearch"); -__static_renaming("____l_589", "__l"); -__static_renaming("____u_590", "__u"); -__static_renaming("____idx_591", "__idx"); -__static_renaming("____p_592", "__p"); -__static_renaming("____comparison_593", "__comparison"); -__static_renaming("__qsort_601", "qsort"); -__static_renaming("__qsort_603", "qsort"); -__static_renaming("__abs_606", "abs"); -__static_renaming("__abs_607", "abs"); -__static_renaming("__labs_609", "labs"); -__static_renaming("__labs_610", "labs"); -__static_renaming("__llabs_612", "llabs"); -__static_renaming("__llabs_613", "llabs"); -__static_renaming("__div_616", "div"); -__static_renaming("__div_617", "div"); -__static_renaming("__ldiv_620", "ldiv"); -__static_renaming("__ldiv_622", "ldiv"); -__static_renaming("__lldiv_626", "lldiv"); -__static_renaming("__lldiv_628", "lldiv"); -__static_renaming("__ecvt_634", "ecvt"); -__static_renaming("__ecvt_635", "ecvt"); -__static_renaming("__fcvt_640", "fcvt"); -__static_renaming("__fcvt_641", "fcvt"); -__static_renaming("__gcvt_645", "gcvt"); -__static_renaming("__gcvt_646", "gcvt"); -__static_renaming("__qecvt_651", "qecvt"); -__static_renaming("__qecvt_652", "qecvt"); -__static_renaming("__qfcvt_657", "qfcvt"); -__static_renaming("__qfcvt_658", "qfcvt"); -__static_renaming("__qgcvt_662", "qgcvt"); -__static_renaming("__qgcvt_663", "qgcvt"); -__static_renaming("__ecvt_r_670", "ecvt_r"); -__static_renaming("__fcvt_r_677", "fcvt_r"); -__static_renaming("__qecvt_r_684", "qecvt_r"); -__static_renaming("__qfcvt_r_691", "qfcvt_r"); -__static_renaming("__mblen_694", "mblen"); -__static_renaming("__mblen_695", "mblen"); -__static_renaming("__mbtowc_699", "mbtowc"); -__static_renaming("__wctomb_702", "wctomb"); -__static_renaming("__mbstowcs_706", "mbstowcs"); -__static_renaming("__wcstombs_710", "wcstombs"); -__static_renaming("__rpmatch_712", "rpmatch"); -__static_renaming("__rpmatch_713", "rpmatch"); -__static_renaming("__getsubopt_717", "getsubopt"); -__static_renaming("__getsubopt_718", "getsubopt"); -__static_renaming("__getloadavg_721", "getloadavg"); -__static_renaming("____realpath_chk_726", "__realpath_chk"); -__static_renaming("____realpath_alias_729", "__realpath_alias"); -__static_renaming("____realpath_chk_warn_733", "__realpath_chk_warn"); -__static_renaming("____ptsname_r_chk_741", "__ptsname_r_chk"); -__static_renaming("____ptsname_r_alias_745", "__ptsname_r_alias"); -__static_renaming("____ptsname_r_chk_warn_750", "__ptsname_r_chk_warn"); -__static_renaming("____wctomb_chk_758", "__wctomb_chk"); -__static_renaming("____wctomb_alias_761", "__wctomb_alias"); -__static_renaming("____mbstowcs_chk_768", "__mbstowcs_chk"); -__static_renaming("____mbstowcs_alias_772", "__mbstowcs_alias"); -__static_renaming("____mbstowcs_chk_warn_777", "__mbstowcs_chk_warn"); -__static_renaming("____wcstombs_chk_785", "__wcstombs_chk"); -__static_renaming("____wcstombs_alias_789", "__wcstombs_alias"); -__static_renaming("____wcstombs_chk_warn_794", "__wcstombs_chk_warn"); -__static_renaming("____u_char_798", "__u_char"); -__static_renaming("____u_short_799", "__u_short"); -__static_renaming("____u_int_800", "__u_int"); -__static_renaming("____u_long_801", "__u_long"); -__static_renaming("____int8_t_802", "__int8_t"); -__static_renaming("____uint8_t_803", "__uint8_t"); -__static_renaming("____int16_t_804", "__int16_t"); -__static_renaming("____uint16_t_805", "__uint16_t"); -__static_renaming("____int32_t_806", "__int32_t"); -__static_renaming("____uint32_t_807", "__uint32_t"); -__static_renaming("____int64_t_808", "__int64_t"); -__static_renaming("____uint64_t_809", "__uint64_t"); -__static_renaming("____quad_t_810", "__quad_t"); -__static_renaming("____u_quad_t_811", "__u_quad_t"); -__static_renaming("____dev_t_812", "__dev_t"); -__static_renaming("____uid_t_813", "__uid_t"); -__static_renaming("____gid_t_814", "__gid_t"); -__static_renaming("____ino_t_815", "__ino_t"); -__static_renaming("____ino64_t_816", "__ino64_t"); -__static_renaming("____mode_t_817", "__mode_t"); -__static_renaming("____nlink_t_818", "__nlink_t"); -__static_renaming("____off_t_819", "__off_t"); -__static_renaming("____off64_t_820", "__off64_t"); -__static_renaming("____pid_t_821", "__pid_t"); -__static_renaming("____fsid_t_825", "__fsid_t"); -__static_renaming("____clock_t_826", "__clock_t"); -__static_renaming("____rlim_t_827", "__rlim_t"); -__static_renaming("____rlim64_t_828", "__rlim64_t"); -__static_renaming("____id_t_829", "__id_t"); -__static_renaming("____time_t_830", "__time_t"); -__static_renaming("____useconds_t_831", "__useconds_t"); -__static_renaming("____suseconds_t_832", "__suseconds_t"); -__static_renaming("____daddr_t_833", "__daddr_t"); -__static_renaming("____key_t_834", "__key_t"); -__static_renaming("____clockid_t_835", "__clockid_t"); -__static_renaming("____timer_t_836", "__timer_t"); -__static_renaming("____blksize_t_837", "__blksize_t"); -__static_renaming("____blkcnt_t_838", "__blkcnt_t"); -__static_renaming("____blkcnt64_t_839", "__blkcnt64_t"); -__static_renaming("____fsblkcnt_t_840", "__fsblkcnt_t"); -__static_renaming("____fsblkcnt64_t_841", "__fsblkcnt64_t"); -__static_renaming("____fsfilcnt_t_842", "__fsfilcnt_t"); -__static_renaming("____fsfilcnt64_t_843", "__fsfilcnt64_t"); -__static_renaming("____fsword_t_844", "__fsword_t"); -__static_renaming("____ssize_t_845", "__ssize_t"); -__static_renaming("____syscall_slong_t_846", "__syscall_slong_t"); -__static_renaming("____syscall_ulong_t_847", "__syscall_ulong_t"); -__static_renaming("____loff_t_848", "__loff_t"); -__static_renaming("____qaddr_t_850", "__qaddr_t"); -__static_renaming("____caddr_t_851", "__caddr_t"); -__static_renaming("____intptr_t_852", "__intptr_t"); -__static_renaming("____socklen_t_853", "__socklen_t"); -__static_renaming("____bswap_32_855", "__bswap_32"); -__static_renaming("____bswap_64_858", "__bswap_64"); -__static_renaming("____ctype_b_loc_873", "__ctype_b_loc"); -__static_renaming("____ctype_b_loc_874", "__ctype_b_loc"); -__static_renaming("____ctype_tolower_loc_875", "__ctype_tolower_loc"); -__static_renaming("____ctype_toupper_loc_876", "__ctype_toupper_loc"); -__static_renaming("__isalnum_877", "isalnum"); -__static_renaming("__isalpha_878", "isalpha"); -__static_renaming("__iscntrl_879", "iscntrl"); -__static_renaming("__isdigit_880", "isdigit"); -__static_renaming("__islower_881", "islower"); -__static_renaming("__isgraph_882", "isgraph"); -__static_renaming("__isprint_883", "isprint"); -__static_renaming("__ispunct_884", "ispunct"); -__static_renaming("__isspace_885", "isspace"); -__static_renaming("__isupper_886", "isupper"); -__static_renaming("__isxdigit_887", "isxdigit"); -__static_renaming("__tolower_889", "tolower"); -__static_renaming("__toupper_891", "toupper"); -__static_renaming("__isblank_892", "isblank"); -__static_renaming("__isascii_894", "isascii"); -__static_renaming("__toascii_896", "toascii"); -__static_renaming("___toupper_897", "_toupper"); -__static_renaming("___tolower_898", "_tolower"); -__static_renaming("____locale_t_906", "__locale_t"); -__static_renaming("__locale_t_907", "locale_t"); -__static_renaming("__isalnum_l_908", "isalnum_l"); -__static_renaming("__isalpha_l_909", "isalpha_l"); -__static_renaming("__iscntrl_l_910", "iscntrl_l"); -__static_renaming("__isdigit_l_911", "isdigit_l"); -__static_renaming("__islower_l_912", "islower_l"); -__static_renaming("__isgraph_l_913", "isgraph_l"); -__static_renaming("__isprint_l_914", "isprint_l"); -__static_renaming("__ispunct_l_915", "ispunct_l"); -__static_renaming("__isspace_l_916", "isspace_l"); -__static_renaming("__isupper_l_917", "isupper_l"); -__static_renaming("__isxdigit_l_918", "isxdigit_l"); -__static_renaming("__isblank_l_919", "isblank_l"); -__static_renaming("____tolower_l_922", "__tolower_l"); -__static_renaming("__tolower_l_925", "tolower_l"); -__static_renaming("____toupper_l_928", "__toupper_l"); -__static_renaming("__toupper_l_931", "toupper_l"); -__static_renaming("__optarg_932", "optarg"); -__static_renaming("__optarg_933", "optarg"); -__static_renaming("__optarg_934", "optarg"); -__static_renaming("__optind_935", "optind"); -__static_renaming("__opterr_936", "opterr"); -__static_renaming("__optopt_937", "optopt"); -__static_renaming("__getopt_946", "getopt"); -__static_renaming("__getopt_947", "getopt"); -__static_renaming("__getopt_long_953", "getopt_long"); -__static_renaming("__getopt_long_954", "getopt_long"); -__static_renaming("__getopt_long_only_960", "getopt_long_only"); -__static_renaming("__getopt_long_only_961", "getopt_long_only"); -__static_renaming("__buf_964", "buf"); -__static_renaming("__bufsize_965", "bufsize"); -__static_renaming("__i_966", "i"); -__static_renaming("__cmd_967", "cmd"); -__static_renaming("__main_968", "main"); - -__static_condition_renaming("__static_condition_default_60", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_67", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_215", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_234", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __u_char_defined)"); -__static_condition_renaming("__static_condition_default_237", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __u_char_defined)"); -__static_condition_renaming("__static_condition_default_240", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __u_char_defined)"); -__static_condition_renaming("__static_condition_default_243", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ino_t_defined)"); -__static_condition_renaming("__static_condition_default_246", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ino_t_defined) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ino_t_defined)"); -__static_condition_renaming("__static_condition_default_249", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_252", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_255", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_258", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_261", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __nlink_t_defined)"); -__static_condition_renaming("__static_condition_default_264", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __nlink_t_defined)"); -__static_condition_renaming("__static_condition_default_267", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __nlink_t_defined)"); -__static_condition_renaming("__static_condition_default_270", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_273", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_276", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_279", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_282", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __id_t_defined)"); -__static_condition_renaming("__static_condition_default_285", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_288", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_293", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_296", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_299", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __clock_t_defined)"); -__static_condition_renaming("__static_condition_default_302", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __time_t_defined)"); -__static_condition_renaming("__static_condition_default_305", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __clockid_t_defined)"); -__static_condition_renaming("__static_condition_default_308", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __timer_t_defined)"); -__static_condition_renaming("__static_condition_default_325", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_341", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_349", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_352", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __suseconds_t_defined)"); -__static_condition_renaming("__static_condition_default_361", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_378", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_379", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_394", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_395", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_414", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blksize_t_defined)"); -__static_condition_renaming("__static_condition_default_417", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blkcnt_t_defined) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blkcnt_t_defined)"); -__static_condition_renaming("__static_condition_default_420", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_423", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blkcnt_t_defined)"); -__static_condition_renaming("__static_condition_default_426", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_429", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_432", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_579", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_581", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_594", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __USE_EXTERN_INLINES) && !(defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_595", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_602", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_604", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_621", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_623", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_627", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_629", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_736", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_849", "(defined _STDLIB_H) && (defined _BITS_TYPESIZES_H) && !(defined __GNU_LIBRARY__)"); -__static_condition_renaming("__static_condition_default_856", "(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __GNU_LIBRARY__) && !(defined _ISbit)"); -__static_condition_renaming("__static_condition_default_969", "(defined CONFIG_FEATURE_CLEAN_UP)"); -__static_condition_renaming("__static_condition_default_970", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_CLEAN_UP) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_CLEAN_UP) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_CLEAN_UP) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_CLEAN_UP) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_CLEAN_UP) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_CLEAN_UP) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_CLEAN_UP) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_CLEAN_UP) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_CLEAN_UP) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_CLEAN_UP) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_CLEAN_UP) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_CLEAN_UP)"); -__static_condition_renaming("__static_condition_default_971", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_CLEAN_UP) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_CLEAN_UP) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_CLEAN_UP)"); -__static_condition_renaming("__static_condition_default_972", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_CLEAN_UP) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_CLEAN_UP) || (defined _STDLIB_H) && (defined CONFIG_FEATURE_CLEAN_UP)"); -__static_condition_renaming("__static_condition_default_973", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_CLEAN_UP)"); -__static_condition_renaming("__static_condition_default_974", "!(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_CLEAN_UP) || (defined _STDLIB_H) && (defined CONFIG_FEATURE_CLEAN_UP)"); -__static_condition_renaming("__static_condition_default_975", "!(defined CONFIG_FEATURE_CLEAN_UP)"); -__static_condition_renaming("__static_condition_default_976", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_CLEAN_UP) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_CLEAN_UP) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_CLEAN_UP) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_CLEAN_UP) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_CLEAN_UP) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_CLEAN_UP) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_CLEAN_UP) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_CLEAN_UP) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_CLEAN_UP) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_CLEAN_UP) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_CLEAN_UP) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_CLEAN_UP)"); -__static_condition_renaming("__static_condition_default_977", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_CLEAN_UP) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_CLEAN_UP) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_CLEAN_UP)"); -__static_condition_renaming("__static_condition_default_978", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_CLEAN_UP) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_CLEAN_UP) || (defined _STDLIB_H) && !(defined CONFIG_FEATURE_CLEAN_UP)"); -__static_condition_renaming("__static_condition_default_979", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) || (defined _STDLIB_H) && !(defined _BITS_TYPESIZES_H) && (defined __GNU_LIBRARY__) && (defined __THROW) || (defined _STDLIB_H) && (defined _BITS_TYPESIZES_H) && !(defined __GNU_LIBRARY__) || (defined _STDLIB_H) && (defined _BITS_TYPESIZES_H) && (defined __GNU_LIBRARY__) && (defined __THROW)"); - -if (__static_condition_default_979) -{ -__static_parse_error("Unable to parse"); -} -}; -typedef long int __ptrdiff_t_0;// L143:L324 -typedef long unsigned int __size_t_1;// L177:L209 -typedef int __wchar_t_2;// L243:L321 -enum ____anonymous_tag_6_7 { -__P_ALL_3, -__P_PID_4, -__P_PGID_5, -}; -typedef enum ____anonymous_tag_6_7 __idtype_t_8;// L50:L55 -typedef unsigned char ____u_char_9;// L30 -typedef unsigned short int ____u_short_10;// L31 -typedef unsigned int ____u_int_11;// L32 -typedef unsigned long int ____u_long_12;// L33 -typedef signed char ____int8_t_13;// L36 -typedef unsigned char ____uint8_t_14;// L37 -typedef signed short int ____int16_t_15;// L38 -typedef unsigned short int ____uint16_t_16;// L39 -typedef signed int ____int32_t_17;// L40 -typedef unsigned int ____uint32_t_18;// L41 -typedef signed long int ____int64_t_19;// L43 -typedef unsigned long int ____uint64_t_20;// L44 -typedef long int ____quad_t_21;// L52 -typedef unsigned long int ____u_quad_t_22;// L53 -typedef unsigned long int ____dev_t_23;// L109:L124 -typedef unsigned int ____uid_t_24;// L92:L125 -typedef unsigned int ____gid_t_25;// L92:L126 -typedef unsigned long int ____ino_t_26;// L94:L127 -typedef unsigned long int ____ino64_t_27;// L109:L128 -typedef unsigned int ____mode_t_28;// L92:L129 -typedef unsigned long int ____nlink_t_29;// L94:L130 -typedef long int ____off_t_30;// L93:L131 -typedef long int ____off64_t_31;// L108:L132 -typedef int ____pid_t_32;// L91:L133 -struct ____anonymous_tag_33_34 { -int ____val_35[2];// L72 -}; -typedef struct ____anonymous_tag_33_34 ____fsid_t_36;// L72:L134 -typedef long int ____clock_t_37;// L93:L135 -typedef unsigned long int ____rlim_t_38;// L94:L136 -typedef unsigned long int ____rlim64_t_39;// L109:L137 -typedef unsigned int ____id_t_40;// L92:L138 -typedef long int ____time_t_41;// L93:L139 -typedef unsigned int ____useconds_t_42;// L92:L140 -typedef long int ____suseconds_t_43;// L93:L141 -typedef int ____daddr_t_44;// L91:L143 -typedef int ____key_t_45;// L91:L144 -typedef int ____clockid_t_46;// L91:L147 -typedef void * (____timer_t_47);// L70:L150 -typedef long int ____blksize_t_48;// L93:L153 -typedef long int ____blkcnt_t_49;// L93:L158 -typedef long int ____blkcnt64_t_50;// L108:L159 -typedef unsigned long int ____fsblkcnt_t_51;// L94:L162 -typedef unsigned long int ____fsblkcnt64_t_52;// L109:L163 -typedef unsigned long int ____fsfilcnt_t_53;// L94:L166 -typedef unsigned long int ____fsfilcnt64_t_54;// L109:L167 -typedef long int ____fsword_t_55;// L93:L170 -typedef long int ____ssize_t_56;// L110:L172 -typedef long int ____syscall_slong_t_57;// L93:L175 -typedef unsigned long int ____syscall_ulong_t_58;// L94:L177 -typedef ____off64_t_31 ____loff_t_59;// L181 -typedef ____quad_t_21 * (____qaddr_t_61);// L182 -typedef char * (____caddr_t_62);// L183 -typedef long int ____intptr_t_63;// L110:L186 -typedef unsigned int ____socklen_t_64;// L92:L189 -struct ____anonymous_tag_70_71 { -unsigned int ____w_termsig_72 : 7;// L72 -unsigned int ____w_coredump_73 : 1;// L73 -unsigned int ____w_retcode_74 : 8;// L74 -unsigned int __anon_id_0_75 : 16;// L75 -}; -struct ____anonymous_tag_76_77 { -unsigned int ____w_stopval_78 : 8;// L87 -unsigned int ____w_stopsig_79 : 8;// L88 -unsigned int __anon_id_1_80 : 16;// L89 -}; -union __wait_81 { -int __w_status_82;// L68 -struct ____anonymous_tag_70_71 ____wait_terminated_83;// L69 -struct ____anonymous_tag_76_77 ____wait_stopped_84;// L84 -}; -union ____anonymous_tag_85_86 { -union __wait_81 * (____uptr_87);// L69 -int * (____iptr_88);// L70 -}; -typedef union ____anonymous_tag_85_86 ____WAIT_STATUS_89;// L67:L71 -struct ____anonymous_tag_90_91 { -int __quot_92;// L99 -int __rem_93;// L100 -}; -typedef struct ____anonymous_tag_90_91 __div_t_94;// L97:L101 -struct ____anonymous_tag_95_96 { -long int __quot_97;// L107 -long int __rem_98;// L108 -}; -typedef struct ____anonymous_tag_95_96 __ldiv_t_99;// L105:L109 -struct ____anonymous_tag_100_101 { -long long int __quot_102;// L119 -long long int __rem_103;// L120 -}; -typedef struct ____anonymous_tag_100_101 __lldiv_t_104;// L117:L121 -typedef unsigned char ____u_char_164;// L30 -typedef unsigned short int ____u_short_165;// L31 -typedef unsigned int ____u_int_166;// L32 -typedef unsigned long int ____u_long_167;// L33 -typedef signed char ____int8_t_168;// L36 -typedef unsigned char ____uint8_t_169;// L37 -typedef signed short int ____int16_t_170;// L38 -typedef unsigned short int ____uint16_t_171;// L39 -typedef signed int ____int32_t_172;// L40 -typedef unsigned int ____uint32_t_173;// L41 -typedef signed long int ____int64_t_174;// L43 -typedef unsigned long int ____uint64_t_175;// L44 -typedef long int ____quad_t_176;// L52 -typedef unsigned long int ____u_quad_t_177;// L53 -typedef unsigned long int ____dev_t_178;// L109:L124 -typedef unsigned int ____uid_t_179;// L92:L125 -typedef unsigned int ____gid_t_180;// L92:L126 -typedef unsigned long int ____ino_t_181;// L94:L127 -typedef unsigned long int ____ino64_t_182;// L109:L128 -typedef unsigned int ____mode_t_183;// L92:L129 -typedef unsigned long int ____nlink_t_184;// L94:L130 -typedef long int ____off_t_185;// L93:L131 -typedef long int ____off64_t_186;// L108:L132 -typedef int ____pid_t_187;// L91:L133 -struct ____anonymous_tag_188_189 { -int ____val_190[2];// L72 -}; -typedef struct ____anonymous_tag_188_189 ____fsid_t_191;// L72:L134 -typedef long int ____clock_t_192;// L93:L135 -typedef unsigned long int ____rlim_t_193;// L94:L136 -typedef unsigned long int ____rlim64_t_194;// L109:L137 -typedef unsigned int ____id_t_195;// L92:L138 -typedef long int ____time_t_196;// L93:L139 -typedef unsigned int ____useconds_t_197;// L92:L140 -typedef long int ____suseconds_t_198;// L93:L141 -typedef int ____daddr_t_199;// L91:L143 -typedef int ____key_t_200;// L91:L144 -typedef int ____clockid_t_201;// L91:L147 -typedef void * (____timer_t_202);// L70:L150 -typedef long int ____blksize_t_203;// L93:L153 -typedef long int ____blkcnt_t_204;// L93:L158 -typedef long int ____blkcnt64_t_205;// L108:L159 -typedef unsigned long int ____fsblkcnt_t_206;// L94:L162 -typedef unsigned long int ____fsblkcnt64_t_207;// L109:L163 -typedef unsigned long int ____fsfilcnt_t_208;// L94:L166 -typedef unsigned long int ____fsfilcnt64_t_209;// L109:L167 -typedef long int ____fsword_t_210;// L93:L170 -typedef long int ____ssize_t_211;// L110:L172 -typedef long int ____syscall_slong_t_212;// L93:L175 -typedef unsigned long int ____syscall_ulong_t_213;// L94:L177 -typedef ____off64_t_186 ____loff_t_214;// L181 -typedef ____quad_t_176 * (____qaddr_t_216);// L182 -typedef char * (____caddr_t_217);// L183 -typedef long int ____intptr_t_218;// L110:L186 -typedef unsigned int ____socklen_t_219;// L92:L189 -typedef ____u_char_9 __u_char_220;// L33 -typedef ____u_char_164 __u_char_221;// L33 -typedef ____u_short_10 __u_short_222;// L34 -typedef ____u_short_165 __u_short_223;// L34 -typedef ____u_int_11 __u_int_224;// L35 -typedef ____u_int_166 __u_int_225;// L35 -typedef ____u_long_12 __u_long_226;// L36 -typedef ____u_long_167 __u_long_227;// L36 -typedef ____quad_t_21 __quad_t_228;// L37 -typedef ____quad_t_176 __quad_t_229;// L37 -typedef ____u_quad_t_22 __u_quad_t_230;// L38 -typedef ____u_quad_t_177 __u_quad_t_231;// L38 -typedef ____fsid_t_36 __fsid_t_232;// L39 -typedef ____fsid_t_191 __fsid_t_233;// L39 -typedef ____loff_t_59 __loff_t_235;// L44 -typedef ____loff_t_214 __loff_t_236;// L44 -typedef ____loff_t_59 __loff_t_238;// L44 -typedef ____loff_t_214 __loff_t_239;// L44 -typedef ____ino64_t_27 __ino_t_241;// L50 -typedef ____ino64_t_182 __ino_t_242;// L50 -typedef ____ino_t_26 __ino_t_244;// L48 -typedef ____ino_t_181 __ino_t_245;// L48 -typedef ____dev_t_23 __dev_t_247;// L60 -typedef ____dev_t_178 __dev_t_248;// L60 -typedef ____gid_t_25 __gid_t_250;// L65 -typedef ____gid_t_180 __gid_t_251;// L65 -typedef ____gid_t_25 __gid_t_253;// L65 -typedef ____gid_t_180 __gid_t_254;// L65 -typedef ____mode_t_28 __mode_t_256;// L70 -typedef ____mode_t_183 __mode_t_257;// L70 -typedef ____nlink_t_29 __nlink_t_259;// L75 -typedef ____nlink_t_184 __nlink_t_260;// L75 -typedef ____uid_t_24 __uid_t_262;// L80 -typedef ____uid_t_179 __uid_t_263;// L80 -typedef ____uid_t_24 __uid_t_265;// L80 -typedef ____uid_t_179 __uid_t_266;// L80 -typedef ____off64_t_31 __off_t_268;// L88 -typedef ____off64_t_186 __off_t_269;// L88 -typedef ____off_t_30 __off_t_271;// L86 -typedef ____off_t_185 __off_t_272;// L86 -typedef ____pid_t_32 __pid_t_274;// L98 -typedef ____pid_t_187 __pid_t_275;// L98 -typedef ____pid_t_32 __pid_t_277;// L98 -typedef ____pid_t_187 __pid_t_278;// L98 -typedef ____id_t_40 __id_t_280;// L104 -typedef ____id_t_195 __id_t_281;// L104 -typedef ____ssize_t_56 __ssize_t_283;// L109 -typedef ____ssize_t_211 __ssize_t_284;// L109 -typedef ____daddr_t_44 __daddr_t_286;// L115 -typedef ____daddr_t_199 __daddr_t_287;// L115 -typedef ____caddr_t_62 __caddr_t_289;// L116 -typedef ____caddr_t_217 __caddr_t_290;// L116 -typedef ____key_t_45 __key_t_291;// L122 -typedef ____key_t_200 __key_t_292;// L122 -typedef ____key_t_45 __key_t_294;// L122 -typedef ____key_t_200 __key_t_295;// L122 -typedef ____clock_t_37 __clock_t_297;// L59 -typedef ____clock_t_192 __clock_t_298;// L59 -typedef ____time_t_41 __time_t_300;// L75 -typedef ____time_t_196 __time_t_301;// L75 -typedef ____clockid_t_46 __clockid_t_303;// L91 -typedef ____clockid_t_201 __clockid_t_304;// L91 -typedef ____timer_t_47 __timer_t_306;// L103 -typedef ____timer_t_202 __timer_t_307;// L103 -typedef unsigned long int __ulong_309;// L150 -typedef unsigned long int __ulong_310;// L150 -typedef unsigned long int __ulong_311;// L150 -typedef unsigned short int __ushort_312;// L151 -typedef unsigned int __uint_313;// L152 -typedef int __int8_t_314;// L188:L194 -typedef int __int16_t_315;// L188:L195 -typedef int __int32_t_316;// L188:L196 -typedef int __int64_t_317;// L188:L197 -typedef unsigned int __u_int8_t_318;// L190:L200 -typedef unsigned int __u_int16_t_319;// L190:L201 -typedef unsigned int __u_int32_t_320;// L190:L202 -typedef unsigned int __u_int64_t_321;// L190:L203 -typedef int __register_t_322;// L205 -typedef int ____sig_atomic_t_328;// L22 -struct ____anonymous_tag_329_330 { -unsigned long int ____val_331[( 1024 / ( 8 * sizeof(unsigned long) ) )];// L29 -}; -typedef struct ____anonymous_tag_329_330 ____sigset_t_332;// L27:L30 -typedef ____sigset_t_332 __sigset_t_333;// L37 -struct __timespec_334 { -____time_t_41 __tv_sec_335;// L0 -____time_t_196 __tv_sec_336;// L0 -____syscall_slong_t_57 __tv_nsec_338;// L0 -____syscall_slong_t_212 __tv_nsec_339;// L0 -}; -struct __timeval_342 { -____time_t_41 __tv_sec_343;// L0 -____time_t_196 __tv_sec_344;// L0 -____suseconds_t_43 __tv_usec_346;// L0 -____suseconds_t_198 __tv_usec_347;// L0 -}; -typedef ____suseconds_t_43 __suseconds_t_350;// L48 -typedef ____suseconds_t_198 __suseconds_t_351;// L48 -typedef long int ____fd_mask_353;// L54 -typedef long int ____fd_mask_354;// L54 -struct ____anonymous_tag_355_356 { -____fd_mask_353 ____fds_bits_357[1024 / ( 8 * ( int ) sizeof(long) )];// L0 -____fd_mask_354 ____fds_bits_359[1024 / ( 8 * ( int ) sizeof(long) )];// L0 -}; -typedef struct ____anonymous_tag_355_356 __fd_set_362;// L64:L75 -typedef ____fd_mask_353 __fd_mask_363;// L82 -typedef ____fd_mask_354 __fd_mask_364;// L82 -typedef ____blksize_t_48 __blksize_t_412;// L228 -typedef ____blksize_t_203 __blksize_t_413;// L228 -typedef ____blkcnt_t_49 __blkcnt_t_415;// L235 -typedef ____blkcnt_t_204 __blkcnt_t_416;// L235 -typedef ____fsblkcnt_t_51 __fsblkcnt_t_418;// L239 -typedef ____fsblkcnt_t_206 __fsblkcnt_t_419;// L239 -typedef ____blkcnt64_t_50 __blkcnt_t_421;// L248 -typedef ____blkcnt64_t_205 __blkcnt_t_422;// L248 -typedef ____fsblkcnt64_t_52 __fsblkcnt_t_424;// L252 -typedef ____fsblkcnt64_t_207 __fsblkcnt_t_425;// L252 -typedef ____fsfilcnt_t_53 __fsfilcnt_t_427;// L243 -typedef ____fsfilcnt_t_208 __fsfilcnt_t_428;// L243 -typedef ____fsfilcnt64_t_54 __fsfilcnt_t_430;// L256 -typedef ____fsfilcnt64_t_209 __fsfilcnt_t_431;// L256 -typedef unsigned long int __pthread_t_433;// L60 -union __pthread_attr_t_434 { -char ____size_435[56];// L65 -long int ____align_436;// L66 -}; -typedef union __pthread_attr_t_434 __pthread_attr_t_437;// L69 -struct ____pthread_internal_list_439 { -struct __forward_tag_reference_438 * (____prev_440);// L0 -struct __forward_tag_reference_438 * (____next_441);// L0 -}; -typedef struct ____pthread_internal_list_439 ____pthread_list_t_442;// L75:L79 -typedef struct ____pthread_internal_list_439 ____pthread_list_t_443;// L75:L79 -struct ____pthread_mutex_s_444 { -int ____lock_445;// L94 -unsigned int ____count_446;// L95 -int ____owner_447;// L96 -unsigned int ____nusers_448;// L98 -int ____kind_449;// L102 -short ____spins_450;// L104 -short ____elision_451;// L105 -____pthread_list_t_442 ____list_452;// L0 -____pthread_list_t_443 ____list_453;// L0 -}; -union ____anonymous_tag_454_455 { -struct ____pthread_mutex_s_444 ____data_456;// L92 -char ____size_457[40];// L126 -long int ____align_458;// L127 -}; -typedef union ____anonymous_tag_454_455 __pthread_mutex_t_459;// L90:L128 -union ____anonymous_tag_460_461 { -char ____size_462[4];// L132 -int ____align_463;// L133 -}; -typedef union ____anonymous_tag_460_461 __pthread_mutexattr_t_464;// L130:L134 -typedef int (* (____compar_fn_t_572)) (const void *, const void *);// L741 -typedef unsigned char ____u_char_798;// L30 -typedef unsigned short int ____u_short_799;// L31 -typedef unsigned int ____u_int_800;// L32 -typedef unsigned long int ____u_long_801;// L33 -typedef signed char ____int8_t_802;// L36 -typedef unsigned char ____uint8_t_803;// L37 -typedef signed short int ____int16_t_804;// L38 -typedef unsigned short int ____uint16_t_805;// L39 -typedef signed int ____int32_t_806;// L40 -typedef unsigned int ____uint32_t_807;// L41 -typedef signed long int ____int64_t_808;// L43 -typedef unsigned long int ____uint64_t_809;// L44 -typedef long int ____quad_t_810;// L52 -typedef unsigned long int ____u_quad_t_811;// L53 -typedef unsigned long int ____dev_t_812;// L109:L124 -typedef unsigned int ____uid_t_813;// L92:L125 -typedef unsigned int ____gid_t_814;// L92:L126 -typedef unsigned long int ____ino_t_815;// L94:L127 -typedef unsigned long int ____ino64_t_816;// L109:L128 -typedef unsigned int ____mode_t_817;// L92:L129 -typedef unsigned long int ____nlink_t_818;// L94:L130 -typedef long int ____off_t_819;// L93:L131 -typedef long int ____off64_t_820;// L108:L132 -typedef int ____pid_t_821;// L91:L133 -struct ____anonymous_tag_822_823 { -int ____val_824[2];// L72 -}; -typedef struct ____anonymous_tag_822_823 ____fsid_t_825;// L72:L134 -typedef long int ____clock_t_826;// L93:L135 -typedef unsigned long int ____rlim_t_827;// L94:L136 -typedef unsigned long int ____rlim64_t_828;// L109:L137 -typedef unsigned int ____id_t_829;// L92:L138 -typedef long int ____time_t_830;// L93:L139 -typedef unsigned int ____useconds_t_831;// L92:L140 -typedef long int ____suseconds_t_832;// L93:L141 -typedef int ____daddr_t_833;// L91:L143 -typedef int ____key_t_834;// L91:L144 -typedef int ____clockid_t_835;// L91:L147 -typedef void * (____timer_t_836);// L70:L150 -typedef long int ____blksize_t_837;// L93:L153 -typedef long int ____blkcnt_t_838;// L93:L158 -typedef long int ____blkcnt64_t_839;// L108:L159 -typedef unsigned long int ____fsblkcnt_t_840;// L94:L162 -typedef unsigned long int ____fsblkcnt64_t_841;// L109:L163 -typedef unsigned long int ____fsfilcnt_t_842;// L94:L166 -typedef unsigned long int ____fsfilcnt64_t_843;// L109:L167 -typedef long int ____fsword_t_844;// L93:L170 -typedef long int ____ssize_t_845;// L110:L172 -typedef long int ____syscall_slong_t_846;// L93:L175 -typedef unsigned long int ____syscall_ulong_t_847;// L94:L177 -typedef ____off64_t_820 ____loff_t_848;// L181 -typedef ____quad_t_810 * (____qaddr_t_850);// L182 -typedef char * (____caddr_t_851);// L183 -typedef long int ____intptr_t_852;// L110:L186 -typedef unsigned int ____socklen_t_853;// L92:L189 -enum ____anonymous_tag_871_872 { -___ISupper_859 = ( ( 0 ) < 8 ? ( ( 1 << ( 0 ) ) << 8 ) : ( ( 1 << ( 0 ) ) >> 8 ) ), -___ISlower_860 = ( ( 1 ) < 8 ? ( ( 1 << ( 1 ) ) << 8 ) : ( ( 1 << ( 1 ) ) >> 8 ) ), -___ISalpha_861 = ( ( 2 ) < 8 ? ( ( 1 << ( 2 ) ) << 8 ) : ( ( 1 << ( 2 ) ) >> 8 ) ), -___ISdigit_862 = ( ( 3 ) < 8 ? ( ( 1 << ( 3 ) ) << 8 ) : ( ( 1 << ( 3 ) ) >> 8 ) ), -___ISxdigit_863 = ( ( 4 ) < 8 ? ( ( 1 << ( 4 ) ) << 8 ) : ( ( 1 << ( 4 ) ) >> 8 ) ), -___ISspace_864 = ( ( 5 ) < 8 ? ( ( 1 << ( 5 ) ) << 8 ) : ( ( 1 << ( 5 ) ) >> 8 ) ), -___ISprint_865 = ( ( 6 ) < 8 ? ( ( 1 << ( 6 ) ) << 8 ) : ( ( 1 << ( 6 ) ) >> 8 ) ), -___ISgraph_866 = ( ( 7 ) < 8 ? ( ( 1 << ( 7 ) ) << 8 ) : ( ( 1 << ( 7 ) ) >> 8 ) ), -___ISblank_867 = ( ( 8 ) < 8 ? ( ( 1 << ( 8 ) ) << 8 ) : ( ( 1 << ( 8 ) ) >> 8 ) ), -___IScntrl_868 = ( ( 9 ) < 8 ? ( ( 1 << ( 9 ) ) << 8 ) : ( ( 1 << ( 9 ) ) >> 8 ) ), -___ISpunct_869 = ( ( 10 ) < 8 ? ( ( 1 << ( 10 ) ) << 8 ) : ( ( 1 << ( 10 ) ) >> 8 ) ), -___ISalnum_870 = ( ( 11 ) < 8 ? ( ( 1 << ( 11 ) ) << 8 ) : ( ( 1 << ( 11 ) ) >> 8 ) ), -}; -struct ____locale_struct_900 { -struct __forward_tag_reference_899 * (____locales_901[13]);// L0 -const unsigned short int * (____ctype_b_902);// L33 -const int * (____ctype_tolower_903);// L34 -const int * (____ctype_toupper_904);// L35 -const char * (____names_905[13]);// L38 -}; -typedef struct ____locale_struct_900 * (____locale_t_906);// L27:L39 -typedef ____locale_t_906 __locale_t_907;// L42 -struct __option_938 { -const char * (__name_939);// L106 -int __has_arg_940;// L109 -int * (__flag_941);// L110 -int __val_942;// L111 -}; - -struct __forward_tag_reference_438 { // generated union of struct variations -union { -}; -}; - -struct __forward_tag_reference_899 { // generated union of struct variations -union { -}; -}; - -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -static __inline unsigned int (____bswap_32_66) (unsigned int ____bsx_65) { - -if (__static_condition_default_67) { - -{ -{ - - - -__static_type_error("invalid type found in return expression"); -} -} - - -} -} -static __inline ____uint64_t_20 (____bswap_64_69) (____uint64_t_20 ____bsx_68) { - -if (__static_condition_default_67) { - -{ -{ - - - -__static_type_error("invalid type found in return expression"); -} -} - - -} -} -union __wait_81 ;// L66 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern __size_t_1 (____ctype_get_mb_cur_max_105) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_106) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_107) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_108) (void );// L139 -extern double (__atof_110) (const char * (____nptr_109));// L144:L145 -extern double (__atof_111) (const char * (____nptr_109));// L144:L145 -extern int (__atoi_113) (const char * (____nptr_112));// L147:L148 -extern int (__atoi_114) (const char * (____nptr_112));// L147:L148 -extern long int (__atol_116) (const char * (____nptr_115));// L150:L151 -extern long int (__atol_117) (const char * (____nptr_115));// L150:L151 -extern long long int (__atoll_119) (const char * (____nptr_118));// L157:L158 -extern long long int (__atoll_120) (const char * (____nptr_118));// L157:L158 -extern double (__strtod_123) (const char * __restrict ____nptr_121, char * (* __restrict ____endptr_122));// L164:L166 -extern float (__strtof_126) (const char * __restrict ____nptr_124, char * (* __restrict ____endptr_125));// L172:L173 -extern long double (__strtold_129) (const char * __restrict ____nptr_127, char * (* __restrict ____endptr_128));// L175:L177 -extern long int (__strtol_133) (const char * __restrict ____nptr_130, char * (* __restrict ____endptr_131), int ____base_132);// L183:L185 -extern unsigned long int (__strtoul_137) (const char * __restrict ____nptr_134, char * (* __restrict ____endptr_135), int ____base_136);// L187:L189 -extern long long int (__strtoq_141) (const char * __restrict ____nptr_138, char * (* __restrict ____endptr_139), int ____base_140);// L195:L197 -extern unsigned long long int (__strtouq_145) (const char * __restrict ____nptr_142, char * (* __restrict ____endptr_143), int ____base_144);// L200:L202 -extern long long int (__strtoll_149) (const char * __restrict ____nptr_146, char * (* __restrict ____endptr_147), int ____base_148);// L209:L211 -extern long long int (__strtoll_150) (const char * __restrict ____nptr_146, char * (* __restrict ____endptr_147), int ____base_148);// L209:L211 -extern unsigned long long int (__strtoull_154) (const char * __restrict ____nptr_151, char * (* __restrict ____endptr_152), int ____base_153);// L214:L216 -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -__extension__/* no function due to type errors in the function prototype */ -extern char * ((__l64a_159) (long int ____n_158));// L305 -extern char * ((__l64a_160) (long int ____n_158));// L305 -extern long int (__a64l_162) (const char * (____s_161));// L308:L309 -extern long int (__a64l_163) (const char * (____s_161));// L308:L309 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -static __inline unsigned int (____bswap_32_324) (unsigned int ____bsx_323) { - -if (__static_condition_default_325) { - -{ -{ - - - -__static_type_error("invalid type found in return expression"); -} -} - - -} -} -static __inline ____uint64_t_175 (____bswap_64_327) (____uint64_t_175 ____bsx_326) { - -if (__static_condition_default_325) { - -{ -{ - - - -__static_type_error("invalid type found in return expression"); -} -} - - -} -} -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -struct __timespec_334 ;// L120 - -struct __timeval_342 ;// L30 - -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern int (__select_376) (int ____nfds_365, __fd_set_362 * __restrict ____readfds_366, __fd_set_362 * __restrict ____writefds_368, __fd_set_362 * __restrict ____exceptfds_370, struct __timeval_342 * __restrict ____timeout_373);// L106:L109 -extern int (__select_377) (int ____nfds_365, __fd_set_362 * __restrict ____readfds_366, __fd_set_362 * __restrict ____writefds_368, __fd_set_362 * __restrict ____exceptfds_370, struct __forward_tag_reference_372 * __restrict ____timeout_375);// L106:L109 -extern int (__pselect_392) (int ____nfds_380, __fd_set_362 * __restrict ____readfds_381, __fd_set_362 * __restrict ____writefds_383, __fd_set_362 * __restrict ____exceptfds_385, const struct __timespec_334 * __restrict ____timeout_388, const ____sigset_t_332 * __restrict ____sigmask_391);// L118:L122 -extern int (__pselect_393) (int ____nfds_380, __fd_set_362 * __restrict ____readfds_381, __fd_set_362 * __restrict ____writefds_383, __fd_set_362 * __restrict ____exceptfds_385, const struct __forward_tag_reference_387 * __restrict ____timeout_390, const ____sigset_t_332 * __restrict ____sigmask_391);// L118:L122 -extern long int (____fdelt_chk_397) (long int ____d_396);// L24 -extern long int (____fdelt_warn_399) (long int ____d_398);// L25:L26 -extern unsigned int (__gnu_dev_major_401) (unsigned long long int ____dev_400);// L27:L28 -extern unsigned int (__gnu_dev_major_402) (unsigned long long int ____dev_400);// L27:L28 -extern unsigned int (__gnu_dev_minor_404) (unsigned long long int ____dev_403);// L30:L31 -extern unsigned long long int (__gnu_dev_makedev_407) (unsigned int ____major_405, unsigned int ____minor_406);// L33:L35 -__extension__/* no function due to type errors in the function prototype */ -__extension__/* no function due to type errors in the function prototype */ -__extension__/* no function due to type errors in the function prototype */ -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -union __pthread_attr_t_434 ;// L63 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern int (__rand_465) (void );// L374 -extern void (__srand_467) (unsigned int ____seed_466);// L376 -extern int (__rand_r_469) (unsigned int * (____seed_468));// L381 -extern double (__drand48_470) (void );// L389 -extern double (__erand48_472) (unsigned short int ____xsubi_471[3]);// L390 -extern long int (__lrand48_473) (void );// L393 -extern long int (__nrand48_475) (unsigned short int ____xsubi_474[3]);// L394:L395 -extern long int (__mrand48_476) (void );// L398 -extern long int (__jrand48_478) (unsigned short int ____xsubi_477[3]);// L399:L400 -extern void (__srand48_480) (long int ____seedval_479);// L403 -extern unsigned short int * ((__seed48_482) (unsigned short int ____seed16v_481[3]));// L404:L405 -extern void (__lcong48_484) (unsigned short int ____param_483[7]);// L406 -extern void * ((__malloc_486) (__size_t_1 ____size_485));// L466 -extern void * ((__malloc_487) (__size_t_1 ____size_485));// L466 -extern void * ((__calloc_490) (__size_t_1 ____nmemb_488, __size_t_1 ____size_489));// L468:L469 -extern void * ((__calloc_491) (__size_t_1 ____nmemb_488, __size_t_1 ____size_489));// L468:L469 -extern void * ((__realloc_494) (void * (____ptr_492), __size_t_1 ____size_493));// L480:L481 -extern void (__free_496) (void * (____ptr_495));// L483 -extern void (__cfree_498) (void * (____ptr_497));// L488 -extern void * ((__alloca_500) (__size_t_1 ____size_499));// L32 -extern void * ((__valloc_502) (__size_t_1 ____size_501));// L498 -extern void * ((__valloc_503) (__size_t_1 ____size_501));// L498 -extern int (__posix_memalign_507) (void * (* (____memptr_504)), __size_t_1 ____alignment_505, __size_t_1 ____size_506);// L503:L504 -extern int (__posix_memalign_508) (void * (* (____memptr_504)), __size_t_1 ____alignment_505, __size_t_1 ____size_506);// L503:L504 -extern void * ((__aligned_alloc_511) (__size_t_1 ____alignment_509, __size_t_1 ____size_510));// L509:L510 -extern void * ((__aligned_alloc_512) (__size_t_1 ____alignment_509, __size_t_1 ____size_510));// L509:L510 -extern void * ((__aligned_alloc_513) (__size_t_1 ____alignment_509, __size_t_1 ____size_510));// L509:L510 -extern void * ((__aligned_alloc_514) (__size_t_1 ____alignment_509, __size_t_1 ____size_510));// L509:L510 -extern void (__abort_515) (void );// L515 -extern int (__atexit_517) (void (* (____func_516)) (void ));// L519 -extern int (__at_quick_exit_519) (void (* (____func_518)) (void ));// L527 -extern int (__on_exit_524) (void (* (____func_522)) (int ____status_520, void * (____arg_521)), void * (____arg_523));// L535:L536 -extern void (__exit_526) (int ____status_525);// L543 -extern void (__exit_527) (int ____status_525);// L543 -extern void (__quick_exit_529) (int ____status_528);// L549 -extern void (___Exit_531) (int ____status_530);// L557 -extern char * ((__getenv_533) (const char * (____name_532)));// L564 -extern char * ((__getenv_534) (const char * (____name_532)));// L564 -extern int (__putenv_536) (char * (____string_535));// L578 -extern int (__setenv_540) (const char * (____name_537), const char * (____value_538), int ____replace_539);// L584:L585 -extern int (__unsetenv_542) (const char * (____name_541));// L588 -extern int (__clearenv_543) (void );// L595 -extern char * ((__mktemp_545) (char * (____template_544)));// L606 -extern int (__mkstemp_548) (char * (____template_546));// L619 -extern int (__mkstemp_550) (char * (____template_546));// L619 -extern int (__mkstemp_549) (char * (____template_547));// L622:L623 -extern int (__mkstemp_551) (char * (____template_547));// L622:L623 -extern int (__mkstemps_556) (char * (____template_552), int ____suffixlen_553);// L641 -extern int (__mkstemps_557) (char * (____template_554), int ____suffixlen_555);// L644:L645 -extern int (__mkstemps_558) (char * (____template_552), int ____suffixlen_553);// L641 -extern int (__mkstemps_559) (char * (____template_554), int ____suffixlen_555);// L644:L645 -extern char * ((__mkdtemp_561) (char * (____template_560)));// L662 -extern char * ((__mkdtemp_562) (char * (____template_560)));// L662 -extern int (__system_564) (const char * (____command_563));// L716 -extern int (__system_565) (const char * (____command_563));// L716 -extern int (__system_566) (const char * (____command_563));// L716 -extern int (__system_567) (const char * (____command_563));// L716 -extern char * ((__realpath_570) (const char * __restrict ____name_568, char * __restrict ____resolved_569));// L733:L734 -extern char * ((__realpath_571) (const char * __restrict ____name_568, char * __restrict ____resolved_569));// L733:L734 -// typedef moved to top of scope -extern void * ((__bsearch_580) (const void * (____key_573), const void * (____base_574), __size_t_1 ____nmemb_575, __size_t_1 ____size_576, ____compar_fn_t_572 ____compar_577));// L754:L756 -extern void * ((__bsearch_582) (const void * (____key_573), const void * (____base_574), __size_t_1 ____nmemb_575, __size_t_1 ____size_576, ____compar_fn_t_572 ____compar_577));// L754:L756 -/* no function due to type errors in the function prototype */ -extern void (__qsort_601) (void * (____base_596), __size_t_1 ____nmemb_597, __size_t_1 ____size_598, ____compar_fn_t_572 ____compar_599);// L764:L765 -extern void (__qsort_603) (void * (____base_596), __size_t_1 ____nmemb_597, __size_t_1 ____size_598, ____compar_fn_t_572 ____compar_599);// L764:L765 -extern int (__abs_606) (int ____x_605);// L774 -extern int (__abs_607) (int ____x_605);// L774 -extern long int (__labs_609) (long int ____x_608);// L775 -extern long int (__labs_610) (long int ____x_608);// L775 -extern long long int (__llabs_612) (long long int ____x_611);// L779:L780 -extern long long int (__llabs_613) (long long int ____x_611);// L779:L780 -extern __div_t_94 (__div_616) (int ____numer_614, int ____denom_615);// L788:L789 -extern __div_t_94 (__div_617) (int ____numer_614, int ____denom_615);// L788:L789 -extern __ldiv_t_99 (__ldiv_620) (long int ____numer_618, long int ____denom_619);// L790:L791 -extern __ldiv_t_99 (__ldiv_622) (long int ____numer_618, long int ____denom_619);// L790:L791 -extern __lldiv_t_104 (__lldiv_626) (long long int ____numer_624, long long int ____denom_625);// L796:L798 -extern __lldiv_t_104 (__lldiv_628) (long long int ____numer_624, long long int ____denom_625);// L796:L798 -extern char * ((__ecvt_634) (double ____value_630, int ____ndigit_631, int * __restrict ____decpt_632, int * __restrict ____sign_633));// L811:L812 -extern char * ((__ecvt_635) (double ____value_630, int ____ndigit_631, int * __restrict ____decpt_632, int * __restrict ____sign_633));// L811:L812 -extern char * ((__fcvt_640) (double ____value_636, int ____ndigit_637, int * __restrict ____decpt_638, int * __restrict ____sign_639));// L817:L818 -extern char * ((__fcvt_641) (double ____value_636, int ____ndigit_637, int * __restrict ____decpt_638, int * __restrict ____sign_639));// L817:L818 -extern char * ((__gcvt_645) (double ____value_642, int ____ndigit_643, char * (____buf_644)));// L823:L824 -extern char * ((__gcvt_646) (double ____value_642, int ____ndigit_643, char * (____buf_644)));// L823:L824 -extern char * ((__qecvt_651) (long double ____value_647, int ____ndigit_648, int * __restrict ____decpt_649, int * __restrict ____sign_650));// L829:L831 -extern char * ((__qecvt_652) (long double ____value_647, int ____ndigit_648, int * __restrict ____decpt_649, int * __restrict ____sign_650));// L829:L831 -extern char * ((__qfcvt_657) (long double ____value_653, int ____ndigit_654, int * __restrict ____decpt_655, int * __restrict ____sign_656));// L832:L834 -extern char * ((__qfcvt_658) (long double ____value_653, int ____ndigit_654, int * __restrict ____decpt_655, int * __restrict ____sign_656));// L832:L834 -extern char * ((__qgcvt_662) (long double ____value_659, int ____ndigit_660, char * (____buf_661)));// L835:L836 -extern char * ((__qgcvt_663) (long double ____value_659, int ____ndigit_660, char * (____buf_661)));// L835:L836 -extern int (__ecvt_r_670) (double ____value_664, int ____ndigit_665, int * __restrict ____decpt_666, int * __restrict ____sign_667, char * __restrict ____buf_668, __size_t_1 ____len_669);// L841:L843 -extern int (__fcvt_r_677) (double ____value_671, int ____ndigit_672, int * __restrict ____decpt_673, int * __restrict ____sign_674, char * __restrict ____buf_675, __size_t_1 ____len_676);// L844:L846 -extern int (__qecvt_r_684) (long double ____value_678, int ____ndigit_679, int * __restrict ____decpt_680, int * __restrict ____sign_681, char * __restrict ____buf_682, __size_t_1 ____len_683);// L848:L851 -extern int (__qfcvt_r_691) (long double ____value_685, int ____ndigit_686, int * __restrict ____decpt_687, int * __restrict ____sign_688, char * __restrict ____buf_689, __size_t_1 ____len_690);// L852:L855 -extern int (__mblen_694) (const char * (____s_692), __size_t_1 ____n_693);// L862 -extern int (__mblen_695) (const char * (____s_692), __size_t_1 ____n_693);// L862 -extern int (__mbtowc_699) (__wchar_t_2 * __restrict ____pwc_696, const char * __restrict ____s_697, __size_t_1 ____n_698);// L865:L866 -extern int (__wctomb_702) (char * (____s_700), __wchar_t_2 ____wchar_701);// L869 -extern __size_t_1 (__mbstowcs_706) (__wchar_t_2 * __restrict ____pwcs_703, const char * __restrict ____s_704, __size_t_1 ____n_705);// L873:L874 -extern __size_t_1 (__wcstombs_710) (char * __restrict ____s_707, const __wchar_t_2 * __restrict ____pwcs_708, __size_t_1 ____n_709);// L876:L878 -extern int (__rpmatch_713) (const char * (____response_711));// L887 -extern int (__rpmatch_712) (const char * (____response_711));// L887 -extern int (__getsubopt_718) (char * (* __restrict ____optionp_714), char * const * __restrict ____tokens_715, char * (* __restrict ____valuep_716));// L898:L901 -extern int (__getsubopt_717) (char * (* __restrict ____optionp_714), char * const * __restrict ____tokens_715, char * (* __restrict ____valuep_716));// L898:L901 -extern int (__getloadavg_721) (double ____loadavg_719[], int ____nelem_720);// L950:L951 -/* no function due to type errors in the function prototype */ -extern char * ((____realpath_chk_726) (const char * __restrict ____name_723, char * __restrict ____resolved_724, __size_t_1 ____resolvedlen_725));// L23:L25 -extern char * ((____realpath_alias_729) (const char * __restrict ____name_727, char * __restrict ____resolved_728));// L26:L28 -extern char * ((____realpath_chk_warn_733) (const char * __restrict ____name_730, char * __restrict ____resolved_731, __size_t_1 ____resolvedlen_732));// L29:L34 -/* no function due to type errors in the function prototype */ -extern int (____ptsname_r_chk_741) (int ____fd_737, char * (____buf_738), __size_t_1 ____buflen_739, __size_t_1 ____nreal_740);// L52:L53 -extern int (____ptsname_r_alias_745) (int ____fd_742, char * (____buf_743), __size_t_1 ____buflen_744);// L54:L56 -extern int (____ptsname_r_chk_warn_750) (int ____fd_746, char * (____buf_747), __size_t_1 ____buflen_748, __size_t_1 ____nreal_749);// L57:L61 -/* no function due to type errors in the function prototype */ -extern int (____wctomb_chk_758) (char * (____s_755), __wchar_t_2 ____wchar_756, __size_t_1 ____buflen_757);// L77:L78 -extern int (____wctomb_alias_761) (char * (____s_759), __wchar_t_2 ____wchar_760);// L79:L80 -/* no function due to type errors in the function prototype */ -extern __size_t_1 (____mbstowcs_chk_768) (__wchar_t_2 * __restrict ____dst_764, const char * __restrict ____src_765, __size_t_1 ____len_766, __size_t_1 ____dstlen_767);// L98:L100 -extern __size_t_1 (____mbstowcs_alias_772) (__wchar_t_2 * __restrict ____dst_769, const char * __restrict ____src_770, __size_t_1 ____len_771);// L101:L104 -extern __size_t_1 (____mbstowcs_chk_warn_777) (__wchar_t_2 * __restrict ____dst_773, const char * __restrict ____src_774, __size_t_1 ____len_775, __size_t_1 ____dstlen_776);// L105:L110 -/* no function due to type errors in the function prototype */ -extern __size_t_1 (____wcstombs_chk_785) (char * __restrict ____dst_781, const __wchar_t_2 * __restrict ____src_782, __size_t_1 ____len_783, __size_t_1 ____dstlen_784);// L130:L132 -extern __size_t_1 (____wcstombs_alias_789) (char * __restrict ____dst_786, const __wchar_t_2 * __restrict ____src_787, __size_t_1 ____len_788);// L133:L136 -extern __size_t_1 (____wcstombs_chk_warn_794) (char * __restrict ____dst_790, const __wchar_t_2 * __restrict ____src_791, __size_t_1 ____len_792, __size_t_1 ____dstlen_793);// L137:L141 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -static __inline unsigned int (____bswap_32_855) (unsigned int ____bsx_854) { - -if (__static_condition_default_856) { - -{ -{ - - - -__static_type_error("invalid type found in return expression"); -} -} - - -} -} -static __inline ____uint64_t_809 (____bswap_64_858) (____uint64_t_809 ____bsx_857) { - -if (__static_condition_default_856) { - -{ -{ - - - -__static_type_error("invalid type found in return expression"); -} -} - - -} -} -enum ____anonymous_tag_871_872 ;// L46 -extern const unsigned short int * (* ((____ctype_b_loc_873) (void )));// L79:L80 -extern const unsigned short int * (* ((____ctype_b_loc_874) (void )));// L79:L80 -extern const ____int32_t_806 * (* ((____ctype_tolower_loc_875) (void )));// L81:L82 -extern const ____int32_t_806 * (* ((____ctype_toupper_loc_876) (void )));// L83:L84 -extern int (__isalnum_877) (int );// L102:L110 -extern int (__isalpha_878) (int );// L102:L111 -extern int (__iscntrl_879) (int );// L102:L112 -extern int (__isdigit_880) (int );// L102:L113 -extern int (__islower_881) (int );// L102:L114 -extern int (__isgraph_882) (int );// L102:L115 -extern int (__isprint_883) (int );// L102:L116 -extern int (__ispunct_884) (int );// L102:L117 -extern int (__isspace_885) (int );// L102:L118 -extern int (__isupper_886) (int );// L102:L119 -extern int (__isxdigit_887) (int );// L102:L120 -extern int (__tolower_889) (int ____c_888);// L124 -extern int (__toupper_891) (int ____c_890);// L127 -extern int (__isblank_892) (int );// L102:L136 -extern int (__isascii_894) (int ____c_893);// L150 -extern int (__toascii_896) (int ____c_895);// L154 -extern int (___toupper_897) (int );// L102:L158 -extern int (___tolower_898) (int );// L102:L159 -// typedef moved to top of scope -// typedef moved to top of scope -extern int (__isalnum_l_908) (int , ____locale_t_906 );// L265:L271 -extern int (__isalpha_l_909) (int , ____locale_t_906 );// L265:L272 -extern int (__iscntrl_l_910) (int , ____locale_t_906 );// L265:L273 -extern int (__isdigit_l_911) (int , ____locale_t_906 );// L265:L274 -extern int (__islower_l_912) (int , ____locale_t_906 );// L265:L275 -extern int (__isgraph_l_913) (int , ____locale_t_906 );// L265:L276 -extern int (__isprint_l_914) (int , ____locale_t_906 );// L265:L277 -extern int (__ispunct_l_915) (int , ____locale_t_906 );// L265:L278 -extern int (__isspace_l_916) (int , ____locale_t_906 );// L265:L279 -extern int (__isupper_l_917) (int , ____locale_t_906 );// L265:L280 -extern int (__isxdigit_l_918) (int , ____locale_t_906 );// L265:L281 -extern int (__isblank_l_919) (int , ____locale_t_906 );// L265:L283 -extern int (____tolower_l_922) (int ____c_920, ____locale_t_906 ____l_921);// L287 -extern int (__tolower_l_925) (int ____c_923, ____locale_t_906 ____l_924);// L288 -extern int (____toupper_l_928) (int ____c_926, ____locale_t_906 ____l_927);// L291 -extern int (__toupper_l_931) (int ____c_929, ____locale_t_906 ____l_930);// L292 -/* no function due to type errors in the function prototype */ -extern char * (__optarg_932);// L57 -extern char * (__optarg_933);// L57 -extern char * (__optarg_934);// L57 -extern int __optind_935;// L71 -extern int __opterr_936;// L76 -extern int __optopt_937;// L80 -struct __option_938 ;// L104 -extern int (__getopt_946) (int _____argc_943, char * const * (_____argv_944), const char * (____shortopts_945));// L150:L151 -extern int (__getopt_947) (int _____argc_943, char * const * (_____argv_944), const char * (____shortopts_945));// L150:L151 -extern int (__getopt_long_953) (int _____argc_948, char * const * (_____argv_949), const char * (____shortopts_950), const struct __option_938 * (____longopts_951), int * (____longind_952));// L173:L176 -extern int (__getopt_long_954) (int _____argc_948, char * const * (_____argv_949), const char * (____shortopts_950), const struct __option_938 * (____longopts_951), int * (____longind_952));// L173:L176 -extern int (__getopt_long_only_960) (int _____argc_955, char * const * (_____argv_956), const char * (____shortopts_957), const struct __option_938 * (____longopts_958), int * (____longind_959));// L177:L180 -extern int (__getopt_long_only_961) (int _____argc_955, char * const * (_____argv_956), const char * (____shortopts_957), const struct __option_938 * (____longopts_958), int * (____longind_959));// L177:L180 -int (__main_968) (int __argc_962, char * (* (__argv_963))) { - -{ -if (__static_condition_default_969) { - -{ -{ - - - -char * (__buf_964);// L6 - -int __bufsize_965= 8196;// L7 - -int __i_966;// L8 - -int __cmd_967= 3;// L9 - -__static_type_error("invalid type found in while statement"); -if ( __cmd_967 == 8 )// L22 -{ - -{ -{ - - - - -{ -goto all_done_0; -} -} -} -} -if (__static_condition_default_970) { - __buf_964 = malloc ( __bufsize_965 ) ; // L26 -} -if (__static_condition_default_971) { - __buf_964 = malloc ( __bufsize_965 ) ; // L26 -} -if (__static_condition_default_972) { -__static_type_error("type error") ; // L26 -} - -all_done_0: -{ -if ( __buf_964 )// L30 -{ - -{ -{ - - - -if (__static_condition_default_973) { -free ( __buf_964 ) ; // L31 -} -if (__static_condition_default_974) { -__static_type_error("type error") ; // L31 -} -} -} -} -} -return 0 ;// L34 -} -} - - -} - -if (__static_condition_default_975) { - -{ -{ - - - -char * (__buf_964);// L6 - -int __bufsize_965= 8196;// L7 - -int __i_966;// L8 - -int __cmd_967= 3;// L9 - -__static_type_error("invalid type found in while statement"); -if ( __cmd_967 == 8 )// L22 -{ - -{ -{ - - - - -{ -goto all_done_1; -} -} -} -} -if (__static_condition_default_976) { - __buf_964 = malloc ( __bufsize_965 ) ; // L26 -} -if (__static_condition_default_977) { - __buf_964 = malloc ( __bufsize_965 ) ; // L26 -} -if (__static_condition_default_978) { -__static_type_error("type error") ; // L26 -} - -all_done_1: -{ -return 0 ;// L34 -} -} -} - - -} - -}} - diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.clangres index 26a23e1a..3c0ac53a 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.clangres @@ -1,19 +1,4 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c:1687:5: warning: Potential leak of memory pointed to by '__buf_964' [unix.Malloc] -if (__static_condition_default_972) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c:1693:7: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] -if ( __buf_964 )// L30 - ^~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c:1704:5: warning: Potential leak of memory pointed to by '__buf_964' [unix.Malloc] -if (__static_condition_default_974) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c:1750:2: warning: Value stored to '__buf_964' is never read [deadcode.DeadStores] - __buf_964 = malloc ( __bufsize_965 ) ; // L26 - ^ ~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c:1753:2: warning: Value stored to '__buf_964' is never read [deadcode.DeadStores] - __buf_964 = malloc ( __bufsize_965 ) ; // L26 - ^ ~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c:1755:5: warning: Potential leak of memory pointed to by '__buf_964' [unix.Malloc] -if (__static_condition_default_978) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -6 warnings generated. +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c:76:7: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] +if ( __buf_27 )// L30 + ^~~~~~~~ +1 warning generated. diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.inferres index 4bae94cb..2b5e0fcd 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.inferres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.inferres @@ -1,33 +1,24 @@ -BUSYBOX/eef2317b9f5.desugared.c:1750: error: Dead Store - The value written to &__buf_964 (type char*) is never used. - 1748. } - 1749. if (__static_condition_default_976) { - 1750. __buf_964 = malloc ( __bufsize_965 ) ; // L26 - ^ - 1751. } - 1752. if (__static_condition_default_977) { +BUSYBOX/eef2317b9f5.desugared.c:50: error: Dead Store + The value written to &__bufsize_28 (type int) is never used. + 48. char * (__buf_27);// L6 + 49. + 50. int __bufsize_28= 8196;// L7 + ^ + 51. + 52. int __i_29;// L8 -BUSYBOX/eef2317b9f5.desugared.c:1753: error: Dead Store - The value written to &__buf_964 (type char*) is never used. - 1751. } - 1752. if (__static_condition_default_977) { - 1753. __buf_964 = malloc ( __bufsize_965 ) ; // L26 - ^ - 1754. } - 1755. if (__static_condition_default_978) { +BUSYBOX/eef2317b9f5.desugared.c:76: error: Uninitialized Value + The value read from __buf_27 was never initialized. + 74. all_done_0: + 75. { + 76. if ( __buf_27 )// L30 + ^ + 77. { + 78. -BUSYBOX/eef2317b9f5.desugared.c:1693: error: Uninitialized Value - The value read from __buf_964 was never initialized. - 1691. all_done_0: - 1692. { - 1693. if ( __buf_964 )// L30 - ^ - 1694. { - 1695. - -Found 3 issues +Found 2 issues Issue Type(ISSUED_TYPE_ID): # - Dead Store(DEAD_STORE): 2 Uninitialized Value(UNINITIALIZED_VALUE): 1 + Dead Store(DEAD_STORE): 1 diff --git a/fonda/cpp_testsuite/varBugs/LINUX-0988c4c7fb5.report b/fonda/cpp_testsuite/varBugs/LINUX-0988c4c7fb5.report new file mode 100644 index 00000000..5a71fd33 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX-0988c4c7fb5.report @@ -0,0 +1,10 @@ +LINUX 0988c4c7fb5.c +Macros: + CONFIG_VLAN_8021Q + CONFIG_RPS +[-UCONFIG_VLAN_8021Q -UCONFIG_RPS ] +[-DCONFIG_VLAN_8021Q=1 -UCONFIG_RPS ] +[-UCONFIG_VLAN_8021Q -DCONFIG_RPS=1 ] +[-DCONFIG_VLAN_8021Q=1 -DCONFIG_RPS=1 ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-0dc77b6dabe.report b/fonda/cpp_testsuite/varBugs/LINUX-0dc77b6dabe.report new file mode 100644 index 00000000..146ff099 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX-0dc77b6dabe.report @@ -0,0 +1,24 @@ +LINUX 0dc77b6dabe.c +Macros: + CONFIG_ANDROID + CONFIG_SYSFS + CONFIG_EXTCON + defined +[-UCONFIG_ANDROID -UCONFIG_SYSFS -UCONFIG_EXTCON -Udefined ] +[-DCONFIG_ANDROID=1 -UCONFIG_SYSFS -UCONFIG_EXTCON -Udefined ] +[-UCONFIG_ANDROID -DCONFIG_SYSFS=1 -UCONFIG_EXTCON -Udefined ] +[-DCONFIG_ANDROID=1 -DCONFIG_SYSFS=1 -UCONFIG_EXTCON -Udefined ] +[-UCONFIG_ANDROID -UCONFIG_SYSFS -DCONFIG_EXTCON=1 -Udefined ] +[-DCONFIG_ANDROID=1 -UCONFIG_SYSFS -DCONFIG_EXTCON=1 -Udefined ] +[-UCONFIG_ANDROID -DCONFIG_SYSFS=1 -DCONFIG_EXTCON=1 -Udefined ] +[-DCONFIG_ANDROID=1 -DCONFIG_SYSFS=1 -DCONFIG_EXTCON=1 -Udefined ] +[-UCONFIG_ANDROID -UCONFIG_SYSFS -UCONFIG_EXTCON -Ddefined=1 ] +[-DCONFIG_ANDROID=1 -UCONFIG_SYSFS -UCONFIG_EXTCON -Ddefined=1 ] +[-UCONFIG_ANDROID -DCONFIG_SYSFS=1 -UCONFIG_EXTCON -Ddefined=1 ] +[-DCONFIG_ANDROID=1 -DCONFIG_SYSFS=1 -UCONFIG_EXTCON -Ddefined=1 ] +[-UCONFIG_ANDROID -UCONFIG_SYSFS -DCONFIG_EXTCON=1 -Ddefined=1 ] +[-DCONFIG_ANDROID=1 -UCONFIG_SYSFS -DCONFIG_EXTCON=1 -Ddefined=1 ] +[-UCONFIG_ANDROID -DCONFIG_SYSFS=1 -DCONFIG_EXTCON=1 -Ddefined=1 ] +[-DCONFIG_ANDROID=1 -DCONFIG_SYSFS=1 -DCONFIG_EXTCON=1 -Ddefined=1 ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-0f8f8094d28.report b/fonda/cpp_testsuite/varBugs/LINUX-0f8f8094d28.report new file mode 100644 index 00000000..7d5e3b1b --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX-0f8f8094d28.report @@ -0,0 +1,34 @@ +LINUX 0f8f8094d28.c +Macros: + CONFIG_FORCE_MAX_ZONEORDER + defined + CONFIG_SLAB + CONFIG_SLOB + CONFIG_LOCKDEP +[-UCONFIG_FORCE_MAX_ZONEORDER -Udefined -UCONFIG_SLAB -UCONFIG_SLOB -UCONFIG_LOCKDEP ] +[-DCONFIG_FORCE_MAX_ZONEORDER=1 -Udefined -UCONFIG_SLAB -UCONFIG_SLOB -UCONFIG_LOCKDEP ] +[-UCONFIG_FORCE_MAX_ZONEORDER -Ddefined=1 -UCONFIG_SLAB -UCONFIG_SLOB -UCONFIG_LOCKDEP ] +[-DCONFIG_FORCE_MAX_ZONEORDER=1 -Ddefined=1 -UCONFIG_SLAB -UCONFIG_SLOB -UCONFIG_LOCKDEP ] +[-UCONFIG_FORCE_MAX_ZONEORDER -Udefined -DCONFIG_SLAB=1 -UCONFIG_SLOB -UCONFIG_LOCKDEP ] +[-DCONFIG_FORCE_MAX_ZONEORDER=1 -Udefined -DCONFIG_SLAB=1 -UCONFIG_SLOB -UCONFIG_LOCKDEP ] +[-UCONFIG_FORCE_MAX_ZONEORDER -Ddefined=1 -DCONFIG_SLAB=1 -UCONFIG_SLOB -UCONFIG_LOCKDEP ] +[-DCONFIG_FORCE_MAX_ZONEORDER=1 -Ddefined=1 -DCONFIG_SLAB=1 -UCONFIG_SLOB -UCONFIG_LOCKDEP ] +[-UCONFIG_FORCE_MAX_ZONEORDER -Udefined -UCONFIG_SLAB -DCONFIG_SLOB=1 -UCONFIG_LOCKDEP ] +[-DCONFIG_FORCE_MAX_ZONEORDER=1 -Udefined -UCONFIG_SLAB -DCONFIG_SLOB=1 -UCONFIG_LOCKDEP ] +[-UCONFIG_FORCE_MAX_ZONEORDER -Ddefined=1 -UCONFIG_SLAB -DCONFIG_SLOB=1 -UCONFIG_LOCKDEP ] +[-DCONFIG_FORCE_MAX_ZONEORDER=1 -Ddefined=1 -UCONFIG_SLAB -DCONFIG_SLOB=1 -UCONFIG_LOCKDEP ] +[-UCONFIG_FORCE_MAX_ZONEORDER -Udefined -DCONFIG_SLAB=1 -DCONFIG_SLOB=1 -UCONFIG_LOCKDEP ] +[-DCONFIG_FORCE_MAX_ZONEORDER=1 -Udefined -DCONFIG_SLAB=1 -DCONFIG_SLOB=1 -UCONFIG_LOCKDEP ] +[-UCONFIG_FORCE_MAX_ZONEORDER -Ddefined=1 -DCONFIG_SLAB=1 -DCONFIG_SLOB=1 -UCONFIG_LOCKDEP ] +[-DCONFIG_FORCE_MAX_ZONEORDER=1 -Ddefined=1 -DCONFIG_SLAB=1 -DCONFIG_SLOB=1 -UCONFIG_LOCKDEP ] +[-UCONFIG_FORCE_MAX_ZONEORDER -Udefined -UCONFIG_SLAB -UCONFIG_SLOB -DCONFIG_LOCKDEP=1 ] +[-DCONFIG_FORCE_MAX_ZONEORDER=1 -Udefined -UCONFIG_SLAB -UCONFIG_SLOB -DCONFIG_LOCKDEP=1 ] +[-UCONFIG_FORCE_MAX_ZONEORDER -Ddefined=1 -UCONFIG_SLAB -UCONFIG_SLOB -DCONFIG_LOCKDEP=1 ] +[-DCONFIG_FORCE_MAX_ZONEORDER=1 -Ddefined=1 -UCONFIG_SLAB -UCONFIG_SLOB -DCONFIG_LOCKDEP=1 ] +[-UCONFIG_FORCE_MAX_ZONEORDER -Udefined -DCONFIG_SLAB=1 -UCONFIG_SLOB -DCONFIG_LOCKDEP=1 ] +[-DCONFIG_FORCE_MAX_ZONEORDER=1 -Udefined -DCONFIG_SLAB=1 -UCONFIG_SLOB -DCONFIG_LOCKDEP=1 ] +[-UCONFIG_FORCE_MAX_ZONEORDER -Ddefined=1 -DCONFIG_SLAB=1 -UCONFIG_SLOB -DCONFIG_LOCKDEP=1 ] +[-DCONFIG_FORCE_MAX_ZONEORDER=1 -Ddefined=1 -DCONFIG_SLAB=1 -UCONFIG_SLOB -DCONFIG_LOCKDEP=1 ] +[-UCONFIG_FORCE_MAX_ZONEORDER -Udefined -UCONFIG_SLAB -DCONFIG_SLOB=1 -DCONFIG_LOCKDEP=1 ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-1c17e4d4437.report b/fonda/cpp_testsuite/varBugs/LINUX-1c17e4d4437.report new file mode 100644 index 00000000..cd89a655 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX-1c17e4d4437.report @@ -0,0 +1,10 @@ +LINUX 1c17e4d4437.c +Macros: + CONFIG_RCU_CPU_STALL_INFO + CONFIG_RCU_FAST_NO_HZ +[-UCONFIG_RCU_CPU_STALL_INFO -UCONFIG_RCU_FAST_NO_HZ ] +[-DCONFIG_RCU_CPU_STALL_INFO=1 -UCONFIG_RCU_FAST_NO_HZ ] +[-UCONFIG_RCU_CPU_STALL_INFO -DCONFIG_RCU_FAST_NO_HZ=1 ] +[-DCONFIG_RCU_CPU_STALL_INFO=1 -DCONFIG_RCU_FAST_NO_HZ=1 ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-1f758a4341a.report b/fonda/cpp_testsuite/varBugs/LINUX-1f758a4341a.report new file mode 100644 index 00000000..98c07027 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX-1f758a4341a.report @@ -0,0 +1,10 @@ +LINUX 1f758a4341a.c +Macros: + CONFIG_ZONE_DMA + CONFIG_EP93XX_ETH +[-UCONFIG_ZONE_DMA -UCONFIG_EP93XX_ETH ] +[-DCONFIG_ZONE_DMA=1 -UCONFIG_EP93XX_ETH ] +[-UCONFIG_ZONE_DMA -DCONFIG_EP93XX_ETH=1 ] +[-DCONFIG_ZONE_DMA=1 -DCONFIG_EP93XX_ETH=1 ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-208d89843b7.report b/fonda/cpp_testsuite/varBugs/LINUX-208d89843b7.report new file mode 100644 index 00000000..4407d9b4 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX-208d89843b7.report @@ -0,0 +1,6 @@ +LINUX 208d89843b7.c +Macros: + CONFIG_HIGHMEM +[-UCONFIG_HIGHMEM ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-218ad12f42e.report b/fonda/cpp_testsuite/varBugs/LINUX-218ad12f42e.report new file mode 100644 index 00000000..b8abfa5e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX-218ad12f42e.report @@ -0,0 +1,6 @@ +LINUX 218ad12f42e.c +Macros: + CONFIG_NUMA +[-UCONFIG_NUMA ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-221ac329e93.report b/fonda/cpp_testsuite/varBugs/LINUX-221ac329e93.report new file mode 100644 index 00000000..d1670861 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX-221ac329e93.report @@ -0,0 +1,6 @@ +LINUX 221ac329e93.c +Macros: + CONFIG_KPROBES +[-UCONFIG_KPROBES ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-242f1a34377.report b/fonda/cpp_testsuite/varBugs/LINUX-242f1a34377.report new file mode 100644 index 00000000..6dae25d3 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX-242f1a34377.report @@ -0,0 +1,10 @@ +LINUX 242f1a34377.c +Macros: + CONFIG_CRYPTO_BLKCIPHER + CONFIG_CRYPTO_TEST +[-UCONFIG_CRYPTO_BLKCIPHER -UCONFIG_CRYPTO_TEST ] +[-DCONFIG_CRYPTO_BLKCIPHER=1 -UCONFIG_CRYPTO_TEST ] +[-UCONFIG_CRYPTO_BLKCIPHER -DCONFIG_CRYPTO_TEST=1 ] +[-DCONFIG_CRYPTO_BLKCIPHER=1 -DCONFIG_CRYPTO_TEST=1 ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-2f02c15a5d9.report b/fonda/cpp_testsuite/varBugs/LINUX-2f02c15a5d9.report new file mode 100644 index 00000000..f6acf3ac --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX-2f02c15a5d9.report @@ -0,0 +1,10 @@ +LINUX 2f02c15a5d9.c +Macros: + CONFIG_SSB_DRIVER_EXTIF + CONFIG_BCM47XX +[-UCONFIG_SSB_DRIVER_EXTIF -UCONFIG_BCM47XX ] +[-DCONFIG_SSB_DRIVER_EXTIF=1 -UCONFIG_BCM47XX ] +[-UCONFIG_SSB_DRIVER_EXTIF -DCONFIG_BCM47XX=1 ] +[-DCONFIG_SSB_DRIVER_EXTIF=1 -DCONFIG_BCM47XX=1 ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-30e053248da.report b/fonda/cpp_testsuite/varBugs/LINUX-30e053248da.report new file mode 100644 index 00000000..900fdfa0 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX-30e053248da.report @@ -0,0 +1,23 @@ +LINUX 30e053248da.c +Macros: + CONFIG_SECURITY +[-UCONFIG_SECURITY ] +42 :: Line:31 + Assigned value is garbage or undefined [core.uninitialized.Assign] +43 :: Line:31 + Value stored to 'x' during its initialization is never read [deadcode.DeadStores] +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.desugared.c:111:7: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] +if ( __error_8 )// L26 + ^~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.desugared.c:124:1: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] +int __x_9= * __length_7 ;// L31 +^~~~~~~~~~ ~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.desugared.c:124:6: warning: Value stored to '__x_9' during its initialization is never read [deadcode.DeadStores] +int __x_9= * __length_7 ;// L31 + ^~~~~ ~~~~~~~~~~~~~ +3 warnings generated. +Matches: + 43 has a match! +Unmatched ids: + 42 diff --git a/fonda/cpp_testsuite/varBugs/LINUX-36855dcfc98.report b/fonda/cpp_testsuite/varBugs/LINUX-36855dcfc98.report new file mode 100644 index 00000000..a981cc12 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX-36855dcfc98.report @@ -0,0 +1,15 @@ +LINUX 36855dcfc98.c +Macros: + CONFIG_BF60x +[-UCONFIG_BF60x ] +10 :: Line:6 + Value stored to 'wakeup' is never read [deadcode.DeadStores] +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/36855dcfc98.desugared.c:32:2: warning: Value stored to '__wakeup_0' is never read [deadcode.DeadStores] + __wakeup_0 = 0 ; // L6 + ^ ~ +1 warning generated. +Matches: + 10 has a match! +Unmatched ids: + None! diff --git a/fonda/cpp_testsuite/varBugs/LINUX-472a474c663.report b/fonda/cpp_testsuite/varBugs/LINUX-472a474c663.report new file mode 100644 index 00000000..e5b1203d --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX-472a474c663.report @@ -0,0 +1,10 @@ +LINUX 472a474c663.c +Macros: + CONFIG_SMP +[-UCONFIG_SMP ] +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/472a474c663.desugared.c:87:13: warning: Dereference of null pointer (loaded from variable '__ptr_3') [core.NullDereference] +* __ptr_3 = 'a' ; // L14 + ~~~~~~~ ^ +1 warning generated. +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-51fd36f3fad.report b/fonda/cpp_testsuite/varBugs/LINUX-51fd36f3fad.report new file mode 100644 index 00000000..8c2f9680 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX-51fd36f3fad.report @@ -0,0 +1,6 @@ +LINUX 51fd36f3fad.c +Macros: + CONFIG_64BIT +[-UCONFIG_64BIT ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-60e233a5660.report b/fonda/cpp_testsuite/varBugs/LINUX-60e233a5660.report new file mode 100644 index 00000000..31169d1b --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX-60e233a5660.report @@ -0,0 +1,6 @@ +LINUX 60e233a5660.c +Macros: + defined +[-Udefined ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-6252547b8a7.report b/fonda/cpp_testsuite/varBugs/LINUX-6252547b8a7.report new file mode 100644 index 00000000..cd05e52f --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX-6252547b8a7.report @@ -0,0 +1,49 @@ +LINUX 6252547b8a7.c +Macros: + CONFIG_TWL4030_CORE + CONFIG_IRQ_DOMAIN + CONFIG_OF_IRQ +[-UCONFIG_TWL4030_CORE -UCONFIG_IRQ_DOMAIN -UCONFIG_OF_IRQ ] +[-DCONFIG_TWL4030_CORE=1 -UCONFIG_IRQ_DOMAIN -UCONFIG_OF_IRQ ] +30 :: Line:12 + Value stored to 'irq' during its initialization is never read [deadcode.DeadStores] +31 :: Line:12 + Dereference of null pointer (loaded from variable 'ops') [core.NullDereference] +[-UCONFIG_TWL4030_CORE -DCONFIG_IRQ_DOMAIN=1 -UCONFIG_OF_IRQ ] +32 :: Line:12 + Value stored to 'irq' during its initialization is never read [deadcode.DeadStores] +[-DCONFIG_TWL4030_CORE=1 -DCONFIG_IRQ_DOMAIN=1 -UCONFIG_OF_IRQ ] +33 :: Line:12 + Value stored to 'irq' during its initialization is never read [deadcode.DeadStores] +34 :: Line:12 + Dereference of null pointer (loaded from variable 'ops') [core.NullDereference] +[-UCONFIG_TWL4030_CORE -UCONFIG_IRQ_DOMAIN -DCONFIG_OF_IRQ=1 ] +[-DCONFIG_TWL4030_CORE=1 -UCONFIG_IRQ_DOMAIN -DCONFIG_OF_IRQ=1 ] +35 :: Line:12 + Value stored to 'irq' during its initialization is never read [deadcode.DeadStores] +[-UCONFIG_TWL4030_CORE -DCONFIG_IRQ_DOMAIN=1 -DCONFIG_OF_IRQ=1 ] +36 :: Line:12 + Value stored to 'irq' during its initialization is never read [deadcode.DeadStores] +[-DCONFIG_TWL4030_CORE=1 -DCONFIG_IRQ_DOMAIN=1 -DCONFIG_OF_IRQ=1 ] +37 :: Line:12 + Value stored to 'irq' during its initialization is never read [deadcode.DeadStores] +[-UCONFIG_TWL4030_CORE -UCONFIG_IRQ_DOMAIN -UCONFIG_OF_IRQ ] +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.desugared.c:49:6: warning: Value stored to '__irq_2' during its initialization is never read [deadcode.DeadStores] +int __irq_2= * __ops_1 ;// L12 + ^~~~~~~ ~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.desugared.c:49:15: warning: Dereference of null pointer (loaded from variable '__ops_1') [core.NullDereference] +int __irq_2= * __ops_1 ;// L12 + ^~~~~~~~~~ +2 warnings generated. +Matches: + 30 has a match! + 31 has a match! + 32 has a match! + 33 has a match! + 34 has a match! + 35 has a match! + 36 has a match! + 37 has a match! +Unmatched ids: + None! diff --git a/fonda/cpp_testsuite/varBugs/LINUX-63878acfafb.report b/fonda/cpp_testsuite/varBugs/LINUX-63878acfafb.report new file mode 100644 index 00000000..1d87f93f --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX-63878acfafb.report @@ -0,0 +1,20 @@ +LINUX 63878acfafb.c +Macros: + CONFIG_ARCH_OMAP3 + CONFIG_PM + defined +[-UCONFIG_ARCH_OMAP3 -UCONFIG_PM -Udefined ] +[-DCONFIG_ARCH_OMAP3=1 -UCONFIG_PM -Udefined ] +[-UCONFIG_ARCH_OMAP3 -DCONFIG_PM=1 -Udefined ] +[-DCONFIG_ARCH_OMAP3=1 -DCONFIG_PM=1 -Udefined ] +[-UCONFIG_ARCH_OMAP3 -UCONFIG_PM -Ddefined=1 ] +[-DCONFIG_ARCH_OMAP3=1 -UCONFIG_PM -Ddefined=1 ] +[-UCONFIG_ARCH_OMAP3 -DCONFIG_PM=1 -Ddefined=1 ] +[-DCONFIG_ARCH_OMAP3=1 -DCONFIG_PM=1 -Ddefined=1 ] +[-UCONFIG_ARCH_OMAP3 -UCONFIG_PM -Udefined ] +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.desugared.c:159:1: warning: Undefined or garbage value returned to caller [core.uninitialized.UndefReturn] +return __v_16 ;// L40 +^~~~~~~~~~~~~~ +1 warning generated. +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-6515e48932c.report b/fonda/cpp_testsuite/varBugs/LINUX-6515e48932c.report new file mode 100644 index 00000000..89eab2fe --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX-6515e48932c.report @@ -0,0 +1,10 @@ +LINUX 6515e48932c.c +Macros: + defined + CONFIG_MACH_OMAP_H4 +[-Udefined -UCONFIG_MACH_OMAP_H4 ] +[-Ddefined=1 -UCONFIG_MACH_OMAP_H4 ] +[-Udefined -DCONFIG_MACH_OMAP_H4=1 ] +[-Ddefined=1 -DCONFIG_MACH_OMAP_H4=1 ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-657e9649e74.report b/fonda/cpp_testsuite/varBugs/LINUX-657e9649e74.report new file mode 100644 index 00000000..f73d9695 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX-657e9649e74.report @@ -0,0 +1,10 @@ +LINUX 657e9649e74.c +Macros: + CONFIG_PREEMPT + CONFIG_TCP_MD5SIG +[-UCONFIG_PREEMPT -UCONFIG_TCP_MD5SIG ] +[-DCONFIG_PREEMPT=1 -UCONFIG_TCP_MD5SIG ] +[-UCONFIG_PREEMPT -DCONFIG_TCP_MD5SIG=1 ] +[-DCONFIG_PREEMPT=1 -DCONFIG_TCP_MD5SIG=1 ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-66517915e09.report b/fonda/cpp_testsuite/varBugs/LINUX-66517915e09.report new file mode 100644 index 00000000..2c61c5bf --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX-66517915e09.report @@ -0,0 +1,91 @@ +LINUX 66517915e09.c +Macros: + CONFIG_SND_FSI_AK4642 + CONFIG_SND_FSI_DA7210 + CONFIG_I2C + CONFIG_SND_SOC_DA7210 + CONFIG_SND_SOC_AK4642 +[-UCONFIG_SND_FSI_AK4642 -UCONFIG_SND_FSI_DA7210 -UCONFIG_I2C -UCONFIG_SND_SOC_DA7210 -UCONFIG_SND_SOC_AK4642 ] +[-DCONFIG_SND_FSI_AK4642=1 -UCONFIG_SND_FSI_DA7210 -UCONFIG_I2C -UCONFIG_SND_SOC_DA7210 -UCONFIG_SND_SOC_AK4642 ] +[-UCONFIG_SND_FSI_AK4642 -DCONFIG_SND_FSI_DA7210=1 -UCONFIG_I2C -UCONFIG_SND_SOC_DA7210 -UCONFIG_SND_SOC_AK4642 ] +[-DCONFIG_SND_FSI_AK4642=1 -DCONFIG_SND_FSI_DA7210=1 -UCONFIG_I2C -UCONFIG_SND_SOC_DA7210 -UCONFIG_SND_SOC_AK4642 ] +[-UCONFIG_SND_FSI_AK4642 -UCONFIG_SND_FSI_DA7210 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -UCONFIG_SND_SOC_AK4642 ] +[-DCONFIG_SND_FSI_AK4642=1 -UCONFIG_SND_FSI_DA7210 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -UCONFIG_SND_SOC_AK4642 ] +12 :: Line:24 + Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] +[-UCONFIG_SND_FSI_AK4642 -DCONFIG_SND_FSI_DA7210=1 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -UCONFIG_SND_SOC_AK4642 ] +13 :: Line:16 + Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] +[-DCONFIG_SND_FSI_AK4642=1 -DCONFIG_SND_FSI_DA7210=1 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -UCONFIG_SND_SOC_AK4642 ] +14 :: Line:16 + Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] +15 :: Line:24 + Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] +[-UCONFIG_SND_FSI_AK4642 -UCONFIG_SND_FSI_DA7210 -UCONFIG_I2C -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] +[-DCONFIG_SND_FSI_AK4642=1 -UCONFIG_SND_FSI_DA7210 -UCONFIG_I2C -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] +[-UCONFIG_SND_FSI_AK4642 -DCONFIG_SND_FSI_DA7210=1 -UCONFIG_I2C -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] +[-DCONFIG_SND_FSI_AK4642=1 -DCONFIG_SND_FSI_DA7210=1 -UCONFIG_I2C -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] +[-UCONFIG_SND_FSI_AK4642 -UCONFIG_SND_FSI_DA7210 -DCONFIG_I2C=1 -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] +16 :: Line:16 + Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] +[-DCONFIG_SND_FSI_AK4642=1 -UCONFIG_SND_FSI_DA7210 -DCONFIG_I2C=1 -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] +17 :: Line:16 + Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] +18 :: Line:24 + Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] +[-UCONFIG_SND_FSI_AK4642 -DCONFIG_SND_FSI_DA7210=1 -DCONFIG_I2C=1 -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] +19 :: Line:16 + Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] +[-DCONFIG_SND_FSI_AK4642=1 -DCONFIG_SND_FSI_DA7210=1 -DCONFIG_I2C=1 -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] +20 :: Line:16 + Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] +21 :: Line:24 + Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] +[-UCONFIG_SND_FSI_AK4642 -UCONFIG_SND_FSI_DA7210 -UCONFIG_I2C -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] +[-DCONFIG_SND_FSI_AK4642=1 -UCONFIG_SND_FSI_DA7210 -UCONFIG_I2C -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] +[-UCONFIG_SND_FSI_AK4642 -DCONFIG_SND_FSI_DA7210=1 -UCONFIG_I2C -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] +[-DCONFIG_SND_FSI_AK4642=1 -DCONFIG_SND_FSI_DA7210=1 -UCONFIG_I2C -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] +[-UCONFIG_SND_FSI_AK4642 -UCONFIG_SND_FSI_DA7210 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] +22 :: Line:24 + Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] +[-DCONFIG_SND_FSI_AK4642=1 -UCONFIG_SND_FSI_DA7210 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] +23 :: Line:24 + Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] +[-UCONFIG_SND_FSI_AK4642 -DCONFIG_SND_FSI_DA7210=1 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] +24 :: Line:16 + Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] +25 :: Line:24 + Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] +[-DCONFIG_SND_FSI_AK4642=1 -DCONFIG_SND_FSI_DA7210=1 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] +26 :: Line:16 + Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] +27 :: Line:24 + Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] +[-UCONFIG_SND_FSI_AK4642 -UCONFIG_SND_FSI_DA7210 -UCONFIG_I2C -DCONFIG_SND_SOC_DA7210=1 -DCONFIG_SND_SOC_AK4642=1 ] +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.desugared.c:48:6: warning: Value stored to '__codec_hw_write_1' during its initialization is never read [deadcode.DeadStores] +int __codec_hw_write_1= __i2c_master_send_0 ;// L16 + ^~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.desugared.c:70:6: warning: Value stored to '__codec_hw_write_5' during its initialization is never read [deadcode.DeadStores] +int __codec_hw_write_5= __i2c_master_send_0 ;// L24 + ^~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~ +2 warnings generated. +Matches: + 12 has a match! + 13 has a match! + 14 has a match! + 15 has a match! + 16 has a match! + 17 has a match! + 18 has a match! + 19 has a match! + 20 has a match! + 21 has a match! + 22 has a match! + 23 has a match! + 24 has a match! + 25 has a match! + 26 has a match! + 27 has a match! +Unmatched ids: + None! diff --git a/fonda/cpp_testsuite/varBugs/LINUX-68bb91baa0.report b/fonda/cpp_testsuite/varBugs/LINUX-68bb91baa0.report new file mode 100644 index 00000000..11800200 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX-68bb91baa0.report @@ -0,0 +1,16 @@ +LINUX 68bb91baa0.c +Macros: + CONFIG_I2C_DESIGNWARE_PLATFORM + CONFIG_I2C_DESIGNWARE_PCI + defined +[-UCONFIG_I2C_DESIGNWARE_PLATFORM -UCONFIG_I2C_DESIGNWARE_PCI -Udefined ] +[-DCONFIG_I2C_DESIGNWARE_PLATFORM=1 -UCONFIG_I2C_DESIGNWARE_PCI -Udefined ] +[-UCONFIG_I2C_DESIGNWARE_PLATFORM -DCONFIG_I2C_DESIGNWARE_PCI=1 -Udefined ] +[-DCONFIG_I2C_DESIGNWARE_PLATFORM=1 -DCONFIG_I2C_DESIGNWARE_PCI=1 -Udefined ] +[-UCONFIG_I2C_DESIGNWARE_PLATFORM -UCONFIG_I2C_DESIGNWARE_PCI -Ddefined=1 ] +[-DCONFIG_I2C_DESIGNWARE_PLATFORM=1 -UCONFIG_I2C_DESIGNWARE_PCI -Ddefined=1 ] +[-UCONFIG_I2C_DESIGNWARE_PLATFORM -DCONFIG_I2C_DESIGNWARE_PCI=1 -Ddefined=1 ] +[-DCONFIG_I2C_DESIGNWARE_PLATFORM=1 -DCONFIG_I2C_DESIGNWARE_PCI=1 -Ddefined=1 ] +[-UCONFIG_I2C_DESIGNWARE_PLATFORM -UCONFIG_I2C_DESIGNWARE_PCI -Udefined ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-6e2b75740be.report b/fonda/cpp_testsuite/varBugs/LINUX-6e2b75740be.report new file mode 100644 index 00000000..1aeaf5eb --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX-6e2b75740be.report @@ -0,0 +1,22 @@ +LINUX 6e2b75740be.c +Macros: + defined +[-Udefined ] +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.c:95:9: warning: Potential leak of memory pointed to by '__ptr_11' [unix.Malloc] +if ( ! __ptr_11 )// L39 + ^~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.c:121:10: warning: Value stored to '__dest_12' during its initialization is never read [deadcode.DeadStores] +void * (__dest_12)= ( __mod_9 [ 1 ] );// L46 + ^~~~~~~~~ ~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.c:146:1: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] +free (( __mod_9 [ 1 ] )) ; // L60 +^~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.c:153:1: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] +free (( __mod_9 [ 0 ] )) ; // L63 +^~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.c:182:9: warning: Potential leak of memory pointed to by '__mod_9' [unix.Malloc] +return __err_10 ;// L69 + ^~~~~~~~ +5 warnings generated. +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-76baeebf7df.report b/fonda/cpp_testsuite/varBugs/LINUX-76baeebf7df.report new file mode 100644 index 00000000..4a27e912 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX-76baeebf7df.report @@ -0,0 +1,33 @@ +LINUX 76baeebf7df.c +Macros: + CONFIG_X86_32 + CONFIG_NUMA + CONFIG_DEBUG_PER_CPU_MAPS + CONFIG_PCI + CONFIG_X86_64 +[-UCONFIG_X86_32 -UCONFIG_NUMA -UCONFIG_DEBUG_PER_CPU_MAPS -UCONFIG_PCI -UCONFIG_X86_64 ] +[-DCONFIG_X86_32=1 -UCONFIG_NUMA -UCONFIG_DEBUG_PER_CPU_MAPS -UCONFIG_PCI -UCONFIG_X86_64 ] +[-UCONFIG_X86_32 -DCONFIG_NUMA=1 -UCONFIG_DEBUG_PER_CPU_MAPS -UCONFIG_PCI -UCONFIG_X86_64 ] +[-DCONFIG_X86_32=1 -DCONFIG_NUMA=1 -UCONFIG_DEBUG_PER_CPU_MAPS -UCONFIG_PCI -UCONFIG_X86_64 ] +[-UCONFIG_X86_32 -UCONFIG_NUMA -DCONFIG_DEBUG_PER_CPU_MAPS=1 -UCONFIG_PCI -UCONFIG_X86_64 ] +[-DCONFIG_X86_32=1 -UCONFIG_NUMA -DCONFIG_DEBUG_PER_CPU_MAPS=1 -UCONFIG_PCI -UCONFIG_X86_64 ] +[-UCONFIG_X86_32 -DCONFIG_NUMA=1 -DCONFIG_DEBUG_PER_CPU_MAPS=1 -UCONFIG_PCI -UCONFIG_X86_64 ] +[-DCONFIG_X86_32=1 -DCONFIG_NUMA=1 -DCONFIG_DEBUG_PER_CPU_MAPS=1 -UCONFIG_PCI -UCONFIG_X86_64 ] +[-UCONFIG_X86_32 -UCONFIG_NUMA -UCONFIG_DEBUG_PER_CPU_MAPS -DCONFIG_PCI=1 -UCONFIG_X86_64 ] +[-DCONFIG_X86_32=1 -UCONFIG_NUMA -UCONFIG_DEBUG_PER_CPU_MAPS -DCONFIG_PCI=1 -UCONFIG_X86_64 ] +[-UCONFIG_X86_32 -DCONFIG_NUMA=1 -UCONFIG_DEBUG_PER_CPU_MAPS -DCONFIG_PCI=1 -UCONFIG_X86_64 ] +[-DCONFIG_X86_32=1 -DCONFIG_NUMA=1 -UCONFIG_DEBUG_PER_CPU_MAPS -DCONFIG_PCI=1 -UCONFIG_X86_64 ] +[-UCONFIG_X86_32 -UCONFIG_NUMA -DCONFIG_DEBUG_PER_CPU_MAPS=1 -DCONFIG_PCI=1 -UCONFIG_X86_64 ] +[-DCONFIG_X86_32=1 -UCONFIG_NUMA -DCONFIG_DEBUG_PER_CPU_MAPS=1 -DCONFIG_PCI=1 -UCONFIG_X86_64 ] +[-UCONFIG_X86_32 -DCONFIG_NUMA=1 -DCONFIG_DEBUG_PER_CPU_MAPS=1 -DCONFIG_PCI=1 -UCONFIG_X86_64 ] +[-DCONFIG_X86_32=1 -DCONFIG_NUMA=1 -DCONFIG_DEBUG_PER_CPU_MAPS=1 -DCONFIG_PCI=1 -UCONFIG_X86_64 ] +[-UCONFIG_X86_32 -UCONFIG_NUMA -UCONFIG_DEBUG_PER_CPU_MAPS -UCONFIG_PCI -DCONFIG_X86_64=1 ] +[-DCONFIG_X86_32=1 -UCONFIG_NUMA -UCONFIG_DEBUG_PER_CPU_MAPS -UCONFIG_PCI -DCONFIG_X86_64=1 ] +[-UCONFIG_X86_32 -DCONFIG_NUMA=1 -UCONFIG_DEBUG_PER_CPU_MAPS -UCONFIG_PCI -DCONFIG_X86_64=1 ] +[-DCONFIG_X86_32=1 -DCONFIG_NUMA=1 -UCONFIG_DEBUG_PER_CPU_MAPS -UCONFIG_PCI -DCONFIG_X86_64=1 ] +[-UCONFIG_X86_32 -UCONFIG_NUMA -DCONFIG_DEBUG_PER_CPU_MAPS=1 -UCONFIG_PCI -DCONFIG_X86_64=1 ] +[-DCONFIG_X86_32=1 -UCONFIG_NUMA -DCONFIG_DEBUG_PER_CPU_MAPS=1 -UCONFIG_PCI -DCONFIG_X86_64=1 ] +[-UCONFIG_X86_32 -DCONFIG_NUMA=1 -DCONFIG_DEBUG_PER_CPU_MAPS=1 -UCONFIG_PCI -DCONFIG_X86_64=1 ] +[-DCONFIG_X86_32=1 -DCONFIG_NUMA=1 -DCONFIG_DEBUG_PER_CPU_MAPS=1 -UCONFIG_PCI -DCONFIG_X86_64=1 ] +[-UCONFIG_X86_32 -UCONFIG_NUMA -UCONFIG_DEBUG_PER_CPU_MAPS -DCONFIG_PCI=1 -DCONFIG_X86_64=1 ] +File Failed diff --git a/fonda/cpp_testsuite/varBugs/LINUX-7acf6cd80b2.report b/fonda/cpp_testsuite/varBugs/LINUX-7acf6cd80b2.report new file mode 100644 index 00000000..b0d5ee1d --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX-7acf6cd80b2.report @@ -0,0 +1,40 @@ +LINUX 7acf6cd80b2.c +Macros: + CONFIG_DEVPTS_MULTIPLE_INSTANCES + CONFIG_UNIX98_PTYS +[-UCONFIG_DEVPTS_MULTIPLE_INSTANCES -UCONFIG_UNIX98_PTYS ] +[-DCONFIG_DEVPTS_MULTIPLE_INSTANCES=1 -UCONFIG_UNIX98_PTYS ] +45 :: Line:8 + Value stored to 'x' during its initialization is never read [deadcode.DeadStores] +[-UCONFIG_DEVPTS_MULTIPLE_INSTANCES -DCONFIG_UNIX98_PTYS=1 ] +46 :: Line:39 + Value stored to 'driver_data' is never read [deadcode.DeadStores] +47 :: Line:44 + 1st function call argument is an uninitialized value [core.CallAndMessage] +[-DCONFIG_DEVPTS_MULTIPLE_INSTANCES=1 -DCONFIG_UNIX98_PTYS=1 ] +48 :: Line:8 + Value stored to 'x' during its initialization is never read [deadcode.DeadStores] +49 :: Line:39 + Value stored to 'driver_data' is never read [deadcode.DeadStores] +50 :: Line:44 + 1st function call argument is an uninitialized value [core.CallAndMessage] +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.desugared.c:77:6: warning: Value stored to '__x_3' during its initialization is never read [deadcode.DeadStores] +int __x_3= * __inode_2 ;// L8 + ^~~~~ ~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.desugared.c:170:2: warning: Value stored to '__driver_data_15' is never read [deadcode.DeadStores] + __driver_data_15 = & __some_int_1 ; // L39 + ^ ~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.desugared.c:175:2: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] + __tty_release_14 ( __driver_data_15 ) ; // L44 + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +3 warnings generated. +Matches: + 45 has a match! + 46 has a match! + 47 has a match! + 48 has a match! + 49 has a match! + 50 has a match! +Unmatched ids: + None! diff --git a/fonda/cpp_testsuite/varBugs/LINUX-7c6048b7c83.report b/fonda/cpp_testsuite/varBugs/LINUX-7c6048b7c83.report new file mode 100644 index 00000000..d8edf144 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX-7c6048b7c83.report @@ -0,0 +1,16 @@ +LINUX 7c6048b7c83.c +Macros: + defined + CONFIG_BACKLIGHT_CLASS_DEVICE + CONFIG_ACPI_VIDEO +[-Udefined -UCONFIG_BACKLIGHT_CLASS_DEVICE -UCONFIG_ACPI_VIDEO ] +[-Ddefined=1 -UCONFIG_BACKLIGHT_CLASS_DEVICE -UCONFIG_ACPI_VIDEO ] +[-Udefined -DCONFIG_BACKLIGHT_CLASS_DEVICE=1 -UCONFIG_ACPI_VIDEO ] +[-Ddefined=1 -DCONFIG_BACKLIGHT_CLASS_DEVICE=1 -UCONFIG_ACPI_VIDEO ] +[-Udefined -UCONFIG_BACKLIGHT_CLASS_DEVICE -DCONFIG_ACPI_VIDEO=1 ] +[-Ddefined=1 -UCONFIG_BACKLIGHT_CLASS_DEVICE -DCONFIG_ACPI_VIDEO=1 ] +[-Udefined -DCONFIG_BACKLIGHT_CLASS_DEVICE=1 -DCONFIG_ACPI_VIDEO=1 ] +[-Ddefined=1 -DCONFIG_BACKLIGHT_CLASS_DEVICE=1 -DCONFIG_ACPI_VIDEO=1 ] +[-Udefined -UCONFIG_BACKLIGHT_CLASS_DEVICE -UCONFIG_ACPI_VIDEO ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-809e660f438.report b/fonda/cpp_testsuite/varBugs/LINUX-809e660f438.report new file mode 100644 index 00000000..6fa34573 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX-809e660f438.report @@ -0,0 +1,6 @@ +LINUX 809e660f438.c +Macros: + CONFIG_ARM_LPAE +[-UCONFIG_ARM_LPAE ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-8c8296223f3.report b/fonda/cpp_testsuite/varBugs/LINUX-8c8296223f3.report new file mode 100644 index 00000000..124ab06d --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX-8c8296223f3.report @@ -0,0 +1,6 @@ +LINUX 8c8296223f3.c +Macros: + CONFIG_PROC_PAGE_MONITOR +[-UCONFIG_PROC_PAGE_MONITOR ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-91ea8207168.report b/fonda/cpp_testsuite/varBugs/LINUX-91ea8207168.report new file mode 100644 index 00000000..634b33d6 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX-91ea8207168.report @@ -0,0 +1,16 @@ +LINUX 91ea8207168.c +Macros: + CONFIG_NODES_SHIFT + CONFIG_DISCONTIGMEM + CONFIG_PROC_PAGE_MONITOR +[-UCONFIG_NODES_SHIFT -UCONFIG_DISCONTIGMEM -UCONFIG_PROC_PAGE_MONITOR ] +[-DCONFIG_NODES_SHIFT=1 -UCONFIG_DISCONTIGMEM -UCONFIG_PROC_PAGE_MONITOR ] +[-UCONFIG_NODES_SHIFT -DCONFIG_DISCONTIGMEM=1 -UCONFIG_PROC_PAGE_MONITOR ] +[-DCONFIG_NODES_SHIFT=1 -DCONFIG_DISCONTIGMEM=1 -UCONFIG_PROC_PAGE_MONITOR ] +[-UCONFIG_NODES_SHIFT -UCONFIG_DISCONTIGMEM -DCONFIG_PROC_PAGE_MONITOR=1 ] +[-DCONFIG_NODES_SHIFT=1 -UCONFIG_DISCONTIGMEM -DCONFIG_PROC_PAGE_MONITOR=1 ] +[-UCONFIG_NODES_SHIFT -DCONFIG_DISCONTIGMEM=1 -DCONFIG_PROC_PAGE_MONITOR=1 ] +[-DCONFIG_NODES_SHIFT=1 -DCONFIG_DISCONTIGMEM=1 -DCONFIG_PROC_PAGE_MONITOR=1 ] +[-UCONFIG_NODES_SHIFT -UCONFIG_DISCONTIGMEM -UCONFIG_PROC_PAGE_MONITOR ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-ae249b5fa27.report b/fonda/cpp_testsuite/varBugs/LINUX-ae249b5fa27.report new file mode 100644 index 00000000..76770d62 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX-ae249b5fa27.report @@ -0,0 +1,17 @@ +LINUX ae249b5fa27.c +Macros: + CONFIG_DISCONTIGMEM + CONFIG_PROC_PAGE_MONITOR +[-UCONFIG_DISCONTIGMEM -UCONFIG_PROC_PAGE_MONITOR ] +[-DCONFIG_DISCONTIGMEM=1 -UCONFIG_PROC_PAGE_MONITOR ] +[-UCONFIG_DISCONTIGMEM -DCONFIG_PROC_PAGE_MONITOR=1 ] +[-DCONFIG_DISCONTIGMEM=1 -DCONFIG_PROC_PAGE_MONITOR=1 ] +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.desugared.c:283:15: warning: The left operand of '!=' is a garbage value [core.UndefinedBinaryOperatorResult] +( ( __r_236 != 0xff ) ? ( void ) ( 0 ) : ____assert_fail_4 ("r != 0xff","/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.c",19, __PRETTY_FUNCTION__ ) ) ; // L19:L91 + ~~~~~~~ ^ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.desugared.c:288:1: warning: Undefined or garbage value returned to caller [core.uninitialized.UndefReturn] +return ( int ) __r_236 ;// L21 +^~~~~~~~~~~~~~~~~~~~~~~~~ +2 warnings generated. +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-bc8cec0dff0.report b/fonda/cpp_testsuite/varBugs/LINUX-bc8cec0dff0.report new file mode 100644 index 00000000..f7c66ef2 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX-bc8cec0dff0.report @@ -0,0 +1,6 @@ +LINUX bc8cec0dff0.c +Macros: + CONFIG_JFFS2_FS_WBUF_VERIFY +[-UCONFIG_JFFS2_FS_WBUF_VERIFY ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-c708c57e247.report b/fonda/cpp_testsuite/varBugs/LINUX-c708c57e247.report new file mode 100644 index 00000000..f19cd247 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX-c708c57e247.report @@ -0,0 +1,10 @@ +LINUX c708c57e247.c +Macros: + CONFIG_S390_PRNG +[-UCONFIG_S390_PRNG ] +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/c708c57e247.desugared.c:74:41: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] +* ( ( ____u64_0 * ) __parm_block_1 ) ^= * ( ( ____u64_0 * ) __buf_3 + __i_4 * 8 ) ; // L18 + ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +1 warning generated. +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-d530db0db90.report b/fonda/cpp_testsuite/varBugs/LINUX-d530db0db90.report new file mode 100644 index 00000000..057f0a0a --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX-d530db0db90.report @@ -0,0 +1,10 @@ +LINUX d530db0db90.c +Macros: + CONFIG_VORTEX + CONFIG_PCI +[-UCONFIG_VORTEX -UCONFIG_PCI ] +[-DCONFIG_VORTEX=1 -UCONFIG_PCI ] +[-UCONFIG_VORTEX -DCONFIG_PCI=1 ] +[-DCONFIG_VORTEX=1 -DCONFIG_PCI=1 ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-d549f55f2e1.report b/fonda/cpp_testsuite/varBugs/LINUX-d549f55f2e1.report new file mode 100644 index 00000000..8c216244 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX-d549f55f2e1.report @@ -0,0 +1,10 @@ +LINUX d549f55f2e1.c +Macros: + CONFIG_VLAN_8021Q + defined +[-UCONFIG_VLAN_8021Q -Udefined ] +[-DCONFIG_VLAN_8021Q=1 -Udefined ] +[-UCONFIG_VLAN_8021Q -Ddefined=1 ] +[-DCONFIG_VLAN_8021Q=1 -Ddefined=1 ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-d6c7e113959.report b/fonda/cpp_testsuite/varBugs/LINUX-d6c7e113959.report new file mode 100644 index 00000000..8199c5d8 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX-d6c7e113959.report @@ -0,0 +1,10 @@ +LINUX d6c7e113959.c +Macros: + CONFIG_REGULATOR_MAX8660 + CONFIG_OF +[-UCONFIG_REGULATOR_MAX8660 -UCONFIG_OF ] +[-DCONFIG_REGULATOR_MAX8660=1 -UCONFIG_OF ] +[-UCONFIG_REGULATOR_MAX8660 -DCONFIG_OF=1 ] +[-DCONFIG_REGULATOR_MAX8660=1 -DCONFIG_OF=1 ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-d7e9711760a.report b/fonda/cpp_testsuite/varBugs/LINUX-d7e9711760a.report new file mode 100644 index 00000000..f4d87d92 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX-d7e9711760a.report @@ -0,0 +1,5 @@ +LINUX d7e9711760a.c +Macros: + CONFIG_QUOTA_DEBUG +[-UCONFIG_QUOTA_DEBUG ] +File Failed diff --git a/fonda/cpp_testsuite/varBugs/LINUX-e1fbd9210d5.report b/fonda/cpp_testsuite/varBugs/LINUX-e1fbd9210d5.report new file mode 100644 index 00000000..abb71504 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX-e1fbd9210d5.report @@ -0,0 +1,10 @@ +LINUX e1fbd9210d5.c +Macros: + CONFIG_LBDAF + CONFIG_AMIGA_Z2RAM +[-UCONFIG_LBDAF -UCONFIG_AMIGA_Z2RAM ] +[-DCONFIG_LBDAF=1 -UCONFIG_AMIGA_Z2RAM ] +[-UCONFIG_LBDAF -DCONFIG_AMIGA_Z2RAM=1 ] +[-DCONFIG_LBDAF=1 -DCONFIG_AMIGA_Z2RAM=1 ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-e39363a9def.report b/fonda/cpp_testsuite/varBugs/LINUX-e39363a9def.report new file mode 100644 index 00000000..fa82dfdd --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX-e39363a9def.report @@ -0,0 +1,19 @@ +LINUX e39363a9def.c +Macros: + CONFIG_NETPOLL + CONFIG_IPV6 +[-UCONFIG_NETPOLL -UCONFIG_IPV6 ] +[-DCONFIG_NETPOLL=1 -UCONFIG_IPV6 ] +40 :: Line:17 + Undefined or garbage value returned to caller [core.uninitialized.UndefReturn] +[-UCONFIG_NETPOLL -DCONFIG_IPV6=1 ] +[-DCONFIG_NETPOLL=1 -DCONFIG_IPV6=1 ] +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.desugared.c:77:1: warning: Undefined or garbage value returned to caller [core.uninitialized.UndefReturn] +return __err_1 ;// L17 +^~~~~~~~~~~~~~~ +1 warning generated. +Matches: + 40 has a match! +Unmatched ids: + None! diff --git a/fonda/cpp_testsuite/varBugs/LINUX-e67bc51e574.report b/fonda/cpp_testsuite/varBugs/LINUX-e67bc51e574.report new file mode 100644 index 00000000..22209e5a --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX-e67bc51e574.report @@ -0,0 +1,6 @@ +LINUX e67bc51e574.c +Macros: + CONFIG_TRACING +[-UCONFIG_TRACING ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-eb91f1d0a53.report b/fonda/cpp_testsuite/varBugs/LINUX-eb91f1d0a53.report new file mode 100644 index 00000000..8f740ad0 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX-eb91f1d0a53.report @@ -0,0 +1,24 @@ +LINUX eb91f1d0a53.c +Macros: + defined + CONFIG_SLAB + CONFIG_NUMA + CONFIG_KMEMTRACE +[-Udefined -UCONFIG_SLAB -UCONFIG_NUMA -UCONFIG_KMEMTRACE ] +[-Ddefined=1 -UCONFIG_SLAB -UCONFIG_NUMA -UCONFIG_KMEMTRACE ] +[-Udefined -DCONFIG_SLAB=1 -UCONFIG_NUMA -UCONFIG_KMEMTRACE ] +[-Ddefined=1 -DCONFIG_SLAB=1 -UCONFIG_NUMA -UCONFIG_KMEMTRACE ] +[-Udefined -UCONFIG_SLAB -DCONFIG_NUMA=1 -UCONFIG_KMEMTRACE ] +[-Ddefined=1 -UCONFIG_SLAB -DCONFIG_NUMA=1 -UCONFIG_KMEMTRACE ] +[-Udefined -DCONFIG_SLAB=1 -DCONFIG_NUMA=1 -UCONFIG_KMEMTRACE ] +[-Ddefined=1 -DCONFIG_SLAB=1 -DCONFIG_NUMA=1 -UCONFIG_KMEMTRACE ] +[-Udefined -UCONFIG_SLAB -UCONFIG_NUMA -DCONFIG_KMEMTRACE=1 ] +[-Ddefined=1 -UCONFIG_SLAB -UCONFIG_NUMA -DCONFIG_KMEMTRACE=1 ] +[-Udefined -DCONFIG_SLAB=1 -UCONFIG_NUMA -DCONFIG_KMEMTRACE=1 ] +[-Ddefined=1 -DCONFIG_SLAB=1 -UCONFIG_NUMA -DCONFIG_KMEMTRACE=1 ] +[-Udefined -UCONFIG_SLAB -DCONFIG_NUMA=1 -DCONFIG_KMEMTRACE=1 ] +[-Ddefined=1 -UCONFIG_SLAB -DCONFIG_NUMA=1 -DCONFIG_KMEMTRACE=1 ] +[-Udefined -DCONFIG_SLAB=1 -DCONFIG_NUMA=1 -DCONFIG_KMEMTRACE=1 ] +[-Ddefined=1 -DCONFIG_SLAB=1 -DCONFIG_NUMA=1 -DCONFIG_KMEMTRACE=1 ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-ee3f34e8572.report b/fonda/cpp_testsuite/varBugs/LINUX-ee3f34e8572.report new file mode 100644 index 00000000..fc719d1c --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX-ee3f34e8572.report @@ -0,0 +1,23 @@ +LINUX ee3f34e8572.c +Macros: + SCTP_DEBUG + CONFIG_SCTP_DBG_MSG + defined +[-USCTP_DEBUG -UCONFIG_SCTP_DBG_MSG -Udefined ] +[-DSCTP_DEBUG=1 -UCONFIG_SCTP_DBG_MSG -Udefined ] +[-USCTP_DEBUG -DCONFIG_SCTP_DBG_MSG=1 -Udefined ] +[-DSCTP_DEBUG=1 -DCONFIG_SCTP_DBG_MSG=1 -Udefined ] +[-USCTP_DEBUG -UCONFIG_SCTP_DBG_MSG -Ddefined=1 ] +[-DSCTP_DEBUG=1 -UCONFIG_SCTP_DBG_MSG -Ddefined=1 ] +[-USCTP_DEBUG -DCONFIG_SCTP_DBG_MSG=1 -Ddefined=1 ] +[-DSCTP_DEBUG=1 -DCONFIG_SCTP_DBG_MSG=1 -Ddefined=1 ] +[-USCTP_DEBUG -UCONFIG_SCTP_DBG_MSG -Udefined ] +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.desugared.c:1494:3: warning: Dereference of null pointer (loaded from variable '__rt_814') [core.NullDereference] +( ( * __rt_814 ) ++ ) ; // L23:L45 + ^~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.desugared.c:1515:3: warning: Dereference of null pointer (loaded from variable '__rt_814') [core.NullDereference] +( ( * __rt_814 ) ++ ) ; // L23:L45 + ^~~~~~~~~~~~~~~~~~~ +2 warnings generated. +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-f3d83e24154.report b/fonda/cpp_testsuite/varBugs/LINUX-f3d83e24154.report new file mode 100644 index 00000000..770c692b --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX-f3d83e24154.report @@ -0,0 +1,6 @@ +LINUX f3d83e24154.c +Macros: + defined +[-Udefined ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-f48ec1d7885.report b/fonda/cpp_testsuite/varBugs/LINUX-f48ec1d7885.report new file mode 100644 index 00000000..3a7d4007 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX-f48ec1d7885.report @@ -0,0 +1,10 @@ +LINUX f48ec1d7885.c +Macros: + CONFIG_BLK_CGROUP + CONFIG_IOSCHED_CFQ +[-UCONFIG_BLK_CGROUP -UCONFIG_IOSCHED_CFQ ] +[-DCONFIG_BLK_CGROUP=1 -UCONFIG_IOSCHED_CFQ ] +[-UCONFIG_BLK_CGROUP -DCONFIG_IOSCHED_CFQ=1 ] +[-DCONFIG_BLK_CGROUP=1 -DCONFIG_IOSCHED_CFQ=1 ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-f7ab9b407b3.report b/fonda/cpp_testsuite/varBugs/LINUX-f7ab9b407b3.report new file mode 100644 index 00000000..aa4453ea --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX-f7ab9b407b3.report @@ -0,0 +1,16 @@ +LINUX f7ab9b407b3.c +Macros: + CONFIG_TMPFS + CONFIG_SHMEM + CONFIG_DRM_I915 +[-UCONFIG_TMPFS -UCONFIG_SHMEM -UCONFIG_DRM_I915 ] +[-DCONFIG_TMPFS=1 -UCONFIG_SHMEM -UCONFIG_DRM_I915 ] +[-UCONFIG_TMPFS -DCONFIG_SHMEM=1 -UCONFIG_DRM_I915 ] +[-DCONFIG_TMPFS=1 -DCONFIG_SHMEM=1 -UCONFIG_DRM_I915 ] +[-UCONFIG_TMPFS -UCONFIG_SHMEM -DCONFIG_DRM_I915=1 ] +[-DCONFIG_TMPFS=1 -UCONFIG_SHMEM -DCONFIG_DRM_I915=1 ] +[-UCONFIG_TMPFS -DCONFIG_SHMEM=1 -DCONFIG_DRM_I915=1 ] +[-DCONFIG_TMPFS=1 -DCONFIG_SHMEM=1 -DCONFIG_DRM_I915=1 ] +[-UCONFIG_TMPFS -UCONFIG_SHMEM -UCONFIG_DRM_I915 ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX/0988c4c7fb5.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/0988c4c7fb5.desugared.c index 4dfb3042..b92f7a79 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/0988c4c7fb5.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/0988c4c7fb5.desugared.c @@ -7,19 +7,19 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_26; +extern const bool __static_condition_default_22; +extern const bool __static_condition_default_24; +extern const bool __static_condition_default_32; +extern const bool __static_condition_default_16; extern const bool __static_condition_default_21; +extern const bool __static_condition_default_26; extern const bool __static_condition_default_27; +extern const bool __static_condition_default_31; extern const bool __static_condition_default_20; -extern const bool __static_condition_default_32; -extern const bool __static_condition_default_23; -extern const bool __static_condition_default_16; -extern const bool __static_condition_default_24; extern const bool __static_condition_default_29; extern const bool __static_condition_default_17; +extern const bool __static_condition_default_23; extern const bool __static_condition_default_28; -extern const bool __static_condition_default_22; -extern const bool __static_condition_default_31; void __static_initializer_default() { __static_renaming("____assert_fail_4", "__assert_fail"); __static_renaming("____assert_perror_fail_9", "__assert_perror_fail"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.clangres b/fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.clangres index e69de29b..3537601f 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.clangres @@ -0,0 +1,5 @@ +In file included from :342: +:4:9: error: 'defined' cannot be used as a macro name +#define defined 1 + ^ +1 error generated. diff --git a/fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.desugared.c index 90081d09..51333518 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.desugared.c @@ -7,15 +7,15 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_10; +extern const bool __static_condition_default_39; extern const bool __static_condition_default_32; -extern const bool __static_condition_default_26; extern const bool __static_condition_default_30; extern const bool __static_condition_default_38; -extern const bool __static_condition_default_29; +extern const bool __static_condition_default_26; +extern const bool __static_condition_default_10; extern const bool __static_condition_default_31; +extern const bool __static_condition_default_29; extern const bool __static_condition_default_33; -extern const bool __static_condition_default_39; void __static_initializer_default() { __static_renaming("__malloc_1", "malloc"); __static_renaming("__free_3", "free"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.clangres b/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.clangres index e72f9cd9..a02bfdae 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.clangres @@ -1,14 +1,11 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.c:26:21: error: use of undeclared identifier 'PAGE_SHIFT' -int* kmalloc_caches[KMALLOC_SHIFT_HIGH + 1]; - ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.c:18:42: note: expanded from macro 'KMALLOC_SHIFT_HIGH' -#define KMALLOC_SHIFT_HIGH ((MAX_ORDER + PAGE_SHIFT - 1) <= 25 ? \ - ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.c:26:21: error: use of undeclared identifier 'PAGE_SHIFT' -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.c:19:41: note: expanded from macro 'KMALLOC_SHIFT_HIGH' - (MAX_ORDER + PAGE_SHIFT - 1) : 25) - ^ +In file included from :342: +:2:8: error: 'defined' cannot be used as a macro name +#undef defined + ^ /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.c:34:19: error: use of undeclared identifier 'PAGE_SHIFT' for (i = 1; i < PAGE_SHIFT + MAX_ORDER; i++) ^ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.c:36:20: error: use of undeclared identifier 'kmalloc_caches' + int* cache = kmalloc_caches[i]; // (4) ERROR + ^ 3 errors generated. diff --git a/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.desugared.c index aff31c28..c21cea76 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.desugared.c @@ -7,55 +7,48 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_4; -extern const bool __static_condition_default_13; -extern const bool __static_condition_default_7; extern const bool __static_condition_default_2; -extern const bool __static_condition_default_11; +extern const bool __static_condition_default_10; extern const bool __static_condition_default_1; -extern const bool __static_condition_default_14; +extern const bool __static_condition_default_6; +extern const bool __static_condition_default_5; +extern const bool __static_condition_default_11; extern const bool __static_condition_default_0; void __static_initializer_default() { -__static_renaming("__i_3", "i"); -__static_renaming("__init_node_lock_keys_5", "init_node_lock_keys"); -__static_renaming("__init_node_lock_keys_6", "init_node_lock_keys"); -__static_renaming("__init_lock_keys_8", "init_lock_keys"); -__static_renaming("__init_lock_keys_9", "init_lock_keys"); -__static_renaming("__kmem_cache_init_late_10", "kmem_cache_init_late"); -__static_renaming("__main_12", "main"); +__static_renaming("__init_node_lock_keys_3", "init_node_lock_keys"); +__static_renaming("__init_node_lock_keys_4", "init_node_lock_keys"); +__static_renaming("__init_lock_keys_7", "init_lock_keys"); +__static_renaming("__kmem_cache_init_late_8", "kmem_cache_init_late"); +__static_renaming("__main_9", "main"); __static_condition_renaming("__static_condition_default_0", "(defined CONFIG_FORCE_MAX_ZONEORDER) && (defined CONFIG_SLAB) && !(defined CONFIG_SLOB)"); -__static_condition_renaming("__static_condition_default_1", "!(defined CONFIG_SLAB) && !(defined CONFIG_SLOB)"); -__static_condition_renaming("__static_condition_default_2", "!(defined CONFIG_FORCE_MAX_ZONEORDER) && (defined CONFIG_SLAB) && !(defined CONFIG_SLOB)"); -__static_condition_renaming("__static_condition_default_4", "(defined CONFIG_LOCKDEP)"); -__static_condition_renaming("__static_condition_default_7", "!(defined CONFIG_LOCKDEP)"); -__static_condition_renaming("__static_condition_default_11", "!(defined CONFIG_LOCKDEP)"); -__static_condition_renaming("__static_condition_default_13", "!(defined CONFIG_SLOB)"); -__static_condition_renaming("__static_condition_default_14", "(defined CONFIG_SLOB)"); +__static_condition_renaming("__static_condition_default_1", "!(defined CONFIG_FORCE_MAX_ZONEORDER) && (defined CONFIG_SLAB) && !(defined CONFIG_SLOB)"); +__static_condition_renaming("__static_condition_default_2", "!(defined CONFIG_SLAB) && !(defined CONFIG_SLOB)"); +__static_condition_renaming("__static_condition_default_5", "(defined CONFIG_SLOB)"); +__static_condition_renaming("__static_condition_default_6", "!(defined CONFIG_SLOB)"); +__static_condition_renaming("__static_condition_default_10", "!(defined CONFIG_SLOB)"); +__static_condition_renaming("__static_condition_default_11", "(defined CONFIG_SLOB)"); }; -static void (__init_node_lock_keys_5) () { +int (__init_node_lock_keys_3) () { -if (__static_condition_default_4) { +if (__static_condition_default_5) { { { -int __i_3;// L32 - -__static_type_error("no valid type in iterationstatement (3)"); } } } } -int (__init_node_lock_keys_6) () { +int (__init_node_lock_keys_4) () { -if (__static_condition_default_7) { +if (__static_condition_default_6) { { { @@ -68,73 +61,45 @@ if (__static_condition_default_7) { } } -void (__init_lock_keys_8) (void ) { - -{ -if (__static_condition_default_4) { +void (__init_lock_keys_7) (void ) { { { - __init_node_lock_keys_5 ( ) ; // L47 } } } - -}} -void (__init_lock_keys_9) (void ) { - -{ -if (__static_condition_default_7) { +void (__kmem_cache_init_late_8) (void ) { { { + __init_lock_keys_7 ( ) ; // L61 } } } - -}} -void (__kmem_cache_init_late_10) (void ) { +int (__main_9) (void ) { { { -if (__static_condition_default_4) { - __init_lock_keys_8 ( ) ; // L61 +if (__static_condition_default_10) { + __kmem_cache_init_late_8 ( ) ; // L67 } if (__static_condition_default_11) { - __init_lock_keys_9 ( ) ; // L61 -} -} -} - - -} -int (__main_12) (void ) { - -{ -{ - - - -if (__static_condition_default_13) { - __kmem_cache_init_late_10 ( ) ; // L67 -} -if (__static_condition_default_14) { return 0 ;// L69 } -if (__static_condition_default_13) { +if (__static_condition_default_10) { return 0 ;// L69 } } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/1c17e4d4437.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/1c17e4d4437.desugared.c index 499ef6c6..7d318443 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/1c17e4d4437.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/1c17e4d4437.desugared.c @@ -7,14 +7,14 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_21; -extern const bool __static_condition_default_23; +extern const bool __static_condition_default_12; extern const bool __static_condition_default_18; -extern const bool __static_condition_default_20; -extern const bool __static_condition_default_19; +extern const bool __static_condition_default_23; extern const bool __static_condition_default_24; -extern const bool __static_condition_default_12; extern const bool __static_condition_default_11; +extern const bool __static_condition_default_21; +extern const bool __static_condition_default_19; +extern const bool __static_condition_default_20; void __static_initializer_default() { __static_renaming("__printf_1", "printf"); __static_renaming("__sprintf_4", "sprintf"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/1f758a4341a.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/1f758a4341a.desugared.c index 6f6749d4..fbd868f3 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/1f758a4341a.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/1f758a4341a.desugared.c @@ -7,11 +7,11 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_3; -extern const bool __static_condition_default_4; extern const bool __static_condition_default_11; +extern const bool __static_condition_default_4; extern const bool __static_condition_default_7; extern const bool __static_condition_default_12; +extern const bool __static_condition_default_3; void __static_initializer_default() { __static_renaming("__some_int_0", "some_int"); __static_renaming("____alloc_pages_nodemask_2", "__alloc_pages_nodemask"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/208d89843b7.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/208d89843b7.desugared.c index 72de361c..d1757d1a 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/208d89843b7.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/208d89843b7.desugared.c @@ -7,1333 +7,260 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_276; -extern const bool __static_condition_default_808; -extern const bool __static_condition_default_60; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_581; -extern const bool __static_condition_default_67; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_414; -extern const bool __static_condition_default_378; -extern const bool __static_condition_default_285; -extern const bool __static_condition_default_426; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_394; -extern const bool __static_condition_default_379; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_802; -extern const bool __static_condition_default_325; -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_579; -extern const bool __static_condition_default_361; -extern const bool __static_condition_default_237; -extern const bool __static_condition_default_819; +extern const bool __static_condition_default_155; extern const bool __static_condition_default_264; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_261; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_423; -extern const bool __static_condition_default_803; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_215; -extern const bool __static_condition_default_812; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_279; -extern const bool __static_condition_default_595; -extern const bool __static_condition_default_308; -extern const bool __static_condition_default_234; -extern const bool __static_condition_default_243; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_420; -extern const bool __static_condition_default_302; -extern const bool __static_condition_default_429; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_818; -extern const bool __static_condition_default_240; -extern const bool __static_condition_default_305; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_252; -extern const bool __static_condition_default_629; -extern const bool __static_condition_default_273; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_349; -extern const bool __static_condition_default_352; -extern const bool __static_condition_default_604; +extern const bool __static_condition_default_109; +extern const bool __static_condition_default_157; +extern const bool __static_condition_default_190; +extern const bool __static_condition_default_254; +extern const bool __static_condition_default_260; +extern const bool __static_condition_default_122; +extern const bool __static_condition_default_123; extern const bool __static_condition_default_255; -extern const bool __static_condition_default_627; -extern const bool __static_condition_default_594; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_288; +extern const bool __static_condition_default_261; +extern const bool __static_condition_default_107; +extern const bool __static_condition_default_149; +extern const bool __static_condition_default_151; +extern const bool __static_condition_default_265; +extern const bool __static_condition_default_132; +extern const bool __static_condition_default_130; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); __static_renaming("__wchar_t_2", "wchar_t"); -__static_renaming("__idtype_t_8", "idtype_t"); -__static_renaming("____u_char_9", "__u_char"); -__static_renaming("____u_short_10", "__u_short"); -__static_renaming("____u_int_11", "__u_int"); -__static_renaming("____u_long_12", "__u_long"); -__static_renaming("____int8_t_13", "__int8_t"); -__static_renaming("____uint8_t_14", "__uint8_t"); -__static_renaming("____int16_t_15", "__int16_t"); -__static_renaming("____uint16_t_16", "__uint16_t"); -__static_renaming("____int32_t_17", "__int32_t"); -__static_renaming("____uint32_t_18", "__uint32_t"); -__static_renaming("____int64_t_19", "__int64_t"); -__static_renaming("____uint64_t_20", "__uint64_t"); -__static_renaming("____quad_t_21", "__quad_t"); -__static_renaming("____u_quad_t_22", "__u_quad_t"); -__static_renaming("____dev_t_23", "__dev_t"); -__static_renaming("____uid_t_24", "__uid_t"); -__static_renaming("____gid_t_25", "__gid_t"); -__static_renaming("____ino_t_26", "__ino_t"); -__static_renaming("____ino64_t_27", "__ino64_t"); -__static_renaming("____mode_t_28", "__mode_t"); -__static_renaming("____nlink_t_29", "__nlink_t"); -__static_renaming("____off_t_30", "__off_t"); -__static_renaming("____off64_t_31", "__off64_t"); -__static_renaming("____pid_t_32", "__pid_t"); -__static_renaming("____fsid_t_36", "__fsid_t"); -__static_renaming("____clock_t_37", "__clock_t"); -__static_renaming("____rlim_t_38", "__rlim_t"); -__static_renaming("____rlim64_t_39", "__rlim64_t"); -__static_renaming("____id_t_40", "__id_t"); -__static_renaming("____time_t_41", "__time_t"); -__static_renaming("____useconds_t_42", "__useconds_t"); -__static_renaming("____suseconds_t_43", "__suseconds_t"); -__static_renaming("____daddr_t_44", "__daddr_t"); -__static_renaming("____key_t_45", "__key_t"); -__static_renaming("____clockid_t_46", "__clockid_t"); -__static_renaming("____timer_t_47", "__timer_t"); -__static_renaming("____blksize_t_48", "__blksize_t"); -__static_renaming("____blkcnt_t_49", "__blkcnt_t"); -__static_renaming("____blkcnt64_t_50", "__blkcnt64_t"); -__static_renaming("____fsblkcnt_t_51", "__fsblkcnt_t"); -__static_renaming("____fsblkcnt64_t_52", "__fsblkcnt64_t"); -__static_renaming("____fsfilcnt_t_53", "__fsfilcnt_t"); -__static_renaming("____fsfilcnt64_t_54", "__fsfilcnt64_t"); -__static_renaming("____fsword_t_55", "__fsword_t"); -__static_renaming("____ssize_t_56", "__ssize_t"); -__static_renaming("____syscall_slong_t_57", "__syscall_slong_t"); -__static_renaming("____syscall_ulong_t_58", "__syscall_ulong_t"); -__static_renaming("____loff_t_59", "__loff_t"); -__static_renaming("____qaddr_t_61", "__qaddr_t"); -__static_renaming("____caddr_t_62", "__caddr_t"); -__static_renaming("____intptr_t_63", "__intptr_t"); -__static_renaming("____socklen_t_64", "__socklen_t"); -__static_renaming("____bswap_32_66", "__bswap_32"); -__static_renaming("____bswap_64_69", "__bswap_64"); -__static_renaming("____WAIT_STATUS_89", "__WAIT_STATUS"); -__static_renaming("__div_t_94", "div_t"); -__static_renaming("__ldiv_t_99", "ldiv_t"); -__static_renaming("__lldiv_t_104", "lldiv_t"); -__static_renaming("____ctype_get_mb_cur_max_105", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_106", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_107", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_108", "__ctype_get_mb_cur_max"); -__static_renaming("__atof_110", "atof"); -__static_renaming("__atof_111", "atof"); -__static_renaming("__atoi_113", "atoi"); -__static_renaming("__atoi_114", "atoi"); -__static_renaming("__atol_116", "atol"); -__static_renaming("__atol_117", "atol"); -__static_renaming("__atoll_119", "atoll"); -__static_renaming("__atoll_120", "atoll"); -__static_renaming("__strtod_123", "strtod"); -__static_renaming("__strtof_126", "strtof"); -__static_renaming("__strtold_129", "strtold"); -__static_renaming("__strtol_133", "strtol"); -__static_renaming("__strtoul_137", "strtoul"); -__static_renaming("__strtoq_141", "strtoq"); -__static_renaming("__strtouq_145", "strtouq"); -__static_renaming("__strtoll_149", "strtoll"); -__static_renaming("__strtoll_150", "strtoll"); -__static_renaming("__strtoull_154", "strtoull"); -__static_renaming("__l64a_159", "l64a"); -__static_renaming("__l64a_160", "l64a"); -__static_renaming("__a64l_162", "a64l"); -__static_renaming("__a64l_163", "a64l"); -__static_renaming("____u_char_164", "__u_char"); -__static_renaming("____u_short_165", "__u_short"); -__static_renaming("____u_int_166", "__u_int"); -__static_renaming("____u_long_167", "__u_long"); -__static_renaming("____int8_t_168", "__int8_t"); -__static_renaming("____uint8_t_169", "__uint8_t"); -__static_renaming("____int16_t_170", "__int16_t"); -__static_renaming("____uint16_t_171", "__uint16_t"); -__static_renaming("____int32_t_172", "__int32_t"); -__static_renaming("____uint32_t_173", "__uint32_t"); -__static_renaming("____int64_t_174", "__int64_t"); -__static_renaming("____uint64_t_175", "__uint64_t"); -__static_renaming("____quad_t_176", "__quad_t"); -__static_renaming("____u_quad_t_177", "__u_quad_t"); -__static_renaming("____dev_t_178", "__dev_t"); -__static_renaming("____uid_t_179", "__uid_t"); -__static_renaming("____gid_t_180", "__gid_t"); -__static_renaming("____ino_t_181", "__ino_t"); -__static_renaming("____ino64_t_182", "__ino64_t"); -__static_renaming("____mode_t_183", "__mode_t"); -__static_renaming("____nlink_t_184", "__nlink_t"); -__static_renaming("____off_t_185", "__off_t"); -__static_renaming("____off64_t_186", "__off64_t"); -__static_renaming("____pid_t_187", "__pid_t"); -__static_renaming("____fsid_t_191", "__fsid_t"); -__static_renaming("____clock_t_192", "__clock_t"); -__static_renaming("____rlim_t_193", "__rlim_t"); -__static_renaming("____rlim64_t_194", "__rlim64_t"); -__static_renaming("____id_t_195", "__id_t"); -__static_renaming("____time_t_196", "__time_t"); -__static_renaming("____useconds_t_197", "__useconds_t"); -__static_renaming("____suseconds_t_198", "__suseconds_t"); -__static_renaming("____daddr_t_199", "__daddr_t"); -__static_renaming("____key_t_200", "__key_t"); -__static_renaming("____clockid_t_201", "__clockid_t"); -__static_renaming("____timer_t_202", "__timer_t"); -__static_renaming("____blksize_t_203", "__blksize_t"); -__static_renaming("____blkcnt_t_204", "__blkcnt_t"); -__static_renaming("____blkcnt64_t_205", "__blkcnt64_t"); -__static_renaming("____fsblkcnt_t_206", "__fsblkcnt_t"); -__static_renaming("____fsblkcnt64_t_207", "__fsblkcnt64_t"); -__static_renaming("____fsfilcnt_t_208", "__fsfilcnt_t"); -__static_renaming("____fsfilcnt64_t_209", "__fsfilcnt64_t"); -__static_renaming("____fsword_t_210", "__fsword_t"); -__static_renaming("____ssize_t_211", "__ssize_t"); -__static_renaming("____syscall_slong_t_212", "__syscall_slong_t"); -__static_renaming("____syscall_ulong_t_213", "__syscall_ulong_t"); -__static_renaming("____loff_t_214", "__loff_t"); -__static_renaming("____qaddr_t_216", "__qaddr_t"); -__static_renaming("____caddr_t_217", "__caddr_t"); -__static_renaming("____intptr_t_218", "__intptr_t"); -__static_renaming("____socklen_t_219", "__socklen_t"); -__static_renaming("__u_char_220", "u_char"); -__static_renaming("__u_char_221", "u_char"); -__static_renaming("__u_short_222", "u_short"); -__static_renaming("__u_short_223", "u_short"); -__static_renaming("__u_int_224", "u_int"); -__static_renaming("__u_int_225", "u_int"); -__static_renaming("__u_long_226", "u_long"); -__static_renaming("__u_long_227", "u_long"); -__static_renaming("__quad_t_228", "quad_t"); -__static_renaming("__quad_t_229", "quad_t"); -__static_renaming("__u_quad_t_230", "u_quad_t"); -__static_renaming("__u_quad_t_231", "u_quad_t"); -__static_renaming("__fsid_t_232", "fsid_t"); -__static_renaming("__fsid_t_233", "fsid_t"); -__static_renaming("__loff_t_235", "loff_t"); -__static_renaming("__loff_t_236", "loff_t"); -__static_renaming("__loff_t_238", "loff_t"); -__static_renaming("__loff_t_239", "loff_t"); -__static_renaming("__ino_t_241", "ino_t"); -__static_renaming("__ino_t_242", "ino_t"); -__static_renaming("__ino_t_244", "ino_t"); -__static_renaming("__ino_t_245", "ino_t"); -__static_renaming("__dev_t_247", "dev_t"); -__static_renaming("__dev_t_248", "dev_t"); -__static_renaming("__gid_t_250", "gid_t"); -__static_renaming("__gid_t_251", "gid_t"); -__static_renaming("__gid_t_253", "gid_t"); -__static_renaming("__gid_t_254", "gid_t"); -__static_renaming("__mode_t_256", "mode_t"); -__static_renaming("__mode_t_257", "mode_t"); -__static_renaming("__nlink_t_259", "nlink_t"); -__static_renaming("__nlink_t_260", "nlink_t"); -__static_renaming("__uid_t_262", "uid_t"); -__static_renaming("__uid_t_263", "uid_t"); -__static_renaming("__uid_t_265", "uid_t"); -__static_renaming("__uid_t_266", "uid_t"); -__static_renaming("__off_t_268", "off_t"); -__static_renaming("__off_t_269", "off_t"); -__static_renaming("__off_t_271", "off_t"); -__static_renaming("__off_t_272", "off_t"); -__static_renaming("__pid_t_274", "pid_t"); -__static_renaming("__pid_t_275", "pid_t"); -__static_renaming("__pid_t_277", "pid_t"); -__static_renaming("__pid_t_278", "pid_t"); -__static_renaming("__id_t_280", "id_t"); -__static_renaming("__id_t_281", "id_t"); -__static_renaming("__ssize_t_283", "ssize_t"); -__static_renaming("__ssize_t_284", "ssize_t"); -__static_renaming("__daddr_t_286", "daddr_t"); -__static_renaming("__daddr_t_287", "daddr_t"); -__static_renaming("__caddr_t_289", "caddr_t"); -__static_renaming("__caddr_t_290", "caddr_t"); -__static_renaming("__key_t_291", "key_t"); -__static_renaming("__key_t_292", "key_t"); -__static_renaming("__key_t_294", "key_t"); -__static_renaming("__key_t_295", "key_t"); -__static_renaming("__clock_t_297", "clock_t"); -__static_renaming("__clock_t_298", "clock_t"); -__static_renaming("__time_t_300", "time_t"); -__static_renaming("__time_t_301", "time_t"); -__static_renaming("__clockid_t_303", "clockid_t"); -__static_renaming("__clockid_t_304", "clockid_t"); -__static_renaming("__timer_t_306", "timer_t"); -__static_renaming("__timer_t_307", "timer_t"); -__static_renaming("__ulong_309", "ulong"); -__static_renaming("__ulong_310", "ulong"); -__static_renaming("__ulong_311", "ulong"); -__static_renaming("__ushort_312", "ushort"); -__static_renaming("__uint_313", "uint"); -__static_renaming("__int8_t_314", "int8_t"); -__static_renaming("__int16_t_315", "int16_t"); -__static_renaming("__int32_t_316", "int32_t"); -__static_renaming("__int64_t_317", "int64_t"); -__static_renaming("__u_int8_t_318", "u_int8_t"); -__static_renaming("__u_int16_t_319", "u_int16_t"); -__static_renaming("__u_int32_t_320", "u_int32_t"); -__static_renaming("__u_int64_t_321", "u_int64_t"); -__static_renaming("__register_t_322", "register_t"); -__static_renaming("____bswap_32_324", "__bswap_32"); -__static_renaming("____bswap_64_327", "__bswap_64"); -__static_renaming("____sig_atomic_t_328", "__sig_atomic_t"); -__static_renaming("____sigset_t_332", "__sigset_t"); -__static_renaming("__sigset_t_333", "sigset_t"); -__static_renaming("__suseconds_t_350", "suseconds_t"); -__static_renaming("__suseconds_t_351", "suseconds_t"); -__static_renaming("____fd_mask_353", "__fd_mask"); -__static_renaming("____fd_mask_354", "__fd_mask"); -__static_renaming("__fd_set_362", "fd_set"); -__static_renaming("__fd_mask_363", "fd_mask"); -__static_renaming("__fd_mask_364", "fd_mask"); -__static_renaming("__select_376", "select"); -__static_renaming("__select_377", "select"); -__static_renaming("__pselect_392", "pselect"); -__static_renaming("__pselect_393", "pselect"); -__static_renaming("____fdelt_chk_397", "__fdelt_chk"); -__static_renaming("____fdelt_warn_399", "__fdelt_warn"); -__static_renaming("__gnu_dev_major_401", "gnu_dev_major"); -__static_renaming("__gnu_dev_major_402", "gnu_dev_major"); -__static_renaming("__gnu_dev_minor_404", "gnu_dev_minor"); -__static_renaming("__gnu_dev_makedev_407", "gnu_dev_makedev"); -__static_renaming("__blksize_t_412", "blksize_t"); -__static_renaming("__blksize_t_413", "blksize_t"); -__static_renaming("__blkcnt_t_415", "blkcnt_t"); -__static_renaming("__blkcnt_t_416", "blkcnt_t"); -__static_renaming("__fsblkcnt_t_418", "fsblkcnt_t"); -__static_renaming("__fsblkcnt_t_419", "fsblkcnt_t"); -__static_renaming("__blkcnt_t_421", "blkcnt_t"); -__static_renaming("__blkcnt_t_422", "blkcnt_t"); -__static_renaming("__fsblkcnt_t_424", "fsblkcnt_t"); -__static_renaming("__fsblkcnt_t_425", "fsblkcnt_t"); -__static_renaming("__fsfilcnt_t_427", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_428", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_430", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_431", "fsfilcnt_t"); -__static_renaming("__pthread_t_433", "pthread_t"); -__static_renaming("__pthread_attr_t_437", "pthread_attr_t"); -__static_renaming("____pthread_list_t_442", "__pthread_list_t"); -__static_renaming("____pthread_list_t_443", "__pthread_list_t"); -__static_renaming("__pthread_mutex_t_459", "pthread_mutex_t"); -__static_renaming("__pthread_mutexattr_t_464", "pthread_mutexattr_t"); -__static_renaming("__rand_465", "rand"); -__static_renaming("__srand_467", "srand"); -__static_renaming("__rand_r_469", "rand_r"); -__static_renaming("__drand48_470", "drand48"); -__static_renaming("__erand48_472", "erand48"); -__static_renaming("__lrand48_473", "lrand48"); -__static_renaming("__nrand48_475", "nrand48"); -__static_renaming("__mrand48_476", "mrand48"); -__static_renaming("__jrand48_478", "jrand48"); -__static_renaming("__srand48_480", "srand48"); -__static_renaming("__seed48_482", "seed48"); -__static_renaming("__lcong48_484", "lcong48"); -__static_renaming("__malloc_486", "malloc"); -__static_renaming("__malloc_487", "malloc"); -__static_renaming("__calloc_490", "calloc"); -__static_renaming("__calloc_491", "calloc"); -__static_renaming("__realloc_494", "realloc"); -__static_renaming("__free_496", "free"); -__static_renaming("__cfree_498", "cfree"); -__static_renaming("__alloca_500", "alloca"); -__static_renaming("__valloc_502", "valloc"); -__static_renaming("__valloc_503", "valloc"); -__static_renaming("__posix_memalign_507", "posix_memalign"); -__static_renaming("__posix_memalign_508", "posix_memalign"); -__static_renaming("__aligned_alloc_511", "aligned_alloc"); -__static_renaming("__aligned_alloc_512", "aligned_alloc"); -__static_renaming("__aligned_alloc_513", "aligned_alloc"); -__static_renaming("__aligned_alloc_514", "aligned_alloc"); -__static_renaming("__abort_515", "abort"); -__static_renaming("__atexit_517", "atexit"); -__static_renaming("__at_quick_exit_519", "at_quick_exit"); -__static_renaming("__on_exit_524", "on_exit"); -__static_renaming("__exit_526", "exit"); -__static_renaming("__exit_527", "exit"); -__static_renaming("__quick_exit_529", "quick_exit"); -__static_renaming("___Exit_531", "_Exit"); -__static_renaming("__getenv_533", "getenv"); -__static_renaming("__getenv_534", "getenv"); -__static_renaming("__putenv_536", "putenv"); -__static_renaming("__setenv_540", "setenv"); -__static_renaming("__unsetenv_542", "unsetenv"); -__static_renaming("__clearenv_543", "clearenv"); -__static_renaming("__mktemp_545", "mktemp"); -__static_renaming("__mkstemp_548", "mkstemp"); -__static_renaming("__mkstemp_549", "mkstemp"); -__static_renaming("__mkstemp_550", "mkstemp"); -__static_renaming("__mkstemp_551", "mkstemp"); -__static_renaming("__mkstemps_556", "mkstemps"); -__static_renaming("__mkstemps_557", "mkstemps"); -__static_renaming("__mkstemps_558", "mkstemps"); -__static_renaming("__mkstemps_559", "mkstemps"); -__static_renaming("__mkdtemp_561", "mkdtemp"); -__static_renaming("__mkdtemp_562", "mkdtemp"); -__static_renaming("__system_564", "system"); -__static_renaming("__system_565", "system"); -__static_renaming("__system_566", "system"); -__static_renaming("__system_567", "system"); -__static_renaming("__realpath_570", "realpath"); -__static_renaming("__realpath_571", "realpath"); -__static_renaming("____compar_fn_t_572", "__compar_fn_t"); -__static_renaming("__bsearch_580", "bsearch"); -__static_renaming("__bsearch_582", "bsearch"); -__static_renaming("____l_589", "__l"); -__static_renaming("____u_590", "__u"); -__static_renaming("____idx_591", "__idx"); -__static_renaming("____p_592", "__p"); -__static_renaming("____comparison_593", "__comparison"); -__static_renaming("__qsort_601", "qsort"); -__static_renaming("__qsort_603", "qsort"); -__static_renaming("__abs_606", "abs"); -__static_renaming("__abs_607", "abs"); -__static_renaming("__labs_609", "labs"); -__static_renaming("__labs_610", "labs"); -__static_renaming("__llabs_612", "llabs"); -__static_renaming("__llabs_613", "llabs"); -__static_renaming("__div_616", "div"); -__static_renaming("__div_617", "div"); -__static_renaming("__ldiv_620", "ldiv"); -__static_renaming("__ldiv_622", "ldiv"); -__static_renaming("__lldiv_626", "lldiv"); -__static_renaming("__lldiv_628", "lldiv"); -__static_renaming("__ecvt_634", "ecvt"); -__static_renaming("__ecvt_635", "ecvt"); -__static_renaming("__fcvt_640", "fcvt"); -__static_renaming("__fcvt_641", "fcvt"); -__static_renaming("__gcvt_645", "gcvt"); -__static_renaming("__gcvt_646", "gcvt"); -__static_renaming("__qecvt_651", "qecvt"); -__static_renaming("__qecvt_652", "qecvt"); -__static_renaming("__qfcvt_657", "qfcvt"); -__static_renaming("__qfcvt_658", "qfcvt"); -__static_renaming("__qgcvt_662", "qgcvt"); -__static_renaming("__qgcvt_663", "qgcvt"); -__static_renaming("__ecvt_r_670", "ecvt_r"); -__static_renaming("__fcvt_r_677", "fcvt_r"); -__static_renaming("__qecvt_r_684", "qecvt_r"); -__static_renaming("__qfcvt_r_691", "qfcvt_r"); -__static_renaming("__mblen_694", "mblen"); -__static_renaming("__mblen_695", "mblen"); -__static_renaming("__mbtowc_699", "mbtowc"); -__static_renaming("__wctomb_702", "wctomb"); -__static_renaming("__mbstowcs_706", "mbstowcs"); -__static_renaming("__wcstombs_710", "wcstombs"); -__static_renaming("__rpmatch_712", "rpmatch"); -__static_renaming("__rpmatch_713", "rpmatch"); -__static_renaming("__getsubopt_717", "getsubopt"); -__static_renaming("__getsubopt_718", "getsubopt"); -__static_renaming("__getloadavg_721", "getloadavg"); -__static_renaming("____realpath_chk_726", "__realpath_chk"); -__static_renaming("____realpath_alias_729", "__realpath_alias"); -__static_renaming("____realpath_chk_warn_733", "__realpath_chk_warn"); -__static_renaming("____ptsname_r_chk_741", "__ptsname_r_chk"); -__static_renaming("____ptsname_r_alias_745", "__ptsname_r_alias"); -__static_renaming("____ptsname_r_chk_warn_750", "__ptsname_r_chk_warn"); -__static_renaming("____wctomb_chk_758", "__wctomb_chk"); -__static_renaming("____wctomb_alias_761", "__wctomb_alias"); -__static_renaming("____mbstowcs_chk_768", "__mbstowcs_chk"); -__static_renaming("____mbstowcs_alias_772", "__mbstowcs_alias"); -__static_renaming("____mbstowcs_chk_warn_777", "__mbstowcs_chk_warn"); -__static_renaming("____wcstombs_chk_785", "__wcstombs_chk"); -__static_renaming("____wcstombs_alias_789", "__wcstombs_alias"); -__static_renaming("____wcstombs_chk_warn_794", "__wcstombs_chk_warn"); -__static_renaming("__spin_lock_irq_798", "spin_lock_irq"); -__static_renaming("__spin_lock_irq_799", "spin_lock_irq"); -__static_renaming("__spin_lock_irq_800", "spin_lock_irq"); -__static_renaming("__spin_unlock_irq_804", "spin_unlock_irq"); -__static_renaming("__spin_lock_bh_805", "spin_lock_bh"); -__static_renaming("__spin_unlock_bh_806", "spin_unlock_bh"); -__static_renaming("__kunmap_skb_frag_807", "kunmap_skb_frag"); -__static_renaming("__csum_810", "csum"); -__static_renaming("__skb_checksum_811", "skb_checksum"); -__static_renaming("__udp_checksum_complete_814", "udp_checksum_complete"); -__static_renaming("__mask_815", "mask"); -__static_renaming("__udp_poll_816", "udp_poll"); -__static_renaming("__main_822", "main"); - -__static_condition_renaming("__static_condition_default_60", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_67", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_215", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_234", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __u_char_defined)"); -__static_condition_renaming("__static_condition_default_237", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __u_char_defined)"); -__static_condition_renaming("__static_condition_default_240", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __u_char_defined)"); -__static_condition_renaming("__static_condition_default_243", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ino_t_defined)"); -__static_condition_renaming("__static_condition_default_246", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ino_t_defined) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ino_t_defined)"); -__static_condition_renaming("__static_condition_default_249", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_252", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_255", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_258", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_261", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __nlink_t_defined)"); -__static_condition_renaming("__static_condition_default_264", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __nlink_t_defined)"); -__static_condition_renaming("__static_condition_default_267", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __nlink_t_defined)"); -__static_condition_renaming("__static_condition_default_270", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_273", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_276", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_279", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_282", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __id_t_defined)"); -__static_condition_renaming("__static_condition_default_285", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_288", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_293", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_296", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_299", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __clock_t_defined)"); -__static_condition_renaming("__static_condition_default_302", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __time_t_defined)"); -__static_condition_renaming("__static_condition_default_305", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __clockid_t_defined)"); -__static_condition_renaming("__static_condition_default_308", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __timer_t_defined)"); -__static_condition_renaming("__static_condition_default_325", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_341", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_349", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_352", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __suseconds_t_defined)"); -__static_condition_renaming("__static_condition_default_361", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_378", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_379", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_394", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_395", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_414", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blksize_t_defined)"); -__static_condition_renaming("__static_condition_default_417", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blkcnt_t_defined) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blkcnt_t_defined)"); -__static_condition_renaming("__static_condition_default_420", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_423", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blkcnt_t_defined)"); -__static_condition_renaming("__static_condition_default_426", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_429", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_432", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_579", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_581", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_594", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __USE_EXTERN_INLINES) && !(defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_595", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_602", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_604", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_621", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_623", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_627", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_629", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_736", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_801", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_802", "!(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_803", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_808", "!(defined CONFIG_HIGHMEM)"); -__static_condition_renaming("__static_condition_default_809", "(defined CONFIG_HIGHMEM)"); -__static_condition_renaming("__static_condition_default_812", "!(defined _STDLIB_H) && (defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_813", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined __need_malloc_and_calloc) || (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_817", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_818", "!(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_819", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined __need_malloc_and_calloc) || (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_823", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc)"); - -if (__static_condition_default_823) -{ -__static_parse_error("Unable to parse"); -} +__static_renaming("__div_t_7", "div_t"); +__static_renaming("__ldiv_t_12", "ldiv_t"); +__static_renaming("__lldiv_t_17", "lldiv_t"); +__static_renaming("____ctype_get_mb_cur_max_18", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_19", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_20", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_21", "__ctype_get_mb_cur_max"); +__static_renaming("__atof_23", "atof"); +__static_renaming("__atof_24", "atof"); +__static_renaming("__atoi_26", "atoi"); +__static_renaming("__atoi_27", "atoi"); +__static_renaming("__atol_29", "atol"); +__static_renaming("__atol_30", "atol"); +__static_renaming("__atoll_32", "atoll"); +__static_renaming("__atoll_33", "atoll"); +__static_renaming("__strtod_36", "strtod"); +__static_renaming("__strtof_39", "strtof"); +__static_renaming("__strtold_42", "strtold"); +__static_renaming("__strtol_46", "strtol"); +__static_renaming("__strtoul_50", "strtoul"); +__static_renaming("__strtoll_54", "strtoll"); +__static_renaming("__strtoull_58", "strtoull"); +__static_renaming("__rand_62", "rand"); +__static_renaming("__rand_63", "rand"); +__static_renaming("__srand_65", "srand"); +__static_renaming("__malloc_67", "malloc"); +__static_renaming("__malloc_68", "malloc"); +__static_renaming("__calloc_71", "calloc"); +__static_renaming("__calloc_72", "calloc"); +__static_renaming("__realloc_75", "realloc"); +__static_renaming("__realloc_76", "realloc"); +__static_renaming("__free_78", "free"); +__static_renaming("__aligned_alloc_81", "aligned_alloc"); +__static_renaming("__aligned_alloc_82", "aligned_alloc"); +__static_renaming("__abort_83", "abort"); +__static_renaming("__atexit_85", "atexit"); +__static_renaming("__at_quick_exit_87", "at_quick_exit"); +__static_renaming("__exit_89", "exit"); +__static_renaming("__quick_exit_91", "quick_exit"); +__static_renaming("___Exit_93", "_Exit"); +__static_renaming("__getenv_95", "getenv"); +__static_renaming("__getenv_96", "getenv"); +__static_renaming("__system_98", "system"); +__static_renaming("__system_99", "system"); +__static_renaming("____compar_fn_t_100", "__compar_fn_t"); +__static_renaming("__bsearch_108", "bsearch"); +__static_renaming("__bsearch_110", "bsearch"); +__static_renaming("____l_117", "__l"); +__static_renaming("____u_118", "__u"); +__static_renaming("____idx_119", "__idx"); +__static_renaming("____p_120", "__p"); +__static_renaming("____comparison_121", "__comparison"); +__static_renaming("__qsort_129", "qsort"); +__static_renaming("__qsort_131", "qsort"); +__static_renaming("__abs_134", "abs"); +__static_renaming("__abs_135", "abs"); +__static_renaming("__labs_137", "labs"); +__static_renaming("__labs_138", "labs"); +__static_renaming("__llabs_140", "llabs"); +__static_renaming("__llabs_141", "llabs"); +__static_renaming("__div_144", "div"); +__static_renaming("__div_145", "div"); +__static_renaming("__ldiv_148", "ldiv"); +__static_renaming("__ldiv_150", "ldiv"); +__static_renaming("__lldiv_154", "lldiv"); +__static_renaming("__lldiv_156", "lldiv"); +__static_renaming("__mblen_160", "mblen"); +__static_renaming("__mbtowc_164", "mbtowc"); +__static_renaming("__wctomb_167", "wctomb"); +__static_renaming("__mbstowcs_171", "mbstowcs"); +__static_renaming("__wcstombs_175", "wcstombs"); +__static_renaming("____realpath_chk_180", "__realpath_chk"); +__static_renaming("____realpath_alias_183", "__realpath_alias"); +__static_renaming("____realpath_chk_warn_187", "__realpath_chk_warn"); +__static_renaming("____ptsname_r_chk_195", "__ptsname_r_chk"); +__static_renaming("____ptsname_r_alias_199", "__ptsname_r_alias"); +__static_renaming("____ptsname_r_chk_warn_204", "__ptsname_r_chk_warn"); +__static_renaming("____wctomb_chk_212", "__wctomb_chk"); +__static_renaming("____wctomb_alias_215", "__wctomb_alias"); +__static_renaming("____mbstowcs_chk_222", "__mbstowcs_chk"); +__static_renaming("____mbstowcs_alias_226", "__mbstowcs_alias"); +__static_renaming("____mbstowcs_chk_warn_231", "__mbstowcs_chk_warn"); +__static_renaming("____wcstombs_chk_239", "__wcstombs_chk"); +__static_renaming("____wcstombs_alias_243", "__wcstombs_alias"); +__static_renaming("____wcstombs_chk_warn_248", "__wcstombs_chk_warn"); +__static_renaming("__spin_lock_irq_252", "spin_lock_irq"); +__static_renaming("__spin_lock_irq_253", "spin_lock_irq"); +__static_renaming("__spin_unlock_irq_256", "spin_unlock_irq"); +__static_renaming("__spin_lock_bh_257", "spin_lock_bh"); +__static_renaming("__spin_unlock_bh_258", "spin_unlock_bh"); +__static_renaming("__kunmap_skb_frag_259", "kunmap_skb_frag"); +__static_renaming("__csum_262", "csum"); +__static_renaming("__skb_checksum_263", "skb_checksum"); +__static_renaming("__udp_checksum_complete_266", "udp_checksum_complete"); +__static_renaming("__mask_267", "mask"); +__static_renaming("__udp_poll_268", "udp_poll"); +__static_renaming("__main_271", "main"); + +__static_condition_renaming("__static_condition_default_107", "!(defined _FORTIFY_SOURCE) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_109", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_122", "(defined __USE_EXTERN_INLINES) && !(defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_123", "(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_130", "!(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_132", "(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_149", "!(defined _FORTIFY_SOURCE) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_151", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_155", "!(defined _FORTIFY_SOURCE) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_157", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_190", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_254", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_255", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_260", "!(defined CONFIG_HIGHMEM)"); +__static_condition_renaming("__static_condition_default_261", "(defined CONFIG_HIGHMEM)"); +__static_condition_renaming("__static_condition_default_264", "!(defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_265", "(defined __USE_EXTERN_INLINES)"); + }; typedef long int __ptrdiff_t_0;// L143:L324 typedef long unsigned int __size_t_1;// L177:L209 typedef int __wchar_t_2;// L243:L321 -enum ____anonymous_tag_6_7 { -__P_ALL_3, -__P_PID_4, -__P_PGID_5, -}; -typedef enum ____anonymous_tag_6_7 __idtype_t_8;// L50:L55 -typedef unsigned char ____u_char_9;// L30 -typedef unsigned short int ____u_short_10;// L31 -typedef unsigned int ____u_int_11;// L32 -typedef unsigned long int ____u_long_12;// L33 -typedef signed char ____int8_t_13;// L36 -typedef unsigned char ____uint8_t_14;// L37 -typedef signed short int ____int16_t_15;// L38 -typedef unsigned short int ____uint16_t_16;// L39 -typedef signed int ____int32_t_17;// L40 -typedef unsigned int ____uint32_t_18;// L41 -typedef signed long int ____int64_t_19;// L43 -typedef unsigned long int ____uint64_t_20;// L44 -typedef long int ____quad_t_21;// L52 -typedef unsigned long int ____u_quad_t_22;// L53 -typedef unsigned long int ____dev_t_23;// L109:L124 -typedef unsigned int ____uid_t_24;// L92:L125 -typedef unsigned int ____gid_t_25;// L92:L126 -typedef unsigned long int ____ino_t_26;// L94:L127 -typedef unsigned long int ____ino64_t_27;// L109:L128 -typedef unsigned int ____mode_t_28;// L92:L129 -typedef unsigned long int ____nlink_t_29;// L94:L130 -typedef long int ____off_t_30;// L93:L131 -typedef long int ____off64_t_31;// L108:L132 -typedef int ____pid_t_32;// L91:L133 -struct ____anonymous_tag_33_34 { -int ____val_35[2];// L72 -}; -typedef struct ____anonymous_tag_33_34 ____fsid_t_36;// L72:L134 -typedef long int ____clock_t_37;// L93:L135 -typedef unsigned long int ____rlim_t_38;// L94:L136 -typedef unsigned long int ____rlim64_t_39;// L109:L137 -typedef unsigned int ____id_t_40;// L92:L138 -typedef long int ____time_t_41;// L93:L139 -typedef unsigned int ____useconds_t_42;// L92:L140 -typedef long int ____suseconds_t_43;// L93:L141 -typedef int ____daddr_t_44;// L91:L143 -typedef int ____key_t_45;// L91:L144 -typedef int ____clockid_t_46;// L91:L147 -typedef void * (____timer_t_47);// L70:L150 -typedef long int ____blksize_t_48;// L93:L153 -typedef long int ____blkcnt_t_49;// L93:L158 -typedef long int ____blkcnt64_t_50;// L108:L159 -typedef unsigned long int ____fsblkcnt_t_51;// L94:L162 -typedef unsigned long int ____fsblkcnt64_t_52;// L109:L163 -typedef unsigned long int ____fsfilcnt_t_53;// L94:L166 -typedef unsigned long int ____fsfilcnt64_t_54;// L109:L167 -typedef long int ____fsword_t_55;// L93:L170 -typedef long int ____ssize_t_56;// L110:L172 -typedef long int ____syscall_slong_t_57;// L93:L175 -typedef unsigned long int ____syscall_ulong_t_58;// L94:L177 -typedef ____off64_t_31 ____loff_t_59;// L181 -typedef ____quad_t_21 * (____qaddr_t_61);// L182 -typedef char * (____caddr_t_62);// L183 -typedef long int ____intptr_t_63;// L110:L186 -typedef unsigned int ____socklen_t_64;// L92:L189 -struct ____anonymous_tag_70_71 { -unsigned int ____w_termsig_72 : 7;// L72 -unsigned int ____w_coredump_73 : 1;// L73 -unsigned int ____w_retcode_74 : 8;// L74 -unsigned int __anon_id_0_75 : 16;// L75 -}; -struct ____anonymous_tag_76_77 { -unsigned int ____w_stopval_78 : 8;// L87 -unsigned int ____w_stopsig_79 : 8;// L88 -unsigned int __anon_id_1_80 : 16;// L89 -}; -union __wait_81 { -int __w_status_82;// L68 -struct ____anonymous_tag_70_71 ____wait_terminated_83;// L69 -struct ____anonymous_tag_76_77 ____wait_stopped_84;// L84 -}; -union ____anonymous_tag_85_86 { -union __wait_81 * (____uptr_87);// L69 -int * (____iptr_88);// L70 -}; -typedef union ____anonymous_tag_85_86 ____WAIT_STATUS_89;// L67:L71 -struct ____anonymous_tag_90_91 { -int __quot_92;// L99 -int __rem_93;// L100 +struct ____anonymous_tag_3_4 { +int __quot_5;// L99 +int __rem_6;// L100 }; -typedef struct ____anonymous_tag_90_91 __div_t_94;// L97:L101 -struct ____anonymous_tag_95_96 { -long int __quot_97;// L107 -long int __rem_98;// L108 +typedef struct ____anonymous_tag_3_4 __div_t_7;// L97:L101 +struct ____anonymous_tag_8_9 { +long int __quot_10;// L107 +long int __rem_11;// L108 }; -typedef struct ____anonymous_tag_95_96 __ldiv_t_99;// L105:L109 -struct ____anonymous_tag_100_101 { -long long int __quot_102;// L119 -long long int __rem_103;// L120 +typedef struct ____anonymous_tag_8_9 __ldiv_t_12;// L105:L109 +struct ____anonymous_tag_13_14 { +long long int __quot_15;// L119 +long long int __rem_16;// L120 }; -typedef struct ____anonymous_tag_100_101 __lldiv_t_104;// L117:L121 -typedef unsigned char ____u_char_164;// L30 -typedef unsigned short int ____u_short_165;// L31 -typedef unsigned int ____u_int_166;// L32 -typedef unsigned long int ____u_long_167;// L33 -typedef signed char ____int8_t_168;// L36 -typedef unsigned char ____uint8_t_169;// L37 -typedef signed short int ____int16_t_170;// L38 -typedef unsigned short int ____uint16_t_171;// L39 -typedef signed int ____int32_t_172;// L40 -typedef unsigned int ____uint32_t_173;// L41 -typedef signed long int ____int64_t_174;// L43 -typedef unsigned long int ____uint64_t_175;// L44 -typedef long int ____quad_t_176;// L52 -typedef unsigned long int ____u_quad_t_177;// L53 -typedef unsigned long int ____dev_t_178;// L109:L124 -typedef unsigned int ____uid_t_179;// L92:L125 -typedef unsigned int ____gid_t_180;// L92:L126 -typedef unsigned long int ____ino_t_181;// L94:L127 -typedef unsigned long int ____ino64_t_182;// L109:L128 -typedef unsigned int ____mode_t_183;// L92:L129 -typedef unsigned long int ____nlink_t_184;// L94:L130 -typedef long int ____off_t_185;// L93:L131 -typedef long int ____off64_t_186;// L108:L132 -typedef int ____pid_t_187;// L91:L133 -struct ____anonymous_tag_188_189 { -int ____val_190[2];// L72 -}; -typedef struct ____anonymous_tag_188_189 ____fsid_t_191;// L72:L134 -typedef long int ____clock_t_192;// L93:L135 -typedef unsigned long int ____rlim_t_193;// L94:L136 -typedef unsigned long int ____rlim64_t_194;// L109:L137 -typedef unsigned int ____id_t_195;// L92:L138 -typedef long int ____time_t_196;// L93:L139 -typedef unsigned int ____useconds_t_197;// L92:L140 -typedef long int ____suseconds_t_198;// L93:L141 -typedef int ____daddr_t_199;// L91:L143 -typedef int ____key_t_200;// L91:L144 -typedef int ____clockid_t_201;// L91:L147 -typedef void * (____timer_t_202);// L70:L150 -typedef long int ____blksize_t_203;// L93:L153 -typedef long int ____blkcnt_t_204;// L93:L158 -typedef long int ____blkcnt64_t_205;// L108:L159 -typedef unsigned long int ____fsblkcnt_t_206;// L94:L162 -typedef unsigned long int ____fsblkcnt64_t_207;// L109:L163 -typedef unsigned long int ____fsfilcnt_t_208;// L94:L166 -typedef unsigned long int ____fsfilcnt64_t_209;// L109:L167 -typedef long int ____fsword_t_210;// L93:L170 -typedef long int ____ssize_t_211;// L110:L172 -typedef long int ____syscall_slong_t_212;// L93:L175 -typedef unsigned long int ____syscall_ulong_t_213;// L94:L177 -typedef ____off64_t_186 ____loff_t_214;// L181 -typedef ____quad_t_176 * (____qaddr_t_216);// L182 -typedef char * (____caddr_t_217);// L183 -typedef long int ____intptr_t_218;// L110:L186 -typedef unsigned int ____socklen_t_219;// L92:L189 -typedef ____u_char_9 __u_char_220;// L33 -typedef ____u_char_164 __u_char_221;// L33 -typedef ____u_short_10 __u_short_222;// L34 -typedef ____u_short_165 __u_short_223;// L34 -typedef ____u_int_11 __u_int_224;// L35 -typedef ____u_int_166 __u_int_225;// L35 -typedef ____u_long_12 __u_long_226;// L36 -typedef ____u_long_167 __u_long_227;// L36 -typedef ____quad_t_21 __quad_t_228;// L37 -typedef ____quad_t_176 __quad_t_229;// L37 -typedef ____u_quad_t_22 __u_quad_t_230;// L38 -typedef ____u_quad_t_177 __u_quad_t_231;// L38 -typedef ____fsid_t_36 __fsid_t_232;// L39 -typedef ____fsid_t_191 __fsid_t_233;// L39 -typedef ____loff_t_59 __loff_t_235;// L44 -typedef ____loff_t_214 __loff_t_236;// L44 -typedef ____loff_t_59 __loff_t_238;// L44 -typedef ____loff_t_214 __loff_t_239;// L44 -typedef ____ino64_t_27 __ino_t_241;// L50 -typedef ____ino64_t_182 __ino_t_242;// L50 -typedef ____ino_t_26 __ino_t_244;// L48 -typedef ____ino_t_181 __ino_t_245;// L48 -typedef ____dev_t_23 __dev_t_247;// L60 -typedef ____dev_t_178 __dev_t_248;// L60 -typedef ____gid_t_25 __gid_t_250;// L65 -typedef ____gid_t_180 __gid_t_251;// L65 -typedef ____gid_t_25 __gid_t_253;// L65 -typedef ____gid_t_180 __gid_t_254;// L65 -typedef ____mode_t_28 __mode_t_256;// L70 -typedef ____mode_t_183 __mode_t_257;// L70 -typedef ____nlink_t_29 __nlink_t_259;// L75 -typedef ____nlink_t_184 __nlink_t_260;// L75 -typedef ____uid_t_24 __uid_t_262;// L80 -typedef ____uid_t_179 __uid_t_263;// L80 -typedef ____uid_t_24 __uid_t_265;// L80 -typedef ____uid_t_179 __uid_t_266;// L80 -typedef ____off64_t_31 __off_t_268;// L88 -typedef ____off64_t_186 __off_t_269;// L88 -typedef ____off_t_30 __off_t_271;// L86 -typedef ____off_t_185 __off_t_272;// L86 -typedef ____pid_t_32 __pid_t_274;// L98 -typedef ____pid_t_187 __pid_t_275;// L98 -typedef ____pid_t_32 __pid_t_277;// L98 -typedef ____pid_t_187 __pid_t_278;// L98 -typedef ____id_t_40 __id_t_280;// L104 -typedef ____id_t_195 __id_t_281;// L104 -typedef ____ssize_t_56 __ssize_t_283;// L109 -typedef ____ssize_t_211 __ssize_t_284;// L109 -typedef ____daddr_t_44 __daddr_t_286;// L115 -typedef ____daddr_t_199 __daddr_t_287;// L115 -typedef ____caddr_t_62 __caddr_t_289;// L116 -typedef ____caddr_t_217 __caddr_t_290;// L116 -typedef ____key_t_45 __key_t_291;// L122 -typedef ____key_t_200 __key_t_292;// L122 -typedef ____key_t_45 __key_t_294;// L122 -typedef ____key_t_200 __key_t_295;// L122 -typedef ____clock_t_37 __clock_t_297;// L59 -typedef ____clock_t_192 __clock_t_298;// L59 -typedef ____time_t_41 __time_t_300;// L75 -typedef ____time_t_196 __time_t_301;// L75 -typedef ____clockid_t_46 __clockid_t_303;// L91 -typedef ____clockid_t_201 __clockid_t_304;// L91 -typedef ____timer_t_47 __timer_t_306;// L103 -typedef ____timer_t_202 __timer_t_307;// L103 -typedef unsigned long int __ulong_309;// L150 -typedef unsigned long int __ulong_310;// L150 -typedef unsigned long int __ulong_311;// L150 -typedef unsigned short int __ushort_312;// L151 -typedef unsigned int __uint_313;// L152 -typedef int __int8_t_314;// L188:L194 -typedef int __int16_t_315;// L188:L195 -typedef int __int32_t_316;// L188:L196 -typedef int __int64_t_317;// L188:L197 -typedef unsigned int __u_int8_t_318;// L190:L200 -typedef unsigned int __u_int16_t_319;// L190:L201 -typedef unsigned int __u_int32_t_320;// L190:L202 -typedef unsigned int __u_int64_t_321;// L190:L203 -typedef int __register_t_322;// L205 -typedef int ____sig_atomic_t_328;// L22 -struct ____anonymous_tag_329_330 { -unsigned long int ____val_331[( 1024 / ( 8 * sizeof(unsigned long) ) )];// L29 -}; -typedef struct ____anonymous_tag_329_330 ____sigset_t_332;// L27:L30 -typedef ____sigset_t_332 __sigset_t_333;// L37 -struct __timespec_334 { -____time_t_41 __tv_sec_335;// L0 -____time_t_196 __tv_sec_336;// L0 -____syscall_slong_t_57 __tv_nsec_338;// L0 -____syscall_slong_t_212 __tv_nsec_339;// L0 -}; -struct __timeval_342 { -____time_t_41 __tv_sec_343;// L0 -____time_t_196 __tv_sec_344;// L0 -____suseconds_t_43 __tv_usec_346;// L0 -____suseconds_t_198 __tv_usec_347;// L0 -}; -typedef ____suseconds_t_43 __suseconds_t_350;// L48 -typedef ____suseconds_t_198 __suseconds_t_351;// L48 -typedef long int ____fd_mask_353;// L54 -typedef long int ____fd_mask_354;// L54 -struct ____anonymous_tag_355_356 { -____fd_mask_353 ____fds_bits_357[1024 / ( 8 * ( int ) sizeof(long) )];// L0 -____fd_mask_354 ____fds_bits_359[1024 / ( 8 * ( int ) sizeof(long) )];// L0 -}; -typedef struct ____anonymous_tag_355_356 __fd_set_362;// L64:L75 -typedef ____fd_mask_353 __fd_mask_363;// L82 -typedef ____fd_mask_354 __fd_mask_364;// L82 -typedef ____blksize_t_48 __blksize_t_412;// L228 -typedef ____blksize_t_203 __blksize_t_413;// L228 -typedef ____blkcnt_t_49 __blkcnt_t_415;// L235 -typedef ____blkcnt_t_204 __blkcnt_t_416;// L235 -typedef ____fsblkcnt_t_51 __fsblkcnt_t_418;// L239 -typedef ____fsblkcnt_t_206 __fsblkcnt_t_419;// L239 -typedef ____blkcnt64_t_50 __blkcnt_t_421;// L248 -typedef ____blkcnt64_t_205 __blkcnt_t_422;// L248 -typedef ____fsblkcnt64_t_52 __fsblkcnt_t_424;// L252 -typedef ____fsblkcnt64_t_207 __fsblkcnt_t_425;// L252 -typedef ____fsfilcnt_t_53 __fsfilcnt_t_427;// L243 -typedef ____fsfilcnt_t_208 __fsfilcnt_t_428;// L243 -typedef ____fsfilcnt64_t_54 __fsfilcnt_t_430;// L256 -typedef ____fsfilcnt64_t_209 __fsfilcnt_t_431;// L256 -typedef unsigned long int __pthread_t_433;// L60 -union __pthread_attr_t_434 { -char ____size_435[56];// L65 -long int ____align_436;// L66 -}; -typedef union __pthread_attr_t_434 __pthread_attr_t_437;// L69 -struct ____pthread_internal_list_439 { -struct __forward_tag_reference_438 * (____prev_440);// L0 -struct __forward_tag_reference_438 * (____next_441);// L0 -}; -typedef struct ____pthread_internal_list_439 ____pthread_list_t_442;// L75:L79 -typedef struct ____pthread_internal_list_439 ____pthread_list_t_443;// L75:L79 -struct ____pthread_mutex_s_444 { -int ____lock_445;// L94 -unsigned int ____count_446;// L95 -int ____owner_447;// L96 -unsigned int ____nusers_448;// L98 -int ____kind_449;// L102 -short ____spins_450;// L104 -short ____elision_451;// L105 -____pthread_list_t_442 ____list_452;// L0 -____pthread_list_t_443 ____list_453;// L0 -}; -union ____anonymous_tag_454_455 { -struct ____pthread_mutex_s_444 ____data_456;// L92 -char ____size_457[40];// L126 -long int ____align_458;// L127 -}; -typedef union ____anonymous_tag_454_455 __pthread_mutex_t_459;// L90:L128 -union ____anonymous_tag_460_461 { -char ____size_462[4];// L132 -int ____align_463;// L133 -}; -typedef union ____anonymous_tag_460_461 __pthread_mutexattr_t_464;// L130:L134 -typedef int (* (____compar_fn_t_572)) (const void *, const void *);// L741 +typedef struct ____anonymous_tag_13_14 __lldiv_t_17;// L117:L121 +typedef int (* (____compar_fn_t_100)) (const void *, const void *);// L741 -struct __forward_tag_reference_438 { // generated union of struct variations -union { -}; -}; - -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -static __inline unsigned int (____bswap_32_66) (unsigned int ____bsx_65) { - -if (__static_condition_default_67) { - -{ -{ - - - -__static_type_error("invalid type found in return expression"); -} -} - - -} -} -static __inline ____uint64_t_20 (____bswap_64_69) (____uint64_t_20 ____bsx_68) { - -if (__static_condition_default_67) { - -{ -{ - - - -__static_type_error("invalid type found in return expression"); -} -} - - -} -} -union __wait_81 ;// L66 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern __size_t_1 (____ctype_get_mb_cur_max_105) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_106) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_107) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_108) (void );// L139 -extern double (__atof_110) (const char * (____nptr_109));// L144:L145 -extern double (__atof_111) (const char * (____nptr_109));// L144:L145 -extern int (__atoi_113) (const char * (____nptr_112));// L147:L148 -extern int (__atoi_114) (const char * (____nptr_112));// L147:L148 -extern long int (__atol_116) (const char * (____nptr_115));// L150:L151 -extern long int (__atol_117) (const char * (____nptr_115));// L150:L151 -extern long long int (__atoll_119) (const char * (____nptr_118));// L157:L158 -extern long long int (__atoll_120) (const char * (____nptr_118));// L157:L158 -extern double (__strtod_123) (const char * __restrict ____nptr_121, char * (* __restrict ____endptr_122));// L164:L166 -extern float (__strtof_126) (const char * __restrict ____nptr_124, char * (* __restrict ____endptr_125));// L172:L173 -extern long double (__strtold_129) (const char * __restrict ____nptr_127, char * (* __restrict ____endptr_128));// L175:L177 -extern long int (__strtol_133) (const char * __restrict ____nptr_130, char * (* __restrict ____endptr_131), int ____base_132);// L183:L185 -extern unsigned long int (__strtoul_137) (const char * __restrict ____nptr_134, char * (* __restrict ____endptr_135), int ____base_136);// L187:L189 -extern long long int (__strtoq_141) (const char * __restrict ____nptr_138, char * (* __restrict ____endptr_139), int ____base_140);// L195:L197 -extern unsigned long long int (__strtouq_145) (const char * __restrict ____nptr_142, char * (* __restrict ____endptr_143), int ____base_144);// L200:L202 -extern long long int (__strtoll_149) (const char * __restrict ____nptr_146, char * (* __restrict ____endptr_147), int ____base_148);// L209:L211 -extern long long int (__strtoll_150) (const char * __restrict ____nptr_146, char * (* __restrict ____endptr_147), int ____base_148);// L209:L211 -extern unsigned long long int (__strtoull_154) (const char * __restrict ____nptr_151, char * (* __restrict ____endptr_152), int ____base_153);// L214:L216 +extern __size_t_1 (____ctype_get_mb_cur_max_18) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_19) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_20) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_21) (void );// L139 +extern double (__atof_23) (const char * (____nptr_22));// L144:L145 +extern double (__atof_24) (const char * (____nptr_22));// L144:L145 +extern int (__atoi_26) (const char * (____nptr_25));// L147:L148 +extern int (__atoi_27) (const char * (____nptr_25));// L147:L148 +extern long int (__atol_29) (const char * (____nptr_28));// L150:L151 +extern long int (__atol_30) (const char * (____nptr_28));// L150:L151 +extern long long int (__atoll_32) (const char * (____nptr_31));// L157:L158 +extern long long int (__atoll_33) (const char * (____nptr_31));// L157:L158 +extern double (__strtod_36) (const char * __restrict ____nptr_34, char * (* __restrict ____endptr_35));// L164:L166 +extern float (__strtof_39) (const char * __restrict ____nptr_37, char * (* __restrict ____endptr_38));// L172:L173 +extern long double (__strtold_42) (const char * __restrict ____nptr_40, char * (* __restrict ____endptr_41));// L175:L177 +extern long int (__strtol_46) (const char * __restrict ____nptr_43, char * (* __restrict ____endptr_44), int ____base_45);// L183:L185 +extern unsigned long int (__strtoul_50) (const char * __restrict ____nptr_47, char * (* __restrict ____endptr_48), int ____base_49);// L187:L189 +extern long long int (__strtoll_54) (const char * __restrict ____nptr_51, char * (* __restrict ____endptr_52), int ____base_53);// L209:L211 +extern unsigned long long int (__strtoull_58) (const char * __restrict ____nptr_55, char * (* __restrict ____endptr_56), int ____base_57);// L214:L216 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ __extension__/* no function due to type errors in the function prototype */ -extern char * ((__l64a_159) (long int ____n_158));// L305 -extern char * ((__l64a_160) (long int ____n_158));// L305 -extern long int (__a64l_162) (const char * (____s_161));// L308:L309 -extern long int (__a64l_163) (const char * (____s_161));// L308:L309 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -static __inline unsigned int (____bswap_32_324) (unsigned int ____bsx_323) { - -if (__static_condition_default_325) { - -{ -{ - - - -__static_type_error("invalid type found in return expression"); -} -} - - -} -} -static __inline ____uint64_t_175 (____bswap_64_327) (____uint64_t_175 ____bsx_326) { - -if (__static_condition_default_325) { - -{ -{ - - - -__static_type_error("invalid type found in return expression"); -} -} - - -} -} -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -struct __timespec_334 ;// L120 - -struct __timeval_342 ;// L30 - -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern int (__select_376) (int ____nfds_365, __fd_set_362 * __restrict ____readfds_366, __fd_set_362 * __restrict ____writefds_368, __fd_set_362 * __restrict ____exceptfds_370, struct __timeval_342 * __restrict ____timeout_373);// L106:L109 -extern int (__select_377) (int ____nfds_365, __fd_set_362 * __restrict ____readfds_366, __fd_set_362 * __restrict ____writefds_368, __fd_set_362 * __restrict ____exceptfds_370, struct __forward_tag_reference_372 * __restrict ____timeout_375);// L106:L109 -extern int (__pselect_392) (int ____nfds_380, __fd_set_362 * __restrict ____readfds_381, __fd_set_362 * __restrict ____writefds_383, __fd_set_362 * __restrict ____exceptfds_385, const struct __timespec_334 * __restrict ____timeout_388, const ____sigset_t_332 * __restrict ____sigmask_391);// L118:L122 -extern int (__pselect_393) (int ____nfds_380, __fd_set_362 * __restrict ____readfds_381, __fd_set_362 * __restrict ____writefds_383, __fd_set_362 * __restrict ____exceptfds_385, const struct __forward_tag_reference_387 * __restrict ____timeout_390, const ____sigset_t_332 * __restrict ____sigmask_391);// L118:L122 -extern long int (____fdelt_chk_397) (long int ____d_396);// L24 -extern long int (____fdelt_warn_399) (long int ____d_398);// L25:L26 -extern unsigned int (__gnu_dev_major_401) (unsigned long long int ____dev_400);// L27:L28 -extern unsigned int (__gnu_dev_major_402) (unsigned long long int ____dev_400);// L27:L28 -extern unsigned int (__gnu_dev_minor_404) (unsigned long long int ____dev_403);// L30:L31 -extern unsigned long long int (__gnu_dev_makedev_407) (unsigned int ____major_405, unsigned int ____minor_406);// L33:L35 -__extension__/* no function due to type errors in the function prototype */ -__extension__/* no function due to type errors in the function prototype */ -__extension__/* no function due to type errors in the function prototype */ -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -union __pthread_attr_t_434 ;// L63 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern int (__rand_465) (void );// L374 -extern void (__srand_467) (unsigned int ____seed_466);// L376 -extern int (__rand_r_469) (unsigned int * (____seed_468));// L381 -extern double (__drand48_470) (void );// L389 -extern double (__erand48_472) (unsigned short int ____xsubi_471[3]);// L390 -extern long int (__lrand48_473) (void );// L393 -extern long int (__nrand48_475) (unsigned short int ____xsubi_474[3]);// L394:L395 -extern long int (__mrand48_476) (void );// L398 -extern long int (__jrand48_478) (unsigned short int ____xsubi_477[3]);// L399:L400 -extern void (__srand48_480) (long int ____seedval_479);// L403 -extern unsigned short int * ((__seed48_482) (unsigned short int ____seed16v_481[3]));// L404:L405 -extern void (__lcong48_484) (unsigned short int ____param_483[7]);// L406 -extern void * ((__malloc_486) (__size_t_1 ____size_485));// L466 -extern void * ((__malloc_487) (__size_t_1 ____size_485));// L466 -extern void * ((__calloc_490) (__size_t_1 ____nmemb_488, __size_t_1 ____size_489));// L468:L469 -extern void * ((__calloc_491) (__size_t_1 ____nmemb_488, __size_t_1 ____size_489));// L468:L469 -extern void * ((__realloc_494) (void * (____ptr_492), __size_t_1 ____size_493));// L480:L481 -extern void (__free_496) (void * (____ptr_495));// L483 -extern void (__cfree_498) (void * (____ptr_497));// L488 -extern void * ((__alloca_500) (__size_t_1 ____size_499));// L32 -extern void * ((__valloc_502) (__size_t_1 ____size_501));// L498 -extern void * ((__valloc_503) (__size_t_1 ____size_501));// L498 -extern int (__posix_memalign_507) (void * (* (____memptr_504)), __size_t_1 ____alignment_505, __size_t_1 ____size_506);// L503:L504 -extern int (__posix_memalign_508) (void * (* (____memptr_504)), __size_t_1 ____alignment_505, __size_t_1 ____size_506);// L503:L504 -extern void * ((__aligned_alloc_511) (__size_t_1 ____alignment_509, __size_t_1 ____size_510));// L509:L510 -extern void * ((__aligned_alloc_512) (__size_t_1 ____alignment_509, __size_t_1 ____size_510));// L509:L510 -extern void * ((__aligned_alloc_513) (__size_t_1 ____alignment_509, __size_t_1 ____size_510));// L509:L510 -extern void * ((__aligned_alloc_514) (__size_t_1 ____alignment_509, __size_t_1 ____size_510));// L509:L510 -extern void (__abort_515) (void );// L515 -extern int (__atexit_517) (void (* (____func_516)) (void ));// L519 -extern int (__at_quick_exit_519) (void (* (____func_518)) (void ));// L527 -extern int (__on_exit_524) (void (* (____func_522)) (int ____status_520, void * (____arg_521)), void * (____arg_523));// L535:L536 -extern void (__exit_526) (int ____status_525);// L543 -extern void (__exit_527) (int ____status_525);// L543 -extern void (__quick_exit_529) (int ____status_528);// L549 -extern void (___Exit_531) (int ____status_530);// L557 -extern char * ((__getenv_533) (const char * (____name_532)));// L564 -extern char * ((__getenv_534) (const char * (____name_532)));// L564 -extern int (__putenv_536) (char * (____string_535));// L578 -extern int (__setenv_540) (const char * (____name_537), const char * (____value_538), int ____replace_539);// L584:L585 -extern int (__unsetenv_542) (const char * (____name_541));// L588 -extern int (__clearenv_543) (void );// L595 -extern char * ((__mktemp_545) (char * (____template_544)));// L606 -extern int (__mkstemp_548) (char * (____template_546));// L619 -extern int (__mkstemp_550) (char * (____template_546));// L619 -extern int (__mkstemp_549) (char * (____template_547));// L622:L623 -extern int (__mkstemp_551) (char * (____template_547));// L622:L623 -extern int (__mkstemps_556) (char * (____template_552), int ____suffixlen_553);// L641 -extern int (__mkstemps_557) (char * (____template_554), int ____suffixlen_555);// L644:L645 -extern int (__mkstemps_558) (char * (____template_552), int ____suffixlen_553);// L641 -extern int (__mkstemps_559) (char * (____template_554), int ____suffixlen_555);// L644:L645 -extern char * ((__mkdtemp_561) (char * (____template_560)));// L662 -extern char * ((__mkdtemp_562) (char * (____template_560)));// L662 -extern int (__system_564) (const char * (____command_563));// L716 -extern int (__system_565) (const char * (____command_563));// L716 -extern int (__system_566) (const char * (____command_563));// L716 -extern int (__system_567) (const char * (____command_563));// L716 -extern char * ((__realpath_570) (const char * __restrict ____name_568, char * __restrict ____resolved_569));// L733:L734 -extern char * ((__realpath_571) (const char * __restrict ____name_568, char * __restrict ____resolved_569));// L733:L734 -// typedef moved to top of scope -extern void * ((__bsearch_580) (const void * (____key_573), const void * (____base_574), __size_t_1 ____nmemb_575, __size_t_1 ____size_576, ____compar_fn_t_572 ____compar_577));// L754:L756 -extern void * ((__bsearch_582) (const void * (____key_573), const void * (____base_574), __size_t_1 ____nmemb_575, __size_t_1 ____size_576, ____compar_fn_t_572 ____compar_577));// L754:L756 +extern int (__rand_62) (void );// L374 +extern int (__rand_63) (void );// L374 +extern void (__srand_65) (unsigned int ____seed_64);// L376 +extern void * ((__malloc_67) (__size_t_1 ____size_66));// L466 +extern void * ((__malloc_68) (__size_t_1 ____size_66));// L466 +extern void * ((__calloc_71) (__size_t_1 ____nmemb_69, __size_t_1 ____size_70));// L468:L469 +extern void * ((__calloc_72) (__size_t_1 ____nmemb_69, __size_t_1 ____size_70));// L468:L469 +extern void * ((__realloc_75) (void * (____ptr_73), __size_t_1 ____size_74));// L480:L481 +extern void * ((__realloc_76) (void * (____ptr_73), __size_t_1 ____size_74));// L480:L481 +extern void (__free_78) (void * (____ptr_77));// L483 +extern void * ((__aligned_alloc_81) (__size_t_1 ____alignment_79, __size_t_1 ____size_80));// L509:L510 +extern void * ((__aligned_alloc_82) (__size_t_1 ____alignment_79, __size_t_1 ____size_80));// L509:L510 +extern void (__abort_83) (void );// L515 +extern int (__atexit_85) (void (* (____func_84)) (void ));// L519 +extern int (__at_quick_exit_87) (void (* (____func_86)) (void ));// L527 +extern void (__exit_89) (int ____status_88);// L543 +extern void (__quick_exit_91) (int ____status_90);// L549 +extern void (___Exit_93) (int ____status_92);// L557 +extern char * ((__getenv_95) (const char * (____name_94)));// L564 +extern char * ((__getenv_96) (const char * (____name_94)));// L564 +extern int (__system_98) (const char * (____command_97));// L716 +extern int (__system_99) (const char * (____command_97));// L716 +// typedef moved to top of scope +extern void * ((__bsearch_108) (const void * (____key_101), const void * (____base_102), __size_t_1 ____nmemb_103, __size_t_1 ____size_104, ____compar_fn_t_100 ____compar_105));// L754:L756 +extern void * ((__bsearch_110) (const void * (____key_101), const void * (____base_102), __size_t_1 ____nmemb_103, __size_t_1 ____size_104, ____compar_fn_t_100 ____compar_105));// L754:L756 /* no function due to type errors in the function prototype */ -extern void (__qsort_601) (void * (____base_596), __size_t_1 ____nmemb_597, __size_t_1 ____size_598, ____compar_fn_t_572 ____compar_599);// L764:L765 -extern void (__qsort_603) (void * (____base_596), __size_t_1 ____nmemb_597, __size_t_1 ____size_598, ____compar_fn_t_572 ____compar_599);// L764:L765 -extern int (__abs_606) (int ____x_605);// L774 -extern int (__abs_607) (int ____x_605);// L774 -extern long int (__labs_609) (long int ____x_608);// L775 -extern long int (__labs_610) (long int ____x_608);// L775 -extern long long int (__llabs_612) (long long int ____x_611);// L779:L780 -extern long long int (__llabs_613) (long long int ____x_611);// L779:L780 -extern __div_t_94 (__div_616) (int ____numer_614, int ____denom_615);// L788:L789 -extern __div_t_94 (__div_617) (int ____numer_614, int ____denom_615);// L788:L789 -extern __ldiv_t_99 (__ldiv_620) (long int ____numer_618, long int ____denom_619);// L790:L791 -extern __ldiv_t_99 (__ldiv_622) (long int ____numer_618, long int ____denom_619);// L790:L791 -extern __lldiv_t_104 (__lldiv_626) (long long int ____numer_624, long long int ____denom_625);// L796:L798 -extern __lldiv_t_104 (__lldiv_628) (long long int ____numer_624, long long int ____denom_625);// L796:L798 -extern char * ((__ecvt_634) (double ____value_630, int ____ndigit_631, int * __restrict ____decpt_632, int * __restrict ____sign_633));// L811:L812 -extern char * ((__ecvt_635) (double ____value_630, int ____ndigit_631, int * __restrict ____decpt_632, int * __restrict ____sign_633));// L811:L812 -extern char * ((__fcvt_640) (double ____value_636, int ____ndigit_637, int * __restrict ____decpt_638, int * __restrict ____sign_639));// L817:L818 -extern char * ((__fcvt_641) (double ____value_636, int ____ndigit_637, int * __restrict ____decpt_638, int * __restrict ____sign_639));// L817:L818 -extern char * ((__gcvt_645) (double ____value_642, int ____ndigit_643, char * (____buf_644)));// L823:L824 -extern char * ((__gcvt_646) (double ____value_642, int ____ndigit_643, char * (____buf_644)));// L823:L824 -extern char * ((__qecvt_651) (long double ____value_647, int ____ndigit_648, int * __restrict ____decpt_649, int * __restrict ____sign_650));// L829:L831 -extern char * ((__qecvt_652) (long double ____value_647, int ____ndigit_648, int * __restrict ____decpt_649, int * __restrict ____sign_650));// L829:L831 -extern char * ((__qfcvt_657) (long double ____value_653, int ____ndigit_654, int * __restrict ____decpt_655, int * __restrict ____sign_656));// L832:L834 -extern char * ((__qfcvt_658) (long double ____value_653, int ____ndigit_654, int * __restrict ____decpt_655, int * __restrict ____sign_656));// L832:L834 -extern char * ((__qgcvt_662) (long double ____value_659, int ____ndigit_660, char * (____buf_661)));// L835:L836 -extern char * ((__qgcvt_663) (long double ____value_659, int ____ndigit_660, char * (____buf_661)));// L835:L836 -extern int (__ecvt_r_670) (double ____value_664, int ____ndigit_665, int * __restrict ____decpt_666, int * __restrict ____sign_667, char * __restrict ____buf_668, __size_t_1 ____len_669);// L841:L843 -extern int (__fcvt_r_677) (double ____value_671, int ____ndigit_672, int * __restrict ____decpt_673, int * __restrict ____sign_674, char * __restrict ____buf_675, __size_t_1 ____len_676);// L844:L846 -extern int (__qecvt_r_684) (long double ____value_678, int ____ndigit_679, int * __restrict ____decpt_680, int * __restrict ____sign_681, char * __restrict ____buf_682, __size_t_1 ____len_683);// L848:L851 -extern int (__qfcvt_r_691) (long double ____value_685, int ____ndigit_686, int * __restrict ____decpt_687, int * __restrict ____sign_688, char * __restrict ____buf_689, __size_t_1 ____len_690);// L852:L855 -extern int (__mblen_694) (const char * (____s_692), __size_t_1 ____n_693);// L862 -extern int (__mblen_695) (const char * (____s_692), __size_t_1 ____n_693);// L862 -extern int (__mbtowc_699) (__wchar_t_2 * __restrict ____pwc_696, const char * __restrict ____s_697, __size_t_1 ____n_698);// L865:L866 -extern int (__wctomb_702) (char * (____s_700), __wchar_t_2 ____wchar_701);// L869 -extern __size_t_1 (__mbstowcs_706) (__wchar_t_2 * __restrict ____pwcs_703, const char * __restrict ____s_704, __size_t_1 ____n_705);// L873:L874 -extern __size_t_1 (__wcstombs_710) (char * __restrict ____s_707, const __wchar_t_2 * __restrict ____pwcs_708, __size_t_1 ____n_709);// L876:L878 -extern int (__rpmatch_713) (const char * (____response_711));// L887 -extern int (__rpmatch_712) (const char * (____response_711));// L887 -extern int (__getsubopt_718) (char * (* __restrict ____optionp_714), char * const * __restrict ____tokens_715, char * (* __restrict ____valuep_716));// L898:L901 -extern int (__getsubopt_717) (char * (* __restrict ____optionp_714), char * const * __restrict ____tokens_715, char * (* __restrict ____valuep_716));// L898:L901 -extern int (__getloadavg_721) (double ____loadavg_719[], int ____nelem_720);// L950:L951 +extern void (__qsort_129) (void * (____base_124), __size_t_1 ____nmemb_125, __size_t_1 ____size_126, ____compar_fn_t_100 ____compar_127);// L764:L765 +extern void (__qsort_131) (void * (____base_124), __size_t_1 ____nmemb_125, __size_t_1 ____size_126, ____compar_fn_t_100 ____compar_127);// L764:L765 +extern int (__abs_134) (int ____x_133);// L774 +extern int (__abs_135) (int ____x_133);// L774 +extern long int (__labs_137) (long int ____x_136);// L775 +extern long int (__labs_138) (long int ____x_136);// L775 +extern long long int (__llabs_140) (long long int ____x_139);// L779:L780 +extern long long int (__llabs_141) (long long int ____x_139);// L779:L780 +extern __div_t_7 (__div_144) (int ____numer_142, int ____denom_143);// L788:L789 +extern __div_t_7 (__div_145) (int ____numer_142, int ____denom_143);// L788:L789 +extern __ldiv_t_12 (__ldiv_148) (long int ____numer_146, long int ____denom_147);// L790:L791 +extern __ldiv_t_12 (__ldiv_150) (long int ____numer_146, long int ____denom_147);// L790:L791 +extern __lldiv_t_17 (__lldiv_154) (long long int ____numer_152, long long int ____denom_153);// L796:L798 +extern __lldiv_t_17 (__lldiv_156) (long long int ____numer_152, long long int ____denom_153);// L796:L798 +extern int (__mblen_160) (const char * (____s_158), __size_t_1 ____n_159);// L862 +extern int (__mbtowc_164) (__wchar_t_2 * __restrict ____pwc_161, const char * __restrict ____s_162, __size_t_1 ____n_163);// L865:L866 +extern int (__wctomb_167) (char * (____s_165), __wchar_t_2 ____wchar_166);// L869 +extern __size_t_1 (__mbstowcs_171) (__wchar_t_2 * __restrict ____pwcs_168, const char * __restrict ____s_169, __size_t_1 ____n_170);// L873:L874 +extern __size_t_1 (__wcstombs_175) (char * __restrict ____s_172, const __wchar_t_2 * __restrict ____pwcs_173, __size_t_1 ____n_174);// L876:L878 /* no function due to type errors in the function prototype */ -extern char * ((____realpath_chk_726) (const char * __restrict ____name_723, char * __restrict ____resolved_724, __size_t_1 ____resolvedlen_725));// L23:L25 -extern char * ((____realpath_alias_729) (const char * __restrict ____name_727, char * __restrict ____resolved_728));// L26:L28 -extern char * ((____realpath_chk_warn_733) (const char * __restrict ____name_730, char * __restrict ____resolved_731, __size_t_1 ____resolvedlen_732));// L29:L34 +extern char * ((____realpath_chk_180) (const char * __restrict ____name_177, char * __restrict ____resolved_178, __size_t_1 ____resolvedlen_179));// L23:L25 +extern char * ((____realpath_alias_183) (const char * __restrict ____name_181, char * __restrict ____resolved_182));// L26:L28 +extern char * ((____realpath_chk_warn_187) (const char * __restrict ____name_184, char * __restrict ____resolved_185, __size_t_1 ____resolvedlen_186));// L29:L34 /* no function due to type errors in the function prototype */ -extern int (____ptsname_r_chk_741) (int ____fd_737, char * (____buf_738), __size_t_1 ____buflen_739, __size_t_1 ____nreal_740);// L52:L53 -extern int (____ptsname_r_alias_745) (int ____fd_742, char * (____buf_743), __size_t_1 ____buflen_744);// L54:L56 -extern int (____ptsname_r_chk_warn_750) (int ____fd_746, char * (____buf_747), __size_t_1 ____buflen_748, __size_t_1 ____nreal_749);// L57:L61 +extern int (____ptsname_r_chk_195) (int ____fd_191, char * (____buf_192), __size_t_1 ____buflen_193, __size_t_1 ____nreal_194);// L52:L53 +extern int (____ptsname_r_alias_199) (int ____fd_196, char * (____buf_197), __size_t_1 ____buflen_198);// L54:L56 +extern int (____ptsname_r_chk_warn_204) (int ____fd_200, char * (____buf_201), __size_t_1 ____buflen_202, __size_t_1 ____nreal_203);// L57:L61 /* no function due to type errors in the function prototype */ -extern int (____wctomb_chk_758) (char * (____s_755), __wchar_t_2 ____wchar_756, __size_t_1 ____buflen_757);// L77:L78 -extern int (____wctomb_alias_761) (char * (____s_759), __wchar_t_2 ____wchar_760);// L79:L80 +extern int (____wctomb_chk_212) (char * (____s_209), __wchar_t_2 ____wchar_210, __size_t_1 ____buflen_211);// L77:L78 +extern int (____wctomb_alias_215) (char * (____s_213), __wchar_t_2 ____wchar_214);// L79:L80 /* no function due to type errors in the function prototype */ -extern __size_t_1 (____mbstowcs_chk_768) (__wchar_t_2 * __restrict ____dst_764, const char * __restrict ____src_765, __size_t_1 ____len_766, __size_t_1 ____dstlen_767);// L98:L100 -extern __size_t_1 (____mbstowcs_alias_772) (__wchar_t_2 * __restrict ____dst_769, const char * __restrict ____src_770, __size_t_1 ____len_771);// L101:L104 -extern __size_t_1 (____mbstowcs_chk_warn_777) (__wchar_t_2 * __restrict ____dst_773, const char * __restrict ____src_774, __size_t_1 ____len_775, __size_t_1 ____dstlen_776);// L105:L110 +extern __size_t_1 (____mbstowcs_chk_222) (__wchar_t_2 * __restrict ____dst_218, const char * __restrict ____src_219, __size_t_1 ____len_220, __size_t_1 ____dstlen_221);// L98:L100 +extern __size_t_1 (____mbstowcs_alias_226) (__wchar_t_2 * __restrict ____dst_223, const char * __restrict ____src_224, __size_t_1 ____len_225);// L101:L104 +extern __size_t_1 (____mbstowcs_chk_warn_231) (__wchar_t_2 * __restrict ____dst_227, const char * __restrict ____src_228, __size_t_1 ____len_229, __size_t_1 ____dstlen_230);// L105:L110 /* no function due to type errors in the function prototype */ -extern __size_t_1 (____wcstombs_chk_785) (char * __restrict ____dst_781, const __wchar_t_2 * __restrict ____src_782, __size_t_1 ____len_783, __size_t_1 ____dstlen_784);// L130:L132 -extern __size_t_1 (____wcstombs_alias_789) (char * __restrict ____dst_786, const __wchar_t_2 * __restrict ____src_787, __size_t_1 ____len_788);// L133:L136 -extern __size_t_1 (____wcstombs_chk_warn_794) (char * __restrict ____dst_790, const __wchar_t_2 * __restrict ____src_791, __size_t_1 ____len_792, __size_t_1 ____dstlen_793);// L137:L141 +extern __size_t_1 (____wcstombs_chk_239) (char * __restrict ____dst_235, const __wchar_t_2 * __restrict ____src_236, __size_t_1 ____len_237, __size_t_1 ____dstlen_238);// L130:L132 +extern __size_t_1 (____wcstombs_alias_243) (char * __restrict ____dst_240, const __wchar_t_2 * __restrict ____src_241, __size_t_1 ____len_242);// L133:L136 +extern __size_t_1 (____wcstombs_chk_warn_248) (char * __restrict ____dst_244, const __wchar_t_2 * __restrict ____src_245, __size_t_1 ____len_246, __size_t_1 ____dstlen_247);// L137:L141 /* no function due to type errors in the function prototype */ -static inline void (__spin_lock_irq_798) () { - -if (__static_condition_default_801) { - -{ -{ - +static inline void (__spin_lock_irq_252) () { - - ; // L10 -} -} - - -} -} -static inline void (__spin_lock_irq_799) () { - -if (__static_condition_default_802) { +if (__static_condition_default_254) { { { @@ -1347,9 +274,9 @@ if (__static_condition_default_802) { } } -static inline void (__spin_lock_irq_800) () { +static inline void (__spin_lock_irq_253) () { -if (__static_condition_default_803) { +if (__static_condition_default_255) { { { @@ -1363,7 +290,7 @@ if (__static_condition_default_803) { } } -static inline void (__spin_unlock_irq_804) () { +static inline void (__spin_unlock_irq_256) () { { { @@ -1376,7 +303,7 @@ static inline void (__spin_unlock_irq_804) () { } -static inline void (__spin_lock_bh_805) () { +static inline void (__spin_lock_bh_257) () { { { @@ -1389,7 +316,7 @@ static inline void (__spin_lock_bh_805) () { } -static inline void (__spin_unlock_bh_806) () { +static inline void (__spin_unlock_bh_258) () { { { @@ -1402,10 +329,10 @@ static inline void (__spin_unlock_bh_806) () { } -static inline void (__kunmap_skb_frag_807) () { +static inline void (__kunmap_skb_frag_259) () { { -if (__static_condition_default_808) { +if (__static_condition_default_260) { { { @@ -1418,7 +345,7 @@ if (__static_condition_default_808) { } -if (__static_condition_default_809) { +if (__static_condition_default_261) { { { @@ -1433,16 +360,16 @@ if (__static_condition_default_809) { } }} -unsigned int (__skb_checksum_811) () { +unsigned int (__skb_checksum_263) () { { { -unsigned int __csum_810= 0;// L37 +unsigned int __csum_262= 0;// L37 -if (__static_condition_default_812) { +if (__static_condition_default_264) { while ( rand( ) % 2 )// L39 { @@ -1459,7 +386,7 @@ if ( rand( ) % 2 )// L40 - __kunmap_skb_frag_807 ( ) ; // L41 + __kunmap_skb_frag_259 ( ) ; // L41 } } } @@ -1467,47 +394,66 @@ if ( rand( ) % 2 )// L40 } } } -if (__static_condition_default_813) { -__static_type_error("invalid type found in while statement"); +if (__static_condition_default_265) { +while ( rand( ) % 2 )// L39 +{ + +{ +{ + + + +if ( rand( ) % 2 )// L40 +{ + +{ +{ + + + + __kunmap_skb_frag_259 ( ) ; // L41 +} +} +} } -return __csum_810 ;// L45 +} +} +} +return __csum_262 ;// L45 } } } -static int (__udp_checksum_complete_814) () { +static int (__udp_checksum_complete_266) () { { { -return __skb_checksum_811 ( ) ;// L50 +return __skb_checksum_263 ( ) ;// L50 } } } -unsigned int (__udp_poll_816) () { +unsigned int (__udp_poll_268) () { { { -unsigned int __mask_815= 0;// L55 +unsigned int __mask_267= 0;// L55 -if (__static_condition_default_817) { - __spin_lock_irq_798 ( ) ; // L57 +if (__static_condition_default_254) { + __spin_lock_irq_252 ( ) ; // L57 } -if (__static_condition_default_818) { - __spin_lock_irq_799 ( ) ; // L57 +if (__static_condition_default_255) { + __spin_lock_irq_253 ( ) ; // L57 } -if (__static_condition_default_803) { - __spin_lock_irq_800 ( ) ; // L57 -} -if (__static_condition_default_812) { +if (__static_condition_default_264) { while ( rand( ) % 2 )// L58 { @@ -1516,29 +462,40 @@ while ( rand( ) % 2 )// L58 - __udp_checksum_complete_814 ( ) ; // L59 + __udp_checksum_complete_266 ( ) ; // L59 +} } } } +if (__static_condition_default_265) { +while ( rand( ) % 2 )// L58 +{ + +{ +{ + + + + __udp_checksum_complete_266 ( ) ; // L59 +} +} } -if (__static_condition_default_819) { -__static_type_error("invalid type found in while statement"); } - __spin_unlock_irq_804 ( ) ; // L61 -return __mask_815 ;// L63 + __spin_unlock_irq_256 ( ) ; // L61 +return __mask_267 ;// L63 } } } -int (__main_822) (int __argc_820, char * (* (__argv_821))) { +int (__main_271) (int __argc_269, char * (* (__argv_270))) { { { - __udp_poll_816 ( ) ; // L68 + __udp_poll_268 ( ) ; // L68 return 0 ;// L69 } } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/218ad12f42e.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/218ad12f42e.desugared.c index 2c05eab2..b7049ea7 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/218ad12f42e.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/218ad12f42e.desugared.c @@ -7,10 +7,10 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_8; -extern const bool __static_condition_default_7; extern const bool __static_condition_default_11; extern const bool __static_condition_default_10; +extern const bool __static_condition_default_8; +extern const bool __static_condition_default_7; void __static_initializer_default() { __static_renaming("__malloc_1", "malloc"); __static_renaming("__free_3", "free"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/221ac329e93.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/221ac329e93.desugared.c index a372dd91..cdbb67fc 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/221ac329e93.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/221ac329e93.desugared.c @@ -7,774 +7,575 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_3355; -extern const bool __static_condition_default_158; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_1975; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_3041; -extern const bool __static_condition_default_3086; -extern const bool __static_condition_default_1451; -extern const bool __static_condition_default_1704; -extern const bool __static_condition_default_609; -extern const bool __static_condition_default_2111; -extern const bool __static_condition_default_148; -extern const bool __static_condition_default_3690; -extern const bool __static_condition_default_733; -extern const bool __static_condition_default_2109; -extern const bool __static_condition_default_3449; -extern const bool __static_condition_default_1308; -extern const bool __static_condition_default_3123; -extern const bool __static_condition_default_1866; -extern const bool __static_condition_default_2593; -extern const bool __static_condition_default_737; -extern const bool __static_condition_default_1557; -extern const bool __static_condition_default_3980; -extern const bool __static_condition_default_843; -extern const bool __static_condition_default_2673; -extern const bool __static_condition_default_3362; -extern const bool __static_condition_default_4002; -extern const bool __static_condition_default_157; -extern const bool __static_condition_default_2505; -extern const bool __static_condition_default_3998; -extern const bool __static_condition_default_106; -extern const bool __static_condition_default_1669; -extern const bool __static_condition_default_882; -extern const bool __static_condition_default_4009; -extern const bool __static_condition_default_1561; -extern const bool __static_condition_default_1628; -extern const bool __static_condition_default_2077; -extern const bool __static_condition_default_3107; -extern const bool __static_condition_default_2994; -extern const bool __static_condition_default_3537; -extern const bool __static_condition_default_1283; -extern const bool __static_condition_default_2452; -extern const bool __static_condition_default_3207; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_2302; -extern const bool __static_condition_default_2669; -extern const bool __static_condition_default_3963; -extern const bool __static_condition_default_892; -extern const bool __static_condition_default_2323; -extern const bool __static_condition_default_2809; -extern const bool __static_condition_default_4000; -extern const bool __static_condition_default_880; -extern const bool __static_condition_default_3662; -extern const bool __static_condition_default_923; -extern const bool __static_condition_default_1735; -extern const bool __static_condition_default_2326; -extern const bool __static_condition_default_1670; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_3987; -extern const bool __static_condition_default_2314; -extern const bool __static_condition_default_3996; -extern const bool __static_condition_default_3549; -extern const bool __static_condition_default_2623; -extern const bool __static_condition_default_884; -extern const bool __static_condition_default_1667; -extern const bool __static_condition_default_2837; -extern const bool __static_condition_default_1811; -extern const bool __static_condition_default_1854; -extern const bool __static_condition_default_680; -extern const bool __static_condition_default_2311; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_2544; -extern const bool __static_condition_default_2682; -extern const bool __static_condition_default_2254; -extern const bool __static_condition_default_3059; -extern const bool __static_condition_default_1285; -extern const bool __static_condition_default_2628; -extern const bool __static_condition_default_2829; -extern const bool __static_condition_default_2573; -extern const bool __static_condition_default_1697; -extern const bool __static_condition_default_2609; -extern const bool __static_condition_default_1439; -extern const bool __static_condition_default_1572; -extern const bool __static_condition_default_125; -extern const bool __static_condition_default_1773; -extern const bool __static_condition_default_2979; -extern const bool __static_condition_default_1856; -extern const bool __static_condition_default_2025; -extern const bool __static_condition_default_2727; -extern const bool __static_condition_default_749; -extern const bool __static_condition_default_2594; -extern const bool __static_condition_default_1493; -extern const bool __static_condition_default_2561; -extern const bool __static_condition_default_1267; -extern const bool __static_condition_default_1249; -extern const bool __static_condition_default_3339; -extern const bool __static_condition_default_130; -extern const bool __static_condition_default_2135; -extern const bool __static_condition_default_98; -extern const bool __static_condition_default_2304; -extern const bool __static_condition_default_936; -extern const bool __static_condition_default_1400; -extern const bool __static_condition_default_1306; -extern const bool __static_condition_default_3989; -extern const bool __static_condition_default_2658; -extern const bool __static_condition_default_1506; -extern const bool __static_condition_default_2890; -extern const bool __static_condition_default_4006; -extern const bool __static_condition_default_1224; -extern const bool __static_condition_default_3065; -extern const bool __static_condition_default_630; -extern const bool __static_condition_default_1775; -extern const bool __static_condition_default_2063; -extern const bool __static_condition_default_1304; +extern const bool __static_condition_default_1242; +extern const bool __static_condition_default_1117; extern const bool __static_condition_default_1428; -extern const bool __static_condition_default_2257; -extern const bool __static_condition_default_4008; -extern const bool __static_condition_default_1389; -extern const bool __static_condition_default_3233; -extern const bool __static_condition_default_674; -extern const bool __static_condition_default_3896; -extern const bool __static_condition_default_1683; -extern const bool __static_condition_default_1743; -extern const bool __static_condition_default_2720; -extern const bool __static_condition_default_3960; -extern const bool __static_condition_default_3671; -extern const bool __static_condition_default_3900; -extern const bool __static_condition_default_1892; -extern const bool __static_condition_default_2914; -extern const bool __static_condition_default_1331; -extern const bool __static_condition_default_2697; -extern const bool __static_condition_default_638; -extern const bool __static_condition_default_1888; -extern const bool __static_condition_default_748; -extern const bool __static_condition_default_1895; -extern const bool __static_condition_default_959; -extern const bool __static_condition_default_1272; -extern const bool __static_condition_default_2752; -extern const bool __static_condition_default_1573; -extern const bool __static_condition_default_3969; -extern const bool __static_condition_default_1195; -extern const bool __static_condition_default_1452; -extern const bool __static_condition_default_1408; -extern const bool __static_condition_default_1898; -extern const bool __static_condition_default_2387; -extern const bool __static_condition_default_950; -extern const bool __static_condition_default_65; -extern const bool __static_condition_default_943; -extern const bool __static_condition_default_1481; -extern const bool __static_condition_default_4001; -extern const bool __static_condition_default_2343; -extern const bool __static_condition_default_2603; -extern const bool __static_condition_default_1779; -extern const bool __static_condition_default_3563; -extern const bool __static_condition_default_1437; -extern const bool __static_condition_default_1563; -extern const bool __static_condition_default_4004; -extern const bool __static_condition_default_2841; -extern const bool __static_condition_default_1729; -extern const bool __static_condition_default_2842; -extern const bool __static_condition_default_3995; -extern const bool __static_condition_default_2686; -extern const bool __static_condition_default_3478; -extern const bool __static_condition_default_2565; -extern const bool __static_condition_default_1296; -extern const bool __static_condition_default_1812; -extern const bool __static_condition_default_2733; -extern const bool __static_condition_default_2340; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_1641; -extern const bool __static_condition_default_2566; -extern const bool __static_condition_default_3100; -extern const bool __static_condition_default_2056; -extern const bool __static_condition_default_2777; -extern const bool __static_condition_default_2892; -extern const bool __static_condition_default_1475; -extern const bool __static_condition_default_1541; -extern const bool __static_condition_default_2937; -extern const bool __static_condition_default_3983; -extern const bool __static_condition_default_2092; -extern const bool __static_condition_default_3005; -extern const bool __static_condition_default_118; -extern const bool __static_condition_default_2110; -extern const bool __static_condition_default_1992; -extern const bool __static_condition_default_1671; -extern const bool __static_condition_default_2713; -extern const bool __static_condition_default_2957; -extern const bool __static_condition_default_156; -extern const bool __static_condition_default_1682; -extern const bool __static_condition_default_2847; -extern const bool __static_condition_default_3976; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_2361; -extern const bool __static_condition_default_3560; -extern const bool __static_condition_default_1270; -extern const bool __static_condition_default_2305; -extern const bool __static_condition_default_2687; -extern const bool __static_condition_default_2391; -extern const bool __static_condition_default_2767; -extern const bool __static_condition_default_2805; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_1841; +extern const bool __static_condition_default_3703; +extern const bool __static_condition_default_2525; +extern const bool __static_condition_default_1135; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_1153; +extern const bool __static_condition_default_1494; extern const bool __static_condition_default_1765; -extern const bool __static_condition_default_2633; -extern const bool __static_condition_default_2579; -extern const bool __static_condition_default_1562; -extern const bool __static_condition_default_2227; -extern const bool __static_condition_default_3077; -extern const bool __static_condition_default_855; -extern const bool __static_condition_default_1737; -extern const bool __static_condition_default_2884; -extern const bool __static_condition_default_654; -extern const bool __static_condition_default_1535; -extern const bool __static_condition_default_1868; -extern const bool __static_condition_default_2549; -extern const bool __static_condition_default_3028; -extern const bool __static_condition_default_164; -extern const bool __static_condition_default_1593; -extern const bool __static_condition_default_3017; -extern const bool __static_condition_default_2735; -extern const bool __static_condition_default_3974; -extern const bool __static_condition_default_3975; -extern const bool __static_condition_default_2430; -extern const bool __static_condition_default_2886; -extern const bool __static_condition_default_3351; -extern const bool __static_condition_default_2684; -extern const bool __static_condition_default_3811; -extern const bool __static_condition_default_2539; -extern const bool __static_condition_default_2511; -extern const bool __static_condition_default_2944; -extern const bool __static_condition_default_3988; -extern const bool __static_condition_default_906; -extern const bool __static_condition_default_3360; -extern const bool __static_condition_default_3450; -extern const bool __static_condition_default_1690; -extern const bool __static_condition_default_2553; -extern const bool __static_condition_default_2048; -extern const bool __static_condition_default_1284; -extern const bool __static_condition_default_3539; -extern const bool __static_condition_default_168; -extern const bool __static_condition_default_2238; -extern const bool __static_condition_default_2419; -extern const bool __static_condition_default_1780; -extern const bool __static_condition_default_1728; -extern const bool __static_condition_default_1393; -extern const bool __static_condition_default_2331; +extern const bool __static_condition_default_1067; +extern const bool __static_condition_default_2485; +extern const bool __static_condition_default_821; +extern const bool __static_condition_default_1171; +extern const bool __static_condition_default_3712; extern const bool __static_condition_default_2701; -extern const bool __static_condition_default_2600; -extern const bool __static_condition_default_1281; -extern const bool __static_condition_default_1319; -extern const bool __static_condition_default_2279; -extern const bool __static_condition_default_1713; -extern const bool __static_condition_default_2734; -extern const bool __static_condition_default_3366; -extern const bool __static_condition_default_1807; -extern const bool __static_condition_default_2469; -extern const bool __static_condition_default_3048; -extern const bool __static_condition_default_2663; -extern const bool __static_condition_default_1603; -extern const bool __static_condition_default_1658; -extern const bool __static_condition_default_185; -extern const bool __static_condition_default_2640; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_664; -extern const bool __static_condition_default_1999; -extern const bool __static_condition_default_207; -extern const bool __static_condition_default_1406; -extern const bool __static_condition_default_3982; -extern const bool __static_condition_default_1579; -extern const bool __static_condition_default_2300; -extern const bool __static_condition_default_3959; +extern const bool __static_condition_default_1086; +extern const bool __static_condition_default_2618; +extern const bool __static_condition_default_1235; +extern const bool __static_condition_default_2534; extern const bool __static_condition_default_1383; -extern const bool __static_condition_default_1622; +extern const bool __static_condition_default_1533; +extern const bool __static_condition_default_3719; +extern const bool __static_condition_default_1483; +extern const bool __static_condition_default_1399; +extern const bool __static_condition_default_2909; +extern const bool __static_condition_default_2226; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_1894; +extern const bool __static_condition_default_1597; +extern const bool __static_condition_default_2697; +extern const bool __static_condition_default_2527; +extern const bool __static_condition_default_3697; +extern const bool __static_condition_default_2918; +extern const bool __static_condition_default_1150; +extern const bool __static_condition_default_2134; +extern const bool __static_condition_default_2376; +extern const bool __static_condition_default_2550; +extern const bool __static_condition_default_2389; +extern const bool __static_condition_default_2235; +extern const bool __static_condition_default_2665; +extern const bool __static_condition_default_1197; +extern const bool __static_condition_default_1864; +extern const bool __static_condition_default_1403; +extern const bool __static_condition_default_1479; +extern const bool __static_condition_default_1333; +extern const bool __static_condition_default_1624; +extern const bool __static_condition_default_2143; +extern const bool __static_condition_default_3718; +extern const bool __static_condition_default_2391; extern const bool __static_condition_default_1279; -extern const bool __static_condition_default_3543; -extern const bool __static_condition_default_3661; -extern const bool __static_condition_default_2851; -extern const bool __static_condition_default_1781; -extern const bool __static_condition_default_2521; -extern const bool __static_condition_default_2443; -extern const bool __static_condition_default_2381; -extern const bool __static_condition_default_2458; -extern const bool __static_condition_default_2523; -extern const bool __static_condition_default_1645; -extern const bool __static_condition_default_2405; -extern const bool __static_condition_default_63; -extern const bool __static_condition_default_931; -extern const bool __static_condition_default_2941; -extern const bool __static_condition_default_2810; -extern const bool __static_condition_default_2425; -extern const bool __static_condition_default_1508; -extern const bool __static_condition_default_2260; -extern const bool __static_condition_default_3476; -extern const bool __static_condition_default_2397; -extern const bool __static_condition_default_3416; -extern const bool __static_condition_default_149; -extern const bool __static_condition_default_1817; -extern const bool __static_condition_default_1536; -extern const bool __static_condition_default_2707; -extern const bool __static_condition_default_2819; -extern const bool __static_condition_default_1102; -extern const bool __static_condition_default_1413; +extern const bool __static_condition_default_3396; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_1268; +extern const bool __static_condition_default_3694; +extern const bool __static_condition_default_3731; extern const bool __static_condition_default_1534; -extern const bool __static_condition_default_3115; -extern const bool __static_condition_default_2467; -extern const bool __static_condition_default_2346; -extern const bool __static_condition_default_3029; -extern const bool __static_condition_default_2587; -extern const bool __static_condition_default_899; -extern const bool __static_condition_default_696; -extern const bool __static_condition_default_1489; -extern const bool __static_condition_default_1293; -extern const bool __static_condition_default_2249; -extern const bool __static_condition_default_2817; -extern const bool __static_condition_default_1688; -extern const bool __static_condition_default_2857; -extern const bool __static_condition_default_3337; -extern const bool __static_condition_default_2363; -extern const bool __static_condition_default_935; -extern const bool __static_condition_default_2818; -extern const bool __static_condition_default_3122; -extern const bool __static_condition_default_958; -extern const bool __static_condition_default_1654; -extern const bool __static_condition_default_2696; -extern const bool __static_condition_default_910; -extern const bool __static_condition_default_1313; -extern const bool __static_condition_default_2018; -extern const bool __static_condition_default_3688; -extern const bool __static_condition_default_1829; -extern const bool __static_condition_default_2736; -extern const bool __static_condition_default_1665; -extern const bool __static_condition_default_2806; -extern const bool __static_condition_default_69; -extern const bool __static_condition_default_676; -extern const bool __static_condition_default_1976; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_1395; -extern const bool __static_condition_default_3961; -extern const bool __static_condition_default_2338; -extern const bool __static_condition_default_2843; -extern const bool __static_condition_default_1289; -extern const bool __static_condition_default_924; -extern const bool __static_condition_default_2086; -extern const bool __static_condition_default_1610; -extern const bool __static_condition_default_1949; -extern const bool __static_condition_default_2070; -extern const bool __static_condition_default_3022; +extern const bool __static_condition_default_2216; +extern const bool __static_condition_default_2582; +extern const bool __static_condition_default_2622; +extern const bool __static_condition_default_3701; +extern const bool __static_condition_default_1354; +extern const bool __static_condition_default_2648; +extern const bool __static_condition_default_2149; +extern const bool __static_condition_default_631; +extern const bool __static_condition_default_1110; +extern const bool __static_condition_default_1604; extern const bool __static_condition_default_1719; -extern const bool __static_condition_default_1799; +extern const bool __static_condition_default_2352; +extern const bool __static_condition_default_2864; +extern const bool __static_condition_default_1335; +extern const bool __static_condition_default_1872; +extern const bool __static_condition_default_2487; +extern const bool __static_condition_default_2060; +extern const bool __static_condition_default_2784; +extern const bool __static_condition_default_2871; +extern const bool __static_condition_default_3708; +extern const bool __static_condition_default_1557; +extern const bool __static_condition_default_2596; +extern const bool __static_condition_default_2413; +extern const bool __static_condition_default_2436; +extern const bool __static_condition_default_1531; +extern const bool __static_condition_default_109; +extern const bool __static_condition_default_2210; +extern const bool __static_condition_default_2369; +extern const bool __static_condition_default_1605; +extern const bool __static_condition_default_2887; +extern const bool __static_condition_default_2103; +extern const bool __static_condition_default_3723; +extern const bool __static_condition_default_1581; +extern const bool __static_condition_default_2392; +extern const bool __static_condition_default_2412; +extern const bool __static_condition_default_1372; +extern const bool __static_condition_default_1727; +extern const bool __static_condition_default_2524; +extern const bool __static_condition_default_2808; +extern const bool __static_condition_default_3686; +extern const bool __static_condition_default_2677; +extern const bool __static_condition_default_2036; +extern const bool __static_condition_default_2509; +extern const bool __static_condition_default_770; +extern const bool __static_condition_default_1549; +extern const bool __static_condition_default_2120; +extern const bool __static_condition_default_1262; +extern const bool __static_condition_default_1462; +extern const bool __static_condition_default_1413; +extern const bool __static_condition_default_1793; +extern const bool __static_condition_default_1871; +extern const bool __static_condition_default_3279; +extern const bool __static_condition_default_1398; +extern const bool __static_condition_default_3693; +extern const bool __static_condition_default_2919; +extern const bool __static_condition_default_1851; +extern const bool __static_condition_default_2895; +extern const bool __static_condition_default_3706; +extern const bool __static_condition_default_1412; +extern const bool __static_condition_default_2108; +extern const bool __static_condition_default_1625; +extern const bool __static_condition_default_1569; +extern const bool __static_condition_default_2417; +extern const bool __static_condition_default_2228; +extern const bool __static_condition_default_1637; +extern const bool __static_condition_default_1217; +extern const bool __static_condition_default_2621; +extern const bool __static_condition_default_2767; +extern const bool __static_condition_default_1684; +extern const bool __static_condition_default_1792; +extern const bool __static_condition_default_1743; +extern const bool __static_condition_default_1177; +extern const bool __static_condition_default_1396; +extern const bool __static_condition_default_1509; +extern const bool __static_condition_default_1575; +extern const bool __static_condition_default_2533; +extern const bool __static_condition_default_2654; +extern const bool __static_condition_default_2184; +extern const bool __static_condition_default_2526; +extern const bool __static_condition_default_1909; +extern const bool __static_condition_default_814; +extern const bool __static_condition_default_1375; +extern const bool __static_condition_default_1617; +extern const bool __static_condition_default_1704; +extern const bool __static_condition_default_2476; extern const bool __static_condition_default_2807; -extern const bool __static_condition_default_1415; -extern const bool __static_condition_default_1297; -extern const bool __static_condition_default_2602; -extern const bool __static_condition_default_3984; -extern const bool __static_condition_default_1255; -extern const bool __static_condition_default_2438; -extern const bool __static_condition_default_1681; -extern const bool __static_condition_default_1808; +extern const bool __static_condition_default_1227; +extern const bool __static_condition_default_1321; +extern const bool __static_condition_default_2390; +extern const bool __static_condition_default_3545; +extern const bool __static_condition_default_1655; +extern const bool __static_condition_default_2886; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_1363; +extern const bool __static_condition_default_3710; +extern const bool __static_condition_default_1858; +extern const bool __static_condition_default_2111; +extern const bool __static_condition_default_2844; +extern const bool __static_condition_default_2851; +extern const bool __static_condition_default_3428; +extern const bool __static_condition_default_1492; +extern const bool __static_condition_default_2920; +extern const bool __static_condition_default_1159; +extern const bool __static_condition_default_2450; +extern const bool __static_condition_default_2856; +extern const bool __static_condition_default_2872; +extern const bool __static_condition_default_1193; +extern const bool __static_condition_default_2820; +extern const bool __static_condition_default_2350; +extern const bool __static_condition_default_2472; +extern const bool __static_condition_default_2773; +extern const bool __static_condition_default_1141; +extern const bool __static_condition_default_1146; +extern const bool __static_condition_default_2220; +extern const bool __static_condition_default_121; +extern const bool __static_condition_default_2395; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_1628; +extern const bool __static_condition_default_1138; extern const bool __static_condition_default_1843; -extern const bool __static_condition_default_3669; -extern const bool __static_condition_default_3341; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_2749; -extern const bool __static_condition_default_2432; -extern const bool __static_condition_default_3434; -extern const bool __static_condition_default_1833; -extern const bool __static_condition_default_3977; -extern const bool __static_condition_default_2538; +extern const bool __static_condition_default_2894; +extern const bool __static_condition_default_3724; +extern const bool __static_condition_default_1132; +extern const bool __static_condition_default_2663; +extern const bool __static_condition_default_2707; +extern const bool __static_condition_default_1603; +extern const bool __static_condition_default_2139; +extern const bool __static_condition_default_1104; +extern const bool __static_condition_default_2540; +extern const bool __static_condition_default_1688; extern const bool __static_condition_default_2796; -extern const bool __static_condition_default_1588; -extern const bool __static_condition_default_2273; -extern const bool __static_condition_default_1617; +extern const bool __static_condition_default_99; +extern const bool __static_condition_default_1694; +extern const bool __static_condition_default_2137; +extern const bool __static_condition_default_3430; +extern const bool __static_condition_default_1902; +extern const bool __static_condition_default_2190; +extern const bool __static_condition_default_2669; +extern const bool __static_condition_default_1357; +extern const bool __static_condition_default_2838; +extern const bool __static_condition_default_841; +extern const bool __static_condition_default_1443; +extern const bool __static_condition_default_1908; +extern const bool __static_condition_default_1113; +extern const bool __static_condition_default_3380; +extern const bool __static_condition_default_999; +extern const bool __static_condition_default_1127; +extern const bool __static_condition_default_1397; +extern const bool __static_condition_default_1723; +extern const bool __static_condition_default_1750; +extern const bool __static_condition_default_1126; +extern const bool __static_condition_default_1485; +extern const bool __static_condition_default_2097; +extern const bool __static_condition_default_2339; +extern const bool __static_condition_default_1419; +extern const bool __static_condition_default_2394; +extern const bool __static_condition_default_2671; +extern const bool __static_condition_default_1070; +extern const bool __static_condition_default_1532; +extern const bool __static_condition_default_3012; +extern const bool __static_condition_default_2496; +extern const bool __static_condition_default_1548; +extern const bool __static_condition_default_2588; +extern const bool __static_condition_default_2356; +extern const bool __static_condition_default_2786; +extern const bool __static_condition_default_2827; +extern const bool __static_condition_default_1277; +extern const bool __static_condition_default_2119; +extern const bool __static_condition_default_3382; +extern const bool __static_condition_default_644; +extern const bool __static_condition_default_2341; +extern const bool __static_condition_default_3695; +extern const bool __static_condition_default_1815; +extern const bool __static_condition_default_2291; +extern const bool __static_condition_default_961; +extern const bool __static_condition_default_2834; +extern const bool __static_condition_default_2270; +extern const bool __static_condition_default_1215; +extern const bool __static_condition_default_1433; +extern const bool __static_condition_default_107; +extern const bool __static_condition_default_2954; +extern const bool __static_condition_default_1540; +extern const bool __static_condition_default_2368; +extern const bool __static_condition_default_2880; +extern const bool __static_condition_default_3275; +extern const bool __static_condition_default_2218; +extern const bool __static_condition_default_3702; +extern const bool __static_condition_default_2716; +extern const bool __static_condition_default_1304; +extern const bool __static_condition_default_94; +extern const bool __static_condition_default_2063; +extern const bool __static_condition_default_2079; +extern const bool __static_condition_default_2801; +extern const bool __static_condition_default_3700; +extern const bool __static_condition_default_1291; +extern const bool __static_condition_default_3271; +extern const bool __static_condition_default_2200; +extern const bool __static_condition_default_2265; +extern const bool __static_condition_default_2586; +extern const bool __static_condition_default_1541; +extern const bool __static_condition_default_1633; +extern const bool __static_condition_default_3733; +extern const bool __static_condition_default_2466; +extern const bool __static_condition_default_1329; +extern const bool __static_condition_default_3277; +extern const bool __static_condition_default_1698; +extern const bool __static_condition_default_2438; +extern const bool __static_condition_default_1348; +extern const bool __static_condition_default_1511; +extern const bool __static_condition_default_1240; +extern const bool __static_condition_default_3725; +extern const bool __static_condition_default_3732; +extern const bool __static_condition_default_2040; +extern const bool __static_condition_default_1501; extern const bool __static_condition_default_2085; -extern const bool __static_condition_default_2933; -extern const bool __static_condition_default_1722; -extern const bool __static_condition_default_51; -extern const bool __static_condition_default_1523; -extern const bool __static_condition_default_2750; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_2867; -extern const bool __static_condition_default_2445; -extern const bool __static_condition_default_1513; -extern const bool __static_condition_default_857; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_1605; -extern const bool __static_condition_default_1656; -extern const bool __static_condition_default_2226; -extern const bool __static_condition_default_61; -extern const bool __static_condition_default_951; -extern const bool __static_condition_default_3078; -extern const bool __static_condition_default_3997; -extern const bool __static_condition_default_2873; -extern const bool __static_condition_default_1653; -extern const bool __static_condition_default_2830; -extern const bool __static_condition_default_1755; -extern const bool __static_condition_default_162; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_3013; -extern const bool __static_condition_default_144; -extern const bool __static_condition_default_1377; -extern const bool __static_condition_default_2230; -extern const bool __static_condition_default_1012; -extern const bool __static_condition_default_2047; -extern const bool __static_condition_default_1543; -extern const bool __static_condition_default_1219; -extern const bool __static_condition_default_1402; -extern const bool __static_condition_default_1977; -extern const bool __static_condition_default_1351; -extern const bool __static_condition_default_1678; -extern const bool __static_condition_default_2564; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_3273; +extern const bool __static_condition_default_1571; +extern const bool __static_condition_default_3727; +extern const bool __static_condition_default_1593; +extern const bool __static_condition_default_1389; +extern const bool __static_condition_default_3699; +extern const bool __static_condition_default_1175; +extern const bool __static_condition_default_1676; +extern const bool __static_condition_default_2608; +extern const bool __static_condition_default_2246; +extern const bool __static_condition_default_2743; +extern const bool __static_condition_default_1148; +extern const bool __static_condition_default_1233; +extern const bool __static_condition_default_119; +extern const bool __static_condition_default_2152; +extern const bool __static_condition_default_1700; +extern const bool __static_condition_default_2474; +extern const bool __static_condition_default_2543; +extern const bool __static_condition_default_2865; +extern const bool __static_condition_default_1098; +extern const bool __static_condition_default_1118; extern const bool __static_condition_default_129; -extern const bool __static_condition_default_1934; -extern const bool __static_condition_default_2319; -extern const bool __static_condition_default_3130; -extern const bool __static_condition_default_2306; -extern const bool __static_condition_default_3349; -extern const bool __static_condition_default_1777; -extern const bool __static_condition_default_3140; -extern const bool __static_condition_default_1788; -extern const bool __static_condition_default_1677; -extern const bool __static_condition_default_2519; -extern const bool __static_condition_default_3970; -extern const bool __static_condition_default_2481; -extern const bool __static_condition_default_2541; -extern const bool __static_condition_default_2383; -extern const bool __static_condition_default_2483; -extern const bool __static_condition_default_1290; -extern const bool __static_condition_default_3918; -extern const bool __static_condition_default_2000; -extern const bool __static_condition_default_2811; -extern const bool __static_condition_default_1987; -extern const bool __static_condition_default_642; -extern const bool __static_condition_default_2320; -extern const bool __static_condition_default_147; -extern const bool __static_condition_default_2547; -extern const bool __static_condition_default_1564; -extern const bool __static_condition_default_2297; -extern const bool __static_condition_default_2912; -extern const bool __static_condition_default_2592; -extern const bool __static_condition_default_3385; -extern const bool __static_condition_default_1569; -extern const bool __static_condition_default_605; -extern const bool __static_condition_default_2988; -extern const bool __static_condition_default_1706; -extern const bool __static_condition_default_1208; -extern const bool __static_condition_default_1387; -extern const bool __static_condition_default_1720; -extern const bool __static_condition_default_2062; -extern const bool __static_condition_default_1300; -extern const bool __static_condition_default_3141; -extern const bool __static_condition_default_3055; -extern const bool __static_condition_default_3898; -extern const bool __static_condition_default_2367; -extern const bool __static_condition_default_3472; -extern const bool __static_condition_default_1813; -extern const bool __static_condition_default_1721; -extern const bool __static_condition_default_2688; -extern const bool __static_condition_default_2896; -extern const bool __static_condition_default_1827; -extern const bool __static_condition_default_2586; -extern const bool __static_condition_default_1705; -extern const bool __static_condition_default_3541; -extern const bool __static_condition_default_1519; -extern const bool __static_condition_default_2482; -extern const bool __static_condition_default_3999; -extern const bool __static_condition_default_209; -extern const bool __static_condition_default_898; -extern const bool __static_condition_default_2671; -extern const bool __static_condition_default_3535; -extern const bool __static_condition_default_96; -extern const bool __static_condition_default_1335; -extern const bool __static_condition_default_1230; -extern const bool __static_condition_default_1530; -extern const bool __static_condition_default_161; -extern const bool __static_condition_default_1823; -extern const bool __static_condition_default_2589; +extern const bool __static_condition_default_1351; +extern const bool __static_condition_default_2405; +extern const bool __static_condition_default_3713; +extern const bool __static_condition_default_1816; +extern const bool __static_condition_default_1803; +extern const bool __static_condition_default_2241; +extern const bool __static_condition_default_629; +extern const bool __static_condition_default_1629; +extern const bool __static_condition_default_2720; +extern const bool __static_condition_default_3291; +extern const bool __static_condition_default_2712; +extern const bool __static_condition_default_2736; +extern const bool __static_condition_default_1253; extern const bool __static_condition_default_1845; -extern const bool __static_condition_default_2027; -extern const bool __static_condition_default_678; -extern const bool __static_condition_default_2313; -extern const bool __static_condition_default_2771; -extern const bool __static_condition_default_145; -extern const bool __static_condition_default_3101; -extern const bool __static_condition_default_1666; -extern const bool __static_condition_default_1821; -extern const bool __static_condition_default_2042; -extern const bool __static_condition_default_2784; -extern const bool __static_condition_default_2571; -extern const bool __static_condition_default_4005; -extern const bool __static_condition_default_1598; -extern const bool __static_condition_default_3347; -extern const bool __static_condition_default_218; -extern const bool __static_condition_default_688; -extern const bool __static_condition_default_2029; -extern const bool __static_condition_default_4003; -extern const bool __static_condition_default_3364; -extern const bool __static_condition_default_2863; -extern const bool __static_condition_default_166; -extern const bool __static_condition_default_1903; -extern const bool __static_condition_default_3978; -extern const bool __static_condition_default_2407; -extern const bool __static_condition_default_2683; -extern const bool __static_condition_default_2700; -extern const bool __static_condition_default_4007; -extern const bool __static_condition_default_2423; -extern const bool __static_condition_default_3358; -extern const bool __static_condition_default_1772; +extern const bool __static_condition_default_2397; +extern const bool __static_condition_default_2342; +extern const bool __static_condition_default_1223; +extern const bool __static_condition_default_1473; +extern const bool __static_condition_default_2117; +extern const bool __static_condition_default_1547; +extern const bool __static_condition_default_1563; +extern const bool __static_condition_default_1272; +extern const bool __static_condition_default_826; +extern const bool __static_condition_default_3269; +extern const bool __static_condition_default_3405; +extern const bool __static_condition_default_2901; +extern const bool __static_condition_default_2562; +extern const bool __static_condition_default_1119; +extern const bool __static_condition_default_1645; +extern const bool __static_condition_default_2110; +extern const bool __static_condition_default_2186; +extern const bool __static_condition_default_1863; +extern const bool __static_condition_default_1410; +extern const bool __static_condition_default_2261; +extern const bool __static_condition_default_1993; +extern const bool __static_condition_default_2478; +extern const bool __static_condition_default_2168; +extern const bool __static_condition_default_2632; +extern const bool __static_condition_default_1191; +extern const bool __static_condition_default_2902; +extern const bool __static_condition_default_1730; +extern const bool __static_condition_default_2239; +extern const bool __static_condition_default_791; +extern const bool __static_condition_default_1834; +extern const bool __static_condition_default_2141; +extern const bool __static_condition_default_1659; +extern const bool __static_condition_default_3289; +extern const bool __static_condition_default_2374; +extern const bool __static_condition_default_1424; +extern const bool __static_condition_default_2066; +extern const bool __static_condition_default_2879; +extern const bool __static_condition_default_1293; +extern const bool __static_condition_default_3685; +extern const bool __static_condition_default_3711; +extern const bool __static_condition_default_1370; +extern const bool __static_condition_default_2549; +extern const bool __static_condition_default_776; +extern const bool __static_condition_default_1201; +extern const bool __static_condition_default_2598; +extern const bool __static_condition_default_1518; +extern const bool __static_condition_default_1925; +extern const bool __static_condition_default_1887; +extern const bool __static_condition_default_3704; +extern const bool __static_condition_default_1374; +extern const bool __static_condition_default_1615; +extern const bool __static_condition_default_1589; +extern const bool __static_condition_default_1450; +extern const bool __static_condition_default_2421; +extern const bool __static_condition_default_1124; +extern const bool __static_condition_default_2431; +extern const bool __static_condition_default_3707; +extern const bool __static_condition_default_2502; +extern const bool __static_condition_default_2518; +extern const bool __static_condition_default_1927; +extern const bool __static_condition_default_2443; +extern const bool __static_condition_default_642; +extern const bool __static_condition_default_2284; +extern const bool __static_condition_default_2402; +extern const bool __static_condition_default_808; +extern const bool __static_condition_default_2322; +extern const bool __static_condition_default_2910; +extern const bool __static_condition_default_1550; +extern const bool __static_condition_default_1917; +extern const bool __static_condition_default_1878; +extern const bool __static_condition_default_954; +extern const bool __static_condition_default_2542; +extern const bool __static_condition_default_1714; +extern const bool __static_condition_default_1893; +extern const bool __static_condition_default_1957; +extern const bool __static_condition_default_2455; +extern const bool __static_condition_default_1901; +extern const bool __static_condition_default_1653; +extern const bool __static_condition_default_765; +extern const bool __static_condition_default_2590; +extern const bool __static_condition_default_2125; +extern const bool __static_condition_default_2326; +extern const bool __static_condition_default_2687; +extern const bool __static_condition_default_1525; +extern const bool __static_condition_default_1682; +extern const bool __static_condition_default_2723; +extern const bool __static_condition_default_1331; +extern const bool __static_condition_default_2286; +extern const bool __static_condition_default_1315; +extern const bool __static_condition_default_2646; +extern const bool __static_condition_default_2597; +extern const bool __static_condition_default_1409; +extern const bool __static_condition_default_3403; extern const bool __static_condition_default_2652; -extern const bool __static_condition_default_115; -extern const bool __static_condition_default_2100; -extern const bool __static_condition_default_3648; -extern const bool __static_condition_default_1361; -extern const bool __static_condition_default_3057; -extern const bool __static_condition_default_3407; -extern const bool __static_condition_default_1862; -extern const bool __static_condition_default_2709; -extern const bool __static_condition_default_165; -extern const bool __static_condition_default_2315; -extern const bool __static_condition_default_1310; -extern const bool __static_condition_default_1882; -extern const bool __static_condition_default_3474; -extern const bool __static_condition_default_2918; -extern const bool __static_condition_default_670; -extern const bool __static_condition_default_2101; -extern const bool __static_condition_default_2536; -extern const bool __static_condition_default_640; -extern const bool __static_condition_default_189; -extern const bool __static_condition_default_1633; +extern const bool __static_condition_default_92; +extern const bool __static_condition_default_131; +extern const bool __static_condition_default_2328; +extern const bool __static_condition_default_2638; +extern const bool __static_condition_default_2792; +extern const bool __static_condition_default_2636; +extern const bool __static_condition_default_1950; +extern const bool __static_condition_default_1672; +extern const bool __static_condition_default_2131; +extern const bool __static_condition_default_2630; +extern const bool __static_condition_default_2346; +extern const bool __static_condition_default_1207; +extern const bool __static_condition_default_2564; +extern const bool __static_condition_default_1346; +extern const bool __static_condition_default_2164; +extern const bool __static_condition_default_2403; +extern const bool __static_condition_default_1926; +extern const bool __static_condition_default_2194; +extern const bool __static_condition_default_1401; +extern const bool __static_condition_default_133; +extern const bool __static_condition_default_1623; +extern const bool __static_condition_default_2406; +extern const bool __static_condition_default_2504; +extern const bool __static_condition_default_2255; +extern const bool __static_condition_default_2617; +extern const bool __static_condition_default_3302; +extern const bool __static_condition_default_3148; +extern const bool __static_condition_default_2836; +extern const bool __static_condition_default_2128; +extern const bool __static_condition_default_1565; +extern const bool __static_condition_default_1092; +extern const bool __static_condition_default_2626; +extern const bool __static_condition_default_1649; extern const bool __static_condition_default_2285; -extern const bool __static_condition_default_2349; -extern const bool __static_condition_default_2462; -extern const bool __static_condition_default_905; -extern const bool __static_condition_default_1353; -extern const bool __static_condition_default_2395; -extern const bool __static_condition_default_117; -extern const bool __static_condition_default_1643; -extern const bool __static_condition_default_2336; -extern const bool __static_condition_default_71; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_1679; -extern const bool __static_condition_default_1800; -extern const bool __static_condition_default_1767; -extern const bool __static_condition_default_2802; -extern const bool __static_condition_default_3646; -extern const bool __static_condition_default_1243; -extern const bool __static_condition_default_3353; -extern const bool __static_condition_default_3139; -extern const bool __static_condition_default_2712; -extern const bool __static_condition_default_2093; -extern const bool __static_condition_default_964; -extern const bool __static_condition_default_2614; -extern const bool __static_condition_default_2785; -extern const bool __static_condition_default_1837; -extern const bool __static_condition_default_2525; -extern const bool __static_condition_default_1766; -extern const bool __static_condition_default_2334; -extern const bool __static_condition_default_2902; -extern const bool __static_condition_default_67; -extern const bool __static_condition_default_1907; -extern const bool __static_condition_default_2591; -extern const bool __static_condition_default_105; -extern const bool __static_condition_default_656; -extern const bool __static_condition_default_841; -extern const bool __static_condition_default_2711; -extern const bool __static_condition_default_57; -extern const bool __static_condition_default_1776; -extern const bool __static_condition_default_2839; -extern const bool __static_condition_default_3007; -extern const bool __static_condition_default_73; -extern const bool __static_condition_default_859; -extern const bool __static_condition_default_3551; -extern const bool __static_condition_default_3981; -extern const bool __static_condition_default_2599; -extern const bool __static_condition_default_2758; -extern const bool __static_condition_default_1274; -extern const bool __static_condition_default_2908; -extern const bool __static_condition_default_2078; -extern const bool __static_condition_default_3985; -extern const bool __static_condition_default_1556; -extern const bool __static_condition_default_2718; -extern const bool __static_condition_default_3555; -extern const bool __static_condition_default_1149; -extern const bool __static_condition_default_1453; -extern const bool __static_condition_default_2327; -extern const bool __static_condition_default_2853; -extern const bool __static_condition_default_2266; -extern const bool __static_condition_default_2695; -extern const bool __static_condition_default_2795; -extern const bool __static_condition_default_3470; -extern const bool __static_condition_default_2415; -extern const bool __static_condition_default_2751; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_3030; -extern const bool __static_condition_default_114; -extern const bool __static_condition_default_200; -extern const bool __static_condition_default_2786; -extern const bool __static_condition_default_3399; -extern const bool __static_condition_default_607; -extern const bool __static_condition_default_648; -extern const bool __static_condition_default_2011; +extern const bool __static_condition_default_3395; +extern const bool __static_condition_default_1420; +extern const bool __static_condition_default_2121; +extern const bool __static_condition_default_2233; +extern const bool __static_condition_default_3721; +extern const bool __static_condition_default_3722; +extern const bool __static_condition_default_2170; +extern const bool __static_condition_default_2511; +extern const bool __static_condition_default_1156; +extern const bool __static_condition_default_1225; +extern const bool __static_condition_default_1376; +extern const bool __static_condition_default_2248; extern const bool __static_condition_default_1639; -extern const bool __static_condition_default_2898; -extern const bool __static_condition_default_3994; -extern const bool __static_condition_default_1712; -extern const bool __static_condition_default_853; -extern const bool __static_condition_default_2647; -extern const bool __static_condition_default_1264; -extern const bool __static_condition_default_1652; -extern const bool __static_condition_default_2365; -extern const bool __static_condition_default_1911; -extern const bool __static_condition_default_2838; -extern const bool __static_condition_default_3433; -extern const bool __static_condition_default_2618; -extern const bool __static_condition_default_1983; -extern const bool __static_condition_default_1316; -extern const bool __static_condition_default_3072; -extern const bool __static_condition_default_845; -extern const bool __static_condition_default_1365; -extern const bool __static_condition_default_1558; -extern const bool __static_condition_default_1559; -extern const bool __static_condition_default_3568; -extern const bool __static_condition_default_911; -extern const bool __static_condition_default_987; -extern const bool __static_condition_default_126; -extern const bool __static_condition_default_1787; -extern const bool __static_condition_default_1517; -extern const bool __static_condition_default_1839; -extern const bool __static_condition_default_2964; -extern const bool __static_condition_default_1275; -extern const bool __static_condition_default_143; -extern const bool __static_condition_default_2922; -extern const bool __static_condition_default_1570; -extern const bool __static_condition_default_1531; -extern const bool __static_condition_default_1872; -extern const bool __static_condition_default_108; -extern const bool __static_condition_default_3557; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_1432; -extern const bool __static_condition_default_628; -extern const bool __static_condition_default_2773; -extern const bool __static_condition_default_2543; -extern const bool __static_condition_default_1385; -extern const bool __static_condition_default_1491; -extern const bool __static_condition_default_3545; -extern const bool __static_condition_default_698; -extern const bool __static_condition_default_1514; -extern const bool __static_condition_default_1878; -extern const bool __static_condition_default_2610; -extern const bool __static_condition_default_3971; -extern const bool __static_condition_default_1464; +extern const bool __static_condition_default_1791; +extern const bool __static_condition_default_2308; +extern const bool __static_condition_default_2115; +extern const bool __static_condition_default_2642; +extern const bool __static_condition_default_2785; +extern const bool __static_condition_default_3422; +extern const bool __static_condition_default_1349; +extern const bool __static_condition_default_2091; +extern const bool __static_condition_default_3283; +extern const bool __static_condition_default_1643; +extern const bool __static_condition_default_1916; +extern const bool __static_condition_default_2556; +extern const bool __static_condition_default_2037; +extern const bool __static_condition_default_2106; +extern const bool __static_condition_default_2344; +extern const bool __static_condition_default_3294; +extern const bool __static_condition_default_2609; +extern const bool __static_condition_default_1298; +extern const bool __static_condition_default_3297; +extern const bool __static_condition_default_2100; +extern const bool __static_condition_default_2691; +extern const bool __static_condition_default_1468; +extern const bool __static_condition_default_2461; extern const bool __static_condition_default_2494; -extern const bool __static_condition_default_1584; -extern const bool __static_condition_default_2294; -extern const bool __static_condition_default_2869; -extern const bool __static_condition_default_1367; -extern const bool __static_condition_default_2743; -extern const bool __static_condition_default_1809; -extern const bool __static_condition_default_2831; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_2180; -extern const bool __static_condition_default_2635; -extern const bool __static_condition_default_2928; -extern const bool __static_condition_default_1227; -extern const bool __static_condition_default_1771; -extern const bool __static_condition_default_2071; -extern const bool __static_condition_default_2699; -extern const bool __static_condition_default_2055; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_1532; -extern const bool __static_condition_default_1927; -extern const bool __static_condition_default_1860; -extern const bool __static_condition_default_3694; -extern const bool __static_condition_default_216; -extern const bool __static_condition_default_160; -extern const bool __static_condition_default_1333; -extern const bool __static_condition_default_1549; -extern const bool __static_condition_default_1884; -extern const bool __static_condition_default_1998; -extern const bool __static_condition_default_3986; -extern const bool __static_condition_default_3175; -extern const bool __static_condition_default_2330; -extern const bool __static_condition_default_1509; -extern const bool __static_condition_default_3093; -extern const bool __static_condition_default_1196; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_2291; -extern const bool __static_condition_default_2309; -extern const bool __static_condition_default_3343; -extern const bool __static_condition_default_1964; -extern const bool __static_condition_default_1495; -extern const bool __static_condition_default_3405; -extern const bool __static_condition_default_1789; -extern const bool __static_condition_default_917; -extern const bool __static_condition_default_1301; -extern const bool __static_condition_default_3092; -extern const bool __static_condition_default_930; -extern const bool __static_condition_default_1110; -extern const bool __static_condition_default_1276; -extern const bool __static_condition_default_1756; -extern const bool __static_condition_default_2243; -extern const bool __static_condition_default_1580; -extern const bool __static_condition_default_3085; -extern const bool __static_condition_default_2560; -extern const bool __static_condition_default_2803; -extern const bool __static_condition_default_1017; -extern const bool __static_condition_default_2562; -extern const bool __static_condition_default_131; -extern const bool __static_condition_default_198; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_2675; -extern const bool __static_condition_default_3696; -extern const bool __static_condition_default_1375; -extern const bool __static_condition_default_1458; -extern const bool __static_condition_default_1801; -extern const bool __static_condition_default_1199; -extern const bool __static_condition_default_2797; -extern const bool __static_condition_default_3979; -extern const bool __static_condition_default_918; -extern const bool __static_condition_default_1261; -extern const bool __static_condition_default_2859; -extern const bool __static_condition_default_839; -extern const bool __static_condition_default_965; -extern const bool __static_condition_default_3368; -extern const bool __static_condition_default_694; -extern const bool __static_condition_default_3973; -extern const bool __static_condition_default_3480; -extern const bool __static_condition_default_2035; -extern const bool __static_condition_default_1422; -extern const bool __static_condition_default_2875; -extern const bool __static_condition_default_2925; -extern const bool __static_condition_default_893; -extern const bool __static_condition_default_1657; -extern const bool __static_condition_default_2742; -extern const bool __static_condition_default_3570; -extern const bool __static_condition_default_109; -extern const bool __static_condition_default_2436; -extern const bool __static_condition_default_3468; -extern const bool __static_condition_default_2488; -extern const bool __static_condition_default_3972; -extern const bool __static_condition_default_3131; -extern const bool __static_condition_default_1337; -extern const bool __static_condition_default_1236; -extern const bool __static_condition_default_2417; -extern const bool __static_condition_default_866; -extern const bool __static_condition_default_1958; extern const bool __static_condition_default_127; -extern const bool __static_condition_default_1511; -extern const bool __static_condition_default_2413; -extern const bool __static_condition_default_1914; -extern const bool __static_condition_default_1357; -extern const bool __static_condition_default_2708; -extern const bool __static_condition_default_3108; -extern const bool __static_condition_default_1703; -extern const bool __static_condition_default_3345; -extern const bool __static_condition_default_2765; -extern const bool __static_condition_default_227; -extern const bool __static_condition_default_1741; -extern const bool __static_condition_default_1747; -extern const bool __static_condition_default_2588; -extern const bool __static_condition_default_3116; -extern const bool __static_condition_default_3006; -extern const bool __static_condition_default_3916; -extern const bool __static_condition_default_617; -extern const bool __static_condition_default_2759; -extern const bool __static_condition_default_1213; -extern const bool __static_condition_default_1754; -extern const bool __static_condition_default_1023; -extern const bool __static_condition_default_2143; -extern const bool __static_condition_default_2801; +extern const bool __static_condition_default_3730; +extern const bool __static_condition_default_2986; +extern const bool __static_condition_default_2365; +extern const bool __static_condition_default_1246; +extern const bool __static_condition_default_2166; +extern const bool __static_condition_default_3424; +extern const bool __static_condition_default_1107; +extern const bool __static_condition_default_1678; +extern const bool __static_condition_default_1438; +extern const bool __static_condition_default_2324; +extern const bool __static_condition_default_2857; +extern const bool __static_condition_default_1353; +extern const bool __static_condition_default_1799; +extern const bool __static_condition_default_2382; +extern const bool __static_condition_default_3698; +extern const bool __static_condition_default_1616; +extern const bool __static_condition_default_1173; +extern const bool __static_condition_default_2681; +extern const bool __static_condition_default_2297; +extern const bool __static_condition_default_2809; +extern const bool __static_condition_default_1879; +extern const bool __static_condition_default_2426; +extern const bool __static_condition_default_2568; +extern const bool __static_condition_default_3696; +extern const bool __static_condition_default_1402; +extern const bool __static_condition_default_1556; +extern const bool __static_condition_default_2396; +extern const bool __static_condition_default_2198; +extern const bool __static_condition_default_1144; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_1808; +extern const bool __static_condition_default_1381; +extern const bool __static_condition_default_2363; +extern const bool __static_condition_default_2272; +extern const bool __static_condition_default_3729; +extern const bool __static_condition_default_2758; +extern const bool __static_condition_default_1292; +extern const bool __static_condition_default_1359; +extern const bool __static_condition_default_1248; +extern const bool __static_condition_default_2620; +extern const bool __static_condition_default_1079; +extern const bool __static_condition_default_1595; +extern const bool __static_condition_default_2616; +extern const bool __static_condition_default_2314; +extern const bool __static_condition_default_2367; +extern const bool __static_condition_default_1661; +extern const bool __static_condition_default_2222; +extern const bool __static_condition_default_2558; +extern const bool __static_condition_default_1774; +extern const bool __static_condition_default_3285; +extern const bool __static_condition_default_1122; +extern const bool __static_condition_default_1371; +extern const bool __static_condition_default_2208; +extern const bool __static_condition_default_1229; +extern const bool __static_condition_default_1046; +extern const bool __static_condition_default_1711; +extern const bool __static_condition_default_1780; +extern const bool __static_condition_default_3720; +extern const bool __static_condition_default_1255; +extern const bool __static_condition_default_2675; +extern const bool __static_condition_default_1814; +extern const bool __static_condition_default_3705; +extern const bool __static_condition_default_1708; +extern const bool __static_condition_default_2112; +extern const bool __static_condition_default_1886; +extern const bool __static_condition_default_1481; +extern const bool __static_condition_default_2574; +extern const bool __static_condition_default_1115; +extern const bool __static_condition_default_2146; +extern const bool __static_condition_default_2072; +extern const bool __static_condition_default_2364; +extern const bool __static_condition_default_1670; +extern const bool __static_condition_default_1627; +extern const bool __static_condition_default_786; +extern const bool __static_condition_default_2693; +extern const bool __static_condition_default_1516; +extern const bool __static_condition_default_3304; +extern const bool __static_condition_default_101; +extern const bool __static_condition_default_3728; +extern const bool __static_condition_default_1128; +extern const bool __static_condition_default_1404; +extern const bool __static_condition_default_1205; +extern const bool __static_condition_default_1827; +extern const bool __static_condition_default_2704; +extern const bool __static_condition_default_1445; +extern const bool __static_condition_default_2347; +extern const bool __static_condition_default_3726; +extern const bool __static_condition_default_1503; +extern const bool __static_condition_default_3709; +extern const bool __static_condition_default_2541; +extern const bool __static_condition_default_1457; +extern const bool __static_condition_default_2610; void __static_initializer_default() { __static_renaming("____u_char_0", "__u_char"); __static_renaming("____u_short_1", "__u_short"); @@ -824,1728 +625,1528 @@ __static_renaming("____ssize_t_47", "__ssize_t"); __static_renaming("____syscall_slong_t_48", "__syscall_slong_t"); __static_renaming("____syscall_ulong_t_49", "__syscall_ulong_t"); __static_renaming("____loff_t_50", "__loff_t"); -__static_renaming("____qaddr_t_52", "__qaddr_t"); -__static_renaming("____caddr_t_53", "__caddr_t"); -__static_renaming("____intptr_t_54", "__intptr_t"); -__static_renaming("____socklen_t_55", "__socklen_t"); -__static_renaming("__ssize_t_56", "ssize_t"); -__static_renaming("__ptrdiff_t_58", "ptrdiff_t"); -__static_renaming("__size_t_59", "size_t"); -__static_renaming("__gid_t_60", "gid_t"); -__static_renaming("__uid_t_62", "uid_t"); -__static_renaming("__off_t_64", "off_t"); -__static_renaming("__off_t_66", "off_t"); -__static_renaming("__useconds_t_68", "useconds_t"); -__static_renaming("__pid_t_70", "pid_t"); -__static_renaming("__pid_t_72", "pid_t"); -__static_renaming("__intptr_t_74", "intptr_t"); -__static_renaming("__socklen_t_75", "socklen_t"); -__static_renaming("__access_78", "access"); -__static_renaming("__access_79", "access"); -__static_renaming("__access_80", "access"); -__static_renaming("__faccessat_85", "faccessat"); -__static_renaming("__faccessat_86", "faccessat"); -__static_renaming("__lseek_95", "lseek"); -__static_renaming("__lseek_97", "lseek"); -__static_renaming("__close_100", "close"); -__static_renaming("__read_104", "read"); -__static_renaming("__read_107", "read"); -__static_renaming("__write_113", "write"); -__static_renaming("__write_116", "write"); -__static_renaming("__pread_124", "pread"); -__static_renaming("__pread_128", "pread"); -__static_renaming("__pread_142", "pread"); -__static_renaming("__pread_146", "pread"); -__static_renaming("__pwrite_155", "pwrite"); -__static_renaming("__pwrite_159", "pwrite"); -__static_renaming("__pwrite_163", "pwrite"); -__static_renaming("__pwrite_167", "pwrite"); -__static_renaming("__pipe_172", "pipe"); -__static_renaming("__pipe_173", "pipe"); -__static_renaming("__pipe_174", "pipe"); -__static_renaming("__pipe_175", "pipe"); -__static_renaming("__alarm_177", "alarm"); -__static_renaming("__sleep_179", "sleep"); -__static_renaming("__ualarm_184", "ualarm"); -__static_renaming("__usleep_188", "usleep"); -__static_renaming("__pause_190", "pause"); -__static_renaming("__pause_191", "pause"); -__static_renaming("__chown_197", "chown"); -__static_renaming("__chown_199", "chown"); -__static_renaming("__fchown_206", "fchown"); -__static_renaming("__fchown_208", "fchown"); -__static_renaming("__lchown_215", "lchown"); -__static_renaming("__lchown_217", "lchown"); -__static_renaming("__fchownat_226", "fchownat"); -__static_renaming("__fchownat_228", "fchownat"); -__static_renaming("__chdir_231", "chdir"); -__static_renaming("__chdir_232", "chdir"); -__static_renaming("__chdir_233", "chdir"); -__static_renaming("__chdir_234", "chdir"); -__static_renaming("__fchdir_236", "fchdir"); -__static_renaming("__fchdir_237", "fchdir"); -__static_renaming("__getcwd_240", "getcwd"); -__static_renaming("__getcwd_241", "getcwd"); -__static_renaming("__getcwd_242", "getcwd"); -__static_renaming("__getcwd_243", "getcwd"); -__static_renaming("__getwd_245", "getwd"); -__static_renaming("__getwd_246", "getwd"); -__static_renaming("__dup_248", "dup"); -__static_renaming("__dup_249", "dup"); -__static_renaming("__dup_250", "dup"); -__static_renaming("__dup_251", "dup"); -__static_renaming("__dup2_254", "dup2"); -__static_renaming("____environ_255", "__environ"); -__static_renaming("__execve_259", "execve"); -__static_renaming("__fexecve_263", "fexecve"); -__static_renaming("__execv_266", "execv"); -__static_renaming("__execv_267", "execv"); -__static_renaming("__execle_270", "execle"); -__static_renaming("__execl_273", "execl"); -__static_renaming("__execvp_276", "execvp"); -__static_renaming("__execlp_279", "execlp"); -__static_renaming("__nice_281", "nice"); -__static_renaming("__nice_282", "nice"); -__static_renaming("___exit_284", "_exit"); -__static_renaming("___exit_285", "_exit"); -__static_renaming("__pathconf_594", "pathconf"); -__static_renaming("__fpathconf_597", "fpathconf"); -__static_renaming("__sysconf_599", "sysconf"); -__static_renaming("__confstr_603", "confstr"); -__static_renaming("__getpid_604", "getpid"); -__static_renaming("__getpid_606", "getpid"); -__static_renaming("__getppid_608", "getppid"); -__static_renaming("__getpgrp_610", "getpgrp"); -__static_renaming("____getpgid_613", "__getpgid"); -__static_renaming("__getpgid_616", "getpgid"); -__static_renaming("__setpgid_622", "setpgid"); -__static_renaming("__setpgid_624", "setpgid"); -__static_renaming("__setpgrp_626", "setpgrp"); -__static_renaming("__setsid_627", "setsid"); -__static_renaming("__setsid_629", "setsid"); -__static_renaming("__getsid_633", "getsid"); -__static_renaming("__getuid_635", "getuid"); -__static_renaming("__getuid_637", "getuid"); -__static_renaming("__geteuid_639", "geteuid"); -__static_renaming("__getgid_641", "getgid"); -__static_renaming("__getegid_643", "getegid"); -__static_renaming("__getgroups_647", "getgroups"); -__static_renaming("__getgroups_649", "getgroups"); -__static_renaming("__setuid_653", "setuid"); -__static_renaming("__setuid_655", "setuid"); -__static_renaming("__setreuid_661", "setreuid"); -__static_renaming("__setreuid_663", "setreuid"); -__static_renaming("__seteuid_667", "seteuid"); -__static_renaming("__seteuid_669", "seteuid"); -__static_renaming("__setgid_673", "setgid"); -__static_renaming("__setgid_675", "setgid"); -__static_renaming("__setgid_677", "setgid"); -__static_renaming("__setgid_679", "setgid"); -__static_renaming("__setregid_685", "setregid"); -__static_renaming("__setregid_687", "setregid"); -__static_renaming("__setegid_691", "setegid"); -__static_renaming("__setegid_693", "setegid"); -__static_renaming("__fork_695", "fork"); -__static_renaming("__fork_697", "fork"); -__static_renaming("__vfork_699", "vfork"); -__static_renaming("__ttyname_702", "ttyname"); -__static_renaming("__ttyname_703", "ttyname"); -__static_renaming("__ttyname_r_707", "ttyname_r"); -__static_renaming("__ttyname_r_708", "ttyname_r"); -__static_renaming("__isatty_710", "isatty"); -__static_renaming("__ttyslot_711", "ttyslot"); -__static_renaming("__link_714", "link"); -__static_renaming("__link_715", "link"); -__static_renaming("__link_716", "link"); -__static_renaming("__link_717", "link"); -__static_renaming("__linkat_723", "linkat"); -__static_renaming("__linkat_724", "linkat"); -__static_renaming("__symlink_727", "symlink"); -__static_renaming("__symlink_728", "symlink"); -__static_renaming("__readlink_732", "readlink"); -__static_renaming("__readlink_735", "readlink"); -__static_renaming("__symlinkat_741", "symlinkat"); -__static_renaming("__symlinkat_742", "symlinkat"); -__static_renaming("__readlinkat_747", "readlinkat"); -__static_renaming("__readlinkat_750", "readlinkat"); -__static_renaming("__unlink_754", "unlink"); -__static_renaming("__unlink_755", "unlink"); -__static_renaming("__unlinkat_759", "unlinkat"); -__static_renaming("__rmdir_761", "rmdir"); -__static_renaming("__rmdir_762", "rmdir"); -__static_renaming("__tcgetpgrp_764", "tcgetpgrp"); -__static_renaming("__tcsetpgrp_768", "tcsetpgrp"); -__static_renaming("__getlogin_769", "getlogin"); -__static_renaming("__getlogin_r_772", "getlogin_r"); -__static_renaming("__setlogin_774", "setlogin"); -__static_renaming("__optarg_775", "optarg"); -__static_renaming("__optind_776", "optind"); -__static_renaming("__opterr_777", "opterr"); -__static_renaming("__optopt_778", "optopt"); -__static_renaming("__getopt_782", "getopt"); -__static_renaming("__gethostname_785", "gethostname"); -__static_renaming("__sethostname_788", "sethostname"); -__static_renaming("__sethostname_789", "sethostname"); -__static_renaming("__sethostid_791", "sethostid"); -__static_renaming("__sethostid_792", "sethostid"); -__static_renaming("__getdomainname_795", "getdomainname"); -__static_renaming("__getdomainname_796", "getdomainname"); -__static_renaming("__setdomainname_799", "setdomainname"); -__static_renaming("__setdomainname_800", "setdomainname"); -__static_renaming("__vhangup_801", "vhangup"); -__static_renaming("__revoke_803", "revoke"); -__static_renaming("__revoke_804", "revoke"); -__static_renaming("__profil_809", "profil"); -__static_renaming("__acct_811", "acct"); -__static_renaming("__getusershell_812", "getusershell"); -__static_renaming("__endusershell_813", "endusershell"); -__static_renaming("__setusershell_814", "setusershell"); -__static_renaming("__daemon_817", "daemon"); -__static_renaming("__daemon_818", "daemon"); -__static_renaming("__chroot_820", "chroot"); -__static_renaming("__chroot_821", "chroot"); -__static_renaming("__getpass_823", "getpass"); -__static_renaming("__fsync_825", "fsync"); -__static_renaming("__fsync_826", "fsync"); -__static_renaming("__fsync_827", "fsync"); -__static_renaming("__gethostid_828", "gethostid"); -__static_renaming("__sync_829", "sync"); -__static_renaming("__getpagesize_830", "getpagesize"); -__static_renaming("__getdtablesize_831", "getdtablesize"); -__static_renaming("__truncate_838", "truncate"); -__static_renaming("__truncate_840", "truncate"); -__static_renaming("__truncate_842", "truncate"); -__static_renaming("__truncate_844", "truncate"); -__static_renaming("__ftruncate_852", "ftruncate"); -__static_renaming("__ftruncate_854", "ftruncate"); -__static_renaming("__ftruncate_856", "ftruncate"); -__static_renaming("__ftruncate_858", "ftruncate"); -__static_renaming("__brk_861", "brk"); -__static_renaming("__brk_862", "brk"); -__static_renaming("__sbrk_865", "sbrk"); -__static_renaming("__syscall_868", "syscall"); -__static_renaming("__lockf_877", "lockf"); -__static_renaming("__lockf_879", "lockf"); -__static_renaming("__lockf_881", "lockf"); -__static_renaming("__lockf_883", "lockf"); -__static_renaming("__fdatasync_886", "fdatasync"); -__static_renaming("____read_chk_891", "__read_chk"); -__static_renaming("____read_alias_897", "__read_alias"); -__static_renaming("____read_chk_warn_904", "__read_chk_warn"); -__static_renaming("____readlink_chk_916", "__readlink_chk"); -__static_renaming("____readlink_alias_922", "__readlink_alias"); -__static_renaming("____readlink_chk_warn_929", "__readlink_chk_warn"); -__static_renaming("____readlinkat_chk_942", "__readlinkat_chk"); -__static_renaming("____readlinkat_alias_949", "__readlinkat_alias"); -__static_renaming("____readlinkat_chk_warn_957", "__readlinkat_chk_warn"); -__static_renaming("____getcwd_chk_969", "__getcwd_chk"); -__static_renaming("____getcwd_chk_970", "__getcwd_chk"); -__static_renaming("____getcwd_alias_973", "__getcwd_alias"); -__static_renaming("____getcwd_chk_warn_977", "__getcwd_chk_warn"); -__static_renaming("____getwd_chk_983", "__getwd_chk"); -__static_renaming("____getwd_warn_985", "__getwd_warn"); -__static_renaming("____confstr_chk_992", "__confstr_chk"); -__static_renaming("____confstr_chk_993", "__confstr_chk"); -__static_renaming("____confstr_alias_997", "__confstr_alias"); -__static_renaming("____confstr_chk_warn_1002", "__confstr_chk_warn"); -__static_renaming("____getgroups_chk_1011", "__getgroups_chk"); -__static_renaming("____getgroups_alias_1016", "__getgroups_alias"); -__static_renaming("____getgroups_chk_warn_1022", "__getgroups_chk_warn"); -__static_renaming("____ttyname_r_chk_1032", "__ttyname_r_chk"); -__static_renaming("____ttyname_r_alias_1036", "__ttyname_r_alias"); -__static_renaming("____ttyname_r_chk_warn_1041", "__ttyname_r_chk_warn"); -__static_renaming("____getlogin_r_chk_1048", "__getlogin_r_chk"); -__static_renaming("____getlogin_r_alias_1051", "__getlogin_r_alias"); -__static_renaming("____getlogin_r_chk_warn_1055", "__getlogin_r_chk_warn"); -__static_renaming("____gethostname_chk_1061", "__gethostname_chk"); -__static_renaming("____gethostname_alias_1064", "__gethostname_alias"); -__static_renaming("____gethostname_chk_warn_1068", "__gethostname_chk_warn"); -__static_renaming("____getdomainname_chk_1074", "__getdomainname_chk"); -__static_renaming("____getdomainname_alias_1077", "__getdomainname_alias"); -__static_renaming("____getdomainname_chk_warn_1081", "__getdomainname_chk_warn"); -__static_renaming("__FILE_1085", "FILE"); -__static_renaming("____FILE_1086", "__FILE"); -__static_renaming("____mbstate_t_1095", "__mbstate_t"); -__static_renaming("___G_fpos_t_1103", "_G_fpos_t"); -__static_renaming("___G_fpos64_t_1111", "_G_fpos64_t"); -__static_renaming("____gnuc_va_list_1112", "__gnuc_va_list"); -__static_renaming("___IO_lock_t_1114", "_IO_lock_t"); -__static_renaming("___IO_FILE_1197", "_IO_FILE"); -__static_renaming("___IO_FILE_1198", "_IO_FILE"); -__static_renaming("___IO_2_1_stdin__1201", "_IO_2_1_stdin_"); -__static_renaming("___IO_2_1_stdout__1202", "_IO_2_1_stdout_"); -__static_renaming("___IO_2_1_stderr__1203", "_IO_2_1_stderr_"); -__static_renaming("____io_read_fn_1207", "__io_read_fn"); -__static_renaming("____io_write_fn_1212", "__io_write_fn"); -__static_renaming("____io_seek_fn_1218", "__io_seek_fn"); -__static_renaming("____io_close_fn_1221", "__io_close_fn"); -__static_renaming("____underflow_1222", "__underflow"); -__static_renaming("____underflow_1223", "__underflow"); -__static_renaming("____uflow_1225", "__uflow"); -__static_renaming("____uflow_1226", "__uflow"); -__static_renaming("____overflow_1228", "__overflow"); -__static_renaming("____overflow_1229", "__overflow"); -__static_renaming("___IO_getc_1234", "_IO_getc"); -__static_renaming("___IO_getc_1235", "_IO_getc"); -__static_renaming("___IO_putc_1241", "_IO_putc"); -__static_renaming("___IO_putc_1242", "_IO_putc"); -__static_renaming("___IO_feof_1247", "_IO_feof"); -__static_renaming("___IO_feof_1248", "_IO_feof"); -__static_renaming("___IO_ferror_1253", "_IO_ferror"); -__static_renaming("___IO_ferror_1254", "_IO_ferror"); -__static_renaming("___IO_peekc_locked_1259", "_IO_peekc_locked"); -__static_renaming("___IO_peekc_locked_1260", "_IO_peekc_locked"); -__static_renaming("___IO_flockfile_1262", "_IO_flockfile"); -__static_renaming("___IO_flockfile_1263", "_IO_flockfile"); -__static_renaming("___IO_funlockfile_1265", "_IO_funlockfile"); -__static_renaming("___IO_funlockfile_1266", "_IO_funlockfile"); -__static_renaming("___IO_ftrylockfile_1268", "_IO_ftrylockfile"); -__static_renaming("___IO_ftrylockfile_1269", "_IO_ftrylockfile"); -__static_renaming("___IO_vfscanf_1271", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_1273", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_1277", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_1278", "_IO_vfscanf"); -__static_renaming("___IO_vfprintf_1280", "_IO_vfprintf"); -__static_renaming("___IO_vfprintf_1282", "_IO_vfprintf"); -__static_renaming("___IO_vfprintf_1286", "_IO_vfprintf"); -__static_renaming("___IO_padn_1287", "_IO_padn"); -__static_renaming("___IO_padn_1288", "_IO_padn"); -__static_renaming("___IO_sgetn_1291", "_IO_sgetn"); -__static_renaming("___IO_sgetn_1292", "_IO_sgetn"); -__static_renaming("___IO_seekoff_1294", "_IO_seekoff"); -__static_renaming("___IO_seekoff_1295", "_IO_seekoff"); -__static_renaming("___IO_seekpos_1298", "_IO_seekpos"); -__static_renaming("___IO_seekpos_1299", "_IO_seekpos"); -__static_renaming("___IO_free_backup_area_1302", "_IO_free_backup_area"); -__static_renaming("___IO_free_backup_area_1303", "_IO_free_backup_area"); -__static_renaming("__va_list_1305", "va_list"); -__static_renaming("__fpos_t_1307", "fpos_t"); -__static_renaming("__fpos_t_1309", "fpos_t"); -__static_renaming("__stdin_1311", "stdin"); -__static_renaming("__stdin_1312", "stdin"); -__static_renaming("__stdout_1314", "stdout"); -__static_renaming("__stdout_1315", "stdout"); -__static_renaming("__stderr_1317", "stderr"); -__static_renaming("__stderr_1318", "stderr"); -__static_renaming("__remove_1321", "remove"); -__static_renaming("__rename_1324", "rename"); -__static_renaming("__renameat_1329", "renameat"); -__static_renaming("__tmpfile_1330", "tmpfile"); -__static_renaming("__tmpfile_1332", "tmpfile"); -__static_renaming("__tmpfile_1334", "tmpfile"); -__static_renaming("__tmpfile_1336", "tmpfile"); -__static_renaming("__tmpnam_1339", "tmpnam"); -__static_renaming("__tmpnam_1340", "tmpnam"); -__static_renaming("__tmpnam_r_1342", "tmpnam_r"); -__static_renaming("__tmpnam_r_1343", "tmpnam_r"); -__static_renaming("__tempnam_1346", "tempnam"); -__static_renaming("__tempnam_1347", "tempnam"); -__static_renaming("__fclose_1350", "fclose"); -__static_renaming("__fclose_1352", "fclose"); -__static_renaming("__fflush_1356", "fflush"); -__static_renaming("__fflush_unlocked_1360", "fflush_unlocked"); -__static_renaming("__fopen_1364", "fopen"); -__static_renaming("__fopen_1366", "fopen"); -__static_renaming("__fopen_1374", "fopen"); -__static_renaming("__fopen_1376", "fopen"); -__static_renaming("__freopen_1382", "freopen"); -__static_renaming("__freopen_1384", "freopen"); -__static_renaming("__freopen_1386", "freopen"); -__static_renaming("__freopen_1388", "freopen"); -__static_renaming("__fdopen_1392", "fdopen"); -__static_renaming("__fdopen_1394", "fdopen"); -__static_renaming("__fmemopen_1399", "fmemopen"); -__static_renaming("__fmemopen_1401", "fmemopen"); -__static_renaming("__open_memstream_1405", "open_memstream"); -__static_renaming("__open_memstream_1407", "open_memstream"); -__static_renaming("__setbuf_1412", "setbuf"); -__static_renaming("__setbuf_1414", "setbuf"); -__static_renaming("__setvbuf_1421", "setvbuf"); -__static_renaming("__setbuffer_1427", "setbuffer"); -__static_renaming("__setlinebuf_1431", "setlinebuf"); -__static_renaming("__fprintf_1436", "fprintf"); -__static_renaming("__fprintf_1438", "fprintf"); -__static_renaming("__printf_1441", "printf"); -__static_renaming("__sprintf_1444", "sprintf"); -__static_renaming("__vfprintf_1450", "vfprintf"); -__static_renaming("__vprintf_1457", "vprintf"); -__static_renaming("__vsprintf_1463", "vsprintf"); -__static_renaming("__snprintf_1468", "snprintf"); -__static_renaming("__vsnprintf_1474", "vsnprintf"); -__static_renaming("__vdprintf_1480", "vdprintf"); -__static_renaming("__dprintf_1484", "dprintf"); -__static_renaming("__fscanf_1488", "fscanf"); -__static_renaming("__fscanf_1490", "fscanf"); -__static_renaming("__fscanf_1492", "fscanf"); -__static_renaming("__fscanf_1494", "fscanf"); -__static_renaming("__scanf_1497", "scanf"); -__static_renaming("__scanf_1498", "scanf"); -__static_renaming("__sscanf_1501", "sscanf"); -__static_renaming("__vfscanf_1529", "vfscanf"); -__static_renaming("__vfscanf_1533", "vfscanf"); -__static_renaming("__vscanf_1540", "vscanf"); -__static_renaming("__vscanf_1542", "vscanf"); -__static_renaming("__vsscanf_1548", "vsscanf"); -__static_renaming("__fgetc_1583", "fgetc"); -__static_renaming("__getc_1587", "getc"); -__static_renaming("__getchar_1589", "getchar"); -__static_renaming("__getc_unlocked_1592", "getc_unlocked"); -__static_renaming("__getchar_unlocked_1594", "getchar_unlocked"); -__static_renaming("__fgetc_unlocked_1597", "fgetc_unlocked"); -__static_renaming("__fputc_1602", "fputc"); -__static_renaming("__fputc_1604", "fputc"); -__static_renaming("__putc_1609", "putc"); -__static_renaming("__putchar_1612", "putchar"); -__static_renaming("__fputc_unlocked_1616", "fputc_unlocked"); -__static_renaming("__putc_unlocked_1621", "putc_unlocked"); -__static_renaming("__putchar_unlocked_1624", "putchar_unlocked"); -__static_renaming("__getw_1627", "getw"); -__static_renaming("__putw_1632", "putw"); -__static_renaming("__fgets_1638", "fgets"); -__static_renaming("__fgets_1640", "fgets"); -__static_renaming("__fgets_1642", "fgets"); -__static_renaming("__fgets_1644", "fgets"); -__static_renaming("____getdelim_1651", "__getdelim"); -__static_renaming("____getdelim_1655", "__getdelim"); -__static_renaming("__getdelim_1664", "getdelim"); -__static_renaming("__getdelim_1668", "getdelim"); -__static_renaming("__getline_1676", "getline"); -__static_renaming("__getline_1680", "getline"); -__static_renaming("__fputs_1687", "fputs"); -__static_renaming("__fputs_1689", "fputs"); -__static_renaming("__puts_1692", "puts"); -__static_renaming("__ungetc_1696", "ungetc"); -__static_renaming("__fseek_1734", "fseek"); -__static_renaming("__fseek_1736", "fseek"); -__static_renaming("__ftell_1740", "ftell"); -__static_renaming("__ftell_1742", "ftell"); -__static_renaming("__rewind_1746", "rewind"); -__static_renaming("__fseeko_1753", "fseeko"); -__static_renaming("__fseeko_1764", "fseeko"); -__static_renaming("__ftello_1770", "ftello"); -__static_renaming("__ftello_1774", "ftello"); -__static_renaming("__ftello_1778", "ftello"); -__static_renaming("__fgetpos_1786", "fgetpos"); -__static_renaming("__fgetpos_1798", "fgetpos"); -__static_renaming("__fsetpos_1806", "fsetpos"); -__static_renaming("__fsetpos_1810", "fsetpos"); -__static_renaming("__clearerr_1816", "clearerr"); -__static_renaming("__feof_1820", "feof"); -__static_renaming("__feof_1822", "feof"); -__static_renaming("__ferror_1826", "ferror"); -__static_renaming("__ferror_1828", "ferror"); -__static_renaming("__clearerr_unlocked_1832", "clearerr_unlocked"); -__static_renaming("__feof_unlocked_1836", "feof_unlocked"); -__static_renaming("__feof_unlocked_1838", "feof_unlocked"); -__static_renaming("__ferror_unlocked_1842", "ferror_unlocked"); -__static_renaming("__ferror_unlocked_1844", "ferror_unlocked"); -__static_renaming("__perror_1847", "perror"); -__static_renaming("__perror_1848", "perror"); -__static_renaming("__sys_nerr_1849", "sys_nerr"); -__static_renaming("__sys_errlist_1850", "sys_errlist"); -__static_renaming("__fileno_1853", "fileno"); -__static_renaming("__fileno_1855", "fileno"); -__static_renaming("__fileno_unlocked_1859", "fileno_unlocked"); -__static_renaming("__fileno_unlocked_1861", "fileno_unlocked"); -__static_renaming("__popen_1865", "popen"); -__static_renaming("__popen_1867", "popen"); -__static_renaming("__pclose_1871", "pclose"); -__static_renaming("__ctermid_1874", "ctermid"); -__static_renaming("__flockfile_1877", "flockfile"); -__static_renaming("__ftrylockfile_1881", "ftrylockfile"); -__static_renaming("__ftrylockfile_1883", "ftrylockfile"); -__static_renaming("__funlockfile_1887", "funlockfile"); -__static_renaming("____sprintf_chk_1919", "__sprintf_chk"); -__static_renaming("____vsprintf_chk_1926", "__vsprintf_chk"); -__static_renaming("____snprintf_chk_1940", "__snprintf_chk"); -__static_renaming("____vsnprintf_chk_1948", "__vsnprintf_chk"); -__static_renaming("____fprintf_chk_1963", "__fprintf_chk"); -__static_renaming("____printf_chk_1967", "__printf_chk"); -__static_renaming("____vfprintf_chk_1974", "__vfprintf_chk"); -__static_renaming("____vprintf_chk_1982", "__vprintf_chk"); -__static_renaming("____dprintf_chk_2004", "__dprintf_chk"); -__static_renaming("____vdprintf_chk_2010", "__vdprintf_chk"); -__static_renaming("____fgets_chk_2024", "__fgets_chk"); -__static_renaming("____fgets_chk_2026", "__fgets_chk"); -__static_renaming("____fgets_chk_2028", "__fgets_chk"); -__static_renaming("____fgets_alias_2034", "__fgets_alias"); -__static_renaming("____fgets_chk_warn_2041", "__fgets_chk_warn"); -__static_renaming("____cnt_2107", "__cnt"); -__static_renaming("____cptr_2108", "__cptr"); -__static_renaming("__ptrdiff_t_2112", "ptrdiff_t"); -__static_renaming("__wchar_t_2113", "wchar_t"); -__static_renaming("__max_align_t_2118", "max_align_t"); -__static_renaming("__FILE_2119", "FILE"); -__static_renaming("____mbstate_t_2128", "__mbstate_t"); -__static_renaming("___G_fpos_t_2136", "_G_fpos_t"); -__static_renaming("___G_fpos64_t_2144", "_G_fpos64_t"); -__static_renaming("____gnuc_va_list_2145", "__gnuc_va_list"); -__static_renaming("___IO_lock_t_2146", "_IO_lock_t"); -__static_renaming("___IO_FILE_2228", "_IO_FILE"); -__static_renaming("___IO_FILE_2229", "_IO_FILE"); -__static_renaming("___IO_2_1_stdin__2231", "_IO_2_1_stdin_"); -__static_renaming("___IO_2_1_stdout__2232", "_IO_2_1_stdout_"); -__static_renaming("___IO_2_1_stderr__2233", "_IO_2_1_stderr_"); -__static_renaming("____io_read_fn_2237", "__io_read_fn"); -__static_renaming("____io_write_fn_2242", "__io_write_fn"); -__static_renaming("____io_seek_fn_2248", "__io_seek_fn"); -__static_renaming("____io_close_fn_2251", "__io_close_fn"); -__static_renaming("____underflow_2252", "__underflow"); -__static_renaming("____underflow_2253", "__underflow"); -__static_renaming("____uflow_2255", "__uflow"); -__static_renaming("____uflow_2256", "__uflow"); -__static_renaming("____overflow_2258", "__overflow"); -__static_renaming("____overflow_2259", "__overflow"); -__static_renaming("___IO_getc_2264", "_IO_getc"); -__static_renaming("___IO_getc_2265", "_IO_getc"); -__static_renaming("___IO_putc_2271", "_IO_putc"); -__static_renaming("___IO_putc_2272", "_IO_putc"); -__static_renaming("___IO_feof_2277", "_IO_feof"); -__static_renaming("___IO_feof_2278", "_IO_feof"); -__static_renaming("___IO_ferror_2283", "_IO_ferror"); -__static_renaming("___IO_ferror_2284", "_IO_ferror"); -__static_renaming("___IO_peekc_locked_2289", "_IO_peekc_locked"); -__static_renaming("___IO_peekc_locked_2290", "_IO_peekc_locked"); -__static_renaming("___IO_flockfile_2292", "_IO_flockfile"); -__static_renaming("___IO_flockfile_2293", "_IO_flockfile"); -__static_renaming("___IO_funlockfile_2295", "_IO_funlockfile"); -__static_renaming("___IO_funlockfile_2296", "_IO_funlockfile"); -__static_renaming("___IO_ftrylockfile_2298", "_IO_ftrylockfile"); -__static_renaming("___IO_ftrylockfile_2299", "_IO_ftrylockfile"); -__static_renaming("___IO_vfscanf_2301", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_2303", "_IO_vfscanf"); -__static_renaming("___IO_vfprintf_2310", "_IO_vfprintf"); -__static_renaming("___IO_vfprintf_2312", "_IO_vfprintf"); -__static_renaming("___IO_padn_2317", "_IO_padn"); -__static_renaming("___IO_padn_2318", "_IO_padn"); -__static_renaming("___IO_sgetn_2321", "_IO_sgetn"); -__static_renaming("___IO_sgetn_2322", "_IO_sgetn"); -__static_renaming("___IO_seekoff_2324", "_IO_seekoff"); -__static_renaming("___IO_seekoff_2325", "_IO_seekoff"); -__static_renaming("___IO_seekpos_2328", "_IO_seekpos"); -__static_renaming("___IO_seekpos_2329", "_IO_seekpos"); -__static_renaming("___IO_free_backup_area_2332", "_IO_free_backup_area"); -__static_renaming("___IO_free_backup_area_2333", "_IO_free_backup_area"); -__static_renaming("__va_list_2335", "va_list"); -__static_renaming("__fpos_t_2337", "fpos_t"); -__static_renaming("__fpos_t_2339", "fpos_t"); -__static_renaming("__stdin_2341", "stdin"); -__static_renaming("__stdin_2342", "stdin"); -__static_renaming("__stdout_2344", "stdout"); -__static_renaming("__stdout_2345", "stdout"); -__static_renaming("__stderr_2347", "stderr"); -__static_renaming("__stderr_2348", "stderr"); -__static_renaming("__remove_2351", "remove"); -__static_renaming("__rename_2354", "rename"); -__static_renaming("__renameat_2359", "renameat"); -__static_renaming("__tmpfile_2360", "tmpfile"); -__static_renaming("__tmpfile_2362", "tmpfile"); -__static_renaming("__tmpfile_2364", "tmpfile"); -__static_renaming("__tmpfile_2366", "tmpfile"); -__static_renaming("__tmpnam_2369", "tmpnam"); -__static_renaming("__tmpnam_2370", "tmpnam"); -__static_renaming("__tmpnam_r_2372", "tmpnam_r"); -__static_renaming("__tmpnam_r_2373", "tmpnam_r"); -__static_renaming("__tempnam_2376", "tempnam"); -__static_renaming("__tempnam_2377", "tempnam"); -__static_renaming("__fclose_2380", "fclose"); -__static_renaming("__fclose_2382", "fclose"); -__static_renaming("__fflush_2386", "fflush"); -__static_renaming("__fflush_unlocked_2390", "fflush_unlocked"); -__static_renaming("__fopen_2394", "fopen"); -__static_renaming("__fopen_2396", "fopen"); -__static_renaming("__fopen_2404", "fopen"); -__static_renaming("__fopen_2406", "fopen"); -__static_renaming("__freopen_2412", "freopen"); -__static_renaming("__freopen_2414", "freopen"); -__static_renaming("__freopen_2416", "freopen"); -__static_renaming("__freopen_2418", "freopen"); -__static_renaming("__fdopen_2422", "fdopen"); -__static_renaming("__fdopen_2424", "fdopen"); -__static_renaming("__fmemopen_2429", "fmemopen"); -__static_renaming("__fmemopen_2431", "fmemopen"); -__static_renaming("__open_memstream_2435", "open_memstream"); -__static_renaming("__open_memstream_2437", "open_memstream"); -__static_renaming("__setbuf_2442", "setbuf"); -__static_renaming("__setbuf_2444", "setbuf"); -__static_renaming("__setvbuf_2451", "setvbuf"); -__static_renaming("__setbuffer_2457", "setbuffer"); -__static_renaming("__setlinebuf_2461", "setlinebuf"); -__static_renaming("__fprintf_2466", "fprintf"); -__static_renaming("__fprintf_2468", "fprintf"); -__static_renaming("__printf_2471", "printf"); -__static_renaming("__sprintf_2474", "sprintf"); -__static_renaming("__vfprintf_2480", "vfprintf"); -__static_renaming("__vprintf_2487", "vprintf"); -__static_renaming("__vsprintf_2493", "vsprintf"); -__static_renaming("__snprintf_2498", "snprintf"); -__static_renaming("__vsnprintf_2504", "vsnprintf"); -__static_renaming("__vdprintf_2510", "vdprintf"); -__static_renaming("__dprintf_2514", "dprintf"); -__static_renaming("__fscanf_2518", "fscanf"); -__static_renaming("__fscanf_2520", "fscanf"); -__static_renaming("__fscanf_2522", "fscanf"); -__static_renaming("__fscanf_2524", "fscanf"); -__static_renaming("__scanf_2527", "scanf"); -__static_renaming("__scanf_2528", "scanf"); -__static_renaming("__sscanf_2531", "sscanf"); -__static_renaming("__vfscanf_2559", "vfscanf"); -__static_renaming("__vfscanf_2563", "vfscanf"); -__static_renaming("__vscanf_2570", "vscanf"); -__static_renaming("__vscanf_2572", "vscanf"); -__static_renaming("__vsscanf_2578", "vsscanf"); -__static_renaming("__fgetc_2613", "fgetc"); -__static_renaming("__getc_2617", "getc"); -__static_renaming("__getchar_2619", "getchar"); -__static_renaming("__getc_unlocked_2622", "getc_unlocked"); -__static_renaming("__getchar_unlocked_2624", "getchar_unlocked"); -__static_renaming("__fgetc_unlocked_2627", "fgetc_unlocked"); -__static_renaming("__fputc_2632", "fputc"); -__static_renaming("__fputc_2634", "fputc"); -__static_renaming("__putc_2639", "putc"); -__static_renaming("__putchar_2642", "putchar"); -__static_renaming("__fputc_unlocked_2646", "fputc_unlocked"); -__static_renaming("__putc_unlocked_2651", "putc_unlocked"); -__static_renaming("__putchar_unlocked_2654", "putchar_unlocked"); -__static_renaming("__getw_2657", "getw"); -__static_renaming("__putw_2662", "putw"); -__static_renaming("__fgets_2668", "fgets"); -__static_renaming("__fgets_2670", "fgets"); -__static_renaming("__fgets_2672", "fgets"); -__static_renaming("__fgets_2674", "fgets"); -__static_renaming("____getdelim_2681", "__getdelim"); -__static_renaming("____getdelim_2685", "__getdelim"); -__static_renaming("__getdelim_2694", "getdelim"); -__static_renaming("__getdelim_2698", "getdelim"); -__static_renaming("__getline_2706", "getline"); -__static_renaming("__getline_2710", "getline"); -__static_renaming("__fputs_2717", "fputs"); -__static_renaming("__fputs_2719", "fputs"); -__static_renaming("__puts_2722", "puts"); -__static_renaming("__ungetc_2726", "ungetc"); -__static_renaming("__fseek_2764", "fseek"); -__static_renaming("__fseek_2766", "fseek"); -__static_renaming("__ftell_2770", "ftell"); -__static_renaming("__ftell_2772", "ftell"); -__static_renaming("__rewind_2776", "rewind"); -__static_renaming("__fseeko_2783", "fseeko"); -__static_renaming("__fseeko_2794", "fseeko"); -__static_renaming("__ftello_2800", "ftello"); -__static_renaming("__ftello_2804", "ftello"); -__static_renaming("__ftello_2808", "ftello"); -__static_renaming("__fgetpos_2816", "fgetpos"); -__static_renaming("__fgetpos_2828", "fgetpos"); -__static_renaming("__fsetpos_2836", "fsetpos"); -__static_renaming("__fsetpos_2840", "fsetpos"); -__static_renaming("__clearerr_2846", "clearerr"); -__static_renaming("__feof_2850", "feof"); -__static_renaming("__feof_2852", "feof"); -__static_renaming("__ferror_2856", "ferror"); -__static_renaming("__ferror_2858", "ferror"); -__static_renaming("__clearerr_unlocked_2862", "clearerr_unlocked"); -__static_renaming("__feof_unlocked_2866", "feof_unlocked"); -__static_renaming("__feof_unlocked_2868", "feof_unlocked"); -__static_renaming("__ferror_unlocked_2872", "ferror_unlocked"); -__static_renaming("__ferror_unlocked_2874", "ferror_unlocked"); -__static_renaming("__perror_2877", "perror"); -__static_renaming("__perror_2878", "perror"); -__static_renaming("__sys_nerr_2879", "sys_nerr"); -__static_renaming("__sys_errlist_2880", "sys_errlist"); -__static_renaming("__fileno_2883", "fileno"); -__static_renaming("__fileno_2885", "fileno"); -__static_renaming("__fileno_unlocked_2889", "fileno_unlocked"); -__static_renaming("__fileno_unlocked_2891", "fileno_unlocked"); -__static_renaming("__popen_2895", "popen"); -__static_renaming("__popen_2897", "popen"); -__static_renaming("__pclose_2901", "pclose"); -__static_renaming("__ctermid_2904", "ctermid"); -__static_renaming("__flockfile_2907", "flockfile"); -__static_renaming("__ftrylockfile_2911", "ftrylockfile"); -__static_renaming("__ftrylockfile_2913", "ftrylockfile"); -__static_renaming("__funlockfile_2917", "funlockfile"); -__static_renaming("____sprintf_chk_2949", "__sprintf_chk"); -__static_renaming("____vsprintf_chk_2956", "__vsprintf_chk"); -__static_renaming("____snprintf_chk_2970", "__snprintf_chk"); -__static_renaming("____vsnprintf_chk_2978", "__vsnprintf_chk"); -__static_renaming("____fprintf_chk_2993", "__fprintf_chk"); -__static_renaming("____printf_chk_2997", "__printf_chk"); -__static_renaming("____vfprintf_chk_3004", "__vfprintf_chk"); -__static_renaming("____vprintf_chk_3012", "__vprintf_chk"); -__static_renaming("____dprintf_chk_3034", "__dprintf_chk"); -__static_renaming("____vdprintf_chk_3040", "__vdprintf_chk"); -__static_renaming("____fgets_chk_3054", "__fgets_chk"); -__static_renaming("____fgets_chk_3056", "__fgets_chk"); -__static_renaming("____fgets_chk_3058", "__fgets_chk"); -__static_renaming("____fgets_alias_3064", "__fgets_alias"); -__static_renaming("____fgets_chk_warn_3071", "__fgets_chk_warn"); -__static_renaming("____cnt_3137", "__cnt"); -__static_renaming("____cptr_3138", "__cptr"); -__static_renaming("__malloc_3143", "malloc"); -__static_renaming("__malloc_3144", "malloc"); -__static_renaming("__malloc_3145", "malloc"); -__static_renaming("__malloc_3146", "malloc"); -__static_renaming("__malloc_3147", "malloc"); -__static_renaming("__malloc_3148", "malloc"); -__static_renaming("__calloc_3151", "calloc"); -__static_renaming("__calloc_3152", "calloc"); -__static_renaming("__realloc_3155", "realloc"); -__static_renaming("__free_3157", "free"); -__static_renaming("__cfree_3159", "cfree"); -__static_renaming("__memalign_3162", "memalign"); -__static_renaming("__memalign_3163", "memalign"); -__static_renaming("__valloc_3165", "valloc"); -__static_renaming("__valloc_3166", "valloc"); -__static_renaming("__pvalloc_3168", "pvalloc"); -__static_renaming("__pvalloc_3169", "pvalloc"); -__static_renaming("____morecore_3173", "__morecore"); -__static_renaming("____morecore_3174", "__morecore"); -__static_renaming("____default_morecore_3179", "__default_morecore"); -__static_renaming("____default_morecore_3180", "__default_morecore"); -__static_renaming("__mallinfo_3192", "mallinfo"); -__static_renaming("__mallopt_3195", "mallopt"); -__static_renaming("__malloc_trim_3197", "malloc_trim"); -__static_renaming("__malloc_usable_size_3199", "malloc_usable_size"); -__static_renaming("__malloc_stats_3200", "malloc_stats"); -__static_renaming("__malloc_info_3205", "malloc_info"); -__static_renaming("__malloc_info_3206", "malloc_info"); -__static_renaming("__malloc_get_state_3208", "malloc_get_state"); -__static_renaming("__malloc_set_state_3210", "malloc_set_state"); -__static_renaming("____malloc_initialize_hook_3211", "__malloc_initialize_hook"); -__static_renaming("____free_hook_3213", "__free_hook"); -__static_renaming("____malloc_hook_3215", "__malloc_hook"); -__static_renaming("____realloc_hook_3218", "__realloc_hook"); -__static_renaming("____memalign_hook_3221", "__memalign_hook"); -__static_renaming("____after_morecore_hook_3222", "__after_morecore_hook"); -__static_renaming("____malloc_check_init_3223", "__malloc_check_init"); -__static_renaming("__wchar_t_3224", "wchar_t"); -__static_renaming("__idtype_t_3230", "idtype_t"); -__static_renaming("____bswap_32_3232", "__bswap_32"); -__static_renaming("____bswap_64_3235", "__bswap_64"); -__static_renaming("____WAIT_STATUS_3255", "__WAIT_STATUS"); -__static_renaming("__div_t_3260", "div_t"); -__static_renaming("__ldiv_t_3265", "ldiv_t"); -__static_renaming("__lldiv_t_3270", "lldiv_t"); -__static_renaming("____ctype_get_mb_cur_max_3271", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_3272", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_3273", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_3274", "__ctype_get_mb_cur_max"); -__static_renaming("__atof_3276", "atof"); -__static_renaming("__atof_3277", "atof"); -__static_renaming("__atoi_3279", "atoi"); -__static_renaming("__atoi_3280", "atoi"); -__static_renaming("__atol_3282", "atol"); -__static_renaming("__atol_3283", "atol"); -__static_renaming("__atoll_3285", "atoll"); -__static_renaming("__atoll_3286", "atoll"); -__static_renaming("__strtod_3289", "strtod"); -__static_renaming("__strtof_3292", "strtof"); -__static_renaming("__strtold_3295", "strtold"); -__static_renaming("__strtol_3299", "strtol"); -__static_renaming("__strtoul_3303", "strtoul"); -__static_renaming("__strtoq_3307", "strtoq"); -__static_renaming("__strtouq_3311", "strtouq"); -__static_renaming("__strtoll_3315", "strtoll"); -__static_renaming("__strtoll_3316", "strtoll"); -__static_renaming("__strtoull_3320", "strtoull"); -__static_renaming("__l64a_3325", "l64a"); -__static_renaming("__l64a_3326", "l64a"); -__static_renaming("__a64l_3328", "a64l"); -__static_renaming("__a64l_3329", "a64l"); -__static_renaming("__u_char_3330", "u_char"); -__static_renaming("__u_short_3331", "u_short"); -__static_renaming("__u_int_3332", "u_int"); -__static_renaming("__u_long_3333", "u_long"); -__static_renaming("__quad_t_3334", "quad_t"); -__static_renaming("__u_quad_t_3335", "u_quad_t"); -__static_renaming("__fsid_t_3336", "fsid_t"); -__static_renaming("__loff_t_3338", "loff_t"); -__static_renaming("__ino_t_3340", "ino_t"); -__static_renaming("__ino_t_3342", "ino_t"); -__static_renaming("__dev_t_3344", "dev_t"); -__static_renaming("__mode_t_3346", "mode_t"); -__static_renaming("__mode_t_3348", "mode_t"); -__static_renaming("__nlink_t_3350", "nlink_t"); -__static_renaming("__id_t_3352", "id_t"); -__static_renaming("__daddr_t_3354", "daddr_t"); -__static_renaming("__caddr_t_3356", "caddr_t"); -__static_renaming("__key_t_3357", "key_t"); -__static_renaming("__key_t_3359", "key_t"); -__static_renaming("__clock_t_3361", "clock_t"); -__static_renaming("__time_t_3363", "time_t"); -__static_renaming("__clockid_t_3365", "clockid_t"); -__static_renaming("__timer_t_3367", "timer_t"); -__static_renaming("__ulong_3369", "ulong"); -__static_renaming("__ulong_3370", "ulong"); -__static_renaming("__ulong_3371", "ulong"); -__static_renaming("__ushort_3372", "ushort"); -__static_renaming("__uint_3373", "uint"); -__static_renaming("__int8_t_3374", "int8_t"); -__static_renaming("__int16_t_3375", "int16_t"); -__static_renaming("__int32_t_3376", "int32_t"); -__static_renaming("__int64_t_3377", "int64_t"); -__static_renaming("__u_int8_t_3378", "u_int8_t"); -__static_renaming("__u_int16_t_3379", "u_int16_t"); -__static_renaming("__u_int32_t_3380", "u_int32_t"); -__static_renaming("__u_int64_t_3381", "u_int64_t"); -__static_renaming("__register_t_3382", "register_t"); -__static_renaming("____bswap_32_3384", "__bswap_32"); -__static_renaming("____bswap_64_3387", "__bswap_64"); -__static_renaming("____sig_atomic_t_3388", "__sig_atomic_t"); -__static_renaming("____sigset_t_3392", "__sigset_t"); -__static_renaming("__sigset_t_3393", "sigset_t"); -__static_renaming("__suseconds_t_3406", "suseconds_t"); -__static_renaming("____fd_mask_3408", "__fd_mask"); -__static_renaming("____fd_mask_3409", "__fd_mask"); -__static_renaming("__fd_set_3417", "fd_set"); -__static_renaming("__fd_mask_3418", "fd_mask"); -__static_renaming("__fd_mask_3419", "fd_mask"); -__static_renaming("__select_3431", "select"); -__static_renaming("__select_3432", "select"); -__static_renaming("__pselect_3447", "pselect"); -__static_renaming("__pselect_3448", "pselect"); -__static_renaming("____fdelt_chk_3452", "__fdelt_chk"); -__static_renaming("____fdelt_warn_3454", "__fdelt_warn"); -__static_renaming("__gnu_dev_major_3456", "gnu_dev_major"); -__static_renaming("__gnu_dev_major_3457", "gnu_dev_major"); -__static_renaming("__gnu_dev_minor_3459", "gnu_dev_minor"); -__static_renaming("__gnu_dev_makedev_3462", "gnu_dev_makedev"); -__static_renaming("__blksize_t_3467", "blksize_t"); -__static_renaming("__blkcnt_t_3469", "blkcnt_t"); -__static_renaming("__fsblkcnt_t_3471", "fsblkcnt_t"); -__static_renaming("__blkcnt_t_3473", "blkcnt_t"); -__static_renaming("__fsblkcnt_t_3475", "fsblkcnt_t"); -__static_renaming("__fsfilcnt_t_3477", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_3479", "fsfilcnt_t"); -__static_renaming("__pthread_t_3481", "pthread_t"); -__static_renaming("__pthread_attr_t_3485", "pthread_attr_t"); -__static_renaming("____pthread_list_t_3490", "__pthread_list_t"); -__static_renaming("____pthread_list_t_3491", "__pthread_list_t"); -__static_renaming("__pthread_mutex_t_3507", "pthread_mutex_t"); -__static_renaming("__pthread_mutexattr_t_3512", "pthread_mutexattr_t"); -__static_renaming("__rand_3513", "rand"); -__static_renaming("__srand_3515", "srand"); -__static_renaming("__rand_r_3517", "rand_r"); -__static_renaming("__drand48_3518", "drand48"); -__static_renaming("__erand48_3520", "erand48"); -__static_renaming("__lrand48_3521", "lrand48"); -__static_renaming("__nrand48_3523", "nrand48"); -__static_renaming("__mrand48_3524", "mrand48"); -__static_renaming("__jrand48_3526", "jrand48"); -__static_renaming("__srand48_3528", "srand48"); -__static_renaming("__seed48_3530", "seed48"); -__static_renaming("__lcong48_3532", "lcong48"); -__static_renaming("__alloca_3565", "alloca"); -__static_renaming("__posix_memalign_3574", "posix_memalign"); -__static_renaming("__posix_memalign_3575", "posix_memalign"); -__static_renaming("__aligned_alloc_3578", "aligned_alloc"); -__static_renaming("__aligned_alloc_3579", "aligned_alloc"); -__static_renaming("__aligned_alloc_3580", "aligned_alloc"); -__static_renaming("__aligned_alloc_3581", "aligned_alloc"); -__static_renaming("__abort_3582", "abort"); -__static_renaming("__atexit_3584", "atexit"); -__static_renaming("__at_quick_exit_3586", "at_quick_exit"); -__static_renaming("__on_exit_3591", "on_exit"); -__static_renaming("__exit_3593", "exit"); -__static_renaming("__exit_3594", "exit"); -__static_renaming("__quick_exit_3596", "quick_exit"); -__static_renaming("___Exit_3598", "_Exit"); -__static_renaming("__getenv_3600", "getenv"); -__static_renaming("__getenv_3601", "getenv"); -__static_renaming("__putenv_3603", "putenv"); -__static_renaming("__setenv_3607", "setenv"); -__static_renaming("__unsetenv_3609", "unsetenv"); -__static_renaming("__clearenv_3610", "clearenv"); -__static_renaming("__mktemp_3612", "mktemp"); -__static_renaming("__mkstemp_3615", "mkstemp"); -__static_renaming("__mkstemp_3616", "mkstemp"); -__static_renaming("__mkstemp_3617", "mkstemp"); -__static_renaming("__mkstemp_3618", "mkstemp"); -__static_renaming("__mkstemps_3623", "mkstemps"); -__static_renaming("__mkstemps_3624", "mkstemps"); -__static_renaming("__mkstemps_3625", "mkstemps"); -__static_renaming("__mkstemps_3626", "mkstemps"); -__static_renaming("__mkdtemp_3628", "mkdtemp"); -__static_renaming("__mkdtemp_3629", "mkdtemp"); -__static_renaming("__system_3631", "system"); -__static_renaming("__system_3632", "system"); -__static_renaming("__system_3633", "system"); -__static_renaming("__system_3634", "system"); -__static_renaming("__realpath_3637", "realpath"); -__static_renaming("__realpath_3638", "realpath"); -__static_renaming("____compar_fn_t_3639", "__compar_fn_t"); -__static_renaming("__bsearch_3647", "bsearch"); -__static_renaming("__bsearch_3649", "bsearch"); -__static_renaming("____l_3656", "__l"); -__static_renaming("____u_3657", "__u"); -__static_renaming("____idx_3658", "__idx"); -__static_renaming("____p_3659", "__p"); -__static_renaming("____comparison_3660", "__comparison"); -__static_renaming("__qsort_3668", "qsort"); -__static_renaming("__qsort_3670", "qsort"); -__static_renaming("__abs_3673", "abs"); -__static_renaming("__abs_3674", "abs"); -__static_renaming("__labs_3676", "labs"); -__static_renaming("__labs_3677", "labs"); -__static_renaming("__llabs_3679", "llabs"); -__static_renaming("__llabs_3680", "llabs"); -__static_renaming("__div_3683", "div"); -__static_renaming("__div_3684", "div"); -__static_renaming("__ldiv_3687", "ldiv"); -__static_renaming("__ldiv_3689", "ldiv"); -__static_renaming("__lldiv_3693", "lldiv"); -__static_renaming("__lldiv_3695", "lldiv"); -__static_renaming("__ecvt_3701", "ecvt"); -__static_renaming("__ecvt_3702", "ecvt"); -__static_renaming("__fcvt_3707", "fcvt"); -__static_renaming("__fcvt_3708", "fcvt"); -__static_renaming("__gcvt_3712", "gcvt"); -__static_renaming("__gcvt_3713", "gcvt"); -__static_renaming("__qecvt_3718", "qecvt"); -__static_renaming("__qecvt_3719", "qecvt"); -__static_renaming("__qfcvt_3724", "qfcvt"); -__static_renaming("__qfcvt_3725", "qfcvt"); -__static_renaming("__qgcvt_3729", "qgcvt"); -__static_renaming("__qgcvt_3730", "qgcvt"); -__static_renaming("__ecvt_r_3737", "ecvt_r"); -__static_renaming("__fcvt_r_3744", "fcvt_r"); -__static_renaming("__qecvt_r_3751", "qecvt_r"); -__static_renaming("__qfcvt_r_3758", "qfcvt_r"); -__static_renaming("__mblen_3761", "mblen"); -__static_renaming("__mblen_3762", "mblen"); -__static_renaming("__mbtowc_3767", "mbtowc"); -__static_renaming("__mbtowc_3768", "mbtowc"); -__static_renaming("__wctomb_3772", "wctomb"); -__static_renaming("__wctomb_3773", "wctomb"); -__static_renaming("__mbstowcs_3778", "mbstowcs"); -__static_renaming("__mbstowcs_3779", "mbstowcs"); -__static_renaming("__wcstombs_3784", "wcstombs"); -__static_renaming("__wcstombs_3785", "wcstombs"); -__static_renaming("__rpmatch_3787", "rpmatch"); -__static_renaming("__rpmatch_3788", "rpmatch"); -__static_renaming("__getsubopt_3792", "getsubopt"); -__static_renaming("__getsubopt_3793", "getsubopt"); -__static_renaming("__getloadavg_3796", "getloadavg"); -__static_renaming("____realpath_chk_3801", "__realpath_chk"); -__static_renaming("____realpath_alias_3804", "__realpath_alias"); -__static_renaming("____realpath_chk_warn_3808", "__realpath_chk_warn"); -__static_renaming("____ptsname_r_chk_3816", "__ptsname_r_chk"); -__static_renaming("____ptsname_r_alias_3820", "__ptsname_r_alias"); -__static_renaming("____ptsname_r_chk_warn_3825", "__ptsname_r_chk_warn"); -__static_renaming("____wctomb_chk_3834", "__wctomb_chk"); -__static_renaming("____wctomb_chk_3835", "__wctomb_chk"); -__static_renaming("____wctomb_alias_3839", "__wctomb_alias"); -__static_renaming("____wctomb_alias_3840", "__wctomb_alias"); -__static_renaming("____mbstowcs_chk_3849", "__mbstowcs_chk"); -__static_renaming("____mbstowcs_chk_3850", "__mbstowcs_chk"); -__static_renaming("____mbstowcs_alias_3855", "__mbstowcs_alias"); -__static_renaming("____mbstowcs_alias_3856", "__mbstowcs_alias"); -__static_renaming("____mbstowcs_chk_warn_3862", "__mbstowcs_chk_warn"); -__static_renaming("____mbstowcs_chk_warn_3863", "__mbstowcs_chk_warn"); -__static_renaming("____wcstombs_chk_3873", "__wcstombs_chk"); -__static_renaming("____wcstombs_chk_3874", "__wcstombs_chk"); -__static_renaming("____wcstombs_alias_3879", "__wcstombs_alias"); -__static_renaming("____wcstombs_alias_3880", "__wcstombs_alias"); -__static_renaming("____wcstombs_chk_warn_3886", "__wcstombs_chk_warn"); -__static_renaming("____wcstombs_chk_warn_3887", "__wcstombs_chk_warn"); -__static_renaming("____errno_location_3892", "__errno_location"); -__static_renaming("____errno_location_3893", "__errno_location"); -__static_renaming("____errno_location_3894", "__errno_location"); -__static_renaming("__off_t_3895", "off_t"); -__static_renaming("__off_t_3897", "off_t"); -__static_renaming("__mode_t_3899", "mode_t"); -__static_renaming("__mmap_3915", "mmap"); -__static_renaming("__mmap_3917", "mmap"); -__static_renaming("__munmap_3921", "munmap"); -__static_renaming("__mprotect_3925", "mprotect"); -__static_renaming("__msync_3929", "msync"); -__static_renaming("__madvise_3933", "madvise"); -__static_renaming("__posix_madvise_3937", "posix_madvise"); -__static_renaming("__mlock_3940", "mlock"); -__static_renaming("__mlock_3941", "mlock"); -__static_renaming("__munlock_3944", "munlock"); -__static_renaming("__mlockall_3946", "mlockall"); -__static_renaming("__munlockall_3947", "munlockall"); -__static_renaming("__mincore_3951", "mincore"); -__static_renaming("__shm_open_3958", "shm_open"); -__static_renaming("__shm_open_3962", "shm_open"); -__static_renaming("__shm_unlink_3965", "shm_unlink"); -__static_renaming("__buffer_3966", "buffer"); -__static_renaming("__pagesize_3967", "pagesize"); -__static_renaming("__allocate_buffer_3968", "allocate_buffer"); -__static_renaming("__main_3992", "main"); -__static_renaming("__main_3993", "main"); - -__static_condition_renaming("__static_condition_default_51", "(defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_57", "(defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_61", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_63", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_65", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_67", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_69", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __useconds_t_defined)"); -__static_condition_renaming("__static_condition_default_71", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && (defined __useconds_t_defined)"); -__static_condition_renaming("__static_condition_default_73", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __useconds_t_defined)"); -__static_condition_renaming("__static_condition_default_96", "!(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_98", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_105", "!(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_106", "!(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_108", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_109", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_114", "!(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_115", "!(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_117", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_118", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_125", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_126", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_127", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_129", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_130", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_131", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_143", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_144", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_145", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_147", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_148", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_149", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_156", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_157", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_158", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_160", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_161", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_162", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_164", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_165", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_166", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_168", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_169", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_170", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_185", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_189", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_198", "!(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_200", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_207", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_209", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_216", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_218", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_227", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_229", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_605", "(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_607", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_609", "(defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_617", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_623", "(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_625", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_628", "(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_630", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_634", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_636", "(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_638", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_640", "(defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_642", "(defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_648", "!(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_650", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_654", "!(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_656", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_662", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_664", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_668", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_670", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_674", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_676", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_678", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_680", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_686", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_688", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_692", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_694", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_696", "(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_698", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_700", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_733", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_734", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_736", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_737", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_748", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_749", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_751", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_752", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_839", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_841", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_843", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_845", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_853", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_855", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_857", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_859", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_866", "!(defined __STRICT_ANSI__) && (defined __intptr_t_defined)"); -__static_condition_renaming("__static_condition_default_878", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined F_LOCK) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined F_LOCK)"); -__static_condition_renaming("__static_condition_default_880", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined F_LOCK)"); -__static_condition_renaming("__static_condition_default_882", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined F_LOCK) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined F_LOCK) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined F_LOCK) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined F_LOCK) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined F_LOCK) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined F_LOCK) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined F_LOCK) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined F_LOCK)"); -__static_condition_renaming("__static_condition_default_884", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined F_LOCK) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined F_LOCK) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined F_LOCK) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined F_LOCK)"); -__static_condition_renaming("__static_condition_default_892", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_893", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_898", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_899", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_905", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_906", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_910", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_911", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_917", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_918", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_923", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_924", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_930", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_931", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_935", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_936", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_943", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_944", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_950", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_951", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_958", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_959", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_964", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_965", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_980", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_987", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1012", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1017", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1023", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1027", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1102", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined ____mbstate_t_defined) || (defined _BITS_TYPESIZES_H) && !(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_1110", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined ____mbstate_t_defined) || (defined _BITS_TYPESIZES_H) && !(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_1149", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_1195", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE) || (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_1196", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_1199", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && !(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_1208", "(defined _BITS_TYPESIZES_H) && !(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_1213", "(defined _BITS_TYPESIZES_H) && !(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_1219", "(defined _BITS_TYPESIZES_H) && !(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_1224", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && !(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_1227", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && !(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_1230", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && !(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_1236", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && !(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_1243", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && !(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_1249", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && !(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_1255", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && !(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_1261", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && !(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_1264", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && !(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_1267", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && !(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_1270", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && !(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_1272", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_1274", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_1275", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_1276", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_1279", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_1281", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_1283", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_1284", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_1285", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_1289", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_1290", "(defined _BITS_TYPESIZES_H) && !(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_1293", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && !(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_1296", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_1297", "(defined _BITS_TYPESIZES_H) && !(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_1300", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_1301", "(defined _BITS_TYPESIZES_H) && !(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_1304", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && !(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_1306", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); -__static_condition_renaming("__static_condition_default_1308", "!(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined ____mbstate_t_defined) || !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_1310", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_1313", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && !(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_1316", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && !(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_1319", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && !(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_1331", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1333", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1335", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1337", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1351", "(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1353", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1357", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1361", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1365", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1367", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1375", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1377", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1383", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1385", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1387", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1389", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1393", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1395", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1400", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1402", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1406", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1408", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1413", "(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1415", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1422", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1428", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1432", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1437", "(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1439", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1451", "!(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1452", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_1453", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1458", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1464", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1475", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1481", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1489", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1491", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1493", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1495", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1506", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1508", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1509", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1511", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1513", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1514", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1517", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_1519", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_1523", "!(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_1530", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1531", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_1532", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1534", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1535", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_1536", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1541", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1543", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1549", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1556", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_1557", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1558", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_1559", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1561", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_1562", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1563", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_1564", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1569", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_1570", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1572", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_1573", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1579", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_1580", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1584", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1588", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1593", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1598", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1603", "(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1605", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1610", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1617", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1622", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1628", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1633", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1639", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1641", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1643", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1645", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1652", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1653", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1654", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1656", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1657", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1658", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1665", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1666", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1667", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1669", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1670", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1671", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1677", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1678", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1679", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1681", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1682", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1683", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1688", "(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1690", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1697", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1703", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1704", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1705", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1706", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1712", "!(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1713", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1719", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1720", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1721", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1722", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1728", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1729", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1735", "(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1737", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1741", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1743", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1747", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1754", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1755", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1756", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1765", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1766", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1767", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1771", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1772", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1773", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1775", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1776", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1777", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1779", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1780", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1781", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1787", "!(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1788", "!(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_1789", "!(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1799", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1800", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_1801", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1807", "!(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1808", "!(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_1809", "!(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1811", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1812", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_1813", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1817", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1821", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1823", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1827", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1829", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1833", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1837", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1839", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1843", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1845", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1854", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1856", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1860", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1862", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1866", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1868", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1872", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1878", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1882", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1884", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1888", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1892", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1895", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_1898", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_1903", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_1907", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_1911", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_1914", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_1927", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1934", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1949", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1958", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1964", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1975", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1976", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_1977", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1983", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1987", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1992", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1998", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1999", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_2000", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2011", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2018", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2025", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2027", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2029", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2035", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2042", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2047", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2048", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2055", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2056", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2062", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2063", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2070", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2071", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2077", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2078", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2085", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2086", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2092", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2093", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2100", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2101", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2109", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_2110", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2111", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2135", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined ____mbstate_t_defined) || (defined _BITS_TYPESIZES_H) && (defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_2143", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined ____mbstate_t_defined) || (defined _BITS_TYPESIZES_H) && (defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_2180", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_2226", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE) || (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_2227", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_2230", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && (defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_2238", "(defined _BITS_TYPESIZES_H) && (defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_2243", "(defined _BITS_TYPESIZES_H) && (defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_2249", "(defined _BITS_TYPESIZES_H) && (defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_2254", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && (defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_2257", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && (defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_2260", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && (defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_2266", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && (defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_2273", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && (defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_2279", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && (defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_2285", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && (defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_2291", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && (defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_2294", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && (defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_2297", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && (defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_2300", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && (defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_2302", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_2304", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_2305", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_2306", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_2309", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_2311", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_2313", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_2314", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_2315", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_2319", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_2320", "(defined _BITS_TYPESIZES_H) && (defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_2323", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && (defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_2326", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_2327", "(defined _BITS_TYPESIZES_H) && (defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_2330", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_2331", "(defined _BITS_TYPESIZES_H) && (defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_2334", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && (defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_2336", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); -__static_condition_renaming("__static_condition_default_2338", "!(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined ____mbstate_t_defined) || !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_2340", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_2343", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && (defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_2346", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && (defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_2349", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && (defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_2361", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2363", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2365", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2367", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2381", "(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2383", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2387", "(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2391", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2395", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2397", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2405", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2407", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2413", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2415", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2417", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2419", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2423", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2425", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2430", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2432", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2436", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2438", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2443", "(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2445", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2452", "(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2458", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2462", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2467", "(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2469", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2481", "(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2482", "(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_2483", "(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2488", "(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2494", "(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2505", "(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2511", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2519", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2521", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2523", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2525", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2536", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2538", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2539", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2541", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2543", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2544", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2547", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_2549", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_2553", "(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_2560", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2561", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_2562", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2564", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2565", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_2566", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2571", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2573", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2579", "(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2586", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_2587", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2588", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_2589", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2591", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_2592", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2593", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_2594", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2599", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_2600", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2602", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_2603", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2609", "(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_2610", "(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2614", "(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2618", "(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2623", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2628", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2633", "(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2635", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2640", "(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2647", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2652", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2658", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2663", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2669", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_renaming("____qaddr_t_51", "__qaddr_t"); +__static_renaming("____caddr_t_52", "__caddr_t"); +__static_renaming("____intptr_t_53", "__intptr_t"); +__static_renaming("____socklen_t_54", "__socklen_t"); +__static_renaming("__ssize_t_55", "ssize_t"); +__static_renaming("__ptrdiff_t_56", "ptrdiff_t"); +__static_renaming("__size_t_57", "size_t"); +__static_renaming("__gid_t_58", "gid_t"); +__static_renaming("__uid_t_59", "uid_t"); +__static_renaming("__off_t_60", "off_t"); +__static_renaming("__off_t_61", "off_t"); +__static_renaming("__useconds_t_62", "useconds_t"); +__static_renaming("__pid_t_63", "pid_t"); +__static_renaming("__pid_t_64", "pid_t"); +__static_renaming("__intptr_t_65", "intptr_t"); +__static_renaming("__socklen_t_66", "socklen_t"); +__static_renaming("__access_69", "access"); +__static_renaming("__access_70", "access"); +__static_renaming("__access_71", "access"); +__static_renaming("__faccessat_76", "faccessat"); +__static_renaming("__faccessat_77", "faccessat"); +__static_renaming("__lseek_84", "lseek"); +__static_renaming("__lseek_85", "lseek"); +__static_renaming("__close_87", "close"); +__static_renaming("__read_91", "read"); +__static_renaming("__read_93", "read"); +__static_renaming("__write_98", "write"); +__static_renaming("__write_100", "write"); +__static_renaming("__pread_106", "pread"); +__static_renaming("__pread_108", "pread"); +__static_renaming("__pread_118", "pread"); +__static_renaming("__pread_120", "pread"); +__static_renaming("__pwrite_126", "pwrite"); +__static_renaming("__pwrite_128", "pwrite"); +__static_renaming("__pwrite_130", "pwrite"); +__static_renaming("__pwrite_132", "pwrite"); +__static_renaming("__pipe_135", "pipe"); +__static_renaming("__pipe_136", "pipe"); +__static_renaming("__pipe_137", "pipe"); +__static_renaming("__pipe_138", "pipe"); +__static_renaming("__alarm_140", "alarm"); +__static_renaming("__sleep_142", "sleep"); +__static_renaming("__ualarm_145", "ualarm"); +__static_renaming("__usleep_147", "usleep"); +__static_renaming("__pause_148", "pause"); +__static_renaming("__pause_149", "pause"); +__static_renaming("__chown_153", "chown"); +__static_renaming("__chown_154", "chown"); +__static_renaming("__fchown_158", "fchown"); +__static_renaming("__fchown_159", "fchown"); +__static_renaming("__lchown_163", "lchown"); +__static_renaming("__lchown_164", "lchown"); +__static_renaming("__fchownat_170", "fchownat"); +__static_renaming("__fchownat_171", "fchownat"); +__static_renaming("__chdir_173", "chdir"); +__static_renaming("__chdir_174", "chdir"); +__static_renaming("__chdir_175", "chdir"); +__static_renaming("__chdir_176", "chdir"); +__static_renaming("__fchdir_178", "fchdir"); +__static_renaming("__fchdir_179", "fchdir"); +__static_renaming("__getcwd_182", "getcwd"); +__static_renaming("__getcwd_183", "getcwd"); +__static_renaming("__getcwd_184", "getcwd"); +__static_renaming("__getcwd_185", "getcwd"); +__static_renaming("__getwd_187", "getwd"); +__static_renaming("__getwd_188", "getwd"); +__static_renaming("__dup_190", "dup"); +__static_renaming("__dup_191", "dup"); +__static_renaming("__dup_192", "dup"); +__static_renaming("__dup_193", "dup"); +__static_renaming("__dup2_196", "dup2"); +__static_renaming("____environ_197", "__environ"); +__static_renaming("__execve_201", "execve"); +__static_renaming("__fexecve_205", "fexecve"); +__static_renaming("__execv_208", "execv"); +__static_renaming("__execv_209", "execv"); +__static_renaming("__execle_212", "execle"); +__static_renaming("__execl_215", "execl"); +__static_renaming("__execvp_218", "execvp"); +__static_renaming("__execlp_221", "execlp"); +__static_renaming("__nice_223", "nice"); +__static_renaming("__nice_224", "nice"); +__static_renaming("___exit_226", "_exit"); +__static_renaming("___exit_227", "_exit"); +__static_renaming("__pathconf_536", "pathconf"); +__static_renaming("__fpathconf_539", "fpathconf"); +__static_renaming("__sysconf_541", "sysconf"); +__static_renaming("__confstr_545", "confstr"); +__static_renaming("__getpid_546", "getpid"); +__static_renaming("__getpid_547", "getpid"); +__static_renaming("__getppid_548", "getppid"); +__static_renaming("__getpgrp_549", "getpgrp"); +__static_renaming("____getpgid_551", "__getpgid"); +__static_renaming("__getpgid_553", "getpgid"); +__static_renaming("__setpgid_556", "setpgid"); +__static_renaming("__setpgid_557", "setpgid"); +__static_renaming("__setpgrp_558", "setpgrp"); +__static_renaming("__setsid_559", "setsid"); +__static_renaming("__setsid_560", "setsid"); +__static_renaming("__getsid_562", "getsid"); +__static_renaming("__getuid_563", "getuid"); +__static_renaming("__getuid_564", "getuid"); +__static_renaming("__geteuid_565", "geteuid"); +__static_renaming("__getgid_566", "getgid"); +__static_renaming("__getegid_567", "getegid"); +__static_renaming("__getgroups_570", "getgroups"); +__static_renaming("__getgroups_571", "getgroups"); +__static_renaming("__setuid_573", "setuid"); +__static_renaming("__setuid_574", "setuid"); +__static_renaming("__setreuid_577", "setreuid"); +__static_renaming("__setreuid_578", "setreuid"); +__static_renaming("__seteuid_580", "seteuid"); +__static_renaming("__seteuid_581", "seteuid"); +__static_renaming("__setgid_583", "setgid"); +__static_renaming("__setgid_584", "setgid"); +__static_renaming("__setgid_585", "setgid"); +__static_renaming("__setgid_586", "setgid"); +__static_renaming("__setregid_589", "setregid"); +__static_renaming("__setregid_590", "setregid"); +__static_renaming("__setegid_592", "setegid"); +__static_renaming("__setegid_593", "setegid"); +__static_renaming("__fork_594", "fork"); +__static_renaming("__fork_595", "fork"); +__static_renaming("__vfork_596", "vfork"); +__static_renaming("__ttyname_598", "ttyname"); +__static_renaming("__ttyname_599", "ttyname"); +__static_renaming("__ttyname_r_603", "ttyname_r"); +__static_renaming("__ttyname_r_604", "ttyname_r"); +__static_renaming("__isatty_606", "isatty"); +__static_renaming("__ttyslot_607", "ttyslot"); +__static_renaming("__link_610", "link"); +__static_renaming("__link_611", "link"); +__static_renaming("__link_612", "link"); +__static_renaming("__link_613", "link"); +__static_renaming("__linkat_619", "linkat"); +__static_renaming("__linkat_620", "linkat"); +__static_renaming("__symlink_623", "symlink"); +__static_renaming("__symlink_624", "symlink"); +__static_renaming("__readlink_628", "readlink"); +__static_renaming("__readlink_630", "readlink"); +__static_renaming("__symlinkat_635", "symlinkat"); +__static_renaming("__symlinkat_636", "symlinkat"); +__static_renaming("__readlinkat_641", "readlinkat"); +__static_renaming("__readlinkat_643", "readlinkat"); +__static_renaming("__unlink_646", "unlink"); +__static_renaming("__unlink_647", "unlink"); +__static_renaming("__unlinkat_651", "unlinkat"); +__static_renaming("__rmdir_653", "rmdir"); +__static_renaming("__rmdir_654", "rmdir"); +__static_renaming("__tcgetpgrp_656", "tcgetpgrp"); +__static_renaming("__tcsetpgrp_659", "tcsetpgrp"); +__static_renaming("__getlogin_660", "getlogin"); +__static_renaming("__getlogin_r_663", "getlogin_r"); +__static_renaming("__setlogin_665", "setlogin"); +__static_renaming("__optarg_666", "optarg"); +__static_renaming("__optind_667", "optind"); +__static_renaming("__opterr_668", "opterr"); +__static_renaming("__optopt_669", "optopt"); +__static_renaming("__getopt_673", "getopt"); +__static_renaming("__gethostname_676", "gethostname"); +__static_renaming("__sethostname_679", "sethostname"); +__static_renaming("__sethostname_680", "sethostname"); +__static_renaming("__sethostid_682", "sethostid"); +__static_renaming("__sethostid_683", "sethostid"); +__static_renaming("__getdomainname_686", "getdomainname"); +__static_renaming("__getdomainname_687", "getdomainname"); +__static_renaming("__setdomainname_690", "setdomainname"); +__static_renaming("__setdomainname_691", "setdomainname"); +__static_renaming("__vhangup_692", "vhangup"); +__static_renaming("__revoke_694", "revoke"); +__static_renaming("__revoke_695", "revoke"); +__static_renaming("__profil_700", "profil"); +__static_renaming("__acct_702", "acct"); +__static_renaming("__getusershell_703", "getusershell"); +__static_renaming("__endusershell_704", "endusershell"); +__static_renaming("__setusershell_705", "setusershell"); +__static_renaming("__daemon_708", "daemon"); +__static_renaming("__daemon_709", "daemon"); +__static_renaming("__chroot_711", "chroot"); +__static_renaming("__chroot_712", "chroot"); +__static_renaming("__getpass_714", "getpass"); +__static_renaming("__fsync_716", "fsync"); +__static_renaming("__fsync_717", "fsync"); +__static_renaming("__fsync_718", "fsync"); +__static_renaming("__gethostid_719", "gethostid"); +__static_renaming("__sync_720", "sync"); +__static_renaming("__getpagesize_721", "getpagesize"); +__static_renaming("__getdtablesize_722", "getdtablesize"); +__static_renaming("__truncate_727", "truncate"); +__static_renaming("__truncate_728", "truncate"); +__static_renaming("__truncate_729", "truncate"); +__static_renaming("__truncate_730", "truncate"); +__static_renaming("__ftruncate_735", "ftruncate"); +__static_renaming("__ftruncate_736", "ftruncate"); +__static_renaming("__ftruncate_737", "ftruncate"); +__static_renaming("__ftruncate_738", "ftruncate"); +__static_renaming("__brk_740", "brk"); +__static_renaming("__brk_741", "brk"); +__static_renaming("__sbrk_744", "sbrk"); +__static_renaming("__syscall_747", "syscall"); +__static_renaming("__lockf_754", "lockf"); +__static_renaming("__lockf_755", "lockf"); +__static_renaming("__lockf_756", "lockf"); +__static_renaming("__lockf_757", "lockf"); +__static_renaming("__fdatasync_759", "fdatasync"); +__static_renaming("____read_chk_764", "__read_chk"); +__static_renaming("____read_alias_769", "__read_alias"); +__static_renaming("____read_chk_warn_775", "__read_chk_warn"); +__static_renaming("____readlink_chk_785", "__readlink_chk"); +__static_renaming("____readlink_alias_790", "__readlink_alias"); +__static_renaming("____readlink_chk_warn_796", "__readlink_chk_warn"); +__static_renaming("____readlinkat_chk_807", "__readlinkat_chk"); +__static_renaming("____readlinkat_alias_813", "__readlinkat_alias"); +__static_renaming("____readlinkat_chk_warn_820", "__readlinkat_chk_warn"); +__static_renaming("____getcwd_chk_830", "__getcwd_chk"); +__static_renaming("____getcwd_chk_831", "__getcwd_chk"); +__static_renaming("____getcwd_alias_834", "__getcwd_alias"); +__static_renaming("____getcwd_chk_warn_838", "__getcwd_chk_warn"); +__static_renaming("____getwd_chk_844", "__getwd_chk"); +__static_renaming("____getwd_warn_846", "__getwd_warn"); +__static_renaming("____confstr_chk_853", "__confstr_chk"); +__static_renaming("____confstr_chk_854", "__confstr_chk"); +__static_renaming("____confstr_alias_858", "__confstr_alias"); +__static_renaming("____confstr_chk_warn_863", "__confstr_chk_warn"); +__static_renaming("____getgroups_chk_871", "__getgroups_chk"); +__static_renaming("____getgroups_alias_874", "__getgroups_alias"); +__static_renaming("____getgroups_chk_warn_878", "__getgroups_chk_warn"); +__static_renaming("____ttyname_r_chk_885", "__ttyname_r_chk"); +__static_renaming("____ttyname_r_alias_889", "__ttyname_r_alias"); +__static_renaming("____ttyname_r_chk_warn_894", "__ttyname_r_chk_warn"); +__static_renaming("____getlogin_r_chk_901", "__getlogin_r_chk"); +__static_renaming("____getlogin_r_alias_904", "__getlogin_r_alias"); +__static_renaming("____getlogin_r_chk_warn_908", "__getlogin_r_chk_warn"); +__static_renaming("____gethostname_chk_914", "__gethostname_chk"); +__static_renaming("____gethostname_alias_917", "__gethostname_alias"); +__static_renaming("____gethostname_chk_warn_921", "__gethostname_chk_warn"); +__static_renaming("____getdomainname_chk_927", "__getdomainname_chk"); +__static_renaming("____getdomainname_alias_930", "__getdomainname_alias"); +__static_renaming("____getdomainname_chk_warn_934", "__getdomainname_chk_warn"); +__static_renaming("__FILE_938", "FILE"); +__static_renaming("____FILE_939", "__FILE"); +__static_renaming("____mbstate_t_948", "__mbstate_t"); +__static_renaming("___G_fpos_t_955", "_G_fpos_t"); +__static_renaming("___G_fpos64_t_962", "_G_fpos64_t"); +__static_renaming("____gnuc_va_list_963", "__gnuc_va_list"); +__static_renaming("___IO_lock_t_965", "_IO_lock_t"); +__static_renaming("___IO_FILE_1044", "_IO_FILE"); +__static_renaming("___IO_FILE_1045", "_IO_FILE"); +__static_renaming("___IO_2_1_stdin__1048", "_IO_2_1_stdin_"); +__static_renaming("___IO_2_1_stdout__1049", "_IO_2_1_stdout_"); +__static_renaming("___IO_2_1_stderr__1050", "_IO_2_1_stderr_"); +__static_renaming("____io_read_fn_1054", "__io_read_fn"); +__static_renaming("____io_write_fn_1058", "__io_write_fn"); +__static_renaming("____io_seek_fn_1062", "__io_seek_fn"); +__static_renaming("____io_close_fn_1064", "__io_close_fn"); +__static_renaming("____underflow_1065", "__underflow"); +__static_renaming("____underflow_1066", "__underflow"); +__static_renaming("____uflow_1068", "__uflow"); +__static_renaming("____uflow_1069", "__uflow"); +__static_renaming("____overflow_1071", "__overflow"); +__static_renaming("____overflow_1072", "__overflow"); +__static_renaming("___IO_getc_1077", "_IO_getc"); +__static_renaming("___IO_getc_1078", "_IO_getc"); +__static_renaming("___IO_putc_1084", "_IO_putc"); +__static_renaming("___IO_putc_1085", "_IO_putc"); +__static_renaming("___IO_feof_1090", "_IO_feof"); +__static_renaming("___IO_feof_1091", "_IO_feof"); +__static_renaming("___IO_ferror_1096", "_IO_ferror"); +__static_renaming("___IO_ferror_1097", "_IO_ferror"); +__static_renaming("___IO_peekc_locked_1102", "_IO_peekc_locked"); +__static_renaming("___IO_peekc_locked_1103", "_IO_peekc_locked"); +__static_renaming("___IO_flockfile_1105", "_IO_flockfile"); +__static_renaming("___IO_flockfile_1106", "_IO_flockfile"); +__static_renaming("___IO_funlockfile_1108", "_IO_funlockfile"); +__static_renaming("___IO_funlockfile_1109", "_IO_funlockfile"); +__static_renaming("___IO_ftrylockfile_1111", "_IO_ftrylockfile"); +__static_renaming("___IO_ftrylockfile_1112", "_IO_ftrylockfile"); +__static_renaming("___IO_vfscanf_1114", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_1116", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_1120", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_1121", "_IO_vfscanf"); +__static_renaming("___IO_vfprintf_1123", "_IO_vfprintf"); +__static_renaming("___IO_vfprintf_1125", "_IO_vfprintf"); +__static_renaming("___IO_vfprintf_1129", "_IO_vfprintf"); +__static_renaming("___IO_padn_1130", "_IO_padn"); +__static_renaming("___IO_padn_1131", "_IO_padn"); +__static_renaming("___IO_sgetn_1133", "_IO_sgetn"); +__static_renaming("___IO_sgetn_1134", "_IO_sgetn"); +__static_renaming("___IO_seekoff_1136", "_IO_seekoff"); +__static_renaming("___IO_seekoff_1137", "_IO_seekoff"); +__static_renaming("___IO_seekpos_1139", "_IO_seekpos"); +__static_renaming("___IO_seekpos_1140", "_IO_seekpos"); +__static_renaming("___IO_free_backup_area_1142", "_IO_free_backup_area"); +__static_renaming("___IO_free_backup_area_1143", "_IO_free_backup_area"); +__static_renaming("__va_list_1145", "va_list"); +__static_renaming("__fpos_t_1147", "fpos_t"); +__static_renaming("__fpos_t_1149", "fpos_t"); +__static_renaming("__stdin_1151", "stdin"); +__static_renaming("__stdin_1152", "stdin"); +__static_renaming("__stdout_1154", "stdout"); +__static_renaming("__stdout_1155", "stdout"); +__static_renaming("__stderr_1157", "stderr"); +__static_renaming("__stderr_1158", "stderr"); +__static_renaming("__remove_1161", "remove"); +__static_renaming("__rename_1164", "rename"); +__static_renaming("__renameat_1169", "renameat"); +__static_renaming("__tmpfile_1170", "tmpfile"); +__static_renaming("__tmpfile_1172", "tmpfile"); +__static_renaming("__tmpfile_1174", "tmpfile"); +__static_renaming("__tmpfile_1176", "tmpfile"); +__static_renaming("__tmpnam_1179", "tmpnam"); +__static_renaming("__tmpnam_1180", "tmpnam"); +__static_renaming("__tmpnam_r_1182", "tmpnam_r"); +__static_renaming("__tmpnam_r_1183", "tmpnam_r"); +__static_renaming("__tempnam_1186", "tempnam"); +__static_renaming("__tempnam_1187", "tempnam"); +__static_renaming("__fclose_1190", "fclose"); +__static_renaming("__fclose_1192", "fclose"); +__static_renaming("__fflush_1196", "fflush"); +__static_renaming("__fflush_unlocked_1200", "fflush_unlocked"); +__static_renaming("__fopen_1204", "fopen"); +__static_renaming("__fopen_1206", "fopen"); +__static_renaming("__fopen_1214", "fopen"); +__static_renaming("__fopen_1216", "fopen"); +__static_renaming("__freopen_1222", "freopen"); +__static_renaming("__freopen_1224", "freopen"); +__static_renaming("__freopen_1226", "freopen"); +__static_renaming("__freopen_1228", "freopen"); +__static_renaming("__fdopen_1232", "fdopen"); +__static_renaming("__fdopen_1234", "fdopen"); +__static_renaming("__fmemopen_1239", "fmemopen"); +__static_renaming("__fmemopen_1241", "fmemopen"); +__static_renaming("__open_memstream_1245", "open_memstream"); +__static_renaming("__open_memstream_1247", "open_memstream"); +__static_renaming("__setbuf_1252", "setbuf"); +__static_renaming("__setbuf_1254", "setbuf"); +__static_renaming("__setvbuf_1261", "setvbuf"); +__static_renaming("__setbuffer_1267", "setbuffer"); +__static_renaming("__setlinebuf_1271", "setlinebuf"); +__static_renaming("__fprintf_1276", "fprintf"); +__static_renaming("__fprintf_1278", "fprintf"); +__static_renaming("__printf_1281", "printf"); +__static_renaming("__sprintf_1284", "sprintf"); +__static_renaming("__vfprintf_1290", "vfprintf"); +__static_renaming("__vprintf_1297", "vprintf"); +__static_renaming("__vsprintf_1303", "vsprintf"); +__static_renaming("__snprintf_1308", "snprintf"); +__static_renaming("__vsnprintf_1314", "vsnprintf"); +__static_renaming("__vdprintf_1320", "vdprintf"); +__static_renaming("__dprintf_1324", "dprintf"); +__static_renaming("__fscanf_1328", "fscanf"); +__static_renaming("__fscanf_1330", "fscanf"); +__static_renaming("__fscanf_1332", "fscanf"); +__static_renaming("__fscanf_1334", "fscanf"); +__static_renaming("__scanf_1337", "scanf"); +__static_renaming("__scanf_1338", "scanf"); +__static_renaming("__sscanf_1341", "sscanf"); +__static_renaming("__vfscanf_1369", "vfscanf"); +__static_renaming("__vfscanf_1373", "vfscanf"); +__static_renaming("__vscanf_1380", "vscanf"); +__static_renaming("__vscanf_1382", "vscanf"); +__static_renaming("__vsscanf_1388", "vsscanf"); +__static_renaming("__fgetc_1423", "fgetc"); +__static_renaming("__getc_1427", "getc"); +__static_renaming("__getchar_1429", "getchar"); +__static_renaming("__getc_unlocked_1432", "getc_unlocked"); +__static_renaming("__getchar_unlocked_1434", "getchar_unlocked"); +__static_renaming("__fgetc_unlocked_1437", "fgetc_unlocked"); +__static_renaming("__fputc_1442", "fputc"); +__static_renaming("__fputc_1444", "fputc"); +__static_renaming("__putc_1449", "putc"); +__static_renaming("__putchar_1452", "putchar"); +__static_renaming("__fputc_unlocked_1456", "fputc_unlocked"); +__static_renaming("__putc_unlocked_1461", "putc_unlocked"); +__static_renaming("__putchar_unlocked_1464", "putchar_unlocked"); +__static_renaming("__getw_1467", "getw"); +__static_renaming("__putw_1472", "putw"); +__static_renaming("__fgets_1478", "fgets"); +__static_renaming("__fgets_1480", "fgets"); +__static_renaming("__fgets_1482", "fgets"); +__static_renaming("__fgets_1484", "fgets"); +__static_renaming("____getdelim_1491", "__getdelim"); +__static_renaming("____getdelim_1493", "__getdelim"); +__static_renaming("__getdelim_1500", "getdelim"); +__static_renaming("__getdelim_1502", "getdelim"); +__static_renaming("__getline_1508", "getline"); +__static_renaming("__getline_1510", "getline"); +__static_renaming("__fputs_1515", "fputs"); +__static_renaming("__fputs_1517", "fputs"); +__static_renaming("__puts_1520", "puts"); +__static_renaming("__ungetc_1524", "ungetc"); +__static_renaming("__fseek_1562", "fseek"); +__static_renaming("__fseek_1564", "fseek"); +__static_renaming("__ftell_1568", "ftell"); +__static_renaming("__ftell_1570", "ftell"); +__static_renaming("__rewind_1574", "rewind"); +__static_renaming("__fseeko_1580", "fseeko"); +__static_renaming("__fseeko_1588", "fseeko"); +__static_renaming("__ftello_1592", "ftello"); +__static_renaming("__ftello_1594", "ftello"); +__static_renaming("__ftello_1596", "ftello"); +__static_renaming("__fgetpos_1602", "fgetpos"); +__static_renaming("__fgetpos_1614", "fgetpos"); +__static_renaming("__fsetpos_1622", "fsetpos"); +__static_renaming("__fsetpos_1626", "fsetpos"); +__static_renaming("__clearerr_1632", "clearerr"); +__static_renaming("__feof_1636", "feof"); +__static_renaming("__feof_1638", "feof"); +__static_renaming("__ferror_1642", "ferror"); +__static_renaming("__ferror_1644", "ferror"); +__static_renaming("__clearerr_unlocked_1648", "clearerr_unlocked"); +__static_renaming("__feof_unlocked_1652", "feof_unlocked"); +__static_renaming("__feof_unlocked_1654", "feof_unlocked"); +__static_renaming("__ferror_unlocked_1658", "ferror_unlocked"); +__static_renaming("__ferror_unlocked_1660", "ferror_unlocked"); +__static_renaming("__perror_1663", "perror"); +__static_renaming("__perror_1664", "perror"); +__static_renaming("__sys_nerr_1665", "sys_nerr"); +__static_renaming("__sys_errlist_1666", "sys_errlist"); +__static_renaming("__fileno_1669", "fileno"); +__static_renaming("__fileno_1671", "fileno"); +__static_renaming("__fileno_unlocked_1675", "fileno_unlocked"); +__static_renaming("__fileno_unlocked_1677", "fileno_unlocked"); +__static_renaming("__popen_1681", "popen"); +__static_renaming("__popen_1683", "popen"); +__static_renaming("__pclose_1687", "pclose"); +__static_renaming("__ctermid_1690", "ctermid"); +__static_renaming("__flockfile_1693", "flockfile"); +__static_renaming("__ftrylockfile_1697", "ftrylockfile"); +__static_renaming("__ftrylockfile_1699", "ftrylockfile"); +__static_renaming("__funlockfile_1703", "funlockfile"); +__static_renaming("____sprintf_chk_1735", "__sprintf_chk"); +__static_renaming("____vsprintf_chk_1742", "__vsprintf_chk"); +__static_renaming("____snprintf_chk_1756", "__snprintf_chk"); +__static_renaming("____vsnprintf_chk_1764", "__vsnprintf_chk"); +__static_renaming("____fprintf_chk_1779", "__fprintf_chk"); +__static_renaming("____printf_chk_1783", "__printf_chk"); +__static_renaming("____vfprintf_chk_1790", "__vfprintf_chk"); +__static_renaming("____vprintf_chk_1798", "__vprintf_chk"); +__static_renaming("____dprintf_chk_1820", "__dprintf_chk"); +__static_renaming("____vdprintf_chk_1826", "__vdprintf_chk"); +__static_renaming("____fgets_chk_1840", "__fgets_chk"); +__static_renaming("____fgets_chk_1842", "__fgets_chk"); +__static_renaming("____fgets_chk_1844", "__fgets_chk"); +__static_renaming("____fgets_alias_1850", "__fgets_alias"); +__static_renaming("____fgets_chk_warn_1857", "__fgets_chk_warn"); +__static_renaming("____cnt_1923", "__cnt"); +__static_renaming("____cptr_1924", "__cptr"); +__static_renaming("__ptrdiff_t_1928", "ptrdiff_t"); +__static_renaming("__wchar_t_1929", "wchar_t"); +__static_renaming("__max_align_t_1934", "max_align_t"); +__static_renaming("__FILE_1935", "FILE"); +__static_renaming("____mbstate_t_1944", "__mbstate_t"); +__static_renaming("___G_fpos_t_1951", "_G_fpos_t"); +__static_renaming("___G_fpos64_t_1958", "_G_fpos64_t"); +__static_renaming("____gnuc_va_list_1959", "__gnuc_va_list"); +__static_renaming("___IO_lock_t_1960", "_IO_lock_t"); +__static_renaming("___IO_FILE_2038", "_IO_FILE"); +__static_renaming("___IO_FILE_2039", "_IO_FILE"); +__static_renaming("___IO_2_1_stdin__2041", "_IO_2_1_stdin_"); +__static_renaming("___IO_2_1_stdout__2042", "_IO_2_1_stdout_"); +__static_renaming("___IO_2_1_stderr__2043", "_IO_2_1_stderr_"); +__static_renaming("____io_read_fn_2047", "__io_read_fn"); +__static_renaming("____io_write_fn_2051", "__io_write_fn"); +__static_renaming("____io_seek_fn_2055", "__io_seek_fn"); +__static_renaming("____io_close_fn_2057", "__io_close_fn"); +__static_renaming("____underflow_2058", "__underflow"); +__static_renaming("____underflow_2059", "__underflow"); +__static_renaming("____uflow_2061", "__uflow"); +__static_renaming("____uflow_2062", "__uflow"); +__static_renaming("____overflow_2064", "__overflow"); +__static_renaming("____overflow_2065", "__overflow"); +__static_renaming("___IO_getc_2070", "_IO_getc"); +__static_renaming("___IO_getc_2071", "_IO_getc"); +__static_renaming("___IO_putc_2077", "_IO_putc"); +__static_renaming("___IO_putc_2078", "_IO_putc"); +__static_renaming("___IO_feof_2083", "_IO_feof"); +__static_renaming("___IO_feof_2084", "_IO_feof"); +__static_renaming("___IO_ferror_2089", "_IO_ferror"); +__static_renaming("___IO_ferror_2090", "_IO_ferror"); +__static_renaming("___IO_peekc_locked_2095", "_IO_peekc_locked"); +__static_renaming("___IO_peekc_locked_2096", "_IO_peekc_locked"); +__static_renaming("___IO_flockfile_2098", "_IO_flockfile"); +__static_renaming("___IO_flockfile_2099", "_IO_flockfile"); +__static_renaming("___IO_funlockfile_2101", "_IO_funlockfile"); +__static_renaming("___IO_funlockfile_2102", "_IO_funlockfile"); +__static_renaming("___IO_ftrylockfile_2104", "_IO_ftrylockfile"); +__static_renaming("___IO_ftrylockfile_2105", "_IO_ftrylockfile"); +__static_renaming("___IO_vfscanf_2107", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_2109", "_IO_vfscanf"); +__static_renaming("___IO_vfprintf_2116", "_IO_vfprintf"); +__static_renaming("___IO_vfprintf_2118", "_IO_vfprintf"); +__static_renaming("___IO_padn_2123", "_IO_padn"); +__static_renaming("___IO_padn_2124", "_IO_padn"); +__static_renaming("___IO_sgetn_2126", "_IO_sgetn"); +__static_renaming("___IO_sgetn_2127", "_IO_sgetn"); +__static_renaming("___IO_seekoff_2129", "_IO_seekoff"); +__static_renaming("___IO_seekoff_2130", "_IO_seekoff"); +__static_renaming("___IO_seekpos_2132", "_IO_seekpos"); +__static_renaming("___IO_seekpos_2133", "_IO_seekpos"); +__static_renaming("___IO_free_backup_area_2135", "_IO_free_backup_area"); +__static_renaming("___IO_free_backup_area_2136", "_IO_free_backup_area"); +__static_renaming("__va_list_2138", "va_list"); +__static_renaming("__fpos_t_2140", "fpos_t"); +__static_renaming("__fpos_t_2142", "fpos_t"); +__static_renaming("__stdin_2144", "stdin"); +__static_renaming("__stdin_2145", "stdin"); +__static_renaming("__stdout_2147", "stdout"); +__static_renaming("__stdout_2148", "stdout"); +__static_renaming("__stderr_2150", "stderr"); +__static_renaming("__stderr_2151", "stderr"); +__static_renaming("__remove_2154", "remove"); +__static_renaming("__rename_2157", "rename"); +__static_renaming("__renameat_2162", "renameat"); +__static_renaming("__tmpfile_2163", "tmpfile"); +__static_renaming("__tmpfile_2165", "tmpfile"); +__static_renaming("__tmpfile_2167", "tmpfile"); +__static_renaming("__tmpfile_2169", "tmpfile"); +__static_renaming("__tmpnam_2172", "tmpnam"); +__static_renaming("__tmpnam_2173", "tmpnam"); +__static_renaming("__tmpnam_r_2175", "tmpnam_r"); +__static_renaming("__tmpnam_r_2176", "tmpnam_r"); +__static_renaming("__tempnam_2179", "tempnam"); +__static_renaming("__tempnam_2180", "tempnam"); +__static_renaming("__fclose_2183", "fclose"); +__static_renaming("__fclose_2185", "fclose"); +__static_renaming("__fflush_2189", "fflush"); +__static_renaming("__fflush_unlocked_2193", "fflush_unlocked"); +__static_renaming("__fopen_2197", "fopen"); +__static_renaming("__fopen_2199", "fopen"); +__static_renaming("__fopen_2207", "fopen"); +__static_renaming("__fopen_2209", "fopen"); +__static_renaming("__freopen_2215", "freopen"); +__static_renaming("__freopen_2217", "freopen"); +__static_renaming("__freopen_2219", "freopen"); +__static_renaming("__freopen_2221", "freopen"); +__static_renaming("__fdopen_2225", "fdopen"); +__static_renaming("__fdopen_2227", "fdopen"); +__static_renaming("__fmemopen_2232", "fmemopen"); +__static_renaming("__fmemopen_2234", "fmemopen"); +__static_renaming("__open_memstream_2238", "open_memstream"); +__static_renaming("__open_memstream_2240", "open_memstream"); +__static_renaming("__setbuf_2245", "setbuf"); +__static_renaming("__setbuf_2247", "setbuf"); +__static_renaming("__setvbuf_2254", "setvbuf"); +__static_renaming("__setbuffer_2260", "setbuffer"); +__static_renaming("__setlinebuf_2264", "setlinebuf"); +__static_renaming("__fprintf_2269", "fprintf"); +__static_renaming("__fprintf_2271", "fprintf"); +__static_renaming("__printf_2274", "printf"); +__static_renaming("__sprintf_2277", "sprintf"); +__static_renaming("__vfprintf_2283", "vfprintf"); +__static_renaming("__vprintf_2290", "vprintf"); +__static_renaming("__vsprintf_2296", "vsprintf"); +__static_renaming("__snprintf_2301", "snprintf"); +__static_renaming("__vsnprintf_2307", "vsnprintf"); +__static_renaming("__vdprintf_2313", "vdprintf"); +__static_renaming("__dprintf_2317", "dprintf"); +__static_renaming("__fscanf_2321", "fscanf"); +__static_renaming("__fscanf_2323", "fscanf"); +__static_renaming("__fscanf_2325", "fscanf"); +__static_renaming("__fscanf_2327", "fscanf"); +__static_renaming("__scanf_2330", "scanf"); +__static_renaming("__scanf_2331", "scanf"); +__static_renaming("__sscanf_2334", "sscanf"); +__static_renaming("__vfscanf_2362", "vfscanf"); +__static_renaming("__vfscanf_2366", "vfscanf"); +__static_renaming("__vscanf_2373", "vscanf"); +__static_renaming("__vscanf_2375", "vscanf"); +__static_renaming("__vsscanf_2381", "vsscanf"); +__static_renaming("__fgetc_2416", "fgetc"); +__static_renaming("__getc_2420", "getc"); +__static_renaming("__getchar_2422", "getchar"); +__static_renaming("__getc_unlocked_2425", "getc_unlocked"); +__static_renaming("__getchar_unlocked_2427", "getchar_unlocked"); +__static_renaming("__fgetc_unlocked_2430", "fgetc_unlocked"); +__static_renaming("__fputc_2435", "fputc"); +__static_renaming("__fputc_2437", "fputc"); +__static_renaming("__putc_2442", "putc"); +__static_renaming("__putchar_2445", "putchar"); +__static_renaming("__fputc_unlocked_2449", "fputc_unlocked"); +__static_renaming("__putc_unlocked_2454", "putc_unlocked"); +__static_renaming("__putchar_unlocked_2457", "putchar_unlocked"); +__static_renaming("__getw_2460", "getw"); +__static_renaming("__putw_2465", "putw"); +__static_renaming("__fgets_2471", "fgets"); +__static_renaming("__fgets_2473", "fgets"); +__static_renaming("__fgets_2475", "fgets"); +__static_renaming("__fgets_2477", "fgets"); +__static_renaming("____getdelim_2484", "__getdelim"); +__static_renaming("____getdelim_2486", "__getdelim"); +__static_renaming("__getdelim_2493", "getdelim"); +__static_renaming("__getdelim_2495", "getdelim"); +__static_renaming("__getline_2501", "getline"); +__static_renaming("__getline_2503", "getline"); +__static_renaming("__fputs_2508", "fputs"); +__static_renaming("__fputs_2510", "fputs"); +__static_renaming("__puts_2513", "puts"); +__static_renaming("__ungetc_2517", "ungetc"); +__static_renaming("__fseek_2555", "fseek"); +__static_renaming("__fseek_2557", "fseek"); +__static_renaming("__ftell_2561", "ftell"); +__static_renaming("__ftell_2563", "ftell"); +__static_renaming("__rewind_2567", "rewind"); +__static_renaming("__fseeko_2573", "fseeko"); +__static_renaming("__fseeko_2581", "fseeko"); +__static_renaming("__ftello_2585", "ftello"); +__static_renaming("__ftello_2587", "ftello"); +__static_renaming("__ftello_2589", "ftello"); +__static_renaming("__fgetpos_2595", "fgetpos"); +__static_renaming("__fgetpos_2607", "fgetpos"); +__static_renaming("__fsetpos_2615", "fsetpos"); +__static_renaming("__fsetpos_2619", "fsetpos"); +__static_renaming("__clearerr_2625", "clearerr"); +__static_renaming("__feof_2629", "feof"); +__static_renaming("__feof_2631", "feof"); +__static_renaming("__ferror_2635", "ferror"); +__static_renaming("__ferror_2637", "ferror"); +__static_renaming("__clearerr_unlocked_2641", "clearerr_unlocked"); +__static_renaming("__feof_unlocked_2645", "feof_unlocked"); +__static_renaming("__feof_unlocked_2647", "feof_unlocked"); +__static_renaming("__ferror_unlocked_2651", "ferror_unlocked"); +__static_renaming("__ferror_unlocked_2653", "ferror_unlocked"); +__static_renaming("__perror_2656", "perror"); +__static_renaming("__perror_2657", "perror"); +__static_renaming("__sys_nerr_2658", "sys_nerr"); +__static_renaming("__sys_errlist_2659", "sys_errlist"); +__static_renaming("__fileno_2662", "fileno"); +__static_renaming("__fileno_2664", "fileno"); +__static_renaming("__fileno_unlocked_2668", "fileno_unlocked"); +__static_renaming("__fileno_unlocked_2670", "fileno_unlocked"); +__static_renaming("__popen_2674", "popen"); +__static_renaming("__popen_2676", "popen"); +__static_renaming("__pclose_2680", "pclose"); +__static_renaming("__ctermid_2683", "ctermid"); +__static_renaming("__flockfile_2686", "flockfile"); +__static_renaming("__ftrylockfile_2690", "ftrylockfile"); +__static_renaming("__ftrylockfile_2692", "ftrylockfile"); +__static_renaming("__funlockfile_2696", "funlockfile"); +__static_renaming("____sprintf_chk_2728", "__sprintf_chk"); +__static_renaming("____vsprintf_chk_2735", "__vsprintf_chk"); +__static_renaming("____snprintf_chk_2749", "__snprintf_chk"); +__static_renaming("____vsnprintf_chk_2757", "__vsnprintf_chk"); +__static_renaming("____fprintf_chk_2772", "__fprintf_chk"); +__static_renaming("____printf_chk_2776", "__printf_chk"); +__static_renaming("____vfprintf_chk_2783", "__vfprintf_chk"); +__static_renaming("____vprintf_chk_2791", "__vprintf_chk"); +__static_renaming("____dprintf_chk_2813", "__dprintf_chk"); +__static_renaming("____vdprintf_chk_2819", "__vdprintf_chk"); +__static_renaming("____fgets_chk_2833", "__fgets_chk"); +__static_renaming("____fgets_chk_2835", "__fgets_chk"); +__static_renaming("____fgets_chk_2837", "__fgets_chk"); +__static_renaming("____fgets_alias_2843", "__fgets_alias"); +__static_renaming("____fgets_chk_warn_2850", "__fgets_chk_warn"); +__static_renaming("____cnt_2916", "__cnt"); +__static_renaming("____cptr_2917", "__cptr"); +__static_renaming("__malloc_2922", "malloc"); +__static_renaming("__malloc_2923", "malloc"); +__static_renaming("__malloc_2924", "malloc"); +__static_renaming("__malloc_2925", "malloc"); +__static_renaming("__malloc_2926", "malloc"); +__static_renaming("__malloc_2927", "malloc"); +__static_renaming("__calloc_2930", "calloc"); +__static_renaming("__calloc_2931", "calloc"); +__static_renaming("__realloc_2934", "realloc"); +__static_renaming("__free_2936", "free"); +__static_renaming("__cfree_2938", "cfree"); +__static_renaming("__memalign_2941", "memalign"); +__static_renaming("__memalign_2942", "memalign"); +__static_renaming("__valloc_2944", "valloc"); +__static_renaming("__valloc_2945", "valloc"); +__static_renaming("__pvalloc_2947", "pvalloc"); +__static_renaming("__pvalloc_2948", "pvalloc"); +__static_renaming("____morecore_2952", "__morecore"); +__static_renaming("____morecore_2953", "__morecore"); +__static_renaming("____default_morecore_2958", "__default_morecore"); +__static_renaming("____default_morecore_2959", "__default_morecore"); +__static_renaming("__mallinfo_2971", "mallinfo"); +__static_renaming("__mallopt_2974", "mallopt"); +__static_renaming("__malloc_trim_2976", "malloc_trim"); +__static_renaming("__malloc_usable_size_2978", "malloc_usable_size"); +__static_renaming("__malloc_stats_2979", "malloc_stats"); +__static_renaming("__malloc_info_2984", "malloc_info"); +__static_renaming("__malloc_info_2985", "malloc_info"); +__static_renaming("__malloc_get_state_2987", "malloc_get_state"); +__static_renaming("__malloc_set_state_2989", "malloc_set_state"); +__static_renaming("____malloc_initialize_hook_2990", "__malloc_initialize_hook"); +__static_renaming("____free_hook_2992", "__free_hook"); +__static_renaming("____malloc_hook_2994", "__malloc_hook"); +__static_renaming("____realloc_hook_2997", "__realloc_hook"); +__static_renaming("____memalign_hook_3000", "__memalign_hook"); +__static_renaming("____after_morecore_hook_3001", "__after_morecore_hook"); +__static_renaming("____malloc_check_init_3002", "__malloc_check_init"); +__static_renaming("__wchar_t_3003", "wchar_t"); +__static_renaming("__idtype_t_3009", "idtype_t"); +__static_renaming("____bswap_32_3011", "__bswap_32"); +__static_renaming("____bswap_64_3014", "__bswap_64"); +__static_renaming("____WAIT_STATUS_3034", "__WAIT_STATUS"); +__static_renaming("__div_t_3039", "div_t"); +__static_renaming("__ldiv_t_3044", "ldiv_t"); +__static_renaming("__lldiv_t_3049", "lldiv_t"); +__static_renaming("____ctype_get_mb_cur_max_3050", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_3051", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_3052", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_3053", "__ctype_get_mb_cur_max"); +__static_renaming("__atof_3055", "atof"); +__static_renaming("__atof_3056", "atof"); +__static_renaming("__atoi_3058", "atoi"); +__static_renaming("__atoi_3059", "atoi"); +__static_renaming("__atol_3061", "atol"); +__static_renaming("__atol_3062", "atol"); +__static_renaming("__atoll_3064", "atoll"); +__static_renaming("__atoll_3065", "atoll"); +__static_renaming("__strtod_3068", "strtod"); +__static_renaming("__strtof_3071", "strtof"); +__static_renaming("__strtold_3074", "strtold"); +__static_renaming("__strtol_3078", "strtol"); +__static_renaming("__strtoul_3082", "strtoul"); +__static_renaming("__strtoq_3086", "strtoq"); +__static_renaming("__strtouq_3090", "strtouq"); +__static_renaming("__strtoll_3094", "strtoll"); +__static_renaming("__strtoll_3095", "strtoll"); +__static_renaming("__strtoull_3099", "strtoull"); +__static_renaming("__l64a_3104", "l64a"); +__static_renaming("__l64a_3105", "l64a"); +__static_renaming("__a64l_3107", "a64l"); +__static_renaming("__a64l_3108", "a64l"); +__static_renaming("__u_char_3109", "u_char"); +__static_renaming("__u_short_3110", "u_short"); +__static_renaming("__u_int_3111", "u_int"); +__static_renaming("__u_long_3112", "u_long"); +__static_renaming("__quad_t_3113", "quad_t"); +__static_renaming("__u_quad_t_3114", "u_quad_t"); +__static_renaming("__fsid_t_3115", "fsid_t"); +__static_renaming("__loff_t_3116", "loff_t"); +__static_renaming("__ino_t_3117", "ino_t"); +__static_renaming("__ino_t_3118", "ino_t"); +__static_renaming("__dev_t_3119", "dev_t"); +__static_renaming("__mode_t_3120", "mode_t"); +__static_renaming("__mode_t_3121", "mode_t"); +__static_renaming("__nlink_t_3122", "nlink_t"); +__static_renaming("__id_t_3123", "id_t"); +__static_renaming("__daddr_t_3124", "daddr_t"); +__static_renaming("__caddr_t_3125", "caddr_t"); +__static_renaming("__key_t_3126", "key_t"); +__static_renaming("__key_t_3127", "key_t"); +__static_renaming("__clock_t_3128", "clock_t"); +__static_renaming("__time_t_3129", "time_t"); +__static_renaming("__clockid_t_3130", "clockid_t"); +__static_renaming("__timer_t_3131", "timer_t"); +__static_renaming("__ulong_3132", "ulong"); +__static_renaming("__ulong_3133", "ulong"); +__static_renaming("__ulong_3134", "ulong"); +__static_renaming("__ushort_3135", "ushort"); +__static_renaming("__uint_3136", "uint"); +__static_renaming("__int8_t_3137", "int8_t"); +__static_renaming("__int16_t_3138", "int16_t"); +__static_renaming("__int32_t_3139", "int32_t"); +__static_renaming("__int64_t_3140", "int64_t"); +__static_renaming("__u_int8_t_3141", "u_int8_t"); +__static_renaming("__u_int16_t_3142", "u_int16_t"); +__static_renaming("__u_int32_t_3143", "u_int32_t"); +__static_renaming("__u_int64_t_3144", "u_int64_t"); +__static_renaming("__register_t_3145", "register_t"); +__static_renaming("____bswap_32_3147", "__bswap_32"); +__static_renaming("____bswap_64_3150", "__bswap_64"); +__static_renaming("____sig_atomic_t_3151", "__sig_atomic_t"); +__static_renaming("____sigset_t_3155", "__sigset_t"); +__static_renaming("__sigset_t_3156", "sigset_t"); +__static_renaming("__suseconds_t_3163", "suseconds_t"); +__static_renaming("____fd_mask_3164", "__fd_mask"); +__static_renaming("____fd_mask_3165", "__fd_mask"); +__static_renaming("__fd_set_3170", "fd_set"); +__static_renaming("__fd_mask_3171", "fd_mask"); +__static_renaming("__fd_mask_3172", "fd_mask"); +__static_renaming("__select_3180", "select"); +__static_renaming("__select_3181", "select"); +__static_renaming("__pselect_3190", "pselect"); +__static_renaming("__pselect_3191", "pselect"); +__static_renaming("____fdelt_chk_3193", "__fdelt_chk"); +__static_renaming("____fdelt_warn_3195", "__fdelt_warn"); +__static_renaming("__gnu_dev_major_3197", "gnu_dev_major"); +__static_renaming("__gnu_dev_major_3198", "gnu_dev_major"); +__static_renaming("__gnu_dev_minor_3200", "gnu_dev_minor"); +__static_renaming("__gnu_dev_makedev_3203", "gnu_dev_makedev"); +__static_renaming("__blksize_t_3208", "blksize_t"); +__static_renaming("__blkcnt_t_3209", "blkcnt_t"); +__static_renaming("__fsblkcnt_t_3210", "fsblkcnt_t"); +__static_renaming("__blkcnt_t_3211", "blkcnt_t"); +__static_renaming("__fsblkcnt_t_3212", "fsblkcnt_t"); +__static_renaming("__fsfilcnt_t_3213", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_3214", "fsfilcnt_t"); +__static_renaming("__pthread_t_3215", "pthread_t"); +__static_renaming("__pthread_attr_t_3219", "pthread_attr_t"); +__static_renaming("____pthread_list_t_3224", "__pthread_list_t"); +__static_renaming("____pthread_list_t_3225", "__pthread_list_t"); +__static_renaming("__pthread_mutex_t_3241", "pthread_mutex_t"); +__static_renaming("__pthread_mutexattr_t_3246", "pthread_mutexattr_t"); +__static_renaming("__rand_3247", "rand"); +__static_renaming("__srand_3249", "srand"); +__static_renaming("__rand_r_3251", "rand_r"); +__static_renaming("__drand48_3252", "drand48"); +__static_renaming("__erand48_3254", "erand48"); +__static_renaming("__lrand48_3255", "lrand48"); +__static_renaming("__nrand48_3257", "nrand48"); +__static_renaming("__mrand48_3258", "mrand48"); +__static_renaming("__jrand48_3260", "jrand48"); +__static_renaming("__srand48_3262", "srand48"); +__static_renaming("__seed48_3264", "seed48"); +__static_renaming("__lcong48_3266", "lcong48"); +__static_renaming("__alloca_3299", "alloca"); +__static_renaming("__posix_memalign_3308", "posix_memalign"); +__static_renaming("__posix_memalign_3309", "posix_memalign"); +__static_renaming("__aligned_alloc_3312", "aligned_alloc"); +__static_renaming("__aligned_alloc_3313", "aligned_alloc"); +__static_renaming("__aligned_alloc_3314", "aligned_alloc"); +__static_renaming("__aligned_alloc_3315", "aligned_alloc"); +__static_renaming("__abort_3316", "abort"); +__static_renaming("__atexit_3318", "atexit"); +__static_renaming("__at_quick_exit_3320", "at_quick_exit"); +__static_renaming("__on_exit_3325", "on_exit"); +__static_renaming("__exit_3327", "exit"); +__static_renaming("__exit_3328", "exit"); +__static_renaming("__quick_exit_3330", "quick_exit"); +__static_renaming("___Exit_3332", "_Exit"); +__static_renaming("__getenv_3334", "getenv"); +__static_renaming("__getenv_3335", "getenv"); +__static_renaming("__putenv_3337", "putenv"); +__static_renaming("__setenv_3341", "setenv"); +__static_renaming("__unsetenv_3343", "unsetenv"); +__static_renaming("__clearenv_3344", "clearenv"); +__static_renaming("__mktemp_3346", "mktemp"); +__static_renaming("__mkstemp_3349", "mkstemp"); +__static_renaming("__mkstemp_3350", "mkstemp"); +__static_renaming("__mkstemp_3351", "mkstemp"); +__static_renaming("__mkstemp_3352", "mkstemp"); +__static_renaming("__mkstemps_3357", "mkstemps"); +__static_renaming("__mkstemps_3358", "mkstemps"); +__static_renaming("__mkstemps_3359", "mkstemps"); +__static_renaming("__mkstemps_3360", "mkstemps"); +__static_renaming("__mkdtemp_3362", "mkdtemp"); +__static_renaming("__mkdtemp_3363", "mkdtemp"); +__static_renaming("__system_3365", "system"); +__static_renaming("__system_3366", "system"); +__static_renaming("__system_3367", "system"); +__static_renaming("__system_3368", "system"); +__static_renaming("__realpath_3371", "realpath"); +__static_renaming("__realpath_3372", "realpath"); +__static_renaming("____compar_fn_t_3373", "__compar_fn_t"); +__static_renaming("__bsearch_3381", "bsearch"); +__static_renaming("__bsearch_3383", "bsearch"); +__static_renaming("____l_3390", "__l"); +__static_renaming("____u_3391", "__u"); +__static_renaming("____idx_3392", "__idx"); +__static_renaming("____p_3393", "__p"); +__static_renaming("____comparison_3394", "__comparison"); +__static_renaming("__qsort_3402", "qsort"); +__static_renaming("__qsort_3404", "qsort"); +__static_renaming("__abs_3407", "abs"); +__static_renaming("__abs_3408", "abs"); +__static_renaming("__labs_3410", "labs"); +__static_renaming("__labs_3411", "labs"); +__static_renaming("__llabs_3413", "llabs"); +__static_renaming("__llabs_3414", "llabs"); +__static_renaming("__div_3417", "div"); +__static_renaming("__div_3418", "div"); +__static_renaming("__ldiv_3421", "ldiv"); +__static_renaming("__ldiv_3423", "ldiv"); +__static_renaming("__lldiv_3427", "lldiv"); +__static_renaming("__lldiv_3429", "lldiv"); +__static_renaming("__ecvt_3435", "ecvt"); +__static_renaming("__ecvt_3436", "ecvt"); +__static_renaming("__fcvt_3441", "fcvt"); +__static_renaming("__fcvt_3442", "fcvt"); +__static_renaming("__gcvt_3446", "gcvt"); +__static_renaming("__gcvt_3447", "gcvt"); +__static_renaming("__qecvt_3452", "qecvt"); +__static_renaming("__qecvt_3453", "qecvt"); +__static_renaming("__qfcvt_3458", "qfcvt"); +__static_renaming("__qfcvt_3459", "qfcvt"); +__static_renaming("__qgcvt_3463", "qgcvt"); +__static_renaming("__qgcvt_3464", "qgcvt"); +__static_renaming("__ecvt_r_3471", "ecvt_r"); +__static_renaming("__fcvt_r_3478", "fcvt_r"); +__static_renaming("__qecvt_r_3485", "qecvt_r"); +__static_renaming("__qfcvt_r_3492", "qfcvt_r"); +__static_renaming("__mblen_3495", "mblen"); +__static_renaming("__mblen_3496", "mblen"); +__static_renaming("__mbtowc_3501", "mbtowc"); +__static_renaming("__mbtowc_3502", "mbtowc"); +__static_renaming("__wctomb_3506", "wctomb"); +__static_renaming("__wctomb_3507", "wctomb"); +__static_renaming("__mbstowcs_3512", "mbstowcs"); +__static_renaming("__mbstowcs_3513", "mbstowcs"); +__static_renaming("__wcstombs_3518", "wcstombs"); +__static_renaming("__wcstombs_3519", "wcstombs"); +__static_renaming("__rpmatch_3521", "rpmatch"); +__static_renaming("__rpmatch_3522", "rpmatch"); +__static_renaming("__getsubopt_3526", "getsubopt"); +__static_renaming("__getsubopt_3527", "getsubopt"); +__static_renaming("__getloadavg_3530", "getloadavg"); +__static_renaming("____realpath_chk_3535", "__realpath_chk"); +__static_renaming("____realpath_alias_3538", "__realpath_alias"); +__static_renaming("____realpath_chk_warn_3542", "__realpath_chk_warn"); +__static_renaming("____ptsname_r_chk_3550", "__ptsname_r_chk"); +__static_renaming("____ptsname_r_alias_3554", "__ptsname_r_alias"); +__static_renaming("____ptsname_r_chk_warn_3559", "__ptsname_r_chk_warn"); +__static_renaming("____wctomb_chk_3568", "__wctomb_chk"); +__static_renaming("____wctomb_chk_3569", "__wctomb_chk"); +__static_renaming("____wctomb_alias_3573", "__wctomb_alias"); +__static_renaming("____wctomb_alias_3574", "__wctomb_alias"); +__static_renaming("____mbstowcs_chk_3583", "__mbstowcs_chk"); +__static_renaming("____mbstowcs_chk_3584", "__mbstowcs_chk"); +__static_renaming("____mbstowcs_alias_3589", "__mbstowcs_alias"); +__static_renaming("____mbstowcs_alias_3590", "__mbstowcs_alias"); +__static_renaming("____mbstowcs_chk_warn_3596", "__mbstowcs_chk_warn"); +__static_renaming("____mbstowcs_chk_warn_3597", "__mbstowcs_chk_warn"); +__static_renaming("____wcstombs_chk_3607", "__wcstombs_chk"); +__static_renaming("____wcstombs_chk_3608", "__wcstombs_chk"); +__static_renaming("____wcstombs_alias_3613", "__wcstombs_alias"); +__static_renaming("____wcstombs_alias_3614", "__wcstombs_alias"); +__static_renaming("____wcstombs_chk_warn_3620", "__wcstombs_chk_warn"); +__static_renaming("____wcstombs_chk_warn_3621", "__wcstombs_chk_warn"); +__static_renaming("____errno_location_3626", "__errno_location"); +__static_renaming("____errno_location_3627", "__errno_location"); +__static_renaming("____errno_location_3628", "__errno_location"); +__static_renaming("__off_t_3629", "off_t"); +__static_renaming("__off_t_3630", "off_t"); +__static_renaming("__mode_t_3631", "mode_t"); +__static_renaming("__mmap_3644", "mmap"); +__static_renaming("__mmap_3645", "mmap"); +__static_renaming("__munmap_3648", "munmap"); +__static_renaming("__mprotect_3652", "mprotect"); +__static_renaming("__msync_3656", "msync"); +__static_renaming("__madvise_3660", "madvise"); +__static_renaming("__posix_madvise_3664", "posix_madvise"); +__static_renaming("__mlock_3667", "mlock"); +__static_renaming("__mlock_3668", "mlock"); +__static_renaming("__munlock_3671", "munlock"); +__static_renaming("__mlockall_3673", "mlockall"); +__static_renaming("__munlockall_3674", "munlockall"); +__static_renaming("__mincore_3678", "mincore"); +__static_renaming("__shm_open_3684", "shm_open"); +__static_renaming("__shm_open_3687", "shm_open"); +__static_renaming("__shm_unlink_3689", "shm_unlink"); +__static_renaming("__buffer_3690", "buffer"); +__static_renaming("__pagesize_3691", "pagesize"); +__static_renaming("__allocate_buffer_3692", "allocate_buffer"); +__static_renaming("__main_3716", "main"); +__static_renaming("__main_3717", "main"); + +__static_condition_renaming("__static_condition_default_92", "!(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_94", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_99", "!(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_101", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_107", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_109", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_119", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_121", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_127", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_129", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_131", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_133", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_629", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_631", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_642", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_644", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_745", "!(defined __STRICT_ANSI__) && (defined __intptr_t_defined)"); +__static_condition_renaming("__static_condition_default_765", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_770", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_776", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_780", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_786", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_791", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_797", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_801", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_808", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_814", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_821", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_826", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_841", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_848", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_954", "!(defined __need___FILE) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_961", "!(defined __need___FILE) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_999", "!(defined __need___FILE) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_1042", "!(defined __need___FILE) && (defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_1043", "!(defined __need___FILE) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_1046", "!(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_1067", "!(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_1070", "!(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_1073", "!(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_1079", "!(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_1086", "!(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_1092", "!(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_1098", "!(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_1104", "!(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_1107", "!(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_1110", "!(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_1113", "!(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_1115", "!(defined __need___FILE) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_1117", "!(defined __need___FILE) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_1118", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_1119", "!(defined __need___FILE) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_1122", "!(defined __need___FILE) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_1124", "!(defined __need___FILE) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_1126", "!(defined __need___FILE) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_1127", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_1128", "!(defined __need___FILE) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_1132", "!(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_1135", "!(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_1138", "!(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_1141", "!(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_1144", "!(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_1146", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); +__static_condition_renaming("__static_condition_default_1148", "!(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_1150", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_1153", "!(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_1156", "!(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_1159", "!(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_1171", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1173", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1175", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1177", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1191", "(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1193", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1197", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1201", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1205", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1207", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1215", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1217", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1223", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1225", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1227", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1229", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1233", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1235", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1240", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1242", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1246", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1248", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1253", "(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1255", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1262", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1268", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1272", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1277", "(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1279", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1291", "!(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1292", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_1293", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1298", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1304", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1315", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1321", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1329", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1331", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1333", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1335", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1346", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1348", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1349", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1351", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1353", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1354", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1357", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_1359", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_1363", "!(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_1370", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1371", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_1372", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1374", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1375", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_1376", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1381", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1383", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1389", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1396", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_1397", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1398", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_1399", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1401", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_1402", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1403", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_1404", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1409", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_1410", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1412", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_1413", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1419", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_1420", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1424", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1428", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1433", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1438", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1443", "(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1445", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1450", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1457", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1462", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1468", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1473", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1479", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1481", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1483", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1485", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1492", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1494", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1501", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1503", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1509", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1511", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1516", "(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1518", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1525", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1531", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1532", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1533", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1534", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1540", "!(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1541", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1547", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1548", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1549", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1550", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1556", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1557", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1563", "(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1565", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1569", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1571", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1575", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1581", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1589", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1593", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1595", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1597", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1603", "!(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_1604", "!(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_1605", "!(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_1615", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_1616", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_1617", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_1623", "!(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_1624", "!(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_1625", "!(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_1627", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_1628", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_1629", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_1633", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1637", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1639", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1643", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1645", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1649", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1653", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1655", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1659", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1661", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1670", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1672", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1676", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1678", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1682", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1684", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1688", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1694", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1698", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1700", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1704", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1708", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1711", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_1714", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_1719", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_1723", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_1727", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_1730", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_1743", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1750", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1765", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1774", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1780", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1791", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1792", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_1793", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1799", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1803", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1808", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1814", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1815", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_1816", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1827", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1834", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1841", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1843", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1845", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1851", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1858", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1863", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1864", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1871", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1872", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1878", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1879", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1886", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1887", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1893", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1894", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1901", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1902", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1908", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1909", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1916", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1917", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1925", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_1926", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1927", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1950", "(defined __need___FILE) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_1957", "(defined __need___FILE) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_1993", "(defined __need___FILE) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_2036", "(defined __need___FILE) && (defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_2037", "(defined __need___FILE) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_2040", "(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_2060", "(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_2063", "(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_2066", "(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_2072", "(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_2079", "(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_2085", "(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_2091", "(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_2097", "(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_2100", "(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_2103", "(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_2106", "(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_2108", "(defined __need___FILE) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_2110", "(defined __need___FILE) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_2111", "(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_2112", "(defined __need___FILE) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_2115", "(defined __need___FILE) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_2117", "(defined __need___FILE) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_2119", "(defined __need___FILE) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_2120", "(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_2121", "(defined __need___FILE) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_2125", "(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_2128", "(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_2131", "(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_2134", "(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_2137", "(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_2139", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); +__static_condition_renaming("__static_condition_default_2141", "!(defined _FILE_OFFSET_BITS) && (defined __need___FILE) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __need___FILE) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_2143", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __need___FILE) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_2146", "(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_2149", "(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_2152", "(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_2164", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2166", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2168", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2170", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2184", "(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2186", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2190", "(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2194", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2198", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2200", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2208", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2210", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2216", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2218", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2220", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2222", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2226", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2228", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2233", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2235", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2239", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2241", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2246", "(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2248", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2255", "(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2261", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2265", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2270", "(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2272", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2284", "(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2285", "(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_2286", "(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2291", "(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2297", "(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2308", "(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2314", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2322", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2324", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2326", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2328", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2339", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2341", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2342", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2344", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2346", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2347", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2350", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_2352", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_2356", "(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_2363", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2364", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_2365", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2367", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2368", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_2369", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2374", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2376", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2382", "(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2389", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_2390", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2391", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_2392", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2394", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_2395", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2396", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_2397", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2402", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_2403", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2405", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_2406", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2412", "(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_2413", "(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2417", "(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2421", "(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2426", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2431", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2436", "(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2438", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2443", "(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2450", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2455", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2461", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2466", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2472", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2474", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2476", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2478", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2485", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2487", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2494", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2496", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2502", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2504", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2509", "(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2511", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2518", "(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2524", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2525", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2526", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2527", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2533", "(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2534", "(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2540", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2541", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2542", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2543", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2549", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2550", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2556", "(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2558", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2562", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2564", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2568", "(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2574", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2582", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2586", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2588", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2590", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2596", "!(defined _FILE_OFFSET_BITS) && (defined __need___FILE) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __need___FILE) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_2597", "!(defined _FILE_OFFSET_BITS) && (defined __need___FILE) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __need___FILE) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_2598", "!(defined _FILE_OFFSET_BITS) && (defined __need___FILE) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __need___FILE) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_2608", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __need___FILE) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_2609", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __need___FILE) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_2610", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __need___FILE) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_2616", "!(defined _FILE_OFFSET_BITS) && (defined __need___FILE) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __need___FILE) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_2617", "!(defined _FILE_OFFSET_BITS) && (defined __need___FILE) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __need___FILE) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_2618", "!(defined _FILE_OFFSET_BITS) && (defined __need___FILE) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __need___FILE) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_2620", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __need___FILE) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_2621", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __need___FILE) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_2622", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __need___FILE) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_2626", "(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2630", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2632", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2636", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2638", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2642", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2646", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2648", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2652", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2654", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2663", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2665", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2669", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); __static_condition_renaming("__static_condition_default_2671", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2673", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2675", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2682", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2683", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2684", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2686", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2687", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2688", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2695", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2696", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2697", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2699", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2700", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2701", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2707", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2708", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2709", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2711", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2712", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2713", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2718", "(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2720", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2727", "(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2733", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2734", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2735", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2736", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2742", "(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2743", "(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2749", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2750", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2751", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2752", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2758", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2759", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2765", "(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2767", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2771", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2773", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2777", "(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2784", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2785", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2786", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2795", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2796", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2797", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2801", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2802", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2803", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2805", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2806", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2807", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2809", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2810", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2811", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2817", "!(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2818", "!(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_2819", "!(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2829", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2830", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_2831", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2837", "!(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2838", "!(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_2839", "!(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2841", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2842", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_2843", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2847", "(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2851", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2853", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2857", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2859", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2863", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2867", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2869", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2873", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2875", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2884", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2886", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2890", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2892", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2896", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2898", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2902", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2908", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2912", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2914", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2918", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2922", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2925", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_2928", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_2933", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_2937", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_2941", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_2944", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_2957", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2964", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2979", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2988", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2994", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_3005", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_3006", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_3007", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_3013", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_3017", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_3022", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_3028", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_3029", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_3030", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_3041", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_3048", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_3055", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_3057", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_3059", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_3065", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_3072", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_3077", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_3078", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_3085", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_3086", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_3092", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_3093", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_3100", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_3101", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_3107", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_3108", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_3115", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_3116", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_3122", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_3123", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_3130", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_3131", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_3139", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_3140", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_3141", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_3175", "!(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need_ptrdiff_t) || !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need_ptrdiff_t) || (defined _STDDEF_H_) && !(defined __need_ptrdiff_t)"); -__static_condition_renaming("__static_condition_default_3207", "(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_3233", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_3337", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __u_char_defined)"); -__static_condition_renaming("__static_condition_default_3339", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_3341", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined)"); -__static_condition_renaming("__static_condition_default_3343", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined)"); -__static_condition_renaming("__static_condition_default_3345", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_3347", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_3349", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_3351", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __nlink_t_defined)"); -__static_condition_renaming("__static_condition_default_3353", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __id_t_defined)"); -__static_condition_renaming("__static_condition_default_3355", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_3358", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_3360", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_3362", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __clock_t_defined)"); -__static_condition_renaming("__static_condition_default_3364", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __time_t_defined)"); -__static_condition_renaming("__static_condition_default_3366", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __clockid_t_defined)"); -__static_condition_renaming("__static_condition_default_3368", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timer_t_defined)"); -__static_condition_renaming("__static_condition_default_3385", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_3399", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_3405", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_3407", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __suseconds_t_defined)"); -__static_condition_renaming("__static_condition_default_3416", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_3433", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_3434", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_3449", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_3450", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_3468", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blksize_t_defined)"); -__static_condition_renaming("__static_condition_default_3470", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined)"); -__static_condition_renaming("__static_condition_default_3472", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_3474", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined)"); -__static_condition_renaming("__static_condition_default_3476", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_3478", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_3480", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_3535", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined)"); -__static_condition_renaming("__static_condition_default_3537", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined)"); -__static_condition_renaming("__static_condition_default_3539", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined)"); -__static_condition_renaming("__static_condition_default_3541", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined)"); -__static_condition_renaming("__static_condition_default_3543", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined)"); -__static_condition_renaming("__static_condition_default_3545", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && (defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined)"); -__static_condition_renaming("__static_condition_default_3549", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined)"); -__static_condition_renaming("__static_condition_default_3551", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined)"); -__static_condition_renaming("__static_condition_default_3555", "(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined)"); -__static_condition_renaming("__static_condition_default_3557", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined)"); -__static_condition_renaming("__static_condition_default_3560", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_3563", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_3568", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_3570", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_3646", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_3648", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_3661", "(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_3662", "(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_3669", "!(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_3671", "(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_3688", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_3690", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_3694", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_3696", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_3811", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_3896", "(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_3898", "(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_3900", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && (defined _STDLIB_H) || (defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_3916", "!(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_3918", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_3959", "(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_3960", "!(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_3961", "!(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_3963", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_3969", "!(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); -__static_condition_renaming("__static_condition_default_3970", "(defined __STRICT_ANSI__) && !(defined __need___FILE) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); -__static_condition_renaming("__static_condition_default_3971", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); -__static_condition_renaming("__static_condition_default_3972", "(defined __STRICT_ANSI__) && (defined __need___FILE) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); -__static_condition_renaming("__static_condition_default_3973", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); -__static_condition_renaming("__static_condition_default_3974", "(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); -__static_condition_renaming("__static_condition_default_3975", "!(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH) || (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); -__static_condition_renaming("__static_condition_default_3976", "!(defined _FORTIFY_SOURCE) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); -__static_condition_renaming("__static_condition_default_3977", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); -__static_condition_renaming("__static_condition_default_3978", "(defined __STRICT_ANSI__) && !(defined __need___FILE) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); -__static_condition_renaming("__static_condition_default_3979", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); -__static_condition_renaming("__static_condition_default_3980", "(defined __STRICT_ANSI__) && (defined __need___FILE) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); -__static_condition_renaming("__static_condition_default_3981", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); -__static_condition_renaming("__static_condition_default_3982", "(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); -__static_condition_renaming("__static_condition_default_3983", "!(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH) || (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); -__static_condition_renaming("__static_condition_default_3984", "(defined __STRICT_ANSI__) && !(defined __need___FILE) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); -__static_condition_renaming("__static_condition_default_3985", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); -__static_condition_renaming("__static_condition_default_3986", "(defined __STRICT_ANSI__) && (defined __need___FILE) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); -__static_condition_renaming("__static_condition_default_3987", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); -__static_condition_renaming("__static_condition_default_3988", "(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); -__static_condition_renaming("__static_condition_default_3989", "!(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH) || (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); -__static_condition_renaming("__static_condition_default_3994", "!(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined CONFIG_KGDB)"); -__static_condition_renaming("__static_condition_default_3995", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB)"); -__static_condition_renaming("__static_condition_default_3996", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB)"); -__static_condition_renaming("__static_condition_default_3997", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB)"); -__static_condition_renaming("__static_condition_default_3998", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB)"); -__static_condition_renaming("__static_condition_default_3999", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB)"); -__static_condition_renaming("__static_condition_default_4000", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && (defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB)"); -__static_condition_renaming("__static_condition_default_4001", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB)"); -__static_condition_renaming("__static_condition_default_4002", "!(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) && (defined CONFIG_KPROBES) || !(defined CONFIG_KGDB) && (defined CONFIG_XMON) && (defined CONFIG_KPROBES) || (defined CONFIG_KGDB) && (defined CONFIG_KPROBES)"); -__static_condition_renaming("__static_condition_default_4003", "!(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) && !(defined CONFIG_KPROBES) || !(defined CONFIG_KGDB) && (defined CONFIG_XMON) && !(defined CONFIG_KPROBES) || (defined CONFIG_KGDB) && !(defined CONFIG_KPROBES)"); -__static_condition_renaming("__static_condition_default_4004", "!(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) && (defined CONFIG_KPROBES) || !(defined CONFIG_KGDB) && (defined CONFIG_XMON) && (defined CONFIG_KPROBES) || (defined CONFIG_KGDB) && (defined CONFIG_KPROBES)"); -__static_condition_renaming("__static_condition_default_4005", "!(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); -__static_condition_renaming("__static_condition_default_4006", "!(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH) && (defined CONFIG_KPROBES)"); -__static_condition_renaming("__static_condition_default_4007", "!(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH) && !(defined CONFIG_KPROBES)"); -__static_condition_renaming("__static_condition_default_4008", "!(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH) && (defined CONFIG_KPROBES)"); -__static_condition_renaming("__static_condition_default_4009", "!(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); - -if (__static_condition_default_4009) -{ +__static_condition_renaming("__static_condition_default_2675", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2677", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2681", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2687", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2691", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2693", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2697", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2701", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2704", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_2707", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_2712", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_2716", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_2720", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_2723", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_2736", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2743", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2758", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2767", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2773", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2784", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2785", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_2786", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2792", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2796", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2801", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2807", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2808", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_2809", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2820", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2827", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2834", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2836", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2838", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2844", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2851", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2856", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2857", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2864", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2865", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2871", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2872", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2879", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2880", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2886", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2887", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2894", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2895", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2901", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2902", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2909", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2910", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2918", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_2919", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2920", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2954", "!(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need_ptrdiff_t) || !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need_ptrdiff_t) || (defined _STDDEF_H_) && !(defined __need_ptrdiff_t)"); +__static_condition_renaming("__static_condition_default_2986", "(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_3012", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_3148", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_3269", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined)"); +__static_condition_renaming("__static_condition_default_3271", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined)"); +__static_condition_renaming("__static_condition_default_3273", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined)"); +__static_condition_renaming("__static_condition_default_3275", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined)"); +__static_condition_renaming("__static_condition_default_3277", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined)"); +__static_condition_renaming("__static_condition_default_3279", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && (defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined)"); +__static_condition_renaming("__static_condition_default_3283", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined)"); +__static_condition_renaming("__static_condition_default_3285", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined)"); +__static_condition_renaming("__static_condition_default_3289", "(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined)"); +__static_condition_renaming("__static_condition_default_3291", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined)"); +__static_condition_renaming("__static_condition_default_3294", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_3297", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_3302", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_3304", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_3380", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_3382", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_3395", "(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_3396", "(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_3403", "!(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_3405", "(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_3422", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_3424", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_3428", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_3430", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_3545", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_3685", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_3686", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_3693", "!(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); +__static_condition_renaming("__static_condition_default_3694", "(defined __STRICT_ANSI__) && !(defined __need___FILE) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); +__static_condition_renaming("__static_condition_default_3695", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); +__static_condition_renaming("__static_condition_default_3696", "(defined __STRICT_ANSI__) && (defined __need___FILE) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); +__static_condition_renaming("__static_condition_default_3697", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); +__static_condition_renaming("__static_condition_default_3698", "(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); +__static_condition_renaming("__static_condition_default_3699", "!(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH) || (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); +__static_condition_renaming("__static_condition_default_3700", "!(defined _FORTIFY_SOURCE) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); +__static_condition_renaming("__static_condition_default_3701", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); +__static_condition_renaming("__static_condition_default_3702", "(defined __STRICT_ANSI__) && !(defined __need___FILE) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); +__static_condition_renaming("__static_condition_default_3703", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); +__static_condition_renaming("__static_condition_default_3704", "(defined __STRICT_ANSI__) && (defined __need___FILE) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); +__static_condition_renaming("__static_condition_default_3705", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); +__static_condition_renaming("__static_condition_default_3706", "(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); +__static_condition_renaming("__static_condition_default_3707", "!(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH) || (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); +__static_condition_renaming("__static_condition_default_3708", "(defined __STRICT_ANSI__) && !(defined __need___FILE) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); +__static_condition_renaming("__static_condition_default_3709", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); +__static_condition_renaming("__static_condition_default_3710", "(defined __STRICT_ANSI__) && (defined __need___FILE) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); +__static_condition_renaming("__static_condition_default_3711", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); +__static_condition_renaming("__static_condition_default_3712", "(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); +__static_condition_renaming("__static_condition_default_3713", "!(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH) || (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); +__static_condition_renaming("__static_condition_default_3718", "!(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined CONFIG_KGDB)"); +__static_condition_renaming("__static_condition_default_3719", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB)"); +__static_condition_renaming("__static_condition_default_3720", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB)"); +__static_condition_renaming("__static_condition_default_3721", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB)"); +__static_condition_renaming("__static_condition_default_3722", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB)"); +__static_condition_renaming("__static_condition_default_3723", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB)"); +__static_condition_renaming("__static_condition_default_3724", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && (defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB)"); +__static_condition_renaming("__static_condition_default_3725", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB)"); +__static_condition_renaming("__static_condition_default_3726", "!(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) && (defined CONFIG_KPROBES) || !(defined CONFIG_KGDB) && (defined CONFIG_XMON) && (defined CONFIG_KPROBES) || (defined CONFIG_KGDB) && (defined CONFIG_KPROBES)"); +__static_condition_renaming("__static_condition_default_3727", "!(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) && !(defined CONFIG_KPROBES) || !(defined CONFIG_KGDB) && (defined CONFIG_XMON) && !(defined CONFIG_KPROBES) || (defined CONFIG_KGDB) && !(defined CONFIG_KPROBES)"); +__static_condition_renaming("__static_condition_default_3728", "!(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) && (defined CONFIG_KPROBES) || !(defined CONFIG_KGDB) && (defined CONFIG_XMON) && (defined CONFIG_KPROBES) || (defined CONFIG_KGDB) && (defined CONFIG_KPROBES)"); +__static_condition_renaming("__static_condition_default_3729", "!(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); +__static_condition_renaming("__static_condition_default_3730", "!(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH) && (defined CONFIG_KPROBES)"); +__static_condition_renaming("__static_condition_default_3731", "!(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH) && !(defined CONFIG_KPROBES)"); +__static_condition_renaming("__static_condition_default_3732", "!(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH) && (defined CONFIG_KPROBES)"); +__static_condition_renaming("__static_condition_default_3733", "!(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); + +if (__static_condition_default_3733) { __static_parse_error("Unable to parse"); } }; @@ -2600,741 +2201,741 @@ typedef long int ____ssize_t_47;// L110:L172 typedef long int ____syscall_slong_t_48;// L93:L175 typedef unsigned long int ____syscall_ulong_t_49;// L94:L177 typedef ____off64_t_22 ____loff_t_50;// L181 -typedef ____quad_t_12 * (____qaddr_t_52);// L182 -typedef char * (____caddr_t_53);// L183 -typedef long int ____intptr_t_54;// L110:L186 -typedef unsigned int ____socklen_t_55;// L92:L189 -typedef ____ssize_t_47 __ssize_t_56;// L223 -typedef long int __ptrdiff_t_58;// L143:L324 -typedef long unsigned int __size_t_59;// L177:L209 -typedef ____gid_t_16 __gid_t_60;// L235 -typedef ____uid_t_15 __uid_t_62;// L240 -typedef ____off_t_21 __off_t_64;// L246 -typedef ____off64_t_22 __off_t_66;// L248 -typedef ____useconds_t_33 __useconds_t_68;// L258 -typedef ____pid_t_23 __pid_t_70;// L263 -typedef ____pid_t_23 __pid_t_72;// L263 -typedef ____intptr_t_54 __intptr_t_74;// L270 -typedef ____socklen_t_55 __socklen_t_75;// L277 -enum ____anonymous_tag_307_308 { -___PC_LINK_MAX_286, -___PC_MAX_CANON_287, -___PC_MAX_INPUT_288, -___PC_NAME_MAX_289, -___PC_PATH_MAX_290, -___PC_PIPE_BUF_291, -___PC_CHOWN_RESTRICTED_292, -___PC_NO_TRUNC_293, -___PC_VDISABLE_294, -___PC_SYNC_IO_295, -___PC_ASYNC_IO_296, -___PC_PRIO_IO_297, -___PC_SOCK_MAXBUF_298, -___PC_FILESIZEBITS_299, -___PC_REC_INCR_XFER_SIZE_300, -___PC_REC_MAX_XFER_SIZE_301, -___PC_REC_MIN_XFER_SIZE_302, -___PC_REC_XFER_ALIGN_303, -___PC_ALLOC_SIZE_MIN_304, -___PC_SYMLINK_MAX_305, -___PC_2_SYMLINKS_306, +typedef ____quad_t_12 * (____qaddr_t_51);// L182 +typedef char * (____caddr_t_52);// L183 +typedef long int ____intptr_t_53;// L110:L186 +typedef unsigned int ____socklen_t_54;// L92:L189 +typedef ____ssize_t_47 __ssize_t_55;// L223 +typedef long int __ptrdiff_t_56;// L143:L324 +typedef long unsigned int __size_t_57;// L177:L209 +typedef ____gid_t_16 __gid_t_58;// L235 +typedef ____uid_t_15 __uid_t_59;// L240 +typedef ____off_t_21 __off_t_60;// L246 +typedef ____off64_t_22 __off_t_61;// L248 +typedef ____useconds_t_33 __useconds_t_62;// L258 +typedef ____pid_t_23 __pid_t_63;// L263 +typedef ____pid_t_23 __pid_t_64;// L263 +typedef ____intptr_t_53 __intptr_t_65;// L270 +typedef ____socklen_t_54 __socklen_t_66;// L277 +enum ____anonymous_tag_249_250 { +___PC_LINK_MAX_228, +___PC_MAX_CANON_229, +___PC_MAX_INPUT_230, +___PC_NAME_MAX_231, +___PC_PATH_MAX_232, +___PC_PIPE_BUF_233, +___PC_CHOWN_RESTRICTED_234, +___PC_NO_TRUNC_235, +___PC_VDISABLE_236, +___PC_SYNC_IO_237, +___PC_ASYNC_IO_238, +___PC_PRIO_IO_239, +___PC_SOCK_MAXBUF_240, +___PC_FILESIZEBITS_241, +___PC_REC_INCR_XFER_SIZE_242, +___PC_REC_MAX_XFER_SIZE_243, +___PC_REC_MIN_XFER_SIZE_244, +___PC_REC_XFER_ALIGN_245, +___PC_ALLOC_SIZE_MIN_246, +___PC_SYMLINK_MAX_247, +___PC_2_SYMLINKS_248, }; -enum ____anonymous_tag_524_525 { -___SC_ARG_MAX_309, -___SC_CHILD_MAX_310, -___SC_CLK_TCK_311, -___SC_NGROUPS_MAX_312, -___SC_OPEN_MAX_313, -___SC_STREAM_MAX_314, -___SC_TZNAME_MAX_315, -___SC_JOB_CONTROL_316, -___SC_SAVED_IDS_317, -___SC_REALTIME_SIGNALS_318, -___SC_PRIORITY_SCHEDULING_319, -___SC_TIMERS_320, -___SC_ASYNCHRONOUS_IO_321, -___SC_PRIORITIZED_IO_322, -___SC_SYNCHRONIZED_IO_323, -___SC_FSYNC_324, -___SC_MAPPED_FILES_325, -___SC_MEMLOCK_326, -___SC_MEMLOCK_RANGE_327, -___SC_MEMORY_PROTECTION_328, -___SC_MESSAGE_PASSING_329, -___SC_SEMAPHORES_330, -___SC_SHARED_MEMORY_OBJECTS_331, -___SC_AIO_LISTIO_MAX_332, -___SC_AIO_MAX_333, -___SC_AIO_PRIO_DELTA_MAX_334, -___SC_DELAYTIMER_MAX_335, -___SC_MQ_OPEN_MAX_336, -___SC_MQ_PRIO_MAX_337, -___SC_VERSION_338, -___SC_PAGESIZE_339, -___SC_RTSIG_MAX_340, -___SC_SEM_NSEMS_MAX_341, -___SC_SEM_VALUE_MAX_342, -___SC_SIGQUEUE_MAX_343, -___SC_TIMER_MAX_344, -___SC_BC_BASE_MAX_345, -___SC_BC_DIM_MAX_346, -___SC_BC_SCALE_MAX_347, -___SC_BC_STRING_MAX_348, -___SC_COLL_WEIGHTS_MAX_349, -___SC_EQUIV_CLASS_MAX_350, -___SC_EXPR_NEST_MAX_351, -___SC_LINE_MAX_352, -___SC_RE_DUP_MAX_353, -___SC_CHARCLASS_NAME_MAX_354, -___SC_2_VERSION_355, -___SC_2_C_BIND_356, -___SC_2_C_DEV_357, -___SC_2_FORT_DEV_358, -___SC_2_FORT_RUN_359, -___SC_2_SW_DEV_360, -___SC_2_LOCALEDEF_361, -___SC_PII_362, -___SC_PII_XTI_363, -___SC_PII_SOCKET_364, -___SC_PII_INTERNET_365, -___SC_PII_OSI_366, -___SC_POLL_367, -___SC_SELECT_368, -___SC_UIO_MAXIOV_369, -___SC_IOV_MAX_370 = ___SC_UIO_MAXIOV_369 , -___SC_PII_INTERNET_STREAM_371, -___SC_PII_INTERNET_DGRAM_372, -___SC_PII_OSI_COTS_373, -___SC_PII_OSI_CLTS_374, -___SC_PII_OSI_M_375, -___SC_T_IOV_MAX_376, -___SC_THREADS_377, -___SC_THREAD_SAFE_FUNCTIONS_378, -___SC_GETGR_R_SIZE_MAX_379, -___SC_GETPW_R_SIZE_MAX_380, -___SC_LOGIN_NAME_MAX_381, -___SC_TTY_NAME_MAX_382, -___SC_THREAD_DESTRUCTOR_ITERATIONS_383, -___SC_THREAD_KEYS_MAX_384, -___SC_THREAD_STACK_MIN_385, -___SC_THREAD_THREADS_MAX_386, -___SC_THREAD_ATTR_STACKADDR_387, -___SC_THREAD_ATTR_STACKSIZE_388, -___SC_THREAD_PRIORITY_SCHEDULING_389, -___SC_THREAD_PRIO_INHERIT_390, -___SC_THREAD_PRIO_PROTECT_391, -___SC_THREAD_PROCESS_SHARED_392, -___SC_NPROCESSORS_CONF_393, -___SC_NPROCESSORS_ONLN_394, -___SC_PHYS_PAGES_395, -___SC_AVPHYS_PAGES_396, -___SC_ATEXIT_MAX_397, -___SC_PASS_MAX_398, -___SC_XOPEN_VERSION_399, -___SC_XOPEN_XCU_VERSION_400, -___SC_XOPEN_UNIX_401, -___SC_XOPEN_CRYPT_402, -___SC_XOPEN_ENH_I18N_403, -___SC_XOPEN_SHM_404, -___SC_2_CHAR_TERM_405, -___SC_2_C_VERSION_406, -___SC_2_UPE_407, -___SC_XOPEN_XPG2_408, -___SC_XOPEN_XPG3_409, -___SC_XOPEN_XPG4_410, -___SC_CHAR_BIT_411, -___SC_CHAR_MAX_412, -___SC_CHAR_MIN_413, -___SC_INT_MAX_414, -___SC_INT_MIN_415, -___SC_LONG_BIT_416, -___SC_WORD_BIT_417, -___SC_MB_LEN_MAX_418, -___SC_NZERO_419, -___SC_SSIZE_MAX_420, -___SC_SCHAR_MAX_421, -___SC_SCHAR_MIN_422, -___SC_SHRT_MAX_423, -___SC_SHRT_MIN_424, -___SC_UCHAR_MAX_425, -___SC_UINT_MAX_426, -___SC_ULONG_MAX_427, -___SC_USHRT_MAX_428, -___SC_NL_ARGMAX_429, -___SC_NL_LANGMAX_430, -___SC_NL_MSGMAX_431, -___SC_NL_NMAX_432, -___SC_NL_SETMAX_433, -___SC_NL_TEXTMAX_434, -___SC_XBS5_ILP32_OFF32_435, -___SC_XBS5_ILP32_OFFBIG_436, -___SC_XBS5_LP64_OFF64_437, -___SC_XBS5_LPBIG_OFFBIG_438, -___SC_XOPEN_LEGACY_439, -___SC_XOPEN_REALTIME_440, -___SC_XOPEN_REALTIME_THREADS_441, -___SC_ADVISORY_INFO_442, -___SC_BARRIERS_443, -___SC_BASE_444, -___SC_C_LANG_SUPPORT_445, -___SC_C_LANG_SUPPORT_R_446, -___SC_CLOCK_SELECTION_447, -___SC_CPUTIME_448, -___SC_THREAD_CPUTIME_449, -___SC_DEVICE_IO_450, -___SC_DEVICE_SPECIFIC_451, -___SC_DEVICE_SPECIFIC_R_452, -___SC_FD_MGMT_453, -___SC_FIFO_454, -___SC_PIPE_455, -___SC_FILE_ATTRIBUTES_456, -___SC_FILE_LOCKING_457, -___SC_FILE_SYSTEM_458, -___SC_MONOTONIC_CLOCK_459, -___SC_MULTI_PROCESS_460, -___SC_SINGLE_PROCESS_461, -___SC_NETWORKING_462, -___SC_READER_WRITER_LOCKS_463, -___SC_SPIN_LOCKS_464, -___SC_REGEXP_465, -___SC_REGEX_VERSION_466, -___SC_SHELL_467, -___SC_SIGNALS_468, -___SC_SPAWN_469, -___SC_SPORADIC_SERVER_470, -___SC_THREAD_SPORADIC_SERVER_471, -___SC_SYSTEM_DATABASE_472, -___SC_SYSTEM_DATABASE_R_473, -___SC_TIMEOUTS_474, -___SC_TYPED_MEMORY_OBJECTS_475, -___SC_USER_GROUPS_476, -___SC_USER_GROUPS_R_477, -___SC_2_PBS_478, -___SC_2_PBS_ACCOUNTING_479, -___SC_2_PBS_LOCATE_480, -___SC_2_PBS_MESSAGE_481, -___SC_2_PBS_TRACK_482, -___SC_SYMLOOP_MAX_483, -___SC_STREAMS_484, -___SC_2_PBS_CHECKPOINT_485, -___SC_V6_ILP32_OFF32_486, -___SC_V6_ILP32_OFFBIG_487, -___SC_V6_LP64_OFF64_488, -___SC_V6_LPBIG_OFFBIG_489, -___SC_HOST_NAME_MAX_490, -___SC_TRACE_491, -___SC_TRACE_EVENT_FILTER_492, -___SC_TRACE_INHERIT_493, -___SC_TRACE_LOG_494, -___SC_LEVEL1_ICACHE_SIZE_495, -___SC_LEVEL1_ICACHE_ASSOC_496, -___SC_LEVEL1_ICACHE_LINESIZE_497, -___SC_LEVEL1_DCACHE_SIZE_498, -___SC_LEVEL1_DCACHE_ASSOC_499, -___SC_LEVEL1_DCACHE_LINESIZE_500, -___SC_LEVEL2_CACHE_SIZE_501, -___SC_LEVEL2_CACHE_ASSOC_502, -___SC_LEVEL2_CACHE_LINESIZE_503, -___SC_LEVEL3_CACHE_SIZE_504, -___SC_LEVEL3_CACHE_ASSOC_505, -___SC_LEVEL3_CACHE_LINESIZE_506, -___SC_LEVEL4_CACHE_SIZE_507, -___SC_LEVEL4_CACHE_ASSOC_508, -___SC_LEVEL4_CACHE_LINESIZE_509, -___SC_IPV6_510 = ___SC_LEVEL1_ICACHE_SIZE_495 + 50, -___SC_RAW_SOCKETS_511, -___SC_V7_ILP32_OFF32_512, -___SC_V7_ILP32_OFFBIG_513, -___SC_V7_LP64_OFF64_514, -___SC_V7_LPBIG_OFFBIG_515, -___SC_SS_REPL_MAX_516, -___SC_TRACE_EVENT_NAME_MAX_517, -___SC_TRACE_NAME_MAX_518, -___SC_TRACE_SYS_MAX_519, -___SC_TRACE_USER_EVENT_MAX_520, -___SC_XOPEN_STREAMS_521, -___SC_THREAD_ROBUST_PRIO_INHERIT_522, -___SC_THREAD_ROBUST_PRIO_PROTECT_523, +enum ____anonymous_tag_466_467 { +___SC_ARG_MAX_251, +___SC_CHILD_MAX_252, +___SC_CLK_TCK_253, +___SC_NGROUPS_MAX_254, +___SC_OPEN_MAX_255, +___SC_STREAM_MAX_256, +___SC_TZNAME_MAX_257, +___SC_JOB_CONTROL_258, +___SC_SAVED_IDS_259, +___SC_REALTIME_SIGNALS_260, +___SC_PRIORITY_SCHEDULING_261, +___SC_TIMERS_262, +___SC_ASYNCHRONOUS_IO_263, +___SC_PRIORITIZED_IO_264, +___SC_SYNCHRONIZED_IO_265, +___SC_FSYNC_266, +___SC_MAPPED_FILES_267, +___SC_MEMLOCK_268, +___SC_MEMLOCK_RANGE_269, +___SC_MEMORY_PROTECTION_270, +___SC_MESSAGE_PASSING_271, +___SC_SEMAPHORES_272, +___SC_SHARED_MEMORY_OBJECTS_273, +___SC_AIO_LISTIO_MAX_274, +___SC_AIO_MAX_275, +___SC_AIO_PRIO_DELTA_MAX_276, +___SC_DELAYTIMER_MAX_277, +___SC_MQ_OPEN_MAX_278, +___SC_MQ_PRIO_MAX_279, +___SC_VERSION_280, +___SC_PAGESIZE_281, +___SC_RTSIG_MAX_282, +___SC_SEM_NSEMS_MAX_283, +___SC_SEM_VALUE_MAX_284, +___SC_SIGQUEUE_MAX_285, +___SC_TIMER_MAX_286, +___SC_BC_BASE_MAX_287, +___SC_BC_DIM_MAX_288, +___SC_BC_SCALE_MAX_289, +___SC_BC_STRING_MAX_290, +___SC_COLL_WEIGHTS_MAX_291, +___SC_EQUIV_CLASS_MAX_292, +___SC_EXPR_NEST_MAX_293, +___SC_LINE_MAX_294, +___SC_RE_DUP_MAX_295, +___SC_CHARCLASS_NAME_MAX_296, +___SC_2_VERSION_297, +___SC_2_C_BIND_298, +___SC_2_C_DEV_299, +___SC_2_FORT_DEV_300, +___SC_2_FORT_RUN_301, +___SC_2_SW_DEV_302, +___SC_2_LOCALEDEF_303, +___SC_PII_304, +___SC_PII_XTI_305, +___SC_PII_SOCKET_306, +___SC_PII_INTERNET_307, +___SC_PII_OSI_308, +___SC_POLL_309, +___SC_SELECT_310, +___SC_UIO_MAXIOV_311, +___SC_IOV_MAX_312 = ___SC_UIO_MAXIOV_311 , +___SC_PII_INTERNET_STREAM_313, +___SC_PII_INTERNET_DGRAM_314, +___SC_PII_OSI_COTS_315, +___SC_PII_OSI_CLTS_316, +___SC_PII_OSI_M_317, +___SC_T_IOV_MAX_318, +___SC_THREADS_319, +___SC_THREAD_SAFE_FUNCTIONS_320, +___SC_GETGR_R_SIZE_MAX_321, +___SC_GETPW_R_SIZE_MAX_322, +___SC_LOGIN_NAME_MAX_323, +___SC_TTY_NAME_MAX_324, +___SC_THREAD_DESTRUCTOR_ITERATIONS_325, +___SC_THREAD_KEYS_MAX_326, +___SC_THREAD_STACK_MIN_327, +___SC_THREAD_THREADS_MAX_328, +___SC_THREAD_ATTR_STACKADDR_329, +___SC_THREAD_ATTR_STACKSIZE_330, +___SC_THREAD_PRIORITY_SCHEDULING_331, +___SC_THREAD_PRIO_INHERIT_332, +___SC_THREAD_PRIO_PROTECT_333, +___SC_THREAD_PROCESS_SHARED_334, +___SC_NPROCESSORS_CONF_335, +___SC_NPROCESSORS_ONLN_336, +___SC_PHYS_PAGES_337, +___SC_AVPHYS_PAGES_338, +___SC_ATEXIT_MAX_339, +___SC_PASS_MAX_340, +___SC_XOPEN_VERSION_341, +___SC_XOPEN_XCU_VERSION_342, +___SC_XOPEN_UNIX_343, +___SC_XOPEN_CRYPT_344, +___SC_XOPEN_ENH_I18N_345, +___SC_XOPEN_SHM_346, +___SC_2_CHAR_TERM_347, +___SC_2_C_VERSION_348, +___SC_2_UPE_349, +___SC_XOPEN_XPG2_350, +___SC_XOPEN_XPG3_351, +___SC_XOPEN_XPG4_352, +___SC_CHAR_BIT_353, +___SC_CHAR_MAX_354, +___SC_CHAR_MIN_355, +___SC_INT_MAX_356, +___SC_INT_MIN_357, +___SC_LONG_BIT_358, +___SC_WORD_BIT_359, +___SC_MB_LEN_MAX_360, +___SC_NZERO_361, +___SC_SSIZE_MAX_362, +___SC_SCHAR_MAX_363, +___SC_SCHAR_MIN_364, +___SC_SHRT_MAX_365, +___SC_SHRT_MIN_366, +___SC_UCHAR_MAX_367, +___SC_UINT_MAX_368, +___SC_ULONG_MAX_369, +___SC_USHRT_MAX_370, +___SC_NL_ARGMAX_371, +___SC_NL_LANGMAX_372, +___SC_NL_MSGMAX_373, +___SC_NL_NMAX_374, +___SC_NL_SETMAX_375, +___SC_NL_TEXTMAX_376, +___SC_XBS5_ILP32_OFF32_377, +___SC_XBS5_ILP32_OFFBIG_378, +___SC_XBS5_LP64_OFF64_379, +___SC_XBS5_LPBIG_OFFBIG_380, +___SC_XOPEN_LEGACY_381, +___SC_XOPEN_REALTIME_382, +___SC_XOPEN_REALTIME_THREADS_383, +___SC_ADVISORY_INFO_384, +___SC_BARRIERS_385, +___SC_BASE_386, +___SC_C_LANG_SUPPORT_387, +___SC_C_LANG_SUPPORT_R_388, +___SC_CLOCK_SELECTION_389, +___SC_CPUTIME_390, +___SC_THREAD_CPUTIME_391, +___SC_DEVICE_IO_392, +___SC_DEVICE_SPECIFIC_393, +___SC_DEVICE_SPECIFIC_R_394, +___SC_FD_MGMT_395, +___SC_FIFO_396, +___SC_PIPE_397, +___SC_FILE_ATTRIBUTES_398, +___SC_FILE_LOCKING_399, +___SC_FILE_SYSTEM_400, +___SC_MONOTONIC_CLOCK_401, +___SC_MULTI_PROCESS_402, +___SC_SINGLE_PROCESS_403, +___SC_NETWORKING_404, +___SC_READER_WRITER_LOCKS_405, +___SC_SPIN_LOCKS_406, +___SC_REGEXP_407, +___SC_REGEX_VERSION_408, +___SC_SHELL_409, +___SC_SIGNALS_410, +___SC_SPAWN_411, +___SC_SPORADIC_SERVER_412, +___SC_THREAD_SPORADIC_SERVER_413, +___SC_SYSTEM_DATABASE_414, +___SC_SYSTEM_DATABASE_R_415, +___SC_TIMEOUTS_416, +___SC_TYPED_MEMORY_OBJECTS_417, +___SC_USER_GROUPS_418, +___SC_USER_GROUPS_R_419, +___SC_2_PBS_420, +___SC_2_PBS_ACCOUNTING_421, +___SC_2_PBS_LOCATE_422, +___SC_2_PBS_MESSAGE_423, +___SC_2_PBS_TRACK_424, +___SC_SYMLOOP_MAX_425, +___SC_STREAMS_426, +___SC_2_PBS_CHECKPOINT_427, +___SC_V6_ILP32_OFF32_428, +___SC_V6_ILP32_OFFBIG_429, +___SC_V6_LP64_OFF64_430, +___SC_V6_LPBIG_OFFBIG_431, +___SC_HOST_NAME_MAX_432, +___SC_TRACE_433, +___SC_TRACE_EVENT_FILTER_434, +___SC_TRACE_INHERIT_435, +___SC_TRACE_LOG_436, +___SC_LEVEL1_ICACHE_SIZE_437, +___SC_LEVEL1_ICACHE_ASSOC_438, +___SC_LEVEL1_ICACHE_LINESIZE_439, +___SC_LEVEL1_DCACHE_SIZE_440, +___SC_LEVEL1_DCACHE_ASSOC_441, +___SC_LEVEL1_DCACHE_LINESIZE_442, +___SC_LEVEL2_CACHE_SIZE_443, +___SC_LEVEL2_CACHE_ASSOC_444, +___SC_LEVEL2_CACHE_LINESIZE_445, +___SC_LEVEL3_CACHE_SIZE_446, +___SC_LEVEL3_CACHE_ASSOC_447, +___SC_LEVEL3_CACHE_LINESIZE_448, +___SC_LEVEL4_CACHE_SIZE_449, +___SC_LEVEL4_CACHE_ASSOC_450, +___SC_LEVEL4_CACHE_LINESIZE_451, +___SC_IPV6_452 = ___SC_LEVEL1_ICACHE_SIZE_437 + 50, +___SC_RAW_SOCKETS_453, +___SC_V7_ILP32_OFF32_454, +___SC_V7_ILP32_OFFBIG_455, +___SC_V7_LP64_OFF64_456, +___SC_V7_LPBIG_OFFBIG_457, +___SC_SS_REPL_MAX_458, +___SC_TRACE_EVENT_NAME_MAX_459, +___SC_TRACE_NAME_MAX_460, +___SC_TRACE_SYS_MAX_461, +___SC_TRACE_USER_EVENT_MAX_462, +___SC_XOPEN_STREAMS_463, +___SC_THREAD_ROBUST_PRIO_INHERIT_464, +___SC_THREAD_ROBUST_PRIO_PROTECT_465, }; -enum ____anonymous_tag_590_591 { -___CS_PATH_526, -___CS_V6_WIDTH_RESTRICTED_ENVS_527, -___CS_GNU_LIBC_VERSION_528, -___CS_GNU_LIBPTHREAD_VERSION_529, -___CS_V5_WIDTH_RESTRICTED_ENVS_530, -___CS_V7_WIDTH_RESTRICTED_ENVS_531, -___CS_LFS_CFLAGS_532 = 1000, -___CS_LFS_LDFLAGS_533, -___CS_LFS_LIBS_534, -___CS_LFS_LINTFLAGS_535, -___CS_LFS64_CFLAGS_536, -___CS_LFS64_LDFLAGS_537, -___CS_LFS64_LIBS_538, -___CS_LFS64_LINTFLAGS_539, -___CS_XBS5_ILP32_OFF32_CFLAGS_540 = 1100, -___CS_XBS5_ILP32_OFF32_LDFLAGS_541, -___CS_XBS5_ILP32_OFF32_LIBS_542, -___CS_XBS5_ILP32_OFF32_LINTFLAGS_543, -___CS_XBS5_ILP32_OFFBIG_CFLAGS_544, -___CS_XBS5_ILP32_OFFBIG_LDFLAGS_545, -___CS_XBS5_ILP32_OFFBIG_LIBS_546, -___CS_XBS5_ILP32_OFFBIG_LINTFLAGS_547, -___CS_XBS5_LP64_OFF64_CFLAGS_548, -___CS_XBS5_LP64_OFF64_LDFLAGS_549, -___CS_XBS5_LP64_OFF64_LIBS_550, -___CS_XBS5_LP64_OFF64_LINTFLAGS_551, -___CS_XBS5_LPBIG_OFFBIG_CFLAGS_552, -___CS_XBS5_LPBIG_OFFBIG_LDFLAGS_553, -___CS_XBS5_LPBIG_OFFBIG_LIBS_554, -___CS_XBS5_LPBIG_OFFBIG_LINTFLAGS_555, -___CS_POSIX_V6_ILP32_OFF32_CFLAGS_556, -___CS_POSIX_V6_ILP32_OFF32_LDFLAGS_557, -___CS_POSIX_V6_ILP32_OFF32_LIBS_558, -___CS_POSIX_V6_ILP32_OFF32_LINTFLAGS_559, -___CS_POSIX_V6_ILP32_OFFBIG_CFLAGS_560, -___CS_POSIX_V6_ILP32_OFFBIG_LDFLAGS_561, -___CS_POSIX_V6_ILP32_OFFBIG_LIBS_562, -___CS_POSIX_V6_ILP32_OFFBIG_LINTFLAGS_563, -___CS_POSIX_V6_LP64_OFF64_CFLAGS_564, -___CS_POSIX_V6_LP64_OFF64_LDFLAGS_565, -___CS_POSIX_V6_LP64_OFF64_LIBS_566, -___CS_POSIX_V6_LP64_OFF64_LINTFLAGS_567, -___CS_POSIX_V6_LPBIG_OFFBIG_CFLAGS_568, -___CS_POSIX_V6_LPBIG_OFFBIG_LDFLAGS_569, -___CS_POSIX_V6_LPBIG_OFFBIG_LIBS_570, -___CS_POSIX_V6_LPBIG_OFFBIG_LINTFLAGS_571, -___CS_POSIX_V7_ILP32_OFF32_CFLAGS_572, -___CS_POSIX_V7_ILP32_OFF32_LDFLAGS_573, -___CS_POSIX_V7_ILP32_OFF32_LIBS_574, -___CS_POSIX_V7_ILP32_OFF32_LINTFLAGS_575, -___CS_POSIX_V7_ILP32_OFFBIG_CFLAGS_576, -___CS_POSIX_V7_ILP32_OFFBIG_LDFLAGS_577, -___CS_POSIX_V7_ILP32_OFFBIG_LIBS_578, -___CS_POSIX_V7_ILP32_OFFBIG_LINTFLAGS_579, -___CS_POSIX_V7_LP64_OFF64_CFLAGS_580, -___CS_POSIX_V7_LP64_OFF64_LDFLAGS_581, -___CS_POSIX_V7_LP64_OFF64_LIBS_582, -___CS_POSIX_V7_LP64_OFF64_LINTFLAGS_583, -___CS_POSIX_V7_LPBIG_OFFBIG_CFLAGS_584, -___CS_POSIX_V7_LPBIG_OFFBIG_LDFLAGS_585, -___CS_POSIX_V7_LPBIG_OFFBIG_LIBS_586, -___CS_POSIX_V7_LPBIG_OFFBIG_LINTFLAGS_587, -___CS_V6_ENV_588, -___CS_V7_ENV_589, +enum ____anonymous_tag_532_533 { +___CS_PATH_468, +___CS_V6_WIDTH_RESTRICTED_ENVS_469, +___CS_GNU_LIBC_VERSION_470, +___CS_GNU_LIBPTHREAD_VERSION_471, +___CS_V5_WIDTH_RESTRICTED_ENVS_472, +___CS_V7_WIDTH_RESTRICTED_ENVS_473, +___CS_LFS_CFLAGS_474 = 1000, +___CS_LFS_LDFLAGS_475, +___CS_LFS_LIBS_476, +___CS_LFS_LINTFLAGS_477, +___CS_LFS64_CFLAGS_478, +___CS_LFS64_LDFLAGS_479, +___CS_LFS64_LIBS_480, +___CS_LFS64_LINTFLAGS_481, +___CS_XBS5_ILP32_OFF32_CFLAGS_482 = 1100, +___CS_XBS5_ILP32_OFF32_LDFLAGS_483, +___CS_XBS5_ILP32_OFF32_LIBS_484, +___CS_XBS5_ILP32_OFF32_LINTFLAGS_485, +___CS_XBS5_ILP32_OFFBIG_CFLAGS_486, +___CS_XBS5_ILP32_OFFBIG_LDFLAGS_487, +___CS_XBS5_ILP32_OFFBIG_LIBS_488, +___CS_XBS5_ILP32_OFFBIG_LINTFLAGS_489, +___CS_XBS5_LP64_OFF64_CFLAGS_490, +___CS_XBS5_LP64_OFF64_LDFLAGS_491, +___CS_XBS5_LP64_OFF64_LIBS_492, +___CS_XBS5_LP64_OFF64_LINTFLAGS_493, +___CS_XBS5_LPBIG_OFFBIG_CFLAGS_494, +___CS_XBS5_LPBIG_OFFBIG_LDFLAGS_495, +___CS_XBS5_LPBIG_OFFBIG_LIBS_496, +___CS_XBS5_LPBIG_OFFBIG_LINTFLAGS_497, +___CS_POSIX_V6_ILP32_OFF32_CFLAGS_498, +___CS_POSIX_V6_ILP32_OFF32_LDFLAGS_499, +___CS_POSIX_V6_ILP32_OFF32_LIBS_500, +___CS_POSIX_V6_ILP32_OFF32_LINTFLAGS_501, +___CS_POSIX_V6_ILP32_OFFBIG_CFLAGS_502, +___CS_POSIX_V6_ILP32_OFFBIG_LDFLAGS_503, +___CS_POSIX_V6_ILP32_OFFBIG_LIBS_504, +___CS_POSIX_V6_ILP32_OFFBIG_LINTFLAGS_505, +___CS_POSIX_V6_LP64_OFF64_CFLAGS_506, +___CS_POSIX_V6_LP64_OFF64_LDFLAGS_507, +___CS_POSIX_V6_LP64_OFF64_LIBS_508, +___CS_POSIX_V6_LP64_OFF64_LINTFLAGS_509, +___CS_POSIX_V6_LPBIG_OFFBIG_CFLAGS_510, +___CS_POSIX_V6_LPBIG_OFFBIG_LDFLAGS_511, +___CS_POSIX_V6_LPBIG_OFFBIG_LIBS_512, +___CS_POSIX_V6_LPBIG_OFFBIG_LINTFLAGS_513, +___CS_POSIX_V7_ILP32_OFF32_CFLAGS_514, +___CS_POSIX_V7_ILP32_OFF32_LDFLAGS_515, +___CS_POSIX_V7_ILP32_OFF32_LIBS_516, +___CS_POSIX_V7_ILP32_OFF32_LINTFLAGS_517, +___CS_POSIX_V7_ILP32_OFFBIG_CFLAGS_518, +___CS_POSIX_V7_ILP32_OFFBIG_LDFLAGS_519, +___CS_POSIX_V7_ILP32_OFFBIG_LIBS_520, +___CS_POSIX_V7_ILP32_OFFBIG_LINTFLAGS_521, +___CS_POSIX_V7_LP64_OFF64_CFLAGS_522, +___CS_POSIX_V7_LP64_OFF64_LDFLAGS_523, +___CS_POSIX_V7_LP64_OFF64_LIBS_524, +___CS_POSIX_V7_LP64_OFF64_LINTFLAGS_525, +___CS_POSIX_V7_LPBIG_OFFBIG_CFLAGS_526, +___CS_POSIX_V7_LPBIG_OFFBIG_LDFLAGS_527, +___CS_POSIX_V7_LPBIG_OFFBIG_LIBS_528, +___CS_POSIX_V7_LPBIG_OFFBIG_LINTFLAGS_529, +___CS_V6_ENV_530, +___CS_V7_ENV_531, }; -typedef struct __forward_tag_reference_1084 __FILE_1085;// L48 -typedef struct __forward_tag_reference_1084 ____FILE_1086;// L64 -union ____anonymous_tag_1087_1088 { -unsigned int ____wch_1089;// L265 -char ____wchb_1090[4];// L92 +typedef struct __forward_tag_reference_937 __FILE_938;// L48 +typedef struct __forward_tag_reference_937 ____FILE_939;// L64 +union ____anonymous_tag_940_941 { +unsigned int ____wch_942;// L265 +char ____wchb_943[4];// L92 }; -struct ____anonymous_tag_1091_1092 { -int ____count_1093;// L84 -union ____anonymous_tag_1087_1088 ____value_1094;// L85 +struct ____anonymous_tag_944_945 { +int ____count_946;// L84 +union ____anonymous_tag_940_941 ____value_947;// L85 }; -typedef struct ____anonymous_tag_1091_1092 ____mbstate_t_1095;// L82:L94 -struct ____anonymous_tag_1096_1097 { -____off_t_21 ____pos_1098;// L0 -____mbstate_t_1095 ____state_1100;// L0 +typedef struct ____anonymous_tag_944_945 ____mbstate_t_948;// L82:L94 +struct ____anonymous_tag_949_950 { +____off_t_21 ____pos_951;// L0 +____mbstate_t_948 ____state_952;// L0 }; -typedef struct ____anonymous_tag_1096_1097 ___G_fpos_t_1103;// L21:L25 -struct ____anonymous_tag_1104_1105 { -____off64_t_22 ____pos_1106;// L0 -____mbstate_t_1095 ____state_1108;// L0 +typedef struct ____anonymous_tag_949_950 ___G_fpos_t_955;// L21:L25 +struct ____anonymous_tag_956_957 { +____off64_t_22 ____pos_958;// L0 +____mbstate_t_948 ____state_959;// L0 }; -typedef struct ____anonymous_tag_1104_1105 ___G_fpos64_t_1111;// L26:L30 -typedef __builtin_va_list ____gnuc_va_list_1112;// L40 -typedef void ___IO_lock_t_1114;// L150 -struct ___IO_marker_1116 { -struct __forward_tag_reference_1115 * (___next_1117);// L0 -struct __forward_tag_reference_1084 * (___sbuf_1118);// L0 -int ___pos_1119;// L162 +typedef struct ____anonymous_tag_956_957 ___G_fpos64_t_962;// L26:L30 +typedef __builtin_va_list ____gnuc_va_list_963;// L40 +typedef void ___IO_lock_t_965;// L150 +struct ___IO_marker_967 { +struct __forward_tag_reference_966 * (___next_968);// L0 +struct __forward_tag_reference_937 * (___sbuf_969);// L0 +int ___pos_970;// L162 }; -enum ____codecvt_result_1124 { -____codecvt_ok_1120, -____codecvt_partial_1121, -____codecvt_error_1122, -____codecvt_noconv_1123, +enum ____codecvt_result_975 { +____codecvt_ok_971, +____codecvt_partial_972, +____codecvt_error_973, +____codecvt_noconv_974, }; -struct ___IO_FILE_1125 { -int ___flags_1126;// L242 -char * (___IO_read_ptr_1127);// L247 -char * (___IO_read_end_1128);// L248 -char * (___IO_read_base_1129);// L249 -char * (___IO_write_base_1130);// L250 -char * (___IO_write_ptr_1131);// L251 -char * (___IO_write_end_1132);// L252 -char * (___IO_buf_base_1133);// L253 -char * (___IO_buf_end_1134);// L254 -char * (___IO_save_base_1135);// L256 -char * (___IO_backup_base_1136);// L257 -char * (___IO_save_end_1137);// L258 -struct ___IO_marker_1116 * (___markers_1138);// L260 -struct __forward_tag_reference_1084 * (___chain_1139);// L0 -int ___fileno_1140;// L264 -int ___flags2_1141;// L268 -____off_t_21 ___old_offset_1142;// L0 -unsigned short ___cur_column_1144;// L274 -signed char ___vtable_offset_1145;// L275 -char ___shortbuf_1146[1];// L276 -___IO_lock_t_1114 * (___lock_1147);// L0 +struct ___IO_FILE_976 { +int ___flags_977;// L242 +char * (___IO_read_ptr_978);// L247 +char * (___IO_read_end_979);// L248 +char * (___IO_read_base_980);// L249 +char * (___IO_write_base_981);// L250 +char * (___IO_write_ptr_982);// L251 +char * (___IO_write_end_983);// L252 +char * (___IO_buf_base_984);// L253 +char * (___IO_buf_end_985);// L254 +char * (___IO_save_base_986);// L256 +char * (___IO_backup_base_987);// L257 +char * (___IO_save_end_988);// L258 +struct ___IO_marker_967 * (___markers_989);// L260 +struct __forward_tag_reference_937 * (___chain_990);// L0 +int ___fileno_991;// L264 +int ___flags2_992;// L268 +____off_t_21 ___old_offset_993;// L0 +unsigned short ___cur_column_994;// L274 +signed char ___vtable_offset_995;// L275 +char ___shortbuf_996[1];// L276 +___IO_lock_t_965 * (___lock_997);// L0 }; -struct ___IO_FILE_1150 { -int ___flags_1151;// L242 -char * (___IO_read_ptr_1152);// L247 -char * (___IO_read_end_1153);// L248 -char * (___IO_read_base_1154);// L249 -char * (___IO_write_base_1155);// L250 -char * (___IO_write_ptr_1156);// L251 -char * (___IO_write_end_1157);// L252 -char * (___IO_buf_base_1158);// L253 -char * (___IO_buf_end_1159);// L254 -char * (___IO_save_base_1160);// L256 -char * (___IO_backup_base_1161);// L257 -char * (___IO_save_end_1162);// L258 -struct ___IO_marker_1116 * (___markers_1163);// L260 -struct __forward_tag_reference_1084 * (___chain_1164);// L0 -int ___fileno_1165;// L264 -int ___flags2_1166;// L268 -____off_t_21 ___old_offset_1167;// L0 -unsigned short ___cur_column_1169;// L274 -signed char ___vtable_offset_1170;// L275 -char ___shortbuf_1171[1];// L276 -___IO_lock_t_1114 * (___lock_1172);// L0 -____off64_t_22 ___offset_1174;// L0 -void * (____pad1_1176);// L297 -void * (____pad2_1177);// L298 -void * (____pad3_1178);// L299 -void * (____pad4_1179);// L300 -__size_t_59 ____pad5_1180;// L0 -int ___mode_1181;// L303 -char ___unused2_1182[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +struct ___IO_FILE_1000 { +int ___flags_1001;// L242 +char * (___IO_read_ptr_1002);// L247 +char * (___IO_read_end_1003);// L248 +char * (___IO_read_base_1004);// L249 +char * (___IO_write_base_1005);// L250 +char * (___IO_write_ptr_1006);// L251 +char * (___IO_write_end_1007);// L252 +char * (___IO_buf_base_1008);// L253 +char * (___IO_buf_end_1009);// L254 +char * (___IO_save_base_1010);// L256 +char * (___IO_backup_base_1011);// L257 +char * (___IO_save_end_1012);// L258 +struct ___IO_marker_967 * (___markers_1013);// L260 +struct __forward_tag_reference_937 * (___chain_1014);// L0 +int ___fileno_1015;// L264 +int ___flags2_1016;// L268 +____off_t_21 ___old_offset_1017;// L0 +unsigned short ___cur_column_1018;// L274 +signed char ___vtable_offset_1019;// L275 +char ___shortbuf_1020[1];// L276 +___IO_lock_t_965 * (___lock_1021);// L0 +____off64_t_22 ___offset_1023;// L0 +void * (____pad1_1024);// L297 +void * (____pad2_1025);// L298 +void * (____pad3_1026);// L299 +void * (____pad4_1027);// L300 +__size_t_57 ____pad5_1028;// L0 +int ___mode_1029;// L303 +char ___unused2_1030[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -struct ___IO_FILE_complete_1183 { -struct ___IO_FILE_1125 ___file_1184;// L286 -____off64_t_22 ___offset_1186;// L0 -void * (____pad1_1188);// L297 -void * (____pad2_1189);// L298 -void * (____pad3_1190);// L299 -void * (____pad4_1191);// L300 -__size_t_59 ____pad5_1192;// L0 -int ___mode_1193;// L303 -char ___unused2_1194[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +struct ___IO_FILE_complete_1031 { +struct ___IO_FILE_976 ___file_1032;// L286 +____off64_t_22 ___offset_1034;// L0 +void * (____pad1_1035);// L297 +void * (____pad2_1036);// L298 +void * (____pad3_1037);// L299 +void * (____pad4_1038);// L300 +__size_t_57 ____pad5_1039;// L0 +int ___mode_1040;// L303 +char ___unused2_1041[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -typedef struct ___IO_FILE_1125 ___IO_FILE_1197;// L310 -typedef struct ___IO_FILE_1150 ___IO_FILE_1198;// L310 -typedef ____ssize_t_47 (____io_read_fn_1207) (void * (____cookie_1204), char * (____buf_1205), __size_t_59 ____nbytes_1206);// L333 -typedef ____ssize_t_47 (____io_write_fn_1212) (void * (____cookie_1209), const char * (____buf_1210), __size_t_59 ____n_1211);// L341:L342 -typedef int (____io_seek_fn_1218) (void * (____cookie_1214), ____off64_t_22 * (____pos_1215), int ____w_1217);// L350 -typedef int (____io_close_fn_1221) (void * (____cookie_1220));// L353 -typedef ____gnuc_va_list_1112 __va_list_1305;// L79 -typedef ___G_fpos_t_1103 __fpos_t_1307;// L110 -typedef ___G_fpos64_t_1111 __fpos_t_1309;// L112 -extern const char * const __sys_errlist_1850[];// L27 -typedef long int __ptrdiff_t_2112;// L143:L324 -typedef int __wchar_t_2113;// L243:L321 -struct ____anonymous_tag_2114_2115 { -long long ____max_align_ll_2116;// L416 -long double ____max_align_ld_2117;// L417 +typedef struct ___IO_FILE_976 ___IO_FILE_1044;// L310 +typedef struct ___IO_FILE_1000 ___IO_FILE_1045;// L310 +typedef ____ssize_t_47 (____io_read_fn_1054) (void * (____cookie_1051), char * (____buf_1052), __size_t_57 ____nbytes_1053);// L333 +typedef ____ssize_t_47 (____io_write_fn_1058) (void * (____cookie_1055), const char * (____buf_1056), __size_t_57 ____n_1057);// L341:L342 +typedef int (____io_seek_fn_1062) (void * (____cookie_1059), ____off64_t_22 * (____pos_1060), int ____w_1061);// L350 +typedef int (____io_close_fn_1064) (void * (____cookie_1063));// L353 +typedef ____gnuc_va_list_963 __va_list_1145;// L79 +typedef ___G_fpos_t_955 __fpos_t_1147;// L110 +typedef ___G_fpos64_t_962 __fpos_t_1149;// L112 +extern const char * const __sys_errlist_1666[];// L27 +typedef long int __ptrdiff_t_1928;// L143:L324 +typedef int __wchar_t_1929;// L243:L321 +struct ____anonymous_tag_1930_1931 { +long long ____max_align_ll_1932;// L416 +long double ____max_align_ld_1933;// L417 }; -typedef struct ____anonymous_tag_2114_2115 __max_align_t_2118;// L415:L426 -typedef struct __forward_tag_reference_1084 __FILE_2119;// L48 -union ____anonymous_tag_2120_2121 { -unsigned int ____wch_2122;// L265 -char ____wchb_2123[4];// L92 +typedef struct ____anonymous_tag_1930_1931 __max_align_t_1934;// L415:L426 +typedef struct __forward_tag_reference_937 __FILE_1935;// L48 +union ____anonymous_tag_1936_1937 { +unsigned int ____wch_1938;// L265 +char ____wchb_1939[4];// L92 }; -struct ____anonymous_tag_2124_2125 { -int ____count_2126;// L84 -union ____anonymous_tag_2120_2121 ____value_2127;// L85 +struct ____anonymous_tag_1940_1941 { +int ____count_1942;// L84 +union ____anonymous_tag_1936_1937 ____value_1943;// L85 }; -typedef struct ____anonymous_tag_2124_2125 ____mbstate_t_2128;// L82:L94 -struct ____anonymous_tag_2129_2130 { -____off_t_21 ____pos_2131;// L0 -____mbstate_t_2128 ____state_2133;// L0 +typedef struct ____anonymous_tag_1940_1941 ____mbstate_t_1944;// L82:L94 +struct ____anonymous_tag_1945_1946 { +____off_t_21 ____pos_1947;// L0 +____mbstate_t_1944 ____state_1948;// L0 }; -typedef struct ____anonymous_tag_2129_2130 ___G_fpos_t_2136;// L21:L25 -struct ____anonymous_tag_2137_2138 { -____off64_t_22 ____pos_2139;// L0 -____mbstate_t_2128 ____state_2141;// L0 +typedef struct ____anonymous_tag_1945_1946 ___G_fpos_t_1951;// L21:L25 +struct ____anonymous_tag_1952_1953 { +____off64_t_22 ____pos_1954;// L0 +____mbstate_t_1944 ____state_1955;// L0 }; -typedef struct ____anonymous_tag_2137_2138 ___G_fpos64_t_2144;// L26:L30 -typedef __builtin_va_list ____gnuc_va_list_2145;// L40 -typedef void ___IO_lock_t_2146;// L150 -struct ___IO_marker_2147 { -struct __forward_tag_reference_1115 * (___next_2148);// L0 -struct __forward_tag_reference_1084 * (___sbuf_2149);// L0 -int ___pos_2150;// L162 +typedef struct ____anonymous_tag_1952_1953 ___G_fpos64_t_1958;// L26:L30 +typedef __builtin_va_list ____gnuc_va_list_1959;// L40 +typedef void ___IO_lock_t_1960;// L150 +struct ___IO_marker_1961 { +struct __forward_tag_reference_966 * (___next_1962);// L0 +struct __forward_tag_reference_937 * (___sbuf_1963);// L0 +int ___pos_1964;// L162 }; -enum ____codecvt_result_2155 { -____codecvt_ok_2151, -____codecvt_partial_2152, -____codecvt_error_2153, -____codecvt_noconv_2154, +enum ____codecvt_result_1969 { +____codecvt_ok_1965, +____codecvt_partial_1966, +____codecvt_error_1967, +____codecvt_noconv_1968, }; -struct ___IO_FILE_2156 { -int ___flags_2157;// L242 -char * (___IO_read_ptr_2158);// L247 -char * (___IO_read_end_2159);// L248 -char * (___IO_read_base_2160);// L249 -char * (___IO_write_base_2161);// L250 -char * (___IO_write_ptr_2162);// L251 -char * (___IO_write_end_2163);// L252 -char * (___IO_buf_base_2164);// L253 -char * (___IO_buf_end_2165);// L254 -char * (___IO_save_base_2166);// L256 -char * (___IO_backup_base_2167);// L257 -char * (___IO_save_end_2168);// L258 -struct ___IO_marker_2147 * (___markers_2169);// L260 -struct __forward_tag_reference_1084 * (___chain_2170);// L0 -int ___fileno_2171;// L264 -int ___flags2_2172;// L268 -____off_t_21 ___old_offset_2173;// L0 -unsigned short ___cur_column_2175;// L274 -signed char ___vtable_offset_2176;// L275 -char ___shortbuf_2177[1];// L276 -___IO_lock_t_2146 * (___lock_2178);// L0 +struct ___IO_FILE_1970 { +int ___flags_1971;// L242 +char * (___IO_read_ptr_1972);// L247 +char * (___IO_read_end_1973);// L248 +char * (___IO_read_base_1974);// L249 +char * (___IO_write_base_1975);// L250 +char * (___IO_write_ptr_1976);// L251 +char * (___IO_write_end_1977);// L252 +char * (___IO_buf_base_1978);// L253 +char * (___IO_buf_end_1979);// L254 +char * (___IO_save_base_1980);// L256 +char * (___IO_backup_base_1981);// L257 +char * (___IO_save_end_1982);// L258 +struct ___IO_marker_1961 * (___markers_1983);// L260 +struct __forward_tag_reference_937 * (___chain_1984);// L0 +int ___fileno_1985;// L264 +int ___flags2_1986;// L268 +____off_t_21 ___old_offset_1987;// L0 +unsigned short ___cur_column_1988;// L274 +signed char ___vtable_offset_1989;// L275 +char ___shortbuf_1990[1];// L276 +___IO_lock_t_1960 * (___lock_1991);// L0 }; -struct ___IO_FILE_2181 { -int ___flags_2182;// L242 -char * (___IO_read_ptr_2183);// L247 -char * (___IO_read_end_2184);// L248 -char * (___IO_read_base_2185);// L249 -char * (___IO_write_base_2186);// L250 -char * (___IO_write_ptr_2187);// L251 -char * (___IO_write_end_2188);// L252 -char * (___IO_buf_base_2189);// L253 -char * (___IO_buf_end_2190);// L254 -char * (___IO_save_base_2191);// L256 -char * (___IO_backup_base_2192);// L257 -char * (___IO_save_end_2193);// L258 -struct ___IO_marker_2147 * (___markers_2194);// L260 -struct __forward_tag_reference_1084 * (___chain_2195);// L0 -int ___fileno_2196;// L264 -int ___flags2_2197;// L268 -____off_t_21 ___old_offset_2198;// L0 -unsigned short ___cur_column_2200;// L274 -signed char ___vtable_offset_2201;// L275 -char ___shortbuf_2202[1];// L276 -___IO_lock_t_2146 * (___lock_2203);// L0 -____off64_t_22 ___offset_2205;// L0 -void * (____pad1_2207);// L297 -void * (____pad2_2208);// L298 -void * (____pad3_2209);// L299 -void * (____pad4_2210);// L300 -__size_t_59 ____pad5_2211;// L0 -int ___mode_2212;// L303 -char ___unused2_2213[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +struct ___IO_FILE_1994 { +int ___flags_1995;// L242 +char * (___IO_read_ptr_1996);// L247 +char * (___IO_read_end_1997);// L248 +char * (___IO_read_base_1998);// L249 +char * (___IO_write_base_1999);// L250 +char * (___IO_write_ptr_2000);// L251 +char * (___IO_write_end_2001);// L252 +char * (___IO_buf_base_2002);// L253 +char * (___IO_buf_end_2003);// L254 +char * (___IO_save_base_2004);// L256 +char * (___IO_backup_base_2005);// L257 +char * (___IO_save_end_2006);// L258 +struct ___IO_marker_1961 * (___markers_2007);// L260 +struct __forward_tag_reference_937 * (___chain_2008);// L0 +int ___fileno_2009;// L264 +int ___flags2_2010;// L268 +____off_t_21 ___old_offset_2011;// L0 +unsigned short ___cur_column_2012;// L274 +signed char ___vtable_offset_2013;// L275 +char ___shortbuf_2014[1];// L276 +___IO_lock_t_1960 * (___lock_2015);// L0 +____off64_t_22 ___offset_2017;// L0 +void * (____pad1_2018);// L297 +void * (____pad2_2019);// L298 +void * (____pad3_2020);// L299 +void * (____pad4_2021);// L300 +__size_t_57 ____pad5_2022;// L0 +int ___mode_2023;// L303 +char ___unused2_2024[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -struct ___IO_FILE_complete_2214 { -struct ___IO_FILE_2156 ___file_2215;// L286 -____off64_t_22 ___offset_2217;// L0 -void * (____pad1_2219);// L297 -void * (____pad2_2220);// L298 -void * (____pad3_2221);// L299 -void * (____pad4_2222);// L300 -__size_t_59 ____pad5_2223;// L0 -int ___mode_2224;// L303 -char ___unused2_2225[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +struct ___IO_FILE_complete_2025 { +struct ___IO_FILE_1970 ___file_2026;// L286 +____off64_t_22 ___offset_2028;// L0 +void * (____pad1_2029);// L297 +void * (____pad2_2030);// L298 +void * (____pad3_2031);// L299 +void * (____pad4_2032);// L300 +__size_t_57 ____pad5_2033;// L0 +int ___mode_2034;// L303 +char ___unused2_2035[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -typedef struct ___IO_FILE_2156 ___IO_FILE_2228;// L310 -typedef struct ___IO_FILE_2181 ___IO_FILE_2229;// L310 -typedef ____ssize_t_47 (____io_read_fn_2237) (void * (____cookie_2234), char * (____buf_2235), __size_t_59 ____nbytes_2236);// L333 -typedef ____ssize_t_47 (____io_write_fn_2242) (void * (____cookie_2239), const char * (____buf_2240), __size_t_59 ____n_2241);// L341:L342 -typedef int (____io_seek_fn_2248) (void * (____cookie_2244), ____off64_t_22 * (____pos_2245), int ____w_2247);// L350 -typedef int (____io_close_fn_2251) (void * (____cookie_2250));// L353 -typedef ____gnuc_va_list_2145 __va_list_2335;// L79 -typedef ___G_fpos_t_2136 __fpos_t_2337;// L110 -typedef ___G_fpos64_t_2144 __fpos_t_2339;// L112 -extern const char * const __sys_errlist_2880[];// L27 -struct __mallinfo_3181 { -int __arena_3182;// L81 -int __ordblks_3183;// L82 -int __smblks_3184;// L83 -int __hblks_3185;// L84 -int __hblkhd_3186;// L85 -int __usmblks_3187;// L86 -int __fsmblks_3188;// L87 -int __uordblks_3189;// L88 -int __fordblks_3190;// L89 -int __keepcost_3191;// L90 +typedef struct ___IO_FILE_1970 ___IO_FILE_2038;// L310 +typedef struct ___IO_FILE_1994 ___IO_FILE_2039;// L310 +typedef ____ssize_t_47 (____io_read_fn_2047) (void * (____cookie_2044), char * (____buf_2045), __size_t_57 ____nbytes_2046);// L333 +typedef ____ssize_t_47 (____io_write_fn_2051) (void * (____cookie_2048), const char * (____buf_2049), __size_t_57 ____n_2050);// L341:L342 +typedef int (____io_seek_fn_2055) (void * (____cookie_2052), ____off64_t_22 * (____pos_2053), int ____w_2054);// L350 +typedef int (____io_close_fn_2057) (void * (____cookie_2056));// L353 +typedef ____gnuc_va_list_1959 __va_list_2138;// L79 +typedef ___G_fpos_t_1951 __fpos_t_2140;// L110 +typedef ___G_fpos64_t_1958 __fpos_t_2142;// L112 +extern const char * const __sys_errlist_2659[];// L27 +struct __mallinfo_2960 { +int __arena_2961;// L81 +int __ordblks_2962;// L82 +int __smblks_2963;// L83 +int __hblks_2964;// L84 +int __hblkhd_2965;// L85 +int __usmblks_2966;// L86 +int __fsmblks_2967;// L87 +int __uordblks_2968;// L88 +int __fordblks_2969;// L89 +int __keepcost_2970;// L90 }; -typedef int __wchar_t_3224;// L243:L321 -enum ____anonymous_tag_3228_3229 { -__P_ALL_3225, -__P_PID_3226, -__P_PGID_3227, +typedef int __wchar_t_3003;// L243:L321 +enum ____anonymous_tag_3007_3008 { +__P_ALL_3004, +__P_PID_3005, +__P_PGID_3006, }; -typedef enum ____anonymous_tag_3228_3229 __idtype_t_3230;// L50:L55 -struct ____anonymous_tag_3236_3237 { -unsigned int ____w_termsig_3238 : 7;// L72 -unsigned int ____w_coredump_3239 : 1;// L73 -unsigned int ____w_retcode_3240 : 8;// L74 -unsigned int __anon_id_0_3241 : 16;// L75 +typedef enum ____anonymous_tag_3007_3008 __idtype_t_3009;// L50:L55 +struct ____anonymous_tag_3015_3016 { +unsigned int ____w_termsig_3017 : 7;// L72 +unsigned int ____w_coredump_3018 : 1;// L73 +unsigned int ____w_retcode_3019 : 8;// L74 +unsigned int __anon_id_0_3020 : 16;// L75 }; -struct ____anonymous_tag_3242_3243 { -unsigned int ____w_stopval_3244 : 8;// L87 -unsigned int ____w_stopsig_3245 : 8;// L88 -unsigned int __anon_id_1_3246 : 16;// L89 +struct ____anonymous_tag_3021_3022 { +unsigned int ____w_stopval_3023 : 8;// L87 +unsigned int ____w_stopsig_3024 : 8;// L88 +unsigned int __anon_id_1_3025 : 16;// L89 }; -union __wait_3247 { -int __w_status_3248;// L68 -struct ____anonymous_tag_3236_3237 ____wait_terminated_3249;// L69 -struct ____anonymous_tag_3242_3243 ____wait_stopped_3250;// L84 +union __wait_3026 { +int __w_status_3027;// L68 +struct ____anonymous_tag_3015_3016 ____wait_terminated_3028;// L69 +struct ____anonymous_tag_3021_3022 ____wait_stopped_3029;// L84 }; -union ____anonymous_tag_3251_3252 { -union __wait_3247 * (____uptr_3253);// L69 -int * (____iptr_3254);// L70 +union ____anonymous_tag_3030_3031 { +union __wait_3026 * (____uptr_3032);// L69 +int * (____iptr_3033);// L70 }; -typedef union ____anonymous_tag_3251_3252 ____WAIT_STATUS_3255;// L67:L71 -struct ____anonymous_tag_3256_3257 { -int __quot_3258;// L99 -int __rem_3259;// L100 +typedef union ____anonymous_tag_3030_3031 ____WAIT_STATUS_3034;// L67:L71 +struct ____anonymous_tag_3035_3036 { +int __quot_3037;// L99 +int __rem_3038;// L100 }; -typedef struct ____anonymous_tag_3256_3257 __div_t_3260;// L97:L101 -struct ____anonymous_tag_3261_3262 { -long int __quot_3263;// L107 -long int __rem_3264;// L108 +typedef struct ____anonymous_tag_3035_3036 __div_t_3039;// L97:L101 +struct ____anonymous_tag_3040_3041 { +long int __quot_3042;// L107 +long int __rem_3043;// L108 }; -typedef struct ____anonymous_tag_3261_3262 __ldiv_t_3265;// L105:L109 -struct ____anonymous_tag_3266_3267 { -long long int __quot_3268;// L119 -long long int __rem_3269;// L120 +typedef struct ____anonymous_tag_3040_3041 __ldiv_t_3044;// L105:L109 +struct ____anonymous_tag_3045_3046 { +long long int __quot_3047;// L119 +long long int __rem_3048;// L120 }; -typedef struct ____anonymous_tag_3266_3267 __lldiv_t_3270;// L117:L121 -typedef ____u_char_0 __u_char_3330;// L33 -typedef ____u_short_1 __u_short_3331;// L34 -typedef ____u_int_2 __u_int_3332;// L35 -typedef ____u_long_3 __u_long_3333;// L36 -typedef ____quad_t_12 __quad_t_3334;// L37 -typedef ____u_quad_t_13 __u_quad_t_3335;// L38 -typedef ____fsid_t_27 __fsid_t_3336;// L39 -typedef ____loff_t_50 __loff_t_3338;// L44 -typedef ____ino64_t_18 __ino_t_3340;// L50 -typedef ____ino_t_17 __ino_t_3342;// L48 -typedef ____dev_t_14 __dev_t_3344;// L60 -typedef ____mode_t_19 __mode_t_3346;// L70 -typedef ____mode_t_19 __mode_t_3348;// L70 -typedef ____nlink_t_20 __nlink_t_3350;// L75 -typedef ____id_t_31 __id_t_3352;// L104 -typedef ____daddr_t_35 __daddr_t_3354;// L115 -typedef ____caddr_t_53 __caddr_t_3356;// L116 -typedef ____key_t_36 __key_t_3357;// L122 -typedef ____key_t_36 __key_t_3359;// L122 -typedef ____clock_t_28 __clock_t_3361;// L59 -typedef ____time_t_32 __time_t_3363;// L75 -typedef ____clockid_t_37 __clockid_t_3365;// L91 -typedef ____timer_t_38 __timer_t_3367;// L103 -typedef unsigned long int __ulong_3369;// L150 -typedef unsigned long int __ulong_3370;// L150 -typedef unsigned long int __ulong_3371;// L150 -typedef unsigned short int __ushort_3372;// L151 -typedef unsigned int __uint_3373;// L152 -typedef int __int8_t_3374;// L188:L194 -typedef int __int16_t_3375;// L188:L195 -typedef int __int32_t_3376;// L188:L196 -typedef int __int64_t_3377;// L188:L197 -typedef unsigned int __u_int8_t_3378;// L190:L200 -typedef unsigned int __u_int16_t_3379;// L190:L201 -typedef unsigned int __u_int32_t_3380;// L190:L202 -typedef unsigned int __u_int64_t_3381;// L190:L203 -typedef int __register_t_3382;// L205 -typedef int ____sig_atomic_t_3388;// L22 -struct ____anonymous_tag_3389_3390 { -unsigned long int ____val_3391[( 1024 / ( 8 * sizeof(unsigned long) ) )];// L29 +typedef struct ____anonymous_tag_3045_3046 __lldiv_t_3049;// L117:L121 +typedef ____u_char_0 __u_char_3109;// L33 +typedef ____u_short_1 __u_short_3110;// L34 +typedef ____u_int_2 __u_int_3111;// L35 +typedef ____u_long_3 __u_long_3112;// L36 +typedef ____quad_t_12 __quad_t_3113;// L37 +typedef ____u_quad_t_13 __u_quad_t_3114;// L38 +typedef ____fsid_t_27 __fsid_t_3115;// L39 +typedef ____loff_t_50 __loff_t_3116;// L44 +typedef ____ino64_t_18 __ino_t_3117;// L50 +typedef ____ino_t_17 __ino_t_3118;// L48 +typedef ____dev_t_14 __dev_t_3119;// L60 +typedef ____mode_t_19 __mode_t_3120;// L70 +typedef ____mode_t_19 __mode_t_3121;// L70 +typedef ____nlink_t_20 __nlink_t_3122;// L75 +typedef ____id_t_31 __id_t_3123;// L104 +typedef ____daddr_t_35 __daddr_t_3124;// L115 +typedef ____caddr_t_52 __caddr_t_3125;// L116 +typedef ____key_t_36 __key_t_3126;// L122 +typedef ____key_t_36 __key_t_3127;// L122 +typedef ____clock_t_28 __clock_t_3128;// L59 +typedef ____time_t_32 __time_t_3129;// L75 +typedef ____clockid_t_37 __clockid_t_3130;// L91 +typedef ____timer_t_38 __timer_t_3131;// L103 +typedef unsigned long int __ulong_3132;// L150 +typedef unsigned long int __ulong_3133;// L150 +typedef unsigned long int __ulong_3134;// L150 +typedef unsigned short int __ushort_3135;// L151 +typedef unsigned int __uint_3136;// L152 +typedef int __int8_t_3137;// L188:L194 +typedef int __int16_t_3138;// L188:L195 +typedef int __int32_t_3139;// L188:L196 +typedef int __int64_t_3140;// L188:L197 +typedef unsigned int __u_int8_t_3141;// L190:L200 +typedef unsigned int __u_int16_t_3142;// L190:L201 +typedef unsigned int __u_int32_t_3143;// L190:L202 +typedef unsigned int __u_int64_t_3144;// L190:L203 +typedef int __register_t_3145;// L205 +typedef int ____sig_atomic_t_3151;// L22 +struct ____anonymous_tag_3152_3153 { +unsigned long int ____val_3154[( 1024 / ( 8 * sizeof(unsigned long) ) )];// L29 }; -typedef struct ____anonymous_tag_3389_3390 ____sigset_t_3392;// L27:L30 -typedef ____sigset_t_3392 __sigset_t_3393;// L37 -struct __timespec_3394 { -____time_t_32 __tv_sec_3395;// L0 -____syscall_slong_t_48 __tv_nsec_3397;// L0 +typedef struct ____anonymous_tag_3152_3153 ____sigset_t_3155;// L27:L30 +typedef ____sigset_t_3155 __sigset_t_3156;// L37 +struct __timespec_3157 { +____time_t_32 __tv_sec_3158;// L0 +____syscall_slong_t_48 __tv_nsec_3159;// L0 }; -struct __timeval_3400 { -____time_t_32 __tv_sec_3401;// L0 -____suseconds_t_34 __tv_usec_3403;// L0 +struct __timeval_3160 { +____time_t_32 __tv_sec_3161;// L0 +____suseconds_t_34 __tv_usec_3162;// L0 }; -typedef ____suseconds_t_34 __suseconds_t_3406;// L48 -typedef long int ____fd_mask_3408;// L54 -typedef long int ____fd_mask_3409;// L54 -struct ____anonymous_tag_3410_3411 { -____fd_mask_3408 ____fds_bits_3412[1024 / ( 8 * ( int ) sizeof(long) )];// L0 -____fd_mask_3409 ____fds_bits_3414[1024 / ( 8 * ( int ) sizeof(long) )];// L0 +typedef ____suseconds_t_34 __suseconds_t_3163;// L48 +typedef long int ____fd_mask_3164;// L54 +typedef long int ____fd_mask_3165;// L54 +struct ____anonymous_tag_3166_3167 { +____fd_mask_3164 ____fds_bits_3168[1024 / ( 8 * ( int ) sizeof(long) )];// L0 +____fd_mask_3165 ____fds_bits_3169[1024 / ( 8 * ( int ) sizeof(long) )];// L0 }; -typedef struct ____anonymous_tag_3410_3411 __fd_set_3417;// L64:L75 -typedef ____fd_mask_3408 __fd_mask_3418;// L82 -typedef ____fd_mask_3409 __fd_mask_3419;// L82 -typedef ____blksize_t_39 __blksize_t_3467;// L228 -typedef ____blkcnt_t_40 __blkcnt_t_3469;// L235 -typedef ____fsblkcnt_t_42 __fsblkcnt_t_3471;// L239 -typedef ____blkcnt64_t_41 __blkcnt_t_3473;// L248 -typedef ____fsblkcnt64_t_43 __fsblkcnt_t_3475;// L252 -typedef ____fsfilcnt_t_44 __fsfilcnt_t_3477;// L243 -typedef ____fsfilcnt64_t_45 __fsfilcnt_t_3479;// L256 -typedef unsigned long int __pthread_t_3481;// L60 -union __pthread_attr_t_3482 { -char ____size_3483[56];// L65 -long int ____align_3484;// L66 +typedef struct ____anonymous_tag_3166_3167 __fd_set_3170;// L64:L75 +typedef ____fd_mask_3164 __fd_mask_3171;// L82 +typedef ____fd_mask_3165 __fd_mask_3172;// L82 +typedef ____blksize_t_39 __blksize_t_3208;// L228 +typedef ____blkcnt_t_40 __blkcnt_t_3209;// L235 +typedef ____fsblkcnt_t_42 __fsblkcnt_t_3210;// L239 +typedef ____blkcnt64_t_41 __blkcnt_t_3211;// L248 +typedef ____fsblkcnt64_t_43 __fsblkcnt_t_3212;// L252 +typedef ____fsfilcnt_t_44 __fsfilcnt_t_3213;// L243 +typedef ____fsfilcnt64_t_45 __fsfilcnt_t_3214;// L256 +typedef unsigned long int __pthread_t_3215;// L60 +union __pthread_attr_t_3216 { +char ____size_3217[56];// L65 +long int ____align_3218;// L66 }; -typedef union __pthread_attr_t_3482 __pthread_attr_t_3485;// L69 -struct ____pthread_internal_list_3487 { -struct __forward_tag_reference_3486 * (____prev_3488);// L0 -struct __forward_tag_reference_3486 * (____next_3489);// L0 +typedef union __pthread_attr_t_3216 __pthread_attr_t_3219;// L69 +struct ____pthread_internal_list_3221 { +struct __forward_tag_reference_3220 * (____prev_3222);// L0 +struct __forward_tag_reference_3220 * (____next_3223);// L0 }; -typedef struct ____pthread_internal_list_3487 ____pthread_list_t_3490;// L75:L79 -typedef struct ____pthread_internal_list_3487 ____pthread_list_t_3491;// L75:L79 -struct ____pthread_mutex_s_3492 { -int ____lock_3493;// L94 -unsigned int ____count_3494;// L95 -int ____owner_3495;// L96 -unsigned int ____nusers_3496;// L98 -int ____kind_3497;// L102 -short ____spins_3498;// L104 -short ____elision_3499;// L105 -____pthread_list_t_3490 ____list_3500;// L0 -____pthread_list_t_3491 ____list_3501;// L0 +typedef struct ____pthread_internal_list_3221 ____pthread_list_t_3224;// L75:L79 +typedef struct ____pthread_internal_list_3221 ____pthread_list_t_3225;// L75:L79 +struct ____pthread_mutex_s_3226 { +int ____lock_3227;// L94 +unsigned int ____count_3228;// L95 +int ____owner_3229;// L96 +unsigned int ____nusers_3230;// L98 +int ____kind_3231;// L102 +short ____spins_3232;// L104 +short ____elision_3233;// L105 +____pthread_list_t_3224 ____list_3234;// L0 +____pthread_list_t_3225 ____list_3235;// L0 }; -union ____anonymous_tag_3502_3503 { -struct ____pthread_mutex_s_3492 ____data_3504;// L92 -char ____size_3505[40];// L126 -long int ____align_3506;// L127 +union ____anonymous_tag_3236_3237 { +struct ____pthread_mutex_s_3226 ____data_3238;// L92 +char ____size_3239[40];// L126 +long int ____align_3240;// L127 }; -typedef union ____anonymous_tag_3502_3503 __pthread_mutex_t_3507;// L90:L128 -union ____anonymous_tag_3508_3509 { -char ____size_3510[4];// L132 -int ____align_3511;// L133 +typedef union ____anonymous_tag_3236_3237 __pthread_mutex_t_3241;// L90:L128 +union ____anonymous_tag_3242_3243 { +char ____size_3244[4];// L132 +int ____align_3245;// L133 }; -typedef union ____anonymous_tag_3508_3509 __pthread_mutexattr_t_3512;// L130:L134 -typedef int (* (____compar_fn_t_3639)) (const void *, const void *);// L741 -typedef ____off_t_21 __off_t_3895;// L29 -typedef ____off64_t_22 __off_t_3897;// L31 -typedef ____mode_t_19 __mode_t_3899;// L37 +typedef union ____anonymous_tag_3242_3243 __pthread_mutexattr_t_3246;// L130:L134 +typedef int (* (____compar_fn_t_3373)) (const void *, const void *);// L741 +typedef ____off_t_21 __off_t_3629;// L29 +typedef ____off64_t_22 __off_t_3630;// L31 +typedef ____mode_t_19 __mode_t_3631;// L37 -struct __forward_tag_reference_1084 { // generated union of struct variations +struct __forward_tag_reference_3220 { // generated union of struct variations union { -struct ___IO_FILE_1125 ___IO_FILE_1125; -struct ___IO_FILE_1150 ___IO_FILE_1150; -struct ___IO_FILE_2156 ___IO_FILE_2156; -struct ___IO_FILE_2181 ___IO_FILE_2181; }; }; -struct __forward_tag_reference_3486 { // generated union of struct variations +struct __forward_tag_reference_966 { // generated union of struct variations union { +struct ___IO_marker_967 ___IO_marker_967; +struct ___IO_marker_1961 ___IO_marker_1961; }; }; -struct __forward_tag_reference_1115 { // generated union of struct variations +struct __forward_tag_reference_964 { // generated union of struct variations union { -struct ___IO_marker_1116 ___IO_marker_1116; -struct ___IO_marker_2147 ___IO_marker_2147; }; }; -struct __forward_tag_reference_1113 { // generated union of struct variations +struct __forward_tag_reference_937 { // generated union of struct variations union { +struct ___IO_FILE_976 ___IO_FILE_976; +struct ___IO_FILE_1000 ___IO_FILE_1000; +struct ___IO_FILE_1970 ___IO_FILE_1970; +struct ___IO_FILE_1994 ___IO_FILE_1994; }; }; -struct __forward_tag_reference_1200 { // generated union of struct variations +struct __forward_tag_reference_1047 { // generated union of struct variations union { }; }; @@ -3403,459 +3004,459 @@ union { // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern int (__access_78) (const char * (____name_76), int ____type_77);// L290 -extern int (__access_79) (const char * (____name_76), int ____type_77);// L290 -extern int (__access_80) (const char * (____name_76), int ____type_77);// L290 -extern int (__faccessat_85) (int ____fd_81, const char * (____file_82), int ____type_83, int ____flag_84);// L307:L308 -extern int (__faccessat_86) (int ____fd_81, const char * (____file_82), int ____type_83, int ____flag_84);// L307:L308 -extern ____off_t_21 (__lseek_95) (int ____fd_87, ____off_t_21 ____offset_88, int ____whence_90);// L337 -extern ____off64_t_22 (__lseek_97) (int ____fd_91, ____off64_t_22 ____offset_92, int ____whence_94);// L340:L342 -extern int (__close_100) (int ____fd_99);// L356 -extern __ssize_t_56 (__read_104) (int ____fd_101, void * (____buf_102), __size_t_59 ____nbytes_103);// L363 -extern __ssize_t_56 (__read_107) (int ____fd_101, void * (____buf_102), __size_t_59 ____nbytes_103);// L363 -extern __ssize_t_56 (__write_113) (int ____fd_110, const void * (____buf_111), __size_t_59 ____n_112);// L369 -extern __ssize_t_56 (__write_116) (int ____fd_110, const void * (____buf_111), __size_t_59 ____n_112);// L369 -extern __ssize_t_56 (__pread_124) (int ____fd_119, void * (____buf_120), __size_t_59 ____nbytes_121, ____off_t_21 ____offset_122);// L379:L380 -extern __ssize_t_56 (__pread_128) (int ____fd_119, void * (____buf_120), __size_t_59 ____nbytes_121, ____off_t_21 ____offset_122);// L379:L380 -extern __ssize_t_56 (__pread_142) (int ____fd_137, void * (____buf_138), __size_t_59 ____nbytes_139, ____off64_t_22 ____offset_140);// L391:L393 -extern __ssize_t_56 (__pread_146) (int ____fd_137, void * (____buf_138), __size_t_59 ____nbytes_139, ____off64_t_22 ____offset_140);// L391:L393 -extern __ssize_t_56 (__pwrite_167) (int ____fd_150, const void * (____buf_151), __size_t_59 ____nbytes_152, ____off64_t_22 ____offset_153);// L394:L396 -extern __ssize_t_56 (__pwrite_163) (int ____fd_132, const void * (____buf_133), __size_t_59 ____n_134, ____off_t_21 ____offset_135);// L387:L388 -extern __ssize_t_56 (__pwrite_159) (int ____fd_150, const void * (____buf_151), __size_t_59 ____nbytes_152, ____off64_t_22 ____offset_153);// L394:L396 -extern __ssize_t_56 (__pwrite_155) (int ____fd_132, const void * (____buf_133), __size_t_59 ____n_134, ____off_t_21 ____offset_135);// L387:L388 -extern int (__pipe_172) (int ____pipedes_171[2]);// L420 -extern int (__pipe_173) (int ____pipedes_171[2]);// L420 -extern int (__pipe_174) (int ____pipedes_171[2]);// L420 -extern int (__pipe_175) (int ____pipedes_171[2]);// L420 -extern unsigned int (__alarm_177) (unsigned int ____seconds_176);// L435 -extern unsigned int (__sleep_179) (unsigned int ____seconds_178);// L447 -extern ____useconds_t_33 (__ualarm_184) (____useconds_t_33 ____value_180, ____useconds_t_33 ____interval_182);// L455:L456 -extern int (__usleep_188) (____useconds_t_33 ____useconds_186);// L463 -extern int (__pause_190) (void );// L472 -extern int (__pause_191) (void );// L472 -extern int (__chown_197) (const char * (____file_192), ____uid_t_15 ____owner_193, ____gid_t_16 ____group_195);// L476:L477 -extern int (__chown_199) (const char * (____file_192), ____uid_t_15 ____owner_193, ____gid_t_16 ____group_195);// L476:L477 -extern int (__fchown_206) (int ____fd_201, ____uid_t_15 ____owner_202, ____gid_t_16 ____group_204);// L481 -extern int (__fchown_208) (int ____fd_201, ____uid_t_15 ____owner_202, ____gid_t_16 ____group_204);// L481 -extern int (__lchown_215) (const char * (____file_210), ____uid_t_15 ____owner_211, ____gid_t_16 ____group_213);// L486:L487 -extern int (__lchown_217) (const char * (____file_210), ____uid_t_15 ____owner_211, ____gid_t_16 ____group_213);// L486:L487 -extern int (__fchownat_226) (int ____fd_219, const char * (____file_220), ____uid_t_15 ____owner_221, ____gid_t_16 ____group_223, int ____flag_225);// L494:L496 -extern int (__fchownat_228) (int ____fd_219, const char * (____file_220), ____uid_t_15 ____owner_221, ____gid_t_16 ____group_223, int ____flag_225);// L494:L496 -extern int (__chdir_231) (const char * (____path_230));// L500 -extern int (__chdir_232) (const char * (____path_230));// L500 -extern int (__chdir_233) (const char * (____path_230));// L500 -extern int (__chdir_234) (const char * (____path_230));// L500 -extern int (__fchdir_236) (int ____fd_235);// L504 -extern int (__fchdir_237) (int ____fd_235);// L504 -extern char * ((__getcwd_240) (char * (____buf_238), __size_t_59 ____size_239));// L514 -extern char * ((__getcwd_241) (char * (____buf_238), __size_t_59 ____size_239));// L514 -extern char * ((__getcwd_242) (char * (____buf_238), __size_t_59 ____size_239));// L514 -extern char * ((__getcwd_243) (char * (____buf_238), __size_t_59 ____size_239));// L514 -extern char * ((__getwd_245) (char * (____buf_244)));// L528:L529 -extern char * ((__getwd_246) (char * (____buf_244)));// L528:L529 -extern int (__dup_248) (int ____fd_247);// L534 -extern int (__dup_249) (int ____fd_247);// L534 -extern int (__dup_250) (int ____fd_247);// L534 -extern int (__dup_251) (int ____fd_247);// L534 -extern int (__dup2_254) (int ____fd_252, int ____fd2_253);// L537 -extern char * (* (____environ_255));// L546 -extern int (__execve_259) (const char * (____path_256), char * const ____argv_257[], char * const ____envp_258[]);// L554:L555 -extern int (__fexecve_263) (int ____fd_260, char * const ____argv_261[], char * const ____envp_262[]);// L560:L561 -extern int (__execv_266) (const char * (____path_264), char * const ____argv_265[]);// L566:L567 -extern int (__execv_267) (const char * (____path_264), char * const ____argv_265[]);// L566:L567 -extern int (__execle_270) (const char * (____path_268), const char * (____arg_269), ... );// L571:L572 -extern int (__execl_273) (const char * (____path_271), const char * (____arg_272), ... );// L576:L577 -extern int (__execvp_276) (const char * (____file_274), char * const ____argv_275[]);// L581:L582 -extern int (__execlp_279) (const char * (____file_277), const char * (____arg_278), ... );// L587:L588 -extern int (__nice_281) (int ____inc_280);// L601 -extern int (__nice_282) (int ____inc_280);// L601 -extern void (___exit_284) (int ____status_283);// L606 -extern void (___exit_285) (int ____status_283);// L606 -enum ____anonymous_tag_307_308 ;// L24 -enum ____anonymous_tag_524_525 ;// L71 -enum ____anonymous_tag_590_591 ;// L533 -extern long int (__pathconf_594) (const char * (____path_592), int ____name_593);// L615:L616 -extern long int (__fpathconf_597) (int ____fd_595, int ____name_596);// L619 -extern long int (__sysconf_599) (int ____name_598);// L622 -extern __size_t_59 (__confstr_603) (int ____name_600, char * (____buf_601), __size_t_59 ____len_602);// L626 -extern ____pid_t_23 (__getpid_604) (void );// L631 -extern ____pid_t_23 (__getpid_606) (void );// L631 -extern ____pid_t_23 (__getppid_608) (void );// L634 -extern ____pid_t_23 (__getpgrp_610) (void );// L637 -extern ____pid_t_23 (____getpgid_613) (____pid_t_23 ____pid_611);// L640 -extern ____pid_t_23 (__getpgid_616) (____pid_t_23 ____pid_614);// L642 -extern int (__setpgid_622) (____pid_t_23 ____pid_618, ____pid_t_23 ____pgid_620);// L649 -extern int (__setpgid_624) (____pid_t_23 ____pid_618, ____pid_t_23 ____pgid_620);// L649 -extern int (__setpgrp_626) (void );// L663 -extern ____pid_t_23 (__setsid_627) (void );// L670 -extern ____pid_t_23 (__setsid_629) (void );// L670 -extern ____pid_t_23 (__getsid_633) (____pid_t_23 ____pid_631);// L674 -extern ____uid_t_15 (__getuid_635) (void );// L678 -extern ____uid_t_15 (__getuid_637) (void );// L678 -extern ____uid_t_15 (__geteuid_639) (void );// L681 -extern ____gid_t_16 (__getgid_641) (void );// L684 -extern ____gid_t_16 (__getegid_643) (void );// L687 -extern int (__getgroups_647) (int ____size_644, ____gid_t_16 ____list_645[]);// L692 -extern int (__getgroups_649) (int ____size_644, ____gid_t_16 ____list_645[]);// L692 -extern int (__setuid_653) (____uid_t_15 ____uid_651);// L703 -extern int (__setuid_655) (____uid_t_15 ____uid_651);// L703 -extern int (__setreuid_661) (____uid_t_15 ____ruid_657, ____uid_t_15 ____euid_659);// L708 -extern int (__setreuid_663) (____uid_t_15 ____ruid_657, ____uid_t_15 ____euid_659);// L708 -extern int (__seteuid_667) (____uid_t_15 ____uid_665);// L713 -extern int (__seteuid_669) (____uid_t_15 ____uid_665);// L713 -extern int (__setgid_673) (____gid_t_16 ____gid_671);// L720 -extern int (__setgid_675) (____gid_t_16 ____gid_671);// L720 -extern int (__setgid_677) (____gid_t_16 ____gid_671);// L720 -extern int (__setgid_679) (____gid_t_16 ____gid_671);// L720 -extern int (__setregid_685) (____gid_t_16 ____rgid_681, ____gid_t_16 ____egid_683);// L725 -extern int (__setregid_687) (____gid_t_16 ____rgid_681, ____gid_t_16 ____egid_683);// L725 -extern int (__setegid_691) (____gid_t_16 ____gid_689);// L730 -extern int (__setegid_693) (____gid_t_16 ____gid_689);// L730 -extern ____pid_t_23 (__fork_695) (void );// L759 -extern ____pid_t_23 (__fork_697) (void );// L759 -extern ____pid_t_23 (__vfork_699) (void );// L767 -extern char * ((__ttyname_702) (int ____fd_701));// L773 -extern char * ((__ttyname_703) (int ____fd_701));// L773 -extern int (__ttyname_r_707) (int ____fd_704, char * (____buf_705), __size_t_59 ____buflen_706);// L777:L778 -extern int (__ttyname_r_708) (int ____fd_704, char * (____buf_705), __size_t_59 ____buflen_706);// L777:L778 -extern int (__isatty_710) (int ____fd_709);// L782 -extern int (__ttyslot_711) (void );// L788 -extern int (__link_714) (const char * (____from_712), const char * (____to_713));// L793:L794 -extern int (__link_715) (const char * (____from_712), const char * (____to_713));// L793:L794 -extern int (__link_716) (const char * (____from_712), const char * (____to_713));// L793:L794 -extern int (__link_717) (const char * (____from_712), const char * (____to_713));// L793:L794 -extern int (__linkat_723) (int ____fromfd_718, const char * (____from_719), int ____tofd_720, const char * (____to_721), int ____flags_722);// L799:L801 -extern int (__linkat_724) (int ____fromfd_718, const char * (____from_719), int ____tofd_720, const char * (____to_721), int ____flags_722);// L799:L801 -extern int (__symlink_727) (const char * (____from_725), const char * (____to_726));// L806:L807 -extern int (__symlink_728) (const char * (____from_725), const char * (____to_726));// L806:L807 -extern __ssize_t_56 (__readlink_732) (const char * __restrict ____path_729, char * __restrict ____buf_730, __size_t_59 ____len_731);// L812:L814 -extern __ssize_t_56 (__readlink_735) (const char * __restrict ____path_729, char * __restrict ____buf_730, __size_t_59 ____len_731);// L812:L814 -extern int (__symlinkat_741) (const char * (____from_738), int ____tofd_739, const char * (____to_740));// L819:L820 -extern int (__symlinkat_742) (const char * (____from_738), int ____tofd_739, const char * (____to_740));// L819:L820 -extern __ssize_t_56 (__readlinkat_747) (int ____fd_743, const char * __restrict ____path_744, char * __restrict ____buf_745, __size_t_59 ____len_746);// L823:L825 -extern __ssize_t_56 (__readlinkat_750) (int ____fd_743, const char * __restrict ____path_744, char * __restrict ____buf_745, __size_t_59 ____len_746);// L823:L825 -extern int (__unlink_754) (const char * (____name_753));// L829 -extern int (__unlink_755) (const char * (____name_753));// L829 -extern int (__unlinkat_759) (int ____fd_756, const char * (____name_757), int ____flag_758);// L833:L834 -extern int (__rmdir_761) (const char * (____path_760));// L838 -extern int (__rmdir_762) (const char * (____path_760));// L838 -extern ____pid_t_23 (__tcgetpgrp_764) (int ____fd_763);// L842 -extern int (__tcsetpgrp_768) (int ____fd_765, ____pid_t_23 ____pgrp_id_766);// L845 -extern char * ((__getlogin_769) (void ));// L852 -extern int (__getlogin_r_772) (char * (____name_770), __size_t_59 ____name_len_771);// L860 -extern int (__setlogin_774) (const char * (____name_773));// L865 -extern char * (__optarg_775);// L57 -extern int __optind_776;// L71 -extern int __opterr_777;// L76 -extern int __optopt_778;// L80 -extern int (__getopt_782) (int _____argc_779, char * const * (_____argv_780), const char * (____shortopts_781));// L150:L151 -extern int (__gethostname_785) (char * (____name_783), __size_t_59 ____len_784);// L882 -extern int (__sethostname_788) (const char * (____name_786), __size_t_59 ____len_787);// L889:L890 -extern int (__sethostname_789) (const char * (____name_786), __size_t_59 ____len_787);// L889:L890 -extern int (__sethostid_791) (long int ____id_790);// L894 -extern int (__sethostid_792) (long int ____id_790);// L894 -extern int (__getdomainname_795) (char * (____name_793), __size_t_59 ____len_794);// L900:L901 -extern int (__getdomainname_796) (char * (____name_793), __size_t_59 ____len_794);// L900:L901 -extern int (__setdomainname_799) (const char * (____name_797), __size_t_59 ____len_798);// L902:L903 -extern int (__setdomainname_800) (const char * (____name_797), __size_t_59 ____len_798);// L902:L903 -extern int (__vhangup_801) (void );// L909 -extern int (__revoke_803) (const char * (____file_802));// L912 -extern int (__revoke_804) (const char * (____file_802));// L912 -extern int (__profil_809) (unsigned short int * (____sample_buffer_805), __size_t_59 ____size_806, __size_t_59 ____offset_807, unsigned int ____scale_808);// L920:L922 -extern int (__acct_811) (const char * (____name_810));// L928 -extern char * ((__getusershell_812) (void ));// L932 -extern void (__endusershell_813) (void );// L933 -extern void (__setusershell_814) (void );// L934 -extern int (__daemon_817) (int ____nochdir_815, int ____noclose_816);// L940 -extern int (__daemon_818) (int ____nochdir_815, int ____noclose_816);// L940 -extern int (__chroot_820) (const char * (____path_819));// L947 -extern int (__chroot_821) (const char * (____path_819));// L947 -extern char * ((__getpass_823) (const char * (____prompt_822)));// L951 -extern int (__fsync_825) (int ____fd_824);// L959 -extern int (__fsync_826) (int ____fd_824);// L959 -extern int (__fsync_827) (int ____fd_824);// L959 -extern long int (__gethostid_828) (void );// L972 -extern void (__sync_829) (void );// L975 -extern int (__getpagesize_830) (void );// L981 -extern int (__getdtablesize_831) (void );// L986 -extern int (__truncate_838) (const char * (____file_832), ____off_t_21 ____length_833);// L996:L997 -extern int (__truncate_842) (const char * (____file_832), ____off_t_21 ____length_833);// L996:L997 -extern int (__truncate_840) (const char * (____file_835), ____off64_t_22 ____length_836);// L1000:L1002 -extern int (__truncate_844) (const char * (____file_835), ____off64_t_22 ____length_836);// L1000:L1002 -extern int (__ftruncate_858) (int ____fd_849, ____off64_t_22 ____length_850);// L1022:L1023 -extern int (__ftruncate_856) (int ____fd_846, ____off_t_21 ____length_847);// L1019 -extern int (__ftruncate_854) (int ____fd_849, ____off64_t_22 ____length_850);// L1022:L1023 -extern int (__ftruncate_852) (int ____fd_846, ____off_t_21 ____length_847);// L1019 -extern int (__brk_861) (void * (____addr_860));// L1040 -extern int (__brk_862) (void * (____addr_860));// L1040 -extern void * ((__sbrk_865) (__intptr_t_74 ____delta_863));// L1046 -extern long int (__syscall_868) (long int ____sysno_867, ... );// L1061 -extern int (__lockf_883) (int ____fd_873, int ____cmd_874, ____off64_t_22 ____len_875);// L1087:L1088 -extern int (__lockf_881) (int ____fd_869, int ____cmd_870, ____off_t_21 ____len_871);// L1084 -extern int (__lockf_879) (int ____fd_873, int ____cmd_874, ____off64_t_22 ____len_875);// L1087:L1088 -extern int (__lockf_877) (int ____fd_869, int ____cmd_870, ____off_t_21 ____len_871);// L1084 -extern int (__fdatasync_886) (int ____fildes_885);// L1115 -extern __ssize_t_56 (____read_chk_891) (int ____fd_887, void * (____buf_888), __size_t_59 ____nbytes_889, __size_t_59 ____buflen_890);// L23:L24 -extern __ssize_t_56 (____read_alias_897) (int ____fd_894, void * (____buf_895), __size_t_59 ____nbytes_896);// L25:L26 -extern __ssize_t_56 (____read_chk_warn_904) (int ____fd_900, void * (____buf_901), __size_t_59 ____nbytes_902, __size_t_59 ____buflen_903);// L27:L31 +extern int (__access_69) (const char * (____name_67), int ____type_68);// L290 +extern int (__access_70) (const char * (____name_67), int ____type_68);// L290 +extern int (__access_71) (const char * (____name_67), int ____type_68);// L290 +extern int (__faccessat_76) (int ____fd_72, const char * (____file_73), int ____type_74, int ____flag_75);// L307:L308 +extern int (__faccessat_77) (int ____fd_72, const char * (____file_73), int ____type_74, int ____flag_75);// L307:L308 +extern ____off_t_21 (__lseek_84) (int ____fd_78, ____off_t_21 ____offset_79, int ____whence_80);// L337 +extern ____off64_t_22 (__lseek_85) (int ____fd_81, ____off64_t_22 ____offset_82, int ____whence_83);// L340:L342 +extern int (__close_87) (int ____fd_86);// L356 +extern __ssize_t_55 (__read_91) (int ____fd_88, void * (____buf_89), __size_t_57 ____nbytes_90);// L363 +extern __ssize_t_55 (__read_93) (int ____fd_88, void * (____buf_89), __size_t_57 ____nbytes_90);// L363 +extern __ssize_t_55 (__write_98) (int ____fd_95, const void * (____buf_96), __size_t_57 ____n_97);// L369 +extern __ssize_t_55 (__write_100) (int ____fd_95, const void * (____buf_96), __size_t_57 ____n_97);// L369 +extern __ssize_t_55 (__pread_106) (int ____fd_102, void * (____buf_103), __size_t_57 ____nbytes_104, ____off_t_21 ____offset_105);// L379:L380 +extern __ssize_t_55 (__pread_108) (int ____fd_102, void * (____buf_103), __size_t_57 ____nbytes_104, ____off_t_21 ____offset_105);// L379:L380 +extern __ssize_t_55 (__pread_118) (int ____fd_114, void * (____buf_115), __size_t_57 ____nbytes_116, ____off64_t_22 ____offset_117);// L391:L393 +extern __ssize_t_55 (__pread_120) (int ____fd_114, void * (____buf_115), __size_t_57 ____nbytes_116, ____off64_t_22 ____offset_117);// L391:L393 +extern __ssize_t_55 (__pwrite_132) (int ____fd_122, const void * (____buf_123), __size_t_57 ____nbytes_124, ____off64_t_22 ____offset_125);// L394:L396 +extern __ssize_t_55 (__pwrite_130) (int ____fd_110, const void * (____buf_111), __size_t_57 ____n_112, ____off_t_21 ____offset_113);// L387:L388 +extern __ssize_t_55 (__pwrite_128) (int ____fd_122, const void * (____buf_123), __size_t_57 ____nbytes_124, ____off64_t_22 ____offset_125);// L394:L396 +extern __ssize_t_55 (__pwrite_126) (int ____fd_110, const void * (____buf_111), __size_t_57 ____n_112, ____off_t_21 ____offset_113);// L387:L388 +extern int (__pipe_135) (int ____pipedes_134[2]);// L420 +extern int (__pipe_136) (int ____pipedes_134[2]);// L420 +extern int (__pipe_137) (int ____pipedes_134[2]);// L420 +extern int (__pipe_138) (int ____pipedes_134[2]);// L420 +extern unsigned int (__alarm_140) (unsigned int ____seconds_139);// L435 +extern unsigned int (__sleep_142) (unsigned int ____seconds_141);// L447 +extern ____useconds_t_33 (__ualarm_145) (____useconds_t_33 ____value_143, ____useconds_t_33 ____interval_144);// L455:L456 +extern int (__usleep_147) (____useconds_t_33 ____useconds_146);// L463 +extern int (__pause_148) (void );// L472 +extern int (__pause_149) (void );// L472 +extern int (__chown_153) (const char * (____file_150), ____uid_t_15 ____owner_151, ____gid_t_16 ____group_152);// L476:L477 +extern int (__chown_154) (const char * (____file_150), ____uid_t_15 ____owner_151, ____gid_t_16 ____group_152);// L476:L477 +extern int (__fchown_158) (int ____fd_155, ____uid_t_15 ____owner_156, ____gid_t_16 ____group_157);// L481 +extern int (__fchown_159) (int ____fd_155, ____uid_t_15 ____owner_156, ____gid_t_16 ____group_157);// L481 +extern int (__lchown_163) (const char * (____file_160), ____uid_t_15 ____owner_161, ____gid_t_16 ____group_162);// L486:L487 +extern int (__lchown_164) (const char * (____file_160), ____uid_t_15 ____owner_161, ____gid_t_16 ____group_162);// L486:L487 +extern int (__fchownat_170) (int ____fd_165, const char * (____file_166), ____uid_t_15 ____owner_167, ____gid_t_16 ____group_168, int ____flag_169);// L494:L496 +extern int (__fchownat_171) (int ____fd_165, const char * (____file_166), ____uid_t_15 ____owner_167, ____gid_t_16 ____group_168, int ____flag_169);// L494:L496 +extern int (__chdir_173) (const char * (____path_172));// L500 +extern int (__chdir_174) (const char * (____path_172));// L500 +extern int (__chdir_175) (const char * (____path_172));// L500 +extern int (__chdir_176) (const char * (____path_172));// L500 +extern int (__fchdir_178) (int ____fd_177);// L504 +extern int (__fchdir_179) (int ____fd_177);// L504 +extern char * ((__getcwd_182) (char * (____buf_180), __size_t_57 ____size_181));// L514 +extern char * ((__getcwd_183) (char * (____buf_180), __size_t_57 ____size_181));// L514 +extern char * ((__getcwd_184) (char * (____buf_180), __size_t_57 ____size_181));// L514 +extern char * ((__getcwd_185) (char * (____buf_180), __size_t_57 ____size_181));// L514 +extern char * ((__getwd_187) (char * (____buf_186)));// L528:L529 +extern char * ((__getwd_188) (char * (____buf_186)));// L528:L529 +extern int (__dup_190) (int ____fd_189);// L534 +extern int (__dup_191) (int ____fd_189);// L534 +extern int (__dup_192) (int ____fd_189);// L534 +extern int (__dup_193) (int ____fd_189);// L534 +extern int (__dup2_196) (int ____fd_194, int ____fd2_195);// L537 +extern char * (* (____environ_197));// L546 +extern int (__execve_201) (const char * (____path_198), char * const ____argv_199[], char * const ____envp_200[]);// L554:L555 +extern int (__fexecve_205) (int ____fd_202, char * const ____argv_203[], char * const ____envp_204[]);// L560:L561 +extern int (__execv_208) (const char * (____path_206), char * const ____argv_207[]);// L566:L567 +extern int (__execv_209) (const char * (____path_206), char * const ____argv_207[]);// L566:L567 +extern int (__execle_212) (const char * (____path_210), const char * (____arg_211), ... );// L571:L572 +extern int (__execl_215) (const char * (____path_213), const char * (____arg_214), ... );// L576:L577 +extern int (__execvp_218) (const char * (____file_216), char * const ____argv_217[]);// L581:L582 +extern int (__execlp_221) (const char * (____file_219), const char * (____arg_220), ... );// L587:L588 +extern int (__nice_223) (int ____inc_222);// L601 +extern int (__nice_224) (int ____inc_222);// L601 +extern void (___exit_226) (int ____status_225);// L606 +extern void (___exit_227) (int ____status_225);// L606 +enum ____anonymous_tag_249_250 ;// L24 +enum ____anonymous_tag_466_467 ;// L71 +enum ____anonymous_tag_532_533 ;// L533 +extern long int (__pathconf_536) (const char * (____path_534), int ____name_535);// L615:L616 +extern long int (__fpathconf_539) (int ____fd_537, int ____name_538);// L619 +extern long int (__sysconf_541) (int ____name_540);// L622 +extern __size_t_57 (__confstr_545) (int ____name_542, char * (____buf_543), __size_t_57 ____len_544);// L626 +extern ____pid_t_23 (__getpid_546) (void );// L631 +extern ____pid_t_23 (__getpid_547) (void );// L631 +extern ____pid_t_23 (__getppid_548) (void );// L634 +extern ____pid_t_23 (__getpgrp_549) (void );// L637 +extern ____pid_t_23 (____getpgid_551) (____pid_t_23 ____pid_550);// L640 +extern ____pid_t_23 (__getpgid_553) (____pid_t_23 ____pid_552);// L642 +extern int (__setpgid_556) (____pid_t_23 ____pid_554, ____pid_t_23 ____pgid_555);// L649 +extern int (__setpgid_557) (____pid_t_23 ____pid_554, ____pid_t_23 ____pgid_555);// L649 +extern int (__setpgrp_558) (void );// L663 +extern ____pid_t_23 (__setsid_559) (void );// L670 +extern ____pid_t_23 (__setsid_560) (void );// L670 +extern ____pid_t_23 (__getsid_562) (____pid_t_23 ____pid_561);// L674 +extern ____uid_t_15 (__getuid_563) (void );// L678 +extern ____uid_t_15 (__getuid_564) (void );// L678 +extern ____uid_t_15 (__geteuid_565) (void );// L681 +extern ____gid_t_16 (__getgid_566) (void );// L684 +extern ____gid_t_16 (__getegid_567) (void );// L687 +extern int (__getgroups_570) (int ____size_568, ____gid_t_16 ____list_569[]);// L692 +extern int (__getgroups_571) (int ____size_568, ____gid_t_16 ____list_569[]);// L692 +extern int (__setuid_573) (____uid_t_15 ____uid_572);// L703 +extern int (__setuid_574) (____uid_t_15 ____uid_572);// L703 +extern int (__setreuid_577) (____uid_t_15 ____ruid_575, ____uid_t_15 ____euid_576);// L708 +extern int (__setreuid_578) (____uid_t_15 ____ruid_575, ____uid_t_15 ____euid_576);// L708 +extern int (__seteuid_580) (____uid_t_15 ____uid_579);// L713 +extern int (__seteuid_581) (____uid_t_15 ____uid_579);// L713 +extern int (__setgid_583) (____gid_t_16 ____gid_582);// L720 +extern int (__setgid_584) (____gid_t_16 ____gid_582);// L720 +extern int (__setgid_585) (____gid_t_16 ____gid_582);// L720 +extern int (__setgid_586) (____gid_t_16 ____gid_582);// L720 +extern int (__setregid_589) (____gid_t_16 ____rgid_587, ____gid_t_16 ____egid_588);// L725 +extern int (__setregid_590) (____gid_t_16 ____rgid_587, ____gid_t_16 ____egid_588);// L725 +extern int (__setegid_592) (____gid_t_16 ____gid_591);// L730 +extern int (__setegid_593) (____gid_t_16 ____gid_591);// L730 +extern ____pid_t_23 (__fork_594) (void );// L759 +extern ____pid_t_23 (__fork_595) (void );// L759 +extern ____pid_t_23 (__vfork_596) (void );// L767 +extern char * ((__ttyname_598) (int ____fd_597));// L773 +extern char * ((__ttyname_599) (int ____fd_597));// L773 +extern int (__ttyname_r_603) (int ____fd_600, char * (____buf_601), __size_t_57 ____buflen_602);// L777:L778 +extern int (__ttyname_r_604) (int ____fd_600, char * (____buf_601), __size_t_57 ____buflen_602);// L777:L778 +extern int (__isatty_606) (int ____fd_605);// L782 +extern int (__ttyslot_607) (void );// L788 +extern int (__link_610) (const char * (____from_608), const char * (____to_609));// L793:L794 +extern int (__link_611) (const char * (____from_608), const char * (____to_609));// L793:L794 +extern int (__link_612) (const char * (____from_608), const char * (____to_609));// L793:L794 +extern int (__link_613) (const char * (____from_608), const char * (____to_609));// L793:L794 +extern int (__linkat_619) (int ____fromfd_614, const char * (____from_615), int ____tofd_616, const char * (____to_617), int ____flags_618);// L799:L801 +extern int (__linkat_620) (int ____fromfd_614, const char * (____from_615), int ____tofd_616, const char * (____to_617), int ____flags_618);// L799:L801 +extern int (__symlink_623) (const char * (____from_621), const char * (____to_622));// L806:L807 +extern int (__symlink_624) (const char * (____from_621), const char * (____to_622));// L806:L807 +extern __ssize_t_55 (__readlink_628) (const char * __restrict ____path_625, char * __restrict ____buf_626, __size_t_57 ____len_627);// L812:L814 +extern __ssize_t_55 (__readlink_630) (const char * __restrict ____path_625, char * __restrict ____buf_626, __size_t_57 ____len_627);// L812:L814 +extern int (__symlinkat_635) (const char * (____from_632), int ____tofd_633, const char * (____to_634));// L819:L820 +extern int (__symlinkat_636) (const char * (____from_632), int ____tofd_633, const char * (____to_634));// L819:L820 +extern __ssize_t_55 (__readlinkat_641) (int ____fd_637, const char * __restrict ____path_638, char * __restrict ____buf_639, __size_t_57 ____len_640);// L823:L825 +extern __ssize_t_55 (__readlinkat_643) (int ____fd_637, const char * __restrict ____path_638, char * __restrict ____buf_639, __size_t_57 ____len_640);// L823:L825 +extern int (__unlink_646) (const char * (____name_645));// L829 +extern int (__unlink_647) (const char * (____name_645));// L829 +extern int (__unlinkat_651) (int ____fd_648, const char * (____name_649), int ____flag_650);// L833:L834 +extern int (__rmdir_653) (const char * (____path_652));// L838 +extern int (__rmdir_654) (const char * (____path_652));// L838 +extern ____pid_t_23 (__tcgetpgrp_656) (int ____fd_655);// L842 +extern int (__tcsetpgrp_659) (int ____fd_657, ____pid_t_23 ____pgrp_id_658);// L845 +extern char * ((__getlogin_660) (void ));// L852 +extern int (__getlogin_r_663) (char * (____name_661), __size_t_57 ____name_len_662);// L860 +extern int (__setlogin_665) (const char * (____name_664));// L865 +extern char * (__optarg_666);// L57 +extern int __optind_667;// L71 +extern int __opterr_668;// L76 +extern int __optopt_669;// L80 +extern int (__getopt_673) (int _____argc_670, char * const * (_____argv_671), const char * (____shortopts_672));// L150:L151 +extern int (__gethostname_676) (char * (____name_674), __size_t_57 ____len_675);// L882 +extern int (__sethostname_679) (const char * (____name_677), __size_t_57 ____len_678);// L889:L890 +extern int (__sethostname_680) (const char * (____name_677), __size_t_57 ____len_678);// L889:L890 +extern int (__sethostid_682) (long int ____id_681);// L894 +extern int (__sethostid_683) (long int ____id_681);// L894 +extern int (__getdomainname_686) (char * (____name_684), __size_t_57 ____len_685);// L900:L901 +extern int (__getdomainname_687) (char * (____name_684), __size_t_57 ____len_685);// L900:L901 +extern int (__setdomainname_690) (const char * (____name_688), __size_t_57 ____len_689);// L902:L903 +extern int (__setdomainname_691) (const char * (____name_688), __size_t_57 ____len_689);// L902:L903 +extern int (__vhangup_692) (void );// L909 +extern int (__revoke_694) (const char * (____file_693));// L912 +extern int (__revoke_695) (const char * (____file_693));// L912 +extern int (__profil_700) (unsigned short int * (____sample_buffer_696), __size_t_57 ____size_697, __size_t_57 ____offset_698, unsigned int ____scale_699);// L920:L922 +extern int (__acct_702) (const char * (____name_701));// L928 +extern char * ((__getusershell_703) (void ));// L932 +extern void (__endusershell_704) (void );// L933 +extern void (__setusershell_705) (void );// L934 +extern int (__daemon_708) (int ____nochdir_706, int ____noclose_707);// L940 +extern int (__daemon_709) (int ____nochdir_706, int ____noclose_707);// L940 +extern int (__chroot_711) (const char * (____path_710));// L947 +extern int (__chroot_712) (const char * (____path_710));// L947 +extern char * ((__getpass_714) (const char * (____prompt_713)));// L951 +extern int (__fsync_716) (int ____fd_715);// L959 +extern int (__fsync_717) (int ____fd_715);// L959 +extern int (__fsync_718) (int ____fd_715);// L959 +extern long int (__gethostid_719) (void );// L972 +extern void (__sync_720) (void );// L975 +extern int (__getpagesize_721) (void );// L981 +extern int (__getdtablesize_722) (void );// L986 +extern int (__truncate_727) (const char * (____file_723), ____off_t_21 ____length_724);// L996:L997 +extern int (__truncate_729) (const char * (____file_723), ____off_t_21 ____length_724);// L996:L997 +extern int (__truncate_728) (const char * (____file_725), ____off64_t_22 ____length_726);// L1000:L1002 +extern int (__truncate_730) (const char * (____file_725), ____off64_t_22 ____length_726);// L1000:L1002 +extern int (__ftruncate_738) (int ____fd_733, ____off64_t_22 ____length_734);// L1022:L1023 +extern int (__ftruncate_737) (int ____fd_731, ____off_t_21 ____length_732);// L1019 +extern int (__ftruncate_736) (int ____fd_733, ____off64_t_22 ____length_734);// L1022:L1023 +extern int (__ftruncate_735) (int ____fd_731, ____off_t_21 ____length_732);// L1019 +extern int (__brk_740) (void * (____addr_739));// L1040 +extern int (__brk_741) (void * (____addr_739));// L1040 +extern void * ((__sbrk_744) (__intptr_t_65 ____delta_742));// L1046 +extern long int (__syscall_747) (long int ____sysno_746, ... );// L1061 +extern int (__lockf_757) (int ____fd_751, int ____cmd_752, ____off64_t_22 ____len_753);// L1087:L1088 +extern int (__lockf_756) (int ____fd_748, int ____cmd_749, ____off_t_21 ____len_750);// L1084 +extern int (__lockf_755) (int ____fd_751, int ____cmd_752, ____off64_t_22 ____len_753);// L1087:L1088 +extern int (__lockf_754) (int ____fd_748, int ____cmd_749, ____off_t_21 ____len_750);// L1084 +extern int (__fdatasync_759) (int ____fildes_758);// L1115 +extern __ssize_t_55 (____read_chk_764) (int ____fd_760, void * (____buf_761), __size_t_57 ____nbytes_762, __size_t_57 ____buflen_763);// L23:L24 +extern __ssize_t_55 (____read_alias_769) (int ____fd_766, void * (____buf_767), __size_t_57 ____nbytes_768);// L25:L26 +extern __ssize_t_55 (____read_chk_warn_775) (int ____fd_771, void * (____buf_772), __size_t_57 ____nbytes_773, __size_t_57 ____buflen_774);// L27:L31 /* no function due to type errors in the function prototype */ -extern __ssize_t_56 (____readlink_chk_916) (const char * __restrict ____path_912, char * __restrict ____buf_913, __size_t_59 ____len_914, __size_t_59 ____buflen_915);// L123:L126 -extern __ssize_t_56 (____readlink_alias_922) (const char * __restrict ____path_919, char * __restrict ____buf_920, __size_t_59 ____len_921);// L127:L130 -extern __ssize_t_56 (____readlink_chk_warn_929) (const char * __restrict ____path_925, char * __restrict ____buf_926, __size_t_59 ____len_927, __size_t_59 ____buflen_928);// L131:L136 +extern __ssize_t_55 (____readlink_chk_785) (const char * __restrict ____path_781, char * __restrict ____buf_782, __size_t_57 ____len_783, __size_t_57 ____buflen_784);// L123:L126 +extern __ssize_t_55 (____readlink_alias_790) (const char * __restrict ____path_787, char * __restrict ____buf_788, __size_t_57 ____len_789);// L127:L130 +extern __ssize_t_55 (____readlink_chk_warn_796) (const char * __restrict ____path_792, char * __restrict ____buf_793, __size_t_57 ____len_794, __size_t_57 ____buflen_795);// L131:L136 /* no function due to type errors in the function prototype */ -extern __ssize_t_56 (____readlinkat_chk_942) (int ____fd_937, const char * __restrict ____path_938, char * __restrict ____buf_939, __size_t_59 ____len_940, __size_t_59 ____buflen_941);// L155:L158 -extern __ssize_t_56 (____readlinkat_alias_949) (int ____fd_945, const char * __restrict ____path_946, char * __restrict ____buf_947, __size_t_59 ____len_948);// L159:L163 -extern __ssize_t_56 (____readlinkat_chk_warn_957) (int ____fd_952, const char * __restrict ____path_953, char * __restrict ____buf_954, __size_t_59 ____len_955, __size_t_59 ____buflen_956);// L164:L170 +extern __ssize_t_55 (____readlinkat_chk_807) (int ____fd_802, const char * __restrict ____path_803, char * __restrict ____buf_804, __size_t_57 ____len_805, __size_t_57 ____buflen_806);// L155:L158 +extern __ssize_t_55 (____readlinkat_alias_813) (int ____fd_809, const char * __restrict ____path_810, char * __restrict ____buf_811, __size_t_57 ____len_812);// L159:L163 +extern __ssize_t_55 (____readlinkat_chk_warn_820) (int ____fd_815, const char * __restrict ____path_816, char * __restrict ____buf_817, __size_t_57 ____len_818, __size_t_57 ____buflen_819);// L164:L170 /* no function due to type errors in the function prototype */ -extern char * ((____getcwd_chk_969) (char * (____buf_966), __size_t_59 ____size_967, __size_t_59 ____buflen_968));// L189:L190 -extern char * ((____getcwd_chk_970) (char * (____buf_966), __size_t_59 ____size_967, __size_t_59 ____buflen_968));// L189:L190 -extern char * ((____getcwd_alias_973) (char * (____buf_971), __size_t_59 ____size_972));// L191:L192 -extern char * ((____getcwd_chk_warn_977) (char * (____buf_974), __size_t_59 ____size_975, __size_t_59 ____buflen_976));// L193:L197 +extern char * ((____getcwd_chk_830) (char * (____buf_827), __size_t_57 ____size_828, __size_t_57 ____buflen_829));// L189:L190 +extern char * ((____getcwd_chk_831) (char * (____buf_827), __size_t_57 ____size_828, __size_t_57 ____buflen_829));// L189:L190 +extern char * ((____getcwd_alias_834) (char * (____buf_832), __size_t_57 ____size_833));// L191:L192 +extern char * ((____getcwd_chk_warn_838) (char * (____buf_835), __size_t_57 ____size_836, __size_t_57 ____buflen_837));// L193:L197 /* no function due to type errors in the function prototype */ -extern char * ((____getwd_chk_983) (char * (____buf_981), __size_t_59 __buflen_982));// L214:L215 -extern char * ((____getwd_warn_985) (char * (____buf_984)));// L216:L218 +extern char * ((____getwd_chk_844) (char * (____buf_842), __size_t_57 __buflen_843));// L214:L215 +extern char * ((____getwd_warn_846) (char * (____buf_845)));// L216:L218 /* no function due to type errors in the function prototype */ -extern __size_t_59 (____confstr_chk_992) (int ____name_988, char * (____buf_989), __size_t_59 ____len_990, __size_t_59 ____buflen_991);// L229:L230 -extern __size_t_59 (____confstr_chk_993) (int ____name_988, char * (____buf_989), __size_t_59 ____len_990, __size_t_59 ____buflen_991);// L229:L230 -extern __size_t_59 (____confstr_alias_997) (int ____name_994, char * (____buf_995), __size_t_59 ____len_996);// L231:L232 -extern __size_t_59 (____confstr_chk_warn_1002) (int ____name_998, char * (____buf_999), __size_t_59 ____len_1000, __size_t_59 ____buflen_1001);// L233:L237 +extern __size_t_57 (____confstr_chk_853) (int ____name_849, char * (____buf_850), __size_t_57 ____len_851, __size_t_57 ____buflen_852);// L229:L230 +extern __size_t_57 (____confstr_chk_854) (int ____name_849, char * (____buf_850), __size_t_57 ____len_851, __size_t_57 ____buflen_852);// L229:L230 +extern __size_t_57 (____confstr_alias_858) (int ____name_855, char * (____buf_856), __size_t_57 ____len_857);// L231:L232 +extern __size_t_57 (____confstr_chk_warn_863) (int ____name_859, char * (____buf_860), __size_t_57 ____len_861, __size_t_57 ____buflen_862);// L233:L237 /* no function due to type errors in the function prototype */ -extern int (____getgroups_chk_1011) (int ____size_1007, ____gid_t_16 ____list_1008[], __size_t_59 ____listlen_1010);// L254:L255 -extern int (____getgroups_alias_1016) (int ____size_1013, ____gid_t_16 ____list_1014[]);// L256:L257 -extern int (____getgroups_chk_warn_1022) (int ____size_1018, ____gid_t_16 ____list_1019[], __size_t_59 ____listlen_1021);// L258:L262 +extern int (____getgroups_chk_871) (int ____size_868, ____gid_t_16 ____list_869[], __size_t_57 ____listlen_870);// L254:L255 +extern int (____getgroups_alias_874) (int ____size_872, ____gid_t_16 ____list_873[]);// L256:L257 +extern int (____getgroups_chk_warn_878) (int ____size_875, ____gid_t_16 ____list_876[], __size_t_57 ____listlen_877);// L258:L262 /* no function due to type errors in the function prototype */ -extern int (____ttyname_r_chk_1032) (int ____fd_1028, char * (____buf_1029), __size_t_59 ____buflen_1030, __size_t_59 ____nreal_1031);// L279:L280 -extern int (____ttyname_r_alias_1036) (int ____fd_1033, char * (____buf_1034), __size_t_59 ____buflen_1035);// L281:L283 -extern int (____ttyname_r_chk_warn_1041) (int ____fd_1037, char * (____buf_1038), __size_t_59 ____buflen_1039, __size_t_59 ____nreal_1040);// L284:L288 +extern int (____ttyname_r_chk_885) (int ____fd_881, char * (____buf_882), __size_t_57 ____buflen_883, __size_t_57 ____nreal_884);// L279:L280 +extern int (____ttyname_r_alias_889) (int ____fd_886, char * (____buf_887), __size_t_57 ____buflen_888);// L281:L283 +extern int (____ttyname_r_chk_warn_894) (int ____fd_890, char * (____buf_891), __size_t_57 ____buflen_892, __size_t_57 ____nreal_893);// L284:L288 /* no function due to type errors in the function prototype */ -extern int (____getlogin_r_chk_1048) (char * (____buf_1045), __size_t_59 ____buflen_1046, __size_t_59 ____nreal_1047);// L306:L307 -extern int (____getlogin_r_alias_1051) (char * (____buf_1049), __size_t_59 ____buflen_1050);// L308:L309 -extern int (____getlogin_r_chk_warn_1055) (char * (____buf_1052), __size_t_59 ____buflen_1053, __size_t_59 ____nreal_1054);// L310:L314 +extern int (____getlogin_r_chk_901) (char * (____buf_898), __size_t_57 ____buflen_899, __size_t_57 ____nreal_900);// L306:L307 +extern int (____getlogin_r_alias_904) (char * (____buf_902), __size_t_57 ____buflen_903);// L308:L309 +extern int (____getlogin_r_chk_warn_908) (char * (____buf_905), __size_t_57 ____buflen_906, __size_t_57 ____nreal_907);// L310:L314 /* no function due to type errors in the function prototype */ -extern int (____gethostname_chk_1061) (char * (____buf_1058), __size_t_59 ____buflen_1059, __size_t_59 ____nreal_1060);// L333:L334 -extern int (____gethostname_alias_1064) (char * (____buf_1062), __size_t_59 ____buflen_1063);// L335:L336 -extern int (____gethostname_chk_warn_1068) (char * (____buf_1065), __size_t_59 ____buflen_1066, __size_t_59 ____nreal_1067);// L337:L341 +extern int (____gethostname_chk_914) (char * (____buf_911), __size_t_57 ____buflen_912, __size_t_57 ____nreal_913);// L333:L334 +extern int (____gethostname_alias_917) (char * (____buf_915), __size_t_57 ____buflen_916);// L335:L336 +extern int (____gethostname_chk_warn_921) (char * (____buf_918), __size_t_57 ____buflen_919, __size_t_57 ____nreal_920);// L337:L341 /* no function due to type errors in the function prototype */ -extern int (____getdomainname_chk_1074) (char * (____buf_1071), __size_t_59 ____buflen_1072, __size_t_59 ____nreal_1073);// L360:L361 -extern int (____getdomainname_alias_1077) (char * (____buf_1075), __size_t_59 ____buflen_1076);// L362:L364 -extern int (____getdomainname_chk_warn_1081) (char * (____buf_1078), __size_t_59 ____buflen_1079, __size_t_59 ____nreal_1080);// L365:L370 +extern int (____getdomainname_chk_927) (char * (____buf_924), __size_t_57 ____buflen_925, __size_t_57 ____nreal_926);// L360:L361 +extern int (____getdomainname_alias_930) (char * (____buf_928), __size_t_57 ____buflen_929);// L362:L364 +extern int (____getdomainname_chk_warn_934) (char * (____buf_931), __size_t_57 ____buflen_932, __size_t_57 ____nreal_933);// L365:L370 /* no function due to type errors in the function prototype */ -struct __forward_tag_reference_1084 ;// L0 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -struct __forward_tag_reference_1113 ;// L0 -struct __forward_tag_reference_1113 ;// L0 -struct __forward_tag_reference_1084 ;// L0 -// typedef moved to top of scope -struct ___IO_marker_1116 ;// L156 -enum ____codecvt_result_1124 ;// L176 -struct ___IO_FILE_1125 ;// L241 - -struct ___IO_FILE_1150 ;// L241 -struct ___IO_FILE_complete_1183 ;// L241 - -// typedef moved to top of scope -// typedef moved to top of scope -struct __forward_tag_reference_1200 ;// L0 -extern struct __forward_tag_reference_1200 ___IO_2_1_stdin__1201;// L315 -extern struct __forward_tag_reference_1200 ___IO_2_1_stdout__1202;// L316 -extern struct __forward_tag_reference_1200 ___IO_2_1_stderr__1203;// L317 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern int (____underflow_1222) (___IO_FILE_1197 *);// L385 -extern int (____underflow_1223) (___IO_FILE_1198 *);// L385 -extern int (____uflow_1225) (___IO_FILE_1197 *);// L386 -extern int (____uflow_1226) (___IO_FILE_1198 *);// L386 -extern int (____overflow_1228) (___IO_FILE_1197 *, int );// L387 -extern int (____overflow_1229) (___IO_FILE_1198 *, int );// L387 -extern int (___IO_getc_1234) (___IO_FILE_1197 * (____fp_1231));// L429 -extern int (___IO_getc_1235) (___IO_FILE_1198 * (____fp_1232));// L429 -extern int (___IO_putc_1241) (int ____c_1237, ___IO_FILE_1197 * (____fp_1238));// L430 -extern int (___IO_putc_1242) (int ____c_1237, ___IO_FILE_1198 * (____fp_1239));// L430 -extern int (___IO_feof_1247) (___IO_FILE_1197 * (____fp_1244));// L431 -extern int (___IO_feof_1248) (___IO_FILE_1198 * (____fp_1245));// L431 -extern int (___IO_ferror_1253) (___IO_FILE_1197 * (____fp_1250));// L432 -extern int (___IO_ferror_1254) (___IO_FILE_1198 * (____fp_1251));// L432 -extern int (___IO_peekc_locked_1259) (___IO_FILE_1197 * (____fp_1256));// L434 -extern int (___IO_peekc_locked_1260) (___IO_FILE_1198 * (____fp_1257));// L434 -extern void (___IO_flockfile_1262) (___IO_FILE_1197 *);// L440 -extern void (___IO_flockfile_1263) (___IO_FILE_1198 *);// L440 -extern void (___IO_funlockfile_1265) (___IO_FILE_1197 *);// L441 -extern void (___IO_funlockfile_1266) (___IO_FILE_1198 *);// L441 -extern int (___IO_ftrylockfile_1268) (___IO_FILE_1197 *);// L442 -extern int (___IO_ftrylockfile_1269) (___IO_FILE_1198 *);// L442 -extern int (___IO_vfscanf_1271) (___IO_FILE_1197 * __restrict , const char * __restrict , ____gnuc_va_list_1112 , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_1273) (___IO_FILE_1198 * __restrict , const char * __restrict , ____gnuc_va_list_1112 , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_1277) (___IO_FILE_1197 * __restrict , const char * __restrict , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_1278) (___IO_FILE_1198 * __restrict , const char * __restrict , int * __restrict );// L459:L460 -extern int (___IO_vfprintf_1280) (___IO_FILE_1197 * __restrict , const char * __restrict , ____gnuc_va_list_1112 );// L461:L462 -extern int (___IO_vfprintf_1282) (___IO_FILE_1198 * __restrict , const char * __restrict , ____gnuc_va_list_1112 );// L461:L462 -extern int (___IO_vfprintf_1286) ();// L461:L462 -extern ____ssize_t_47 (___IO_padn_1287) (___IO_FILE_1197 *, int , ____ssize_t_47 );// L463 -extern ____ssize_t_47 (___IO_padn_1288) (___IO_FILE_1198 *, int , ____ssize_t_47 );// L463 -extern __size_t_59 (___IO_sgetn_1291) (___IO_FILE_1197 *, void *, __size_t_59 );// L464 -extern __size_t_59 (___IO_sgetn_1292) (___IO_FILE_1198 *, void *, __size_t_59 );// L464 -extern ____off64_t_22 (___IO_seekoff_1294) (___IO_FILE_1197 *, ____off64_t_22 , int , int );// L466 -extern ____off64_t_22 (___IO_seekoff_1295) (___IO_FILE_1198 *, ____off64_t_22 , int , int );// L466 -extern ____off64_t_22 (___IO_seekpos_1298) (___IO_FILE_1197 *, ____off64_t_22 , int );// L467 -extern ____off64_t_22 (___IO_seekpos_1299) (___IO_FILE_1198 *, ____off64_t_22 , int );// L467 -extern void (___IO_free_backup_area_1302) (___IO_FILE_1197 *);// L469 -extern void (___IO_free_backup_area_1303) (___IO_FILE_1198 *);// L469 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern struct ___IO_FILE_1125 * (__stdin_1311);// L168 -extern struct ___IO_FILE_1150 * (__stdin_1312);// L168 -extern struct ___IO_FILE_1125 * (__stdout_1314);// L169 -extern struct ___IO_FILE_1150 * (__stdout_1315);// L169 -extern struct ___IO_FILE_1125 * (__stderr_1317);// L170 -extern struct ___IO_FILE_1150 * (__stderr_1318);// L170 -extern int (__remove_1321) (const char * (____filename_1320));// L178 -extern int (__rename_1324) (const char * (____old_1322), const char * (____new_1323));// L180 -extern int (__renameat_1329) (int ____oldfd_1325, const char * (____old_1326), int ____newfd_1327, const char * (____new_1328));// L185:L186 -extern __FILE_1085 * ((__tmpfile_1330) (void ));// L195 -extern __FILE_1085 * ((__tmpfile_1336) (void ));// L198 -extern __FILE_1085 * ((__tmpfile_1334) (void ));// L195 -extern __FILE_1085 * ((__tmpfile_1332) (void ));// L198 -extern char * ((__tmpnam_1339) (char * (____s_1338)));// L209 -extern char * ((__tmpnam_1340) (char * (____s_1338)));// L209 -extern char * ((__tmpnam_r_1342) (char * (____s_1341)));// L215 -extern char * ((__tmpnam_r_1343) (char * (____s_1341)));// L215 -extern char * ((__tempnam_1346) (const char * (____dir_1344), const char * (____pfx_1345)));// L227:L228 -extern char * ((__tempnam_1347) (const char * (____dir_1344), const char * (____pfx_1345)));// L227:L228 -extern int (__fclose_1350) (__FILE_1085 * (____stream_1348));// L237 -extern int (__fclose_1352) (__FILE_1085 * (____stream_1348));// L237 -extern int (__fflush_1356) (__FILE_1085 * (____stream_1354));// L242 -extern int (__fflush_unlocked_1360) (__FILE_1085 * (____stream_1358));// L252 -extern __FILE_1085 * ((__fopen_1364) (const char * __restrict ____filename_1362, const char * __restrict ____modes_1363));// L272:L273 -extern __FILE_1085 * ((__fopen_1366) (const char * __restrict ____filename_1362, const char * __restrict ____modes_1363));// L272:L273 -extern __FILE_1085 * ((__fopen_1374) (const char * __restrict ____filename_1372, const char * __restrict ____modes_1373));// L283:L285 -extern __FILE_1085 * ((__fopen_1376) (const char * __restrict ____filename_1372, const char * __restrict ____modes_1373));// L283:L285 -extern __FILE_1085 * ((__freopen_1382) (const char * __restrict ____filename_1368, const char * __restrict ____modes_1369, __FILE_1085 * __restrict ____stream_1370));// L278:L280 -extern __FILE_1085 * ((__freopen_1388) (const char * __restrict ____filename_1368, const char * __restrict ____modes_1369, __FILE_1085 * __restrict ____stream_1370));// L278:L280 -extern __FILE_1085 * ((__freopen_1386) (const char * __restrict ____filename_1378, const char * __restrict ____modes_1379, __FILE_1085 * __restrict ____stream_1380));// L286:L289 -extern __FILE_1085 * ((__freopen_1384) (const char * __restrict ____filename_1378, const char * __restrict ____modes_1379, __FILE_1085 * __restrict ____stream_1380));// L286:L289 -extern __FILE_1085 * ((__fdopen_1392) (int ____fd_1390, const char * (____modes_1391)));// L306 -extern __FILE_1085 * ((__fdopen_1394) (int ____fd_1390, const char * (____modes_1391)));// L306 -extern __FILE_1085 * ((__fmemopen_1399) (void * (____s_1396), __size_t_59 ____len_1397, const char * (____modes_1398)));// L319:L320 -extern __FILE_1085 * ((__fmemopen_1401) (void * (____s_1396), __size_t_59 ____len_1397, const char * (____modes_1398)));// L319:L320 -extern __FILE_1085 * ((__open_memstream_1405) (char * (* (____bufloc_1403)), __size_t_59 * (____sizeloc_1404)));// L325 -extern __FILE_1085 * ((__open_memstream_1407) (char * (* (____bufloc_1403)), __size_t_59 * (____sizeloc_1404)));// L325 -extern void (__setbuf_1412) (__FILE_1085 * __restrict ____stream_1409, char * __restrict ____buf_1411);// L332 -extern void (__setbuf_1414) (__FILE_1085 * __restrict ____stream_1409, char * __restrict ____buf_1411);// L332 -extern int (__setvbuf_1421) (__FILE_1085 * __restrict ____stream_1416, char * __restrict ____buf_1418, int ____modes_1419, __size_t_59 ____n_1420);// L336:L337 -extern void (__setbuffer_1427) (__FILE_1085 * __restrict ____stream_1423, char * __restrict ____buf_1425, __size_t_59 ____size_1426);// L343:L344 -extern void (__setlinebuf_1431) (__FILE_1085 * (____stream_1429));// L347 -extern int (__fprintf_1436) (__FILE_1085 * __restrict ____stream_1433, const char * __restrict ____format_1435, ... );// L356:L357 -extern int (__fprintf_1438) (__FILE_1085 * __restrict ____stream_1433, const char * __restrict ____format_1435, ... );// L356:L357 -extern int (__printf_1441) (const char * __restrict ____format_1440, ... );// L362 -extern int (__sprintf_1444) (char * __restrict ____s_1442, const char * __restrict ____format_1443, ... );// L364:L365 -extern int (__vfprintf_1450) (__FILE_1085 * __restrict ____s_1445, const char * __restrict ____format_1447, ____gnuc_va_list_1112 ____arg_1448);// L371:L372 -extern int (__vprintf_1457) (const char * __restrict ____format_1454, ____gnuc_va_list_1112 ____arg_1455);// L377 -extern int (__vsprintf_1463) (char * __restrict ____s_1459, const char * __restrict ____format_1460, ____gnuc_va_list_1112 ____arg_1461);// L379:L380 -extern int (__snprintf_1468) (char * __restrict ____s_1465, __size_t_59 ____maxlen_1466, const char * __restrict ____format_1467, ... );// L386:L388 -extern int (__vsnprintf_1474) (char * __restrict ____s_1469, __size_t_59 ____maxlen_1470, const char * __restrict ____format_1471, ____gnuc_va_list_1112 ____arg_1472);// L390:L392 -extern int (__vdprintf_1480) (int ____fd_1476, const char * __restrict ____fmt_1477, ____gnuc_va_list_1112 ____arg_1478);// L412:L414 -extern int (__dprintf_1484) (int ____fd_1482, const char * __restrict ____fmt_1483, ... );// L415:L416 -extern int (__fscanf_1488) (__FILE_1085 * __restrict ____stream_1485, const char * __restrict ____format_1487, ... );// L425:L426 -extern int (__fscanf_1490) (__FILE_1085 * __restrict ____stream_1485, const char * __restrict ____format_1487, ... );// L425:L426 -extern int (__fscanf_1492) (__FILE_1085 * __restrict ____stream_1485, const char * __restrict ____format_1487, ... );// L425:L426 -extern int (__fscanf_1494) (__FILE_1085 * __restrict ____stream_1485, const char * __restrict ____format_1487, ... );// L425:L426 -extern int (__scanf_1497) (const char * __restrict ____format_1496, ... );// L431 -extern int (__scanf_1498) (const char * __restrict ____format_1496, ... );// L431 -extern int (__sscanf_1501) (const char * __restrict ____s_1499, const char * __restrict ____format_1500, ... );// L433:L434 - - - - - - - -extern int (__vfscanf_1529) (__FILE_1085 * __restrict ____s_1524, const char * __restrict ____format_1526, ____gnuc_va_list_1112 ____arg_1527);// L471:L473 -extern int (__vfscanf_1533) (__FILE_1085 * __restrict ____s_1524, const char * __restrict ____format_1526, ____gnuc_va_list_1112 ____arg_1527);// L471:L473 -extern int (__vscanf_1540) (const char * __restrict ____format_1537, ____gnuc_va_list_1112 ____arg_1538);// L479:L480 -extern int (__vscanf_1542) (const char * __restrict ____format_1537, ____gnuc_va_list_1112 ____arg_1538);// L479:L480 -extern int (__vsscanf_1548) (const char * __restrict ____s_1544, const char * __restrict ____format_1545, ____gnuc_va_list_1112 ____arg_1546);// L483:L485 - - - - - -extern int (__fgetc_1583) (__FILE_1085 * (____stream_1581));// L531 -extern int (__getc_1587) (__FILE_1085 * (____stream_1585));// L532 -extern int (__getchar_1589) (void );// L538 -extern int (__getc_unlocked_1592) (__FILE_1085 * (____stream_1590));// L550 -extern int (__getchar_unlocked_1594) (void );// L551 -extern int (__fgetc_unlocked_1597) (__FILE_1085 * (____stream_1595));// L561 -extern int (__fputc_1602) (int ____c_1599, __FILE_1085 * (____stream_1600));// L573 -extern int (__fputc_1604) (int ____c_1599, __FILE_1085 * (____stream_1600));// L573 -extern int (__putc_1609) (int ____c_1606, __FILE_1085 * (____stream_1607));// L574 -extern int (__putchar_1612) (int ____c_1611);// L580 -extern int (__fputc_unlocked_1616) (int ____c_1613, __FILE_1085 * (____stream_1614));// L594 -extern int (__putc_unlocked_1621) (int ____c_1618, __FILE_1085 * (____stream_1619));// L602 -extern int (__putchar_unlocked_1624) (int ____c_1623);// L603 -extern int (__getw_1627) (__FILE_1085 * (____stream_1625));// L610 -extern int (__putw_1632) (int ____w_1629, __FILE_1085 * (____stream_1630));// L613 -extern char * ((__fgets_1638) (char * __restrict ____s_1634, int ____n_1635, __FILE_1085 * __restrict ____stream_1636));// L622:L623 -extern char * ((__fgets_1640) (char * __restrict ____s_1634, int ____n_1635, __FILE_1085 * __restrict ____stream_1636));// L622:L623 -extern char * ((__fgets_1642) (char * __restrict ____s_1634, int ____n_1635, __FILE_1085 * __restrict ____stream_1636));// L622:L623 -extern char * ((__fgets_1644) (char * __restrict ____s_1634, int ____n_1635, __FILE_1085 * __restrict ____stream_1636));// L622:L623 -extern ____ssize_t_47 (____getdelim_1651) (char * (* __restrict ____lineptr_1646), __size_t_59 * __restrict ____n_1647, int ____delimiter_1648, __FILE_1085 * __restrict ____stream_1649);// L665:L667 -extern ____ssize_t_47 (____getdelim_1655) (char * (* __restrict ____lineptr_1646), __size_t_59 * __restrict ____n_1647, int ____delimiter_1648, __FILE_1085 * __restrict ____stream_1649);// L665:L667 -extern ____ssize_t_47 (__getdelim_1664) (char * (* __restrict ____lineptr_1659), __size_t_59 * __restrict ____n_1660, int ____delimiter_1661, __FILE_1085 * __restrict ____stream_1662);// L668:L670 -extern ____ssize_t_47 (__getdelim_1668) (char * (* __restrict ____lineptr_1659), __size_t_59 * __restrict ____n_1660, int ____delimiter_1661, __FILE_1085 * __restrict ____stream_1662);// L668:L670 -extern ____ssize_t_47 (__getline_1676) (char * (* __restrict ____lineptr_1672), __size_t_59 * __restrict ____n_1673, __FILE_1085 * __restrict ____stream_1674);// L678:L680 -extern ____ssize_t_47 (__getline_1680) (char * (* __restrict ____lineptr_1672), __size_t_59 * __restrict ____n_1673, __FILE_1085 * __restrict ____stream_1674);// L678:L680 -extern int (__fputs_1687) (const char * __restrict ____s_1684, __FILE_1085 * __restrict ____stream_1685);// L689 -extern int (__fputs_1689) (const char * __restrict ____s_1684, __FILE_1085 * __restrict ____stream_1685);// L689 -extern int (__puts_1692) (const char * (____s_1691));// L695 -extern int (__ungetc_1696) (int ____c_1693, __FILE_1085 * (____stream_1694));// L702 -extern int (__fseek_1734) (__FILE_1085 * (____stream_1730), long int ____off_1732, int ____whence_1733);// L749 -extern int (__fseek_1736) (__FILE_1085 * (____stream_1730), long int ____off_1732, int ____whence_1733);// L749 -extern long int (__ftell_1740) (__FILE_1085 * (____stream_1738));// L754 -extern long int (__ftell_1742) (__FILE_1085 * (____stream_1738));// L754 -extern void (__rewind_1746) (__FILE_1085 * (____stream_1744));// L759 -extern int (__fseeko_1753) (__FILE_1085 * (____stream_1748), ____off_t_21 ____off_1750, int ____whence_1752);// L773 -extern int (__fseeko_1764) (__FILE_1085 * (____stream_1759), ____off64_t_22 ____off_1761, int ____whence_1763);// L781:L783 -extern ____off_t_21 (__ftello_1778) (__FILE_1085 * (____stream_1757));// L778 -extern ____off_t_21 (__ftello_1770) (__FILE_1085 * (____stream_1757));// L778 -extern int (__fgetpos_1786) (__FILE_1085 * __restrict ____stream_1782, __fpos_t_1307 * __restrict ____pos_1784);// L798 -extern ____off64_t_22 (__ftello_1774) (__FILE_1085 * (____stream_1768));// L784 -extern int (__fgetpos_1798) (__FILE_1085 * __restrict ____stream_1794, __fpos_t_1309 * __restrict ____pos_1796);// L806:L807 -extern int (__fsetpos_1806) (__FILE_1085 * (____stream_1790), const __fpos_t_1307 * (____pos_1792));// L803 -extern int (__fsetpos_1810) (__FILE_1085 * (____stream_1802), const __fpos_t_1309 * (____pos_1804));// L808:L809 -extern void (__clearerr_1816) (__FILE_1085 * (____stream_1814));// L826 -extern int (__feof_1820) (__FILE_1085 * (____stream_1818));// L828 -extern int (__feof_1822) (__FILE_1085 * (____stream_1818));// L828 -extern int (__ferror_1826) (__FILE_1085 * (____stream_1824));// L830 -extern int (__ferror_1828) (__FILE_1085 * (____stream_1824));// L830 -extern void (__clearerr_unlocked_1832) (__FILE_1085 * (____stream_1830));// L835 -extern int (__feof_unlocked_1836) (__FILE_1085 * (____stream_1834));// L836 -extern int (__feof_unlocked_1838) (__FILE_1085 * (____stream_1834));// L836 -extern int (__ferror_unlocked_1842) (__FILE_1085 * (____stream_1840));// L837 -extern int (__ferror_unlocked_1844) (__FILE_1085 * (____stream_1840));// L837 -extern void (__perror_1847) (const char * (____s_1846));// L846 -extern void (__perror_1848) (const char * (____s_1846));// L846 -extern int __sys_nerr_1849;// L26 - -extern int (__fileno_1855) (__FILE_1085 * (____stream_1851));// L858 -extern int (__fileno_1853) (__FILE_1085 * (____stream_1851));// L858 -extern int (__fileno_unlocked_1861) (__FILE_1085 * (____stream_1857));// L863 -extern int (__fileno_unlocked_1859) (__FILE_1085 * (____stream_1857));// L863 -extern __FILE_1085 * ((__popen_1865) (const char * (____command_1863), const char * (____modes_1864)));// L872 -extern __FILE_1085 * ((__popen_1867) (const char * (____command_1863), const char * (____modes_1864)));// L872 -extern int (__pclose_1871) (__FILE_1085 * (____stream_1869));// L878 -extern char * ((__ctermid_1874) (char * (____s_1873)));// L884 -extern void (__flockfile_1877) (__FILE_1085 * (____stream_1875));// L912 -extern int (__ftrylockfile_1881) (__FILE_1085 * (____stream_1879));// L916 -extern int (__ftrylockfile_1883) (__FILE_1085 * (____stream_1879));// L916 -extern void (__funlockfile_1887) (__FILE_1085 * (____stream_1885));// L919 +struct __forward_tag_reference_937 ;// L0 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +struct __forward_tag_reference_964 ;// L0 +struct __forward_tag_reference_964 ;// L0 +struct __forward_tag_reference_937 ;// L0 +// typedef moved to top of scope +struct ___IO_marker_967 ;// L156 +enum ____codecvt_result_975 ;// L176 +struct ___IO_FILE_976 ;// L241 + +struct ___IO_FILE_1000 ;// L241 +struct ___IO_FILE_complete_1031 ;// L241 + +// typedef moved to top of scope +// typedef moved to top of scope +struct __forward_tag_reference_1047 ;// L0 +extern struct __forward_tag_reference_1047 ___IO_2_1_stdin__1048;// L315 +extern struct __forward_tag_reference_1047 ___IO_2_1_stdout__1049;// L316 +extern struct __forward_tag_reference_1047 ___IO_2_1_stderr__1050;// L317 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern int (____underflow_1065) (___IO_FILE_1044 *);// L385 +extern int (____underflow_1066) (___IO_FILE_1045 *);// L385 +extern int (____uflow_1068) (___IO_FILE_1044 *);// L386 +extern int (____uflow_1069) (___IO_FILE_1045 *);// L386 +extern int (____overflow_1071) (___IO_FILE_1044 *, int );// L387 +extern int (____overflow_1072) (___IO_FILE_1045 *, int );// L387 +extern int (___IO_getc_1077) (___IO_FILE_1044 * (____fp_1074));// L429 +extern int (___IO_getc_1078) (___IO_FILE_1045 * (____fp_1075));// L429 +extern int (___IO_putc_1084) (int ____c_1080, ___IO_FILE_1044 * (____fp_1081));// L430 +extern int (___IO_putc_1085) (int ____c_1080, ___IO_FILE_1045 * (____fp_1082));// L430 +extern int (___IO_feof_1090) (___IO_FILE_1044 * (____fp_1087));// L431 +extern int (___IO_feof_1091) (___IO_FILE_1045 * (____fp_1088));// L431 +extern int (___IO_ferror_1096) (___IO_FILE_1044 * (____fp_1093));// L432 +extern int (___IO_ferror_1097) (___IO_FILE_1045 * (____fp_1094));// L432 +extern int (___IO_peekc_locked_1102) (___IO_FILE_1044 * (____fp_1099));// L434 +extern int (___IO_peekc_locked_1103) (___IO_FILE_1045 * (____fp_1100));// L434 +extern void (___IO_flockfile_1105) (___IO_FILE_1044 *);// L440 +extern void (___IO_flockfile_1106) (___IO_FILE_1045 *);// L440 +extern void (___IO_funlockfile_1108) (___IO_FILE_1044 *);// L441 +extern void (___IO_funlockfile_1109) (___IO_FILE_1045 *);// L441 +extern int (___IO_ftrylockfile_1111) (___IO_FILE_1044 *);// L442 +extern int (___IO_ftrylockfile_1112) (___IO_FILE_1045 *);// L442 +extern int (___IO_vfscanf_1114) (___IO_FILE_1044 * __restrict , const char * __restrict , ____gnuc_va_list_963 , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_1116) (___IO_FILE_1045 * __restrict , const char * __restrict , ____gnuc_va_list_963 , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_1120) (___IO_FILE_1044 * __restrict , const char * __restrict , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_1121) (___IO_FILE_1045 * __restrict , const char * __restrict , int * __restrict );// L459:L460 +extern int (___IO_vfprintf_1123) (___IO_FILE_1044 * __restrict , const char * __restrict , ____gnuc_va_list_963 );// L461:L462 +extern int (___IO_vfprintf_1125) (___IO_FILE_1045 * __restrict , const char * __restrict , ____gnuc_va_list_963 );// L461:L462 +extern int (___IO_vfprintf_1129) ();// L461:L462 +extern ____ssize_t_47 (___IO_padn_1130) (___IO_FILE_1044 *, int , ____ssize_t_47 );// L463 +extern ____ssize_t_47 (___IO_padn_1131) (___IO_FILE_1045 *, int , ____ssize_t_47 );// L463 +extern __size_t_57 (___IO_sgetn_1133) (___IO_FILE_1044 *, void *, __size_t_57 );// L464 +extern __size_t_57 (___IO_sgetn_1134) (___IO_FILE_1045 *, void *, __size_t_57 );// L464 +extern ____off64_t_22 (___IO_seekoff_1136) (___IO_FILE_1044 *, ____off64_t_22 , int , int );// L466 +extern ____off64_t_22 (___IO_seekoff_1137) (___IO_FILE_1045 *, ____off64_t_22 , int , int );// L466 +extern ____off64_t_22 (___IO_seekpos_1139) (___IO_FILE_1044 *, ____off64_t_22 , int );// L467 +extern ____off64_t_22 (___IO_seekpos_1140) (___IO_FILE_1045 *, ____off64_t_22 , int );// L467 +extern void (___IO_free_backup_area_1142) (___IO_FILE_1044 *);// L469 +extern void (___IO_free_backup_area_1143) (___IO_FILE_1045 *);// L469 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern struct ___IO_FILE_976 * (__stdin_1151);// L168 +extern struct ___IO_FILE_1000 * (__stdin_1152);// L168 +extern struct ___IO_FILE_976 * (__stdout_1154);// L169 +extern struct ___IO_FILE_1000 * (__stdout_1155);// L169 +extern struct ___IO_FILE_976 * (__stderr_1157);// L170 +extern struct ___IO_FILE_1000 * (__stderr_1158);// L170 +extern int (__remove_1161) (const char * (____filename_1160));// L178 +extern int (__rename_1164) (const char * (____old_1162), const char * (____new_1163));// L180 +extern int (__renameat_1169) (int ____oldfd_1165, const char * (____old_1166), int ____newfd_1167, const char * (____new_1168));// L185:L186 +extern __FILE_938 * ((__tmpfile_1170) (void ));// L195 +extern __FILE_938 * ((__tmpfile_1176) (void ));// L198 +extern __FILE_938 * ((__tmpfile_1174) (void ));// L195 +extern __FILE_938 * ((__tmpfile_1172) (void ));// L198 +extern char * ((__tmpnam_1179) (char * (____s_1178)));// L209 +extern char * ((__tmpnam_1180) (char * (____s_1178)));// L209 +extern char * ((__tmpnam_r_1182) (char * (____s_1181)));// L215 +extern char * ((__tmpnam_r_1183) (char * (____s_1181)));// L215 +extern char * ((__tempnam_1186) (const char * (____dir_1184), const char * (____pfx_1185)));// L227:L228 +extern char * ((__tempnam_1187) (const char * (____dir_1184), const char * (____pfx_1185)));// L227:L228 +extern int (__fclose_1190) (__FILE_938 * (____stream_1188));// L237 +extern int (__fclose_1192) (__FILE_938 * (____stream_1188));// L237 +extern int (__fflush_1196) (__FILE_938 * (____stream_1194));// L242 +extern int (__fflush_unlocked_1200) (__FILE_938 * (____stream_1198));// L252 +extern __FILE_938 * ((__fopen_1204) (const char * __restrict ____filename_1202, const char * __restrict ____modes_1203));// L272:L273 +extern __FILE_938 * ((__fopen_1206) (const char * __restrict ____filename_1202, const char * __restrict ____modes_1203));// L272:L273 +extern __FILE_938 * ((__fopen_1214) (const char * __restrict ____filename_1212, const char * __restrict ____modes_1213));// L283:L285 +extern __FILE_938 * ((__fopen_1216) (const char * __restrict ____filename_1212, const char * __restrict ____modes_1213));// L283:L285 +extern __FILE_938 * ((__freopen_1222) (const char * __restrict ____filename_1208, const char * __restrict ____modes_1209, __FILE_938 * __restrict ____stream_1210));// L278:L280 +extern __FILE_938 * ((__freopen_1228) (const char * __restrict ____filename_1208, const char * __restrict ____modes_1209, __FILE_938 * __restrict ____stream_1210));// L278:L280 +extern __FILE_938 * ((__freopen_1226) (const char * __restrict ____filename_1218, const char * __restrict ____modes_1219, __FILE_938 * __restrict ____stream_1220));// L286:L289 +extern __FILE_938 * ((__freopen_1224) (const char * __restrict ____filename_1218, const char * __restrict ____modes_1219, __FILE_938 * __restrict ____stream_1220));// L286:L289 +extern __FILE_938 * ((__fdopen_1232) (int ____fd_1230, const char * (____modes_1231)));// L306 +extern __FILE_938 * ((__fdopen_1234) (int ____fd_1230, const char * (____modes_1231)));// L306 +extern __FILE_938 * ((__fmemopen_1239) (void * (____s_1236), __size_t_57 ____len_1237, const char * (____modes_1238)));// L319:L320 +extern __FILE_938 * ((__fmemopen_1241) (void * (____s_1236), __size_t_57 ____len_1237, const char * (____modes_1238)));// L319:L320 +extern __FILE_938 * ((__open_memstream_1245) (char * (* (____bufloc_1243)), __size_t_57 * (____sizeloc_1244)));// L325 +extern __FILE_938 * ((__open_memstream_1247) (char * (* (____bufloc_1243)), __size_t_57 * (____sizeloc_1244)));// L325 +extern void (__setbuf_1252) (__FILE_938 * __restrict ____stream_1249, char * __restrict ____buf_1251);// L332 +extern void (__setbuf_1254) (__FILE_938 * __restrict ____stream_1249, char * __restrict ____buf_1251);// L332 +extern int (__setvbuf_1261) (__FILE_938 * __restrict ____stream_1256, char * __restrict ____buf_1258, int ____modes_1259, __size_t_57 ____n_1260);// L336:L337 +extern void (__setbuffer_1267) (__FILE_938 * __restrict ____stream_1263, char * __restrict ____buf_1265, __size_t_57 ____size_1266);// L343:L344 +extern void (__setlinebuf_1271) (__FILE_938 * (____stream_1269));// L347 +extern int (__fprintf_1276) (__FILE_938 * __restrict ____stream_1273, const char * __restrict ____format_1275, ... );// L356:L357 +extern int (__fprintf_1278) (__FILE_938 * __restrict ____stream_1273, const char * __restrict ____format_1275, ... );// L356:L357 +extern int (__printf_1281) (const char * __restrict ____format_1280, ... );// L362 +extern int (__sprintf_1284) (char * __restrict ____s_1282, const char * __restrict ____format_1283, ... );// L364:L365 +extern int (__vfprintf_1290) (__FILE_938 * __restrict ____s_1285, const char * __restrict ____format_1287, ____gnuc_va_list_963 ____arg_1288);// L371:L372 +extern int (__vprintf_1297) (const char * __restrict ____format_1294, ____gnuc_va_list_963 ____arg_1295);// L377 +extern int (__vsprintf_1303) (char * __restrict ____s_1299, const char * __restrict ____format_1300, ____gnuc_va_list_963 ____arg_1301);// L379:L380 +extern int (__snprintf_1308) (char * __restrict ____s_1305, __size_t_57 ____maxlen_1306, const char * __restrict ____format_1307, ... );// L386:L388 +extern int (__vsnprintf_1314) (char * __restrict ____s_1309, __size_t_57 ____maxlen_1310, const char * __restrict ____format_1311, ____gnuc_va_list_963 ____arg_1312);// L390:L392 +extern int (__vdprintf_1320) (int ____fd_1316, const char * __restrict ____fmt_1317, ____gnuc_va_list_963 ____arg_1318);// L412:L414 +extern int (__dprintf_1324) (int ____fd_1322, const char * __restrict ____fmt_1323, ... );// L415:L416 +extern int (__fscanf_1328) (__FILE_938 * __restrict ____stream_1325, const char * __restrict ____format_1327, ... );// L425:L426 +extern int (__fscanf_1330) (__FILE_938 * __restrict ____stream_1325, const char * __restrict ____format_1327, ... );// L425:L426 +extern int (__fscanf_1332) (__FILE_938 * __restrict ____stream_1325, const char * __restrict ____format_1327, ... );// L425:L426 +extern int (__fscanf_1334) (__FILE_938 * __restrict ____stream_1325, const char * __restrict ____format_1327, ... );// L425:L426 +extern int (__scanf_1337) (const char * __restrict ____format_1336, ... );// L431 +extern int (__scanf_1338) (const char * __restrict ____format_1336, ... );// L431 +extern int (__sscanf_1341) (const char * __restrict ____s_1339, const char * __restrict ____format_1340, ... );// L433:L434 + + + + + + + +extern int (__vfscanf_1369) (__FILE_938 * __restrict ____s_1364, const char * __restrict ____format_1366, ____gnuc_va_list_963 ____arg_1367);// L471:L473 +extern int (__vfscanf_1373) (__FILE_938 * __restrict ____s_1364, const char * __restrict ____format_1366, ____gnuc_va_list_963 ____arg_1367);// L471:L473 +extern int (__vscanf_1380) (const char * __restrict ____format_1377, ____gnuc_va_list_963 ____arg_1378);// L479:L480 +extern int (__vscanf_1382) (const char * __restrict ____format_1377, ____gnuc_va_list_963 ____arg_1378);// L479:L480 +extern int (__vsscanf_1388) (const char * __restrict ____s_1384, const char * __restrict ____format_1385, ____gnuc_va_list_963 ____arg_1386);// L483:L485 + + + + + +extern int (__fgetc_1423) (__FILE_938 * (____stream_1421));// L531 +extern int (__getc_1427) (__FILE_938 * (____stream_1425));// L532 +extern int (__getchar_1429) (void );// L538 +extern int (__getc_unlocked_1432) (__FILE_938 * (____stream_1430));// L550 +extern int (__getchar_unlocked_1434) (void );// L551 +extern int (__fgetc_unlocked_1437) (__FILE_938 * (____stream_1435));// L561 +extern int (__fputc_1442) (int ____c_1439, __FILE_938 * (____stream_1440));// L573 +extern int (__fputc_1444) (int ____c_1439, __FILE_938 * (____stream_1440));// L573 +extern int (__putc_1449) (int ____c_1446, __FILE_938 * (____stream_1447));// L574 +extern int (__putchar_1452) (int ____c_1451);// L580 +extern int (__fputc_unlocked_1456) (int ____c_1453, __FILE_938 * (____stream_1454));// L594 +extern int (__putc_unlocked_1461) (int ____c_1458, __FILE_938 * (____stream_1459));// L602 +extern int (__putchar_unlocked_1464) (int ____c_1463);// L603 +extern int (__getw_1467) (__FILE_938 * (____stream_1465));// L610 +extern int (__putw_1472) (int ____w_1469, __FILE_938 * (____stream_1470));// L613 +extern char * ((__fgets_1478) (char * __restrict ____s_1474, int ____n_1475, __FILE_938 * __restrict ____stream_1476));// L622:L623 +extern char * ((__fgets_1480) (char * __restrict ____s_1474, int ____n_1475, __FILE_938 * __restrict ____stream_1476));// L622:L623 +extern char * ((__fgets_1482) (char * __restrict ____s_1474, int ____n_1475, __FILE_938 * __restrict ____stream_1476));// L622:L623 +extern char * ((__fgets_1484) (char * __restrict ____s_1474, int ____n_1475, __FILE_938 * __restrict ____stream_1476));// L622:L623 +extern ____ssize_t_47 (____getdelim_1491) (char * (* __restrict ____lineptr_1486), __size_t_57 * __restrict ____n_1487, int ____delimiter_1488, __FILE_938 * __restrict ____stream_1489);// L665:L667 +extern ____ssize_t_47 (____getdelim_1493) (char * (* __restrict ____lineptr_1486), __size_t_57 * __restrict ____n_1487, int ____delimiter_1488, __FILE_938 * __restrict ____stream_1489);// L665:L667 +extern ____ssize_t_47 (__getdelim_1500) (char * (* __restrict ____lineptr_1495), __size_t_57 * __restrict ____n_1496, int ____delimiter_1497, __FILE_938 * __restrict ____stream_1498);// L668:L670 +extern ____ssize_t_47 (__getdelim_1502) (char * (* __restrict ____lineptr_1495), __size_t_57 * __restrict ____n_1496, int ____delimiter_1497, __FILE_938 * __restrict ____stream_1498);// L668:L670 +extern ____ssize_t_47 (__getline_1508) (char * (* __restrict ____lineptr_1504), __size_t_57 * __restrict ____n_1505, __FILE_938 * __restrict ____stream_1506);// L678:L680 +extern ____ssize_t_47 (__getline_1510) (char * (* __restrict ____lineptr_1504), __size_t_57 * __restrict ____n_1505, __FILE_938 * __restrict ____stream_1506);// L678:L680 +extern int (__fputs_1515) (const char * __restrict ____s_1512, __FILE_938 * __restrict ____stream_1513);// L689 +extern int (__fputs_1517) (const char * __restrict ____s_1512, __FILE_938 * __restrict ____stream_1513);// L689 +extern int (__puts_1520) (const char * (____s_1519));// L695 +extern int (__ungetc_1524) (int ____c_1521, __FILE_938 * (____stream_1522));// L702 +extern int (__fseek_1562) (__FILE_938 * (____stream_1558), long int ____off_1560, int ____whence_1561);// L749 +extern int (__fseek_1564) (__FILE_938 * (____stream_1558), long int ____off_1560, int ____whence_1561);// L749 +extern long int (__ftell_1568) (__FILE_938 * (____stream_1566));// L754 +extern long int (__ftell_1570) (__FILE_938 * (____stream_1566));// L754 +extern void (__rewind_1574) (__FILE_938 * (____stream_1572));// L759 +extern int (__fseeko_1580) (__FILE_938 * (____stream_1576), ____off_t_21 ____off_1578, int ____whence_1579);// L773 +extern int (__fseeko_1588) (__FILE_938 * (____stream_1584), ____off64_t_22 ____off_1586, int ____whence_1587);// L781:L783 +extern ____off_t_21 (__ftello_1596) (__FILE_938 * (____stream_1582));// L778 +extern ____off_t_21 (__ftello_1592) (__FILE_938 * (____stream_1582));// L778 +extern int (__fgetpos_1602) (__FILE_938 * __restrict ____stream_1598, __fpos_t_1147 * __restrict ____pos_1600);// L798 +extern ____off64_t_22 (__ftello_1594) (__FILE_938 * (____stream_1590));// L784 +extern int (__fgetpos_1614) (__FILE_938 * __restrict ____stream_1610, __fpos_t_1149 * __restrict ____pos_1612);// L806:L807 +extern int (__fsetpos_1622) (__FILE_938 * (____stream_1606), const __fpos_t_1147 * (____pos_1608));// L803 +extern int (__fsetpos_1626) (__FILE_938 * (____stream_1618), const __fpos_t_1149 * (____pos_1620));// L808:L809 +extern void (__clearerr_1632) (__FILE_938 * (____stream_1630));// L826 +extern int (__feof_1636) (__FILE_938 * (____stream_1634));// L828 +extern int (__feof_1638) (__FILE_938 * (____stream_1634));// L828 +extern int (__ferror_1642) (__FILE_938 * (____stream_1640));// L830 +extern int (__ferror_1644) (__FILE_938 * (____stream_1640));// L830 +extern void (__clearerr_unlocked_1648) (__FILE_938 * (____stream_1646));// L835 +extern int (__feof_unlocked_1652) (__FILE_938 * (____stream_1650));// L836 +extern int (__feof_unlocked_1654) (__FILE_938 * (____stream_1650));// L836 +extern int (__ferror_unlocked_1658) (__FILE_938 * (____stream_1656));// L837 +extern int (__ferror_unlocked_1660) (__FILE_938 * (____stream_1656));// L837 +extern void (__perror_1663) (const char * (____s_1662));// L846 +extern void (__perror_1664) (const char * (____s_1662));// L846 +extern int __sys_nerr_1665;// L26 + +extern int (__fileno_1671) (__FILE_938 * (____stream_1667));// L858 +extern int (__fileno_1669) (__FILE_938 * (____stream_1667));// L858 +extern int (__fileno_unlocked_1677) (__FILE_938 * (____stream_1673));// L863 +extern int (__fileno_unlocked_1675) (__FILE_938 * (____stream_1673));// L863 +extern __FILE_938 * ((__popen_1681) (const char * (____command_1679), const char * (____modes_1680)));// L872 +extern __FILE_938 * ((__popen_1683) (const char * (____command_1679), const char * (____modes_1680)));// L872 +extern int (__pclose_1687) (__FILE_938 * (____stream_1685));// L878 +extern char * ((__ctermid_1690) (char * (____s_1689)));// L884 +extern void (__flockfile_1693) (__FILE_938 * (____stream_1691));// L912 +extern int (__ftrylockfile_1697) (__FILE_938 * (____stream_1695));// L916 +extern int (__ftrylockfile_1699) (__FILE_938 * (____stream_1695));// L916 +extern void (__funlockfile_1703) (__FILE_938 * (____stream_1701));// L919 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ @@ -3867,252 +3468,252 @@ extern void (__funlockfile_1887) (__FILE_1085 * (____stream_1885));// L919 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____sprintf_chk_1919) (char * __restrict ____s_1915, int ____flag_1916, __size_t_59 ____slen_1917, const char * __restrict ____format_1918, ... );// L23:L24 -extern int (____vsprintf_chk_1926) (char * __restrict ____s_1920, int ____flag_1921, __size_t_59 ____slen_1922, const char * __restrict ____format_1923, ____gnuc_va_list_1112 ____ap_1924);// L25:L27 +extern int (____sprintf_chk_1735) (char * __restrict ____s_1731, int ____flag_1732, __size_t_57 ____slen_1733, const char * __restrict ____format_1734, ... );// L23:L24 +extern int (____vsprintf_chk_1742) (char * __restrict ____s_1736, int ____flag_1737, __size_t_57 ____slen_1738, const char * __restrict ____format_1739, ____gnuc_va_list_963 ____ap_1740);// L25:L27 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____snprintf_chk_1940) (char * __restrict ____s_1935, __size_t_59 ____n_1936, int ____flag_1937, __size_t_59 ____slen_1938, const char * __restrict ____format_1939, ... );// L52:L54 -extern int (____vsnprintf_chk_1948) (char * __restrict ____s_1941, __size_t_59 ____n_1942, int ____flag_1943, __size_t_59 ____slen_1944, const char * __restrict ____format_1945, ____gnuc_va_list_1112 ____ap_1946);// L55:L57 +extern int (____snprintf_chk_1756) (char * __restrict ____s_1751, __size_t_57 ____n_1752, int ____flag_1753, __size_t_57 ____slen_1754, const char * __restrict ____format_1755, ... );// L52:L54 +extern int (____vsnprintf_chk_1764) (char * __restrict ____s_1757, __size_t_57 ____n_1758, int ____flag_1759, __size_t_57 ____slen_1760, const char * __restrict ____format_1761, ____gnuc_va_list_963 ____ap_1762);// L55:L57 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____fprintf_chk_1963) (__FILE_1085 * __restrict ____stream_1959, int ____flag_1961, const char * __restrict ____format_1962, ... );// L85:L86 -extern int (____printf_chk_1967) (int ____flag_1965, const char * __restrict ____format_1966, ... );// L87 -extern int (____vfprintf_chk_1974) (__FILE_1085 * __restrict ____stream_1968, int ____flag_1970, const char * __restrict ____format_1971, ____gnuc_va_list_1112 ____ap_1972);// L88:L89 -extern int (____vprintf_chk_1982) (int ____flag_1978, const char * __restrict ____format_1979, ____gnuc_va_list_1112 ____ap_1980);// L90:L91 +extern int (____fprintf_chk_1779) (__FILE_938 * __restrict ____stream_1775, int ____flag_1777, const char * __restrict ____format_1778, ... );// L85:L86 +extern int (____printf_chk_1783) (int ____flag_1781, const char * __restrict ____format_1782, ... );// L87 +extern int (____vfprintf_chk_1790) (__FILE_938 * __restrict ____stream_1784, int ____flag_1786, const char * __restrict ____format_1787, ____gnuc_va_list_963 ____ap_1788);// L88:L89 +extern int (____vprintf_chk_1798) (int ____flag_1794, const char * __restrict ____format_1795, ____gnuc_va_list_963 ____ap_1796);// L90:L91 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____dprintf_chk_2004) (int ____fd_2001, int ____flag_2002, const char * __restrict ____fmt_2003, ... );// L131:L132 -extern int (____vdprintf_chk_2010) (int ____fd_2005, int ____flag_2006, const char * __restrict ____fmt_2007, ____gnuc_va_list_1112 ____arg_2008);// L133:L135 +extern int (____dprintf_chk_1820) (int ____fd_1817, int ____flag_1818, const char * __restrict ____fmt_1819, ... );// L131:L132 +extern int (____vdprintf_chk_1826) (int ____fd_1821, int ____flag_1822, const char * __restrict ____fmt_1823, ____gnuc_va_list_963 ____arg_1824);// L133:L135 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern char * ((____fgets_chk_2024) (char * __restrict ____s_2019, __size_t_59 ____size_2020, int ____n_2021, __FILE_1085 * __restrict ____stream_2022));// L241:L242 -extern char * ((____fgets_chk_2026) (char * __restrict ____s_2019, __size_t_59 ____size_2020, int ____n_2021, __FILE_1085 * __restrict ____stream_2022));// L241:L242 -extern char * ((____fgets_chk_2028) (char * __restrict ____s_2019, __size_t_59 ____size_2020, int ____n_2021, __FILE_1085 * __restrict ____stream_2022));// L241:L242 -extern char * ((____fgets_alias_2034) (char * __restrict ____s_2030, int ____n_2031, __FILE_1085 * __restrict ____stream_2032));// L243:L245 -extern char * ((____fgets_chk_warn_2041) (char * __restrict ____s_2036, __size_t_59 ____size_2037, int ____n_2038, __FILE_1085 * __restrict ____stream_2039));// L246:L250 +extern char * ((____fgets_chk_1840) (char * __restrict ____s_1835, __size_t_57 ____size_1836, int ____n_1837, __FILE_938 * __restrict ____stream_1838));// L241:L242 +extern char * ((____fgets_chk_1842) (char * __restrict ____s_1835, __size_t_57 ____size_1836, int ____n_1837, __FILE_938 * __restrict ____stream_1838));// L241:L242 +extern char * ((____fgets_chk_1844) (char * __restrict ____s_1835, __size_t_57 ____size_1836, int ____n_1837, __FILE_938 * __restrict ____stream_1838));// L241:L242 +extern char * ((____fgets_alias_1850) (char * __restrict ____s_1846, int ____n_1847, __FILE_938 * __restrict ____stream_1848));// L243:L245 +extern char * ((____fgets_chk_warn_1857) (char * __restrict ____s_1852, __size_t_57 ____size_1853, int ____n_1854, __FILE_938 * __restrict ____stream_1855));// L246:L250 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_1084 ;// L0 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -struct __forward_tag_reference_1113 ;// L0 -struct __forward_tag_reference_1113 ;// L0 -struct __forward_tag_reference_1084 ;// L0 -// typedef moved to top of scope -struct ___IO_marker_2147 ;// L156 -enum ____codecvt_result_2155 ;// L176 -struct ___IO_FILE_2156 ;// L241 - -struct ___IO_FILE_2181 ;// L241 -struct ___IO_FILE_complete_2214 ;// L241 - -// typedef moved to top of scope -// typedef moved to top of scope -struct __forward_tag_reference_1200 ;// L0 -extern struct __forward_tag_reference_1200 ___IO_2_1_stdin__2231;// L315 -extern struct __forward_tag_reference_1200 ___IO_2_1_stdout__2232;// L316 -extern struct __forward_tag_reference_1200 ___IO_2_1_stderr__2233;// L317 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern int (____underflow_2252) (___IO_FILE_2228 *);// L385 -extern int (____underflow_2253) (___IO_FILE_2229 *);// L385 -extern int (____uflow_2255) (___IO_FILE_2228 *);// L386 -extern int (____uflow_2256) (___IO_FILE_2229 *);// L386 -extern int (____overflow_2258) (___IO_FILE_2228 *, int );// L387 -extern int (____overflow_2259) (___IO_FILE_2229 *, int );// L387 -extern int (___IO_getc_2264) (___IO_FILE_2228 * (____fp_2261));// L429 -extern int (___IO_getc_2265) (___IO_FILE_2229 * (____fp_2262));// L429 -extern int (___IO_putc_2271) (int ____c_2267, ___IO_FILE_2228 * (____fp_2268));// L430 -extern int (___IO_putc_2272) (int ____c_2267, ___IO_FILE_2229 * (____fp_2269));// L430 -extern int (___IO_feof_2277) (___IO_FILE_2228 * (____fp_2274));// L431 -extern int (___IO_feof_2278) (___IO_FILE_2229 * (____fp_2275));// L431 -extern int (___IO_ferror_2283) (___IO_FILE_2228 * (____fp_2280));// L432 -extern int (___IO_ferror_2284) (___IO_FILE_2229 * (____fp_2281));// L432 -extern int (___IO_peekc_locked_2289) (___IO_FILE_2228 * (____fp_2286));// L434 -extern int (___IO_peekc_locked_2290) (___IO_FILE_2229 * (____fp_2287));// L434 -extern void (___IO_flockfile_2292) (___IO_FILE_2228 *);// L440 -extern void (___IO_flockfile_2293) (___IO_FILE_2229 *);// L440 -extern void (___IO_funlockfile_2295) (___IO_FILE_2228 *);// L441 -extern void (___IO_funlockfile_2296) (___IO_FILE_2229 *);// L441 -extern int (___IO_ftrylockfile_2298) (___IO_FILE_2228 *);// L442 -extern int (___IO_ftrylockfile_2299) (___IO_FILE_2229 *);// L442 -extern int (___IO_vfscanf_2301) (___IO_FILE_2228 * __restrict , const char * __restrict , ____gnuc_va_list_2145 , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_2303) (___IO_FILE_2229 * __restrict , const char * __restrict , ____gnuc_va_list_2145 , int * __restrict );// L459:L460 - - -extern int (___IO_vfprintf_2310) (___IO_FILE_2228 * __restrict , const char * __restrict , ____gnuc_va_list_2145 );// L461:L462 -extern int (___IO_vfprintf_2312) (___IO_FILE_2229 * __restrict , const char * __restrict , ____gnuc_va_list_2145 );// L461:L462 - -extern ____ssize_t_47 (___IO_padn_2317) (___IO_FILE_2228 *, int , ____ssize_t_47 );// L463 -extern ____ssize_t_47 (___IO_padn_2318) (___IO_FILE_2229 *, int , ____ssize_t_47 );// L463 -extern __size_t_59 (___IO_sgetn_2321) (___IO_FILE_2228 *, void *, __size_t_59 );// L464 -extern __size_t_59 (___IO_sgetn_2322) (___IO_FILE_2229 *, void *, __size_t_59 );// L464 -extern ____off64_t_22 (___IO_seekoff_2324) (___IO_FILE_2228 *, ____off64_t_22 , int , int );// L466 -extern ____off64_t_22 (___IO_seekoff_2325) (___IO_FILE_2229 *, ____off64_t_22 , int , int );// L466 -extern ____off64_t_22 (___IO_seekpos_2328) (___IO_FILE_2228 *, ____off64_t_22 , int );// L467 -extern ____off64_t_22 (___IO_seekpos_2329) (___IO_FILE_2229 *, ____off64_t_22 , int );// L467 -extern void (___IO_free_backup_area_2332) (___IO_FILE_2228 *);// L469 -extern void (___IO_free_backup_area_2333) (___IO_FILE_2229 *);// L469 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern struct ___IO_FILE_2156 * (__stdin_2341);// L168 -extern struct ___IO_FILE_2181 * (__stdin_2342);// L168 -extern struct ___IO_FILE_2156 * (__stdout_2344);// L169 -extern struct ___IO_FILE_2181 * (__stdout_2345);// L169 -extern struct ___IO_FILE_2156 * (__stderr_2347);// L170 -extern struct ___IO_FILE_2181 * (__stderr_2348);// L170 -extern int (__remove_2351) (const char * (____filename_2350));// L178 -extern int (__rename_2354) (const char * (____old_2352), const char * (____new_2353));// L180 -extern int (__renameat_2359) (int ____oldfd_2355, const char * (____old_2356), int ____newfd_2357, const char * (____new_2358));// L185:L186 -extern __FILE_2119 * ((__tmpfile_2360) (void ));// L195 -extern __FILE_2119 * ((__tmpfile_2362) (void ));// L198 -extern __FILE_2119 * ((__tmpfile_2364) (void ));// L195 -extern __FILE_2119 * ((__tmpfile_2366) (void ));// L198 -extern char * ((__tmpnam_2369) (char * (____s_2368)));// L209 -extern char * ((__tmpnam_2370) (char * (____s_2368)));// L209 -extern char * ((__tmpnam_r_2372) (char * (____s_2371)));// L215 -extern char * ((__tmpnam_r_2373) (char * (____s_2371)));// L215 -extern char * ((__tempnam_2376) (const char * (____dir_2374), const char * (____pfx_2375)));// L227:L228 -extern char * ((__tempnam_2377) (const char * (____dir_2374), const char * (____pfx_2375)));// L227:L228 -extern int (__fclose_2380) (__FILE_2119 * (____stream_2378));// L237 -extern int (__fclose_2382) (__FILE_2119 * (____stream_2378));// L237 -extern int (__fflush_2386) (__FILE_2119 * (____stream_2384));// L242 -extern int (__fflush_unlocked_2390) (__FILE_2119 * (____stream_2388));// L252 -extern __FILE_2119 * ((__fopen_2394) (const char * __restrict ____filename_2392, const char * __restrict ____modes_2393));// L272:L273 -extern __FILE_2119 * ((__fopen_2396) (const char * __restrict ____filename_2392, const char * __restrict ____modes_2393));// L272:L273 -extern __FILE_2119 * ((__fopen_2404) (const char * __restrict ____filename_2402, const char * __restrict ____modes_2403));// L283:L285 -extern __FILE_2119 * ((__fopen_2406) (const char * __restrict ____filename_2402, const char * __restrict ____modes_2403));// L283:L285 -extern __FILE_2119 * ((__freopen_2412) (const char * __restrict ____filename_2398, const char * __restrict ____modes_2399, __FILE_2119 * __restrict ____stream_2400));// L278:L280 -extern __FILE_2119 * ((__freopen_2414) (const char * __restrict ____filename_2408, const char * __restrict ____modes_2409, __FILE_2119 * __restrict ____stream_2410));// L286:L289 -extern __FILE_2119 * ((__freopen_2416) (const char * __restrict ____filename_2408, const char * __restrict ____modes_2409, __FILE_2119 * __restrict ____stream_2410));// L286:L289 -extern __FILE_2119 * ((__freopen_2418) (const char * __restrict ____filename_2398, const char * __restrict ____modes_2399, __FILE_2119 * __restrict ____stream_2400));// L278:L280 -extern __FILE_2119 * ((__fdopen_2422) (int ____fd_2420, const char * (____modes_2421)));// L306 -extern __FILE_2119 * ((__fdopen_2424) (int ____fd_2420, const char * (____modes_2421)));// L306 -extern __FILE_2119 * ((__fmemopen_2429) (void * (____s_2426), __size_t_59 ____len_2427, const char * (____modes_2428)));// L319:L320 -extern __FILE_2119 * ((__fmemopen_2431) (void * (____s_2426), __size_t_59 ____len_2427, const char * (____modes_2428)));// L319:L320 -extern __FILE_2119 * ((__open_memstream_2435) (char * (* (____bufloc_2433)), __size_t_59 * (____sizeloc_2434)));// L325 -extern __FILE_2119 * ((__open_memstream_2437) (char * (* (____bufloc_2433)), __size_t_59 * (____sizeloc_2434)));// L325 -extern void (__setbuf_2442) (__FILE_2119 * __restrict ____stream_2439, char * __restrict ____buf_2441);// L332 -extern void (__setbuf_2444) (__FILE_2119 * __restrict ____stream_2439, char * __restrict ____buf_2441);// L332 -extern int (__setvbuf_2451) (__FILE_2119 * __restrict ____stream_2446, char * __restrict ____buf_2448, int ____modes_2449, __size_t_59 ____n_2450);// L336:L337 -extern void (__setbuffer_2457) (__FILE_2119 * __restrict ____stream_2453, char * __restrict ____buf_2455, __size_t_59 ____size_2456);// L343:L344 -extern void (__setlinebuf_2461) (__FILE_2119 * (____stream_2459));// L347 -extern int (__fprintf_2466) (__FILE_2119 * __restrict ____stream_2463, const char * __restrict ____format_2465, ... );// L356:L357 -extern int (__fprintf_2468) (__FILE_2119 * __restrict ____stream_2463, const char * __restrict ____format_2465, ... );// L356:L357 -extern int (__printf_2471) (const char * __restrict ____format_2470, ... );// L362 -extern int (__sprintf_2474) (char * __restrict ____s_2472, const char * __restrict ____format_2473, ... );// L364:L365 -extern int (__vfprintf_2480) (__FILE_2119 * __restrict ____s_2475, const char * __restrict ____format_2477, ____gnuc_va_list_2145 ____arg_2478);// L371:L372 -extern int (__vprintf_2487) (const char * __restrict ____format_2484, ____gnuc_va_list_2145 ____arg_2485);// L377 -extern int (__vsprintf_2493) (char * __restrict ____s_2489, const char * __restrict ____format_2490, ____gnuc_va_list_2145 ____arg_2491);// L379:L380 -extern int (__snprintf_2498) (char * __restrict ____s_2495, __size_t_59 ____maxlen_2496, const char * __restrict ____format_2497, ... );// L386:L388 -extern int (__vsnprintf_2504) (char * __restrict ____s_2499, __size_t_59 ____maxlen_2500, const char * __restrict ____format_2501, ____gnuc_va_list_2145 ____arg_2502);// L390:L392 -extern int (__vdprintf_2510) (int ____fd_2506, const char * __restrict ____fmt_2507, ____gnuc_va_list_2145 ____arg_2508);// L412:L414 -extern int (__dprintf_2514) (int ____fd_2512, const char * __restrict ____fmt_2513, ... );// L415:L416 -extern int (__fscanf_2518) (__FILE_2119 * __restrict ____stream_2515, const char * __restrict ____format_2517, ... );// L425:L426 -extern int (__fscanf_2520) (__FILE_2119 * __restrict ____stream_2515, const char * __restrict ____format_2517, ... );// L425:L426 -extern int (__fscanf_2522) (__FILE_2119 * __restrict ____stream_2515, const char * __restrict ____format_2517, ... );// L425:L426 -extern int (__fscanf_2524) (__FILE_2119 * __restrict ____stream_2515, const char * __restrict ____format_2517, ... );// L425:L426 -extern int (__scanf_2527) (const char * __restrict ____format_2526, ... );// L431 -extern int (__scanf_2528) (const char * __restrict ____format_2526, ... );// L431 -extern int (__sscanf_2531) (const char * __restrict ____s_2529, const char * __restrict ____format_2530, ... );// L433:L434 - - - - - - - -extern int (__vfscanf_2559) (__FILE_2119 * __restrict ____s_2554, const char * __restrict ____format_2556, ____gnuc_va_list_2145 ____arg_2557);// L471:L473 -extern int (__vfscanf_2563) (__FILE_2119 * __restrict ____s_2554, const char * __restrict ____format_2556, ____gnuc_va_list_2145 ____arg_2557);// L471:L473 -extern int (__vscanf_2570) (const char * __restrict ____format_2567, ____gnuc_va_list_2145 ____arg_2568);// L479:L480 -extern int (__vscanf_2572) (const char * __restrict ____format_2567, ____gnuc_va_list_2145 ____arg_2568);// L479:L480 -extern int (__vsscanf_2578) (const char * __restrict ____s_2574, const char * __restrict ____format_2575, ____gnuc_va_list_2145 ____arg_2576);// L483:L485 - - - - - -extern int (__fgetc_2613) (__FILE_2119 * (____stream_2611));// L531 -extern int (__getc_2617) (__FILE_2119 * (____stream_2615));// L532 -extern int (__getchar_2619) (void );// L538 -extern int (__getc_unlocked_2622) (__FILE_2119 * (____stream_2620));// L550 -extern int (__getchar_unlocked_2624) (void );// L551 -extern int (__fgetc_unlocked_2627) (__FILE_2119 * (____stream_2625));// L561 -extern int (__fputc_2632) (int ____c_2629, __FILE_2119 * (____stream_2630));// L573 -extern int (__fputc_2634) (int ____c_2629, __FILE_2119 * (____stream_2630));// L573 -extern int (__putc_2639) (int ____c_2636, __FILE_2119 * (____stream_2637));// L574 -extern int (__putchar_2642) (int ____c_2641);// L580 -extern int (__fputc_unlocked_2646) (int ____c_2643, __FILE_2119 * (____stream_2644));// L594 -extern int (__putc_unlocked_2651) (int ____c_2648, __FILE_2119 * (____stream_2649));// L602 -extern int (__putchar_unlocked_2654) (int ____c_2653);// L603 -extern int (__getw_2657) (__FILE_2119 * (____stream_2655));// L610 -extern int (__putw_2662) (int ____w_2659, __FILE_2119 * (____stream_2660));// L613 -extern char * ((__fgets_2668) (char * __restrict ____s_2664, int ____n_2665, __FILE_2119 * __restrict ____stream_2666));// L622:L623 -extern char * ((__fgets_2670) (char * __restrict ____s_2664, int ____n_2665, __FILE_2119 * __restrict ____stream_2666));// L622:L623 -extern char * ((__fgets_2672) (char * __restrict ____s_2664, int ____n_2665, __FILE_2119 * __restrict ____stream_2666));// L622:L623 -extern char * ((__fgets_2674) (char * __restrict ____s_2664, int ____n_2665, __FILE_2119 * __restrict ____stream_2666));// L622:L623 -extern ____ssize_t_47 (____getdelim_2681) (char * (* __restrict ____lineptr_2676), __size_t_59 * __restrict ____n_2677, int ____delimiter_2678, __FILE_2119 * __restrict ____stream_2679);// L665:L667 -extern ____ssize_t_47 (____getdelim_2685) (char * (* __restrict ____lineptr_2676), __size_t_59 * __restrict ____n_2677, int ____delimiter_2678, __FILE_2119 * __restrict ____stream_2679);// L665:L667 -extern ____ssize_t_47 (__getdelim_2694) (char * (* __restrict ____lineptr_2689), __size_t_59 * __restrict ____n_2690, int ____delimiter_2691, __FILE_2119 * __restrict ____stream_2692);// L668:L670 -extern ____ssize_t_47 (__getdelim_2698) (char * (* __restrict ____lineptr_2689), __size_t_59 * __restrict ____n_2690, int ____delimiter_2691, __FILE_2119 * __restrict ____stream_2692);// L668:L670 -extern ____ssize_t_47 (__getline_2706) (char * (* __restrict ____lineptr_2702), __size_t_59 * __restrict ____n_2703, __FILE_2119 * __restrict ____stream_2704);// L678:L680 -extern ____ssize_t_47 (__getline_2710) (char * (* __restrict ____lineptr_2702), __size_t_59 * __restrict ____n_2703, __FILE_2119 * __restrict ____stream_2704);// L678:L680 -extern int (__fputs_2717) (const char * __restrict ____s_2714, __FILE_2119 * __restrict ____stream_2715);// L689 -extern int (__fputs_2719) (const char * __restrict ____s_2714, __FILE_2119 * __restrict ____stream_2715);// L689 -extern int (__puts_2722) (const char * (____s_2721));// L695 -extern int (__ungetc_2726) (int ____c_2723, __FILE_2119 * (____stream_2724));// L702 -extern int (__fseek_2764) (__FILE_2119 * (____stream_2760), long int ____off_2762, int ____whence_2763);// L749 -extern int (__fseek_2766) (__FILE_2119 * (____stream_2760), long int ____off_2762, int ____whence_2763);// L749 -extern long int (__ftell_2770) (__FILE_2119 * (____stream_2768));// L754 -extern long int (__ftell_2772) (__FILE_2119 * (____stream_2768));// L754 -extern void (__rewind_2776) (__FILE_2119 * (____stream_2774));// L759 -extern int (__fseeko_2783) (__FILE_2119 * (____stream_2778), ____off_t_21 ____off_2780, int ____whence_2782);// L773 -extern int (__fseeko_2794) (__FILE_2119 * (____stream_2789), ____off64_t_22 ____off_2791, int ____whence_2793);// L781:L783 -extern ____off_t_21 (__ftello_2800) (__FILE_2119 * (____stream_2787));// L778 -extern ____off_t_21 (__ftello_2808) (__FILE_2119 * (____stream_2787));// L778 -extern int (__fgetpos_2816) (__FILE_2119 * __restrict ____stream_2812, __fpos_t_2337 * __restrict ____pos_2814);// L798 -extern ____off64_t_22 (__ftello_2804) (__FILE_2119 * (____stream_2798));// L784 -extern int (__fgetpos_2828) (__FILE_2119 * __restrict ____stream_2824, __fpos_t_2339 * __restrict ____pos_2826);// L806:L807 -extern int (__fsetpos_2836) (__FILE_2119 * (____stream_2820), const __fpos_t_2337 * (____pos_2822));// L803 -extern int (__fsetpos_2840) (__FILE_2119 * (____stream_2832), const __fpos_t_2339 * (____pos_2834));// L808:L809 -extern void (__clearerr_2846) (__FILE_2119 * (____stream_2844));// L826 -extern int (__feof_2850) (__FILE_2119 * (____stream_2848));// L828 -extern int (__feof_2852) (__FILE_2119 * (____stream_2848));// L828 -extern int (__ferror_2856) (__FILE_2119 * (____stream_2854));// L830 -extern int (__ferror_2858) (__FILE_2119 * (____stream_2854));// L830 -extern void (__clearerr_unlocked_2862) (__FILE_2119 * (____stream_2860));// L835 -extern int (__feof_unlocked_2866) (__FILE_2119 * (____stream_2864));// L836 -extern int (__feof_unlocked_2868) (__FILE_2119 * (____stream_2864));// L836 -extern int (__ferror_unlocked_2872) (__FILE_2119 * (____stream_2870));// L837 -extern int (__ferror_unlocked_2874) (__FILE_2119 * (____stream_2870));// L837 -extern void (__perror_2877) (const char * (____s_2876));// L846 -extern void (__perror_2878) (const char * (____s_2876));// L846 -extern int __sys_nerr_2879;// L26 - -extern int (__fileno_2885) (__FILE_2119 * (____stream_2881));// L858 -extern int (__fileno_2883) (__FILE_2119 * (____stream_2881));// L858 -extern int (__fileno_unlocked_2891) (__FILE_2119 * (____stream_2887));// L863 -extern int (__fileno_unlocked_2889) (__FILE_2119 * (____stream_2887));// L863 -extern __FILE_2119 * ((__popen_2895) (const char * (____command_2893), const char * (____modes_2894)));// L872 -extern __FILE_2119 * ((__popen_2897) (const char * (____command_2893), const char * (____modes_2894)));// L872 -extern int (__pclose_2901) (__FILE_2119 * (____stream_2899));// L878 -extern char * ((__ctermid_2904) (char * (____s_2903)));// L884 -extern void (__flockfile_2907) (__FILE_2119 * (____stream_2905));// L912 -extern int (__ftrylockfile_2911) (__FILE_2119 * (____stream_2909));// L916 -extern int (__ftrylockfile_2913) (__FILE_2119 * (____stream_2909));// L916 -extern void (__funlockfile_2917) (__FILE_2119 * (____stream_2915));// L919 +struct __forward_tag_reference_937 ;// L0 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +struct __forward_tag_reference_964 ;// L0 +struct __forward_tag_reference_964 ;// L0 +struct __forward_tag_reference_937 ;// L0 +// typedef moved to top of scope +struct ___IO_marker_1961 ;// L156 +enum ____codecvt_result_1969 ;// L176 +struct ___IO_FILE_1970 ;// L241 + +struct ___IO_FILE_1994 ;// L241 +struct ___IO_FILE_complete_2025 ;// L241 + +// typedef moved to top of scope +// typedef moved to top of scope +struct __forward_tag_reference_1047 ;// L0 +extern struct __forward_tag_reference_1047 ___IO_2_1_stdin__2041;// L315 +extern struct __forward_tag_reference_1047 ___IO_2_1_stdout__2042;// L316 +extern struct __forward_tag_reference_1047 ___IO_2_1_stderr__2043;// L317 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern int (____underflow_2058) (___IO_FILE_2038 *);// L385 +extern int (____underflow_2059) (___IO_FILE_2039 *);// L385 +extern int (____uflow_2061) (___IO_FILE_2038 *);// L386 +extern int (____uflow_2062) (___IO_FILE_2039 *);// L386 +extern int (____overflow_2064) (___IO_FILE_2038 *, int );// L387 +extern int (____overflow_2065) (___IO_FILE_2039 *, int );// L387 +extern int (___IO_getc_2070) (___IO_FILE_2038 * (____fp_2067));// L429 +extern int (___IO_getc_2071) (___IO_FILE_2039 * (____fp_2068));// L429 +extern int (___IO_putc_2077) (int ____c_2073, ___IO_FILE_2038 * (____fp_2074));// L430 +extern int (___IO_putc_2078) (int ____c_2073, ___IO_FILE_2039 * (____fp_2075));// L430 +extern int (___IO_feof_2083) (___IO_FILE_2038 * (____fp_2080));// L431 +extern int (___IO_feof_2084) (___IO_FILE_2039 * (____fp_2081));// L431 +extern int (___IO_ferror_2089) (___IO_FILE_2038 * (____fp_2086));// L432 +extern int (___IO_ferror_2090) (___IO_FILE_2039 * (____fp_2087));// L432 +extern int (___IO_peekc_locked_2095) (___IO_FILE_2038 * (____fp_2092));// L434 +extern int (___IO_peekc_locked_2096) (___IO_FILE_2039 * (____fp_2093));// L434 +extern void (___IO_flockfile_2098) (___IO_FILE_2038 *);// L440 +extern void (___IO_flockfile_2099) (___IO_FILE_2039 *);// L440 +extern void (___IO_funlockfile_2101) (___IO_FILE_2038 *);// L441 +extern void (___IO_funlockfile_2102) (___IO_FILE_2039 *);// L441 +extern int (___IO_ftrylockfile_2104) (___IO_FILE_2038 *);// L442 +extern int (___IO_ftrylockfile_2105) (___IO_FILE_2039 *);// L442 +extern int (___IO_vfscanf_2107) (___IO_FILE_2038 * __restrict , const char * __restrict , ____gnuc_va_list_1959 , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_2109) (___IO_FILE_2039 * __restrict , const char * __restrict , ____gnuc_va_list_1959 , int * __restrict );// L459:L460 + + +extern int (___IO_vfprintf_2116) (___IO_FILE_2038 * __restrict , const char * __restrict , ____gnuc_va_list_1959 );// L461:L462 +extern int (___IO_vfprintf_2118) (___IO_FILE_2039 * __restrict , const char * __restrict , ____gnuc_va_list_1959 );// L461:L462 + +extern ____ssize_t_47 (___IO_padn_2123) (___IO_FILE_2038 *, int , ____ssize_t_47 );// L463 +extern ____ssize_t_47 (___IO_padn_2124) (___IO_FILE_2039 *, int , ____ssize_t_47 );// L463 +extern __size_t_57 (___IO_sgetn_2126) (___IO_FILE_2038 *, void *, __size_t_57 );// L464 +extern __size_t_57 (___IO_sgetn_2127) (___IO_FILE_2039 *, void *, __size_t_57 );// L464 +extern ____off64_t_22 (___IO_seekoff_2129) (___IO_FILE_2038 *, ____off64_t_22 , int , int );// L466 +extern ____off64_t_22 (___IO_seekoff_2130) (___IO_FILE_2039 *, ____off64_t_22 , int , int );// L466 +extern ____off64_t_22 (___IO_seekpos_2132) (___IO_FILE_2038 *, ____off64_t_22 , int );// L467 +extern ____off64_t_22 (___IO_seekpos_2133) (___IO_FILE_2039 *, ____off64_t_22 , int );// L467 +extern void (___IO_free_backup_area_2135) (___IO_FILE_2038 *);// L469 +extern void (___IO_free_backup_area_2136) (___IO_FILE_2039 *);// L469 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern struct ___IO_FILE_1970 * (__stdin_2144);// L168 +extern struct ___IO_FILE_1994 * (__stdin_2145);// L168 +extern struct ___IO_FILE_1970 * (__stdout_2147);// L169 +extern struct ___IO_FILE_1994 * (__stdout_2148);// L169 +extern struct ___IO_FILE_1970 * (__stderr_2150);// L170 +extern struct ___IO_FILE_1994 * (__stderr_2151);// L170 +extern int (__remove_2154) (const char * (____filename_2153));// L178 +extern int (__rename_2157) (const char * (____old_2155), const char * (____new_2156));// L180 +extern int (__renameat_2162) (int ____oldfd_2158, const char * (____old_2159), int ____newfd_2160, const char * (____new_2161));// L185:L186 +extern __FILE_1935 * ((__tmpfile_2163) (void ));// L195 +extern __FILE_1935 * ((__tmpfile_2165) (void ));// L198 +extern __FILE_1935 * ((__tmpfile_2167) (void ));// L195 +extern __FILE_1935 * ((__tmpfile_2169) (void ));// L198 +extern char * ((__tmpnam_2172) (char * (____s_2171)));// L209 +extern char * ((__tmpnam_2173) (char * (____s_2171)));// L209 +extern char * ((__tmpnam_r_2175) (char * (____s_2174)));// L215 +extern char * ((__tmpnam_r_2176) (char * (____s_2174)));// L215 +extern char * ((__tempnam_2179) (const char * (____dir_2177), const char * (____pfx_2178)));// L227:L228 +extern char * ((__tempnam_2180) (const char * (____dir_2177), const char * (____pfx_2178)));// L227:L228 +extern int (__fclose_2183) (__FILE_1935 * (____stream_2181));// L237 +extern int (__fclose_2185) (__FILE_1935 * (____stream_2181));// L237 +extern int (__fflush_2189) (__FILE_1935 * (____stream_2187));// L242 +extern int (__fflush_unlocked_2193) (__FILE_1935 * (____stream_2191));// L252 +extern __FILE_1935 * ((__fopen_2197) (const char * __restrict ____filename_2195, const char * __restrict ____modes_2196));// L272:L273 +extern __FILE_1935 * ((__fopen_2199) (const char * __restrict ____filename_2195, const char * __restrict ____modes_2196));// L272:L273 +extern __FILE_1935 * ((__fopen_2207) (const char * __restrict ____filename_2205, const char * __restrict ____modes_2206));// L283:L285 +extern __FILE_1935 * ((__fopen_2209) (const char * __restrict ____filename_2205, const char * __restrict ____modes_2206));// L283:L285 +extern __FILE_1935 * ((__freopen_2215) (const char * __restrict ____filename_2201, const char * __restrict ____modes_2202, __FILE_1935 * __restrict ____stream_2203));// L278:L280 +extern __FILE_1935 * ((__freopen_2217) (const char * __restrict ____filename_2211, const char * __restrict ____modes_2212, __FILE_1935 * __restrict ____stream_2213));// L286:L289 +extern __FILE_1935 * ((__freopen_2219) (const char * __restrict ____filename_2211, const char * __restrict ____modes_2212, __FILE_1935 * __restrict ____stream_2213));// L286:L289 +extern __FILE_1935 * ((__freopen_2221) (const char * __restrict ____filename_2201, const char * __restrict ____modes_2202, __FILE_1935 * __restrict ____stream_2203));// L278:L280 +extern __FILE_1935 * ((__fdopen_2225) (int ____fd_2223, const char * (____modes_2224)));// L306 +extern __FILE_1935 * ((__fdopen_2227) (int ____fd_2223, const char * (____modes_2224)));// L306 +extern __FILE_1935 * ((__fmemopen_2232) (void * (____s_2229), __size_t_57 ____len_2230, const char * (____modes_2231)));// L319:L320 +extern __FILE_1935 * ((__fmemopen_2234) (void * (____s_2229), __size_t_57 ____len_2230, const char * (____modes_2231)));// L319:L320 +extern __FILE_1935 * ((__open_memstream_2238) (char * (* (____bufloc_2236)), __size_t_57 * (____sizeloc_2237)));// L325 +extern __FILE_1935 * ((__open_memstream_2240) (char * (* (____bufloc_2236)), __size_t_57 * (____sizeloc_2237)));// L325 +extern void (__setbuf_2245) (__FILE_1935 * __restrict ____stream_2242, char * __restrict ____buf_2244);// L332 +extern void (__setbuf_2247) (__FILE_1935 * __restrict ____stream_2242, char * __restrict ____buf_2244);// L332 +extern int (__setvbuf_2254) (__FILE_1935 * __restrict ____stream_2249, char * __restrict ____buf_2251, int ____modes_2252, __size_t_57 ____n_2253);// L336:L337 +extern void (__setbuffer_2260) (__FILE_1935 * __restrict ____stream_2256, char * __restrict ____buf_2258, __size_t_57 ____size_2259);// L343:L344 +extern void (__setlinebuf_2264) (__FILE_1935 * (____stream_2262));// L347 +extern int (__fprintf_2269) (__FILE_1935 * __restrict ____stream_2266, const char * __restrict ____format_2268, ... );// L356:L357 +extern int (__fprintf_2271) (__FILE_1935 * __restrict ____stream_2266, const char * __restrict ____format_2268, ... );// L356:L357 +extern int (__printf_2274) (const char * __restrict ____format_2273, ... );// L362 +extern int (__sprintf_2277) (char * __restrict ____s_2275, const char * __restrict ____format_2276, ... );// L364:L365 +extern int (__vfprintf_2283) (__FILE_1935 * __restrict ____s_2278, const char * __restrict ____format_2280, ____gnuc_va_list_1959 ____arg_2281);// L371:L372 +extern int (__vprintf_2290) (const char * __restrict ____format_2287, ____gnuc_va_list_1959 ____arg_2288);// L377 +extern int (__vsprintf_2296) (char * __restrict ____s_2292, const char * __restrict ____format_2293, ____gnuc_va_list_1959 ____arg_2294);// L379:L380 +extern int (__snprintf_2301) (char * __restrict ____s_2298, __size_t_57 ____maxlen_2299, const char * __restrict ____format_2300, ... );// L386:L388 +extern int (__vsnprintf_2307) (char * __restrict ____s_2302, __size_t_57 ____maxlen_2303, const char * __restrict ____format_2304, ____gnuc_va_list_1959 ____arg_2305);// L390:L392 +extern int (__vdprintf_2313) (int ____fd_2309, const char * __restrict ____fmt_2310, ____gnuc_va_list_1959 ____arg_2311);// L412:L414 +extern int (__dprintf_2317) (int ____fd_2315, const char * __restrict ____fmt_2316, ... );// L415:L416 +extern int (__fscanf_2321) (__FILE_1935 * __restrict ____stream_2318, const char * __restrict ____format_2320, ... );// L425:L426 +extern int (__fscanf_2323) (__FILE_1935 * __restrict ____stream_2318, const char * __restrict ____format_2320, ... );// L425:L426 +extern int (__fscanf_2325) (__FILE_1935 * __restrict ____stream_2318, const char * __restrict ____format_2320, ... );// L425:L426 +extern int (__fscanf_2327) (__FILE_1935 * __restrict ____stream_2318, const char * __restrict ____format_2320, ... );// L425:L426 +extern int (__scanf_2330) (const char * __restrict ____format_2329, ... );// L431 +extern int (__scanf_2331) (const char * __restrict ____format_2329, ... );// L431 +extern int (__sscanf_2334) (const char * __restrict ____s_2332, const char * __restrict ____format_2333, ... );// L433:L434 + + + + + + + +extern int (__vfscanf_2362) (__FILE_1935 * __restrict ____s_2357, const char * __restrict ____format_2359, ____gnuc_va_list_1959 ____arg_2360);// L471:L473 +extern int (__vfscanf_2366) (__FILE_1935 * __restrict ____s_2357, const char * __restrict ____format_2359, ____gnuc_va_list_1959 ____arg_2360);// L471:L473 +extern int (__vscanf_2373) (const char * __restrict ____format_2370, ____gnuc_va_list_1959 ____arg_2371);// L479:L480 +extern int (__vscanf_2375) (const char * __restrict ____format_2370, ____gnuc_va_list_1959 ____arg_2371);// L479:L480 +extern int (__vsscanf_2381) (const char * __restrict ____s_2377, const char * __restrict ____format_2378, ____gnuc_va_list_1959 ____arg_2379);// L483:L485 + + + + + +extern int (__fgetc_2416) (__FILE_1935 * (____stream_2414));// L531 +extern int (__getc_2420) (__FILE_1935 * (____stream_2418));// L532 +extern int (__getchar_2422) (void );// L538 +extern int (__getc_unlocked_2425) (__FILE_1935 * (____stream_2423));// L550 +extern int (__getchar_unlocked_2427) (void );// L551 +extern int (__fgetc_unlocked_2430) (__FILE_1935 * (____stream_2428));// L561 +extern int (__fputc_2435) (int ____c_2432, __FILE_1935 * (____stream_2433));// L573 +extern int (__fputc_2437) (int ____c_2432, __FILE_1935 * (____stream_2433));// L573 +extern int (__putc_2442) (int ____c_2439, __FILE_1935 * (____stream_2440));// L574 +extern int (__putchar_2445) (int ____c_2444);// L580 +extern int (__fputc_unlocked_2449) (int ____c_2446, __FILE_1935 * (____stream_2447));// L594 +extern int (__putc_unlocked_2454) (int ____c_2451, __FILE_1935 * (____stream_2452));// L602 +extern int (__putchar_unlocked_2457) (int ____c_2456);// L603 +extern int (__getw_2460) (__FILE_1935 * (____stream_2458));// L610 +extern int (__putw_2465) (int ____w_2462, __FILE_1935 * (____stream_2463));// L613 +extern char * ((__fgets_2471) (char * __restrict ____s_2467, int ____n_2468, __FILE_1935 * __restrict ____stream_2469));// L622:L623 +extern char * ((__fgets_2473) (char * __restrict ____s_2467, int ____n_2468, __FILE_1935 * __restrict ____stream_2469));// L622:L623 +extern char * ((__fgets_2475) (char * __restrict ____s_2467, int ____n_2468, __FILE_1935 * __restrict ____stream_2469));// L622:L623 +extern char * ((__fgets_2477) (char * __restrict ____s_2467, int ____n_2468, __FILE_1935 * __restrict ____stream_2469));// L622:L623 +extern ____ssize_t_47 (____getdelim_2484) (char * (* __restrict ____lineptr_2479), __size_t_57 * __restrict ____n_2480, int ____delimiter_2481, __FILE_1935 * __restrict ____stream_2482);// L665:L667 +extern ____ssize_t_47 (____getdelim_2486) (char * (* __restrict ____lineptr_2479), __size_t_57 * __restrict ____n_2480, int ____delimiter_2481, __FILE_1935 * __restrict ____stream_2482);// L665:L667 +extern ____ssize_t_47 (__getdelim_2493) (char * (* __restrict ____lineptr_2488), __size_t_57 * __restrict ____n_2489, int ____delimiter_2490, __FILE_1935 * __restrict ____stream_2491);// L668:L670 +extern ____ssize_t_47 (__getdelim_2495) (char * (* __restrict ____lineptr_2488), __size_t_57 * __restrict ____n_2489, int ____delimiter_2490, __FILE_1935 * __restrict ____stream_2491);// L668:L670 +extern ____ssize_t_47 (__getline_2501) (char * (* __restrict ____lineptr_2497), __size_t_57 * __restrict ____n_2498, __FILE_1935 * __restrict ____stream_2499);// L678:L680 +extern ____ssize_t_47 (__getline_2503) (char * (* __restrict ____lineptr_2497), __size_t_57 * __restrict ____n_2498, __FILE_1935 * __restrict ____stream_2499);// L678:L680 +extern int (__fputs_2508) (const char * __restrict ____s_2505, __FILE_1935 * __restrict ____stream_2506);// L689 +extern int (__fputs_2510) (const char * __restrict ____s_2505, __FILE_1935 * __restrict ____stream_2506);// L689 +extern int (__puts_2513) (const char * (____s_2512));// L695 +extern int (__ungetc_2517) (int ____c_2514, __FILE_1935 * (____stream_2515));// L702 +extern int (__fseek_2555) (__FILE_1935 * (____stream_2551), long int ____off_2553, int ____whence_2554);// L749 +extern int (__fseek_2557) (__FILE_1935 * (____stream_2551), long int ____off_2553, int ____whence_2554);// L749 +extern long int (__ftell_2561) (__FILE_1935 * (____stream_2559));// L754 +extern long int (__ftell_2563) (__FILE_1935 * (____stream_2559));// L754 +extern void (__rewind_2567) (__FILE_1935 * (____stream_2565));// L759 +extern int (__fseeko_2573) (__FILE_1935 * (____stream_2569), ____off_t_21 ____off_2571, int ____whence_2572);// L773 +extern int (__fseeko_2581) (__FILE_1935 * (____stream_2577), ____off64_t_22 ____off_2579, int ____whence_2580);// L781:L783 +extern ____off_t_21 (__ftello_2585) (__FILE_1935 * (____stream_2575));// L778 +extern ____off_t_21 (__ftello_2589) (__FILE_1935 * (____stream_2575));// L778 +extern int (__fgetpos_2595) (__FILE_1935 * __restrict ____stream_2591, __fpos_t_2140 * __restrict ____pos_2593);// L798 +extern ____off64_t_22 (__ftello_2587) (__FILE_1935 * (____stream_2583));// L784 +extern int (__fgetpos_2607) (__FILE_1935 * __restrict ____stream_2603, __fpos_t_2142 * __restrict ____pos_2605);// L806:L807 +extern int (__fsetpos_2615) (__FILE_1935 * (____stream_2599), const __fpos_t_2140 * (____pos_2601));// L803 +extern int (__fsetpos_2619) (__FILE_1935 * (____stream_2611), const __fpos_t_2142 * (____pos_2613));// L808:L809 +extern void (__clearerr_2625) (__FILE_1935 * (____stream_2623));// L826 +extern int (__feof_2629) (__FILE_1935 * (____stream_2627));// L828 +extern int (__feof_2631) (__FILE_1935 * (____stream_2627));// L828 +extern int (__ferror_2635) (__FILE_1935 * (____stream_2633));// L830 +extern int (__ferror_2637) (__FILE_1935 * (____stream_2633));// L830 +extern void (__clearerr_unlocked_2641) (__FILE_1935 * (____stream_2639));// L835 +extern int (__feof_unlocked_2645) (__FILE_1935 * (____stream_2643));// L836 +extern int (__feof_unlocked_2647) (__FILE_1935 * (____stream_2643));// L836 +extern int (__ferror_unlocked_2651) (__FILE_1935 * (____stream_2649));// L837 +extern int (__ferror_unlocked_2653) (__FILE_1935 * (____stream_2649));// L837 +extern void (__perror_2656) (const char * (____s_2655));// L846 +extern void (__perror_2657) (const char * (____s_2655));// L846 +extern int __sys_nerr_2658;// L26 + +extern int (__fileno_2664) (__FILE_1935 * (____stream_2660));// L858 +extern int (__fileno_2662) (__FILE_1935 * (____stream_2660));// L858 +extern int (__fileno_unlocked_2670) (__FILE_1935 * (____stream_2666));// L863 +extern int (__fileno_unlocked_2668) (__FILE_1935 * (____stream_2666));// L863 +extern __FILE_1935 * ((__popen_2674) (const char * (____command_2672), const char * (____modes_2673)));// L872 +extern __FILE_1935 * ((__popen_2676) (const char * (____command_2672), const char * (____modes_2673)));// L872 +extern int (__pclose_2680) (__FILE_1935 * (____stream_2678));// L878 +extern char * ((__ctermid_2683) (char * (____s_2682)));// L884 +extern void (__flockfile_2686) (__FILE_1935 * (____stream_2684));// L912 +extern int (__ftrylockfile_2690) (__FILE_1935 * (____stream_2688));// L916 +extern int (__ftrylockfile_2692) (__FILE_1935 * (____stream_2688));// L916 +extern void (__funlockfile_2696) (__FILE_1935 * (____stream_2694));// L919 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ @@ -4124,77 +3725,77 @@ extern void (__funlockfile_2917) (__FILE_2119 * (____stream_2915));// L919 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____sprintf_chk_2949) (char * __restrict ____s_2945, int ____flag_2946, __size_t_59 ____slen_2947, const char * __restrict ____format_2948, ... );// L23:L24 -extern int (____vsprintf_chk_2956) (char * __restrict ____s_2950, int ____flag_2951, __size_t_59 ____slen_2952, const char * __restrict ____format_2953, ____gnuc_va_list_2145 ____ap_2954);// L25:L27 +extern int (____sprintf_chk_2728) (char * __restrict ____s_2724, int ____flag_2725, __size_t_57 ____slen_2726, const char * __restrict ____format_2727, ... );// L23:L24 +extern int (____vsprintf_chk_2735) (char * __restrict ____s_2729, int ____flag_2730, __size_t_57 ____slen_2731, const char * __restrict ____format_2732, ____gnuc_va_list_1959 ____ap_2733);// L25:L27 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____snprintf_chk_2970) (char * __restrict ____s_2965, __size_t_59 ____n_2966, int ____flag_2967, __size_t_59 ____slen_2968, const char * __restrict ____format_2969, ... );// L52:L54 -extern int (____vsnprintf_chk_2978) (char * __restrict ____s_2971, __size_t_59 ____n_2972, int ____flag_2973, __size_t_59 ____slen_2974, const char * __restrict ____format_2975, ____gnuc_va_list_2145 ____ap_2976);// L55:L57 +extern int (____snprintf_chk_2749) (char * __restrict ____s_2744, __size_t_57 ____n_2745, int ____flag_2746, __size_t_57 ____slen_2747, const char * __restrict ____format_2748, ... );// L52:L54 +extern int (____vsnprintf_chk_2757) (char * __restrict ____s_2750, __size_t_57 ____n_2751, int ____flag_2752, __size_t_57 ____slen_2753, const char * __restrict ____format_2754, ____gnuc_va_list_1959 ____ap_2755);// L55:L57 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____fprintf_chk_2993) (__FILE_2119 * __restrict ____stream_2989, int ____flag_2991, const char * __restrict ____format_2992, ... );// L85:L86 -extern int (____printf_chk_2997) (int ____flag_2995, const char * __restrict ____format_2996, ... );// L87 -extern int (____vfprintf_chk_3004) (__FILE_2119 * __restrict ____stream_2998, int ____flag_3000, const char * __restrict ____format_3001, ____gnuc_va_list_2145 ____ap_3002);// L88:L89 -extern int (____vprintf_chk_3012) (int ____flag_3008, const char * __restrict ____format_3009, ____gnuc_va_list_2145 ____ap_3010);// L90:L91 +extern int (____fprintf_chk_2772) (__FILE_1935 * __restrict ____stream_2768, int ____flag_2770, const char * __restrict ____format_2771, ... );// L85:L86 +extern int (____printf_chk_2776) (int ____flag_2774, const char * __restrict ____format_2775, ... );// L87 +extern int (____vfprintf_chk_2783) (__FILE_1935 * __restrict ____stream_2777, int ____flag_2779, const char * __restrict ____format_2780, ____gnuc_va_list_1959 ____ap_2781);// L88:L89 +extern int (____vprintf_chk_2791) (int ____flag_2787, const char * __restrict ____format_2788, ____gnuc_va_list_1959 ____ap_2789);// L90:L91 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____dprintf_chk_3034) (int ____fd_3031, int ____flag_3032, const char * __restrict ____fmt_3033, ... );// L131:L132 -extern int (____vdprintf_chk_3040) (int ____fd_3035, int ____flag_3036, const char * __restrict ____fmt_3037, ____gnuc_va_list_2145 ____arg_3038);// L133:L135 +extern int (____dprintf_chk_2813) (int ____fd_2810, int ____flag_2811, const char * __restrict ____fmt_2812, ... );// L131:L132 +extern int (____vdprintf_chk_2819) (int ____fd_2814, int ____flag_2815, const char * __restrict ____fmt_2816, ____gnuc_va_list_1959 ____arg_2817);// L133:L135 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern char * ((____fgets_chk_3054) (char * __restrict ____s_3049, __size_t_59 ____size_3050, int ____n_3051, __FILE_2119 * __restrict ____stream_3052));// L241:L242 -extern char * ((____fgets_chk_3056) (char * __restrict ____s_3049, __size_t_59 ____size_3050, int ____n_3051, __FILE_2119 * __restrict ____stream_3052));// L241:L242 -extern char * ((____fgets_chk_3058) (char * __restrict ____s_3049, __size_t_59 ____size_3050, int ____n_3051, __FILE_2119 * __restrict ____stream_3052));// L241:L242 -extern char * ((____fgets_alias_3064) (char * __restrict ____s_3060, int ____n_3061, __FILE_2119 * __restrict ____stream_3062));// L243:L245 -extern char * ((____fgets_chk_warn_3071) (char * __restrict ____s_3066, __size_t_59 ____size_3067, int ____n_3068, __FILE_2119 * __restrict ____stream_3069));// L246:L250 +extern char * ((____fgets_chk_2833) (char * __restrict ____s_2828, __size_t_57 ____size_2829, int ____n_2830, __FILE_1935 * __restrict ____stream_2831));// L241:L242 +extern char * ((____fgets_chk_2835) (char * __restrict ____s_2828, __size_t_57 ____size_2829, int ____n_2830, __FILE_1935 * __restrict ____stream_2831));// L241:L242 +extern char * ((____fgets_chk_2837) (char * __restrict ____s_2828, __size_t_57 ____size_2829, int ____n_2830, __FILE_1935 * __restrict ____stream_2831));// L241:L242 +extern char * ((____fgets_alias_2843) (char * __restrict ____s_2839, int ____n_2840, __FILE_1935 * __restrict ____stream_2841));// L243:L245 +extern char * ((____fgets_chk_warn_2850) (char * __restrict ____s_2845, __size_t_57 ____size_2846, int ____n_2847, __FILE_1935 * __restrict ____stream_2848));// L246:L250 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern void * ((__malloc_3143) (__size_t_59 ____size_3142));// L38 -extern void * ((__malloc_3144) (__size_t_59 ____size_3142));// L38 -extern void * ((__malloc_3145) (__size_t_59 ____size_3142));// L38 -extern void * ((__malloc_3146) (__size_t_59 ____size_3142));// L38 -extern void * ((__malloc_3147) (__size_t_59 ____size_3142));// L38 -extern void * ((__malloc_3148) (__size_t_59 ____size_3142));// L38 -extern void * ((__calloc_3151) (__size_t_59 ____nmemb_3149, __size_t_59 ____size_3150));// L41:L42 -extern void * ((__calloc_3152) (__size_t_59 ____nmemb_3149, __size_t_59 ____size_3150));// L41:L42 -extern void * ((__realloc_3155) (void * (____ptr_3153), __size_t_59 ____size_3154));// L49:L50 -extern void (__free_3157) (void * (____ptr_3156));// L53 -extern void (__cfree_3159) (void * (____ptr_3158));// L56 -extern void * ((__memalign_3162) (__size_t_59 ____alignment_3160, __size_t_59 ____size_3161));// L59:L60 -extern void * ((__memalign_3163) (__size_t_59 ____alignment_3160, __size_t_59 ____size_3161));// L59:L60 -extern void * ((__valloc_3165) (__size_t_59 ____size_3164));// L63 -extern void * ((__valloc_3166) (__size_t_59 ____size_3164));// L63 -extern void * ((__pvalloc_3168) (__size_t_59 ____size_3167));// L67 -extern void * ((__pvalloc_3169) (__size_t_59 ____size_3167));// L67 -extern void * ((* (____morecore_3173)) (__ptrdiff_t_58 ____size_3170));// L71 -extern void * ((* (____morecore_3174)) (__ptrdiff_t_2112 ____size_3171));// L71 -extern void * ((____default_morecore_3179) (__ptrdiff_t_58 ____size_3176));// L74:L75 -extern void * ((____default_morecore_3180) (__ptrdiff_t_2112 ____size_3177));// L74:L75 -struct __mallinfo_3181 ;// L79 -extern struct __mallinfo_3181 (__mallinfo_3192) (void );// L94 -extern int (__mallopt_3195) (int ____param_3193, int ____val_3194);// L121 -extern int (__malloc_trim_3197) (__size_t_59 ____pad_3196);// L125 -extern __size_t_59 (__malloc_usable_size_3199) (void * (____ptr_3198));// L129 -extern void (__malloc_stats_3200) (void );// L132 -extern int (__malloc_info_3205) (int ____options_3201, __FILE_1085 * (____fp_3202));// L135 -extern int (__malloc_info_3206) (int ____options_3201, __FILE_2119 * (____fp_3203));// L135 -extern void * ((__malloc_get_state_3208) (void ));// L138 -extern int (__malloc_set_state_3210) (void * (____ptr_3209));// L142 -extern void (* volatile ____malloc_initialize_hook_3211) (void );// L147:L148 -extern void (* volatile ____free_hook_3213) (void * (____ptr_3212), const void *);// L150:L152 -extern void * ((* volatile ____malloc_hook_3215) (__size_t_59 ____size_3214, const void *));// L153:L155 -extern void * ((* volatile ____realloc_hook_3218) (void * (____ptr_3216), __size_t_59 ____size_3217, const void *));// L156:L159 -extern void * ((* volatile ____memalign_hook_3221) (__size_t_59 ____alignment_3219, __size_t_59 ____size_3220, const void *));// L160:L163 -extern void (* volatile ____after_morecore_hook_3222) (void );// L164 -extern void (____malloc_check_init_3223) (void );// L167 -// typedef moved to top of scope -// typedef moved to top of scope -static __inline unsigned int (____bswap_32_3232) (unsigned int ____bsx_3231) { - -if (__static_condition_default_3233) { +extern void * ((__malloc_2922) (__size_t_57 ____size_2921));// L38 +extern void * ((__malloc_2923) (__size_t_57 ____size_2921));// L38 +extern void * ((__malloc_2924) (__size_t_57 ____size_2921));// L38 +extern void * ((__malloc_2925) (__size_t_57 ____size_2921));// L38 +extern void * ((__malloc_2926) (__size_t_57 ____size_2921));// L38 +extern void * ((__malloc_2927) (__size_t_57 ____size_2921));// L38 +extern void * ((__calloc_2930) (__size_t_57 ____nmemb_2928, __size_t_57 ____size_2929));// L41:L42 +extern void * ((__calloc_2931) (__size_t_57 ____nmemb_2928, __size_t_57 ____size_2929));// L41:L42 +extern void * ((__realloc_2934) (void * (____ptr_2932), __size_t_57 ____size_2933));// L49:L50 +extern void (__free_2936) (void * (____ptr_2935));// L53 +extern void (__cfree_2938) (void * (____ptr_2937));// L56 +extern void * ((__memalign_2941) (__size_t_57 ____alignment_2939, __size_t_57 ____size_2940));// L59:L60 +extern void * ((__memalign_2942) (__size_t_57 ____alignment_2939, __size_t_57 ____size_2940));// L59:L60 +extern void * ((__valloc_2944) (__size_t_57 ____size_2943));// L63 +extern void * ((__valloc_2945) (__size_t_57 ____size_2943));// L63 +extern void * ((__pvalloc_2947) (__size_t_57 ____size_2946));// L67 +extern void * ((__pvalloc_2948) (__size_t_57 ____size_2946));// L67 +extern void * ((* (____morecore_2952)) (__ptrdiff_t_56 ____size_2949));// L71 +extern void * ((* (____morecore_2953)) (__ptrdiff_t_1928 ____size_2950));// L71 +extern void * ((____default_morecore_2958) (__ptrdiff_t_56 ____size_2955));// L74:L75 +extern void * ((____default_morecore_2959) (__ptrdiff_t_1928 ____size_2956));// L74:L75 +struct __mallinfo_2960 ;// L79 +extern struct __mallinfo_2960 (__mallinfo_2971) (void );// L94 +extern int (__mallopt_2974) (int ____param_2972, int ____val_2973);// L121 +extern int (__malloc_trim_2976) (__size_t_57 ____pad_2975);// L125 +extern __size_t_57 (__malloc_usable_size_2978) (void * (____ptr_2977));// L129 +extern void (__malloc_stats_2979) (void );// L132 +extern int (__malloc_info_2984) (int ____options_2980, __FILE_938 * (____fp_2981));// L135 +extern int (__malloc_info_2985) (int ____options_2980, __FILE_1935 * (____fp_2982));// L135 +extern void * ((__malloc_get_state_2987) (void ));// L138 +extern int (__malloc_set_state_2989) (void * (____ptr_2988));// L142 +extern void (* volatile ____malloc_initialize_hook_2990) (void );// L147:L148 +extern void (* volatile ____free_hook_2992) (void * (____ptr_2991), const void *);// L150:L152 +extern void * ((* volatile ____malloc_hook_2994) (__size_t_57 ____size_2993, const void *));// L153:L155 +extern void * ((* volatile ____realloc_hook_2997) (void * (____ptr_2995), __size_t_57 ____size_2996, const void *));// L156:L159 +extern void * ((* volatile ____memalign_hook_3000) (__size_t_57 ____alignment_2998, __size_t_57 ____size_2999, const void *));// L160:L163 +extern void (* volatile ____after_morecore_hook_3001) (void );// L164 +extern void (____malloc_check_init_3002) (void );// L167 +// typedef moved to top of scope +// typedef moved to top of scope +static __inline unsigned int (____bswap_32_3011) (unsigned int ____bsx_3010) { + +if (__static_condition_default_3012) { { { @@ -4208,9 +3809,9 @@ __static_type_error("invalid type found in return expression"); } } -static __inline ____uint64_t_11 (____bswap_64_3235) (____uint64_t_11 ____bsx_3234) { +static __inline ____uint64_t_11 (____bswap_64_3014) (____uint64_t_11 ____bsx_3013) { -if (__static_condition_default_3233) { +if (__static_condition_default_3012) { { { @@ -4224,40 +3825,40 @@ __static_type_error("invalid type found in return expression"); } } -union __wait_3247 ;// L66 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern __size_t_59 (____ctype_get_mb_cur_max_3271) (void );// L139 -extern __size_t_59 (____ctype_get_mb_cur_max_3272) (void );// L139 -extern __size_t_59 (____ctype_get_mb_cur_max_3273) (void );// L139 -extern __size_t_59 (____ctype_get_mb_cur_max_3274) (void );// L139 -extern double (__atof_3276) (const char * (____nptr_3275));// L144:L145 -extern double (__atof_3277) (const char * (____nptr_3275));// L144:L145 -extern int (__atoi_3279) (const char * (____nptr_3278));// L147:L148 -extern int (__atoi_3280) (const char * (____nptr_3278));// L147:L148 -extern long int (__atol_3282) (const char * (____nptr_3281));// L150:L151 -extern long int (__atol_3283) (const char * (____nptr_3281));// L150:L151 -extern long long int (__atoll_3285) (const char * (____nptr_3284));// L157:L158 -extern long long int (__atoll_3286) (const char * (____nptr_3284));// L157:L158 -extern double (__strtod_3289) (const char * __restrict ____nptr_3287, char * (* __restrict ____endptr_3288));// L164:L166 -extern float (__strtof_3292) (const char * __restrict ____nptr_3290, char * (* __restrict ____endptr_3291));// L172:L173 -extern long double (__strtold_3295) (const char * __restrict ____nptr_3293, char * (* __restrict ____endptr_3294));// L175:L177 -extern long int (__strtol_3299) (const char * __restrict ____nptr_3296, char * (* __restrict ____endptr_3297), int ____base_3298);// L183:L185 -extern unsigned long int (__strtoul_3303) (const char * __restrict ____nptr_3300, char * (* __restrict ____endptr_3301), int ____base_3302);// L187:L189 -extern long long int (__strtoq_3307) (const char * __restrict ____nptr_3304, char * (* __restrict ____endptr_3305), int ____base_3306);// L195:L197 -extern unsigned long long int (__strtouq_3311) (const char * __restrict ____nptr_3308, char * (* __restrict ____endptr_3309), int ____base_3310);// L200:L202 -extern long long int (__strtoll_3315) (const char * __restrict ____nptr_3312, char * (* __restrict ____endptr_3313), int ____base_3314);// L209:L211 -extern long long int (__strtoll_3316) (const char * __restrict ____nptr_3312, char * (* __restrict ____endptr_3313), int ____base_3314);// L209:L211 -extern unsigned long long int (__strtoull_3320) (const char * __restrict ____nptr_3317, char * (* __restrict ____endptr_3318), int ____base_3319);// L214:L216 +union __wait_3026 ;// L66 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern __size_t_57 (____ctype_get_mb_cur_max_3050) (void );// L139 +extern __size_t_57 (____ctype_get_mb_cur_max_3051) (void );// L139 +extern __size_t_57 (____ctype_get_mb_cur_max_3052) (void );// L139 +extern __size_t_57 (____ctype_get_mb_cur_max_3053) (void );// L139 +extern double (__atof_3055) (const char * (____nptr_3054));// L144:L145 +extern double (__atof_3056) (const char * (____nptr_3054));// L144:L145 +extern int (__atoi_3058) (const char * (____nptr_3057));// L147:L148 +extern int (__atoi_3059) (const char * (____nptr_3057));// L147:L148 +extern long int (__atol_3061) (const char * (____nptr_3060));// L150:L151 +extern long int (__atol_3062) (const char * (____nptr_3060));// L150:L151 +extern long long int (__atoll_3064) (const char * (____nptr_3063));// L157:L158 +extern long long int (__atoll_3065) (const char * (____nptr_3063));// L157:L158 +extern double (__strtod_3068) (const char * __restrict ____nptr_3066, char * (* __restrict ____endptr_3067));// L164:L166 +extern float (__strtof_3071) (const char * __restrict ____nptr_3069, char * (* __restrict ____endptr_3070));// L172:L173 +extern long double (__strtold_3074) (const char * __restrict ____nptr_3072, char * (* __restrict ____endptr_3073));// L175:L177 +extern long int (__strtol_3078) (const char * __restrict ____nptr_3075, char * (* __restrict ____endptr_3076), int ____base_3077);// L183:L185 +extern unsigned long int (__strtoul_3082) (const char * __restrict ____nptr_3079, char * (* __restrict ____endptr_3080), int ____base_3081);// L187:L189 +extern long long int (__strtoq_3086) (const char * __restrict ____nptr_3083, char * (* __restrict ____endptr_3084), int ____base_3085);// L195:L197 +extern unsigned long long int (__strtouq_3090) (const char * __restrict ____nptr_3087, char * (* __restrict ____endptr_3088), int ____base_3089);// L200:L202 +extern long long int (__strtoll_3094) (const char * __restrict ____nptr_3091, char * (* __restrict ____endptr_3092), int ____base_3093);// L209:L211 +extern long long int (__strtoll_3095) (const char * __restrict ____nptr_3091, char * (* __restrict ____endptr_3092), int ____base_3093);// L209:L211 +extern unsigned long long int (__strtoull_3099) (const char * __restrict ____nptr_3096, char * (* __restrict ____endptr_3097), int ____base_3098);// L214:L216 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ __extension__/* no function due to type errors in the function prototype */ -extern char * ((__l64a_3325) (long int ____n_3324));// L305 -extern char * ((__l64a_3326) (long int ____n_3324));// L305 -extern long int (__a64l_3328) (const char * (____s_3327));// L308:L309 -extern long int (__a64l_3329) (const char * (____s_3327));// L308:L309 +extern char * ((__l64a_3104) (long int ____n_3103));// L305 +extern char * ((__l64a_3105) (long int ____n_3103));// L305 +extern long int (__a64l_3107) (const char * (____s_3106));// L308:L309 +extern long int (__a64l_3108) (const char * (____s_3106));// L308:L309 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope @@ -4295,9 +3896,9 @@ extern long int (__a64l_3329) (const char * (____s_3327));// L308:L309 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -static __inline unsigned int (____bswap_32_3384) (unsigned int ____bsx_3383) { +static __inline unsigned int (____bswap_32_3147) (unsigned int ____bsx_3146) { -if (__static_condition_default_3385) { +if (__static_condition_default_3148) { { { @@ -4311,9 +3912,9 @@ __static_type_error("invalid type found in return expression"); } } -static __inline ____uint64_t_11 (____bswap_64_3387) (____uint64_t_11 ____bsx_3386) { +static __inline ____uint64_t_11 (____bswap_64_3150) (____uint64_t_11 ____bsx_3149) { -if (__static_condition_default_3385) { +if (__static_condition_default_3148) { { { @@ -4330,26 +3931,24 @@ __static_type_error("invalid type found in return expression"); // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __timespec_3394 ;// L120 - -struct __timeval_3400 ;// L30 - +struct __timespec_3157 ;// L120 +struct __timeval_3160 ;// L30 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern int (__select_3431) (int ____nfds_3420, __fd_set_3417 * __restrict ____readfds_3421, __fd_set_3417 * __restrict ____writefds_3423, __fd_set_3417 * __restrict ____exceptfds_3425, struct __timeval_3400 * __restrict ____timeout_3428);// L106:L109 -extern int (__select_3432) (int ____nfds_3420, __fd_set_3417 * __restrict ____readfds_3421, __fd_set_3417 * __restrict ____writefds_3423, __fd_set_3417 * __restrict ____exceptfds_3425, struct __forward_tag_reference_3427 * __restrict ____timeout_3430);// L106:L109 -extern int (__pselect_3447) (int ____nfds_3435, __fd_set_3417 * __restrict ____readfds_3436, __fd_set_3417 * __restrict ____writefds_3438, __fd_set_3417 * __restrict ____exceptfds_3440, const struct __timespec_3394 * __restrict ____timeout_3443, const ____sigset_t_3392 * __restrict ____sigmask_3446);// L118:L122 -extern int (__pselect_3448) (int ____nfds_3435, __fd_set_3417 * __restrict ____readfds_3436, __fd_set_3417 * __restrict ____writefds_3438, __fd_set_3417 * __restrict ____exceptfds_3440, const struct __forward_tag_reference_3442 * __restrict ____timeout_3445, const ____sigset_t_3392 * __restrict ____sigmask_3446);// L118:L122 -extern long int (____fdelt_chk_3452) (long int ____d_3451);// L24 -extern long int (____fdelt_warn_3454) (long int ____d_3453);// L25:L26 -extern unsigned int (__gnu_dev_major_3456) (unsigned long long int ____dev_3455);// L27:L28 -extern unsigned int (__gnu_dev_major_3457) (unsigned long long int ____dev_3455);// L27:L28 -extern unsigned int (__gnu_dev_minor_3459) (unsigned long long int ____dev_3458);// L30:L31 -extern unsigned long long int (__gnu_dev_makedev_3462) (unsigned int ____major_3460, unsigned int ____minor_3461);// L33:L35 +extern int (__select_3180) (int ____nfds_3173, __fd_set_3170 * __restrict ____readfds_3174, __fd_set_3170 * __restrict ____writefds_3175, __fd_set_3170 * __restrict ____exceptfds_3176, struct __timeval_3160 * __restrict ____timeout_3178);// L106:L109 +extern int (__select_3181) (int ____nfds_3173, __fd_set_3170 * __restrict ____readfds_3174, __fd_set_3170 * __restrict ____writefds_3175, __fd_set_3170 * __restrict ____exceptfds_3176, struct __forward_tag_reference_3177 * __restrict ____timeout_3179);// L106:L109 +extern int (__pselect_3190) (int ____nfds_3182, __fd_set_3170 * __restrict ____readfds_3183, __fd_set_3170 * __restrict ____writefds_3184, __fd_set_3170 * __restrict ____exceptfds_3185, const struct __timespec_3157 * __restrict ____timeout_3187, const ____sigset_t_3155 * __restrict ____sigmask_3189);// L118:L122 +extern int (__pselect_3191) (int ____nfds_3182, __fd_set_3170 * __restrict ____readfds_3183, __fd_set_3170 * __restrict ____writefds_3184, __fd_set_3170 * __restrict ____exceptfds_3185, const struct __forward_tag_reference_3186 * __restrict ____timeout_3188, const ____sigset_t_3155 * __restrict ____sigmask_3189);// L118:L122 +extern long int (____fdelt_chk_3193) (long int ____d_3192);// L24 +extern long int (____fdelt_warn_3195) (long int ____d_3194);// L25:L26 +extern unsigned int (__gnu_dev_major_3197) (unsigned long long int ____dev_3196);// L27:L28 +extern unsigned int (__gnu_dev_major_3198) (unsigned long long int ____dev_3196);// L27:L28 +extern unsigned int (__gnu_dev_minor_3200) (unsigned long long int ____dev_3199);// L30:L31 +extern unsigned long long int (__gnu_dev_makedev_3203) (unsigned int ____major_3201, unsigned int ____minor_3202);// L33:L35 __extension__/* no function due to type errors in the function prototype */ __extension__/* no function due to type errors in the function prototype */ __extension__/* no function due to type errors in the function prototype */ @@ -4361,24 +3960,24 @@ __extension__/* no function due to type errors in the function prototype */ // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -union __pthread_attr_t_3482 ;// L63 +union __pthread_attr_t_3216 ;// L63 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern int (__rand_3513) (void );// L374 -extern void (__srand_3515) (unsigned int ____seed_3514);// L376 -extern int (__rand_r_3517) (unsigned int * (____seed_3516));// L381 -extern double (__drand48_3518) (void );// L389 -extern double (__erand48_3520) (unsigned short int ____xsubi_3519[3]);// L390 -extern long int (__lrand48_3521) (void );// L393 -extern long int (__nrand48_3523) (unsigned short int ____xsubi_3522[3]);// L394:L395 -extern long int (__mrand48_3524) (void );// L398 -extern long int (__jrand48_3526) (unsigned short int ____xsubi_3525[3]);// L399:L400 -extern void (__srand48_3528) (long int ____seedval_3527);// L403 -extern unsigned short int * ((__seed48_3530) (unsigned short int ____seed16v_3529[3]));// L404:L405 -extern void (__lcong48_3532) (unsigned short int ____param_3531[7]);// L406 +extern int (__rand_3247) (void );// L374 +extern void (__srand_3249) (unsigned int ____seed_3248);// L376 +extern int (__rand_r_3251) (unsigned int * (____seed_3250));// L381 +extern double (__drand48_3252) (void );// L389 +extern double (__erand48_3254) (unsigned short int ____xsubi_3253[3]);// L390 +extern long int (__lrand48_3255) (void );// L393 +extern long int (__nrand48_3257) (unsigned short int ____xsubi_3256[3]);// L394:L395 +extern long int (__mrand48_3258) (void );// L398 +extern long int (__jrand48_3260) (unsigned short int ____xsubi_3259[3]);// L399:L400 +extern void (__srand48_3262) (long int ____seedval_3261);// L403 +extern unsigned short int * ((__seed48_3264) (unsigned short int ____seed16v_3263[3]));// L404:L405 +extern void (__lcong48_3266) (unsigned short int ____param_3265[7]);// L406 @@ -4391,159 +3990,159 @@ extern void (__lcong48_3532) (unsigned short int ____param_3531[7]);// L406 -extern void * ((__alloca_3565) (__size_t_59 ____size_3564));// L32 +extern void * ((__alloca_3299) (__size_t_57 ____size_3298));// L32 -extern int (__posix_memalign_3574) (void * (* (____memptr_3571)), __size_t_59 ____alignment_3572, __size_t_59 ____size_3573);// L503:L504 -extern int (__posix_memalign_3575) (void * (* (____memptr_3571)), __size_t_59 ____alignment_3572, __size_t_59 ____size_3573);// L503:L504 -extern void * ((__aligned_alloc_3578) (__size_t_59 ____alignment_3576, __size_t_59 ____size_3577));// L509:L510 -extern void * ((__aligned_alloc_3579) (__size_t_59 ____alignment_3576, __size_t_59 ____size_3577));// L509:L510 -extern void * ((__aligned_alloc_3580) (__size_t_59 ____alignment_3576, __size_t_59 ____size_3577));// L509:L510 -extern void * ((__aligned_alloc_3581) (__size_t_59 ____alignment_3576, __size_t_59 ____size_3577));// L509:L510 -extern void (__abort_3582) (void );// L515 -extern int (__atexit_3584) (void (* (____func_3583)) (void ));// L519 -extern int (__at_quick_exit_3586) (void (* (____func_3585)) (void ));// L527 -extern int (__on_exit_3591) (void (* (____func_3589)) (int ____status_3587, void * (____arg_3588)), void * (____arg_3590));// L535:L536 -extern void (__exit_3593) (int ____status_3592);// L543 -extern void (__exit_3594) (int ____status_3592);// L543 -extern void (__quick_exit_3596) (int ____status_3595);// L549 -extern void (___Exit_3598) (int ____status_3597);// L557 -extern char * ((__getenv_3600) (const char * (____name_3599)));// L564 -extern char * ((__getenv_3601) (const char * (____name_3599)));// L564 -extern int (__putenv_3603) (char * (____string_3602));// L578 -extern int (__setenv_3607) (const char * (____name_3604), const char * (____value_3605), int ____replace_3606);// L584:L585 -extern int (__unsetenv_3609) (const char * (____name_3608));// L588 -extern int (__clearenv_3610) (void );// L595 -extern char * ((__mktemp_3612) (char * (____template_3611)));// L606 -extern int (__mkstemp_3615) (char * (____template_3613));// L619 -extern int (__mkstemp_3617) (char * (____template_3613));// L619 -extern int (__mkstemp_3616) (char * (____template_3614));// L622:L623 -extern int (__mkstemp_3618) (char * (____template_3614));// L622:L623 -extern int (__mkstemps_3623) (char * (____template_3619), int ____suffixlen_3620);// L641 -extern int (__mkstemps_3624) (char * (____template_3621), int ____suffixlen_3622);// L644:L645 -extern int (__mkstemps_3625) (char * (____template_3619), int ____suffixlen_3620);// L641 -extern int (__mkstemps_3626) (char * (____template_3621), int ____suffixlen_3622);// L644:L645 -extern char * ((__mkdtemp_3628) (char * (____template_3627)));// L662 -extern char * ((__mkdtemp_3629) (char * (____template_3627)));// L662 -extern int (__system_3631) (const char * (____command_3630));// L716 -extern int (__system_3632) (const char * (____command_3630));// L716 -extern int (__system_3633) (const char * (____command_3630));// L716 -extern int (__system_3634) (const char * (____command_3630));// L716 -extern char * ((__realpath_3637) (const char * __restrict ____name_3635, char * __restrict ____resolved_3636));// L733:L734 -extern char * ((__realpath_3638) (const char * __restrict ____name_3635, char * __restrict ____resolved_3636));// L733:L734 +extern int (__posix_memalign_3308) (void * (* (____memptr_3305)), __size_t_57 ____alignment_3306, __size_t_57 ____size_3307);// L503:L504 +extern int (__posix_memalign_3309) (void * (* (____memptr_3305)), __size_t_57 ____alignment_3306, __size_t_57 ____size_3307);// L503:L504 +extern void * ((__aligned_alloc_3312) (__size_t_57 ____alignment_3310, __size_t_57 ____size_3311));// L509:L510 +extern void * ((__aligned_alloc_3313) (__size_t_57 ____alignment_3310, __size_t_57 ____size_3311));// L509:L510 +extern void * ((__aligned_alloc_3314) (__size_t_57 ____alignment_3310, __size_t_57 ____size_3311));// L509:L510 +extern void * ((__aligned_alloc_3315) (__size_t_57 ____alignment_3310, __size_t_57 ____size_3311));// L509:L510 +extern void (__abort_3316) (void );// L515 +extern int (__atexit_3318) (void (* (____func_3317)) (void ));// L519 +extern int (__at_quick_exit_3320) (void (* (____func_3319)) (void ));// L527 +extern int (__on_exit_3325) (void (* (____func_3323)) (int ____status_3321, void * (____arg_3322)), void * (____arg_3324));// L535:L536 +extern void (__exit_3327) (int ____status_3326);// L543 +extern void (__exit_3328) (int ____status_3326);// L543 +extern void (__quick_exit_3330) (int ____status_3329);// L549 +extern void (___Exit_3332) (int ____status_3331);// L557 +extern char * ((__getenv_3334) (const char * (____name_3333)));// L564 +extern char * ((__getenv_3335) (const char * (____name_3333)));// L564 +extern int (__putenv_3337) (char * (____string_3336));// L578 +extern int (__setenv_3341) (const char * (____name_3338), const char * (____value_3339), int ____replace_3340);// L584:L585 +extern int (__unsetenv_3343) (const char * (____name_3342));// L588 +extern int (__clearenv_3344) (void );// L595 +extern char * ((__mktemp_3346) (char * (____template_3345)));// L606 +extern int (__mkstemp_3349) (char * (____template_3347));// L619 +extern int (__mkstemp_3351) (char * (____template_3347));// L619 +extern int (__mkstemp_3350) (char * (____template_3348));// L622:L623 +extern int (__mkstemp_3352) (char * (____template_3348));// L622:L623 +extern int (__mkstemps_3357) (char * (____template_3353), int ____suffixlen_3354);// L641 +extern int (__mkstemps_3358) (char * (____template_3355), int ____suffixlen_3356);// L644:L645 +extern int (__mkstemps_3359) (char * (____template_3353), int ____suffixlen_3354);// L641 +extern int (__mkstemps_3360) (char * (____template_3355), int ____suffixlen_3356);// L644:L645 +extern char * ((__mkdtemp_3362) (char * (____template_3361)));// L662 +extern char * ((__mkdtemp_3363) (char * (____template_3361)));// L662 +extern int (__system_3365) (const char * (____command_3364));// L716 +extern int (__system_3366) (const char * (____command_3364));// L716 +extern int (__system_3367) (const char * (____command_3364));// L716 +extern int (__system_3368) (const char * (____command_3364));// L716 +extern char * ((__realpath_3371) (const char * __restrict ____name_3369, char * __restrict ____resolved_3370));// L733:L734 +extern char * ((__realpath_3372) (const char * __restrict ____name_3369, char * __restrict ____resolved_3370));// L733:L734 // typedef moved to top of scope -extern void * ((__bsearch_3647) (const void * (____key_3640), const void * (____base_3641), __size_t_59 ____nmemb_3642, __size_t_59 ____size_3643, ____compar_fn_t_3639 ____compar_3644));// L754:L756 -extern void * ((__bsearch_3649) (const void * (____key_3640), const void * (____base_3641), __size_t_59 ____nmemb_3642, __size_t_59 ____size_3643, ____compar_fn_t_3639 ____compar_3644));// L754:L756 +extern void * ((__bsearch_3381) (const void * (____key_3374), const void * (____base_3375), __size_t_57 ____nmemb_3376, __size_t_57 ____size_3377, ____compar_fn_t_3373 ____compar_3378));// L754:L756 +extern void * ((__bsearch_3383) (const void * (____key_3374), const void * (____base_3375), __size_t_57 ____nmemb_3376, __size_t_57 ____size_3377, ____compar_fn_t_3373 ____compar_3378));// L754:L756 /* no function due to type errors in the function prototype */ -extern void (__qsort_3668) (void * (____base_3663), __size_t_59 ____nmemb_3664, __size_t_59 ____size_3665, ____compar_fn_t_3639 ____compar_3666);// L764:L765 -extern void (__qsort_3670) (void * (____base_3663), __size_t_59 ____nmemb_3664, __size_t_59 ____size_3665, ____compar_fn_t_3639 ____compar_3666);// L764:L765 -extern int (__abs_3673) (int ____x_3672);// L774 -extern int (__abs_3674) (int ____x_3672);// L774 -extern long int (__labs_3676) (long int ____x_3675);// L775 -extern long int (__labs_3677) (long int ____x_3675);// L775 -extern long long int (__llabs_3679) (long long int ____x_3678);// L779:L780 -extern long long int (__llabs_3680) (long long int ____x_3678);// L779:L780 -extern __div_t_3260 (__div_3683) (int ____numer_3681, int ____denom_3682);// L788:L789 -extern __div_t_3260 (__div_3684) (int ____numer_3681, int ____denom_3682);// L788:L789 -extern __ldiv_t_3265 (__ldiv_3687) (long int ____numer_3685, long int ____denom_3686);// L790:L791 -extern __ldiv_t_3265 (__ldiv_3689) (long int ____numer_3685, long int ____denom_3686);// L790:L791 -extern __lldiv_t_3270 (__lldiv_3693) (long long int ____numer_3691, long long int ____denom_3692);// L796:L798 -extern __lldiv_t_3270 (__lldiv_3695) (long long int ____numer_3691, long long int ____denom_3692);// L796:L798 -extern char * ((__ecvt_3701) (double ____value_3697, int ____ndigit_3698, int * __restrict ____decpt_3699, int * __restrict ____sign_3700));// L811:L812 -extern char * ((__ecvt_3702) (double ____value_3697, int ____ndigit_3698, int * __restrict ____decpt_3699, int * __restrict ____sign_3700));// L811:L812 -extern char * ((__fcvt_3707) (double ____value_3703, int ____ndigit_3704, int * __restrict ____decpt_3705, int * __restrict ____sign_3706));// L817:L818 -extern char * ((__fcvt_3708) (double ____value_3703, int ____ndigit_3704, int * __restrict ____decpt_3705, int * __restrict ____sign_3706));// L817:L818 -extern char * ((__gcvt_3712) (double ____value_3709, int ____ndigit_3710, char * (____buf_3711)));// L823:L824 -extern char * ((__gcvt_3713) (double ____value_3709, int ____ndigit_3710, char * (____buf_3711)));// L823:L824 -extern char * ((__qecvt_3718) (long double ____value_3714, int ____ndigit_3715, int * __restrict ____decpt_3716, int * __restrict ____sign_3717));// L829:L831 -extern char * ((__qecvt_3719) (long double ____value_3714, int ____ndigit_3715, int * __restrict ____decpt_3716, int * __restrict ____sign_3717));// L829:L831 -extern char * ((__qfcvt_3724) (long double ____value_3720, int ____ndigit_3721, int * __restrict ____decpt_3722, int * __restrict ____sign_3723));// L832:L834 -extern char * ((__qfcvt_3725) (long double ____value_3720, int ____ndigit_3721, int * __restrict ____decpt_3722, int * __restrict ____sign_3723));// L832:L834 -extern char * ((__qgcvt_3729) (long double ____value_3726, int ____ndigit_3727, char * (____buf_3728)));// L835:L836 -extern char * ((__qgcvt_3730) (long double ____value_3726, int ____ndigit_3727, char * (____buf_3728)));// L835:L836 -extern int (__ecvt_r_3737) (double ____value_3731, int ____ndigit_3732, int * __restrict ____decpt_3733, int * __restrict ____sign_3734, char * __restrict ____buf_3735, __size_t_59 ____len_3736);// L841:L843 -extern int (__fcvt_r_3744) (double ____value_3738, int ____ndigit_3739, int * __restrict ____decpt_3740, int * __restrict ____sign_3741, char * __restrict ____buf_3742, __size_t_59 ____len_3743);// L844:L846 -extern int (__qecvt_r_3751) (long double ____value_3745, int ____ndigit_3746, int * __restrict ____decpt_3747, int * __restrict ____sign_3748, char * __restrict ____buf_3749, __size_t_59 ____len_3750);// L848:L851 -extern int (__qfcvt_r_3758) (long double ____value_3752, int ____ndigit_3753, int * __restrict ____decpt_3754, int * __restrict ____sign_3755, char * __restrict ____buf_3756, __size_t_59 ____len_3757);// L852:L855 -extern int (__mblen_3761) (const char * (____s_3759), __size_t_59 ____n_3760);// L862 -extern int (__mblen_3762) (const char * (____s_3759), __size_t_59 ____n_3760);// L862 -extern int (__mbtowc_3767) (__wchar_t_2113 * __restrict ____pwc_3763, const char * __restrict ____s_3765, __size_t_59 ____n_3766);// L865:L866 -extern int (__mbtowc_3768) (__wchar_t_3224 * __restrict ____pwc_3764, const char * __restrict ____s_3765, __size_t_59 ____n_3766);// L865:L866 -extern int (__wctomb_3772) (char * (____s_3769), __wchar_t_2113 ____wchar_3770);// L869 -extern int (__wctomb_3773) (char * (____s_3769), __wchar_t_3224 ____wchar_3771);// L869 -extern __size_t_59 (__mbstowcs_3778) (__wchar_t_2113 * __restrict ____pwcs_3774, const char * __restrict ____s_3776, __size_t_59 ____n_3777);// L873:L874 -extern __size_t_59 (__mbstowcs_3779) (__wchar_t_3224 * __restrict ____pwcs_3775, const char * __restrict ____s_3776, __size_t_59 ____n_3777);// L873:L874 -extern __size_t_59 (__wcstombs_3784) (char * __restrict ____s_3780, const __wchar_t_2113 * __restrict ____pwcs_3781, __size_t_59 ____n_3783);// L876:L878 -extern __size_t_59 (__wcstombs_3785) (char * __restrict ____s_3780, const __wchar_t_3224 * __restrict ____pwcs_3782, __size_t_59 ____n_3783);// L876:L878 -extern int (__rpmatch_3788) (const char * (____response_3786));// L887 -extern int (__rpmatch_3787) (const char * (____response_3786));// L887 -extern int (__getsubopt_3793) (char * (* __restrict ____optionp_3789), char * const * __restrict ____tokens_3790, char * (* __restrict ____valuep_3791));// L898:L901 -extern int (__getsubopt_3792) (char * (* __restrict ____optionp_3789), char * const * __restrict ____tokens_3790, char * (* __restrict ____valuep_3791));// L898:L901 -extern int (__getloadavg_3796) (double ____loadavg_3794[], int ____nelem_3795);// L950:L951 +extern void (__qsort_3402) (void * (____base_3397), __size_t_57 ____nmemb_3398, __size_t_57 ____size_3399, ____compar_fn_t_3373 ____compar_3400);// L764:L765 +extern void (__qsort_3404) (void * (____base_3397), __size_t_57 ____nmemb_3398, __size_t_57 ____size_3399, ____compar_fn_t_3373 ____compar_3400);// L764:L765 +extern int (__abs_3407) (int ____x_3406);// L774 +extern int (__abs_3408) (int ____x_3406);// L774 +extern long int (__labs_3410) (long int ____x_3409);// L775 +extern long int (__labs_3411) (long int ____x_3409);// L775 +extern long long int (__llabs_3413) (long long int ____x_3412);// L779:L780 +extern long long int (__llabs_3414) (long long int ____x_3412);// L779:L780 +extern __div_t_3039 (__div_3417) (int ____numer_3415, int ____denom_3416);// L788:L789 +extern __div_t_3039 (__div_3418) (int ____numer_3415, int ____denom_3416);// L788:L789 +extern __ldiv_t_3044 (__ldiv_3421) (long int ____numer_3419, long int ____denom_3420);// L790:L791 +extern __ldiv_t_3044 (__ldiv_3423) (long int ____numer_3419, long int ____denom_3420);// L790:L791 +extern __lldiv_t_3049 (__lldiv_3427) (long long int ____numer_3425, long long int ____denom_3426);// L796:L798 +extern __lldiv_t_3049 (__lldiv_3429) (long long int ____numer_3425, long long int ____denom_3426);// L796:L798 +extern char * ((__ecvt_3435) (double ____value_3431, int ____ndigit_3432, int * __restrict ____decpt_3433, int * __restrict ____sign_3434));// L811:L812 +extern char * ((__ecvt_3436) (double ____value_3431, int ____ndigit_3432, int * __restrict ____decpt_3433, int * __restrict ____sign_3434));// L811:L812 +extern char * ((__fcvt_3441) (double ____value_3437, int ____ndigit_3438, int * __restrict ____decpt_3439, int * __restrict ____sign_3440));// L817:L818 +extern char * ((__fcvt_3442) (double ____value_3437, int ____ndigit_3438, int * __restrict ____decpt_3439, int * __restrict ____sign_3440));// L817:L818 +extern char * ((__gcvt_3446) (double ____value_3443, int ____ndigit_3444, char * (____buf_3445)));// L823:L824 +extern char * ((__gcvt_3447) (double ____value_3443, int ____ndigit_3444, char * (____buf_3445)));// L823:L824 +extern char * ((__qecvt_3452) (long double ____value_3448, int ____ndigit_3449, int * __restrict ____decpt_3450, int * __restrict ____sign_3451));// L829:L831 +extern char * ((__qecvt_3453) (long double ____value_3448, int ____ndigit_3449, int * __restrict ____decpt_3450, int * __restrict ____sign_3451));// L829:L831 +extern char * ((__qfcvt_3458) (long double ____value_3454, int ____ndigit_3455, int * __restrict ____decpt_3456, int * __restrict ____sign_3457));// L832:L834 +extern char * ((__qfcvt_3459) (long double ____value_3454, int ____ndigit_3455, int * __restrict ____decpt_3456, int * __restrict ____sign_3457));// L832:L834 +extern char * ((__qgcvt_3463) (long double ____value_3460, int ____ndigit_3461, char * (____buf_3462)));// L835:L836 +extern char * ((__qgcvt_3464) (long double ____value_3460, int ____ndigit_3461, char * (____buf_3462)));// L835:L836 +extern int (__ecvt_r_3471) (double ____value_3465, int ____ndigit_3466, int * __restrict ____decpt_3467, int * __restrict ____sign_3468, char * __restrict ____buf_3469, __size_t_57 ____len_3470);// L841:L843 +extern int (__fcvt_r_3478) (double ____value_3472, int ____ndigit_3473, int * __restrict ____decpt_3474, int * __restrict ____sign_3475, char * __restrict ____buf_3476, __size_t_57 ____len_3477);// L844:L846 +extern int (__qecvt_r_3485) (long double ____value_3479, int ____ndigit_3480, int * __restrict ____decpt_3481, int * __restrict ____sign_3482, char * __restrict ____buf_3483, __size_t_57 ____len_3484);// L848:L851 +extern int (__qfcvt_r_3492) (long double ____value_3486, int ____ndigit_3487, int * __restrict ____decpt_3488, int * __restrict ____sign_3489, char * __restrict ____buf_3490, __size_t_57 ____len_3491);// L852:L855 +extern int (__mblen_3495) (const char * (____s_3493), __size_t_57 ____n_3494);// L862 +extern int (__mblen_3496) (const char * (____s_3493), __size_t_57 ____n_3494);// L862 +extern int (__mbtowc_3501) (__wchar_t_1929 * __restrict ____pwc_3497, const char * __restrict ____s_3499, __size_t_57 ____n_3500);// L865:L866 +extern int (__mbtowc_3502) (__wchar_t_3003 * __restrict ____pwc_3498, const char * __restrict ____s_3499, __size_t_57 ____n_3500);// L865:L866 +extern int (__wctomb_3506) (char * (____s_3503), __wchar_t_1929 ____wchar_3504);// L869 +extern int (__wctomb_3507) (char * (____s_3503), __wchar_t_3003 ____wchar_3505);// L869 +extern __size_t_57 (__mbstowcs_3512) (__wchar_t_1929 * __restrict ____pwcs_3508, const char * __restrict ____s_3510, __size_t_57 ____n_3511);// L873:L874 +extern __size_t_57 (__mbstowcs_3513) (__wchar_t_3003 * __restrict ____pwcs_3509, const char * __restrict ____s_3510, __size_t_57 ____n_3511);// L873:L874 +extern __size_t_57 (__wcstombs_3518) (char * __restrict ____s_3514, const __wchar_t_1929 * __restrict ____pwcs_3515, __size_t_57 ____n_3517);// L876:L878 +extern __size_t_57 (__wcstombs_3519) (char * __restrict ____s_3514, const __wchar_t_3003 * __restrict ____pwcs_3516, __size_t_57 ____n_3517);// L876:L878 +extern int (__rpmatch_3522) (const char * (____response_3520));// L887 +extern int (__rpmatch_3521) (const char * (____response_3520));// L887 +extern int (__getsubopt_3527) (char * (* __restrict ____optionp_3523), char * const * __restrict ____tokens_3524, char * (* __restrict ____valuep_3525));// L898:L901 +extern int (__getsubopt_3526) (char * (* __restrict ____optionp_3523), char * const * __restrict ____tokens_3524, char * (* __restrict ____valuep_3525));// L898:L901 +extern int (__getloadavg_3530) (double ____loadavg_3528[], int ____nelem_3529);// L950:L951 /* no function due to type errors in the function prototype */ -extern char * ((____realpath_chk_3801) (const char * __restrict ____name_3798, char * __restrict ____resolved_3799, __size_t_59 ____resolvedlen_3800));// L23:L25 -extern char * ((____realpath_alias_3804) (const char * __restrict ____name_3802, char * __restrict ____resolved_3803));// L26:L28 -extern char * ((____realpath_chk_warn_3808) (const char * __restrict ____name_3805, char * __restrict ____resolved_3806, __size_t_59 ____resolvedlen_3807));// L29:L34 +extern char * ((____realpath_chk_3535) (const char * __restrict ____name_3532, char * __restrict ____resolved_3533, __size_t_57 ____resolvedlen_3534));// L23:L25 +extern char * ((____realpath_alias_3538) (const char * __restrict ____name_3536, char * __restrict ____resolved_3537));// L26:L28 +extern char * ((____realpath_chk_warn_3542) (const char * __restrict ____name_3539, char * __restrict ____resolved_3540, __size_t_57 ____resolvedlen_3541));// L29:L34 /* no function due to type errors in the function prototype */ -extern int (____ptsname_r_chk_3816) (int ____fd_3812, char * (____buf_3813), __size_t_59 ____buflen_3814, __size_t_59 ____nreal_3815);// L52:L53 -extern int (____ptsname_r_alias_3820) (int ____fd_3817, char * (____buf_3818), __size_t_59 ____buflen_3819);// L54:L56 -extern int (____ptsname_r_chk_warn_3825) (int ____fd_3821, char * (____buf_3822), __size_t_59 ____buflen_3823, __size_t_59 ____nreal_3824);// L57:L61 +extern int (____ptsname_r_chk_3550) (int ____fd_3546, char * (____buf_3547), __size_t_57 ____buflen_3548, __size_t_57 ____nreal_3549);// L52:L53 +extern int (____ptsname_r_alias_3554) (int ____fd_3551, char * (____buf_3552), __size_t_57 ____buflen_3553);// L54:L56 +extern int (____ptsname_r_chk_warn_3559) (int ____fd_3555, char * (____buf_3556), __size_t_57 ____buflen_3557, __size_t_57 ____nreal_3558);// L57:L61 /* no function due to type errors in the function prototype */ -extern int (____wctomb_chk_3834) (char * (____s_3830), __wchar_t_2113 ____wchar_3831, __size_t_59 ____buflen_3833);// L77:L78 -extern int (____wctomb_chk_3835) (char * (____s_3830), __wchar_t_3224 ____wchar_3832, __size_t_59 ____buflen_3833);// L77:L78 -extern int (____wctomb_alias_3839) (char * (____s_3836), __wchar_t_2113 ____wchar_3837);// L79:L80 -extern int (____wctomb_alias_3840) (char * (____s_3836), __wchar_t_3224 ____wchar_3838);// L79:L80 +extern int (____wctomb_chk_3568) (char * (____s_3564), __wchar_t_1929 ____wchar_3565, __size_t_57 ____buflen_3567);// L77:L78 +extern int (____wctomb_chk_3569) (char * (____s_3564), __wchar_t_3003 ____wchar_3566, __size_t_57 ____buflen_3567);// L77:L78 +extern int (____wctomb_alias_3573) (char * (____s_3570), __wchar_t_1929 ____wchar_3571);// L79:L80 +extern int (____wctomb_alias_3574) (char * (____s_3570), __wchar_t_3003 ____wchar_3572);// L79:L80 /* no function due to type errors in the function prototype */ -extern __size_t_59 (____mbstowcs_chk_3849) (__wchar_t_2113 * __restrict ____dst_3844, const char * __restrict ____src_3846, __size_t_59 ____len_3847, __size_t_59 ____dstlen_3848);// L98:L100 -extern __size_t_59 (____mbstowcs_chk_3850) (__wchar_t_3224 * __restrict ____dst_3845, const char * __restrict ____src_3846, __size_t_59 ____len_3847, __size_t_59 ____dstlen_3848);// L98:L100 -extern __size_t_59 (____mbstowcs_alias_3855) (__wchar_t_2113 * __restrict ____dst_3851, const char * __restrict ____src_3853, __size_t_59 ____len_3854);// L101:L104 -extern __size_t_59 (____mbstowcs_alias_3856) (__wchar_t_3224 * __restrict ____dst_3852, const char * __restrict ____src_3853, __size_t_59 ____len_3854);// L101:L104 -extern __size_t_59 (____mbstowcs_chk_warn_3862) (__wchar_t_2113 * __restrict ____dst_3857, const char * __restrict ____src_3859, __size_t_59 ____len_3860, __size_t_59 ____dstlen_3861);// L105:L110 -extern __size_t_59 (____mbstowcs_chk_warn_3863) (__wchar_t_3224 * __restrict ____dst_3858, const char * __restrict ____src_3859, __size_t_59 ____len_3860, __size_t_59 ____dstlen_3861);// L105:L110 +extern __size_t_57 (____mbstowcs_chk_3583) (__wchar_t_1929 * __restrict ____dst_3578, const char * __restrict ____src_3580, __size_t_57 ____len_3581, __size_t_57 ____dstlen_3582);// L98:L100 +extern __size_t_57 (____mbstowcs_chk_3584) (__wchar_t_3003 * __restrict ____dst_3579, const char * __restrict ____src_3580, __size_t_57 ____len_3581, __size_t_57 ____dstlen_3582);// L98:L100 +extern __size_t_57 (____mbstowcs_alias_3589) (__wchar_t_1929 * __restrict ____dst_3585, const char * __restrict ____src_3587, __size_t_57 ____len_3588);// L101:L104 +extern __size_t_57 (____mbstowcs_alias_3590) (__wchar_t_3003 * __restrict ____dst_3586, const char * __restrict ____src_3587, __size_t_57 ____len_3588);// L101:L104 +extern __size_t_57 (____mbstowcs_chk_warn_3596) (__wchar_t_1929 * __restrict ____dst_3591, const char * __restrict ____src_3593, __size_t_57 ____len_3594, __size_t_57 ____dstlen_3595);// L105:L110 +extern __size_t_57 (____mbstowcs_chk_warn_3597) (__wchar_t_3003 * __restrict ____dst_3592, const char * __restrict ____src_3593, __size_t_57 ____len_3594, __size_t_57 ____dstlen_3595);// L105:L110 /* no function due to type errors in the function prototype */ -extern __size_t_59 (____wcstombs_chk_3873) (char * __restrict ____dst_3868, const __wchar_t_2113 * __restrict ____src_3869, __size_t_59 ____len_3871, __size_t_59 ____dstlen_3872);// L130:L132 -extern __size_t_59 (____wcstombs_chk_3874) (char * __restrict ____dst_3868, const __wchar_t_3224 * __restrict ____src_3870, __size_t_59 ____len_3871, __size_t_59 ____dstlen_3872);// L130:L132 -extern __size_t_59 (____wcstombs_alias_3879) (char * __restrict ____dst_3875, const __wchar_t_2113 * __restrict ____src_3876, __size_t_59 ____len_3878);// L133:L136 -extern __size_t_59 (____wcstombs_alias_3880) (char * __restrict ____dst_3875, const __wchar_t_3224 * __restrict ____src_3877, __size_t_59 ____len_3878);// L133:L136 -extern __size_t_59 (____wcstombs_chk_warn_3886) (char * __restrict ____dst_3881, const __wchar_t_2113 * __restrict ____src_3882, __size_t_59 ____len_3884, __size_t_59 ____dstlen_3885);// L137:L141 -extern __size_t_59 (____wcstombs_chk_warn_3887) (char * __restrict ____dst_3881, const __wchar_t_3224 * __restrict ____src_3883, __size_t_59 ____len_3884, __size_t_59 ____dstlen_3885);// L137:L141 +extern __size_t_57 (____wcstombs_chk_3607) (char * __restrict ____dst_3602, const __wchar_t_1929 * __restrict ____src_3603, __size_t_57 ____len_3605, __size_t_57 ____dstlen_3606);// L130:L132 +extern __size_t_57 (____wcstombs_chk_3608) (char * __restrict ____dst_3602, const __wchar_t_3003 * __restrict ____src_3604, __size_t_57 ____len_3605, __size_t_57 ____dstlen_3606);// L130:L132 +extern __size_t_57 (____wcstombs_alias_3613) (char * __restrict ____dst_3609, const __wchar_t_1929 * __restrict ____src_3610, __size_t_57 ____len_3612);// L133:L136 +extern __size_t_57 (____wcstombs_alias_3614) (char * __restrict ____dst_3609, const __wchar_t_3003 * __restrict ____src_3611, __size_t_57 ____len_3612);// L133:L136 +extern __size_t_57 (____wcstombs_chk_warn_3620) (char * __restrict ____dst_3615, const __wchar_t_1929 * __restrict ____src_3616, __size_t_57 ____len_3618, __size_t_57 ____dstlen_3619);// L137:L141 +extern __size_t_57 (____wcstombs_chk_warn_3621) (char * __restrict ____dst_3615, const __wchar_t_3003 * __restrict ____src_3617, __size_t_57 ____len_3618, __size_t_57 ____dstlen_3619);// L137:L141 /* no function due to type errors in the function prototype */ -extern int * ((____errno_location_3892) (void ));// L50 -extern int * ((____errno_location_3893) (void ));// L50 -extern int * ((____errno_location_3894) (void ));// L50 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern void * ((__mmap_3915) (void * (____addr_3901), __size_t_59 ____len_3902, int ____prot_3903, int ____flags_3904, int ____fd_3905, ____off_t_21 ____offset_3906));// L57:L58 -extern void * ((__mmap_3917) (void * (____addr_3908), __size_t_59 ____len_3909, int ____prot_3910, int ____flags_3911, int ____fd_3912, ____off64_t_22 ____offset_3913));// L61:L64 -extern int (__munmap_3921) (void * (____addr_3919), __size_t_59 ____len_3920);// L76 -extern int (__mprotect_3925) (void * (____addr_3922), __size_t_59 ____len_3923, int ____prot_3924);// L81 -extern int (__msync_3929) (void * (____addr_3926), __size_t_59 ____len_3927, int ____flags_3928);// L89 -extern int (__madvise_3933) (void * (____addr_3930), __size_t_59 ____len_3931, int ____advice_3932);// L94 -extern int (__posix_madvise_3937) (void * (____addr_3934), __size_t_59 ____len_3935, int ____advice_3936);// L98 -extern int (__mlock_3940) (const void * (____addr_3938), __size_t_59 ____len_3939);// L103 -extern int (__mlock_3941) (const void * (____addr_3938), __size_t_59 ____len_3939);// L103 -extern int (__munlock_3944) (const void * (____addr_3942), __size_t_59 ____len_3943);// L106 -extern int (__mlockall_3946) (int ____flags_3945);// L111 -extern int (__munlockall_3947) (void );// L115 -extern int (__mincore_3951) (void * (____start_3948), __size_t_59 ____len_3949, unsigned char * (____vec_3950));// L123:L124 -extern int (__shm_open_3958) (const char * (____name_3952), int ____oflag_3953, __mode_t_3899 ____mode_3956);// L144 -extern int (__shm_open_3962) (const char * (____name_3952), int ____oflag_3953, __mode_t_3899 ____mode_3956);// L144 -extern int (__shm_unlink_3965) (const char * (____name_3964));// L147 -char * (__buffer_3966);// L11 -void (__allocate_buffer_3968) () { - -if (__static_condition_default_3969) { +extern int * ((____errno_location_3626) (void ));// L50 +extern int * ((____errno_location_3627) (void ));// L50 +extern int * ((____errno_location_3628) (void ));// L50 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern void * ((__mmap_3644) (void * (____addr_3632), __size_t_57 ____len_3633, int ____prot_3634, int ____flags_3635, int ____fd_3636, ____off_t_21 ____offset_3637));// L57:L58 +extern void * ((__mmap_3645) (void * (____addr_3638), __size_t_57 ____len_3639, int ____prot_3640, int ____flags_3641, int ____fd_3642, ____off64_t_22 ____offset_3643));// L61:L64 +extern int (__munmap_3648) (void * (____addr_3646), __size_t_57 ____len_3647);// L76 +extern int (__mprotect_3652) (void * (____addr_3649), __size_t_57 ____len_3650, int ____prot_3651);// L81 +extern int (__msync_3656) (void * (____addr_3653), __size_t_57 ____len_3654, int ____flags_3655);// L89 +extern int (__madvise_3660) (void * (____addr_3657), __size_t_57 ____len_3658, int ____advice_3659);// L94 +extern int (__posix_madvise_3664) (void * (____addr_3661), __size_t_57 ____len_3662, int ____advice_3663);// L98 +extern int (__mlock_3667) (const void * (____addr_3665), __size_t_57 ____len_3666);// L103 +extern int (__mlock_3668) (const void * (____addr_3665), __size_t_57 ____len_3666);// L103 +extern int (__munlock_3671) (const void * (____addr_3669), __size_t_57 ____len_3670);// L106 +extern int (__mlockall_3673) (int ____flags_3672);// L111 +extern int (__munlockall_3674) (void );// L115 +extern int (__mincore_3678) (void * (____start_3675), __size_t_57 ____len_3676, unsigned char * (____vec_3677));// L123:L124 +extern int (__shm_open_3684) (const char * (____name_3679), int ____oflag_3680, __mode_t_3631 ____mode_3683);// L144 +extern int (__shm_open_3687) (const char * (____name_3679), int ____oflag_3680, __mode_t_3631 ____mode_3683);// L144 +extern int (__shm_unlink_3689) (const char * (____name_3688));// L147 +char * (__buffer_3690);// L11 +void (__allocate_buffer_3692) () { + +if (__static_condition_default_3693) { { { -int __pagesize_3967;// L15 +int __pagesize_3691;// L15 - __pagesize_3967 = __sysconf_599 ( ___SC_PAGESIZE_339 ) ; // L17 -if ( __pagesize_3967 == - 1 )// L18 + __pagesize_3691 = __sysconf_541 ( ___SC_PAGESIZE_281 ) ; // L17 +if ( __pagesize_3691 == - 1 )// L18 { do { @@ -4553,22 +4152,22 @@ do -if (__static_condition_default_3970) { - __perror_1847 ("sysconf") ; // L9 +if (__static_condition_default_3694) { + __perror_1663 ("sysconf") ; // L9 } -if (__static_condition_default_3971) { - __perror_1848 ("sysconf") ; // L9 +if (__static_condition_default_3695) { + __perror_1664 ("sysconf") ; // L9 } -if (__static_condition_default_3972) { - __perror_2877 ("sysconf") ; // L9 +if (__static_condition_default_3696) { + __perror_2656 ("sysconf") ; // L9 } -if (__static_condition_default_3973) { - __perror_2878 ("sysconf") ; // L9 +if (__static_condition_default_3697) { + __perror_2657 ("sysconf") ; // L9 } -if (__static_condition_default_3974) { - __exit_3593 (1) ; // L9 +if (__static_condition_default_3698) { + __exit_3327 (1) ; // L9 } -if (__static_condition_default_3975) { +if (__static_condition_default_3699) { __static_type_error("type error : no valid expression"); // L9 } } @@ -4576,13 +4175,13 @@ __static_type_error("type error : no valid expression"); // L9 } while( 0 );// L9:L19 } -if (__static_condition_default_3976) { - __buffer_3966 = __memalign_3162 ( __pagesize_3967 ,4 * __pagesize_3967 ) ; // L21 +if (__static_condition_default_3700) { + __buffer_3690 = __memalign_2941 ( __pagesize_3691 ,4 * __pagesize_3691 ) ; // L21 } -if (__static_condition_default_3977) { - __buffer_3966 = __memalign_3163 ( __pagesize_3967 ,4 * __pagesize_3967 ) ; // L21 +if (__static_condition_default_3701) { + __buffer_3690 = __memalign_2942 ( __pagesize_3691 ,4 * __pagesize_3691 ) ; // L21 } -if ( __buffer_3966 == ( ( void * ) 0 ) )// L22 +if ( __buffer_3690 == ( ( void * ) 0 ) )// L22 { do { @@ -4592,22 +4191,22 @@ do -if (__static_condition_default_3978) { - __perror_1847 ("memalign") ; // L9 +if (__static_condition_default_3702) { + __perror_1663 ("memalign") ; // L9 } -if (__static_condition_default_3979) { - __perror_1848 ("memalign") ; // L9 +if (__static_condition_default_3703) { + __perror_1664 ("memalign") ; // L9 } -if (__static_condition_default_3980) { - __perror_2877 ("memalign") ; // L9 +if (__static_condition_default_3704) { + __perror_2656 ("memalign") ; // L9 } -if (__static_condition_default_3981) { - __perror_2878 ("memalign") ; // L9 +if (__static_condition_default_3705) { + __perror_2657 ("memalign") ; // L9 } -if (__static_condition_default_3982) { - __exit_3593 (1) ; // L9 +if (__static_condition_default_3706) { + __exit_3327 (1) ; // L9 } -if (__static_condition_default_3983) { +if (__static_condition_default_3707) { __static_type_error("type error : no valid expression"); // L9 } } @@ -4615,7 +4214,7 @@ __static_type_error("type error : no valid expression"); // L9 } while( 0 );// L9:L23 } -if ( __mprotect_3925 ( __buffer_3966 ,4 * __pagesize_3967 ,0x1) == - 1 )// L25 +if ( __mprotect_3652 ( __buffer_3690 ,4 * __pagesize_3691 ,0x1) == - 1 )// L25 { do { @@ -4625,22 +4224,22 @@ do -if (__static_condition_default_3984) { - __perror_1847 ("mprotect") ; // L9 +if (__static_condition_default_3708) { + __perror_1663 ("mprotect") ; // L9 } -if (__static_condition_default_3985) { - __perror_1848 ("mprotect") ; // L9 +if (__static_condition_default_3709) { + __perror_1664 ("mprotect") ; // L9 } -if (__static_condition_default_3986) { - __perror_2877 ("mprotect") ; // L9 +if (__static_condition_default_3710) { + __perror_2656 ("mprotect") ; // L9 } -if (__static_condition_default_3987) { - __perror_2878 ("mprotect") ; // L9 +if (__static_condition_default_3711) { + __perror_2657 ("mprotect") ; // L9 } -if (__static_condition_default_3988) { - __exit_3593 (1) ; // L9 +if (__static_condition_default_3712) { + __exit_3327 (1) ; // L9 } -if (__static_condition_default_3989) { +if (__static_condition_default_3713) { __static_type_error("type error : no valid expression"); // L9 } } @@ -4654,85 +4253,85 @@ while( 0 );// L9:L26 } } -int (__main_3992) (int __argc_3990, char * (* (__argv_3991))) { +int (__main_3716) (int __argc_3714, char * (* (__argv_3715))) { -if (__static_condition_default_3994) { +if (__static_condition_default_3718) { { { -if (__static_condition_default_3995) { +if (__static_condition_default_3719) { ( { - __buffer_3966 = malloc (4092) ; // L29 + __buffer_3690 = malloc (4092) ; // L29 } ) ; // L29:L35 } -if (__static_condition_default_3996) { +if (__static_condition_default_3720) { ( { - __buffer_3966 = malloc (4092) ; // L29 + __buffer_3690 = malloc (4092) ; // L29 } ) ; // L29:L35 } -if (__static_condition_default_3997) { +if (__static_condition_default_3721) { ( { - __buffer_3966 = malloc (4092) ; // L29 + __buffer_3690 = malloc (4092) ; // L29 } ) ; // L29:L35 } -if (__static_condition_default_3998) { +if (__static_condition_default_3722) { ( { - __buffer_3966 = malloc (4092) ; // L29 + __buffer_3690 = malloc (4092) ; // L29 } ) ; // L29:L35 } -if (__static_condition_default_3999) { +if (__static_condition_default_3723) { ( { - __buffer_3966 = malloc (4092) ; // L29 + __buffer_3690 = malloc (4092) ; // L29 } ) ; // L29:L35 } -if (__static_condition_default_4000) { +if (__static_condition_default_3724) { ( { - __buffer_3966 = malloc (4092) ; // L29 + __buffer_3690 = malloc (4092) ; // L29 } ) ; // L29:L35 } -if (__static_condition_default_4001) { +if (__static_condition_default_3725) { __static_type_error("type error") ; // L29:L35 } -if (__static_condition_default_4002) { -* __buffer_3966 = 'a' ; // L37 +if (__static_condition_default_3726) { +* __buffer_3690 = 'a' ; // L37 } -if (__static_condition_default_4003) { +if (__static_condition_default_3727) { return 0 ;// L39 } -if (__static_condition_default_4004) { +if (__static_condition_default_3728) { return 0 ;// L39 } } @@ -4741,23 +4340,23 @@ return 0 ;// L39 } } -int (__main_3993) (int __argc_3990, char * (* (__argv_3991))) { +int (__main_3717) (int __argc_3714, char * (* (__argv_3715))) { -if (__static_condition_default_4005) { +if (__static_condition_default_3729) { { { - __allocate_buffer_3968 ( ) ; // L35 -if (__static_condition_default_4006) { -* __buffer_3966 = 'a' ; // L37 + __allocate_buffer_3692 ( ) ; // L35 +if (__static_condition_default_3730) { +* __buffer_3690 = 'a' ; // L37 } -if (__static_condition_default_4007) { +if (__static_condition_default_3731) { return 0 ;// L39 } -if (__static_condition_default_4008) { +if (__static_condition_default_3732) { return 0 ;// L39 } } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/242f1a34377.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/242f1a34377.desugared.c index 6292fe14..9f996973 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/242f1a34377.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/242f1a34377.desugared.c @@ -8,10 +8,10 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); extern const bool __static_condition_default_3; -extern const bool __static_condition_default_4; extern const bool __static_condition_default_10; -extern const bool __static_condition_default_5; +extern const bool __static_condition_default_4; extern const bool __static_condition_default_1; +extern const bool __static_condition_default_5; extern const bool __static_condition_default_11; void __static_initializer_default() { __static_renaming("__crypto_alloc_ablkcipher_0", "crypto_alloc_ablkcipher"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/2f02c15a5d9.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/2f02c15a5d9.desugared.c index 8db959de..ce864e8b 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/2f02c15a5d9.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/2f02c15a5d9.desugared.c @@ -8,11 +8,11 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); extern const bool __static_condition_default_3; -extern const bool __static_condition_default_10; -extern const bool __static_condition_default_11; -extern const bool __static_condition_default_1; extern const bool __static_condition_default_4; +extern const bool __static_condition_default_11; +extern const bool __static_condition_default_10; extern const bool __static_condition_default_5; +extern const bool __static_condition_default_1; void __static_initializer_default() { __static_renaming("__ssb_extif_gpio_in_0", "ssb_extif_gpio_in"); __static_renaming("__bcm47xx_gpio_get_value_2", "bcm47xx_gpio_get_value"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.desugared.c index 5617f5f6..2fb0d440 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.desugared.c @@ -7,9 +7,9 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); +extern const bool __static_condition_default_6; extern const bool __static_condition_default_11; extern const bool __static_condition_default_5; -extern const bool __static_condition_default_6; void __static_initializer_default() { __static_renaming("__nondet_0", "nondet"); __static_renaming("__security_old_inode_init_security_3", "security_old_inode_init_security"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/36855dcfc98.clangres b/fonda/cpp_testsuite/varBugs/LINUX/36855dcfc98.clangres index e69de29b..2535e6bd 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/36855dcfc98.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/36855dcfc98.clangres @@ -0,0 +1,4 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/36855dcfc98.c:6:3: warning: Value stored to 'wakeup' is never read [deadcode.DeadStores] + wakeup = 0; + ^ ~ +1 warning generated. diff --git a/fonda/cpp_testsuite/varBugs/LINUX/472a474c663.clangres b/fonda/cpp_testsuite/varBugs/LINUX/472a474c663.clangres index c483e27f..e69de29b 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/472a474c663.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/472a474c663.clangres @@ -1,4 +0,0 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/472a474c663.c:14:8: warning: Dereference of null pointer (loaded from variable 'ptr') [core.NullDereference] - *ptr = 'a'; - ~~~ ^ -1 warning generated. diff --git a/fonda/cpp_testsuite/varBugs/LINUX/472a474c663.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/472a474c663.desugared.c index fbb32d36..6d2f24dd 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/472a474c663.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/472a474c663.desugared.c @@ -7,11 +7,11 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_14; -extern const bool __static_condition_default_10; +extern const bool __static_condition_default_6; extern const bool __static_condition_default_7; +extern const bool __static_condition_default_10; extern const bool __static_condition_default_15; -extern const bool __static_condition_default_6; +extern const bool __static_condition_default_14; void __static_initializer_default() { __static_renaming("__nondet_0", "nondet"); __static_renaming("__smp_found_config_1", "smp_found_config"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.c index 66a87ee4..2b6cd9b7 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.c @@ -7,27 +7,9 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_52; +extern const bool __static_condition_default_33; extern const bool __static_condition_default_43; -extern const bool __static_condition_default_44; -extern const bool __static_condition_default_56; -extern const bool __static_condition_default_36; -extern const bool __static_condition_default_39; -extern const bool __static_condition_default_55; -extern const bool __static_condition_default_60; -extern const bool __static_condition_default_58; -extern const bool __static_condition_default_61; -extern const bool __static_condition_default_57; -extern const bool __static_condition_default_59; -extern const bool __static_condition_default_35; -extern const bool __static_condition_default_45; -extern const bool __static_condition_default_50; -extern const bool __static_condition_default_29; -extern const bool __static_condition_default_54; -extern const bool __static_condition_default_53; -extern const bool __static_condition_default_31; extern const bool __static_condition_default_42; -extern const bool __static_condition_default_51; void __static_initializer_default() { __static_renaming("__int8_t_0", "int8_t"); __static_renaming("__int16_t_1", "int16_t"); @@ -58,39 +40,21 @@ __static_renaming("__uintptr_t_25", "uintptr_t"); __static_renaming("__intmax_t_26", "intmax_t"); __static_renaming("__uintmax_t_27", "uintmax_t"); __static_renaming("__s32_28", "s32"); -__static_renaming("__s64_30", "s64"); -__static_renaming("__u64_32", "u64"); -__static_renaming("__ktime_set_34", "ktime_set"); -__static_renaming("__tmp_38", "tmp"); -__static_renaming("__sec_40", "sec"); -__static_renaming("__ktime_add_ns_41", "ktime_add_ns"); -__static_renaming("__time_delta_46", "time_delta"); -__static_renaming("__expires_47", "expires"); -__static_renaming("__tick_nohz_stop_sched_tick_48", "tick_nohz_stop_sched_tick"); -__static_renaming("__tick_nohz_stop_sched_tick_49", "tick_nohz_stop_sched_tick"); -__static_renaming("__main_64", "main"); - -__static_condition_renaming("__static_condition_default_29", "(defined __int8_t_defined)"); -__static_condition_renaming("__static_condition_default_31", "(defined __int8_t_defined)"); -__static_condition_renaming("__static_condition_default_35", "(defined __int8_t_defined) && !(defined CONFIG_64BIT) && !(defined CONFIG_KTIME_SCALAR)"); -__static_condition_renaming("__static_condition_default_36", "!(defined __int8_t_defined) && !(defined CONFIG_64BIT) && !(defined CONFIG_KTIME_SCALAR)"); -__static_condition_renaming("__static_condition_default_39", "(defined __int8_t_defined) && !(defined CONFIG_64BIT) && !(defined CONFIG_KTIME_SCALAR)"); -__static_condition_renaming("__static_condition_default_42", "(defined __int8_t_defined) && !(defined CONFIG_64BIT) && !(defined CONFIG_KTIME_SCALAR)"); -__static_condition_renaming("__static_condition_default_43", "!(defined __int8_t_defined) && !(defined CONFIG_64BIT) && !(defined CONFIG_KTIME_SCALAR)"); -__static_condition_renaming("__static_condition_default_44", "!(defined __int8_t_defined) && !(defined CONFIG_64BIT) && !(defined CONFIG_KTIME_SCALAR)"); -__static_condition_renaming("__static_condition_default_45", "!(defined __int8_t_defined) && !(defined CONFIG_64BIT) && !(defined CONFIG_KTIME_SCALAR)"); -__static_condition_renaming("__static_condition_default_50", "!(defined CONFIG_64BIT) && (defined CONFIG_KTIME_SCALAR) || (defined CONFIG_64BIT)"); -__static_condition_renaming("__static_condition_default_51", "!(defined __int8_t_defined) && !(defined CONFIG_64BIT) && (defined CONFIG_KTIME_SCALAR) || !(defined __int8_t_defined) && (defined CONFIG_64BIT)"); -__static_condition_renaming("__static_condition_default_52", "!(defined __int8_t_defined) && !(defined CONFIG_64BIT) && (defined CONFIG_KTIME_SCALAR) || !(defined __int8_t_defined) && (defined CONFIG_64BIT)"); -__static_condition_renaming("__static_condition_default_53", "(defined __int8_t_defined) && !(defined CONFIG_64BIT) && (defined CONFIG_KTIME_SCALAR) || (defined __int8_t_defined) && (defined CONFIG_64BIT)"); -__static_condition_renaming("__static_condition_default_54", "!(defined __int8_t_defined) && !(defined CONFIG_64BIT) && (defined CONFIG_KTIME_SCALAR) || !(defined __int8_t_defined) && (defined CONFIG_64BIT)"); -__static_condition_renaming("__static_condition_default_55", "(defined __int8_t_defined) && !(defined CONFIG_64BIT) && (defined CONFIG_KTIME_SCALAR) || (defined __int8_t_defined) && (defined CONFIG_64BIT)"); -__static_condition_renaming("__static_condition_default_56", "!(defined CONFIG_64BIT) && !(defined CONFIG_KTIME_SCALAR)"); -__static_condition_renaming("__static_condition_default_57", "!(defined __int8_t_defined) && !(defined CONFIG_64BIT) && !(defined CONFIG_KTIME_SCALAR)"); -__static_condition_renaming("__static_condition_default_58", "!(defined __int8_t_defined) && !(defined CONFIG_64BIT) && !(defined CONFIG_KTIME_SCALAR)"); -__static_condition_renaming("__static_condition_default_59", "(defined __int8_t_defined) && !(defined CONFIG_64BIT) && !(defined CONFIG_KTIME_SCALAR)"); -__static_condition_renaming("__static_condition_default_60", "!(defined __int8_t_defined) && !(defined CONFIG_64BIT) && !(defined CONFIG_KTIME_SCALAR)"); -__static_condition_renaming("__static_condition_default_61", "(defined __int8_t_defined) && !(defined CONFIG_64BIT) && !(defined CONFIG_KTIME_SCALAR)"); +__static_renaming("__s64_29", "s64"); +__static_renaming("__u64_30", "u64"); +__static_renaming("__ktime_set_32", "ktime_set"); +__static_renaming("__tmp_35", "tmp"); +__static_renaming("__sec_36", "sec"); +__static_renaming("__ktime_add_ns_37", "ktime_add_ns"); +__static_renaming("__time_delta_38", "time_delta"); +__static_renaming("__expires_39", "expires"); +__static_renaming("__tick_nohz_stop_sched_tick_40", "tick_nohz_stop_sched_tick"); +__static_renaming("__tick_nohz_stop_sched_tick_41", "tick_nohz_stop_sched_tick"); +__static_renaming("__main_46", "main"); + +__static_condition_renaming("__static_condition_default_33", "!(defined CONFIG_64BIT) && !(defined CONFIG_KTIME_SCALAR)"); +__static_condition_renaming("__static_condition_default_42", "!(defined CONFIG_64BIT) && (defined CONFIG_KTIME_SCALAR) || (defined CONFIG_64BIT)"); +__static_condition_renaming("__static_condition_default_43", "!(defined CONFIG_64BIT) && !(defined CONFIG_KTIME_SCALAR)"); }; typedef signed char __int8_t_0;// L36 @@ -122,8 +86,8 @@ typedef unsigned long int __uintptr_t_25;// L122 typedef long int __intmax_t_26;// L134 typedef unsigned long int __uintmax_t_27;// L135 typedef __int32_t_2 __s32_28;// L4 -typedef __int64_t_3 __s64_30;// L5 -typedef __uint64_t_7 __u64_32;// L6 +typedef __int64_t_3 __s64_29;// L5 +typedef __uint64_t_7 __u64_30;// L6 // typedef moved to top of scope // typedef moved to top of scope @@ -156,170 +120,138 @@ typedef __uint64_t_7 __u64_32;// L6 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -static inline __s64_30 (__ktime_set_34) (const long __secs_33) { +static inline __s64_29 (__ktime_set_32) (const long __secs_31) { -if (__static_condition_default_36) { +if (__static_condition_default_33) { { { -return ( __s64_30 ) __secs_33 * 1000000000L ;// L31 +return ( __s64_29 ) __secs_31 * 1000000000L ;// L31 } } } } -__s64_30 (__ktime_add_ns_41) (__u64_32 __nsec_37) { +__s64_29 (__ktime_add_ns_37) (__u64_30 __nsec_34) { -if (__static_condition_default_43) { +if (__static_condition_default_33) { { { -__s64_30 __tmp_38;// L36 +__s64_29 __tmp_35;// L36 -if ( __nsec_37 < 1000000000L )// L38 +if ( __nsec_34 < 1000000000L )// L38 { -if (__static_condition_default_44) { { { - __tmp_38 = __nsec_37 ; // L39 -} + __tmp_35 = __nsec_34 ; // L39 } } } else { -if (__static_condition_default_45) { { { -unsigned long __sec_40= __nsec_37 / 1000000000L;// L41 +unsigned long __sec_36= __nsec_34 / 1000000000L;// L41 - __tmp_38 = __ktime_set_34 (( __s32_28 ) __sec_40 ) ; // L42 -} + __tmp_35 = __ktime_set_32 (( __s32_28 ) __sec_36 ) ; // L42 } } } -return __tmp_38 ;// L45 +return __tmp_35 ;// L45 } } } } -static __u64_32 (__tick_nohz_stop_sched_tick_48) () { +static __u64_30 (__tick_nohz_stop_sched_tick_40) () { -if (__static_condition_default_50) { +if (__static_condition_default_42) { { { -__u64_32 __time_delta_46= ( __u64_32 ) 7881299347898368000;// L52 +__u64_30 __time_delta_38= ( __u64_30 ) 7881299347898368000;// L52 -__s64_30 __expires_47;// L53 - -if (__static_condition_default_31) { -__static_type_error("invalid declaration of expires under this presence condition"); -} +__s64_29 __expires_39;// L53 -if (__static_condition_default_51) { -if ( __time_delta_46 < ( ( __s64_30 ) ~ ( ( __u64_32 ) 1 << 63 ) ) )// L55 +if ( __time_delta_38 < ( ( __s64_29 ) ~ ( ( __u64_30 ) 1 << 63 ) ) )// L55 { - __expires_47 = ( __time_delta_46 ) ; // L25:L56 + __expires_39 = ( __time_delta_38 ) ; // L25:L56 } else { -if (__static_condition_default_52) { - __expires_47 = ( ( __s64_30 ) ~ ( ( __u64_32 ) 1 << 63 ) ) ; // L16:L58 -} -} -} -if (__static_condition_default_53) { -__static_type_error("invalid type found in ifelse statement"); -} -if (__static_condition_default_54) { -return __expires_47 ;// L60 +if (__static_condition_default_42) { + __expires_39 = ( ( __s64_29 ) ~ ( ( __u64_30 ) 1 << 63 ) ) ; // L16:L58 } -if (__static_condition_default_55) { -__static_type_error("invalid type found in return expression"); } +return __expires_39 ;// L60 } } } } -static __u64_32 (__tick_nohz_stop_sched_tick_49) () { +static __u64_30 (__tick_nohz_stop_sched_tick_41) () { -if (__static_condition_default_56) { +if (__static_condition_default_43) { { { -__u64_32 __time_delta_46= ( __u64_32 ) 7881299347898368000;// L52 - -__s64_30 __expires_47;// L53 +__u64_30 __time_delta_38= ( __u64_30 ) 7881299347898368000;// L52 -if (__static_condition_default_31) { -__static_type_error("invalid declaration of expires under this presence condition"); -} +__s64_29 __expires_39;// L53 -if (__static_condition_default_57) { -if ( __time_delta_46 < ( ( __s64_30 ) ~ ( ( __u64_32 ) 1 << 63 ) ) )// L55 +if ( __time_delta_38 < ( ( __s64_29 ) ~ ( ( __u64_30 ) 1 << 63 ) ) )// L55 { - __expires_47 = __ktime_add_ns_41 ( __time_delta_46 ) ; // L56 + __expires_39 = __ktime_add_ns_37 ( __time_delta_38 ) ; // L56 } else { -if (__static_condition_default_58) { - __expires_47 = ( ( __s64_30 ) ~ ( ( __u64_32 ) 1 << 63 ) ) ; // L16:L58 -} -} -} -if (__static_condition_default_59) { -__static_type_error("invalid type found in ifelse statement"); -} -if (__static_condition_default_60) { -return __expires_47 ;// L60 +if (__static_condition_default_43) { + __expires_39 = ( ( __s64_29 ) ~ ( ( __u64_30 ) 1 << 63 ) ) ; // L16:L58 } -if (__static_condition_default_61) { -__static_type_error("invalid type found in return expression"); } +return __expires_39 ;// L60 } } } } -int (__main_64) (int __argc_62, char * (* (__argv_63))) { +int (__main_46) (int __argc_44, char * (* (__argv_45))) { { { -if (__static_condition_default_50) { - __tick_nohz_stop_sched_tick_48 ( ) ; // L65 +if (__static_condition_default_42) { + __tick_nohz_stop_sched_tick_40 ( ) ; // L65 } -if (__static_condition_default_56) { - __tick_nohz_stop_sched_tick_49 ( ) ; // L65 +if (__static_condition_default_43) { + __tick_nohz_stop_sched_tick_41 ( ) ; // L65 } return 0 ;// L66 } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.clangres index bc21d33f..e69de29b 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.clangres @@ -1,10 +0,0 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.c:216:1: warning: Undefined or garbage value returned to caller [core.uninitialized.UndefReturn] -return __tmp_38 ;// L45 -^~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.c:256:1: warning: Undefined or garbage value returned to caller [core.uninitialized.UndefReturn] -return __expires_47 ;// L60 -^~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.c:300:1: warning: Undefined or garbage value returned to caller [core.uninitialized.UndefReturn] -return __expires_47 ;// L60 -^~~~~~~~~~~~~~~~~~~~ -3 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.inferres index b3fab957..217d1734 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.inferres +++ b/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.inferres @@ -1,32 +1,23 @@ -LINUX/51fd36f3fad.desugared.c:216: error: Uninitialized Value - The value read from __tmp_38 was never initialized. - 214. } - 215. } - 216. return __tmp_38 ;// L45 +LINUX/51fd36f3fad.desugared.c:206: error: Uninitialized Value + The value read from __expires_39 was never initialized. + 204. } + 205. } + 206. return __expires_39 ;// L60 ^ - 217. } - 218. } + 207. } + 208. } -LINUX/51fd36f3fad.desugared.c:256: error: Uninitialized Value - The value read from __expires_47 was never initialized. - 254. } - 255. if (__static_condition_default_54) { - 256. return __expires_47 ;// L60 +LINUX/51fd36f3fad.desugared.c:236: error: Uninitialized Value + The value read from __expires_39 was never initialized. + 234. } + 235. } + 236. return __expires_39 ;// L60 ^ - 257. } - 258. if (__static_condition_default_55) { - -LINUX/51fd36f3fad.desugared.c:300: error: Uninitialized Value - The value read from __expires_47 was never initialized. - 298. } - 299. if (__static_condition_default_60) { - 300. return __expires_47 ;// L60 - ^ - 301. } - 302. if (__static_condition_default_61) { + 237. } + 238. } -Found 3 issues +Found 2 issues Issue Type(ISSUED_TYPE_ID): # - Uninitialized Value(UNINITIALIZED_VALUE): 3 + Uninitialized Value(UNINITIALIZED_VALUE): 2 diff --git a/fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.clangres b/fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.clangres index e69de29b..f8544390 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.clangres @@ -0,0 +1,5 @@ +In file included from :342: +:1:8: error: 'defined' cannot be used as a macro name +#undef defined + ^ +1 error generated. diff --git a/fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.desugared.c index 57777b41..23916e64 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.desugared.c @@ -7,284 +7,284 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_487; -extern const bool __static_condition_default_569; -extern const bool __static_condition_default_671; -extern const bool __static_condition_default_512; -extern const bool __static_condition_default_77; -extern const bool __static_condition_default_530; +extern const bool __static_condition_default_490; +extern const bool __static_condition_default_722; +extern const bool __static_condition_default_754; +extern const bool __static_condition_default_849; +extern const bool __static_condition_default_757; extern const bool __static_condition_default_249; -extern const bool __static_condition_default_724; -extern const bool __static_condition_default_810; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_789; -extern const bool __static_condition_default_188; -extern const bool __static_condition_default_358; -extern const bool __static_condition_default_603; -extern const bool __static_condition_default_843; -extern const bool __static_condition_default_171; -extern const bool __static_condition_default_586; -extern const bool __static_condition_default_908; -extern const bool __static_condition_default_685; -extern const bool __static_condition_default_439; -extern const bool __static_condition_default_332; -extern const bool __static_condition_default_761; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_748; -extern const bool __static_condition_default_314; extern const bool __static_condition_default_383; -extern const bool __static_condition_default_289; -extern const bool __static_condition_default_334; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_374; -extern const bool __static_condition_default_964; -extern const bool __static_condition_default_268; -extern const bool __static_condition_default_247; -extern const bool __static_condition_default_1092; -extern const bool __static_condition_default_753; -extern const bool __static_condition_default_782; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_609; +extern const bool __static_condition_default_495; +extern const bool __static_condition_default_476; +extern const bool __static_condition_default_837; +extern const bool __static_condition_default_239; +extern const bool __static_condition_default_291; +extern const bool __static_condition_default_958; +extern const bool __static_condition_default_586; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_550; extern const bool __static_condition_default_892; -extern const bool __static_condition_default_849; -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_648; -extern const bool __static_condition_default_522; -extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_434; +extern const bool __static_condition_default_356; extern const bool __static_condition_default_511; -extern const bool __static_condition_default_540; -extern const bool __static_condition_default_678; -extern const bool __static_condition_default_495; -extern const bool __static_condition_default_258; +extern const bool __static_condition_default_804; +extern const bool __static_condition_default_810; +extern const bool __static_condition_default_276; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_622; extern const bool __static_condition_default_1099; -extern const bool __static_condition_default_973; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_287; -extern const bool __static_condition_default_513; -extern const bool __static_condition_default_316; -extern const bool __static_condition_default_342; -extern const bool __static_condition_default_54; -extern const bool __static_condition_default_754; -extern const bool __static_condition_default_701; -extern const bool __static_condition_default_835; -extern const bool __static_condition_default_1016; -extern const bool __static_condition_default_1115; -extern const bool __static_condition_default_620; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_409; +extern const bool __static_condition_default_279; +extern const bool __static_condition_default_569; +extern const bool __static_condition_default_332; +extern const bool __static_condition_default_1006; +extern const bool __static_condition_default_376; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_512; +extern const bool __static_condition_default_939; +extern const bool __static_condition_default_639; +extern const bool __static_condition_default_1102; +extern const bool __static_condition_default_826; +extern const bool __static_condition_default_624; +extern const bool __static_condition_default_394; +extern const bool __static_condition_default_544; +extern const bool __static_condition_default_224; extern const bool __static_condition_default_462; -extern const bool __static_condition_default_456; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_254; -extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_1052; -extern const bool __static_condition_default_490; -extern const bool __static_condition_default_492; -extern const bool __static_condition_default_1010; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_1111; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_859; -extern const bool __static_condition_default_710; -extern const bool __static_condition_default_432; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_671; +extern const bool __static_condition_default_281; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_1092; +extern const bool __static_condition_default_1104; +extern const bool __static_condition_default_798; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_445; +extern const bool __static_condition_default_285; +extern const bool __static_condition_default_1074; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_554; +extern const bool __static_condition_default_748; +extern const bool __static_condition_default_603; extern const bool __static_condition_default_634; extern const bool __static_condition_default_853; -extern const bool __static_condition_default_1059; -extern const bool __static_condition_default_476; -extern const bool __static_condition_default_638; -extern const bool __static_condition_default_818; -extern const bool __static_condition_default_498; -extern const bool __static_condition_default_737; -extern const bool __static_condition_default_260; -extern const bool __static_condition_default_728; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_245; -extern const bool __static_condition_default_381; -extern const bool __static_condition_default_622; -extern const bool __static_condition_default_242; -extern const bool __static_condition_default_394; -extern const bool __static_condition_default_1106; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_635; +extern const bool __static_condition_default_964; +extern const bool __static_condition_default_565; +extern const bool __static_condition_default_1109; +extern const bool __static_condition_default_456; +extern const bool __static_condition_default_620; extern const bool __static_condition_default_980; -extern const bool __static_condition_default_770; -extern const bool __static_condition_default_798; -extern const bool __static_condition_default_968; -extern const bool __static_condition_default_413; +extern const bool __static_condition_default_268; +extern const bool __static_condition_default_869; +extern const bool __static_condition_default_1023; +extern const bool __static_condition_default_188; +extern const bool __static_condition_default_879; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_1111; +extern const bool __static_condition_default_524; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_256; +extern const bool __static_condition_default_694; +extern const bool __static_condition_default_761; extern const bool __static_condition_default_793; -extern const bool __static_condition_default_664; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_312; -extern const bool __static_condition_default_348; -extern const bool __static_condition_default_646; +extern const bool __static_condition_default_409; +extern const bool __static_condition_default_1029; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_824; +extern const bool __static_condition_default_574; +extern const bool __static_condition_default_230; +extern const bool __static_condition_default_945; +extern const bool __static_condition_default_999; +extern const bool __static_condition_default_540; +extern const bool __static_condition_default_1008; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_413; +extern const bool __static_condition_default_334; +extern const bool __static_condition_default_439; +extern const bool __static_condition_default_1106; +extern const bool __static_condition_default_370; +extern const bool __static_condition_default_492; +extern const bool __static_condition_default_260; +extern const bool __static_condition_default_403; +extern const bool __static_condition_default_314; +extern const bool __static_condition_default_865; +extern const bool __static_condition_default_205; +extern const bool __static_condition_default_297; +extern const bool __static_condition_default_614; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_895; +extern const bool __static_condition_default_124; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_930; +extern const bool __static_condition_default_1110; +extern const bool __static_condition_default_1016; extern const bool __static_condition_default_264; -extern const bool __static_condition_default_517; -extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_635; -extern const bool __static_condition_default_718; -extern const bool __static_condition_default_224; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_338; -extern const bool __static_condition_default_814; +extern const bool __static_condition_default_470; +extern const bool __static_condition_default_245; +extern const bool __static_condition_default_389; +extern const bool __static_condition_default_551; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_876; +extern const bool __static_condition_default_633; extern const bool __static_condition_default_884; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_762; -extern const bool __static_condition_default_265; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_239; -extern const bool __static_condition_default_865; -extern const bool __static_condition_default_1008; -extern const bool __static_condition_default_251; -extern const bool __static_condition_default_474; -extern const bool __static_condition_default_584; -extern const bool __static_condition_default_869; -extern const bool __static_condition_default_992; -extern const bool __static_condition_default_300; +extern const bool __static_condition_default_626; +extern const bool __static_condition_default_728; +extern const bool __static_condition_default_802; +extern const bool __static_condition_default_863; +extern const bool __static_condition_default_318; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_54; +extern const bool __static_condition_default_283; +extern const bool __static_condition_default_287; +extern const bool __static_condition_default_1043; extern const bool __static_condition_default_366; -extern const bool __static_condition_default_183; -extern const bool __static_condition_default_716; -extern const bool __static_condition_default_1023; -extern const bool __static_condition_default_174; -extern const bool __static_condition_default_194; -extern const bool __static_condition_default_294; -extern const bool __static_condition_default_211; -extern const bool __static_condition_default_346; -extern const bool __static_condition_default_873; -extern const bool __static_condition_default_297; +extern const bool __static_condition_default_522; +extern const bool __static_condition_default_652; +extern const bool __static_condition_default_199; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_312; +extern const bool __static_condition_default_660; extern const bool __static_condition_default_1103; +extern const bool __static_condition_default_396; +extern const bool __static_condition_default_489; +extern const bool __static_condition_default_1082; +extern const bool __static_condition_default_358; extern const bool __static_condition_default_539; +extern const bool __static_condition_default_171; +extern const bool __static_condition_default_843; +extern const bool __static_condition_default_368; +extern const bool __static_condition_default_859; +extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_272; extern const bool __static_condition_default_650; -extern const bool __static_condition_default_1109; +extern const bool __static_condition_default_218; +extern const bool __static_condition_default_472; +extern const bool __static_condition_default_718; +extern const bool __static_condition_default_1067; +extern const bool __static_condition_default_782; +extern const bool __static_condition_default_591; extern const bool __static_condition_default_236; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_702; -extern const bool __static_condition_default_769; -extern const bool __static_condition_default_837; -extern const bool __static_condition_default_888; -extern const bool __static_condition_default_418; -extern const bool __static_condition_default_598; -extern const bool __static_condition_default_841; -extern const bool __static_condition_default_1037; -extern const bool __static_condition_default_202; -extern const bool __static_condition_default_524; -extern const bool __static_condition_default_939; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_847; -extern const bool __static_condition_default_291; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_863; extern const bool __static_condition_default_364; -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_652; -extern const bool __static_condition_default_804; -extern const bool __static_condition_default_609; -extern const bool __static_condition_default_930; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_1067; -extern const bool __static_condition_default_470; -extern const bool __static_condition_default_687; -extern const bool __static_condition_default_368; extern const bool __static_condition_default_790; -extern const bool __static_condition_default_1074; -extern const bool __static_condition_default_551; -extern const bool __static_condition_default_957; -extern const bool __static_condition_default_396; -extern const bool __static_condition_default_1029; -extern const bool __static_condition_default_956; -extern const bool __static_condition_default_124; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_624; -extern const bool __static_condition_default_693; -extern const bool __static_condition_default_703; -extern const bool __static_condition_default_545; -extern const bool __static_condition_default_370; -extern const bool __static_condition_default_1105; -extern const bool __static_condition_default_1102; -extern const bool __static_condition_default_283; -extern const bool __static_condition_default_285; -extern const bool __static_condition_default_389; -extern const bool __static_condition_default_808; -extern const bool __static_condition_default_218; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_472; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_403; -extern const bool __static_condition_default_879; -extern const bool __static_condition_default_999; +extern const bool __static_condition_default_818; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_648; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_781; extern const bool __static_condition_default_1108; -extern const bool __static_condition_default_1110; -extern const bool __static_condition_default_639; +extern const bool __static_condition_default_418; +extern const bool __static_condition_default_1052; +extern const bool __static_condition_default_808; +extern const bool __static_condition_default_504; +extern const bool __static_condition_default_561; +extern const bool __static_condition_default_342; +extern const bool __static_condition_default_579; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_498; +extern const bool __static_condition_default_316; +extern const bool __static_condition_default_500; extern const bool __static_condition_default_758; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_445; -extern const bool __static_condition_default_895; -extern const bool __static_condition_default_614; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_294; +extern const bool __static_condition_default_338; +extern const bool __static_condition_default_724; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_702; +extern const bool __static_condition_default_348; +extern const bool __static_condition_default_254; +extern const bool __static_condition_default_513; +extern const bool __static_condition_default_769; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_530; +extern const bool __static_condition_default_542; extern const bool __static_condition_default_981; -extern const bool __static_condition_default_318; -extern const bool __static_condition_default_387; -extern const bool __static_condition_default_1104; -extern const bool __static_condition_default_915; -extern const bool __static_condition_default_958; -extern const bool __static_condition_default_434; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_820; -extern const bool __static_condition_default_826; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_281; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_794; -extern const bool __static_condition_default_579; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_876; -extern const bool __static_condition_default_272; -extern const bool __static_condition_default_543; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_381; +extern const bool __static_condition_default_973; extern const bool __static_condition_default_1044; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_792; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_77; +extern const bool __static_condition_default_908; +extern const bool __static_condition_default_346; +extern const bool __static_condition_default_1037; +extern const bool __static_condition_default_1115; +extern const bool __static_condition_default_289; +extern const bool __static_condition_default_517; +extern const bool __static_condition_default_737; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_710; +extern const bool __static_condition_default_915; +extern const bool __static_condition_default_545; +extern const bool __static_condition_default_873; +extern const bool __static_condition_default_174; extern const bool __static_condition_default_747; -extern const bool __static_condition_default_256; -extern const bool __static_condition_default_1006; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_722; -extern const bool __static_condition_default_356; -extern const bool __static_condition_default_500; -extern const bool __static_condition_default_780; -extern const bool __static_condition_default_276; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_669; -extern const bool __static_condition_default_230; -extern const bool __static_condition_default_561; -extern const bool __static_condition_default_376; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_660; -extern const bool __static_condition_default_709; +extern const bool __static_condition_default_968; +extern const bool __static_condition_default_820; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_1058; extern const bool __static_condition_default_637; -extern const bool __static_condition_default_824; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_770; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_251; +extern const bool __static_condition_default_474; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_835; +extern const bool __static_condition_default_847; extern const bool __static_condition_default_538; -extern const bool __static_condition_default_205; -extern const bool __static_condition_default_199; -extern const bool __static_condition_default_945; -extern const bool __static_condition_default_1082; -extern const bool __static_condition_default_574; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_802; -extern const bool __static_condition_default_504; -extern const bool __static_condition_default_279; -extern const bool __static_condition_default_565; +extern const bool __static_condition_default_1059; +extern const bool __static_condition_default_387; +extern const bool __static_condition_default_183; +extern const bool __static_condition_default_888; +extern const bool __static_condition_default_992; +extern const bool __static_condition_default_265; +extern const bool __static_condition_default_716; +extern const bool __static_condition_default_762; +extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_202; +extern const bool __static_condition_default_194; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_598; +extern const bool __static_condition_default_1081; extern const bool __static_condition_default_420; -extern const bool __static_condition_default_554; -extern const bool __static_condition_default_694; +extern const bool __static_condition_default_300; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_584; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_374; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_664; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_247; +extern const bool __static_condition_default_669; +extern const bool __static_condition_default_789; +extern const bool __static_condition_default_703; +extern const bool __static_condition_default_814; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_211; +extern const bool __static_condition_default_678; +extern const bool __static_condition_default_1010; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_841; +extern const bool __static_condition_default_487; +extern const bool __static_condition_default_687; +extern const bool __static_condition_default_792; extern const bool __static_condition_default_85; -extern const bool __static_condition_default_591; -extern const bool __static_condition_default_626; -extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_242; +extern const bool __static_condition_default_753; +extern const bool __static_condition_default_794; +extern const bool __static_condition_default_1105; void __static_initializer_default() { __static_renaming("____errno_location_0", "__errno_location"); __static_renaming("__ptrdiff_t_1", "ptrdiff_t"); @@ -843,8 +843,7 @@ __static_condition_renaming("__static_condition_default_1110", "(defined __need_ __static_condition_renaming("__static_condition_default_1111", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE)"); __static_condition_renaming("__static_condition_default_1115", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -if (__static_condition_default_1115) -{ +if (__static_condition_default_1115) { __static_parse_error("Unable to parse"); } }; diff --git a/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.clangres b/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.clangres index d62aecde..e69de29b 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.clangres @@ -1,7 +0,0 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.c:12:7: warning: Value stored to 'irq' during its initialization is never read [deadcode.DeadStores] - int irq = *ops; // (4) ERROR - ^~~ ~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.c:12:13: warning: Dereference of null pointer (loaded from variable 'ops') [core.NullDereference] - int irq = *ops; // (4) ERROR - ^~~~ -2 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.desugared.c index 748a6a21..5aa566fd 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.desugared.c @@ -9,12 +9,12 @@ void __static_initializer_default(); extern const bool __static_condition_default_10; extern const bool __static_condition_default_14; -extern const bool __static_condition_default_7; +extern const bool __static_condition_default_9; extern const bool __static_condition_default_4; extern const bool __static_condition_default_8; extern const bool __static_condition_default_16; +extern const bool __static_condition_default_7; extern const bool __static_condition_default_15; -extern const bool __static_condition_default_9; void __static_initializer_default() { __static_renaming("__irq_domain_simple_ops_0", "irq_domain_simple_ops"); __static_renaming("__irq_2", "irq"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.clangres b/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.clangres index e69de29b..c2d164cf 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.clangres @@ -0,0 +1,5 @@ +In file included from :342: +:3:8: error: 'defined' cannot be used as a macro name +#undef defined + ^ +1 error generated. diff --git a/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.desugared.c index f38e43fb..21c68084 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.desugared.c @@ -7,20 +7,20 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_18; -extern const bool __static_condition_default_14; -extern const bool __static_condition_default_26; -extern const bool __static_condition_default_23; -extern const bool __static_condition_default_8; -extern const bool __static_condition_default_19; -extern const bool __static_condition_default_27; +extern const bool __static_condition_default_25; extern const bool __static_condition_default_30; +extern const bool __static_condition_default_18; +extern const bool __static_condition_default_31; extern const bool __static_condition_default_20; +extern const bool __static_condition_default_23; extern const bool __static_condition_default_24; +extern const bool __static_condition_default_19; +extern const bool __static_condition_default_8; extern const bool __static_condition_default_15; -extern const bool __static_condition_default_25; -extern const bool __static_condition_default_31; +extern const bool __static_condition_default_26; extern const bool __static_condition_default_11; +extern const bool __static_condition_default_27; +extern const bool __static_condition_default_14; void __static_initializer_default() { __static_renaming("____assert_fail_4", "__assert_fail"); __static_renaming("__nondet_5", "nondet"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/6515e48932c.clangres b/fonda/cpp_testsuite/varBugs/LINUX/6515e48932c.clangres index e69de29b..037ecb09 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/6515e48932c.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/6515e48932c.clangres @@ -0,0 +1,5 @@ +In file included from :342: +:1:9: error: 'defined' cannot be used as a macro name +#define defined 1 + ^ +1 error generated. diff --git a/fonda/cpp_testsuite/varBugs/LINUX/6515e48932c.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/6515e48932c.desugared.c index ec2f1f71..bc807b0d 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/6515e48932c.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/6515e48932c.desugared.c @@ -8,11 +8,11 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); extern const bool __static_condition_default_11; -extern const bool __static_condition_default_1; extern const bool __static_condition_default_10; +extern const bool __static_condition_default_5; extern const bool __static_condition_default_3; +extern const bool __static_condition_default_1; extern const bool __static_condition_default_4; -extern const bool __static_condition_default_5; void __static_initializer_default() { __static_renaming("__omap2_set_globals_242x_0", "omap2_set_globals_242x"); __static_renaming("__omap_h4_map_io_2", "omap_h4_map_io"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/657e9649e74.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/657e9649e74.desugared.c index 97ac7eac..9e244b81 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/657e9649e74.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/657e9649e74.desugared.c @@ -7,19 +7,13 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_17; -extern const bool __static_condition_default_24; -extern const bool __static_condition_default_29; -extern const bool __static_condition_default_38; -extern const bool __static_condition_default_39; +extern const bool __static_condition_default_31; extern const bool __static_condition_default_16; +extern const bool __static_condition_default_33; extern const bool __static_condition_default_21; -extern const bool __static_condition_default_26; -extern const bool __static_condition_default_20; -extern const bool __static_condition_default_37; -extern const bool __static_condition_default_28; -extern const bool __static_condition_default_23; -extern const bool __static_condition_default_27; +extern const bool __static_condition_default_22; +extern const bool __static_condition_default_17; +extern const bool __static_condition_default_32; void __static_initializer_default() { __static_renaming("____assert_fail_4", "__assert_fail"); __static_renaming("____assert_perror_fail_9", "__assert_perror_fail"); @@ -28,30 +22,24 @@ __static_renaming("__nondet_14", "nondet"); __static_renaming("__nondet_15", "nondet"); __static_renaming("__preempt_counter_18", "preempt_counter"); __static_renaming("__tcp_free_md5sig_pool_19", "tcp_free_md5sig_pool"); -__static_renaming("__tcp_put_md5sig_pool_22", "tcp_put_md5sig_pool"); -__static_renaming("__tcp_twsk_destructor_25", "tcp_twsk_destructor"); -__static_renaming("__twsk_destructor_30", "twsk_destructor"); -__static_renaming("__inet_twsk_free_31", "inet_twsk_free"); -__static_renaming("__inet_twsk_put_32", "inet_twsk_put"); -__static_renaming("__inet_twdr_do_twkill_work_33", "inet_twdr_do_twkill_work"); -__static_renaming("__inet_twdr_hangman_34", "inet_twdr_hangman"); -__static_renaming("__preempt_count_35", "preempt_count"); -__static_renaming("____run_timers_36", "__run_timers"); -__static_renaming("__main_40", "main"); +__static_renaming("__tcp_put_md5sig_pool_20", "tcp_put_md5sig_pool"); +__static_renaming("__tcp_twsk_destructor_23", "tcp_twsk_destructor"); +__static_renaming("__twsk_destructor_24", "twsk_destructor"); +__static_renaming("__inet_twsk_free_25", "inet_twsk_free"); +__static_renaming("__inet_twsk_put_26", "inet_twsk_put"); +__static_renaming("__inet_twdr_do_twkill_work_27", "inet_twdr_do_twkill_work"); +__static_renaming("__inet_twdr_hangman_28", "inet_twdr_hangman"); +__static_renaming("__preempt_count_29", "preempt_count"); +__static_renaming("____run_timers_30", "__run_timers"); +__static_renaming("__main_34", "main"); __static_condition_renaming("__static_condition_default_16", "!(defined NDEBUG) && (defined _ASSERT_H_DECLS) || (defined NDEBUG)"); __static_condition_renaming("__static_condition_default_17", "!(defined NDEBUG) && !(defined _ASSERT_H_DECLS)"); -__static_condition_renaming("__static_condition_default_20", "(defined CONFIG_TCP_MD5SIG)"); -__static_condition_renaming("__static_condition_default_21", "!(defined CONFIG_TCP_MD5SIG)"); -__static_condition_renaming("__static_condition_default_23", "!(defined CONFIG_PREEMPT)"); -__static_condition_renaming("__static_condition_default_24", "(defined CONFIG_PREEMPT)"); -__static_condition_renaming("__static_condition_default_26", "!(defined CONFIG_TCP_MD5SIG)"); -__static_condition_renaming("__static_condition_default_27", "(defined CONFIG_TCP_MD5SIG)"); -__static_condition_renaming("__static_condition_default_28", "!(defined NDEBUG) && (defined _ASSERT_H_DECLS) && (defined CONFIG_TCP_MD5SIG) || (defined NDEBUG) && (defined CONFIG_TCP_MD5SIG)"); -__static_condition_renaming("__static_condition_default_29", "!(defined NDEBUG) && !(defined _ASSERT_H_DECLS) && (defined CONFIG_TCP_MD5SIG)"); -__static_condition_renaming("__static_condition_default_37", "(defined NDEBUG)"); -__static_condition_renaming("__static_condition_default_38", "!(defined NDEBUG) && !(defined _ASSERT_H_DECLS)"); -__static_condition_renaming("__static_condition_default_39", "!(defined NDEBUG) && (defined _ASSERT_H_DECLS)"); +__static_condition_renaming("__static_condition_default_21", "!(defined CONFIG_PREEMPT)"); +__static_condition_renaming("__static_condition_default_22", "(defined CONFIG_PREEMPT)"); +__static_condition_renaming("__static_condition_default_31", "(defined NDEBUG)"); +__static_condition_renaming("__static_condition_default_32", "!(defined NDEBUG) && !(defined _ASSERT_H_DECLS)"); +__static_condition_renaming("__static_condition_default_33", "!(defined NDEBUG) && (defined _ASSERT_H_DECLS)"); }; @@ -98,28 +86,23 @@ static inline void (__tcp_free_md5sig_pool_19) (void ) { -if (__static_condition_default_20) { ; // L21 } -if (__static_condition_default_21) { -__static_type_error("type error : no valid expression"); // L21 -} -} } } -static inline void (__tcp_put_md5sig_pool_22) (void ) { +static inline void (__tcp_put_md5sig_pool_20) (void ) { { { -if (__static_condition_default_23) { +if (__static_condition_default_21) { ; // L26 } -if (__static_condition_default_24) { +if (__static_condition_default_22) { ( __preempt_counter_18 -- ) ; // L10:L26 } } @@ -127,39 +110,23 @@ if (__static_condition_default_24) { } -void (__tcp_twsk_destructor_25) () { - -{ -if (__static_condition_default_26) { +void (__tcp_twsk_destructor_23) () { { { -} -} - - -} - -if (__static_condition_default_27) { - -{ -{ - - - -if (__static_condition_default_28) { +if (__static_condition_default_16) { if ( __nondet_14 ( ) )// L32 { - __tcp_put_md5sig_pool_22 ( ) ; // L33 + __tcp_put_md5sig_pool_20 ( ) ; // L33 } } -if (__static_condition_default_29) { +if (__static_condition_default_17) { if ( __nondet_15 ( ) )// L32 { - __tcp_put_md5sig_pool_22 ( ) ; // L33 + __tcp_put_md5sig_pool_20 ( ) ; // L33 } } } @@ -167,85 +134,83 @@ if ( __nondet_15 ( ) )// L32 } - -}} -static inline void (__twsk_destructor_30) () { +static inline void (__twsk_destructor_24) () { { { - __tcp_twsk_destructor_25 ( ) ; // L39 + __tcp_twsk_destructor_23 ( ) ; // L39 } } } -static void (__inet_twsk_free_31) () { +static void (__inet_twsk_free_25) () { { { - __twsk_destructor_30 ( ) ; // L44 + __twsk_destructor_24 ( ) ; // L44 } } } -void (__inet_twsk_put_32) () { +void (__inet_twsk_put_26) () { { { - __inet_twsk_free_31 ( ) ; // L49 + __inet_twsk_free_25 ( ) ; // L49 } } } -static int (__inet_twdr_do_twkill_work_33) () { +static int (__inet_twdr_do_twkill_work_27) () { { { - __inet_twsk_put_32 ( ) ; // L54 + __inet_twsk_put_26 ( ) ; // L54 return 0 ;// L55 } } } -void (__inet_twdr_hangman_34) () { +void (__inet_twdr_hangman_28) () { { { - __inet_twdr_do_twkill_work_33 ( ) ; // L60 + __inet_twdr_do_twkill_work_27 ( ) ; // L60 } } } -static inline void (____run_timers_36) () { +static inline void (____run_timers_30) () { { { -int __preempt_count_35= ( __preempt_counter_18 );// L65 +int __preempt_count_29= ( __preempt_counter_18 );// L65 - __inet_twdr_hangman_34 ( ) ; // L66 -if ( __preempt_count_35 != ( __preempt_counter_18 ) )// L67 + __inet_twdr_hangman_28 ( ) ; // L66 +if ( __preempt_count_29 != ( __preempt_counter_18 ) )// L67 { { @@ -253,13 +218,13 @@ if ( __preempt_count_35 != ( __preempt_counter_18 ) )// L67 -if (__static_condition_default_37) { +if (__static_condition_default_31) { ( ( void ) ( 0 ) ) ; // L50:L68 } -if (__static_condition_default_38) { +if (__static_condition_default_32) { ( ( 0 ) ? ( void ) ( 0 ) : ____assert_fail_4 ("0","/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/657e9649e74.c",68, __PRETTY_FUNCTION__ ) ) ; // L68:L91 } -if (__static_condition_default_39) { +if (__static_condition_default_33) { __static_type_error("type error") ; // L68:L91 } } @@ -270,14 +235,14 @@ __static_type_error("type error") ; // L68:L91 } -int (__main_40) (void ) { +int (__main_34) (void ) { { { - ____run_timers_36 ( ) ; // L74 + ____run_timers_30 ( ) ; // L74 return 0 ;// L75 } } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.clangres b/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.clangres index f01d99d3..eb9ae127 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.clangres @@ -1,4 +1,7 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.c:16:24: error: use of undeclared identifier 'i2c_master_send' + int codec_hw_write = i2c_master_send; // ERROR + ^ /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.c:24:24: error: use of undeclared identifier 'i2c_master_send' int codec_hw_write = i2c_master_send; // ERROR ^ -1 error generated. +2 errors generated. diff --git a/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.desugared.c index f2695454..dc7555a7 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.desugared.c @@ -8,13 +8,13 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); extern const bool __static_condition_default_4; -extern const bool __static_condition_default_16; extern const bool __static_condition_default_14; +extern const bool __static_condition_default_2; +extern const bool __static_condition_default_8; extern const bool __static_condition_default_13; extern const bool __static_condition_default_6; -extern const bool __static_condition_default_8; -extern const bool __static_condition_default_2; extern const bool __static_condition_default_15; +extern const bool __static_condition_default_16; void __static_initializer_default() { __static_renaming("__i2c_master_send_0", "i2c_master_send"); __static_renaming("__codec_hw_write_1", "codec_hw_write"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.clangres b/fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.clangres index 16dd03f3..c2d164cf 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.clangres @@ -1,7 +1,5 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.c:9:5: error: redefinition of 'i2c_dw_init' -int i2c_dw_init()// ERROR - ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.c:2:5: note: previous definition is here -int i2c_dw_init() - ^ +In file included from :342: +:3:8: error: 'defined' cannot be used as a macro name +#undef defined + ^ 1 error generated. diff --git a/fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.desugared.c index bda053bd..59a52f71 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.desugared.c @@ -7,16 +7,16 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_10; -extern const bool __static_condition_default_12; -extern const bool __static_condition_default_11; extern const bool __static_condition_default_7; -extern const bool __static_condition_default_2; -extern const bool __static_condition_default_13; -extern const bool __static_condition_default_8; extern const bool __static_condition_default_4; extern const bool __static_condition_default_9; +extern const bool __static_condition_default_11; +extern const bool __static_condition_default_8; +extern const bool __static_condition_default_12; extern const bool __static_condition_default_1; +extern const bool __static_condition_default_2; +extern const bool __static_condition_default_10; +extern const bool __static_condition_default_13; void __static_initializer_default() { __static_renaming("__i2c_dw_init_0", "i2c_dw_init"); __static_renaming("__i2c_dw_init_3", "i2c_dw_init"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.clangres b/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.clangres index e69de29b..f8544390 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.clangres @@ -0,0 +1,5 @@ +In file included from :342: +:1:8: error: 'defined' cannot be used as a macro name +#undef defined + ^ +1 error generated. diff --git a/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.c index 7348c617..177fc2b6 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.c @@ -7,10 +7,10 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_17; extern const bool __static_condition_default_15; -extern const bool __static_condition_default_14; extern const bool __static_condition_default_16; +extern const bool __static_condition_default_17; +extern const bool __static_condition_default_14; void __static_initializer_default() { __static_renaming("__malloc_1", "malloc"); __static_renaming("__free_3", "free"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.desugared.c index b2f33452..dfd48d5a 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.desugared.c @@ -7,13 +7,13 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_20; -extern const bool __static_condition_default_5; +extern const bool __static_condition_default_21; extern const bool __static_condition_default_17; extern const bool __static_condition_default_6; extern const bool __static_condition_default_11; extern const bool __static_condition_default_12; -extern const bool __static_condition_default_21; +extern const bool __static_condition_default_5; +extern const bool __static_condition_default_20; void __static_initializer_default() { __static_renaming("__nondet_0", "nondet"); __static_renaming("__some_int_1", "some_int"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/7c6048b7c83.clangres b/fonda/cpp_testsuite/varBugs/LINUX/7c6048b7c83.clangres index e69de29b..f8544390 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/7c6048b7c83.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/7c6048b7c83.clangres @@ -0,0 +1,5 @@ +In file included from :342: +:1:8: error: 'defined' cannot be used as a macro name +#undef defined + ^ +1 error generated. diff --git a/fonda/cpp_testsuite/varBugs/LINUX/7c6048b7c83.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/7c6048b7c83.desugared.c index 6b9cc61d..1cf75e4d 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/7c6048b7c83.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/7c6048b7c83.desugared.c @@ -7,15 +7,15 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_12; -extern const bool __static_condition_default_14; -extern const bool __static_condition_default_1; extern const bool __static_condition_default_10; +extern const bool __static_condition_default_14; extern const bool __static_condition_default_3; -extern const bool __static_condition_default_13; extern const bool __static_condition_default_4; extern const bool __static_condition_default_5; extern const bool __static_condition_default_11; +extern const bool __static_condition_default_12; +extern const bool __static_condition_default_13; +extern const bool __static_condition_default_1; void __static_initializer_default() { __static_renaming("__backlight_device_unregister_0", "backlight_device_unregister"); __static_renaming("__acpi_video_bus_put_one_device_2", "acpi_video_bus_put_one_device"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/809e660f438.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/809e660f438.desugared.c index 76046116..4a0c42d3 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/809e660f438.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/809e660f438.desugared.c @@ -7,8 +7,8 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_3; extern const bool __static_condition_default_4; +extern const bool __static_condition_default_3; void __static_initializer_default() { __static_renaming("__do_page_fault_0", "do_page_fault"); __static_renaming("__do_sect_fault_1", "do_sect_fault"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/8c8296223f3.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/8c8296223f3.desugared.c index c755ecdb..bdd64b9f 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/8c8296223f3.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/8c8296223f3.desugared.c @@ -7,68 +7,68 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_297; -extern const bool __static_condition_default_61; -extern const bool __static_condition_default_265; -extern const bool __static_condition_default_309; +extern const bool __static_condition_default_810; extern const bool __static_condition_default_427; -extern const bool __static_condition_default_380; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_379; -extern const bool __static_condition_default_247; +extern const bool __static_condition_default_238; extern const bool __static_condition_default_286; -extern const bool __static_condition_default_283; -extern const bool __static_condition_default_737; -extern const bool __static_condition_default_424; -extern const bool __static_condition_default_235; +extern const bool __static_condition_default_68; +extern const bool __static_condition_default_289; +extern const bool __static_condition_default_603; +extern const bool __static_condition_default_309; +extern const bool __static_condition_default_353; extern const bool __static_condition_default_582; -extern const bool __static_condition_default_815; -extern const bool __static_condition_default_803; +extern const bool __static_condition_default_424; +extern const bool __static_condition_default_430; +extern const bool __static_condition_default_737; +extern const bool __static_condition_default_303; +extern const bool __static_condition_default_350; +extern const bool __static_condition_default_624; extern const bool __static_condition_default_605; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_816; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_271; extern const bool __static_condition_default_808; -extern const bool __static_condition_default_262; -extern const bool __static_condition_default_238; extern const bool __static_condition_default_630; +extern const bool __static_condition_default_216; extern const bool __static_condition_default_628; -extern const bool __static_condition_default_303; -extern const bool __static_condition_default_294; +extern const bool __static_condition_default_262; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_256; +extern const bool __static_condition_default_265; +extern const bool __static_condition_default_380; extern const bool __static_condition_default_342; -extern const bool __static_condition_default_300; -extern const bool __static_condition_default_418; -extern const bool __static_condition_default_306; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_595; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_362; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_216; -extern const bool __static_condition_default_326; -extern const bool __static_condition_default_603; extern const bool __static_condition_default_421; +extern const bool __static_condition_default_396; +extern const bool __static_condition_default_596; extern const bool __static_condition_default_580; -extern const bool __static_condition_default_415; -extern const bool __static_condition_default_271; +extern const bool __static_condition_default_595; +extern const bool __static_condition_default_247; +extern const bool __static_condition_default_297; extern const bool __static_condition_default_277; -extern const bool __static_condition_default_596; -extern const bool __static_condition_default_353; +extern const bool __static_condition_default_816; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_415; +extern const bool __static_condition_default_326; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_283; +extern const bool __static_condition_default_379; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_250; extern const bool __static_condition_default_268; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_256; -extern const bool __static_condition_default_810; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_430; -extern const bool __static_condition_default_624; -extern const bool __static_condition_default_289; -extern const bool __static_condition_default_622; -extern const bool __static_condition_default_396; -extern const bool __static_condition_default_350; +extern const bool __static_condition_default_306; +extern const bool __static_condition_default_300; extern const bool __static_condition_default_395; -extern const bool __static_condition_default_68; +extern const bool __static_condition_default_622; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_362; +extern const bool __static_condition_default_61; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_418; +extern const bool __static_condition_default_815; +extern const bool __static_condition_default_294; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_433; void __static_initializer_default() { __static_renaming("____errno_location_0", "__errno_location"); __static_renaming("__ptrdiff_t_1", "ptrdiff_t"); @@ -527,8 +527,7 @@ __static_condition_renaming("__static_condition_default_815", "!(defined CONFIG_ __static_condition_renaming("__static_condition_default_816", "(defined CONFIG_PROC_PAGE_MONITOR)"); __static_condition_renaming("__static_condition_default_817", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -if (__static_condition_default_817) -{ +if (__static_condition_default_817) { __static_parse_error("Unable to parse"); } }; diff --git a/fonda/cpp_testsuite/varBugs/LINUX/91ea8207168.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/91ea8207168.desugared.c index 5a6cba2b..0d504c6a 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/91ea8207168.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/91ea8207168.desugared.c @@ -7,37 +7,36 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); +extern const bool __static_condition_default_245; extern const bool __static_condition_default_260; -extern const bool __static_condition_default_229; +extern const bool __static_condition_default_27; extern const bool __static_condition_default_249; -extern const bool __static_condition_default_230; -extern const bool __static_condition_default_256; -extern const bool __static_condition_default_236; -extern const bool __static_condition_default_239; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_204; -extern const bool __static_condition_default_264; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_237; +extern const bool __static_condition_default_240; +extern const bool __static_condition_default_252; extern const bool __static_condition_default_263; -extern const bool __static_condition_default_262; -extern const bool __static_condition_default_248; -extern const bool __static_condition_default_196; +extern const bool __static_condition_default_206; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_226; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_190; extern const bool __static_condition_default_238; -extern const bool __static_condition_default_265; -extern const bool __static_condition_default_243; -extern const bool __static_condition_default_222; +extern const bool __static_condition_default_231; extern const bool __static_condition_default_261; -extern const bool __static_condition_default_189; -extern const bool __static_condition_default_247; -extern const bool __static_condition_default_209; -extern const bool __static_condition_default_237; -extern const bool __static_condition_default_225; -extern const bool __static_condition_default_250; +extern const bool __static_condition_default_197; extern const bool __static_condition_default_205; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_27; -extern const bool __static_condition_default_254; +extern const bool __static_condition_default_265; +extern const bool __static_condition_default_239; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_256; extern const bool __static_condition_default_251; -extern const bool __static_condition_default_259; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_230; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_262; +extern const bool __static_condition_default_223; void __static_initializer_default() { __static_renaming("____assert_fail_4", "__assert_fail"); __static_renaming("____assert_perror_fail_9", "__assert_perror_fail"); @@ -64,88 +63,84 @@ __static_renaming("__strxfrm_l_86", "strxfrm_l"); __static_renaming("__strdup_88", "strdup"); __static_renaming("__strndup_91", "strndup"); __static_renaming("__strchr_94", "strchr"); -__static_renaming("__strrchr_97", "strrchr"); -__static_renaming("__strcspn_100", "strcspn"); -__static_renaming("__strspn_103", "strspn"); -__static_renaming("__strpbrk_106", "strpbrk"); -__static_renaming("__strstr_109", "strstr"); -__static_renaming("__strtok_112", "strtok"); -__static_renaming("____strtok_r_116", "__strtok_r"); -__static_renaming("__strtok_r_120", "strtok_r"); -__static_renaming("__strlen_122", "strlen"); +__static_renaming("__strchr_95", "strchr"); +__static_renaming("__strrchr_98", "strrchr"); +__static_renaming("__strcspn_101", "strcspn"); +__static_renaming("__strspn_104", "strspn"); +__static_renaming("__strpbrk_107", "strpbrk"); +__static_renaming("__strstr_110", "strstr"); +__static_renaming("__strtok_113", "strtok"); +__static_renaming("____strtok_r_117", "__strtok_r"); +__static_renaming("__strtok_r_121", "strtok_r"); __static_renaming("__strlen_123", "strlen"); -__static_renaming("__strnlen_126", "strnlen"); -__static_renaming("__strerror_128", "strerror"); +__static_renaming("__strlen_124", "strlen"); +__static_renaming("__strnlen_127", "strnlen"); __static_renaming("__strerror_129", "strerror"); -__static_renaming("__strerror_r_133", "strerror_r"); -__static_renaming("__strerror_l_136", "strerror_l"); -__static_renaming("____bzero_139", "__bzero"); +__static_renaming("__strerror_130", "strerror"); +__static_renaming("__strerror_r_134", "strerror_r"); +__static_renaming("__strerror_l_137", "strerror_l"); __static_renaming("____bzero_140", "__bzero"); -__static_renaming("__bcopy_144", "bcopy"); -__static_renaming("__bzero_147", "bzero"); -__static_renaming("__bcmp_151", "bcmp"); -__static_renaming("__index_154", "index"); -__static_renaming("__rindex_157", "rindex"); -__static_renaming("__ffs_159", "ffs"); -__static_renaming("__strcasecmp_162", "strcasecmp"); -__static_renaming("__strncasecmp_166", "strncasecmp"); -__static_renaming("__strsep_169", "strsep"); -__static_renaming("__strsignal_171", "strsignal"); -__static_renaming("____stpcpy_174", "__stpcpy"); -__static_renaming("__stpcpy_177", "stpcpy"); -__static_renaming("____stpncpy_181", "__stpncpy"); -__static_renaming("__stpncpy_185", "stpncpy"); -__static_renaming("____stpncpy_chk_214", "__stpncpy_chk"); -__static_renaming("____stpncpy_alias_218", "__stpncpy_alias"); -__static_renaming("__node_data_231", "node_data"); -__static_renaming("__pfnnid_map_232", "pfnnid_map"); -__static_renaming("__max_pfn_233", "max_pfn"); -__static_renaming("__pfn_to_nid_235", "pfn_to_nid"); -__static_renaming("__nid_241", "nid"); -__static_renaming("__pfn_valid_242", "pfn_valid"); -__static_renaming("__setup_bootmem_245", "setup_bootmem"); +__static_renaming("____bzero_141", "__bzero"); +__static_renaming("__bcopy_145", "bcopy"); +__static_renaming("__bzero_148", "bzero"); +__static_renaming("__bcmp_152", "bcmp"); +__static_renaming("__index_155", "index"); +__static_renaming("__rindex_158", "rindex"); +__static_renaming("__ffs_160", "ffs"); +__static_renaming("__strcasecmp_163", "strcasecmp"); +__static_renaming("__strncasecmp_167", "strncasecmp"); +__static_renaming("__strsep_170", "strsep"); +__static_renaming("__strsignal_172", "strsignal"); +__static_renaming("____stpcpy_175", "__stpcpy"); +__static_renaming("__stpcpy_178", "stpcpy"); +__static_renaming("____stpncpy_182", "__stpncpy"); +__static_renaming("__stpncpy_186", "stpncpy"); +__static_renaming("____stpncpy_chk_215", "__stpncpy_chk"); +__static_renaming("____stpncpy_alias_219", "__stpncpy_alias"); +__static_renaming("__node_data_232", "node_data"); +__static_renaming("__pfnnid_map_233", "pfnnid_map"); +__static_renaming("__max_pfn_234", "max_pfn"); +__static_renaming("__pfn_to_nid_236", "pfn_to_nid"); +__static_renaming("__nid_242", "nid"); +__static_renaming("__pfn_valid_243", "pfn_valid"); __static_renaming("__setup_bootmem_246", "setup_bootmem"); -__static_renaming("__pfn_252", "pfn"); -__static_renaming("__kpageflags_read_253", "kpageflags_read"); -__static_renaming("__main_257", "main"); +__static_renaming("__setup_bootmem_247", "setup_bootmem"); +__static_renaming("__pfn_253", "pfn"); +__static_renaming("__kpageflags_read_254", "kpageflags_read"); __static_renaming("__main_258", "main"); +__static_renaming("__main_259", "main"); __static_condition_renaming("__static_condition_default_27", "!(defined __STRICT_ANSI__)"); -__static_condition_renaming("__static_condition_default_189", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_196", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_204", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_205", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_209", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_222", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_225", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_229", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_230", "(defined CONFIG_NODES_SHIFT) && (defined CONFIG_DISCONTIGMEM)"); -__static_condition_renaming("__static_condition_default_236", "(defined CONFIG_DISCONTIGMEM)"); -__static_condition_renaming("__static_condition_default_237", "(defined NDEBUG) && (defined CONFIG_DISCONTIGMEM)"); -__static_condition_renaming("__static_condition_default_238", "!(defined NDEBUG) && !(defined _ASSERT_H_DECLS) && (defined CONFIG_DISCONTIGMEM)"); -__static_condition_renaming("__static_condition_default_239", "!(defined NDEBUG) && (defined _ASSERT_H_DECLS) && (defined CONFIG_DISCONTIGMEM)"); -__static_condition_renaming("__static_condition_default_243", "!(defined CONFIG_NODES_SHIFT) && (defined CONFIG_DISCONTIGMEM)"); -__static_condition_renaming("__static_condition_default_244", "(defined CONFIG_NODES_SHIFT) && (defined CONFIG_DISCONTIGMEM)"); -__static_condition_renaming("__static_condition_default_247", "!(defined CONFIG_DISCONTIGMEM)"); -__static_condition_renaming("__static_condition_default_248", "(defined CONFIG_DISCONTIGMEM)"); -__static_condition_renaming("__static_condition_default_249", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined CONFIG_DISCONTIGMEM) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined CONFIG_DISCONTIGMEM) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined CONFIG_DISCONTIGMEM) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined CONFIG_DISCONTIGMEM)"); -__static_condition_renaming("__static_condition_default_250", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined CONFIG_DISCONTIGMEM) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined CONFIG_DISCONTIGMEM) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined CONFIG_DISCONTIGMEM) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined CONFIG_DISCONTIGMEM)"); -__static_condition_renaming("__static_condition_default_251", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined CONFIG_DISCONTIGMEM)"); -__static_condition_renaming("__static_condition_default_254", "(defined CONFIG_PROC_PAGE_MONITOR)"); -__static_condition_renaming("__static_condition_default_255", "!(defined CONFIG_DISCONTIGMEM) && (defined CONFIG_PROC_PAGE_MONITOR)"); -__static_condition_renaming("__static_condition_default_256", "(defined CONFIG_DISCONTIGMEM) && (defined CONFIG_PROC_PAGE_MONITOR)"); -__static_condition_renaming("__static_condition_default_259", "!(defined CONFIG_PROC_PAGE_MONITOR)"); -__static_condition_renaming("__static_condition_default_260", "!(defined CONFIG_DISCONTIGMEM) && !(defined CONFIG_PROC_PAGE_MONITOR)"); -__static_condition_renaming("__static_condition_default_261", "(defined CONFIG_DISCONTIGMEM) && !(defined CONFIG_PROC_PAGE_MONITOR)"); -__static_condition_renaming("__static_condition_default_262", "(defined CONFIG_PROC_PAGE_MONITOR)"); -__static_condition_renaming("__static_condition_default_263", "!(defined CONFIG_DISCONTIGMEM) && (defined CONFIG_PROC_PAGE_MONITOR)"); -__static_condition_renaming("__static_condition_default_264", "(defined CONFIG_DISCONTIGMEM) && (defined CONFIG_PROC_PAGE_MONITOR)"); -__static_condition_renaming("__static_condition_default_265", "(defined __CORRECT_ISO_CPP_STRING_H_PROTO)"); - -if (__static_condition_default_265) -{ -__static_parse_error("Unable to parse"); -} +__static_condition_renaming("__static_condition_default_190", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_197", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_205", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_206", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_210", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_223", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_226", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_230", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_231", "(defined CONFIG_NODES_SHIFT) && (defined CONFIG_DISCONTIGMEM)"); +__static_condition_renaming("__static_condition_default_237", "(defined CONFIG_DISCONTIGMEM)"); +__static_condition_renaming("__static_condition_default_238", "(defined NDEBUG) && (defined CONFIG_DISCONTIGMEM)"); +__static_condition_renaming("__static_condition_default_239", "!(defined NDEBUG) && !(defined _ASSERT_H_DECLS) && (defined CONFIG_DISCONTIGMEM)"); +__static_condition_renaming("__static_condition_default_240", "!(defined NDEBUG) && (defined _ASSERT_H_DECLS) && (defined CONFIG_DISCONTIGMEM)"); +__static_condition_renaming("__static_condition_default_244", "!(defined CONFIG_NODES_SHIFT) && (defined CONFIG_DISCONTIGMEM)"); +__static_condition_renaming("__static_condition_default_245", "(defined CONFIG_NODES_SHIFT) && (defined CONFIG_DISCONTIGMEM)"); +__static_condition_renaming("__static_condition_default_248", "!(defined CONFIG_DISCONTIGMEM)"); +__static_condition_renaming("__static_condition_default_249", "(defined CONFIG_DISCONTIGMEM)"); +__static_condition_renaming("__static_condition_default_250", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined CONFIG_DISCONTIGMEM) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined CONFIG_DISCONTIGMEM) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined CONFIG_DISCONTIGMEM) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined CONFIG_DISCONTIGMEM)"); +__static_condition_renaming("__static_condition_default_251", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined CONFIG_DISCONTIGMEM) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined CONFIG_DISCONTIGMEM) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined CONFIG_DISCONTIGMEM) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined CONFIG_DISCONTIGMEM)"); +__static_condition_renaming("__static_condition_default_252", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined CONFIG_DISCONTIGMEM)"); +__static_condition_renaming("__static_condition_default_255", "(defined CONFIG_PROC_PAGE_MONITOR)"); +__static_condition_renaming("__static_condition_default_256", "!(defined CONFIG_DISCONTIGMEM) && (defined CONFIG_PROC_PAGE_MONITOR)"); +__static_condition_renaming("__static_condition_default_257", "(defined CONFIG_DISCONTIGMEM) && (defined CONFIG_PROC_PAGE_MONITOR)"); +__static_condition_renaming("__static_condition_default_260", "!(defined CONFIG_PROC_PAGE_MONITOR)"); +__static_condition_renaming("__static_condition_default_261", "!(defined CONFIG_DISCONTIGMEM) && !(defined CONFIG_PROC_PAGE_MONITOR)"); +__static_condition_renaming("__static_condition_default_262", "(defined CONFIG_DISCONTIGMEM) && !(defined CONFIG_PROC_PAGE_MONITOR)"); +__static_condition_renaming("__static_condition_default_263", "(defined CONFIG_PROC_PAGE_MONITOR)"); +__static_condition_renaming("__static_condition_default_264", "!(defined CONFIG_DISCONTIGMEM) && (defined CONFIG_PROC_PAGE_MONITOR)"); +__static_condition_renaming("__static_condition_default_265", "(defined CONFIG_DISCONTIGMEM) && (defined CONFIG_PROC_PAGE_MONITOR)"); + }; typedef long int __ptrdiff_t_14;// L143:L324 typedef long unsigned int __size_t_15;// L177:L209 @@ -189,37 +184,38 @@ extern __size_t_15 (__strxfrm_l_86) (char * (____dest_82), const char * (____ extern char * ((__strdup_88) (const char * (____s_87)));// L171:L172 extern char * ((__strndup_91) (const char * (____string_89), __size_t_15 ____n_90));// L179:L180 extern char * ((__strchr_94) (const char * (____s_92), int ____c_93));// L231:L232 -extern char * ((__strrchr_97) (const char * (____s_95), int ____c_96));// L258:L259 -extern __size_t_15 (__strcspn_100) (const char * (____s_98), const char * (____reject_99));// L280:L281 -extern __size_t_15 (__strspn_103) (const char * (____s_101), const char * (____accept_102));// L284:L285 -extern char * ((__strpbrk_106) (const char * (____s_104), const char * (____accept_105)));// L310:L311 -extern char * ((__strstr_109) (const char * (____haystack_107), const char * (____needle_108)));// L337:L338 -extern char * ((__strtok_112) (char * __restrict ____s_110, const char * __restrict ____delim_111));// L343:L344 -extern char * ((____strtok_r_116) (char * __restrict ____s_113, const char * __restrict ____delim_114, char * (* __restrict ____save_ptr_115)));// L349:L352 -extern char * ((__strtok_r_120) (char * __restrict ____s_117, const char * __restrict ____delim_118, char * (* __restrict ____save_ptr_119)));// L354:L356 -extern __size_t_15 (__strlen_122) (const char * (____s_121));// L394:L395 -extern __size_t_15 (__strlen_123) (const char * (____s_121));// L394:L395 -extern __size_t_15 (__strnlen_126) (const char * (____string_124), __size_t_15 ____maxlen_125);// L401:L402 -extern char * ((__strerror_128) (int ____errnum_127));// L408 -extern char * ((__strerror_129) (int ____errnum_127));// L408 -extern int (__strerror_r_133) (int ____errnum_130, char * (____buf_131), __size_t_15 ____buflen_132);// L422:L424 -extern char * ((__strerror_l_136) (int ____errnum_134, ____locale_t_76 ____l_135));// L440 -extern void (____bzero_139) (void * (____s_137), __size_t_15 ____n_138);// L446 -extern void (____bzero_140) (void * (____s_137), __size_t_15 ____n_138);// L446 -extern void (__bcopy_144) (const void * (____src_141), void * (____dest_142), __size_t_15 ____n_143);// L450:L451 -extern void (__bzero_147) (void * (____s_145), __size_t_15 ____n_146);// L454 -extern int (__bcmp_151) (const void * (____s1_148), const void * (____s2_149), __size_t_15 ____n_150);// L457:L458 -extern char * ((__index_154) (const char * (____s_152), int ____c_153));// L484:L485 -extern char * ((__rindex_157) (const char * (____s_155), int ____c_156));// L512:L513 -extern int (__ffs_159) (int ____i_158);// L518 -extern int (__strcasecmp_162) (const char * (____s1_160), const char * (____s2_161));// L529:L530 -extern int (__strncasecmp_166) (const char * (____s1_163), const char * (____s2_164), __size_t_15 ____n_165);// L533:L534 -extern char * ((__strsep_169) (char * (* __restrict ____stringp_167), const char * __restrict ____delim_168));// L552:L554 -extern char * ((__strsignal_171) (int ____sig_170));// L559 -extern char * ((____stpcpy_174) (char * __restrict ____dest_172, const char * __restrict ____src_173));// L562:L563 -extern char * ((__stpcpy_177) (char * __restrict ____dest_175, const char * __restrict ____src_176));// L564:L565 -extern char * ((____stpncpy_181) (char * __restrict ____dest_178, const char * __restrict ____src_179, __size_t_15 ____n_180));// L569:L571 -extern char * ((__stpncpy_185) (char * __restrict ____dest_182, const char * __restrict ____src_183, __size_t_15 ____n_184));// L572:L574 +extern char * ((__strchr_95) (const char * (____s_92), int ____c_93));// L231:L232 +extern char * ((__strrchr_98) (const char * (____s_96), int ____c_97));// L258:L259 +extern __size_t_15 (__strcspn_101) (const char * (____s_99), const char * (____reject_100));// L280:L281 +extern __size_t_15 (__strspn_104) (const char * (____s_102), const char * (____accept_103));// L284:L285 +extern char * ((__strpbrk_107) (const char * (____s_105), const char * (____accept_106)));// L310:L311 +extern char * ((__strstr_110) (const char * (____haystack_108), const char * (____needle_109)));// L337:L338 +extern char * ((__strtok_113) (char * __restrict ____s_111, const char * __restrict ____delim_112));// L343:L344 +extern char * ((____strtok_r_117) (char * __restrict ____s_114, const char * __restrict ____delim_115, char * (* __restrict ____save_ptr_116)));// L349:L352 +extern char * ((__strtok_r_121) (char * __restrict ____s_118, const char * __restrict ____delim_119, char * (* __restrict ____save_ptr_120)));// L354:L356 +extern __size_t_15 (__strlen_123) (const char * (____s_122));// L394:L395 +extern __size_t_15 (__strlen_124) (const char * (____s_122));// L394:L395 +extern __size_t_15 (__strnlen_127) (const char * (____string_125), __size_t_15 ____maxlen_126);// L401:L402 +extern char * ((__strerror_129) (int ____errnum_128));// L408 +extern char * ((__strerror_130) (int ____errnum_128));// L408 +extern int (__strerror_r_134) (int ____errnum_131, char * (____buf_132), __size_t_15 ____buflen_133);// L422:L424 +extern char * ((__strerror_l_137) (int ____errnum_135, ____locale_t_76 ____l_136));// L440 +extern void (____bzero_140) (void * (____s_138), __size_t_15 ____n_139);// L446 +extern void (____bzero_141) (void * (____s_138), __size_t_15 ____n_139);// L446 +extern void (__bcopy_145) (const void * (____src_142), void * (____dest_143), __size_t_15 ____n_144);// L450:L451 +extern void (__bzero_148) (void * (____s_146), __size_t_15 ____n_147);// L454 +extern int (__bcmp_152) (const void * (____s1_149), const void * (____s2_150), __size_t_15 ____n_151);// L457:L458 +extern char * ((__index_155) (const char * (____s_153), int ____c_154));// L484:L485 +extern char * ((__rindex_158) (const char * (____s_156), int ____c_157));// L512:L513 +extern int (__ffs_160) (int ____i_159);// L518 +extern int (__strcasecmp_163) (const char * (____s1_161), const char * (____s2_162));// L529:L530 +extern int (__strncasecmp_167) (const char * (____s1_164), const char * (____s2_165), __size_t_15 ____n_166);// L533:L534 +extern char * ((__strsep_170) (char * (* __restrict ____stringp_168), const char * __restrict ____delim_169));// L552:L554 +extern char * ((__strsignal_172) (int ____sig_171));// L559 +extern char * ((____stpcpy_175) (char * __restrict ____dest_173, const char * __restrict ____src_174));// L562:L563 +extern char * ((__stpcpy_178) (char * __restrict ____dest_176, const char * __restrict ____src_177));// L564:L565 +extern char * ((____stpncpy_182) (char * __restrict ____dest_179, const char * __restrict ____src_180, __size_t_15 ____n_181));// L569:L571 +extern char * ((__stpncpy_186) (char * __restrict ____dest_183, const char * __restrict ____src_184, __size_t_15 ____n_185));// L572:L574 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ @@ -227,56 +223,56 @@ extern char * ((__stpncpy_185) (char * __restrict ____dest_182, const char * /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern char * ((____stpncpy_chk_214) (char * (____dest_210), const char * (____src_211), __size_t_15 ____n_212, __size_t_15 ____destlen_213));// L130:L131 -extern char * ((____stpncpy_alias_218) (char * (____dest_215), const char * (____src_216), __size_t_15 ____n_217));// L132:L133 +extern char * ((____stpncpy_chk_215) (char * (____dest_211), const char * (____src_212), __size_t_15 ____n_213, __size_t_15 ____destlen_214));// L130:L131 +extern char * ((____stpncpy_alias_219) (char * (____dest_216), const char * (____src_217), __size_t_15 ____n_218));// L132:L133 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -int __node_data_231[( 1 << 0 )];// L19 -unsigned char __pfnnid_map_232[512];// L24 -unsigned long __max_pfn_233= 512;// L25 -int (__pfn_to_nid_235) (unsigned int __pfn_234) { +int __node_data_232[( 1 << 0 )];// L19 +unsigned char __pfnnid_map_233[512];// L24 +unsigned long __max_pfn_234= 512;// L25 +int (__pfn_to_nid_236) (unsigned int __pfn_235) { -if (__static_condition_default_236) { +if (__static_condition_default_237) { { { -if (__static_condition_default_237) { -( ( void ) ( 0 ) ) ; // L29:L50 -} if (__static_condition_default_238) { -( ( __pfn_234 < 512 ) ? ( void ) ( 0 ) : ____assert_fail_4 ("pfn < PFNNID_MAP_MAX","/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/91ea8207168.c",29, __PRETTY_FUNCTION__ ) ) ; // L29:L91 +( ( void ) ( 0 ) ) ; // L29:L50 } if (__static_condition_default_239) { +( ( __pfn_235 < 512 ) ? ( void ) ( 0 ) : ____assert_fail_4 ("pfn < PFNNID_MAP_MAX","/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/91ea8207168.c",29, __PRETTY_FUNCTION__ ) ) ; // L29:L91 +} +if (__static_condition_default_240) { __static_type_error("type error") ; // L29:L91 } -return ( int ) __pfnnid_map_232 [ __pfn_234 ] ;// L30 +return ( int ) __pfnnid_map_233 [ __pfn_235 ] ;// L30 } } } } -int (__pfn_valid_242) (unsigned int __pfn_240) { +int (__pfn_valid_243) (unsigned int __pfn_241) { -if (__static_condition_default_236) { +if (__static_condition_default_237) { { { -int __nid_241= __pfn_to_nid_235 ( __pfn_240 );// L35 +int __nid_242= __pfn_to_nid_236 ( __pfn_241 );// L35 -if ( __nid_241 >= 0 )// L37 +if ( __nid_242 >= 0 )// L37 { -if (__static_condition_default_243) { -return ( __pfn_240 < ( __node_data_231 [ __nid_241 ] ) ) ;// L38 -} if (__static_condition_default_244) { +return ( __pfn_241 < ( __node_data_232 [ __nid_242 ] ) ) ;// L38 +} +if (__static_condition_default_245) { __static_type_error("invalid type found in return expression"); } } @@ -287,10 +283,10 @@ return 0 ;// L39 } } -void (__setup_bootmem_245) (void ) { +void (__setup_bootmem_246) (void ) { { -if (__static_condition_default_247) { +if (__static_condition_default_248) { { { @@ -304,23 +300,23 @@ if (__static_condition_default_247) { } }} -void (__setup_bootmem_246) (void ) { +void (__setup_bootmem_247) (void ) { { -if (__static_condition_default_248) { +if (__static_condition_default_249) { { { -if (__static_condition_default_249) { - __memset_31 ( __pfnnid_map_232 ,0xff,sizeof(( __pfnnid_map_232 ))) ; // L52 -} if (__static_condition_default_250) { - __memset_32 ( __pfnnid_map_232 ,0xff,sizeof(( __pfnnid_map_232 ))) ; // L52 + __memset_31 ( __pfnnid_map_233 ,0xff,sizeof(( __pfnnid_map_233 ))) ; // L52 } if (__static_condition_default_251) { + __memset_32 ( __pfnnid_map_233 ,0xff,sizeof(( __pfnnid_map_233 ))) ; // L52 +} +if (__static_condition_default_252) { __static_type_error("type error") ; // L52 } } @@ -330,19 +326,19 @@ __static_type_error("type error") ; // L52 } }} -int (__kpageflags_read_253) () { +int (__kpageflags_read_254) () { -if (__static_condition_default_254) { +if (__static_condition_default_255) { { { -unsigned int __pfn_252= 0;// L59 +unsigned int __pfn_253= 0;// L59 -if (__static_condition_default_255) { -for ( ; __pfn_252 < 0 ; __pfn_252 ++ )// L61 +if (__static_condition_default_256) { +for ( ; __pfn_253 < 0 ; __pfn_253 ++ )// L61 { { @@ -358,8 +354,8 @@ if ( ( 1 ) )// L62 } } } -if (__static_condition_default_256) { -for ( ; __pfn_252 < __max_pfn_233 ; __pfn_252 ++ )// L61 +if (__static_condition_default_257) { +for ( ; __pfn_253 < __max_pfn_234 ; __pfn_253 ++ )// L61 { { @@ -367,7 +363,7 @@ for ( ; __pfn_252 < __max_pfn_233 ; __pfn_252 ++ )// L61 -if ( __pfn_valid_242 ( __pfn_252 ) )// L62 +if ( __pfn_valid_243 ( __pfn_253 ) )// L62 { ; // L63 } @@ -382,21 +378,21 @@ return 0 ;// L66 } } -int (__main_257) () { +int (__main_258) () { -if (__static_condition_default_259) { +if (__static_condition_default_260) { { { -if (__static_condition_default_260) { - __setup_bootmem_245 ( ) ; // L72 -} if (__static_condition_default_261) { __setup_bootmem_246 ( ) ; // L72 } +if (__static_condition_default_262) { + __setup_bootmem_247 ( ) ; // L72 +} return 0 ;// L76 } } @@ -404,22 +400,22 @@ return 0 ;// L76 } } -int (__main_258) () { +int (__main_259) () { -if (__static_condition_default_262) { +if (__static_condition_default_263) { { { -if (__static_condition_default_263) { - __setup_bootmem_245 ( ) ; // L72 -} if (__static_condition_default_264) { __setup_bootmem_246 ( ) ; // L72 } - __kpageflags_read_253 ( ) ; // L74 +if (__static_condition_default_265) { + __setup_bootmem_247 ( ) ; // L72 +} + __kpageflags_read_254 ( ) ; // L74 return 0 ;// L76 } } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.desugared.c index 30d10e1f..ece25d97 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.desugared.c @@ -7,44 +7,44 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); +extern const bool __static_condition_default_262; +extern const bool __static_condition_default_271; extern const bool __static_condition_default_259; -extern const bool __static_condition_default_240; +extern const bool __static_condition_default_230; +extern const bool __static_condition_default_253; extern const bool __static_condition_default_261; -extern const bool __static_condition_default_190; -extern const bool __static_condition_default_197; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_242; -extern const bool __static_condition_default_245; -extern const bool __static_condition_default_260; -extern const bool __static_condition_default_273; -extern const bool __static_condition_default_205; -extern const bool __static_condition_default_206; +extern const bool __static_condition_default_238; extern const bool __static_condition_default_258; -extern const bool __static_condition_default_269; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_255; +extern const bool __static_condition_default_260; +extern const bool __static_condition_default_263; extern const bool __static_condition_default_266; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_272; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_226; +extern const bool __static_condition_default_240; +extern const bool __static_condition_default_28; +extern const bool __static_condition_default_205; +extern const bool __static_condition_default_246; extern const bool __static_condition_default_265; -extern const bool __static_condition_default_250; +extern const bool __static_condition_default_264; extern const bool __static_condition_default_254; +extern const bool __static_condition_default_272; +extern const bool __static_condition_default_190; extern const bool __static_condition_default_239; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_243; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_19; -extern const bool __static_condition_default_262; -extern const bool __static_condition_default_28; +extern const bool __static_condition_default_226; +extern const bool __static_condition_default_242; extern const bool __static_condition_default_244; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_19; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_243; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_206; extern const bool __static_condition_default_210; -extern const bool __static_condition_default_230; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_246; +extern const bool __static_condition_default_269; +extern const bool __static_condition_default_273; +extern const bool __static_condition_default_197; +extern const bool __static_condition_default_245; +extern const bool __static_condition_default_255; void __static_initializer_default() { __static_renaming("____assert_fail_4", "__assert_fail"); __static_renaming("____assert_perror_fail_9", "__assert_perror_fail"); @@ -157,8 +157,7 @@ __static_condition_renaming("__static_condition_default_271", "!(defined CONFIG_ __static_condition_renaming("__static_condition_default_272", "(defined CONFIG_PROC_PAGE_MONITOR)"); __static_condition_renaming("__static_condition_default_273", "(defined CONFIG_DISCONTIGMEM) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO)"); -if (__static_condition_default_273) -{ +if (__static_condition_default_273) { __static_parse_error("Unable to parse"); } }; diff --git a/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.desugared.clangres index 309f2384..f98fff72 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.desugared.clangres @@ -1,7 +1,7 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.desugared.c:284:15: warning: The left operand of '!=' is a garbage value [core.UndefinedBinaryOperatorResult] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.desugared.c:283:15: warning: The left operand of '!=' is a garbage value [core.UndefinedBinaryOperatorResult] ( ( __r_236 != 0xff ) ? ( void ) ( 0 ) : ____assert_fail_4 ("r != 0xff","/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.c",19, __PRETTY_FUNCTION__ ) ) ; // L19:L91 ~~~~~~~ ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.desugared.c:289:1: warning: Undefined or garbage value returned to caller [core.uninitialized.UndefReturn] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.desugared.c:288:1: warning: Undefined or garbage value returned to caller [core.uninitialized.UndefReturn] return ( int ) __r_236 ;// L21 ^~~~~~~~~~~~~~~~~~~~~~~~~ 2 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.desugared.inferres index c30b7acc..95a373fc 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.desugared.inferres +++ b/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.desugared.inferres @@ -1,21 +1,21 @@ -LINUX/ae249b5fa27.desugared.c:284: error: Uninitialized Value +LINUX/ae249b5fa27.desugared.c:283: error: Uninitialized Value The value read from __r_236 was never initialized. - 282. } - 283. if (__static_condition_default_245) { - 284. ( ( __r_236 != 0xff ) ? ( void ) ( 0 ) : ____assert_fail_4 ("r != 0xff","/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.c",19, __PRETTY_FUNCTION__ ) ) ; // L19:L91 + 281. } + 282. if (__static_condition_default_245) { + 283. ( ( __r_236 != 0xff ) ? ( void ) ( 0 ) : ____assert_fail_4 ("r != 0xff","/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.c",19, __PRETTY_FUNCTION__ ) ) ; // L19:L91 ^ - 285. } - 286. if (__static_condition_default_246) { + 284. } + 285. if (__static_condition_default_246) { -LINUX/ae249b5fa27.desugared.c:289: error: Uninitialized Value +LINUX/ae249b5fa27.desugared.c:288: error: Uninitialized Value The value read from __r_236 was never initialized. - 287. __static_type_error("type error") ; // L19:L91 - 288. } - 289. return ( int ) __r_236 ;// L21 + 286. __static_type_error("type error") ; // L19:L91 + 287. } + 288. return ( int ) __r_236 ;// L21 ^ + 289. } 290. } - 291. } Found 2 issues diff --git a/fonda/cpp_testsuite/varBugs/LINUX/bc8cec0dff0.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/bc8cec0dff0.desugared.c index 048aedb1..12533c31 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/bc8cec0dff0.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/bc8cec0dff0.desugared.c @@ -7,10 +7,10 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_9; -extern const bool __static_condition_default_12; extern const bool __static_condition_default_10; extern const bool __static_condition_default_16; +extern const bool __static_condition_default_9; +extern const bool __static_condition_default_12; extern const bool __static_condition_default_15; void __static_initializer_default() { __static_renaming("__size_t_0", "size_t"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/c708c57e247.clangres b/fonda/cpp_testsuite/varBugs/LINUX/c708c57e247.clangres index 58816526..e69de29b 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/c708c57e247.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/c708c57e247.clangres @@ -1,4 +0,0 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/c708c57e247.c:18:28: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] - *((__u64 *)parm_block) ^= *((__u64 *)buf+i*8); // ERROR - ^ ~~~~~~~~~~~~~~~~~~~ -1 warning generated. diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d530db0db90.clangres b/fonda/cpp_testsuite/varBugs/LINUX/d530db0db90.clangres index a7186cf9..e69de29b 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/d530db0db90.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/d530db0db90.clangres @@ -1,4 +0,0 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/d530db0db90.c:18:25: error: invalid operands to binary expression ('void' and 'int') - if (*VORTEX_PCI(vp) < 0) // ERROR - ~~~~~~~~~~~~~~~ ^ ~ -1 error generated. diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d530db0db90.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/d530db0db90.desugared.c index 6d5ffd88..d28baff0 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/d530db0db90.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/d530db0db90.desugared.c @@ -7,68 +7,68 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_261; +extern const bool __static_condition_default_811; extern const bool __static_condition_default_285; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_423; -extern const bool __static_condition_default_299; +extern const bool __static_condition_default_379; +extern const bool __static_condition_default_420; +extern const bool __static_condition_default_296; extern const bool __static_condition_default_604; -extern const bool __static_condition_default_394; -extern const bool __static_condition_default_243; -extern const bool __static_condition_default_804; -extern const bool __static_condition_default_255; +extern const bool __static_condition_default_279; +extern const bool __static_condition_default_378; +extern const bool __static_condition_default_361; +extern const bool __static_condition_default_623; extern const bool __static_condition_default_60; -extern const bool __static_condition_default_595; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_810; +extern const bool __static_condition_default_579; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_349; extern const bool __static_condition_default_293; -extern const bool __static_condition_default_237; -extern const bool __static_condition_default_378; -extern const bool __static_condition_default_811; -extern const bool __static_condition_default_594; -extern const bool __static_condition_default_803; +extern const bool __static_condition_default_252; +extern const bool __static_condition_default_804; +extern const bool __static_condition_default_308; +extern const bool __static_condition_default_243; +extern const bool __static_condition_default_270; extern const bool __static_condition_default_273; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_352; extern const bool __static_condition_default_629; -extern const bool __static_condition_default_279; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_252; -extern const bool __static_condition_default_395; +extern const bool __static_condition_default_240; +extern const bool __static_condition_default_595; +extern const bool __static_condition_default_305; +extern const bool __static_condition_default_237; extern const bool __static_condition_default_805; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_234; +extern const bool __static_condition_default_276; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_394; +extern const bool __static_condition_default_594; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_302; +extern const bool __static_condition_default_423; +extern const bool __static_condition_default_352; extern const bool __static_condition_default_417; -extern const bool __static_condition_default_420; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_579; -extern const bool __static_condition_default_361; -extern const bool __static_condition_default_308; -extern const bool __static_condition_default_240; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_349; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_627; +extern const bool __static_condition_default_414; +extern const bool __static_condition_default_581; extern const bool __static_condition_default_429; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_288; extern const bool __static_condition_default_806; +extern const bool __static_condition_default_803; extern const bool __static_condition_default_246; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_810; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_379; -extern const bool __static_condition_default_414; -extern const bool __static_condition_default_581; -extern const bool __static_condition_default_627; +extern const bool __static_condition_default_261; extern const bool __static_condition_default_67; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_215; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_302; -extern const bool __static_condition_default_234; -extern const bool __static_condition_default_426; extern const bool __static_condition_default_325; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_276; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_305; -extern const bool __static_condition_default_282; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_426; +extern const bool __static_condition_default_215; +extern const bool __static_condition_default_264; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -522,8 +522,7 @@ __static_condition_renaming("__static_condition_default_809", "!(defined CONFIG_ __static_condition_renaming("__static_condition_default_810", "(defined CONFIG_VORTEX)"); __static_condition_renaming("__static_condition_default_811", "(defined CONFIG_VORTEX) && !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc)"); -if (__static_condition_default_811) -{ +if (__static_condition_default_811) { __static_parse_error("Unable to parse"); } }; diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.clangres b/fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.clangres index e69de29b..54a04e27 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.clangres @@ -0,0 +1,5 @@ +In file included from :342: +:2:9: error: 'defined' cannot be used as a macro name +#define defined 1 + ^ +1 error generated. diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.desugared.c index 61ffcd83..f13aba4a 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.desugared.c @@ -7,76 +7,27 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_302; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_260; -extern const bool __static_condition_default_821; -extern const bool __static_condition_default_322; -extern const bool __static_condition_default_437; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_443; -extern const bool __static_condition_default_339; -extern const bool __static_condition_default_266; -extern const bool __static_condition_default_319; -extern const bool __static_condition_default_616; -extern const bool __static_condition_default_287; -extern const bool __static_condition_default_251; -extern const bool __static_condition_default_595; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_440; -extern const bool __static_condition_default_393; -extern const bool __static_condition_default_831; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_366; -extern const bool __static_condition_default_618; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_434; -extern const bool __static_condition_default_816; -extern const bool __static_condition_default_833; -extern const bool __static_condition_default_643; -extern const bool __static_condition_default_316; -extern const bool __static_condition_default_310; -extern const bool __static_condition_default_281; -extern const bool __static_condition_default_290; -extern const bool __static_condition_default_428; -extern const bool __static_condition_default_392; -extern const bool __static_condition_default_641; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_832; -extern const bool __static_condition_default_278; extern const bool __static_condition_default_269; -extern const bool __static_condition_default_74; +extern const bool __static_condition_default_169; extern const bool __static_condition_default_275; -extern const bool __static_condition_default_820; -extern const bool __static_condition_default_313; +extern const bool __static_condition_default_144; +extern const bool __static_condition_default_146; +extern const bool __static_condition_default_136; +extern const bool __static_condition_default_281; +extern const bool __static_condition_default_121; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_137; extern const bool __static_condition_default_272; -extern const bool __static_condition_default_635; -extern const bool __static_condition_default_824; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_609; -extern const bool __static_condition_default_814; -extern const bool __static_condition_default_815; -extern const bool __static_condition_default_750; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_446; -extern const bool __static_condition_default_248; -extern const bool __static_condition_default_81; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_822; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_431; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_307; -extern const bool __static_condition_default_409; -extern const bool __static_condition_default_818; -extern const bool __static_condition_default_826; -extern const bool __static_condition_default_254; -extern const bool __static_condition_default_593; -extern const bool __static_condition_default_408; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_165; +extern const bool __static_condition_default_163; +extern const bool __static_condition_default_276; +extern const bool __static_condition_default_171; +extern const bool __static_condition_default_204; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_268; +extern const bool __static_condition_default_282; void __static_initializer_default() { __static_renaming("____assert_fail_4", "__assert_fail"); __static_renaming("____assert_perror_fail_9", "__assert_perror_fail"); @@ -84,783 +35,139 @@ __static_renaming("____assert_13", "__assert"); __static_renaming("__ptrdiff_t_14", "ptrdiff_t"); __static_renaming("__size_t_15", "size_t"); __static_renaming("__wchar_t_16", "wchar_t"); -__static_renaming("__idtype_t_22", "idtype_t"); -__static_renaming("____u_char_23", "__u_char"); -__static_renaming("____u_short_24", "__u_short"); -__static_renaming("____u_int_25", "__u_int"); -__static_renaming("____u_long_26", "__u_long"); -__static_renaming("____int8_t_27", "__int8_t"); -__static_renaming("____uint8_t_28", "__uint8_t"); -__static_renaming("____int16_t_29", "__int16_t"); -__static_renaming("____uint16_t_30", "__uint16_t"); -__static_renaming("____int32_t_31", "__int32_t"); -__static_renaming("____uint32_t_32", "__uint32_t"); -__static_renaming("____int64_t_33", "__int64_t"); -__static_renaming("____uint64_t_34", "__uint64_t"); -__static_renaming("____quad_t_35", "__quad_t"); -__static_renaming("____u_quad_t_36", "__u_quad_t"); -__static_renaming("____dev_t_37", "__dev_t"); -__static_renaming("____uid_t_38", "__uid_t"); -__static_renaming("____gid_t_39", "__gid_t"); -__static_renaming("____ino_t_40", "__ino_t"); -__static_renaming("____ino64_t_41", "__ino64_t"); -__static_renaming("____mode_t_42", "__mode_t"); -__static_renaming("____nlink_t_43", "__nlink_t"); -__static_renaming("____off_t_44", "__off_t"); -__static_renaming("____off64_t_45", "__off64_t"); -__static_renaming("____pid_t_46", "__pid_t"); -__static_renaming("____fsid_t_50", "__fsid_t"); -__static_renaming("____clock_t_51", "__clock_t"); -__static_renaming("____rlim_t_52", "__rlim_t"); -__static_renaming("____rlim64_t_53", "__rlim64_t"); -__static_renaming("____id_t_54", "__id_t"); -__static_renaming("____time_t_55", "__time_t"); -__static_renaming("____useconds_t_56", "__useconds_t"); -__static_renaming("____suseconds_t_57", "__suseconds_t"); -__static_renaming("____daddr_t_58", "__daddr_t"); -__static_renaming("____key_t_59", "__key_t"); -__static_renaming("____clockid_t_60", "__clockid_t"); -__static_renaming("____timer_t_61", "__timer_t"); -__static_renaming("____blksize_t_62", "__blksize_t"); -__static_renaming("____blkcnt_t_63", "__blkcnt_t"); -__static_renaming("____blkcnt64_t_64", "__blkcnt64_t"); -__static_renaming("____fsblkcnt_t_65", "__fsblkcnt_t"); -__static_renaming("____fsblkcnt64_t_66", "__fsblkcnt64_t"); -__static_renaming("____fsfilcnt_t_67", "__fsfilcnt_t"); -__static_renaming("____fsfilcnt64_t_68", "__fsfilcnt64_t"); -__static_renaming("____fsword_t_69", "__fsword_t"); -__static_renaming("____ssize_t_70", "__ssize_t"); -__static_renaming("____syscall_slong_t_71", "__syscall_slong_t"); -__static_renaming("____syscall_ulong_t_72", "__syscall_ulong_t"); -__static_renaming("____loff_t_73", "__loff_t"); -__static_renaming("____qaddr_t_75", "__qaddr_t"); -__static_renaming("____caddr_t_76", "__caddr_t"); -__static_renaming("____intptr_t_77", "__intptr_t"); -__static_renaming("____socklen_t_78", "__socklen_t"); -__static_renaming("____bswap_32_80", "__bswap_32"); -__static_renaming("____bswap_64_83", "__bswap_64"); -__static_renaming("____WAIT_STATUS_103", "__WAIT_STATUS"); -__static_renaming("__div_t_108", "div_t"); -__static_renaming("__ldiv_t_113", "ldiv_t"); -__static_renaming("__lldiv_t_118", "lldiv_t"); -__static_renaming("____ctype_get_mb_cur_max_119", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_120", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_121", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_122", "__ctype_get_mb_cur_max"); -__static_renaming("__atof_124", "atof"); -__static_renaming("__atof_125", "atof"); -__static_renaming("__atoi_127", "atoi"); -__static_renaming("__atoi_128", "atoi"); -__static_renaming("__atol_130", "atol"); -__static_renaming("__atol_131", "atol"); -__static_renaming("__atoll_133", "atoll"); -__static_renaming("__atoll_134", "atoll"); -__static_renaming("__strtod_137", "strtod"); -__static_renaming("__strtof_140", "strtof"); -__static_renaming("__strtold_143", "strtold"); -__static_renaming("__strtol_147", "strtol"); -__static_renaming("__strtoul_151", "strtoul"); -__static_renaming("__strtoq_155", "strtoq"); -__static_renaming("__strtouq_159", "strtouq"); -__static_renaming("__strtoll_163", "strtoll"); -__static_renaming("__strtoll_164", "strtoll"); -__static_renaming("__strtoull_168", "strtoull"); -__static_renaming("__l64a_173", "l64a"); -__static_renaming("__l64a_174", "l64a"); -__static_renaming("__a64l_176", "a64l"); -__static_renaming("__a64l_177", "a64l"); -__static_renaming("____u_char_178", "__u_char"); -__static_renaming("____u_short_179", "__u_short"); -__static_renaming("____u_int_180", "__u_int"); -__static_renaming("____u_long_181", "__u_long"); -__static_renaming("____int8_t_182", "__int8_t"); -__static_renaming("____uint8_t_183", "__uint8_t"); -__static_renaming("____int16_t_184", "__int16_t"); -__static_renaming("____uint16_t_185", "__uint16_t"); -__static_renaming("____int32_t_186", "__int32_t"); -__static_renaming("____uint32_t_187", "__uint32_t"); -__static_renaming("____int64_t_188", "__int64_t"); -__static_renaming("____uint64_t_189", "__uint64_t"); -__static_renaming("____quad_t_190", "__quad_t"); -__static_renaming("____u_quad_t_191", "__u_quad_t"); -__static_renaming("____dev_t_192", "__dev_t"); -__static_renaming("____uid_t_193", "__uid_t"); -__static_renaming("____gid_t_194", "__gid_t"); -__static_renaming("____ino_t_195", "__ino_t"); -__static_renaming("____ino64_t_196", "__ino64_t"); -__static_renaming("____mode_t_197", "__mode_t"); -__static_renaming("____nlink_t_198", "__nlink_t"); -__static_renaming("____off_t_199", "__off_t"); -__static_renaming("____off64_t_200", "__off64_t"); -__static_renaming("____pid_t_201", "__pid_t"); -__static_renaming("____fsid_t_205", "__fsid_t"); -__static_renaming("____clock_t_206", "__clock_t"); -__static_renaming("____rlim_t_207", "__rlim_t"); -__static_renaming("____rlim64_t_208", "__rlim64_t"); -__static_renaming("____id_t_209", "__id_t"); -__static_renaming("____time_t_210", "__time_t"); -__static_renaming("____useconds_t_211", "__useconds_t"); -__static_renaming("____suseconds_t_212", "__suseconds_t"); -__static_renaming("____daddr_t_213", "__daddr_t"); -__static_renaming("____key_t_214", "__key_t"); -__static_renaming("____clockid_t_215", "__clockid_t"); -__static_renaming("____timer_t_216", "__timer_t"); -__static_renaming("____blksize_t_217", "__blksize_t"); -__static_renaming("____blkcnt_t_218", "__blkcnt_t"); -__static_renaming("____blkcnt64_t_219", "__blkcnt64_t"); -__static_renaming("____fsblkcnt_t_220", "__fsblkcnt_t"); -__static_renaming("____fsblkcnt64_t_221", "__fsblkcnt64_t"); -__static_renaming("____fsfilcnt_t_222", "__fsfilcnt_t"); -__static_renaming("____fsfilcnt64_t_223", "__fsfilcnt64_t"); -__static_renaming("____fsword_t_224", "__fsword_t"); -__static_renaming("____ssize_t_225", "__ssize_t"); -__static_renaming("____syscall_slong_t_226", "__syscall_slong_t"); -__static_renaming("____syscall_ulong_t_227", "__syscall_ulong_t"); -__static_renaming("____loff_t_228", "__loff_t"); -__static_renaming("____qaddr_t_230", "__qaddr_t"); -__static_renaming("____caddr_t_231", "__caddr_t"); -__static_renaming("____intptr_t_232", "__intptr_t"); -__static_renaming("____socklen_t_233", "__socklen_t"); -__static_renaming("__u_char_234", "u_char"); -__static_renaming("__u_char_235", "u_char"); -__static_renaming("__u_short_236", "u_short"); -__static_renaming("__u_short_237", "u_short"); -__static_renaming("__u_int_238", "u_int"); -__static_renaming("__u_int_239", "u_int"); -__static_renaming("__u_long_240", "u_long"); -__static_renaming("__u_long_241", "u_long"); -__static_renaming("__quad_t_242", "quad_t"); -__static_renaming("__quad_t_243", "quad_t"); -__static_renaming("__u_quad_t_244", "u_quad_t"); -__static_renaming("__u_quad_t_245", "u_quad_t"); -__static_renaming("__fsid_t_246", "fsid_t"); -__static_renaming("__fsid_t_247", "fsid_t"); -__static_renaming("__loff_t_249", "loff_t"); -__static_renaming("__loff_t_250", "loff_t"); -__static_renaming("__loff_t_252", "loff_t"); -__static_renaming("__loff_t_253", "loff_t"); -__static_renaming("__ino_t_255", "ino_t"); -__static_renaming("__ino_t_256", "ino_t"); -__static_renaming("__ino_t_258", "ino_t"); -__static_renaming("__ino_t_259", "ino_t"); -__static_renaming("__dev_t_261", "dev_t"); -__static_renaming("__dev_t_262", "dev_t"); -__static_renaming("__gid_t_264", "gid_t"); -__static_renaming("__gid_t_265", "gid_t"); -__static_renaming("__gid_t_267", "gid_t"); -__static_renaming("__gid_t_268", "gid_t"); -__static_renaming("__mode_t_270", "mode_t"); -__static_renaming("__mode_t_271", "mode_t"); -__static_renaming("__nlink_t_273", "nlink_t"); -__static_renaming("__nlink_t_274", "nlink_t"); -__static_renaming("__uid_t_276", "uid_t"); -__static_renaming("__uid_t_277", "uid_t"); -__static_renaming("__uid_t_279", "uid_t"); -__static_renaming("__uid_t_280", "uid_t"); -__static_renaming("__off_t_282", "off_t"); -__static_renaming("__off_t_283", "off_t"); -__static_renaming("__off_t_285", "off_t"); -__static_renaming("__off_t_286", "off_t"); -__static_renaming("__pid_t_288", "pid_t"); -__static_renaming("__pid_t_289", "pid_t"); -__static_renaming("__pid_t_291", "pid_t"); -__static_renaming("__pid_t_292", "pid_t"); -__static_renaming("__id_t_294", "id_t"); -__static_renaming("__id_t_295", "id_t"); -__static_renaming("__ssize_t_297", "ssize_t"); -__static_renaming("__ssize_t_298", "ssize_t"); -__static_renaming("__daddr_t_300", "daddr_t"); -__static_renaming("__daddr_t_301", "daddr_t"); -__static_renaming("__caddr_t_303", "caddr_t"); -__static_renaming("__caddr_t_304", "caddr_t"); -__static_renaming("__key_t_305", "key_t"); -__static_renaming("__key_t_306", "key_t"); -__static_renaming("__key_t_308", "key_t"); -__static_renaming("__key_t_309", "key_t"); -__static_renaming("__clock_t_311", "clock_t"); -__static_renaming("__clock_t_312", "clock_t"); -__static_renaming("__time_t_314", "time_t"); -__static_renaming("__time_t_315", "time_t"); -__static_renaming("__clockid_t_317", "clockid_t"); -__static_renaming("__clockid_t_318", "clockid_t"); -__static_renaming("__timer_t_320", "timer_t"); -__static_renaming("__timer_t_321", "timer_t"); -__static_renaming("__ulong_323", "ulong"); -__static_renaming("__ulong_324", "ulong"); -__static_renaming("__ulong_325", "ulong"); -__static_renaming("__ushort_326", "ushort"); -__static_renaming("__uint_327", "uint"); -__static_renaming("__int8_t_328", "int8_t"); -__static_renaming("__int16_t_329", "int16_t"); -__static_renaming("__int32_t_330", "int32_t"); -__static_renaming("__int64_t_331", "int64_t"); -__static_renaming("__u_int8_t_332", "u_int8_t"); -__static_renaming("__u_int16_t_333", "u_int16_t"); -__static_renaming("__u_int32_t_334", "u_int32_t"); -__static_renaming("__u_int64_t_335", "u_int64_t"); -__static_renaming("__register_t_336", "register_t"); -__static_renaming("____bswap_32_338", "__bswap_32"); -__static_renaming("____bswap_64_341", "__bswap_64"); -__static_renaming("____sig_atomic_t_342", "__sig_atomic_t"); -__static_renaming("____sigset_t_346", "__sigset_t"); -__static_renaming("__sigset_t_347", "sigset_t"); -__static_renaming("__suseconds_t_364", "suseconds_t"); -__static_renaming("__suseconds_t_365", "suseconds_t"); -__static_renaming("____fd_mask_367", "__fd_mask"); -__static_renaming("____fd_mask_368", "__fd_mask"); -__static_renaming("__fd_set_376", "fd_set"); -__static_renaming("__fd_mask_377", "fd_mask"); -__static_renaming("__fd_mask_378", "fd_mask"); -__static_renaming("__select_390", "select"); -__static_renaming("__select_391", "select"); -__static_renaming("__pselect_406", "pselect"); -__static_renaming("__pselect_407", "pselect"); -__static_renaming("____fdelt_chk_411", "__fdelt_chk"); -__static_renaming("____fdelt_warn_413", "__fdelt_warn"); -__static_renaming("__gnu_dev_major_415", "gnu_dev_major"); -__static_renaming("__gnu_dev_major_416", "gnu_dev_major"); -__static_renaming("__gnu_dev_minor_418", "gnu_dev_minor"); -__static_renaming("__gnu_dev_makedev_421", "gnu_dev_makedev"); -__static_renaming("__blksize_t_426", "blksize_t"); -__static_renaming("__blksize_t_427", "blksize_t"); -__static_renaming("__blkcnt_t_429", "blkcnt_t"); -__static_renaming("__blkcnt_t_430", "blkcnt_t"); -__static_renaming("__fsblkcnt_t_432", "fsblkcnt_t"); -__static_renaming("__fsblkcnt_t_433", "fsblkcnt_t"); -__static_renaming("__blkcnt_t_435", "blkcnt_t"); -__static_renaming("__blkcnt_t_436", "blkcnt_t"); -__static_renaming("__fsblkcnt_t_438", "fsblkcnt_t"); -__static_renaming("__fsblkcnt_t_439", "fsblkcnt_t"); -__static_renaming("__fsfilcnt_t_441", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_442", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_444", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_445", "fsfilcnt_t"); -__static_renaming("__pthread_t_447", "pthread_t"); -__static_renaming("__pthread_attr_t_451", "pthread_attr_t"); -__static_renaming("____pthread_list_t_456", "__pthread_list_t"); -__static_renaming("____pthread_list_t_457", "__pthread_list_t"); -__static_renaming("__pthread_mutex_t_473", "pthread_mutex_t"); -__static_renaming("__pthread_mutexattr_t_478", "pthread_mutexattr_t"); -__static_renaming("__rand_479", "rand"); -__static_renaming("__srand_481", "srand"); -__static_renaming("__rand_r_483", "rand_r"); -__static_renaming("__drand48_484", "drand48"); -__static_renaming("__erand48_486", "erand48"); -__static_renaming("__lrand48_487", "lrand48"); -__static_renaming("__nrand48_489", "nrand48"); -__static_renaming("__mrand48_490", "mrand48"); -__static_renaming("__jrand48_492", "jrand48"); -__static_renaming("__srand48_494", "srand48"); -__static_renaming("__seed48_496", "seed48"); -__static_renaming("__lcong48_498", "lcong48"); -__static_renaming("__malloc_500", "malloc"); -__static_renaming("__malloc_501", "malloc"); -__static_renaming("__calloc_504", "calloc"); -__static_renaming("__calloc_505", "calloc"); -__static_renaming("__realloc_508", "realloc"); -__static_renaming("__free_510", "free"); -__static_renaming("__cfree_512", "cfree"); -__static_renaming("__alloca_514", "alloca"); -__static_renaming("__valloc_516", "valloc"); -__static_renaming("__valloc_517", "valloc"); -__static_renaming("__posix_memalign_521", "posix_memalign"); -__static_renaming("__posix_memalign_522", "posix_memalign"); -__static_renaming("__aligned_alloc_525", "aligned_alloc"); -__static_renaming("__aligned_alloc_526", "aligned_alloc"); -__static_renaming("__aligned_alloc_527", "aligned_alloc"); -__static_renaming("__aligned_alloc_528", "aligned_alloc"); -__static_renaming("__abort_529", "abort"); -__static_renaming("__atexit_531", "atexit"); -__static_renaming("__at_quick_exit_533", "at_quick_exit"); -__static_renaming("__on_exit_538", "on_exit"); -__static_renaming("__exit_540", "exit"); -__static_renaming("__exit_541", "exit"); -__static_renaming("__quick_exit_543", "quick_exit"); -__static_renaming("___Exit_545", "_Exit"); -__static_renaming("__getenv_547", "getenv"); -__static_renaming("__getenv_548", "getenv"); -__static_renaming("__putenv_550", "putenv"); -__static_renaming("__setenv_554", "setenv"); -__static_renaming("__unsetenv_556", "unsetenv"); -__static_renaming("__clearenv_557", "clearenv"); -__static_renaming("__mktemp_559", "mktemp"); -__static_renaming("__mkstemp_562", "mkstemp"); -__static_renaming("__mkstemp_563", "mkstemp"); -__static_renaming("__mkstemp_564", "mkstemp"); -__static_renaming("__mkstemp_565", "mkstemp"); -__static_renaming("__mkstemps_570", "mkstemps"); -__static_renaming("__mkstemps_571", "mkstemps"); -__static_renaming("__mkstemps_572", "mkstemps"); -__static_renaming("__mkstemps_573", "mkstemps"); -__static_renaming("__mkdtemp_575", "mkdtemp"); -__static_renaming("__mkdtemp_576", "mkdtemp"); -__static_renaming("__system_578", "system"); -__static_renaming("__system_579", "system"); -__static_renaming("__system_580", "system"); -__static_renaming("__system_581", "system"); -__static_renaming("__realpath_584", "realpath"); -__static_renaming("__realpath_585", "realpath"); -__static_renaming("____compar_fn_t_586", "__compar_fn_t"); -__static_renaming("__bsearch_594", "bsearch"); -__static_renaming("__bsearch_596", "bsearch"); -__static_renaming("____l_603", "__l"); -__static_renaming("____u_604", "__u"); -__static_renaming("____idx_605", "__idx"); -__static_renaming("____p_606", "__p"); -__static_renaming("____comparison_607", "__comparison"); -__static_renaming("__qsort_615", "qsort"); -__static_renaming("__qsort_617", "qsort"); -__static_renaming("__abs_620", "abs"); -__static_renaming("__abs_621", "abs"); -__static_renaming("__labs_623", "labs"); -__static_renaming("__labs_624", "labs"); -__static_renaming("__llabs_626", "llabs"); -__static_renaming("__llabs_627", "llabs"); -__static_renaming("__div_630", "div"); -__static_renaming("__div_631", "div"); -__static_renaming("__ldiv_634", "ldiv"); -__static_renaming("__ldiv_636", "ldiv"); -__static_renaming("__lldiv_640", "lldiv"); -__static_renaming("__lldiv_642", "lldiv"); -__static_renaming("__ecvt_648", "ecvt"); -__static_renaming("__ecvt_649", "ecvt"); -__static_renaming("__fcvt_654", "fcvt"); -__static_renaming("__fcvt_655", "fcvt"); -__static_renaming("__gcvt_659", "gcvt"); -__static_renaming("__gcvt_660", "gcvt"); -__static_renaming("__qecvt_665", "qecvt"); -__static_renaming("__qecvt_666", "qecvt"); -__static_renaming("__qfcvt_671", "qfcvt"); -__static_renaming("__qfcvt_672", "qfcvt"); -__static_renaming("__qgcvt_676", "qgcvt"); -__static_renaming("__qgcvt_677", "qgcvt"); -__static_renaming("__ecvt_r_684", "ecvt_r"); -__static_renaming("__fcvt_r_691", "fcvt_r"); -__static_renaming("__qecvt_r_698", "qecvt_r"); -__static_renaming("__qfcvt_r_705", "qfcvt_r"); -__static_renaming("__mblen_708", "mblen"); -__static_renaming("__mblen_709", "mblen"); -__static_renaming("__mbtowc_713", "mbtowc"); -__static_renaming("__wctomb_716", "wctomb"); -__static_renaming("__mbstowcs_720", "mbstowcs"); -__static_renaming("__wcstombs_724", "wcstombs"); -__static_renaming("__rpmatch_726", "rpmatch"); -__static_renaming("__rpmatch_727", "rpmatch"); -__static_renaming("__getsubopt_731", "getsubopt"); -__static_renaming("__getsubopt_732", "getsubopt"); -__static_renaming("__getloadavg_735", "getloadavg"); -__static_renaming("____realpath_chk_740", "__realpath_chk"); -__static_renaming("____realpath_alias_743", "__realpath_alias"); -__static_renaming("____realpath_chk_warn_747", "__realpath_chk_warn"); -__static_renaming("____ptsname_r_chk_755", "__ptsname_r_chk"); -__static_renaming("____ptsname_r_alias_759", "__ptsname_r_alias"); -__static_renaming("____ptsname_r_chk_warn_764", "__ptsname_r_chk_warn"); -__static_renaming("____wctomb_chk_772", "__wctomb_chk"); -__static_renaming("____wctomb_alias_775", "__wctomb_alias"); -__static_renaming("____mbstowcs_chk_782", "__mbstowcs_chk"); -__static_renaming("____mbstowcs_alias_786", "__mbstowcs_alias"); -__static_renaming("____mbstowcs_chk_warn_791", "__mbstowcs_chk_warn"); -__static_renaming("____wcstombs_chk_799", "__wcstombs_chk"); -__static_renaming("____wcstombs_alias_803", "__wcstombs_alias"); -__static_renaming("____wcstombs_chk_warn_808", "__wcstombs_chk_warn"); -__static_renaming("__vlan_dev_real_dev_812", "vlan_dev_real_dev"); -__static_renaming("__vlan_dev_real_dev_819", "vlan_dev_real_dev"); -__static_renaming("__ocrdma_inet6addr_event_823", "ocrdma_inet6addr_event"); -__static_renaming("__main_829", "main"); -__static_renaming("__main_830", "main"); - -__static_condition_renaming("__static_condition_default_74", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_81", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_229", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_248", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __u_char_defined)"); -__static_condition_renaming("__static_condition_default_251", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __u_char_defined)"); -__static_condition_renaming("__static_condition_default_254", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __u_char_defined)"); -__static_condition_renaming("__static_condition_default_257", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ino_t_defined)"); -__static_condition_renaming("__static_condition_default_260", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ino_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ino_t_defined)"); -__static_condition_renaming("__static_condition_default_263", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_266", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_269", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_272", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_275", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __nlink_t_defined)"); -__static_condition_renaming("__static_condition_default_278", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __nlink_t_defined)"); -__static_condition_renaming("__static_condition_default_281", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __nlink_t_defined)"); -__static_condition_renaming("__static_condition_default_284", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_287", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_290", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_293", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_296", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __id_t_defined)"); -__static_condition_renaming("__static_condition_default_299", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_302", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_307", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_310", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_313", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __clock_t_defined)"); -__static_condition_renaming("__static_condition_default_316", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __time_t_defined)"); -__static_condition_renaming("__static_condition_default_319", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __clockid_t_defined)"); -__static_condition_renaming("__static_condition_default_322", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __timer_t_defined)"); -__static_condition_renaming("__static_condition_default_339", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_355", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_363", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_366", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __suseconds_t_defined)"); -__static_condition_renaming("__static_condition_default_375", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_392", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_393", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_408", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_409", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_428", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blksize_t_defined)"); -__static_condition_renaming("__static_condition_default_431", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blkcnt_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blkcnt_t_defined)"); -__static_condition_renaming("__static_condition_default_434", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_437", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blkcnt_t_defined)"); -__static_condition_renaming("__static_condition_default_440", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_443", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_446", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_593", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_595", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_608", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __USE_EXTERN_INLINES) && !(defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_609", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_616", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_618", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_635", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_637", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_641", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_643", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_750", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_813", "!(defined CONFIG_VLAN_8021Q)"); -__static_condition_renaming("__static_condition_default_814", "(defined NDEBUG) && !(defined CONFIG_VLAN_8021Q)"); -__static_condition_renaming("__static_condition_default_815", "!(defined NDEBUG) && !(defined _ASSERT_H_DECLS) && !(defined CONFIG_VLAN_8021Q)"); -__static_condition_renaming("__static_condition_default_816", "!(defined NDEBUG) && (defined _ASSERT_H_DECLS) && !(defined CONFIG_VLAN_8021Q)"); -__static_condition_renaming("__static_condition_default_817", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_VLAN_8021Q)"); -__static_condition_renaming("__static_condition_default_818", "!(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined CONFIG_VLAN_8021Q) || (defined _STDLIB_H) && !(defined CONFIG_VLAN_8021Q)"); -__static_condition_renaming("__static_condition_default_820", "(defined CONFIG_VLAN_8021Q)"); -__static_condition_renaming("__static_condition_default_821", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_VLAN_8021Q)"); -__static_condition_renaming("__static_condition_default_822", "!(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined CONFIG_VLAN_8021Q) || (defined _STDLIB_H) && (defined CONFIG_VLAN_8021Q)"); -__static_condition_renaming("__static_condition_default_824", "!(defined CONFIG_VLAN_8021Q) && (defined CONFIG_IPV6) || (defined CONFIG_VLAN_8021Q)"); -__static_condition_renaming("__static_condition_default_825", "!(defined CONFIG_VLAN_8021Q) && (defined CONFIG_IPV6)"); -__static_condition_renaming("__static_condition_default_826", "(defined CONFIG_VLAN_8021Q)"); -__static_condition_renaming("__static_condition_default_831", "!(defined CONFIG_VLAN_8021Q) && !(defined CONFIG_IPV6)"); -__static_condition_renaming("__static_condition_default_832", "!(defined CONFIG_VLAN_8021Q) && (defined CONFIG_IPV6) || (defined CONFIG_VLAN_8021Q)"); -__static_condition_renaming("__static_condition_default_833", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_renaming("__div_t_21", "div_t"); +__static_renaming("__ldiv_t_26", "ldiv_t"); +__static_renaming("__lldiv_t_31", "lldiv_t"); +__static_renaming("____ctype_get_mb_cur_max_32", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_33", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_34", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_35", "__ctype_get_mb_cur_max"); +__static_renaming("__atof_37", "atof"); +__static_renaming("__atof_38", "atof"); +__static_renaming("__atoi_40", "atoi"); +__static_renaming("__atoi_41", "atoi"); +__static_renaming("__atol_43", "atol"); +__static_renaming("__atol_44", "atol"); +__static_renaming("__atoll_46", "atoll"); +__static_renaming("__atoll_47", "atoll"); +__static_renaming("__strtod_50", "strtod"); +__static_renaming("__strtof_53", "strtof"); +__static_renaming("__strtold_56", "strtold"); +__static_renaming("__strtol_60", "strtol"); +__static_renaming("__strtoul_64", "strtoul"); +__static_renaming("__strtoll_68", "strtoll"); +__static_renaming("__strtoull_72", "strtoull"); +__static_renaming("__rand_76", "rand"); +__static_renaming("__rand_77", "rand"); +__static_renaming("__srand_79", "srand"); +__static_renaming("__malloc_81", "malloc"); +__static_renaming("__malloc_82", "malloc"); +__static_renaming("__calloc_85", "calloc"); +__static_renaming("__calloc_86", "calloc"); +__static_renaming("__realloc_89", "realloc"); +__static_renaming("__realloc_90", "realloc"); +__static_renaming("__free_92", "free"); +__static_renaming("__aligned_alloc_95", "aligned_alloc"); +__static_renaming("__aligned_alloc_96", "aligned_alloc"); +__static_renaming("__abort_97", "abort"); +__static_renaming("__atexit_99", "atexit"); +__static_renaming("__at_quick_exit_101", "at_quick_exit"); +__static_renaming("__exit_103", "exit"); +__static_renaming("__quick_exit_105", "quick_exit"); +__static_renaming("___Exit_107", "_Exit"); +__static_renaming("__getenv_109", "getenv"); +__static_renaming("__getenv_110", "getenv"); +__static_renaming("__system_112", "system"); +__static_renaming("__system_113", "system"); +__static_renaming("____compar_fn_t_114", "__compar_fn_t"); +__static_renaming("__bsearch_122", "bsearch"); +__static_renaming("__bsearch_124", "bsearch"); +__static_renaming("____l_131", "__l"); +__static_renaming("____u_132", "__u"); +__static_renaming("____idx_133", "__idx"); +__static_renaming("____p_134", "__p"); +__static_renaming("____comparison_135", "__comparison"); +__static_renaming("__qsort_143", "qsort"); +__static_renaming("__qsort_145", "qsort"); +__static_renaming("__abs_148", "abs"); +__static_renaming("__abs_149", "abs"); +__static_renaming("__labs_151", "labs"); +__static_renaming("__labs_152", "labs"); +__static_renaming("__llabs_154", "llabs"); +__static_renaming("__llabs_155", "llabs"); +__static_renaming("__div_158", "div"); +__static_renaming("__div_159", "div"); +__static_renaming("__ldiv_162", "ldiv"); +__static_renaming("__ldiv_164", "ldiv"); +__static_renaming("__lldiv_168", "lldiv"); +__static_renaming("__lldiv_170", "lldiv"); +__static_renaming("__mblen_174", "mblen"); +__static_renaming("__mbtowc_178", "mbtowc"); +__static_renaming("__wctomb_181", "wctomb"); +__static_renaming("__mbstowcs_185", "mbstowcs"); +__static_renaming("__wcstombs_189", "wcstombs"); +__static_renaming("____realpath_chk_194", "__realpath_chk"); +__static_renaming("____realpath_alias_197", "__realpath_alias"); +__static_renaming("____realpath_chk_warn_201", "__realpath_chk_warn"); +__static_renaming("____ptsname_r_chk_209", "__ptsname_r_chk"); +__static_renaming("____ptsname_r_alias_213", "__ptsname_r_alias"); +__static_renaming("____ptsname_r_chk_warn_218", "__ptsname_r_chk_warn"); +__static_renaming("____wctomb_chk_226", "__wctomb_chk"); +__static_renaming("____wctomb_alias_229", "__wctomb_alias"); +__static_renaming("____mbstowcs_chk_236", "__mbstowcs_chk"); +__static_renaming("____mbstowcs_alias_240", "__mbstowcs_alias"); +__static_renaming("____mbstowcs_chk_warn_245", "__mbstowcs_chk_warn"); +__static_renaming("____wcstombs_chk_253", "__wcstombs_chk"); +__static_renaming("____wcstombs_alias_257", "__wcstombs_alias"); +__static_renaming("____wcstombs_chk_warn_262", "__wcstombs_chk_warn"); +__static_renaming("__vlan_dev_real_dev_266", "vlan_dev_real_dev"); +__static_renaming("__vlan_dev_real_dev_271", "vlan_dev_real_dev"); +__static_renaming("__ocrdma_inet6addr_event_273", "ocrdma_inet6addr_event"); +__static_renaming("__main_279", "main"); +__static_renaming("__main_280", "main"); + +__static_condition_renaming("__static_condition_default_121", "!(defined _FORTIFY_SOURCE) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_123", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_136", "(defined __USE_EXTERN_INLINES) && !(defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_137", "(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_144", "!(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_146", "(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_163", "!(defined _FORTIFY_SOURCE) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_165", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_169", "!(defined _FORTIFY_SOURCE) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_171", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_204", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_267", "!(defined CONFIG_VLAN_8021Q)"); +__static_condition_renaming("__static_condition_default_268", "(defined NDEBUG) && !(defined CONFIG_VLAN_8021Q)"); +__static_condition_renaming("__static_condition_default_269", "!(defined NDEBUG) && !(defined _ASSERT_H_DECLS) && !(defined CONFIG_VLAN_8021Q)"); +__static_condition_renaming("__static_condition_default_270", "!(defined NDEBUG) && (defined _ASSERT_H_DECLS) && !(defined CONFIG_VLAN_8021Q)"); +__static_condition_renaming("__static_condition_default_272", "(defined CONFIG_VLAN_8021Q)"); +__static_condition_renaming("__static_condition_default_274", "!(defined CONFIG_VLAN_8021Q) && (defined CONFIG_IPV6) || (defined CONFIG_VLAN_8021Q)"); +__static_condition_renaming("__static_condition_default_275", "!(defined CONFIG_VLAN_8021Q) && (defined CONFIG_IPV6)"); +__static_condition_renaming("__static_condition_default_276", "(defined CONFIG_VLAN_8021Q)"); +__static_condition_renaming("__static_condition_default_281", "!(defined CONFIG_VLAN_8021Q) && !(defined CONFIG_IPV6)"); +__static_condition_renaming("__static_condition_default_282", "!(defined CONFIG_VLAN_8021Q) && (defined CONFIG_IPV6) || (defined CONFIG_VLAN_8021Q)"); -if (__static_condition_default_833) -{ -__static_parse_error("Unable to parse"); -} }; typedef long int __ptrdiff_t_14;// L143:L324 typedef long unsigned int __size_t_15;// L177:L209 typedef int __wchar_t_16;// L243:L321 -enum ____anonymous_tag_20_21 { -__P_ALL_17, -__P_PID_18, -__P_PGID_19, -}; -typedef enum ____anonymous_tag_20_21 __idtype_t_22;// L50:L55 -typedef unsigned char ____u_char_23;// L30 -typedef unsigned short int ____u_short_24;// L31 -typedef unsigned int ____u_int_25;// L32 -typedef unsigned long int ____u_long_26;// L33 -typedef signed char ____int8_t_27;// L36 -typedef unsigned char ____uint8_t_28;// L37 -typedef signed short int ____int16_t_29;// L38 -typedef unsigned short int ____uint16_t_30;// L39 -typedef signed int ____int32_t_31;// L40 -typedef unsigned int ____uint32_t_32;// L41 -typedef signed long int ____int64_t_33;// L43 -typedef unsigned long int ____uint64_t_34;// L44 -typedef long int ____quad_t_35;// L52 -typedef unsigned long int ____u_quad_t_36;// L53 -typedef unsigned long int ____dev_t_37;// L109:L124 -typedef unsigned int ____uid_t_38;// L92:L125 -typedef unsigned int ____gid_t_39;// L92:L126 -typedef unsigned long int ____ino_t_40;// L94:L127 -typedef unsigned long int ____ino64_t_41;// L109:L128 -typedef unsigned int ____mode_t_42;// L92:L129 -typedef unsigned long int ____nlink_t_43;// L94:L130 -typedef long int ____off_t_44;// L93:L131 -typedef long int ____off64_t_45;// L108:L132 -typedef int ____pid_t_46;// L91:L133 -struct ____anonymous_tag_47_48 { -int ____val_49[2];// L72 -}; -typedef struct ____anonymous_tag_47_48 ____fsid_t_50;// L72:L134 -typedef long int ____clock_t_51;// L93:L135 -typedef unsigned long int ____rlim_t_52;// L94:L136 -typedef unsigned long int ____rlim64_t_53;// L109:L137 -typedef unsigned int ____id_t_54;// L92:L138 -typedef long int ____time_t_55;// L93:L139 -typedef unsigned int ____useconds_t_56;// L92:L140 -typedef long int ____suseconds_t_57;// L93:L141 -typedef int ____daddr_t_58;// L91:L143 -typedef int ____key_t_59;// L91:L144 -typedef int ____clockid_t_60;// L91:L147 -typedef void * (____timer_t_61);// L70:L150 -typedef long int ____blksize_t_62;// L93:L153 -typedef long int ____blkcnt_t_63;// L93:L158 -typedef long int ____blkcnt64_t_64;// L108:L159 -typedef unsigned long int ____fsblkcnt_t_65;// L94:L162 -typedef unsigned long int ____fsblkcnt64_t_66;// L109:L163 -typedef unsigned long int ____fsfilcnt_t_67;// L94:L166 -typedef unsigned long int ____fsfilcnt64_t_68;// L109:L167 -typedef long int ____fsword_t_69;// L93:L170 -typedef long int ____ssize_t_70;// L110:L172 -typedef long int ____syscall_slong_t_71;// L93:L175 -typedef unsigned long int ____syscall_ulong_t_72;// L94:L177 -typedef ____off64_t_45 ____loff_t_73;// L181 -typedef ____quad_t_35 * (____qaddr_t_75);// L182 -typedef char * (____caddr_t_76);// L183 -typedef long int ____intptr_t_77;// L110:L186 -typedef unsigned int ____socklen_t_78;// L92:L189 -struct ____anonymous_tag_84_85 { -unsigned int ____w_termsig_86 : 7;// L72 -unsigned int ____w_coredump_87 : 1;// L73 -unsigned int ____w_retcode_88 : 8;// L74 -unsigned int __anon_id_0_89 : 16;// L75 -}; -struct ____anonymous_tag_90_91 { -unsigned int ____w_stopval_92 : 8;// L87 -unsigned int ____w_stopsig_93 : 8;// L88 -unsigned int __anon_id_1_94 : 16;// L89 -}; -union __wait_95 { -int __w_status_96;// L68 -struct ____anonymous_tag_84_85 ____wait_terminated_97;// L69 -struct ____anonymous_tag_90_91 ____wait_stopped_98;// L84 -}; -union ____anonymous_tag_99_100 { -union __wait_95 * (____uptr_101);// L69 -int * (____iptr_102);// L70 -}; -typedef union ____anonymous_tag_99_100 ____WAIT_STATUS_103;// L67:L71 -struct ____anonymous_tag_104_105 { -int __quot_106;// L99 -int __rem_107;// L100 -}; -typedef struct ____anonymous_tag_104_105 __div_t_108;// L97:L101 -struct ____anonymous_tag_109_110 { -long int __quot_111;// L107 -long int __rem_112;// L108 -}; -typedef struct ____anonymous_tag_109_110 __ldiv_t_113;// L105:L109 -struct ____anonymous_tag_114_115 { -long long int __quot_116;// L119 -long long int __rem_117;// L120 -}; -typedef struct ____anonymous_tag_114_115 __lldiv_t_118;// L117:L121 -typedef unsigned char ____u_char_178;// L30 -typedef unsigned short int ____u_short_179;// L31 -typedef unsigned int ____u_int_180;// L32 -typedef unsigned long int ____u_long_181;// L33 -typedef signed char ____int8_t_182;// L36 -typedef unsigned char ____uint8_t_183;// L37 -typedef signed short int ____int16_t_184;// L38 -typedef unsigned short int ____uint16_t_185;// L39 -typedef signed int ____int32_t_186;// L40 -typedef unsigned int ____uint32_t_187;// L41 -typedef signed long int ____int64_t_188;// L43 -typedef unsigned long int ____uint64_t_189;// L44 -typedef long int ____quad_t_190;// L52 -typedef unsigned long int ____u_quad_t_191;// L53 -typedef unsigned long int ____dev_t_192;// L109:L124 -typedef unsigned int ____uid_t_193;// L92:L125 -typedef unsigned int ____gid_t_194;// L92:L126 -typedef unsigned long int ____ino_t_195;// L94:L127 -typedef unsigned long int ____ino64_t_196;// L109:L128 -typedef unsigned int ____mode_t_197;// L92:L129 -typedef unsigned long int ____nlink_t_198;// L94:L130 -typedef long int ____off_t_199;// L93:L131 -typedef long int ____off64_t_200;// L108:L132 -typedef int ____pid_t_201;// L91:L133 -struct ____anonymous_tag_202_203 { -int ____val_204[2];// L72 -}; -typedef struct ____anonymous_tag_202_203 ____fsid_t_205;// L72:L134 -typedef long int ____clock_t_206;// L93:L135 -typedef unsigned long int ____rlim_t_207;// L94:L136 -typedef unsigned long int ____rlim64_t_208;// L109:L137 -typedef unsigned int ____id_t_209;// L92:L138 -typedef long int ____time_t_210;// L93:L139 -typedef unsigned int ____useconds_t_211;// L92:L140 -typedef long int ____suseconds_t_212;// L93:L141 -typedef int ____daddr_t_213;// L91:L143 -typedef int ____key_t_214;// L91:L144 -typedef int ____clockid_t_215;// L91:L147 -typedef void * (____timer_t_216);// L70:L150 -typedef long int ____blksize_t_217;// L93:L153 -typedef long int ____blkcnt_t_218;// L93:L158 -typedef long int ____blkcnt64_t_219;// L108:L159 -typedef unsigned long int ____fsblkcnt_t_220;// L94:L162 -typedef unsigned long int ____fsblkcnt64_t_221;// L109:L163 -typedef unsigned long int ____fsfilcnt_t_222;// L94:L166 -typedef unsigned long int ____fsfilcnt64_t_223;// L109:L167 -typedef long int ____fsword_t_224;// L93:L170 -typedef long int ____ssize_t_225;// L110:L172 -typedef long int ____syscall_slong_t_226;// L93:L175 -typedef unsigned long int ____syscall_ulong_t_227;// L94:L177 -typedef ____off64_t_200 ____loff_t_228;// L181 -typedef ____quad_t_190 * (____qaddr_t_230);// L182 -typedef char * (____caddr_t_231);// L183 -typedef long int ____intptr_t_232;// L110:L186 -typedef unsigned int ____socklen_t_233;// L92:L189 -typedef ____u_char_23 __u_char_234;// L33 -typedef ____u_char_178 __u_char_235;// L33 -typedef ____u_short_24 __u_short_236;// L34 -typedef ____u_short_179 __u_short_237;// L34 -typedef ____u_int_25 __u_int_238;// L35 -typedef ____u_int_180 __u_int_239;// L35 -typedef ____u_long_26 __u_long_240;// L36 -typedef ____u_long_181 __u_long_241;// L36 -typedef ____quad_t_35 __quad_t_242;// L37 -typedef ____quad_t_190 __quad_t_243;// L37 -typedef ____u_quad_t_36 __u_quad_t_244;// L38 -typedef ____u_quad_t_191 __u_quad_t_245;// L38 -typedef ____fsid_t_50 __fsid_t_246;// L39 -typedef ____fsid_t_205 __fsid_t_247;// L39 -typedef ____loff_t_73 __loff_t_249;// L44 -typedef ____loff_t_228 __loff_t_250;// L44 -typedef ____loff_t_73 __loff_t_252;// L44 -typedef ____loff_t_228 __loff_t_253;// L44 -typedef ____ino64_t_41 __ino_t_255;// L50 -typedef ____ino64_t_196 __ino_t_256;// L50 -typedef ____ino_t_40 __ino_t_258;// L48 -typedef ____ino_t_195 __ino_t_259;// L48 -typedef ____dev_t_37 __dev_t_261;// L60 -typedef ____dev_t_192 __dev_t_262;// L60 -typedef ____gid_t_39 __gid_t_264;// L65 -typedef ____gid_t_194 __gid_t_265;// L65 -typedef ____gid_t_39 __gid_t_267;// L65 -typedef ____gid_t_194 __gid_t_268;// L65 -typedef ____mode_t_42 __mode_t_270;// L70 -typedef ____mode_t_197 __mode_t_271;// L70 -typedef ____nlink_t_43 __nlink_t_273;// L75 -typedef ____nlink_t_198 __nlink_t_274;// L75 -typedef ____uid_t_38 __uid_t_276;// L80 -typedef ____uid_t_193 __uid_t_277;// L80 -typedef ____uid_t_38 __uid_t_279;// L80 -typedef ____uid_t_193 __uid_t_280;// L80 -typedef ____off64_t_45 __off_t_282;// L88 -typedef ____off64_t_200 __off_t_283;// L88 -typedef ____off_t_44 __off_t_285;// L86 -typedef ____off_t_199 __off_t_286;// L86 -typedef ____pid_t_46 __pid_t_288;// L98 -typedef ____pid_t_201 __pid_t_289;// L98 -typedef ____pid_t_46 __pid_t_291;// L98 -typedef ____pid_t_201 __pid_t_292;// L98 -typedef ____id_t_54 __id_t_294;// L104 -typedef ____id_t_209 __id_t_295;// L104 -typedef ____ssize_t_70 __ssize_t_297;// L109 -typedef ____ssize_t_225 __ssize_t_298;// L109 -typedef ____daddr_t_58 __daddr_t_300;// L115 -typedef ____daddr_t_213 __daddr_t_301;// L115 -typedef ____caddr_t_76 __caddr_t_303;// L116 -typedef ____caddr_t_231 __caddr_t_304;// L116 -typedef ____key_t_59 __key_t_305;// L122 -typedef ____key_t_214 __key_t_306;// L122 -typedef ____key_t_59 __key_t_308;// L122 -typedef ____key_t_214 __key_t_309;// L122 -typedef ____clock_t_51 __clock_t_311;// L59 -typedef ____clock_t_206 __clock_t_312;// L59 -typedef ____time_t_55 __time_t_314;// L75 -typedef ____time_t_210 __time_t_315;// L75 -typedef ____clockid_t_60 __clockid_t_317;// L91 -typedef ____clockid_t_215 __clockid_t_318;// L91 -typedef ____timer_t_61 __timer_t_320;// L103 -typedef ____timer_t_216 __timer_t_321;// L103 -typedef unsigned long int __ulong_323;// L150 -typedef unsigned long int __ulong_324;// L150 -typedef unsigned long int __ulong_325;// L150 -typedef unsigned short int __ushort_326;// L151 -typedef unsigned int __uint_327;// L152 -typedef int __int8_t_328;// L188:L194 -typedef int __int16_t_329;// L188:L195 -typedef int __int32_t_330;// L188:L196 -typedef int __int64_t_331;// L188:L197 -typedef unsigned int __u_int8_t_332;// L190:L200 -typedef unsigned int __u_int16_t_333;// L190:L201 -typedef unsigned int __u_int32_t_334;// L190:L202 -typedef unsigned int __u_int64_t_335;// L190:L203 -typedef int __register_t_336;// L205 -typedef int ____sig_atomic_t_342;// L22 -struct ____anonymous_tag_343_344 { -unsigned long int ____val_345[( 1024 / ( 8 * sizeof(unsigned long) ) )];// L29 -}; -typedef struct ____anonymous_tag_343_344 ____sigset_t_346;// L27:L30 -typedef ____sigset_t_346 __sigset_t_347;// L37 -struct __timespec_348 { -____time_t_55 __tv_sec_349;// L0 -____time_t_210 __tv_sec_350;// L0 -____syscall_slong_t_71 __tv_nsec_352;// L0 -____syscall_slong_t_226 __tv_nsec_353;// L0 -}; -struct __timeval_356 { -____time_t_55 __tv_sec_357;// L0 -____time_t_210 __tv_sec_358;// L0 -____suseconds_t_57 __tv_usec_360;// L0 -____suseconds_t_212 __tv_usec_361;// L0 -}; -typedef ____suseconds_t_57 __suseconds_t_364;// L48 -typedef ____suseconds_t_212 __suseconds_t_365;// L48 -typedef long int ____fd_mask_367;// L54 -typedef long int ____fd_mask_368;// L54 -struct ____anonymous_tag_369_370 { -____fd_mask_367 ____fds_bits_371[1024 / ( 8 * ( int ) sizeof(long) )];// L0 -____fd_mask_368 ____fds_bits_373[1024 / ( 8 * ( int ) sizeof(long) )];// L0 -}; -typedef struct ____anonymous_tag_369_370 __fd_set_376;// L64:L75 -typedef ____fd_mask_367 __fd_mask_377;// L82 -typedef ____fd_mask_368 __fd_mask_378;// L82 -typedef ____blksize_t_62 __blksize_t_426;// L228 -typedef ____blksize_t_217 __blksize_t_427;// L228 -typedef ____blkcnt_t_63 __blkcnt_t_429;// L235 -typedef ____blkcnt_t_218 __blkcnt_t_430;// L235 -typedef ____fsblkcnt_t_65 __fsblkcnt_t_432;// L239 -typedef ____fsblkcnt_t_220 __fsblkcnt_t_433;// L239 -typedef ____blkcnt64_t_64 __blkcnt_t_435;// L248 -typedef ____blkcnt64_t_219 __blkcnt_t_436;// L248 -typedef ____fsblkcnt64_t_66 __fsblkcnt_t_438;// L252 -typedef ____fsblkcnt64_t_221 __fsblkcnt_t_439;// L252 -typedef ____fsfilcnt_t_67 __fsfilcnt_t_441;// L243 -typedef ____fsfilcnt_t_222 __fsfilcnt_t_442;// L243 -typedef ____fsfilcnt64_t_68 __fsfilcnt_t_444;// L256 -typedef ____fsfilcnt64_t_223 __fsfilcnt_t_445;// L256 -typedef unsigned long int __pthread_t_447;// L60 -union __pthread_attr_t_448 { -char ____size_449[56];// L65 -long int ____align_450;// L66 +struct ____anonymous_tag_17_18 { +int __quot_19;// L99 +int __rem_20;// L100 }; -typedef union __pthread_attr_t_448 __pthread_attr_t_451;// L69 -struct ____pthread_internal_list_453 { -struct __forward_tag_reference_452 * (____prev_454);// L0 -struct __forward_tag_reference_452 * (____next_455);// L0 -}; -typedef struct ____pthread_internal_list_453 ____pthread_list_t_456;// L75:L79 -typedef struct ____pthread_internal_list_453 ____pthread_list_t_457;// L75:L79 -struct ____pthread_mutex_s_458 { -int ____lock_459;// L94 -unsigned int ____count_460;// L95 -int ____owner_461;// L96 -unsigned int ____nusers_462;// L98 -int ____kind_463;// L102 -short ____spins_464;// L104 -short ____elision_465;// L105 -____pthread_list_t_456 ____list_466;// L0 -____pthread_list_t_457 ____list_467;// L0 -}; -union ____anonymous_tag_468_469 { -struct ____pthread_mutex_s_458 ____data_470;// L92 -char ____size_471[40];// L126 -long int ____align_472;// L127 -}; -typedef union ____anonymous_tag_468_469 __pthread_mutex_t_473;// L90:L128 -union ____anonymous_tag_474_475 { -char ____size_476[4];// L132 -int ____align_477;// L133 -}; -typedef union ____anonymous_tag_474_475 __pthread_mutexattr_t_478;// L130:L134 -typedef int (* (____compar_fn_t_586)) (const void *, const void *);// L741 - -struct __forward_tag_reference_452 { // generated union of struct variations -union { +typedef struct ____anonymous_tag_17_18 __div_t_21;// L97:L101 +struct ____anonymous_tag_22_23 { +long int __quot_24;// L107 +long int __rem_25;// L108 }; +typedef struct ____anonymous_tag_22_23 __ldiv_t_26;// L105:L109 +struct ____anonymous_tag_27_28 { +long long int __quot_29;// L119 +long long int __rem_30;// L120 }; +typedef struct ____anonymous_tag_27_28 __lldiv_t_31;// L117:L121 +typedef int (* (____compar_fn_t_114)) (const void *, const void *);// L741 extern void (____assert_fail_4) (const char * (____assertion_0), const char * (____file_1), unsigned int ____line_2, const char * (____function_3));// L69:L71 extern void (____assert_perror_fail_9) (int ____errnum_5, const char * (____file_6), unsigned int ____line_7, const char * (____function_8));// L74:L76 @@ -871,521 +178,148 @@ extern void (____assert_13) (const char * (____assertion_10), const char * (_ // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -static __inline unsigned int (____bswap_32_80) (unsigned int ____bsx_79) { - -if (__static_condition_default_81) { - -{ -{ - - - -__static_type_error("invalid type found in return expression"); -} -} - - -} -} -static __inline ____uint64_t_34 (____bswap_64_83) (____uint64_t_34 ____bsx_82) { - -if (__static_condition_default_81) { - -{ -{ - - - -__static_type_error("invalid type found in return expression"); -} -} - - -} -} -union __wait_95 ;// L66 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern __size_t_15 (____ctype_get_mb_cur_max_119) (void );// L139 -extern __size_t_15 (____ctype_get_mb_cur_max_120) (void );// L139 -extern __size_t_15 (____ctype_get_mb_cur_max_121) (void );// L139 -extern __size_t_15 (____ctype_get_mb_cur_max_122) (void );// L139 -extern double (__atof_124) (const char * (____nptr_123));// L144:L145 -extern double (__atof_125) (const char * (____nptr_123));// L144:L145 -extern int (__atoi_127) (const char * (____nptr_126));// L147:L148 -extern int (__atoi_128) (const char * (____nptr_126));// L147:L148 -extern long int (__atol_130) (const char * (____nptr_129));// L150:L151 -extern long int (__atol_131) (const char * (____nptr_129));// L150:L151 -extern long long int (__atoll_133) (const char * (____nptr_132));// L157:L158 -extern long long int (__atoll_134) (const char * (____nptr_132));// L157:L158 -extern double (__strtod_137) (const char * __restrict ____nptr_135, char * (* __restrict ____endptr_136));// L164:L166 -extern float (__strtof_140) (const char * __restrict ____nptr_138, char * (* __restrict ____endptr_139));// L172:L173 -extern long double (__strtold_143) (const char * __restrict ____nptr_141, char * (* __restrict ____endptr_142));// L175:L177 -extern long int (__strtol_147) (const char * __restrict ____nptr_144, char * (* __restrict ____endptr_145), int ____base_146);// L183:L185 -extern unsigned long int (__strtoul_151) (const char * __restrict ____nptr_148, char * (* __restrict ____endptr_149), int ____base_150);// L187:L189 -extern long long int (__strtoq_155) (const char * __restrict ____nptr_152, char * (* __restrict ____endptr_153), int ____base_154);// L195:L197 -extern unsigned long long int (__strtouq_159) (const char * __restrict ____nptr_156, char * (* __restrict ____endptr_157), int ____base_158);// L200:L202 -extern long long int (__strtoll_163) (const char * __restrict ____nptr_160, char * (* __restrict ____endptr_161), int ____base_162);// L209:L211 -extern long long int (__strtoll_164) (const char * __restrict ____nptr_160, char * (* __restrict ____endptr_161), int ____base_162);// L209:L211 -extern unsigned long long int (__strtoull_168) (const char * __restrict ____nptr_165, char * (* __restrict ____endptr_166), int ____base_167);// L214:L216 +extern __size_t_15 (____ctype_get_mb_cur_max_32) (void );// L139 +extern __size_t_15 (____ctype_get_mb_cur_max_33) (void );// L139 +extern __size_t_15 (____ctype_get_mb_cur_max_34) (void );// L139 +extern __size_t_15 (____ctype_get_mb_cur_max_35) (void );// L139 +extern double (__atof_37) (const char * (____nptr_36));// L144:L145 +extern double (__atof_38) (const char * (____nptr_36));// L144:L145 +extern int (__atoi_40) (const char * (____nptr_39));// L147:L148 +extern int (__atoi_41) (const char * (____nptr_39));// L147:L148 +extern long int (__atol_43) (const char * (____nptr_42));// L150:L151 +extern long int (__atol_44) (const char * (____nptr_42));// L150:L151 +extern long long int (__atoll_46) (const char * (____nptr_45));// L157:L158 +extern long long int (__atoll_47) (const char * (____nptr_45));// L157:L158 +extern double (__strtod_50) (const char * __restrict ____nptr_48, char * (* __restrict ____endptr_49));// L164:L166 +extern float (__strtof_53) (const char * __restrict ____nptr_51, char * (* __restrict ____endptr_52));// L172:L173 +extern long double (__strtold_56) (const char * __restrict ____nptr_54, char * (* __restrict ____endptr_55));// L175:L177 +extern long int (__strtol_60) (const char * __restrict ____nptr_57, char * (* __restrict ____endptr_58), int ____base_59);// L183:L185 +extern unsigned long int (__strtoul_64) (const char * __restrict ____nptr_61, char * (* __restrict ____endptr_62), int ____base_63);// L187:L189 +extern long long int (__strtoll_68) (const char * __restrict ____nptr_65, char * (* __restrict ____endptr_66), int ____base_67);// L209:L211 +extern unsigned long long int (__strtoull_72) (const char * __restrict ____nptr_69, char * (* __restrict ____endptr_70), int ____base_71);// L214:L216 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ __extension__/* no function due to type errors in the function prototype */ -extern char * ((__l64a_173) (long int ____n_172));// L305 -extern char * ((__l64a_174) (long int ____n_172));// L305 -extern long int (__a64l_176) (const char * (____s_175));// L308:L309 -extern long int (__a64l_177) (const char * (____s_175));// L308:L309 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -static __inline unsigned int (____bswap_32_338) (unsigned int ____bsx_337) { - -if (__static_condition_default_339) { - -{ -{ - - - -__static_type_error("invalid type found in return expression"); -} -} - - -} -} -static __inline ____uint64_t_189 (____bswap_64_341) (____uint64_t_189 ____bsx_340) { - -if (__static_condition_default_339) { - -{ -{ - - - -__static_type_error("invalid type found in return expression"); -} -} - - -} -} -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -struct __timespec_348 ;// L120 - -struct __timeval_356 ;// L30 - -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern int (__select_390) (int ____nfds_379, __fd_set_376 * __restrict ____readfds_380, __fd_set_376 * __restrict ____writefds_382, __fd_set_376 * __restrict ____exceptfds_384, struct __timeval_356 * __restrict ____timeout_387);// L106:L109 -extern int (__select_391) (int ____nfds_379, __fd_set_376 * __restrict ____readfds_380, __fd_set_376 * __restrict ____writefds_382, __fd_set_376 * __restrict ____exceptfds_384, struct __forward_tag_reference_386 * __restrict ____timeout_389);// L106:L109 -extern int (__pselect_406) (int ____nfds_394, __fd_set_376 * __restrict ____readfds_395, __fd_set_376 * __restrict ____writefds_397, __fd_set_376 * __restrict ____exceptfds_399, const struct __timespec_348 * __restrict ____timeout_402, const ____sigset_t_346 * __restrict ____sigmask_405);// L118:L122 -extern int (__pselect_407) (int ____nfds_394, __fd_set_376 * __restrict ____readfds_395, __fd_set_376 * __restrict ____writefds_397, __fd_set_376 * __restrict ____exceptfds_399, const struct __forward_tag_reference_401 * __restrict ____timeout_404, const ____sigset_t_346 * __restrict ____sigmask_405);// L118:L122 -extern long int (____fdelt_chk_411) (long int ____d_410);// L24 -extern long int (____fdelt_warn_413) (long int ____d_412);// L25:L26 -extern unsigned int (__gnu_dev_major_415) (unsigned long long int ____dev_414);// L27:L28 -extern unsigned int (__gnu_dev_major_416) (unsigned long long int ____dev_414);// L27:L28 -extern unsigned int (__gnu_dev_minor_418) (unsigned long long int ____dev_417);// L30:L31 -extern unsigned long long int (__gnu_dev_makedev_421) (unsigned int ____major_419, unsigned int ____minor_420);// L33:L35 -__extension__/* no function due to type errors in the function prototype */ -__extension__/* no function due to type errors in the function prototype */ -__extension__/* no function due to type errors in the function prototype */ -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -union __pthread_attr_t_448 ;// L63 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern int (__rand_479) (void );// L374 -extern void (__srand_481) (unsigned int ____seed_480);// L376 -extern int (__rand_r_483) (unsigned int * (____seed_482));// L381 -extern double (__drand48_484) (void );// L389 -extern double (__erand48_486) (unsigned short int ____xsubi_485[3]);// L390 -extern long int (__lrand48_487) (void );// L393 -extern long int (__nrand48_489) (unsigned short int ____xsubi_488[3]);// L394:L395 -extern long int (__mrand48_490) (void );// L398 -extern long int (__jrand48_492) (unsigned short int ____xsubi_491[3]);// L399:L400 -extern void (__srand48_494) (long int ____seedval_493);// L403 -extern unsigned short int * ((__seed48_496) (unsigned short int ____seed16v_495[3]));// L404:L405 -extern void (__lcong48_498) (unsigned short int ____param_497[7]);// L406 -extern void * ((__malloc_500) (__size_t_15 ____size_499));// L466 -extern void * ((__malloc_501) (__size_t_15 ____size_499));// L466 -extern void * ((__calloc_504) (__size_t_15 ____nmemb_502, __size_t_15 ____size_503));// L468:L469 -extern void * ((__calloc_505) (__size_t_15 ____nmemb_502, __size_t_15 ____size_503));// L468:L469 -extern void * ((__realloc_508) (void * (____ptr_506), __size_t_15 ____size_507));// L480:L481 -extern void (__free_510) (void * (____ptr_509));// L483 -extern void (__cfree_512) (void * (____ptr_511));// L488 -extern void * ((__alloca_514) (__size_t_15 ____size_513));// L32 -extern void * ((__valloc_516) (__size_t_15 ____size_515));// L498 -extern void * ((__valloc_517) (__size_t_15 ____size_515));// L498 -extern int (__posix_memalign_521) (void * (* (____memptr_518)), __size_t_15 ____alignment_519, __size_t_15 ____size_520);// L503:L504 -extern int (__posix_memalign_522) (void * (* (____memptr_518)), __size_t_15 ____alignment_519, __size_t_15 ____size_520);// L503:L504 -extern void * ((__aligned_alloc_525) (__size_t_15 ____alignment_523, __size_t_15 ____size_524));// L509:L510 -extern void * ((__aligned_alloc_526) (__size_t_15 ____alignment_523, __size_t_15 ____size_524));// L509:L510 -extern void * ((__aligned_alloc_527) (__size_t_15 ____alignment_523, __size_t_15 ____size_524));// L509:L510 -extern void * ((__aligned_alloc_528) (__size_t_15 ____alignment_523, __size_t_15 ____size_524));// L509:L510 -extern void (__abort_529) (void );// L515 -extern int (__atexit_531) (void (* (____func_530)) (void ));// L519 -extern int (__at_quick_exit_533) (void (* (____func_532)) (void ));// L527 -extern int (__on_exit_538) (void (* (____func_536)) (int ____status_534, void * (____arg_535)), void * (____arg_537));// L535:L536 -extern void (__exit_540) (int ____status_539);// L543 -extern void (__exit_541) (int ____status_539);// L543 -extern void (__quick_exit_543) (int ____status_542);// L549 -extern void (___Exit_545) (int ____status_544);// L557 -extern char * ((__getenv_547) (const char * (____name_546)));// L564 -extern char * ((__getenv_548) (const char * (____name_546)));// L564 -extern int (__putenv_550) (char * (____string_549));// L578 -extern int (__setenv_554) (const char * (____name_551), const char * (____value_552), int ____replace_553);// L584:L585 -extern int (__unsetenv_556) (const char * (____name_555));// L588 -extern int (__clearenv_557) (void );// L595 -extern char * ((__mktemp_559) (char * (____template_558)));// L606 -extern int (__mkstemp_562) (char * (____template_560));// L619 -extern int (__mkstemp_564) (char * (____template_560));// L619 -extern int (__mkstemp_563) (char * (____template_561));// L622:L623 -extern int (__mkstemp_565) (char * (____template_561));// L622:L623 -extern int (__mkstemps_570) (char * (____template_566), int ____suffixlen_567);// L641 -extern int (__mkstemps_571) (char * (____template_568), int ____suffixlen_569);// L644:L645 -extern int (__mkstemps_572) (char * (____template_566), int ____suffixlen_567);// L641 -extern int (__mkstemps_573) (char * (____template_568), int ____suffixlen_569);// L644:L645 -extern char * ((__mkdtemp_575) (char * (____template_574)));// L662 -extern char * ((__mkdtemp_576) (char * (____template_574)));// L662 -extern int (__system_578) (const char * (____command_577));// L716 -extern int (__system_579) (const char * (____command_577));// L716 -extern int (__system_580) (const char * (____command_577));// L716 -extern int (__system_581) (const char * (____command_577));// L716 -extern char * ((__realpath_584) (const char * __restrict ____name_582, char * __restrict ____resolved_583));// L733:L734 -extern char * ((__realpath_585) (const char * __restrict ____name_582, char * __restrict ____resolved_583));// L733:L734 -// typedef moved to top of scope -extern void * ((__bsearch_594) (const void * (____key_587), const void * (____base_588), __size_t_15 ____nmemb_589, __size_t_15 ____size_590, ____compar_fn_t_586 ____compar_591));// L754:L756 -extern void * ((__bsearch_596) (const void * (____key_587), const void * (____base_588), __size_t_15 ____nmemb_589, __size_t_15 ____size_590, ____compar_fn_t_586 ____compar_591));// L754:L756 +extern int (__rand_76) (void );// L374 +extern int (__rand_77) (void );// L374 +extern void (__srand_79) (unsigned int ____seed_78);// L376 +extern void * ((__malloc_81) (__size_t_15 ____size_80));// L466 +extern void * ((__malloc_82) (__size_t_15 ____size_80));// L466 +extern void * ((__calloc_85) (__size_t_15 ____nmemb_83, __size_t_15 ____size_84));// L468:L469 +extern void * ((__calloc_86) (__size_t_15 ____nmemb_83, __size_t_15 ____size_84));// L468:L469 +extern void * ((__realloc_89) (void * (____ptr_87), __size_t_15 ____size_88));// L480:L481 +extern void * ((__realloc_90) (void * (____ptr_87), __size_t_15 ____size_88));// L480:L481 +extern void (__free_92) (void * (____ptr_91));// L483 +extern void * ((__aligned_alloc_95) (__size_t_15 ____alignment_93, __size_t_15 ____size_94));// L509:L510 +extern void * ((__aligned_alloc_96) (__size_t_15 ____alignment_93, __size_t_15 ____size_94));// L509:L510 +extern void (__abort_97) (void );// L515 +extern int (__atexit_99) (void (* (____func_98)) (void ));// L519 +extern int (__at_quick_exit_101) (void (* (____func_100)) (void ));// L527 +extern void (__exit_103) (int ____status_102);// L543 +extern void (__quick_exit_105) (int ____status_104);// L549 +extern void (___Exit_107) (int ____status_106);// L557 +extern char * ((__getenv_109) (const char * (____name_108)));// L564 +extern char * ((__getenv_110) (const char * (____name_108)));// L564 +extern int (__system_112) (const char * (____command_111));// L716 +extern int (__system_113) (const char * (____command_111));// L716 +// typedef moved to top of scope +extern void * ((__bsearch_122) (const void * (____key_115), const void * (____base_116), __size_t_15 ____nmemb_117, __size_t_15 ____size_118, ____compar_fn_t_114 ____compar_119));// L754:L756 +extern void * ((__bsearch_124) (const void * (____key_115), const void * (____base_116), __size_t_15 ____nmemb_117, __size_t_15 ____size_118, ____compar_fn_t_114 ____compar_119));// L754:L756 /* no function due to type errors in the function prototype */ -extern void (__qsort_615) (void * (____base_610), __size_t_15 ____nmemb_611, __size_t_15 ____size_612, ____compar_fn_t_586 ____compar_613);// L764:L765 -extern void (__qsort_617) (void * (____base_610), __size_t_15 ____nmemb_611, __size_t_15 ____size_612, ____compar_fn_t_586 ____compar_613);// L764:L765 -extern int (__abs_620) (int ____x_619);// L774 -extern int (__abs_621) (int ____x_619);// L774 -extern long int (__labs_623) (long int ____x_622);// L775 -extern long int (__labs_624) (long int ____x_622);// L775 -extern long long int (__llabs_626) (long long int ____x_625);// L779:L780 -extern long long int (__llabs_627) (long long int ____x_625);// L779:L780 -extern __div_t_108 (__div_630) (int ____numer_628, int ____denom_629);// L788:L789 -extern __div_t_108 (__div_631) (int ____numer_628, int ____denom_629);// L788:L789 -extern __ldiv_t_113 (__ldiv_634) (long int ____numer_632, long int ____denom_633);// L790:L791 -extern __ldiv_t_113 (__ldiv_636) (long int ____numer_632, long int ____denom_633);// L790:L791 -extern __lldiv_t_118 (__lldiv_640) (long long int ____numer_638, long long int ____denom_639);// L796:L798 -extern __lldiv_t_118 (__lldiv_642) (long long int ____numer_638, long long int ____denom_639);// L796:L798 -extern char * ((__ecvt_648) (double ____value_644, int ____ndigit_645, int * __restrict ____decpt_646, int * __restrict ____sign_647));// L811:L812 -extern char * ((__ecvt_649) (double ____value_644, int ____ndigit_645, int * __restrict ____decpt_646, int * __restrict ____sign_647));// L811:L812 -extern char * ((__fcvt_654) (double ____value_650, int ____ndigit_651, int * __restrict ____decpt_652, int * __restrict ____sign_653));// L817:L818 -extern char * ((__fcvt_655) (double ____value_650, int ____ndigit_651, int * __restrict ____decpt_652, int * __restrict ____sign_653));// L817:L818 -extern char * ((__gcvt_659) (double ____value_656, int ____ndigit_657, char * (____buf_658)));// L823:L824 -extern char * ((__gcvt_660) (double ____value_656, int ____ndigit_657, char * (____buf_658)));// L823:L824 -extern char * ((__qecvt_665) (long double ____value_661, int ____ndigit_662, int * __restrict ____decpt_663, int * __restrict ____sign_664));// L829:L831 -extern char * ((__qecvt_666) (long double ____value_661, int ____ndigit_662, int * __restrict ____decpt_663, int * __restrict ____sign_664));// L829:L831 -extern char * ((__qfcvt_671) (long double ____value_667, int ____ndigit_668, int * __restrict ____decpt_669, int * __restrict ____sign_670));// L832:L834 -extern char * ((__qfcvt_672) (long double ____value_667, int ____ndigit_668, int * __restrict ____decpt_669, int * __restrict ____sign_670));// L832:L834 -extern char * ((__qgcvt_676) (long double ____value_673, int ____ndigit_674, char * (____buf_675)));// L835:L836 -extern char * ((__qgcvt_677) (long double ____value_673, int ____ndigit_674, char * (____buf_675)));// L835:L836 -extern int (__ecvt_r_684) (double ____value_678, int ____ndigit_679, int * __restrict ____decpt_680, int * __restrict ____sign_681, char * __restrict ____buf_682, __size_t_15 ____len_683);// L841:L843 -extern int (__fcvt_r_691) (double ____value_685, int ____ndigit_686, int * __restrict ____decpt_687, int * __restrict ____sign_688, char * __restrict ____buf_689, __size_t_15 ____len_690);// L844:L846 -extern int (__qecvt_r_698) (long double ____value_692, int ____ndigit_693, int * __restrict ____decpt_694, int * __restrict ____sign_695, char * __restrict ____buf_696, __size_t_15 ____len_697);// L848:L851 -extern int (__qfcvt_r_705) (long double ____value_699, int ____ndigit_700, int * __restrict ____decpt_701, int * __restrict ____sign_702, char * __restrict ____buf_703, __size_t_15 ____len_704);// L852:L855 -extern int (__mblen_708) (const char * (____s_706), __size_t_15 ____n_707);// L862 -extern int (__mblen_709) (const char * (____s_706), __size_t_15 ____n_707);// L862 -extern int (__mbtowc_713) (__wchar_t_16 * __restrict ____pwc_710, const char * __restrict ____s_711, __size_t_15 ____n_712);// L865:L866 -extern int (__wctomb_716) (char * (____s_714), __wchar_t_16 ____wchar_715);// L869 -extern __size_t_15 (__mbstowcs_720) (__wchar_t_16 * __restrict ____pwcs_717, const char * __restrict ____s_718, __size_t_15 ____n_719);// L873:L874 -extern __size_t_15 (__wcstombs_724) (char * __restrict ____s_721, const __wchar_t_16 * __restrict ____pwcs_722, __size_t_15 ____n_723);// L876:L878 -extern int (__rpmatch_727) (const char * (____response_725));// L887 -extern int (__rpmatch_726) (const char * (____response_725));// L887 -extern int (__getsubopt_732) (char * (* __restrict ____optionp_728), char * const * __restrict ____tokens_729, char * (* __restrict ____valuep_730));// L898:L901 -extern int (__getsubopt_731) (char * (* __restrict ____optionp_728), char * const * __restrict ____tokens_729, char * (* __restrict ____valuep_730));// L898:L901 -extern int (__getloadavg_735) (double ____loadavg_733[], int ____nelem_734);// L950:L951 +extern void (__qsort_143) (void * (____base_138), __size_t_15 ____nmemb_139, __size_t_15 ____size_140, ____compar_fn_t_114 ____compar_141);// L764:L765 +extern void (__qsort_145) (void * (____base_138), __size_t_15 ____nmemb_139, __size_t_15 ____size_140, ____compar_fn_t_114 ____compar_141);// L764:L765 +extern int (__abs_148) (int ____x_147);// L774 +extern int (__abs_149) (int ____x_147);// L774 +extern long int (__labs_151) (long int ____x_150);// L775 +extern long int (__labs_152) (long int ____x_150);// L775 +extern long long int (__llabs_154) (long long int ____x_153);// L779:L780 +extern long long int (__llabs_155) (long long int ____x_153);// L779:L780 +extern __div_t_21 (__div_158) (int ____numer_156, int ____denom_157);// L788:L789 +extern __div_t_21 (__div_159) (int ____numer_156, int ____denom_157);// L788:L789 +extern __ldiv_t_26 (__ldiv_162) (long int ____numer_160, long int ____denom_161);// L790:L791 +extern __ldiv_t_26 (__ldiv_164) (long int ____numer_160, long int ____denom_161);// L790:L791 +extern __lldiv_t_31 (__lldiv_168) (long long int ____numer_166, long long int ____denom_167);// L796:L798 +extern __lldiv_t_31 (__lldiv_170) (long long int ____numer_166, long long int ____denom_167);// L796:L798 +extern int (__mblen_174) (const char * (____s_172), __size_t_15 ____n_173);// L862 +extern int (__mbtowc_178) (__wchar_t_16 * __restrict ____pwc_175, const char * __restrict ____s_176, __size_t_15 ____n_177);// L865:L866 +extern int (__wctomb_181) (char * (____s_179), __wchar_t_16 ____wchar_180);// L869 +extern __size_t_15 (__mbstowcs_185) (__wchar_t_16 * __restrict ____pwcs_182, const char * __restrict ____s_183, __size_t_15 ____n_184);// L873:L874 +extern __size_t_15 (__wcstombs_189) (char * __restrict ____s_186, const __wchar_t_16 * __restrict ____pwcs_187, __size_t_15 ____n_188);// L876:L878 /* no function due to type errors in the function prototype */ -extern char * ((____realpath_chk_740) (const char * __restrict ____name_737, char * __restrict ____resolved_738, __size_t_15 ____resolvedlen_739));// L23:L25 -extern char * ((____realpath_alias_743) (const char * __restrict ____name_741, char * __restrict ____resolved_742));// L26:L28 -extern char * ((____realpath_chk_warn_747) (const char * __restrict ____name_744, char * __restrict ____resolved_745, __size_t_15 ____resolvedlen_746));// L29:L34 +extern char * ((____realpath_chk_194) (const char * __restrict ____name_191, char * __restrict ____resolved_192, __size_t_15 ____resolvedlen_193));// L23:L25 +extern char * ((____realpath_alias_197) (const char * __restrict ____name_195, char * __restrict ____resolved_196));// L26:L28 +extern char * ((____realpath_chk_warn_201) (const char * __restrict ____name_198, char * __restrict ____resolved_199, __size_t_15 ____resolvedlen_200));// L29:L34 /* no function due to type errors in the function prototype */ -extern int (____ptsname_r_chk_755) (int ____fd_751, char * (____buf_752), __size_t_15 ____buflen_753, __size_t_15 ____nreal_754);// L52:L53 -extern int (____ptsname_r_alias_759) (int ____fd_756, char * (____buf_757), __size_t_15 ____buflen_758);// L54:L56 -extern int (____ptsname_r_chk_warn_764) (int ____fd_760, char * (____buf_761), __size_t_15 ____buflen_762, __size_t_15 ____nreal_763);// L57:L61 +extern int (____ptsname_r_chk_209) (int ____fd_205, char * (____buf_206), __size_t_15 ____buflen_207, __size_t_15 ____nreal_208);// L52:L53 +extern int (____ptsname_r_alias_213) (int ____fd_210, char * (____buf_211), __size_t_15 ____buflen_212);// L54:L56 +extern int (____ptsname_r_chk_warn_218) (int ____fd_214, char * (____buf_215), __size_t_15 ____buflen_216, __size_t_15 ____nreal_217);// L57:L61 /* no function due to type errors in the function prototype */ -extern int (____wctomb_chk_772) (char * (____s_769), __wchar_t_16 ____wchar_770, __size_t_15 ____buflen_771);// L77:L78 -extern int (____wctomb_alias_775) (char * (____s_773), __wchar_t_16 ____wchar_774);// L79:L80 +extern int (____wctomb_chk_226) (char * (____s_223), __wchar_t_16 ____wchar_224, __size_t_15 ____buflen_225);// L77:L78 +extern int (____wctomb_alias_229) (char * (____s_227), __wchar_t_16 ____wchar_228);// L79:L80 /* no function due to type errors in the function prototype */ -extern __size_t_15 (____mbstowcs_chk_782) (__wchar_t_16 * __restrict ____dst_778, const char * __restrict ____src_779, __size_t_15 ____len_780, __size_t_15 ____dstlen_781);// L98:L100 -extern __size_t_15 (____mbstowcs_alias_786) (__wchar_t_16 * __restrict ____dst_783, const char * __restrict ____src_784, __size_t_15 ____len_785);// L101:L104 -extern __size_t_15 (____mbstowcs_chk_warn_791) (__wchar_t_16 * __restrict ____dst_787, const char * __restrict ____src_788, __size_t_15 ____len_789, __size_t_15 ____dstlen_790);// L105:L110 +extern __size_t_15 (____mbstowcs_chk_236) (__wchar_t_16 * __restrict ____dst_232, const char * __restrict ____src_233, __size_t_15 ____len_234, __size_t_15 ____dstlen_235);// L98:L100 +extern __size_t_15 (____mbstowcs_alias_240) (__wchar_t_16 * __restrict ____dst_237, const char * __restrict ____src_238, __size_t_15 ____len_239);// L101:L104 +extern __size_t_15 (____mbstowcs_chk_warn_245) (__wchar_t_16 * __restrict ____dst_241, const char * __restrict ____src_242, __size_t_15 ____len_243, __size_t_15 ____dstlen_244);// L105:L110 /* no function due to type errors in the function prototype */ -extern __size_t_15 (____wcstombs_chk_799) (char * __restrict ____dst_795, const __wchar_t_16 * __restrict ____src_796, __size_t_15 ____len_797, __size_t_15 ____dstlen_798);// L130:L132 -extern __size_t_15 (____wcstombs_alias_803) (char * __restrict ____dst_800, const __wchar_t_16 * __restrict ____src_801, __size_t_15 ____len_802);// L133:L136 -extern __size_t_15 (____wcstombs_chk_warn_808) (char * __restrict ____dst_804, const __wchar_t_16 * __restrict ____src_805, __size_t_15 ____len_806, __size_t_15 ____dstlen_807);// L137:L141 +extern __size_t_15 (____wcstombs_chk_253) (char * __restrict ____dst_249, const __wchar_t_16 * __restrict ____src_250, __size_t_15 ____len_251, __size_t_15 ____dstlen_252);// L130:L132 +extern __size_t_15 (____wcstombs_alias_257) (char * __restrict ____dst_254, const __wchar_t_16 * __restrict ____src_255, __size_t_15 ____len_256);// L133:L136 +extern __size_t_15 (____wcstombs_chk_warn_262) (char * __restrict ____dst_258, const __wchar_t_16 * __restrict ____src_259, __size_t_15 ____len_260, __size_t_15 ____dstlen_261);// L137:L141 /* no function due to type errors in the function prototype */ -void * ((__vlan_dev_real_dev_812) ()) { +void * ((__vlan_dev_real_dev_266) ()) { -if (__static_condition_default_813) { +if (__static_condition_default_267) { { { -if (__static_condition_default_814) { +if (__static_condition_default_268) { ( ( void ) ( 0 ) ) ; // L13:L50 } -if (__static_condition_default_815) { +if (__static_condition_default_269) { ( ( 0 ) ? ( void ) ( 0 ) : ____assert_fail_4 ("false","/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.c",13, __PRETTY_FUNCTION__ ) ) ; // L13:L91 } -if (__static_condition_default_816) { +if (__static_condition_default_270) { __static_type_error("type error") ; // L13:L91 } -if (__static_condition_default_817) { return ( ( void * ) 0 ) ;// L14 } -if (__static_condition_default_818) { -__static_type_error("invalid type found in return expression"); -} -} } } } -void * ((__vlan_dev_real_dev_819) ()) { +void * ((__vlan_dev_real_dev_271) ()) { -if (__static_condition_default_820) { +if (__static_condition_default_272) { { { -if (__static_condition_default_821) { return ( ( void * ) 0 ) ;// L8 } -if (__static_condition_default_822) { -__static_type_error("invalid type found in return expression"); -} -} } } } -static int (__ocrdma_inet6addr_event_823) () { +static int (__ocrdma_inet6addr_event_273) () { -if (__static_condition_default_824) { +if (__static_condition_default_274) { { { -if (__static_condition_default_825) { - __vlan_dev_real_dev_812 ( ) ; // L21 +if (__static_condition_default_275) { + __vlan_dev_real_dev_266 ( ) ; // L21 } -if (__static_condition_default_826) { - __vlan_dev_real_dev_819 ( ) ; // L21 +if (__static_condition_default_276) { + __vlan_dev_real_dev_271 ( ) ; // L21 } return 0 ;// L23 } @@ -1394,9 +328,9 @@ return 0 ;// L23 } } -int (__main_829) (int __argc_827, char * (* (__argv_828))) { +int (__main_279) (int __argc_277, char * (* (__argv_278))) { -if (__static_condition_default_831) { +if (__static_condition_default_281) { { { @@ -1410,16 +344,16 @@ return 0 ;// L32 } } -int (__main_830) (int __argc_827, char * (* (__argv_828))) { +int (__main_280) (int __argc_277, char * (* (__argv_278))) { -if (__static_condition_default_832) { +if (__static_condition_default_282) { { { - __ocrdma_inet6addr_event_823 ( ) ; // L30 + __ocrdma_inet6addr_event_273 ( ) ; // L30 return 0 ;// L32 } } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d6c7e113959.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/d6c7e113959.desugared.c index 91a67809..f92f29f8 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/d6c7e113959.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/d6c7e113959.desugared.c @@ -8,12 +8,12 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); extern const bool __static_condition_default_8; -extern const bool __static_condition_default_9; +extern const bool __static_condition_default_13; extern const bool __static_condition_default_14; +extern const bool __static_condition_default_9; +extern const bool __static_condition_default_4; extern const bool __static_condition_default_10; extern const bool __static_condition_default_5; -extern const bool __static_condition_default_13; -extern const bool __static_condition_default_4; void __static_initializer_default() { __static_renaming("__max8660_pdata_from_dt_2", "max8660_pdata_from_dt"); __static_renaming("__max8660_pdata_from_dt_3", "max8660_pdata_from_dt"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.clangres b/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.clangres index 25e6ee53..e69de29b 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.clangres @@ -1,4 +0,0 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.c:30:7: warning: Value stored to 'reserved' is never read [deadcode.DeadStores] - reserved = 1; - ^ ~ -1 warning generated. diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.desugared.c index 547b9620..e69de29b 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.desugared.c @@ -1,1424 +0,0 @@ -#include - -extern void __static_parse_error(char *msg); -extern void __static_type_error(char *msg); -extern void __static_renaming(char *renaming, char *original); -extern void __static_condition_renaming(char *expression, char *renaming); - -void __static_initializer_default(); - -extern const bool __static_condition_default_276; -extern const bool __static_condition_default_810; -extern const bool __static_condition_default_60; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_581; -extern const bool __static_condition_default_67; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_414; -extern const bool __static_condition_default_800; -extern const bool __static_condition_default_378; -extern const bool __static_condition_default_285; -extern const bool __static_condition_default_426; -extern const bool __static_condition_default_394; -extern const bool __static_condition_default_379; -extern const bool __static_condition_default_799; -extern const bool __static_condition_default_811; -extern const bool __static_condition_default_325; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_579; -extern const bool __static_condition_default_361; -extern const bool __static_condition_default_237; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_261; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_423; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_215; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_279; -extern const bool __static_condition_default_812; -extern const bool __static_condition_default_595; -extern const bool __static_condition_default_308; -extern const bool __static_condition_default_234; -extern const bool __static_condition_default_243; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_420; -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_302; -extern const bool __static_condition_default_429; -extern const bool __static_condition_default_240; -extern const bool __static_condition_default_305; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_252; -extern const bool __static_condition_default_629; -extern const bool __static_condition_default_273; -extern const bool __static_condition_default_798; -extern const bool __static_condition_default_816; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_349; -extern const bool __static_condition_default_352; -extern const bool __static_condition_default_604; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_627; -extern const bool __static_condition_default_594; -extern const bool __static_condition_default_288; -void __static_initializer_default() { -__static_renaming("__ptrdiff_t_0", "ptrdiff_t"); -__static_renaming("__size_t_1", "size_t"); -__static_renaming("__wchar_t_2", "wchar_t"); -__static_renaming("__idtype_t_8", "idtype_t"); -__static_renaming("____u_char_9", "__u_char"); -__static_renaming("____u_short_10", "__u_short"); -__static_renaming("____u_int_11", "__u_int"); -__static_renaming("____u_long_12", "__u_long"); -__static_renaming("____int8_t_13", "__int8_t"); -__static_renaming("____uint8_t_14", "__uint8_t"); -__static_renaming("____int16_t_15", "__int16_t"); -__static_renaming("____uint16_t_16", "__uint16_t"); -__static_renaming("____int32_t_17", "__int32_t"); -__static_renaming("____uint32_t_18", "__uint32_t"); -__static_renaming("____int64_t_19", "__int64_t"); -__static_renaming("____uint64_t_20", "__uint64_t"); -__static_renaming("____quad_t_21", "__quad_t"); -__static_renaming("____u_quad_t_22", "__u_quad_t"); -__static_renaming("____dev_t_23", "__dev_t"); -__static_renaming("____uid_t_24", "__uid_t"); -__static_renaming("____gid_t_25", "__gid_t"); -__static_renaming("____ino_t_26", "__ino_t"); -__static_renaming("____ino64_t_27", "__ino64_t"); -__static_renaming("____mode_t_28", "__mode_t"); -__static_renaming("____nlink_t_29", "__nlink_t"); -__static_renaming("____off_t_30", "__off_t"); -__static_renaming("____off64_t_31", "__off64_t"); -__static_renaming("____pid_t_32", "__pid_t"); -__static_renaming("____fsid_t_36", "__fsid_t"); -__static_renaming("____clock_t_37", "__clock_t"); -__static_renaming("____rlim_t_38", "__rlim_t"); -__static_renaming("____rlim64_t_39", "__rlim64_t"); -__static_renaming("____id_t_40", "__id_t"); -__static_renaming("____time_t_41", "__time_t"); -__static_renaming("____useconds_t_42", "__useconds_t"); -__static_renaming("____suseconds_t_43", "__suseconds_t"); -__static_renaming("____daddr_t_44", "__daddr_t"); -__static_renaming("____key_t_45", "__key_t"); -__static_renaming("____clockid_t_46", "__clockid_t"); -__static_renaming("____timer_t_47", "__timer_t"); -__static_renaming("____blksize_t_48", "__blksize_t"); -__static_renaming("____blkcnt_t_49", "__blkcnt_t"); -__static_renaming("____blkcnt64_t_50", "__blkcnt64_t"); -__static_renaming("____fsblkcnt_t_51", "__fsblkcnt_t"); -__static_renaming("____fsblkcnt64_t_52", "__fsblkcnt64_t"); -__static_renaming("____fsfilcnt_t_53", "__fsfilcnt_t"); -__static_renaming("____fsfilcnt64_t_54", "__fsfilcnt64_t"); -__static_renaming("____fsword_t_55", "__fsword_t"); -__static_renaming("____ssize_t_56", "__ssize_t"); -__static_renaming("____syscall_slong_t_57", "__syscall_slong_t"); -__static_renaming("____syscall_ulong_t_58", "__syscall_ulong_t"); -__static_renaming("____loff_t_59", "__loff_t"); -__static_renaming("____qaddr_t_61", "__qaddr_t"); -__static_renaming("____caddr_t_62", "__caddr_t"); -__static_renaming("____intptr_t_63", "__intptr_t"); -__static_renaming("____socklen_t_64", "__socklen_t"); -__static_renaming("____bswap_32_66", "__bswap_32"); -__static_renaming("____bswap_64_69", "__bswap_64"); -__static_renaming("____WAIT_STATUS_89", "__WAIT_STATUS"); -__static_renaming("__div_t_94", "div_t"); -__static_renaming("__ldiv_t_99", "ldiv_t"); -__static_renaming("__lldiv_t_104", "lldiv_t"); -__static_renaming("____ctype_get_mb_cur_max_105", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_106", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_107", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_108", "__ctype_get_mb_cur_max"); -__static_renaming("__atof_110", "atof"); -__static_renaming("__atof_111", "atof"); -__static_renaming("__atoi_113", "atoi"); -__static_renaming("__atoi_114", "atoi"); -__static_renaming("__atol_116", "atol"); -__static_renaming("__atol_117", "atol"); -__static_renaming("__atoll_119", "atoll"); -__static_renaming("__atoll_120", "atoll"); -__static_renaming("__strtod_123", "strtod"); -__static_renaming("__strtof_126", "strtof"); -__static_renaming("__strtold_129", "strtold"); -__static_renaming("__strtol_133", "strtol"); -__static_renaming("__strtoul_137", "strtoul"); -__static_renaming("__strtoq_141", "strtoq"); -__static_renaming("__strtouq_145", "strtouq"); -__static_renaming("__strtoll_149", "strtoll"); -__static_renaming("__strtoll_150", "strtoll"); -__static_renaming("__strtoull_154", "strtoull"); -__static_renaming("__l64a_159", "l64a"); -__static_renaming("__l64a_160", "l64a"); -__static_renaming("__a64l_162", "a64l"); -__static_renaming("__a64l_163", "a64l"); -__static_renaming("____u_char_164", "__u_char"); -__static_renaming("____u_short_165", "__u_short"); -__static_renaming("____u_int_166", "__u_int"); -__static_renaming("____u_long_167", "__u_long"); -__static_renaming("____int8_t_168", "__int8_t"); -__static_renaming("____uint8_t_169", "__uint8_t"); -__static_renaming("____int16_t_170", "__int16_t"); -__static_renaming("____uint16_t_171", "__uint16_t"); -__static_renaming("____int32_t_172", "__int32_t"); -__static_renaming("____uint32_t_173", "__uint32_t"); -__static_renaming("____int64_t_174", "__int64_t"); -__static_renaming("____uint64_t_175", "__uint64_t"); -__static_renaming("____quad_t_176", "__quad_t"); -__static_renaming("____u_quad_t_177", "__u_quad_t"); -__static_renaming("____dev_t_178", "__dev_t"); -__static_renaming("____uid_t_179", "__uid_t"); -__static_renaming("____gid_t_180", "__gid_t"); -__static_renaming("____ino_t_181", "__ino_t"); -__static_renaming("____ino64_t_182", "__ino64_t"); -__static_renaming("____mode_t_183", "__mode_t"); -__static_renaming("____nlink_t_184", "__nlink_t"); -__static_renaming("____off_t_185", "__off_t"); -__static_renaming("____off64_t_186", "__off64_t"); -__static_renaming("____pid_t_187", "__pid_t"); -__static_renaming("____fsid_t_191", "__fsid_t"); -__static_renaming("____clock_t_192", "__clock_t"); -__static_renaming("____rlim_t_193", "__rlim_t"); -__static_renaming("____rlim64_t_194", "__rlim64_t"); -__static_renaming("____id_t_195", "__id_t"); -__static_renaming("____time_t_196", "__time_t"); -__static_renaming("____useconds_t_197", "__useconds_t"); -__static_renaming("____suseconds_t_198", "__suseconds_t"); -__static_renaming("____daddr_t_199", "__daddr_t"); -__static_renaming("____key_t_200", "__key_t"); -__static_renaming("____clockid_t_201", "__clockid_t"); -__static_renaming("____timer_t_202", "__timer_t"); -__static_renaming("____blksize_t_203", "__blksize_t"); -__static_renaming("____blkcnt_t_204", "__blkcnt_t"); -__static_renaming("____blkcnt64_t_205", "__blkcnt64_t"); -__static_renaming("____fsblkcnt_t_206", "__fsblkcnt_t"); -__static_renaming("____fsblkcnt64_t_207", "__fsblkcnt64_t"); -__static_renaming("____fsfilcnt_t_208", "__fsfilcnt_t"); -__static_renaming("____fsfilcnt64_t_209", "__fsfilcnt64_t"); -__static_renaming("____fsword_t_210", "__fsword_t"); -__static_renaming("____ssize_t_211", "__ssize_t"); -__static_renaming("____syscall_slong_t_212", "__syscall_slong_t"); -__static_renaming("____syscall_ulong_t_213", "__syscall_ulong_t"); -__static_renaming("____loff_t_214", "__loff_t"); -__static_renaming("____qaddr_t_216", "__qaddr_t"); -__static_renaming("____caddr_t_217", "__caddr_t"); -__static_renaming("____intptr_t_218", "__intptr_t"); -__static_renaming("____socklen_t_219", "__socklen_t"); -__static_renaming("__u_char_220", "u_char"); -__static_renaming("__u_char_221", "u_char"); -__static_renaming("__u_short_222", "u_short"); -__static_renaming("__u_short_223", "u_short"); -__static_renaming("__u_int_224", "u_int"); -__static_renaming("__u_int_225", "u_int"); -__static_renaming("__u_long_226", "u_long"); -__static_renaming("__u_long_227", "u_long"); -__static_renaming("__quad_t_228", "quad_t"); -__static_renaming("__quad_t_229", "quad_t"); -__static_renaming("__u_quad_t_230", "u_quad_t"); -__static_renaming("__u_quad_t_231", "u_quad_t"); -__static_renaming("__fsid_t_232", "fsid_t"); -__static_renaming("__fsid_t_233", "fsid_t"); -__static_renaming("__loff_t_235", "loff_t"); -__static_renaming("__loff_t_236", "loff_t"); -__static_renaming("__loff_t_238", "loff_t"); -__static_renaming("__loff_t_239", "loff_t"); -__static_renaming("__ino_t_241", "ino_t"); -__static_renaming("__ino_t_242", "ino_t"); -__static_renaming("__ino_t_244", "ino_t"); -__static_renaming("__ino_t_245", "ino_t"); -__static_renaming("__dev_t_247", "dev_t"); -__static_renaming("__dev_t_248", "dev_t"); -__static_renaming("__gid_t_250", "gid_t"); -__static_renaming("__gid_t_251", "gid_t"); -__static_renaming("__gid_t_253", "gid_t"); -__static_renaming("__gid_t_254", "gid_t"); -__static_renaming("__mode_t_256", "mode_t"); -__static_renaming("__mode_t_257", "mode_t"); -__static_renaming("__nlink_t_259", "nlink_t"); -__static_renaming("__nlink_t_260", "nlink_t"); -__static_renaming("__uid_t_262", "uid_t"); -__static_renaming("__uid_t_263", "uid_t"); -__static_renaming("__uid_t_265", "uid_t"); -__static_renaming("__uid_t_266", "uid_t"); -__static_renaming("__off_t_268", "off_t"); -__static_renaming("__off_t_269", "off_t"); -__static_renaming("__off_t_271", "off_t"); -__static_renaming("__off_t_272", "off_t"); -__static_renaming("__pid_t_274", "pid_t"); -__static_renaming("__pid_t_275", "pid_t"); -__static_renaming("__pid_t_277", "pid_t"); -__static_renaming("__pid_t_278", "pid_t"); -__static_renaming("__id_t_280", "id_t"); -__static_renaming("__id_t_281", "id_t"); -__static_renaming("__ssize_t_283", "ssize_t"); -__static_renaming("__ssize_t_284", "ssize_t"); -__static_renaming("__daddr_t_286", "daddr_t"); -__static_renaming("__daddr_t_287", "daddr_t"); -__static_renaming("__caddr_t_289", "caddr_t"); -__static_renaming("__caddr_t_290", "caddr_t"); -__static_renaming("__key_t_291", "key_t"); -__static_renaming("__key_t_292", "key_t"); -__static_renaming("__key_t_294", "key_t"); -__static_renaming("__key_t_295", "key_t"); -__static_renaming("__clock_t_297", "clock_t"); -__static_renaming("__clock_t_298", "clock_t"); -__static_renaming("__time_t_300", "time_t"); -__static_renaming("__time_t_301", "time_t"); -__static_renaming("__clockid_t_303", "clockid_t"); -__static_renaming("__clockid_t_304", "clockid_t"); -__static_renaming("__timer_t_306", "timer_t"); -__static_renaming("__timer_t_307", "timer_t"); -__static_renaming("__ulong_309", "ulong"); -__static_renaming("__ulong_310", "ulong"); -__static_renaming("__ulong_311", "ulong"); -__static_renaming("__ushort_312", "ushort"); -__static_renaming("__uint_313", "uint"); -__static_renaming("__int8_t_314", "int8_t"); -__static_renaming("__int16_t_315", "int16_t"); -__static_renaming("__int32_t_316", "int32_t"); -__static_renaming("__int64_t_317", "int64_t"); -__static_renaming("__u_int8_t_318", "u_int8_t"); -__static_renaming("__u_int16_t_319", "u_int16_t"); -__static_renaming("__u_int32_t_320", "u_int32_t"); -__static_renaming("__u_int64_t_321", "u_int64_t"); -__static_renaming("__register_t_322", "register_t"); -__static_renaming("____bswap_32_324", "__bswap_32"); -__static_renaming("____bswap_64_327", "__bswap_64"); -__static_renaming("____sig_atomic_t_328", "__sig_atomic_t"); -__static_renaming("____sigset_t_332", "__sigset_t"); -__static_renaming("__sigset_t_333", "sigset_t"); -__static_renaming("__suseconds_t_350", "suseconds_t"); -__static_renaming("__suseconds_t_351", "suseconds_t"); -__static_renaming("____fd_mask_353", "__fd_mask"); -__static_renaming("____fd_mask_354", "__fd_mask"); -__static_renaming("__fd_set_362", "fd_set"); -__static_renaming("__fd_mask_363", "fd_mask"); -__static_renaming("__fd_mask_364", "fd_mask"); -__static_renaming("__select_376", "select"); -__static_renaming("__select_377", "select"); -__static_renaming("__pselect_392", "pselect"); -__static_renaming("__pselect_393", "pselect"); -__static_renaming("____fdelt_chk_397", "__fdelt_chk"); -__static_renaming("____fdelt_warn_399", "__fdelt_warn"); -__static_renaming("__gnu_dev_major_401", "gnu_dev_major"); -__static_renaming("__gnu_dev_major_402", "gnu_dev_major"); -__static_renaming("__gnu_dev_minor_404", "gnu_dev_minor"); -__static_renaming("__gnu_dev_makedev_407", "gnu_dev_makedev"); -__static_renaming("__blksize_t_412", "blksize_t"); -__static_renaming("__blksize_t_413", "blksize_t"); -__static_renaming("__blkcnt_t_415", "blkcnt_t"); -__static_renaming("__blkcnt_t_416", "blkcnt_t"); -__static_renaming("__fsblkcnt_t_418", "fsblkcnt_t"); -__static_renaming("__fsblkcnt_t_419", "fsblkcnt_t"); -__static_renaming("__blkcnt_t_421", "blkcnt_t"); -__static_renaming("__blkcnt_t_422", "blkcnt_t"); -__static_renaming("__fsblkcnt_t_424", "fsblkcnt_t"); -__static_renaming("__fsblkcnt_t_425", "fsblkcnt_t"); -__static_renaming("__fsfilcnt_t_427", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_428", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_430", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_431", "fsfilcnt_t"); -__static_renaming("__pthread_t_433", "pthread_t"); -__static_renaming("__pthread_attr_t_437", "pthread_attr_t"); -__static_renaming("____pthread_list_t_442", "__pthread_list_t"); -__static_renaming("____pthread_list_t_443", "__pthread_list_t"); -__static_renaming("__pthread_mutex_t_459", "pthread_mutex_t"); -__static_renaming("__pthread_mutexattr_t_464", "pthread_mutexattr_t"); -__static_renaming("__rand_465", "rand"); -__static_renaming("__srand_467", "srand"); -__static_renaming("__rand_r_469", "rand_r"); -__static_renaming("__drand48_470", "drand48"); -__static_renaming("__erand48_472", "erand48"); -__static_renaming("__lrand48_473", "lrand48"); -__static_renaming("__nrand48_475", "nrand48"); -__static_renaming("__mrand48_476", "mrand48"); -__static_renaming("__jrand48_478", "jrand48"); -__static_renaming("__srand48_480", "srand48"); -__static_renaming("__seed48_482", "seed48"); -__static_renaming("__lcong48_484", "lcong48"); -__static_renaming("__malloc_486", "malloc"); -__static_renaming("__malloc_487", "malloc"); -__static_renaming("__calloc_490", "calloc"); -__static_renaming("__calloc_491", "calloc"); -__static_renaming("__realloc_494", "realloc"); -__static_renaming("__free_496", "free"); -__static_renaming("__cfree_498", "cfree"); -__static_renaming("__alloca_500", "alloca"); -__static_renaming("__valloc_502", "valloc"); -__static_renaming("__valloc_503", "valloc"); -__static_renaming("__posix_memalign_507", "posix_memalign"); -__static_renaming("__posix_memalign_508", "posix_memalign"); -__static_renaming("__aligned_alloc_511", "aligned_alloc"); -__static_renaming("__aligned_alloc_512", "aligned_alloc"); -__static_renaming("__aligned_alloc_513", "aligned_alloc"); -__static_renaming("__aligned_alloc_514", "aligned_alloc"); -__static_renaming("__abort_515", "abort"); -__static_renaming("__atexit_517", "atexit"); -__static_renaming("__at_quick_exit_519", "at_quick_exit"); -__static_renaming("__on_exit_524", "on_exit"); -__static_renaming("__exit_526", "exit"); -__static_renaming("__exit_527", "exit"); -__static_renaming("__quick_exit_529", "quick_exit"); -__static_renaming("___Exit_531", "_Exit"); -__static_renaming("__getenv_533", "getenv"); -__static_renaming("__getenv_534", "getenv"); -__static_renaming("__putenv_536", "putenv"); -__static_renaming("__setenv_540", "setenv"); -__static_renaming("__unsetenv_542", "unsetenv"); -__static_renaming("__clearenv_543", "clearenv"); -__static_renaming("__mktemp_545", "mktemp"); -__static_renaming("__mkstemp_548", "mkstemp"); -__static_renaming("__mkstemp_549", "mkstemp"); -__static_renaming("__mkstemp_550", "mkstemp"); -__static_renaming("__mkstemp_551", "mkstemp"); -__static_renaming("__mkstemps_556", "mkstemps"); -__static_renaming("__mkstemps_557", "mkstemps"); -__static_renaming("__mkstemps_558", "mkstemps"); -__static_renaming("__mkstemps_559", "mkstemps"); -__static_renaming("__mkdtemp_561", "mkdtemp"); -__static_renaming("__mkdtemp_562", "mkdtemp"); -__static_renaming("__system_564", "system"); -__static_renaming("__system_565", "system"); -__static_renaming("__system_566", "system"); -__static_renaming("__system_567", "system"); -__static_renaming("__realpath_570", "realpath"); -__static_renaming("__realpath_571", "realpath"); -__static_renaming("____compar_fn_t_572", "__compar_fn_t"); -__static_renaming("__bsearch_580", "bsearch"); -__static_renaming("__bsearch_582", "bsearch"); -__static_renaming("____l_589", "__l"); -__static_renaming("____u_590", "__u"); -__static_renaming("____idx_591", "__idx"); -__static_renaming("____p_592", "__p"); -__static_renaming("____comparison_593", "__comparison"); -__static_renaming("__qsort_601", "qsort"); -__static_renaming("__qsort_603", "qsort"); -__static_renaming("__abs_606", "abs"); -__static_renaming("__abs_607", "abs"); -__static_renaming("__labs_609", "labs"); -__static_renaming("__labs_610", "labs"); -__static_renaming("__llabs_612", "llabs"); -__static_renaming("__llabs_613", "llabs"); -__static_renaming("__div_616", "div"); -__static_renaming("__div_617", "div"); -__static_renaming("__ldiv_620", "ldiv"); -__static_renaming("__ldiv_622", "ldiv"); -__static_renaming("__lldiv_626", "lldiv"); -__static_renaming("__lldiv_628", "lldiv"); -__static_renaming("__ecvt_634", "ecvt"); -__static_renaming("__ecvt_635", "ecvt"); -__static_renaming("__fcvt_640", "fcvt"); -__static_renaming("__fcvt_641", "fcvt"); -__static_renaming("__gcvt_645", "gcvt"); -__static_renaming("__gcvt_646", "gcvt"); -__static_renaming("__qecvt_651", "qecvt"); -__static_renaming("__qecvt_652", "qecvt"); -__static_renaming("__qfcvt_657", "qfcvt"); -__static_renaming("__qfcvt_658", "qfcvt"); -__static_renaming("__qgcvt_662", "qgcvt"); -__static_renaming("__qgcvt_663", "qgcvt"); -__static_renaming("__ecvt_r_670", "ecvt_r"); -__static_renaming("__fcvt_r_677", "fcvt_r"); -__static_renaming("__qecvt_r_684", "qecvt_r"); -__static_renaming("__qfcvt_r_691", "qfcvt_r"); -__static_renaming("__mblen_694", "mblen"); -__static_renaming("__mblen_695", "mblen"); -__static_renaming("__mbtowc_699", "mbtowc"); -__static_renaming("__wctomb_702", "wctomb"); -__static_renaming("__mbstowcs_706", "mbstowcs"); -__static_renaming("__wcstombs_710", "wcstombs"); -__static_renaming("__rpmatch_712", "rpmatch"); -__static_renaming("__rpmatch_713", "rpmatch"); -__static_renaming("__getsubopt_717", "getsubopt"); -__static_renaming("__getsubopt_718", "getsubopt"); -__static_renaming("__getloadavg_721", "getloadavg"); -__static_renaming("____realpath_chk_726", "__realpath_chk"); -__static_renaming("____realpath_alias_729", "__realpath_alias"); -__static_renaming("____realpath_chk_warn_733", "__realpath_chk_warn"); -__static_renaming("____ptsname_r_chk_741", "__ptsname_r_chk"); -__static_renaming("____ptsname_r_alias_745", "__ptsname_r_alias"); -__static_renaming("____ptsname_r_chk_warn_750", "__ptsname_r_chk_warn"); -__static_renaming("____wctomb_chk_758", "__wctomb_chk"); -__static_renaming("____wctomb_alias_761", "__wctomb_alias"); -__static_renaming("____mbstowcs_chk_768", "__mbstowcs_chk"); -__static_renaming("____mbstowcs_alias_772", "__mbstowcs_alias"); -__static_renaming("____mbstowcs_chk_warn_777", "__mbstowcs_chk_warn"); -__static_renaming("____wcstombs_chk_785", "__wcstombs_chk"); -__static_renaming("____wcstombs_alias_789", "__wcstombs_alias"); -__static_renaming("____wcstombs_chk_warn_794", "__wcstombs_chk_warn"); -__static_renaming("__inode_get_rsv_space_802", "inode_get_rsv_space"); -__static_renaming("__reserved_803", "reserved"); -__static_renaming("__i_804", "i"); -__static_renaming("__i_805", "i"); -__static_renaming("__j_806", "j"); -__static_renaming("__j_807", "j"); -__static_renaming("__add_dquot_ref_808", "add_dquot_ref"); -__static_renaming("__main_815", "main"); - -__static_condition_renaming("__static_condition_default_60", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_67", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_215", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_234", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __u_char_defined)"); -__static_condition_renaming("__static_condition_default_237", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __u_char_defined)"); -__static_condition_renaming("__static_condition_default_240", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __u_char_defined)"); -__static_condition_renaming("__static_condition_default_243", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ino_t_defined)"); -__static_condition_renaming("__static_condition_default_246", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ino_t_defined) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ino_t_defined)"); -__static_condition_renaming("__static_condition_default_249", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_252", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_255", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_258", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_261", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __nlink_t_defined)"); -__static_condition_renaming("__static_condition_default_264", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __nlink_t_defined)"); -__static_condition_renaming("__static_condition_default_267", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __nlink_t_defined)"); -__static_condition_renaming("__static_condition_default_270", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_273", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_276", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_279", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_282", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __id_t_defined)"); -__static_condition_renaming("__static_condition_default_285", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_288", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_293", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_296", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_299", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __clock_t_defined)"); -__static_condition_renaming("__static_condition_default_302", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __time_t_defined)"); -__static_condition_renaming("__static_condition_default_305", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __clockid_t_defined)"); -__static_condition_renaming("__static_condition_default_308", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __timer_t_defined)"); -__static_condition_renaming("__static_condition_default_325", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_341", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_349", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_352", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __suseconds_t_defined)"); -__static_condition_renaming("__static_condition_default_361", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_378", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_379", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_394", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_395", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_414", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blksize_t_defined)"); -__static_condition_renaming("__static_condition_default_417", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blkcnt_t_defined) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blkcnt_t_defined)"); -__static_condition_renaming("__static_condition_default_420", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_423", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blkcnt_t_defined)"); -__static_condition_renaming("__static_condition_default_426", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_429", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_432", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_579", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_581", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_594", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __USE_EXTERN_INLINES) && !(defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_595", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_602", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_604", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_621", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_623", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_627", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_629", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_736", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_798", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_799", "!(defined _STDLIB_H) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_800", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_801", "!(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_809", "!(defined CONFIG_QUOTA_DEBUG)"); -__static_condition_renaming("__static_condition_default_810", "!(defined _STDLIB_H) && (defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_QUOTA_DEBUG)"); -__static_condition_renaming("__static_condition_default_811", "(defined CONFIG_QUOTA_DEBUG)"); -__static_condition_renaming("__static_condition_default_812", "!(defined _STDLIB_H) && (defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined CONFIG_QUOTA_DEBUG)"); -__static_condition_renaming("__static_condition_default_816", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined __need_malloc_and_calloc) || (defined _STDLIB_H)"); - -if (__static_condition_default_816) -{ -__static_parse_error("Unable to parse"); -} -}; -typedef long int __ptrdiff_t_0;// L143:L324 -typedef long unsigned int __size_t_1;// L177:L209 -typedef int __wchar_t_2;// L243:L321 -enum ____anonymous_tag_6_7 { -__P_ALL_3, -__P_PID_4, -__P_PGID_5, -}; -typedef enum ____anonymous_tag_6_7 __idtype_t_8;// L50:L55 -typedef unsigned char ____u_char_9;// L30 -typedef unsigned short int ____u_short_10;// L31 -typedef unsigned int ____u_int_11;// L32 -typedef unsigned long int ____u_long_12;// L33 -typedef signed char ____int8_t_13;// L36 -typedef unsigned char ____uint8_t_14;// L37 -typedef signed short int ____int16_t_15;// L38 -typedef unsigned short int ____uint16_t_16;// L39 -typedef signed int ____int32_t_17;// L40 -typedef unsigned int ____uint32_t_18;// L41 -typedef signed long int ____int64_t_19;// L43 -typedef unsigned long int ____uint64_t_20;// L44 -typedef long int ____quad_t_21;// L52 -typedef unsigned long int ____u_quad_t_22;// L53 -typedef unsigned long int ____dev_t_23;// L109:L124 -typedef unsigned int ____uid_t_24;// L92:L125 -typedef unsigned int ____gid_t_25;// L92:L126 -typedef unsigned long int ____ino_t_26;// L94:L127 -typedef unsigned long int ____ino64_t_27;// L109:L128 -typedef unsigned int ____mode_t_28;// L92:L129 -typedef unsigned long int ____nlink_t_29;// L94:L130 -typedef long int ____off_t_30;// L93:L131 -typedef long int ____off64_t_31;// L108:L132 -typedef int ____pid_t_32;// L91:L133 -struct ____anonymous_tag_33_34 { -int ____val_35[2];// L72 -}; -typedef struct ____anonymous_tag_33_34 ____fsid_t_36;// L72:L134 -typedef long int ____clock_t_37;// L93:L135 -typedef unsigned long int ____rlim_t_38;// L94:L136 -typedef unsigned long int ____rlim64_t_39;// L109:L137 -typedef unsigned int ____id_t_40;// L92:L138 -typedef long int ____time_t_41;// L93:L139 -typedef unsigned int ____useconds_t_42;// L92:L140 -typedef long int ____suseconds_t_43;// L93:L141 -typedef int ____daddr_t_44;// L91:L143 -typedef int ____key_t_45;// L91:L144 -typedef int ____clockid_t_46;// L91:L147 -typedef void * (____timer_t_47);// L70:L150 -typedef long int ____blksize_t_48;// L93:L153 -typedef long int ____blkcnt_t_49;// L93:L158 -typedef long int ____blkcnt64_t_50;// L108:L159 -typedef unsigned long int ____fsblkcnt_t_51;// L94:L162 -typedef unsigned long int ____fsblkcnt64_t_52;// L109:L163 -typedef unsigned long int ____fsfilcnt_t_53;// L94:L166 -typedef unsigned long int ____fsfilcnt64_t_54;// L109:L167 -typedef long int ____fsword_t_55;// L93:L170 -typedef long int ____ssize_t_56;// L110:L172 -typedef long int ____syscall_slong_t_57;// L93:L175 -typedef unsigned long int ____syscall_ulong_t_58;// L94:L177 -typedef ____off64_t_31 ____loff_t_59;// L181 -typedef ____quad_t_21 * (____qaddr_t_61);// L182 -typedef char * (____caddr_t_62);// L183 -typedef long int ____intptr_t_63;// L110:L186 -typedef unsigned int ____socklen_t_64;// L92:L189 -struct ____anonymous_tag_70_71 { -unsigned int ____w_termsig_72 : 7;// L72 -unsigned int ____w_coredump_73 : 1;// L73 -unsigned int ____w_retcode_74 : 8;// L74 -unsigned int __anon_id_0_75 : 16;// L75 -}; -struct ____anonymous_tag_76_77 { -unsigned int ____w_stopval_78 : 8;// L87 -unsigned int ____w_stopsig_79 : 8;// L88 -unsigned int __anon_id_1_80 : 16;// L89 -}; -union __wait_81 { -int __w_status_82;// L68 -struct ____anonymous_tag_70_71 ____wait_terminated_83;// L69 -struct ____anonymous_tag_76_77 ____wait_stopped_84;// L84 -}; -union ____anonymous_tag_85_86 { -union __wait_81 * (____uptr_87);// L69 -int * (____iptr_88);// L70 -}; -typedef union ____anonymous_tag_85_86 ____WAIT_STATUS_89;// L67:L71 -struct ____anonymous_tag_90_91 { -int __quot_92;// L99 -int __rem_93;// L100 -}; -typedef struct ____anonymous_tag_90_91 __div_t_94;// L97:L101 -struct ____anonymous_tag_95_96 { -long int __quot_97;// L107 -long int __rem_98;// L108 -}; -typedef struct ____anonymous_tag_95_96 __ldiv_t_99;// L105:L109 -struct ____anonymous_tag_100_101 { -long long int __quot_102;// L119 -long long int __rem_103;// L120 -}; -typedef struct ____anonymous_tag_100_101 __lldiv_t_104;// L117:L121 -typedef unsigned char ____u_char_164;// L30 -typedef unsigned short int ____u_short_165;// L31 -typedef unsigned int ____u_int_166;// L32 -typedef unsigned long int ____u_long_167;// L33 -typedef signed char ____int8_t_168;// L36 -typedef unsigned char ____uint8_t_169;// L37 -typedef signed short int ____int16_t_170;// L38 -typedef unsigned short int ____uint16_t_171;// L39 -typedef signed int ____int32_t_172;// L40 -typedef unsigned int ____uint32_t_173;// L41 -typedef signed long int ____int64_t_174;// L43 -typedef unsigned long int ____uint64_t_175;// L44 -typedef long int ____quad_t_176;// L52 -typedef unsigned long int ____u_quad_t_177;// L53 -typedef unsigned long int ____dev_t_178;// L109:L124 -typedef unsigned int ____uid_t_179;// L92:L125 -typedef unsigned int ____gid_t_180;// L92:L126 -typedef unsigned long int ____ino_t_181;// L94:L127 -typedef unsigned long int ____ino64_t_182;// L109:L128 -typedef unsigned int ____mode_t_183;// L92:L129 -typedef unsigned long int ____nlink_t_184;// L94:L130 -typedef long int ____off_t_185;// L93:L131 -typedef long int ____off64_t_186;// L108:L132 -typedef int ____pid_t_187;// L91:L133 -struct ____anonymous_tag_188_189 { -int ____val_190[2];// L72 -}; -typedef struct ____anonymous_tag_188_189 ____fsid_t_191;// L72:L134 -typedef long int ____clock_t_192;// L93:L135 -typedef unsigned long int ____rlim_t_193;// L94:L136 -typedef unsigned long int ____rlim64_t_194;// L109:L137 -typedef unsigned int ____id_t_195;// L92:L138 -typedef long int ____time_t_196;// L93:L139 -typedef unsigned int ____useconds_t_197;// L92:L140 -typedef long int ____suseconds_t_198;// L93:L141 -typedef int ____daddr_t_199;// L91:L143 -typedef int ____key_t_200;// L91:L144 -typedef int ____clockid_t_201;// L91:L147 -typedef void * (____timer_t_202);// L70:L150 -typedef long int ____blksize_t_203;// L93:L153 -typedef long int ____blkcnt_t_204;// L93:L158 -typedef long int ____blkcnt64_t_205;// L108:L159 -typedef unsigned long int ____fsblkcnt_t_206;// L94:L162 -typedef unsigned long int ____fsblkcnt64_t_207;// L109:L163 -typedef unsigned long int ____fsfilcnt_t_208;// L94:L166 -typedef unsigned long int ____fsfilcnt64_t_209;// L109:L167 -typedef long int ____fsword_t_210;// L93:L170 -typedef long int ____ssize_t_211;// L110:L172 -typedef long int ____syscall_slong_t_212;// L93:L175 -typedef unsigned long int ____syscall_ulong_t_213;// L94:L177 -typedef ____off64_t_186 ____loff_t_214;// L181 -typedef ____quad_t_176 * (____qaddr_t_216);// L182 -typedef char * (____caddr_t_217);// L183 -typedef long int ____intptr_t_218;// L110:L186 -typedef unsigned int ____socklen_t_219;// L92:L189 -typedef ____u_char_9 __u_char_220;// L33 -typedef ____u_char_164 __u_char_221;// L33 -typedef ____u_short_10 __u_short_222;// L34 -typedef ____u_short_165 __u_short_223;// L34 -typedef ____u_int_11 __u_int_224;// L35 -typedef ____u_int_166 __u_int_225;// L35 -typedef ____u_long_12 __u_long_226;// L36 -typedef ____u_long_167 __u_long_227;// L36 -typedef ____quad_t_21 __quad_t_228;// L37 -typedef ____quad_t_176 __quad_t_229;// L37 -typedef ____u_quad_t_22 __u_quad_t_230;// L38 -typedef ____u_quad_t_177 __u_quad_t_231;// L38 -typedef ____fsid_t_36 __fsid_t_232;// L39 -typedef ____fsid_t_191 __fsid_t_233;// L39 -typedef ____loff_t_59 __loff_t_235;// L44 -typedef ____loff_t_214 __loff_t_236;// L44 -typedef ____loff_t_59 __loff_t_238;// L44 -typedef ____loff_t_214 __loff_t_239;// L44 -typedef ____ino64_t_27 __ino_t_241;// L50 -typedef ____ino64_t_182 __ino_t_242;// L50 -typedef ____ino_t_26 __ino_t_244;// L48 -typedef ____ino_t_181 __ino_t_245;// L48 -typedef ____dev_t_23 __dev_t_247;// L60 -typedef ____dev_t_178 __dev_t_248;// L60 -typedef ____gid_t_25 __gid_t_250;// L65 -typedef ____gid_t_180 __gid_t_251;// L65 -typedef ____gid_t_25 __gid_t_253;// L65 -typedef ____gid_t_180 __gid_t_254;// L65 -typedef ____mode_t_28 __mode_t_256;// L70 -typedef ____mode_t_183 __mode_t_257;// L70 -typedef ____nlink_t_29 __nlink_t_259;// L75 -typedef ____nlink_t_184 __nlink_t_260;// L75 -typedef ____uid_t_24 __uid_t_262;// L80 -typedef ____uid_t_179 __uid_t_263;// L80 -typedef ____uid_t_24 __uid_t_265;// L80 -typedef ____uid_t_179 __uid_t_266;// L80 -typedef ____off64_t_31 __off_t_268;// L88 -typedef ____off64_t_186 __off_t_269;// L88 -typedef ____off_t_30 __off_t_271;// L86 -typedef ____off_t_185 __off_t_272;// L86 -typedef ____pid_t_32 __pid_t_274;// L98 -typedef ____pid_t_187 __pid_t_275;// L98 -typedef ____pid_t_32 __pid_t_277;// L98 -typedef ____pid_t_187 __pid_t_278;// L98 -typedef ____id_t_40 __id_t_280;// L104 -typedef ____id_t_195 __id_t_281;// L104 -typedef ____ssize_t_56 __ssize_t_283;// L109 -typedef ____ssize_t_211 __ssize_t_284;// L109 -typedef ____daddr_t_44 __daddr_t_286;// L115 -typedef ____daddr_t_199 __daddr_t_287;// L115 -typedef ____caddr_t_62 __caddr_t_289;// L116 -typedef ____caddr_t_217 __caddr_t_290;// L116 -typedef ____key_t_45 __key_t_291;// L122 -typedef ____key_t_200 __key_t_292;// L122 -typedef ____key_t_45 __key_t_294;// L122 -typedef ____key_t_200 __key_t_295;// L122 -typedef ____clock_t_37 __clock_t_297;// L59 -typedef ____clock_t_192 __clock_t_298;// L59 -typedef ____time_t_41 __time_t_300;// L75 -typedef ____time_t_196 __time_t_301;// L75 -typedef ____clockid_t_46 __clockid_t_303;// L91 -typedef ____clockid_t_201 __clockid_t_304;// L91 -typedef ____timer_t_47 __timer_t_306;// L103 -typedef ____timer_t_202 __timer_t_307;// L103 -typedef unsigned long int __ulong_309;// L150 -typedef unsigned long int __ulong_310;// L150 -typedef unsigned long int __ulong_311;// L150 -typedef unsigned short int __ushort_312;// L151 -typedef unsigned int __uint_313;// L152 -typedef int __int8_t_314;// L188:L194 -typedef int __int16_t_315;// L188:L195 -typedef int __int32_t_316;// L188:L196 -typedef int __int64_t_317;// L188:L197 -typedef unsigned int __u_int8_t_318;// L190:L200 -typedef unsigned int __u_int16_t_319;// L190:L201 -typedef unsigned int __u_int32_t_320;// L190:L202 -typedef unsigned int __u_int64_t_321;// L190:L203 -typedef int __register_t_322;// L205 -typedef int ____sig_atomic_t_328;// L22 -struct ____anonymous_tag_329_330 { -unsigned long int ____val_331[( 1024 / ( 8 * sizeof(unsigned long) ) )];// L29 -}; -typedef struct ____anonymous_tag_329_330 ____sigset_t_332;// L27:L30 -typedef ____sigset_t_332 __sigset_t_333;// L37 -struct __timespec_334 { -____time_t_41 __tv_sec_335;// L0 -____time_t_196 __tv_sec_336;// L0 -____syscall_slong_t_57 __tv_nsec_338;// L0 -____syscall_slong_t_212 __tv_nsec_339;// L0 -}; -struct __timeval_342 { -____time_t_41 __tv_sec_343;// L0 -____time_t_196 __tv_sec_344;// L0 -____suseconds_t_43 __tv_usec_346;// L0 -____suseconds_t_198 __tv_usec_347;// L0 -}; -typedef ____suseconds_t_43 __suseconds_t_350;// L48 -typedef ____suseconds_t_198 __suseconds_t_351;// L48 -typedef long int ____fd_mask_353;// L54 -typedef long int ____fd_mask_354;// L54 -struct ____anonymous_tag_355_356 { -____fd_mask_353 ____fds_bits_357[1024 / ( 8 * ( int ) sizeof(long) )];// L0 -____fd_mask_354 ____fds_bits_359[1024 / ( 8 * ( int ) sizeof(long) )];// L0 -}; -typedef struct ____anonymous_tag_355_356 __fd_set_362;// L64:L75 -typedef ____fd_mask_353 __fd_mask_363;// L82 -typedef ____fd_mask_354 __fd_mask_364;// L82 -typedef ____blksize_t_48 __blksize_t_412;// L228 -typedef ____blksize_t_203 __blksize_t_413;// L228 -typedef ____blkcnt_t_49 __blkcnt_t_415;// L235 -typedef ____blkcnt_t_204 __blkcnt_t_416;// L235 -typedef ____fsblkcnt_t_51 __fsblkcnt_t_418;// L239 -typedef ____fsblkcnt_t_206 __fsblkcnt_t_419;// L239 -typedef ____blkcnt64_t_50 __blkcnt_t_421;// L248 -typedef ____blkcnt64_t_205 __blkcnt_t_422;// L248 -typedef ____fsblkcnt64_t_52 __fsblkcnt_t_424;// L252 -typedef ____fsblkcnt64_t_207 __fsblkcnt_t_425;// L252 -typedef ____fsfilcnt_t_53 __fsfilcnt_t_427;// L243 -typedef ____fsfilcnt_t_208 __fsfilcnt_t_428;// L243 -typedef ____fsfilcnt64_t_54 __fsfilcnt_t_430;// L256 -typedef ____fsfilcnt64_t_209 __fsfilcnt_t_431;// L256 -typedef unsigned long int __pthread_t_433;// L60 -union __pthread_attr_t_434 { -char ____size_435[56];// L65 -long int ____align_436;// L66 -}; -typedef union __pthread_attr_t_434 __pthread_attr_t_437;// L69 -struct ____pthread_internal_list_439 { -struct __forward_tag_reference_438 * (____prev_440);// L0 -struct __forward_tag_reference_438 * (____next_441);// L0 -}; -typedef struct ____pthread_internal_list_439 ____pthread_list_t_442;// L75:L79 -typedef struct ____pthread_internal_list_439 ____pthread_list_t_443;// L75:L79 -struct ____pthread_mutex_s_444 { -int ____lock_445;// L94 -unsigned int ____count_446;// L95 -int ____owner_447;// L96 -unsigned int ____nusers_448;// L98 -int ____kind_449;// L102 -short ____spins_450;// L104 -short ____elision_451;// L105 -____pthread_list_t_442 ____list_452;// L0 -____pthread_list_t_443 ____list_453;// L0 -}; -union ____anonymous_tag_454_455 { -struct ____pthread_mutex_s_444 ____data_456;// L92 -char ____size_457[40];// L126 -long int ____align_458;// L127 -}; -typedef union ____anonymous_tag_454_455 __pthread_mutex_t_459;// L90:L128 -union ____anonymous_tag_460_461 { -char ____size_462[4];// L132 -int ____align_463;// L133 -}; -typedef union ____anonymous_tag_460_461 __pthread_mutexattr_t_464;// L130:L134 -typedef int (* (____compar_fn_t_572)) (const void *, const void *);// L741 - -struct __forward_tag_reference_438 { // generated union of struct variations -union { -}; -}; - -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -static __inline unsigned int (____bswap_32_66) (unsigned int ____bsx_65) { - -if (__static_condition_default_67) { - -{ -{ - - - -__static_type_error("invalid type found in return expression"); -} -} - - -} -} -static __inline ____uint64_t_20 (____bswap_64_69) (____uint64_t_20 ____bsx_68) { - -if (__static_condition_default_67) { - -{ -{ - - - -__static_type_error("invalid type found in return expression"); -} -} - - -} -} -union __wait_81 ;// L66 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern __size_t_1 (____ctype_get_mb_cur_max_105) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_106) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_107) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_108) (void );// L139 -extern double (__atof_110) (const char * (____nptr_109));// L144:L145 -extern double (__atof_111) (const char * (____nptr_109));// L144:L145 -extern int (__atoi_113) (const char * (____nptr_112));// L147:L148 -extern int (__atoi_114) (const char * (____nptr_112));// L147:L148 -extern long int (__atol_116) (const char * (____nptr_115));// L150:L151 -extern long int (__atol_117) (const char * (____nptr_115));// L150:L151 -extern long long int (__atoll_119) (const char * (____nptr_118));// L157:L158 -extern long long int (__atoll_120) (const char * (____nptr_118));// L157:L158 -extern double (__strtod_123) (const char * __restrict ____nptr_121, char * (* __restrict ____endptr_122));// L164:L166 -extern float (__strtof_126) (const char * __restrict ____nptr_124, char * (* __restrict ____endptr_125));// L172:L173 -extern long double (__strtold_129) (const char * __restrict ____nptr_127, char * (* __restrict ____endptr_128));// L175:L177 -extern long int (__strtol_133) (const char * __restrict ____nptr_130, char * (* __restrict ____endptr_131), int ____base_132);// L183:L185 -extern unsigned long int (__strtoul_137) (const char * __restrict ____nptr_134, char * (* __restrict ____endptr_135), int ____base_136);// L187:L189 -extern long long int (__strtoq_141) (const char * __restrict ____nptr_138, char * (* __restrict ____endptr_139), int ____base_140);// L195:L197 -extern unsigned long long int (__strtouq_145) (const char * __restrict ____nptr_142, char * (* __restrict ____endptr_143), int ____base_144);// L200:L202 -extern long long int (__strtoll_149) (const char * __restrict ____nptr_146, char * (* __restrict ____endptr_147), int ____base_148);// L209:L211 -extern long long int (__strtoll_150) (const char * __restrict ____nptr_146, char * (* __restrict ____endptr_147), int ____base_148);// L209:L211 -extern unsigned long long int (__strtoull_154) (const char * __restrict ____nptr_151, char * (* __restrict ____endptr_152), int ____base_153);// L214:L216 -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -__extension__/* no function due to type errors in the function prototype */ -extern char * ((__l64a_159) (long int ____n_158));// L305 -extern char * ((__l64a_160) (long int ____n_158));// L305 -extern long int (__a64l_162) (const char * (____s_161));// L308:L309 -extern long int (__a64l_163) (const char * (____s_161));// L308:L309 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -static __inline unsigned int (____bswap_32_324) (unsigned int ____bsx_323) { - -if (__static_condition_default_325) { - -{ -{ - - - -__static_type_error("invalid type found in return expression"); -} -} - - -} -} -static __inline ____uint64_t_175 (____bswap_64_327) (____uint64_t_175 ____bsx_326) { - -if (__static_condition_default_325) { - -{ -{ - - - -__static_type_error("invalid type found in return expression"); -} -} - - -} -} -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -struct __timespec_334 ;// L120 - -struct __timeval_342 ;// L30 - -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern int (__select_376) (int ____nfds_365, __fd_set_362 * __restrict ____readfds_366, __fd_set_362 * __restrict ____writefds_368, __fd_set_362 * __restrict ____exceptfds_370, struct __timeval_342 * __restrict ____timeout_373);// L106:L109 -extern int (__select_377) (int ____nfds_365, __fd_set_362 * __restrict ____readfds_366, __fd_set_362 * __restrict ____writefds_368, __fd_set_362 * __restrict ____exceptfds_370, struct __forward_tag_reference_372 * __restrict ____timeout_375);// L106:L109 -extern int (__pselect_392) (int ____nfds_380, __fd_set_362 * __restrict ____readfds_381, __fd_set_362 * __restrict ____writefds_383, __fd_set_362 * __restrict ____exceptfds_385, const struct __timespec_334 * __restrict ____timeout_388, const ____sigset_t_332 * __restrict ____sigmask_391);// L118:L122 -extern int (__pselect_393) (int ____nfds_380, __fd_set_362 * __restrict ____readfds_381, __fd_set_362 * __restrict ____writefds_383, __fd_set_362 * __restrict ____exceptfds_385, const struct __forward_tag_reference_387 * __restrict ____timeout_390, const ____sigset_t_332 * __restrict ____sigmask_391);// L118:L122 -extern long int (____fdelt_chk_397) (long int ____d_396);// L24 -extern long int (____fdelt_warn_399) (long int ____d_398);// L25:L26 -extern unsigned int (__gnu_dev_major_401) (unsigned long long int ____dev_400);// L27:L28 -extern unsigned int (__gnu_dev_major_402) (unsigned long long int ____dev_400);// L27:L28 -extern unsigned int (__gnu_dev_minor_404) (unsigned long long int ____dev_403);// L30:L31 -extern unsigned long long int (__gnu_dev_makedev_407) (unsigned int ____major_405, unsigned int ____minor_406);// L33:L35 -__extension__/* no function due to type errors in the function prototype */ -__extension__/* no function due to type errors in the function prototype */ -__extension__/* no function due to type errors in the function prototype */ -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -union __pthread_attr_t_434 ;// L63 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern int (__rand_465) (void );// L374 -extern void (__srand_467) (unsigned int ____seed_466);// L376 -extern int (__rand_r_469) (unsigned int * (____seed_468));// L381 -extern double (__drand48_470) (void );// L389 -extern double (__erand48_472) (unsigned short int ____xsubi_471[3]);// L390 -extern long int (__lrand48_473) (void );// L393 -extern long int (__nrand48_475) (unsigned short int ____xsubi_474[3]);// L394:L395 -extern long int (__mrand48_476) (void );// L398 -extern long int (__jrand48_478) (unsigned short int ____xsubi_477[3]);// L399:L400 -extern void (__srand48_480) (long int ____seedval_479);// L403 -extern unsigned short int * ((__seed48_482) (unsigned short int ____seed16v_481[3]));// L404:L405 -extern void (__lcong48_484) (unsigned short int ____param_483[7]);// L406 -extern void * ((__malloc_486) (__size_t_1 ____size_485));// L466 -extern void * ((__malloc_487) (__size_t_1 ____size_485));// L466 -extern void * ((__calloc_490) (__size_t_1 ____nmemb_488, __size_t_1 ____size_489));// L468:L469 -extern void * ((__calloc_491) (__size_t_1 ____nmemb_488, __size_t_1 ____size_489));// L468:L469 -extern void * ((__realloc_494) (void * (____ptr_492), __size_t_1 ____size_493));// L480:L481 -extern void (__free_496) (void * (____ptr_495));// L483 -extern void (__cfree_498) (void * (____ptr_497));// L488 -extern void * ((__alloca_500) (__size_t_1 ____size_499));// L32 -extern void * ((__valloc_502) (__size_t_1 ____size_501));// L498 -extern void * ((__valloc_503) (__size_t_1 ____size_501));// L498 -extern int (__posix_memalign_507) (void * (* (____memptr_504)), __size_t_1 ____alignment_505, __size_t_1 ____size_506);// L503:L504 -extern int (__posix_memalign_508) (void * (* (____memptr_504)), __size_t_1 ____alignment_505, __size_t_1 ____size_506);// L503:L504 -extern void * ((__aligned_alloc_511) (__size_t_1 ____alignment_509, __size_t_1 ____size_510));// L509:L510 -extern void * ((__aligned_alloc_512) (__size_t_1 ____alignment_509, __size_t_1 ____size_510));// L509:L510 -extern void * ((__aligned_alloc_513) (__size_t_1 ____alignment_509, __size_t_1 ____size_510));// L509:L510 -extern void * ((__aligned_alloc_514) (__size_t_1 ____alignment_509, __size_t_1 ____size_510));// L509:L510 -extern void (__abort_515) (void );// L515 -extern int (__atexit_517) (void (* (____func_516)) (void ));// L519 -extern int (__at_quick_exit_519) (void (* (____func_518)) (void ));// L527 -extern int (__on_exit_524) (void (* (____func_522)) (int ____status_520, void * (____arg_521)), void * (____arg_523));// L535:L536 -extern void (__exit_526) (int ____status_525);// L543 -extern void (__exit_527) (int ____status_525);// L543 -extern void (__quick_exit_529) (int ____status_528);// L549 -extern void (___Exit_531) (int ____status_530);// L557 -extern char * ((__getenv_533) (const char * (____name_532)));// L564 -extern char * ((__getenv_534) (const char * (____name_532)));// L564 -extern int (__putenv_536) (char * (____string_535));// L578 -extern int (__setenv_540) (const char * (____name_537), const char * (____value_538), int ____replace_539);// L584:L585 -extern int (__unsetenv_542) (const char * (____name_541));// L588 -extern int (__clearenv_543) (void );// L595 -extern char * ((__mktemp_545) (char * (____template_544)));// L606 -extern int (__mkstemp_548) (char * (____template_546));// L619 -extern int (__mkstemp_550) (char * (____template_546));// L619 -extern int (__mkstemp_549) (char * (____template_547));// L622:L623 -extern int (__mkstemp_551) (char * (____template_547));// L622:L623 -extern int (__mkstemps_556) (char * (____template_552), int ____suffixlen_553);// L641 -extern int (__mkstemps_557) (char * (____template_554), int ____suffixlen_555);// L644:L645 -extern int (__mkstemps_558) (char * (____template_552), int ____suffixlen_553);// L641 -extern int (__mkstemps_559) (char * (____template_554), int ____suffixlen_555);// L644:L645 -extern char * ((__mkdtemp_561) (char * (____template_560)));// L662 -extern char * ((__mkdtemp_562) (char * (____template_560)));// L662 -extern int (__system_564) (const char * (____command_563));// L716 -extern int (__system_565) (const char * (____command_563));// L716 -extern int (__system_566) (const char * (____command_563));// L716 -extern int (__system_567) (const char * (____command_563));// L716 -extern char * ((__realpath_570) (const char * __restrict ____name_568, char * __restrict ____resolved_569));// L733:L734 -extern char * ((__realpath_571) (const char * __restrict ____name_568, char * __restrict ____resolved_569));// L733:L734 -// typedef moved to top of scope -extern void * ((__bsearch_580) (const void * (____key_573), const void * (____base_574), __size_t_1 ____nmemb_575, __size_t_1 ____size_576, ____compar_fn_t_572 ____compar_577));// L754:L756 -extern void * ((__bsearch_582) (const void * (____key_573), const void * (____base_574), __size_t_1 ____nmemb_575, __size_t_1 ____size_576, ____compar_fn_t_572 ____compar_577));// L754:L756 -/* no function due to type errors in the function prototype */ -extern void (__qsort_601) (void * (____base_596), __size_t_1 ____nmemb_597, __size_t_1 ____size_598, ____compar_fn_t_572 ____compar_599);// L764:L765 -extern void (__qsort_603) (void * (____base_596), __size_t_1 ____nmemb_597, __size_t_1 ____size_598, ____compar_fn_t_572 ____compar_599);// L764:L765 -extern int (__abs_606) (int ____x_605);// L774 -extern int (__abs_607) (int ____x_605);// L774 -extern long int (__labs_609) (long int ____x_608);// L775 -extern long int (__labs_610) (long int ____x_608);// L775 -extern long long int (__llabs_612) (long long int ____x_611);// L779:L780 -extern long long int (__llabs_613) (long long int ____x_611);// L779:L780 -extern __div_t_94 (__div_616) (int ____numer_614, int ____denom_615);// L788:L789 -extern __div_t_94 (__div_617) (int ____numer_614, int ____denom_615);// L788:L789 -extern __ldiv_t_99 (__ldiv_620) (long int ____numer_618, long int ____denom_619);// L790:L791 -extern __ldiv_t_99 (__ldiv_622) (long int ____numer_618, long int ____denom_619);// L790:L791 -extern __lldiv_t_104 (__lldiv_626) (long long int ____numer_624, long long int ____denom_625);// L796:L798 -extern __lldiv_t_104 (__lldiv_628) (long long int ____numer_624, long long int ____denom_625);// L796:L798 -extern char * ((__ecvt_634) (double ____value_630, int ____ndigit_631, int * __restrict ____decpt_632, int * __restrict ____sign_633));// L811:L812 -extern char * ((__ecvt_635) (double ____value_630, int ____ndigit_631, int * __restrict ____decpt_632, int * __restrict ____sign_633));// L811:L812 -extern char * ((__fcvt_640) (double ____value_636, int ____ndigit_637, int * __restrict ____decpt_638, int * __restrict ____sign_639));// L817:L818 -extern char * ((__fcvt_641) (double ____value_636, int ____ndigit_637, int * __restrict ____decpt_638, int * __restrict ____sign_639));// L817:L818 -extern char * ((__gcvt_645) (double ____value_642, int ____ndigit_643, char * (____buf_644)));// L823:L824 -extern char * ((__gcvt_646) (double ____value_642, int ____ndigit_643, char * (____buf_644)));// L823:L824 -extern char * ((__qecvt_651) (long double ____value_647, int ____ndigit_648, int * __restrict ____decpt_649, int * __restrict ____sign_650));// L829:L831 -extern char * ((__qecvt_652) (long double ____value_647, int ____ndigit_648, int * __restrict ____decpt_649, int * __restrict ____sign_650));// L829:L831 -extern char * ((__qfcvt_657) (long double ____value_653, int ____ndigit_654, int * __restrict ____decpt_655, int * __restrict ____sign_656));// L832:L834 -extern char * ((__qfcvt_658) (long double ____value_653, int ____ndigit_654, int * __restrict ____decpt_655, int * __restrict ____sign_656));// L832:L834 -extern char * ((__qgcvt_662) (long double ____value_659, int ____ndigit_660, char * (____buf_661)));// L835:L836 -extern char * ((__qgcvt_663) (long double ____value_659, int ____ndigit_660, char * (____buf_661)));// L835:L836 -extern int (__ecvt_r_670) (double ____value_664, int ____ndigit_665, int * __restrict ____decpt_666, int * __restrict ____sign_667, char * __restrict ____buf_668, __size_t_1 ____len_669);// L841:L843 -extern int (__fcvt_r_677) (double ____value_671, int ____ndigit_672, int * __restrict ____decpt_673, int * __restrict ____sign_674, char * __restrict ____buf_675, __size_t_1 ____len_676);// L844:L846 -extern int (__qecvt_r_684) (long double ____value_678, int ____ndigit_679, int * __restrict ____decpt_680, int * __restrict ____sign_681, char * __restrict ____buf_682, __size_t_1 ____len_683);// L848:L851 -extern int (__qfcvt_r_691) (long double ____value_685, int ____ndigit_686, int * __restrict ____decpt_687, int * __restrict ____sign_688, char * __restrict ____buf_689, __size_t_1 ____len_690);// L852:L855 -extern int (__mblen_694) (const char * (____s_692), __size_t_1 ____n_693);// L862 -extern int (__mblen_695) (const char * (____s_692), __size_t_1 ____n_693);// L862 -extern int (__mbtowc_699) (__wchar_t_2 * __restrict ____pwc_696, const char * __restrict ____s_697, __size_t_1 ____n_698);// L865:L866 -extern int (__wctomb_702) (char * (____s_700), __wchar_t_2 ____wchar_701);// L869 -extern __size_t_1 (__mbstowcs_706) (__wchar_t_2 * __restrict ____pwcs_703, const char * __restrict ____s_704, __size_t_1 ____n_705);// L873:L874 -extern __size_t_1 (__wcstombs_710) (char * __restrict ____s_707, const __wchar_t_2 * __restrict ____pwcs_708, __size_t_1 ____n_709);// L876:L878 -extern int (__rpmatch_713) (const char * (____response_711));// L887 -extern int (__rpmatch_712) (const char * (____response_711));// L887 -extern int (__getsubopt_718) (char * (* __restrict ____optionp_714), char * const * __restrict ____tokens_715, char * (* __restrict ____valuep_716));// L898:L901 -extern int (__getsubopt_717) (char * (* __restrict ____optionp_714), char * const * __restrict ____tokens_715, char * (* __restrict ____valuep_716));// L898:L901 -extern int (__getloadavg_721) (double ____loadavg_719[], int ____nelem_720);// L950:L951 -/* no function due to type errors in the function prototype */ -extern char * ((____realpath_chk_726) (const char * __restrict ____name_723, char * __restrict ____resolved_724, __size_t_1 ____resolvedlen_725));// L23:L25 -extern char * ((____realpath_alias_729) (const char * __restrict ____name_727, char * __restrict ____resolved_728));// L26:L28 -extern char * ((____realpath_chk_warn_733) (const char * __restrict ____name_730, char * __restrict ____resolved_731, __size_t_1 ____resolvedlen_732));// L29:L34 -/* no function due to type errors in the function prototype */ -extern int (____ptsname_r_chk_741) (int ____fd_737, char * (____buf_738), __size_t_1 ____buflen_739, __size_t_1 ____nreal_740);// L52:L53 -extern int (____ptsname_r_alias_745) (int ____fd_742, char * (____buf_743), __size_t_1 ____buflen_744);// L54:L56 -extern int (____ptsname_r_chk_warn_750) (int ____fd_746, char * (____buf_747), __size_t_1 ____buflen_748, __size_t_1 ____nreal_749);// L57:L61 -/* no function due to type errors in the function prototype */ -extern int (____wctomb_chk_758) (char * (____s_755), __wchar_t_2 ____wchar_756, __size_t_1 ____buflen_757);// L77:L78 -extern int (____wctomb_alias_761) (char * (____s_759), __wchar_t_2 ____wchar_760);// L79:L80 -/* no function due to type errors in the function prototype */ -extern __size_t_1 (____mbstowcs_chk_768) (__wchar_t_2 * __restrict ____dst_764, const char * __restrict ____src_765, __size_t_1 ____len_766, __size_t_1 ____dstlen_767);// L98:L100 -extern __size_t_1 (____mbstowcs_alias_772) (__wchar_t_2 * __restrict ____dst_769, const char * __restrict ____src_770, __size_t_1 ____len_771);// L101:L104 -extern __size_t_1 (____mbstowcs_chk_warn_777) (__wchar_t_2 * __restrict ____dst_773, const char * __restrict ____src_774, __size_t_1 ____len_775, __size_t_1 ____dstlen_776);// L105:L110 -/* no function due to type errors in the function prototype */ -extern __size_t_1 (____wcstombs_chk_785) (char * __restrict ____dst_781, const __wchar_t_2 * __restrict ____src_782, __size_t_1 ____len_783, __size_t_1 ____dstlen_784);// L130:L132 -extern __size_t_1 (____wcstombs_alias_789) (char * __restrict ____dst_786, const __wchar_t_2 * __restrict ____src_787, __size_t_1 ____len_788);// L133:L136 -extern __size_t_1 (____wcstombs_chk_warn_794) (char * __restrict ____dst_790, const __wchar_t_2 * __restrict ____src_791, __size_t_1 ____len_792, __size_t_1 ____dstlen_793);// L137:L141 -/* no function due to type errors in the function prototype */ -static int (__inode_get_rsv_space_802) (void ) { - -{ -{ - - - -__static_type_error("type error : no valid expression"); // L8 -__static_type_error("type error : no valid expression"); // L10 -return 0 ;// L11 -} -} - - -} -static void (__add_dquot_ref_808) (void ) { - -{ -{ - - - -int __reserved_803= 0;// L17 - -int __i_804;// L20 - -int __i_805;// L20 - -int __j_806;// L20 - -int __j_807;// L20 - -if (__static_condition_default_809) { -for ( __i_804 = 0 ; __i_804 < 10 ; __i_804 ++ )// L21 -{ - -{ -{ - - - -__static_type_error("type error : no valid expression"); // L22 -if (__static_condition_default_810) { -if ( rand( ) % 2 )// L23 -{ - -{ -{ - - - -__static_type_error("type error : no valid expression"); // L24 -continue ; // L25 -} -} -} -} -__static_type_error("type error : no valid expression"); // L33 -} -} -} -} -if (__static_condition_default_811) { -for ( __i_805 = 0 ; __i_805 < 10 ; __i_805 ++ )// L21 -{ - -{ -{ - - - -__static_type_error("type error : no valid expression"); // L22 -if (__static_condition_default_812) { -if ( rand( ) % 2 )// L23 -{ - -{ -{ - - - -__static_type_error("type error : no valid expression"); // L24 -continue ; // L25 -} -} -} -} -if ( __inode_get_rsv_space_802 ( ) > 0 )// L29 -{ - __reserved_803 = 1 ; // L30 -} -__static_type_error("type error : no valid expression"); // L33 -} -} -} -} -} -} - - -} -int (__main_815) (int __argc_813, char * (* (__arv_814))) { - -{ -{ - - - - __add_dquot_ref_808 ( ) ; // L38 -return 0 ;// L39 -} -} - - -} - diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.desugared.clangres index 73c83b83..0e2c1259 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.desugared.clangres @@ -1,4 +1,4 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.desugared.c:1398:2: warning: Value stored to '__reserved_803' is never read [deadcode.DeadStores] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.desugared.c:1397:2: warning: Value stored to '__reserved_803' is never read [deadcode.DeadStores] __reserved_803 = 1 ; // L30 ^ ~ 1 warning generated. diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.desugared.inferres index 282a3a4c..85a582ab 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.desugared.inferres +++ b/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.desugared.inferres @@ -1,12 +1,12 @@ -LINUX/d7e9711760a.desugared.c:1398: error: Dead Store +LINUX/d7e9711760a.desugared.c:1397: error: Dead Store The value written to &__reserved_803 (type int) is never used. - 1396. if ( __inode_get_rsv_space_802 ( ) > 0 )// L29 - 1397. { - 1398. __reserved_803 = 1 ; // L30 + 1395. if ( __inode_get_rsv_space_802 ( ) > 0 )// L29 + 1396. { + 1397. __reserved_803 = 1 ; // L30 ^ - 1399. } - 1400. __static_type_error("type error : no valid expression"); // L33 + 1398. } + 1399. __static_type_error("type error : no valid expression"); // L33 Found 1 issue diff --git a/fonda/cpp_testsuite/varBugs/LINUX/e1fbd9210d5.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/e1fbd9210d5.desugared.c index 634fe8ee..acb99776 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/e1fbd9210d5.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/e1fbd9210d5.desugared.c @@ -7,282 +7,282 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_382; -extern const bool __static_condition_default_380; -extern const bool __static_condition_default_357; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_536; -extern const bool __static_condition_default_657; +extern const bool __static_condition_default_550; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_365; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_568; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_619; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_761; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_455; +extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_779; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_521; +extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_559; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_670; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_846; +extern const bool __static_condition_default_337; +extern const bool __static_condition_default_791; +extern const bool __static_condition_default_702; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_1106; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_223; extern const bool __static_condition_default_963; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_333; +extern const bool __static_condition_default_760; extern const bool __static_condition_default_980; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_402; +extern const bool __static_condition_default_769; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_1105; +extern const bool __static_condition_default_1096; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_1097; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_380; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_386; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_613; +extern const bool __static_condition_default_894; +extern const bool __static_condition_default_583; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_1107; +extern const bool __static_condition_default_955; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_255; extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_789; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_187; +extern const bool __static_condition_default_842; +extern const bool __static_condition_default_267; extern const bool __static_condition_default_201; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_438; -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_708; +extern const bool __static_condition_default_991; extern const bool __static_condition_default_753; -extern const bool __static_condition_default_419; -extern const bool __static_condition_default_875; +extern const bool __static_condition_default_636; +extern const bool __static_condition_default_1101; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_597; extern const bool __static_condition_default_883; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_894; -extern const bool __static_condition_default_956; extern const bool __static_condition_default_723; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_488; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_408; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_638; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_787; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_512; -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_613; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_789; -extern const bool __static_condition_default_761; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_1099; -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_543; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_529; +extern const bool __static_condition_default_768; extern const bool __static_condition_default_432; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_907; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_544; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_573; extern const bool __static_condition_default_836; -extern const bool __static_condition_default_337; +extern const bool __static_condition_default_388; +extern const bool __static_condition_default_489; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_544; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_543; extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_317; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_246; +extern const bool __static_condition_default_692; extern const bool __static_condition_default_668; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_204; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_473; extern const bool __static_condition_default_848; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_834; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_875; +extern const bool __static_condition_default_721; +extern const bool __static_condition_default_488; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_1100; +extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_536; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_677; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_549; +extern const bool __static_condition_default_347; extern const bool __static_condition_default_823; -extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_419; extern const bool __static_condition_default_198; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_290; extern const bool __static_condition_default_431; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_248; -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_779; -extern const bool __static_condition_default_699; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_1099; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_781; extern const bool __static_condition_default_745; -extern const bool __static_condition_default_709; -extern const bool __static_condition_default_76; -extern const bool __static_condition_default_583; -extern const bool __static_condition_default_473; extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_204; -extern const bool __static_condition_default_217; -extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_670; -extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_693; -extern const bool __static_condition_default_978; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_515; extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_311; -extern const bool __static_condition_default_677; -extern const bool __static_condition_default_803; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_235; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_757; extern const bool __static_condition_default_395; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_957; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_386; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_549; -extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_461; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_1097; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_846; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_564; -extern const bool __static_condition_default_955; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_755; +extern const bool __static_condition_default_402; extern const bool __static_condition_default_84; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_872; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_891; -extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_53; -extern const bool __static_condition_default_333; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_1100; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_702; -extern const bool __static_condition_default_842; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_685; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_367; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_315; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_645; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_701; -extern const bool __static_condition_default_510; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_1102; extern const bool __static_condition_default_250; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_347; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_187; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_747; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_929; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_375; extern const bool __static_condition_default_253; -extern const bool __static_condition_default_858; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_1107; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_907; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_382; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_76; +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_759; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_311; extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_929; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_53; extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_257; +extern const bool __static_condition_default_590; extern const bool __static_condition_default_632; -extern const bool __static_condition_default_1096; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_559; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_393; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_523; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_891; +extern const bool __static_condition_default_493; extern const bool __static_condition_default_238; +extern const bool __static_condition_default_512; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_367; extern const bool __static_condition_default_634; -extern const bool __static_condition_default_1106; -extern const bool __static_condition_default_780; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_313; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_1101; -extern const bool __static_condition_default_914; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_1102; -extern const bool __static_condition_default_646; -extern const bool __static_condition_default_1105; -extern const bool __static_condition_default_747; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_590; -extern const bool __static_condition_default_887; -extern const bool __static_condition_default_412; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_793; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_769; -extern const bool __static_condition_default_878; extern const bool __static_condition_default_684; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_388; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_290; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_521; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_568; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_357; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -835,8 +835,7 @@ __static_condition_renaming("__static_condition_default_1105", "!(defined CONFIG __static_condition_renaming("__static_condition_default_1106", "(defined CONFIG_AMIGA_Z2RAM)"); __static_condition_renaming("__static_condition_default_1107", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -if (__static_condition_default_1107) -{ +if (__static_condition_default_1107) { __static_parse_error("Unable to parse"); } }; diff --git a/fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.clangres b/fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.clangres index 308bd0b4..e69de29b 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.clangres @@ -1,4 +0,0 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.c:17:3: warning: Undefined or garbage value returned to caller [core.uninitialized.UndefReturn] - return err; // ERROR (3) - ^~~~~~~~~~ -1 warning generated. diff --git a/fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.desugared.c index 44ee6af2..f4bbfb23 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.desugared.c @@ -7,12 +7,12 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_9; -extern const bool __static_condition_default_3; extern const bool __static_condition_default_5; extern const bool __static_condition_default_6; -extern const bool __static_condition_default_4; extern const bool __static_condition_default_10; +extern const bool __static_condition_default_3; +extern const bool __static_condition_default_9; +extern const bool __static_condition_default_4; void __static_initializer_default() { __static_renaming("__nondet_0", "nondet"); __static_renaming("__err_1", "err"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/e67bc51e574.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/e67bc51e574.desugared.c index 3452f45e..2f1231c6 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/e67bc51e574.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/e67bc51e574.desugared.c @@ -7,25 +7,15 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_8; -extern const bool __static_condition_default_3; -extern const bool __static_condition_default_4; void __static_initializer_default() { __static_renaming("__trace_dump_stack_1", "trace_dump_stack"); -__static_renaming("__trace_dump_stack_2", "trace_dump_stack"); -__static_renaming("__main_7", "main"); +__static_renaming("__main_4", "main"); -__static_condition_renaming("__static_condition_default_3", "(defined CONFIG_TRACING)"); -__static_condition_renaming("__static_condition_default_4", "!(defined CONFIG_TRACING)"); -__static_condition_renaming("__static_condition_default_8", "!(defined CONFIG_TRACING)"); }; void (__trace_dump_stack_1) (int __skip_0) { -{ -if (__static_condition_default_3) { - { { @@ -37,38 +27,14 @@ return ;// L4 } - -}} -static inline void (__trace_dump_stack_2) (void ) { - -{ -if (__static_condition_default_4) { +int (__main_4) (int __argc_2, char * (* (__argv_3))) { { { -} -} - - -} - -}} -int (__main_7) (int __argc_5, char * (* (__argv_6))) { - -{ -{ - - - -if (__static_condition_default_3) { __trace_dump_stack_1 (0) ; // L11 -} -if (__static_condition_default_8) { -__static_type_error("type error") ; // L11 -} return 0 ;// L12 } } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.clangres b/fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.clangres index e69de29b..037ecb09 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.clangres @@ -0,0 +1,5 @@ +In file included from :342: +:1:9: error: 'defined' cannot be used as a macro name +#define defined 1 + ^ +1 error generated. diff --git a/fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.desugared.c index bd3fbab5..4b974551 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.desugared.c @@ -7,36 +7,36 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_47; -extern const bool __static_condition_default_65; -extern const bool __static_condition_default_42; -extern const bool __static_condition_default_48; -extern const bool __static_condition_default_69; extern const bool __static_condition_default_66; -extern const bool __static_condition_default_70; +extern const bool __static_condition_default_41; +extern const bool __static_condition_default_60; extern const bool __static_condition_default_32; -extern const bool __static_condition_default_39; -extern const bool __static_condition_default_75; -extern const bool __static_condition_default_23; +extern const bool __static_condition_default_67; +extern const bool __static_condition_default_47; extern const bool __static_condition_default_58; extern const bool __static_condition_default_68; -extern const bool __static_condition_default_59; +extern const bool __static_condition_default_42; +extern const bool __static_condition_default_81; +extern const bool __static_condition_default_23; +extern const bool __static_condition_default_24; +extern const bool __static_condition_default_57; extern const bool __static_condition_default_25; +extern const bool __static_condition_default_74; +extern const bool __static_condition_default_48; extern const bool __static_condition_default_77; +extern const bool __static_condition_default_39; +extern const bool __static_condition_default_22; +extern const bool __static_condition_default_33; +extern const bool __static_condition_default_70; +extern const bool __static_condition_default_83; +extern const bool __static_condition_default_65; extern const bool __static_condition_default_40; -extern const bool __static_condition_default_60; -extern const bool __static_condition_default_81; +extern const bool __static_condition_default_59; +extern const bool __static_condition_default_75; extern const bool __static_condition_default_76; -extern const bool __static_condition_default_41; -extern const bool __static_condition_default_74; -extern const bool __static_condition_default_24; extern const bool __static_condition_default_34; -extern const bool __static_condition_default_57; -extern const bool __static_condition_default_83; -extern const bool __static_condition_default_33; -extern const bool __static_condition_default_67; -extern const bool __static_condition_default_22; extern const bool __static_condition_default_72; +extern const bool __static_condition_default_69; void __static_initializer_default() { __static_renaming("____assert_fail_4", "__assert_fail"); __static_renaming("____assert_perror_fail_9", "__assert_perror_fail"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.clangres b/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.clangres index efb2a1df..c2d164cf 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.clangres @@ -1,4 +1,5 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.c:44:11: warning: Value stored to 'rt' during its initialization is never read [deadcode.DeadStores] - char *rt =(char *) dst; // (3) - ^~ ~~~~~~~~~~~~ -1 warning generated. +In file included from :342: +:3:8: error: 'defined' cannot be used as a macro name +#undef defined + ^ +1 error generated. diff --git a/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.desugared.c index 5ed4f464..9421db00 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.desugared.c @@ -7,85 +7,85 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_276; -extern const bool __static_condition_default_832; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_414; -extern const bool __static_condition_default_581; extern const bool __static_condition_default_821; -extern const bool __static_condition_default_804; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_423; extern const bool __static_condition_default_234; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_308; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_305; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_594; +extern const bool __static_condition_default_581; +extern const bool __static_condition_default_629; +extern const bool __static_condition_default_426; extern const bool __static_condition_default_67; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_820; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_429; +extern const bool __static_condition_default_826; +extern const bool __static_condition_default_827; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_811; +extern const bool __static_condition_default_579; +extern const bool __static_condition_default_308; +extern const bool __static_condition_default_288; extern const bool __static_condition_default_252; extern const bool __static_condition_default_255; -extern const bool __static_condition_default_815; -extern const bool __static_condition_default_296; +extern const bool __static_condition_default_818; +extern const bool __static_condition_default_237; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_604; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_829; +extern const bool __static_condition_default_627; extern const bool __static_condition_default_802; -extern const bool __static_condition_default_819; +extern const bool __static_condition_default_394; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_820; +extern const bool __static_condition_default_832; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_804; +extern const bool __static_condition_default_379; +extern const bool __static_condition_default_325; +extern const bool __static_condition_default_273; +extern const bool __static_condition_default_423; +extern const bool __static_condition_default_808; extern const bool __static_condition_default_261; -extern const bool __static_condition_default_426; -extern const bool __static_condition_default_822; -extern const bool __static_condition_default_279; -extern const bool __static_condition_default_237; -extern const bool __static_condition_default_285; extern const bool __static_condition_default_417; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_803; +extern const bool __static_condition_default_378; +extern const bool __static_condition_default_215; +extern const bool __static_condition_default_822; +extern const bool __static_condition_default_833; extern const bool __static_condition_default_834; -extern const bool __static_condition_default_594; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_604; -extern const bool __static_condition_default_824; +extern const bool __static_condition_default_349; extern const bool __static_condition_default_420; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_595; +extern const bool __static_condition_default_240; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_621; extern const bool __static_condition_default_60; -extern const bool __static_condition_default_352; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_305; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_579; +extern const bool __static_condition_default_361; +extern const bool __static_condition_default_823; extern const bool __static_condition_default_243; -extern const bool __static_condition_default_302; extern const bool __static_condition_default_828; -extern const bool __static_condition_default_833; -extern const bool __static_condition_default_808; +extern const bool __static_condition_default_302; extern const bool __static_condition_default_602; -extern const bool __static_condition_default_811; +extern const bool __static_condition_default_279; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_276; +extern const bool __static_condition_default_824; extern const bool __static_condition_default_264; -extern const bool __static_condition_default_273; -extern const bool __static_condition_default_361; -extern const bool __static_condition_default_394; -extern const bool __static_condition_default_349; -extern const bool __static_condition_default_627; -extern const bool __static_condition_default_827; -extern const bool __static_condition_default_818; -extern const bool __static_condition_default_240; -extern const bool __static_condition_default_429; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_378; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_829; -extern const bool __static_condition_default_215; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_325; -extern const bool __static_condition_default_379; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_629; -extern const bool __static_condition_default_826; +extern const bool __static_condition_default_815; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_352; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_414; +extern const bool __static_condition_default_285; +extern const bool __static_condition_default_595; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -561,8 +561,7 @@ __static_condition_renaming("__static_condition_default_832", "!(defined CONFIG_ __static_condition_renaming("__static_condition_default_833", "(defined CONFIG_IP_SCTP) && (defined CONFIG_IPV6)"); __static_condition_renaming("__static_condition_default_834", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc)"); -if (__static_condition_default_834) -{ +if (__static_condition_default_834) { __static_parse_error("Unable to parse"); } }; diff --git a/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.desugared.clangres index 551112f6..872ad5d4 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.desugared.clangres @@ -1,7 +1,7 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.desugared.c:1495:3: warning: Dereference of null pointer (loaded from variable '__rt_814') [core.NullDereference] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.desugared.c:1494:3: warning: Dereference of null pointer (loaded from variable '__rt_814') [core.NullDereference] ( ( * __rt_814 ) ++ ) ; // L23:L45 ^~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.desugared.c:1516:3: warning: Dereference of null pointer (loaded from variable '__rt_814') [core.NullDereference] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.desugared.c:1515:3: warning: Dereference of null pointer (loaded from variable '__rt_814') [core.NullDereference] ( ( * __rt_814 ) ++ ) ; // L23:L45 ^~~~~~~~~~~~~~~~~~~ 2 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/LINUX/f3d83e24154.clangres b/fonda/cpp_testsuite/varBugs/LINUX/f3d83e24154.clangres index e69de29b..f8544390 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/f3d83e24154.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/f3d83e24154.clangres @@ -0,0 +1,5 @@ +In file included from :342: +:1:8: error: 'defined' cannot be used as a macro name +#undef defined + ^ +1 error generated. diff --git a/fonda/cpp_testsuite/varBugs/LINUX/f3d83e24154.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/f3d83e24154.desugared.c index 925c0f26..04e56bdc 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/f3d83e24154.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/f3d83e24154.desugared.c @@ -7,24 +7,24 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_196; +extern const bool __static_condition_default_230; +extern const bool __static_condition_default_212; extern const bool __static_condition_default_191; -extern const bool __static_condition_default_209; -extern const bool __static_condition_default_231; extern const bool __static_condition_default_232; -extern const bool __static_condition_default_230; -extern const bool __static_condition_default_225; +extern const bool __static_condition_default_5; extern const bool __static_condition_default_14; -extern const bool __static_condition_default_224; extern const bool __static_condition_default_221; -extern const bool __static_condition_default_5; -extern const bool __static_condition_default_212; extern const bool __static_condition_default_176; +extern const bool __static_condition_default_222; +extern const bool __static_condition_default_225; +extern const bool __static_condition_default_224; +extern const bool __static_condition_default_231; +extern const bool __static_condition_default_192; extern const bool __static_condition_default_183; extern const bool __static_condition_default_216; -extern const bool __static_condition_default_192; extern const bool __static_condition_default_223; -extern const bool __static_condition_default_222; +extern const bool __static_condition_default_196; +extern const bool __static_condition_default_209; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -109,8 +109,7 @@ __static_condition_renaming("__static_condition_default_230", "!(defined CONFIG_ __static_condition_renaming("__static_condition_default_231", "(defined CONFIG_X86) && (defined CONFIG_ACPI_WMI)"); __static_condition_renaming("__static_condition_default_232", "(defined CONFIG_X86) && (defined CONFIG_ACPI_WMI) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO)"); -if (__static_condition_default_232) -{ +if (__static_condition_default_232) { __static_parse_error("Unable to parse"); } }; diff --git a/fonda/cpp_testsuite/varBugs/LINUX/f48ec1d7885.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/f48ec1d7885.desugared.c index 1d1e6646..5d3bb2eb 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/f48ec1d7885.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/f48ec1d7885.desugared.c @@ -7,43 +7,13 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_6; -extern const bool __static_condition_default_5; -extern const bool __static_condition_default_2; void __static_initializer_default() { -__static_renaming("__d_0", "d"); -__static_renaming("__cfq_scale_slice_1", "cfq_scale_slice"); -__static_renaming("__main_3", "main"); -__static_renaming("__main_4", "main"); +__static_renaming("__main_0", "main"); -__static_condition_renaming("__static_condition_default_2", "(defined CONFIG_IOSCHED_CFQ)"); -__static_condition_renaming("__static_condition_default_5", "!(defined CONFIG_IOSCHED_CFQ)"); -__static_condition_renaming("__static_condition_default_6", "(defined CONFIG_IOSCHED_CFQ)"); }; -static long (__cfq_scale_slice_1) () { - -if (__static_condition_default_2) { - -{ -{ - - - -long __d_0= 1;// L8 - -__static_type_error("type error : no valid expression"); // L9 -return __d_0 ;// L10 -} -} - - -} -} -int (__main_3) () { - -if (__static_condition_default_5) { +int (__main_0) () { { { @@ -56,22 +26,4 @@ return 0 ;// L20 } -} -int (__main_4) () { - -if (__static_condition_default_6) { - -{ -{ - - - - __cfq_scale_slice_1 ( ) ; // L18 -return 0 ;// L20 -} -} - - -} -} diff --git a/fonda/cpp_testsuite/varBugs/LINUX/f7ab9b407b3.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/f7ab9b407b3.desugared.c index 4bbc8b7c..1d11abc6 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/f7ab9b407b3.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/f7ab9b407b3.desugared.c @@ -7,12 +7,12 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); +extern const bool __static_condition_default_40; extern const bool __static_condition_default_8; -extern const bool __static_condition_default_10; extern const bool __static_condition_default_9; extern const bool __static_condition_default_7; +extern const bool __static_condition_default_10; extern const bool __static_condition_default_14; -extern const bool __static_condition_default_40; extern const bool __static_condition_default_41; void __static_initializer_default() { __static_renaming("__filler_t_0", "filler_t"); diff --git a/fonda/cpp_testsuite/varBugs/MARLIN-2d22902d080.report b/fonda/cpp_testsuite/varBugs/MARLIN-2d22902d080.report new file mode 100644 index 00000000..ef8500d4 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN-2d22902d080.report @@ -0,0 +1,6 @@ +MARLIN 2d22902d080.c +Macros: + SDSUPPORT +[-USDSUPPORT ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/MARLIN-2db384a21d6.report b/fonda/cpp_testsuite/varBugs/MARLIN-2db384a21d6.report new file mode 100644 index 00000000..9c3da19b --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN-2db384a21d6.report @@ -0,0 +1,10 @@ +MARLIN 2db384a21d6.c +Macros: + MESH_BED_LEVELING + DISABLE_M503 +[-UMESH_BED_LEVELING -UDISABLE_M503 ] +[-DMESH_BED_LEVELING=1 -UDISABLE_M503 ] +[-UMESH_BED_LEVELING -DDISABLE_M503=1 ] +[-DMESH_BED_LEVELING=1 -DDISABLE_M503=1 ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/MARLIN-30248214c7f.report b/fonda/cpp_testsuite/varBugs/MARLIN-30248214c7f.report new file mode 100644 index 00000000..ef7f1f47 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN-30248214c7f.report @@ -0,0 +1,6 @@ +MARLIN 30248214c7f.c +Macros: + defined +[-Udefined ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/MARLIN-31873ec707d.report b/fonda/cpp_testsuite/varBugs/MARLIN-31873ec707d.report new file mode 100644 index 00000000..49b27502 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN-31873ec707d.report @@ -0,0 +1,6 @@ +MARLIN 31873ec707d.c +Macros: + ULTRA_LCD +[-UULTRA_LCD ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/MARLIN-53be0f3399e.report b/fonda/cpp_testsuite/varBugs/MARLIN-53be0f3399e.report new file mode 100644 index 00000000..3dab2ea8 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN-53be0f3399e.report @@ -0,0 +1,10 @@ +MARLIN 53be0f3399e.c +Macros: + BABYSTEPPING + DELTA +[-UBABYSTEPPING -UDELTA ] +[-DBABYSTEPPING=1 -UDELTA ] +[-UBABYSTEPPING -DDELTA=1 ] +[-DBABYSTEPPING=1 -DDELTA=1 ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/MARLIN-7336e6df070.report b/fonda/cpp_testsuite/varBugs/MARLIN-7336e6df070.report new file mode 100644 index 00000000..6a1bb234 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN-7336e6df070.report @@ -0,0 +1,24 @@ +MARLIN 7336e6df070.c +Macros: + Z_DUAL_STEPPER_DRIVERS + Z_DUAL_ENDSTOPS + HAS_Z_MIN + HAS_Z_MAX +[-UZ_DUAL_STEPPER_DRIVERS -UZ_DUAL_ENDSTOPS -UHAS_Z_MIN -UHAS_Z_MAX ] +[-DZ_DUAL_STEPPER_DRIVERS=1 -UZ_DUAL_ENDSTOPS -UHAS_Z_MIN -UHAS_Z_MAX ] +[-UZ_DUAL_STEPPER_DRIVERS -DZ_DUAL_ENDSTOPS=1 -UHAS_Z_MIN -UHAS_Z_MAX ] +[-DZ_DUAL_STEPPER_DRIVERS=1 -DZ_DUAL_ENDSTOPS=1 -UHAS_Z_MIN -UHAS_Z_MAX ] +[-UZ_DUAL_STEPPER_DRIVERS -UZ_DUAL_ENDSTOPS -DHAS_Z_MIN=1 -UHAS_Z_MAX ] +[-DZ_DUAL_STEPPER_DRIVERS=1 -UZ_DUAL_ENDSTOPS -DHAS_Z_MIN=1 -UHAS_Z_MAX ] +[-UZ_DUAL_STEPPER_DRIVERS -DZ_DUAL_ENDSTOPS=1 -DHAS_Z_MIN=1 -UHAS_Z_MAX ] +[-DZ_DUAL_STEPPER_DRIVERS=1 -DZ_DUAL_ENDSTOPS=1 -DHAS_Z_MIN=1 -UHAS_Z_MAX ] +[-UZ_DUAL_STEPPER_DRIVERS -UZ_DUAL_ENDSTOPS -UHAS_Z_MIN -DHAS_Z_MAX=1 ] +[-DZ_DUAL_STEPPER_DRIVERS=1 -UZ_DUAL_ENDSTOPS -UHAS_Z_MIN -DHAS_Z_MAX=1 ] +[-UZ_DUAL_STEPPER_DRIVERS -DZ_DUAL_ENDSTOPS=1 -UHAS_Z_MIN -DHAS_Z_MAX=1 ] +[-DZ_DUAL_STEPPER_DRIVERS=1 -DZ_DUAL_ENDSTOPS=1 -UHAS_Z_MIN -DHAS_Z_MAX=1 ] +[-UZ_DUAL_STEPPER_DRIVERS -UZ_DUAL_ENDSTOPS -DHAS_Z_MIN=1 -DHAS_Z_MAX=1 ] +[-DZ_DUAL_STEPPER_DRIVERS=1 -UZ_DUAL_ENDSTOPS -DHAS_Z_MIN=1 -DHAS_Z_MAX=1 ] +[-UZ_DUAL_STEPPER_DRIVERS -DZ_DUAL_ENDSTOPS=1 -DHAS_Z_MIN=1 -DHAS_Z_MAX=1 ] +[-DZ_DUAL_STEPPER_DRIVERS=1 -DZ_DUAL_ENDSTOPS=1 -DHAS_Z_MIN=1 -DHAS_Z_MAX=1 ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/MARLIN-831016b09f7.report b/fonda/cpp_testsuite/varBugs/MARLIN-831016b09f7.report new file mode 100644 index 00000000..e30c1b70 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN-831016b09f7.report @@ -0,0 +1,10 @@ +MARLIN 831016b09f7.c +Macros: + ULTRA_LCD + SDSUPPORT +[-UULTRA_LCD -USDSUPPORT ] +[-DULTRA_LCD=1 -USDSUPPORT ] +[-UULTRA_LCD -DSDSUPPORT=1 ] +[-DULTRA_LCD=1 -DSDSUPPORT=1 ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/MARLIN-8c4377dd635.report b/fonda/cpp_testsuite/varBugs/MARLIN-8c4377dd635.report new file mode 100644 index 00000000..33f21ae9 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN-8c4377dd635.report @@ -0,0 +1,37 @@ +MARLIN 8c4377dd635.c +Macros: + MARLIN_H + PIDTEMP + PID_DEBUG +[-UMARLIN_H -UPIDTEMP -UPID_DEBUG ] +1 :: Line:19 + Value stored to 'pid_output' is never read [deadcode.DeadStores] +[-DMARLIN_H=1 -UPIDTEMP -UPID_DEBUG ] +2 :: Line:19 + Value stored to 'pid_output' is never read [deadcode.DeadStores] +[-UMARLIN_H -DPIDTEMP=1 -UPID_DEBUG ] +[-DMARLIN_H=1 -DPIDTEMP=1 -UPID_DEBUG ] +[-UMARLIN_H -UPIDTEMP -DPID_DEBUG=1 ] +3 :: Line:19 + Value stored to 'pid_output' is never read [deadcode.DeadStores] +[-DMARLIN_H=1 -UPIDTEMP -DPID_DEBUG=1 ] +4 :: Line:19 + Value stored to 'pid_output' is never read [deadcode.DeadStores] +[-UMARLIN_H -DPIDTEMP=1 -DPID_DEBUG=1 ] +[-DMARLIN_H=1 -DPIDTEMP=1 -DPID_DEBUG=1 ] +[-UMARLIN_H -UPIDTEMP -UPID_DEBUG ] +5 :: Line:19 + Value stored to 'pid_output' is never read [deadcode.DeadStores] +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.c:59:2: warning: Value stored to '__pid_output_0' is never read [deadcode.DeadStores] + __pid_output_0 = 0 ; // L19 + ^ ~ +1 warning generated. +Matches: + 1 has a match! + 2 has a match! + 3 has a match! + 4 has a match! + 5 has a match! +Unmatched ids: + None! diff --git a/fonda/cpp_testsuite/varBugs/MARLIN-a7fc1f83c81.report b/fonda/cpp_testsuite/varBugs/MARLIN-a7fc1f83c81.report new file mode 100644 index 00000000..9e14f4d1 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN-a7fc1f83c81.report @@ -0,0 +1,6 @@ +MARLIN a7fc1f83c81.c +Macros: + SDSUPPORT +[-USDSUPPORT ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/MARLIN-b8e79dce897.report b/fonda/cpp_testsuite/varBugs/MARLIN-b8e79dce897.report new file mode 100644 index 00000000..238d21fb --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN-b8e79dce897.report @@ -0,0 +1,16 @@ +MARLIN b8e79dce897.c +Macros: + ULTRA_LCD + ENCODER_RATE_MULTIPLIER + TEMP_SENSOR_0 +[-UULTRA_LCD -UENCODER_RATE_MULTIPLIER -UTEMP_SENSOR_0 ] +[-DULTRA_LCD=1 -UENCODER_RATE_MULTIPLIER -UTEMP_SENSOR_0 ] +[-UULTRA_LCD -DENCODER_RATE_MULTIPLIER=1 -UTEMP_SENSOR_0 ] +[-DULTRA_LCD=1 -DENCODER_RATE_MULTIPLIER=1 -UTEMP_SENSOR_0 ] +[-UULTRA_LCD -UENCODER_RATE_MULTIPLIER -DTEMP_SENSOR_0=1 ] +[-DULTRA_LCD=1 -UENCODER_RATE_MULTIPLIER -DTEMP_SENSOR_0=1 ] +[-UULTRA_LCD -DENCODER_RATE_MULTIPLIER=1 -DTEMP_SENSOR_0=1 ] +[-DULTRA_LCD=1 -DENCODER_RATE_MULTIPLIER=1 -DTEMP_SENSOR_0=1 ] +[-UULTRA_LCD -UENCODER_RATE_MULTIPLIER -UTEMP_SENSOR_0 ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/MARLIN-e30bfedce4d.report b/fonda/cpp_testsuite/varBugs/MARLIN-e30bfedce4d.report new file mode 100644 index 00000000..a5cd5bb8 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN-e30bfedce4d.report @@ -0,0 +1,22 @@ +MARLIN e30bfedce4d.c +Macros: + ENABLE_AUTO_BED_LEVELING + AUTO_BED_LEVELING_GRID +[-UENABLE_AUTO_BED_LEVELING -UAUTO_BED_LEVELING_GRID ] +[-DENABLE_AUTO_BED_LEVELING=1 -UAUTO_BED_LEVELING_GRID ] +7 :: Line:24 + Value stored to 'xGridSpacing' during its initialization is never read [deadcode.DeadStores] +[-UENABLE_AUTO_BED_LEVELING -DAUTO_BED_LEVELING_GRID=1 ] +[-DENABLE_AUTO_BED_LEVELING=1 -DAUTO_BED_LEVELING_GRID=1 ] +8 :: Line:24 + Value stored to 'xGridSpacing' during its initialization is never read [deadcode.DeadStores] +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.desugared.c:48:6: warning: Value stored to '__xGridSpacing_1' during its initialization is never read [deadcode.DeadStores] +int __xGridSpacing_1= __left_probe_bed_position_0 ;// L24 + ^~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~ +1 warning generated. +Matches: + 7 has a match! + 8 has a match! +Unmatched ids: + None! diff --git a/fonda/cpp_testsuite/varBugs/MARLIN-f87c80889fe.report b/fonda/cpp_testsuite/varBugs/MARLIN-f87c80889fe.report new file mode 100644 index 00000000..2a9e141a --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN-f87c80889fe.report @@ -0,0 +1,6 @@ +MARLIN f87c80889fe.c +Macros: + TEMP_RESIDENCY_TIME +[-UTEMP_RESIDENCY_TIME ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/MARLIN-fc3c76fc164.report b/fonda/cpp_testsuite/varBugs/MARLIN-fc3c76fc164.report new file mode 100644 index 00000000..e5921d28 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN-fc3c76fc164.report @@ -0,0 +1,10 @@ +MARLIN fc3c76fc164.c +Macros: + HAS_HEATER_THERMAL_PROTECTION + HAS_BED_THERMAL_PROTECTION +[-UHAS_HEATER_THERMAL_PROTECTION -UHAS_BED_THERMAL_PROTECTION ] +[-DHAS_HEATER_THERMAL_PROTECTION=1 -UHAS_BED_THERMAL_PROTECTION ] +[-UHAS_HEATER_THERMAL_PROTECTION -DHAS_BED_THERMAL_PROTECTION=1 ] +[-DHAS_HEATER_THERMAL_PROTECTION=1 -DHAS_BED_THERMAL_PROTECTION=1 ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/MARLIN-fdac8f6cece.report b/fonda/cpp_testsuite/varBugs/MARLIN-fdac8f6cece.report new file mode 100644 index 00000000..f0f395d0 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN-fdac8f6cece.report @@ -0,0 +1,6 @@ +MARLIN fdac8f6cece.c +Macros: + ENABLE_AUTO_BED_LEVELING +[-UENABLE_AUTO_BED_LEVELING ] +Desugared Clang Results: +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/2d22902d080.desugared.c b/fonda/cpp_testsuite/varBugs/MARLIN/2d22902d080.desugared.c index 3d40dde7..fb934faf 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/2d22902d080.desugared.c +++ b/fonda/cpp_testsuite/varBugs/MARLIN/2d22902d080.desugared.c @@ -7,20 +7,21 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_190; -extern const bool __static_condition_default_13; -extern const bool __static_condition_default_227; -extern const bool __static_condition_default_175; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_211; -extern const bool __static_condition_default_215; -extern const bool __static_condition_default_195; -extern const bool __static_condition_default_222; -extern const bool __static_condition_default_208; -extern const bool __static_condition_default_220; extern const bool __static_condition_default_223; -extern const bool __static_condition_default_221; +extern const bool __static_condition_default_224; +extern const bool __static_condition_default_183; +extern const bool __static_condition_default_225; +extern const bool __static_condition_default_209; +extern const bool __static_condition_default_226; +extern const bool __static_condition_default_192; +extern const bool __static_condition_default_212; +extern const bool __static_condition_default_222; extern const bool __static_condition_default_191; +extern const bool __static_condition_default_216; +extern const bool __static_condition_default_221; +extern const bool __static_condition_default_13; +extern const bool __static_condition_default_196; +extern const bool __static_condition_default_176; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -44,64 +45,62 @@ __static_renaming("__strxfrm_l_72", "strxfrm_l"); __static_renaming("__strdup_74", "strdup"); __static_renaming("__strndup_77", "strndup"); __static_renaming("__strchr_80", "strchr"); -__static_renaming("__strrchr_83", "strrchr"); -__static_renaming("__strcspn_86", "strcspn"); -__static_renaming("__strspn_89", "strspn"); -__static_renaming("__strpbrk_92", "strpbrk"); -__static_renaming("__strstr_95", "strstr"); -__static_renaming("__strtok_98", "strtok"); -__static_renaming("____strtok_r_102", "__strtok_r"); -__static_renaming("__strtok_r_106", "strtok_r"); -__static_renaming("__strlen_108", "strlen"); +__static_renaming("__strchr_81", "strchr"); +__static_renaming("__strrchr_84", "strrchr"); +__static_renaming("__strcspn_87", "strcspn"); +__static_renaming("__strspn_90", "strspn"); +__static_renaming("__strpbrk_93", "strpbrk"); +__static_renaming("__strstr_96", "strstr"); +__static_renaming("__strtok_99", "strtok"); +__static_renaming("____strtok_r_103", "__strtok_r"); +__static_renaming("__strtok_r_107", "strtok_r"); __static_renaming("__strlen_109", "strlen"); -__static_renaming("__strnlen_112", "strnlen"); -__static_renaming("__strerror_114", "strerror"); +__static_renaming("__strlen_110", "strlen"); +__static_renaming("__strnlen_113", "strnlen"); __static_renaming("__strerror_115", "strerror"); -__static_renaming("__strerror_r_119", "strerror_r"); -__static_renaming("__strerror_l_122", "strerror_l"); -__static_renaming("____bzero_125", "__bzero"); +__static_renaming("__strerror_116", "strerror"); +__static_renaming("__strerror_r_120", "strerror_r"); +__static_renaming("__strerror_l_123", "strerror_l"); __static_renaming("____bzero_126", "__bzero"); -__static_renaming("__bcopy_130", "bcopy"); -__static_renaming("__bzero_133", "bzero"); -__static_renaming("__bcmp_137", "bcmp"); -__static_renaming("__index_140", "index"); -__static_renaming("__rindex_143", "rindex"); -__static_renaming("__ffs_145", "ffs"); -__static_renaming("__strcasecmp_148", "strcasecmp"); -__static_renaming("__strncasecmp_152", "strncasecmp"); -__static_renaming("__strsep_155", "strsep"); -__static_renaming("__strsignal_157", "strsignal"); -__static_renaming("____stpcpy_160", "__stpcpy"); -__static_renaming("__stpcpy_163", "stpcpy"); -__static_renaming("____stpncpy_167", "__stpncpy"); -__static_renaming("__stpncpy_171", "stpncpy"); -__static_renaming("____stpncpy_chk_200", "__stpncpy_chk"); -__static_renaming("____stpncpy_alias_204", "__stpncpy_alias"); -__static_renaming("__strchr_pointer_216", "strchr_pointer"); +__static_renaming("____bzero_127", "__bzero"); +__static_renaming("__bcopy_131", "bcopy"); +__static_renaming("__bzero_134", "bzero"); +__static_renaming("__bcmp_138", "bcmp"); +__static_renaming("__index_141", "index"); +__static_renaming("__rindex_144", "rindex"); +__static_renaming("__ffs_146", "ffs"); +__static_renaming("__strcasecmp_149", "strcasecmp"); +__static_renaming("__strncasecmp_153", "strncasecmp"); +__static_renaming("__strsep_156", "strsep"); +__static_renaming("__strsignal_158", "strsignal"); +__static_renaming("____stpcpy_161", "__stpcpy"); +__static_renaming("__stpcpy_164", "stpcpy"); +__static_renaming("____stpncpy_168", "__stpncpy"); +__static_renaming("__stpncpy_172", "stpncpy"); +__static_renaming("____stpncpy_chk_201", "__stpncpy_chk"); +__static_renaming("____stpncpy_alias_205", "__stpncpy_alias"); __static_renaming("__strchr_pointer_217", "strchr_pointer"); -__static_renaming("__starpos_218", "starpos"); -__static_renaming("__process_commands_219", "process_commands"); -__static_renaming("__main_226", "main"); +__static_renaming("__strchr_pointer_218", "strchr_pointer"); +__static_renaming("__starpos_219", "starpos"); +__static_renaming("__process_commands_220", "process_commands"); +__static_renaming("__main_229", "main"); __static_condition_renaming("__static_condition_default_13", "!(defined __STRICT_ANSI__)"); -__static_condition_renaming("__static_condition_default_175", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_182", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_190", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_191", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_195", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_208", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_211", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_215", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_220", "!(defined SDSUPPORT)"); -__static_condition_renaming("__static_condition_default_221", "(defined SDSUPPORT)"); -__static_condition_renaming("__static_condition_default_222", "!(defined _FORTIFY_SOURCE) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined SDSUPPORT) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined SDSUPPORT) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined SDSUPPORT) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined SDSUPPORT)"); -__static_condition_renaming("__static_condition_default_223", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined SDSUPPORT)"); -__static_condition_renaming("__static_condition_default_227", "(defined __CORRECT_ISO_CPP_STRING_H_PROTO)"); - -if (__static_condition_default_227) -{ -__static_parse_error("Unable to parse"); -} +__static_condition_renaming("__static_condition_default_176", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_183", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_191", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_192", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_196", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_209", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_212", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_216", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_221", "!(defined SDSUPPORT)"); +__static_condition_renaming("__static_condition_default_222", "(defined SDSUPPORT)"); +__static_condition_renaming("__static_condition_default_223", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined SDSUPPORT) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined SDSUPPORT) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined SDSUPPORT) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined SDSUPPORT)"); +__static_condition_renaming("__static_condition_default_224", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined SDSUPPORT)"); +__static_condition_renaming("__static_condition_default_225", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined SDSUPPORT) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined SDSUPPORT) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined SDSUPPORT) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined SDSUPPORT)"); +__static_condition_renaming("__static_condition_default_226", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined SDSUPPORT)"); + }; typedef long int __ptrdiff_t_0;// L143:L324 typedef long unsigned int __size_t_1;// L177:L209 @@ -142,37 +141,38 @@ extern __size_t_1 (__strxfrm_l_72) (char * (____dest_68), const char * (____s extern char * ((__strdup_74) (const char * (____s_73)));// L171:L172 extern char * ((__strndup_77) (const char * (____string_75), __size_t_1 ____n_76));// L179:L180 extern char * ((__strchr_80) (const char * (____s_78), int ____c_79));// L231:L232 -extern char * ((__strrchr_83) (const char * (____s_81), int ____c_82));// L258:L259 -extern __size_t_1 (__strcspn_86) (const char * (____s_84), const char * (____reject_85));// L280:L281 -extern __size_t_1 (__strspn_89) (const char * (____s_87), const char * (____accept_88));// L284:L285 -extern char * ((__strpbrk_92) (const char * (____s_90), const char * (____accept_91)));// L310:L311 -extern char * ((__strstr_95) (const char * (____haystack_93), const char * (____needle_94)));// L337:L338 -extern char * ((__strtok_98) (char * __restrict ____s_96, const char * __restrict ____delim_97));// L343:L344 -extern char * ((____strtok_r_102) (char * __restrict ____s_99, const char * __restrict ____delim_100, char * (* __restrict ____save_ptr_101)));// L349:L352 -extern char * ((__strtok_r_106) (char * __restrict ____s_103, const char * __restrict ____delim_104, char * (* __restrict ____save_ptr_105)));// L354:L356 -extern __size_t_1 (__strlen_108) (const char * (____s_107));// L394:L395 -extern __size_t_1 (__strlen_109) (const char * (____s_107));// L394:L395 -extern __size_t_1 (__strnlen_112) (const char * (____string_110), __size_t_1 ____maxlen_111);// L401:L402 -extern char * ((__strerror_114) (int ____errnum_113));// L408 -extern char * ((__strerror_115) (int ____errnum_113));// L408 -extern int (__strerror_r_119) (int ____errnum_116, char * (____buf_117), __size_t_1 ____buflen_118);// L422:L424 -extern char * ((__strerror_l_122) (int ____errnum_120, ____locale_t_62 ____l_121));// L440 -extern void (____bzero_125) (void * (____s_123), __size_t_1 ____n_124);// L446 -extern void (____bzero_126) (void * (____s_123), __size_t_1 ____n_124);// L446 -extern void (__bcopy_130) (const void * (____src_127), void * (____dest_128), __size_t_1 ____n_129);// L450:L451 -extern void (__bzero_133) (void * (____s_131), __size_t_1 ____n_132);// L454 -extern int (__bcmp_137) (const void * (____s1_134), const void * (____s2_135), __size_t_1 ____n_136);// L457:L458 -extern char * ((__index_140) (const char * (____s_138), int ____c_139));// L484:L485 -extern char * ((__rindex_143) (const char * (____s_141), int ____c_142));// L512:L513 -extern int (__ffs_145) (int ____i_144);// L518 -extern int (__strcasecmp_148) (const char * (____s1_146), const char * (____s2_147));// L529:L530 -extern int (__strncasecmp_152) (const char * (____s1_149), const char * (____s2_150), __size_t_1 ____n_151);// L533:L534 -extern char * ((__strsep_155) (char * (* __restrict ____stringp_153), const char * __restrict ____delim_154));// L552:L554 -extern char * ((__strsignal_157) (int ____sig_156));// L559 -extern char * ((____stpcpy_160) (char * __restrict ____dest_158, const char * __restrict ____src_159));// L562:L563 -extern char * ((__stpcpy_163) (char * __restrict ____dest_161, const char * __restrict ____src_162));// L564:L565 -extern char * ((____stpncpy_167) (char * __restrict ____dest_164, const char * __restrict ____src_165, __size_t_1 ____n_166));// L569:L571 -extern char * ((__stpncpy_171) (char * __restrict ____dest_168, const char * __restrict ____src_169, __size_t_1 ____n_170));// L572:L574 +extern char * ((__strchr_81) (const char * (____s_78), int ____c_79));// L231:L232 +extern char * ((__strrchr_84) (const char * (____s_82), int ____c_83));// L258:L259 +extern __size_t_1 (__strcspn_87) (const char * (____s_85), const char * (____reject_86));// L280:L281 +extern __size_t_1 (__strspn_90) (const char * (____s_88), const char * (____accept_89));// L284:L285 +extern char * ((__strpbrk_93) (const char * (____s_91), const char * (____accept_92)));// L310:L311 +extern char * ((__strstr_96) (const char * (____haystack_94), const char * (____needle_95)));// L337:L338 +extern char * ((__strtok_99) (char * __restrict ____s_97, const char * __restrict ____delim_98));// L343:L344 +extern char * ((____strtok_r_103) (char * __restrict ____s_100, const char * __restrict ____delim_101, char * (* __restrict ____save_ptr_102)));// L349:L352 +extern char * ((__strtok_r_107) (char * __restrict ____s_104, const char * __restrict ____delim_105, char * (* __restrict ____save_ptr_106)));// L354:L356 +extern __size_t_1 (__strlen_109) (const char * (____s_108));// L394:L395 +extern __size_t_1 (__strlen_110) (const char * (____s_108));// L394:L395 +extern __size_t_1 (__strnlen_113) (const char * (____string_111), __size_t_1 ____maxlen_112);// L401:L402 +extern char * ((__strerror_115) (int ____errnum_114));// L408 +extern char * ((__strerror_116) (int ____errnum_114));// L408 +extern int (__strerror_r_120) (int ____errnum_117, char * (____buf_118), __size_t_1 ____buflen_119);// L422:L424 +extern char * ((__strerror_l_123) (int ____errnum_121, ____locale_t_62 ____l_122));// L440 +extern void (____bzero_126) (void * (____s_124), __size_t_1 ____n_125);// L446 +extern void (____bzero_127) (void * (____s_124), __size_t_1 ____n_125);// L446 +extern void (__bcopy_131) (const void * (____src_128), void * (____dest_129), __size_t_1 ____n_130);// L450:L451 +extern void (__bzero_134) (void * (____s_132), __size_t_1 ____n_133);// L454 +extern int (__bcmp_138) (const void * (____s1_135), const void * (____s2_136), __size_t_1 ____n_137);// L457:L458 +extern char * ((__index_141) (const char * (____s_139), int ____c_140));// L484:L485 +extern char * ((__rindex_144) (const char * (____s_142), int ____c_143));// L512:L513 +extern int (__ffs_146) (int ____i_145);// L518 +extern int (__strcasecmp_149) (const char * (____s1_147), const char * (____s2_148));// L529:L530 +extern int (__strncasecmp_153) (const char * (____s1_150), const char * (____s2_151), __size_t_1 ____n_152);// L533:L534 +extern char * ((__strsep_156) (char * (* __restrict ____stringp_154), const char * __restrict ____delim_155));// L552:L554 +extern char * ((__strsignal_158) (int ____sig_157));// L559 +extern char * ((____stpcpy_161) (char * __restrict ____dest_159, const char * __restrict ____src_160));// L562:L563 +extern char * ((__stpcpy_164) (char * __restrict ____dest_162, const char * __restrict ____src_163));// L564:L565 +extern char * ((____stpncpy_168) (char * __restrict ____dest_165, const char * __restrict ____src_166, __size_t_1 ____n_167));// L569:L571 +extern char * ((__stpncpy_172) (char * __restrict ____dest_169, const char * __restrict ____src_170, __size_t_1 ____n_171));// L572:L574 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ @@ -180,24 +180,24 @@ extern char * ((__stpncpy_171) (char * __restrict ____dest_168, const char * /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern char * ((____stpncpy_chk_200) (char * (____dest_196), const char * (____src_197), __size_t_1 ____n_198, __size_t_1 ____destlen_199));// L130:L131 -extern char * ((____stpncpy_alias_204) (char * (____dest_201), const char * (____src_202), __size_t_1 ____n_203));// L132:L133 +extern char * ((____stpncpy_chk_201) (char * (____dest_197), const char * (____src_198), __size_t_1 ____n_199, __size_t_1 ____destlen_200));// L130:L131 +extern char * ((____stpncpy_alias_205) (char * (____dest_202), const char * (____src_203), __size_t_1 ____n_204));// L132:L133 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -static char * (__strchr_pointer_216)= "eiffel~1.gco*57";// L3 static char * (__strchr_pointer_217)= "eiffel~1.gco*57";// L3 -void (__process_commands_219) () { +static char * (__strchr_pointer_218)= "eiffel~1.gco*57";// L3 +void (__process_commands_220) () { { -if (__static_condition_default_220) { +if (__static_condition_default_221) { { { -char * (__starpos_218)= ( ( void * ) 0 );// L7 +char * (__starpos_219)= ( ( void * ) 0 );// L7 } } @@ -205,24 +205,30 @@ char * (__starpos_218)= ( ( void * ) 0 );// L7 } -if (__static_condition_default_221) { +if (__static_condition_default_222) { { { -char * (__starpos_218)= ( ( void * ) 0 );// L7 +char * (__starpos_219)= ( ( void * ) 0 );// L7 -if (__static_condition_default_222) { - __starpos_218 = ( __strchr_80 ( __strchr_pointer_216 + 4,'*') ) ; // L9 -} if (__static_condition_default_223) { - __starpos_218 = ( __strchr_80 ( __strchr_pointer_217 + 4,'*') ) ; // L9 + __starpos_219 = ( __strchr_80 ( __strchr_pointer_217 + 4,'*') ) ; // L9 +} +if (__static_condition_default_224) { + __starpos_219 = ( __strchr_80 ( __strchr_pointer_218 + 4,'*') ) ; // L9 +} +if (__static_condition_default_225) { + __starpos_219 = ( __strchr_81 ( __strchr_pointer_217 + 4,'*') ) ; // L9 +} +if (__static_condition_default_226) { + __starpos_219 = ( __strchr_81 ( __strchr_pointer_218 + 4,'*') ) ; // L9 } -if ( __starpos_218 != ( ( void * ) 0 ) )// L10 +if ( __starpos_219 != ( ( void * ) 0 ) )// L10 { -* ( __starpos_218 - 1 ) = '\0' ; // L11 +* ( __starpos_219 - 1 ) = '\0' ; // L11 } __static_type_error("type error : no valid expression"); // L12 } @@ -232,14 +238,14 @@ __static_type_error("type error : no valid expression"); // L12 } }} -int (__main_226) (int __argc_224, char * (* (__argv_225))) { +int (__main_229) (int __argc_227, char * (* (__argv_228))) { { { - __process_commands_219 ( ) ; // L18 + __process_commands_220 ( ) ; // L18 return 0 ;// L19 } } diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/2db384a21d6.desugared.c b/fonda/cpp_testsuite/varBugs/MARLIN/2db384a21d6.desugared.c index 8e84d86c..df440517 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/2db384a21d6.desugared.c +++ b/fonda/cpp_testsuite/varBugs/MARLIN/2db384a21d6.desugared.c @@ -7,20 +7,15 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_12; -extern const bool __static_condition_default_6; extern const bool __static_condition_default_5; -extern const bool __static_condition_default_11; +extern const bool __static_condition_default_6; void __static_initializer_default() { __static_renaming("__serial_echopair_P_l_2", "serial_echopair_P_l"); __static_renaming("__Config_PrintSettings_4", "Config_PrintSettings"); __static_renaming("__main_9", "main"); -__static_renaming("__main_10", "main"); -__static_condition_renaming("__static_condition_default_5", "!(defined MESH_BED_LEVELING) && !(defined DISABLE_M503)"); -__static_condition_renaming("__static_condition_default_6", "(defined MESH_BED_LEVELING) && !(defined DISABLE_M503)"); -__static_condition_renaming("__static_condition_default_11", "(defined DISABLE_M503)"); -__static_condition_renaming("__static_condition_default_12", "!(defined DISABLE_M503)"); +__static_condition_renaming("__static_condition_default_5", "!(defined MESH_BED_LEVELING)"); +__static_condition_renaming("__static_condition_default_6", "(defined MESH_BED_LEVELING)"); }; @@ -96,25 +91,6 @@ while( 0 );// L5:L15 }} int (__main_9) (int __argc_7, char * (* (__argv_8))) { -if (__static_condition_default_11) { - -{ -{ - - - -__static_type_error("type error") ; // L24 -return 0 ;// L25 -} -} - - -} -} -int (__main_10) (int __argc_7, char * (* (__argv_8))) { - -if (__static_condition_default_12) { - { { @@ -127,5 +103,4 @@ return 0 ;// L25 } -} diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/30248214c7f.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/30248214c7f.clangres index e69de29b..f8544390 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/30248214c7f.clangres +++ b/fonda/cpp_testsuite/varBugs/MARLIN/30248214c7f.clangres @@ -0,0 +1,5 @@ +In file included from :342: +:1:8: error: 'defined' cannot be used as a macro name +#undef defined + ^ +1 error generated. diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/30248214c7f.desugared.c b/fonda/cpp_testsuite/varBugs/MARLIN/30248214c7f.desugared.c index 870ecc17..b96f12c9 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/30248214c7f.desugared.c +++ b/fonda/cpp_testsuite/varBugs/MARLIN/30248214c7f.desugared.c @@ -7,280 +7,211 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_382; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_380; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_198; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_1104; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_963; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_583; -extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_204; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_543; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_747; -extern const bool __static_condition_default_512; -extern const bool __static_condition_default_649; +extern const bool __static_condition_default_870; +extern const bool __static_condition_default_820; +extern const bool __static_condition_default_74; +extern const bool __static_condition_default_338; +extern const bool __static_condition_default_474; extern const bool __static_condition_default_684; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_894; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_408; -extern const bool __static_condition_default_311; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_433; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_577; +extern const bool __static_condition_default_707; +extern const bool __static_condition_default_924; +extern const bool __static_condition_default_162; +extern const bool __static_condition_default_626; extern const bool __static_condition_default_395; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_701; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_955; -extern const bool __static_condition_default_1109; -extern const bool __static_condition_default_914; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_613; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_549; -extern const bool __static_condition_default_793; -extern const bool __static_condition_default_559; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_488; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_1105; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_755; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_645; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_419; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_646; -extern const bool __static_condition_default_842; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_248; -extern const bool __static_condition_default_891; -extern const bool __static_condition_default_315; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_685; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_1072; extern const bool __static_condition_default_473; -extern const bool __static_condition_default_702; -extern const bool __static_condition_default_461; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_345; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_308; +extern const bool __static_condition_default_551; +extern const bool __static_condition_default_236; +extern const bool __static_condition_default_743; +extern const bool __static_condition_default_318; extern const bool __static_condition_default_991; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_929; -extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_313; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_803; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_521; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_564; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_761; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_536; -extern const bool __static_condition_default_658; +extern const bool __static_condition_default_435; +extern const bool __static_condition_default_575; +extern const bool __static_condition_default_774; +extern const bool __static_condition_default_790; extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_846; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_670; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_907; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_357; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_957; -extern const bool __static_condition_default_347; -extern const bool __static_condition_default_769; -extern const bool __static_condition_default_386; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_76; -extern const bool __static_condition_default_1106; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_677; extern const bool __static_condition_default_296; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_217; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_779; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_412; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_290; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_438; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_367; -extern const bool __static_condition_default_1111; -extern const bool __static_condition_default_709; -extern const bool __static_condition_default_875; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_402; -extern const bool __static_condition_default_393; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_780; -extern const bool __static_condition_default_1103; -extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_53; -extern const bool __static_condition_default_789; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_751; +extern const bool __static_condition_default_680; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_714; +extern const bool __static_condition_default_933; +extern const bool __static_condition_default_762; +extern const bool __static_condition_default_686; extern const bool __static_condition_default_223; -extern const bool __static_condition_default_602; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_969; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_881; +extern const bool __static_condition_default_234; +extern const bool __static_condition_default_772; +extern const bool __static_condition_default_1029; +extern const bool __static_condition_default_336; +extern const bool __static_condition_default_320; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_719; +extern const bool __static_condition_default_586; +extern const bool __static_condition_default_733; +extern const bool __static_condition_default_641; +extern const bool __static_condition_default_356; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_495; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_343; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_276; +extern const bool __static_condition_default_706; +extern const bool __static_condition_default_695; +extern const bool __static_condition_default_605; +extern const bool __static_condition_default_528; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_961; +extern const bool __static_condition_default_788; extern const bool __static_condition_default_431; -extern const bool __static_condition_default_497; +extern const bool __static_condition_default_766; +extern const bool __static_condition_default_905; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_540; +extern const bool __static_condition_default_457; +extern const bool __static_condition_default_421; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_226; +extern const bool __static_condition_default_379; +extern const bool __static_condition_default_595; +extern const bool __static_condition_default_225; +extern const bool __static_condition_default_400; +extern const bool __static_condition_default_935; +extern const bool __static_condition_default_784; +extern const bool __static_condition_default_696; +extern const bool __static_condition_default_496; +extern const bool __static_condition_default_556; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_567; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_374; +extern const bool __static_condition_default_358; +extern const bool __static_condition_default_501; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_893; +extern const bool __static_condition_default_500; +extern const bool __static_condition_default_300; +extern const bool __static_condition_default_1031; +extern const bool __static_condition_default_349; +extern const bool __static_condition_default_953; +extern const bool __static_condition_default_508; extern const bool __static_condition_default_745; -extern const bool __static_condition_default_590; -extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_638; -extern const bool __static_condition_default_388; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_693; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_887; -extern const bool __static_condition_default_787; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_1110; -extern const bool __static_condition_default_187; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_956; -extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_568; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_369; +extern const bool __static_condition_default_446; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_992; +extern const bool __static_condition_default_332; +extern const bool __static_condition_default_451; +extern const bool __static_condition_default_502; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_304; +extern const bool __static_condition_default_562; +extern const bool __static_condition_default_507; +extern const bool __static_condition_default_1017; extern const bool __static_condition_default_235; -extern const bool __static_condition_default_317; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_333; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_632; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_848; -extern const bool __static_condition_default_872; -extern const bool __static_condition_default_978; +extern const bool __static_condition_default_482; +extern const bool __static_condition_default_517; +extern const bool __static_condition_default_749; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_330; +extern const bool __static_condition_default_448; +extern const bool __static_condition_default_889; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_161; +extern const bool __static_condition_default_165; +extern const bool __static_condition_default_470; +extern const bool __static_condition_default_254; +extern const bool __static_condition_default_720; +extern const bool __static_condition_default_906; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_694; +extern const bool __static_condition_default_459; +extern const bool __static_condition_default_983; +extern const bool __static_condition_default_882; +extern const bool __static_condition_default_968; extern const bool __static_condition_default_278; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_753; -extern const bool __static_condition_default_858; +extern const bool __static_condition_default_118; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_798; +extern const bool __static_condition_default_833; +extern const bool __static_condition_default_954; +extern const bool __static_condition_default_381; +extern const bool __static_condition_default_579; +extern const bool __static_condition_default_672; +extern const bool __static_condition_default_904; +extern const bool __static_condition_default_610; +extern const bool __static_condition_default_612; +extern const bool __static_condition_default_648; +extern const bool __static_condition_default_962; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_688; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_917; +extern const bool __static_condition_default_227; +extern const bool __static_condition_default_588; +extern const bool __static_condition_default_294; +extern const bool __static_condition_default_898; +extern const bool __static_condition_default_328; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_729; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_739; +extern const bool __static_condition_default_453; +extern const bool __static_condition_default_984; +extern const bool __static_condition_default_1016; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_639; +extern const bool __static_condition_default_976; +extern const bool __static_condition_default_370; +extern const bool __static_condition_default_449; +extern const bool __static_condition_default_778; +extern const bool __static_condition_default_480; +extern const bool __static_condition_default_454; +extern const bool __static_condition_default_256; +extern const bool __static_condition_default_640; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_230; +extern const bool __static_condition_default_948; +extern const bool __static_condition_default_232; +extern const bool __static_condition_default_310; +extern const bool __static_condition_default_999; +extern const bool __static_condition_default_394; +extern const bool __static_condition_default_977; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_931; +extern const bool __static_condition_default_429; +extern const bool __static_condition_default_603; +extern const bool __static_condition_default_642; +extern const bool __static_condition_default_533; +extern const bool __static_condition_default_351; +extern const bool __static_condition_default_627; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_941; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_716; +extern const bool __static_condition_default_624; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_804; +extern const bool __static_condition_default_718; +extern const bool __static_condition_default_794; +extern const bool __static_condition_default_326; +extern const bool __static_condition_default_855; +extern const bool __static_condition_default_1006; +extern const bool __static_condition_default_655; +extern const bool __static_condition_default_1015; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -332,506 +263,431 @@ __static_renaming("____ssize_t_49", "__ssize_t"); __static_renaming("____syscall_slong_t_50", "__syscall_slong_t"); __static_renaming("____syscall_ulong_t_51", "__syscall_ulong_t"); __static_renaming("____loff_t_52", "__loff_t"); -__static_renaming("____qaddr_t_54", "__qaddr_t"); -__static_renaming("____caddr_t_55", "__caddr_t"); -__static_renaming("____intptr_t_56", "__intptr_t"); -__static_renaming("____socklen_t_57", "__socklen_t"); -__static_renaming("__FILE_59", "FILE"); -__static_renaming("____FILE_60", "__FILE"); -__static_renaming("____mbstate_t_69", "__mbstate_t"); -__static_renaming("___G_fpos_t_77", "_G_fpos_t"); -__static_renaming("___G_fpos64_t_85", "_G_fpos64_t"); -__static_renaming("____gnuc_va_list_86", "__gnuc_va_list"); -__static_renaming("___IO_lock_t_88", "_IO_lock_t"); -__static_renaming("___IO_FILE_171", "_IO_FILE"); -__static_renaming("___IO_FILE_172", "_IO_FILE"); -__static_renaming("___IO_2_1_stdin__175", "_IO_2_1_stdin_"); -__static_renaming("___IO_2_1_stdout__176", "_IO_2_1_stdout_"); -__static_renaming("___IO_2_1_stderr__177", "_IO_2_1_stderr_"); -__static_renaming("____io_read_fn_181", "__io_read_fn"); -__static_renaming("____io_write_fn_186", "__io_write_fn"); -__static_renaming("____io_seek_fn_192", "__io_seek_fn"); -__static_renaming("____io_close_fn_195", "__io_close_fn"); -__static_renaming("____underflow_196", "__underflow"); -__static_renaming("____underflow_197", "__underflow"); -__static_renaming("____uflow_199", "__uflow"); -__static_renaming("____uflow_200", "__uflow"); -__static_renaming("____overflow_202", "__overflow"); -__static_renaming("____overflow_203", "__overflow"); -__static_renaming("___IO_getc_208", "_IO_getc"); -__static_renaming("___IO_getc_209", "_IO_getc"); -__static_renaming("___IO_putc_215", "_IO_putc"); -__static_renaming("___IO_putc_216", "_IO_putc"); -__static_renaming("___IO_feof_221", "_IO_feof"); -__static_renaming("___IO_feof_222", "_IO_feof"); -__static_renaming("___IO_ferror_227", "_IO_ferror"); -__static_renaming("___IO_ferror_228", "_IO_ferror"); -__static_renaming("___IO_peekc_locked_233", "_IO_peekc_locked"); -__static_renaming("___IO_peekc_locked_234", "_IO_peekc_locked"); -__static_renaming("___IO_flockfile_236", "_IO_flockfile"); -__static_renaming("___IO_flockfile_237", "_IO_flockfile"); -__static_renaming("___IO_funlockfile_239", "_IO_funlockfile"); -__static_renaming("___IO_funlockfile_240", "_IO_funlockfile"); -__static_renaming("___IO_ftrylockfile_242", "_IO_ftrylockfile"); -__static_renaming("___IO_ftrylockfile_243", "_IO_ftrylockfile"); -__static_renaming("___IO_vfscanf_245", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_247", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_251", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_252", "_IO_vfscanf"); -__static_renaming("___IO_vfprintf_254", "_IO_vfprintf"); -__static_renaming("___IO_vfprintf_256", "_IO_vfprintf"); -__static_renaming("___IO_vfprintf_260", "_IO_vfprintf"); -__static_renaming("___IO_padn_261", "_IO_padn"); -__static_renaming("___IO_padn_262", "_IO_padn"); -__static_renaming("___IO_sgetn_265", "_IO_sgetn"); -__static_renaming("___IO_sgetn_266", "_IO_sgetn"); -__static_renaming("___IO_seekoff_268", "_IO_seekoff"); -__static_renaming("___IO_seekoff_269", "_IO_seekoff"); -__static_renaming("___IO_seekpos_272", "_IO_seekpos"); -__static_renaming("___IO_seekpos_273", "_IO_seekpos"); -__static_renaming("___IO_free_backup_area_276", "_IO_free_backup_area"); -__static_renaming("___IO_free_backup_area_277", "_IO_free_backup_area"); -__static_renaming("__va_list_279", "va_list"); -__static_renaming("__off_t_281", "off_t"); -__static_renaming("__off_t_283", "off_t"); -__static_renaming("__ssize_t_285", "ssize_t"); -__static_renaming("__fpos_t_287", "fpos_t"); -__static_renaming("__fpos_t_289", "fpos_t"); -__static_renaming("__stdin_291", "stdin"); -__static_renaming("__stdin_292", "stdin"); -__static_renaming("__stdout_294", "stdout"); -__static_renaming("__stdout_295", "stdout"); -__static_renaming("__stderr_297", "stderr"); -__static_renaming("__stderr_298", "stderr"); -__static_renaming("__remove_301", "remove"); -__static_renaming("__rename_304", "rename"); -__static_renaming("__renameat_309", "renameat"); -__static_renaming("__tmpfile_310", "tmpfile"); -__static_renaming("__tmpfile_312", "tmpfile"); -__static_renaming("__tmpfile_314", "tmpfile"); -__static_renaming("__tmpfile_316", "tmpfile"); -__static_renaming("__tmpnam_319", "tmpnam"); -__static_renaming("__tmpnam_320", "tmpnam"); -__static_renaming("__tmpnam_r_322", "tmpnam_r"); -__static_renaming("__tmpnam_r_323", "tmpnam_r"); -__static_renaming("__tempnam_326", "tempnam"); -__static_renaming("__tempnam_327", "tempnam"); -__static_renaming("__fclose_330", "fclose"); -__static_renaming("__fclose_332", "fclose"); -__static_renaming("__fflush_336", "fflush"); -__static_renaming("__fflush_unlocked_340", "fflush_unlocked"); -__static_renaming("__fopen_344", "fopen"); -__static_renaming("__fopen_346", "fopen"); -__static_renaming("__fopen_354", "fopen"); -__static_renaming("__fopen_356", "fopen"); -__static_renaming("__freopen_362", "freopen"); -__static_renaming("__freopen_364", "freopen"); -__static_renaming("__freopen_366", "freopen"); -__static_renaming("__freopen_368", "freopen"); -__static_renaming("__fdopen_372", "fdopen"); -__static_renaming("__fdopen_374", "fdopen"); -__static_renaming("__fmemopen_379", "fmemopen"); -__static_renaming("__fmemopen_381", "fmemopen"); -__static_renaming("__open_memstream_385", "open_memstream"); -__static_renaming("__open_memstream_387", "open_memstream"); -__static_renaming("__setbuf_392", "setbuf"); -__static_renaming("__setbuf_394", "setbuf"); -__static_renaming("__setvbuf_401", "setvbuf"); -__static_renaming("__setbuffer_407", "setbuffer"); -__static_renaming("__setlinebuf_411", "setlinebuf"); -__static_renaming("__fprintf_416", "fprintf"); -__static_renaming("__fprintf_418", "fprintf"); -__static_renaming("__printf_421", "printf"); -__static_renaming("__sprintf_424", "sprintf"); -__static_renaming("__vfprintf_430", "vfprintf"); -__static_renaming("__vprintf_437", "vprintf"); -__static_renaming("__vsprintf_443", "vsprintf"); -__static_renaming("__snprintf_448", "snprintf"); -__static_renaming("__vsnprintf_454", "vsnprintf"); -__static_renaming("__vdprintf_460", "vdprintf"); -__static_renaming("__dprintf_464", "dprintf"); -__static_renaming("__fscanf_468", "fscanf"); -__static_renaming("__fscanf_470", "fscanf"); -__static_renaming("__fscanf_472", "fscanf"); -__static_renaming("__fscanf_474", "fscanf"); -__static_renaming("__scanf_477", "scanf"); -__static_renaming("__scanf_478", "scanf"); -__static_renaming("__sscanf_481", "sscanf"); -__static_renaming("__vfscanf_509", "vfscanf"); -__static_renaming("__vfscanf_513", "vfscanf"); -__static_renaming("__vscanf_520", "vscanf"); -__static_renaming("__vscanf_522", "vscanf"); -__static_renaming("__vsscanf_528", "vsscanf"); -__static_renaming("__fgetc_563", "fgetc"); -__static_renaming("__getc_567", "getc"); -__static_renaming("__getchar_569", "getchar"); -__static_renaming("__getc_unlocked_572", "getc_unlocked"); -__static_renaming("__getchar_unlocked_574", "getchar_unlocked"); -__static_renaming("__fgetc_unlocked_577", "fgetc_unlocked"); -__static_renaming("__fputc_582", "fputc"); -__static_renaming("__fputc_584", "fputc"); -__static_renaming("__putc_589", "putc"); -__static_renaming("__putchar_592", "putchar"); -__static_renaming("__fputc_unlocked_596", "fputc_unlocked"); -__static_renaming("__putc_unlocked_601", "putc_unlocked"); -__static_renaming("__putchar_unlocked_604", "putchar_unlocked"); -__static_renaming("__getw_607", "getw"); -__static_renaming("__putw_612", "putw"); -__static_renaming("__fgets_618", "fgets"); -__static_renaming("__fgets_620", "fgets"); -__static_renaming("__fgets_622", "fgets"); -__static_renaming("__fgets_624", "fgets"); -__static_renaming("____getdelim_631", "__getdelim"); -__static_renaming("____getdelim_635", "__getdelim"); -__static_renaming("__getdelim_644", "getdelim"); -__static_renaming("__getdelim_648", "getdelim"); -__static_renaming("__getline_656", "getline"); -__static_renaming("__getline_660", "getline"); -__static_renaming("__fputs_667", "fputs"); -__static_renaming("__fputs_669", "fputs"); -__static_renaming("__puts_672", "puts"); -__static_renaming("__ungetc_676", "ungetc"); -__static_renaming("__fseek_714", "fseek"); -__static_renaming("__fseek_716", "fseek"); -__static_renaming("__ftell_720", "ftell"); -__static_renaming("__ftell_722", "ftell"); -__static_renaming("__rewind_726", "rewind"); -__static_renaming("__fseeko_733", "fseeko"); -__static_renaming("__fseeko_744", "fseeko"); -__static_renaming("__ftello_750", "ftello"); -__static_renaming("__ftello_754", "ftello"); -__static_renaming("__ftello_758", "ftello"); -__static_renaming("__fgetpos_766", "fgetpos"); -__static_renaming("__fgetpos_778", "fgetpos"); -__static_renaming("__fsetpos_786", "fsetpos"); -__static_renaming("__fsetpos_790", "fsetpos"); -__static_renaming("__clearerr_796", "clearerr"); -__static_renaming("__feof_800", "feof"); -__static_renaming("__feof_802", "feof"); -__static_renaming("__ferror_806", "ferror"); -__static_renaming("__ferror_808", "ferror"); -__static_renaming("__clearerr_unlocked_812", "clearerr_unlocked"); -__static_renaming("__feof_unlocked_816", "feof_unlocked"); -__static_renaming("__feof_unlocked_818", "feof_unlocked"); -__static_renaming("__ferror_unlocked_822", "ferror_unlocked"); -__static_renaming("__ferror_unlocked_824", "ferror_unlocked"); -__static_renaming("__perror_827", "perror"); -__static_renaming("__perror_828", "perror"); -__static_renaming("__sys_nerr_829", "sys_nerr"); -__static_renaming("__sys_errlist_830", "sys_errlist"); -__static_renaming("__fileno_833", "fileno"); -__static_renaming("__fileno_835", "fileno"); -__static_renaming("__fileno_unlocked_839", "fileno_unlocked"); -__static_renaming("__fileno_unlocked_841", "fileno_unlocked"); -__static_renaming("__popen_845", "popen"); -__static_renaming("__popen_847", "popen"); -__static_renaming("__pclose_851", "pclose"); -__static_renaming("__ctermid_854", "ctermid"); -__static_renaming("__flockfile_857", "flockfile"); -__static_renaming("__ftrylockfile_861", "ftrylockfile"); -__static_renaming("__ftrylockfile_863", "ftrylockfile"); -__static_renaming("__funlockfile_867", "funlockfile"); -__static_renaming("____sprintf_chk_899", "__sprintf_chk"); -__static_renaming("____vsprintf_chk_906", "__vsprintf_chk"); -__static_renaming("____snprintf_chk_920", "__snprintf_chk"); -__static_renaming("____vsnprintf_chk_928", "__vsnprintf_chk"); -__static_renaming("____fprintf_chk_943", "__fprintf_chk"); -__static_renaming("____printf_chk_947", "__printf_chk"); -__static_renaming("____vfprintf_chk_954", "__vfprintf_chk"); -__static_renaming("____vprintf_chk_962", "__vprintf_chk"); -__static_renaming("____dprintf_chk_984", "__dprintf_chk"); -__static_renaming("____vdprintf_chk_990", "__vdprintf_chk"); -__static_renaming("____fgets_chk_1004", "__fgets_chk"); -__static_renaming("____fgets_chk_1006", "__fgets_chk"); -__static_renaming("____fgets_chk_1008", "__fgets_chk"); -__static_renaming("____fgets_alias_1014", "__fgets_alias"); -__static_renaming("____fgets_chk_warn_1021", "__fgets_chk_warn"); -__static_renaming("____cnt_1087", "__cnt"); -__static_renaming("____cptr_1088", "__cptr"); -__static_renaming("__millis_1092", "millis"); -__static_renaming("__millis_1093", "millis"); -__static_renaming("__millis_1094", "millis"); -__static_renaming("__thermal_runaway_protection_1102", "thermal_runaway_protection"); -__static_renaming("__main_1107", "main"); -__static_renaming("__main_1108", "main"); +__static_renaming("____qaddr_t_53", "__qaddr_t"); +__static_renaming("____caddr_t_54", "__caddr_t"); +__static_renaming("____intptr_t_55", "__intptr_t"); +__static_renaming("____socklen_t_56", "__socklen_t"); +__static_renaming("__FILE_58", "FILE"); +__static_renaming("____FILE_59", "__FILE"); +__static_renaming("____mbstate_t_68", "__mbstate_t"); +__static_renaming("___G_fpos_t_75", "_G_fpos_t"); +__static_renaming("___G_fpos64_t_81", "_G_fpos64_t"); +__static_renaming("____gnuc_va_list_82", "__gnuc_va_list"); +__static_renaming("___IO_lock_t_84", "_IO_lock_t"); +__static_renaming("___IO_FILE_163", "_IO_FILE"); +__static_renaming("___IO_FILE_164", "_IO_FILE"); +__static_renaming("___IO_2_1_stdin__167", "_IO_2_1_stdin_"); +__static_renaming("___IO_2_1_stdout__168", "_IO_2_1_stdout_"); +__static_renaming("___IO_2_1_stderr__169", "_IO_2_1_stderr_"); +__static_renaming("____io_read_fn_173", "__io_read_fn"); +__static_renaming("____io_write_fn_177", "__io_write_fn"); +__static_renaming("____io_seek_fn_181", "__io_seek_fn"); +__static_renaming("____io_close_fn_183", "__io_close_fn"); +__static_renaming("____underflow_184", "__underflow"); +__static_renaming("____underflow_185", "__underflow"); +__static_renaming("____uflow_186", "__uflow"); +__static_renaming("____uflow_187", "__uflow"); +__static_renaming("____overflow_188", "__overflow"); +__static_renaming("____overflow_189", "__overflow"); +__static_renaming("___IO_getc_193", "_IO_getc"); +__static_renaming("___IO_getc_194", "_IO_getc"); +__static_renaming("___IO_putc_199", "_IO_putc"); +__static_renaming("___IO_putc_200", "_IO_putc"); +__static_renaming("___IO_feof_204", "_IO_feof"); +__static_renaming("___IO_feof_205", "_IO_feof"); +__static_renaming("___IO_ferror_209", "_IO_ferror"); +__static_renaming("___IO_ferror_210", "_IO_ferror"); +__static_renaming("___IO_peekc_locked_214", "_IO_peekc_locked"); +__static_renaming("___IO_peekc_locked_215", "_IO_peekc_locked"); +__static_renaming("___IO_flockfile_216", "_IO_flockfile"); +__static_renaming("___IO_flockfile_217", "_IO_flockfile"); +__static_renaming("___IO_funlockfile_218", "_IO_funlockfile"); +__static_renaming("___IO_funlockfile_219", "_IO_funlockfile"); +__static_renaming("___IO_ftrylockfile_220", "_IO_ftrylockfile"); +__static_renaming("___IO_ftrylockfile_221", "_IO_ftrylockfile"); +__static_renaming("___IO_vfscanf_222", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_224", "_IO_vfscanf"); +__static_renaming("___IO_vfprintf_231", "_IO_vfprintf"); +__static_renaming("___IO_vfprintf_233", "_IO_vfprintf"); +__static_renaming("___IO_padn_238", "_IO_padn"); +__static_renaming("___IO_padn_239", "_IO_padn"); +__static_renaming("___IO_sgetn_240", "_IO_sgetn"); +__static_renaming("___IO_sgetn_241", "_IO_sgetn"); +__static_renaming("___IO_seekoff_242", "_IO_seekoff"); +__static_renaming("___IO_seekoff_243", "_IO_seekoff"); +__static_renaming("___IO_seekpos_244", "_IO_seekpos"); +__static_renaming("___IO_seekpos_245", "_IO_seekpos"); +__static_renaming("___IO_free_backup_area_246", "_IO_free_backup_area"); +__static_renaming("___IO_free_backup_area_247", "_IO_free_backup_area"); +__static_renaming("__va_list_248", "va_list"); +__static_renaming("__off_t_250", "off_t"); +__static_renaming("__off_t_251", "off_t"); +__static_renaming("__ssize_t_252", "ssize_t"); +__static_renaming("__fpos_t_253", "fpos_t"); +__static_renaming("__fpos_t_255", "fpos_t"); +__static_renaming("__stdin_257", "stdin"); +__static_renaming("__stdin_258", "stdin"); +__static_renaming("__stdout_259", "stdout"); +__static_renaming("__stdout_260", "stdout"); +__static_renaming("__stderr_261", "stderr"); +__static_renaming("__stderr_262", "stderr"); +__static_renaming("__remove_264", "remove"); +__static_renaming("__rename_267", "rename"); +__static_renaming("__renameat_272", "renameat"); +__static_renaming("__tmpfile_273", "tmpfile"); +__static_renaming("__tmpfile_275", "tmpfile"); +__static_renaming("__tmpfile_277", "tmpfile"); +__static_renaming("__tmpfile_279", "tmpfile"); +__static_renaming("__tmpnam_282", "tmpnam"); +__static_renaming("__tmpnam_283", "tmpnam"); +__static_renaming("__tmpnam_r_285", "tmpnam_r"); +__static_renaming("__tmpnam_r_286", "tmpnam_r"); +__static_renaming("__tempnam_289", "tempnam"); +__static_renaming("__tempnam_290", "tempnam"); +__static_renaming("__fclose_293", "fclose"); +__static_renaming("__fclose_295", "fclose"); +__static_renaming("__fflush_299", "fflush"); +__static_renaming("__fflush_unlocked_303", "fflush_unlocked"); +__static_renaming("__fopen_307", "fopen"); +__static_renaming("__fopen_309", "fopen"); +__static_renaming("__fopen_317", "fopen"); +__static_renaming("__fopen_319", "fopen"); +__static_renaming("__freopen_325", "freopen"); +__static_renaming("__freopen_327", "freopen"); +__static_renaming("__freopen_329", "freopen"); +__static_renaming("__freopen_331", "freopen"); +__static_renaming("__fdopen_335", "fdopen"); +__static_renaming("__fdopen_337", "fdopen"); +__static_renaming("__fmemopen_342", "fmemopen"); +__static_renaming("__fmemopen_344", "fmemopen"); +__static_renaming("__open_memstream_348", "open_memstream"); +__static_renaming("__open_memstream_350", "open_memstream"); +__static_renaming("__setbuf_355", "setbuf"); +__static_renaming("__setbuf_357", "setbuf"); +__static_renaming("__setvbuf_364", "setvbuf"); +__static_renaming("__setbuffer_369", "setbuffer"); +__static_renaming("__setlinebuf_373", "setlinebuf"); +__static_renaming("__fprintf_378", "fprintf"); +__static_renaming("__fprintf_380", "fprintf"); +__static_renaming("__printf_383", "printf"); +__static_renaming("__sprintf_386", "sprintf"); +__static_renaming("__vfprintf_392", "vfprintf"); +__static_renaming("__vprintf_399", "vprintf"); +__static_renaming("__vsprintf_405", "vsprintf"); +__static_renaming("__snprintf_409", "snprintf"); +__static_renaming("__vsnprintf_415", "vsnprintf"); +__static_renaming("__vdprintf_420", "vdprintf"); +__static_renaming("__dprintf_424", "dprintf"); +__static_renaming("__fscanf_428", "fscanf"); +__static_renaming("__fscanf_430", "fscanf"); +__static_renaming("__fscanf_432", "fscanf"); +__static_renaming("__fscanf_434", "fscanf"); +__static_renaming("__scanf_437", "scanf"); +__static_renaming("__scanf_438", "scanf"); +__static_renaming("__sscanf_441", "sscanf"); +__static_renaming("__vfscanf_468", "vfscanf"); +__static_renaming("__vfscanf_472", "vfscanf"); +__static_renaming("__vscanf_479", "vscanf"); +__static_renaming("__vscanf_481", "vscanf"); +__static_renaming("__vsscanf_487", "vsscanf"); +__static_renaming("__fgetc_520", "fgetc"); +__static_renaming("__getc_523", "getc"); +__static_renaming("__getchar_524", "getchar"); +__static_renaming("__getc_unlocked_527", "getc_unlocked"); +__static_renaming("__getchar_unlocked_529", "getchar_unlocked"); +__static_renaming("__fgetc_unlocked_532", "fgetc_unlocked"); +__static_renaming("__fputc_537", "fputc"); +__static_renaming("__fputc_539", "fputc"); +__static_renaming("__putc_544", "putc"); +__static_renaming("__putchar_546", "putchar"); +__static_renaming("__fputc_unlocked_550", "fputc_unlocked"); +__static_renaming("__putc_unlocked_555", "putc_unlocked"); +__static_renaming("__putchar_unlocked_558", "putchar_unlocked"); +__static_renaming("__getw_561", "getw"); +__static_renaming("__putw_566", "putw"); +__static_renaming("__fgets_572", "fgets"); +__static_renaming("__fgets_574", "fgets"); +__static_renaming("__fgets_576", "fgets"); +__static_renaming("__fgets_578", "fgets"); +__static_renaming("____getdelim_585", "__getdelim"); +__static_renaming("____getdelim_587", "__getdelim"); +__static_renaming("__getdelim_594", "getdelim"); +__static_renaming("__getdelim_596", "getdelim"); +__static_renaming("__getline_602", "getline"); +__static_renaming("__getline_604", "getline"); +__static_renaming("__fputs_609", "fputs"); +__static_renaming("__fputs_611", "fputs"); +__static_renaming("__puts_614", "puts"); +__static_renaming("__ungetc_618", "ungetc"); +__static_renaming("__fseek_654", "fseek"); +__static_renaming("__fseek_656", "fseek"); +__static_renaming("__ftell_660", "ftell"); +__static_renaming("__ftell_662", "ftell"); +__static_renaming("__rewind_666", "rewind"); +__static_renaming("__fseeko_671", "fseeko"); +__static_renaming("__fseeko_679", "fseeko"); +__static_renaming("__ftello_683", "ftello"); +__static_renaming("__ftello_685", "ftello"); +__static_renaming("__ftello_687", "ftello"); +__static_renaming("__fgetpos_693", "fgetpos"); +__static_renaming("__fgetpos_705", "fgetpos"); +__static_renaming("__fsetpos_713", "fsetpos"); +__static_renaming("__fsetpos_717", "fsetpos"); +__static_renaming("__clearerr_723", "clearerr"); +__static_renaming("__feof_726", "feof"); +__static_renaming("__feof_728", "feof"); +__static_renaming("__ferror_732", "ferror"); +__static_renaming("__ferror_734", "ferror"); +__static_renaming("__clearerr_unlocked_738", "clearerr_unlocked"); +__static_renaming("__feof_unlocked_742", "feof_unlocked"); +__static_renaming("__feof_unlocked_744", "feof_unlocked"); +__static_renaming("__ferror_unlocked_748", "ferror_unlocked"); +__static_renaming("__ferror_unlocked_750", "ferror_unlocked"); +__static_renaming("__perror_753", "perror"); +__static_renaming("__perror_754", "perror"); +__static_renaming("__sys_nerr_755", "sys_nerr"); +__static_renaming("__sys_errlist_756", "sys_errlist"); +__static_renaming("__fileno_759", "fileno"); +__static_renaming("__fileno_761", "fileno"); +__static_renaming("__fileno_unlocked_765", "fileno_unlocked"); +__static_renaming("__fileno_unlocked_767", "fileno_unlocked"); +__static_renaming("__popen_771", "popen"); +__static_renaming("__popen_773", "popen"); +__static_renaming("__pclose_777", "pclose"); +__static_renaming("__ctermid_780", "ctermid"); +__static_renaming("__flockfile_783", "flockfile"); +__static_renaming("__ftrylockfile_787", "ftrylockfile"); +__static_renaming("__ftrylockfile_789", "ftrylockfile"); +__static_renaming("__funlockfile_793", "funlockfile"); +__static_renaming("____sprintf_chk_825", "__sprintf_chk"); +__static_renaming("____vsprintf_chk_832", "__vsprintf_chk"); +__static_renaming("____snprintf_chk_846", "__snprintf_chk"); +__static_renaming("____vsnprintf_chk_854", "__vsnprintf_chk"); +__static_renaming("____fprintf_chk_869", "__fprintf_chk"); +__static_renaming("____printf_chk_873", "__printf_chk"); +__static_renaming("____vfprintf_chk_880", "__vfprintf_chk"); +__static_renaming("____vprintf_chk_888", "__vprintf_chk"); +__static_renaming("____dprintf_chk_910", "__dprintf_chk"); +__static_renaming("____vdprintf_chk_916", "__vdprintf_chk"); +__static_renaming("____fgets_chk_930", "__fgets_chk"); +__static_renaming("____fgets_chk_932", "__fgets_chk"); +__static_renaming("____fgets_chk_934", "__fgets_chk"); +__static_renaming("____fgets_alias_940", "__fgets_alias"); +__static_renaming("____fgets_chk_warn_947", "__fgets_chk_warn"); +__static_renaming("____cnt_1013", "__cnt"); +__static_renaming("____cptr_1014", "__cptr"); +__static_renaming("__millis_1018", "millis"); +__static_renaming("__millis_1019", "millis"); +__static_renaming("__thermal_runaway_protection_1027", "thermal_runaway_protection"); +__static_renaming("__main_1030", "main"); -__static_condition_renaming("__static_condition_default_53", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_76", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_84", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_123", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_169", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_170", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_173", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_182", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_187", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_193", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_198", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_201", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_204", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_210", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_217", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_223", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_229", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_235", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_238", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_241", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_244", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_246", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_248", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_249", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_250", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_253", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_255", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_257", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_258", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_259", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_263", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_264", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_267", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_270", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_271", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_274", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_275", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_278", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_280", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); -__static_condition_renaming("__static_condition_default_282", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_284", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_286", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_288", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_290", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_293", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_296", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_299", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_311", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_313", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_315", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_317", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_331", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_333", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_337", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_341", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_345", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_347", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_355", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_357", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_363", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_365", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_367", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_369", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_373", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_375", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_380", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_382", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_386", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_388", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_393", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_395", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_402", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_408", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_412", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_417", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_419", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_431", "!(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_432", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_433", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_438", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_444", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_455", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_461", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_469", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_471", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_473", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_475", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_486", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_488", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_489", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_491", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_493", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_494", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_497", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_499", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_503", "!(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_510", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_511", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_512", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_514", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_515", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_516", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_521", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_523", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_529", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_536", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_537", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_538", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_539", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_541", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_542", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_543", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_544", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_549", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_550", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_552", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_553", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_559", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_560", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_564", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_568", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_573", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_578", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_583", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_585", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_590", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_597", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_602", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_608", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_613", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_619", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_621", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_623", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_625", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_632", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_633", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_634", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_636", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_637", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_638", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_645", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_646", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_647", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_649", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_650", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_651", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_657", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_658", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_659", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_661", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_662", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_663", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_668", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_670", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_677", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_683", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_684", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_685", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_686", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_692", "!(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_693", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_699", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_700", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_701", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_702", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_708", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_709", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_715", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_717", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_721", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_723", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_727", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_734", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_735", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_736", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_745", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_746", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_747", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_751", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_752", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_753", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_755", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_756", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_757", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_759", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_760", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_761", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_767", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_768", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_769", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_779", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_780", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_781", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_787", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_788", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_789", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_791", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_792", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_793", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_797", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_801", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_803", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_807", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_809", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_813", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_817", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_819", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_823", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_825", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_834", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_836", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_840", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_842", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_846", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_848", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_852", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_858", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_862", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_864", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_868", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_872", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_875", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_878", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_883", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_887", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_891", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_894", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_907", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_914", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_929", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_938", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_944", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_955", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_956", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_957", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_963", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_967", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_972", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_978", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_979", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_980", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_991", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_998", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1005", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1007", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1009", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1015", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1022", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1027", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1028", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1035", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1036", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1042", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1043", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1050", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1051", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1057", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1058", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1065", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1066", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1072", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1073", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1080", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1081", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1089", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_1090", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1091", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1103", "(defined THERMAL_RUNAWAY_PROTECTION_PERIOD) && (THERMAL_RUNAWAY_PROTECTION_PERIOD > 0)"); -__static_condition_renaming("__static_condition_default_1104", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined THERMAL_RUNAWAY_PROTECTION_PERIOD) && (THERMAL_RUNAWAY_PROTECTION_PERIOD > 0) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined THERMAL_RUNAWAY_PROTECTION_PERIOD) && (THERMAL_RUNAWAY_PROTECTION_PERIOD > 0) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined THERMAL_RUNAWAY_PROTECTION_PERIOD) && (THERMAL_RUNAWAY_PROTECTION_PERIOD > 0) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined THERMAL_RUNAWAY_PROTECTION_PERIOD) && (THERMAL_RUNAWAY_PROTECTION_PERIOD > 0) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined THERMAL_RUNAWAY_PROTECTION_PERIOD) && (THERMAL_RUNAWAY_PROTECTION_PERIOD > 0)"); -__static_condition_renaming("__static_condition_default_1105", "(defined __need___FILE) && (defined THERMAL_RUNAWAY_PROTECTION_PERIOD) && (THERMAL_RUNAWAY_PROTECTION_PERIOD > 0)"); -__static_condition_renaming("__static_condition_default_1106", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined THERMAL_RUNAWAY_PROTECTION_PERIOD) && (THERMAL_RUNAWAY_PROTECTION_PERIOD > 0)"); -__static_condition_renaming("__static_condition_default_1109", "!(defined THERMAL_RUNAWAY_PROTECTION_PERIOD) || (defined THERMAL_RUNAWAY_PROTECTION_PERIOD) && !(THERMAL_RUNAWAY_PROTECTION_PERIOD > 0)"); -__static_condition_renaming("__static_condition_default_1110", "(defined THERMAL_RUNAWAY_PROTECTION_PERIOD) && (THERMAL_RUNAWAY_PROTECTION_PERIOD > 0)"); -__static_condition_renaming("__static_condition_default_1111", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_74", "(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_118", "(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_161", "(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_162", "(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_165", "(defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_223", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_225", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_226", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_227", "(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_230", "(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_232", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_234", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_235", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_236", "(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_249", "!(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); +__static_condition_renaming("__static_condition_default_254", "!(defined _FILE_OFFSET_BITS) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_256", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_274", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_276", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_278", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_280", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_294", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_296", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_300", "(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_304", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_308", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_310", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_318", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_320", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_326", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_328", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_330", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_332", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_336", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_338", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_343", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_345", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_349", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_351", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_356", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_358", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_370", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_374", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_379", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_381", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_393", "!(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_394", "(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_395", "(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_400", "!(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_421", "!(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_429", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_431", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_433", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_435", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_446", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_448", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_449", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_451", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_453", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_454", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_457", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_459", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_469", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_470", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_471", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_473", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_474", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_475", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_480", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_482", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_494", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_495", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_496", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_497", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_499", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_500", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_501", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_502", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_507", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_508", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_510", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_511", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_517", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_528", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_533", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_538", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_540", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_551", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_556", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_562", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_567", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_573", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_575", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_577", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_579", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_586", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_588", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_595", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_597", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_603", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_605", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_610", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_612", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_624", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_625", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_626", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_627", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_633", "!(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_639", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_640", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_641", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_642", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_648", "!(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_649", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_655", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_657", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_661", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_663", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_672", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_680", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_684", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_686", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_688", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_694", "!(defined _FILE_OFFSET_BITS) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_695", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_696", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_706", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_707", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_708", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_714", "!(defined _FILE_OFFSET_BITS) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_715", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_716", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_718", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_719", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_720", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_727", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_729", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_733", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_735", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_739", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_743", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_745", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_749", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_751", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_760", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_762", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_766", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_768", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_772", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_774", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_778", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_784", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_788", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_790", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_794", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_798", "!(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_801", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_804", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_809", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_813", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_817", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_820", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_833", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_840", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_855", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_864", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_870", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_881", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_882", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_883", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_889", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_893", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_898", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_904", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_905", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_906", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_917", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_924", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_931", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_933", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_935", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_941", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_948", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_953", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_954", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_961", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_962", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_968", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_969", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_976", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_977", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_983", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_984", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_991", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_992", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_998", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_999", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1006", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1007", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1015", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_1016", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1017", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1028", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) || (defined __STRICT_ANSI__)"); +__static_condition_renaming("__static_condition_default_1029", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1031", "(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -if (__static_condition_default_1111) -{ +if (__static_condition_default_1031) { __static_parse_error("Unable to parse"); } }; @@ -888,142 +744,142 @@ typedef long int ____ssize_t_49;// L110:L172 typedef long int ____syscall_slong_t_50;// L93:L175 typedef unsigned long int ____syscall_ulong_t_51;// L94:L177 typedef ____off64_t_24 ____loff_t_52;// L181 -typedef ____quad_t_14 * (____qaddr_t_54);// L182 -typedef char * (____caddr_t_55);// L183 -typedef long int ____intptr_t_56;// L110:L186 -typedef unsigned int ____socklen_t_57;// L92:L189 -typedef struct __forward_tag_reference_58 __FILE_59;// L48 -typedef struct __forward_tag_reference_58 ____FILE_60;// L64 -union ____anonymous_tag_61_62 { -unsigned int ____wch_63;// L265 -char ____wchb_64[4];// L92 +typedef ____quad_t_14 * (____qaddr_t_53);// L182 +typedef char * (____caddr_t_54);// L183 +typedef long int ____intptr_t_55;// L110:L186 +typedef unsigned int ____socklen_t_56;// L92:L189 +typedef struct __forward_tag_reference_57 __FILE_58;// L48 +typedef struct __forward_tag_reference_57 ____FILE_59;// L64 +union ____anonymous_tag_60_61 { +unsigned int ____wch_62;// L265 +char ____wchb_63[4];// L92 }; -struct ____anonymous_tag_65_66 { -int ____count_67;// L84 -union ____anonymous_tag_61_62 ____value_68;// L85 +struct ____anonymous_tag_64_65 { +int ____count_66;// L84 +union ____anonymous_tag_60_61 ____value_67;// L85 }; -typedef struct ____anonymous_tag_65_66 ____mbstate_t_69;// L82:L94 -struct ____anonymous_tag_70_71 { -____off_t_23 ____pos_72;// L0 -____mbstate_t_69 ____state_74;// L0 +typedef struct ____anonymous_tag_64_65 ____mbstate_t_68;// L82:L94 +struct ____anonymous_tag_69_70 { +____off_t_23 ____pos_71;// L0 +____mbstate_t_68 ____state_72;// L0 }; -typedef struct ____anonymous_tag_70_71 ___G_fpos_t_77;// L21:L25 -struct ____anonymous_tag_78_79 { -____off64_t_24 ____pos_80;// L0 -____mbstate_t_69 ____state_82;// L0 +typedef struct ____anonymous_tag_69_70 ___G_fpos_t_75;// L21:L25 +struct ____anonymous_tag_76_77 { +____off64_t_24 ____pos_78;// L0 +____mbstate_t_68 ____state_79;// L0 }; -typedef struct ____anonymous_tag_78_79 ___G_fpos64_t_85;// L26:L30 -typedef __builtin_va_list ____gnuc_va_list_86;// L40 -typedef void ___IO_lock_t_88;// L150 -struct ___IO_marker_90 { -struct __forward_tag_reference_89 * (___next_91);// L0 -struct __forward_tag_reference_58 * (___sbuf_92);// L0 -int ___pos_93;// L162 +typedef struct ____anonymous_tag_76_77 ___G_fpos64_t_81;// L26:L30 +typedef __builtin_va_list ____gnuc_va_list_82;// L40 +typedef void ___IO_lock_t_84;// L150 +struct ___IO_marker_86 { +struct __forward_tag_reference_85 * (___next_87);// L0 +struct __forward_tag_reference_57 * (___sbuf_88);// L0 +int ___pos_89;// L162 }; -enum ____codecvt_result_98 { -____codecvt_ok_94, -____codecvt_partial_95, -____codecvt_error_96, -____codecvt_noconv_97, +enum ____codecvt_result_94 { +____codecvt_ok_90, +____codecvt_partial_91, +____codecvt_error_92, +____codecvt_noconv_93, }; -struct ___IO_FILE_99 { -int ___flags_100;// L242 -char * (___IO_read_ptr_101);// L247 -char * (___IO_read_end_102);// L248 -char * (___IO_read_base_103);// L249 -char * (___IO_write_base_104);// L250 -char * (___IO_write_ptr_105);// L251 -char * (___IO_write_end_106);// L252 -char * (___IO_buf_base_107);// L253 -char * (___IO_buf_end_108);// L254 -char * (___IO_save_base_109);// L256 -char * (___IO_backup_base_110);// L257 -char * (___IO_save_end_111);// L258 -struct ___IO_marker_90 * (___markers_112);// L260 -struct __forward_tag_reference_58 * (___chain_113);// L0 -int ___fileno_114;// L264 -int ___flags2_115;// L268 -____off_t_23 ___old_offset_116;// L0 -unsigned short ___cur_column_118;// L274 -signed char ___vtable_offset_119;// L275 -char ___shortbuf_120[1];// L276 -___IO_lock_t_88 * (___lock_121);// L0 +struct ___IO_FILE_95 { +int ___flags_96;// L242 +char * (___IO_read_ptr_97);// L247 +char * (___IO_read_end_98);// L248 +char * (___IO_read_base_99);// L249 +char * (___IO_write_base_100);// L250 +char * (___IO_write_ptr_101);// L251 +char * (___IO_write_end_102);// L252 +char * (___IO_buf_base_103);// L253 +char * (___IO_buf_end_104);// L254 +char * (___IO_save_base_105);// L256 +char * (___IO_backup_base_106);// L257 +char * (___IO_save_end_107);// L258 +struct ___IO_marker_86 * (___markers_108);// L260 +struct __forward_tag_reference_57 * (___chain_109);// L0 +int ___fileno_110;// L264 +int ___flags2_111;// L268 +____off_t_23 ___old_offset_112;// L0 +unsigned short ___cur_column_113;// L274 +signed char ___vtable_offset_114;// L275 +char ___shortbuf_115[1];// L276 +___IO_lock_t_84 * (___lock_116);// L0 }; -struct ___IO_FILE_124 { -int ___flags_125;// L242 -char * (___IO_read_ptr_126);// L247 -char * (___IO_read_end_127);// L248 -char * (___IO_read_base_128);// L249 -char * (___IO_write_base_129);// L250 -char * (___IO_write_ptr_130);// L251 -char * (___IO_write_end_131);// L252 -char * (___IO_buf_base_132);// L253 -char * (___IO_buf_end_133);// L254 -char * (___IO_save_base_134);// L256 -char * (___IO_backup_base_135);// L257 -char * (___IO_save_end_136);// L258 -struct ___IO_marker_90 * (___markers_137);// L260 -struct __forward_tag_reference_58 * (___chain_138);// L0 -int ___fileno_139;// L264 -int ___flags2_140;// L268 -____off_t_23 ___old_offset_141;// L0 -unsigned short ___cur_column_143;// L274 -signed char ___vtable_offset_144;// L275 -char ___shortbuf_145[1];// L276 -___IO_lock_t_88 * (___lock_146);// L0 -____off64_t_24 ___offset_148;// L0 -void * (____pad1_150);// L297 -void * (____pad2_151);// L298 -void * (____pad3_152);// L299 -void * (____pad4_153);// L300 -__size_t_1 ____pad5_154;// L0 -int ___mode_155;// L303 -char ___unused2_156[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +struct ___IO_FILE_119 { +int ___flags_120;// L242 +char * (___IO_read_ptr_121);// L247 +char * (___IO_read_end_122);// L248 +char * (___IO_read_base_123);// L249 +char * (___IO_write_base_124);// L250 +char * (___IO_write_ptr_125);// L251 +char * (___IO_write_end_126);// L252 +char * (___IO_buf_base_127);// L253 +char * (___IO_buf_end_128);// L254 +char * (___IO_save_base_129);// L256 +char * (___IO_backup_base_130);// L257 +char * (___IO_save_end_131);// L258 +struct ___IO_marker_86 * (___markers_132);// L260 +struct __forward_tag_reference_57 * (___chain_133);// L0 +int ___fileno_134;// L264 +int ___flags2_135;// L268 +____off_t_23 ___old_offset_136;// L0 +unsigned short ___cur_column_137;// L274 +signed char ___vtable_offset_138;// L275 +char ___shortbuf_139[1];// L276 +___IO_lock_t_84 * (___lock_140);// L0 +____off64_t_24 ___offset_142;// L0 +void * (____pad1_143);// L297 +void * (____pad2_144);// L298 +void * (____pad3_145);// L299 +void * (____pad4_146);// L300 +__size_t_1 ____pad5_147;// L0 +int ___mode_148;// L303 +char ___unused2_149[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -struct ___IO_FILE_complete_157 { -struct ___IO_FILE_99 ___file_158;// L286 -____off64_t_24 ___offset_160;// L0 -void * (____pad1_162);// L297 -void * (____pad2_163);// L298 -void * (____pad3_164);// L299 -void * (____pad4_165);// L300 -__size_t_1 ____pad5_166;// L0 -int ___mode_167;// L303 -char ___unused2_168[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +struct ___IO_FILE_complete_150 { +struct ___IO_FILE_95 ___file_151;// L286 +____off64_t_24 ___offset_153;// L0 +void * (____pad1_154);// L297 +void * (____pad2_155);// L298 +void * (____pad3_156);// L299 +void * (____pad4_157);// L300 +__size_t_1 ____pad5_158;// L0 +int ___mode_159;// L303 +char ___unused2_160[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -typedef struct ___IO_FILE_99 ___IO_FILE_171;// L310 -typedef struct ___IO_FILE_124 ___IO_FILE_172;// L310 -typedef ____ssize_t_49 (____io_read_fn_181) (void * (____cookie_178), char * (____buf_179), __size_t_1 ____nbytes_180);// L333 -typedef ____ssize_t_49 (____io_write_fn_186) (void * (____cookie_183), const char * (____buf_184), __size_t_1 ____n_185);// L341:L342 -typedef int (____io_seek_fn_192) (void * (____cookie_188), ____off64_t_24 * (____pos_189), int ____w_191);// L350 -typedef int (____io_close_fn_195) (void * (____cookie_194));// L353 -typedef ____gnuc_va_list_86 __va_list_279;// L79 -typedef ____off_t_23 __off_t_281;// L90 -typedef ____off64_t_24 __off_t_283;// L92 -typedef ____ssize_t_49 __ssize_t_285;// L102 -typedef ___G_fpos_t_77 __fpos_t_287;// L110 -typedef ___G_fpos64_t_85 __fpos_t_289;// L112 -extern const char * const __sys_errlist_830[];// L27 +typedef struct ___IO_FILE_95 ___IO_FILE_163;// L310 +typedef struct ___IO_FILE_119 ___IO_FILE_164;// L310 +typedef ____ssize_t_49 (____io_read_fn_173) (void * (____cookie_170), char * (____buf_171), __size_t_1 ____nbytes_172);// L333 +typedef ____ssize_t_49 (____io_write_fn_177) (void * (____cookie_174), const char * (____buf_175), __size_t_1 ____n_176);// L341:L342 +typedef int (____io_seek_fn_181) (void * (____cookie_178), ____off64_t_24 * (____pos_179), int ____w_180);// L350 +typedef int (____io_close_fn_183) (void * (____cookie_182));// L353 +typedef ____gnuc_va_list_82 __va_list_248;// L79 +typedef ____off_t_23 __off_t_250;// L90 +typedef ____off64_t_24 __off_t_251;// L92 +typedef ____ssize_t_49 __ssize_t_252;// L102 +typedef ___G_fpos_t_75 __fpos_t_253;// L110 +typedef ___G_fpos64_t_81 __fpos_t_255;// L112 +extern const char * const __sys_errlist_756[];// L27 -struct __forward_tag_reference_89 { // generated union of struct variations +struct __forward_tag_reference_57 { // generated union of struct variations union { -struct ___IO_marker_90 ___IO_marker_90; +struct ___IO_FILE_95 ___IO_FILE_95; +struct ___IO_FILE_119 ___IO_FILE_119; }; }; -struct __forward_tag_reference_58 { // generated union of struct variations +struct __forward_tag_reference_85 { // generated union of struct variations union { -struct ___IO_FILE_99 ___IO_FILE_99; -struct ___IO_FILE_124 ___IO_FILE_124; +struct ___IO_marker_86 ___IO_marker_86; }; }; -struct __forward_tag_reference_87 { // generated union of struct variations +struct __forward_tag_reference_83 { // generated union of struct variations union { }; }; -struct __forward_tag_reference_174 { // generated union of struct variations +struct __forward_tag_reference_166 { // generated union of struct variations union { }; }; @@ -1082,139 +938,139 @@ union { // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_58 ;// L0 +struct __forward_tag_reference_57 ;// L0 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_87 ;// L0 -struct __forward_tag_reference_87 ;// L0 -struct __forward_tag_reference_58 ;// L0 +struct __forward_tag_reference_83 ;// L0 +struct __forward_tag_reference_83 ;// L0 +struct __forward_tag_reference_57 ;// L0 // typedef moved to top of scope -struct ___IO_marker_90 ;// L156 -enum ____codecvt_result_98 ;// L176 -struct ___IO_FILE_99 ;// L241 +struct ___IO_marker_86 ;// L156 +enum ____codecvt_result_94 ;// L176 +struct ___IO_FILE_95 ;// L241 -struct ___IO_FILE_124 ;// L241 -struct ___IO_FILE_complete_157 ;// L241 +struct ___IO_FILE_119 ;// L241 +struct ___IO_FILE_complete_150 ;// L241 // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_174 ;// L0 -extern struct __forward_tag_reference_174 ___IO_2_1_stdin__175;// L315 -extern struct __forward_tag_reference_174 ___IO_2_1_stdout__176;// L316 -extern struct __forward_tag_reference_174 ___IO_2_1_stderr__177;// L317 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern int (____underflow_196) (___IO_FILE_171 *);// L385 -extern int (____underflow_197) (___IO_FILE_172 *);// L385 -extern int (____uflow_199) (___IO_FILE_171 *);// L386 -extern int (____uflow_200) (___IO_FILE_172 *);// L386 -extern int (____overflow_202) (___IO_FILE_171 *, int );// L387 -extern int (____overflow_203) (___IO_FILE_172 *, int );// L387 -extern int (___IO_getc_208) (___IO_FILE_171 * (____fp_205));// L429 -extern int (___IO_getc_209) (___IO_FILE_172 * (____fp_206));// L429 -extern int (___IO_putc_215) (int ____c_211, ___IO_FILE_171 * (____fp_212));// L430 -extern int (___IO_putc_216) (int ____c_211, ___IO_FILE_172 * (____fp_213));// L430 -extern int (___IO_feof_221) (___IO_FILE_171 * (____fp_218));// L431 -extern int (___IO_feof_222) (___IO_FILE_172 * (____fp_219));// L431 -extern int (___IO_ferror_227) (___IO_FILE_171 * (____fp_224));// L432 -extern int (___IO_ferror_228) (___IO_FILE_172 * (____fp_225));// L432 -extern int (___IO_peekc_locked_233) (___IO_FILE_171 * (____fp_230));// L434 -extern int (___IO_peekc_locked_234) (___IO_FILE_172 * (____fp_231));// L434 -extern void (___IO_flockfile_236) (___IO_FILE_171 *);// L440 -extern void (___IO_flockfile_237) (___IO_FILE_172 *);// L440 -extern void (___IO_funlockfile_239) (___IO_FILE_171 *);// L441 -extern void (___IO_funlockfile_240) (___IO_FILE_172 *);// L441 -extern int (___IO_ftrylockfile_242) (___IO_FILE_171 *);// L442 -extern int (___IO_ftrylockfile_243) (___IO_FILE_172 *);// L442 -extern int (___IO_vfscanf_245) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_247) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_251) (___IO_FILE_171 * __restrict , const char * __restrict , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_252) (___IO_FILE_172 * __restrict , const char * __restrict , int * __restrict );// L459:L460 -extern int (___IO_vfprintf_254) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 -extern int (___IO_vfprintf_256) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 -extern int (___IO_vfprintf_260) ();// L461:L462 -extern ____ssize_t_49 (___IO_padn_261) (___IO_FILE_171 *, int , ____ssize_t_49 );// L463 -extern ____ssize_t_49 (___IO_padn_262) (___IO_FILE_172 *, int , ____ssize_t_49 );// L463 -extern __size_t_1 (___IO_sgetn_265) (___IO_FILE_171 *, void *, __size_t_1 );// L464 -extern __size_t_1 (___IO_sgetn_266) (___IO_FILE_172 *, void *, __size_t_1 );// L464 -extern ____off64_t_24 (___IO_seekoff_268) (___IO_FILE_171 *, ____off64_t_24 , int , int );// L466 -extern ____off64_t_24 (___IO_seekoff_269) (___IO_FILE_172 *, ____off64_t_24 , int , int );// L466 -extern ____off64_t_24 (___IO_seekpos_272) (___IO_FILE_171 *, ____off64_t_24 , int );// L467 -extern ____off64_t_24 (___IO_seekpos_273) (___IO_FILE_172 *, ____off64_t_24 , int );// L467 -extern void (___IO_free_backup_area_276) (___IO_FILE_171 *);// L469 -extern void (___IO_free_backup_area_277) (___IO_FILE_172 *);// L469 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern struct ___IO_FILE_99 * (__stdin_291);// L168 -extern struct ___IO_FILE_124 * (__stdin_292);// L168 -extern struct ___IO_FILE_99 * (__stdout_294);// L169 -extern struct ___IO_FILE_124 * (__stdout_295);// L169 -extern struct ___IO_FILE_99 * (__stderr_297);// L170 -extern struct ___IO_FILE_124 * (__stderr_298);// L170 -extern int (__remove_301) (const char * (____filename_300));// L178 -extern int (__rename_304) (const char * (____old_302), const char * (____new_303));// L180 -extern int (__renameat_309) (int ____oldfd_305, const char * (____old_306), int ____newfd_307, const char * (____new_308));// L185:L186 -extern __FILE_59 * ((__tmpfile_310) (void ));// L195 -extern __FILE_59 * ((__tmpfile_316) (void ));// L198 -extern __FILE_59 * ((__tmpfile_314) (void ));// L195 -extern __FILE_59 * ((__tmpfile_312) (void ));// L198 -extern char * ((__tmpnam_319) (char * (____s_318)));// L209 -extern char * ((__tmpnam_320) (char * (____s_318)));// L209 -extern char * ((__tmpnam_r_322) (char * (____s_321)));// L215 -extern char * ((__tmpnam_r_323) (char * (____s_321)));// L215 -extern char * ((__tempnam_326) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 -extern char * ((__tempnam_327) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 -extern int (__fclose_330) (__FILE_59 * (____stream_328));// L237 -extern int (__fclose_332) (__FILE_59 * (____stream_328));// L237 -extern int (__fflush_336) (__FILE_59 * (____stream_334));// L242 -extern int (__fflush_unlocked_340) (__FILE_59 * (____stream_338));// L252 -extern __FILE_59 * ((__fopen_344) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 -extern __FILE_59 * ((__fopen_346) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 -extern __FILE_59 * ((__fopen_354) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 -extern __FILE_59 * ((__fopen_356) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 -extern __FILE_59 * ((__freopen_362) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 -extern __FILE_59 * ((__freopen_368) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 -extern __FILE_59 * ((__freopen_366) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 -extern __FILE_59 * ((__freopen_364) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 -extern __FILE_59 * ((__fdopen_372) (int ____fd_370, const char * (____modes_371)));// L306 -extern __FILE_59 * ((__fdopen_374) (int ____fd_370, const char * (____modes_371)));// L306 -extern __FILE_59 * ((__fmemopen_379) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 -extern __FILE_59 * ((__fmemopen_381) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 -extern __FILE_59 * ((__open_memstream_385) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 -extern __FILE_59 * ((__open_memstream_387) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 -extern void (__setbuf_392) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 -extern void (__setbuf_394) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 -extern int (__setvbuf_401) (__FILE_59 * __restrict ____stream_396, char * __restrict ____buf_398, int ____modes_399, __size_t_1 ____n_400);// L336:L337 -extern void (__setbuffer_407) (__FILE_59 * __restrict ____stream_403, char * __restrict ____buf_405, __size_t_1 ____size_406);// L343:L344 -extern void (__setlinebuf_411) (__FILE_59 * (____stream_409));// L347 -extern int (__fprintf_416) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 -extern int (__fprintf_418) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 -extern int (__printf_421) (const char * __restrict ____format_420, ... );// L362 -extern int (__sprintf_424) (char * __restrict ____s_422, const char * __restrict ____format_423, ... );// L364:L365 -extern int (__vfprintf_430) (__FILE_59 * __restrict ____s_425, const char * __restrict ____format_427, ____gnuc_va_list_86 ____arg_428);// L371:L372 -extern int (__vprintf_437) (const char * __restrict ____format_434, ____gnuc_va_list_86 ____arg_435);// L377 -extern int (__vsprintf_443) (char * __restrict ____s_439, const char * __restrict ____format_440, ____gnuc_va_list_86 ____arg_441);// L379:L380 -extern int (__snprintf_448) (char * __restrict ____s_445, __size_t_1 ____maxlen_446, const char * __restrict ____format_447, ... );// L386:L388 -extern int (__vsnprintf_454) (char * __restrict ____s_449, __size_t_1 ____maxlen_450, const char * __restrict ____format_451, ____gnuc_va_list_86 ____arg_452);// L390:L392 -extern int (__vdprintf_460) (int ____fd_456, const char * __restrict ____fmt_457, ____gnuc_va_list_86 ____arg_458);// L412:L414 -extern int (__dprintf_464) (int ____fd_462, const char * __restrict ____fmt_463, ... );// L415:L416 -extern int (__fscanf_468) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__fscanf_470) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__fscanf_472) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__fscanf_474) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__scanf_477) (const char * __restrict ____format_476, ... );// L431 -extern int (__scanf_478) (const char * __restrict ____format_476, ... );// L431 -extern int (__sscanf_481) (const char * __restrict ____s_479, const char * __restrict ____format_480, ... );// L433:L434 +struct __forward_tag_reference_166 ;// L0 +extern struct __forward_tag_reference_166 ___IO_2_1_stdin__167;// L315 +extern struct __forward_tag_reference_166 ___IO_2_1_stdout__168;// L316 +extern struct __forward_tag_reference_166 ___IO_2_1_stderr__169;// L317 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern int (____underflow_184) (___IO_FILE_163 *);// L385 +extern int (____underflow_185) (___IO_FILE_164 *);// L385 +extern int (____uflow_186) (___IO_FILE_163 *);// L386 +extern int (____uflow_187) (___IO_FILE_164 *);// L386 +extern int (____overflow_188) (___IO_FILE_163 *, int );// L387 +extern int (____overflow_189) (___IO_FILE_164 *, int );// L387 +extern int (___IO_getc_193) (___IO_FILE_163 * (____fp_190));// L429 +extern int (___IO_getc_194) (___IO_FILE_164 * (____fp_191));// L429 +extern int (___IO_putc_199) (int ____c_195, ___IO_FILE_163 * (____fp_196));// L430 +extern int (___IO_putc_200) (int ____c_195, ___IO_FILE_164 * (____fp_197));// L430 +extern int (___IO_feof_204) (___IO_FILE_163 * (____fp_201));// L431 +extern int (___IO_feof_205) (___IO_FILE_164 * (____fp_202));// L431 +extern int (___IO_ferror_209) (___IO_FILE_163 * (____fp_206));// L432 +extern int (___IO_ferror_210) (___IO_FILE_164 * (____fp_207));// L432 +extern int (___IO_peekc_locked_214) (___IO_FILE_163 * (____fp_211));// L434 +extern int (___IO_peekc_locked_215) (___IO_FILE_164 * (____fp_212));// L434 +extern void (___IO_flockfile_216) (___IO_FILE_163 *);// L440 +extern void (___IO_flockfile_217) (___IO_FILE_164 *);// L440 +extern void (___IO_funlockfile_218) (___IO_FILE_163 *);// L441 +extern void (___IO_funlockfile_219) (___IO_FILE_164 *);// L441 +extern int (___IO_ftrylockfile_220) (___IO_FILE_163 *);// L442 +extern int (___IO_ftrylockfile_221) (___IO_FILE_164 *);// L442 +extern int (___IO_vfscanf_222) (___IO_FILE_163 * __restrict , const char * __restrict , ____gnuc_va_list_82 , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_224) (___IO_FILE_164 * __restrict , const char * __restrict , ____gnuc_va_list_82 , int * __restrict );// L459:L460 + + +extern int (___IO_vfprintf_231) (___IO_FILE_163 * __restrict , const char * __restrict , ____gnuc_va_list_82 );// L461:L462 +extern int (___IO_vfprintf_233) (___IO_FILE_164 * __restrict , const char * __restrict , ____gnuc_va_list_82 );// L461:L462 + +extern ____ssize_t_49 (___IO_padn_238) (___IO_FILE_163 *, int , ____ssize_t_49 );// L463 +extern ____ssize_t_49 (___IO_padn_239) (___IO_FILE_164 *, int , ____ssize_t_49 );// L463 +extern __size_t_1 (___IO_sgetn_240) (___IO_FILE_163 *, void *, __size_t_1 );// L464 +extern __size_t_1 (___IO_sgetn_241) (___IO_FILE_164 *, void *, __size_t_1 );// L464 +extern ____off64_t_24 (___IO_seekoff_242) (___IO_FILE_163 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekoff_243) (___IO_FILE_164 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekpos_244) (___IO_FILE_163 *, ____off64_t_24 , int );// L467 +extern ____off64_t_24 (___IO_seekpos_245) (___IO_FILE_164 *, ____off64_t_24 , int );// L467 +extern void (___IO_free_backup_area_246) (___IO_FILE_163 *);// L469 +extern void (___IO_free_backup_area_247) (___IO_FILE_164 *);// L469 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern struct ___IO_FILE_95 * (__stdin_257);// L168 +extern struct ___IO_FILE_119 * (__stdin_258);// L168 +extern struct ___IO_FILE_95 * (__stdout_259);// L169 +extern struct ___IO_FILE_119 * (__stdout_260);// L169 +extern struct ___IO_FILE_95 * (__stderr_261);// L170 +extern struct ___IO_FILE_119 * (__stderr_262);// L170 +extern int (__remove_264) (const char * (____filename_263));// L178 +extern int (__rename_267) (const char * (____old_265), const char * (____new_266));// L180 +extern int (__renameat_272) (int ____oldfd_268, const char * (____old_269), int ____newfd_270, const char * (____new_271));// L185:L186 +extern __FILE_58 * ((__tmpfile_273) (void ));// L195 +extern __FILE_58 * ((__tmpfile_279) (void ));// L198 +extern __FILE_58 * ((__tmpfile_277) (void ));// L198 +extern __FILE_58 * ((__tmpfile_275) (void ));// L195 +extern char * ((__tmpnam_282) (char * (____s_281)));// L209 +extern char * ((__tmpnam_283) (char * (____s_281)));// L209 +extern char * ((__tmpnam_r_285) (char * (____s_284)));// L215 +extern char * ((__tmpnam_r_286) (char * (____s_284)));// L215 +extern char * ((__tempnam_289) (const char * (____dir_287), const char * (____pfx_288)));// L227:L228 +extern char * ((__tempnam_290) (const char * (____dir_287), const char * (____pfx_288)));// L227:L228 +extern int (__fclose_293) (__FILE_58 * (____stream_291));// L237 +extern int (__fclose_295) (__FILE_58 * (____stream_291));// L237 +extern int (__fflush_299) (__FILE_58 * (____stream_297));// L242 +extern int (__fflush_unlocked_303) (__FILE_58 * (____stream_301));// L252 +extern __FILE_58 * ((__fopen_307) (const char * __restrict ____filename_305, const char * __restrict ____modes_306));// L272:L273 +extern __FILE_58 * ((__fopen_309) (const char * __restrict ____filename_305, const char * __restrict ____modes_306));// L272:L273 +extern __FILE_58 * ((__fopen_317) (const char * __restrict ____filename_315, const char * __restrict ____modes_316));// L283:L285 +extern __FILE_58 * ((__fopen_319) (const char * __restrict ____filename_315, const char * __restrict ____modes_316));// L283:L285 +extern __FILE_58 * ((__freopen_325) (const char * __restrict ____filename_311, const char * __restrict ____modes_312, __FILE_58 * __restrict ____stream_313));// L278:L280 +extern __FILE_58 * ((__freopen_331) (const char * __restrict ____filename_321, const char * __restrict ____modes_322, __FILE_58 * __restrict ____stream_323));// L286:L289 +extern __FILE_58 * ((__freopen_329) (const char * __restrict ____filename_321, const char * __restrict ____modes_322, __FILE_58 * __restrict ____stream_323));// L286:L289 +extern __FILE_58 * ((__freopen_327) (const char * __restrict ____filename_311, const char * __restrict ____modes_312, __FILE_58 * __restrict ____stream_313));// L278:L280 +extern __FILE_58 * ((__fdopen_335) (int ____fd_333, const char * (____modes_334)));// L306 +extern __FILE_58 * ((__fdopen_337) (int ____fd_333, const char * (____modes_334)));// L306 +extern __FILE_58 * ((__fmemopen_342) (void * (____s_339), __size_t_1 ____len_340, const char * (____modes_341)));// L319:L320 +extern __FILE_58 * ((__fmemopen_344) (void * (____s_339), __size_t_1 ____len_340, const char * (____modes_341)));// L319:L320 +extern __FILE_58 * ((__open_memstream_348) (char * (* (____bufloc_346)), __size_t_1 * (____sizeloc_347)));// L325 +extern __FILE_58 * ((__open_memstream_350) (char * (* (____bufloc_346)), __size_t_1 * (____sizeloc_347)));// L325 +extern void (__setbuf_355) (__FILE_58 * __restrict ____stream_352, char * __restrict ____buf_354);// L332 +extern void (__setbuf_357) (__FILE_58 * __restrict ____stream_352, char * __restrict ____buf_354);// L332 +extern int (__setvbuf_364) (__FILE_58 * __restrict ____stream_359, char * __restrict ____buf_361, int ____modes_362, __size_t_1 ____n_363);// L336:L337 +extern void (__setbuffer_369) (__FILE_58 * __restrict ____stream_365, char * __restrict ____buf_367, __size_t_1 ____size_368);// L343:L344 +extern void (__setlinebuf_373) (__FILE_58 * (____stream_371));// L347 +extern int (__fprintf_378) (__FILE_58 * __restrict ____stream_375, const char * __restrict ____format_377, ... );// L356:L357 +extern int (__fprintf_380) (__FILE_58 * __restrict ____stream_375, const char * __restrict ____format_377, ... );// L356:L357 +extern int (__printf_383) (const char * __restrict ____format_382, ... );// L362 +extern int (__sprintf_386) (char * __restrict ____s_384, const char * __restrict ____format_385, ... );// L364:L365 +extern int (__vfprintf_392) (__FILE_58 * __restrict ____s_387, const char * __restrict ____format_389, ____gnuc_va_list_82 ____arg_390);// L371:L372 +extern int (__vprintf_399) (const char * __restrict ____format_396, ____gnuc_va_list_82 ____arg_397);// L377 +extern int (__vsprintf_405) (char * __restrict ____s_401, const char * __restrict ____format_402, ____gnuc_va_list_82 ____arg_403);// L379:L380 +extern int (__snprintf_409) (char * __restrict ____s_406, __size_t_1 ____maxlen_407, const char * __restrict ____format_408, ... );// L386:L388 +extern int (__vsnprintf_415) (char * __restrict ____s_410, __size_t_1 ____maxlen_411, const char * __restrict ____format_412, ____gnuc_va_list_82 ____arg_413);// L390:L392 +extern int (__vdprintf_420) (int ____fd_416, const char * __restrict ____fmt_417, ____gnuc_va_list_82 ____arg_418);// L412:L414 +extern int (__dprintf_424) (int ____fd_422, const char * __restrict ____fmt_423, ... );// L415:L416 +extern int (__fscanf_428) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 +extern int (__fscanf_430) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 +extern int (__fscanf_432) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 +extern int (__fscanf_434) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 +extern int (__scanf_437) (const char * __restrict ____format_436, ... );// L431 +extern int (__scanf_438) (const char * __restrict ____format_436, ... );// L431 +extern int (__sscanf_441) (const char * __restrict ____s_439, const char * __restrict ____format_440, ... );// L433:L434 @@ -1222,85 +1078,85 @@ extern int (__sscanf_481) (const char * __restrict ____s_479, const char * _ -extern int (__vfscanf_509) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 -extern int (__vfscanf_513) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 -extern int (__vscanf_520) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 -extern int (__vscanf_522) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 -extern int (__vsscanf_528) (const char * __restrict ____s_524, const char * __restrict ____format_525, ____gnuc_va_list_86 ____arg_526);// L483:L485 +extern int (__vfscanf_468) (__FILE_58 * __restrict ____s_463, const char * __restrict ____format_465, ____gnuc_va_list_82 ____arg_466);// L471:L473 +extern int (__vfscanf_472) (__FILE_58 * __restrict ____s_463, const char * __restrict ____format_465, ____gnuc_va_list_82 ____arg_466);// L471:L473 +extern int (__vscanf_479) (const char * __restrict ____format_476, ____gnuc_va_list_82 ____arg_477);// L479:L480 +extern int (__vscanf_481) (const char * __restrict ____format_476, ____gnuc_va_list_82 ____arg_477);// L479:L480 +extern int (__vsscanf_487) (const char * __restrict ____s_483, const char * __restrict ____format_484, ____gnuc_va_list_82 ____arg_485);// L483:L485 -extern int (__fgetc_563) (__FILE_59 * (____stream_561));// L531 -extern int (__getc_567) (__FILE_59 * (____stream_565));// L532 -extern int (__getchar_569) (void );// L538 -extern int (__getc_unlocked_572) (__FILE_59 * (____stream_570));// L550 -extern int (__getchar_unlocked_574) (void );// L551 -extern int (__fgetc_unlocked_577) (__FILE_59 * (____stream_575));// L561 -extern int (__fputc_582) (int ____c_579, __FILE_59 * (____stream_580));// L573 -extern int (__fputc_584) (int ____c_579, __FILE_59 * (____stream_580));// L573 -extern int (__putc_589) (int ____c_586, __FILE_59 * (____stream_587));// L574 -extern int (__putchar_592) (int ____c_591);// L580 -extern int (__fputc_unlocked_596) (int ____c_593, __FILE_59 * (____stream_594));// L594 -extern int (__putc_unlocked_601) (int ____c_598, __FILE_59 * (____stream_599));// L602 -extern int (__putchar_unlocked_604) (int ____c_603);// L603 -extern int (__getw_607) (__FILE_59 * (____stream_605));// L610 -extern int (__putw_612) (int ____w_609, __FILE_59 * (____stream_610));// L613 -extern char * ((__fgets_618) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern char * ((__fgets_620) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern char * ((__fgets_622) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern char * ((__fgets_624) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern ____ssize_t_49 (____getdelim_631) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 -extern ____ssize_t_49 (____getdelim_635) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 -extern ____ssize_t_49 (__getdelim_644) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 -extern ____ssize_t_49 (__getdelim_648) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 -extern ____ssize_t_49 (__getline_656) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 -extern ____ssize_t_49 (__getline_660) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 -extern int (__fputs_667) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 -extern int (__fputs_669) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 -extern int (__puts_672) (const char * (____s_671));// L695 -extern int (__ungetc_676) (int ____c_673, __FILE_59 * (____stream_674));// L702 -extern int (__fseek_714) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 -extern int (__fseek_716) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 -extern long int (__ftell_720) (__FILE_59 * (____stream_718));// L754 -extern long int (__ftell_722) (__FILE_59 * (____stream_718));// L754 -extern void (__rewind_726) (__FILE_59 * (____stream_724));// L759 -extern int (__fseeko_733) (__FILE_59 * (____stream_728), ____off_t_23 ____off_730, int ____whence_732);// L773 -extern int (__fseeko_744) (__FILE_59 * (____stream_739), ____off64_t_24 ____off_741, int ____whence_743);// L781:L783 -extern ____off_t_23 (__ftello_758) (__FILE_59 * (____stream_737));// L778 -extern ____off_t_23 (__ftello_750) (__FILE_59 * (____stream_737));// L778 -extern int (__fgetpos_766) (__FILE_59 * __restrict ____stream_762, __fpos_t_287 * __restrict ____pos_764);// L798 -extern ____off64_t_24 (__ftello_754) (__FILE_59 * (____stream_748));// L784 -extern int (__fgetpos_778) (__FILE_59 * __restrict ____stream_774, __fpos_t_289 * __restrict ____pos_776);// L806:L807 -extern int (__fsetpos_786) (__FILE_59 * (____stream_770), const __fpos_t_287 * (____pos_772));// L803 -extern int (__fsetpos_790) (__FILE_59 * (____stream_782), const __fpos_t_289 * (____pos_784));// L808:L809 -extern void (__clearerr_796) (__FILE_59 * (____stream_794));// L826 -extern int (__feof_800) (__FILE_59 * (____stream_798));// L828 -extern int (__feof_802) (__FILE_59 * (____stream_798));// L828 -extern int (__ferror_806) (__FILE_59 * (____stream_804));// L830 -extern int (__ferror_808) (__FILE_59 * (____stream_804));// L830 -extern void (__clearerr_unlocked_812) (__FILE_59 * (____stream_810));// L835 -extern int (__feof_unlocked_816) (__FILE_59 * (____stream_814));// L836 -extern int (__feof_unlocked_818) (__FILE_59 * (____stream_814));// L836 -extern int (__ferror_unlocked_822) (__FILE_59 * (____stream_820));// L837 -extern int (__ferror_unlocked_824) (__FILE_59 * (____stream_820));// L837 -extern void (__perror_827) (const char * (____s_826));// L846 -extern void (__perror_828) (const char * (____s_826));// L846 -extern int __sys_nerr_829;// L26 +extern int (__fgetc_520) (__FILE_58 * (____stream_518));// L531 +extern int (__getc_523) (__FILE_58 * (____stream_521));// L532 +extern int (__getchar_524) (void );// L538 +extern int (__getc_unlocked_527) (__FILE_58 * (____stream_525));// L550 +extern int (__getchar_unlocked_529) (void );// L551 +extern int (__fgetc_unlocked_532) (__FILE_58 * (____stream_530));// L561 +extern int (__fputc_537) (int ____c_534, __FILE_58 * (____stream_535));// L573 +extern int (__fputc_539) (int ____c_534, __FILE_58 * (____stream_535));// L573 +extern int (__putc_544) (int ____c_541, __FILE_58 * (____stream_542));// L574 +extern int (__putchar_546) (int ____c_545);// L580 +extern int (__fputc_unlocked_550) (int ____c_547, __FILE_58 * (____stream_548));// L594 +extern int (__putc_unlocked_555) (int ____c_552, __FILE_58 * (____stream_553));// L602 +extern int (__putchar_unlocked_558) (int ____c_557);// L603 +extern int (__getw_561) (__FILE_58 * (____stream_559));// L610 +extern int (__putw_566) (int ____w_563, __FILE_58 * (____stream_564));// L613 +extern char * ((__fgets_572) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 +extern char * ((__fgets_574) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 +extern char * ((__fgets_576) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 +extern char * ((__fgets_578) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 +extern ____ssize_t_49 (____getdelim_585) (char * (* __restrict ____lineptr_580), __size_t_1 * __restrict ____n_581, int ____delimiter_582, __FILE_58 * __restrict ____stream_583);// L665:L667 +extern ____ssize_t_49 (____getdelim_587) (char * (* __restrict ____lineptr_580), __size_t_1 * __restrict ____n_581, int ____delimiter_582, __FILE_58 * __restrict ____stream_583);// L665:L667 +extern ____ssize_t_49 (__getdelim_594) (char * (* __restrict ____lineptr_589), __size_t_1 * __restrict ____n_590, int ____delimiter_591, __FILE_58 * __restrict ____stream_592);// L668:L670 +extern ____ssize_t_49 (__getdelim_596) (char * (* __restrict ____lineptr_589), __size_t_1 * __restrict ____n_590, int ____delimiter_591, __FILE_58 * __restrict ____stream_592);// L668:L670 +extern ____ssize_t_49 (__getline_602) (char * (* __restrict ____lineptr_598), __size_t_1 * __restrict ____n_599, __FILE_58 * __restrict ____stream_600);// L678:L680 +extern ____ssize_t_49 (__getline_604) (char * (* __restrict ____lineptr_598), __size_t_1 * __restrict ____n_599, __FILE_58 * __restrict ____stream_600);// L678:L680 +extern int (__fputs_609) (const char * __restrict ____s_606, __FILE_58 * __restrict ____stream_607);// L689 +extern int (__fputs_611) (const char * __restrict ____s_606, __FILE_58 * __restrict ____stream_607);// L689 +extern int (__puts_614) (const char * (____s_613));// L695 +extern int (__ungetc_618) (int ____c_615, __FILE_58 * (____stream_616));// L702 +extern int (__fseek_654) (__FILE_58 * (____stream_650), long int ____off_652, int ____whence_653);// L749 +extern int (__fseek_656) (__FILE_58 * (____stream_650), long int ____off_652, int ____whence_653);// L749 +extern long int (__ftell_660) (__FILE_58 * (____stream_658));// L754 +extern long int (__ftell_662) (__FILE_58 * (____stream_658));// L754 +extern void (__rewind_666) (__FILE_58 * (____stream_664));// L759 +extern int (__fseeko_671) (__FILE_58 * (____stream_667), ____off_t_23 ____off_669, int ____whence_670);// L773 +extern int (__fseeko_679) (__FILE_58 * (____stream_675), ____off64_t_24 ____off_677, int ____whence_678);// L781:L783 +extern ____off_t_23 (__ftello_683) (__FILE_58 * (____stream_673));// L778 +extern ____off_t_23 (__ftello_685) (__FILE_58 * (____stream_673));// L778 +extern int (__fgetpos_693) (__FILE_58 * __restrict ____stream_689, __fpos_t_253 * __restrict ____pos_691);// L798 +extern ____off64_t_24 (__ftello_687) (__FILE_58 * (____stream_681));// L784 +extern int (__fgetpos_705) (__FILE_58 * __restrict ____stream_701, __fpos_t_255 * __restrict ____pos_703);// L806:L807 +extern int (__fsetpos_713) (__FILE_58 * (____stream_697), const __fpos_t_253 * (____pos_699));// L803 +extern int (__fsetpos_717) (__FILE_58 * (____stream_709), const __fpos_t_255 * (____pos_711));// L808:L809 +extern void (__clearerr_723) (__FILE_58 * (____stream_721));// L826 +extern int (__feof_726) (__FILE_58 * (____stream_724));// L828 +extern int (__feof_728) (__FILE_58 * (____stream_724));// L828 +extern int (__ferror_732) (__FILE_58 * (____stream_730));// L830 +extern int (__ferror_734) (__FILE_58 * (____stream_730));// L830 +extern void (__clearerr_unlocked_738) (__FILE_58 * (____stream_736));// L835 +extern int (__feof_unlocked_742) (__FILE_58 * (____stream_740));// L836 +extern int (__feof_unlocked_744) (__FILE_58 * (____stream_740));// L836 +extern int (__ferror_unlocked_748) (__FILE_58 * (____stream_746));// L837 +extern int (__ferror_unlocked_750) (__FILE_58 * (____stream_746));// L837 +extern void (__perror_753) (const char * (____s_752));// L846 +extern void (__perror_754) (const char * (____s_752));// L846 +extern int __sys_nerr_755;// L26 -extern int (__fileno_835) (__FILE_59 * (____stream_831));// L858 -extern int (__fileno_833) (__FILE_59 * (____stream_831));// L858 -extern int (__fileno_unlocked_841) (__FILE_59 * (____stream_837));// L863 -extern int (__fileno_unlocked_839) (__FILE_59 * (____stream_837));// L863 -extern __FILE_59 * ((__popen_845) (const char * (____command_843), const char * (____modes_844)));// L872 -extern __FILE_59 * ((__popen_847) (const char * (____command_843), const char * (____modes_844)));// L872 -extern int (__pclose_851) (__FILE_59 * (____stream_849));// L878 -extern char * ((__ctermid_854) (char * (____s_853)));// L884 -extern void (__flockfile_857) (__FILE_59 * (____stream_855));// L912 -extern int (__ftrylockfile_861) (__FILE_59 * (____stream_859));// L916 -extern int (__ftrylockfile_863) (__FILE_59 * (____stream_859));// L916 -extern void (__funlockfile_867) (__FILE_59 * (____stream_865));// L919 +extern int (__fileno_761) (__FILE_58 * (____stream_757));// L858 +extern int (__fileno_759) (__FILE_58 * (____stream_757));// L858 +extern int (__fileno_unlocked_767) (__FILE_58 * (____stream_763));// L863 +extern int (__fileno_unlocked_765) (__FILE_58 * (____stream_763));// L863 +extern __FILE_58 * ((__popen_771) (const char * (____command_769), const char * (____modes_770)));// L872 +extern __FILE_58 * ((__popen_773) (const char * (____command_769), const char * (____modes_770)));// L872 +extern int (__pclose_777) (__FILE_58 * (____stream_775));// L878 +extern char * ((__ctermid_780) (char * (____s_779)));// L884 +extern void (__flockfile_783) (__FILE_58 * (____stream_781));// L912 +extern int (__ftrylockfile_787) (__FILE_58 * (____stream_785));// L916 +extern int (__ftrylockfile_789) (__FILE_58 * (____stream_785));// L916 +extern void (__funlockfile_793) (__FILE_58 * (____stream_791));// L919 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ @@ -1312,47 +1168,44 @@ extern void (__funlockfile_867) (__FILE_59 * (____stream_865));// L919 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____sprintf_chk_899) (char * __restrict ____s_895, int ____flag_896, __size_t_1 ____slen_897, const char * __restrict ____format_898, ... );// L23:L24 -extern int (____vsprintf_chk_906) (char * __restrict ____s_900, int ____flag_901, __size_t_1 ____slen_902, const char * __restrict ____format_903, ____gnuc_va_list_86 ____ap_904);// L25:L27 +extern int (____sprintf_chk_825) (char * __restrict ____s_821, int ____flag_822, __size_t_1 ____slen_823, const char * __restrict ____format_824, ... );// L23:L24 +extern int (____vsprintf_chk_832) (char * __restrict ____s_826, int ____flag_827, __size_t_1 ____slen_828, const char * __restrict ____format_829, ____gnuc_va_list_82 ____ap_830);// L25:L27 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____snprintf_chk_920) (char * __restrict ____s_915, __size_t_1 ____n_916, int ____flag_917, __size_t_1 ____slen_918, const char * __restrict ____format_919, ... );// L52:L54 -extern int (____vsnprintf_chk_928) (char * __restrict ____s_921, __size_t_1 ____n_922, int ____flag_923, __size_t_1 ____slen_924, const char * __restrict ____format_925, ____gnuc_va_list_86 ____ap_926);// L55:L57 +extern int (____snprintf_chk_846) (char * __restrict ____s_841, __size_t_1 ____n_842, int ____flag_843, __size_t_1 ____slen_844, const char * __restrict ____format_845, ... );// L52:L54 +extern int (____vsnprintf_chk_854) (char * __restrict ____s_847, __size_t_1 ____n_848, int ____flag_849, __size_t_1 ____slen_850, const char * __restrict ____format_851, ____gnuc_va_list_82 ____ap_852);// L55:L57 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____fprintf_chk_943) (__FILE_59 * __restrict ____stream_939, int ____flag_941, const char * __restrict ____format_942, ... );// L85:L86 -extern int (____printf_chk_947) (int ____flag_945, const char * __restrict ____format_946, ... );// L87 -extern int (____vfprintf_chk_954) (__FILE_59 * __restrict ____stream_948, int ____flag_950, const char * __restrict ____format_951, ____gnuc_va_list_86 ____ap_952);// L88:L89 -extern int (____vprintf_chk_962) (int ____flag_958, const char * __restrict ____format_959, ____gnuc_va_list_86 ____ap_960);// L90:L91 +extern int (____fprintf_chk_869) (__FILE_58 * __restrict ____stream_865, int ____flag_867, const char * __restrict ____format_868, ... );// L85:L86 +extern int (____printf_chk_873) (int ____flag_871, const char * __restrict ____format_872, ... );// L87 +extern int (____vfprintf_chk_880) (__FILE_58 * __restrict ____stream_874, int ____flag_876, const char * __restrict ____format_877, ____gnuc_va_list_82 ____ap_878);// L88:L89 +extern int (____vprintf_chk_888) (int ____flag_884, const char * __restrict ____format_885, ____gnuc_va_list_82 ____ap_886);// L90:L91 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____dprintf_chk_984) (int ____fd_981, int ____flag_982, const char * __restrict ____fmt_983, ... );// L131:L132 -extern int (____vdprintf_chk_990) (int ____fd_985, int ____flag_986, const char * __restrict ____fmt_987, ____gnuc_va_list_86 ____arg_988);// L133:L135 +extern int (____dprintf_chk_910) (int ____fd_907, int ____flag_908, const char * __restrict ____fmt_909, ... );// L131:L132 +extern int (____vdprintf_chk_916) (int ____fd_911, int ____flag_912, const char * __restrict ____fmt_913, ____gnuc_va_list_82 ____arg_914);// L133:L135 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern char * ((____fgets_chk_1004) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 -extern char * ((____fgets_chk_1006) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 -extern char * ((____fgets_chk_1008) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 -extern char * ((____fgets_alias_1014) (char * __restrict ____s_1010, int ____n_1011, __FILE_59 * __restrict ____stream_1012));// L243:L245 -extern char * ((____fgets_chk_warn_1021) (char * __restrict ____s_1016, __size_t_1 ____size_1017, int ____n_1018, __FILE_59 * __restrict ____stream_1019));// L246:L250 +extern char * ((____fgets_chk_930) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 +extern char * ((____fgets_chk_932) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 +extern char * ((____fgets_chk_934) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 +extern char * ((____fgets_alias_940) (char * __restrict ____s_936, int ____n_937, __FILE_58 * __restrict ____stream_938));// L243:L245 +extern char * ((____fgets_chk_warn_947) (char * __restrict ____s_942, __size_t_1 ____size_943, int ____n_944, __FILE_58 * __restrict ____stream_945));// L246:L250 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -unsigned long __millis_1092= 123456789l;// L3 -unsigned long __millis_1093= 123456789l;// L3 -unsigned long __millis_1094= 123456789l;// L3 -void (__thermal_runaway_protection_1102) (int * (__state_1095), unsigned long * (__timer_1096), float __temperature_1097, float __target_temperature_1098, int __heater_id_1099, int __period_seconds_1100, int __hysteresis_degc_1101) { - -if (__static_condition_default_1103) { +unsigned long __millis_1018= 123456789l;// L3 +unsigned long __millis_1019= 123456789l;// L3 +void (__thermal_runaway_protection_1027) (int * (__state_1020), unsigned long * (__timer_1021), float __temperature_1022, float __target_temperature_1023, int __heater_id_1024, int __period_seconds_1025, int __hysteresis_degc_1026) { { { -if ( __temperature_1097 >= ( __target_temperature_1098 - __hysteresis_degc_1101 ) )// L7 +if ( __temperature_1022 >= ( __target_temperature_1023 - __hysteresis_degc_1026 ) )// L7 { { @@ -1360,14 +1213,14 @@ if ( __temperature_1097 >= ( __target_temperature_1098 - __hysteresis_degc_ -* __timer_1096 = 123456782l ; // L9 +* __timer_1021 = 123456782l ; // L9 } } } else { -if (__static_condition_default_1104) { -if ( ( __millis_1092 - * __timer_1096 ) > ( __period_seconds_1100 ) * 1000 )// L11 +if (__static_condition_default_1028) { +if ( ( __millis_1018 - * __timer_1021 ) > ( __period_seconds_1025 ) * 1000 )// L11 { { @@ -1375,15 +1228,15 @@ if ( ( __millis_1092 - * __timer_1096 ) > ( __period_seconds_1100 ) * 1000 - __printf_421 ("%s","Thermal Runaway, system stopped! Heater_ID: ") ; // L13 - __printf_421 ("%d",( int ) __heater_id_1099 ) ; // L14 - __printf_421 ("%s","THERMAL RUNAWAY") ; // L15 + __printf_383 ("%s","Thermal Runaway, system stopped! Heater_ID: ") ; // L13 + __printf_383 ("%d",( int ) __heater_id_1024 ) ; // L14 + __printf_383 ("%s","THERMAL RUNAWAY") ; // L15 } } } } -if (__static_condition_default_1105) { -if ( ( __millis_1093 - * __timer_1096 ) > ( __period_seconds_1100 ) * 1000 )// L11 +if (__static_condition_default_1029) { +if ( ( __millis_1019 - * __timer_1021 ) > ( __period_seconds_1025 ) * 1000 )// L11 { { @@ -1391,25 +1244,9 @@ if ( ( __millis_1093 - * __timer_1096 ) > ( __period_seconds_1100 ) * 1000 -__static_type_error("type error") ; // L13 -__static_type_error("type error") ; // L14 -__static_type_error("type error") ; // L15 -} -} -} -} -if (__static_condition_default_1106) { -if ( ( __millis_1094 - * __timer_1096 ) > ( __period_seconds_1100 ) * 1000 )// L11 -{ - -{ -{ - - - - __printf_421 ("%s","Thermal Runaway, system stopped! Heater_ID: ") ; // L13 - __printf_421 ("%d",( int ) __heater_id_1099 ) ; // L14 - __printf_421 ("%s","THERMAL RUNAWAY") ; // L15 + __printf_383 ("%s","Thermal Runaway, system stopped! Heater_ID: ") ; // L13 + __printf_383 ("%d",( int ) __heater_id_1024 ) ; // L14 + __printf_383 ("%s","THERMAL RUNAWAY") ; // L15 } } } @@ -1420,39 +1257,18 @@ if ( ( __millis_1094 - * __timer_1096 ) > ( __period_seconds_1100 ) * 1000 } -} -int (__main_1107) (void ) { - -if (__static_condition_default_1109) { +int (__main_1030) (void ) { { { -__static_type_error("type error") ; // L21 + __thermal_runaway_protection_1027 (0,123456783,145.0f,200.0f,1,10,1) ; // L21 return 0 ;// L22 } } } -} -int (__main_1108) (void ) { - -if (__static_condition_default_1110) { - -{ -{ - - - - __thermal_runaway_protection_1102 (0,123456783,145.0f,200.0f,1,10,1) ; // L21 -return 0 ;// L22 -} -} - - -} -} diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.clangres index 0e229ac3..e69de29b 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.clangres +++ b/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.clangres @@ -1,35 +0,0 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.c:7:3: error: unknown type name 'int16_t'; did you mean '__int16_t'? - int16_t xx=x*10; - ^~~~~~~ - __int16_t -/usr/include/x86_64-linux-gnu/bits/types.h:38:26: note: '__int16_t' declared here -typedef signed short int __int16_t; - ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.c:8:3: error: use of undeclared identifier 'conv' - conv[0]=(xx>=0)?'+':'-'; - ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.c:10:3: error: use of undeclared identifier 'conv' - conv[1]=(xx/10000)%10+'0'; - ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.c:11:3: error: use of undeclared identifier 'conv' - conv[2]=(xx/1000)%10+'0'; - ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.c:12:3: error: use of undeclared identifier 'conv' - conv[3]=(xx/100)%10+'0'; - ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.c:13:3: error: use of undeclared identifier 'conv' - conv[4]=(xx/10)%10+'0'; - ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.c:14:3: error: use of undeclared identifier 'conv' - conv[5]='.'; - ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.c:15:3: error: use of undeclared identifier 'conv' - conv[6]=(xx)%10+'0'; - ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.c:16:3: error: use of undeclared identifier 'conv' - conv[7]=0; - ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.c:17:10: error: use of undeclared identifier 'conv' - return conv; - ^ -10 errors generated. diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.desugared.c b/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.desugared.c index 9afe5895..577013a1 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.desugared.c +++ b/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.desugared.c @@ -7,275 +7,6 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_842; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_1097; -extern const bool __static_condition_default_488; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_685; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_512; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_536; -extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_645; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_638; -extern const bool __static_condition_default_431; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_709; -extern const bool __static_condition_default_769; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_693; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_367; -extern const bool __static_condition_default_347; -extern const bool __static_condition_default_543; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_333; -extern const bool __static_condition_default_787; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_963; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_393; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_1096; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_701; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_419; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_875; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_613; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_753; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_955; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_290; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_887; -extern const bool __static_condition_default_380; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_382; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_755; -extern const bool __static_condition_default_858; -extern const bool __static_condition_default_914; -extern const bool __static_condition_default_779; -extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_702; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_76; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_646; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_780; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_848; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_388; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_412; -extern const bool __static_condition_default_568; -extern const bool __static_condition_default_677; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_583; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_803; -extern const bool __static_condition_default_521; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_386; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_891; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_559; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_670; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_747; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_793; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_846; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_313; -extern const bool __static_condition_default_357; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_789; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_217; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_198; -extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_461; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_187; -extern const bool __static_condition_default_317; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_248; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_315; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_761; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_438; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_408; -extern const bool __static_condition_default_632; -extern const bool __static_condition_default_402; -extern const bool __static_condition_default_894; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_311; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_956; -extern const bool __static_condition_default_564; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_872; -extern const bool __static_condition_default_907; -extern const bool __static_condition_default_929; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_549; -extern const bool __static_condition_default_590; -extern const bool __static_condition_default_204; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_53; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_957; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -327,498 +58,134 @@ __static_renaming("____ssize_t_49", "__ssize_t"); __static_renaming("____syscall_slong_t_50", "__syscall_slong_t"); __static_renaming("____syscall_ulong_t_51", "__syscall_ulong_t"); __static_renaming("____loff_t_52", "__loff_t"); -__static_renaming("____qaddr_t_54", "__qaddr_t"); -__static_renaming("____caddr_t_55", "__caddr_t"); -__static_renaming("____intptr_t_56", "__intptr_t"); -__static_renaming("____socklen_t_57", "__socklen_t"); -__static_renaming("__FILE_59", "FILE"); -__static_renaming("____FILE_60", "__FILE"); +__static_renaming("____qaddr_t_53", "__qaddr_t"); +__static_renaming("____caddr_t_54", "__caddr_t"); +__static_renaming("____intptr_t_55", "__intptr_t"); +__static_renaming("____socklen_t_56", "__socklen_t"); +__static_renaming("__FILE_58", "FILE"); +__static_renaming("____FILE_59", "__FILE"); +__static_renaming("____mbstate_t_68", "__mbstate_t"); __static_renaming("____mbstate_t_69", "__mbstate_t"); -__static_renaming("___G_fpos_t_77", "_G_fpos_t"); -__static_renaming("___G_fpos64_t_85", "_G_fpos64_t"); -__static_renaming("____gnuc_va_list_86", "__gnuc_va_list"); -__static_renaming("___IO_lock_t_88", "_IO_lock_t"); -__static_renaming("___IO_FILE_171", "_IO_FILE"); -__static_renaming("___IO_FILE_172", "_IO_FILE"); -__static_renaming("___IO_2_1_stdin__175", "_IO_2_1_stdin_"); -__static_renaming("___IO_2_1_stdout__176", "_IO_2_1_stdout_"); -__static_renaming("___IO_2_1_stderr__177", "_IO_2_1_stderr_"); -__static_renaming("____io_read_fn_181", "__io_read_fn"); -__static_renaming("____io_write_fn_186", "__io_write_fn"); -__static_renaming("____io_seek_fn_192", "__io_seek_fn"); -__static_renaming("____io_close_fn_195", "__io_close_fn"); -__static_renaming("____underflow_196", "__underflow"); -__static_renaming("____underflow_197", "__underflow"); -__static_renaming("____uflow_199", "__uflow"); -__static_renaming("____uflow_200", "__uflow"); -__static_renaming("____overflow_202", "__overflow"); -__static_renaming("____overflow_203", "__overflow"); -__static_renaming("___IO_getc_208", "_IO_getc"); -__static_renaming("___IO_getc_209", "_IO_getc"); -__static_renaming("___IO_putc_215", "_IO_putc"); -__static_renaming("___IO_putc_216", "_IO_putc"); -__static_renaming("___IO_feof_221", "_IO_feof"); -__static_renaming("___IO_feof_222", "_IO_feof"); -__static_renaming("___IO_ferror_227", "_IO_ferror"); -__static_renaming("___IO_ferror_228", "_IO_ferror"); -__static_renaming("___IO_peekc_locked_233", "_IO_peekc_locked"); -__static_renaming("___IO_peekc_locked_234", "_IO_peekc_locked"); -__static_renaming("___IO_flockfile_236", "_IO_flockfile"); -__static_renaming("___IO_flockfile_237", "_IO_flockfile"); -__static_renaming("___IO_funlockfile_239", "_IO_funlockfile"); -__static_renaming("___IO_funlockfile_240", "_IO_funlockfile"); -__static_renaming("___IO_ftrylockfile_242", "_IO_ftrylockfile"); -__static_renaming("___IO_ftrylockfile_243", "_IO_ftrylockfile"); -__static_renaming("___IO_vfscanf_245", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_247", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_251", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_252", "_IO_vfscanf"); -__static_renaming("___IO_vfprintf_254", "_IO_vfprintf"); -__static_renaming("___IO_vfprintf_256", "_IO_vfprintf"); -__static_renaming("___IO_vfprintf_260", "_IO_vfprintf"); -__static_renaming("___IO_padn_261", "_IO_padn"); -__static_renaming("___IO_padn_262", "_IO_padn"); -__static_renaming("___IO_sgetn_265", "_IO_sgetn"); -__static_renaming("___IO_sgetn_266", "_IO_sgetn"); -__static_renaming("___IO_seekoff_268", "_IO_seekoff"); -__static_renaming("___IO_seekoff_269", "_IO_seekoff"); -__static_renaming("___IO_seekpos_272", "_IO_seekpos"); -__static_renaming("___IO_seekpos_273", "_IO_seekpos"); -__static_renaming("___IO_free_backup_area_276", "_IO_free_backup_area"); -__static_renaming("___IO_free_backup_area_277", "_IO_free_backup_area"); -__static_renaming("__va_list_279", "va_list"); -__static_renaming("__off_t_281", "off_t"); -__static_renaming("__off_t_283", "off_t"); -__static_renaming("__ssize_t_285", "ssize_t"); -__static_renaming("__fpos_t_287", "fpos_t"); -__static_renaming("__fpos_t_289", "fpos_t"); -__static_renaming("__stdin_291", "stdin"); -__static_renaming("__stdin_292", "stdin"); -__static_renaming("__stdout_294", "stdout"); -__static_renaming("__stdout_295", "stdout"); -__static_renaming("__stderr_297", "stderr"); -__static_renaming("__stderr_298", "stderr"); -__static_renaming("__remove_301", "remove"); -__static_renaming("__rename_304", "rename"); -__static_renaming("__renameat_309", "renameat"); -__static_renaming("__tmpfile_310", "tmpfile"); -__static_renaming("__tmpfile_312", "tmpfile"); -__static_renaming("__tmpfile_314", "tmpfile"); -__static_renaming("__tmpfile_316", "tmpfile"); -__static_renaming("__tmpnam_319", "tmpnam"); -__static_renaming("__tmpnam_320", "tmpnam"); -__static_renaming("__tmpnam_r_322", "tmpnam_r"); -__static_renaming("__tmpnam_r_323", "tmpnam_r"); -__static_renaming("__tempnam_326", "tempnam"); -__static_renaming("__tempnam_327", "tempnam"); -__static_renaming("__fclose_330", "fclose"); -__static_renaming("__fclose_332", "fclose"); -__static_renaming("__fflush_336", "fflush"); -__static_renaming("__fflush_unlocked_340", "fflush_unlocked"); -__static_renaming("__fopen_344", "fopen"); -__static_renaming("__fopen_346", "fopen"); -__static_renaming("__fopen_354", "fopen"); -__static_renaming("__fopen_356", "fopen"); -__static_renaming("__freopen_362", "freopen"); -__static_renaming("__freopen_364", "freopen"); -__static_renaming("__freopen_366", "freopen"); -__static_renaming("__freopen_368", "freopen"); -__static_renaming("__fdopen_372", "fdopen"); -__static_renaming("__fdopen_374", "fdopen"); -__static_renaming("__fmemopen_379", "fmemopen"); -__static_renaming("__fmemopen_381", "fmemopen"); -__static_renaming("__open_memstream_385", "open_memstream"); -__static_renaming("__open_memstream_387", "open_memstream"); -__static_renaming("__setbuf_392", "setbuf"); -__static_renaming("__setbuf_394", "setbuf"); -__static_renaming("__setvbuf_401", "setvbuf"); -__static_renaming("__setbuffer_407", "setbuffer"); -__static_renaming("__setlinebuf_411", "setlinebuf"); -__static_renaming("__fprintf_416", "fprintf"); -__static_renaming("__fprintf_418", "fprintf"); -__static_renaming("__printf_421", "printf"); -__static_renaming("__sprintf_424", "sprintf"); -__static_renaming("__vfprintf_430", "vfprintf"); -__static_renaming("__vprintf_437", "vprintf"); -__static_renaming("__vsprintf_443", "vsprintf"); -__static_renaming("__snprintf_448", "snprintf"); -__static_renaming("__vsnprintf_454", "vsnprintf"); -__static_renaming("__vdprintf_460", "vdprintf"); -__static_renaming("__dprintf_464", "dprintf"); -__static_renaming("__fscanf_468", "fscanf"); -__static_renaming("__fscanf_470", "fscanf"); -__static_renaming("__fscanf_472", "fscanf"); -__static_renaming("__fscanf_474", "fscanf"); -__static_renaming("__scanf_477", "scanf"); -__static_renaming("__scanf_478", "scanf"); -__static_renaming("__sscanf_481", "sscanf"); -__static_renaming("__vfscanf_509", "vfscanf"); -__static_renaming("__vfscanf_513", "vfscanf"); -__static_renaming("__vscanf_520", "vscanf"); -__static_renaming("__vscanf_522", "vscanf"); -__static_renaming("__vsscanf_528", "vsscanf"); -__static_renaming("__fgetc_563", "fgetc"); -__static_renaming("__getc_567", "getc"); -__static_renaming("__getchar_569", "getchar"); -__static_renaming("__getc_unlocked_572", "getc_unlocked"); -__static_renaming("__getchar_unlocked_574", "getchar_unlocked"); -__static_renaming("__fgetc_unlocked_577", "fgetc_unlocked"); -__static_renaming("__fputc_582", "fputc"); -__static_renaming("__fputc_584", "fputc"); -__static_renaming("__putc_589", "putc"); -__static_renaming("__putchar_592", "putchar"); -__static_renaming("__fputc_unlocked_596", "fputc_unlocked"); -__static_renaming("__putc_unlocked_601", "putc_unlocked"); -__static_renaming("__putchar_unlocked_604", "putchar_unlocked"); -__static_renaming("__getw_607", "getw"); -__static_renaming("__putw_612", "putw"); -__static_renaming("__fgets_618", "fgets"); -__static_renaming("__fgets_620", "fgets"); -__static_renaming("__fgets_622", "fgets"); -__static_renaming("__fgets_624", "fgets"); -__static_renaming("____getdelim_631", "__getdelim"); -__static_renaming("____getdelim_635", "__getdelim"); -__static_renaming("__getdelim_644", "getdelim"); -__static_renaming("__getdelim_648", "getdelim"); -__static_renaming("__getline_656", "getline"); -__static_renaming("__getline_660", "getline"); -__static_renaming("__fputs_667", "fputs"); -__static_renaming("__fputs_669", "fputs"); -__static_renaming("__puts_672", "puts"); -__static_renaming("__ungetc_676", "ungetc"); -__static_renaming("__fseek_714", "fseek"); -__static_renaming("__fseek_716", "fseek"); -__static_renaming("__ftell_720", "ftell"); -__static_renaming("__ftell_722", "ftell"); -__static_renaming("__rewind_726", "rewind"); -__static_renaming("__fseeko_733", "fseeko"); -__static_renaming("__fseeko_744", "fseeko"); -__static_renaming("__ftello_750", "ftello"); -__static_renaming("__ftello_754", "ftello"); -__static_renaming("__ftello_758", "ftello"); -__static_renaming("__fgetpos_766", "fgetpos"); -__static_renaming("__fgetpos_778", "fgetpos"); -__static_renaming("__fsetpos_786", "fsetpos"); -__static_renaming("__fsetpos_790", "fsetpos"); -__static_renaming("__clearerr_796", "clearerr"); -__static_renaming("__feof_800", "feof"); -__static_renaming("__feof_802", "feof"); -__static_renaming("__ferror_806", "ferror"); -__static_renaming("__ferror_808", "ferror"); -__static_renaming("__clearerr_unlocked_812", "clearerr_unlocked"); -__static_renaming("__feof_unlocked_816", "feof_unlocked"); -__static_renaming("__feof_unlocked_818", "feof_unlocked"); -__static_renaming("__ferror_unlocked_822", "ferror_unlocked"); -__static_renaming("__ferror_unlocked_824", "ferror_unlocked"); -__static_renaming("__perror_827", "perror"); -__static_renaming("__perror_828", "perror"); -__static_renaming("__sys_nerr_829", "sys_nerr"); -__static_renaming("__sys_errlist_830", "sys_errlist"); -__static_renaming("__fileno_833", "fileno"); -__static_renaming("__fileno_835", "fileno"); -__static_renaming("__fileno_unlocked_839", "fileno_unlocked"); -__static_renaming("__fileno_unlocked_841", "fileno_unlocked"); -__static_renaming("__popen_845", "popen"); -__static_renaming("__popen_847", "popen"); -__static_renaming("__pclose_851", "pclose"); -__static_renaming("__ctermid_854", "ctermid"); -__static_renaming("__flockfile_857", "flockfile"); -__static_renaming("__ftrylockfile_861", "ftrylockfile"); -__static_renaming("__ftrylockfile_863", "ftrylockfile"); -__static_renaming("__funlockfile_867", "funlockfile"); -__static_renaming("____sprintf_chk_899", "__sprintf_chk"); -__static_renaming("____vsprintf_chk_906", "__vsprintf_chk"); -__static_renaming("____snprintf_chk_920", "__snprintf_chk"); -__static_renaming("____vsnprintf_chk_928", "__vsnprintf_chk"); -__static_renaming("____fprintf_chk_943", "__fprintf_chk"); -__static_renaming("____printf_chk_947", "__printf_chk"); -__static_renaming("____vfprintf_chk_954", "__vfprintf_chk"); -__static_renaming("____vprintf_chk_962", "__vprintf_chk"); -__static_renaming("____dprintf_chk_984", "__dprintf_chk"); -__static_renaming("____vdprintf_chk_990", "__vdprintf_chk"); -__static_renaming("____fgets_chk_1004", "__fgets_chk"); -__static_renaming("____fgets_chk_1006", "__fgets_chk"); -__static_renaming("____fgets_chk_1008", "__fgets_chk"); -__static_renaming("____fgets_alias_1014", "__fgets_alias"); -__static_renaming("____fgets_chk_warn_1021", "__fgets_chk_warn"); -__static_renaming("____cnt_1087", "__cnt"); -__static_renaming("____cptr_1088", "__cptr"); -__static_renaming("__main_1095", "main"); +__static_renaming("___G_fpos_t_75", "_G_fpos_t"); +__static_renaming("___G_fpos64_t_81", "_G_fpos64_t"); +__static_renaming("____gnuc_va_list_82", "__gnuc_va_list"); +__static_renaming("___IO_lock_t_84", "_IO_lock_t"); +__static_renaming("___IO_FILE_125", "_IO_FILE"); +__static_renaming("___IO_2_1_stdin__127", "_IO_2_1_stdin_"); +__static_renaming("___IO_2_1_stdout__128", "_IO_2_1_stdout_"); +__static_renaming("___IO_2_1_stderr__129", "_IO_2_1_stderr_"); +__static_renaming("____io_read_fn_133", "__io_read_fn"); +__static_renaming("____io_write_fn_137", "__io_write_fn"); +__static_renaming("____io_seek_fn_141", "__io_seek_fn"); +__static_renaming("____io_close_fn_143", "__io_close_fn"); +__static_renaming("____underflow_144", "__underflow"); +__static_renaming("____uflow_145", "__uflow"); +__static_renaming("____overflow_146", "__overflow"); +__static_renaming("___IO_getc_148", "_IO_getc"); +__static_renaming("___IO_putc_151", "_IO_putc"); +__static_renaming("___IO_feof_153", "_IO_feof"); +__static_renaming("___IO_ferror_155", "_IO_ferror"); +__static_renaming("___IO_peekc_locked_157", "_IO_peekc_locked"); +__static_renaming("___IO_flockfile_158", "_IO_flockfile"); +__static_renaming("___IO_funlockfile_159", "_IO_funlockfile"); +__static_renaming("___IO_ftrylockfile_160", "_IO_ftrylockfile"); +__static_renaming("___IO_vfscanf_161", "_IO_vfscanf"); +__static_renaming("___IO_vfprintf_162", "_IO_vfprintf"); +__static_renaming("___IO_padn_163", "_IO_padn"); +__static_renaming("___IO_sgetn_164", "_IO_sgetn"); +__static_renaming("___IO_seekoff_165", "_IO_seekoff"); +__static_renaming("___IO_seekpos_166", "_IO_seekpos"); +__static_renaming("___IO_free_backup_area_167", "_IO_free_backup_area"); +__static_renaming("__va_list_168", "va_list"); +__static_renaming("__off_t_169", "off_t"); +__static_renaming("__ssize_t_170", "ssize_t"); +__static_renaming("__fpos_t_171", "fpos_t"); +__static_renaming("__stdin_172", "stdin"); +__static_renaming("__stdout_173", "stdout"); +__static_renaming("__stderr_174", "stderr"); +__static_renaming("__remove_176", "remove"); +__static_renaming("__rename_179", "rename"); +__static_renaming("__renameat_184", "renameat"); +__static_renaming("__tmpfile_185", "tmpfile"); +__static_renaming("__tmpnam_187", "tmpnam"); +__static_renaming("__tmpnam_r_189", "tmpnam_r"); +__static_renaming("__tempnam_192", "tempnam"); +__static_renaming("__fclose_194", "fclose"); +__static_renaming("__fflush_196", "fflush"); +__static_renaming("__fflush_unlocked_198", "fflush_unlocked"); +__static_renaming("__fopen_201", "fopen"); +__static_renaming("__freopen_205", "freopen"); +__static_renaming("__fdopen_208", "fdopen"); +__static_renaming("__fmemopen_212", "fmemopen"); +__static_renaming("__open_memstream_215", "open_memstream"); +__static_renaming("__setbuf_218", "setbuf"); +__static_renaming("__setvbuf_223", "setvbuf"); +__static_renaming("__setbuffer_227", "setbuffer"); +__static_renaming("__setlinebuf_229", "setlinebuf"); +__static_renaming("__fprintf_232", "fprintf"); +__static_renaming("__printf_234", "printf"); +__static_renaming("__sprintf_237", "sprintf"); +__static_renaming("__vfprintf_241", "vfprintf"); +__static_renaming("__vprintf_244", "vprintf"); +__static_renaming("__vsprintf_248", "vsprintf"); +__static_renaming("__snprintf_252", "snprintf"); +__static_renaming("__vsnprintf_257", "vsnprintf"); +__static_renaming("__vdprintf_261", "vdprintf"); +__static_renaming("__dprintf_264", "dprintf"); +__static_renaming("__fscanf_267", "fscanf"); +__static_renaming("__scanf_269", "scanf"); +__static_renaming("__sscanf_272", "sscanf"); +__static_renaming("__vfscanf_284", "vfscanf"); +__static_renaming("__vscanf_287", "vscanf"); +__static_renaming("__vsscanf_291", "vsscanf"); +__static_renaming("__fgetc_304", "fgetc"); +__static_renaming("__getc_306", "getc"); +__static_renaming("__getchar_307", "getchar"); +__static_renaming("__getc_unlocked_309", "getc_unlocked"); +__static_renaming("__getchar_unlocked_310", "getchar_unlocked"); +__static_renaming("__fgetc_unlocked_312", "fgetc_unlocked"); +__static_renaming("__fputc_315", "fputc"); +__static_renaming("__putc_318", "putc"); +__static_renaming("__putchar_320", "putchar"); +__static_renaming("__fputc_unlocked_323", "fputc_unlocked"); +__static_renaming("__putc_unlocked_326", "putc_unlocked"); +__static_renaming("__putchar_unlocked_328", "putchar_unlocked"); +__static_renaming("__getw_330", "getw"); +__static_renaming("__putw_333", "putw"); +__static_renaming("__fgets_337", "fgets"); +__static_renaming("____getdelim_342", "__getdelim"); +__static_renaming("__getdelim_347", "getdelim"); +__static_renaming("__getline_351", "getline"); +__static_renaming("__fputs_354", "fputs"); +__static_renaming("__puts_356", "puts"); +__static_renaming("__ungetc_359", "ungetc"); +__static_renaming("__fseek_379", "fseek"); +__static_renaming("__ftell_381", "ftell"); +__static_renaming("__rewind_383", "rewind"); +__static_renaming("__fseeko_387", "fseeko"); +__static_renaming("__ftello_389", "ftello"); +__static_renaming("__fgetpos_392", "fgetpos"); +__static_renaming("__fsetpos_395", "fsetpos"); +__static_renaming("__clearerr_397", "clearerr"); +__static_renaming("__feof_399", "feof"); +__static_renaming("__ferror_401", "ferror"); +__static_renaming("__clearerr_unlocked_403", "clearerr_unlocked"); +__static_renaming("__feof_unlocked_405", "feof_unlocked"); +__static_renaming("__ferror_unlocked_407", "ferror_unlocked"); +__static_renaming("__perror_409", "perror"); +__static_renaming("__sys_nerr_410", "sys_nerr"); +__static_renaming("__sys_errlist_411", "sys_errlist"); +__static_renaming("__fileno_413", "fileno"); +__static_renaming("__fileno_unlocked_415", "fileno_unlocked"); +__static_renaming("__popen_418", "popen"); +__static_renaming("__pclose_420", "pclose"); +__static_renaming("__ctermid_422", "ctermid"); +__static_renaming("__flockfile_424", "flockfile"); +__static_renaming("__ftrylockfile_426", "ftrylockfile"); +__static_renaming("__funlockfile_428", "funlockfile"); +__static_renaming("__main_431", "main"); -__static_condition_renaming("__static_condition_default_53", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_76", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_84", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_123", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_169", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_170", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_173", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_182", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_187", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_193", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_198", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_201", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_204", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_210", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_217", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_223", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_229", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_235", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_238", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_241", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_244", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_246", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_248", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_249", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_250", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_253", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_255", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_257", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_258", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_259", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_263", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_264", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_267", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_270", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_271", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_274", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_275", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_278", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_280", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); -__static_condition_renaming("__static_condition_default_282", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_284", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_286", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_288", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_290", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_293", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_296", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_299", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_311", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_313", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_315", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_317", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_331", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_333", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_337", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_341", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_345", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_347", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_355", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_357", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_363", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_365", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_367", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_369", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_373", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_375", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_380", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_382", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_386", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_388", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_393", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_395", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_402", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_408", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_412", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_417", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_419", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_431", "!(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_432", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_433", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_438", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_444", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_455", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_461", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_469", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_471", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_473", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_475", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_486", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_488", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_489", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_491", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_493", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_494", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_497", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_499", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_503", "!(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_510", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_511", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_512", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_514", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_515", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_516", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_521", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_523", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_529", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_536", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_537", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_538", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_539", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_541", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_542", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_543", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_544", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_549", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_550", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_552", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_553", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_559", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_560", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_564", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_568", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_573", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_578", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_583", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_585", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_590", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_597", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_602", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_608", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_613", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_619", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_621", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_623", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_625", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_632", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_633", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_634", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_636", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_637", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_638", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_645", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_646", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_647", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_649", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_650", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_651", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_657", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_658", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_659", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_661", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_662", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_663", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_668", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_670", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_677", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_683", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_684", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_685", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_686", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_692", "!(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_693", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_699", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_700", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_701", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_702", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_708", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_709", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_715", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_717", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_721", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_723", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_727", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_734", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_735", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_736", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_745", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_746", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_747", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_751", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_752", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_753", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_755", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_756", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_757", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_759", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_760", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_761", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_767", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_768", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_769", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_779", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_780", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_781", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_787", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_788", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_789", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_791", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_792", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_793", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_797", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_801", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_803", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_807", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_809", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_813", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_817", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_819", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_823", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_825", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_834", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_836", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_840", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_842", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_846", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_848", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_852", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_858", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_862", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_864", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_868", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_872", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_875", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_878", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_883", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_887", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_891", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_894", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_907", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_914", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_929", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_938", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_944", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_955", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_956", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_957", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_963", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_967", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_972", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_978", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_979", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_980", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_991", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_998", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1005", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1007", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1009", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1015", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1022", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1027", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1028", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1035", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1036", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1042", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1043", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1050", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1051", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1057", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1058", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1065", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1066", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1072", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1073", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1080", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1081", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1089", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_1090", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1091", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1096", "!(defined ULTRA_LCD)"); -__static_condition_renaming("__static_condition_default_1097", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && (defined ULTRA_LCD) || !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && (defined ULTRA_LCD) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) || (defined __need___FILE) && (defined ULTRA_LCD)"); -if (__static_condition_default_1097) -{ -__static_parse_error("Unable to parse"); -} }; typedef long int __ptrdiff_t_0;// L143:L324 typedef long unsigned int __size_t_1;// L177:L209 @@ -873,142 +240,107 @@ typedef long int ____ssize_t_49;// L110:L172 typedef long int ____syscall_slong_t_50;// L93:L175 typedef unsigned long int ____syscall_ulong_t_51;// L94:L177 typedef ____off64_t_24 ____loff_t_52;// L181 -typedef ____quad_t_14 * (____qaddr_t_54);// L182 -typedef char * (____caddr_t_55);// L183 -typedef long int ____intptr_t_56;// L110:L186 -typedef unsigned int ____socklen_t_57;// L92:L189 -typedef struct __forward_tag_reference_58 __FILE_59;// L48 -typedef struct __forward_tag_reference_58 ____FILE_60;// L64 -union ____anonymous_tag_61_62 { -unsigned int ____wch_63;// L265 -char ____wchb_64[4];// L92 +typedef ____quad_t_14 * (____qaddr_t_53);// L182 +typedef char * (____caddr_t_54);// L183 +typedef long int ____intptr_t_55;// L110:L186 +typedef unsigned int ____socklen_t_56;// L92:L189 +typedef struct __forward_tag_reference_57 __FILE_58;// L48 +typedef struct __forward_tag_reference_57 ____FILE_59;// L64 +union ____anonymous_tag_60_61 { +unsigned int ____wch_62;// L265 +char ____wchb_63[4];// L92 }; -struct ____anonymous_tag_65_66 { -int ____count_67;// L84 -union ____anonymous_tag_61_62 ____value_68;// L85 +struct ____anonymous_tag_64_65 { +int ____count_66;// L84 +union ____anonymous_tag_60_61 ____value_67;// L85 }; -typedef struct ____anonymous_tag_65_66 ____mbstate_t_69;// L82:L94 +typedef struct ____anonymous_tag_64_65 ____mbstate_t_68;// L82:L94 +typedef struct ____anonymous_tag_64_65 ____mbstate_t_69;// L82:L94 struct ____anonymous_tag_70_71 { ____off_t_23 ____pos_72;// L0 +____mbstate_t_68 ____state_73;// L0 ____mbstate_t_69 ____state_74;// L0 }; -typedef struct ____anonymous_tag_70_71 ___G_fpos_t_77;// L21:L25 -struct ____anonymous_tag_78_79 { -____off64_t_24 ____pos_80;// L0 -____mbstate_t_69 ____state_82;// L0 -}; -typedef struct ____anonymous_tag_78_79 ___G_fpos64_t_85;// L26:L30 -typedef __builtin_va_list ____gnuc_va_list_86;// L40 -typedef void ___IO_lock_t_88;// L150 -struct ___IO_marker_90 { -struct __forward_tag_reference_89 * (___next_91);// L0 -struct __forward_tag_reference_58 * (___sbuf_92);// L0 -int ___pos_93;// L162 +typedef struct ____anonymous_tag_70_71 ___G_fpos_t_75;// L21:L25 +struct ____anonymous_tag_76_77 { +____off64_t_24 ____pos_78;// L0 +____mbstate_t_68 ____state_79;// L0 +____mbstate_t_69 ____state_80;// L0 }; -enum ____codecvt_result_98 { -____codecvt_ok_94, -____codecvt_partial_95, -____codecvt_error_96, -____codecvt_noconv_97, +typedef struct ____anonymous_tag_76_77 ___G_fpos64_t_81;// L26:L30 +typedef __builtin_va_list ____gnuc_va_list_82;// L40 +typedef void ___IO_lock_t_84;// L150 +struct ___IO_marker_86 { +struct __forward_tag_reference_85 * (___next_87);// L0 +struct __forward_tag_reference_57 * (___sbuf_88);// L0 +int ___pos_89;// L162 }; -struct ___IO_FILE_99 { -int ___flags_100;// L242 -char * (___IO_read_ptr_101);// L247 -char * (___IO_read_end_102);// L248 -char * (___IO_read_base_103);// L249 -char * (___IO_write_base_104);// L250 -char * (___IO_write_ptr_105);// L251 -char * (___IO_write_end_106);// L252 -char * (___IO_buf_base_107);// L253 -char * (___IO_buf_end_108);// L254 -char * (___IO_save_base_109);// L256 -char * (___IO_backup_base_110);// L257 -char * (___IO_save_end_111);// L258 -struct ___IO_marker_90 * (___markers_112);// L260 -struct __forward_tag_reference_58 * (___chain_113);// L0 -int ___fileno_114;// L264 -int ___flags2_115;// L268 -____off_t_23 ___old_offset_116;// L0 -unsigned short ___cur_column_118;// L274 -signed char ___vtable_offset_119;// L275 -char ___shortbuf_120[1];// L276 -___IO_lock_t_88 * (___lock_121);// L0 +enum ____codecvt_result_94 { +____codecvt_ok_90, +____codecvt_partial_91, +____codecvt_error_92, +____codecvt_noconv_93, }; -struct ___IO_FILE_124 { -int ___flags_125;// L242 -char * (___IO_read_ptr_126);// L247 -char * (___IO_read_end_127);// L248 -char * (___IO_read_base_128);// L249 -char * (___IO_write_base_129);// L250 -char * (___IO_write_ptr_130);// L251 -char * (___IO_write_end_131);// L252 -char * (___IO_buf_base_132);// L253 -char * (___IO_buf_end_133);// L254 -char * (___IO_save_base_134);// L256 -char * (___IO_backup_base_135);// L257 -char * (___IO_save_end_136);// L258 -struct ___IO_marker_90 * (___markers_137);// L260 -struct __forward_tag_reference_58 * (___chain_138);// L0 -int ___fileno_139;// L264 -int ___flags2_140;// L268 -____off_t_23 ___old_offset_141;// L0 -unsigned short ___cur_column_143;// L274 -signed char ___vtable_offset_144;// L275 -char ___shortbuf_145[1];// L276 -___IO_lock_t_88 * (___lock_146);// L0 -____off64_t_24 ___offset_148;// L0 -void * (____pad1_150);// L297 -void * (____pad2_151);// L298 -void * (____pad3_152);// L299 -void * (____pad4_153);// L300 -__size_t_1 ____pad5_154;// L0 -int ___mode_155;// L303 -char ___unused2_156[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +struct ___IO_FILE_95 { +int ___flags_96;// L242 +char * (___IO_read_ptr_97);// L247 +char * (___IO_read_end_98);// L248 +char * (___IO_read_base_99);// L249 +char * (___IO_write_base_100);// L250 +char * (___IO_write_ptr_101);// L251 +char * (___IO_write_end_102);// L252 +char * (___IO_buf_base_103);// L253 +char * (___IO_buf_end_104);// L254 +char * (___IO_save_base_105);// L256 +char * (___IO_backup_base_106);// L257 +char * (___IO_save_end_107);// L258 +struct ___IO_marker_86 * (___markers_108);// L260 +struct __forward_tag_reference_57 * (___chain_109);// L0 +int ___fileno_110;// L264 +int ___flags2_111;// L268 +____off_t_23 ___old_offset_112;// L0 +unsigned short ___cur_column_113;// L274 +signed char ___vtable_offset_114;// L275 +char ___shortbuf_115[1];// L276 +___IO_lock_t_84 * (___lock_116);// L0 +____off64_t_24 ___offset_117;// L0 +void * (____pad1_118);// L297 +void * (____pad2_119);// L298 +void * (____pad3_120);// L299 +void * (____pad4_121);// L300 +__size_t_1 ____pad5_122;// L0 +int ___mode_123;// L303 +char ___unused2_124[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -struct ___IO_FILE_complete_157 { -struct ___IO_FILE_99 ___file_158;// L286 -____off64_t_24 ___offset_160;// L0 -void * (____pad1_162);// L297 -void * (____pad2_163);// L298 -void * (____pad3_164);// L299 -void * (____pad4_165);// L300 -__size_t_1 ____pad5_166;// L0 -int ___mode_167;// L303 -char ___unused2_168[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 -}; -typedef struct ___IO_FILE_99 ___IO_FILE_171;// L310 -typedef struct ___IO_FILE_124 ___IO_FILE_172;// L310 -typedef ____ssize_t_49 (____io_read_fn_181) (void * (____cookie_178), char * (____buf_179), __size_t_1 ____nbytes_180);// L333 -typedef ____ssize_t_49 (____io_write_fn_186) (void * (____cookie_183), const char * (____buf_184), __size_t_1 ____n_185);// L341:L342 -typedef int (____io_seek_fn_192) (void * (____cookie_188), ____off64_t_24 * (____pos_189), int ____w_191);// L350 -typedef int (____io_close_fn_195) (void * (____cookie_194));// L353 -typedef ____gnuc_va_list_86 __va_list_279;// L79 -typedef ____off_t_23 __off_t_281;// L90 -typedef ____off64_t_24 __off_t_283;// L92 -typedef ____ssize_t_49 __ssize_t_285;// L102 -typedef ___G_fpos_t_77 __fpos_t_287;// L110 -typedef ___G_fpos64_t_85 __fpos_t_289;// L112 -extern const char * const __sys_errlist_830[];// L27 - -struct __forward_tag_reference_89 { // generated union of struct variations +typedef struct ___IO_FILE_95 ___IO_FILE_125;// L310 +typedef ____ssize_t_49 (____io_read_fn_133) (void * (____cookie_130), char * (____buf_131), __size_t_1 ____nbytes_132);// L333 +typedef ____ssize_t_49 (____io_write_fn_137) (void * (____cookie_134), const char * (____buf_135), __size_t_1 ____n_136);// L341:L342 +typedef int (____io_seek_fn_141) (void * (____cookie_138), ____off64_t_24 * (____pos_139), int ____w_140);// L350 +typedef int (____io_close_fn_143) (void * (____cookie_142));// L353 +typedef ____gnuc_va_list_82 __va_list_168;// L79 +typedef ____off_t_23 __off_t_169;// L90 +typedef ____ssize_t_49 __ssize_t_170;// L102 +typedef ___G_fpos_t_75 __fpos_t_171;// L110 +extern const char * const __sys_errlist_411[];// L27 + +struct __forward_tag_reference_126 { // generated union of struct variations union { -struct ___IO_marker_90 ___IO_marker_90; }; }; -struct __forward_tag_reference_58 { // generated union of struct variations +struct __forward_tag_reference_57 { // generated union of struct variations union { -struct ___IO_FILE_99 ___IO_FILE_99; -struct ___IO_FILE_124 ___IO_FILE_124; +struct ___IO_FILE_95 ___IO_FILE_95; }; }; -struct __forward_tag_reference_87 { // generated union of struct variations +struct __forward_tag_reference_85 { // generated union of struct variations union { +struct ___IO_marker_86 ___IO_marker_86; }; }; -struct __forward_tag_reference_174 { // generated union of struct variations +struct __forward_tag_reference_83 { // generated union of struct variations union { }; }; @@ -1067,267 +399,141 @@ union { // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_58 ;// L0 +struct __forward_tag_reference_57 ;// L0 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_87 ;// L0 -struct __forward_tag_reference_87 ;// L0 -struct __forward_tag_reference_58 ;// L0 // typedef moved to top of scope -struct ___IO_marker_90 ;// L156 -enum ____codecvt_result_98 ;// L176 -struct ___IO_FILE_99 ;// L241 - -struct ___IO_FILE_124 ;// L241 -struct ___IO_FILE_complete_157 ;// L241 - +struct __forward_tag_reference_83 ;// L0 +struct __forward_tag_reference_57 ;// L0 // typedef moved to top of scope +struct ___IO_marker_86 ;// L156 +enum ____codecvt_result_94 ;// L176 +struct ___IO_FILE_95 ;// L241 // typedef moved to top of scope -struct __forward_tag_reference_174 ;// L0 -extern struct __forward_tag_reference_174 ___IO_2_1_stdin__175;// L315 -extern struct __forward_tag_reference_174 ___IO_2_1_stdout__176;// L316 -extern struct __forward_tag_reference_174 ___IO_2_1_stderr__177;// L317 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern int (____underflow_196) (___IO_FILE_171 *);// L385 -extern int (____underflow_197) (___IO_FILE_172 *);// L385 -extern int (____uflow_199) (___IO_FILE_171 *);// L386 -extern int (____uflow_200) (___IO_FILE_172 *);// L386 -extern int (____overflow_202) (___IO_FILE_171 *, int );// L387 -extern int (____overflow_203) (___IO_FILE_172 *, int );// L387 -extern int (___IO_getc_208) (___IO_FILE_171 * (____fp_205));// L429 -extern int (___IO_getc_209) (___IO_FILE_172 * (____fp_206));// L429 -extern int (___IO_putc_215) (int ____c_211, ___IO_FILE_171 * (____fp_212));// L430 -extern int (___IO_putc_216) (int ____c_211, ___IO_FILE_172 * (____fp_213));// L430 -extern int (___IO_feof_221) (___IO_FILE_171 * (____fp_218));// L431 -extern int (___IO_feof_222) (___IO_FILE_172 * (____fp_219));// L431 -extern int (___IO_ferror_227) (___IO_FILE_171 * (____fp_224));// L432 -extern int (___IO_ferror_228) (___IO_FILE_172 * (____fp_225));// L432 -extern int (___IO_peekc_locked_233) (___IO_FILE_171 * (____fp_230));// L434 -extern int (___IO_peekc_locked_234) (___IO_FILE_172 * (____fp_231));// L434 -extern void (___IO_flockfile_236) (___IO_FILE_171 *);// L440 -extern void (___IO_flockfile_237) (___IO_FILE_172 *);// L440 -extern void (___IO_funlockfile_239) (___IO_FILE_171 *);// L441 -extern void (___IO_funlockfile_240) (___IO_FILE_172 *);// L441 -extern int (___IO_ftrylockfile_242) (___IO_FILE_171 *);// L442 -extern int (___IO_ftrylockfile_243) (___IO_FILE_172 *);// L442 -extern int (___IO_vfscanf_245) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_247) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_251) (___IO_FILE_171 * __restrict , const char * __restrict , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_252) (___IO_FILE_172 * __restrict , const char * __restrict , int * __restrict );// L459:L460 -extern int (___IO_vfprintf_254) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 -extern int (___IO_vfprintf_256) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 -extern int (___IO_vfprintf_260) ();// L461:L462 -extern ____ssize_t_49 (___IO_padn_261) (___IO_FILE_171 *, int , ____ssize_t_49 );// L463 -extern ____ssize_t_49 (___IO_padn_262) (___IO_FILE_172 *, int , ____ssize_t_49 );// L463 -extern __size_t_1 (___IO_sgetn_265) (___IO_FILE_171 *, void *, __size_t_1 );// L464 -extern __size_t_1 (___IO_sgetn_266) (___IO_FILE_172 *, void *, __size_t_1 );// L464 -extern ____off64_t_24 (___IO_seekoff_268) (___IO_FILE_171 *, ____off64_t_24 , int , int );// L466 -extern ____off64_t_24 (___IO_seekoff_269) (___IO_FILE_172 *, ____off64_t_24 , int , int );// L466 -extern ____off64_t_24 (___IO_seekpos_272) (___IO_FILE_171 *, ____off64_t_24 , int );// L467 -extern ____off64_t_24 (___IO_seekpos_273) (___IO_FILE_172 *, ____off64_t_24 , int );// L467 -extern void (___IO_free_backup_area_276) (___IO_FILE_171 *);// L469 -extern void (___IO_free_backup_area_277) (___IO_FILE_172 *);// L469 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern struct ___IO_FILE_99 * (__stdin_291);// L168 -extern struct ___IO_FILE_124 * (__stdin_292);// L168 -extern struct ___IO_FILE_99 * (__stdout_294);// L169 -extern struct ___IO_FILE_124 * (__stdout_295);// L169 -extern struct ___IO_FILE_99 * (__stderr_297);// L170 -extern struct ___IO_FILE_124 * (__stderr_298);// L170 -extern int (__remove_301) (const char * (____filename_300));// L178 -extern int (__rename_304) (const char * (____old_302), const char * (____new_303));// L180 -extern int (__renameat_309) (int ____oldfd_305, const char * (____old_306), int ____newfd_307, const char * (____new_308));// L185:L186 -extern __FILE_59 * ((__tmpfile_310) (void ));// L195 -extern __FILE_59 * ((__tmpfile_316) (void ));// L198 -extern __FILE_59 * ((__tmpfile_314) (void ));// L195 -extern __FILE_59 * ((__tmpfile_312) (void ));// L198 -extern char * ((__tmpnam_319) (char * (____s_318)));// L209 -extern char * ((__tmpnam_320) (char * (____s_318)));// L209 -extern char * ((__tmpnam_r_322) (char * (____s_321)));// L215 -extern char * ((__tmpnam_r_323) (char * (____s_321)));// L215 -extern char * ((__tempnam_326) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 -extern char * ((__tempnam_327) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 -extern int (__fclose_330) (__FILE_59 * (____stream_328));// L237 -extern int (__fclose_332) (__FILE_59 * (____stream_328));// L237 -extern int (__fflush_336) (__FILE_59 * (____stream_334));// L242 -extern int (__fflush_unlocked_340) (__FILE_59 * (____stream_338));// L252 -extern __FILE_59 * ((__fopen_344) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 -extern __FILE_59 * ((__fopen_346) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 -extern __FILE_59 * ((__fopen_354) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 -extern __FILE_59 * ((__fopen_356) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 -extern __FILE_59 * ((__freopen_362) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 -extern __FILE_59 * ((__freopen_368) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 -extern __FILE_59 * ((__freopen_366) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 -extern __FILE_59 * ((__freopen_364) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 -extern __FILE_59 * ((__fdopen_372) (int ____fd_370, const char * (____modes_371)));// L306 -extern __FILE_59 * ((__fdopen_374) (int ____fd_370, const char * (____modes_371)));// L306 -extern __FILE_59 * ((__fmemopen_379) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 -extern __FILE_59 * ((__fmemopen_381) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 -extern __FILE_59 * ((__open_memstream_385) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 -extern __FILE_59 * ((__open_memstream_387) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 -extern void (__setbuf_392) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 -extern void (__setbuf_394) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 -extern int (__setvbuf_401) (__FILE_59 * __restrict ____stream_396, char * __restrict ____buf_398, int ____modes_399, __size_t_1 ____n_400);// L336:L337 -extern void (__setbuffer_407) (__FILE_59 * __restrict ____stream_403, char * __restrict ____buf_405, __size_t_1 ____size_406);// L343:L344 -extern void (__setlinebuf_411) (__FILE_59 * (____stream_409));// L347 -extern int (__fprintf_416) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 -extern int (__fprintf_418) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 -extern int (__printf_421) (const char * __restrict ____format_420, ... );// L362 -extern int (__sprintf_424) (char * __restrict ____s_422, const char * __restrict ____format_423, ... );// L364:L365 -extern int (__vfprintf_430) (__FILE_59 * __restrict ____s_425, const char * __restrict ____format_427, ____gnuc_va_list_86 ____arg_428);// L371:L372 -extern int (__vprintf_437) (const char * __restrict ____format_434, ____gnuc_va_list_86 ____arg_435);// L377 -extern int (__vsprintf_443) (char * __restrict ____s_439, const char * __restrict ____format_440, ____gnuc_va_list_86 ____arg_441);// L379:L380 -extern int (__snprintf_448) (char * __restrict ____s_445, __size_t_1 ____maxlen_446, const char * __restrict ____format_447, ... );// L386:L388 -extern int (__vsnprintf_454) (char * __restrict ____s_449, __size_t_1 ____maxlen_450, const char * __restrict ____format_451, ____gnuc_va_list_86 ____arg_452);// L390:L392 -extern int (__vdprintf_460) (int ____fd_456, const char * __restrict ____fmt_457, ____gnuc_va_list_86 ____arg_458);// L412:L414 -extern int (__dprintf_464) (int ____fd_462, const char * __restrict ____fmt_463, ... );// L415:L416 -extern int (__fscanf_468) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__fscanf_470) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__fscanf_472) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__fscanf_474) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 -extern int (__scanf_477) (const char * __restrict ____format_476, ... );// L431 -extern int (__scanf_478) (const char * __restrict ____format_476, ... );// L431 -extern int (__sscanf_481) (const char * __restrict ____s_479, const char * __restrict ____format_480, ... );// L433:L434 - - - - - - - -extern int (__vfscanf_509) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 -extern int (__vfscanf_513) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 -extern int (__vscanf_520) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 -extern int (__vscanf_522) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 -extern int (__vsscanf_528) (const char * __restrict ____s_524, const char * __restrict ____format_525, ____gnuc_va_list_86 ____arg_526);// L483:L485 - +struct __forward_tag_reference_126 ;// L0 +extern struct __forward_tag_reference_126 ___IO_2_1_stdin__127;// L315 +extern struct __forward_tag_reference_126 ___IO_2_1_stdout__128;// L316 +extern struct __forward_tag_reference_126 ___IO_2_1_stderr__129;// L317 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern int (____underflow_144) (___IO_FILE_125 *);// L385 +extern int (____uflow_145) (___IO_FILE_125 *);// L386 +extern int (____overflow_146) (___IO_FILE_125 *, int );// L387 +extern int (___IO_getc_148) (___IO_FILE_125 * (____fp_147));// L429 +extern int (___IO_putc_151) (int ____c_149, ___IO_FILE_125 * (____fp_150));// L430 +extern int (___IO_feof_153) (___IO_FILE_125 * (____fp_152));// L431 +extern int (___IO_ferror_155) (___IO_FILE_125 * (____fp_154));// L432 +extern int (___IO_peekc_locked_157) (___IO_FILE_125 * (____fp_156));// L434 +extern void (___IO_flockfile_158) (___IO_FILE_125 *);// L440 +extern void (___IO_funlockfile_159) (___IO_FILE_125 *);// L441 +extern int (___IO_ftrylockfile_160) (___IO_FILE_125 *);// L442 +extern int (___IO_vfscanf_161) (___IO_FILE_125 * __restrict , const char * __restrict , ____gnuc_va_list_82 , int * __restrict );// L459:L460 +extern int (___IO_vfprintf_162) (___IO_FILE_125 * __restrict , const char * __restrict , ____gnuc_va_list_82 );// L461:L462 +extern ____ssize_t_49 (___IO_padn_163) (___IO_FILE_125 *, int , ____ssize_t_49 );// L463 +extern __size_t_1 (___IO_sgetn_164) (___IO_FILE_125 *, void *, __size_t_1 );// L464 +extern ____off64_t_24 (___IO_seekoff_165) (___IO_FILE_125 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekpos_166) (___IO_FILE_125 *, ____off64_t_24 , int );// L467 +extern void (___IO_free_backup_area_167) (___IO_FILE_125 *);// L469 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern struct ___IO_FILE_95 * (__stdin_172);// L168 +extern struct ___IO_FILE_95 * (__stdout_173);// L169 +extern struct ___IO_FILE_95 * (__stderr_174);// L170 +extern int (__remove_176) (const char * (____filename_175));// L178 +extern int (__rename_179) (const char * (____old_177), const char * (____new_178));// L180 +extern int (__renameat_184) (int ____oldfd_180, const char * (____old_181), int ____newfd_182, const char * (____new_183));// L185:L186 +extern __FILE_58 * ((__tmpfile_185) (void ));// L195 +extern char * ((__tmpnam_187) (char * (____s_186)));// L209 +extern char * ((__tmpnam_r_189) (char * (____s_188)));// L215 +extern char * ((__tempnam_192) (const char * (____dir_190), const char * (____pfx_191)));// L227:L228 +extern int (__fclose_194) (__FILE_58 * (____stream_193));// L237 +extern int (__fflush_196) (__FILE_58 * (____stream_195));// L242 +extern int (__fflush_unlocked_198) (__FILE_58 * (____stream_197));// L252 +extern __FILE_58 * ((__fopen_201) (const char * __restrict ____filename_199, const char * __restrict ____modes_200));// L272:L273 +extern __FILE_58 * ((__freopen_205) (const char * __restrict ____filename_202, const char * __restrict ____modes_203, __FILE_58 * __restrict ____stream_204));// L278:L280 +extern __FILE_58 * ((__fdopen_208) (int ____fd_206, const char * (____modes_207)));// L306 +extern __FILE_58 * ((__fmemopen_212) (void * (____s_209), __size_t_1 ____len_210, const char * (____modes_211)));// L319:L320 +extern __FILE_58 * ((__open_memstream_215) (char * (* (____bufloc_213)), __size_t_1 * (____sizeloc_214)));// L325 +extern void (__setbuf_218) (__FILE_58 * __restrict ____stream_216, char * __restrict ____buf_217);// L332 +extern int (__setvbuf_223) (__FILE_58 * __restrict ____stream_219, char * __restrict ____buf_220, int ____modes_221, __size_t_1 ____n_222);// L336:L337 +extern void (__setbuffer_227) (__FILE_58 * __restrict ____stream_224, char * __restrict ____buf_225, __size_t_1 ____size_226);// L343:L344 +extern void (__setlinebuf_229) (__FILE_58 * (____stream_228));// L347 +extern int (__fprintf_232) (__FILE_58 * __restrict ____stream_230, const char * __restrict ____format_231, ... );// L356:L357 +extern int (__printf_234) (const char * __restrict ____format_233, ... );// L362 +extern int (__sprintf_237) (char * __restrict ____s_235, const char * __restrict ____format_236, ... );// L364:L365 +extern int (__vfprintf_241) (__FILE_58 * __restrict ____s_238, const char * __restrict ____format_239, ____gnuc_va_list_82 ____arg_240);// L371:L372 +extern int (__vprintf_244) (const char * __restrict ____format_242, ____gnuc_va_list_82 ____arg_243);// L377 +extern int (__vsprintf_248) (char * __restrict ____s_245, const char * __restrict ____format_246, ____gnuc_va_list_82 ____arg_247);// L379:L380 +extern int (__snprintf_252) (char * __restrict ____s_249, __size_t_1 ____maxlen_250, const char * __restrict ____format_251, ... );// L386:L388 +extern int (__vsnprintf_257) (char * __restrict ____s_253, __size_t_1 ____maxlen_254, const char * __restrict ____format_255, ____gnuc_va_list_82 ____arg_256);// L390:L392 +extern int (__vdprintf_261) (int ____fd_258, const char * __restrict ____fmt_259, ____gnuc_va_list_82 ____arg_260);// L412:L414 +extern int (__dprintf_264) (int ____fd_262, const char * __restrict ____fmt_263, ... );// L415:L416 +extern int (__fscanf_267) (__FILE_58 * __restrict ____stream_265, const char * __restrict ____format_266, ... );// L425:L426 +extern int (__scanf_269) (const char * __restrict ____format_268, ... );// L431 +extern int (__sscanf_272) (const char * __restrict ____s_270, const char * __restrict ____format_271, ... );// L433:L434 +extern int (__vfscanf_284) (__FILE_58 * __restrict ____s_281, const char * __restrict ____format_282, ____gnuc_va_list_82 ____arg_283);// L471:L473 +extern int (__vscanf_287) (const char * __restrict ____format_285, ____gnuc_va_list_82 ____arg_286);// L479:L480 +extern int (__vsscanf_291) (const char * __restrict ____s_288, const char * __restrict ____format_289, ____gnuc_va_list_82 ____arg_290);// L483:L485 -extern int (__fgetc_563) (__FILE_59 * (____stream_561));// L531 -extern int (__getc_567) (__FILE_59 * (____stream_565));// L532 -extern int (__getchar_569) (void );// L538 -extern int (__getc_unlocked_572) (__FILE_59 * (____stream_570));// L550 -extern int (__getchar_unlocked_574) (void );// L551 -extern int (__fgetc_unlocked_577) (__FILE_59 * (____stream_575));// L561 -extern int (__fputc_582) (int ____c_579, __FILE_59 * (____stream_580));// L573 -extern int (__fputc_584) (int ____c_579, __FILE_59 * (____stream_580));// L573 -extern int (__putc_589) (int ____c_586, __FILE_59 * (____stream_587));// L574 -extern int (__putchar_592) (int ____c_591);// L580 -extern int (__fputc_unlocked_596) (int ____c_593, __FILE_59 * (____stream_594));// L594 -extern int (__putc_unlocked_601) (int ____c_598, __FILE_59 * (____stream_599));// L602 -extern int (__putchar_unlocked_604) (int ____c_603);// L603 -extern int (__getw_607) (__FILE_59 * (____stream_605));// L610 -extern int (__putw_612) (int ____w_609, __FILE_59 * (____stream_610));// L613 -extern char * ((__fgets_618) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern char * ((__fgets_620) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern char * ((__fgets_622) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern char * ((__fgets_624) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 -extern ____ssize_t_49 (____getdelim_631) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 -extern ____ssize_t_49 (____getdelim_635) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 -extern ____ssize_t_49 (__getdelim_644) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 -extern ____ssize_t_49 (__getdelim_648) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 -extern ____ssize_t_49 (__getline_656) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 -extern ____ssize_t_49 (__getline_660) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 -extern int (__fputs_667) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 -extern int (__fputs_669) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 -extern int (__puts_672) (const char * (____s_671));// L695 -extern int (__ungetc_676) (int ____c_673, __FILE_59 * (____stream_674));// L702 -extern int (__fseek_714) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 -extern int (__fseek_716) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 -extern long int (__ftell_720) (__FILE_59 * (____stream_718));// L754 -extern long int (__ftell_722) (__FILE_59 * (____stream_718));// L754 -extern void (__rewind_726) (__FILE_59 * (____stream_724));// L759 -extern int (__fseeko_733) (__FILE_59 * (____stream_728), ____off_t_23 ____off_730, int ____whence_732);// L773 -extern int (__fseeko_744) (__FILE_59 * (____stream_739), ____off64_t_24 ____off_741, int ____whence_743);// L781:L783 -extern ____off_t_23 (__ftello_758) (__FILE_59 * (____stream_737));// L778 -extern ____off_t_23 (__ftello_750) (__FILE_59 * (____stream_737));// L778 -extern int (__fgetpos_766) (__FILE_59 * __restrict ____stream_762, __fpos_t_287 * __restrict ____pos_764);// L798 -extern ____off64_t_24 (__ftello_754) (__FILE_59 * (____stream_748));// L784 -extern int (__fgetpos_778) (__FILE_59 * __restrict ____stream_774, __fpos_t_289 * __restrict ____pos_776);// L806:L807 -extern int (__fsetpos_786) (__FILE_59 * (____stream_770), const __fpos_t_287 * (____pos_772));// L803 -extern int (__fsetpos_790) (__FILE_59 * (____stream_782), const __fpos_t_289 * (____pos_784));// L808:L809 -extern void (__clearerr_796) (__FILE_59 * (____stream_794));// L826 -extern int (__feof_800) (__FILE_59 * (____stream_798));// L828 -extern int (__feof_802) (__FILE_59 * (____stream_798));// L828 -extern int (__ferror_806) (__FILE_59 * (____stream_804));// L830 -extern int (__ferror_808) (__FILE_59 * (____stream_804));// L830 -extern void (__clearerr_unlocked_812) (__FILE_59 * (____stream_810));// L835 -extern int (__feof_unlocked_816) (__FILE_59 * (____stream_814));// L836 -extern int (__feof_unlocked_818) (__FILE_59 * (____stream_814));// L836 -extern int (__ferror_unlocked_822) (__FILE_59 * (____stream_820));// L837 -extern int (__ferror_unlocked_824) (__FILE_59 * (____stream_820));// L837 -extern void (__perror_827) (const char * (____s_826));// L846 -extern void (__perror_828) (const char * (____s_826));// L846 -extern int __sys_nerr_829;// L26 -extern int (__fileno_835) (__FILE_59 * (____stream_831));// L858 -extern int (__fileno_833) (__FILE_59 * (____stream_831));// L858 -extern int (__fileno_unlocked_841) (__FILE_59 * (____stream_837));// L863 -extern int (__fileno_unlocked_839) (__FILE_59 * (____stream_837));// L863 -extern __FILE_59 * ((__popen_845) (const char * (____command_843), const char * (____modes_844)));// L872 -extern __FILE_59 * ((__popen_847) (const char * (____command_843), const char * (____modes_844)));// L872 -extern int (__pclose_851) (__FILE_59 * (____stream_849));// L878 -extern char * ((__ctermid_854) (char * (____s_853)));// L884 -extern void (__flockfile_857) (__FILE_59 * (____stream_855));// L912 -extern int (__ftrylockfile_861) (__FILE_59 * (____stream_859));// L916 -extern int (__ftrylockfile_863) (__FILE_59 * (____stream_859));// L916 -extern void (__funlockfile_867) (__FILE_59 * (____stream_865));// L919 -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -extern int (____sprintf_chk_899) (char * __restrict ____s_895, int ____flag_896, __size_t_1 ____slen_897, const char * __restrict ____format_898, ... );// L23:L24 -extern int (____vsprintf_chk_906) (char * __restrict ____s_900, int ____flag_901, __size_t_1 ____slen_902, const char * __restrict ____format_903, ____gnuc_va_list_86 ____ap_904);// L25:L27 -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -extern int (____snprintf_chk_920) (char * __restrict ____s_915, __size_t_1 ____n_916, int ____flag_917, __size_t_1 ____slen_918, const char * __restrict ____format_919, ... );// L52:L54 -extern int (____vsnprintf_chk_928) (char * __restrict ____s_921, __size_t_1 ____n_922, int ____flag_923, __size_t_1 ____slen_924, const char * __restrict ____format_925, ____gnuc_va_list_86 ____ap_926);// L55:L57 -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -extern int (____fprintf_chk_943) (__FILE_59 * __restrict ____stream_939, int ____flag_941, const char * __restrict ____format_942, ... );// L85:L86 -extern int (____printf_chk_947) (int ____flag_945, const char * __restrict ____format_946, ... );// L87 -extern int (____vfprintf_chk_954) (__FILE_59 * __restrict ____stream_948, int ____flag_950, const char * __restrict ____format_951, ____gnuc_va_list_86 ____ap_952);// L88:L89 -extern int (____vprintf_chk_962) (int ____flag_958, const char * __restrict ____format_959, ____gnuc_va_list_86 ____ap_960);// L90:L91 -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -extern int (____dprintf_chk_984) (int ____fd_981, int ____flag_982, const char * __restrict ____fmt_983, ... );// L131:L132 -extern int (____vdprintf_chk_990) (int ____fd_985, int ____flag_986, const char * __restrict ____fmt_987, ____gnuc_va_list_86 ____arg_988);// L133:L135 -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -extern char * ((____fgets_chk_1004) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 -extern char * ((____fgets_chk_1006) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 -extern char * ((____fgets_chk_1008) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 -extern char * ((____fgets_alias_1014) (char * __restrict ____s_1010, int ____n_1011, __FILE_59 * __restrict ____stream_1012));// L243:L245 -extern char * ((____fgets_chk_warn_1021) (char * __restrict ____s_1016, __size_t_1 ____size_1017, int ____n_1018, __FILE_59 * __restrict ____stream_1019));// L246:L250 -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -int (__main_1095) (int __argc_1093, char * (* (__argv_1094))) { -if (__static_condition_default_1096) { +extern int (__fgetc_304) (__FILE_58 * (____stream_303));// L531 +extern int (__getc_306) (__FILE_58 * (____stream_305));// L532 +extern int (__getchar_307) (void );// L538 +extern int (__getc_unlocked_309) (__FILE_58 * (____stream_308));// L550 +extern int (__getchar_unlocked_310) (void );// L551 +extern int (__fgetc_unlocked_312) (__FILE_58 * (____stream_311));// L561 +extern int (__fputc_315) (int ____c_313, __FILE_58 * (____stream_314));// L573 +extern int (__putc_318) (int ____c_316, __FILE_58 * (____stream_317));// L574 +extern int (__putchar_320) (int ____c_319);// L580 +extern int (__fputc_unlocked_323) (int ____c_321, __FILE_58 * (____stream_322));// L594 +extern int (__putc_unlocked_326) (int ____c_324, __FILE_58 * (____stream_325));// L602 +extern int (__putchar_unlocked_328) (int ____c_327);// L603 +extern int (__getw_330) (__FILE_58 * (____stream_329));// L610 +extern int (__putw_333) (int ____w_331, __FILE_58 * (____stream_332));// L613 +extern char * ((__fgets_337) (char * __restrict ____s_334, int ____n_335, __FILE_58 * __restrict ____stream_336));// L622:L623 +extern ____ssize_t_49 (____getdelim_342) (char * (* __restrict ____lineptr_338), __size_t_1 * __restrict ____n_339, int ____delimiter_340, __FILE_58 * __restrict ____stream_341);// L665:L667 +extern ____ssize_t_49 (__getdelim_347) (char * (* __restrict ____lineptr_343), __size_t_1 * __restrict ____n_344, int ____delimiter_345, __FILE_58 * __restrict ____stream_346);// L668:L670 +extern ____ssize_t_49 (__getline_351) (char * (* __restrict ____lineptr_348), __size_t_1 * __restrict ____n_349, __FILE_58 * __restrict ____stream_350);// L678:L680 +extern int (__fputs_354) (const char * __restrict ____s_352, __FILE_58 * __restrict ____stream_353);// L689 +extern int (__puts_356) (const char * (____s_355));// L695 +extern int (__ungetc_359) (int ____c_357, __FILE_58 * (____stream_358));// L702 +extern int (__fseek_379) (__FILE_58 * (____stream_376), long int ____off_377, int ____whence_378);// L749 +extern long int (__ftell_381) (__FILE_58 * (____stream_380));// L754 +extern void (__rewind_383) (__FILE_58 * (____stream_382));// L759 +extern int (__fseeko_387) (__FILE_58 * (____stream_384), ____off_t_23 ____off_385, int ____whence_386);// L773 +extern ____off_t_23 (__ftello_389) (__FILE_58 * (____stream_388));// L778 +extern int (__fgetpos_392) (__FILE_58 * __restrict ____stream_390, __fpos_t_171 * __restrict ____pos_391);// L798 +extern int (__fsetpos_395) (__FILE_58 * (____stream_393), const __fpos_t_171 * (____pos_394));// L803 +extern void (__clearerr_397) (__FILE_58 * (____stream_396));// L826 +extern int (__feof_399) (__FILE_58 * (____stream_398));// L828 +extern int (__ferror_401) (__FILE_58 * (____stream_400));// L830 +extern void (__clearerr_unlocked_403) (__FILE_58 * (____stream_402));// L835 +extern int (__feof_unlocked_405) (__FILE_58 * (____stream_404));// L836 +extern int (__ferror_unlocked_407) (__FILE_58 * (____stream_406));// L837 +extern void (__perror_409) (const char * (____s_408));// L846 +extern int __sys_nerr_410;// L26 + +extern int (__fileno_413) (__FILE_58 * (____stream_412));// L858 +extern int (__fileno_unlocked_415) (__FILE_58 * (____stream_414));// L863 +extern __FILE_58 * ((__popen_418) (const char * (____command_416), const char * (____modes_417)));// L872 +extern int (__pclose_420) (__FILE_58 * (____stream_419));// L878 +extern char * ((__ctermid_422) (char * (____s_421)));// L884 +extern void (__flockfile_424) (__FILE_58 * (____stream_423));// L912 +extern int (__ftrylockfile_426) (__FILE_58 * (____stream_425));// L916 +extern void (__funlockfile_428) (__FILE_58 * (____stream_427));// L919 +int (__main_431) (int __argc_429, char * (* (__argv_430))) { { { @@ -1341,5 +547,4 @@ return 0 ;// L24 } -} diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.desugared.c b/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.desugared.c index fd389c50..651f8a5c 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.desugared.c +++ b/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.desugared.c @@ -7,1814 +7,881 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_1179; -extern const bool __static_condition_default_1188; -extern const bool __static_condition_default_1593; -extern const bool __static_condition_default_1566; -extern const bool __static_condition_default_2027; -extern const bool __static_condition_default_1176; -extern const bool __static_condition_default_1793; -extern const bool __static_condition_default_1139; -extern const bool __static_condition_default_1142; -extern const bool __static_condition_default_1781; -extern const bool __static_condition_default_1181; -extern const bool __static_condition_default_1814; -extern const bool __static_condition_default_1646; -extern const bool __static_condition_default_111; -extern const bool __static_condition_default_87; -extern const bool __static_condition_default_1432; -extern const bool __static_condition_default_1168; -extern const bool __static_condition_default_1994; -extern const bool __static_condition_default_1705; -extern const bool __static_condition_default_1714; -extern const bool __static_condition_default_2257; -extern const bool __static_condition_default_1666; -extern const bool __static_condition_default_1167; -extern const bool __static_condition_default_1859; -extern const bool __static_condition_default_2320; -extern const bool __static_condition_default_1145; -extern const bool __static_condition_default_1178; -extern const bool __static_condition_default_1750; -extern const bool __static_condition_default_1275; -extern const bool __static_condition_default_1816; -extern const bool __static_condition_default_1874; -extern const bool __static_condition_default_1127; -extern const bool __static_condition_default_1703; -extern const bool __static_condition_default_1190; -extern const bool __static_condition_default_1128; -extern const bool __static_condition_default_1137; -extern const bool __static_condition_default_1508; -extern const bool __static_condition_default_1876; -extern const bool __static_condition_default_2271; -extern const bool __static_condition_default_2004; -extern const bool __static_condition_default_2154; -extern const bool __static_condition_default_1744; -extern const bool __static_condition_default_1471; -extern const bool __static_condition_default_1138; -extern const bool __static_condition_default_1852; -extern const bool __static_condition_default_2248; -extern const bool __static_condition_default_2322; -extern const bool __static_condition_default_1455; -extern const bool __static_condition_default_1984; -extern const bool __static_condition_default_1706; -extern const bool __static_condition_default_1804; -extern const bool __static_condition_default_2014; -extern const bool __static_condition_default_1635; -extern const bool __static_condition_default_2120; -extern const bool __static_condition_default_2256; -extern const bool __static_condition_default_1660; -extern const bool __static_condition_default_2300; -extern const bool __static_condition_default_2321; -extern const bool __static_condition_default_1776; -extern const bool __static_condition_default_1828; -extern const bool __static_condition_default_1883; -extern const bool __static_condition_default_1937; -extern const bool __static_condition_default_1117; -extern const bool __static_condition_default_1729; -extern const bool __static_condition_default_2306; -extern const bool __static_condition_default_1113; -extern const bool __static_condition_default_1437; -extern const bool __static_condition_default_1842; -extern const bool __static_condition_default_2000; -extern const bool __static_condition_default_1165; -extern const bool __static_condition_default_1440; -extern const bool __static_condition_default_1788; -extern const bool __static_condition_default_1841; -extern const bool __static_condition_default_1124; -extern const bool __static_condition_default_2303; -extern const bool __static_condition_default_1971; -extern const bool __static_condition_default_2105; -extern const bool __static_condition_default_1586; -extern const bool __static_condition_default_1849; -extern const bool __static_condition_default_1182; -extern const bool __static_condition_default_1824; -extern const bool __static_condition_default_1528; -extern const bool __static_condition_default_1155; -extern const bool __static_condition_default_2249; -extern const bool __static_condition_default_1314; -extern const bool __static_condition_default_1484; -extern const bool __static_condition_default_1926; -extern const bool __static_condition_default_1454; -extern const bool __static_condition_default_1140; -extern const bool __static_condition_default_1170; -extern const bool __static_condition_default_1892; -extern const bool __static_condition_default_1175; -extern const bool __static_condition_default_1473; -extern const bool __static_condition_default_1861; -extern const bool __static_condition_default_1118; -extern const bool __static_condition_default_2242; -extern const bool __static_condition_default_1159; -extern const bool __static_condition_default_1458; -extern const bool __static_condition_default_1622; -extern const bool __static_condition_default_1448; -extern const bool __static_condition_default_1838; -extern const bool __static_condition_default_1126; -extern const bool __static_condition_default_1951; -extern const bool __static_condition_default_2043; -extern const bool __static_condition_default_1610; -extern const bool __static_condition_default_2033; -extern const bool __static_condition_default_1115; -extern const bool __static_condition_default_1712; -extern const bool __static_condition_default_1189; -extern const bool __static_condition_default_1652; -extern const bool __static_condition_default_2063; -extern const bool __static_condition_default_2263; -extern const bool __static_condition_default_1944; -extern const bool __static_condition_default_1135; -extern const bool __static_condition_default_2025; -extern const bool __static_condition_default_1734; -extern const bool __static_condition_default_1439; -extern const bool __static_condition_default_1577; -extern const bool __static_condition_default_1952; -extern const bool __static_condition_default_1970; -extern const bool __static_condition_default_1157; -extern const bool __static_condition_default_1751; -extern const bool __static_condition_default_2074; -extern const bool __static_condition_default_1899; -extern const bool __static_condition_default_1161; -extern const bool __static_condition_default_1475; -extern const bool __static_condition_default_1900; -extern const bool __static_condition_default_1810; -extern const bool __static_condition_default_1854; -extern const bool __static_condition_default_1983; -extern const bool __static_condition_default_1466; -extern const bool __static_condition_default_1629; -extern const bool __static_condition_default_1490; -extern const bool __static_condition_default_2287; -extern const bool __static_condition_default_1384; -extern const bool __static_condition_default_1829; -extern const bool __static_condition_default_1684; -extern const bool __static_condition_default_1435; -extern const bool __static_condition_default_1164; -extern const bool __static_condition_default_1774; -extern const bool __static_condition_default_1848; -extern const bool __static_condition_default_2272; -extern const bool __static_condition_default_55; -extern const bool __static_condition_default_1728; -extern const bool __static_condition_default_2290; -extern const bool __static_condition_default_2312; -extern const bool __static_condition_default_2171; -extern const bool __static_condition_default_1125; -extern const bool __static_condition_default_1730; -extern const bool __static_condition_default_1360; -extern const bool __static_condition_default_1392; -extern const bool __static_condition_default_1584; -extern const bool __static_condition_default_1162; -extern const bool __static_condition_default_1680; -extern const bool __static_condition_default_1979; -extern const bool __static_condition_default_2008; -extern const bool __static_condition_default_2146; -extern const bool __static_condition_default_1141; -extern const bool __static_condition_default_2315; -extern const bool __static_condition_default_1682; -extern const bool __static_condition_default_1837; -extern const bool __static_condition_default_2055; -extern const bool __static_condition_default_1173; -extern const bool __static_condition_default_1624; -extern const bool __static_condition_default_1893; -extern const bool __static_condition_default_1579; -extern const bool __static_condition_default_2314; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_326; +extern const bool __static_condition_default_328; +extern const bool __static_condition_default_1020; +extern const bool __static_condition_default_1025; +extern const bool __static_condition_default_612; +extern const bool __static_condition_default_449; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_446; +extern const bool __static_condition_default_162; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_931; +extern const bool __static_condition_default_338; +extern const bool __static_condition_default_567; +extern const bool __static_condition_default_507; +extern const bool __static_condition_default_969; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_304; +extern const bool __static_condition_default_435; +extern const bool __static_condition_default_999; +extern const bool __static_condition_default_610; +extern const bool __static_condition_default_718; +extern const bool __static_condition_default_1016; +extern const bool __static_condition_default_575; +extern const bool __static_condition_default_500; +extern const bool __static_condition_default_470; +extern const bool __static_condition_default_696; +extern const bool __static_condition_default_648; +extern const bool __static_condition_default_627; +extern const bool __static_condition_default_459; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_588; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_870; +extern const bool __static_condition_default_917; +extern const bool __static_condition_default_794; +extern const bool __static_condition_default_642; +extern const bool __static_condition_default_454; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_688; +extern const bool __static_condition_default_739; +extern const bool __static_condition_default_562; +extern const bool __static_condition_default_820; +extern const bool __static_condition_default_586; +extern const bool __static_condition_default_953; +extern const bool __static_condition_default_605; +extern const bool __static_condition_default_672; +extern const bool __static_condition_default_719; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_1021; +extern const bool __static_condition_default_733; +extern const bool __static_condition_default_254; +extern const bool __static_condition_default_680; +extern const bool __static_condition_default_508; +extern const bool __static_condition_default_626; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_294; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_933; +extern const bool __static_condition_default_226; +extern const bool __static_condition_default_400; +extern const bool __static_condition_default_517; +extern const bool __static_condition_default_992; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_374; +extern const bool __static_condition_default_624; +extern const bool __static_condition_default_225; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_941; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_882; +extern const bool __static_condition_default_457; +extern const bool __static_condition_default_349; +extern const bool __static_condition_default_74; +extern const bool __static_condition_default_528; +extern const bool __static_condition_default_351; +extern const bool __static_condition_default_983; +extern const bool __static_condition_default_421; +extern const bool __static_condition_default_977; +extern const bool __static_condition_default_336; +extern const bool __static_condition_default_429; +extern const bool __static_condition_default_1006; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_161; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_640; +extern const bool __static_condition_default_165; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_720; +extern const bool __static_condition_default_230; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_762; +extern const bool __static_condition_default_784; +extern const bool __static_condition_default_381; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_320; +extern const bool __static_condition_default_729; extern const bool __static_condition_default_118; -extern const bool __static_condition_default_2218; -extern const bool __static_condition_default_1836; -extern const bool __static_condition_default_1536; -extern const bool __static_condition_default_1769; -extern const bool __static_condition_default_2234; -extern const bool __static_condition_default_1160; -extern const bool __static_condition_default_1946; -extern const bool __static_condition_default_2227; -extern const bool __static_condition_default_1799; -extern const bool __static_condition_default_2189; -extern const bool __static_condition_default_1927; -extern const bool __static_condition_default_2135; -extern const bool __static_condition_default_1522; -extern const bool __static_condition_default_2200; -extern const bool __static_condition_default_1524; -extern const bool __static_condition_default_1171; -extern const bool __static_condition_default_1469; -extern const bool __static_condition_default_1948; -extern const bool __static_condition_default_1840; -extern const bool __static_condition_default_1449; -extern const bool __static_condition_default_2010; -extern const bool __static_condition_default_1112; -extern const bool __static_condition_default_1479; -extern const bool __static_condition_default_1623; -extern const bool __static_condition_default_119; -extern const bool __static_condition_default_1389; -extern const bool __static_condition_default_1395; -extern const bool __static_condition_default_2182; -extern const bool __static_condition_default_1755; -extern const bool __static_condition_default_1978; -extern const bool __static_condition_default_1741; -extern const bool __static_condition_default_1143; -extern const bool __static_condition_default_1446; -extern const bool __static_condition_default_1702; -extern const bool __static_condition_default_1825; -extern const bool __static_condition_default_2037; -extern const bool __static_condition_default_1364; -extern const bool __static_condition_default_1740; -extern const bool __static_condition_default_1733; -extern const bool __static_condition_default_1414; -extern const bool __static_condition_default_2307; -extern const bool __static_condition_default_1988; -extern const bool __static_condition_default_1163; -extern const bool __static_condition_default_1877; -extern const bool __static_condition_default_1556; -extern const bool __static_condition_default_2304; -extern const bool __static_condition_default_1958; -extern const bool __static_condition_default_1465; -extern const bool __static_condition_default_1114; -extern const bool __static_condition_default_1267; -extern const bool __static_condition_default_1853; -extern const bool __static_condition_default_1186; -extern const bool __static_condition_default_1461; -extern const bool __static_condition_default_1823; -extern const bool __static_condition_default_1136; -extern const bool __static_condition_default_1972; -extern const bool __static_condition_default_1677; -extern const bool __static_condition_default_2233; -extern const bool __static_condition_default_2196; -extern const bool __static_condition_default_1177; -extern const bool __static_condition_default_1950; -extern const bool __static_condition_default_1187; -extern const bool __static_condition_default_1890; -extern const bool __static_condition_default_1119; -extern const bool __static_condition_default_1564; -extern const bool __static_condition_default_1812; -extern const bool __static_condition_default_2299; -extern const bool __static_condition_default_1720; -extern const bool __static_condition_default_1936; -extern const bool __static_condition_default_1992; -extern const bool __static_condition_default_1688; -extern const bool __static_condition_default_1925; -extern const bool __static_condition_default_2053; -extern const bool __static_condition_default_1764; -extern const bool __static_condition_default_1573; -extern const bool __static_condition_default_1144; -extern const bool __static_condition_default_1942; -extern const bool __static_condition_default_2286; -extern const bool __static_condition_default_1701; -extern const bool __static_condition_default_95; -extern const bool __static_condition_default_1664; -extern const bool __static_condition_default_1169; -extern const bool __static_condition_default_1908; -extern const bool __static_condition_default_1408; -extern const bool __static_condition_default_2016; -extern const bool __static_condition_default_2291; -extern const bool __static_condition_default_2158; -extern const bool __static_condition_default_1608; -extern const bool __static_condition_default_1875; -extern const bool __static_condition_default_2129; -extern const bool __static_condition_default_1694; -extern const bool __static_condition_default_1156; -extern const bool __static_condition_default_1546; -extern const bool __static_condition_default_103; -extern const bool __static_condition_default_1827; -extern const bool __static_condition_default_1679; -extern const bool __static_condition_default_1918; -extern const bool __static_condition_default_2305; -extern const bool __static_condition_default_1122; -extern const bool __static_condition_default_1560; -extern const bool __static_condition_default_2163; -extern const bool __static_condition_default_1129; -extern const bool __static_condition_default_1891; -extern const bool __static_condition_default_1481; -extern const bool __static_condition_default_1943; -extern const bool __static_condition_default_1185; -extern const bool __static_condition_default_1121; -extern const bool __static_condition_default_1158; -extern const bool __static_condition_default_122; -extern const bool __static_condition_default_1130; -extern const bool __static_condition_default_2147; -extern const bool __static_condition_default_1884; -extern const bool __static_condition_default_1727; -extern const bool __static_condition_default_1690; -extern const bool __static_condition_default_2213; -extern const bool __static_condition_default_2219; -extern const bool __static_condition_default_1180; -extern const bool __static_condition_default_2226; -extern const bool __static_condition_default_2264; -extern const bool __static_condition_default_2280; -extern const bool __static_condition_default_2288; -extern const bool __static_condition_default_1166; -extern const bool __static_condition_default_1361; -extern const bool __static_condition_default_1743; -extern const bool __static_condition_default_1959; -extern const bool __static_condition_default_1685; -extern const bool __static_condition_default_2241; -extern const bool __static_condition_default_2302; -extern const bool __static_condition_default_2085; -extern const bool __static_condition_default_2316; -extern const bool __static_condition_default_1401; -extern const bool __static_condition_default_1906; -extern const bool __static_condition_default_2198; -extern const bool __static_condition_default_1599; -extern const bool __static_condition_default_1603; -extern const bool __static_condition_default_1868; -extern const bool __static_condition_default_1914; -extern const bool __static_condition_default_2310; -extern const bool __static_condition_default_1759; -extern const bool __static_condition_default_1502; -extern const bool __static_condition_default_1538; -extern const bool __static_condition_default_1134; -extern const bool __static_condition_default_1732; -extern const bool __static_condition_default_1735; -extern const bool __static_condition_default_1850; -extern const bool __static_condition_default_1426; -extern const bool __static_condition_default_1429; -extern const bool __static_condition_default_1450; -extern const bool __static_condition_default_2069; -extern const bool __static_condition_default_2039; -extern const bool __static_condition_default_1938; -extern const bool __static_condition_default_2308; -extern const bool __static_condition_default_1444; -extern const bool __static_condition_default_1154; -extern const bool __static_condition_default_1558; -extern const bool __static_condition_default_1487; -extern const bool __static_condition_default_2206; -extern const bool __static_condition_default_2059; -extern const bool __static_condition_default_1172; -extern const bool __static_condition_default_2082; -extern const bool __static_condition_default_2169; -extern const bool __static_condition_default_1133; -extern const bool __static_condition_default_2148; -extern const bool __static_condition_default_105; -extern const bool __static_condition_default_2066; -extern const bool __static_condition_default_1441; -extern const bool __static_condition_default_1504; -extern const bool __static_condition_default_2049; -extern const bool __static_condition_default_1183; -extern const bool __static_condition_default_1912; -extern const bool __static_condition_default_1174; -extern const bool __static_condition_default_1378; -extern const bool __static_condition_default_2281; -extern const bool __static_condition_default_1982; -extern const bool __static_condition_default_1244; -extern const bool __static_condition_default_2170; -extern const bool __static_condition_default_1116; -extern const bool __static_condition_default_1998; -extern const bool __static_condition_default_1477; -extern const bool __static_condition_default_1506; -extern const bool __static_condition_default_2098; -extern const bool __static_condition_default_2078; -extern const bool __static_condition_default_1120; -extern const bool __static_condition_default_2311; -extern const bool __static_condition_default_1548; -extern const bool __static_condition_default_1571; -extern const bool __static_condition_default_2309; -extern const bool __static_condition_default_1184; -extern const bool __static_condition_default_1532; -extern const bool __static_condition_default_1960; -extern const bool __static_condition_default_2282; -extern const bool __static_condition_default_1662; -extern const bool __static_condition_default_1707; -extern const bool __static_condition_default_1132; -extern const bool __static_condition_default_2313; -extern const bool __static_condition_default_2031; -extern const bool __static_condition_default_1554; -extern const bool __static_condition_default_2301; -extern const bool __static_condition_default_89; -extern const bool __static_condition_default_1462; -extern const bool __static_condition_default_1980; -extern const bool __static_condition_default_2317; -extern const bool __static_condition_default_1131; -extern const bool __static_condition_default_1420; -extern const bool __static_condition_default_1123; -extern const bool __static_condition_default_1373; -extern const bool __static_condition_default_1947; +extern const bool __static_condition_default_227; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_256; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_332; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_904; +extern const bool __static_condition_default_310; +extern const bool __static_condition_default_482; +extern const bool __static_condition_default_694; +extern const bool __static_condition_default_707; +extern const bool __static_condition_default_300; +extern const bool __static_condition_default_556; +extern const bool __static_condition_default_448; +extern const bool __static_condition_default_716; +extern const bool __static_condition_default_453; +extern const bool __static_condition_default_766; +extern const bool __static_condition_default_232; +extern const bool __static_condition_default_772; +extern const bool __static_condition_default_236; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_495; +extern const bool __static_condition_default_976; +extern const bool __static_condition_default_641; +extern const bool __static_condition_default_639; +extern const bool __static_condition_default_984; +extern const bool __static_condition_default_893; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_898; +extern const bool __static_condition_default_330; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_595; +extern const bool __static_condition_default_954; +extern const bool __static_condition_default_379; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_905; +extern const bool __static_condition_default_343; +extern const bool __static_condition_default_804; +extern const bool __static_condition_default_948; +extern const bool __static_condition_default_706; +extern const bool __static_condition_default_889; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_577; +extern const bool __static_condition_default_308; +extern const bool __static_condition_default_603; +extern const bool __static_condition_default_798; +extern const bool __static_condition_default_370; +extern const bool __static_condition_default_1017; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_501; +extern const bool __static_condition_default_962; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_714; +extern const bool __static_condition_default_774; +extern const bool __static_condition_default_906; +extern const bool __static_condition_default_394; +extern const bool __static_condition_default_833; +extern const bool __static_condition_default_533; +extern const bool __static_condition_default_579; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_695; +extern const bool __static_condition_default_935; +extern const bool __static_condition_default_496; +extern const bool __static_condition_default_474; +extern const bool __static_condition_default_358; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_234; +extern const bool __static_condition_default_540; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_968; +extern const bool __static_condition_default_356; +extern const bool __static_condition_default_743; +extern const bool __static_condition_default_502; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_480; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_655; +extern const bool __static_condition_default_749; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_778; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_855; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_551; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_318; +extern const bool __static_condition_default_790; +extern const bool __static_condition_default_961; +extern const bool __static_condition_default_451; +extern const bool __static_condition_default_881; +extern const bool __static_condition_default_924; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_276; void __static_initializer_default() { -__static_renaming("__int8_t_0", "int8_t"); -__static_renaming("__int16_t_1", "int16_t"); -__static_renaming("__int32_t_2", "int32_t"); -__static_renaming("__int64_t_3", "int64_t"); -__static_renaming("__uint8_t_4", "uint8_t"); -__static_renaming("__uint16_t_5", "uint16_t"); -__static_renaming("__uint32_t_6", "uint32_t"); -__static_renaming("__uint64_t_7", "uint64_t"); -__static_renaming("__int_least8_t_8", "int_least8_t"); -__static_renaming("__int_least16_t_9", "int_least16_t"); -__static_renaming("__int_least32_t_10", "int_least32_t"); -__static_renaming("__int_least64_t_11", "int_least64_t"); -__static_renaming("__uint_least8_t_12", "uint_least8_t"); -__static_renaming("__uint_least16_t_13", "uint_least16_t"); -__static_renaming("__uint_least32_t_14", "uint_least32_t"); -__static_renaming("__uint_least64_t_15", "uint_least64_t"); -__static_renaming("__int_fast8_t_16", "int_fast8_t"); -__static_renaming("__int_fast16_t_17", "int_fast16_t"); -__static_renaming("__int_fast32_t_18", "int_fast32_t"); -__static_renaming("__int_fast64_t_19", "int_fast64_t"); -__static_renaming("__uint_fast8_t_20", "uint_fast8_t"); -__static_renaming("__uint_fast16_t_21", "uint_fast16_t"); -__static_renaming("__uint_fast32_t_22", "uint_fast32_t"); -__static_renaming("__uint_fast64_t_23", "uint_fast64_t"); -__static_renaming("__intptr_t_24", "intptr_t"); -__static_renaming("__uintptr_t_25", "uintptr_t"); -__static_renaming("__intmax_t_26", "intmax_t"); -__static_renaming("__uintmax_t_27", "uintmax_t"); -__static_renaming("____gwchar_t_28", "__gwchar_t"); -__static_renaming("__imaxdiv_t_33", "imaxdiv_t"); -__static_renaming("__imaxdiv_t_34", "imaxdiv_t"); -__static_renaming("__imaxabs_36", "imaxabs"); -__static_renaming("__imaxdiv_39", "imaxdiv"); -__static_renaming("__imaxdiv_40", "imaxdiv"); -__static_renaming("__strtoimax_44", "strtoimax"); -__static_renaming("__strtoumax_48", "strtoumax"); -__static_renaming("__wcstoimax_54", "wcstoimax"); -__static_renaming("__wcstoumax_61", "wcstoumax"); -__static_renaming("____strtol_internal_66", "__strtol_internal"); -__static_renaming("____strtol_internal_67", "__strtol_internal"); -__static_renaming("____strtoul_internal_75", "__strtoul_internal"); -__static_renaming("____strtoul_internal_76", "__strtoul_internal"); -__static_renaming("____wcstol_internal_86", "__wcstol_internal"); -__static_renaming("____wcstol_internal_88", "__wcstol_internal"); -__static_renaming("____wcstoul_internal_102", "__wcstoul_internal"); -__static_renaming("____wcstoul_internal_104", "__wcstoul_internal"); -__static_renaming("___delay_loop_1_113", "_delay_loop_1"); -__static_renaming("___delay_loop_2_115", "_delay_loop_2"); -__static_renaming("___delay_loop_1_117", "_delay_loop_1"); -__static_renaming("___delay_loop_2_121", "_delay_loop_2"); -__static_renaming("__float_t_123", "float_t"); -__static_renaming("__double_t_124", "double_t"); -__static_renaming("__acos_126", "acos"); -__static_renaming("____acos_128", "__acos"); -__static_renaming("__asin_130", "asin"); -__static_renaming("____asin_132", "__asin"); -__static_renaming("__atan_134", "atan"); -__static_renaming("____atan_136", "__atan"); -__static_renaming("__atan2_139", "atan2"); -__static_renaming("____atan2_142", "__atan2"); -__static_renaming("__cos_144", "cos"); -__static_renaming("__cos_145", "cos"); -__static_renaming("____cos_147", "__cos"); -__static_renaming("__sin_149", "sin"); -__static_renaming("__sin_150", "sin"); -__static_renaming("____sin_152", "__sin"); -__static_renaming("__tan_154", "tan"); -__static_renaming("____tan_156", "__tan"); -__static_renaming("__cosh_158", "cosh"); -__static_renaming("____cosh_160", "__cosh"); -__static_renaming("__sinh_162", "sinh"); -__static_renaming("____sinh_164", "__sinh"); -__static_renaming("__tanh_166", "tanh"); -__static_renaming("____tanh_168", "__tanh"); -__static_renaming("__acosh_170", "acosh"); -__static_renaming("____acosh_172", "__acosh"); -__static_renaming("__asinh_174", "asinh"); -__static_renaming("____asinh_176", "__asinh"); -__static_renaming("__atanh_178", "atanh"); -__static_renaming("____atanh_180", "__atanh"); -__static_renaming("__exp_182", "exp"); -__static_renaming("__exp_183", "exp"); -__static_renaming("____exp_185", "__exp"); -__static_renaming("__frexp_188", "frexp"); -__static_renaming("____frexp_191", "__frexp"); -__static_renaming("__ldexp_194", "ldexp"); -__static_renaming("____ldexp_197", "__ldexp"); -__static_renaming("__log_199", "log"); -__static_renaming("__log_200", "log"); -__static_renaming("____log_202", "__log"); -__static_renaming("__log10_204", "log10"); -__static_renaming("____log10_206", "__log10"); -__static_renaming("__modf_209", "modf"); -__static_renaming("____modf_212", "__modf"); -__static_renaming("__expm1_214", "expm1"); -__static_renaming("____expm1_216", "__expm1"); -__static_renaming("__log1p_218", "log1p"); -__static_renaming("____log1p_220", "__log1p"); -__static_renaming("__logb_222", "logb"); -__static_renaming("____logb_224", "__logb"); -__static_renaming("__exp2_226", "exp2"); -__static_renaming("____exp2_228", "__exp2"); -__static_renaming("__log2_230", "log2"); -__static_renaming("____log2_232", "__log2"); -__static_renaming("__pow_235", "pow"); -__static_renaming("__pow_236", "pow"); -__static_renaming("____pow_239", "__pow"); -__static_renaming("__sqrt_241", "sqrt"); -__static_renaming("____sqrt_243", "__sqrt"); -__static_renaming("__hypot_246", "hypot"); -__static_renaming("____hypot_249", "__hypot"); -__static_renaming("__cbrt_251", "cbrt"); -__static_renaming("____cbrt_253", "__cbrt"); -__static_renaming("__ceil_255", "ceil"); -__static_renaming("____ceil_257", "__ceil"); -__static_renaming("__fabs_259", "fabs"); -__static_renaming("____fabs_261", "__fabs"); -__static_renaming("__floor_263", "floor"); -__static_renaming("____floor_265", "__floor"); -__static_renaming("__fmod_268", "fmod"); -__static_renaming("____fmod_271", "__fmod"); -__static_renaming("____isinf_273", "__isinf"); -__static_renaming("____finite_275", "__finite"); -__static_renaming("__isinf_277", "isinf"); -__static_renaming("__finite_279", "finite"); -__static_renaming("__drem_282", "drem"); -__static_renaming("____drem_285", "__drem"); -__static_renaming("__significand_287", "significand"); -__static_renaming("____significand_289", "__significand"); -__static_renaming("__copysign_292", "copysign"); -__static_renaming("__copysign_293", "copysign"); -__static_renaming("____copysign_296", "__copysign"); -__static_renaming("__nan_298", "nan"); -__static_renaming("____nan_300", "__nan"); -__static_renaming("____isnan_302", "__isnan"); -__static_renaming("__isnan_304", "isnan"); -__static_renaming("__j0_305", "j0"); -__static_renaming("____j0_306", "__j0"); -__static_renaming("__j1_307", "j1"); -__static_renaming("____j1_308", "__j1"); -__static_renaming("__jn_309", "jn"); -__static_renaming("____jn_310", "__jn"); -__static_renaming("__y0_311", "y0"); -__static_renaming("____y0_312", "__y0"); -__static_renaming("__y1_313", "y1"); -__static_renaming("____y1_314", "__y1"); -__static_renaming("__yn_315", "yn"); -__static_renaming("____yn_316", "__yn"); -__static_renaming("__erf_317", "erf"); -__static_renaming("__erf_318", "erf"); -__static_renaming("____erf_319", "__erf"); -__static_renaming("__erfc_320", "erfc"); -__static_renaming("____erfc_321", "__erfc"); -__static_renaming("__lgamma_322", "lgamma"); -__static_renaming("____lgamma_323", "__lgamma"); -__static_renaming("__tgamma_324", "tgamma"); -__static_renaming("____tgamma_325", "__tgamma"); -__static_renaming("__gamma_326", "gamma"); -__static_renaming("____gamma_327", "__gamma"); -__static_renaming("__lgamma_r_329", "lgamma_r"); -__static_renaming("____lgamma_r_331", "__lgamma_r"); -__static_renaming("__rint_333", "rint"); -__static_renaming("__rint_334", "rint"); -__static_renaming("____rint_336", "__rint"); -__static_renaming("__nextafter_339", "nextafter"); -__static_renaming("____nextafter_342", "__nextafter"); -__static_renaming("__nexttoward_345", "nexttoward"); -__static_renaming("____nexttoward_348", "__nexttoward"); -__static_renaming("__remainder_351", "remainder"); -__static_renaming("____remainder_354", "__remainder"); -__static_renaming("__scalbn_357", "scalbn"); -__static_renaming("____scalbn_360", "__scalbn"); -__static_renaming("__ilogb_362", "ilogb"); -__static_renaming("____ilogb_364", "__ilogb"); -__static_renaming("__scalbln_367", "scalbln"); -__static_renaming("____scalbln_370", "__scalbln"); -__static_renaming("__nearbyint_372", "nearbyint"); -__static_renaming("____nearbyint_374", "__nearbyint"); -__static_renaming("__round_376", "round"); -__static_renaming("____round_378", "__round"); -__static_renaming("__trunc_380", "trunc"); -__static_renaming("____trunc_382", "__trunc"); -__static_renaming("__remquo_386", "remquo"); -__static_renaming("____remquo_390", "__remquo"); -__static_renaming("__lrint_392", "lrint"); -__static_renaming("____lrint_394", "__lrint"); -__static_renaming("__llrint_396", "llrint"); -__static_renaming("____llrint_398", "__llrint"); -__static_renaming("__lround_400", "lround"); -__static_renaming("____lround_402", "__lround"); -__static_renaming("__llround_404", "llround"); -__static_renaming("____llround_406", "__llround"); -__static_renaming("__fdim_409", "fdim"); -__static_renaming("____fdim_412", "__fdim"); -__static_renaming("__fmax_415", "fmax"); -__static_renaming("____fmax_418", "__fmax"); -__static_renaming("__fmin_421", "fmin"); -__static_renaming("____fmin_424", "__fmin"); -__static_renaming("____fpclassify_426", "__fpclassify"); -__static_renaming("____signbit_428", "__signbit"); -__static_renaming("__fma_432", "fma"); -__static_renaming("____fma_436", "__fma"); -__static_renaming("__scalb_439", "scalb"); -__static_renaming("____scalb_442", "__scalb"); -__static_renaming("__acosf_444", "acosf"); -__static_renaming("__acosf_445", "acosf"); -__static_renaming("____acosf_447", "__acosf"); -__static_renaming("__asinf_449", "asinf"); -__static_renaming("____asinf_451", "__asinf"); -__static_renaming("__atanf_453", "atanf"); -__static_renaming("____atanf_455", "__atanf"); -__static_renaming("__atan2f_458", "atan2f"); -__static_renaming("____atan2f_461", "__atan2f"); -__static_renaming("__cosf_463", "cosf"); -__static_renaming("__cosf_464", "cosf"); -__static_renaming("____cosf_466", "__cosf"); -__static_renaming("__sinf_468", "sinf"); -__static_renaming("__sinf_469", "sinf"); -__static_renaming("____sinf_471", "__sinf"); -__static_renaming("__tanf_473", "tanf"); -__static_renaming("____tanf_475", "__tanf"); -__static_renaming("__coshf_477", "coshf"); -__static_renaming("____coshf_479", "__coshf"); -__static_renaming("__sinhf_481", "sinhf"); -__static_renaming("____sinhf_483", "__sinhf"); -__static_renaming("__tanhf_485", "tanhf"); -__static_renaming("____tanhf_487", "__tanhf"); -__static_renaming("__acoshf_489", "acoshf"); -__static_renaming("____acoshf_491", "__acoshf"); -__static_renaming("__asinhf_493", "asinhf"); -__static_renaming("____asinhf_495", "__asinhf"); -__static_renaming("__atanhf_497", "atanhf"); -__static_renaming("____atanhf_499", "__atanhf"); -__static_renaming("__expf_501", "expf"); -__static_renaming("__expf_502", "expf"); -__static_renaming("____expf_504", "__expf"); -__static_renaming("__frexpf_507", "frexpf"); -__static_renaming("____frexpf_510", "__frexpf"); -__static_renaming("__ldexpf_513", "ldexpf"); -__static_renaming("____ldexpf_516", "__ldexpf"); -__static_renaming("__logf_518", "logf"); -__static_renaming("__logf_519", "logf"); -__static_renaming("____logf_521", "__logf"); -__static_renaming("__log10f_523", "log10f"); -__static_renaming("____log10f_525", "__log10f"); -__static_renaming("__modff_528", "modff"); -__static_renaming("____modff_531", "__modff"); -__static_renaming("__expm1f_533", "expm1f"); -__static_renaming("____expm1f_535", "__expm1f"); -__static_renaming("__log1pf_537", "log1pf"); -__static_renaming("____log1pf_539", "__log1pf"); -__static_renaming("__logbf_541", "logbf"); -__static_renaming("____logbf_543", "__logbf"); -__static_renaming("__exp2f_545", "exp2f"); -__static_renaming("____exp2f_547", "__exp2f"); -__static_renaming("__log2f_549", "log2f"); -__static_renaming("____log2f_551", "__log2f"); -__static_renaming("__powf_554", "powf"); -__static_renaming("__powf_555", "powf"); -__static_renaming("____powf_558", "__powf"); -__static_renaming("__sqrtf_560", "sqrtf"); -__static_renaming("____sqrtf_562", "__sqrtf"); -__static_renaming("__hypotf_565", "hypotf"); -__static_renaming("____hypotf_568", "__hypotf"); -__static_renaming("__cbrtf_570", "cbrtf"); -__static_renaming("____cbrtf_572", "__cbrtf"); -__static_renaming("__ceilf_574", "ceilf"); -__static_renaming("____ceilf_576", "__ceilf"); -__static_renaming("__fabsf_578", "fabsf"); -__static_renaming("____fabsf_580", "__fabsf"); -__static_renaming("__floorf_582", "floorf"); -__static_renaming("____floorf_584", "__floorf"); -__static_renaming("__fmodf_587", "fmodf"); -__static_renaming("____fmodf_590", "__fmodf"); -__static_renaming("____isinff_592", "__isinff"); -__static_renaming("____finitef_594", "__finitef"); -__static_renaming("__isinff_596", "isinff"); -__static_renaming("__finitef_598", "finitef"); -__static_renaming("__dremf_601", "dremf"); -__static_renaming("____dremf_604", "__dremf"); -__static_renaming("__significandf_606", "significandf"); -__static_renaming("____significandf_608", "__significandf"); -__static_renaming("__copysignf_611", "copysignf"); -__static_renaming("__copysignf_612", "copysignf"); -__static_renaming("____copysignf_615", "__copysignf"); -__static_renaming("__nanf_617", "nanf"); -__static_renaming("____nanf_619", "__nanf"); -__static_renaming("____isnanf_621", "__isnanf"); -__static_renaming("__isnanf_623", "isnanf"); -__static_renaming("__j0f_624", "j0f"); -__static_renaming("____j0f_625", "__j0f"); -__static_renaming("__j1f_626", "j1f"); -__static_renaming("____j1f_627", "__j1f"); -__static_renaming("__jnf_628", "jnf"); -__static_renaming("____jnf_629", "__jnf"); -__static_renaming("__y0f_630", "y0f"); -__static_renaming("____y0f_631", "__y0f"); -__static_renaming("__y1f_632", "y1f"); -__static_renaming("____y1f_633", "__y1f"); -__static_renaming("__ynf_634", "ynf"); -__static_renaming("____ynf_635", "__ynf"); -__static_renaming("__erff_636", "erff"); -__static_renaming("__erff_637", "erff"); -__static_renaming("____erff_638", "__erff"); -__static_renaming("__erfcf_639", "erfcf"); -__static_renaming("____erfcf_640", "__erfcf"); -__static_renaming("__lgammaf_641", "lgammaf"); -__static_renaming("____lgammaf_642", "__lgammaf"); -__static_renaming("__tgammaf_643", "tgammaf"); -__static_renaming("____tgammaf_644", "__tgammaf"); -__static_renaming("__gammaf_645", "gammaf"); -__static_renaming("____gammaf_646", "__gammaf"); -__static_renaming("__lgammaf_r_648", "lgammaf_r"); -__static_renaming("____lgammaf_r_650", "__lgammaf_r"); -__static_renaming("__rintf_652", "rintf"); -__static_renaming("__rintf_653", "rintf"); -__static_renaming("____rintf_655", "__rintf"); -__static_renaming("__nextafterf_658", "nextafterf"); -__static_renaming("____nextafterf_661", "__nextafterf"); -__static_renaming("__nexttowardf_664", "nexttowardf"); -__static_renaming("____nexttowardf_667", "__nexttowardf"); -__static_renaming("__remainderf_670", "remainderf"); -__static_renaming("____remainderf_673", "__remainderf"); -__static_renaming("__scalbnf_676", "scalbnf"); -__static_renaming("____scalbnf_679", "__scalbnf"); -__static_renaming("__ilogbf_681", "ilogbf"); -__static_renaming("____ilogbf_683", "__ilogbf"); -__static_renaming("__scalblnf_686", "scalblnf"); -__static_renaming("____scalblnf_689", "__scalblnf"); -__static_renaming("__nearbyintf_691", "nearbyintf"); -__static_renaming("____nearbyintf_693", "__nearbyintf"); -__static_renaming("__roundf_695", "roundf"); -__static_renaming("____roundf_697", "__roundf"); -__static_renaming("__truncf_699", "truncf"); -__static_renaming("____truncf_701", "__truncf"); -__static_renaming("__remquof_705", "remquof"); -__static_renaming("____remquof_709", "__remquof"); -__static_renaming("__lrintf_711", "lrintf"); -__static_renaming("____lrintf_713", "__lrintf"); -__static_renaming("__llrintf_715", "llrintf"); -__static_renaming("____llrintf_717", "__llrintf"); -__static_renaming("__lroundf_719", "lroundf"); -__static_renaming("____lroundf_721", "__lroundf"); -__static_renaming("__llroundf_723", "llroundf"); -__static_renaming("____llroundf_725", "__llroundf"); -__static_renaming("__fdimf_728", "fdimf"); -__static_renaming("____fdimf_731", "__fdimf"); -__static_renaming("__fmaxf_734", "fmaxf"); -__static_renaming("____fmaxf_737", "__fmaxf"); -__static_renaming("__fminf_740", "fminf"); -__static_renaming("____fminf_743", "__fminf"); -__static_renaming("____fpclassifyf_745", "__fpclassifyf"); -__static_renaming("____signbitf_747", "__signbitf"); -__static_renaming("__fmaf_751", "fmaf"); -__static_renaming("____fmaf_755", "__fmaf"); -__static_renaming("__scalbf_758", "scalbf"); -__static_renaming("____scalbf_761", "__scalbf"); -__static_renaming("__acosl_763", "acosl"); -__static_renaming("__acosl_764", "acosl"); -__static_renaming("____acosl_766", "__acosl"); -__static_renaming("__asinl_768", "asinl"); -__static_renaming("____asinl_770", "__asinl"); -__static_renaming("__atanl_772", "atanl"); -__static_renaming("____atanl_774", "__atanl"); -__static_renaming("__atan2l_777", "atan2l"); -__static_renaming("____atan2l_780", "__atan2l"); -__static_renaming("__cosl_782", "cosl"); -__static_renaming("____cosl_784", "__cosl"); -__static_renaming("__sinl_786", "sinl"); -__static_renaming("____sinl_788", "__sinl"); -__static_renaming("__tanl_790", "tanl"); -__static_renaming("____tanl_792", "__tanl"); -__static_renaming("__coshl_794", "coshl"); -__static_renaming("____coshl_796", "__coshl"); -__static_renaming("__sinhl_798", "sinhl"); -__static_renaming("____sinhl_800", "__sinhl"); -__static_renaming("__tanhl_802", "tanhl"); -__static_renaming("____tanhl_804", "__tanhl"); -__static_renaming("__acoshl_806", "acoshl"); -__static_renaming("____acoshl_808", "__acoshl"); -__static_renaming("__asinhl_810", "asinhl"); -__static_renaming("____asinhl_812", "__asinhl"); -__static_renaming("__atanhl_814", "atanhl"); -__static_renaming("____atanhl_816", "__atanhl"); -__static_renaming("__expl_818", "expl"); -__static_renaming("____expl_820", "__expl"); -__static_renaming("__frexpl_823", "frexpl"); -__static_renaming("____frexpl_826", "__frexpl"); -__static_renaming("__ldexpl_829", "ldexpl"); -__static_renaming("____ldexpl_832", "__ldexpl"); -__static_renaming("__logl_834", "logl"); -__static_renaming("____logl_836", "__logl"); -__static_renaming("__log10l_838", "log10l"); -__static_renaming("____log10l_840", "__log10l"); -__static_renaming("__modfl_843", "modfl"); -__static_renaming("____modfl_846", "__modfl"); -__static_renaming("__expm1l_848", "expm1l"); -__static_renaming("____expm1l_850", "__expm1l"); -__static_renaming("__log1pl_852", "log1pl"); -__static_renaming("____log1pl_854", "__log1pl"); -__static_renaming("__logbl_856", "logbl"); -__static_renaming("____logbl_858", "__logbl"); -__static_renaming("__exp2l_860", "exp2l"); -__static_renaming("____exp2l_862", "__exp2l"); -__static_renaming("__log2l_864", "log2l"); -__static_renaming("____log2l_866", "__log2l"); -__static_renaming("__powl_869", "powl"); -__static_renaming("____powl_872", "__powl"); -__static_renaming("__sqrtl_874", "sqrtl"); -__static_renaming("____sqrtl_876", "__sqrtl"); -__static_renaming("__hypotl_879", "hypotl"); -__static_renaming("____hypotl_882", "__hypotl"); -__static_renaming("__cbrtl_884", "cbrtl"); -__static_renaming("____cbrtl_886", "__cbrtl"); -__static_renaming("__ceill_888", "ceill"); -__static_renaming("____ceill_890", "__ceill"); -__static_renaming("__fabsl_892", "fabsl"); -__static_renaming("____fabsl_894", "__fabsl"); -__static_renaming("__floorl_896", "floorl"); -__static_renaming("____floorl_898", "__floorl"); -__static_renaming("__fmodl_901", "fmodl"); -__static_renaming("____fmodl_904", "__fmodl"); -__static_renaming("____isinfl_906", "__isinfl"); -__static_renaming("____finitel_908", "__finitel"); -__static_renaming("__isinfl_910", "isinfl"); -__static_renaming("__finitel_912", "finitel"); -__static_renaming("__dreml_915", "dreml"); -__static_renaming("____dreml_918", "__dreml"); -__static_renaming("__significandl_920", "significandl"); -__static_renaming("____significandl_922", "__significandl"); -__static_renaming("__copysignl_925", "copysignl"); -__static_renaming("__copysignl_926", "copysignl"); -__static_renaming("____copysignl_929", "__copysignl"); -__static_renaming("__nanl_931", "nanl"); -__static_renaming("____nanl_933", "__nanl"); -__static_renaming("____isnanl_935", "__isnanl"); -__static_renaming("__isnanl_937", "isnanl"); -__static_renaming("__j0l_938", "j0l"); -__static_renaming("____j0l_939", "__j0l"); -__static_renaming("__j1l_940", "j1l"); -__static_renaming("____j1l_941", "__j1l"); -__static_renaming("__jnl_942", "jnl"); -__static_renaming("____jnl_943", "__jnl"); -__static_renaming("__y0l_944", "y0l"); -__static_renaming("____y0l_945", "__y0l"); -__static_renaming("__y1l_946", "y1l"); -__static_renaming("____y1l_947", "__y1l"); -__static_renaming("__ynl_948", "ynl"); -__static_renaming("____ynl_949", "__ynl"); -__static_renaming("__erfl_950", "erfl"); -__static_renaming("__erfl_951", "erfl"); -__static_renaming("____erfl_952", "__erfl"); -__static_renaming("__erfcl_953", "erfcl"); -__static_renaming("____erfcl_954", "__erfcl"); -__static_renaming("__lgammal_955", "lgammal"); -__static_renaming("____lgammal_956", "__lgammal"); -__static_renaming("__tgammal_957", "tgammal"); -__static_renaming("____tgammal_958", "__tgammal"); -__static_renaming("__gammal_959", "gammal"); -__static_renaming("____gammal_960", "__gammal"); -__static_renaming("__lgammal_r_962", "lgammal_r"); -__static_renaming("____lgammal_r_964", "__lgammal_r"); -__static_renaming("__rintl_966", "rintl"); -__static_renaming("__rintl_967", "rintl"); -__static_renaming("____rintl_969", "__rintl"); -__static_renaming("__nextafterl_972", "nextafterl"); -__static_renaming("____nextafterl_975", "__nextafterl"); -__static_renaming("__nexttowardl_978", "nexttowardl"); -__static_renaming("____nexttowardl_981", "__nexttowardl"); -__static_renaming("__remainderl_984", "remainderl"); -__static_renaming("____remainderl_987", "__remainderl"); -__static_renaming("__scalbnl_990", "scalbnl"); -__static_renaming("____scalbnl_993", "__scalbnl"); -__static_renaming("__ilogbl_995", "ilogbl"); -__static_renaming("____ilogbl_997", "__ilogbl"); -__static_renaming("__scalblnl_1000", "scalblnl"); -__static_renaming("____scalblnl_1003", "__scalblnl"); -__static_renaming("__nearbyintl_1005", "nearbyintl"); -__static_renaming("____nearbyintl_1007", "__nearbyintl"); -__static_renaming("__roundl_1009", "roundl"); -__static_renaming("____roundl_1011", "__roundl"); -__static_renaming("__truncl_1013", "truncl"); -__static_renaming("____truncl_1015", "__truncl"); -__static_renaming("__remquol_1019", "remquol"); -__static_renaming("____remquol_1023", "__remquol"); -__static_renaming("__lrintl_1025", "lrintl"); -__static_renaming("____lrintl_1027", "__lrintl"); -__static_renaming("__llrintl_1029", "llrintl"); -__static_renaming("____llrintl_1031", "__llrintl"); -__static_renaming("__lroundl_1033", "lroundl"); -__static_renaming("____lroundl_1035", "__lroundl"); -__static_renaming("__llroundl_1037", "llroundl"); -__static_renaming("____llroundl_1039", "__llroundl"); -__static_renaming("__fdiml_1042", "fdiml"); -__static_renaming("____fdiml_1045", "__fdiml"); -__static_renaming("__fmaxl_1048", "fmaxl"); -__static_renaming("____fmaxl_1051", "__fmaxl"); -__static_renaming("__fminl_1054", "fminl"); -__static_renaming("____fminl_1057", "__fminl"); -__static_renaming("____fpclassifyl_1059", "__fpclassifyl"); -__static_renaming("____signbitl_1061", "__signbitl"); -__static_renaming("__fmal_1065", "fmal"); -__static_renaming("____fmal_1069", "__fmal"); -__static_renaming("__scalbl_1072", "scalbl"); -__static_renaming("____scalbl_1075", "__scalbl"); -__static_renaming("__signgam_1076", "signgam"); -__static_renaming("___LIB_VERSION_TYPE_1092", "_LIB_VERSION_TYPE"); -__static_renaming("___LIB_VERSION_1093", "_LIB_VERSION"); -__static_renaming("__matherr_1101", "matherr"); -__static_renaming("___delay_us_1103", "_delay_us"); -__static_renaming("___delay_ms_1105", "_delay_ms"); -__static_renaming("____tmp_1107", "__tmp"); -__static_renaming("____ticks_dc_1108", "__ticks_dc"); -__static_renaming("____builtin_avr_delay_cycles_1109", "__builtin_avr_delay_cycles"); -__static_renaming("____ticks_1110", "__ticks"); -__static_renaming("___delay_ms_1111", "_delay_ms"); -__static_renaming("____tmp_1147", "__tmp"); -__static_renaming("____ticks_dc_1148", "__ticks_dc"); -__static_renaming("____builtin_avr_delay_cycles_1149", "__builtin_avr_delay_cycles"); -__static_renaming("____ticks_1150", "__ticks"); -__static_renaming("____tmp2_1151", "__tmp2"); -__static_renaming("____ticks_1152", "__ticks"); -__static_renaming("___delay_us_1153", "_delay_us"); -__static_renaming("__ptrdiff_t_1191", "ptrdiff_t"); -__static_renaming("__size_t_1192", "size_t"); -__static_renaming("____u_char_1193", "__u_char"); -__static_renaming("____u_short_1194", "__u_short"); -__static_renaming("____u_int_1195", "__u_int"); -__static_renaming("____u_long_1196", "__u_long"); -__static_renaming("____int8_t_1197", "__int8_t"); -__static_renaming("____uint8_t_1198", "__uint8_t"); -__static_renaming("____int16_t_1199", "__int16_t"); -__static_renaming("____uint16_t_1200", "__uint16_t"); -__static_renaming("____int32_t_1201", "__int32_t"); -__static_renaming("____uint32_t_1202", "__uint32_t"); -__static_renaming("____int64_t_1203", "__int64_t"); -__static_renaming("____uint64_t_1204", "__uint64_t"); -__static_renaming("____quad_t_1205", "__quad_t"); -__static_renaming("____u_quad_t_1206", "__u_quad_t"); -__static_renaming("____dev_t_1207", "__dev_t"); -__static_renaming("____uid_t_1208", "__uid_t"); -__static_renaming("____gid_t_1209", "__gid_t"); -__static_renaming("____ino_t_1210", "__ino_t"); -__static_renaming("____ino64_t_1211", "__ino64_t"); -__static_renaming("____mode_t_1212", "__mode_t"); -__static_renaming("____nlink_t_1213", "__nlink_t"); -__static_renaming("____off_t_1214", "__off_t"); -__static_renaming("____off64_t_1215", "__off64_t"); -__static_renaming("____pid_t_1216", "__pid_t"); -__static_renaming("____fsid_t_1220", "__fsid_t"); -__static_renaming("____clock_t_1221", "__clock_t"); -__static_renaming("____rlim_t_1222", "__rlim_t"); -__static_renaming("____rlim64_t_1223", "__rlim64_t"); -__static_renaming("____id_t_1224", "__id_t"); -__static_renaming("____time_t_1225", "__time_t"); -__static_renaming("____useconds_t_1226", "__useconds_t"); -__static_renaming("____suseconds_t_1227", "__suseconds_t"); -__static_renaming("____daddr_t_1228", "__daddr_t"); -__static_renaming("____key_t_1229", "__key_t"); -__static_renaming("____clockid_t_1230", "__clockid_t"); -__static_renaming("____timer_t_1231", "__timer_t"); -__static_renaming("____blksize_t_1232", "__blksize_t"); -__static_renaming("____blkcnt_t_1233", "__blkcnt_t"); -__static_renaming("____blkcnt64_t_1234", "__blkcnt64_t"); -__static_renaming("____fsblkcnt_t_1235", "__fsblkcnt_t"); -__static_renaming("____fsblkcnt64_t_1236", "__fsblkcnt64_t"); -__static_renaming("____fsfilcnt_t_1237", "__fsfilcnt_t"); -__static_renaming("____fsfilcnt64_t_1238", "__fsfilcnt64_t"); -__static_renaming("____fsword_t_1239", "__fsword_t"); -__static_renaming("____ssize_t_1240", "__ssize_t"); -__static_renaming("____syscall_slong_t_1241", "__syscall_slong_t"); -__static_renaming("____syscall_ulong_t_1242", "__syscall_ulong_t"); -__static_renaming("____loff_t_1243", "__loff_t"); -__static_renaming("____qaddr_t_1245", "__qaddr_t"); -__static_renaming("____caddr_t_1246", "__caddr_t"); -__static_renaming("____intptr_t_1247", "__intptr_t"); -__static_renaming("____socklen_t_1248", "__socklen_t"); -__static_renaming("__FILE_1250", "FILE"); -__static_renaming("____FILE_1251", "__FILE"); -__static_renaming("____mbstate_t_1260", "__mbstate_t"); -__static_renaming("___G_fpos_t_1268", "_G_fpos_t"); -__static_renaming("___G_fpos64_t_1276", "_G_fpos64_t"); -__static_renaming("____gnuc_va_list_1277", "__gnuc_va_list"); -__static_renaming("___IO_lock_t_1279", "_IO_lock_t"); -__static_renaming("___IO_FILE_1362", "_IO_FILE"); -__static_renaming("___IO_FILE_1363", "_IO_FILE"); -__static_renaming("___IO_2_1_stdin__1366", "_IO_2_1_stdin_"); -__static_renaming("___IO_2_1_stdout__1367", "_IO_2_1_stdout_"); -__static_renaming("___IO_2_1_stderr__1368", "_IO_2_1_stderr_"); -__static_renaming("____io_read_fn_1372", "__io_read_fn"); -__static_renaming("____io_write_fn_1377", "__io_write_fn"); -__static_renaming("____io_seek_fn_1383", "__io_seek_fn"); -__static_renaming("____io_close_fn_1386", "__io_close_fn"); -__static_renaming("____underflow_1387", "__underflow"); -__static_renaming("____underflow_1388", "__underflow"); -__static_renaming("____uflow_1390", "__uflow"); -__static_renaming("____uflow_1391", "__uflow"); -__static_renaming("____overflow_1393", "__overflow"); -__static_renaming("____overflow_1394", "__overflow"); -__static_renaming("___IO_getc_1399", "_IO_getc"); -__static_renaming("___IO_getc_1400", "_IO_getc"); -__static_renaming("___IO_putc_1406", "_IO_putc"); -__static_renaming("___IO_putc_1407", "_IO_putc"); -__static_renaming("___IO_feof_1412", "_IO_feof"); -__static_renaming("___IO_feof_1413", "_IO_feof"); -__static_renaming("___IO_ferror_1418", "_IO_ferror"); -__static_renaming("___IO_ferror_1419", "_IO_ferror"); -__static_renaming("___IO_peekc_locked_1424", "_IO_peekc_locked"); -__static_renaming("___IO_peekc_locked_1425", "_IO_peekc_locked"); -__static_renaming("___IO_flockfile_1427", "_IO_flockfile"); -__static_renaming("___IO_flockfile_1428", "_IO_flockfile"); -__static_renaming("___IO_funlockfile_1430", "_IO_funlockfile"); -__static_renaming("___IO_funlockfile_1431", "_IO_funlockfile"); -__static_renaming("___IO_ftrylockfile_1433", "_IO_ftrylockfile"); -__static_renaming("___IO_ftrylockfile_1434", "_IO_ftrylockfile"); -__static_renaming("___IO_vfscanf_1436", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_1438", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_1442", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_1443", "_IO_vfscanf"); -__static_renaming("___IO_vfprintf_1445", "_IO_vfprintf"); -__static_renaming("___IO_vfprintf_1447", "_IO_vfprintf"); -__static_renaming("___IO_vfprintf_1451", "_IO_vfprintf"); -__static_renaming("___IO_padn_1452", "_IO_padn"); -__static_renaming("___IO_padn_1453", "_IO_padn"); -__static_renaming("___IO_sgetn_1456", "_IO_sgetn"); -__static_renaming("___IO_sgetn_1457", "_IO_sgetn"); -__static_renaming("___IO_seekoff_1459", "_IO_seekoff"); -__static_renaming("___IO_seekoff_1460", "_IO_seekoff"); -__static_renaming("___IO_seekpos_1463", "_IO_seekpos"); -__static_renaming("___IO_seekpos_1464", "_IO_seekpos"); -__static_renaming("___IO_free_backup_area_1467", "_IO_free_backup_area"); -__static_renaming("___IO_free_backup_area_1468", "_IO_free_backup_area"); -__static_renaming("__va_list_1470", "va_list"); -__static_renaming("__off_t_1472", "off_t"); -__static_renaming("__off_t_1474", "off_t"); -__static_renaming("__ssize_t_1476", "ssize_t"); -__static_renaming("__fpos_t_1478", "fpos_t"); -__static_renaming("__fpos_t_1480", "fpos_t"); -__static_renaming("__stdin_1482", "stdin"); -__static_renaming("__stdin_1483", "stdin"); -__static_renaming("__stdout_1485", "stdout"); -__static_renaming("__stdout_1486", "stdout"); -__static_renaming("__stderr_1488", "stderr"); -__static_renaming("__stderr_1489", "stderr"); -__static_renaming("__remove_1492", "remove"); -__static_renaming("__rename_1495", "rename"); -__static_renaming("__renameat_1500", "renameat"); -__static_renaming("__tmpfile_1501", "tmpfile"); -__static_renaming("__tmpfile_1503", "tmpfile"); -__static_renaming("__tmpfile_1505", "tmpfile"); -__static_renaming("__tmpfile_1507", "tmpfile"); -__static_renaming("__tmpnam_1510", "tmpnam"); -__static_renaming("__tmpnam_1511", "tmpnam"); -__static_renaming("__tmpnam_r_1513", "tmpnam_r"); -__static_renaming("__tmpnam_r_1514", "tmpnam_r"); -__static_renaming("__tempnam_1517", "tempnam"); -__static_renaming("__tempnam_1518", "tempnam"); -__static_renaming("__fclose_1521", "fclose"); -__static_renaming("__fclose_1523", "fclose"); -__static_renaming("__fflush_1527", "fflush"); -__static_renaming("__fflush_unlocked_1531", "fflush_unlocked"); -__static_renaming("__fopen_1535", "fopen"); -__static_renaming("__fopen_1537", "fopen"); -__static_renaming("__fopen_1545", "fopen"); -__static_renaming("__fopen_1547", "fopen"); -__static_renaming("__freopen_1553", "freopen"); -__static_renaming("__freopen_1555", "freopen"); -__static_renaming("__freopen_1557", "freopen"); -__static_renaming("__freopen_1559", "freopen"); -__static_renaming("__fdopen_1563", "fdopen"); -__static_renaming("__fdopen_1565", "fdopen"); -__static_renaming("__fmemopen_1570", "fmemopen"); -__static_renaming("__fmemopen_1572", "fmemopen"); -__static_renaming("__open_memstream_1576", "open_memstream"); -__static_renaming("__open_memstream_1578", "open_memstream"); -__static_renaming("__setbuf_1583", "setbuf"); -__static_renaming("__setbuf_1585", "setbuf"); -__static_renaming("__setvbuf_1592", "setvbuf"); -__static_renaming("__setbuffer_1598", "setbuffer"); -__static_renaming("__setlinebuf_1602", "setlinebuf"); -__static_renaming("__fprintf_1607", "fprintf"); -__static_renaming("__fprintf_1609", "fprintf"); -__static_renaming("__printf_1612", "printf"); -__static_renaming("__sprintf_1615", "sprintf"); -__static_renaming("__vfprintf_1621", "vfprintf"); -__static_renaming("__vprintf_1628", "vprintf"); -__static_renaming("__vsprintf_1634", "vsprintf"); -__static_renaming("__snprintf_1639", "snprintf"); -__static_renaming("__vsnprintf_1645", "vsnprintf"); -__static_renaming("__vdprintf_1651", "vdprintf"); -__static_renaming("__dprintf_1655", "dprintf"); -__static_renaming("__fscanf_1659", "fscanf"); -__static_renaming("__fscanf_1661", "fscanf"); -__static_renaming("__fscanf_1663", "fscanf"); -__static_renaming("__fscanf_1665", "fscanf"); -__static_renaming("__scanf_1668", "scanf"); -__static_renaming("__scanf_1669", "scanf"); -__static_renaming("__sscanf_1672", "sscanf"); -__static_renaming("__vfscanf_1700", "vfscanf"); -__static_renaming("__vfscanf_1704", "vfscanf"); -__static_renaming("__vscanf_1711", "vscanf"); -__static_renaming("__vscanf_1713", "vscanf"); -__static_renaming("__vsscanf_1719", "vsscanf"); -__static_renaming("__fgetc_1754", "fgetc"); -__static_renaming("__getc_1758", "getc"); -__static_renaming("__getchar_1760", "getchar"); -__static_renaming("__getc_unlocked_1763", "getc_unlocked"); -__static_renaming("__getchar_unlocked_1765", "getchar_unlocked"); -__static_renaming("__fgetc_unlocked_1768", "fgetc_unlocked"); -__static_renaming("__fputc_1773", "fputc"); -__static_renaming("__fputc_1775", "fputc"); -__static_renaming("__putc_1780", "putc"); -__static_renaming("__putchar_1783", "putchar"); -__static_renaming("__fputc_unlocked_1787", "fputc_unlocked"); -__static_renaming("__putc_unlocked_1792", "putc_unlocked"); -__static_renaming("__putchar_unlocked_1795", "putchar_unlocked"); -__static_renaming("__getw_1798", "getw"); -__static_renaming("__putw_1803", "putw"); -__static_renaming("__fgets_1809", "fgets"); -__static_renaming("__fgets_1811", "fgets"); -__static_renaming("__fgets_1813", "fgets"); -__static_renaming("__fgets_1815", "fgets"); -__static_renaming("____getdelim_1822", "__getdelim"); -__static_renaming("____getdelim_1826", "__getdelim"); -__static_renaming("__getdelim_1835", "getdelim"); -__static_renaming("__getdelim_1839", "getdelim"); -__static_renaming("__getline_1847", "getline"); -__static_renaming("__getline_1851", "getline"); -__static_renaming("__fputs_1858", "fputs"); -__static_renaming("__fputs_1860", "fputs"); -__static_renaming("__puts_1863", "puts"); -__static_renaming("__ungetc_1867", "ungetc"); -__static_renaming("__fseek_1905", "fseek"); -__static_renaming("__fseek_1907", "fseek"); -__static_renaming("__ftell_1911", "ftell"); -__static_renaming("__ftell_1913", "ftell"); -__static_renaming("__rewind_1917", "rewind"); -__static_renaming("__fseeko_1924", "fseeko"); -__static_renaming("__fseeko_1935", "fseeko"); -__static_renaming("__ftello_1941", "ftello"); -__static_renaming("__ftello_1945", "ftello"); -__static_renaming("__ftello_1949", "ftello"); -__static_renaming("__fgetpos_1957", "fgetpos"); -__static_renaming("__fgetpos_1969", "fgetpos"); -__static_renaming("__fsetpos_1977", "fsetpos"); -__static_renaming("__fsetpos_1981", "fsetpos"); -__static_renaming("__clearerr_1987", "clearerr"); -__static_renaming("__feof_1991", "feof"); -__static_renaming("__feof_1993", "feof"); -__static_renaming("__ferror_1997", "ferror"); -__static_renaming("__ferror_1999", "ferror"); -__static_renaming("__clearerr_unlocked_2003", "clearerr_unlocked"); -__static_renaming("__feof_unlocked_2007", "feof_unlocked"); -__static_renaming("__feof_unlocked_2009", "feof_unlocked"); -__static_renaming("__ferror_unlocked_2013", "ferror_unlocked"); -__static_renaming("__ferror_unlocked_2015", "ferror_unlocked"); -__static_renaming("__perror_2018", "perror"); -__static_renaming("__perror_2019", "perror"); -__static_renaming("__sys_nerr_2020", "sys_nerr"); -__static_renaming("__sys_errlist_2021", "sys_errlist"); -__static_renaming("__fileno_2024", "fileno"); -__static_renaming("__fileno_2026", "fileno"); -__static_renaming("__fileno_unlocked_2030", "fileno_unlocked"); -__static_renaming("__fileno_unlocked_2032", "fileno_unlocked"); -__static_renaming("__popen_2036", "popen"); -__static_renaming("__popen_2038", "popen"); -__static_renaming("__pclose_2042", "pclose"); -__static_renaming("__ctermid_2045", "ctermid"); -__static_renaming("__flockfile_2048", "flockfile"); -__static_renaming("__ftrylockfile_2052", "ftrylockfile"); -__static_renaming("__ftrylockfile_2054", "ftrylockfile"); -__static_renaming("__funlockfile_2058", "funlockfile"); -__static_renaming("____sprintf_chk_2090", "__sprintf_chk"); -__static_renaming("____vsprintf_chk_2097", "__vsprintf_chk"); -__static_renaming("____snprintf_chk_2111", "__snprintf_chk"); -__static_renaming("____vsnprintf_chk_2119", "__vsnprintf_chk"); -__static_renaming("____fprintf_chk_2134", "__fprintf_chk"); -__static_renaming("____printf_chk_2138", "__printf_chk"); -__static_renaming("____vfprintf_chk_2145", "__vfprintf_chk"); -__static_renaming("____vprintf_chk_2153", "__vprintf_chk"); -__static_renaming("____dprintf_chk_2175", "__dprintf_chk"); -__static_renaming("____vdprintf_chk_2181", "__vdprintf_chk"); -__static_renaming("____fgets_chk_2195", "__fgets_chk"); -__static_renaming("____fgets_chk_2197", "__fgets_chk"); -__static_renaming("____fgets_chk_2199", "__fgets_chk"); -__static_renaming("____fgets_alias_2205", "__fgets_alias"); -__static_renaming("____fgets_chk_warn_2212", "__fgets_chk_warn"); -__static_renaming("____cnt_2278", "__cnt"); -__static_renaming("____cptr_2279", "__cptr"); -__static_renaming("__enable_x_2283", "enable_x"); -__static_renaming("__enable_x_2284", "enable_x"); -__static_renaming("__enable_x_2285", "enable_x"); -__static_renaming("__enable_y_2289", "enable_y"); -__static_renaming("__enable_z_2292", "enable_z"); -__static_renaming("__old_pin_2295", "old_pin"); -__static_renaming("__old_pin_2296", "old_pin"); -__static_renaming("__old_pin_2297", "old_pin"); -__static_renaming("__babystep_2298", "babystep"); -__static_renaming("__main_2318", "main"); -__static_renaming("__main_2319", "main"); - -__static_condition_renaming("__static_condition_default_55", "(defined ____gwchar_t_defined)"); -__static_condition_renaming("__static_condition_default_87", "!(defined _FORTIFY_SOURCE) && (defined ____gwchar_t_defined) && (defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined ____gwchar_t_defined) && (defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined ____gwchar_t_defined) && (defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined ____gwchar_t_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_89", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined ____gwchar_t_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_95", "(defined ____gwchar_t_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_103", "!(defined _FORTIFY_SOURCE) && (defined ____gwchar_t_defined) && (defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined ____gwchar_t_defined) && (defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined ____gwchar_t_defined) && (defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined ____gwchar_t_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_105", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined ____gwchar_t_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_111", "(defined ____gwchar_t_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_118", "!(defined __DOXYGEN__)"); -__static_condition_renaming("__static_condition_default_119", "(defined __DOXYGEN__)"); -__static_condition_renaming("__static_condition_default_122", "(defined __DOXYGEN__)"); -__static_condition_renaming("__static_condition_default_1112", "(defined __DOXYGEN__)"); -__static_condition_renaming("__static_condition_default_1113", "(defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES"); -__static_condition_renaming("__static_condition_default_1114", "(defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES"); -__static_condition_renaming("__static_condition_default_1115", "(defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES && !(defined __DELAY_ROUND_DOWN__) && (defined __DELAY_ROUND_CLOSEST__)"); -__static_condition_renaming("__static_condition_default_1116", "(defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES && (defined __DELAY_ROUND_DOWN__)"); -__static_condition_renaming("__static_condition_default_1117", "(defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES && !(defined __DELAY_ROUND_DOWN__) && !(defined __DELAY_ROUND_CLOSEST__)"); -__static_condition_renaming("__static_condition_default_1118", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) && !(defined F_CPU) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); -__static_condition_renaming("__static_condition_default_1119", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) && (defined F_CPU) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); -__static_condition_renaming("__static_condition_default_1120", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); -__static_condition_renaming("__static_condition_default_1121", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); -__static_condition_renaming("__static_condition_default_1122", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); -__static_condition_renaming("__static_condition_default_1123", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); -__static_condition_renaming("__static_condition_default_1124", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) && !(defined F_CPU) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); -__static_condition_renaming("__static_condition_default_1125", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) && (defined F_CPU) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); -__static_condition_renaming("__static_condition_default_1126", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); -__static_condition_renaming("__static_condition_default_1127", "(defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES"); -__static_condition_renaming("__static_condition_default_1128", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); -__static_condition_renaming("__static_condition_default_1129", "!(defined __DOXYGEN__)"); -__static_condition_renaming("__static_condition_default_1130", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES"); -__static_condition_renaming("__static_condition_default_1131", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES"); -__static_condition_renaming("__static_condition_default_1132", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !(defined __DELAY_ROUND_DOWN__) && (defined __DELAY_ROUND_CLOSEST__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES && !(defined __DELAY_ROUND_DOWN__) && (defined __DELAY_ROUND_CLOSEST__)"); -__static_condition_renaming("__static_condition_default_1133", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && (defined __DELAY_ROUND_DOWN__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES && (defined __DELAY_ROUND_DOWN__)"); -__static_condition_renaming("__static_condition_default_1134", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !(defined __DELAY_ROUND_DOWN__) && !(defined __DELAY_ROUND_CLOSEST__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES && !(defined __DELAY_ROUND_DOWN__) && !(defined __DELAY_ROUND_CLOSEST__)"); -__static_condition_renaming("__static_condition_default_1135", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) && !(defined F_CPU) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) && !(defined F_CPU) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); -__static_condition_renaming("__static_condition_default_1136", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) && (defined F_CPU) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) && (defined F_CPU) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); -__static_condition_renaming("__static_condition_default_1137", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); -__static_condition_renaming("__static_condition_default_1138", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); -__static_condition_renaming("__static_condition_default_1139", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); -__static_condition_renaming("__static_condition_default_1140", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); -__static_condition_renaming("__static_condition_default_1141", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) && !(defined F_CPU) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) && !(defined F_CPU) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); -__static_condition_renaming("__static_condition_default_1142", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) && (defined F_CPU) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) && (defined F_CPU) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); -__static_condition_renaming("__static_condition_default_1143", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); -__static_condition_renaming("__static_condition_default_1144", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES"); -__static_condition_renaming("__static_condition_default_1145", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); -__static_condition_renaming("__static_condition_default_1154", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES"); -__static_condition_renaming("__static_condition_default_1155", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES"); -__static_condition_renaming("__static_condition_default_1156", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !(defined __DELAY_ROUND_DOWN__) && (defined __DELAY_ROUND_CLOSEST__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES && !(defined __DELAY_ROUND_DOWN__) && (defined __DELAY_ROUND_CLOSEST__)"); -__static_condition_renaming("__static_condition_default_1157", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && (defined __DELAY_ROUND_DOWN__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES && (defined __DELAY_ROUND_DOWN__)"); -__static_condition_renaming("__static_condition_default_1158", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !(defined __DELAY_ROUND_DOWN__) && !(defined __DELAY_ROUND_CLOSEST__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES && !(defined __DELAY_ROUND_DOWN__) && !(defined __DELAY_ROUND_CLOSEST__)"); -__static_condition_renaming("__static_condition_default_1159", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) && !(defined F_CPU) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) && !(defined F_CPU) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); -__static_condition_renaming("__static_condition_default_1160", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) && (defined F_CPU) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) && (defined F_CPU) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); -__static_condition_renaming("__static_condition_default_1161", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) && !(defined F_CPU) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) && !(defined F_CPU) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); -__static_condition_renaming("__static_condition_default_1162", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) && (defined F_CPU) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) && (defined F_CPU) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); -__static_condition_renaming("__static_condition_default_1163", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); -__static_condition_renaming("__static_condition_default_1164", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); -__static_condition_renaming("__static_condition_default_1165", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); -__static_condition_renaming("__static_condition_default_1166", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); -__static_condition_renaming("__static_condition_default_1167", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); -__static_condition_renaming("__static_condition_default_1168", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); -__static_condition_renaming("__static_condition_default_1169", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); -__static_condition_renaming("__static_condition_default_1170", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES"); -__static_condition_renaming("__static_condition_default_1171", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); -__static_condition_renaming("__static_condition_default_1172", "(defined __DOXYGEN__)"); -__static_condition_renaming("__static_condition_default_1173", "(defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES"); -__static_condition_renaming("__static_condition_default_1174", "(defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES"); -__static_condition_renaming("__static_condition_default_1175", "(defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES && !(defined __DELAY_ROUND_DOWN__) && (defined __DELAY_ROUND_CLOSEST__)"); -__static_condition_renaming("__static_condition_default_1176", "(defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES && (defined __DELAY_ROUND_DOWN__)"); -__static_condition_renaming("__static_condition_default_1177", "(defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES && !(defined __DELAY_ROUND_DOWN__) && !(defined __DELAY_ROUND_CLOSEST__)"); -__static_condition_renaming("__static_condition_default_1178", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) && !(defined F_CPU) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); -__static_condition_renaming("__static_condition_default_1179", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) && (defined F_CPU) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); -__static_condition_renaming("__static_condition_default_1180", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) && !(defined F_CPU) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); -__static_condition_renaming("__static_condition_default_1181", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) && (defined F_CPU) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); -__static_condition_renaming("__static_condition_default_1182", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); -__static_condition_renaming("__static_condition_default_1183", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); -__static_condition_renaming("__static_condition_default_1184", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); -__static_condition_renaming("__static_condition_default_1185", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); -__static_condition_renaming("__static_condition_default_1186", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); -__static_condition_renaming("__static_condition_default_1187", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); -__static_condition_renaming("__static_condition_default_1188", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); -__static_condition_renaming("__static_condition_default_1189", "(defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES"); -__static_condition_renaming("__static_condition_default_1190", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); -__static_condition_renaming("__static_condition_default_1244", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1267", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1275", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1314", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_1360", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_1361", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_1364", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1373", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1378", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1384", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1389", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1392", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1395", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1401", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1408", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1414", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1420", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1426", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1429", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1432", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1435", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1437", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_1439", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_1440", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_1441", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_1444", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_1446", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_1448", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_1449", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_1450", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_1454", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_1455", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1458", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1461", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_1462", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1465", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_1466", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1469", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1471", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); -__static_condition_renaming("__static_condition_default_1473", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_1475", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_1477", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1479", "!(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1481", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1484", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1487", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1490", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_1502", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1504", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1506", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1508", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1522", "(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1524", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1528", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1532", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1536", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1538", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1546", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1548", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1554", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1556", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1558", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1560", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1564", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1566", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1571", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1573", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1577", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1579", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1584", "(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1586", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1593", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1599", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1603", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1608", "(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1610", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1622", "!(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1623", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_1624", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1629", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1635", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1646", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1652", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1660", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1662", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1664", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1666", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1677", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1679", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1680", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1682", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1684", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1685", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1688", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_1690", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_1694", "!(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_1701", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1702", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_1703", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1705", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1706", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_1707", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1712", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1714", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1720", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1727", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_1728", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1729", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_1730", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1732", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_1733", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1734", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_1735", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1740", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_1741", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1743", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_1744", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1750", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_1751", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1755", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1759", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1764", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1769", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1774", "(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1776", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1781", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1788", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1793", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1799", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1804", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1810", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1812", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1814", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1816", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1823", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1824", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1825", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1827", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1828", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1829", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1836", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1837", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1838", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1840", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1841", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1842", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1848", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1849", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1850", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1852", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1853", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1854", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1859", "(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1861", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1868", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1874", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1875", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1876", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1877", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1883", "!(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1884", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1890", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1891", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1892", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1893", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1899", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1900", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1906", "(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1908", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1912", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1914", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1918", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1925", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1926", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1927", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1936", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1937", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1938", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1942", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1943", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1944", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1946", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1947", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1948", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1950", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1951", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1952", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1958", "!(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1959", "!(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_1960", "!(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1970", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1971", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_1972", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1978", "!(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1979", "!(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_1980", "!(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1982", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1983", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_1984", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1988", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1992", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1994", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1998", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2000", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2004", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2008", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2010", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2014", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2016", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2025", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2027", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2031", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2033", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2037", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2039", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2043", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2049", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2053", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2055", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2059", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2063", "!(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2066", "!(defined __STRICT_ANSI__) && (defined __USE_EXTERN_INLINES) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2069", "!(defined __STRICT_ANSI__) && (defined __USE_EXTERN_INLINES) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2074", "!(defined __STRICT_ANSI__) && (defined __USE_EXTERN_INLINES) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2078", "!(defined __STRICT_ANSI__) && (defined __USE_EXTERN_INLINES) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2082", "!(defined __STRICT_ANSI__) && (defined __USE_EXTERN_INLINES) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2085", "!(defined __STRICT_ANSI__) && (defined __USE_EXTERN_INLINES) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2098", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2105", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2120", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2129", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2135", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2146", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2147", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_2148", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2154", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2158", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2163", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2169", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2170", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_2171", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2182", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2189", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2196", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2198", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2200", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2206", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2213", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2218", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2219", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2226", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2227", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2233", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2234", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2241", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2242", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2248", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2249", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2256", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2257", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2263", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2264", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2271", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2272", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2280", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_2281", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2282", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2286", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) || (defined __STRICT_ANSI__) && !(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_2287", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_2288", "(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_2290", "!(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_2291", "(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_2299", "(defined BABYSTEPPING)"); -__static_condition_renaming("__static_condition_default_2300", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined BABYSTEPPING) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined BABYSTEPPING) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined BABYSTEPPING) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined BABYSTEPPING) || (defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined BABYSTEPPING)"); -__static_condition_renaming("__static_condition_default_2301", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined BABYSTEPPING)"); -__static_condition_renaming("__static_condition_default_2302", "(defined __need___FILE) && (defined BABYSTEPPING)"); -__static_condition_renaming("__static_condition_default_2303", "!(defined __DOXYGEN__) && (defined BABYSTEPPING)"); -__static_condition_renaming("__static_condition_default_2304", "(defined __DOXYGEN__) && (defined BABYSTEPPING)"); -__static_condition_renaming("__static_condition_default_2305", "!(defined __DOXYGEN__) && (defined BABYSTEPPING)"); -__static_condition_renaming("__static_condition_default_2306", "(defined __DOXYGEN__) && (defined BABYSTEPPING)"); -__static_condition_renaming("__static_condition_default_2307", "(defined BABYSTEPPING) && !(defined DELTA)"); -__static_condition_renaming("__static_condition_default_2308", "!(defined __DOXYGEN__) && (defined BABYSTEPPING) && !(defined DELTA)"); -__static_condition_renaming("__static_condition_default_2309", "(defined __DOXYGEN__) && (defined BABYSTEPPING) && !(defined DELTA)"); -__static_condition_renaming("__static_condition_default_2310", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined BABYSTEPPING) && (defined DELTA) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined BABYSTEPPING) && (defined DELTA) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined BABYSTEPPING) && (defined DELTA) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined BABYSTEPPING) && (defined DELTA) || (defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined BABYSTEPPING) && (defined DELTA)"); -__static_condition_renaming("__static_condition_default_2311", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined BABYSTEPPING) && (defined DELTA)"); -__static_condition_renaming("__static_condition_default_2312", "(defined __need___FILE) && (defined BABYSTEPPING) && (defined DELTA)"); -__static_condition_renaming("__static_condition_default_2313", "(defined BABYSTEPPING) && (defined DELTA)"); -__static_condition_renaming("__static_condition_default_2314", "(defined BABYSTEPPING) && (defined DELTA)"); -__static_condition_renaming("__static_condition_default_2315", "(defined BABYSTEPPING) && !(defined DELTA)"); -__static_condition_renaming("__static_condition_default_2316", "!(defined __DOXYGEN__) && (defined BABYSTEPPING) && (defined DELTA)"); -__static_condition_renaming("__static_condition_default_2317", "(defined __DOXYGEN__) && (defined BABYSTEPPING) && (defined DELTA)"); -__static_condition_renaming("__static_condition_default_2320", "!(defined BABYSTEPPING)"); -__static_condition_renaming("__static_condition_default_2321", "(defined BABYSTEPPING)"); -__static_condition_renaming("__static_condition_default_2322", "!(defined __FAST_MATH__) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __FAST_MATH__) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) || (defined __FAST_MATH__) && !(defined _OPENMP) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined __FAST_MATH__) && !(defined _OPENMP) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) || (defined __FAST_MATH__) && (defined _OPENMP) && !(_OPENMP >= 201307) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined __FAST_MATH__) && (defined _OPENMP) && !(_OPENMP >= 201307) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) || (defined __FAST_MATH__) && (defined _OPENMP) && (_OPENMP >= 201307)"); - -if (__static_condition_default_2322) -{ +__static_renaming("__ptrdiff_t_0", "ptrdiff_t"); +__static_renaming("__size_t_1", "size_t"); +__static_renaming("____u_char_2", "__u_char"); +__static_renaming("____u_short_3", "__u_short"); +__static_renaming("____u_int_4", "__u_int"); +__static_renaming("____u_long_5", "__u_long"); +__static_renaming("____int8_t_6", "__int8_t"); +__static_renaming("____uint8_t_7", "__uint8_t"); +__static_renaming("____int16_t_8", "__int16_t"); +__static_renaming("____uint16_t_9", "__uint16_t"); +__static_renaming("____int32_t_10", "__int32_t"); +__static_renaming("____uint32_t_11", "__uint32_t"); +__static_renaming("____int64_t_12", "__int64_t"); +__static_renaming("____uint64_t_13", "__uint64_t"); +__static_renaming("____quad_t_14", "__quad_t"); +__static_renaming("____u_quad_t_15", "__u_quad_t"); +__static_renaming("____dev_t_16", "__dev_t"); +__static_renaming("____uid_t_17", "__uid_t"); +__static_renaming("____gid_t_18", "__gid_t"); +__static_renaming("____ino_t_19", "__ino_t"); +__static_renaming("____ino64_t_20", "__ino64_t"); +__static_renaming("____mode_t_21", "__mode_t"); +__static_renaming("____nlink_t_22", "__nlink_t"); +__static_renaming("____off_t_23", "__off_t"); +__static_renaming("____off64_t_24", "__off64_t"); +__static_renaming("____pid_t_25", "__pid_t"); +__static_renaming("____fsid_t_29", "__fsid_t"); +__static_renaming("____clock_t_30", "__clock_t"); +__static_renaming("____rlim_t_31", "__rlim_t"); +__static_renaming("____rlim64_t_32", "__rlim64_t"); +__static_renaming("____id_t_33", "__id_t"); +__static_renaming("____time_t_34", "__time_t"); +__static_renaming("____useconds_t_35", "__useconds_t"); +__static_renaming("____suseconds_t_36", "__suseconds_t"); +__static_renaming("____daddr_t_37", "__daddr_t"); +__static_renaming("____key_t_38", "__key_t"); +__static_renaming("____clockid_t_39", "__clockid_t"); +__static_renaming("____timer_t_40", "__timer_t"); +__static_renaming("____blksize_t_41", "__blksize_t"); +__static_renaming("____blkcnt_t_42", "__blkcnt_t"); +__static_renaming("____blkcnt64_t_43", "__blkcnt64_t"); +__static_renaming("____fsblkcnt_t_44", "__fsblkcnt_t"); +__static_renaming("____fsblkcnt64_t_45", "__fsblkcnt64_t"); +__static_renaming("____fsfilcnt_t_46", "__fsfilcnt_t"); +__static_renaming("____fsfilcnt64_t_47", "__fsfilcnt64_t"); +__static_renaming("____fsword_t_48", "__fsword_t"); +__static_renaming("____ssize_t_49", "__ssize_t"); +__static_renaming("____syscall_slong_t_50", "__syscall_slong_t"); +__static_renaming("____syscall_ulong_t_51", "__syscall_ulong_t"); +__static_renaming("____loff_t_52", "__loff_t"); +__static_renaming("____qaddr_t_53", "__qaddr_t"); +__static_renaming("____caddr_t_54", "__caddr_t"); +__static_renaming("____intptr_t_55", "__intptr_t"); +__static_renaming("____socklen_t_56", "__socklen_t"); +__static_renaming("__FILE_58", "FILE"); +__static_renaming("____FILE_59", "__FILE"); +__static_renaming("____mbstate_t_68", "__mbstate_t"); +__static_renaming("___G_fpos_t_75", "_G_fpos_t"); +__static_renaming("___G_fpos64_t_81", "_G_fpos64_t"); +__static_renaming("____gnuc_va_list_82", "__gnuc_va_list"); +__static_renaming("___IO_lock_t_84", "_IO_lock_t"); +__static_renaming("___IO_FILE_163", "_IO_FILE"); +__static_renaming("___IO_FILE_164", "_IO_FILE"); +__static_renaming("___IO_2_1_stdin__167", "_IO_2_1_stdin_"); +__static_renaming("___IO_2_1_stdout__168", "_IO_2_1_stdout_"); +__static_renaming("___IO_2_1_stderr__169", "_IO_2_1_stderr_"); +__static_renaming("____io_read_fn_173", "__io_read_fn"); +__static_renaming("____io_write_fn_177", "__io_write_fn"); +__static_renaming("____io_seek_fn_181", "__io_seek_fn"); +__static_renaming("____io_close_fn_183", "__io_close_fn"); +__static_renaming("____underflow_184", "__underflow"); +__static_renaming("____underflow_185", "__underflow"); +__static_renaming("____uflow_186", "__uflow"); +__static_renaming("____uflow_187", "__uflow"); +__static_renaming("____overflow_188", "__overflow"); +__static_renaming("____overflow_189", "__overflow"); +__static_renaming("___IO_getc_193", "_IO_getc"); +__static_renaming("___IO_getc_194", "_IO_getc"); +__static_renaming("___IO_putc_199", "_IO_putc"); +__static_renaming("___IO_putc_200", "_IO_putc"); +__static_renaming("___IO_feof_204", "_IO_feof"); +__static_renaming("___IO_feof_205", "_IO_feof"); +__static_renaming("___IO_ferror_209", "_IO_ferror"); +__static_renaming("___IO_ferror_210", "_IO_ferror"); +__static_renaming("___IO_peekc_locked_214", "_IO_peekc_locked"); +__static_renaming("___IO_peekc_locked_215", "_IO_peekc_locked"); +__static_renaming("___IO_flockfile_216", "_IO_flockfile"); +__static_renaming("___IO_flockfile_217", "_IO_flockfile"); +__static_renaming("___IO_funlockfile_218", "_IO_funlockfile"); +__static_renaming("___IO_funlockfile_219", "_IO_funlockfile"); +__static_renaming("___IO_ftrylockfile_220", "_IO_ftrylockfile"); +__static_renaming("___IO_ftrylockfile_221", "_IO_ftrylockfile"); +__static_renaming("___IO_vfscanf_222", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_224", "_IO_vfscanf"); +__static_renaming("___IO_vfprintf_231", "_IO_vfprintf"); +__static_renaming("___IO_vfprintf_233", "_IO_vfprintf"); +__static_renaming("___IO_padn_238", "_IO_padn"); +__static_renaming("___IO_padn_239", "_IO_padn"); +__static_renaming("___IO_sgetn_240", "_IO_sgetn"); +__static_renaming("___IO_sgetn_241", "_IO_sgetn"); +__static_renaming("___IO_seekoff_242", "_IO_seekoff"); +__static_renaming("___IO_seekoff_243", "_IO_seekoff"); +__static_renaming("___IO_seekpos_244", "_IO_seekpos"); +__static_renaming("___IO_seekpos_245", "_IO_seekpos"); +__static_renaming("___IO_free_backup_area_246", "_IO_free_backup_area"); +__static_renaming("___IO_free_backup_area_247", "_IO_free_backup_area"); +__static_renaming("__va_list_248", "va_list"); +__static_renaming("__off_t_250", "off_t"); +__static_renaming("__off_t_251", "off_t"); +__static_renaming("__ssize_t_252", "ssize_t"); +__static_renaming("__fpos_t_253", "fpos_t"); +__static_renaming("__fpos_t_255", "fpos_t"); +__static_renaming("__stdin_257", "stdin"); +__static_renaming("__stdin_258", "stdin"); +__static_renaming("__stdout_259", "stdout"); +__static_renaming("__stdout_260", "stdout"); +__static_renaming("__stderr_261", "stderr"); +__static_renaming("__stderr_262", "stderr"); +__static_renaming("__remove_264", "remove"); +__static_renaming("__rename_267", "rename"); +__static_renaming("__renameat_272", "renameat"); +__static_renaming("__tmpfile_273", "tmpfile"); +__static_renaming("__tmpfile_275", "tmpfile"); +__static_renaming("__tmpfile_277", "tmpfile"); +__static_renaming("__tmpfile_279", "tmpfile"); +__static_renaming("__tmpnam_282", "tmpnam"); +__static_renaming("__tmpnam_283", "tmpnam"); +__static_renaming("__tmpnam_r_285", "tmpnam_r"); +__static_renaming("__tmpnam_r_286", "tmpnam_r"); +__static_renaming("__tempnam_289", "tempnam"); +__static_renaming("__tempnam_290", "tempnam"); +__static_renaming("__fclose_293", "fclose"); +__static_renaming("__fclose_295", "fclose"); +__static_renaming("__fflush_299", "fflush"); +__static_renaming("__fflush_unlocked_303", "fflush_unlocked"); +__static_renaming("__fopen_307", "fopen"); +__static_renaming("__fopen_309", "fopen"); +__static_renaming("__fopen_317", "fopen"); +__static_renaming("__fopen_319", "fopen"); +__static_renaming("__freopen_325", "freopen"); +__static_renaming("__freopen_327", "freopen"); +__static_renaming("__freopen_329", "freopen"); +__static_renaming("__freopen_331", "freopen"); +__static_renaming("__fdopen_335", "fdopen"); +__static_renaming("__fdopen_337", "fdopen"); +__static_renaming("__fmemopen_342", "fmemopen"); +__static_renaming("__fmemopen_344", "fmemopen"); +__static_renaming("__open_memstream_348", "open_memstream"); +__static_renaming("__open_memstream_350", "open_memstream"); +__static_renaming("__setbuf_355", "setbuf"); +__static_renaming("__setbuf_357", "setbuf"); +__static_renaming("__setvbuf_364", "setvbuf"); +__static_renaming("__setbuffer_369", "setbuffer"); +__static_renaming("__setlinebuf_373", "setlinebuf"); +__static_renaming("__fprintf_378", "fprintf"); +__static_renaming("__fprintf_380", "fprintf"); +__static_renaming("__printf_383", "printf"); +__static_renaming("__sprintf_386", "sprintf"); +__static_renaming("__vfprintf_392", "vfprintf"); +__static_renaming("__vprintf_399", "vprintf"); +__static_renaming("__vsprintf_405", "vsprintf"); +__static_renaming("__snprintf_409", "snprintf"); +__static_renaming("__vsnprintf_415", "vsnprintf"); +__static_renaming("__vdprintf_420", "vdprintf"); +__static_renaming("__dprintf_424", "dprintf"); +__static_renaming("__fscanf_428", "fscanf"); +__static_renaming("__fscanf_430", "fscanf"); +__static_renaming("__fscanf_432", "fscanf"); +__static_renaming("__fscanf_434", "fscanf"); +__static_renaming("__scanf_437", "scanf"); +__static_renaming("__scanf_438", "scanf"); +__static_renaming("__sscanf_441", "sscanf"); +__static_renaming("__vfscanf_468", "vfscanf"); +__static_renaming("__vfscanf_472", "vfscanf"); +__static_renaming("__vscanf_479", "vscanf"); +__static_renaming("__vscanf_481", "vscanf"); +__static_renaming("__vsscanf_487", "vsscanf"); +__static_renaming("__fgetc_520", "fgetc"); +__static_renaming("__getc_523", "getc"); +__static_renaming("__getchar_524", "getchar"); +__static_renaming("__getc_unlocked_527", "getc_unlocked"); +__static_renaming("__getchar_unlocked_529", "getchar_unlocked"); +__static_renaming("__fgetc_unlocked_532", "fgetc_unlocked"); +__static_renaming("__fputc_537", "fputc"); +__static_renaming("__fputc_539", "fputc"); +__static_renaming("__putc_544", "putc"); +__static_renaming("__putchar_546", "putchar"); +__static_renaming("__fputc_unlocked_550", "fputc_unlocked"); +__static_renaming("__putc_unlocked_555", "putc_unlocked"); +__static_renaming("__putchar_unlocked_558", "putchar_unlocked"); +__static_renaming("__getw_561", "getw"); +__static_renaming("__putw_566", "putw"); +__static_renaming("__fgets_572", "fgets"); +__static_renaming("__fgets_574", "fgets"); +__static_renaming("__fgets_576", "fgets"); +__static_renaming("__fgets_578", "fgets"); +__static_renaming("____getdelim_585", "__getdelim"); +__static_renaming("____getdelim_587", "__getdelim"); +__static_renaming("__getdelim_594", "getdelim"); +__static_renaming("__getdelim_596", "getdelim"); +__static_renaming("__getline_602", "getline"); +__static_renaming("__getline_604", "getline"); +__static_renaming("__fputs_609", "fputs"); +__static_renaming("__fputs_611", "fputs"); +__static_renaming("__puts_614", "puts"); +__static_renaming("__ungetc_618", "ungetc"); +__static_renaming("__fseek_654", "fseek"); +__static_renaming("__fseek_656", "fseek"); +__static_renaming("__ftell_660", "ftell"); +__static_renaming("__ftell_662", "ftell"); +__static_renaming("__rewind_666", "rewind"); +__static_renaming("__fseeko_671", "fseeko"); +__static_renaming("__fseeko_679", "fseeko"); +__static_renaming("__ftello_683", "ftello"); +__static_renaming("__ftello_685", "ftello"); +__static_renaming("__ftello_687", "ftello"); +__static_renaming("__fgetpos_693", "fgetpos"); +__static_renaming("__fgetpos_705", "fgetpos"); +__static_renaming("__fsetpos_713", "fsetpos"); +__static_renaming("__fsetpos_717", "fsetpos"); +__static_renaming("__clearerr_723", "clearerr"); +__static_renaming("__feof_726", "feof"); +__static_renaming("__feof_728", "feof"); +__static_renaming("__ferror_732", "ferror"); +__static_renaming("__ferror_734", "ferror"); +__static_renaming("__clearerr_unlocked_738", "clearerr_unlocked"); +__static_renaming("__feof_unlocked_742", "feof_unlocked"); +__static_renaming("__feof_unlocked_744", "feof_unlocked"); +__static_renaming("__ferror_unlocked_748", "ferror_unlocked"); +__static_renaming("__ferror_unlocked_750", "ferror_unlocked"); +__static_renaming("__perror_753", "perror"); +__static_renaming("__perror_754", "perror"); +__static_renaming("__sys_nerr_755", "sys_nerr"); +__static_renaming("__sys_errlist_756", "sys_errlist"); +__static_renaming("__fileno_759", "fileno"); +__static_renaming("__fileno_761", "fileno"); +__static_renaming("__fileno_unlocked_765", "fileno_unlocked"); +__static_renaming("__fileno_unlocked_767", "fileno_unlocked"); +__static_renaming("__popen_771", "popen"); +__static_renaming("__popen_773", "popen"); +__static_renaming("__pclose_777", "pclose"); +__static_renaming("__ctermid_780", "ctermid"); +__static_renaming("__flockfile_783", "flockfile"); +__static_renaming("__ftrylockfile_787", "ftrylockfile"); +__static_renaming("__ftrylockfile_789", "ftrylockfile"); +__static_renaming("__funlockfile_793", "funlockfile"); +__static_renaming("____sprintf_chk_825", "__sprintf_chk"); +__static_renaming("____vsprintf_chk_832", "__vsprintf_chk"); +__static_renaming("____snprintf_chk_846", "__snprintf_chk"); +__static_renaming("____vsnprintf_chk_854", "__vsnprintf_chk"); +__static_renaming("____fprintf_chk_869", "__fprintf_chk"); +__static_renaming("____printf_chk_873", "__printf_chk"); +__static_renaming("____vfprintf_chk_880", "__vfprintf_chk"); +__static_renaming("____vprintf_chk_888", "__vprintf_chk"); +__static_renaming("____dprintf_chk_910", "__dprintf_chk"); +__static_renaming("____vdprintf_chk_916", "__vdprintf_chk"); +__static_renaming("____fgets_chk_930", "__fgets_chk"); +__static_renaming("____fgets_chk_932", "__fgets_chk"); +__static_renaming("____fgets_chk_934", "__fgets_chk"); +__static_renaming("____fgets_alias_940", "__fgets_alias"); +__static_renaming("____fgets_chk_warn_947", "__fgets_chk_warn"); +__static_renaming("____cnt_1013", "__cnt"); +__static_renaming("____cptr_1014", "__cptr"); +__static_renaming("__enable_x_1018", "enable_x"); +__static_renaming("__enable_x_1019", "enable_x"); +__static_renaming("__enable_y_1022", "enable_y"); +__static_renaming("__enable_z_1023", "enable_z"); +__static_renaming("__main_1024", "main"); + +__static_condition_renaming("__static_condition_default_74", "(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_118", "(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_161", "(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_162", "(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_165", "(defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_223", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_225", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_226", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_227", "(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_230", "(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_232", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_234", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_235", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_236", "(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_249", "!(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); +__static_condition_renaming("__static_condition_default_254", "!(defined _FILE_OFFSET_BITS) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_256", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_274", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_276", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_278", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_280", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_294", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_296", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_300", "(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_304", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_308", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_310", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_318", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_320", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_326", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_328", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_330", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_332", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_336", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_338", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_343", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_345", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_349", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_351", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_356", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_358", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_370", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_374", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_379", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_381", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_393", "!(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_394", "(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_395", "(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_400", "!(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_421", "!(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_429", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_431", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_433", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_435", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_446", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_448", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_449", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_451", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_453", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_454", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_457", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_459", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_469", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_470", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_471", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_473", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_474", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_475", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_480", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_482", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_494", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_495", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_496", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_497", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_499", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_500", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_501", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_502", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_507", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_508", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_510", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_511", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_517", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_528", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_533", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_538", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_540", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_551", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_556", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_562", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_567", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_573", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_575", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_577", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_579", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_586", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_588", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_595", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_597", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_603", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_605", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_610", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_612", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_624", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_625", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_626", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_627", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_633", "!(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_639", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_640", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_641", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_642", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_648", "!(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_649", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_655", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_657", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_661", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_663", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_672", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_680", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_684", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_686", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_688", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_694", "!(defined _FILE_OFFSET_BITS) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_695", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_696", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_706", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_707", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_708", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_714", "!(defined _FILE_OFFSET_BITS) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_715", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_716", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_718", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_719", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_720", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_727", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_729", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_733", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_735", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_739", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_743", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_745", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_749", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_751", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_760", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_762", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_766", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_768", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_772", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_774", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_778", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_784", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_788", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_790", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_794", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_798", "!(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_801", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_804", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_809", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_813", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_817", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_820", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_833", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_840", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_855", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_864", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_870", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_881", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_882", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_883", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_889", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_893", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_898", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_904", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_905", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_906", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_917", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_924", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_931", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_933", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_935", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_941", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_948", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_953", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_954", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_961", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_962", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_968", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_969", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_976", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_977", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_983", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_984", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_991", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_992", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_998", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_999", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1006", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1007", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1015", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_1016", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1017", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1020", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) || (defined __STRICT_ANSI__)"); +__static_condition_renaming("__static_condition_default_1021", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1025", "(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); + +if (__static_condition_default_1025) { __static_parse_error("Unable to parse"); } }; -typedef signed char __int8_t_0;// L36 -typedef short int __int16_t_1;// L37 -typedef int __int32_t_2;// L38 -typedef long int __int64_t_3;// L40 -typedef unsigned char __uint8_t_4;// L48 -typedef unsigned short int __uint16_t_5;// L49 -typedef unsigned int __uint32_t_6;// L51 -typedef unsigned long int __uint64_t_7;// L55 -typedef signed char __int_least8_t_8;// L65 -typedef short int __int_least16_t_9;// L66 -typedef int __int_least32_t_10;// L67 -typedef long int __int_least64_t_11;// L69 -typedef unsigned char __uint_least8_t_12;// L76 -typedef unsigned short int __uint_least16_t_13;// L77 -typedef unsigned int __uint_least32_t_14;// L78 -typedef unsigned long int __uint_least64_t_15;// L80 -typedef signed char __int_fast8_t_16;// L90 -typedef long int __int_fast16_t_17;// L92 -typedef long int __int_fast32_t_18;// L93 -typedef long int __int_fast64_t_19;// L94 -typedef unsigned char __uint_fast8_t_20;// L103 -typedef unsigned long int __uint_fast16_t_21;// L105 -typedef unsigned long int __uint_fast32_t_22;// L106 -typedef unsigned long int __uint_fast64_t_23;// L107 -typedef long int __intptr_t_24;// L119 -typedef unsigned long int __uintptr_t_25;// L122 -typedef long int __intmax_t_26;// L134 -typedef unsigned long int __uintmax_t_27;// L135 -typedef int ____gwchar_t_28;// L34:L243 -struct ____anonymous_tag_29_30 { -long int __quot_31;// L273 -long int __rem_32;// L274 -}; -typedef struct ____anonymous_tag_29_30 __imaxdiv_t_33;// L271:L275 -typedef struct ____anonymous_tag_29_30 __imaxdiv_t_34;// L271:L275 -typedef float __float_t_123;// L28 -typedef double __double_t_124;// L29 -enum ____anonymous_tag_1083_1084 { -__FP_NAN_1077 = 0, -__FP_NAN_1078 = 0, -__FP_INFINITE_1079 = 1, -__FP_ZERO_1080 = 2, -__FP_SUBNORMAL_1081 = 3, -__FP_NORMAL_1082 = 4, +typedef long int __ptrdiff_t_0;// L143:L324 +typedef long unsigned int __size_t_1;// L177:L209 +typedef unsigned char ____u_char_2;// L30 +typedef unsigned short int ____u_short_3;// L31 +typedef unsigned int ____u_int_4;// L32 +typedef unsigned long int ____u_long_5;// L33 +typedef signed char ____int8_t_6;// L36 +typedef unsigned char ____uint8_t_7;// L37 +typedef signed short int ____int16_t_8;// L38 +typedef unsigned short int ____uint16_t_9;// L39 +typedef signed int ____int32_t_10;// L40 +typedef unsigned int ____uint32_t_11;// L41 +typedef signed long int ____int64_t_12;// L43 +typedef unsigned long int ____uint64_t_13;// L44 +typedef long int ____quad_t_14;// L52 +typedef unsigned long int ____u_quad_t_15;// L53 +typedef unsigned long int ____dev_t_16;// L109:L124 +typedef unsigned int ____uid_t_17;// L92:L125 +typedef unsigned int ____gid_t_18;// L92:L126 +typedef unsigned long int ____ino_t_19;// L94:L127 +typedef unsigned long int ____ino64_t_20;// L109:L128 +typedef unsigned int ____mode_t_21;// L92:L129 +typedef unsigned long int ____nlink_t_22;// L94:L130 +typedef long int ____off_t_23;// L93:L131 +typedef long int ____off64_t_24;// L108:L132 +typedef int ____pid_t_25;// L91:L133 +struct ____anonymous_tag_26_27 { +int ____val_28[2];// L72 }; -enum ____anonymous_tag_1090_1091 { -___IEEE__1085 = - 1, -___SVID__1086, -___XOPEN__1087, -___POSIX__1088, -___ISOC__1089, +typedef struct ____anonymous_tag_26_27 ____fsid_t_29;// L72:L134 +typedef long int ____clock_t_30;// L93:L135 +typedef unsigned long int ____rlim_t_31;// L94:L136 +typedef unsigned long int ____rlim64_t_32;// L109:L137 +typedef unsigned int ____id_t_33;// L92:L138 +typedef long int ____time_t_34;// L93:L139 +typedef unsigned int ____useconds_t_35;// L92:L140 +typedef long int ____suseconds_t_36;// L93:L141 +typedef int ____daddr_t_37;// L91:L143 +typedef int ____key_t_38;// L91:L144 +typedef int ____clockid_t_39;// L91:L147 +typedef void * (____timer_t_40);// L70:L150 +typedef long int ____blksize_t_41;// L93:L153 +typedef long int ____blkcnt_t_42;// L93:L158 +typedef long int ____blkcnt64_t_43;// L108:L159 +typedef unsigned long int ____fsblkcnt_t_44;// L94:L162 +typedef unsigned long int ____fsblkcnt64_t_45;// L109:L163 +typedef unsigned long int ____fsfilcnt_t_46;// L94:L166 +typedef unsigned long int ____fsfilcnt64_t_47;// L109:L167 +typedef long int ____fsword_t_48;// L93:L170 +typedef long int ____ssize_t_49;// L110:L172 +typedef long int ____syscall_slong_t_50;// L93:L175 +typedef unsigned long int ____syscall_ulong_t_51;// L94:L177 +typedef ____off64_t_24 ____loff_t_52;// L181 +typedef ____quad_t_14 * (____qaddr_t_53);// L182 +typedef char * (____caddr_t_54);// L183 +typedef long int ____intptr_t_55;// L110:L186 +typedef unsigned int ____socklen_t_56;// L92:L189 +typedef struct __forward_tag_reference_57 __FILE_58;// L48 +typedef struct __forward_tag_reference_57 ____FILE_59;// L64 +union ____anonymous_tag_60_61 { +unsigned int ____wch_62;// L265 +char ____wchb_63[4];// L92 }; -typedef enum ____anonymous_tag_1090_1091 ___LIB_VERSION_TYPE_1092;// L347:L354 -struct __exception_1094 { -int __type_1095;// L375 -char * (__name_1096);// L376 -double __arg1_1097;// L377 -double __arg2_1098;// L378 -double __retval_1099;// L379 +struct ____anonymous_tag_64_65 { +int ____count_66;// L84 +union ____anonymous_tag_60_61 ____value_67;// L85 }; -typedef long int __ptrdiff_t_1191;// L143:L324 -typedef long unsigned int __size_t_1192;// L177:L209 -typedef unsigned char ____u_char_1193;// L30 -typedef unsigned short int ____u_short_1194;// L31 -typedef unsigned int ____u_int_1195;// L32 -typedef unsigned long int ____u_long_1196;// L33 -typedef signed char ____int8_t_1197;// L36 -typedef unsigned char ____uint8_t_1198;// L37 -typedef signed short int ____int16_t_1199;// L38 -typedef unsigned short int ____uint16_t_1200;// L39 -typedef signed int ____int32_t_1201;// L40 -typedef unsigned int ____uint32_t_1202;// L41 -typedef signed long int ____int64_t_1203;// L43 -typedef unsigned long int ____uint64_t_1204;// L44 -typedef long int ____quad_t_1205;// L52 -typedef unsigned long int ____u_quad_t_1206;// L53 -typedef unsigned long int ____dev_t_1207;// L109:L124 -typedef unsigned int ____uid_t_1208;// L92:L125 -typedef unsigned int ____gid_t_1209;// L92:L126 -typedef unsigned long int ____ino_t_1210;// L94:L127 -typedef unsigned long int ____ino64_t_1211;// L109:L128 -typedef unsigned int ____mode_t_1212;// L92:L129 -typedef unsigned long int ____nlink_t_1213;// L94:L130 -typedef long int ____off_t_1214;// L93:L131 -typedef long int ____off64_t_1215;// L108:L132 -typedef int ____pid_t_1216;// L91:L133 -struct ____anonymous_tag_1217_1218 { -int ____val_1219[2];// L72 +typedef struct ____anonymous_tag_64_65 ____mbstate_t_68;// L82:L94 +struct ____anonymous_tag_69_70 { +____off_t_23 ____pos_71;// L0 +____mbstate_t_68 ____state_72;// L0 }; -typedef struct ____anonymous_tag_1217_1218 ____fsid_t_1220;// L72:L134 -typedef long int ____clock_t_1221;// L93:L135 -typedef unsigned long int ____rlim_t_1222;// L94:L136 -typedef unsigned long int ____rlim64_t_1223;// L109:L137 -typedef unsigned int ____id_t_1224;// L92:L138 -typedef long int ____time_t_1225;// L93:L139 -typedef unsigned int ____useconds_t_1226;// L92:L140 -typedef long int ____suseconds_t_1227;// L93:L141 -typedef int ____daddr_t_1228;// L91:L143 -typedef int ____key_t_1229;// L91:L144 -typedef int ____clockid_t_1230;// L91:L147 -typedef void * (____timer_t_1231);// L70:L150 -typedef long int ____blksize_t_1232;// L93:L153 -typedef long int ____blkcnt_t_1233;// L93:L158 -typedef long int ____blkcnt64_t_1234;// L108:L159 -typedef unsigned long int ____fsblkcnt_t_1235;// L94:L162 -typedef unsigned long int ____fsblkcnt64_t_1236;// L109:L163 -typedef unsigned long int ____fsfilcnt_t_1237;// L94:L166 -typedef unsigned long int ____fsfilcnt64_t_1238;// L109:L167 -typedef long int ____fsword_t_1239;// L93:L170 -typedef long int ____ssize_t_1240;// L110:L172 -typedef long int ____syscall_slong_t_1241;// L93:L175 -typedef unsigned long int ____syscall_ulong_t_1242;// L94:L177 -typedef ____off64_t_1215 ____loff_t_1243;// L181 -typedef ____quad_t_1205 * (____qaddr_t_1245);// L182 -typedef char * (____caddr_t_1246);// L183 -typedef long int ____intptr_t_1247;// L110:L186 -typedef unsigned int ____socklen_t_1248;// L92:L189 -typedef struct __forward_tag_reference_1249 __FILE_1250;// L48 -typedef struct __forward_tag_reference_1249 ____FILE_1251;// L64 -union ____anonymous_tag_1252_1253 { -unsigned int ____wch_1254;// L265 -char ____wchb_1255[4];// L92 +typedef struct ____anonymous_tag_69_70 ___G_fpos_t_75;// L21:L25 +struct ____anonymous_tag_76_77 { +____off64_t_24 ____pos_78;// L0 +____mbstate_t_68 ____state_79;// L0 }; -struct ____anonymous_tag_1256_1257 { -int ____count_1258;// L84 -union ____anonymous_tag_1252_1253 ____value_1259;// L85 +typedef struct ____anonymous_tag_76_77 ___G_fpos64_t_81;// L26:L30 +typedef __builtin_va_list ____gnuc_va_list_82;// L40 +typedef void ___IO_lock_t_84;// L150 +struct ___IO_marker_86 { +struct __forward_tag_reference_85 * (___next_87);// L0 +struct __forward_tag_reference_57 * (___sbuf_88);// L0 +int ___pos_89;// L162 }; -typedef struct ____anonymous_tag_1256_1257 ____mbstate_t_1260;// L82:L94 -struct ____anonymous_tag_1261_1262 { -____off_t_1214 ____pos_1263;// L0 -____mbstate_t_1260 ____state_1265;// L0 +enum ____codecvt_result_94 { +____codecvt_ok_90, +____codecvt_partial_91, +____codecvt_error_92, +____codecvt_noconv_93, }; -typedef struct ____anonymous_tag_1261_1262 ___G_fpos_t_1268;// L21:L25 -struct ____anonymous_tag_1269_1270 { -____off64_t_1215 ____pos_1271;// L0 -____mbstate_t_1260 ____state_1273;// L0 +struct ___IO_FILE_95 { +int ___flags_96;// L242 +char * (___IO_read_ptr_97);// L247 +char * (___IO_read_end_98);// L248 +char * (___IO_read_base_99);// L249 +char * (___IO_write_base_100);// L250 +char * (___IO_write_ptr_101);// L251 +char * (___IO_write_end_102);// L252 +char * (___IO_buf_base_103);// L253 +char * (___IO_buf_end_104);// L254 +char * (___IO_save_base_105);// L256 +char * (___IO_backup_base_106);// L257 +char * (___IO_save_end_107);// L258 +struct ___IO_marker_86 * (___markers_108);// L260 +struct __forward_tag_reference_57 * (___chain_109);// L0 +int ___fileno_110;// L264 +int ___flags2_111;// L268 +____off_t_23 ___old_offset_112;// L0 +unsigned short ___cur_column_113;// L274 +signed char ___vtable_offset_114;// L275 +char ___shortbuf_115[1];// L276 +___IO_lock_t_84 * (___lock_116);// L0 }; -typedef struct ____anonymous_tag_1269_1270 ___G_fpos64_t_1276;// L26:L30 -typedef __builtin_va_list ____gnuc_va_list_1277;// L40 -typedef void ___IO_lock_t_1279;// L150 -struct ___IO_marker_1281 { -struct __forward_tag_reference_1280 * (___next_1282);// L0 -struct __forward_tag_reference_1249 * (___sbuf_1283);// L0 -int ___pos_1284;// L162 +struct ___IO_FILE_119 { +int ___flags_120;// L242 +char * (___IO_read_ptr_121);// L247 +char * (___IO_read_end_122);// L248 +char * (___IO_read_base_123);// L249 +char * (___IO_write_base_124);// L250 +char * (___IO_write_ptr_125);// L251 +char * (___IO_write_end_126);// L252 +char * (___IO_buf_base_127);// L253 +char * (___IO_buf_end_128);// L254 +char * (___IO_save_base_129);// L256 +char * (___IO_backup_base_130);// L257 +char * (___IO_save_end_131);// L258 +struct ___IO_marker_86 * (___markers_132);// L260 +struct __forward_tag_reference_57 * (___chain_133);// L0 +int ___fileno_134;// L264 +int ___flags2_135;// L268 +____off_t_23 ___old_offset_136;// L0 +unsigned short ___cur_column_137;// L274 +signed char ___vtable_offset_138;// L275 +char ___shortbuf_139[1];// L276 +___IO_lock_t_84 * (___lock_140);// L0 +____off64_t_24 ___offset_142;// L0 +void * (____pad1_143);// L297 +void * (____pad2_144);// L298 +void * (____pad3_145);// L299 +void * (____pad4_146);// L300 +__size_t_1 ____pad5_147;// L0 +int ___mode_148;// L303 +char ___unused2_149[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -enum ____codecvt_result_1289 { -____codecvt_ok_1285, -____codecvt_partial_1286, -____codecvt_error_1287, -____codecvt_noconv_1288, +struct ___IO_FILE_complete_150 { +struct ___IO_FILE_95 ___file_151;// L286 +____off64_t_24 ___offset_153;// L0 +void * (____pad1_154);// L297 +void * (____pad2_155);// L298 +void * (____pad3_156);// L299 +void * (____pad4_157);// L300 +__size_t_1 ____pad5_158;// L0 +int ___mode_159;// L303 +char ___unused2_160[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -struct ___IO_FILE_1290 { -int ___flags_1291;// L242 -char * (___IO_read_ptr_1292);// L247 -char * (___IO_read_end_1293);// L248 -char * (___IO_read_base_1294);// L249 -char * (___IO_write_base_1295);// L250 -char * (___IO_write_ptr_1296);// L251 -char * (___IO_write_end_1297);// L252 -char * (___IO_buf_base_1298);// L253 -char * (___IO_buf_end_1299);// L254 -char * (___IO_save_base_1300);// L256 -char * (___IO_backup_base_1301);// L257 -char * (___IO_save_end_1302);// L258 -struct ___IO_marker_1281 * (___markers_1303);// L260 -struct __forward_tag_reference_1249 * (___chain_1304);// L0 -int ___fileno_1305;// L264 -int ___flags2_1306;// L268 -____off_t_1214 ___old_offset_1307;// L0 -unsigned short ___cur_column_1309;// L274 -signed char ___vtable_offset_1310;// L275 -char ___shortbuf_1311[1];// L276 -___IO_lock_t_1279 * (___lock_1312);// L0 -}; -struct ___IO_FILE_1315 { -int ___flags_1316;// L242 -char * (___IO_read_ptr_1317);// L247 -char * (___IO_read_end_1318);// L248 -char * (___IO_read_base_1319);// L249 -char * (___IO_write_base_1320);// L250 -char * (___IO_write_ptr_1321);// L251 -char * (___IO_write_end_1322);// L252 -char * (___IO_buf_base_1323);// L253 -char * (___IO_buf_end_1324);// L254 -char * (___IO_save_base_1325);// L256 -char * (___IO_backup_base_1326);// L257 -char * (___IO_save_end_1327);// L258 -struct ___IO_marker_1281 * (___markers_1328);// L260 -struct __forward_tag_reference_1249 * (___chain_1329);// L0 -int ___fileno_1330;// L264 -int ___flags2_1331;// L268 -____off_t_1214 ___old_offset_1332;// L0 -unsigned short ___cur_column_1334;// L274 -signed char ___vtable_offset_1335;// L275 -char ___shortbuf_1336[1];// L276 -___IO_lock_t_1279 * (___lock_1337);// L0 -____off64_t_1215 ___offset_1339;// L0 -void * (____pad1_1341);// L297 -void * (____pad2_1342);// L298 -void * (____pad3_1343);// L299 -void * (____pad4_1344);// L300 -__size_t_1192 ____pad5_1345;// L0 -int ___mode_1346;// L303 -char ___unused2_1347[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 -}; -struct ___IO_FILE_complete_1348 { -struct ___IO_FILE_1290 ___file_1349;// L286 -____off64_t_1215 ___offset_1351;// L0 -void * (____pad1_1353);// L297 -void * (____pad2_1354);// L298 -void * (____pad3_1355);// L299 -void * (____pad4_1356);// L300 -__size_t_1192 ____pad5_1357;// L0 -int ___mode_1358;// L303 -char ___unused2_1359[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 -}; -typedef struct ___IO_FILE_1290 ___IO_FILE_1362;// L310 -typedef struct ___IO_FILE_1315 ___IO_FILE_1363;// L310 -typedef ____ssize_t_1240 (____io_read_fn_1372) (void * (____cookie_1369), char * (____buf_1370), __size_t_1192 ____nbytes_1371);// L333 -typedef ____ssize_t_1240 (____io_write_fn_1377) (void * (____cookie_1374), const char * (____buf_1375), __size_t_1192 ____n_1376);// L341:L342 -typedef int (____io_seek_fn_1383) (void * (____cookie_1379), ____off64_t_1215 * (____pos_1380), int ____w_1382);// L350 -typedef int (____io_close_fn_1386) (void * (____cookie_1385));// L353 -typedef ____gnuc_va_list_1277 __va_list_1470;// L79 -typedef ____off_t_1214 __off_t_1472;// L90 -typedef ____off64_t_1215 __off_t_1474;// L92 -typedef ____ssize_t_1240 __ssize_t_1476;// L102 -typedef ___G_fpos_t_1268 __fpos_t_1478;// L110 -typedef ___G_fpos64_t_1276 __fpos_t_1480;// L112 -extern const char * const __sys_errlist_2021[];// L27 - -struct __forward_tag_reference_1365 { // generated union of struct variations +typedef struct ___IO_FILE_95 ___IO_FILE_163;// L310 +typedef struct ___IO_FILE_119 ___IO_FILE_164;// L310 +typedef ____ssize_t_49 (____io_read_fn_173) (void * (____cookie_170), char * (____buf_171), __size_t_1 ____nbytes_172);// L333 +typedef ____ssize_t_49 (____io_write_fn_177) (void * (____cookie_174), const char * (____buf_175), __size_t_1 ____n_176);// L341:L342 +typedef int (____io_seek_fn_181) (void * (____cookie_178), ____off64_t_24 * (____pos_179), int ____w_180);// L350 +typedef int (____io_close_fn_183) (void * (____cookie_182));// L353 +typedef ____gnuc_va_list_82 __va_list_248;// L79 +typedef ____off_t_23 __off_t_250;// L90 +typedef ____off64_t_24 __off_t_251;// L92 +typedef ____ssize_t_49 __ssize_t_252;// L102 +typedef ___G_fpos_t_75 __fpos_t_253;// L110 +typedef ___G_fpos64_t_81 __fpos_t_255;// L112 +extern const char * const __sys_errlist_756[];// L27 + +struct __forward_tag_reference_57 { // generated union of struct variations union { +struct ___IO_FILE_95 ___IO_FILE_95; +struct ___IO_FILE_119 ___IO_FILE_119; }; }; -struct __forward_tag_reference_1278 { // generated union of struct variations +struct __forward_tag_reference_85 { // generated union of struct variations union { +struct ___IO_marker_86 ___IO_marker_86; }; }; -struct __forward_tag_reference_1249 { // generated union of struct variations +struct __forward_tag_reference_83 { // generated union of struct variations union { -struct ___IO_FILE_1290 ___IO_FILE_1290; -struct ___IO_FILE_1315 ___IO_FILE_1315; }; }; -struct __forward_tag_reference_1280 { // generated union of struct variations +struct __forward_tag_reference_166 { // generated union of struct variations union { -struct ___IO_marker_1281 ___IO_marker_1281; }; }; @@ -1849,1005 +916,6 @@ struct ___IO_marker_1281 ___IO_marker_1281; // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern __intmax_t_26 (__imaxabs_36) (__intmax_t_26 ____n_35);// L290 -extern __imaxdiv_t_33 (__imaxdiv_39) (__intmax_t_26 ____numer_37, __intmax_t_26 ____denom_38);// L293:L294 -extern __imaxdiv_t_34 (__imaxdiv_40) (__intmax_t_26 ____numer_37, __intmax_t_26 ____denom_38);// L293:L294 -extern __intmax_t_26 (__strtoimax_44) (const char * __restrict ____nptr_41, char * (* __restrict ____endptr_42), int ____base_43);// L297:L298 -extern __uintmax_t_27 (__strtoumax_48) (const char * __restrict ____nptr_45, char * (* __restrict ____endptr_46), int ____base_47);// L301:L302 -extern __intmax_t_26 (__wcstoimax_54) (const ____gwchar_t_28 * __restrict ____nptr_49, ____gwchar_t_28 * (* __restrict ____endptr_51), int ____base_53);// L305:L307 -extern __uintmax_t_27 (__wcstoumax_61) (const ____gwchar_t_28 * __restrict ____nptr_56, ____gwchar_t_28 * (* __restrict ____endptr_58), int ____base_60);// L310:L312 -extern long int (____strtol_internal_66) (const char * __restrict ____nptr_62, char * (* __restrict ____endptr_63), int ____base_64, int ____group_65);// L318:L321 -extern long int (____strtol_internal_67) (const char * __restrict ____nptr_62, char * (* __restrict ____endptr_63), int ____base_64, int ____group_65);// L318:L321 -/* no function due to type errors in the function prototype */ -extern unsigned long int (____strtoul_internal_75) (const char * __restrict ____nptr_71, char * (* __restrict ____endptr_72), int ____base_73, int ____group_74);// L330:L333 -extern unsigned long int (____strtoul_internal_76) (const char * __restrict ____nptr_71, char * (* __restrict ____endptr_72), int ____base_73, int ____group_74);// L330:L333 -/* no function due to type errors in the function prototype */ -extern long int (____wcstol_internal_86) (const ____gwchar_t_28 * __restrict ____nptr_80, ____gwchar_t_28 * (* __restrict ____endptr_82), int ____base_84, int ____group_85);// L342:L345 -extern long int (____wcstol_internal_88) (const ____gwchar_t_28 * __restrict ____nptr_80, ____gwchar_t_28 * (* __restrict ____endptr_82), int ____base_84, int ____group_85);// L342:L345 -/* no function due to type errors in the function prototype */ -extern unsigned long int (____wcstoul_internal_102) (const ____gwchar_t_28 * __restrict ____nptr_96, ____gwchar_t_28 * (* __restrict ____endptr_98), int ____base_100, int ____group_101);// L354:L359 -extern unsigned long int (____wcstoul_internal_104) (const ____gwchar_t_28 * __restrict ____nptr_96, ____gwchar_t_28 * (* __restrict ____endptr_98), int ____base_100, int ____group_101);// L354:L359 -/* no function due to type errors in the function prototype */ -static __inline__ void (___delay_loop_1_113) (__uint8_t_4 ____count_112);// L40 -static __inline__ void (___delay_loop_2_115) (__uint16_t_5 ____count_114);// L41 -void (___delay_loop_1_113) (__uint8_t_4 ____count_116) { - -if (__static_condition_default_118) { - -{ -{ - - - -__asm__ volatile ( "1: dec %0""\n\t""brne 1b" : "=r" ( ____count_116 ) : "0" ( ____count_116 ) ); -} -} - - -} -} -void (___delay_loop_1_117) (__uint8_t_4 ____count_116) { - -if (__static_condition_default_119) { - -{ -{ - - - -__asm__ volatile ( "1: dec %0""\n\t""brne 1b" : "=r" ( ____count_116 ) : "0" ( ____count_116 ) ); -} -} - - -} -} -void (___delay_loop_2_115) (__uint16_t_5 ____count_120) { - -if (__static_condition_default_118) { - -{ -{ - - - -__asm__ volatile ( "1: sbiw %0,1""\n\t""brne 1b" : "=w" ( ____count_120 ) : "0" ( ____count_120 ) ); -} -} - - -} -} -void (___delay_loop_2_121) (__uint16_t_5 ____count_120) { - -if (__static_condition_default_122) { - -{ -{ - - - -__asm__ volatile ( "1: sbiw %0,1""\n\t""brne 1b" : "=w" ( ____count_120 ) : "0" ( ____count_120 ) ); -} -} - - -} -} -// typedef moved to top of scope -// typedef moved to top of scope -extern double (__acos_126) (double ____x_125);// L68:L78 -extern double (____acos_128) (double ____x_127);// L54:L78 -extern double (__asin_130) (double ____x_129);// L68:L78 -extern double (____asin_132) (double ____x_131);// L56:L78 -extern double (__atan_134) (double ____x_133);// L68:L78 -extern double (____atan_136) (double ____x_135);// L58:L78 -extern double (__atan2_139) (double ____y_137, double ____x_138);// L68:L78 -extern double (____atan2_142) (double ____y_140, double ____x_141);// L60:L78 -extern double (__cos_144) (double ____x_143);// L68:L78 -extern double (__cos_145) (double ____x_143);// L68:L78 -extern double (____cos_147) (double ____x_146);// L63:L78 -extern double (__sin_149) (double ____x_148);// L68:L78 -extern double (__sin_150) (double ____x_148);// L68:L78 -extern double (____sin_152) (double ____x_151);// L65:L78 -extern double (__tan_154) (double ____x_153);// L68:L78 -extern double (____tan_156) (double ____x_155);// L67:L78 -extern double (__cosh_158) (double ____x_157);// L68:L78 -extern double (____cosh_160) (double ____x_159);// L72:L78 -extern double (__sinh_162) (double ____x_161);// L68:L78 -extern double (____sinh_164) (double ____x_163);// L74:L78 -extern double (__tanh_166) (double ____x_165);// L68:L78 -extern double (____tanh_168) (double ____x_167);// L76:L78 -extern double (__acosh_170) (double ____x_169);// L68:L78 -extern double (____acosh_172) (double ____x_171);// L76:L88 -extern double (__asinh_174) (double ____x_173);// L68:L78 -extern double (____asinh_176) (double ____x_175);// L76:L90 -extern double (__atanh_178) (double ____x_177);// L68:L78 -extern double (____atanh_180) (double ____x_179);// L76:L92 -extern double (__exp_182) (double ____x_181);// L68:L78 -extern double (__exp_183) (double ____x_181);// L68:L78 -extern double (____exp_185) (double ____x_184);// L76:L100 -extern double (__frexp_188) (double ____x_186, int * (____exponent_187));// L68:L78 -extern double (____frexp_191) (double ____x_189, int * (____exponent_190));// L76:L103 -extern double (__ldexp_194) (double ____x_192, int ____exponent_193);// L68:L78 -extern double (____ldexp_197) (double ____x_195, int ____exponent_196);// L76:L106 -extern double (__log_199) (double ____x_198);// L68:L78 -extern double (__log_200) (double ____x_198);// L68:L78 -extern double (____log_202) (double ____x_201);// L76:L109 -extern double (__log10_204) (double ____x_203);// L68:L78 -extern double (____log10_206) (double ____x_205);// L76:L112 -extern double (__modf_209) (double ____x_207, double * (____iptr_208));// L68:L78 -extern double (____modf_212) (double ____x_210, double * (____iptr_211));// L76:L115 -extern double (__expm1_214) (double ____x_213);// L68:L78 -extern double (____expm1_216) (double ____x_215);// L76:L128 -extern double (__log1p_218) (double ____x_217);// L68:L78 -extern double (____log1p_220) (double ____x_219);// L76:L131 -extern double (__logb_222) (double ____x_221);// L68:L78 -extern double (____logb_224) (double ____x_223);// L76:L134 -extern double (__exp2_226) (double ____x_225);// L68:L78 -extern double (____exp2_228) (double ____x_227);// L76:L141 -extern double (__log2_230) (double ____x_229);// L68:L78 -extern double (____log2_232) (double ____x_231);// L76:L144 -extern double (__pow_235) (double ____x_233, double ____y_234);// L68:L78 -extern double (__pow_236) (double ____x_233, double ____y_234);// L68:L78 -extern double (____pow_239) (double ____x_237, double ____y_238);// L76:L153 -extern double (__sqrt_241) (double ____x_240);// L68:L78 -extern double (____sqrt_243) (double ____x_242);// L76:L156 -extern double (__hypot_246) (double ____x_244, double ____y_245);// L68:L78 -extern double (____hypot_249) (double ____x_247, double ____y_248);// L76:L162 -extern double (__cbrt_251) (double ____x_250);// L68:L78 -extern double (____cbrt_253) (double ____x_252);// L76:L169 -extern double (__ceil_255) (double ____x_254);// L73:L78 -extern double (____ceil_257) (double ____x_256);// L76:L178 -extern double (__fabs_259) (double ____x_258);// L73:L78 -extern double (____fabs_261) (double ____x_260);// L76:L181 -extern double (__floor_263) (double ____x_262);// L73:L78 -extern double (____floor_265) (double ____x_264);// L76:L184 -extern double (__fmod_268) (double ____x_266, double ____y_267);// L68:L78 -extern double (____fmod_271) (double ____x_269, double ____y_270);// L76:L187 -extern int (____isinf_273) (double ____value_272);// L76:L192 -extern int (____finite_275) (double ____value_274);// L76:L195 -extern int (__isinf_277) (double ____value_276);// L76:L204 -extern int (__finite_279) (double ____value_278);// L76:L208 -extern double (__drem_282) (double ____x_280, double ____y_281);// L68:L78 -extern double (____drem_285) (double ____x_283, double ____y_284);// L76:L211 -extern double (__significand_287) (double ____x_286);// L68:L78 -extern double (____significand_289) (double ____x_288);// L76:L215 -extern double (__copysign_292) (double ____x_290, double ____y_291);// L73:L78 -extern double (__copysign_293) (double ____x_290, double ____y_291);// L73:L78 -extern double (____copysign_296) (double ____x_294, double ____y_295);// L76:L221 -extern double (__nan_298) (const char * (____tagb_297));// L73:L78 -extern double (____nan_300) (const char * (____tagb_299));// L76:L228 -extern int (____isnan_302) (double ____value_301);// L76:L234 -extern int (__isnan_304) (double ____value_303);// L76:L241 -extern double (__j0_305) (double );// L68:L78 -extern double (____j0_306) (double );// L76:L247 -extern double (__j1_307) (double );// L68:L78 -extern double (____j1_308) (double );// L76:L248 -extern double (__jn_309) (int , double );// L68:L78 -extern double (____jn_310) (int , double );// L76:L249 -extern double (__y0_311) (double );// L68:L78 -extern double (____y0_312) (double );// L76:L250 -extern double (__y1_313) (double );// L68:L78 -extern double (____y1_314) (double );// L76:L251 -extern double (__yn_315) (int , double );// L68:L78 -extern double (____yn_316) (int , double );// L76:L252 -extern double (__erf_317) (double );// L68:L78 -extern double (__erf_318) (double );// L68:L78 -extern double (____erf_319) (double );// L76:L259 -extern double (__erfc_320) (double );// L68:L78 -extern double (____erfc_321) (double );// L76:L260 -extern double (__lgamma_322) (double );// L68:L78 -extern double (____lgamma_323) (double );// L76:L261 -extern double (__tgamma_324) (double );// L68:L78 -extern double (____tgamma_325) (double );// L76:L268 -extern double (__gamma_326) (double );// L68:L78 -extern double (____gamma_327) (double );// L76:L274 -extern double (__lgamma_r_329) (double , int * (____signgamp_328));// L68:L78 -extern double (____lgamma_r_331) (double , int * (____signgamp_330));// L76:L281 -extern double (__rint_333) (double ____x_332);// L68:L78 -extern double (__rint_334) (double ____x_332);// L68:L78 -extern double (____rint_336) (double ____x_335);// L76:L289 -extern double (__nextafter_339) (double ____x_337, double ____y_338);// L73:L78 -extern double (____nextafter_342) (double ____x_340, double ____y_341);// L76:L292 -extern double (__nexttoward_345) (double ____x_343, long double ____y_344);// L73:L78 -extern double (____nexttoward_348) (double ____x_346, long double ____y_347);// L76:L294 -extern double (__remainder_351) (double ____x_349, double ____y_350);// L68:L78 -extern double (____remainder_354) (double ____x_352, double ____y_353);// L76:L298 -extern double (__scalbn_357) (double ____x_355, int ____n_356);// L68:L78 -extern double (____scalbn_360) (double ____x_358, int ____n_359);// L76:L302 -extern int (__ilogb_362) (double ____x_361);// L68:L306 -extern int (____ilogb_364) (double ____x_363);// L76:L306 -extern double (__scalbln_367) (double ____x_365, long int ____n_366);// L68:L78 -extern double (____scalbln_370) (double ____x_368, long int ____n_369);// L76:L311 -extern double (__nearbyint_372) (double ____x_371);// L68:L78 -extern double (____nearbyint_374) (double ____x_373);// L76:L315 -extern double (__round_376) (double ____x_375);// L73:L78 -extern double (____round_378) (double ____x_377);// L76:L319 -extern double (__trunc_380) (double ____x_379);// L73:L78 -extern double (____trunc_382) (double ____x_381);// L76:L323 -extern double (__remquo_386) (double ____x_383, double ____y_384, int * (____quo_385));// L68:L78 -extern double (____remquo_390) (double ____x_387, double ____y_388, int * (____quo_389));// L76:L328 -extern long int (__lrint_392) (double ____x_391);// L68:L335 -extern long int (____lrint_394) (double ____x_393);// L76:L335 -extern long long int (__llrint_396) (double ____x_395);// L68:L337 -extern long long int (____llrint_398) (double ____x_397);// L76:L337 -extern long int (__lround_400) (double ____x_399);// L68:L341 -extern long int (____lround_402) (double ____x_401);// L76:L341 -extern long long int (__llround_404) (double ____x_403);// L68:L343 -extern long long int (____llround_406) (double ____x_405);// L76:L343 -extern double (__fdim_409) (double ____x_407, double ____y_408);// L68:L78 -extern double (____fdim_412) (double ____x_410, double ____y_411);// L76:L347 -extern double (__fmax_415) (double ____x_413, double ____y_414);// L73:L78 -extern double (____fmax_418) (double ____x_416, double ____y_417);// L76:L350 -extern double (__fmin_421) (double ____x_419, double ____y_420);// L73:L78 -extern double (____fmin_424) (double ____x_422, double ____y_423);// L76:L353 -extern int (____fpclassify_426) (double ____value_425);// L76:L358 -extern int (____signbit_428) (double ____value_427);// L76:L362 -extern double (__fma_432) (double ____x_429, double ____y_430, double ____z_431);// L68:L78 -extern double (____fma_436) (double ____x_433, double ____y_434, double ____z_435);// L76:L366 -extern double (__scalb_439) (double ____x_437, double ____n_438);// L68:L78 -extern double (____scalb_442) (double ____x_440, double ____n_441);// L76:L383 -extern float (__acosf_444) (float ____x_443);// L68:L97 -extern float (__acosf_445) (float ____x_443);// L68:L97 -extern float (____acosf_447) (float ____x_446);// L54:L97 -extern float (__asinf_449) (float ____x_448);// L68:L97 -extern float (____asinf_451) (float ____x_450);// L56:L97 -extern float (__atanf_453) (float ____x_452);// L68:L97 -extern float (____atanf_455) (float ____x_454);// L58:L97 -extern float (__atan2f_458) (float ____y_456, float ____x_457);// L68:L97 -extern float (____atan2f_461) (float ____y_459, float ____x_460);// L60:L97 -extern float (__cosf_463) (float ____x_462);// L68:L97 -extern float (__cosf_464) (float ____x_462);// L68:L97 -extern float (____cosf_466) (float ____x_465);// L63:L97 -extern float (__sinf_468) (float ____x_467);// L68:L97 -extern float (__sinf_469) (float ____x_467);// L68:L97 -extern float (____sinf_471) (float ____x_470);// L65:L97 -extern float (__tanf_473) (float ____x_472);// L68:L97 -extern float (____tanf_475) (float ____x_474);// L67:L97 -extern float (__coshf_477) (float ____x_476);// L68:L97 -extern float (____coshf_479) (float ____x_478);// L72:L97 -extern float (__sinhf_481) (float ____x_480);// L68:L97 -extern float (____sinhf_483) (float ____x_482);// L74:L97 -extern float (__tanhf_485) (float ____x_484);// L68:L97 -extern float (____tanhf_487) (float ____x_486);// L76:L97 -extern float (__acoshf_489) (float ____x_488);// L68:L97 -extern float (____acoshf_491) (float ____x_490);// L76:L97 -extern float (__asinhf_493) (float ____x_492);// L68:L97 -extern float (____asinhf_495) (float ____x_494);// L76:L97 -extern float (__atanhf_497) (float ____x_496);// L68:L97 -extern float (____atanhf_499) (float ____x_498);// L76:L97 -extern float (__expf_501) (float ____x_500);// L68:L97 -extern float (__expf_502) (float ____x_500);// L68:L97 -extern float (____expf_504) (float ____x_503);// L76:L100 -extern float (__frexpf_507) (float ____x_505, int * (____exponent_506));// L68:L97 -extern float (____frexpf_510) (float ____x_508, int * (____exponent_509));// L76:L103 -extern float (__ldexpf_513) (float ____x_511, int ____exponent_512);// L68:L97 -extern float (____ldexpf_516) (float ____x_514, int ____exponent_515);// L76:L106 -extern float (__logf_518) (float ____x_517);// L68:L97 -extern float (__logf_519) (float ____x_517);// L68:L97 -extern float (____logf_521) (float ____x_520);// L76:L109 -extern float (__log10f_523) (float ____x_522);// L68:L97 -extern float (____log10f_525) (float ____x_524);// L76:L112 -extern float (__modff_528) (float ____x_526, float * (____iptr_527));// L68:L97 -extern float (____modff_531) (float ____x_529, float * (____iptr_530));// L76:L115 -extern float (__expm1f_533) (float ____x_532);// L68:L97 -extern float (____expm1f_535) (float ____x_534);// L76:L128 -extern float (__log1pf_537) (float ____x_536);// L68:L97 -extern float (____log1pf_539) (float ____x_538);// L76:L131 -extern float (__logbf_541) (float ____x_540);// L68:L97 -extern float (____logbf_543) (float ____x_542);// L76:L134 -extern float (__exp2f_545) (float ____x_544);// L68:L97 -extern float (____exp2f_547) (float ____x_546);// L76:L141 -extern float (__log2f_549) (float ____x_548);// L68:L97 -extern float (____log2f_551) (float ____x_550);// L76:L144 -extern float (__powf_554) (float ____x_552, float ____y_553);// L68:L97 -extern float (__powf_555) (float ____x_552, float ____y_553);// L68:L97 -extern float (____powf_558) (float ____x_556, float ____y_557);// L76:L153 -extern float (__sqrtf_560) (float ____x_559);// L68:L97 -extern float (____sqrtf_562) (float ____x_561);// L76:L156 -extern float (__hypotf_565) (float ____x_563, float ____y_564);// L68:L97 -extern float (____hypotf_568) (float ____x_566, float ____y_567);// L76:L162 -extern float (__cbrtf_570) (float ____x_569);// L68:L97 -extern float (____cbrtf_572) (float ____x_571);// L76:L169 -extern float (__ceilf_574) (float ____x_573);// L73:L97 -extern float (____ceilf_576) (float ____x_575);// L76:L178 -extern float (__fabsf_578) (float ____x_577);// L73:L97 -extern float (____fabsf_580) (float ____x_579);// L76:L181 -extern float (__floorf_582) (float ____x_581);// L73:L97 -extern float (____floorf_584) (float ____x_583);// L76:L184 -extern float (__fmodf_587) (float ____x_585, float ____y_586);// L68:L97 -extern float (____fmodf_590) (float ____x_588, float ____y_589);// L76:L187 -extern int (____isinff_592) (float ____value_591);// L76:L192 -extern int (____finitef_594) (float ____value_593);// L76:L195 -extern int (__isinff_596) (float ____value_595);// L76:L204 -extern int (__finitef_598) (float ____value_597);// L76:L208 -extern float (__dremf_601) (float ____x_599, float ____y_600);// L68:L97 -extern float (____dremf_604) (float ____x_602, float ____y_603);// L76:L211 -extern float (__significandf_606) (float ____x_605);// L68:L97 -extern float (____significandf_608) (float ____x_607);// L76:L215 -extern float (__copysignf_611) (float ____x_609, float ____y_610);// L73:L97 -extern float (__copysignf_612) (float ____x_609, float ____y_610);// L73:L97 -extern float (____copysignf_615) (float ____x_613, float ____y_614);// L76:L221 -extern float (__nanf_617) (const char * (____tagb_616));// L73:L97 -extern float (____nanf_619) (const char * (____tagb_618));// L76:L228 -extern int (____isnanf_621) (float ____value_620);// L76:L234 -extern int (__isnanf_623) (float ____value_622);// L76:L241 -extern float (__j0f_624) (float );// L68:L97 -extern float (____j0f_625) (float );// L76:L247 -extern float (__j1f_626) (float );// L68:L97 -extern float (____j1f_627) (float );// L76:L248 -extern float (__jnf_628) (int , float );// L68:L97 -extern float (____jnf_629) (int , float );// L76:L249 -extern float (__y0f_630) (float );// L68:L97 -extern float (____y0f_631) (float );// L76:L250 -extern float (__y1f_632) (float );// L68:L97 -extern float (____y1f_633) (float );// L76:L251 -extern float (__ynf_634) (int , float );// L68:L97 -extern float (____ynf_635) (int , float );// L76:L252 -extern float (__erff_636) (float );// L68:L97 -extern float (__erff_637) (float );// L68:L97 -extern float (____erff_638) (float );// L76:L259 -extern float (__erfcf_639) (float );// L68:L97 -extern float (____erfcf_640) (float );// L76:L260 -extern float (__lgammaf_641) (float );// L68:L97 -extern float (____lgammaf_642) (float );// L76:L261 -extern float (__tgammaf_643) (float );// L68:L97 -extern float (____tgammaf_644) (float );// L76:L268 -extern float (__gammaf_645) (float );// L68:L97 -extern float (____gammaf_646) (float );// L76:L274 -extern float (__lgammaf_r_648) (float , int * (____signgamp_647));// L68:L97 -extern float (____lgammaf_r_650) (float , int * (____signgamp_649));// L76:L281 -extern float (__rintf_652) (float ____x_651);// L68:L97 -extern float (__rintf_653) (float ____x_651);// L68:L97 -extern float (____rintf_655) (float ____x_654);// L76:L289 -extern float (__nextafterf_658) (float ____x_656, float ____y_657);// L73:L97 -extern float (____nextafterf_661) (float ____x_659, float ____y_660);// L76:L292 -extern float (__nexttowardf_664) (float ____x_662, long double ____y_663);// L73:L97 -extern float (____nexttowardf_667) (float ____x_665, long double ____y_666);// L76:L294 -extern float (__remainderf_670) (float ____x_668, float ____y_669);// L68:L97 -extern float (____remainderf_673) (float ____x_671, float ____y_672);// L76:L298 -extern float (__scalbnf_676) (float ____x_674, int ____n_675);// L68:L97 -extern float (____scalbnf_679) (float ____x_677, int ____n_678);// L76:L302 -extern int (__ilogbf_681) (float ____x_680);// L68:L306 -extern int (____ilogbf_683) (float ____x_682);// L76:L306 -extern float (__scalblnf_686) (float ____x_684, long int ____n_685);// L68:L97 -extern float (____scalblnf_689) (float ____x_687, long int ____n_688);// L76:L311 -extern float (__nearbyintf_691) (float ____x_690);// L68:L97 -extern float (____nearbyintf_693) (float ____x_692);// L76:L315 -extern float (__roundf_695) (float ____x_694);// L73:L97 -extern float (____roundf_697) (float ____x_696);// L76:L319 -extern float (__truncf_699) (float ____x_698);// L73:L97 -extern float (____truncf_701) (float ____x_700);// L76:L323 -extern float (__remquof_705) (float ____x_702, float ____y_703, int * (____quo_704));// L68:L97 -extern float (____remquof_709) (float ____x_706, float ____y_707, int * (____quo_708));// L76:L328 -extern long int (__lrintf_711) (float ____x_710);// L68:L335 -extern long int (____lrintf_713) (float ____x_712);// L76:L335 -extern long long int (__llrintf_715) (float ____x_714);// L68:L337 -extern long long int (____llrintf_717) (float ____x_716);// L76:L337 -extern long int (__lroundf_719) (float ____x_718);// L68:L341 -extern long int (____lroundf_721) (float ____x_720);// L76:L341 -extern long long int (__llroundf_723) (float ____x_722);// L68:L343 -extern long long int (____llroundf_725) (float ____x_724);// L76:L343 -extern float (__fdimf_728) (float ____x_726, float ____y_727);// L68:L97 -extern float (____fdimf_731) (float ____x_729, float ____y_730);// L76:L347 -extern float (__fmaxf_734) (float ____x_732, float ____y_733);// L73:L97 -extern float (____fmaxf_737) (float ____x_735, float ____y_736);// L76:L350 -extern float (__fminf_740) (float ____x_738, float ____y_739);// L73:L97 -extern float (____fminf_743) (float ____x_741, float ____y_742);// L76:L353 -extern int (____fpclassifyf_745) (float ____value_744);// L76:L358 -extern int (____signbitf_747) (float ____value_746);// L76:L362 -extern float (__fmaf_751) (float ____x_748, float ____y_749, float ____z_750);// L68:L97 -extern float (____fmaf_755) (float ____x_752, float ____y_753, float ____z_754);// L76:L366 -extern float (__scalbf_758) (float ____x_756, float ____n_757);// L68:L97 -extern float (____scalbf_761) (float ____x_759, float ____n_760);// L76:L383 -extern long double (__acosl_763) (long double ____x_762);// L68:L143 -extern long double (__acosl_764) (long double ____x_762);// L68:L143 -extern long double (____acosl_766) (long double ____x_765);// L54:L143 -extern long double (__asinl_768) (long double ____x_767);// L68:L143 -extern long double (____asinl_770) (long double ____x_769);// L56:L143 -extern long double (__atanl_772) (long double ____x_771);// L68:L143 -extern long double (____atanl_774) (long double ____x_773);// L58:L143 -extern long double (__atan2l_777) (long double ____y_775, long double ____x_776);// L68:L143 -extern long double (____atan2l_780) (long double ____y_778, long double ____x_779);// L60:L143 -extern long double (__cosl_782) (long double ____x_781);// L68:L143 -extern long double (____cosl_784) (long double ____x_783);// L63:L143 -extern long double (__sinl_786) (long double ____x_785);// L68:L143 -extern long double (____sinl_788) (long double ____x_787);// L65:L143 -extern long double (__tanl_790) (long double ____x_789);// L68:L143 -extern long double (____tanl_792) (long double ____x_791);// L67:L143 -extern long double (__coshl_794) (long double ____x_793);// L68:L143 -extern long double (____coshl_796) (long double ____x_795);// L72:L143 -extern long double (__sinhl_798) (long double ____x_797);// L68:L143 -extern long double (____sinhl_800) (long double ____x_799);// L74:L143 -extern long double (__tanhl_802) (long double ____x_801);// L68:L143 -extern long double (____tanhl_804) (long double ____x_803);// L76:L143 -extern long double (__acoshl_806) (long double ____x_805);// L68:L143 -extern long double (____acoshl_808) (long double ____x_807);// L76:L143 -extern long double (__asinhl_810) (long double ____x_809);// L68:L143 -extern long double (____asinhl_812) (long double ____x_811);// L76:L143 -extern long double (__atanhl_814) (long double ____x_813);// L68:L143 -extern long double (____atanhl_816) (long double ____x_815);// L76:L143 -extern long double (__expl_818) (long double ____x_817);// L68:L143 -extern long double (____expl_820) (long double ____x_819);// L76:L143 -extern long double (__frexpl_823) (long double ____x_821, int * (____exponent_822));// L68:L143 -extern long double (____frexpl_826) (long double ____x_824, int * (____exponent_825));// L76:L143 -extern long double (__ldexpl_829) (long double ____x_827, int ____exponent_828);// L68:L143 -extern long double (____ldexpl_832) (long double ____x_830, int ____exponent_831);// L76:L143 -extern long double (__logl_834) (long double ____x_833);// L68:L143 -extern long double (____logl_836) (long double ____x_835);// L76:L143 -extern long double (__log10l_838) (long double ____x_837);// L68:L143 -extern long double (____log10l_840) (long double ____x_839);// L76:L143 -extern long double (__modfl_843) (long double ____x_841, long double * (____iptr_842));// L68:L143 -extern long double (____modfl_846) (long double ____x_844, long double * (____iptr_845));// L76:L143 -extern long double (__expm1l_848) (long double ____x_847);// L68:L143 -extern long double (____expm1l_850) (long double ____x_849);// L76:L143 -extern long double (__log1pl_852) (long double ____x_851);// L68:L143 -extern long double (____log1pl_854) (long double ____x_853);// L76:L143 -extern long double (__logbl_856) (long double ____x_855);// L68:L143 -extern long double (____logbl_858) (long double ____x_857);// L76:L143 -extern long double (__exp2l_860) (long double ____x_859);// L68:L143 -extern long double (____exp2l_862) (long double ____x_861);// L76:L143 -extern long double (__log2l_864) (long double ____x_863);// L68:L143 -extern long double (____log2l_866) (long double ____x_865);// L76:L144 -extern long double (__powl_869) (long double ____x_867, long double ____y_868);// L68:L143 -extern long double (____powl_872) (long double ____x_870, long double ____y_871);// L76:L153 -extern long double (__sqrtl_874) (long double ____x_873);// L68:L143 -extern long double (____sqrtl_876) (long double ____x_875);// L76:L156 -extern long double (__hypotl_879) (long double ____x_877, long double ____y_878);// L68:L143 -extern long double (____hypotl_882) (long double ____x_880, long double ____y_881);// L76:L162 -extern long double (__cbrtl_884) (long double ____x_883);// L68:L143 -extern long double (____cbrtl_886) (long double ____x_885);// L76:L169 -extern long double (__ceill_888) (long double ____x_887);// L73:L143 -extern long double (____ceill_890) (long double ____x_889);// L76:L178 -extern long double (__fabsl_892) (long double ____x_891);// L73:L143 -extern long double (____fabsl_894) (long double ____x_893);// L76:L181 -extern long double (__floorl_896) (long double ____x_895);// L73:L143 -extern long double (____floorl_898) (long double ____x_897);// L76:L184 -extern long double (__fmodl_901) (long double ____x_899, long double ____y_900);// L68:L143 -extern long double (____fmodl_904) (long double ____x_902, long double ____y_903);// L76:L187 -extern int (____isinfl_906) (long double ____value_905);// L76:L192 -extern int (____finitel_908) (long double ____value_907);// L76:L195 -extern int (__isinfl_910) (long double ____value_909);// L76:L204 -extern int (__finitel_912) (long double ____value_911);// L76:L208 -extern long double (__dreml_915) (long double ____x_913, long double ____y_914);// L68:L143 -extern long double (____dreml_918) (long double ____x_916, long double ____y_917);// L76:L211 -extern long double (__significandl_920) (long double ____x_919);// L68:L143 -extern long double (____significandl_922) (long double ____x_921);// L76:L215 -extern long double (__copysignl_925) (long double ____x_923, long double ____y_924);// L73:L143 -extern long double (__copysignl_926) (long double ____x_923, long double ____y_924);// L73:L143 -extern long double (____copysignl_929) (long double ____x_927, long double ____y_928);// L76:L221 -extern long double (__nanl_931) (const char * (____tagb_930));// L73:L143 -extern long double (____nanl_933) (const char * (____tagb_932));// L76:L228 -extern int (____isnanl_935) (long double ____value_934);// L76:L234 -extern int (__isnanl_937) (long double ____value_936);// L76:L241 -extern long double (__j0l_938) (long double );// L68:L143 -extern long double (____j0l_939) (long double );// L76:L247 -extern long double (__j1l_940) (long double );// L68:L143 -extern long double (____j1l_941) (long double );// L76:L248 -extern long double (__jnl_942) (int , long double );// L68:L143 -extern long double (____jnl_943) (int , long double );// L76:L249 -extern long double (__y0l_944) (long double );// L68:L143 -extern long double (____y0l_945) (long double );// L76:L250 -extern long double (__y1l_946) (long double );// L68:L143 -extern long double (____y1l_947) (long double );// L76:L251 -extern long double (__ynl_948) (int , long double );// L68:L143 -extern long double (____ynl_949) (int , long double );// L76:L252 -extern long double (__erfl_950) (long double );// L68:L143 -extern long double (__erfl_951) (long double );// L68:L143 -extern long double (____erfl_952) (long double );// L76:L259 -extern long double (__erfcl_953) (long double );// L68:L143 -extern long double (____erfcl_954) (long double );// L76:L260 -extern long double (__lgammal_955) (long double );// L68:L143 -extern long double (____lgammal_956) (long double );// L76:L261 -extern long double (__tgammal_957) (long double );// L68:L143 -extern long double (____tgammal_958) (long double );// L76:L268 -extern long double (__gammal_959) (long double );// L68:L143 -extern long double (____gammal_960) (long double );// L76:L274 -extern long double (__lgammal_r_962) (long double , int * (____signgamp_961));// L68:L143 -extern long double (____lgammal_r_964) (long double , int * (____signgamp_963));// L76:L281 -extern long double (__rintl_966) (long double ____x_965);// L68:L143 -extern long double (__rintl_967) (long double ____x_965);// L68:L143 -extern long double (____rintl_969) (long double ____x_968);// L76:L289 -extern long double (__nextafterl_972) (long double ____x_970, long double ____y_971);// L73:L143 -extern long double (____nextafterl_975) (long double ____x_973, long double ____y_974);// L76:L292 -extern long double (__nexttowardl_978) (long double ____x_976, long double ____y_977);// L73:L143 -extern long double (____nexttowardl_981) (long double ____x_979, long double ____y_980);// L76:L294 -extern long double (__remainderl_984) (long double ____x_982, long double ____y_983);// L68:L143 -extern long double (____remainderl_987) (long double ____x_985, long double ____y_986);// L76:L298 -extern long double (__scalbnl_990) (long double ____x_988, int ____n_989);// L68:L143 -extern long double (____scalbnl_993) (long double ____x_991, int ____n_992);// L76:L302 -extern int (__ilogbl_995) (long double ____x_994);// L68:L306 -extern int (____ilogbl_997) (long double ____x_996);// L76:L306 -extern long double (__scalblnl_1000) (long double ____x_998, long int ____n_999);// L68:L143 -extern long double (____scalblnl_1003) (long double ____x_1001, long int ____n_1002);// L76:L311 -extern long double (__nearbyintl_1005) (long double ____x_1004);// L68:L143 -extern long double (____nearbyintl_1007) (long double ____x_1006);// L76:L315 -extern long double (__roundl_1009) (long double ____x_1008);// L73:L143 -extern long double (____roundl_1011) (long double ____x_1010);// L76:L319 -extern long double (__truncl_1013) (long double ____x_1012);// L73:L143 -extern long double (____truncl_1015) (long double ____x_1014);// L76:L323 -extern long double (__remquol_1019) (long double ____x_1016, long double ____y_1017, int * (____quo_1018));// L68:L143 -extern long double (____remquol_1023) (long double ____x_1020, long double ____y_1021, int * (____quo_1022));// L76:L328 -extern long int (__lrintl_1025) (long double ____x_1024);// L68:L335 -extern long int (____lrintl_1027) (long double ____x_1026);// L76:L335 -extern long long int (__llrintl_1029) (long double ____x_1028);// L68:L337 -extern long long int (____llrintl_1031) (long double ____x_1030);// L76:L337 -extern long int (__lroundl_1033) (long double ____x_1032);// L68:L341 -extern long int (____lroundl_1035) (long double ____x_1034);// L76:L341 -extern long long int (__llroundl_1037) (long double ____x_1036);// L68:L343 -extern long long int (____llroundl_1039) (long double ____x_1038);// L76:L343 -extern long double (__fdiml_1042) (long double ____x_1040, long double ____y_1041);// L68:L143 -extern long double (____fdiml_1045) (long double ____x_1043, long double ____y_1044);// L76:L347 -extern long double (__fmaxl_1048) (long double ____x_1046, long double ____y_1047);// L73:L143 -extern long double (____fmaxl_1051) (long double ____x_1049, long double ____y_1050);// L76:L350 -extern long double (__fminl_1054) (long double ____x_1052, long double ____y_1053);// L73:L143 -extern long double (____fminl_1057) (long double ____x_1055, long double ____y_1056);// L76:L353 -extern int (____fpclassifyl_1059) (long double ____value_1058);// L76:L358 -extern int (____signbitl_1061) (long double ____value_1060);// L76:L362 -extern long double (__fmal_1065) (long double ____x_1062, long double ____y_1063, long double ____z_1064);// L68:L143 -extern long double (____fmal_1069) (long double ____x_1066, long double ____y_1067, long double ____z_1068);// L76:L366 -extern long double (__scalbl_1072) (long double ____x_1070, long double ____n_1071);// L68:L143 -extern long double (____scalbl_1075) (long double ____x_1073, long double ____n_1074);// L76:L383 -extern int __signgam_1076;// L168 -enum ____anonymous_tag_1083_1084 ;// L209 -// typedef moved to top of scope -extern ___LIB_VERSION_TYPE_1092 ___LIB_VERSION_1093;// L359 -struct __exception_1094 ;// L372 -extern int (__matherr_1101) (struct __exception_1094 * (____exc_1100));// L385 -static __inline__ void (___delay_us_1103) (double ____us_1102);// L86 -static __inline__ void (___delay_ms_1105) (double ____ms_1104);// L87 -void (___delay_ms_1111) (double ____ms_1106) { - -if (__static_condition_default_1112) { - -{ -{ - - - -double ____tmp_1107;// L168 - -__uint32_t_6 ____ticks_dc_1108;// L172 - -extern void (____builtin_avr_delay_cycles_1109) (unsigned long );// L173 - -if (__static_condition_default_1113) { - ____tmp_1107 = ( ( 1000000UL ) / 1e3 ) * ____ms_1106 ; // L174 -} -if (__static_condition_default_1114) { -__static_type_error("type error : no valid expression"); // L174 -} -if (__static_condition_default_1115) { - ____ticks_dc_1108 = ( __uint32_t_6 ) ( __fabs_259 ( ____tmp_1107 ) + 0.5 ) ; // L180 -} -if (__static_condition_default_1116) { - ____ticks_dc_1108 = ( __uint32_t_6 ) __fabs_259 ( ____tmp_1107 ) ; // L177 -} -if (__static_condition_default_1117) { - ____ticks_dc_1108 = ( __uint32_t_6 ) ( __ceil_255 ( __fabs_259 ( ____tmp_1107 )) ) ; // L184 -} -__uint16_t_5 ____ticks_1110;// L190 - -if (__static_condition_default_1118) { - ____tmp_1107 = ( ( 1000000UL ) / 4e3 ) * ____ms_1106 ; // L191 -} -if (__static_condition_default_1119) { -__static_type_error("type error : no valid expression"); // L191 -} -if (__static_condition_default_1120) { -if ( ____tmp_1107 < 1.0 )// L192 -{ -if (__static_condition_default_1121) { - ____ticks_1110 = 1 ; // L193 -} -} -else -{ -if (__static_condition_default_1122) { -if ( ____tmp_1107 > 65535 )// L194 -{ -if (__static_condition_default_1123) { - -{ -{ - - - - ____ticks_1110 = ( __uint16_t_5 ) ( ____ms_1106 * 10.0 ) ; // L197 -while ( ____ticks_1110 )// L198 -{ - -{ -{ - - - -if (__static_condition_default_1124) { - ___delay_loop_2_121 (( ( 1000000UL ) / 4e3 ) / 10) ; // L201 -} -if (__static_condition_default_1125) { -__static_type_error("type error : no valid expression"); // L201 -} - ____ticks_1110 -- ; // L202 -} -} -} -return ;// L204 -} -} -} -} -else -{ -if (__static_condition_default_1126) { - ____ticks_1110 = ( __uint16_t_5 ) ____tmp_1107 ; // L207 -} -} -} -} -} -if (__static_condition_default_1127) { - ____builtin_avr_delay_cycles_1109 ( ____ticks_dc_1108 ) ; // L187 -} -if (__static_condition_default_1128) { - ___delay_loop_2_121 ( ____ticks_1110 ) ; // L208 -} -} -} - - -} -} -void (___delay_ms_1105) (double ____ms_1106) { - -if (__static_condition_default_1129) { - -{ -{ - - - -double ____tmp_1107;// L168 - -__uint32_t_6 ____ticks_dc_1108;// L172 - -extern void (____builtin_avr_delay_cycles_1109) (unsigned long );// L173 - -if (__static_condition_default_1130) { - ____tmp_1107 = ( ( 1000000UL ) / 1e3 ) * ____ms_1106 ; // L174 -} -if (__static_condition_default_1131) { -__static_type_error("type error : no valid expression"); // L174 -} -if (__static_condition_default_1132) { - ____ticks_dc_1108 = ( __uint32_t_6 ) ( __fabs_259 ( ____tmp_1107 ) + 0.5 ) ; // L180 -} -if (__static_condition_default_1133) { - ____ticks_dc_1108 = ( __uint32_t_6 ) __fabs_259 ( ____tmp_1107 ) ; // L177 -} -if (__static_condition_default_1134) { - ____ticks_dc_1108 = ( __uint32_t_6 ) ( __ceil_255 ( __fabs_259 ( ____tmp_1107 )) ) ; // L184 -} -__uint16_t_5 ____ticks_1110;// L190 - -if (__static_condition_default_1135) { - ____tmp_1107 = ( ( 1000000UL ) / 4e3 ) * ____ms_1106 ; // L191 -} -if (__static_condition_default_1136) { -__static_type_error("type error : no valid expression"); // L191 -} -if (__static_condition_default_1137) { -if ( ____tmp_1107 < 1.0 )// L192 -{ -if (__static_condition_default_1138) { - ____ticks_1110 = 1 ; // L193 -} -} -else -{ -if (__static_condition_default_1139) { -if ( ____tmp_1107 > 65535 )// L194 -{ -if (__static_condition_default_1140) { - -{ -{ - - - - ____ticks_1110 = ( __uint16_t_5 ) ( ____ms_1106 * 10.0 ) ; // L197 -while ( ____ticks_1110 )// L198 -{ - -{ -{ - - - -if (__static_condition_default_1141) { - ___delay_loop_2_115 (( ( 1000000UL ) / 4e3 ) / 10) ; // L201 -} -if (__static_condition_default_1142) { -__static_type_error("type error : no valid expression"); // L201 -} - ____ticks_1110 -- ; // L202 -} -} -} -return ;// L204 -} -} -} -} -else -{ -if (__static_condition_default_1143) { - ____ticks_1110 = ( __uint16_t_5 ) ____tmp_1107 ; // L207 -} -} -} -} -} -if (__static_condition_default_1144) { - ____builtin_avr_delay_cycles_1109 ( ____ticks_dc_1108 ) ; // L187 -} -if (__static_condition_default_1145) { - ___delay_loop_2_115 ( ____ticks_1110 ) ; // L208 -} -} -} - - -} -} -void (___delay_us_1103) (double ____us_1146) { - -if (__static_condition_default_1129) { - -{ -{ - - - -double ____tmp_1147;// L257 - -__uint32_t_6 ____ticks_dc_1148;// L261 - -extern void (____builtin_avr_delay_cycles_1149) (unsigned long );// L262 - -if (__static_condition_default_1154) { - ____tmp_1147 = ( ( 1000000UL ) / 1e6 ) * ____us_1146 ; // L263 -} -if (__static_condition_default_1155) { -__static_type_error("type error : no valid expression"); // L263 -} -if (__static_condition_default_1156) { - ____ticks_dc_1148 = ( __uint32_t_6 ) ( __fabs_259 ( ____tmp_1147 ) + 0.5 ) ; // L269 -} -if (__static_condition_default_1157) { - ____ticks_dc_1148 = ( __uint32_t_6 ) __fabs_259 ( ____tmp_1147 ) ; // L266 -} -if (__static_condition_default_1158) { - ____ticks_dc_1148 = ( __uint32_t_6 ) ( __ceil_255 ( __fabs_259 ( ____tmp_1147 )) ) ; // L273 -} -__uint8_t_4 ____ticks_1150;// L279 - -double ____tmp2_1151;// L280 - -if (__static_condition_default_1159) { - ____tmp_1147 = ( ( 1000000UL ) / 3e6 ) * ____us_1146 ; // L281 -} -if (__static_condition_default_1160) { -__static_type_error("type error : no valid expression"); // L281 -} -if (__static_condition_default_1161) { - ____tmp2_1151 = ( ( 1000000UL ) / 4e6 ) * ____us_1146 ; // L282 -} -if (__static_condition_default_1162) { -__static_type_error("type error : no valid expression"); // L282 -} -if (__static_condition_default_1163) { -if ( ____tmp_1147 < 1.0 )// L283 -{ -if (__static_condition_default_1164) { - ____ticks_1150 = 1 ; // L284 -} -} -else -{ -if (__static_condition_default_1165) { -if ( ____tmp2_1151 > 65535 )// L285 -{ -if (__static_condition_default_1166) { - -{ -{ - - - - ___delay_ms_1105 ( ____us_1146 / 1000.0) ; // L287 -} -} -} -} -else -{ -if (__static_condition_default_1167) { -if ( ____tmp_1147 > 255 )// L289 -{ -if (__static_condition_default_1168) { - -{ -{ - - - -__uint16_t_5 ____ticks_1152= ( __uint16_t_5 ) ____tmp2_1151 ;// L291 - - ___delay_loop_2_115 ( ____ticks_1152 ) ; // L292 -return ;// L293 -} -} -} -} -else -{ -if (__static_condition_default_1169) { - ____ticks_1150 = ( __uint8_t_4 ) ____tmp_1147 ; // L296 -} -} -} -} -} -} -} -if (__static_condition_default_1170) { - ____builtin_avr_delay_cycles_1149 ( ____ticks_dc_1148 ) ; // L276 -} -if (__static_condition_default_1171) { - ___delay_loop_1_113 ( ____ticks_1150 ) ; // L297 -} -} -} - - -} -} -void (___delay_us_1153) (double ____us_1146) { - -if (__static_condition_default_1172) { - -{ -{ - - - -double ____tmp_1147;// L257 - -__uint32_t_6 ____ticks_dc_1148;// L261 - -extern void (____builtin_avr_delay_cycles_1149) (unsigned long );// L262 - -if (__static_condition_default_1173) { - ____tmp_1147 = ( ( 1000000UL ) / 1e6 ) * ____us_1146 ; // L263 -} -if (__static_condition_default_1174) { -__static_type_error("type error : no valid expression"); // L263 -} -if (__static_condition_default_1175) { - ____ticks_dc_1148 = ( __uint32_t_6 ) ( __fabs_259 ( ____tmp_1147 ) + 0.5 ) ; // L269 -} -if (__static_condition_default_1176) { - ____ticks_dc_1148 = ( __uint32_t_6 ) __fabs_259 ( ____tmp_1147 ) ; // L266 -} -if (__static_condition_default_1177) { - ____ticks_dc_1148 = ( __uint32_t_6 ) ( __ceil_255 ( __fabs_259 ( ____tmp_1147 )) ) ; // L273 -} -__uint8_t_4 ____ticks_1150;// L279 - -double ____tmp2_1151;// L280 - -if (__static_condition_default_1178) { - ____tmp_1147 = ( ( 1000000UL ) / 3e6 ) * ____us_1146 ; // L281 -} -if (__static_condition_default_1179) { -__static_type_error("type error : no valid expression"); // L281 -} -if (__static_condition_default_1180) { - ____tmp2_1151 = ( ( 1000000UL ) / 4e6 ) * ____us_1146 ; // L282 -} -if (__static_condition_default_1181) { -__static_type_error("type error : no valid expression"); // L282 -} -if (__static_condition_default_1182) { -if ( ____tmp_1147 < 1.0 )// L283 -{ -if (__static_condition_default_1183) { - ____ticks_1150 = 1 ; // L284 -} -} -else -{ -if (__static_condition_default_1184) { -if ( ____tmp2_1151 > 65535 )// L285 -{ -if (__static_condition_default_1185) { - -{ -{ - - - - ___delay_ms_1111 ( ____us_1146 / 1000.0) ; // L287 -} -} -} -} -else -{ -if (__static_condition_default_1186) { -if ( ____tmp_1147 > 255 )// L289 -{ -if (__static_condition_default_1187) { - -{ -{ - - - -__uint16_t_5 ____ticks_1152= ( __uint16_t_5 ) ____tmp2_1151 ;// L291 - - ___delay_loop_2_121 ( ____ticks_1152 ) ; // L292 -return ;// L293 -} -} -} -} -else -{ -if (__static_condition_default_1188) { - ____ticks_1150 = ( __uint8_t_4 ) ____tmp_1147 ; // L296 -} -} -} -} -} -} -} -if (__static_condition_default_1189) { - ____builtin_avr_delay_cycles_1149 ( ____ticks_dc_1148 ) ; // L276 -} -if (__static_condition_default_1190) { - ___delay_loop_1_117 ( ____ticks_1150 ) ; // L297 -} -} -} - - -} -} -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope @@ -2871,235 +939,225 @@ if (__static_condition_default_1190) { // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope +struct __forward_tag_reference_57 ;// L0 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope +struct __forward_tag_reference_83 ;// L0 +struct __forward_tag_reference_83 ;// L0 +struct __forward_tag_reference_57 ;// L0 // typedef moved to top of scope +struct ___IO_marker_86 ;// L156 +enum ____codecvt_result_94 ;// L176 +struct ___IO_FILE_95 ;// L241 + +struct ___IO_FILE_119 ;// L241 +struct ___IO_FILE_complete_150 ;// L241 + // typedef moved to top of scope // typedef moved to top of scope +struct __forward_tag_reference_166 ;// L0 +extern struct __forward_tag_reference_166 ___IO_2_1_stdin__167;// L315 +extern struct __forward_tag_reference_166 ___IO_2_1_stdout__168;// L316 +extern struct __forward_tag_reference_166 ___IO_2_1_stderr__169;// L317 // typedef moved to top of scope -struct __forward_tag_reference_1249 ;// L0 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope +extern int (____underflow_184) (___IO_FILE_163 *);// L385 +extern int (____underflow_185) (___IO_FILE_164 *);// L385 +extern int (____uflow_186) (___IO_FILE_163 *);// L386 +extern int (____uflow_187) (___IO_FILE_164 *);// L386 +extern int (____overflow_188) (___IO_FILE_163 *, int );// L387 +extern int (____overflow_189) (___IO_FILE_164 *, int );// L387 +extern int (___IO_getc_193) (___IO_FILE_163 * (____fp_190));// L429 +extern int (___IO_getc_194) (___IO_FILE_164 * (____fp_191));// L429 +extern int (___IO_putc_199) (int ____c_195, ___IO_FILE_163 * (____fp_196));// L430 +extern int (___IO_putc_200) (int ____c_195, ___IO_FILE_164 * (____fp_197));// L430 +extern int (___IO_feof_204) (___IO_FILE_163 * (____fp_201));// L431 +extern int (___IO_feof_205) (___IO_FILE_164 * (____fp_202));// L431 +extern int (___IO_ferror_209) (___IO_FILE_163 * (____fp_206));// L432 +extern int (___IO_ferror_210) (___IO_FILE_164 * (____fp_207));// L432 +extern int (___IO_peekc_locked_214) (___IO_FILE_163 * (____fp_211));// L434 +extern int (___IO_peekc_locked_215) (___IO_FILE_164 * (____fp_212));// L434 +extern void (___IO_flockfile_216) (___IO_FILE_163 *);// L440 +extern void (___IO_flockfile_217) (___IO_FILE_164 *);// L440 +extern void (___IO_funlockfile_218) (___IO_FILE_163 *);// L441 +extern void (___IO_funlockfile_219) (___IO_FILE_164 *);// L441 +extern int (___IO_ftrylockfile_220) (___IO_FILE_163 *);// L442 +extern int (___IO_ftrylockfile_221) (___IO_FILE_164 *);// L442 +extern int (___IO_vfscanf_222) (___IO_FILE_163 * __restrict , const char * __restrict , ____gnuc_va_list_82 , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_224) (___IO_FILE_164 * __restrict , const char * __restrict , ____gnuc_va_list_82 , int * __restrict );// L459:L460 + + +extern int (___IO_vfprintf_231) (___IO_FILE_163 * __restrict , const char * __restrict , ____gnuc_va_list_82 );// L461:L462 +extern int (___IO_vfprintf_233) (___IO_FILE_164 * __restrict , const char * __restrict , ____gnuc_va_list_82 );// L461:L462 + +extern ____ssize_t_49 (___IO_padn_238) (___IO_FILE_163 *, int , ____ssize_t_49 );// L463 +extern ____ssize_t_49 (___IO_padn_239) (___IO_FILE_164 *, int , ____ssize_t_49 );// L463 +extern __size_t_1 (___IO_sgetn_240) (___IO_FILE_163 *, void *, __size_t_1 );// L464 +extern __size_t_1 (___IO_sgetn_241) (___IO_FILE_164 *, void *, __size_t_1 );// L464 +extern ____off64_t_24 (___IO_seekoff_242) (___IO_FILE_163 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekoff_243) (___IO_FILE_164 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekpos_244) (___IO_FILE_163 *, ____off64_t_24 , int );// L467 +extern ____off64_t_24 (___IO_seekpos_245) (___IO_FILE_164 *, ____off64_t_24 , int );// L467 +extern void (___IO_free_backup_area_246) (___IO_FILE_163 *);// L469 +extern void (___IO_free_backup_area_247) (___IO_FILE_164 *);// L469 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_1278 ;// L0 -struct __forward_tag_reference_1278 ;// L0 -struct __forward_tag_reference_1249 ;// L0 // typedef moved to top of scope -struct ___IO_marker_1281 ;// L156 -enum ____codecvt_result_1289 ;// L176 -struct ___IO_FILE_1290 ;// L241 - -struct ___IO_FILE_1315 ;// L241 -struct ___IO_FILE_complete_1348 ;// L241 - // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_1365 ;// L0 -extern struct __forward_tag_reference_1365 ___IO_2_1_stdin__1366;// L315 -extern struct __forward_tag_reference_1365 ___IO_2_1_stdout__1367;// L316 -extern struct __forward_tag_reference_1365 ___IO_2_1_stderr__1368;// L317 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern int (____underflow_1387) (___IO_FILE_1362 *);// L385 -extern int (____underflow_1388) (___IO_FILE_1363 *);// L385 -extern int (____uflow_1390) (___IO_FILE_1362 *);// L386 -extern int (____uflow_1391) (___IO_FILE_1363 *);// L386 -extern int (____overflow_1393) (___IO_FILE_1362 *, int );// L387 -extern int (____overflow_1394) (___IO_FILE_1363 *, int );// L387 -extern int (___IO_getc_1399) (___IO_FILE_1362 * (____fp_1396));// L429 -extern int (___IO_getc_1400) (___IO_FILE_1363 * (____fp_1397));// L429 -extern int (___IO_putc_1406) (int ____c_1402, ___IO_FILE_1362 * (____fp_1403));// L430 -extern int (___IO_putc_1407) (int ____c_1402, ___IO_FILE_1363 * (____fp_1404));// L430 -extern int (___IO_feof_1412) (___IO_FILE_1362 * (____fp_1409));// L431 -extern int (___IO_feof_1413) (___IO_FILE_1363 * (____fp_1410));// L431 -extern int (___IO_ferror_1418) (___IO_FILE_1362 * (____fp_1415));// L432 -extern int (___IO_ferror_1419) (___IO_FILE_1363 * (____fp_1416));// L432 -extern int (___IO_peekc_locked_1424) (___IO_FILE_1362 * (____fp_1421));// L434 -extern int (___IO_peekc_locked_1425) (___IO_FILE_1363 * (____fp_1422));// L434 -extern void (___IO_flockfile_1427) (___IO_FILE_1362 *);// L440 -extern void (___IO_flockfile_1428) (___IO_FILE_1363 *);// L440 -extern void (___IO_funlockfile_1430) (___IO_FILE_1362 *);// L441 -extern void (___IO_funlockfile_1431) (___IO_FILE_1363 *);// L441 -extern int (___IO_ftrylockfile_1433) (___IO_FILE_1362 *);// L442 -extern int (___IO_ftrylockfile_1434) (___IO_FILE_1363 *);// L442 -extern int (___IO_vfscanf_1436) (___IO_FILE_1362 * __restrict , const char * __restrict , ____gnuc_va_list_1277 , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_1438) (___IO_FILE_1363 * __restrict , const char * __restrict , ____gnuc_va_list_1277 , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_1442) (___IO_FILE_1362 * __restrict , const char * __restrict , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_1443) (___IO_FILE_1363 * __restrict , const char * __restrict , int * __restrict );// L459:L460 -extern int (___IO_vfprintf_1445) (___IO_FILE_1362 * __restrict , const char * __restrict , ____gnuc_va_list_1277 );// L461:L462 -extern int (___IO_vfprintf_1447) (___IO_FILE_1363 * __restrict , const char * __restrict , ____gnuc_va_list_1277 );// L461:L462 -extern int (___IO_vfprintf_1451) ();// L461:L462 -extern ____ssize_t_1240 (___IO_padn_1452) (___IO_FILE_1362 *, int , ____ssize_t_1240 );// L463 -extern ____ssize_t_1240 (___IO_padn_1453) (___IO_FILE_1363 *, int , ____ssize_t_1240 );// L463 -extern __size_t_1192 (___IO_sgetn_1456) (___IO_FILE_1362 *, void *, __size_t_1192 );// L464 -extern __size_t_1192 (___IO_sgetn_1457) (___IO_FILE_1363 *, void *, __size_t_1192 );// L464 -extern ____off64_t_1215 (___IO_seekoff_1459) (___IO_FILE_1362 *, ____off64_t_1215 , int , int );// L466 -extern ____off64_t_1215 (___IO_seekoff_1460) (___IO_FILE_1363 *, ____off64_t_1215 , int , int );// L466 -extern ____off64_t_1215 (___IO_seekpos_1463) (___IO_FILE_1362 *, ____off64_t_1215 , int );// L467 -extern ____off64_t_1215 (___IO_seekpos_1464) (___IO_FILE_1363 *, ____off64_t_1215 , int );// L467 -extern void (___IO_free_backup_area_1467) (___IO_FILE_1362 *);// L469 -extern void (___IO_free_backup_area_1468) (___IO_FILE_1363 *);// L469 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern struct ___IO_FILE_1290 * (__stdin_1482);// L168 -extern struct ___IO_FILE_1315 * (__stdin_1483);// L168 -extern struct ___IO_FILE_1290 * (__stdout_1485);// L169 -extern struct ___IO_FILE_1315 * (__stdout_1486);// L169 -extern struct ___IO_FILE_1290 * (__stderr_1488);// L170 -extern struct ___IO_FILE_1315 * (__stderr_1489);// L170 -extern int (__remove_1492) (const char * (____filename_1491));// L178 -extern int (__rename_1495) (const char * (____old_1493), const char * (____new_1494));// L180 -extern int (__renameat_1500) (int ____oldfd_1496, const char * (____old_1497), int ____newfd_1498, const char * (____new_1499));// L185:L186 -extern __FILE_1250 * ((__tmpfile_1501) (void ));// L195 -extern __FILE_1250 * ((__tmpfile_1507) (void ));// L198 -extern __FILE_1250 * ((__tmpfile_1505) (void ));// L195 -extern __FILE_1250 * ((__tmpfile_1503) (void ));// L198 -extern char * ((__tmpnam_1510) (char * (____s_1509)));// L209 -extern char * ((__tmpnam_1511) (char * (____s_1509)));// L209 -extern char * ((__tmpnam_r_1513) (char * (____s_1512)));// L215 -extern char * ((__tmpnam_r_1514) (char * (____s_1512)));// L215 -extern char * ((__tempnam_1517) (const char * (____dir_1515), const char * (____pfx_1516)));// L227:L228 -extern char * ((__tempnam_1518) (const char * (____dir_1515), const char * (____pfx_1516)));// L227:L228 -extern int (__fclose_1521) (__FILE_1250 * (____stream_1519));// L237 -extern int (__fclose_1523) (__FILE_1250 * (____stream_1519));// L237 -extern int (__fflush_1527) (__FILE_1250 * (____stream_1525));// L242 -extern int (__fflush_unlocked_1531) (__FILE_1250 * (____stream_1529));// L252 -extern __FILE_1250 * ((__fopen_1535) (const char * __restrict ____filename_1533, const char * __restrict ____modes_1534));// L272:L273 -extern __FILE_1250 * ((__fopen_1537) (const char * __restrict ____filename_1533, const char * __restrict ____modes_1534));// L272:L273 -extern __FILE_1250 * ((__fopen_1545) (const char * __restrict ____filename_1543, const char * __restrict ____modes_1544));// L283:L285 -extern __FILE_1250 * ((__fopen_1547) (const char * __restrict ____filename_1543, const char * __restrict ____modes_1544));// L283:L285 -extern __FILE_1250 * ((__freopen_1553) (const char * __restrict ____filename_1539, const char * __restrict ____modes_1540, __FILE_1250 * __restrict ____stream_1541));// L278:L280 -extern __FILE_1250 * ((__freopen_1559) (const char * __restrict ____filename_1539, const char * __restrict ____modes_1540, __FILE_1250 * __restrict ____stream_1541));// L278:L280 -extern __FILE_1250 * ((__freopen_1557) (const char * __restrict ____filename_1549, const char * __restrict ____modes_1550, __FILE_1250 * __restrict ____stream_1551));// L286:L289 -extern __FILE_1250 * ((__freopen_1555) (const char * __restrict ____filename_1549, const char * __restrict ____modes_1550, __FILE_1250 * __restrict ____stream_1551));// L286:L289 -extern __FILE_1250 * ((__fdopen_1563) (int ____fd_1561, const char * (____modes_1562)));// L306 -extern __FILE_1250 * ((__fdopen_1565) (int ____fd_1561, const char * (____modes_1562)));// L306 -extern __FILE_1250 * ((__fmemopen_1570) (void * (____s_1567), __size_t_1192 ____len_1568, const char * (____modes_1569)));// L319:L320 -extern __FILE_1250 * ((__fmemopen_1572) (void * (____s_1567), __size_t_1192 ____len_1568, const char * (____modes_1569)));// L319:L320 -extern __FILE_1250 * ((__open_memstream_1576) (char * (* (____bufloc_1574)), __size_t_1192 * (____sizeloc_1575)));// L325 -extern __FILE_1250 * ((__open_memstream_1578) (char * (* (____bufloc_1574)), __size_t_1192 * (____sizeloc_1575)));// L325 -extern void (__setbuf_1583) (__FILE_1250 * __restrict ____stream_1580, char * __restrict ____buf_1582);// L332 -extern void (__setbuf_1585) (__FILE_1250 * __restrict ____stream_1580, char * __restrict ____buf_1582);// L332 -extern int (__setvbuf_1592) (__FILE_1250 * __restrict ____stream_1587, char * __restrict ____buf_1589, int ____modes_1590, __size_t_1192 ____n_1591);// L336:L337 -extern void (__setbuffer_1598) (__FILE_1250 * __restrict ____stream_1594, char * __restrict ____buf_1596, __size_t_1192 ____size_1597);// L343:L344 -extern void (__setlinebuf_1602) (__FILE_1250 * (____stream_1600));// L347 -extern int (__fprintf_1607) (__FILE_1250 * __restrict ____stream_1604, const char * __restrict ____format_1606, ... );// L356:L357 -extern int (__fprintf_1609) (__FILE_1250 * __restrict ____stream_1604, const char * __restrict ____format_1606, ... );// L356:L357 -extern int (__printf_1612) (const char * __restrict ____format_1611, ... );// L362 -extern int (__sprintf_1615) (char * __restrict ____s_1613, const char * __restrict ____format_1614, ... );// L364:L365 -extern int (__vfprintf_1621) (__FILE_1250 * __restrict ____s_1616, const char * __restrict ____format_1618, ____gnuc_va_list_1277 ____arg_1619);// L371:L372 -extern int (__vprintf_1628) (const char * __restrict ____format_1625, ____gnuc_va_list_1277 ____arg_1626);// L377 -extern int (__vsprintf_1634) (char * __restrict ____s_1630, const char * __restrict ____format_1631, ____gnuc_va_list_1277 ____arg_1632);// L379:L380 -extern int (__snprintf_1639) (char * __restrict ____s_1636, __size_t_1192 ____maxlen_1637, const char * __restrict ____format_1638, ... );// L386:L388 -extern int (__vsnprintf_1645) (char * __restrict ____s_1640, __size_t_1192 ____maxlen_1641, const char * __restrict ____format_1642, ____gnuc_va_list_1277 ____arg_1643);// L390:L392 -extern int (__vdprintf_1651) (int ____fd_1647, const char * __restrict ____fmt_1648, ____gnuc_va_list_1277 ____arg_1649);// L412:L414 -extern int (__dprintf_1655) (int ____fd_1653, const char * __restrict ____fmt_1654, ... );// L415:L416 -extern int (__fscanf_1659) (__FILE_1250 * __restrict ____stream_1656, const char * __restrict ____format_1658, ... );// L425:L426 -extern int (__fscanf_1661) (__FILE_1250 * __restrict ____stream_1656, const char * __restrict ____format_1658, ... );// L425:L426 -extern int (__fscanf_1663) (__FILE_1250 * __restrict ____stream_1656, const char * __restrict ____format_1658, ... );// L425:L426 -extern int (__fscanf_1665) (__FILE_1250 * __restrict ____stream_1656, const char * __restrict ____format_1658, ... );// L425:L426 -extern int (__scanf_1668) (const char * __restrict ____format_1667, ... );// L431 -extern int (__scanf_1669) (const char * __restrict ____format_1667, ... );// L431 -extern int (__sscanf_1672) (const char * __restrict ____s_1670, const char * __restrict ____format_1671, ... );// L433:L434 - - - - - - - -extern int (__vfscanf_1700) (__FILE_1250 * __restrict ____s_1695, const char * __restrict ____format_1697, ____gnuc_va_list_1277 ____arg_1698);// L471:L473 -extern int (__vfscanf_1704) (__FILE_1250 * __restrict ____s_1695, const char * __restrict ____format_1697, ____gnuc_va_list_1277 ____arg_1698);// L471:L473 -extern int (__vscanf_1711) (const char * __restrict ____format_1708, ____gnuc_va_list_1277 ____arg_1709);// L479:L480 -extern int (__vscanf_1713) (const char * __restrict ____format_1708, ____gnuc_va_list_1277 ____arg_1709);// L479:L480 -extern int (__vsscanf_1719) (const char * __restrict ____s_1715, const char * __restrict ____format_1716, ____gnuc_va_list_1277 ____arg_1717);// L483:L485 - - - - - -extern int (__fgetc_1754) (__FILE_1250 * (____stream_1752));// L531 -extern int (__getc_1758) (__FILE_1250 * (____stream_1756));// L532 -extern int (__getchar_1760) (void );// L538 -extern int (__getc_unlocked_1763) (__FILE_1250 * (____stream_1761));// L550 -extern int (__getchar_unlocked_1765) (void );// L551 -extern int (__fgetc_unlocked_1768) (__FILE_1250 * (____stream_1766));// L561 -extern int (__fputc_1773) (int ____c_1770, __FILE_1250 * (____stream_1771));// L573 -extern int (__fputc_1775) (int ____c_1770, __FILE_1250 * (____stream_1771));// L573 -extern int (__putc_1780) (int ____c_1777, __FILE_1250 * (____stream_1778));// L574 -extern int (__putchar_1783) (int ____c_1782);// L580 -extern int (__fputc_unlocked_1787) (int ____c_1784, __FILE_1250 * (____stream_1785));// L594 -extern int (__putc_unlocked_1792) (int ____c_1789, __FILE_1250 * (____stream_1790));// L602 -extern int (__putchar_unlocked_1795) (int ____c_1794);// L603 -extern int (__getw_1798) (__FILE_1250 * (____stream_1796));// L610 -extern int (__putw_1803) (int ____w_1800, __FILE_1250 * (____stream_1801));// L613 -extern char * ((__fgets_1809) (char * __restrict ____s_1805, int ____n_1806, __FILE_1250 * __restrict ____stream_1807));// L622:L623 -extern char * ((__fgets_1811) (char * __restrict ____s_1805, int ____n_1806, __FILE_1250 * __restrict ____stream_1807));// L622:L623 -extern char * ((__fgets_1813) (char * __restrict ____s_1805, int ____n_1806, __FILE_1250 * __restrict ____stream_1807));// L622:L623 -extern char * ((__fgets_1815) (char * __restrict ____s_1805, int ____n_1806, __FILE_1250 * __restrict ____stream_1807));// L622:L623 -extern ____ssize_t_1240 (____getdelim_1822) (char * (* __restrict ____lineptr_1817), __size_t_1192 * __restrict ____n_1818, int ____delimiter_1819, __FILE_1250 * __restrict ____stream_1820);// L665:L667 -extern ____ssize_t_1240 (____getdelim_1826) (char * (* __restrict ____lineptr_1817), __size_t_1192 * __restrict ____n_1818, int ____delimiter_1819, __FILE_1250 * __restrict ____stream_1820);// L665:L667 -extern ____ssize_t_1240 (__getdelim_1835) (char * (* __restrict ____lineptr_1830), __size_t_1192 * __restrict ____n_1831, int ____delimiter_1832, __FILE_1250 * __restrict ____stream_1833);// L668:L670 -extern ____ssize_t_1240 (__getdelim_1839) (char * (* __restrict ____lineptr_1830), __size_t_1192 * __restrict ____n_1831, int ____delimiter_1832, __FILE_1250 * __restrict ____stream_1833);// L668:L670 -extern ____ssize_t_1240 (__getline_1847) (char * (* __restrict ____lineptr_1843), __size_t_1192 * __restrict ____n_1844, __FILE_1250 * __restrict ____stream_1845);// L678:L680 -extern ____ssize_t_1240 (__getline_1851) (char * (* __restrict ____lineptr_1843), __size_t_1192 * __restrict ____n_1844, __FILE_1250 * __restrict ____stream_1845);// L678:L680 -extern int (__fputs_1858) (const char * __restrict ____s_1855, __FILE_1250 * __restrict ____stream_1856);// L689 -extern int (__fputs_1860) (const char * __restrict ____s_1855, __FILE_1250 * __restrict ____stream_1856);// L689 -extern int (__puts_1863) (const char * (____s_1862));// L695 -extern int (__ungetc_1867) (int ____c_1864, __FILE_1250 * (____stream_1865));// L702 -extern int (__fseek_1905) (__FILE_1250 * (____stream_1901), long int ____off_1903, int ____whence_1904);// L749 -extern int (__fseek_1907) (__FILE_1250 * (____stream_1901), long int ____off_1903, int ____whence_1904);// L749 -extern long int (__ftell_1911) (__FILE_1250 * (____stream_1909));// L754 -extern long int (__ftell_1913) (__FILE_1250 * (____stream_1909));// L754 -extern void (__rewind_1917) (__FILE_1250 * (____stream_1915));// L759 -extern int (__fseeko_1924) (__FILE_1250 * (____stream_1919), ____off_t_1214 ____off_1921, int ____whence_1923);// L773 -extern int (__fseeko_1935) (__FILE_1250 * (____stream_1930), ____off64_t_1215 ____off_1932, int ____whence_1934);// L781:L783 -extern ____off_t_1214 (__ftello_1949) (__FILE_1250 * (____stream_1928));// L778 -extern ____off_t_1214 (__ftello_1941) (__FILE_1250 * (____stream_1928));// L778 -extern int (__fgetpos_1957) (__FILE_1250 * __restrict ____stream_1953, __fpos_t_1478 * __restrict ____pos_1955);// L798 -extern ____off64_t_1215 (__ftello_1945) (__FILE_1250 * (____stream_1939));// L784 -extern int (__fgetpos_1969) (__FILE_1250 * __restrict ____stream_1965, __fpos_t_1480 * __restrict ____pos_1967);// L806:L807 -extern int (__fsetpos_1977) (__FILE_1250 * (____stream_1961), const __fpos_t_1478 * (____pos_1963));// L803 -extern int (__fsetpos_1981) (__FILE_1250 * (____stream_1973), const __fpos_t_1480 * (____pos_1975));// L808:L809 -extern void (__clearerr_1987) (__FILE_1250 * (____stream_1985));// L826 -extern int (__feof_1991) (__FILE_1250 * (____stream_1989));// L828 -extern int (__feof_1993) (__FILE_1250 * (____stream_1989));// L828 -extern int (__ferror_1997) (__FILE_1250 * (____stream_1995));// L830 -extern int (__ferror_1999) (__FILE_1250 * (____stream_1995));// L830 -extern void (__clearerr_unlocked_2003) (__FILE_1250 * (____stream_2001));// L835 -extern int (__feof_unlocked_2007) (__FILE_1250 * (____stream_2005));// L836 -extern int (__feof_unlocked_2009) (__FILE_1250 * (____stream_2005));// L836 -extern int (__ferror_unlocked_2013) (__FILE_1250 * (____stream_2011));// L837 -extern int (__ferror_unlocked_2015) (__FILE_1250 * (____stream_2011));// L837 -extern void (__perror_2018) (const char * (____s_2017));// L846 -extern void (__perror_2019) (const char * (____s_2017));// L846 -extern int __sys_nerr_2020;// L26 - -extern int (__fileno_2026) (__FILE_1250 * (____stream_2022));// L858 -extern int (__fileno_2024) (__FILE_1250 * (____stream_2022));// L858 -extern int (__fileno_unlocked_2032) (__FILE_1250 * (____stream_2028));// L863 -extern int (__fileno_unlocked_2030) (__FILE_1250 * (____stream_2028));// L863 -extern __FILE_1250 * ((__popen_2036) (const char * (____command_2034), const char * (____modes_2035)));// L872 -extern __FILE_1250 * ((__popen_2038) (const char * (____command_2034), const char * (____modes_2035)));// L872 -extern int (__pclose_2042) (__FILE_1250 * (____stream_2040));// L878 -extern char * ((__ctermid_2045) (char * (____s_2044)));// L884 -extern void (__flockfile_2048) (__FILE_1250 * (____stream_2046));// L912 -extern int (__ftrylockfile_2052) (__FILE_1250 * (____stream_2050));// L916 -extern int (__ftrylockfile_2054) (__FILE_1250 * (____stream_2050));// L916 -extern void (__funlockfile_2058) (__FILE_1250 * (____stream_2056));// L919 +extern struct ___IO_FILE_95 * (__stdin_257);// L168 +extern struct ___IO_FILE_119 * (__stdin_258);// L168 +extern struct ___IO_FILE_95 * (__stdout_259);// L169 +extern struct ___IO_FILE_119 * (__stdout_260);// L169 +extern struct ___IO_FILE_95 * (__stderr_261);// L170 +extern struct ___IO_FILE_119 * (__stderr_262);// L170 +extern int (__remove_264) (const char * (____filename_263));// L178 +extern int (__rename_267) (const char * (____old_265), const char * (____new_266));// L180 +extern int (__renameat_272) (int ____oldfd_268, const char * (____old_269), int ____newfd_270, const char * (____new_271));// L185:L186 +extern __FILE_58 * ((__tmpfile_273) (void ));// L195 +extern __FILE_58 * ((__tmpfile_279) (void ));// L198 +extern __FILE_58 * ((__tmpfile_277) (void ));// L198 +extern __FILE_58 * ((__tmpfile_275) (void ));// L195 +extern char * ((__tmpnam_282) (char * (____s_281)));// L209 +extern char * ((__tmpnam_283) (char * (____s_281)));// L209 +extern char * ((__tmpnam_r_285) (char * (____s_284)));// L215 +extern char * ((__tmpnam_r_286) (char * (____s_284)));// L215 +extern char * ((__tempnam_289) (const char * (____dir_287), const char * (____pfx_288)));// L227:L228 +extern char * ((__tempnam_290) (const char * (____dir_287), const char * (____pfx_288)));// L227:L228 +extern int (__fclose_293) (__FILE_58 * (____stream_291));// L237 +extern int (__fclose_295) (__FILE_58 * (____stream_291));// L237 +extern int (__fflush_299) (__FILE_58 * (____stream_297));// L242 +extern int (__fflush_unlocked_303) (__FILE_58 * (____stream_301));// L252 +extern __FILE_58 * ((__fopen_307) (const char * __restrict ____filename_305, const char * __restrict ____modes_306));// L272:L273 +extern __FILE_58 * ((__fopen_309) (const char * __restrict ____filename_305, const char * __restrict ____modes_306));// L272:L273 +extern __FILE_58 * ((__fopen_317) (const char * __restrict ____filename_315, const char * __restrict ____modes_316));// L283:L285 +extern __FILE_58 * ((__fopen_319) (const char * __restrict ____filename_315, const char * __restrict ____modes_316));// L283:L285 +extern __FILE_58 * ((__freopen_325) (const char * __restrict ____filename_311, const char * __restrict ____modes_312, __FILE_58 * __restrict ____stream_313));// L278:L280 +extern __FILE_58 * ((__freopen_331) (const char * __restrict ____filename_321, const char * __restrict ____modes_322, __FILE_58 * __restrict ____stream_323));// L286:L289 +extern __FILE_58 * ((__freopen_329) (const char * __restrict ____filename_321, const char * __restrict ____modes_322, __FILE_58 * __restrict ____stream_323));// L286:L289 +extern __FILE_58 * ((__freopen_327) (const char * __restrict ____filename_311, const char * __restrict ____modes_312, __FILE_58 * __restrict ____stream_313));// L278:L280 +extern __FILE_58 * ((__fdopen_335) (int ____fd_333, const char * (____modes_334)));// L306 +extern __FILE_58 * ((__fdopen_337) (int ____fd_333, const char * (____modes_334)));// L306 +extern __FILE_58 * ((__fmemopen_342) (void * (____s_339), __size_t_1 ____len_340, const char * (____modes_341)));// L319:L320 +extern __FILE_58 * ((__fmemopen_344) (void * (____s_339), __size_t_1 ____len_340, const char * (____modes_341)));// L319:L320 +extern __FILE_58 * ((__open_memstream_348) (char * (* (____bufloc_346)), __size_t_1 * (____sizeloc_347)));// L325 +extern __FILE_58 * ((__open_memstream_350) (char * (* (____bufloc_346)), __size_t_1 * (____sizeloc_347)));// L325 +extern void (__setbuf_355) (__FILE_58 * __restrict ____stream_352, char * __restrict ____buf_354);// L332 +extern void (__setbuf_357) (__FILE_58 * __restrict ____stream_352, char * __restrict ____buf_354);// L332 +extern int (__setvbuf_364) (__FILE_58 * __restrict ____stream_359, char * __restrict ____buf_361, int ____modes_362, __size_t_1 ____n_363);// L336:L337 +extern void (__setbuffer_369) (__FILE_58 * __restrict ____stream_365, char * __restrict ____buf_367, __size_t_1 ____size_368);// L343:L344 +extern void (__setlinebuf_373) (__FILE_58 * (____stream_371));// L347 +extern int (__fprintf_378) (__FILE_58 * __restrict ____stream_375, const char * __restrict ____format_377, ... );// L356:L357 +extern int (__fprintf_380) (__FILE_58 * __restrict ____stream_375, const char * __restrict ____format_377, ... );// L356:L357 +extern int (__printf_383) (const char * __restrict ____format_382, ... );// L362 +extern int (__sprintf_386) (char * __restrict ____s_384, const char * __restrict ____format_385, ... );// L364:L365 +extern int (__vfprintf_392) (__FILE_58 * __restrict ____s_387, const char * __restrict ____format_389, ____gnuc_va_list_82 ____arg_390);// L371:L372 +extern int (__vprintf_399) (const char * __restrict ____format_396, ____gnuc_va_list_82 ____arg_397);// L377 +extern int (__vsprintf_405) (char * __restrict ____s_401, const char * __restrict ____format_402, ____gnuc_va_list_82 ____arg_403);// L379:L380 +extern int (__snprintf_409) (char * __restrict ____s_406, __size_t_1 ____maxlen_407, const char * __restrict ____format_408, ... );// L386:L388 +extern int (__vsnprintf_415) (char * __restrict ____s_410, __size_t_1 ____maxlen_411, const char * __restrict ____format_412, ____gnuc_va_list_82 ____arg_413);// L390:L392 +extern int (__vdprintf_420) (int ____fd_416, const char * __restrict ____fmt_417, ____gnuc_va_list_82 ____arg_418);// L412:L414 +extern int (__dprintf_424) (int ____fd_422, const char * __restrict ____fmt_423, ... );// L415:L416 +extern int (__fscanf_428) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 +extern int (__fscanf_430) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 +extern int (__fscanf_432) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 +extern int (__fscanf_434) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 +extern int (__scanf_437) (const char * __restrict ____format_436, ... );// L431 +extern int (__scanf_438) (const char * __restrict ____format_436, ... );// L431 +extern int (__sscanf_441) (const char * __restrict ____s_439, const char * __restrict ____format_440, ... );// L433:L434 + + + + + + + +extern int (__vfscanf_468) (__FILE_58 * __restrict ____s_463, const char * __restrict ____format_465, ____gnuc_va_list_82 ____arg_466);// L471:L473 +extern int (__vfscanf_472) (__FILE_58 * __restrict ____s_463, const char * __restrict ____format_465, ____gnuc_va_list_82 ____arg_466);// L471:L473 +extern int (__vscanf_479) (const char * __restrict ____format_476, ____gnuc_va_list_82 ____arg_477);// L479:L480 +extern int (__vscanf_481) (const char * __restrict ____format_476, ____gnuc_va_list_82 ____arg_477);// L479:L480 +extern int (__vsscanf_487) (const char * __restrict ____s_483, const char * __restrict ____format_484, ____gnuc_va_list_82 ____arg_485);// L483:L485 + + + + + +extern int (__fgetc_520) (__FILE_58 * (____stream_518));// L531 +extern int (__getc_523) (__FILE_58 * (____stream_521));// L532 +extern int (__getchar_524) (void );// L538 +extern int (__getc_unlocked_527) (__FILE_58 * (____stream_525));// L550 +extern int (__getchar_unlocked_529) (void );// L551 +extern int (__fgetc_unlocked_532) (__FILE_58 * (____stream_530));// L561 +extern int (__fputc_537) (int ____c_534, __FILE_58 * (____stream_535));// L573 +extern int (__fputc_539) (int ____c_534, __FILE_58 * (____stream_535));// L573 +extern int (__putc_544) (int ____c_541, __FILE_58 * (____stream_542));// L574 +extern int (__putchar_546) (int ____c_545);// L580 +extern int (__fputc_unlocked_550) (int ____c_547, __FILE_58 * (____stream_548));// L594 +extern int (__putc_unlocked_555) (int ____c_552, __FILE_58 * (____stream_553));// L602 +extern int (__putchar_unlocked_558) (int ____c_557);// L603 +extern int (__getw_561) (__FILE_58 * (____stream_559));// L610 +extern int (__putw_566) (int ____w_563, __FILE_58 * (____stream_564));// L613 +extern char * ((__fgets_572) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 +extern char * ((__fgets_574) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 +extern char * ((__fgets_576) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 +extern char * ((__fgets_578) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 +extern ____ssize_t_49 (____getdelim_585) (char * (* __restrict ____lineptr_580), __size_t_1 * __restrict ____n_581, int ____delimiter_582, __FILE_58 * __restrict ____stream_583);// L665:L667 +extern ____ssize_t_49 (____getdelim_587) (char * (* __restrict ____lineptr_580), __size_t_1 * __restrict ____n_581, int ____delimiter_582, __FILE_58 * __restrict ____stream_583);// L665:L667 +extern ____ssize_t_49 (__getdelim_594) (char * (* __restrict ____lineptr_589), __size_t_1 * __restrict ____n_590, int ____delimiter_591, __FILE_58 * __restrict ____stream_592);// L668:L670 +extern ____ssize_t_49 (__getdelim_596) (char * (* __restrict ____lineptr_589), __size_t_1 * __restrict ____n_590, int ____delimiter_591, __FILE_58 * __restrict ____stream_592);// L668:L670 +extern ____ssize_t_49 (__getline_602) (char * (* __restrict ____lineptr_598), __size_t_1 * __restrict ____n_599, __FILE_58 * __restrict ____stream_600);// L678:L680 +extern ____ssize_t_49 (__getline_604) (char * (* __restrict ____lineptr_598), __size_t_1 * __restrict ____n_599, __FILE_58 * __restrict ____stream_600);// L678:L680 +extern int (__fputs_609) (const char * __restrict ____s_606, __FILE_58 * __restrict ____stream_607);// L689 +extern int (__fputs_611) (const char * __restrict ____s_606, __FILE_58 * __restrict ____stream_607);// L689 +extern int (__puts_614) (const char * (____s_613));// L695 +extern int (__ungetc_618) (int ____c_615, __FILE_58 * (____stream_616));// L702 +extern int (__fseek_654) (__FILE_58 * (____stream_650), long int ____off_652, int ____whence_653);// L749 +extern int (__fseek_656) (__FILE_58 * (____stream_650), long int ____off_652, int ____whence_653);// L749 +extern long int (__ftell_660) (__FILE_58 * (____stream_658));// L754 +extern long int (__ftell_662) (__FILE_58 * (____stream_658));// L754 +extern void (__rewind_666) (__FILE_58 * (____stream_664));// L759 +extern int (__fseeko_671) (__FILE_58 * (____stream_667), ____off_t_23 ____off_669, int ____whence_670);// L773 +extern int (__fseeko_679) (__FILE_58 * (____stream_675), ____off64_t_24 ____off_677, int ____whence_678);// L781:L783 +extern ____off_t_23 (__ftello_683) (__FILE_58 * (____stream_673));// L778 +extern ____off_t_23 (__ftello_685) (__FILE_58 * (____stream_673));// L778 +extern int (__fgetpos_693) (__FILE_58 * __restrict ____stream_689, __fpos_t_253 * __restrict ____pos_691);// L798 +extern ____off64_t_24 (__ftello_687) (__FILE_58 * (____stream_681));// L784 +extern int (__fgetpos_705) (__FILE_58 * __restrict ____stream_701, __fpos_t_255 * __restrict ____pos_703);// L806:L807 +extern int (__fsetpos_713) (__FILE_58 * (____stream_697), const __fpos_t_253 * (____pos_699));// L803 +extern int (__fsetpos_717) (__FILE_58 * (____stream_709), const __fpos_t_255 * (____pos_711));// L808:L809 +extern void (__clearerr_723) (__FILE_58 * (____stream_721));// L826 +extern int (__feof_726) (__FILE_58 * (____stream_724));// L828 +extern int (__feof_728) (__FILE_58 * (____stream_724));// L828 +extern int (__ferror_732) (__FILE_58 * (____stream_730));// L830 +extern int (__ferror_734) (__FILE_58 * (____stream_730));// L830 +extern void (__clearerr_unlocked_738) (__FILE_58 * (____stream_736));// L835 +extern int (__feof_unlocked_742) (__FILE_58 * (____stream_740));// L836 +extern int (__feof_unlocked_744) (__FILE_58 * (____stream_740));// L836 +extern int (__ferror_unlocked_748) (__FILE_58 * (____stream_746));// L837 +extern int (__ferror_unlocked_750) (__FILE_58 * (____stream_746));// L837 +extern void (__perror_753) (const char * (____s_752));// L846 +extern void (__perror_754) (const char * (____s_752));// L846 +extern int __sys_nerr_755;// L26 + +extern int (__fileno_761) (__FILE_58 * (____stream_757));// L858 +extern int (__fileno_759) (__FILE_58 * (____stream_757));// L858 +extern int (__fileno_unlocked_767) (__FILE_58 * (____stream_763));// L863 +extern int (__fileno_unlocked_765) (__FILE_58 * (____stream_763));// L863 +extern __FILE_58 * ((__popen_771) (const char * (____command_769), const char * (____modes_770)));// L872 +extern __FILE_58 * ((__popen_773) (const char * (____command_769), const char * (____modes_770)));// L872 +extern int (__pclose_777) (__FILE_58 * (____stream_775));// L878 +extern char * ((__ctermid_780) (char * (____s_779)));// L884 +extern void (__flockfile_783) (__FILE_58 * (____stream_781));// L912 +extern int (__ftrylockfile_787) (__FILE_58 * (____stream_785));// L916 +extern int (__ftrylockfile_789) (__FILE_58 * (____stream_785));// L916 +extern void (__funlockfile_793) (__FILE_58 * (____stream_791));// L919 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ @@ -3111,262 +1169,93 @@ extern void (__funlockfile_2058) (__FILE_1250 * (____stream_2056));// L919 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____sprintf_chk_2090) (char * __restrict ____s_2086, int ____flag_2087, __size_t_1192 ____slen_2088, const char * __restrict ____format_2089, ... );// L23:L24 -extern int (____vsprintf_chk_2097) (char * __restrict ____s_2091, int ____flag_2092, __size_t_1192 ____slen_2093, const char * __restrict ____format_2094, ____gnuc_va_list_1277 ____ap_2095);// L25:L27 +extern int (____sprintf_chk_825) (char * __restrict ____s_821, int ____flag_822, __size_t_1 ____slen_823, const char * __restrict ____format_824, ... );// L23:L24 +extern int (____vsprintf_chk_832) (char * __restrict ____s_826, int ____flag_827, __size_t_1 ____slen_828, const char * __restrict ____format_829, ____gnuc_va_list_82 ____ap_830);// L25:L27 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____snprintf_chk_2111) (char * __restrict ____s_2106, __size_t_1192 ____n_2107, int ____flag_2108, __size_t_1192 ____slen_2109, const char * __restrict ____format_2110, ... );// L52:L54 -extern int (____vsnprintf_chk_2119) (char * __restrict ____s_2112, __size_t_1192 ____n_2113, int ____flag_2114, __size_t_1192 ____slen_2115, const char * __restrict ____format_2116, ____gnuc_va_list_1277 ____ap_2117);// L55:L57 +extern int (____snprintf_chk_846) (char * __restrict ____s_841, __size_t_1 ____n_842, int ____flag_843, __size_t_1 ____slen_844, const char * __restrict ____format_845, ... );// L52:L54 +extern int (____vsnprintf_chk_854) (char * __restrict ____s_847, __size_t_1 ____n_848, int ____flag_849, __size_t_1 ____slen_850, const char * __restrict ____format_851, ____gnuc_va_list_82 ____ap_852);// L55:L57 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____fprintf_chk_2134) (__FILE_1250 * __restrict ____stream_2130, int ____flag_2132, const char * __restrict ____format_2133, ... );// L85:L86 -extern int (____printf_chk_2138) (int ____flag_2136, const char * __restrict ____format_2137, ... );// L87 -extern int (____vfprintf_chk_2145) (__FILE_1250 * __restrict ____stream_2139, int ____flag_2141, const char * __restrict ____format_2142, ____gnuc_va_list_1277 ____ap_2143);// L88:L89 -extern int (____vprintf_chk_2153) (int ____flag_2149, const char * __restrict ____format_2150, ____gnuc_va_list_1277 ____ap_2151);// L90:L91 +extern int (____fprintf_chk_869) (__FILE_58 * __restrict ____stream_865, int ____flag_867, const char * __restrict ____format_868, ... );// L85:L86 +extern int (____printf_chk_873) (int ____flag_871, const char * __restrict ____format_872, ... );// L87 +extern int (____vfprintf_chk_880) (__FILE_58 * __restrict ____stream_874, int ____flag_876, const char * __restrict ____format_877, ____gnuc_va_list_82 ____ap_878);// L88:L89 +extern int (____vprintf_chk_888) (int ____flag_884, const char * __restrict ____format_885, ____gnuc_va_list_82 ____ap_886);// L90:L91 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____dprintf_chk_2175) (int ____fd_2172, int ____flag_2173, const char * __restrict ____fmt_2174, ... );// L131:L132 -extern int (____vdprintf_chk_2181) (int ____fd_2176, int ____flag_2177, const char * __restrict ____fmt_2178, ____gnuc_va_list_1277 ____arg_2179);// L133:L135 +extern int (____dprintf_chk_910) (int ____fd_907, int ____flag_908, const char * __restrict ____fmt_909, ... );// L131:L132 +extern int (____vdprintf_chk_916) (int ____fd_911, int ____flag_912, const char * __restrict ____fmt_913, ____gnuc_va_list_82 ____arg_914);// L133:L135 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern char * ((____fgets_chk_2195) (char * __restrict ____s_2190, __size_t_1192 ____size_2191, int ____n_2192, __FILE_1250 * __restrict ____stream_2193));// L241:L242 -extern char * ((____fgets_chk_2197) (char * __restrict ____s_2190, __size_t_1192 ____size_2191, int ____n_2192, __FILE_1250 * __restrict ____stream_2193));// L241:L242 -extern char * ((____fgets_chk_2199) (char * __restrict ____s_2190, __size_t_1192 ____size_2191, int ____n_2192, __FILE_1250 * __restrict ____stream_2193));// L241:L242 -extern char * ((____fgets_alias_2205) (char * __restrict ____s_2201, int ____n_2202, __FILE_1250 * __restrict ____stream_2203));// L243:L245 -extern char * ((____fgets_chk_warn_2212) (char * __restrict ____s_2207, __size_t_1192 ____size_2208, int ____n_2209, __FILE_1250 * __restrict ____stream_2210));// L246:L250 +extern char * ((____fgets_chk_930) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 +extern char * ((____fgets_chk_932) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 +extern char * ((____fgets_chk_934) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 +extern char * ((____fgets_alias_940) (char * __restrict ____s_936, int ____n_937, __FILE_58 * __restrict ____stream_938));// L243:L245 +extern char * ((____fgets_chk_warn_947) (char * __restrict ____s_942, __size_t_1 ____size_943, int ____n_944, __FILE_58 * __restrict ____stream_945));// L246:L250 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -void (__enable_x_2283) () { - -if (__static_condition_default_2286) { - -{ -{ - - +void (__enable_x_1018) () { - __printf_1612 ("%s","enabling x axis") ; // L15 -} -} - - -} -} -void (__enable_x_2284) () { - -if (__static_condition_default_2287) { +if (__static_condition_default_1020) { { { - __printf_1612 ("%s","enabling x axis") ; // L15 + __printf_383 ("%s","enabling x axis") ; // L15 } } } } -void (__enable_x_2285) () { +void (__enable_x_1019) () { -if (__static_condition_default_2288) { +if (__static_condition_default_1021) { { { -__static_type_error("type error") ; // L15 + __printf_383 ("%s","enabling x axis") ; // L15 } } } } -void (__enable_y_2289) () { +void (__enable_y_1022) () { { { -if (__static_condition_default_2290) { - __printf_1612 ("%s","enabling y axis") ; // L20 -} -if (__static_condition_default_2291) { -__static_type_error("type error") ; // L20 -} + __printf_383 ("%s","enabling y axis") ; // L20 } } } -void (__enable_z_2292) () { +void (__enable_z_1023) () { { { -if (__static_condition_default_2290) { - __printf_1612 ("%s","enabling z axis") ; // L25 -} -if (__static_condition_default_2291) { -__static_type_error("type error") ; // L25 -} + __printf_383 ("%s","enabling z axis") ; // L25 } } } -void (__babystep_2298) (const __uint8_t_4 __axis_2293, const _Bool __direction_2294) { - -if (__static_condition_default_2299) { - -{ -{ - - - -switch ( __axis_2293 )// L43 -{ -case 0 : -{ - - - - -{ -{ - - - -if (__static_condition_default_2300) { - __enable_x_2283 ( ) ; // L36 -} -if (__static_condition_default_2301) { - __enable_x_2284 ( ) ; // L36 -} -if (__static_condition_default_2302) { - __enable_x_2285 ( ) ; // L36 -} -__uint8_t_4 __old_pin_2295= 0;// L37 - -if (__static_condition_default_2303) { - ___delay_us_1103 (1U) ; // L39 -} -if (__static_condition_default_2304) { - ___delay_us_1153 (1U) ; // L39 -} -} -} - ; // L46 -break ; // L47 -} -case 1 : -{ - - - - -{ -{ - - - - __enable_y_2289 ( ) ; // L36 -__uint8_t_4 __old_pin_2296= 1;// L37 - -if (__static_condition_default_2305) { - ___delay_us_1103 (1U) ; // L39 -} -if (__static_condition_default_2306) { - ___delay_us_1153 (1U) ; // L39 -} -} -} - ; // L50 -break ; // L51 -} -case 2 : -{ - - - - -{ -{ - - - -if (__static_condition_default_2307) { - -{ -{ - - - - __enable_z_2292 ( ) ; // L36 -__uint8_t_4 __old_pin_2297= 2;// L37 - -if (__static_condition_default_2308) { - ___delay_us_1103 (1U) ; // L39 -} -if (__static_condition_default_2309) { - ___delay_us_1153 (1U) ; // L39 -} -} -} -} -if (__static_condition_default_2310) { - __enable_x_2283 ( ) ; // L61 -} -if (__static_condition_default_2311) { - __enable_x_2284 ( ) ; // L61 -} -if (__static_condition_default_2312) { - __enable_x_2285 ( ) ; // L61 -} -if (__static_condition_default_2313) { - __enable_y_2289 ( ) ; // L62 -} -if (__static_condition_default_2314) { - __enable_z_2292 ( ) ; // L63 -} -if (__static_condition_default_2315) { - ; // L57 -} -if (__static_condition_default_2316) { - ___delay_us_1103 (1U) ; // L66 -} -if (__static_condition_default_2317) { - ___delay_us_1153 (1U) ; // L66 -} -} -} -break ; // L71 -} -default: -{ - - - -break ; // L73 -} -} -} -} - - -} -} -int (__main_2318) (void ) { - -if (__static_condition_default_2320) { +int (__main_1024) (void ) { { { @@ -3379,22 +1268,4 @@ return 0 ;// L84 } -} -int (__main_2319) (void ) { - -if (__static_condition_default_2321) { - -{ -{ - - - -__static_type_error("type error : no valid expression"); // L82 -return 0 ;// L84 -} -} - - -} -} diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.desugared.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.desugared.clangres index 03b03eed..e69de29b 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.desugared.clangres @@ -1,7 +0,0 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.desugared.c:1914:55: error: invalid output constraint '=w' in asm -__asm__ volatile ( "1: sbiw %0,1""\n\t""brne 1b" : "=w" ( ____count_120 ) : "0" ( ____count_120 ) ); - ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.desugared.c:1930:55: error: invalid output constraint '=w' in asm -__asm__ volatile ( "1: sbiw %0,1""\n\t""brne 1b" : "=w" ( ____count_120 ) : "0" ( ____count_120 ) ); - ^ -2 errors generated. diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.desugared.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.desugared.inferres index e69de29b..11be972e 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.desugared.inferres +++ b/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/7336e6df070.desugared.c b/fonda/cpp_testsuite/varBugs/MARLIN/7336e6df070.desugared.c index 6d82a3ef..87a793be 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/7336e6df070.desugared.c +++ b/fonda/cpp_testsuite/varBugs/MARLIN/7336e6df070.desugared.c @@ -7,275 +7,276 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_894; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_347; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_367; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_747; extern const bool __static_condition_default_875; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_187; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_488; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_536; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_1098; -extern const bool __static_condition_default_333; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_709; -extern const bool __static_condition_default_408; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_542; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_779; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_568; extern const bool __static_condition_default_402; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_767; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_753; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_549; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_761; extern const bool __static_condition_default_514; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_290; -extern const bool __static_condition_default_169; extern const bool __static_condition_default_204; -extern const bool __static_condition_default_393; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_619; extern const bool __static_condition_default_914; -extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_367; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_929; -extern const bool __static_condition_default_438; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_315; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_686; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_677; extern const bool __static_condition_default_248; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_568; -extern const bool __static_condition_default_311; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_583; -extern const bool __static_condition_default_842; -extern const bool __static_condition_default_779; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_848; -extern const bool __static_condition_default_891; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_956; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_645; -extern const bool __static_condition_default_846; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_944; extern const bool __static_condition_default_963; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_380; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_755; -extern const bool __static_condition_default_957; -extern const bool __static_condition_default_632; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_539; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_1065; extern const bool __static_condition_default_76; -extern const bool __static_condition_default_388; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_431; +extern const bool __static_condition_default_223; extern const bool __static_condition_default_715; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_388; extern const bool __static_condition_default_789; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_317; extern const bool __static_condition_default_363; -extern const bool __static_condition_default_521; -extern const bool __static_condition_default_198; -extern const bool __static_condition_default_270; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_271; extern const bool __static_condition_default_864; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_543; -extern const bool __static_condition_default_747; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_549; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_217; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_769; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_347; +extern const bool __static_condition_default_1043; extern const bool __static_condition_default_745; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_858; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_677; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_638; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_872; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_317; -extern const bool __static_condition_default_564; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_412; -extern const bool __static_condition_default_693; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_685; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_787; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_461; -extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_633; +extern const bool __static_condition_default_649; extern const bool __static_condition_default_489; +extern const bool __static_condition_default_238; extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_267; extern const bool __static_condition_default_475; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_386; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_634; +extern const bool __static_condition_default_578; extern const bool __static_condition_default_473; -extern const bool __static_condition_default_646; -extern const bool __static_condition_default_753; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_793; -extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_523; +extern const bool __static_condition_default_1096; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_550; +extern const bool __static_condition_default_257; extern const bool __static_condition_default_419; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_887; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_1099; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_846; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_1072; extern const bool __static_condition_default_84; -extern const bool __static_condition_default_780; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_637; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_834; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_536; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_369; extern const bool __static_condition_default_701; -extern const bool __static_condition_default_702; -extern const bool __static_condition_default_907; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_590; +extern const bool __static_condition_default_333; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_813; extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_357; +extern const bool __static_condition_default_583; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_380; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_791; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_907; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_337; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_290; extern const bool __static_condition_default_573; -extern const bool __static_condition_default_559; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_512; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_852; extern const bool __static_condition_default_613; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_53; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_746; extern const bool __static_condition_default_692; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_761; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_636; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_891; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_386; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_365; +extern const bool __static_condition_default_752; extern const bool __static_condition_default_955; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_382; -extern const bool __static_condition_default_1100; -extern const bool __static_condition_default_803; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_512; +extern const bool __static_condition_default_311; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_670; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_523; extern const bool __static_condition_default_801; +extern const bool __static_condition_default_521; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_768; extern const bool __static_condition_default_544; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_1097; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_702; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_769; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_842; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_559; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_455; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_275; extern const bool __static_condition_default_608; -extern const bool __static_condition_default_670; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_313; +extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_293; extern const bool __static_condition_default_621; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_515; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_894; +extern const bool __static_condition_default_636; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_382; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_488; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_759; +extern const bool __static_condition_default_187; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_929; +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_721; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_494; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -545,10 +546,9 @@ __static_renaming("____cnt_1087", "__cnt"); __static_renaming("____cptr_1088", "__cptr"); __static_renaming("__old_z_min_endstop_1092", "old_z_min_endstop"); __static_renaming("__old_z_max_endstop_1093", "old_z_max_endstop"); -__static_renaming("__old_z2_min_endstop_1094", "old_z2_min_endstop"); -__static_renaming("__old_z2_max_endstop_1095", "old_z2_max_endstop"); -__static_renaming("__function_1096", "function"); -__static_renaming("__main_1099", "main"); +__static_renaming("__function_1094", "function"); +__static_renaming("__function_1095", "function"); +__static_renaming("__main_1098", "main"); __static_condition_renaming("__static_condition_default_53", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); __static_condition_renaming("__static_condition_default_76", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); @@ -817,11 +817,11 @@ __static_condition_renaming("__static_condition_default_1081", "!(defined __need __static_condition_renaming("__static_condition_default_1089", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); __static_condition_renaming("__static_condition_default_1090", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); __static_condition_renaming("__static_condition_default_1091", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1098", "!(defined Z_DUAL_STEPPER_DRIVERS) && !(defined Z_DUAL_ENDSTOPS)"); -__static_condition_renaming("__static_condition_default_1100", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined Z_DUAL_STEPPER_DRIVERS) && (defined Z_DUAL_ENDSTOPS) || !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && (defined Z_DUAL_STEPPER_DRIVERS) || !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined Z_DUAL_STEPPER_DRIVERS) && (defined Z_DUAL_ENDSTOPS) || !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && (defined Z_DUAL_STEPPER_DRIVERS) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) || (defined __need___FILE) && !(defined Z_DUAL_STEPPER_DRIVERS) && (defined Z_DUAL_ENDSTOPS) || (defined __need___FILE) && (defined Z_DUAL_STEPPER_DRIVERS)"); +__static_condition_renaming("__static_condition_default_1096", "!(defined Z_MAX_PIN) || (defined Z_MAX_PIN) && !(Z_MAX_PIN >= 0)"); +__static_condition_renaming("__static_condition_default_1097", "(defined Z_MAX_PIN) && (Z_MAX_PIN >= 0)"); +__static_condition_renaming("__static_condition_default_1099", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -if (__static_condition_default_1100) -{ +if (__static_condition_default_1099) { __static_parse_error("Unable to parse"); } }; @@ -1332,12 +1332,9 @@ extern char * ((____fgets_chk_warn_1021) (char * __restrict ____s_1016, __siz /* no function due to type errors in the function prototype */ static _Bool __old_z_min_endstop_1092= 0;// L28:L33 static _Bool __old_z_max_endstop_1093= 0;// L32:L33 -static _Bool __old_z2_min_endstop_1094= 0;// L33:L36 -static _Bool __old_z2_max_endstop_1095= 0;// L33:L37 -void (__function_1096) () { +void (__function_1094) () { -{ -if (__static_condition_default_1098) { +if (__static_condition_default_1096) { { { @@ -1349,9 +1346,23 @@ if (__static_condition_default_1098) { } +} +void (__function_1095) () { + +if (__static_condition_default_1097) { + +{ +{ + -}} -void (__main_1099) () { + +} +} + + +} +} +void (__main_1098) () { { { diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.clangres index 5aebd26c..e69de29b 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.clangres +++ b/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.clangres @@ -1,10 +0,0 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.c:15:23: error: too many arguments to function call, expected single argument 'message', have 2 arguments - lcd_setstatus(time, true); // ERROR - ~~~~~~~~~~~~~ ^~~~ -/usr/lib/llvm-11/lib/clang/11.1.0/include/stdbool.h:16:14: note: expanded from macro 'true' -#define true 1 - ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.c:7:6: note: 'lcd_setstatus' declared here -void lcd_setstatus(const char* message) {}; - ^ -1 error generated. diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.desugared.c b/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.desugared.c index e68cee2d..39c6f420 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.desugared.c +++ b/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.desugared.c @@ -7,21 +7,16 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_9; -extern const bool __static_condition_default_6; -extern const bool __static_condition_default_10; extern const bool __static_condition_default_3; +extern const bool __static_condition_default_6; void __static_initializer_default() { __static_renaming("__lcd_setstatus_2", "lcd_setstatus"); __static_renaming("__lcd_setstatus_5", "lcd_setstatus"); -__static_renaming("__time_7", "time"); -__static_renaming("__getCode_8", "getCode"); -__static_renaming("__main_13", "main"); +__static_renaming("__getCode_7", "getCode"); +__static_renaming("__main_10", "main"); __static_condition_renaming("__static_condition_default_3", "(defined ULTRA_LCD)"); __static_condition_renaming("__static_condition_default_6", "!(defined ULTRA_LCD)"); -__static_condition_renaming("__static_condition_default_9", "!(defined SDSUPPORT)"); -__static_condition_renaming("__static_condition_default_10", "(defined SDSUPPORT)"); }; @@ -55,47 +50,26 @@ if (__static_condition_default_6) { } } -;;void (__getCode_8) () { - -{ -if (__static_condition_default_9) { - -{ -{ - - - -} -} - - -} - -if (__static_condition_default_10) { +;;void (__getCode_7) () { { { -char __time_7[30]= "time_here";// L14 - -__static_type_error("type error : no valid expression"); // L15 } } } - -}} -int (__main_13) (int __argc_11, char * (* (__argv_12))) { +int (__main_10) (int __argc_8, char * (* (__argv_9))) { { { - __getCode_8 ( ) ; // L21 + __getCode_7 ( ) ; // L21 return 0 ;// L22 } } diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.desugared.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.desugared.clangres index 0636af1c..e69de29b 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.desugared.clangres @@ -1,4 +0,0 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.desugared.c:81:7: warning: Value stored to '__time_7' during its initialization is never read [deadcode.DeadStores] -char __time_7[30]= "time_here";// L14 - ^~~~~~~~ ~~~~~~~~~~~ -1 warning generated. diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.desugared.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.desugared.inferres index cf135195..11be972e 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.desugared.inferres +++ b/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.desugared.inferres @@ -1,14 +1,2 @@ -MARLIN/831016b09f7.desugared.c:81: error: Dead Store - The value written to &__time_7 (type char[30*1]) is never used. - 79. - 80. - 81. char __time_7[30]= "time_here";// L14 - ^ - 82. - 83. __static_type_error("type error : no valid expression"); // L15 - - -Found 1 issue - Issue Type(ISSUED_TYPE_ID): # - Dead Store(DEAD_STORE): 1 + No issues found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.clangres index eb034fa8..9d1f1d66 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.clangres +++ b/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.clangres @@ -1,4 +1,4 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.c:16:20: error: called object type 'void' is not a function or function pointer - SERIAL_ECHO_START(" PIDDEBUG "); // ERROR - ~~~~~~~~~~~~~~~~~^ -1 error generated. +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.c:19:3: warning: Value stored to 'pid_output' is never read [deadcode.DeadStores] + pid_output = 0; + ^ ~ +1 warning generated. diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.c b/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.c index 6084c9be..9fc3ccef 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.c +++ b/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.c @@ -7,71 +7,36 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_9; -extern const bool __static_condition_default_8; -extern const bool __static_condition_default_14; -extern const bool __static_condition_default_19; -extern const bool __static_condition_default_20; -extern const bool __static_condition_default_10; -extern const bool __static_condition_default_15; -extern const bool __static_condition_default_12; -extern const bool __static_condition_default_13; -extern const bool __static_condition_default_11; extern const bool __static_condition_default_3; +extern const bool __static_condition_default_5; +extern const bool __static_condition_default_6; +extern const bool __static_condition_default_4; void __static_initializer_default() { -__static_renaming("__echomagic_0", "echomagic"); -__static_renaming("__serialprint_2", "serialprint"); -__static_renaming("__pid_output_4", "pid_output"); -__static_renaming("__e_5", "e"); -__static_renaming("__manage_heater_6", "manage_heater"); -__static_renaming("__manage_heater_7", "manage_heater"); -__static_renaming("__main_18", "main"); - -__static_condition_renaming("__static_condition_default_3", "!(defined MARLIN_H)"); -__static_condition_renaming("__static_condition_default_8", "(defined MARLIN_H) && (defined PIDTEMP) && !(defined PID_DEBUG)"); -__static_condition_renaming("__static_condition_default_9", "(defined MARLIN_H) && !(defined PIDTEMP) || (defined MARLIN_H) && (defined PIDTEMP) && (defined PID_DEBUG)"); -__static_condition_renaming("__static_condition_default_10", "(defined MARLIN_H) && !(defined PIDTEMP)"); -__static_condition_renaming("__static_condition_default_11", "(defined MARLIN_H) && (defined PIDTEMP) && (defined PID_DEBUG)"); -__static_condition_renaming("__static_condition_default_12", "!(defined MARLIN_H) && (defined PIDTEMP) && !(defined PID_DEBUG)"); -__static_condition_renaming("__static_condition_default_13", "!(defined MARLIN_H) && !(defined PIDTEMP) || !(defined MARLIN_H) && (defined PIDTEMP) && (defined PID_DEBUG)"); -__static_condition_renaming("__static_condition_default_14", "!(defined MARLIN_H) && !(defined PIDTEMP)"); -__static_condition_renaming("__static_condition_default_15", "!(defined MARLIN_H) && (defined PIDTEMP) && (defined PID_DEBUG)"); -__static_condition_renaming("__static_condition_default_19", "(defined MARLIN_H)"); -__static_condition_renaming("__static_condition_default_20", "!(defined MARLIN_H)"); +__static_renaming("__pid_output_0", "pid_output"); +__static_renaming("__e_1", "e"); +__static_renaming("__manage_heater_2", "manage_heater"); +__static_renaming("__main_9", "main"); -}; -const char __echomagic_0[]= "echo:";// L2 - - -void (__serialprint_2) (const char * (__str_1)) { - -if (__static_condition_default_3) { - -{ -{ - - - -__static_type_error("type error : no valid expression"); // L6 -} -} +__static_condition_renaming("__static_condition_default_3", "(defined PIDTEMP) && !(defined PID_DEBUG)"); +__static_condition_renaming("__static_condition_default_4", "!(defined PIDTEMP) || (defined PIDTEMP) && (defined PID_DEBUG)"); +__static_condition_renaming("__static_condition_default_5", "!(defined PIDTEMP)"); +__static_condition_renaming("__static_condition_default_6", "(defined PIDTEMP) && (defined PID_DEBUG)"); +}; -} -} -void (__manage_heater_6) () { +void (__manage_heater_2) () { { -if (__static_condition_default_8) { +if (__static_condition_default_3) { { { -float __pid_output_4= 1;// L11 +float __pid_output_0= 1;// L11 -int __e_5= 0;// L12 +int __e_1= 0;// L12 } } @@ -79,21 +44,21 @@ int __e_5= 0;// L12 } -if (__static_condition_default_9) { +if (__static_condition_default_4) { { { -float __pid_output_4= 1;// L11 +float __pid_output_0= 1;// L11 -int __e_5= 0;// L12 +int __e_1= 0;// L12 -if (__static_condition_default_10) { - __pid_output_4 = 0 ; // L19 +if (__static_condition_default_5) { + __pid_output_0 = 0 ; // L19 } -if (__static_condition_default_11) { +if (__static_condition_default_6) { __static_type_error("type error : no valid expression"); // L16 } } @@ -103,63 +68,14 @@ __static_type_error("type error : no valid expression"); // L16 } }} -void (__manage_heater_7) () { - -{ -if (__static_condition_default_12) { - -{ -{ - - - -float __pid_output_4= 1;// L11 - -int __e_5= 0;// L12 - -} -} - - -} - -if (__static_condition_default_13) { - -{ -{ - - - -float __pid_output_4= 1;// L11 - -int __e_5= 0;// L12 - -if (__static_condition_default_14) { - __pid_output_4 = 0 ; // L19 -} -if (__static_condition_default_15) { -__static_type_error("type error : no valid expression"); // L3:L16 -} -} -} - - -} - -}} -int (__main_18) (int __argc_16, char * (* (__argv_17))) { +int (__main_9) (int __argc_7, char * (* (__argv_8))) { { { -if (__static_condition_default_19) { - __manage_heater_6 ( ) ; // L26 -} -if (__static_condition_default_20) { - __manage_heater_7 ( ) ; // L26 -} + __manage_heater_2 ( ) ; // L26 return 0 ;// L27 } } diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.clangres index 1a58c3bb..328192de 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.clangres @@ -1,7 +1,4 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.c:94:2: warning: Value stored to '__pid_output_4' is never read [deadcode.DeadStores] - __pid_output_4 = 0 ; // L19 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.c:59:2: warning: Value stored to '__pid_output_0' is never read [deadcode.DeadStores] + __pid_output_0 = 0 ; // L19 ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.c:138:2: warning: Value stored to '__pid_output_4' is never read [deadcode.DeadStores] - __pid_output_4 = 0 ; // L19 - ^ ~ -2 warnings generated. +1 warning generated. diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.inferres index 188bb775..6b7663a9 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.inferres +++ b/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.inferres @@ -1,41 +1,23 @@ -MARLIN/8c4377dd635.desugared.c:72: error: Dead Store - The value written to &__pid_output_4 (type float) is never used. - 70. - 71. - 72. float __pid_output_4= 1;// L11 +MARLIN/8c4377dd635.desugared.c:37: error: Dead Store + The value written to &__pid_output_0 (type float) is never used. + 35. + 36. + 37. float __pid_output_0= 1;// L11 ^ - 73. - 74. int __e_5= 0;// L12 + 38. + 39. int __e_1= 0;// L12 -MARLIN/8c4377dd635.desugared.c:89: error: Dead Store - The value written to &__pid_output_4 (type float) is never used. - 87. - 88. - 89. float __pid_output_4= 1;// L11 +MARLIN/8c4377dd635.desugared.c:54: error: Dead Store + The value written to &__pid_output_0 (type float) is never used. + 52. + 53. + 54. float __pid_output_0= 1;// L11 ^ - 90. - 91. int __e_5= 0;// L12 + 55. + 56. int __e_1= 0;// L12 -MARLIN/8c4377dd635.desugared.c:116: error: Dead Store - The value written to &__pid_output_4 (type float) is never used. - 114. - 115. - 116. float __pid_output_4= 1;// L11 - ^ - 117. - 118. int __e_5= 0;// L12 -MARLIN/8c4377dd635.desugared.c:133: error: Dead Store - The value written to &__pid_output_4 (type float) is never used. - 131. - 132. - 133. float __pid_output_4= 1;// L11 - ^ - 134. - 135. int __e_5= 0;// L12 - - -Found 4 issues +Found 2 issues Issue Type(ISSUED_TYPE_ID): # - Dead Store(DEAD_STORE): 4 + Dead Store(DEAD_STORE): 2 diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.c b/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.c index 71e7540c..5334f1cf 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.c +++ b/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.c @@ -7,118 +7,73 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_190; -extern const bool __static_condition_default_228; -extern const bool __static_condition_default_215; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_211; -extern const bool __static_condition_default_195; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_208; -extern const bool __static_condition_default_219; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_175; -extern const bool __static_condition_default_13; -extern const bool __static_condition_default_191; -extern const bool __static_condition_default_220; -extern const bool __static_condition_default_230; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); __static_renaming("__memmove_8", "memmove"); -__static_renaming("__memset_17", "memset"); -__static_renaming("__memset_18", "memset"); -__static_renaming("__memcmp_22", "memcmp"); -__static_renaming("__memchr_26", "memchr"); -__static_renaming("__strcpy_29", "strcpy"); -__static_renaming("__strncpy_33", "strncpy"); -__static_renaming("__strcat_36", "strcat"); -__static_renaming("__strncat_40", "strncat"); -__static_renaming("__strcmp_43", "strcmp"); -__static_renaming("__strncmp_47", "strncmp"); -__static_renaming("__strcoll_50", "strcoll"); -__static_renaming("__strxfrm_54", "strxfrm"); -__static_renaming("____locale_t_62", "__locale_t"); -__static_renaming("__locale_t_63", "locale_t"); -__static_renaming("__strcoll_l_67", "strcoll_l"); -__static_renaming("__strxfrm_l_72", "strxfrm_l"); -__static_renaming("__strdup_74", "strdup"); -__static_renaming("__strndup_77", "strndup"); -__static_renaming("__strchr_80", "strchr"); -__static_renaming("__strrchr_83", "strrchr"); -__static_renaming("__strcspn_86", "strcspn"); -__static_renaming("__strspn_89", "strspn"); -__static_renaming("__strpbrk_92", "strpbrk"); -__static_renaming("__strstr_95", "strstr"); -__static_renaming("__strtok_98", "strtok"); -__static_renaming("____strtok_r_102", "__strtok_r"); -__static_renaming("__strtok_r_106", "strtok_r"); -__static_renaming("__strlen_108", "strlen"); -__static_renaming("__strlen_109", "strlen"); -__static_renaming("__strnlen_112", "strnlen"); -__static_renaming("__strerror_114", "strerror"); -__static_renaming("__strerror_115", "strerror"); -__static_renaming("__strerror_r_119", "strerror_r"); -__static_renaming("__strerror_l_122", "strerror_l"); -__static_renaming("____bzero_125", "__bzero"); -__static_renaming("____bzero_126", "__bzero"); -__static_renaming("__bcopy_130", "bcopy"); -__static_renaming("__bzero_133", "bzero"); -__static_renaming("__bcmp_137", "bcmp"); -__static_renaming("__index_140", "index"); -__static_renaming("__rindex_143", "rindex"); -__static_renaming("__ffs_145", "ffs"); -__static_renaming("__strcasecmp_148", "strcasecmp"); -__static_renaming("__strncasecmp_152", "strncasecmp"); -__static_renaming("__strsep_155", "strsep"); -__static_renaming("__strsignal_157", "strsignal"); -__static_renaming("____stpcpy_160", "__stpcpy"); -__static_renaming("__stpcpy_163", "stpcpy"); -__static_renaming("____stpncpy_167", "__stpncpy"); -__static_renaming("__stpncpy_171", "stpncpy"); -__static_renaming("____stpncpy_chk_200", "__stpncpy_chk"); -__static_renaming("____stpncpy_alias_204", "__stpncpy_alias"); -__static_renaming("__len_217", "len"); -__static_renaming("__len_218", "len"); -__static_renaming("__lfilename_221", "lfilename"); -__static_renaming("__cardreader_222", "cardreader"); -__static_renaming("__main_226", "main"); -__static_renaming("__main_227", "main"); +__static_renaming("__memset_16", "memset"); +__static_renaming("__memcmp_20", "memcmp"); +__static_renaming("__memchr_24", "memchr"); +__static_renaming("__strcpy_27", "strcpy"); +__static_renaming("__strncpy_31", "strncpy"); +__static_renaming("__strcat_34", "strcat"); +__static_renaming("__strncat_38", "strncat"); +__static_renaming("__strcmp_41", "strcmp"); +__static_renaming("__strncmp_45", "strncmp"); +__static_renaming("__strcoll_48", "strcoll"); +__static_renaming("__strxfrm_52", "strxfrm"); +__static_renaming("____locale_t_60", "__locale_t"); +__static_renaming("__locale_t_61", "locale_t"); +__static_renaming("__strcoll_l_65", "strcoll_l"); +__static_renaming("__strxfrm_l_70", "strxfrm_l"); +__static_renaming("__strdup_72", "strdup"); +__static_renaming("__strndup_75", "strndup"); +__static_renaming("__strchr_78", "strchr"); +__static_renaming("__strrchr_81", "strrchr"); +__static_renaming("__strcspn_84", "strcspn"); +__static_renaming("__strspn_87", "strspn"); +__static_renaming("__strpbrk_90", "strpbrk"); +__static_renaming("__strstr_93", "strstr"); +__static_renaming("__strtok_96", "strtok"); +__static_renaming("____strtok_r_100", "__strtok_r"); +__static_renaming("__strtok_r_104", "strtok_r"); +__static_renaming("__strlen_106", "strlen"); +__static_renaming("__strnlen_109", "strnlen"); +__static_renaming("__strerror_111", "strerror"); +__static_renaming("__strerror_r_115", "strerror_r"); +__static_renaming("__strerror_l_118", "strerror_l"); +__static_renaming("____bzero_121", "__bzero"); +__static_renaming("__bcopy_125", "bcopy"); +__static_renaming("__bzero_128", "bzero"); +__static_renaming("__bcmp_132", "bcmp"); +__static_renaming("__index_135", "index"); +__static_renaming("__rindex_138", "rindex"); +__static_renaming("__ffs_140", "ffs"); +__static_renaming("__strcasecmp_143", "strcasecmp"); +__static_renaming("__strncasecmp_147", "strncasecmp"); +__static_renaming("__strsep_150", "strsep"); +__static_renaming("__strsignal_152", "strsignal"); +__static_renaming("____stpcpy_155", "__stpcpy"); +__static_renaming("__stpcpy_158", "stpcpy"); +__static_renaming("____stpncpy_162", "__stpncpy"); +__static_renaming("__stpncpy_166", "stpncpy"); +__static_renaming("__main_169", "main"); -__static_condition_renaming("__static_condition_default_13", "!(defined __STRICT_ANSI__)"); -__static_condition_renaming("__static_condition_default_175", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_182", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_190", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_191", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_195", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_208", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_211", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_215", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_219", "(defined __STRICT_ANSI__) && (defined SDSUPPORT)"); -__static_condition_renaming("__static_condition_default_220", "!(defined __STRICT_ANSI__) && (defined SDSUPPORT)"); -__static_condition_renaming("__static_condition_default_223", "(defined SDSUPPORT)"); -__static_condition_renaming("__static_condition_default_228", "!(defined SDSUPPORT)"); -__static_condition_renaming("__static_condition_default_229", "(defined SDSUPPORT)"); -__static_condition_renaming("__static_condition_default_230", "(defined __CORRECT_ISO_CPP_STRING_H_PROTO)"); -if (__static_condition_default_230) -{ -__static_parse_error("Unable to parse"); -} }; typedef long int __ptrdiff_t_0;// L143:L324 typedef long unsigned int __size_t_1;// L177:L209 -struct ____locale_struct_56 { -struct __forward_tag_reference_55 * (____locales_57[13]);// L0 -const unsigned short int * (____ctype_b_58);// L33 -const int * (____ctype_tolower_59);// L34 -const int * (____ctype_toupper_60);// L35 -const char * (____names_61[13]);// L38 +struct ____locale_struct_54 { +struct __forward_tag_reference_53 * (____locales_55[13]);// L0 +const unsigned short int * (____ctype_b_56);// L33 +const int * (____ctype_tolower_57);// L34 +const int * (____ctype_toupper_58);// L35 +const char * (____names_59[13]);// L38 }; -typedef struct ____locale_struct_56 * (____locale_t_62);// L27:L39 -typedef ____locale_t_62 __locale_t_63;// L42 +typedef struct ____locale_struct_54 * (____locale_t_60);// L27:L39 +typedef ____locale_t_60 __locale_t_61;// L42 -struct __forward_tag_reference_55 { // generated union of struct variations +struct __forward_tag_reference_53 { // generated union of struct variations union { }; }; @@ -126,137 +81,64 @@ union { // typedef moved to top of scope // typedef moved to top of scope extern void * ((__memmove_8) (void * (____dest_5), const void * (____src_6), __size_t_1 ____n_7));// L46:L47 -extern void * ((__memset_17) (void * (____s_14), int ____c_15, __size_t_1 ____n_16));// L62 -extern void * ((__memset_18) (void * (____s_14), int ____c_15, __size_t_1 ____n_16));// L62 -extern int (__memcmp_22) (const void * (____s1_19), const void * (____s2_20), __size_t_1 ____n_21);// L65:L66 -extern void * ((__memchr_26) (const void * (____s_23), int ____c_24, __size_t_1 ____n_25));// L92:L93 -extern char * ((__strcpy_29) (char * __restrict ____dest_27, const char * __restrict ____src_28));// L125:L126 -extern char * ((__strncpy_33) (char * __restrict ____dest_30, const char * __restrict ____src_31, __size_t_1 ____n_32));// L128:L130 -extern char * ((__strcat_36) (char * __restrict ____dest_34, const char * __restrict ____src_35));// L133:L134 -extern char * ((__strncat_40) (char * __restrict ____dest_37, const char * __restrict ____src_38, __size_t_1 ____n_39));// L136:L137 -extern int (__strcmp_43) (const char * (____s1_41), const char * (____s2_42));// L140:L141 -extern int (__strncmp_47) (const char * (____s1_44), const char * (____s2_45), __size_t_1 ____n_46);// L143:L144 -extern int (__strcoll_50) (const char * (____s1_48), const char * (____s2_49));// L147:L148 -extern __size_t_1 (__strxfrm_54) (char * __restrict ____dest_51, const char * __restrict ____src_52, __size_t_1 ____n_53);// L150:L152 +extern void * ((__memset_16) (void * (____s_13), int ____c_14, __size_t_1 ____n_15));// L62 +extern int (__memcmp_20) (const void * (____s1_17), const void * (____s2_18), __size_t_1 ____n_19);// L65:L66 +extern void * ((__memchr_24) (const void * (____s_21), int ____c_22, __size_t_1 ____n_23));// L92:L93 +extern char * ((__strcpy_27) (char * __restrict ____dest_25, const char * __restrict ____src_26));// L125:L126 +extern char * ((__strncpy_31) (char * __restrict ____dest_28, const char * __restrict ____src_29, __size_t_1 ____n_30));// L128:L130 +extern char * ((__strcat_34) (char * __restrict ____dest_32, const char * __restrict ____src_33));// L133:L134 +extern char * ((__strncat_38) (char * __restrict ____dest_35, const char * __restrict ____src_36, __size_t_1 ____n_37));// L136:L137 +extern int (__strcmp_41) (const char * (____s1_39), const char * (____s2_40));// L140:L141 +extern int (__strncmp_45) (const char * (____s1_42), const char * (____s2_43), __size_t_1 ____n_44);// L143:L144 +extern int (__strcoll_48) (const char * (____s1_46), const char * (____s2_47));// L147:L148 +extern __size_t_1 (__strxfrm_52) (char * __restrict ____dest_49, const char * __restrict ____src_50, __size_t_1 ____n_51);// L150:L152 // typedef moved to top of scope // typedef moved to top of scope -extern int (__strcoll_l_67) (const char * (____s1_64), const char * (____s2_65), ____locale_t_62 ____l_66);// L162:L163 -extern __size_t_1 (__strxfrm_l_72) (char * (____dest_68), const char * (____src_69), __size_t_1 ____n_70, ____locale_t_62 ____l_71);// L165:L166 -extern char * ((__strdup_74) (const char * (____s_73)));// L171:L172 -extern char * ((__strndup_77) (const char * (____string_75), __size_t_1 ____n_76));// L179:L180 -extern char * ((__strchr_80) (const char * (____s_78), int ____c_79));// L231:L232 -extern char * ((__strrchr_83) (const char * (____s_81), int ____c_82));// L258:L259 -extern __size_t_1 (__strcspn_86) (const char * (____s_84), const char * (____reject_85));// L280:L281 -extern __size_t_1 (__strspn_89) (const char * (____s_87), const char * (____accept_88));// L284:L285 -extern char * ((__strpbrk_92) (const char * (____s_90), const char * (____accept_91)));// L310:L311 -extern char * ((__strstr_95) (const char * (____haystack_93), const char * (____needle_94)));// L337:L338 -extern char * ((__strtok_98) (char * __restrict ____s_96, const char * __restrict ____delim_97));// L343:L344 -extern char * ((____strtok_r_102) (char * __restrict ____s_99, const char * __restrict ____delim_100, char * (* __restrict ____save_ptr_101)));// L349:L352 -extern char * ((__strtok_r_106) (char * __restrict ____s_103, const char * __restrict ____delim_104, char * (* __restrict ____save_ptr_105)));// L354:L356 -extern __size_t_1 (__strlen_108) (const char * (____s_107));// L394:L395 -extern __size_t_1 (__strlen_109) (const char * (____s_107));// L394:L395 -extern __size_t_1 (__strnlen_112) (const char * (____string_110), __size_t_1 ____maxlen_111);// L401:L402 -extern char * ((__strerror_114) (int ____errnum_113));// L408 -extern char * ((__strerror_115) (int ____errnum_113));// L408 -extern int (__strerror_r_119) (int ____errnum_116, char * (____buf_117), __size_t_1 ____buflen_118);// L422:L424 -extern char * ((__strerror_l_122) (int ____errnum_120, ____locale_t_62 ____l_121));// L440 -extern void (____bzero_125) (void * (____s_123), __size_t_1 ____n_124);// L446 -extern void (____bzero_126) (void * (____s_123), __size_t_1 ____n_124);// L446 -extern void (__bcopy_130) (const void * (____src_127), void * (____dest_128), __size_t_1 ____n_129);// L450:L451 -extern void (__bzero_133) (void * (____s_131), __size_t_1 ____n_132);// L454 -extern int (__bcmp_137) (const void * (____s1_134), const void * (____s2_135), __size_t_1 ____n_136);// L457:L458 -extern char * ((__index_140) (const char * (____s_138), int ____c_139));// L484:L485 -extern char * ((__rindex_143) (const char * (____s_141), int ____c_142));// L512:L513 -extern int (__ffs_145) (int ____i_144);// L518 -extern int (__strcasecmp_148) (const char * (____s1_146), const char * (____s2_147));// L529:L530 -extern int (__strncasecmp_152) (const char * (____s1_149), const char * (____s2_150), __size_t_1 ____n_151);// L533:L534 -extern char * ((__strsep_155) (char * (* __restrict ____stringp_153), const char * __restrict ____delim_154));// L552:L554 -extern char * ((__strsignal_157) (int ____sig_156));// L559 -extern char * ((____stpcpy_160) (char * __restrict ____dest_158, const char * __restrict ____src_159));// L562:L563 -extern char * ((__stpcpy_163) (char * __restrict ____dest_161, const char * __restrict ____src_162));// L564:L565 -extern char * ((____stpncpy_167) (char * __restrict ____dest_164, const char * __restrict ____src_165, __size_t_1 ____n_166));// L569:L571 -extern char * ((__stpncpy_171) (char * __restrict ____dest_168, const char * __restrict ____src_169, __size_t_1 ____n_170));// L572:L574 -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -extern char * ((____stpncpy_chk_200) (char * (____dest_196), const char * (____src_197), __size_t_1 ____n_198, __size_t_1 ____destlen_199));// L130:L131 -extern char * ((____stpncpy_alias_204) (char * (____dest_201), const char * (____src_202), __size_t_1 ____n_203));// L132:L133 -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -void (__cardreader_222) (char * (__prepend_216)) { - -if (__static_condition_default_223) { - -{ -{ - - - -int __len_217= __strlen_108 ( __prepend_216 ) + 13 + 1;// L10 - -int __len_218= __strlen_109 ( __prepend_216 ) + 13 + 1;// L10 - -if (__static_condition_default_219) { -__static_type_error("invalid declaration of path under this presence condition"); -} - -if (__static_condition_default_220) { -__static_type_error("invalid declaration of path under this presence condition"); -} - -char __lfilename_221[13]= "FOLDERNAME12\0";// L15 - -__static_type_error("type error : no valid expression"); // L19 -if ( __prepend_216 [ 0 ] == '\0' )// L20 -{ -__static_type_error("type error : no valid expression"); // L20 -} -__static_type_error("type error : no valid expression"); // L21 -__static_type_error("type error : no valid expression"); // L22 -__static_type_error("type error : no valid expression"); // L23 -} -} - - -} -} -int (__main_226) (int __argc_224, char * (* (__argv_225))) { - -if (__static_condition_default_228) { - -{ -{ - - - -__static_type_error("type error") ; // L31 -return 0 ;// L32 -} -} - - -} -} -int (__main_227) (int __argc_224, char * (* (__argv_225))) { - -if (__static_condition_default_229) { +extern int (__strcoll_l_65) (const char * (____s1_62), const char * (____s2_63), ____locale_t_60 ____l_64);// L162:L163 +extern __size_t_1 (__strxfrm_l_70) (char * (____dest_66), const char * (____src_67), __size_t_1 ____n_68, ____locale_t_60 ____l_69);// L165:L166 +extern char * ((__strdup_72) (const char * (____s_71)));// L171:L172 +extern char * ((__strndup_75) (const char * (____string_73), __size_t_1 ____n_74));// L179:L180 +extern char * ((__strchr_78) (const char * (____s_76), int ____c_77));// L231:L232 +extern char * ((__strrchr_81) (const char * (____s_79), int ____c_80));// L258:L259 +extern __size_t_1 (__strcspn_84) (const char * (____s_82), const char * (____reject_83));// L280:L281 +extern __size_t_1 (__strspn_87) (const char * (____s_85), const char * (____accept_86));// L284:L285 +extern char * ((__strpbrk_90) (const char * (____s_88), const char * (____accept_89)));// L310:L311 +extern char * ((__strstr_93) (const char * (____haystack_91), const char * (____needle_92)));// L337:L338 +extern char * ((__strtok_96) (char * __restrict ____s_94, const char * __restrict ____delim_95));// L343:L344 +extern char * ((____strtok_r_100) (char * __restrict ____s_97, const char * __restrict ____delim_98, char * (* __restrict ____save_ptr_99)));// L349:L352 +extern char * ((__strtok_r_104) (char * __restrict ____s_101, const char * __restrict ____delim_102, char * (* __restrict ____save_ptr_103)));// L354:L356 +extern __size_t_1 (__strlen_106) (const char * (____s_105));// L394:L395 +extern __size_t_1 (__strnlen_109) (const char * (____string_107), __size_t_1 ____maxlen_108);// L401:L402 +extern char * ((__strerror_111) (int ____errnum_110));// L408 +extern int (__strerror_r_115) (int ____errnum_112, char * (____buf_113), __size_t_1 ____buflen_114);// L422:L424 +extern char * ((__strerror_l_118) (int ____errnum_116, ____locale_t_60 ____l_117));// L440 +extern void (____bzero_121) (void * (____s_119), __size_t_1 ____n_120);// L446 +extern void (__bcopy_125) (const void * (____src_122), void * (____dest_123), __size_t_1 ____n_124);// L450:L451 +extern void (__bzero_128) (void * (____s_126), __size_t_1 ____n_127);// L454 +extern int (__bcmp_132) (const void * (____s1_129), const void * (____s2_130), __size_t_1 ____n_131);// L457:L458 +extern char * ((__index_135) (const char * (____s_133), int ____c_134));// L484:L485 +extern char * ((__rindex_138) (const char * (____s_136), int ____c_137));// L512:L513 +extern int (__ffs_140) (int ____i_139);// L518 +extern int (__strcasecmp_143) (const char * (____s1_141), const char * (____s2_142));// L529:L530 +extern int (__strncasecmp_147) (const char * (____s1_144), const char * (____s2_145), __size_t_1 ____n_146);// L533:L534 +extern char * ((__strsep_150) (char * (* __restrict ____stringp_148), const char * __restrict ____delim_149));// L552:L554 +extern char * ((__strsignal_152) (int ____sig_151));// L559 +extern char * ((____stpcpy_155) (char * __restrict ____dest_153, const char * __restrict ____src_154));// L562:L563 +extern char * ((__stpcpy_158) (char * __restrict ____dest_156, const char * __restrict ____src_157));// L564:L565 +extern char * ((____stpncpy_162) (char * __restrict ____dest_159, const char * __restrict ____src_160, __size_t_1 ____n_161));// L569:L571 +extern char * ((__stpncpy_166) (char * __restrict ____dest_163, const char * __restrict ____src_164, __size_t_1 ____n_165));// L572:L574 +int (__main_169) (int __argc_167, char * (* (__argv_168))) { { { - __cardreader_222 ("") ; // L31 +__static_type_error("type error : no valid expression"); // L31 return 0 ;// L32 } } } -} diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.clangres index 88e1cde3..e69de29b 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.clangres @@ -1,10 +0,0 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.c:200:6: warning: Value stored to '__len_217' during its initialization is never read [deadcode.DeadStores] -int __len_217= __strlen_108 ( __prepend_216 ) + 13 + 1;// L10 - ^~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.c:202:6: warning: Value stored to '__len_218' during its initialization is never read [deadcode.DeadStores] -int __len_218= __strlen_109 ( __prepend_216 ) + 13 + 1;// L10 - ^~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.c:212:7: warning: Value stored to '__lfilename_221' during its initialization is never read [deadcode.DeadStores] -char __lfilename_221[13]= "FOLDERNAME12\0";// L15 - ^~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~ -3 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.inferres index 152d7751..11be972e 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.inferres +++ b/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.inferres @@ -1,32 +1,2 @@ -MARLIN/a7fc1f83c81.desugared.c:200: error: Dead Store - The value written to &__len_217 (type int) is never used. - 198. - 199. - 200. int __len_217= __strlen_108 ( __prepend_216 ) + 13 + 1;// L10 - ^ - 201. - 202. int __len_218= __strlen_109 ( __prepend_216 ) + 13 + 1;// L10 - -MARLIN/a7fc1f83c81.desugared.c:202: error: Dead Store - The value written to &__len_218 (type int) is never used. - 200. int __len_217= __strlen_108 ( __prepend_216 ) + 13 + 1;// L10 - 201. - 202. int __len_218= __strlen_109 ( __prepend_216 ) + 13 + 1;// L10 - ^ - 203. - 204. if (__static_condition_default_219) { - -MARLIN/a7fc1f83c81.desugared.c:212: error: Dead Store - The value written to &__lfilename_221 (type char[13*1]) is never used. - 210. } - 211. - 212. char __lfilename_221[13]= "FOLDERNAME12\0";// L15 - ^ - 213. - 214. __static_type_error("type error : no valid expression"); // L19 - - -Found 3 issues - Issue Type(ISSUED_TYPE_ID): # - Dead Store(DEAD_STORE): 3 + No issues found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/b8e79dce897.desugared.c b/fonda/cpp_testsuite/varBugs/MARLIN/b8e79dce897.desugared.c index 25817673..67c108c4 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/b8e79dce897.desugared.c +++ b/fonda/cpp_testsuite/varBugs/MARLIN/b8e79dce897.desugared.c @@ -7,289 +7,289 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_646; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_613; -extern const bool __static_condition_default_955; -extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_1105; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_875; -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_290; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_929; -extern const bool __static_condition_default_76; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_1098; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_858; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_311; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_1104; -extern const bool __static_condition_default_386; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_357; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_388; +extern const bool __static_condition_default_198; extern const bool __static_condition_default_767; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_187; -extern const bool __static_condition_default_709; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_1097; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_751; +extern const bool __static_condition_default_1073; extern const bool __static_condition_default_201; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_1110; -extern const bool __static_condition_default_645; -extern const bool __static_condition_default_53; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_1106; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_963; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_1109; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_1103; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_341; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_544; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_769; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_692; extern const bool __static_condition_default_781; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_248; -extern const bool __static_condition_default_894; -extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_693; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_717; extern const bool __static_condition_default_204; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_549; -extern const bool __static_condition_default_182; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_1097; extern const bool __static_condition_default_649; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_846; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_789; +extern const bool __static_condition_default_1095; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_317; extern const bool __static_condition_default_536; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_412; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_1102; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_313; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_1108; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_702; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_380; +extern const bool __static_condition_default_846; +extern const bool __static_condition_default_488; +extern const bool __static_condition_default_288; extern const bool __static_condition_default_521; -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_801; extern const bool __static_condition_default_701; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_512; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_380; -extern const bool __static_condition_default_419; -extern const bool __static_condition_default_388; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_842; +extern const bool __static_condition_default_568; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_963; +extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_386; +extern const bool __static_condition_default_431; extern const bool __static_condition_default_270; -extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_1109; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_549; +extern const bool __static_condition_default_1108; extern const bool __static_condition_default_998; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_402; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_315; -extern const bool __static_condition_default_559; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_872; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_382; -extern const bool __static_condition_default_848; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_1096; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_991; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_907; +extern const bool __static_condition_default_1101; extern const bool __static_condition_default_878; -extern const bool __static_condition_default_787; -extern const bool __static_condition_default_670; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_803; -extern const bool __static_condition_default_583; -extern const bool __static_condition_default_543; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_761; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_779; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_1111; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_887; -extern const bool __static_condition_default_217; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_1106; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_76; +extern const bool __static_condition_default_271; extern const bool __static_condition_default_868; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_347; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_791; extern const bool __static_condition_default_393; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_455; +extern const bool __static_condition_default_510; extern const bool __static_condition_default_677; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_367; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_957; -extern const bool __static_condition_default_1101; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_461; -extern const bool __static_condition_default_488; -extern const bool __static_condition_default_780; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_438; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_1100; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_564; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_431; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_84; +extern const bool __static_condition_default_613; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_1007; extern const bool __static_condition_default_331; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_499; +extern const bool __static_condition_default_1111; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_779; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_721; +extern const bool __static_condition_default_1098; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_311; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_788; extern const bool __static_condition_default_333; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_568; -extern const bool __static_condition_default_280; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_875; extern const bool __static_condition_default_516; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_956; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_1095; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_891; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_491; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_809; extern const bool __static_condition_default_408; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_347; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_1099; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_511; extern const bool __static_condition_default_793; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_198; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_317; -extern const bool __static_condition_default_734; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_891; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_1102; +extern const bool __static_condition_default_290; +extern const bool __static_condition_default_842; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_550; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_187; +extern const bool __static_condition_default_512; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_1096; +extern const bool __static_condition_default_1065; extern const bool __static_condition_default_475; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_1100; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_1110; +extern const bool __static_condition_default_337; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_1104; +extern const bool __static_condition_default_702; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_1103; extern const bool __static_condition_default_244; -extern const bool __static_condition_default_914; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_638; -extern const bool __static_condition_default_632; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_755; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_590; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_753; -extern const bool __static_condition_default_907; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_769; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_759; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_734; extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_685; +extern const bool __static_condition_default_636; +extern const bool __static_condition_default_852; extern const bool __static_condition_default_747; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_489; +extern const bool __static_condition_default_929; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_299; extern const bool __static_condition_default_296; -extern const bool __static_condition_default_625; +extern const bool __static_condition_default_583; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_670; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_789; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_1099; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_955; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_365; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_761; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_367; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_419; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_382; +extern const bool __static_condition_default_559; +extern const bool __static_condition_default_278; extern const bool __static_condition_default_663; -extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_894; +extern const bool __static_condition_default_834; +extern const bool __static_condition_default_455; +extern const bool __static_condition_default_753; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_1105; +extern const bool __static_condition_default_619; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_552; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -846,8 +846,7 @@ __static_condition_renaming("__static_condition_default_1109", "(defined __need_ __static_condition_renaming("__static_condition_default_1110", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); __static_condition_renaming("__static_condition_default_1111", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -if (__static_condition_default_1111) -{ +if (__static_condition_default_1111) { __static_parse_error("Unable to parse"); } }; diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.desugared.c b/fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.desugared.c index f540d3c5..aea45246 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.desugared.c +++ b/fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.desugared.c @@ -7,8 +7,8 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_3; extern const bool __static_condition_default_4; +extern const bool __static_condition_default_3; void __static_initializer_default() { __static_renaming("__left_probe_bed_position_0", "left_probe_bed_position"); __static_renaming("__xGridSpacing_1", "xGridSpacing"); diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/f87c80889fe.desugared.c b/fonda/cpp_testsuite/varBugs/MARLIN/f87c80889fe.desugared.c index d55d5727..57d33bd6 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/f87c80889fe.desugared.c +++ b/fonda/cpp_testsuite/varBugs/MARLIN/f87c80889fe.desugared.c @@ -7,370 +7,370 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_412; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_2330; -extern const bool __static_condition_default_2399; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_204; -extern const bool __static_condition_default_1568; -extern const bool __static_condition_default_549; -extern const bool __static_condition_default_315; -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_347; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_2387; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_419; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_317; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_488; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_1369; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_755; extern const bool __static_condition_default_1165; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_747; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_2400; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_1416; +extern const bool __static_condition_default_2352; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_875; +extern const bool __static_condition_default_1791; +extern const bool __static_condition_default_544; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_1420; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_76; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_1345; +extern const bool __static_condition_default_1776; +extern const bool __static_condition_default_2064; +extern const bool __static_condition_default_1814; +extern const bool __static_condition_default_223; extern const bool __static_condition_default_753; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_645; +extern const bool __static_condition_default_1402; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_1532; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_419; +extern const bool __static_condition_default_1027; extern const bool __static_condition_default_956; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_1377; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_670; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_1749; -extern const bool __static_condition_default_1816; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_1385; -extern const bool __static_condition_default_473; +extern const bool __static_condition_default_1498; +extern const bool __static_condition_default_1556; +extern const bool __static_condition_default_198; extern const bool __static_condition_default_380; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_957; -extern const bool __static_condition_default_1405; +extern const bool __static_condition_default_1398; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_512; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_290; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_1391; +extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_1409; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_1381; +extern const bool __static_condition_default_1152; +extern const bool __static_condition_default_1753; +extern const bool __static_condition_default_1775; +extern const bool __static_condition_default_549; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_1432; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_271; extern const bool __static_condition_default_792; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_1405; +extern const bool __static_condition_default_382; +extern const bool __static_condition_default_1395; +extern const bool __static_condition_default_2313; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_433; extern const bool __static_condition_default_1787; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_187; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_488; -extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_2381; -extern const bool __static_condition_default_521; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_2394; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_991; +extern const bool __static_condition_default_619; +extern const bool __static_condition_default_2047; extern const bool __static_condition_default_573; -extern const bool __static_condition_default_512; -extern const bool __static_condition_default_2388; -extern const bool __static_condition_default_858; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_1402; -extern const bool __static_condition_default_2064; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_693; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_1458; -extern const bool __static_condition_default_290; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_217; -extern const bool __static_condition_default_2044; -extern const bool __static_condition_default_559; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_1353; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_2344; extern const bool __static_condition_default_386; -extern const bool __static_condition_default_2389; -extern const bool __static_condition_default_249; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_1424; +extern const bool __static_condition_default_842; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_2062; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_1485; +extern const bool __static_condition_default_1749; +extern const bool __static_condition_default_2045; extern const bool __static_condition_default_803; -extern const bool __static_condition_default_2063; -extern const bool __static_condition_default_1341; -extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_2350; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_2378; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_1090; extern const bool __static_condition_default_288; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_1944; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_2395; +extern const bool __static_condition_default_759; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_333; extern const bool __static_condition_default_583; -extern const bool __static_condition_default_263; +extern const bool __static_condition_default_537; extern const bool __static_condition_default_685; -extern const bool __static_condition_default_2313; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_702; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_1361; -extern const bool __static_condition_default_1515; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_846; -extern const bool __static_condition_default_523; +extern const bool __static_condition_default_2314; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_907; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_2379; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_1810; +extern const bool __static_condition_default_455; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_521; +extern const bool __static_condition_default_2343; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_258; extern const bool __static_condition_default_756; -extern const bool __static_condition_default_632; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_431; -extern const bool __static_condition_default_1774; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_1395; -extern const bool __static_condition_default_842; -extern const bool __static_condition_default_1556; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_929; +extern const bool __static_condition_default_187; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_84; extern const bool __static_condition_default_721; +extern const bool __static_condition_default_1365; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_1475; +extern const bool __static_condition_default_650; extern const bool __static_condition_default_1773; -extern const bool __static_condition_default_198; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_2045; -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_2376; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_1775; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_2395; +extern const bool __static_condition_default_204; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_375; extern const bool __static_condition_default_432; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_779; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_2321; -extern const bool __static_condition_default_793; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_872; -extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_1152; -extern const bool __static_condition_default_2320; -extern const bool __static_condition_default_1428; -extern const bool __static_condition_default_1459; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_1750; -extern const bool __static_condition_default_1373; -extern const bool __static_condition_default_1532; -extern const bool __static_condition_default_1365; +extern const bool __static_condition_default_331; extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_2329; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_1791; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_2350; +extern const bool __static_condition_default_1353; +extern const bool __static_condition_default_311; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_1164; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_747; +extern const bool __static_condition_default_2396; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_929; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_894; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_1373; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_668; extern const bool __static_condition_default_633; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_2315; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_1436; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_2390; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_1349; +extern const bool __static_condition_default_1459; +extern const bool __static_condition_default_536; +extern const bool __static_condition_default_388; +extern const bool __static_condition_default_2323; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_1453; +extern const bool __static_condition_default_1516; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_769; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_955; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_670; +extern const bool __static_condition_default_1361; +extern const bool __static_condition_default_2389; +extern const bool __static_condition_default_2046; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_2351; +extern const bool __static_condition_default_170; extern const bool __static_condition_default_813; extern const bool __static_condition_default_887; -extern const bool __static_condition_default_646; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_461; -extern const bool __static_condition_default_1315; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_1498; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_333; +extern const bool __static_condition_default_1357; +extern const bool __static_condition_default_1377; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_1515; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_1458; +extern const bool __static_condition_default_1572; +extern const bool __static_condition_default_2043; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_193; extern const bool __static_condition_default_761; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_1785; -extern const bool __static_condition_default_1453; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_2047; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_1398; -extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_2329; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_891; +extern const bool __static_condition_default_550; +extern const bool __static_condition_default_677; +extern const bool __static_condition_default_846; +extern const bool __static_condition_default_1385; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_2388; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_1774; +extern const bool __static_condition_default_1568; +extern const bool __static_condition_default_736; extern const bool __static_condition_default_363; -extern const bool __static_condition_default_1420; -extern const bool __static_condition_default_1814; -extern const bool __static_condition_default_1753; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_438; -extern const bool __static_condition_default_590; -extern const bool __static_condition_default_2377; extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_1424; -extern const bool __static_condition_default_701; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_780; -extern const bool __static_condition_default_471; +extern const bool __static_condition_default_2377; +extern const bool __static_condition_default_1785; +extern const bool __static_condition_default_365; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_636; +extern const bool __static_condition_default_834; +extern const bool __static_condition_default_702; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_693; extern const bool __static_condition_default_393; -extern const bool __static_condition_default_543; -extern const bool __static_condition_default_1369; -extern const bool __static_condition_default_1789; -extern const bool __static_condition_default_1808; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_568; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_787; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_878; +extern const bool __static_condition_default_1576; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_347; extern const bool __static_condition_default_475; -extern const bool __static_condition_default_1436; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_53; -extern const bool __static_condition_default_357; -extern const bool __static_condition_default_1944; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_311; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_1560; -extern const bool __static_condition_default_2322; -extern const bool __static_condition_default_1416; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_1516; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_2343; -extern const bool __static_condition_default_382; -extern const bool __static_condition_default_76; -extern const bool __static_condition_default_649; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_1754; +extern const bool __static_condition_default_367; extern const bool __static_condition_default_613; -extern const bool __static_condition_default_499; +extern const bool __static_condition_default_270; extern const bool __static_condition_default_663; -extern const bool __static_condition_default_2314; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_1810; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_709; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_2378; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_2342; -extern const bool __static_condition_default_264; +extern const bool __static_condition_default_779; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_263; extern const bool __static_condition_default_284; -extern const bool __static_condition_default_755; -extern const bool __static_condition_default_1159; -extern const bool __static_condition_default_1432; -extern const bool __static_condition_default_2062; -extern const bool __static_condition_default_1572; -extern const bool __static_condition_default_2312; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_1552; -extern const bool __static_condition_default_2349; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_1381; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_2351; -extern const bool __static_condition_default_1345; -extern const bool __static_condition_default_1485; -extern const bool __static_condition_default_677; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_2063; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_2330; +extern const bool __static_condition_default_2322; +extern const bool __static_condition_default_767; extern const bool __static_condition_default_1564; -extern const bool __static_condition_default_1576; -extern const bool __static_condition_default_1754; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_963; -extern const bool __static_condition_default_2043; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_914; -extern const bool __static_condition_default_891; -extern const bool __static_condition_default_848; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_1349; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_1776; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_248; -extern const bool __static_condition_default_388; -extern const bool __static_condition_default_1475; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_894; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_282; +extern const bool __static_condition_default_337; +extern const bool __static_condition_default_568; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_1789; +extern const bool __static_condition_default_1531; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_1341; +extern const bool __static_condition_default_369; extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_1357; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_313; -extern const bool __static_condition_default_907; -extern const bool __static_condition_default_367; -extern const bool __static_condition_default_1164; -extern const bool __static_condition_default_1391; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_536; -extern const bool __static_condition_default_2046; -extern const bool __static_condition_default_408; -extern const bool __static_condition_default_769; -extern const bool __static_condition_default_875; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_1388; -extern const bool __static_condition_default_1409; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_1552; +extern const bool __static_condition_default_823; extern const bool __static_condition_default_1489; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_638; -extern const bool __static_condition_default_280; +extern const bool __static_condition_default_489; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_1750; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_2044; +extern const bool __static_condition_default_1315; +extern const bool __static_condition_default_1560; +extern const bool __static_condition_default_2331; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_662; extern const bool __static_condition_default_789; -extern const bool __static_condition_default_955; -extern const bool __static_condition_default_1531; +extern const bool __static_condition_default_1816; +extern const bool __static_condition_default_1428; +extern const bool __static_condition_default_559; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_2321; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_1159; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_1388; extern const bool __static_condition_default_564; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_402; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_2328; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_963; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_1808; +extern const bool __static_condition_default_791; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_2382; +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_825; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -1148,76 +1148,77 @@ __static_renaming("__strndup_2164", "strndup"); __static_renaming("__strndup_2165", "strndup"); __static_renaming("__strndup_2166", "strndup"); __static_renaming("__strchr_2169", "strchr"); -__static_renaming("__strrchr_2172", "strrchr"); -__static_renaming("__strcspn_2175", "strcspn"); +__static_renaming("__strchr_2170", "strchr"); +__static_renaming("__strrchr_2173", "strrchr"); __static_renaming("__strcspn_2176", "strcspn"); __static_renaming("__strcspn_2177", "strcspn"); -__static_renaming("__strspn_2180", "strspn"); +__static_renaming("__strcspn_2178", "strcspn"); __static_renaming("__strspn_2181", "strspn"); __static_renaming("__strspn_2182", "strspn"); -__static_renaming("__strpbrk_2185", "strpbrk"); -__static_renaming("__strstr_2188", "strstr"); -__static_renaming("__strtok_2191", "strtok"); -__static_renaming("____strtok_r_2195", "__strtok_r"); -__static_renaming("__strtok_r_2199", "strtok_r"); -__static_renaming("__strlen_2201", "strlen"); +__static_renaming("__strspn_2183", "strspn"); +__static_renaming("__strpbrk_2186", "strpbrk"); +__static_renaming("__strstr_2189", "strstr"); +__static_renaming("__strtok_2192", "strtok"); +__static_renaming("____strtok_r_2196", "__strtok_r"); +__static_renaming("__strtok_r_2200", "strtok_r"); __static_renaming("__strlen_2202", "strlen"); __static_renaming("__strlen_2203", "strlen"); __static_renaming("__strlen_2204", "strlen"); __static_renaming("__strlen_2205", "strlen"); __static_renaming("__strlen_2206", "strlen"); -__static_renaming("__strnlen_2211", "strnlen"); +__static_renaming("__strlen_2207", "strlen"); __static_renaming("__strnlen_2212", "strnlen"); __static_renaming("__strnlen_2213", "strnlen"); -__static_renaming("__strerror_2215", "strerror"); +__static_renaming("__strnlen_2214", "strnlen"); __static_renaming("__strerror_2216", "strerror"); -__static_renaming("__strerror_r_2222", "strerror_r"); +__static_renaming("__strerror_2217", "strerror"); __static_renaming("__strerror_r_2223", "strerror_r"); __static_renaming("__strerror_r_2224", "strerror_r"); -__static_renaming("__strerror_l_2227", "strerror_l"); -__static_renaming("____bzero_2232", "__bzero"); +__static_renaming("__strerror_r_2225", "strerror_r"); +__static_renaming("__strerror_l_2228", "strerror_l"); __static_renaming("____bzero_2233", "__bzero"); __static_renaming("____bzero_2234", "__bzero"); __static_renaming("____bzero_2235", "__bzero"); __static_renaming("____bzero_2236", "__bzero"); __static_renaming("____bzero_2237", "__bzero"); -__static_renaming("__bcopy_2243", "bcopy"); +__static_renaming("____bzero_2238", "__bzero"); __static_renaming("__bcopy_2244", "bcopy"); __static_renaming("__bcopy_2245", "bcopy"); -__static_renaming("__bzero_2250", "bzero"); +__static_renaming("__bcopy_2246", "bcopy"); __static_renaming("__bzero_2251", "bzero"); __static_renaming("__bzero_2252", "bzero"); -__static_renaming("__bcmp_2258", "bcmp"); +__static_renaming("__bzero_2253", "bzero"); __static_renaming("__bcmp_2259", "bcmp"); __static_renaming("__bcmp_2260", "bcmp"); -__static_renaming("__index_2263", "index"); -__static_renaming("__rindex_2266", "rindex"); -__static_renaming("__ffs_2268", "ffs"); -__static_renaming("__strcasecmp_2271", "strcasecmp"); -__static_renaming("__strncasecmp_2277", "strncasecmp"); +__static_renaming("__bcmp_2261", "bcmp"); +__static_renaming("__index_2264", "index"); +__static_renaming("__rindex_2267", "rindex"); +__static_renaming("__ffs_2269", "ffs"); +__static_renaming("__strcasecmp_2272", "strcasecmp"); __static_renaming("__strncasecmp_2278", "strncasecmp"); __static_renaming("__strncasecmp_2279", "strncasecmp"); -__static_renaming("__strsep_2282", "strsep"); -__static_renaming("__strsignal_2284", "strsignal"); -__static_renaming("____stpcpy_2287", "__stpcpy"); -__static_renaming("__stpcpy_2290", "stpcpy"); -__static_renaming("____stpncpy_2296", "__stpncpy"); +__static_renaming("__strncasecmp_2280", "strncasecmp"); +__static_renaming("__strsep_2283", "strsep"); +__static_renaming("__strsignal_2285", "strsignal"); +__static_renaming("____stpcpy_2288", "__stpcpy"); +__static_renaming("__stpcpy_2291", "stpcpy"); __static_renaming("____stpncpy_2297", "__stpncpy"); __static_renaming("____stpncpy_2298", "__stpncpy"); -__static_renaming("__stpncpy_2304", "stpncpy"); +__static_renaming("____stpncpy_2299", "__stpncpy"); __static_renaming("__stpncpy_2305", "stpncpy"); __static_renaming("__stpncpy_2306", "stpncpy"); -__static_renaming("____stpncpy_chk_2360", "__stpncpy_chk"); +__static_renaming("__stpncpy_2307", "stpncpy"); __static_renaming("____stpncpy_chk_2361", "__stpncpy_chk"); __static_renaming("____stpncpy_chk_2362", "__stpncpy_chk"); -__static_renaming("____stpncpy_alias_2368", "__stpncpy_alias"); +__static_renaming("____stpncpy_chk_2363", "__stpncpy_chk"); __static_renaming("____stpncpy_alias_2369", "__stpncpy_alias"); __static_renaming("____stpncpy_alias_2370", "__stpncpy_alias"); -__static_renaming("__millis_2390", "millis"); -__static_renaming("__residencyStart_2391", "residencyStart"); -__static_renaming("__process_commands_2392", "process_commands"); +__static_renaming("____stpncpy_alias_2371", "__stpncpy_alias"); +__static_renaming("__millis_2391", "millis"); +__static_renaming("__residencyStart_2392", "residencyStart"); __static_renaming("__process_commands_2393", "process_commands"); -__static_renaming("__main_2398", "main"); +__static_renaming("__process_commands_2394", "process_commands"); +__static_renaming("__main_2399", "main"); __static_condition_renaming("__static_condition_default_53", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); __static_condition_renaming("__static_condition_default_76", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); @@ -1559,33 +1560,32 @@ __static_condition_renaming("__static_condition_default_2047", "(defined __need_ __static_condition_renaming("__static_condition_default_2062", "!(defined __need___FILE) && !(defined __STRICT_ANSI__)"); __static_condition_renaming("__static_condition_default_2063", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H)"); __static_condition_renaming("__static_condition_default_2064", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2312", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2313", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2314", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2320", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2321", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2322", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2328", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2329", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2330", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2342", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2343", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2349", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2350", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2351", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2376", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2377", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2378", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2381", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2387", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2388", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2389", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2394", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2395", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2399", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && (defined _STDLIB_H) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && (defined _STDLIB_H) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO)"); - -if (__static_condition_default_2399) -{ +__static_condition_renaming("__static_condition_default_2313", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2314", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2315", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2321", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2322", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2323", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2329", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2330", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2331", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2343", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2344", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2350", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2351", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2352", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2377", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2378", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2379", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2382", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2388", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2389", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2390", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2395", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2396", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2400", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); + +if (__static_condition_default_2400) { __static_parse_error("Unable to parse"); } }; @@ -3077,65 +3077,66 @@ extern char * ((__strndup_2164) (const char * (____string_2160), __size_t_1 _ extern char * ((__strndup_2165) (const char * (____string_2160), __size_t_1093 ____n_2162));// L179:L180 extern char * ((__strndup_2166) (const char * (____string_2160), __size_t_2037 ____n_2163));// L179:L180 extern char * ((__strchr_2169) (const char * (____s_2167), int ____c_2168));// L231:L232 -extern char * ((__strrchr_2172) (const char * (____s_2170), int ____c_2171));// L258:L259 -extern __size_t_1 (__strcspn_2175) (const char * (____s_2173), const char * (____reject_2174));// L280:L281 -extern __size_t_1093 (__strcspn_2176) (const char * (____s_2173), const char * (____reject_2174));// L280:L281 -extern __size_t_2037 (__strcspn_2177) (const char * (____s_2173), const char * (____reject_2174));// L280:L281 -extern __size_t_1 (__strspn_2180) (const char * (____s_2178), const char * (____accept_2179));// L284:L285 -extern __size_t_1093 (__strspn_2181) (const char * (____s_2178), const char * (____accept_2179));// L284:L285 -extern __size_t_2037 (__strspn_2182) (const char * (____s_2178), const char * (____accept_2179));// L284:L285 -extern char * ((__strpbrk_2185) (const char * (____s_2183), const char * (____accept_2184)));// L310:L311 -extern char * ((__strstr_2188) (const char * (____haystack_2186), const char * (____needle_2187)));// L337:L338 -extern char * ((__strtok_2191) (char * __restrict ____s_2189, const char * __restrict ____delim_2190));// L343:L344 -extern char * ((____strtok_r_2195) (char * __restrict ____s_2192, const char * __restrict ____delim_2193, char * (* __restrict ____save_ptr_2194)));// L349:L352 -extern char * ((__strtok_r_2199) (char * __restrict ____s_2196, const char * __restrict ____delim_2197, char * (* __restrict ____save_ptr_2198)));// L354:L356 -extern __size_t_1 (__strlen_2201) (const char * (____s_2200));// L394:L395 -extern __size_t_1093 (__strlen_2202) (const char * (____s_2200));// L394:L395 -extern __size_t_2037 (__strlen_2203) (const char * (____s_2200));// L394:L395 -extern __size_t_1 (__strlen_2204) (const char * (____s_2200));// L394:L395 -extern __size_t_1093 (__strlen_2205) (const char * (____s_2200));// L394:L395 -extern __size_t_2037 (__strlen_2206) (const char * (____s_2200));// L394:L395 -extern __size_t_1 (__strnlen_2211) (const char * (____string_2207), __size_t_1 ____maxlen_2208);// L401:L402 -extern __size_t_1093 (__strnlen_2212) (const char * (____string_2207), __size_t_1093 ____maxlen_2209);// L401:L402 -extern __size_t_2037 (__strnlen_2213) (const char * (____string_2207), __size_t_2037 ____maxlen_2210);// L401:L402 -extern char * ((__strerror_2215) (int ____errnum_2214));// L408 -extern char * ((__strerror_2216) (int ____errnum_2214));// L408 -extern int (__strerror_r_2222) (int ____errnum_2217, char * (____buf_2218), __size_t_1 ____buflen_2219);// L422:L424 -extern int (__strerror_r_2223) (int ____errnum_2217, char * (____buf_2218), __size_t_1093 ____buflen_2220);// L422:L424 -extern int (__strerror_r_2224) (int ____errnum_2217, char * (____buf_2218), __size_t_2037 ____buflen_2221);// L422:L424 -extern char * ((__strerror_l_2227) (int ____errnum_2225, ____locale_t_2143 ____l_2226));// L440 -extern void (____bzero_2232) (void * (____s_2228), __size_t_1 ____n_2229);// L446 -extern void (____bzero_2233) (void * (____s_2228), __size_t_1093 ____n_2230);// L446 -extern void (____bzero_2234) (void * (____s_2228), __size_t_2037 ____n_2231);// L446 -extern void (____bzero_2235) (void * (____s_2228), __size_t_1 ____n_2229);// L446 -extern void (____bzero_2236) (void * (____s_2228), __size_t_1093 ____n_2230);// L446 -extern void (____bzero_2237) (void * (____s_2228), __size_t_2037 ____n_2231);// L446 -extern void (__bcopy_2243) (const void * (____src_2238), void * (____dest_2239), __size_t_1 ____n_2240);// L450:L451 -extern void (__bcopy_2244) (const void * (____src_2238), void * (____dest_2239), __size_t_1093 ____n_2241);// L450:L451 -extern void (__bcopy_2245) (const void * (____src_2238), void * (____dest_2239), __size_t_2037 ____n_2242);// L450:L451 -extern void (__bzero_2250) (void * (____s_2246), __size_t_1 ____n_2247);// L454 -extern void (__bzero_2251) (void * (____s_2246), __size_t_1093 ____n_2248);// L454 -extern void (__bzero_2252) (void * (____s_2246), __size_t_2037 ____n_2249);// L454 -extern int (__bcmp_2258) (const void * (____s1_2253), const void * (____s2_2254), __size_t_1 ____n_2255);// L457:L458 -extern int (__bcmp_2259) (const void * (____s1_2253), const void * (____s2_2254), __size_t_1093 ____n_2256);// L457:L458 -extern int (__bcmp_2260) (const void * (____s1_2253), const void * (____s2_2254), __size_t_2037 ____n_2257);// L457:L458 -extern char * ((__index_2263) (const char * (____s_2261), int ____c_2262));// L484:L485 -extern char * ((__rindex_2266) (const char * (____s_2264), int ____c_2265));// L512:L513 -extern int (__ffs_2268) (int ____i_2267);// L518 -extern int (__strcasecmp_2271) (const char * (____s1_2269), const char * (____s2_2270));// L529:L530 -extern int (__strncasecmp_2277) (const char * (____s1_2272), const char * (____s2_2273), __size_t_1 ____n_2274);// L533:L534 -extern int (__strncasecmp_2278) (const char * (____s1_2272), const char * (____s2_2273), __size_t_1093 ____n_2275);// L533:L534 -extern int (__strncasecmp_2279) (const char * (____s1_2272), const char * (____s2_2273), __size_t_2037 ____n_2276);// L533:L534 -extern char * ((__strsep_2282) (char * (* __restrict ____stringp_2280), const char * __restrict ____delim_2281));// L552:L554 -extern char * ((__strsignal_2284) (int ____sig_2283));// L559 -extern char * ((____stpcpy_2287) (char * __restrict ____dest_2285, const char * __restrict ____src_2286));// L562:L563 -extern char * ((__stpcpy_2290) (char * __restrict ____dest_2288, const char * __restrict ____src_2289));// L564:L565 -extern char * ((____stpncpy_2296) (char * __restrict ____dest_2291, const char * __restrict ____src_2292, __size_t_1 ____n_2293));// L569:L571 -extern char * ((____stpncpy_2297) (char * __restrict ____dest_2291, const char * __restrict ____src_2292, __size_t_1093 ____n_2294));// L569:L571 -extern char * ((____stpncpy_2298) (char * __restrict ____dest_2291, const char * __restrict ____src_2292, __size_t_2037 ____n_2295));// L569:L571 -extern char * ((__stpncpy_2304) (char * __restrict ____dest_2299, const char * __restrict ____src_2300, __size_t_1 ____n_2301));// L572:L574 -extern char * ((__stpncpy_2305) (char * __restrict ____dest_2299, const char * __restrict ____src_2300, __size_t_1093 ____n_2302));// L572:L574 -extern char * ((__stpncpy_2306) (char * __restrict ____dest_2299, const char * __restrict ____src_2300, __size_t_2037 ____n_2303));// L572:L574 +extern char * ((__strchr_2170) (const char * (____s_2167), int ____c_2168));// L231:L232 +extern char * ((__strrchr_2173) (const char * (____s_2171), int ____c_2172));// L258:L259 +extern __size_t_1 (__strcspn_2176) (const char * (____s_2174), const char * (____reject_2175));// L280:L281 +extern __size_t_1093 (__strcspn_2177) (const char * (____s_2174), const char * (____reject_2175));// L280:L281 +extern __size_t_2037 (__strcspn_2178) (const char * (____s_2174), const char * (____reject_2175));// L280:L281 +extern __size_t_1 (__strspn_2181) (const char * (____s_2179), const char * (____accept_2180));// L284:L285 +extern __size_t_1093 (__strspn_2182) (const char * (____s_2179), const char * (____accept_2180));// L284:L285 +extern __size_t_2037 (__strspn_2183) (const char * (____s_2179), const char * (____accept_2180));// L284:L285 +extern char * ((__strpbrk_2186) (const char * (____s_2184), const char * (____accept_2185)));// L310:L311 +extern char * ((__strstr_2189) (const char * (____haystack_2187), const char * (____needle_2188)));// L337:L338 +extern char * ((__strtok_2192) (char * __restrict ____s_2190, const char * __restrict ____delim_2191));// L343:L344 +extern char * ((____strtok_r_2196) (char * __restrict ____s_2193, const char * __restrict ____delim_2194, char * (* __restrict ____save_ptr_2195)));// L349:L352 +extern char * ((__strtok_r_2200) (char * __restrict ____s_2197, const char * __restrict ____delim_2198, char * (* __restrict ____save_ptr_2199)));// L354:L356 +extern __size_t_1 (__strlen_2202) (const char * (____s_2201));// L394:L395 +extern __size_t_1093 (__strlen_2203) (const char * (____s_2201));// L394:L395 +extern __size_t_2037 (__strlen_2204) (const char * (____s_2201));// L394:L395 +extern __size_t_1 (__strlen_2205) (const char * (____s_2201));// L394:L395 +extern __size_t_1093 (__strlen_2206) (const char * (____s_2201));// L394:L395 +extern __size_t_2037 (__strlen_2207) (const char * (____s_2201));// L394:L395 +extern __size_t_1 (__strnlen_2212) (const char * (____string_2208), __size_t_1 ____maxlen_2209);// L401:L402 +extern __size_t_1093 (__strnlen_2213) (const char * (____string_2208), __size_t_1093 ____maxlen_2210);// L401:L402 +extern __size_t_2037 (__strnlen_2214) (const char * (____string_2208), __size_t_2037 ____maxlen_2211);// L401:L402 +extern char * ((__strerror_2216) (int ____errnum_2215));// L408 +extern char * ((__strerror_2217) (int ____errnum_2215));// L408 +extern int (__strerror_r_2223) (int ____errnum_2218, char * (____buf_2219), __size_t_1 ____buflen_2220);// L422:L424 +extern int (__strerror_r_2224) (int ____errnum_2218, char * (____buf_2219), __size_t_1093 ____buflen_2221);// L422:L424 +extern int (__strerror_r_2225) (int ____errnum_2218, char * (____buf_2219), __size_t_2037 ____buflen_2222);// L422:L424 +extern char * ((__strerror_l_2228) (int ____errnum_2226, ____locale_t_2143 ____l_2227));// L440 +extern void (____bzero_2233) (void * (____s_2229), __size_t_1 ____n_2230);// L446 +extern void (____bzero_2234) (void * (____s_2229), __size_t_1093 ____n_2231);// L446 +extern void (____bzero_2235) (void * (____s_2229), __size_t_2037 ____n_2232);// L446 +extern void (____bzero_2236) (void * (____s_2229), __size_t_1 ____n_2230);// L446 +extern void (____bzero_2237) (void * (____s_2229), __size_t_1093 ____n_2231);// L446 +extern void (____bzero_2238) (void * (____s_2229), __size_t_2037 ____n_2232);// L446 +extern void (__bcopy_2244) (const void * (____src_2239), void * (____dest_2240), __size_t_1 ____n_2241);// L450:L451 +extern void (__bcopy_2245) (const void * (____src_2239), void * (____dest_2240), __size_t_1093 ____n_2242);// L450:L451 +extern void (__bcopy_2246) (const void * (____src_2239), void * (____dest_2240), __size_t_2037 ____n_2243);// L450:L451 +extern void (__bzero_2251) (void * (____s_2247), __size_t_1 ____n_2248);// L454 +extern void (__bzero_2252) (void * (____s_2247), __size_t_1093 ____n_2249);// L454 +extern void (__bzero_2253) (void * (____s_2247), __size_t_2037 ____n_2250);// L454 +extern int (__bcmp_2259) (const void * (____s1_2254), const void * (____s2_2255), __size_t_1 ____n_2256);// L457:L458 +extern int (__bcmp_2260) (const void * (____s1_2254), const void * (____s2_2255), __size_t_1093 ____n_2257);// L457:L458 +extern int (__bcmp_2261) (const void * (____s1_2254), const void * (____s2_2255), __size_t_2037 ____n_2258);// L457:L458 +extern char * ((__index_2264) (const char * (____s_2262), int ____c_2263));// L484:L485 +extern char * ((__rindex_2267) (const char * (____s_2265), int ____c_2266));// L512:L513 +extern int (__ffs_2269) (int ____i_2268);// L518 +extern int (__strcasecmp_2272) (const char * (____s1_2270), const char * (____s2_2271));// L529:L530 +extern int (__strncasecmp_2278) (const char * (____s1_2273), const char * (____s2_2274), __size_t_1 ____n_2275);// L533:L534 +extern int (__strncasecmp_2279) (const char * (____s1_2273), const char * (____s2_2274), __size_t_1093 ____n_2276);// L533:L534 +extern int (__strncasecmp_2280) (const char * (____s1_2273), const char * (____s2_2274), __size_t_2037 ____n_2277);// L533:L534 +extern char * ((__strsep_2283) (char * (* __restrict ____stringp_2281), const char * __restrict ____delim_2282));// L552:L554 +extern char * ((__strsignal_2285) (int ____sig_2284));// L559 +extern char * ((____stpcpy_2288) (char * __restrict ____dest_2286, const char * __restrict ____src_2287));// L562:L563 +extern char * ((__stpcpy_2291) (char * __restrict ____dest_2289, const char * __restrict ____src_2290));// L564:L565 +extern char * ((____stpncpy_2297) (char * __restrict ____dest_2292, const char * __restrict ____src_2293, __size_t_1 ____n_2294));// L569:L571 +extern char * ((____stpncpy_2298) (char * __restrict ____dest_2292, const char * __restrict ____src_2293, __size_t_1093 ____n_2295));// L569:L571 +extern char * ((____stpncpy_2299) (char * __restrict ____dest_2292, const char * __restrict ____src_2293, __size_t_2037 ____n_2296));// L569:L571 +extern char * ((__stpncpy_2305) (char * __restrict ____dest_2300, const char * __restrict ____src_2301, __size_t_1 ____n_2302));// L572:L574 +extern char * ((__stpncpy_2306) (char * __restrict ____dest_2300, const char * __restrict ____src_2301, __size_t_1093 ____n_2303));// L572:L574 +extern char * ((__stpncpy_2307) (char * __restrict ____dest_2300, const char * __restrict ____src_2301, __size_t_2037 ____n_2304));// L572:L574 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ @@ -3143,30 +3144,30 @@ extern char * ((__stpncpy_2306) (char * __restrict ____dest_2299, const char /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern char * ((____stpncpy_chk_2360) (char * (____dest_2352), const char * (____src_2353), __size_t_1 ____n_2354, __size_t_1 ____destlen_2357));// L130:L131 -extern char * ((____stpncpy_chk_2361) (char * (____dest_2352), const char * (____src_2353), __size_t_1093 ____n_2355, __size_t_1093 ____destlen_2358));// L130:L131 -extern char * ((____stpncpy_chk_2362) (char * (____dest_2352), const char * (____src_2353), __size_t_2037 ____n_2356, __size_t_2037 ____destlen_2359));// L130:L131 -extern char * ((____stpncpy_alias_2368) (char * (____dest_2363), const char * (____src_2364), __size_t_1 ____n_2365));// L132:L133 -extern char * ((____stpncpy_alias_2369) (char * (____dest_2363), const char * (____src_2364), __size_t_1093 ____n_2366));// L132:L133 -extern char * ((____stpncpy_alias_2370) (char * (____dest_2363), const char * (____src_2364), __size_t_2037 ____n_2367));// L132:L133 +extern char * ((____stpncpy_chk_2361) (char * (____dest_2353), const char * (____src_2354), __size_t_1 ____n_2355, __size_t_1 ____destlen_2358));// L130:L131 +extern char * ((____stpncpy_chk_2362) (char * (____dest_2353), const char * (____src_2354), __size_t_1093 ____n_2356, __size_t_1093 ____destlen_2359));// L130:L131 +extern char * ((____stpncpy_chk_2363) (char * (____dest_2353), const char * (____src_2354), __size_t_2037 ____n_2357, __size_t_2037 ____destlen_2360));// L130:L131 +extern char * ((____stpncpy_alias_2369) (char * (____dest_2364), const char * (____src_2365), __size_t_1 ____n_2366));// L132:L133 +extern char * ((____stpncpy_alias_2370) (char * (____dest_2364), const char * (____src_2365), __size_t_1093 ____n_2367));// L132:L133 +extern char * ((____stpncpy_alias_2371) (char * (____dest_2364), const char * (____src_2365), __size_t_2037 ____n_2368));// L132:L133 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -void (__process_commands_2392) () { +void (__process_commands_2393) () { -if (__static_condition_default_2394) { +if (__static_condition_default_2395) { { { -unsigned long __millis_2390= 123456789l;// L8 +unsigned long __millis_2391= 123456789l;// L8 -long __residencyStart_2391;// L10 +long __residencyStart_2392;// L10 - __residencyStart_2391 = - 1 ; // L11 -while ( ( __residencyStart_2391 == - 1 ) || ( __residencyStart_2391 > - 1 && ( __millis_2390 - __residencyStart_2391 ) < 30 * 1000 ) )// L14:L15 + __residencyStart_2392 = - 1 ; // L11 +while ( ( __residencyStart_2392 == - 1 ) || ( __residencyStart_2392 > - 1 && ( __millis_2391 - __residencyStart_2392 ) < 30 * 1000 ) )// L14:L15 { { @@ -3183,21 +3184,21 @@ while ( ( __residencyStart_2391 == - 1 ) || ( __residencyStart_2391 > - 1 && } } -void (__process_commands_2393) () { +void (__process_commands_2394) () { -if (__static_condition_default_2395) { +if (__static_condition_default_2396) { { { -unsigned long __millis_2390= 123456789l;// L8 +unsigned long __millis_2391= 123456789l;// L8 -long __residencyStart_2391;// L10 +long __residencyStart_2392;// L10 - __residencyStart_2391 = - 1 ; // L11 -while ( ( __residencyStart_2391 == - 1 ) || ( __residencyStart_2391 > - 1 && ( __millis_2390 - __residencyStart_2391 ) < 30 * 1000 ) )// L14:L15 + __residencyStart_2392 = - 1 ; // L11 +while ( ( __residencyStart_2392 == - 1 ) || ( __residencyStart_2392 > - 1 && ( __millis_2391 - __residencyStart_2392 ) < 30 * 1000 ) )// L14:L15 { { @@ -3214,19 +3215,19 @@ while ( ( __residencyStart_2391 == - 1 ) || ( __residencyStart_2391 > - 1 && } } -int (__main_2398) (int __argc_2396, char * (* (__argv_2397))) { +int (__main_2399) (int __argc_2397, char * (* (__argv_2398))) { { { -if (__static_condition_default_2394) { - __process_commands_2392 ( ) ; // L26 -} if (__static_condition_default_2395) { __process_commands_2393 ( ) ; // L26 } +if (__static_condition_default_2396) { + __process_commands_2394 ( ) ; // L26 +} return 0 ;// L28 } } diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/fc3c76fc164.desugared.c b/fonda/cpp_testsuite/varBugs/MARLIN/fc3c76fc164.desugared.c index de5ed449..d9447230 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/fc3c76fc164.desugared.c +++ b/fonda/cpp_testsuite/varBugs/MARLIN/fc3c76fc164.desugared.c @@ -18,8 +18,7 @@ __static_renaming("__main_7", "main"); __static_condition_renaming("__static_condition_default_8", "!HAS_BED_THERMAL_PROTECTION"); __static_condition_renaming("__static_condition_default_9", "HAS_BED_THERMAL_PROTECTION"); -if (__static_condition_default_9) -{ +if (__static_condition_default_9) { __static_parse_error("Unable to parse"); } }; diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/fdac8f6cece.desugared.c b/fonda/cpp_testsuite/varBugs/MARLIN/fdac8f6cece.desugared.c index 63e55cae..de1cc89f 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/fdac8f6cece.desugared.c +++ b/fonda/cpp_testsuite/varBugs/MARLIN/fdac8f6cece.desugared.c @@ -7,15 +7,11 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_2; -extern const bool __static_condition_default_3; void __static_initializer_default() { __static_renaming("__zprobe_zoffset_0", "zprobe_zoffset"); __static_renaming("__Config_ResetDefault_1", "Config_ResetDefault"); -__static_renaming("__main_6", "main"); +__static_renaming("__main_4", "main"); -__static_condition_renaming("__static_condition_default_2", "(defined ENABLE_AUTO_BED_LEVELING)"); -__static_condition_renaming("__static_condition_default_3", "!(defined ENABLE_AUTO_BED_LEVELING)"); }; @@ -27,18 +23,13 @@ void (__Config_ResetDefault_1) () { -if (__static_condition_default_2) { __zprobe_zoffset_0 = - 7 ; // L2:L9 } -if (__static_condition_default_3) { -__static_type_error("type error : no valid expression"); // L9 -} -} } } -int (__main_6) (int __argc_4, char * (* (__argv_5))) { +int (__main_4) (int __argc_2, char * (* (__argv_3))) { { { diff --git a/fonda/cpp_testsuite/varBugs/RecursiveConfig.h b/fonda/cpp_testsuite/varBugs/RecursiveConfig.h new file mode 100644 index 00000000..0235014b --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/RecursiveConfig.h @@ -0,0 +1,350 @@ +#define __SSP_STRONG__ 3 +#define __DBL_MIN_EXP__ (-1021) +#define __FLT32X_MAX_EXP__ 1024 +#define __UINT_LEAST16_MAX__ 0xffff +#define __ATOMIC_ACQUIRE 2 +#define __FLT128_MAX_10_EXP__ 4932 +#define __FLT_MIN__ 1.17549435082228750796873653722224568e-38F +#define __GCC_IEC_559_COMPLEX 2 +#define __UINT_LEAST8_TYPE__ unsigned char +#define __SIZEOF_FLOAT80__ 16 +#define __INTMAX_C(c) c ## L +#define __CHAR_BIT__ 8 +#define __UINT8_MAX__ 0xff +#define __WINT_MAX__ 0xffffffffU +#define __FLT32_MIN_EXP__ (-125) +#define __ORDER_LITTLE_ENDIAN__ 1234 +#define __SIZE_MAX__ 0xffffffffffffffffUL +#define __WCHAR_MAX__ 0x7fffffff +#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_1 1 +#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_2 1 +#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4 1 +#define __DBL_DENORM_MIN__ ((double)4.94065645841246544176568792868221372e-324L) +#define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_8 1 +#define __GCC_ATOMIC_CHAR_LOCK_FREE 2 +#define __GCC_IEC_559 2 +#define __FLT32X_DECIMAL_DIG__ 17 +#define __FLT_EVAL_METHOD__ 0 +#define __unix__ 1 +#define __FLT64_DECIMAL_DIG__ 17 +#define __GCC_ATOMIC_CHAR32_T_LOCK_FREE 2 +#define __x86_64 1 +#define __UINT_FAST64_MAX__ 0xffffffffffffffffUL +#define __SIG_ATOMIC_TYPE__ int +#define __DBL_MIN_10_EXP__ (-307) +#define __FINITE_MATH_ONLY__ 0 +#define __GNUC_PATCHLEVEL__ 0 +#define __FLT32_HAS_DENORM__ 1 +#define __UINT_FAST8_MAX__ 0xff +#define __has_include(STR) __has_include__(STR) +#define __DEC64_MAX_EXP__ 385 +#define __INT8_C(c) c +#define __INT_LEAST8_WIDTH__ 8 +#define __UINT_LEAST64_MAX__ 0xffffffffffffffffUL +#define __SHRT_MAX__ 0x7fff +#define __LDBL_MAX__ 1.18973149535723176502126385303097021e+4932L +#define __FLT64X_MAX_10_EXP__ 4932 +#define __UINT_LEAST8_MAX__ 0xff +#define __GCC_ATOMIC_BOOL_LOCK_FREE 2 +#define __FLT128_DENORM_MIN__ 6.47517511943802511092443895822764655e-4966F128 +#define __UINTMAX_TYPE__ long unsigned int +#define __linux 1 +#define __DEC32_EPSILON__ 1E-6DF +#define __FLT_EVAL_METHOD_TS_18661_3__ 0 +#define __unix 1 +#define __UINT32_MAX__ 0xffffffffU +#define __LDBL_MAX_EXP__ 16384 +#define __FLT128_MIN_EXP__ (-16381) +#define __WINT_MIN__ 0U +#define __linux__ 1 +#define __FLT128_MIN_10_EXP__ (-4931) +#define __INT_LEAST16_WIDTH__ 16 +#define __SCHAR_MAX__ 0x7f +#define __FLT128_MANT_DIG__ 113 +#define __WCHAR_MIN__ (-__WCHAR_MAX__ - 1) +#define __INT64_C(c) c ## L +#define __DBL_DIG__ 15 +#define __GCC_ATOMIC_POINTER_LOCK_FREE 2 +#define __FLT64X_MANT_DIG__ 64 +#define __SIZEOF_INT__ 4 +#define __SIZEOF_POINTER__ 8 +#define __USER_LABEL_PREFIX__ +#define __FLT64X_EPSILON__ 1.08420217248550443400745280086994171e-19F64x +#define __STDC_HOSTED__ 1 +#define __LDBL_HAS_INFINITY__ 1 +#define __FLT32_DIG__ 6 +#define __FLT_EPSILON__ 1.19209289550781250000000000000000000e-7F +#define __SHRT_WIDTH__ 16 +#define __LDBL_MIN__ 3.36210314311209350626267781732175260e-4932L +#define __STDC_UTF_16__ 1 +#define __DEC32_MAX__ 9.999999E96DF +#define __FLT64X_DENORM_MIN__ 3.64519953188247460252840593361941982e-4951F64x +#define __FLT32X_HAS_INFINITY__ 1 +#define __INT32_MAX__ 0x7fffffff +#define __INT_WIDTH__ 32 +#define __SIZEOF_LONG__ 8 +#define __STDC_IEC_559__ 1 +#define __STDC_ISO_10646__ 201706L +#define __UINT16_C(c) c +#define __PTRDIFF_WIDTH__ 64 +#define __DECIMAL_DIG__ 21 +#define __FLT64_EPSILON__ 2.22044604925031308084726333618164062e-16F64 +#define __gnu_linux__ 1 +#define __INTMAX_WIDTH__ 64 +#define __has_include_next(STR) __has_include_next__(STR) +#define __FLT64X_MIN_10_EXP__ (-4931) +#define __LDBL_HAS_QUIET_NAN__ 1 +#define __FLT64_MANT_DIG__ 53 +#define __GNUC__ 7 +#define __pie__ 2 +#define __MMX__ 1 +#define __FLT_HAS_DENORM__ 1 +#define __SIZEOF_LONG_DOUBLE__ 16 +#define __BIGGEST_ALIGNMENT__ 16 +#define __FLT64_MAX_10_EXP__ 308 +#define __DBL_MAX__ ((double)1.79769313486231570814527423731704357e+308L) +#define __INT_FAST32_MAX__ 0x7fffffffffffffffL +#define __DBL_HAS_INFINITY__ 1 +#define __DEC32_MIN_EXP__ (-94) +#define __INTPTR_WIDTH__ 64 +#define __FLT32X_HAS_DENORM__ 1 +#define __INT_FAST16_TYPE__ long int +#define __LDBL_HAS_DENORM__ 1 +#define __FLT128_HAS_INFINITY__ 1 +#define __DEC128_MAX__ 9.999999999999999999999999999999999E6144DL +#define __INT_LEAST32_MAX__ 0x7fffffff +#define __DEC32_MIN__ 1E-95DF +#define __DBL_MAX_EXP__ 1024 +#define __WCHAR_WIDTH__ 32 +#define __FLT32_MAX__ 3.40282346638528859811704183484516925e+38F32 +#define __DEC128_EPSILON__ 1E-33DL +#define __SSE2_MATH__ 1 +#define __ATOMIC_HLE_RELEASE 131072 +#define __PTRDIFF_MAX__ 0x7fffffffffffffffL +#define __amd64 1 +#define __STDC_NO_THREADS__ 1 +#define __ATOMIC_HLE_ACQUIRE 65536 +#define __FLT32_HAS_QUIET_NAN__ 1 +#define __LONG_LONG_MAX__ 0x7fffffffffffffffLL +#define __SIZEOF_SIZE_T__ 8 +#define __FLT64X_MIN_EXP__ (-16381) +#define __SIZEOF_WINT_T__ 4 +#define __LONG_LONG_WIDTH__ 64 +#define __FLT32_MAX_EXP__ 128 +#define __GCC_HAVE_DWARF2_CFI_ASM 1 +#define __GXX_ABI_VERSION 1011 +#define __FLT_MIN_EXP__ (-125) +#define __FLT64X_HAS_QUIET_NAN__ 1 +#define __INT_FAST64_TYPE__ long int +#define __FLT64_DENORM_MIN__ 4.94065645841246544176568792868221372e-324F64 +#define __DBL_MIN__ ((double)2.22507385850720138309023271733240406e-308L) +#define __PIE__ 2 +#define __LP64__ 1 +#define __FLT32X_EPSILON__ 2.22044604925031308084726333618164062e-16F32x +#define __DECIMAL_BID_FORMAT__ 1 +#define __FLT64_MIN_EXP__ (-1021) +#define __FLT64_MIN_10_EXP__ (-307) +#define __FLT64X_DECIMAL_DIG__ 21 +#define __DEC128_MIN__ 1E-6143DL +#define __REGISTER_PREFIX__ +#define __UINT16_MAX__ 0xffff +#define __DBL_HAS_DENORM__ 1 +#define __FLT32_MIN__ 1.17549435082228750796873653722224568e-38F32 +#define __UINT8_TYPE__ unsigned char +#define __NO_INLINE__ 1 +#define __FLT_MANT_DIG__ 24 +#define __LDBL_DECIMAL_DIG__ 21 +#define __VERSION__ "7.5.0" +#define __UINT64_C(c) c ## UL +#define _STDC_PREDEF_H 1 +#define __GCC_ATOMIC_INT_LOCK_FREE 2 +#define __FLT128_MAX_EXP__ 16384 +#define __FLT32_MANT_DIG__ 24 +#define __FLOAT_WORD_ORDER__ __ORDER_LITTLE_ENDIAN__ +#define __STDC_IEC_559_COMPLEX__ 1 +#define __FLT128_HAS_DENORM__ 1 +#define __FLT128_DIG__ 33 +#define __SCHAR_WIDTH__ 8 +#define __INT32_C(c) c +#define __DEC64_EPSILON__ 1E-15DD +#define __ORDER_PDP_ENDIAN__ 3412 +#define __DEC128_MIN_EXP__ (-6142) +#define __FLT32_MAX_10_EXP__ 38 +#define __INT_FAST32_TYPE__ long int +#define __UINT_LEAST16_TYPE__ short unsigned int +#define __FLT64X_HAS_INFINITY__ 1 +#define unix 1 +#define __INT16_MAX__ 0x7fff +#define __SIZE_TYPE__ long unsigned int +#define __UINT64_MAX__ 0xffffffffffffffffUL +#define __FLT64X_DIG__ 18 +#define __INT8_TYPE__ signed char +#define __ELF__ 1 +#define __GCC_ASM_FLAG_OUTPUTS__ 1 +#define __FLT_RADIX__ 2 +#define __INT_LEAST16_TYPE__ short int +#define __LDBL_EPSILON__ 1.08420217248550443400745280086994171e-19L +#define __UINTMAX_C(c) c ## UL +#define __SSE_MATH__ 1 +#define __k8 1 +#define __SIG_ATOMIC_MAX__ 0x7fffffff +#define __GCC_ATOMIC_WCHAR_T_LOCK_FREE 2 +#define __SIZEOF_PTRDIFF_T__ 8 +#define __FLT32X_MANT_DIG__ 53 +#define __x86_64__ 1 +#define __FLT32X_MIN_EXP__ (-1021) +#define __DEC32_SUBNORMAL_MIN__ 0.000001E-95DF +#define __INT_FAST16_MAX__ 0x7fffffffffffffffL +#define __FLT64_DIG__ 15 +#define __UINT_FAST32_MAX__ 0xffffffffffffffffUL +#define __UINT_LEAST64_TYPE__ long unsigned int +#define __FLT_HAS_QUIET_NAN__ 1 +#define __FLT_MAX_10_EXP__ 38 +#define __LONG_MAX__ 0x7fffffffffffffffL +#define __FLT64X_HAS_DENORM__ 1 +#define __DEC128_SUBNORMAL_MIN__ 0.000000000000000000000000000000001E-6143DL +#define __FLT_HAS_INFINITY__ 1 +#define __UINT_FAST16_TYPE__ long unsigned int +#define __DEC64_MAX__ 9.999999999999999E384DD +#define __INT_FAST32_WIDTH__ 64 +#define __CHAR16_TYPE__ short unsigned int +#define __PRAGMA_REDEFINE_EXTNAME 1 +#define __SIZE_WIDTH__ 64 +#define __SEG_FS 1 +#define __INT_LEAST16_MAX__ 0x7fff +#define __DEC64_MANT_DIG__ 16 +#define __INT64_MAX__ 0x7fffffffffffffffL +#define __UINT_LEAST32_MAX__ 0xffffffffU +#define __SEG_GS 1 +#define __FLT32_DENORM_MIN__ 1.40129846432481707092372958328991613e-45F32 +#define __GCC_ATOMIC_LONG_LOCK_FREE 2 +#define __SIG_ATOMIC_WIDTH__ 32 +#define __INT_LEAST64_TYPE__ long int +#define __INT16_TYPE__ short int +#define __INT_LEAST8_TYPE__ signed char +#define __STDC_VERSION__ 201112L +#define __DEC32_MAX_EXP__ 97 +#define __INT_FAST8_MAX__ 0x7f +#define __FLT128_MAX__ 1.18973149535723176508575932662800702e+4932F128 +#define __INTPTR_MAX__ 0x7fffffffffffffffL +#define linux 1 +#define __FLT64_HAS_QUIET_NAN__ 1 +#define __FLT32_MIN_10_EXP__ (-37) +#define __SSE2__ 1 +#define __FLT32X_DIG__ 15 +#define __LDBL_MANT_DIG__ 64 +#define __DBL_HAS_QUIET_NAN__ 1 +#define __FLT64_HAS_INFINITY__ 1 +#define __FLT64X_MAX__ 1.18973149535723176502126385303097021e+4932F64x +#define __SIG_ATOMIC_MIN__ (-__SIG_ATOMIC_MAX__ - 1) +#define __code_model_small__ 1 +#define __k8__ 1 +#define __INTPTR_TYPE__ long int +#define __UINT16_TYPE__ short unsigned int +#define __WCHAR_TYPE__ int +#define __SIZEOF_FLOAT__ 4 +#define __pic__ 2 +#define __UINTPTR_MAX__ 0xffffffffffffffffUL +#define __INT_FAST64_WIDTH__ 64 +#define __DEC64_MIN_EXP__ (-382) +#define __FLT32_DECIMAL_DIG__ 9 +#define __INT_FAST64_MAX__ 0x7fffffffffffffffL +#define __GCC_ATOMIC_TEST_AND_SET_TRUEVAL 1 +#define __FLT_DIG__ 6 +#define __FLT32_HAS_INFINITY__ 1 +#define __FLT64X_MAX_EXP__ 16384 +#define __UINT_FAST64_TYPE__ long unsigned int +#define __INT_MAX__ 0x7fffffff +#define __amd64__ 1 +#define __INT64_TYPE__ long int +#define __FLT_MAX_EXP__ 128 +#define __ORDER_BIG_ENDIAN__ 4321 +#define __DBL_MANT_DIG__ 53 +#define __SIZEOF_FLOAT128__ 16 +#define __INT_LEAST64_MAX__ 0x7fffffffffffffffL +#define __GCC_ATOMIC_CHAR16_T_LOCK_FREE 2 +#define __DEC64_MIN__ 1E-383DD +#define __WINT_TYPE__ unsigned int +#define __UINT_LEAST32_TYPE__ unsigned int +#define __SIZEOF_SHORT__ 2 +#define __SSE__ 1 +#define __LDBL_MIN_EXP__ (-16381) +#define __FLT64_MAX__ 1.79769313486231570814527423731704357e+308F64 +#define __WINT_WIDTH__ 32 +#define __INT_LEAST8_MAX__ 0x7f +#define __FLT32X_MAX_10_EXP__ 308 +#define __SIZEOF_INT128__ 16 +#define __LDBL_MAX_10_EXP__ 4932 +#define __ATOMIC_RELAXED 0 +#define __DBL_EPSILON__ ((double)2.22044604925031308084726333618164062e-16L) +#define __FLT128_MIN__ 3.36210314311209350626267781732175260e-4932F128 +#define _LP64 1 +#define __UINT8_C(c) c +#define __FLT64_MAX_EXP__ 1024 +#define __INT_LEAST32_TYPE__ int +#define __SIZEOF_WCHAR_T__ 4 +#define __UINT64_TYPE__ long unsigned int +#define __FLT128_HAS_QUIET_NAN__ 1 +#define __INT_FAST8_TYPE__ signed char +#define __FLT64X_MIN__ 3.36210314311209350626267781732175260e-4932F64x +#define __GNUC_STDC_INLINE__ 1 +#define __FLT64_HAS_DENORM__ 1 +#define __FLT32_EPSILON__ 1.19209289550781250000000000000000000e-7F32 +#define __DBL_DECIMAL_DIG__ 17 +#define __STDC_UTF_32__ 1 +#define __INT_FAST8_WIDTH__ 8 +#define __FXSR__ 1 +#define __DEC_EVAL_METHOD__ 2 +#define __FLT32X_MAX__ 1.79769313486231570814527423731704357e+308F32x +#define __UINT32_C(c) c ## U +#define __INTMAX_MAX__ 0x7fffffffffffffffL +#define __BYTE_ORDER__ __ORDER_LITTLE_ENDIAN__ +#define __FLT_DENORM_MIN__ 1.40129846432481707092372958328991613e-45F +#define __INT8_MAX__ 0x7f +#define __LONG_WIDTH__ 64 +#define __PIC__ 2 +#define __UINT_FAST32_TYPE__ long unsigned int +#define __CHAR32_TYPE__ unsigned int +#define __FLT_MAX__ 3.40282346638528859811704183484516925e+38F +#define __INT32_TYPE__ int +#define __SIZEOF_DOUBLE__ 8 +#define __FLT_MIN_10_EXP__ (-37) +#define __FLT64_MIN__ 2.22507385850720138309023271733240406e-308F64 +#define __INT_LEAST32_WIDTH__ 32 +#define __INTMAX_TYPE__ long int +#define __DEC128_MAX_EXP__ 6145 +#define __FLT32X_HAS_QUIET_NAN__ 1 +#define __ATOMIC_CONSUME 1 +#define __GNUC_MINOR__ 5 +#define __INT_FAST16_WIDTH__ 64 +#define __UINTMAX_MAX__ 0xffffffffffffffffUL +#define __DEC32_MANT_DIG__ 7 +#define __FLT32X_DENORM_MIN__ 4.94065645841246544176568792868221372e-324F32x +#define __DBL_MAX_10_EXP__ 308 +#define __LDBL_DENORM_MIN__ 3.64519953188247460252840593361941982e-4951L +#define __INT16_C(c) c +#define __STDC__ 1 +#define __PTRDIFF_TYPE__ long int +#define __ATOMIC_SEQ_CST 5 +#define __UINT32_TYPE__ unsigned int +#define __FLT32X_MIN_10_EXP__ (-307) +#define __UINTPTR_TYPE__ long unsigned int +#define __DEC64_SUBNORMAL_MIN__ 0.000000000000001E-383DD +#define __DEC128_MANT_DIG__ 34 +#define __LDBL_MIN_10_EXP__ (-4931) +#define __FLT128_EPSILON__ 1.92592994438723585305597794258492732e-34F128 +#define __SIZEOF_LONG_LONG__ 8 +#define __FLT128_DECIMAL_DIG__ 36 +#define __GCC_ATOMIC_LLONG_LOCK_FREE 2 +#define __FLT32X_MIN__ 2.22507385850720138309023271733240406e-308F32x +#define __LDBL_DIG__ 18 +#define __FLT_DECIMAL_DIG__ 9 +#define __UINT_FAST16_MAX__ 0xffffffffffffffffUL +#define __GCC_ATOMIC_SHORT_LOCK_FREE 2 +#define __INT_LEAST64_WIDTH__ 64 +#define __UINT_FAST8_TYPE__ unsigned char +#define __ATOMIC_ACQ_REL 4 +#define __ATOMIC_RELEASE 3 + +#undef __need___FILE +#undef _BITS_TYPESIZES_H diff --git a/fonda/cpp_testsuite/varBugs/configs.json b/fonda/cpp_testsuite/varBugs/configs.json index a9628f63..75487798 100644 --- a/fonda/cpp_testsuite/varBugs/configs.json +++ b/fonda/cpp_testsuite/varBugs/configs.json @@ -1 +1 @@ -{"/APACHE/0900800fbab.c": "-U HAVE_SYSLOG", "/APACHE/0ddfa412ee9.c": "-U HAVE_TLS_ALPN", "/APACHE/1a3c8e3d840.c": "-U HAVE_TLSV1_X", "/APACHE/1b48bb3c1af.c": "-D APU_HAS_LDAP -D APR_HAS_SHARED_MEMORY", "/APACHE/1f46088b38d.c": "-U SIGPIPE", "/APACHE/2a6cbfa00e0.c": "-U SHARED_MODULE", "/APACHE/3407eccc321.c": "-D __STDC_VERSION__=199902L -D APLOG_MAX_LOGLEVEL", "/APACHE/35ae2e259e4.c": "-D HAVE_ECC", "/APACHE/4202d5fee3e.c": "-D APR_HASD_LDAP -D APR_HAS_LDAP_NETSCAPE_SSL", "/APACHE/4945115b2e7.c": "-D DEBUG_CGI", "/APACHE/56d9881993f.c": "-U APR_HAS_SENDFILE", "/APACHE/581635e28f1.c": "-U APR_HAVE_IPV6", "/APACHE/6338509eb37.c": "-U HAVE_FIPS", "/APACHE/664e3aac6dd.c": "-D WIN32", "/APACHE/9327311d30f.c": "-D APR_HAS_SHARED_MEMORY", "/APACHE/97ecbec1237.c": "-D APU_HAS_LDAP -D APR_HAS_SHARED_MEMORY", "/APACHE/b833f064550.c": "-U HAVE_TIMES", "/APACHE/bbeb0516cf0.c": "-D APR_FILES_AS_SOCKETS", "/APACHE/c76df14dfb4.c": "-D CROSS_COMPILE -D OS2", "/APACHE/d0040a07aec.c": "-D RLIMIT_NPROC -U RLIMIT_CPU -U RLIMIT_DATA -U RLIMIT_VMEM -U RLIMIT_AS", "/APACHE/d05e574ec26.c": "-D APR_HAS_SHARED_MEMORY", "/APACHE/dbafef17dd1.c": "-D HAS_APACHE_REGEX_LIB", "/APACHE/test.c": "", "/BUSYBOX/0301ffab3d9.c": "-U EXT2FS_ENABLE_SWAPFS", "/BUSYBOX/061fd0a353e.c": "-D CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF -U CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF", "/BUSYBOX/192c35f6eb2.c": "-U CONFIG_FEATURE_REMOTE_LOG", "/BUSYBOX/199501f2a00.c": "-U ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS", "/BUSYBOX/1b487ea8a69.c": "-D ENABLE_SELINUX -U ENABLE_FEATURE_STAT_FORMAT", "/BUSYBOX/2631486f1bf.c": "-D CONFIG_FEATURE_LS_SORTFILES -D CONFIG_FEATURE_LS_RECURSIVE", "/BUSYBOX/5275b1e49f6.c": "-U CONFIG_FEATURE_INSMOD_VERSION_CHECKING", "/BUSYBOX/5cd6461b6fb.c": "-D CONFIG_LFS -D CONFIG_FEATURE_HTTPD_CGI", "/BUSYBOX/95755181b82.c": "-D BB_MMU -D ENABLE_FEATURE_HTTPD_GZIP -D ENABLE_FEATURE_HTTPD_BASIC_AUTH", "/BUSYBOX/b273d665181.c": "-D BB_FEATURE_LS_FILETYPES -U BB_FEATURE_LS_USERNAME", "/BUSYBOX/b62bd7b261b.c": "-D ENABLE_FEATURE_MDEV_CONF -D ENABLE_FEATURE_MDEV_RENAME -U ENABLE_FEATURE_MDEV_RENAME_REGEXP", "/BUSYBOX/b7ebc61b54f.c": "-U CONFIG_FEATURE_LS_TIMESTAMPS", "/BUSYBOX/bc0ffc0e971.c": "-D ENABLE_FEATURE_CLEAN_UP", "/BUSYBOX/cc3f20b9bdf.c": "", "/BUSYBOX/cf1f2ace391.c": "-D ENABLE_DEBUG_INIT", "/BUSYBOX/df7b6577c6a.c": "-U ENABLE_DESKTOP", "/BUSYBOX/ebee301c8b0.c": "-D BB_CP_MV -U BB_AR", "/BUSYBOX/eef2317b9f5.c": "-D CONFIG_FEATURE_CLEAN_UP", "/LINUX/0988c4c7fb5.c": "-U CONFIG_VLAN_8021Q", "/LINUX/0dc77b6dabe.c": "-D CONFIG_ANDROID -D CONFIG_EXTCON", "/LINUX/0f8f8094d28.c": "-D CONFIG_LOCKDEP -D CONFIG_SLAB -U CONFIG_SLOB -D CONFIG_PPC_256K_PAGES -D CONFIG_FORCE_MAX_ZONEORDER=11", "/LINUX/1c17e4d4437.c": "-D CONFIG_TREE_RCU -D CONFIG_RCU_CPU_STALL_INFO -U RCU_FAST_NO_HZ", "/LINUX/1f758a4341a.c": "-D CONFIG_EP93XX_ETH -U CONFIG_ZONE_DMA", "/LINUX/208d89843b7.c": "-D CONFIG_HIGHMEM", "/LINUX/218ad12f42e.c": "-D CONFIG_NUMA -D CONFIG_SMP", "/LINUX/221ac329e93.c": "-U PPC64 -D CONFIG_KPROBES -U CONFIG_KGDB -U CONFIG_XMON -U CONFIG_BDI_SWITCH", "/LINUX/242f1a34377.c": "-D CONFIG_CRYPTO_TEST -U CONFIG_CRYPTO_BLKCIPHER", "/LINUX/2f02c15a5d9.c": "-D CONFIG_BCM47XX -U CONFIG_SSB_DRIVER_EXTIF", "/LINUX/30e053248da.c": "-D CONFIG_REISERFS_FS_SECURITY -U CONFIG_SECURITY", "/LINUX/36855dcfc98.c": "-D PM -D CONFIG_BF60x", "/LINUX/472a474c663.c": "-D X86 -D CONFIG_SMP", "/LINUX/51fd36f3fad.c": "-U CONFIG_64BIT -U CONFIG_KTIME_SCALAR", "/LINUX/60e233a5660.c": "-U CONFIG_HOTPLUG", "/LINUX/6252547b8a7.c": "-D CONFIG_TWL4030_CORE -U CONFIG_OF_IRQ", "/LINUX/63878acfafb.c": "-D CONFIG_ARCH_OMAP3 -U CONFIG_PM", "/LINUX/6515e48932c.c": "-D CONFIG_MACH_OMAP_H4 -U CONFIG_ARCH_OMAP2420", "/LINUX/657e9649e74.c": "-D CONFIG_PREEMPT -D CONFIG_TCP_MD5SIG", "/LINUX/66517915e09.c": "-D CONFIG_SND_FSI_AK4642 -U CONFIG_I2C", "/LINUX/68bb91baa0.c": "-D CONFIG_I2C_DESIGNWARE_PLATFORM -D CONFIG_I2C_DESIGNWARE_PCI", "/LINUX/6e2b75740be.c": "-D CONFIG_MODULE_UNLOAD -D CONFIG_SMP", "/LINUX/76baeebf7df.c": "-D CONFIG_X86_32 -D CONFIG_NUMA -D CONFIG_PCI", "/LINUX/7acf6cd80b2.c": "-D CONFIG_UNIX98_PTYS -D CONFIG_DEVPTS_MULTIPLE_INSTANCES", "/LINUX/7c6048b7c83.c": "-D CONFIG_STUB_POULSBO -D CONFIG_ACPI -U CONFIG_BACKLIGHT_CLASS_DEVICE", "/LINUX/809e660f438.c": "-D CONFIG_ARM_LPAE", "/LINUX/8c8296223f3.c": "-D CONFIG_PROC_PAGE_MONITOR", "/LINUX/91ea8207168.c": "-D CONFIG_PARISC -D DISCONTIGMEM -D CONFIG_PROC_PAGE_MONITOR", "/LINUX/ae249b5fa27.c": "-D PARISC -D CONFIG_DISCONTIGMEM -D CONFIG_PROC_PAGE_MONITOR", "/LINUX/bc8cec0dff0.c": "-D CONFIG_JFFS2_FS_WBUF_VERIFY", "/LINUX/c708c57e247.c": "-D CONFIG_S390_PRNG -D CONFIG_S390", "/LINUX/d530db0db90.c": "-D CONFIG_VORTEX -U CONFIG_PCI", "/LINUX/d549f55f2e1.c": "-D CONFIG_IPV6 -U CONFIG_VLAN_8021Q", "/LINUX/d6c7e113959.c": "-D CONFIG_REGULATOR_MAX8660 -U CONFIG_OF", "/LINUX/d7e9711760a.c": "-D CONFIG_QUOTA_DEBUG", "/LINUX/e1fbd9210d5.c": "-D CONFIG_LBDAF -D CONFIG_AMIGA_Z2RAM", "/LINUX/e39363a9def.c": "-D CONFIG_NETPOLL -U CONFIG_IPV6", "/LINUX/e67bc51e574.c": "-U CONFIG_TRACING", "/LINUX/eb91f1d0a53.c": "-D CONFIG_SLAB -D CONFIG_LOCKDEP -D CONFIG_TRACE_IRQFLAGS -D CONFIG_PROVE_LOCKING -D CONFIG_NUMA", "/LINUX/ee3f34e8572.c": "-D CONFIG_IP_SCTP -D CONFIG_IPV6 -D SCTP_DBG_MSG", "/LINUX/f3d83e24154.c": "-D CONFIG_X86 -D CONFIG_ACPI_WMI", "/LINUX/f48ec1d7885.c": "-D CONFIG_IOSCHED_CFQ -U CONFIG_BLK_CGROUP", "/LINUX/f7ab9b407b3.c": "-U CONFIG_TMPFS -D CONFIG_SHMEM -D CONFIG_DRM_I915", "/MARLIN/2d22902d080.c": "-D SDSUPPORT", "/MARLIN/2db384a21d6.c": "-D MESH_BED_LEVELING -U DISABLE_M503", "/MARLIN/30248214c7f.c": "-D THERMAL_RUNAWAY_PROTECTION_PERIOD=1", "/MARLIN/31873ec707d.c": "-D ULTRA_LCD", "/MARLIN/53be0f3399e.c": "-D BABYSTEPPING -D DELTA", "/MARLIN/7336e6df070.c": "-D Z_DUAL_STEPPER_DRIVERS", "/MARLIN/831016b09f7.c": "-U ULTRA_LCD -D SDSUPPORT", "/MARLIN/8c4377dd635.c": "-D PIDTEMP -D PID_DEBUG", "/MARLIN/a7fc1f83c81.c": "-D SDSUPPORT", "/MARLIN/b8e79dce897.c": "-D ULTRA_LCD -U ENCODER_RATE_MULTIPLIER -D TEMP_SENSOR=1", "/MARLIN/e30bfedce4d.c": "-D ENABLE_AUTO_BED_LEVELING -U AUTO_BED_LEVELING_GRID", "/MARLIN/f87c80889fe.c": "", "/MARLIN/fc3c76fc164.c": "-D HAS_BED_THERMAL_PROTECTION", "/MARLIN/fdac8f6cece.c": "-U ENABLE_AUTO_BED_LEVELING"} \ No newline at end of file +{"/APACHE/0900800fbab.c": "-U HAVE_SYSLOG", "/APACHE/0ddfa412ee9.c": "-U HAVE_TLS_ALPN", "/APACHE/1a3c8e3d840.c": "-U HAVE_TLSV1_X", "/APACHE/1b48bb3c1af.c": "-D APU_HAS_LDAP -D APR_HAS_SHARED_MEMORY", "/APACHE/1b48bb3c1af.desugared.c.c": "", "/APACHE/1f46088b38d.c": "-U SIGPIPE", "/APACHE/2a6cbfa00e0.c": "-U SHARED_MODULE", "/APACHE/3407eccc321.c": "-D __STDC_VERSION__=199902L -D APLOG_MAX_LOGLEVEL", "/APACHE/35ae2e259e4.c": "-D HAVE_ECC", "/APACHE/4202d5fee3e.c": "-D APR_HASD_LDAP -D APR_HAS_LDAP_NETSCAPE_SSL", "/APACHE/4945115b2e7.c": "-D DEBUG_CGI", "/APACHE/56d9881993f.c": "-U APR_HAS_SENDFILE", "/APACHE/581635e28f1.c": "-U APR_HAVE_IPV6", "/APACHE/6338509eb37.c": "-U HAVE_FIPS", "/APACHE/664e3aac6dd.c": "-D WIN32", "/APACHE/9327311d30f.c": "-D APR_HAS_SHARED_MEMORY", "/APACHE/97ecbec1237.c": "-D APU_HAS_LDAP -D APR_HAS_SHARED_MEMORY", "/APACHE/b833f064550.c": "-U HAVE_TIMES", "/APACHE/bbeb0516cf0.c": "-D APR_FILES_AS_SOCKETS", "/APACHE/c76df14dfb4.c": "-D CROSS_COMPILE -D OS2", "/APACHE/d0040a07aec.c": "-D RLIMIT_NPROC -U RLIMIT_CPU -U RLIMIT_DATA -U RLIMIT_VMEM -U RLIMIT_AS", "/APACHE/d05e574ec26.c": "-D APR_HAS_SHARED_MEMORY", "/APACHE/dbafef17dd1.c": "-D HAS_APACHE_REGEX_LIB", "/APACHE/test.c": "", "/BUSYBOX/0301ffab3d9.c": "-U EXT2FS_ENABLE_SWAPFS", "/BUSYBOX/061fd0a353e.c": "-D CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF -U CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF", "/BUSYBOX/192c35f6eb2.c": "-U CONFIG_FEATURE_REMOTE_LOG", "/BUSYBOX/199501f2a00.c": "-U ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS", "/BUSYBOX/1b487ea8a69.c": "-D ENABLE_SELINUX -U ENABLE_FEATURE_STAT_FORMAT", "/BUSYBOX/2631486f1bf.c": "-D CONFIG_FEATURE_LS_SORTFILES -D CONFIG_FEATURE_LS_RECURSIVE", "/BUSYBOX/5275b1e49f6.c": "-U CONFIG_FEATURE_INSMOD_VERSION_CHECKING", "/BUSYBOX/5cd6461b6fb.c": "-D CONFIG_LFS -D CONFIG_FEATURE_HTTPD_CGI", "/BUSYBOX/95755181b82.c": "-D BB_MMU -D ENABLE_FEATURE_HTTPD_GZIP -D ENABLE_FEATURE_HTTPD_BASIC_AUTH", "/BUSYBOX/b273d665181.c": "-D BB_FEATURE_LS_FILETYPES -U BB_FEATURE_LS_USERNAME", "/BUSYBOX/b62bd7b261b.c": "-D ENABLE_FEATURE_MDEV_CONF -D ENABLE_FEATURE_MDEV_RENAME -U ENABLE_FEATURE_MDEV_RENAME_REGEXP", "/BUSYBOX/b7ebc61b54f.c": "-U CONFIG_FEATURE_LS_TIMESTAMPS", "/BUSYBOX/bc0ffc0e971.c": "-D ENABLE_FEATURE_CLEAN_UP", "/BUSYBOX/cc3f20b9bdf.c": "", "/BUSYBOX/cf1f2ace391.c": "-D ENABLE_DEBUG_INIT", "/BUSYBOX/df7b6577c6a.c": "-U ENABLE_DESKTOP", "/BUSYBOX/ebee301c8b0.c": "-D BB_CP_MV -U BB_AR", "/BUSYBOX/eef2317b9f5.c": "-D CONFIG_FEATURE_CLEAN_UP", "/LINUX/0988c4c7fb5.c": "-U CONFIG_VLAN_8021Q", "/LINUX/0dc77b6dabe.c": "-D CONFIG_ANDROID -D CONFIG_EXTCON", "/LINUX/0f8f8094d28.c": "-D CONFIG_LOCKDEP -D CONFIG_SLAB -U CONFIG_SLOB -D CONFIG_PPC_256K_PAGES -D CONFIG_FORCE_MAX_ZONEORDER=11", "/LINUX/1c17e4d4437.c": "-D CONFIG_TREE_RCU -D CONFIG_RCU_CPU_STALL_INFO -U RCU_FAST_NO_HZ", "/LINUX/1f758a4341a.c": "-D CONFIG_EP93XX_ETH -U CONFIG_ZONE_DMA", "/LINUX/208d89843b7.c": "-D CONFIG_HIGHMEM", "/LINUX/218ad12f42e.c": "-D CONFIG_NUMA -D CONFIG_SMP", "/LINUX/221ac329e93.c": "-U PPC64 -D CONFIG_KPROBES -U CONFIG_KGDB -U CONFIG_XMON -U CONFIG_BDI_SWITCH", "/LINUX/242f1a34377.c": "-D CONFIG_CRYPTO_TEST -U CONFIG_CRYPTO_BLKCIPHER", "/LINUX/2f02c15a5d9.c": "-D CONFIG_BCM47XX -U CONFIG_SSB_DRIVER_EXTIF", "/LINUX/30e053248da.c": "-D CONFIG_REISERFS_FS_SECURITY -U CONFIG_SECURITY", "/LINUX/36855dcfc98.c": "-D PM -D CONFIG_BF60x", "/LINUX/472a474c663.c": "-D X86 -D CONFIG_SMP", "/LINUX/51fd36f3fad.c": "-U CONFIG_64BIT -U CONFIG_KTIME_SCALAR", "/LINUX/60e233a5660.c": "-U CONFIG_HOTPLUG", "/LINUX/6252547b8a7.c": "-D CONFIG_TWL4030_CORE -U CONFIG_OF_IRQ", "/LINUX/63878acfafb.c": "-D CONFIG_ARCH_OMAP3 -U CONFIG_PM", "/LINUX/6515e48932c.c": "-D CONFIG_MACH_OMAP_H4 -U CONFIG_ARCH_OMAP2420", "/LINUX/657e9649e74.c": "-D CONFIG_PREEMPT -D CONFIG_TCP_MD5SIG", "/LINUX/66517915e09.c": "-D CONFIG_SND_FSI_AK4642 -U CONFIG_I2C", "/LINUX/68bb91baa0.c": "-D CONFIG_I2C_DESIGNWARE_PLATFORM -D CONFIG_I2C_DESIGNWARE_PCI", "/LINUX/6e2b75740be.c": "-D CONFIG_MODULE_UNLOAD -D CONFIG_SMP", "/LINUX/76baeebf7df.c": "-D CONFIG_X86_32 -D CONFIG_NUMA -D CONFIG_PCI", "/LINUX/7acf6cd80b2.c": "-D CONFIG_UNIX98_PTYS -D CONFIG_DEVPTS_MULTIPLE_INSTANCES", "/LINUX/7c6048b7c83.c": "-D CONFIG_STUB_POULSBO -D CONFIG_ACPI -U CONFIG_BACKLIGHT_CLASS_DEVICE", "/LINUX/809e660f438.c": "-D CONFIG_ARM_LPAE", "/LINUX/8c8296223f3.c": "-D CONFIG_PROC_PAGE_MONITOR", "/LINUX/91ea8207168.c": "-D CONFIG_PARISC -D DISCONTIGMEM -D CONFIG_PROC_PAGE_MONITOR", "/LINUX/ae249b5fa27.c": "-D PARISC -D CONFIG_DISCONTIGMEM -D CONFIG_PROC_PAGE_MONITOR", "/LINUX/bc8cec0dff0.c": "-D CONFIG_JFFS2_FS_WBUF_VERIFY", "/LINUX/c708c57e247.c": "-D CONFIG_S390_PRNG -D CONFIG_S390", "/LINUX/d530db0db90.c": "-D CONFIG_VORTEX -U CONFIG_PCI", "/LINUX/d549f55f2e1.c": "-D CONFIG_IPV6 -U CONFIG_VLAN_8021Q", "/LINUX/d6c7e113959.c": "-D CONFIG_REGULATOR_MAX8660 -U CONFIG_OF", "/LINUX/d7e9711760a.c": "-D CONFIG_QUOTA_DEBUG", "/LINUX/e1fbd9210d5.c": "-D CONFIG_LBDAF -D CONFIG_AMIGA_Z2RAM", "/LINUX/e39363a9def.c": "-D CONFIG_NETPOLL -U CONFIG_IPV6", "/LINUX/e67bc51e574.c": "-U CONFIG_TRACING", "/LINUX/eb91f1d0a53.c": "-D CONFIG_SLAB -D CONFIG_LOCKDEP -D CONFIG_TRACE_IRQFLAGS -D CONFIG_PROVE_LOCKING -D CONFIG_NUMA", "/LINUX/ee3f34e8572.c": "-D CONFIG_IP_SCTP -D CONFIG_IPV6 -D SCTP_DBG_MSG", "/LINUX/f3d83e24154.c": "-D CONFIG_X86 -D CONFIG_ACPI_WMI", "/LINUX/f48ec1d7885.c": "-D CONFIG_IOSCHED_CFQ -U CONFIG_BLK_CGROUP", "/LINUX/f7ab9b407b3.c": "-U CONFIG_TMPFS -D CONFIG_SHMEM -D CONFIG_DRM_I915", "/MARLIN/2d22902d080.c": "-D SDSUPPORT", "/MARLIN/2db384a21d6.c": "-D MESH_BED_LEVELING -U DISABLE_M503", "/MARLIN/30248214c7f.c": "-D THERMAL_RUNAWAY_PROTECTION_PERIOD=1", "/MARLIN/31873ec707d.c": "-D ULTRA_LCD", "/MARLIN/53be0f3399e.c": "-D BABYSTEPPING -D DELTA", "/MARLIN/7336e6df070.c": "-D Z_DUAL_STEPPER_DRIVERS", "/MARLIN/831016b09f7.c": "-U ULTRA_LCD -D SDSUPPORT", "/MARLIN/8c4377dd635.c": "-D PIDTEMP -D PID_DEBUG", "/MARLIN/a7fc1f83c81.c": "-D SDSUPPORT", "/MARLIN/b8e79dce897.c": "-D ULTRA_LCD -U ENCODER_RATE_MULTIPLIER -D TEMP_SENSOR=1", "/MARLIN/e30bfedce4d.c": "-D ENABLE_AUTO_BED_LEVELING -U AUTO_BED_LEVELING_GRID", "/MARLIN/f87c80889fe.c": "", "/MARLIN/fc3c76fc164.c": "-D HAS_BED_THERMAL_PROTECTION", "/MARLIN/fdac8f6cece.c": "-U ENABLE_AUTO_BED_LEVELING"} \ No newline at end of file diff --git a/fonda/cpp_testsuite/varBugs/infer-out/.infer_runstate.json b/fonda/cpp_testsuite/varBugs/infer-out/.infer_runstate.json index f36f4b5c..a9aefbe6 100644 --- a/fonda/cpp_testsuite/varBugs/infer-out/.infer_runstate.json +++ b/fonda/cpp_testsuite/varBugs/infer-out/.infer_runstate.json @@ -1 +1 @@ -{"run_sequence":[{"date":"2022-03-21 00:46:02.718721-05:00","command":"run","infer_version":{"major":1,"minor":1,"patch":0,"commit":"unknown"}}],"results_dir_format":"db_filename: infer-out/results.db\ndb_schema: \n CREATE TABLE IF NOT EXISTS procedures\n ( proc_uid TEXT PRIMARY KEY NOT NULL\n , proc_name BLOB NOT NULL\n , attr_kind INTEGER NOT NULL\n , source_file TEXT NOT NULL\n , proc_attributes BLOB NOT NULL\n , cfg BLOB\n , callees BLOB NOT NULL\n )\n ;\n\n CREATE TABLE IF NOT EXISTS source_files\n ( source_file TEXT PRIMARY KEY\n , type_environment BLOB NOT NULL\n , integer_type_widths BLOB\n , procedure_names BLOB NOT NULL\n , freshly_captured INT NOT NULL )\n ;\n\n CREATE TABLE IF NOT EXISTS specs\n ( proc_uid TEXT PRIMARY KEY NOT NULL\n , proc_name BLOB NOT NULL\n , analysis_summary BLOB NOT NULL\n , report_summary BLOB NOT NULL\n )\n ;\n\n CREATE TABLE IF NOT EXISTS model_specs\n ( proc_uid TEXT PRIMARY KEY NOT NULL\n , proc_name BLOB NOT NULL\n , analysis_summary BLOB NOT NULL\n , report_summary BLOB NOT NULL\n )\n ","should_merge_capture":false} \ No newline at end of file +{"run_sequence":[{"date":"2022-05-03 23:37:26.034166-05:00","command":"run","infer_version":{"major":1,"minor":1,"patch":0,"commit":"unknown"}}],"results_dir_format":"db_filename: infer-out/results.db\ndb_schema: \n CREATE TABLE IF NOT EXISTS procedures\n ( proc_uid TEXT PRIMARY KEY NOT NULL\n , proc_name BLOB NOT NULL\n , attr_kind INTEGER NOT NULL\n , source_file TEXT NOT NULL\n , proc_attributes BLOB NOT NULL\n , cfg BLOB\n , callees BLOB NOT NULL\n )\n ;\n\n CREATE TABLE IF NOT EXISTS source_files\n ( source_file TEXT PRIMARY KEY\n , type_environment BLOB NOT NULL\n , integer_type_widths BLOB\n , procedure_names BLOB NOT NULL\n , freshly_captured INT NOT NULL )\n ;\n\n CREATE TABLE IF NOT EXISTS specs\n ( proc_uid TEXT PRIMARY KEY NOT NULL\n , proc_name BLOB NOT NULL\n , analysis_summary BLOB NOT NULL\n , report_summary BLOB NOT NULL\n )\n ;\n\n CREATE TABLE IF NOT EXISTS model_specs\n ( proc_uid TEXT PRIMARY KEY NOT NULL\n , proc_name BLOB NOT NULL\n , analysis_summary BLOB NOT NULL\n , report_summary BLOB NOT NULL\n )\n ","should_merge_capture":false} \ No newline at end of file diff --git a/fonda/cpp_testsuite/varBugs/infer-out/logs b/fonda/cpp_testsuite/varBugs/infer-out/logs index 4e96aea1..17592565 100644 --- a/fonda/cpp_testsuite/varBugs/infer-out/logs +++ b/fonda/cpp_testsuite/varBugs/infer-out/logs @@ -1,115 +1,115 @@ -[15397][ debug] Loading models took 23.7ms -[15398][ debug] Sqlite write daemon: starting up -[15398][ debug] Sqlite write daemon: set up complete, waiting for connections -[15397][environment] CWD = /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs -[15397][environment] No .inferconfig file found -[15397][environment] Project root = /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs -[15397][environment] INFER_ARGS = -[15397][environment] command line arguments: infer -- clang -c -[15397][environment] /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c -[15397][environment] Available memory at startup: 29163 MB -[15397][environment] Active checkers: self-in-block (C/C++/ObjC), starvation (C/C++/ObjC, Java), uninit (C/C++/ObjC), siof (C/C++/ObjC), dotnet-resource-leak (C#/.Net), racerd (C/C++/ObjC, Java), liveness (C/C++/ObjC), inefficient-keyset-iterator (Java), fragment-retains-view (Java), biabduction (C/C++/ObjC, Java, C#/.Net) -[15397][environment] Scheduler: file -[15397][environment] Cores used: 10 -[15397][environment] Infer version v1.1.0-unknown -[15397][environment] Copyright 2009 - present Facebook. All Rights Reserved. -[15397][environment] -[15397][ progress] Capturing in make/cc mode... -[15397][ debug] -[15397][ debug] *** Beginning capture of file /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c *** -[15397][ debug] Loading the following linters files: /usr/local/lib/infer/infer/bin/../lib/linter_rules/linters.al -[15397][ debug] Elapsed: 122ms. -[15397][ debug] GC stats for capture: -[15397][ debug] minor_words: 1.07253e+07 -[15397][ debug] promoted_words: 656126 -[15397][ debug] major_words: 706444 -[15397][ debug] minor_collections: 13 -[15397][ debug] major_collections: 2 -[15397][ debug] compactions: 0 -[15397][ debug] top_heap_words: 1006592 -[15397][ debug] -[15397][environment] Parallel jobs: 10 -[15397][ progress] Found 1 source file to analyze in /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/infer-out -[15403][ progress] APACHE/1b48bb3c1af.desugared.c starting -[15403][ progress] APACHE/1b48bb3c1af.desugared.c DONE -[15397][ debug] Backend stats: -[15397][ debug] summary_file_try_load= 2679 -[15397][ debug] summary_read_from_disk= 0 -[15397][ debug] summary_cache_hits= 171 (6%) -[15397][ debug] summary_cache_misses= 2679 -[15397][ debug] ondemand_procs_analyzed= 7 -[15397][ debug] ondemand_local_cache_hits= 2028 (99%) -[15397][ debug] ondemand_local_cache_misses= 12 -[15397][ debug] proc_locker_lock_time_user= 0.00000000 -[15397][ debug] proc_locker_lock_time_sys= 0.00000000 -[15397][ debug] proc_locker_lock_time_wall= 0.00000000 -[15397][ debug] proc_locker_unlock_time_user= 0.00000000 -[15397][ debug] proc_locker_unlock_time_sys= 0.00000000 -[15397][ debug] proc_locker_unlock_time_wall= 0.00000000 -[15397][ debug] restart_scheduler_useful_time_user= 0.00000000 -[15397][ debug] restart_scheduler_useful_time_sys= 0.00000000 -[15397][ debug] restart_scheduler_useful_time_wall= 0.00000000 -[15397][ debug] restart_scheduler_total_time_user= 0.00000000 -[15397][ debug] restart_scheduler_total_time_sys= 0.00000000 -[15397][ debug] restart_scheduler_total_time_wall= 0.00000000 -[15397][ debug] -[15397][ debug] GC stats for backend_stats.gc_stats_add.: -[15397][ debug] minor_words: 6.35079e+09 -[15397][ debug] promoted_words: 2.43975e+07 -[15397][ debug] major_words: 2.47058e+07 -[15397][ debug] minor_collections: 6067 -[15397][ debug] major_collections: 21 -[15397][ debug] compactions: 0 -[15397][ debug] top_heap_words: 14452224 -[15397][ debug] -[15397][ debug] GC stats for backend_stats.gc_stats_max.: -[15397][ debug] minor_words: 6.35079e+09 -[15397][ debug] promoted_words: 2.43975e+07 -[15397][ debug] major_words: 2.47058e+07 -[15397][ debug] minor_collections: 6067 -[15397][ debug] major_collections: 21 -[15397][ debug] compactions: 0 -[15397][ debug] top_heap_words: 5392896 -[15397][ debug] -[15397][ debug] Average over 10 processes -[15397][ debug] GC stats for backend_stats.gc_stats_average.: -[15397][ debug] minor_words: 6.35079e+08 -[15397][ debug] promoted_words: 2.43975e+06 -[15397][ debug] major_words: 2.47058e+06 -[15397][ debug] minor_collections: 606 -[15397][ debug] major_collections: 2 -[15397][ debug] compactions: 0 -[15397][ debug] top_heap_words: 1445222 -[15397][ debug] -[15397][ debug] Analysis phase finished in 10.169s -[15397][ debug] backend_stats.scheduler_process_analysis_time_user= 0.07088500 -[15397][ debug] backend_stats.scheduler_process_analysis_time_sys= 0.03188100 -[15397][ debug] backend_stats.scheduler_process_analysis_time_wall= 10.16869117 -[15397][ debug] GC stats for analysis_scheduler: -[15397][ debug] minor_words: 4.55928e+06 -[15397][ debug] promoted_words: 6754 -[15397][ debug] major_words: 15460 -[15397][ debug] minor_collections: 5 -[15397][ debug] major_collections: 2 -[15397][ debug] compactions: 1 -[15397][ debug] top_heap_words: 1006592 -[15397][ debug] -[15397][ debug] GC stats for report: -[15397][ debug] minor_words: 3037 -[15397][ debug] promoted_words: 0 -[15397][ debug] major_words: 0 -[15397][ debug] minor_collections: 0 -[15397][ debug] major_collections: 0 -[15397][ debug] compactions: 0 -[15397][ debug] top_heap_words: 1006592 -[15397][ debug] -[15397][ debug] GC stats for main_process_full: -[15397][ debug] minor_words: 1.70925e+07 -[15397][ debug] promoted_words: 840140 -[15397][ debug] major_words: 1.10105e+06 -[15397][ debug] minor_collections: 23 -[15397][ debug] major_collections: 6 -[15397][ debug] compactions: 2 -[15397][ debug] top_heap_words: 1006592 -[15397][ debug] -[15398][ debug] Sqlite write daemon: terminating +[2968][ debug] Loading models took 19.184ms +[2969][ debug] Sqlite write daemon: starting up +[2969][ debug] Sqlite write daemon: set up complete, waiting for connections +[2968][environment] CWD = /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs +[2968][environment] No .inferconfig file found +[2968][environment] Project root = /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs +[2968][environment] INFER_ARGS = +[2968][environment] command line arguments: infer -- clang -c +[2968][environment] /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c +[2968][environment] Available memory at startup: 29204 MB +[2968][environment] Active checkers: self-in-block (C/C++/ObjC), starvation (C/C++/ObjC, Java), uninit (C/C++/ObjC), siof (C/C++/ObjC), dotnet-resource-leak (C#/.Net), racerd (C/C++/ObjC, Java), liveness (C/C++/ObjC), inefficient-keyset-iterator (Java), fragment-retains-view (Java), biabduction (C/C++/ObjC, Java, C#/.Net) +[2968][environment] Scheduler: file +[2968][environment] Cores used: 10 +[2968][environment] Infer version v1.1.0-unknown +[2968][environment] Copyright 2009 - present Facebook. All Rights Reserved. +[2968][environment] +[2968][ progress] Capturing in make/cc mode... +[2968][ debug] +[2968][ debug] *** Beginning capture of file /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c *** +[2968][ debug] Loading the following linters files: /usr/local/lib/infer/infer/bin/../lib/linter_rules/linters.al +[2968][ debug] Elapsed: 117ms. +[2968][ debug] GC stats for capture: +[2968][ debug] minor_words: 9.41867e+06 +[2968][ debug] promoted_words: 602419 +[2968][ debug] major_words: 644234 +[2968][ debug] minor_collections: 12 +[2968][ debug] major_collections: 2 +[2968][ debug] compactions: 0 +[2968][ debug] top_heap_words: 1006592 +[2968][ debug] +[2968][environment] Parallel jobs: 10 +[2968][ progress] Found 1 source file to analyze in /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/infer-out +[2974][ progress] APACHE/1b48bb3c1af.desugared.c starting +[2974][ progress] APACHE/1b48bb3c1af.desugared.c DONE +[2968][ debug] Backend stats: +[2968][ debug] summary_file_try_load= 2453 +[2968][ debug] summary_read_from_disk= 0 +[2968][ debug] summary_cache_hits= 93 (3%) +[2968][ debug] summary_cache_misses= 2453 +[2968][ debug] ondemand_procs_analyzed= 6 +[2968][ debug] ondemand_local_cache_hits= 1797 (99%) +[2968][ debug] ondemand_local_cache_misses= 10 +[2968][ debug] proc_locker_lock_time_user= 0.00000000 +[2968][ debug] proc_locker_lock_time_sys= 0.00000000 +[2968][ debug] proc_locker_lock_time_wall= 0.00000000 +[2968][ debug] proc_locker_unlock_time_user= 0.00000000 +[2968][ debug] proc_locker_unlock_time_sys= 0.00000000 +[2968][ debug] proc_locker_unlock_time_wall= 0.00000000 +[2968][ debug] restart_scheduler_useful_time_user= 0.00000000 +[2968][ debug] restart_scheduler_useful_time_sys= 0.00000000 +[2968][ debug] restart_scheduler_useful_time_wall= 0.00000000 +[2968][ debug] restart_scheduler_total_time_user= 0.00000000 +[2968][ debug] restart_scheduler_total_time_sys= 0.00000000 +[2968][ debug] restart_scheduler_total_time_wall= 0.00000000 +[2968][ debug] +[2968][ debug] GC stats for backend_stats.gc_stats_add.: +[2968][ debug] minor_words: 6.32167e+09 +[2968][ debug] promoted_words: 2.4216e+07 +[2968][ debug] major_words: 2.44849e+07 +[2968][ debug] minor_collections: 6040 +[2968][ debug] major_collections: 22 +[2968][ debug] compactions: 0 +[2968][ debug] top_heap_words: 14452224 +[2968][ debug] +[2968][ debug] GC stats for backend_stats.gc_stats_max.: +[2968][ debug] minor_words: 6.32167e+09 +[2968][ debug] promoted_words: 2.4216e+07 +[2968][ debug] major_words: 2.44849e+07 +[2968][ debug] minor_collections: 6040 +[2968][ debug] major_collections: 22 +[2968][ debug] compactions: 0 +[2968][ debug] top_heap_words: 5392896 +[2968][ debug] +[2968][ debug] Average over 10 processes +[2968][ debug] GC stats for backend_stats.gc_stats_average.: +[2968][ debug] minor_words: 6.32167e+08 +[2968][ debug] promoted_words: 2.4216e+06 +[2968][ debug] major_words: 2.44849e+06 +[2968][ debug] minor_collections: 604 +[2968][ debug] major_collections: 2 +[2968][ debug] compactions: 0 +[2968][ debug] top_heap_words: 1445222 +[2968][ debug] +[2968][ debug] Analysis phase finished in 10.132s +[2968][ debug] backend_stats.scheduler_process_analysis_time_user= 0.06956000 +[2968][ debug] backend_stats.scheduler_process_analysis_time_sys= 0.01830600 +[2968][ debug] backend_stats.scheduler_process_analysis_time_wall= 10.13240744 +[2968][ debug] GC stats for analysis_scheduler: +[2968][ debug] minor_words: 4.52483e+06 +[2968][ debug] promoted_words: 5892 +[2968][ debug] major_words: 14598 +[2968][ debug] minor_collections: 5 +[2968][ debug] major_collections: 2 +[2968][ debug] compactions: 1 +[2968][ debug] top_heap_words: 1006592 +[2968][ debug] +[2968][ debug] GC stats for report: +[2968][ debug] minor_words: 2938 +[2968][ debug] promoted_words: 0 +[2968][ debug] major_words: 0 +[2968][ debug] minor_collections: 0 +[2968][ debug] major_collections: 0 +[2968][ debug] compactions: 0 +[2968][ debug] top_heap_words: 1006592 +[2968][ debug] +[2968][ debug] GC stats for main_process_full: +[2968][ debug] minor_words: 1.57513e+07 +[2968][ debug] promoted_words: 785571 +[2968][ debug] major_words: 1.03798e+06 +[2968][ debug] minor_collections: 22 +[2968][ debug] major_collections: 6 +[2968][ debug] compactions: 2 +[2968][ debug] top_heap_words: 1006592 +[2968][ debug] +[2969][ debug] Sqlite write daemon: terminating diff --git a/fonda/cpp_testsuite/varBugs/infer-out/results.db-shm b/fonda/cpp_testsuite/varBugs/infer-out/results.db-shm index d23fd3dc058a8a8d57a1ce4fa8c1b0b476e15090..6148db78dee33b7e51118ef9ccf79c65a2023394 100644 GIT binary patch delta 380 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%0A#_O0V61 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 tc{x#Z(~^;NAwkR$4sjh7CvoCom$@a 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 diff --git a/fonda/cpp_testsuite/varBugs/infer-out/tmp/clang_command_.tmp.42174c.txt b/fonda/cpp_testsuite/varBugs/infer-out/tmp/clang_command_.tmp.3490f2.txt similarity index 100% rename from fonda/cpp_testsuite/varBugs/infer-out/tmp/clang_command_.tmp.42174c.txt rename to fonda/cpp_testsuite/varBugs/infer-out/tmp/clang_command_.tmp.3490f2.txt diff --git a/fonda/cpp_testsuite/varBugs/infer-out/tmp/clang_command_.tmp.e34e32.txt b/fonda/cpp_testsuite/varBugs/infer-out/tmp/clang_command_.tmp.403c06.txt similarity index 100% rename from fonda/cpp_testsuite/varBugs/infer-out/tmp/clang_command_.tmp.e34e32.txt rename to fonda/cpp_testsuite/varBugs/infer-out/tmp/clang_command_.tmp.403c06.txt diff --git a/fonda/cpp_testsuite/varBugs/runTests.py b/fonda/cpp_testsuite/varBugs/runTests.py index 22be67fb..a8f78bb9 100644 --- a/fonda/cpp_testsuite/varBugs/runTests.py +++ b/fonda/cpp_testsuite/varBugs/runTests.py @@ -3,67 +3,72 @@ import shutil import json import re +WLOC = "/home/kisamefishfry/Documents/Research/SugarCPostWork" +sys.path.append(WLOC) +import warningSolver +import conditionLimiter +import defSearcher LOC = "/home/kisamefishfry/SystemConfig" +RECLOC = "RecursiveConfig.h" +stdIncREC = "-nostdinc -include " + RECLOC + " -include " + LOC + "/baseInc.h -I " + LOC + "/original/usr/include/ -I " + LOC + "/original/usr/include/x86_64-linux-gnu/ -I " + LOC + "/\original/usr/lib/gcc/x86_64-linux-gnu/9/include/" + stdInc = "-nostdinc -include " + LOC + "/baseInc.h -I " + LOC + "/original/usr/include/ -I " + LOC + "/original/usr/include/x86_64-linux-gnu/ -I " + LOC + "/\original/usr/lib/gcc/x86_64-linux-gnu/9/include/" +idCounter = 1 + class Warning: def __init__(self): + global idCounter self.msg = '' self.line = 0 self.lineA = 0 self.lineB = 0 + self.idn = idCounter + idCounter += 1 def sanitize(self): - if " '" in self.msg: - return re.sub(r" '\S+'", " 'x'", self.msg.rstrip()) - return self.msg.rstrip() + san = self.msg.rstrip() + if " '" in san: + san = re.sub(r" '\S+'", " 'x'", san) + if san.endswith(']'): + san = re.sub(r' \[.*\]$', '', san) + return san def tostr(self): - return ' '.join([self.sanitize(),str(self.line),str(self.lineA),str(self.lineB)]) + return ' '.join(['('+self.sanitize()+')',str(self.line),str(self.lineA),str(self.lineB)]) def areEq(self,inner): print(self.tostr() + ' ||' + inner.tostr()) return self.sanitize() == inner.sanitize() and inner.line >= self.lineA and inner.line <= self.lineB -def getClangAlarm(fi): - orig = fi + ".clangres" +def getClangAlarm(fi,warningsO): + if len(warningsO) == 0: + return 'Original file has no warnings\n' desug = fi + ".desugared.clangres" - warningsO = [] warningsD = [] - f = open(orig) - for x in f: - if fi in x and 'warning:' in x: - x = x.rstrip() - y = Warning() - y.msg = x.split('warning:')[1] - y.line = int(x.split(':')[1]) - warningsO.append(y) - f.close() - f = open(desug) - lines = [] - for x in f: - lines.append(x.rstrip()) + warningsDI = 0 + desugs = warningSolver.main(fi.split('/')[-2],fi.split('/')[-1],fi+".desugared.c") + warnDStr = '' + for d in desugs: + if d['feasible']: + if d['correNum'] != '-1': + z = Warning() + z.msg = d['msg'] + linestr = d['correNum'] + if ':L' in linestr: + z.lineA = int(linestr.split(':L')[0]) + z.lineB = int(linestr.split(':L')[1]) + else: + z.lineA = int(linestr) + z.lineB = int(linestr) + warningsD.append(z) + warnDStr += d['msg'] + ' ' + d['correNum'] + ' ' + str(d['model']) + '\n' + else: + warningsDI += 1 i = 0 - while i < len(lines) - 1: - l = lines[i] - if fi in l and 'warning:' in l and '// L' in lines[i+1]: - z = Warning() - z.msg = l.split('warning:')[1] - linestr = lines[i+1].split('// L')[1] - if ':L' in linestr: - z.lineA = int(linestr.split(':L')[0]) - z.lineB = int(linestr.split(':L')[1]) - else: - z.lineA = int(linestr) - z.lineB = int(linestr) - warningsD.append(z) - i = i+1 - i = i+1 - f.close() - i = 0 - if len(warningsO) == 0: - return 'none ', len(warningsO), len(warningsD) + notFound = [] + rep = 'Matches:\n' while i < len(warningsO): found = False for d in warningsD: @@ -71,9 +76,16 @@ def getClangAlarm(fi): found = True break if not found: - return 'missing', len(warningsO), len(warningsD) + notFound.append(str(warningsO[i].idn)) + else: + rep += '\t'+str(warningsO[i].idn) + ' has a match!\n' i = i+1 - return 'match ', len(warningsO), len(warningsD) + rep += 'Unmatched ids:\n' + for x in notFound: + rep += '\t' + x + '\n' + if len(notFound) == 0: + rep += '\tNone!\n' + return rep def getInferAlarm(fi,firel): orig = fi + ".inferres" @@ -112,7 +124,7 @@ def getInferAlarm(fi,firel): f.close() i = 0 if len(warningsO) == 0: - return 'none ', len(warningsO), len(warningsD) + return 'none ' + str( len(warningsO)) + ' ' + str(len(warningsD)) while i < len(warningsO): found = False for d in warningsD: @@ -120,15 +132,42 @@ def getInferAlarm(fi,firel): found = True break if not found: - return 'missing', len(warningsO), len(warningsD) + return 'missing' + str( len(warningsO)) + ' ' + str(len(warningsD)) i = i+1 - return 'match ', len(warningsO), len(warningsD) + return 'match ' + str( len(warningsO)) + ' ' + str(len(warningsD)) def remove_prefix(text, prefix): return text[text.startswith(prefix) and len(prefix):] -def main(): +def alarmsBase(fpa,macros): + rep = '' + cFile = fpa[:len(fpa) - 2] + '.clangres' + warningsO = [] + for i in range(len(macros)**2): + inc = '' + for m in range(len(macros)): + if int(i/(2**m)) % 2 == 1: + inc += '-D' + macros[m] + '=1 ' + else: + inc += '-U' + macros[m] + ' ' + rep += '['+inc+']\n' + os.system('clang --analyze ' + inc + ' ' + fpa + " 2> " + cFile) + f = open(cFile, 'r') + txt = f.read() + f.close() + for x in txt.split('\n'): + if fpa.split('/')[-1] in x and 'warning:' in x: + x = x.rstrip() + y = Warning() + y.msg = x.split('warning: ')[1] + y.line = int(x.split(':')[1]) + warningsO.append(y) + rep += str(y.idn) + ' :: Line:' + str(y.line) + '\n\t' + y.msg + '\n' + return rep, warningsO + + +def main(toinclude): os.system('rm summaryTable.txt') os.system('touch summaryTable.txt') sumTable = open('summaryTable.txt', 'w') @@ -150,8 +189,6 @@ def main(): if len(sumTOut + dirFiles) > maxC: maxC = len(sumTOut + dirFiles) - sumTable.write('File' + (maxC - 4)*' ' + 'Status Clang Infer\n'+(4)*'-'+ (maxC - 4)*' '+'------ ----- -----\n') - jsFile = open('configs.json','r+') if os.stat('configs.json').st_size == 0: js = {} @@ -172,12 +209,40 @@ def main(): if os.path.exists(curDir + '/' + dirFiles) and os.path.isdir(curDir + '/' + dirFiles): dirList.append(curDir + '/' + dirFiles) print (curDir + '/' + dirFiles) - elif (dirFiles.endswith('.c') and not dirFiles.endswith('desugared.c')) and realFile not in ranFiles and not dirFiles.endswith('expected.c'): + elif (dirFiles.endswith('.c') and not dirFiles.endswith('desugared.c')) and realFile not in ranFiles and not dirFiles.endswith('expected.c') and toinclude in realFile: ranFiles.append(realFile) sumTOut = os.path.relpath(curDir, os.getcwd()) + '/' + dirFiles[:len(dirFiles) - 2] key = sumTOut + ".c" print(curDir + '/' + dirFiles) + report = '' + listOfMacros = defSearcher.getAllMacros(realFile) + report += realFile.split('/')[-2] + ' ' + realFile.split('/')[-1] + '\nMacros:\n' + for lm in listOfMacros: + report += '\t' + lm + "\n" + rep, warningsC = alarmsBase(realFile, listOfMacros) + + report += rep + #------------------------------------------ + #''' + os.system('echo | gcc -dM -E - > ' + RECLOC) + toAppend = [''] + while len(toAppend) > 0: + for d in toAppend: + os.system('echo "' + d + '" >> ' + RECLOC) + + os.system( 'java superc.SugarC -keep-mem ' + stdIncREC + " " + curDir + '/' + dirFiles + ' > ' + curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.desugared.c 2> ' + curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.Log') + toAppend = conditionLimiter.getBadConstraints(curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.desugared.c') + print(toAppend) + #''' + #------------------------------------------ + #ABOVE IS USING A RECURSIVE METHOD + #BELOW IS WITH STANDARD INCLUSIONS + #------------------------------------------ + ''' os.system( 'java superc.SugarC -keep-mem ' + stdInc + " -I " + curDir + " " + curDir + '/' + dirFiles + ' > ' + curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.desugared.c 2> ' + curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.Log') + ''' + #------------------------------------------ + ''' filewobase = (curDir + '/' + dirFiles)[len(os.getcwd()):] if filewobase in js: inc = js[filewobase] @@ -185,28 +250,41 @@ def main(): print('condition for ' + filewobase + ':\n') inc = sys.stdin.readline().rstrip() js[filewobase] = inc - - os.system('clang --analyze ' + inc + ' ' + curDir + '/' + dirFiles + " 2> " + curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.clangres') - os.system('infer -- clang -c ' + inc + ' ' + curDir + '/' + dirFiles + " > " + curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.inferres') + ''' + + #os.system('infer -- clang -c ' + inc + ' ' + curDir + '/' + dirFiles + " > " + curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.inferres') if os.path.getsize(curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.desugared.c') <= 32: - sumTable.write(sumTOut + (maxC - len(sumTOut))*' ' + 'SuperC failed *\n') + sumTable.write(sumTOut + (maxC - len(sumTOut))*' ' + 'SuperC failed\n') else: os.system('clang -Wno-everything -emit-llvm -c ' + curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.desugared.c') os.system('clang --analyze ' + curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.desugared.c 2> ' + curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.desugared.clangres') - os.system('infer -- clang -c ' + curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.desugared.c > ' + curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.desugared.inferres') + #os.system('infer -- clang -c ' + curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.desugared.c > ' + curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.desugared.inferres') if os.path.exists(os.getcwd() + '/' + dirFiles[:len(dirFiles) - 2] + '.desugared.bc'): + report += 'Desugared Clang Results:\n' + ff = open (curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.desugared.clangres','r') + report += ff.read() + ff.close() os.system('mv ' + dirFiles[:len(dirFiles) - 2] + '.desugared.bc ' + curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.desugared.bc') - alarmc , origsc, desugc = getClangAlarm(curDir + '/' + dirFiles[:len(dirFiles) - 2]) - alarmi , origsi, desugi = getInferAlarm(curDir + '/' + dirFiles[:len(dirFiles) - 2],sumTOut) - sumTable.write(sumTOut + (maxC - len(sumTOut))*' ' +'BC generated ' + alarmc + ' ' + str(origsc) + '/' + str(desugc) + (' ' if desugc > 9 else ' ') + alarmi + ' ' + str(origsi) + '/' + str(desugi) + '\n') + report += getClangAlarm(realFile[:-2], warningsC) + #alarmi = getInferAlarm(curDir + '/' + dirFiles[:len(dirFiles) - 2],sumTOut) + sumTable.write(report) else: - sumTable.write(sumTOut + (maxC - len(sumTOut))*' ' +'BC failed *\n') + report += 'File Failed\n' + sumTable.write(report) + fff = open(realFile.split('/')[-2] + '-' + realFile.split('/')[-1][:-2]+'.report','w') + fff.write(report) + fff.close() with open('configs.json','w') as json_file: json.dump(js,json_file,sort_keys=True) sumTable.close() + os.system('rm *.plist; rm *.o') + if __name__ == '__main__': - main() + if len(sys.argv) < 2: + main('') + else: + main(sys.argv[1]) diff --git a/fonda/cpp_testsuite/varBugs/summaryTable.txt b/fonda/cpp_testsuite/varBugs/summaryTable.txt index ee021ebc..e0dd731f 100644 --- a/fonda/cpp_testsuite/varBugs/summaryTable.txt +++ b/fonda/cpp_testsuite/varBugs/summaryTable.txt @@ -1,103 +1,1569 @@ -File Status Clang Infer ----- ------ ----- ----- -MARLIN/f87c80889fe BC generated none 0/0 none 0/0 -MARLIN/53be0f3399e BC failed * -MARLIN/31873ec707d BC generated none 0/0 none 0/0 -MARLIN/2d22902d080 BC generated none 0/0 none 0/0 -MARLIN/a7fc1f83c81 BC generated none 0/3 none 0/3 -MARLIN/30248214c7f BC generated none 0/0 none 0/0 -MARLIN/2db384a21d6 BC generated none 0/0 none 0/0 -MARLIN/b8e79dce897 BC generated none 0/0 none 0/0 -MARLIN/8c4377dd635 BC generated none 0/2 none 0/4 -MARLIN/fc3c76fc164 BC generated none 0/0 none 0/0 -MARLIN/831016b09f7 BC generated none 0/1 none 0/1 -MARLIN/e30bfedce4d BC generated match 1/1 match 1/1 -MARLIN/7336e6df070 BC generated none 0/0 none 0/0 -MARLIN/fdac8f6cece BC generated none 0/0 none 0/0 -LINUX/d530db0db90 BC generated none 0/0 none 0/0 -LINUX/bc8cec0dff0 BC generated none 0/0 none 0/0 -LINUX/d7e9711760a BC generated match 1/1 match 1/1 -LINUX/221ac329e93 BC generated none 0/0 none 0/0 -LINUX/51fd36f3fad BC generated none 0/3 none 0/3 -LINUX/208d89843b7 BC generated none 0/0 none 0/0 -LINUX/ee3f34e8572 BC generated missing 1/2 missing 1/0 -LINUX/472a474c663 BC generated match 1/1 none 0/0 -LINUX/657e9649e74 BC generated none 0/0 none 0/0 -LINUX/f7ab9b407b3 BC generated none 0/0 none 0/0 -LINUX/36855dcfc98 BC generated none 0/1 none 0/0 -LINUX/e1fbd9210d5 BC generated none 0/0 none 0/0 -LINUX/66517915e09 BC generated none 0/2 none 0/2 -LINUX/7c6048b7c83 BC generated none 0/0 none 0/0 -LINUX/f3d83e24154 BC generated none 0/0 none 0/0 -LINUX/eb91f1d0a53 BC generated none 0/0 none 0/0 -LINUX/1f758a4341a BC generated none 0/0 none 0/0 -LINUX/0988c4c7fb5 BC generated none 0/0 none 0/0 -LINUX/242f1a34377 BC generated none 0/0 none 0/0 -LINUX/2f02c15a5d9 BC generated none 0/0 none 0/0 -LINUX/8c8296223f3 BC generated none 0/0 none 0/0 -LINUX/68bb91baa0 BC generated none 0/0 none 0/0 -LINUX/1c17e4d4437 BC generated none 0/0 none 0/0 -LINUX/f48ec1d7885 BC generated none 0/0 none 0/0 -LINUX/0dc77b6dabe BC generated none 0/0 none 0/0 -LINUX/6515e48932c BC generated none 0/0 none 0/0 -LINUX/91ea8207168 BC generated none 0/0 none 0/0 -LINUX/6e2b75740be BC generated none 0/5 none 0/1 -LINUX/76baeebf7df SuperC failed * -LINUX/76baeebf7df BC failed * -LINUX/218ad12f42e BC generated none 0/0 none 0/0 -LINUX/ae249b5fa27 BC generated none 0/2 none 0/2 -LINUX/e67bc51e574 BC generated none 0/0 none 0/0 -LINUX/c708c57e247 BC generated match 1/1 none 0/0 -LINUX/809e660f438 BC generated none 0/0 none 0/0 -LINUX/0f8f8094d28 BC generated none 0/0 none 0/0 -LINUX/6252547b8a7 BC generated match 2/2 missing 2/1 -LINUX/d6c7e113959 BC generated none 0/0 none 0/1 -LINUX/e39363a9def BC generated match 1/1 match 1/1 -LINUX/30e053248da BC generated match 2/3 match 1/3 -LINUX/d549f55f2e1 BC generated none 0/0 none 0/0 -LINUX/7acf6cd80b2 BC generated match 3/3 match 2/2 -LINUX/60e233a5660 BC generated none 0/0 none 0/0 -LINUX/63878acfafb BC generated none 0/1 none 0/1 -BUSYBOX/5275b1e49f6 BC generated none 0/13 none 0/5 -BUSYBOX/5cd6461b6fb BC generated none 0/0 none 0/0 -BUSYBOX/1b487ea8a69 BC generated match 1/2 match 1/2 -BUSYBOX/b7ebc61b54f BC generated none 0/0 none 0/0 -BUSYBOX/ebee301c8b0 BC generated none 0/2 none 0/2 -BUSYBOX/b273d665181 BC generated match 1/5 match 1/4 -BUSYBOX/df7b6577c6a BC generated none 0/0 none 0/0 -BUSYBOX/061fd0a353e BC generated none 0/2 none 0/2 -BUSYBOX/eef2317b9f5 BC generated match 1/3 match 1/3 -BUSYBOX/192c35f6eb2 BC generated none 0/0 none 0/0 -BUSYBOX/2631486f1bf BC generated match 1/14 missing 2/5 -BUSYBOX/95755181b82 BC failed * -BUSYBOX/cc3f20b9bdf BC generated none 0/0 none 0/0 -BUSYBOX/cf1f2ace391 BC generated none 0/0 none 0/0 -BUSYBOX/bc0ffc0e971 BC generated missing 1/8 missing 1/2 -BUSYBOX/b62bd7b261b BC generated match 2/14 match 2/5 -BUSYBOX/0301ffab3d9 BC generated none 0/1 none 0/1 -BUSYBOX/199501f2a00 BC generated missing 1/1 missing 1/1 -APACHE/d0040a07aec BC generated none 0/0 none 0/0 -APACHE/c76df14dfb4 BC generated match 1/4 match 1/4 -APACHE/97ecbec1237 BC generated none 0/0 none 0/0 -APACHE/bbeb0516cf0 BC generated missing 1/0 missing 1/0 -APACHE/1f46088b38d BC generated none 0/0 none 0/0 -APACHE/9327311d30f BC generated none 0/0 none 0/0 -APACHE/35ae2e259e4 BC generated missing 1/6 match 2/5 -APACHE/4202d5fee3e BC generated none 0/0 none 0/0 -APACHE/b833f064550 SuperC failed * -APACHE/b833f064550 BC failed * -APACHE/581635e28f1 BC generated none 0/0 none 0/1 -APACHE/2a6cbfa00e0 BC generated missing 1/0 missing 1/0 -APACHE/1a3c8e3d840 BC generated none 0/2 none 0/2 -APACHE/test SuperC failed * -APACHE/test BC failed * -APACHE/dbafef17dd1 BC generated none 0/0 none 0/0 -APACHE/3407eccc321 BC generated none 0/0 none 0/0 -APACHE/664e3aac6dd BC generated none 0/0 none 0/0 -APACHE/d05e574ec26 BC generated missing 1/7 none 0/4 -APACHE/6338509eb37 BC generated none 0/0 none 0/0 -APACHE/0900800fbab BC generated none 0/0 none 0/0 -APACHE/0ddfa412ee9 BC generated none 0/0 none 0/0 -APACHE/4945115b2e7 BC generated none 0/0 missing 2/0 -APACHE/56d9881993f BC generated none 0/0 none 0/0 -APACHE/1b48bb3c1af BC generated match 1/3 none 0/0 +MARLIN f87c80889fe.c +Macros: + TEMP_RESIDENCY_TIME +[-UTEMP_RESIDENCY_TIME ] +Desugared Clang Results: +Original file has no warnings +MARLIN 53be0f3399e.c +Macros: + BABYSTEPPING + DELTA +[-UBABYSTEPPING -UDELTA ] +[-DBABYSTEPPING=1 -UDELTA ] +[-UBABYSTEPPING -DDELTA=1 ] +[-DBABYSTEPPING=1 -DDELTA=1 ] +Desugared Clang Results: +Original file has no warnings +MARLIN 31873ec707d.c +Macros: + ULTRA_LCD +[-UULTRA_LCD ] +Desugared Clang Results: +Original file has no warnings +MARLIN 2d22902d080.c +Macros: + SDSUPPORT +[-USDSUPPORT ] +Desugared Clang Results: +Original file has no warnings +MARLIN a7fc1f83c81.c +Macros: + SDSUPPORT +[-USDSUPPORT ] +Desugared Clang Results: +Original file has no warnings +MARLIN 30248214c7f.c +Macros: + defined +[-Udefined ] +Desugared Clang Results: +Original file has no warnings +MARLIN 2db384a21d6.c +Macros: + MESH_BED_LEVELING + DISABLE_M503 +[-UMESH_BED_LEVELING -UDISABLE_M503 ] +[-DMESH_BED_LEVELING=1 -UDISABLE_M503 ] +[-UMESH_BED_LEVELING -DDISABLE_M503=1 ] +[-DMESH_BED_LEVELING=1 -DDISABLE_M503=1 ] +Desugared Clang Results: +Original file has no warnings +MARLIN b8e79dce897.c +Macros: + ULTRA_LCD + ENCODER_RATE_MULTIPLIER + TEMP_SENSOR_0 +[-UULTRA_LCD -UENCODER_RATE_MULTIPLIER -UTEMP_SENSOR_0 ] +[-DULTRA_LCD=1 -UENCODER_RATE_MULTIPLIER -UTEMP_SENSOR_0 ] +[-UULTRA_LCD -DENCODER_RATE_MULTIPLIER=1 -UTEMP_SENSOR_0 ] +[-DULTRA_LCD=1 -DENCODER_RATE_MULTIPLIER=1 -UTEMP_SENSOR_0 ] +[-UULTRA_LCD -UENCODER_RATE_MULTIPLIER -DTEMP_SENSOR_0=1 ] +[-DULTRA_LCD=1 -UENCODER_RATE_MULTIPLIER -DTEMP_SENSOR_0=1 ] +[-UULTRA_LCD -DENCODER_RATE_MULTIPLIER=1 -DTEMP_SENSOR_0=1 ] +[-DULTRA_LCD=1 -DENCODER_RATE_MULTIPLIER=1 -DTEMP_SENSOR_0=1 ] +[-UULTRA_LCD -UENCODER_RATE_MULTIPLIER -UTEMP_SENSOR_0 ] +Desugared Clang Results: +Original file has no warnings +MARLIN 8c4377dd635.c +Macros: + MARLIN_H + PIDTEMP + PID_DEBUG +[-UMARLIN_H -UPIDTEMP -UPID_DEBUG ] +1 :: Line:19 + Value stored to 'pid_output' is never read [deadcode.DeadStores] +[-DMARLIN_H=1 -UPIDTEMP -UPID_DEBUG ] +2 :: Line:19 + Value stored to 'pid_output' is never read [deadcode.DeadStores] +[-UMARLIN_H -DPIDTEMP=1 -UPID_DEBUG ] +[-DMARLIN_H=1 -DPIDTEMP=1 -UPID_DEBUG ] +[-UMARLIN_H -UPIDTEMP -DPID_DEBUG=1 ] +3 :: Line:19 + Value stored to 'pid_output' is never read [deadcode.DeadStores] +[-DMARLIN_H=1 -UPIDTEMP -DPID_DEBUG=1 ] +4 :: Line:19 + Value stored to 'pid_output' is never read [deadcode.DeadStores] +[-UMARLIN_H -DPIDTEMP=1 -DPID_DEBUG=1 ] +[-DMARLIN_H=1 -DPIDTEMP=1 -DPID_DEBUG=1 ] +[-UMARLIN_H -UPIDTEMP -UPID_DEBUG ] +5 :: Line:19 + Value stored to 'pid_output' is never read [deadcode.DeadStores] +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.c:59:2: warning: Value stored to '__pid_output_0' is never read [deadcode.DeadStores] + __pid_output_0 = 0 ; // L19 + ^ ~ +1 warning generated. +Matches: + 1 has a match! + 2 has a match! + 3 has a match! + 4 has a match! + 5 has a match! +Unmatched ids: + None! +MARLIN fc3c76fc164.c +Macros: + HAS_HEATER_THERMAL_PROTECTION + HAS_BED_THERMAL_PROTECTION +[-UHAS_HEATER_THERMAL_PROTECTION -UHAS_BED_THERMAL_PROTECTION ] +[-DHAS_HEATER_THERMAL_PROTECTION=1 -UHAS_BED_THERMAL_PROTECTION ] +[-UHAS_HEATER_THERMAL_PROTECTION -DHAS_BED_THERMAL_PROTECTION=1 ] +[-DHAS_HEATER_THERMAL_PROTECTION=1 -DHAS_BED_THERMAL_PROTECTION=1 ] +Desugared Clang Results: +Original file has no warnings +MARLIN 831016b09f7.c +Macros: + ULTRA_LCD + SDSUPPORT +[-UULTRA_LCD -USDSUPPORT ] +[-DULTRA_LCD=1 -USDSUPPORT ] +[-UULTRA_LCD -DSDSUPPORT=1 ] +[-DULTRA_LCD=1 -DSDSUPPORT=1 ] +Desugared Clang Results: +Original file has no warnings +MARLIN e30bfedce4d.c +Macros: + ENABLE_AUTO_BED_LEVELING + AUTO_BED_LEVELING_GRID +[-UENABLE_AUTO_BED_LEVELING -UAUTO_BED_LEVELING_GRID ] +[-DENABLE_AUTO_BED_LEVELING=1 -UAUTO_BED_LEVELING_GRID ] +7 :: Line:24 + Value stored to 'xGridSpacing' during its initialization is never read [deadcode.DeadStores] +[-UENABLE_AUTO_BED_LEVELING -DAUTO_BED_LEVELING_GRID=1 ] +[-DENABLE_AUTO_BED_LEVELING=1 -DAUTO_BED_LEVELING_GRID=1 ] +8 :: Line:24 + Value stored to 'xGridSpacing' during its initialization is never read [deadcode.DeadStores] +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.desugared.c:48:6: warning: Value stored to '__xGridSpacing_1' during its initialization is never read [deadcode.DeadStores] +int __xGridSpacing_1= __left_probe_bed_position_0 ;// L24 + ^~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~ +1 warning generated. +Matches: + 7 has a match! + 8 has a match! +Unmatched ids: + None! +MARLIN 7336e6df070.c +Macros: + Z_DUAL_STEPPER_DRIVERS + Z_DUAL_ENDSTOPS + HAS_Z_MIN + HAS_Z_MAX +[-UZ_DUAL_STEPPER_DRIVERS -UZ_DUAL_ENDSTOPS -UHAS_Z_MIN -UHAS_Z_MAX ] +[-DZ_DUAL_STEPPER_DRIVERS=1 -UZ_DUAL_ENDSTOPS -UHAS_Z_MIN -UHAS_Z_MAX ] +[-UZ_DUAL_STEPPER_DRIVERS -DZ_DUAL_ENDSTOPS=1 -UHAS_Z_MIN -UHAS_Z_MAX ] +[-DZ_DUAL_STEPPER_DRIVERS=1 -DZ_DUAL_ENDSTOPS=1 -UHAS_Z_MIN -UHAS_Z_MAX ] +[-UZ_DUAL_STEPPER_DRIVERS -UZ_DUAL_ENDSTOPS -DHAS_Z_MIN=1 -UHAS_Z_MAX ] +[-DZ_DUAL_STEPPER_DRIVERS=1 -UZ_DUAL_ENDSTOPS -DHAS_Z_MIN=1 -UHAS_Z_MAX ] +[-UZ_DUAL_STEPPER_DRIVERS -DZ_DUAL_ENDSTOPS=1 -DHAS_Z_MIN=1 -UHAS_Z_MAX ] +[-DZ_DUAL_STEPPER_DRIVERS=1 -DZ_DUAL_ENDSTOPS=1 -DHAS_Z_MIN=1 -UHAS_Z_MAX ] +[-UZ_DUAL_STEPPER_DRIVERS -UZ_DUAL_ENDSTOPS -UHAS_Z_MIN -DHAS_Z_MAX=1 ] +[-DZ_DUAL_STEPPER_DRIVERS=1 -UZ_DUAL_ENDSTOPS -UHAS_Z_MIN -DHAS_Z_MAX=1 ] +[-UZ_DUAL_STEPPER_DRIVERS -DZ_DUAL_ENDSTOPS=1 -UHAS_Z_MIN -DHAS_Z_MAX=1 ] +[-DZ_DUAL_STEPPER_DRIVERS=1 -DZ_DUAL_ENDSTOPS=1 -UHAS_Z_MIN -DHAS_Z_MAX=1 ] +[-UZ_DUAL_STEPPER_DRIVERS -UZ_DUAL_ENDSTOPS -DHAS_Z_MIN=1 -DHAS_Z_MAX=1 ] +[-DZ_DUAL_STEPPER_DRIVERS=1 -UZ_DUAL_ENDSTOPS -DHAS_Z_MIN=1 -DHAS_Z_MAX=1 ] +[-UZ_DUAL_STEPPER_DRIVERS -DZ_DUAL_ENDSTOPS=1 -DHAS_Z_MIN=1 -DHAS_Z_MAX=1 ] +[-DZ_DUAL_STEPPER_DRIVERS=1 -DZ_DUAL_ENDSTOPS=1 -DHAS_Z_MIN=1 -DHAS_Z_MAX=1 ] +Desugared Clang Results: +Original file has no warnings +MARLIN fdac8f6cece.c +Macros: + ENABLE_AUTO_BED_LEVELING +[-UENABLE_AUTO_BED_LEVELING ] +Desugared Clang Results: +Original file has no warnings +LINUX d530db0db90.c +Macros: + CONFIG_VORTEX + CONFIG_PCI +[-UCONFIG_VORTEX -UCONFIG_PCI ] +[-DCONFIG_VORTEX=1 -UCONFIG_PCI ] +[-UCONFIG_VORTEX -DCONFIG_PCI=1 ] +[-DCONFIG_VORTEX=1 -DCONFIG_PCI=1 ] +Desugared Clang Results: +Original file has no warnings +LINUX bc8cec0dff0.c +Macros: + CONFIG_JFFS2_FS_WBUF_VERIFY +[-UCONFIG_JFFS2_FS_WBUF_VERIFY ] +Desugared Clang Results: +Original file has no warnings +LINUX/d7e9711760a SuperC failed +LINUX d7e9711760a.c +Macros: + CONFIG_QUOTA_DEBUG +[-UCONFIG_QUOTA_DEBUG ] +File Failed +LINUX 221ac329e93.c +Macros: + CONFIG_KPROBES +[-UCONFIG_KPROBES ] +Desugared Clang Results: +Original file has no warnings +LINUX 51fd36f3fad.c +Macros: + CONFIG_64BIT +[-UCONFIG_64BIT ] +Desugared Clang Results: +Original file has no warnings +LINUX 208d89843b7.c +Macros: + CONFIG_HIGHMEM +[-UCONFIG_HIGHMEM ] +Desugared Clang Results: +Original file has no warnings +LINUX ee3f34e8572.c +Macros: + SCTP_DEBUG + CONFIG_SCTP_DBG_MSG + defined +[-USCTP_DEBUG -UCONFIG_SCTP_DBG_MSG -Udefined ] +[-DSCTP_DEBUG=1 -UCONFIG_SCTP_DBG_MSG -Udefined ] +[-USCTP_DEBUG -DCONFIG_SCTP_DBG_MSG=1 -Udefined ] +[-DSCTP_DEBUG=1 -DCONFIG_SCTP_DBG_MSG=1 -Udefined ] +[-USCTP_DEBUG -UCONFIG_SCTP_DBG_MSG -Ddefined=1 ] +[-DSCTP_DEBUG=1 -UCONFIG_SCTP_DBG_MSG -Ddefined=1 ] +[-USCTP_DEBUG -DCONFIG_SCTP_DBG_MSG=1 -Ddefined=1 ] +[-DSCTP_DEBUG=1 -DCONFIG_SCTP_DBG_MSG=1 -Ddefined=1 ] +[-USCTP_DEBUG -UCONFIG_SCTP_DBG_MSG -Udefined ] +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.desugared.c:1494:3: warning: Dereference of null pointer (loaded from variable '__rt_814') [core.NullDereference] +( ( * __rt_814 ) ++ ) ; // L23:L45 + ^~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.desugared.c:1515:3: warning: Dereference of null pointer (loaded from variable '__rt_814') [core.NullDereference] +( ( * __rt_814 ) ++ ) ; // L23:L45 + ^~~~~~~~~~~~~~~~~~~ +2 warnings generated. +Original file has no warnings +LINUX 472a474c663.c +Macros: + CONFIG_SMP +[-UCONFIG_SMP ] +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/472a474c663.desugared.c:87:13: warning: Dereference of null pointer (loaded from variable '__ptr_3') [core.NullDereference] +* __ptr_3 = 'a' ; // L14 + ~~~~~~~ ^ +1 warning generated. +Original file has no warnings +LINUX 657e9649e74.c +Macros: + CONFIG_PREEMPT + CONFIG_TCP_MD5SIG +[-UCONFIG_PREEMPT -UCONFIG_TCP_MD5SIG ] +[-DCONFIG_PREEMPT=1 -UCONFIG_TCP_MD5SIG ] +[-UCONFIG_PREEMPT -DCONFIG_TCP_MD5SIG=1 ] +[-DCONFIG_PREEMPT=1 -DCONFIG_TCP_MD5SIG=1 ] +Desugared Clang Results: +Original file has no warnings +LINUX f7ab9b407b3.c +Macros: + CONFIG_TMPFS + CONFIG_SHMEM + CONFIG_DRM_I915 +[-UCONFIG_TMPFS -UCONFIG_SHMEM -UCONFIG_DRM_I915 ] +[-DCONFIG_TMPFS=1 -UCONFIG_SHMEM -UCONFIG_DRM_I915 ] +[-UCONFIG_TMPFS -DCONFIG_SHMEM=1 -UCONFIG_DRM_I915 ] +[-DCONFIG_TMPFS=1 -DCONFIG_SHMEM=1 -UCONFIG_DRM_I915 ] +[-UCONFIG_TMPFS -UCONFIG_SHMEM -DCONFIG_DRM_I915=1 ] +[-DCONFIG_TMPFS=1 -UCONFIG_SHMEM -DCONFIG_DRM_I915=1 ] +[-UCONFIG_TMPFS -DCONFIG_SHMEM=1 -DCONFIG_DRM_I915=1 ] +[-DCONFIG_TMPFS=1 -DCONFIG_SHMEM=1 -DCONFIG_DRM_I915=1 ] +[-UCONFIG_TMPFS -UCONFIG_SHMEM -UCONFIG_DRM_I915 ] +Desugared Clang Results: +Original file has no warnings +LINUX 36855dcfc98.c +Macros: + CONFIG_BF60x +[-UCONFIG_BF60x ] +10 :: Line:6 + Value stored to 'wakeup' is never read [deadcode.DeadStores] +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/36855dcfc98.desugared.c:32:2: warning: Value stored to '__wakeup_0' is never read [deadcode.DeadStores] + __wakeup_0 = 0 ; // L6 + ^ ~ +1 warning generated. +Matches: + 10 has a match! +Unmatched ids: + None! +LINUX e1fbd9210d5.c +Macros: + CONFIG_LBDAF + CONFIG_AMIGA_Z2RAM +[-UCONFIG_LBDAF -UCONFIG_AMIGA_Z2RAM ] +[-DCONFIG_LBDAF=1 -UCONFIG_AMIGA_Z2RAM ] +[-UCONFIG_LBDAF -DCONFIG_AMIGA_Z2RAM=1 ] +[-DCONFIG_LBDAF=1 -DCONFIG_AMIGA_Z2RAM=1 ] +Desugared Clang Results: +Original file has no warnings +LINUX 66517915e09.c +Macros: + CONFIG_SND_FSI_AK4642 + CONFIG_SND_FSI_DA7210 + CONFIG_I2C + CONFIG_SND_SOC_DA7210 + CONFIG_SND_SOC_AK4642 +[-UCONFIG_SND_FSI_AK4642 -UCONFIG_SND_FSI_DA7210 -UCONFIG_I2C -UCONFIG_SND_SOC_DA7210 -UCONFIG_SND_SOC_AK4642 ] +[-DCONFIG_SND_FSI_AK4642=1 -UCONFIG_SND_FSI_DA7210 -UCONFIG_I2C -UCONFIG_SND_SOC_DA7210 -UCONFIG_SND_SOC_AK4642 ] +[-UCONFIG_SND_FSI_AK4642 -DCONFIG_SND_FSI_DA7210=1 -UCONFIG_I2C -UCONFIG_SND_SOC_DA7210 -UCONFIG_SND_SOC_AK4642 ] +[-DCONFIG_SND_FSI_AK4642=1 -DCONFIG_SND_FSI_DA7210=1 -UCONFIG_I2C -UCONFIG_SND_SOC_DA7210 -UCONFIG_SND_SOC_AK4642 ] +[-UCONFIG_SND_FSI_AK4642 -UCONFIG_SND_FSI_DA7210 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -UCONFIG_SND_SOC_AK4642 ] +[-DCONFIG_SND_FSI_AK4642=1 -UCONFIG_SND_FSI_DA7210 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -UCONFIG_SND_SOC_AK4642 ] +12 :: Line:24 + Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] +[-UCONFIG_SND_FSI_AK4642 -DCONFIG_SND_FSI_DA7210=1 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -UCONFIG_SND_SOC_AK4642 ] +13 :: Line:16 + Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] +[-DCONFIG_SND_FSI_AK4642=1 -DCONFIG_SND_FSI_DA7210=1 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -UCONFIG_SND_SOC_AK4642 ] +14 :: Line:16 + Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] +15 :: Line:24 + Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] +[-UCONFIG_SND_FSI_AK4642 -UCONFIG_SND_FSI_DA7210 -UCONFIG_I2C -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] +[-DCONFIG_SND_FSI_AK4642=1 -UCONFIG_SND_FSI_DA7210 -UCONFIG_I2C -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] +[-UCONFIG_SND_FSI_AK4642 -DCONFIG_SND_FSI_DA7210=1 -UCONFIG_I2C -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] +[-DCONFIG_SND_FSI_AK4642=1 -DCONFIG_SND_FSI_DA7210=1 -UCONFIG_I2C -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] +[-UCONFIG_SND_FSI_AK4642 -UCONFIG_SND_FSI_DA7210 -DCONFIG_I2C=1 -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] +16 :: Line:16 + Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] +[-DCONFIG_SND_FSI_AK4642=1 -UCONFIG_SND_FSI_DA7210 -DCONFIG_I2C=1 -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] +17 :: Line:16 + Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] +18 :: Line:24 + Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] +[-UCONFIG_SND_FSI_AK4642 -DCONFIG_SND_FSI_DA7210=1 -DCONFIG_I2C=1 -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] +19 :: Line:16 + Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] +[-DCONFIG_SND_FSI_AK4642=1 -DCONFIG_SND_FSI_DA7210=1 -DCONFIG_I2C=1 -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] +20 :: Line:16 + Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] +21 :: Line:24 + Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] +[-UCONFIG_SND_FSI_AK4642 -UCONFIG_SND_FSI_DA7210 -UCONFIG_I2C -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] +[-DCONFIG_SND_FSI_AK4642=1 -UCONFIG_SND_FSI_DA7210 -UCONFIG_I2C -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] +[-UCONFIG_SND_FSI_AK4642 -DCONFIG_SND_FSI_DA7210=1 -UCONFIG_I2C -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] +[-DCONFIG_SND_FSI_AK4642=1 -DCONFIG_SND_FSI_DA7210=1 -UCONFIG_I2C -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] +[-UCONFIG_SND_FSI_AK4642 -UCONFIG_SND_FSI_DA7210 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] +22 :: Line:24 + Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] +[-DCONFIG_SND_FSI_AK4642=1 -UCONFIG_SND_FSI_DA7210 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] +23 :: Line:24 + Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] +[-UCONFIG_SND_FSI_AK4642 -DCONFIG_SND_FSI_DA7210=1 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] +24 :: Line:16 + Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] +25 :: Line:24 + Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] +[-DCONFIG_SND_FSI_AK4642=1 -DCONFIG_SND_FSI_DA7210=1 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] +26 :: Line:16 + Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] +27 :: Line:24 + Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] +[-UCONFIG_SND_FSI_AK4642 -UCONFIG_SND_FSI_DA7210 -UCONFIG_I2C -DCONFIG_SND_SOC_DA7210=1 -DCONFIG_SND_SOC_AK4642=1 ] +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.desugared.c:48:6: warning: Value stored to '__codec_hw_write_1' during its initialization is never read [deadcode.DeadStores] +int __codec_hw_write_1= __i2c_master_send_0 ;// L16 + ^~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.desugared.c:70:6: warning: Value stored to '__codec_hw_write_5' during its initialization is never read [deadcode.DeadStores] +int __codec_hw_write_5= __i2c_master_send_0 ;// L24 + ^~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~ +2 warnings generated. +Matches: + 12 has a match! + 13 has a match! + 14 has a match! + 15 has a match! + 16 has a match! + 17 has a match! + 18 has a match! + 19 has a match! + 20 has a match! + 21 has a match! + 22 has a match! + 23 has a match! + 24 has a match! + 25 has a match! + 26 has a match! + 27 has a match! +Unmatched ids: + None! +LINUX 7c6048b7c83.c +Macros: + defined + CONFIG_BACKLIGHT_CLASS_DEVICE + CONFIG_ACPI_VIDEO +[-Udefined -UCONFIG_BACKLIGHT_CLASS_DEVICE -UCONFIG_ACPI_VIDEO ] +[-Ddefined=1 -UCONFIG_BACKLIGHT_CLASS_DEVICE -UCONFIG_ACPI_VIDEO ] +[-Udefined -DCONFIG_BACKLIGHT_CLASS_DEVICE=1 -UCONFIG_ACPI_VIDEO ] +[-Ddefined=1 -DCONFIG_BACKLIGHT_CLASS_DEVICE=1 -UCONFIG_ACPI_VIDEO ] +[-Udefined -UCONFIG_BACKLIGHT_CLASS_DEVICE -DCONFIG_ACPI_VIDEO=1 ] +[-Ddefined=1 -UCONFIG_BACKLIGHT_CLASS_DEVICE -DCONFIG_ACPI_VIDEO=1 ] +[-Udefined -DCONFIG_BACKLIGHT_CLASS_DEVICE=1 -DCONFIG_ACPI_VIDEO=1 ] +[-Ddefined=1 -DCONFIG_BACKLIGHT_CLASS_DEVICE=1 -DCONFIG_ACPI_VIDEO=1 ] +[-Udefined -UCONFIG_BACKLIGHT_CLASS_DEVICE -UCONFIG_ACPI_VIDEO ] +Desugared Clang Results: +Original file has no warnings +LINUX f3d83e24154.c +Macros: + defined +[-Udefined ] +Desugared Clang Results: +Original file has no warnings +LINUX eb91f1d0a53.c +Macros: + defined + CONFIG_SLAB + CONFIG_NUMA + CONFIG_KMEMTRACE +[-Udefined -UCONFIG_SLAB -UCONFIG_NUMA -UCONFIG_KMEMTRACE ] +[-Ddefined=1 -UCONFIG_SLAB -UCONFIG_NUMA -UCONFIG_KMEMTRACE ] +[-Udefined -DCONFIG_SLAB=1 -UCONFIG_NUMA -UCONFIG_KMEMTRACE ] +[-Ddefined=1 -DCONFIG_SLAB=1 -UCONFIG_NUMA -UCONFIG_KMEMTRACE ] +[-Udefined -UCONFIG_SLAB -DCONFIG_NUMA=1 -UCONFIG_KMEMTRACE ] +[-Ddefined=1 -UCONFIG_SLAB -DCONFIG_NUMA=1 -UCONFIG_KMEMTRACE ] +[-Udefined -DCONFIG_SLAB=1 -DCONFIG_NUMA=1 -UCONFIG_KMEMTRACE ] +[-Ddefined=1 -DCONFIG_SLAB=1 -DCONFIG_NUMA=1 -UCONFIG_KMEMTRACE ] +[-Udefined -UCONFIG_SLAB -UCONFIG_NUMA -DCONFIG_KMEMTRACE=1 ] +[-Ddefined=1 -UCONFIG_SLAB -UCONFIG_NUMA -DCONFIG_KMEMTRACE=1 ] +[-Udefined -DCONFIG_SLAB=1 -UCONFIG_NUMA -DCONFIG_KMEMTRACE=1 ] +[-Ddefined=1 -DCONFIG_SLAB=1 -UCONFIG_NUMA -DCONFIG_KMEMTRACE=1 ] +[-Udefined -UCONFIG_SLAB -DCONFIG_NUMA=1 -DCONFIG_KMEMTRACE=1 ] +[-Ddefined=1 -UCONFIG_SLAB -DCONFIG_NUMA=1 -DCONFIG_KMEMTRACE=1 ] +[-Udefined -DCONFIG_SLAB=1 -DCONFIG_NUMA=1 -DCONFIG_KMEMTRACE=1 ] +[-Ddefined=1 -DCONFIG_SLAB=1 -DCONFIG_NUMA=1 -DCONFIG_KMEMTRACE=1 ] +Desugared Clang Results: +Original file has no warnings +LINUX 1f758a4341a.c +Macros: + CONFIG_ZONE_DMA + CONFIG_EP93XX_ETH +[-UCONFIG_ZONE_DMA -UCONFIG_EP93XX_ETH ] +[-DCONFIG_ZONE_DMA=1 -UCONFIG_EP93XX_ETH ] +[-UCONFIG_ZONE_DMA -DCONFIG_EP93XX_ETH=1 ] +[-DCONFIG_ZONE_DMA=1 -DCONFIG_EP93XX_ETH=1 ] +Desugared Clang Results: +Original file has no warnings +LINUX 0988c4c7fb5.c +Macros: + CONFIG_VLAN_8021Q + CONFIG_RPS +[-UCONFIG_VLAN_8021Q -UCONFIG_RPS ] +[-DCONFIG_VLAN_8021Q=1 -UCONFIG_RPS ] +[-UCONFIG_VLAN_8021Q -DCONFIG_RPS=1 ] +[-DCONFIG_VLAN_8021Q=1 -DCONFIG_RPS=1 ] +Desugared Clang Results: +Original file has no warnings +LINUX 242f1a34377.c +Macros: + CONFIG_CRYPTO_BLKCIPHER + CONFIG_CRYPTO_TEST +[-UCONFIG_CRYPTO_BLKCIPHER -UCONFIG_CRYPTO_TEST ] +[-DCONFIG_CRYPTO_BLKCIPHER=1 -UCONFIG_CRYPTO_TEST ] +[-UCONFIG_CRYPTO_BLKCIPHER -DCONFIG_CRYPTO_TEST=1 ] +[-DCONFIG_CRYPTO_BLKCIPHER=1 -DCONFIG_CRYPTO_TEST=1 ] +Desugared Clang Results: +Original file has no warnings +LINUX 2f02c15a5d9.c +Macros: + CONFIG_SSB_DRIVER_EXTIF + CONFIG_BCM47XX +[-UCONFIG_SSB_DRIVER_EXTIF -UCONFIG_BCM47XX ] +[-DCONFIG_SSB_DRIVER_EXTIF=1 -UCONFIG_BCM47XX ] +[-UCONFIG_SSB_DRIVER_EXTIF -DCONFIG_BCM47XX=1 ] +[-DCONFIG_SSB_DRIVER_EXTIF=1 -DCONFIG_BCM47XX=1 ] +Desugared Clang Results: +Original file has no warnings +LINUX 8c8296223f3.c +Macros: + CONFIG_PROC_PAGE_MONITOR +[-UCONFIG_PROC_PAGE_MONITOR ] +Desugared Clang Results: +Original file has no warnings +LINUX 68bb91baa0.c +Macros: + CONFIG_I2C_DESIGNWARE_PLATFORM + CONFIG_I2C_DESIGNWARE_PCI + defined +[-UCONFIG_I2C_DESIGNWARE_PLATFORM -UCONFIG_I2C_DESIGNWARE_PCI -Udefined ] +[-DCONFIG_I2C_DESIGNWARE_PLATFORM=1 -UCONFIG_I2C_DESIGNWARE_PCI -Udefined ] +[-UCONFIG_I2C_DESIGNWARE_PLATFORM -DCONFIG_I2C_DESIGNWARE_PCI=1 -Udefined ] +[-DCONFIG_I2C_DESIGNWARE_PLATFORM=1 -DCONFIG_I2C_DESIGNWARE_PCI=1 -Udefined ] +[-UCONFIG_I2C_DESIGNWARE_PLATFORM -UCONFIG_I2C_DESIGNWARE_PCI -Ddefined=1 ] +[-DCONFIG_I2C_DESIGNWARE_PLATFORM=1 -UCONFIG_I2C_DESIGNWARE_PCI -Ddefined=1 ] +[-UCONFIG_I2C_DESIGNWARE_PLATFORM -DCONFIG_I2C_DESIGNWARE_PCI=1 -Ddefined=1 ] +[-DCONFIG_I2C_DESIGNWARE_PLATFORM=1 -DCONFIG_I2C_DESIGNWARE_PCI=1 -Ddefined=1 ] +[-UCONFIG_I2C_DESIGNWARE_PLATFORM -UCONFIG_I2C_DESIGNWARE_PCI -Udefined ] +Desugared Clang Results: +Original file has no warnings +LINUX 1c17e4d4437.c +Macros: + CONFIG_RCU_CPU_STALL_INFO + CONFIG_RCU_FAST_NO_HZ +[-UCONFIG_RCU_CPU_STALL_INFO -UCONFIG_RCU_FAST_NO_HZ ] +[-DCONFIG_RCU_CPU_STALL_INFO=1 -UCONFIG_RCU_FAST_NO_HZ ] +[-UCONFIG_RCU_CPU_STALL_INFO -DCONFIG_RCU_FAST_NO_HZ=1 ] +[-DCONFIG_RCU_CPU_STALL_INFO=1 -DCONFIG_RCU_FAST_NO_HZ=1 ] +Desugared Clang Results: +Original file has no warnings +LINUX f48ec1d7885.c +Macros: + CONFIG_BLK_CGROUP + CONFIG_IOSCHED_CFQ +[-UCONFIG_BLK_CGROUP -UCONFIG_IOSCHED_CFQ ] +[-DCONFIG_BLK_CGROUP=1 -UCONFIG_IOSCHED_CFQ ] +[-UCONFIG_BLK_CGROUP -DCONFIG_IOSCHED_CFQ=1 ] +[-DCONFIG_BLK_CGROUP=1 -DCONFIG_IOSCHED_CFQ=1 ] +Desugared Clang Results: +Original file has no warnings +LINUX 0dc77b6dabe.c +Macros: + CONFIG_ANDROID + CONFIG_SYSFS + CONFIG_EXTCON + defined +[-UCONFIG_ANDROID -UCONFIG_SYSFS -UCONFIG_EXTCON -Udefined ] +[-DCONFIG_ANDROID=1 -UCONFIG_SYSFS -UCONFIG_EXTCON -Udefined ] +[-UCONFIG_ANDROID -DCONFIG_SYSFS=1 -UCONFIG_EXTCON -Udefined ] +[-DCONFIG_ANDROID=1 -DCONFIG_SYSFS=1 -UCONFIG_EXTCON -Udefined ] +[-UCONFIG_ANDROID -UCONFIG_SYSFS -DCONFIG_EXTCON=1 -Udefined ] +[-DCONFIG_ANDROID=1 -UCONFIG_SYSFS -DCONFIG_EXTCON=1 -Udefined ] +[-UCONFIG_ANDROID -DCONFIG_SYSFS=1 -DCONFIG_EXTCON=1 -Udefined ] +[-DCONFIG_ANDROID=1 -DCONFIG_SYSFS=1 -DCONFIG_EXTCON=1 -Udefined ] +[-UCONFIG_ANDROID -UCONFIG_SYSFS -UCONFIG_EXTCON -Ddefined=1 ] +[-DCONFIG_ANDROID=1 -UCONFIG_SYSFS -UCONFIG_EXTCON -Ddefined=1 ] +[-UCONFIG_ANDROID -DCONFIG_SYSFS=1 -UCONFIG_EXTCON -Ddefined=1 ] +[-DCONFIG_ANDROID=1 -DCONFIG_SYSFS=1 -UCONFIG_EXTCON -Ddefined=1 ] +[-UCONFIG_ANDROID -UCONFIG_SYSFS -DCONFIG_EXTCON=1 -Ddefined=1 ] +[-DCONFIG_ANDROID=1 -UCONFIG_SYSFS -DCONFIG_EXTCON=1 -Ddefined=1 ] +[-UCONFIG_ANDROID -DCONFIG_SYSFS=1 -DCONFIG_EXTCON=1 -Ddefined=1 ] +[-DCONFIG_ANDROID=1 -DCONFIG_SYSFS=1 -DCONFIG_EXTCON=1 -Ddefined=1 ] +Desugared Clang Results: +Original file has no warnings +LINUX 6515e48932c.c +Macros: + defined + CONFIG_MACH_OMAP_H4 +[-Udefined -UCONFIG_MACH_OMAP_H4 ] +[-Ddefined=1 -UCONFIG_MACH_OMAP_H4 ] +[-Udefined -DCONFIG_MACH_OMAP_H4=1 ] +[-Ddefined=1 -DCONFIG_MACH_OMAP_H4=1 ] +Desugared Clang Results: +Original file has no warnings +LINUX 91ea8207168.c +Macros: + CONFIG_NODES_SHIFT + CONFIG_DISCONTIGMEM + CONFIG_PROC_PAGE_MONITOR +[-UCONFIG_NODES_SHIFT -UCONFIG_DISCONTIGMEM -UCONFIG_PROC_PAGE_MONITOR ] +[-DCONFIG_NODES_SHIFT=1 -UCONFIG_DISCONTIGMEM -UCONFIG_PROC_PAGE_MONITOR ] +[-UCONFIG_NODES_SHIFT -DCONFIG_DISCONTIGMEM=1 -UCONFIG_PROC_PAGE_MONITOR ] +[-DCONFIG_NODES_SHIFT=1 -DCONFIG_DISCONTIGMEM=1 -UCONFIG_PROC_PAGE_MONITOR ] +[-UCONFIG_NODES_SHIFT -UCONFIG_DISCONTIGMEM -DCONFIG_PROC_PAGE_MONITOR=1 ] +[-DCONFIG_NODES_SHIFT=1 -UCONFIG_DISCONTIGMEM -DCONFIG_PROC_PAGE_MONITOR=1 ] +[-UCONFIG_NODES_SHIFT -DCONFIG_DISCONTIGMEM=1 -DCONFIG_PROC_PAGE_MONITOR=1 ] +[-DCONFIG_NODES_SHIFT=1 -DCONFIG_DISCONTIGMEM=1 -DCONFIG_PROC_PAGE_MONITOR=1 ] +[-UCONFIG_NODES_SHIFT -UCONFIG_DISCONTIGMEM -UCONFIG_PROC_PAGE_MONITOR ] +Desugared Clang Results: +Original file has no warnings +LINUX 6e2b75740be.c +Macros: + defined +[-Udefined ] +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.c:95:9: warning: Potential leak of memory pointed to by '__ptr_11' [unix.Malloc] +if ( ! __ptr_11 )// L39 + ^~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.c:121:10: warning: Value stored to '__dest_12' during its initialization is never read [deadcode.DeadStores] +void * (__dest_12)= ( __mod_9 [ 1 ] );// L46 + ^~~~~~~~~ ~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.c:146:1: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] +free (( __mod_9 [ 1 ] )) ; // L60 +^~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.c:153:1: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] +free (( __mod_9 [ 0 ] )) ; // L63 +^~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.c:182:9: warning: Potential leak of memory pointed to by '__mod_9' [unix.Malloc] +return __err_10 ;// L69 + ^~~~~~~~ +5 warnings generated. +Original file has no warnings +LINUX/76baeebf7df SuperC failed +LINUX 76baeebf7df.c +Macros: + CONFIG_X86_32 + CONFIG_NUMA + CONFIG_DEBUG_PER_CPU_MAPS + CONFIG_PCI + CONFIG_X86_64 +[-UCONFIG_X86_32 -UCONFIG_NUMA -UCONFIG_DEBUG_PER_CPU_MAPS -UCONFIG_PCI -UCONFIG_X86_64 ] +[-DCONFIG_X86_32=1 -UCONFIG_NUMA -UCONFIG_DEBUG_PER_CPU_MAPS -UCONFIG_PCI -UCONFIG_X86_64 ] +[-UCONFIG_X86_32 -DCONFIG_NUMA=1 -UCONFIG_DEBUG_PER_CPU_MAPS -UCONFIG_PCI -UCONFIG_X86_64 ] +[-DCONFIG_X86_32=1 -DCONFIG_NUMA=1 -UCONFIG_DEBUG_PER_CPU_MAPS -UCONFIG_PCI -UCONFIG_X86_64 ] +[-UCONFIG_X86_32 -UCONFIG_NUMA -DCONFIG_DEBUG_PER_CPU_MAPS=1 -UCONFIG_PCI -UCONFIG_X86_64 ] +[-DCONFIG_X86_32=1 -UCONFIG_NUMA -DCONFIG_DEBUG_PER_CPU_MAPS=1 -UCONFIG_PCI -UCONFIG_X86_64 ] +[-UCONFIG_X86_32 -DCONFIG_NUMA=1 -DCONFIG_DEBUG_PER_CPU_MAPS=1 -UCONFIG_PCI -UCONFIG_X86_64 ] +[-DCONFIG_X86_32=1 -DCONFIG_NUMA=1 -DCONFIG_DEBUG_PER_CPU_MAPS=1 -UCONFIG_PCI -UCONFIG_X86_64 ] +[-UCONFIG_X86_32 -UCONFIG_NUMA -UCONFIG_DEBUG_PER_CPU_MAPS -DCONFIG_PCI=1 -UCONFIG_X86_64 ] +[-DCONFIG_X86_32=1 -UCONFIG_NUMA -UCONFIG_DEBUG_PER_CPU_MAPS -DCONFIG_PCI=1 -UCONFIG_X86_64 ] +[-UCONFIG_X86_32 -DCONFIG_NUMA=1 -UCONFIG_DEBUG_PER_CPU_MAPS -DCONFIG_PCI=1 -UCONFIG_X86_64 ] +[-DCONFIG_X86_32=1 -DCONFIG_NUMA=1 -UCONFIG_DEBUG_PER_CPU_MAPS -DCONFIG_PCI=1 -UCONFIG_X86_64 ] +[-UCONFIG_X86_32 -UCONFIG_NUMA -DCONFIG_DEBUG_PER_CPU_MAPS=1 -DCONFIG_PCI=1 -UCONFIG_X86_64 ] +[-DCONFIG_X86_32=1 -UCONFIG_NUMA -DCONFIG_DEBUG_PER_CPU_MAPS=1 -DCONFIG_PCI=1 -UCONFIG_X86_64 ] +[-UCONFIG_X86_32 -DCONFIG_NUMA=1 -DCONFIG_DEBUG_PER_CPU_MAPS=1 -DCONFIG_PCI=1 -UCONFIG_X86_64 ] +[-DCONFIG_X86_32=1 -DCONFIG_NUMA=1 -DCONFIG_DEBUG_PER_CPU_MAPS=1 -DCONFIG_PCI=1 -UCONFIG_X86_64 ] +[-UCONFIG_X86_32 -UCONFIG_NUMA -UCONFIG_DEBUG_PER_CPU_MAPS -UCONFIG_PCI -DCONFIG_X86_64=1 ] +[-DCONFIG_X86_32=1 -UCONFIG_NUMA -UCONFIG_DEBUG_PER_CPU_MAPS -UCONFIG_PCI -DCONFIG_X86_64=1 ] +[-UCONFIG_X86_32 -DCONFIG_NUMA=1 -UCONFIG_DEBUG_PER_CPU_MAPS -UCONFIG_PCI -DCONFIG_X86_64=1 ] +[-DCONFIG_X86_32=1 -DCONFIG_NUMA=1 -UCONFIG_DEBUG_PER_CPU_MAPS -UCONFIG_PCI -DCONFIG_X86_64=1 ] +[-UCONFIG_X86_32 -UCONFIG_NUMA -DCONFIG_DEBUG_PER_CPU_MAPS=1 -UCONFIG_PCI -DCONFIG_X86_64=1 ] +[-DCONFIG_X86_32=1 -UCONFIG_NUMA -DCONFIG_DEBUG_PER_CPU_MAPS=1 -UCONFIG_PCI -DCONFIG_X86_64=1 ] +[-UCONFIG_X86_32 -DCONFIG_NUMA=1 -DCONFIG_DEBUG_PER_CPU_MAPS=1 -UCONFIG_PCI -DCONFIG_X86_64=1 ] +[-DCONFIG_X86_32=1 -DCONFIG_NUMA=1 -DCONFIG_DEBUG_PER_CPU_MAPS=1 -UCONFIG_PCI -DCONFIG_X86_64=1 ] +[-UCONFIG_X86_32 -UCONFIG_NUMA -UCONFIG_DEBUG_PER_CPU_MAPS -DCONFIG_PCI=1 -DCONFIG_X86_64=1 ] +File Failed +LINUX 218ad12f42e.c +Macros: + CONFIG_NUMA +[-UCONFIG_NUMA ] +Desugared Clang Results: +Original file has no warnings +LINUX ae249b5fa27.c +Macros: + CONFIG_DISCONTIGMEM + CONFIG_PROC_PAGE_MONITOR +[-UCONFIG_DISCONTIGMEM -UCONFIG_PROC_PAGE_MONITOR ] +[-DCONFIG_DISCONTIGMEM=1 -UCONFIG_PROC_PAGE_MONITOR ] +[-UCONFIG_DISCONTIGMEM -DCONFIG_PROC_PAGE_MONITOR=1 ] +[-DCONFIG_DISCONTIGMEM=1 -DCONFIG_PROC_PAGE_MONITOR=1 ] +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.desugared.c:283:15: warning: The left operand of '!=' is a garbage value [core.UndefinedBinaryOperatorResult] +( ( __r_236 != 0xff ) ? ( void ) ( 0 ) : ____assert_fail_4 ("r != 0xff","/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.c",19, __PRETTY_FUNCTION__ ) ) ; // L19:L91 + ~~~~~~~ ^ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.desugared.c:288:1: warning: Undefined or garbage value returned to caller [core.uninitialized.UndefReturn] +return ( int ) __r_236 ;// L21 +^~~~~~~~~~~~~~~~~~~~~~~~~ +2 warnings generated. +Original file has no warnings +LINUX e67bc51e574.c +Macros: + CONFIG_TRACING +[-UCONFIG_TRACING ] +Desugared Clang Results: +Original file has no warnings +LINUX c708c57e247.c +Macros: + CONFIG_S390_PRNG +[-UCONFIG_S390_PRNG ] +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/c708c57e247.desugared.c:74:41: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] +* ( ( ____u64_0 * ) __parm_block_1 ) ^= * ( ( ____u64_0 * ) __buf_3 + __i_4 * 8 ) ; // L18 + ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +1 warning generated. +Original file has no warnings +LINUX 809e660f438.c +Macros: + CONFIG_ARM_LPAE +[-UCONFIG_ARM_LPAE ] +Desugared Clang Results: +Original file has no warnings +LINUX 0f8f8094d28.c +Macros: + CONFIG_FORCE_MAX_ZONEORDER + defined + CONFIG_SLAB + CONFIG_SLOB + CONFIG_LOCKDEP +[-UCONFIG_FORCE_MAX_ZONEORDER -Udefined -UCONFIG_SLAB -UCONFIG_SLOB -UCONFIG_LOCKDEP ] +[-DCONFIG_FORCE_MAX_ZONEORDER=1 -Udefined -UCONFIG_SLAB -UCONFIG_SLOB -UCONFIG_LOCKDEP ] +[-UCONFIG_FORCE_MAX_ZONEORDER -Ddefined=1 -UCONFIG_SLAB -UCONFIG_SLOB -UCONFIG_LOCKDEP ] +[-DCONFIG_FORCE_MAX_ZONEORDER=1 -Ddefined=1 -UCONFIG_SLAB -UCONFIG_SLOB -UCONFIG_LOCKDEP ] +[-UCONFIG_FORCE_MAX_ZONEORDER -Udefined -DCONFIG_SLAB=1 -UCONFIG_SLOB -UCONFIG_LOCKDEP ] +[-DCONFIG_FORCE_MAX_ZONEORDER=1 -Udefined -DCONFIG_SLAB=1 -UCONFIG_SLOB -UCONFIG_LOCKDEP ] +[-UCONFIG_FORCE_MAX_ZONEORDER -Ddefined=1 -DCONFIG_SLAB=1 -UCONFIG_SLOB -UCONFIG_LOCKDEP ] +[-DCONFIG_FORCE_MAX_ZONEORDER=1 -Ddefined=1 -DCONFIG_SLAB=1 -UCONFIG_SLOB -UCONFIG_LOCKDEP ] +[-UCONFIG_FORCE_MAX_ZONEORDER -Udefined -UCONFIG_SLAB -DCONFIG_SLOB=1 -UCONFIG_LOCKDEP ] +[-DCONFIG_FORCE_MAX_ZONEORDER=1 -Udefined -UCONFIG_SLAB -DCONFIG_SLOB=1 -UCONFIG_LOCKDEP ] +[-UCONFIG_FORCE_MAX_ZONEORDER -Ddefined=1 -UCONFIG_SLAB -DCONFIG_SLOB=1 -UCONFIG_LOCKDEP ] +[-DCONFIG_FORCE_MAX_ZONEORDER=1 -Ddefined=1 -UCONFIG_SLAB -DCONFIG_SLOB=1 -UCONFIG_LOCKDEP ] +[-UCONFIG_FORCE_MAX_ZONEORDER -Udefined -DCONFIG_SLAB=1 -DCONFIG_SLOB=1 -UCONFIG_LOCKDEP ] +[-DCONFIG_FORCE_MAX_ZONEORDER=1 -Udefined -DCONFIG_SLAB=1 -DCONFIG_SLOB=1 -UCONFIG_LOCKDEP ] +[-UCONFIG_FORCE_MAX_ZONEORDER -Ddefined=1 -DCONFIG_SLAB=1 -DCONFIG_SLOB=1 -UCONFIG_LOCKDEP ] +[-DCONFIG_FORCE_MAX_ZONEORDER=1 -Ddefined=1 -DCONFIG_SLAB=1 -DCONFIG_SLOB=1 -UCONFIG_LOCKDEP ] +[-UCONFIG_FORCE_MAX_ZONEORDER -Udefined -UCONFIG_SLAB -UCONFIG_SLOB -DCONFIG_LOCKDEP=1 ] +[-DCONFIG_FORCE_MAX_ZONEORDER=1 -Udefined -UCONFIG_SLAB -UCONFIG_SLOB -DCONFIG_LOCKDEP=1 ] +[-UCONFIG_FORCE_MAX_ZONEORDER -Ddefined=1 -UCONFIG_SLAB -UCONFIG_SLOB -DCONFIG_LOCKDEP=1 ] +[-DCONFIG_FORCE_MAX_ZONEORDER=1 -Ddefined=1 -UCONFIG_SLAB -UCONFIG_SLOB -DCONFIG_LOCKDEP=1 ] +[-UCONFIG_FORCE_MAX_ZONEORDER -Udefined -DCONFIG_SLAB=1 -UCONFIG_SLOB -DCONFIG_LOCKDEP=1 ] +[-DCONFIG_FORCE_MAX_ZONEORDER=1 -Udefined -DCONFIG_SLAB=1 -UCONFIG_SLOB -DCONFIG_LOCKDEP=1 ] +[-UCONFIG_FORCE_MAX_ZONEORDER -Ddefined=1 -DCONFIG_SLAB=1 -UCONFIG_SLOB -DCONFIG_LOCKDEP=1 ] +[-DCONFIG_FORCE_MAX_ZONEORDER=1 -Ddefined=1 -DCONFIG_SLAB=1 -UCONFIG_SLOB -DCONFIG_LOCKDEP=1 ] +[-UCONFIG_FORCE_MAX_ZONEORDER -Udefined -UCONFIG_SLAB -DCONFIG_SLOB=1 -DCONFIG_LOCKDEP=1 ] +Desugared Clang Results: +Original file has no warnings +LINUX 6252547b8a7.c +Macros: + CONFIG_TWL4030_CORE + CONFIG_IRQ_DOMAIN + CONFIG_OF_IRQ +[-UCONFIG_TWL4030_CORE -UCONFIG_IRQ_DOMAIN -UCONFIG_OF_IRQ ] +[-DCONFIG_TWL4030_CORE=1 -UCONFIG_IRQ_DOMAIN -UCONFIG_OF_IRQ ] +30 :: Line:12 + Value stored to 'irq' during its initialization is never read [deadcode.DeadStores] +31 :: Line:12 + Dereference of null pointer (loaded from variable 'ops') [core.NullDereference] +[-UCONFIG_TWL4030_CORE -DCONFIG_IRQ_DOMAIN=1 -UCONFIG_OF_IRQ ] +32 :: Line:12 + Value stored to 'irq' during its initialization is never read [deadcode.DeadStores] +[-DCONFIG_TWL4030_CORE=1 -DCONFIG_IRQ_DOMAIN=1 -UCONFIG_OF_IRQ ] +33 :: Line:12 + Value stored to 'irq' during its initialization is never read [deadcode.DeadStores] +34 :: Line:12 + Dereference of null pointer (loaded from variable 'ops') [core.NullDereference] +[-UCONFIG_TWL4030_CORE -UCONFIG_IRQ_DOMAIN -DCONFIG_OF_IRQ=1 ] +[-DCONFIG_TWL4030_CORE=1 -UCONFIG_IRQ_DOMAIN -DCONFIG_OF_IRQ=1 ] +35 :: Line:12 + Value stored to 'irq' during its initialization is never read [deadcode.DeadStores] +[-UCONFIG_TWL4030_CORE -DCONFIG_IRQ_DOMAIN=1 -DCONFIG_OF_IRQ=1 ] +36 :: Line:12 + Value stored to 'irq' during its initialization is never read [deadcode.DeadStores] +[-DCONFIG_TWL4030_CORE=1 -DCONFIG_IRQ_DOMAIN=1 -DCONFIG_OF_IRQ=1 ] +37 :: Line:12 + Value stored to 'irq' during its initialization is never read [deadcode.DeadStores] +[-UCONFIG_TWL4030_CORE -UCONFIG_IRQ_DOMAIN -UCONFIG_OF_IRQ ] +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.desugared.c:49:6: warning: Value stored to '__irq_2' during its initialization is never read [deadcode.DeadStores] +int __irq_2= * __ops_1 ;// L12 + ^~~~~~~ ~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.desugared.c:49:15: warning: Dereference of null pointer (loaded from variable '__ops_1') [core.NullDereference] +int __irq_2= * __ops_1 ;// L12 + ^~~~~~~~~~ +2 warnings generated. +Matches: + 30 has a match! + 31 has a match! + 32 has a match! + 33 has a match! + 34 has a match! + 35 has a match! + 36 has a match! + 37 has a match! +Unmatched ids: + None! +LINUX d6c7e113959.c +Macros: + CONFIG_REGULATOR_MAX8660 + CONFIG_OF +[-UCONFIG_REGULATOR_MAX8660 -UCONFIG_OF ] +[-DCONFIG_REGULATOR_MAX8660=1 -UCONFIG_OF ] +[-UCONFIG_REGULATOR_MAX8660 -DCONFIG_OF=1 ] +[-DCONFIG_REGULATOR_MAX8660=1 -DCONFIG_OF=1 ] +Desugared Clang Results: +Original file has no warnings +LINUX e39363a9def.c +Macros: + CONFIG_NETPOLL + CONFIG_IPV6 +[-UCONFIG_NETPOLL -UCONFIG_IPV6 ] +[-DCONFIG_NETPOLL=1 -UCONFIG_IPV6 ] +40 :: Line:17 + Undefined or garbage value returned to caller [core.uninitialized.UndefReturn] +[-UCONFIG_NETPOLL -DCONFIG_IPV6=1 ] +[-DCONFIG_NETPOLL=1 -DCONFIG_IPV6=1 ] +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.desugared.c:77:1: warning: Undefined or garbage value returned to caller [core.uninitialized.UndefReturn] +return __err_1 ;// L17 +^~~~~~~~~~~~~~~ +1 warning generated. +Matches: + 40 has a match! +Unmatched ids: + None! +LINUX 30e053248da.c +Macros: + CONFIG_SECURITY +[-UCONFIG_SECURITY ] +42 :: Line:31 + Assigned value is garbage or undefined [core.uninitialized.Assign] +43 :: Line:31 + Value stored to 'x' during its initialization is never read [deadcode.DeadStores] +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.desugared.c:111:7: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] +if ( __error_8 )// L26 + ^~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.desugared.c:124:1: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] +int __x_9= * __length_7 ;// L31 +^~~~~~~~~~ ~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.desugared.c:124:6: warning: Value stored to '__x_9' during its initialization is never read [deadcode.DeadStores] +int __x_9= * __length_7 ;// L31 + ^~~~~ ~~~~~~~~~~~~~ +3 warnings generated. +Matches: + 43 has a match! +Unmatched ids: + 42 +LINUX d549f55f2e1.c +Macros: + CONFIG_VLAN_8021Q + defined +[-UCONFIG_VLAN_8021Q -Udefined ] +[-DCONFIG_VLAN_8021Q=1 -Udefined ] +[-UCONFIG_VLAN_8021Q -Ddefined=1 ] +[-DCONFIG_VLAN_8021Q=1 -Ddefined=1 ] +Desugared Clang Results: +Original file has no warnings +LINUX 7acf6cd80b2.c +Macros: + CONFIG_DEVPTS_MULTIPLE_INSTANCES + CONFIG_UNIX98_PTYS +[-UCONFIG_DEVPTS_MULTIPLE_INSTANCES -UCONFIG_UNIX98_PTYS ] +[-DCONFIG_DEVPTS_MULTIPLE_INSTANCES=1 -UCONFIG_UNIX98_PTYS ] +45 :: Line:8 + Value stored to 'x' during its initialization is never read [deadcode.DeadStores] +[-UCONFIG_DEVPTS_MULTIPLE_INSTANCES -DCONFIG_UNIX98_PTYS=1 ] +46 :: Line:39 + Value stored to 'driver_data' is never read [deadcode.DeadStores] +47 :: Line:44 + 1st function call argument is an uninitialized value [core.CallAndMessage] +[-DCONFIG_DEVPTS_MULTIPLE_INSTANCES=1 -DCONFIG_UNIX98_PTYS=1 ] +48 :: Line:8 + Value stored to 'x' during its initialization is never read [deadcode.DeadStores] +49 :: Line:39 + Value stored to 'driver_data' is never read [deadcode.DeadStores] +50 :: Line:44 + 1st function call argument is an uninitialized value [core.CallAndMessage] +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.desugared.c:77:6: warning: Value stored to '__x_3' during its initialization is never read [deadcode.DeadStores] +int __x_3= * __inode_2 ;// L8 + ^~~~~ ~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.desugared.c:170:2: warning: Value stored to '__driver_data_15' is never read [deadcode.DeadStores] + __driver_data_15 = & __some_int_1 ; // L39 + ^ ~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.desugared.c:175:2: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] + __tty_release_14 ( __driver_data_15 ) ; // L44 + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +3 warnings generated. +Matches: + 45 has a match! + 46 has a match! + 47 has a match! + 48 has a match! + 49 has a match! + 50 has a match! +Unmatched ids: + None! +LINUX 60e233a5660.c +Macros: + defined +[-Udefined ] +Desugared Clang Results: +Original file has no warnings +LINUX 63878acfafb.c +Macros: + CONFIG_ARCH_OMAP3 + CONFIG_PM + defined +[-UCONFIG_ARCH_OMAP3 -UCONFIG_PM -Udefined ] +[-DCONFIG_ARCH_OMAP3=1 -UCONFIG_PM -Udefined ] +[-UCONFIG_ARCH_OMAP3 -DCONFIG_PM=1 -Udefined ] +[-DCONFIG_ARCH_OMAP3=1 -DCONFIG_PM=1 -Udefined ] +[-UCONFIG_ARCH_OMAP3 -UCONFIG_PM -Ddefined=1 ] +[-DCONFIG_ARCH_OMAP3=1 -UCONFIG_PM -Ddefined=1 ] +[-UCONFIG_ARCH_OMAP3 -DCONFIG_PM=1 -Ddefined=1 ] +[-DCONFIG_ARCH_OMAP3=1 -DCONFIG_PM=1 -Ddefined=1 ] +[-UCONFIG_ARCH_OMAP3 -UCONFIG_PM -Udefined ] +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.desugared.c:159:1: warning: Undefined or garbage value returned to caller [core.uninitialized.UndefReturn] +return __v_16 ;// L40 +^~~~~~~~~~~~~~ +1 warning generated. +Original file has no warnings +BUSYBOX 5275b1e49f6.c +Macros: + CONFIG_FEATURE_INSMOD_VERSION_CHECKING +[-UCONFIG_FEATURE_INSMOD_VERSION_CHECKING ] +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1135:2: warning: Value stored to '__m_has_modinfo_967' is never read [deadcode.DeadStores] + __m_has_modinfo_967 = 0 ; // L16 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1141:2: warning: Value stored to '__m_has_modinfo_967' is never read [deadcode.DeadStores] + __m_has_modinfo_967 = 1 ; // L18 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1149:2: warning: Value stored to '__m_has_modinfo_967' is never read [deadcode.DeadStores] + __m_has_modinfo_967 = 0 ; // L16 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1155:2: warning: Value stored to '__m_has_modinfo_967' is never read [deadcode.DeadStores] + __m_has_modinfo_967 = 1 ; // L18 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1159:2: warning: Value stored to '__k_crcs_970' is never read [deadcode.DeadStores] + __k_crcs_970 = 0 ; // L21 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1170:2: warning: Value stored to '__k_crcs_970' is never read [deadcode.DeadStores] + __k_crcs_970 = __someInt_969 ; // L25 + ^ ~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1204:2: warning: Value stored to '__k_crcs_970' is never read [deadcode.DeadStores] + __k_crcs_970 = __someInt_969 ; // L25 + ^ ~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1265:2: warning: Value stored to '__m_has_modinfo_967' is never read [deadcode.DeadStores] + __m_has_modinfo_967 = 0 ; // L16 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1271:2: warning: Value stored to '__m_has_modinfo_967' is never read [deadcode.DeadStores] + __m_has_modinfo_967 = 1 ; // L18 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1279:2: warning: Value stored to '__m_has_modinfo_967' is never read [deadcode.DeadStores] + __m_has_modinfo_967 = 0 ; // L16 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1285:2: warning: Value stored to '__m_has_modinfo_967' is never read [deadcode.DeadStores] + __m_has_modinfo_967 = 1 ; // L18 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1289:2: warning: Value stored to '__k_crcs_970' is never read [deadcode.DeadStores] + __k_crcs_970 = 0 ; // L21 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1300:2: warning: Value stored to '__k_crcs_970' is never read [deadcode.DeadStores] + __k_crcs_970 = __someInt_969 ; // L25 + ^ ~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1334:2: warning: Value stored to '__k_crcs_970' is never read [deadcode.DeadStores] + __k_crcs_970 = __someInt_969 ; // L25 + ^ ~~~~~~~~~~~~~ +14 warnings generated. +Original file has no warnings +BUSYBOX 5cd6461b6fb.c +Macros: + CONFIG_FEATURE_HTTPD_CGI + CONFIG_LFS + CONFIG_FEATURE_HTTPD_BASIC_AUTH +[-UCONFIG_FEATURE_HTTPD_CGI -UCONFIG_LFS -UCONFIG_FEATURE_HTTPD_BASIC_AUTH ] +[-DCONFIG_FEATURE_HTTPD_CGI=1 -UCONFIG_LFS -UCONFIG_FEATURE_HTTPD_BASIC_AUTH ] +[-UCONFIG_FEATURE_HTTPD_CGI -DCONFIG_LFS=1 -UCONFIG_FEATURE_HTTPD_BASIC_AUTH ] +[-DCONFIG_FEATURE_HTTPD_CGI=1 -DCONFIG_LFS=1 -UCONFIG_FEATURE_HTTPD_BASIC_AUTH ] +[-UCONFIG_FEATURE_HTTPD_CGI -UCONFIG_LFS -DCONFIG_FEATURE_HTTPD_BASIC_AUTH=1 ] +[-DCONFIG_FEATURE_HTTPD_CGI=1 -UCONFIG_LFS -DCONFIG_FEATURE_HTTPD_BASIC_AUTH=1 ] +[-UCONFIG_FEATURE_HTTPD_CGI -DCONFIG_LFS=1 -DCONFIG_FEATURE_HTTPD_BASIC_AUTH=1 ] +[-DCONFIG_FEATURE_HTTPD_CGI=1 -DCONFIG_LFS=1 -DCONFIG_FEATURE_HTTPD_BASIC_AUTH=1 ] +[-UCONFIG_FEATURE_HTTPD_CGI -UCONFIG_LFS -UCONFIG_FEATURE_HTTPD_BASIC_AUTH ] +Desugared Clang Results: +Original file has no warnings +BUSYBOX 1b487ea8a69.c +Macros: + ENABLE_SELINUX + ENABLE_FEATURE_STAT_FORMAT +[-UENABLE_SELINUX -UENABLE_FEATURE_STAT_FORMAT ] +[-DENABLE_SELINUX=1 -UENABLE_FEATURE_STAT_FORMAT ] +54 :: Line:14 + Dereference of null pointer (loaded from variable 'scontext') [core.NullDereference] +[-UENABLE_SELINUX -DENABLE_FEATURE_STAT_FORMAT=1 ] +[-DENABLE_SELINUX=1 -DENABLE_FEATURE_STAT_FORMAT=1 ] +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.c:2937:26: warning: Dereference of null pointer (loaded from variable '__scontext_2038') [core.NullDereference] + __printf_421 (" %lc\n",* __scontext_2038 ) ; // L14 + ^~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.c:2994:26: warning: Dereference of null pointer (loaded from variable '__scontext_2038') [core.NullDereference] + __printf_421 (" %lc\n",* __scontext_2038 ) ; // L14 + ^~~~~~~~~~~~~~~~~~ +2 warnings generated. +Matches: + 54 has a match! +Unmatched ids: + None! +BUSYBOX b7ebc61b54f.c +Macros: + CONFIG_FEATURE_LS_TIMESTAMPS +[-UCONFIG_FEATURE_LS_TIMESTAMPS ] +Desugared Clang Results: +Original file has no warnings +BUSYBOX ebee301c8b0.c +Macros: + defined +[-Udefined ] +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.c:2920:2: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] + __copySubFile_2038 ( __src_2042 , __dst_2043 ) ; // L18 + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.c:2920:2: warning: 2nd function call argument is an uninitialized value [core.CallAndMessage] + __copySubFile_2038 ( __src_2042 , __dst_2043 ) ; // L18 + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +2 warnings generated. +Original file has no warnings +BUSYBOX b273d665181.c +Macros: + BB_FEATURE_LS_FILETYPES + BB_FEATURE_LS_USERNAME +[-UBB_FEATURE_LS_FILETYPES -UBB_FEATURE_LS_USERNAME ] +[-DBB_FEATURE_LS_FILETYPES=1 -UBB_FEATURE_LS_USERNAME ] +57 :: Line:16 + 2nd function call argument is an uninitialized value [core.CallAndMessage] +[-UBB_FEATURE_LS_FILETYPES -DBB_FEATURE_LS_USERNAME=1 ] +[-DBB_FEATURE_LS_FILETYPES=1 -DBB_FEATURE_LS_USERNAME=1 ] +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.c:2936:2: warning: 2nd function call argument is an uninitialized value [core.CallAndMessage] + __printf_421 ("%d", __info_2036 ) ; // L16 + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.c:2947:2: warning: 2nd function call argument is an uninitialized value [core.CallAndMessage] + __printf_421 ("%d", __info_2036 ) ; // L16 + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.c:3007:2: warning: 2nd function call argument is an uninitialized value [core.CallAndMessage] + __printf_421 ("%d", __info_2036 ) ; // L16 + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.c:3018:2: warning: 2nd function call argument is an uninitialized value [core.CallAndMessage] + __printf_421 ("%d", __info_2036 ) ; // L16 + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.c:3072:2: warning: Value stored to '__info_2036' is never read [deadcode.DeadStores] + __info_2036 = 0 ; // L11 + ^ ~ +5 warnings generated. +Matches: + 57 has a match! +Unmatched ids: + None! +BUSYBOX df7b6577c6a.c +Macros: + ENABLE_DESKTOP +[-UENABLE_DESKTOP ] +Desugared Clang Results: +Original file has no warnings +BUSYBOX/061fd0a353e SuperC failed +BUSYBOX 061fd0a353e.c +Macros: + CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF + CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF +[-UCONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF -UCONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF ] +61 :: Line:16 + Value stored to 'p' is never read [deadcode.DeadStores] +[-DCONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF=1 -UCONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF ] +[-UCONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF -DCONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF=1 ] +62 :: Line:16 + Value stored to 'p' is never read [deadcode.DeadStores] +63 :: Line:27 + Branch condition evaluates to a garbage value [core.uninitialized.Branch] +[-DCONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF=1 -DCONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF=1 ] +64 :: Line:16 + Value stored to 'p' is never read [deadcode.DeadStores] +65 :: Line:20 + Branch condition evaluates to a garbage value [core.uninitialized.Branch] +66 :: Line:27 + Branch condition evaluates to a garbage value [core.uninitialized.Branch] +File Failed +BUSYBOX/eef2317b9f5 SuperC failed +BUSYBOX eef2317b9f5.c +Macros: + CONFIG_FEATURE_CLEAN_UP +[-UCONFIG_FEATURE_CLEAN_UP ] +67 :: Line:26 + Value stored to 'buf' is never read [deadcode.DeadStores] +68 :: Line:34 + Potential leak of memory pointed to by 'buf' [unix.Malloc] +File Failed +BUSYBOX 192c35f6eb2.c +Macros: + CONFIG_FEATURE_REMOTE_LOG +[-UCONFIG_FEATURE_REMOTE_LOG ] +Desugared Clang Results: +Original file has no warnings +BUSYBOX 2631486f1bf.c +Macros: + CONFIG_FEATURE_LS_RECURSIVE + CONFIG_FEATURE_LS_SORTFILES +[-UCONFIG_FEATURE_LS_RECURSIVE -UCONFIG_FEATURE_LS_SORTFILES ] +69 :: Line:67 + Assigned value is garbage or undefined [core.uninitialized.Assign] +[-DCONFIG_FEATURE_LS_RECURSIVE=1 -UCONFIG_FEATURE_LS_SORTFILES ] +70 :: Line:67 + Assigned value is garbage or undefined [core.uninitialized.Assign] +[-UCONFIG_FEATURE_LS_RECURSIVE -DCONFIG_FEATURE_LS_SORTFILES=1 ] +71 :: Line:67 + Assigned value is garbage or undefined [core.uninitialized.Assign] +[-DCONFIG_FEATURE_LS_RECURSIVE=1 -DCONFIG_FEATURE_LS_SORTFILES=1 ] +72 :: Line:67 + Assigned value is garbage or undefined [core.uninitialized.Assign] +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1250:42: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_963', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_986)' [unix.MallocSizeof] + __curr_979 = ( struct __dnode_963 * ) malloc (sizeof(typeof(__sizeofStandin_986))) ; // L65 + ~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1253:42: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_963', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_986)' [unix.MallocSizeof] + __curr_979 = ( struct __dnode_963 * ) malloc (sizeof(typeof(__sizeofStandin_986))) ; // L65 + ~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1256:27: warning: Dereference of undefined pointer value [core.NullDereference] + __curr_979 -> __val_964 = rand( ) % 10 ; // L66 + ~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1259:27: warning: Dereference of undefined pointer value [core.NullDereference] + __curr_979 -> __val_964 = rand( ) % 10 ; // L66 + ~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1261:28: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] + __curr_979 -> __next_965 = __head_980 ; // L67 + ^ ~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1261:28: warning: Dereference of undefined pointer value [core.NullDereference] + __curr_979 -> __next_965 = __head_980 ; // L67 + ~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~ +6 warnings generated. +Matches: +Unmatched ids: + 69 + 70 + 71 + 72 +BUSYBOX 95755181b82.c +Macros: + ENABLE_FEATURE_HTTPD_GZIP + ENABLE_FEATURE_HTTPD_BASIC_AUTH + BB_MMU +[-UENABLE_FEATURE_HTTPD_GZIP -UENABLE_FEATURE_HTTPD_BASIC_AUTH -UBB_MMU ] +[-DENABLE_FEATURE_HTTPD_GZIP=1 -UENABLE_FEATURE_HTTPD_BASIC_AUTH -UBB_MMU ] +[-UENABLE_FEATURE_HTTPD_GZIP -DENABLE_FEATURE_HTTPD_BASIC_AUTH=1 -UBB_MMU ] +[-DENABLE_FEATURE_HTTPD_GZIP=1 -DENABLE_FEATURE_HTTPD_BASIC_AUTH=1 -UBB_MMU ] +[-UENABLE_FEATURE_HTTPD_GZIP -UENABLE_FEATURE_HTTPD_BASIC_AUTH -DBB_MMU=1 ] +[-DENABLE_FEATURE_HTTPD_GZIP=1 -UENABLE_FEATURE_HTTPD_BASIC_AUTH -DBB_MMU=1 ] +[-UENABLE_FEATURE_HTTPD_GZIP -DENABLE_FEATURE_HTTPD_BASIC_AUTH=1 -DBB_MMU=1 ] +[-DENABLE_FEATURE_HTTPD_GZIP=1 -DENABLE_FEATURE_HTTPD_BASIC_AUTH=1 -DBB_MMU=1 ] +[-UENABLE_FEATURE_HTTPD_GZIP -UENABLE_FEATURE_HTTPD_BASIC_AUTH -UBB_MMU ] +File Failed +BUSYBOX cc3f20b9bdf.c +Macros: +Desugared Clang Results: +Original file has no warnings +BUSYBOX cf1f2ace391.c +Macros: + ENABLE_DEBUG_INIT +[-UENABLE_DEBUG_INIT ] +Desugared Clang Results: +Original file has no warnings +BUSYBOX bc0ffc0e971.c +Macros: + ENABLE_FEATURE_CLEAN_UP +[-UENABLE_FEATURE_CLEAN_UP ] +75 :: Line:46 + Potential leak of memory pointed to by 'clist' [unix.Malloc] +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2257:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_1823', which is incompatible with sizeof operand type 'struct (anonymous struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2238:1)' [unix.MallocSizeof] + __ch_1848 = malloc (sizeof(__sizeofStandin_1852)) ; // L29 + ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2260:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_1823', which is incompatible with sizeof operand type 'struct (anonymous struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2238:1)' [unix.MallocSizeof] + __ch_1848 = malloc (sizeof(__sizeofStandin_1852)) ; // L29 + ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2262:30: warning: Dereference of undefined pointer value [core.NullDereference] + __ch_1848 -> __ifname_1822 = __ifname_1847 ; // L30 + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2262:33: warning: Potential leak of memory pointed to by '__ch_1848' [unix.Malloc] + __ch_1848 -> __ifname_1822 = __ifname_1847 ; // L30 + ^~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2297:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_1824', which is incompatible with sizeof operand type 'struct (anonymous struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2279:1)' [unix.MallocSizeof] + __ch_1849 = malloc (sizeof(__sizeofStandin_1855)) ; // L29 + ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2300:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_1824', which is incompatible with sizeof operand type 'struct (anonymous struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2279:1)' [unix.MallocSizeof] + __ch_1849 = malloc (sizeof(__sizeofStandin_1855)) ; // L29 + ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2302:30: warning: Dereference of undefined pointer value [core.NullDereference] + __ch_1849 -> __ifname_1822 = __ifname_1847 ; // L30 + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2302:33: warning: Potential leak of memory pointed to by '__ch_1849' [unix.Malloc] + __ch_1849 -> __ifname_1822 = __ifname_1847 ; // L30 + ^~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2333:39: warning: Potential leak of memory pointed to by '__ch_1872' [unix.Malloc] +for ( __ch_1872 = __clist_1870 ; __ch_1872 ; __ch_1872 = __ch_1872 -> __next_1821 )// L43 + ^~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2338:5: warning: Potential leak of memory pointed to by '__clist_1870' [unix.Malloc] +if (__static_condition_default_1876) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2339:39: warning: Potential leak of memory pointed to by '__ch_1873' [unix.Malloc] +for ( __ch_1873 = __clist_1871 ; __ch_1873 ; __ch_1873 = __ch_1873 -> __next_1821 )// L43 + ^~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2344:5: warning: Potential leak of memory pointed to by '__clist_1871' [unix.Malloc] +if (__static_condition_default_1877) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +12 warnings generated. +Matches: +Unmatched ids: + 75 +BUSYBOX b62bd7b261b.c +Macros: + ENABLE_FEATURE_MDEV_CONF + ENABLE_FEATURE_MDEV_RENAME + ENABLE_FEATURE_MDEV_RENAME_REGEXP +[-UENABLE_FEATURE_MDEV_CONF -UENABLE_FEATURE_MDEV_RENAME -UENABLE_FEATURE_MDEV_RENAME_REGEXP ] +[-DENABLE_FEATURE_MDEV_CONF=1 -UENABLE_FEATURE_MDEV_RENAME -UENABLE_FEATURE_MDEV_RENAME_REGEXP ] +[-UENABLE_FEATURE_MDEV_CONF -DENABLE_FEATURE_MDEV_RENAME=1 -UENABLE_FEATURE_MDEV_RENAME_REGEXP ] +[-DENABLE_FEATURE_MDEV_CONF=1 -DENABLE_FEATURE_MDEV_RENAME=1 -UENABLE_FEATURE_MDEV_RENAME_REGEXP ] +80 :: Line:14 + Value stored to 'a' during its initialization is never read [deadcode.DeadStores] +81 :: Line:16 + Value stored to 'val' is never read [deadcode.DeadStores] +[-UENABLE_FEATURE_MDEV_CONF -UENABLE_FEATURE_MDEV_RENAME -DENABLE_FEATURE_MDEV_RENAME_REGEXP=1 ] +[-DENABLE_FEATURE_MDEV_CONF=1 -UENABLE_FEATURE_MDEV_RENAME -DENABLE_FEATURE_MDEV_RENAME_REGEXP=1 ] +[-UENABLE_FEATURE_MDEV_CONF -DENABLE_FEATURE_MDEV_RENAME=1 -DENABLE_FEATURE_MDEV_RENAME_REGEXP=1 ] +[-DENABLE_FEATURE_MDEV_CONF=1 -DENABLE_FEATURE_MDEV_RENAME=1 -DENABLE_FEATURE_MDEV_RENAME_REGEXP=1 ] +82 :: Line:16 + Value stored to 'val' is never read [deadcode.DeadStores] +83 :: Line:24 + Dereference of undefined pointer value [core.NullDereference] +[-UENABLE_FEATURE_MDEV_CONF -UENABLE_FEATURE_MDEV_RENAME -UENABLE_FEATURE_MDEV_RENAME_REGEXP ] +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1451:1: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] +char * (__a_1261)= __val_1258 ;// L14 +^~~~~~~~~~~~~~~~~ ~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1451:10: warning: Value stored to '__a_1261' during its initialization is never read [deadcode.DeadStores] +char * (__a_1261)= __val_1258 ;// L14 + ^~~~~~~~ ~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1457:2: warning: Value stored to '__val_1258' is never read [deadcode.DeadStores] + __val_1258 = ( __s_1259 && __s_1259 [ 1 ] ) ? __s_1259 + 1 : ( ( void * ) 0 ) ; // L16:L395 + ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1457:19: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] + __val_1258 = ( __s_1259 && __s_1259 [ 1 ] ) ? __s_1259 + 1 : ( ( void * ) 0 ) ; // L16:L395 + ^~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1482:2: warning: Value stored to '__val_1258' is never read [deadcode.DeadStores] + __val_1258 = ( __s_1259 && __s_1259 [ 1 ] ) ? __s_1259 + 1 : ( ( void * ) 0 ) ; // L16:L395 + ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1494:14: warning: Dereference of undefined pointer value [core.NullDereference] +* __p_1260 = * __s_1259 ; // L24 +~~~~~~~~~~~~~^~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1556:1: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] +char * (__a_1261)= __val_1258 ;// L14 +^~~~~~~~~~~~~~~~~ ~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1556:10: warning: Value stored to '__a_1261' during its initialization is never read [deadcode.DeadStores] +char * (__a_1261)= __val_1258 ;// L14 + ^~~~~~~~ ~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1562:2: warning: Value stored to '__val_1258' is never read [deadcode.DeadStores] + __val_1258 = ( __s_1259 && __s_1259 [ 1 ] ) ? __s_1259 + 1 : ( ( void * ) 0 ) ; // L16:L395 + ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1562:19: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] + __val_1258 = ( __s_1259 && __s_1259 [ 1 ] ) ? __s_1259 + 1 : ( ( void * ) 0 ) ; // L16:L395 + ^~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1587:2: warning: Value stored to '__val_1258' is never read [deadcode.DeadStores] + __val_1258 = ( __s_1259 && __s_1259 [ 1 ] ) ? __s_1259 + 1 : ( ( void * ) 0 ) ; // L16:L395 + ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1599:14: warning: Dereference of undefined pointer value [core.NullDereference] +* __p_1260 = * __s_1259 ; // L24 +~~~~~~~~~~~~~^~~~~~~~~~~~~ +12 warnings generated. +Matches: + 80 has a match! + 81 has a match! + 82 has a match! +Unmatched ids: + 83 +BUSYBOX 0301ffab3d9.c +Macros: + EXT2FS_ENABLE_SWAPFS +[-UEXT2FS_ENABLE_SWAPFS ] +Desugared Clang Results: +Original file has no warnings +BUSYBOX 199501f2a00.c +Macros: + ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS +[-UENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS ] +94 :: Line:21 + Null pointer passed to 2nd parameter expecting 'nonnull' [core.NonNullParamChecker] +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.c:1543:2: warning: Value stored to '__dt_1258' is never read [deadcode.DeadStores] + __dt_1258 = "-i" ; // L10 + ^ ~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.c:1557:2: warning: Value stored to '__dt_1258' is never read [deadcode.DeadStores] + __dt_1258 = "-i" ; // L10 + ^ ~~~~ +2 warnings generated. +Matches: +Unmatched ids: + 94 +APACHE d0040a07aec.c +Macros: + defined + RLIMIT_NPROC +[-Udefined -URLIMIT_NPROC ] +[-Ddefined=1 -URLIMIT_NPROC ] +[-Udefined -DRLIMIT_NPROC=1 ] +[-Ddefined=1 -DRLIMIT_NPROC=1 ] +Desugared Clang Results: +Original file has no warnings +APACHE c76df14dfb4.c +Macros: + CROSS_COMPILE + defined + NEED_ENHANCED_ESCAPES +[-UCROSS_COMPILE -Udefined -UNEED_ENHANCED_ESCAPES ] +[-DCROSS_COMPILE=1 -Udefined -UNEED_ENHANCED_ESCAPES ] +[-UCROSS_COMPILE -Ddefined=1 -UNEED_ENHANCED_ESCAPES ] +[-DCROSS_COMPILE=1 -Ddefined=1 -UNEED_ENHANCED_ESCAPES ] +[-UCROSS_COMPILE -Udefined -DNEED_ENHANCED_ESCAPES=1 ] +[-DCROSS_COMPILE=1 -Udefined -DNEED_ENHANCED_ESCAPES=1 ] +[-UCROSS_COMPILE -Ddefined=1 -DNEED_ENHANCED_ESCAPES=1 ] +[-DCROSS_COMPILE=1 -Ddefined=1 -DNEED_ENHANCED_ESCAPES=1 ] +[-UCROSS_COMPILE -Udefined -UNEED_ENHANCED_ESCAPES ] +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c:2149:2: warning: Value stored to '__flags_1818' is never read [deadcode.DeadStores] + __flags_1818 |= ( 0x01 ) ; // L4:L42 + ^ ~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c:2213:2: warning: Value stored to '__flags_1818' is never read [deadcode.DeadStores] + __flags_1818 |= ( 0x01 ) ; // L4:L42 + ^ ~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c:2305:2: warning: Value stored to '__flags_1818' is never read [deadcode.DeadStores] + __flags_1818 |= ( 0x01 ) ; // L4:L42 + ^ ~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c:2397:2: warning: Value stored to '__flags_1818' is never read [deadcode.DeadStores] + __flags_1818 |= ( 0x01 ) ; // L4:L42 + ^ ~~~~~~~~ +4 warnings generated. +Original file has no warnings +APACHE 97ecbec1237.c +Macros: + APR_HAS_SHARED_MEMORY +[-UAPR_HAS_SHARED_MEMORY ] +Desugared Clang Results: +Original file has no warnings +APACHE bbeb0516cf0.c +Macros: + APR_FILES_AS_SOCKETS +[-UAPR_FILES_AS_SOCKETS ] +Desugared Clang Results: +Original file has no warnings +APACHE 1f46088b38d.c +Macros: + SIGPIPE +[-USIGPIPE ] +Desugared Clang Results: +Original file has no warnings +APACHE 9327311d30f.c +Macros: + APR_HAS_SHARED_MEMORY +[-UAPR_HAS_SHARED_MEMORY ] +Desugared Clang Results: +Original file has no warnings +APACHE 35ae2e259e4.c +Macros: + HAVE_ECC + defined +[-UHAVE_ECC -Udefined ] +[-DHAVE_ECC=1 -Udefined ] +[-UHAVE_ECC -Ddefined=1 ] +[-DHAVE_ECC=1 -Ddefined=1 ] +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1373:17: warning: Dereference of undefined pointer value [core.NullDereference] +* __eckey_798 = 30 ; // L12 +~~~~~~~~~~~~~~~~^~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1397:17: warning: Dereference of undefined pointer value [core.NullDereference] +* __eckey_798 = 15 ; // L17 +~~~~~~~~~~~~~~~~^~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1403:5: warning: Potential leak of memory pointed to by '__eckey_798' [unix.Malloc] +if (__static_condition_default_809) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1442:17: warning: Dereference of undefined pointer value [core.NullDereference] +* __eckey_798 = 30 ; // L12 +~~~~~~~~~~~~~~~~^~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1466:17: warning: Dereference of undefined pointer value [core.NullDereference] +* __eckey_798 = 15 ; // L17 +~~~~~~~~~~~~~~~~^~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1472:5: warning: Potential leak of memory pointed to by '__eckey_798' [unix.Malloc] +if (__static_condition_default_818) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1496:2: warning: Value stored to '__eckey_798' is never read [deadcode.DeadStores] + __eckey_798 = malloc (sizeof(int)) ; // L10 + ^ ~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1499:2: warning: Value stored to '__eckey_798' is never read [deadcode.DeadStores] + __eckey_798 = malloc (sizeof(int)) ; // L10 + ^ ~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1501:5: warning: Potential leak of memory pointed to by '__eckey_798' [unix.Malloc] +if (__static_condition_default_823) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +9 warnings generated. +Original file has no warnings +APACHE 4202d5fee3e.c +Macros: + APU_HAS_LDAP + APU_HAS_LDAP_NETSCAPE_SSL +[-UAPU_HAS_LDAP -UAPU_HAS_LDAP_NETSCAPE_SSL ] +[-DAPU_HAS_LDAP=1 -UAPU_HAS_LDAP_NETSCAPE_SSL ] +[-UAPU_HAS_LDAP -DAPU_HAS_LDAP_NETSCAPE_SSL=1 ] +[-DAPU_HAS_LDAP=1 -DAPU_HAS_LDAP_NETSCAPE_SSL=1 ] +Desugared Clang Results: +Original file has no warnings +APACHE/b833f064550 SuperC failed +APACHE b833f064550.c +Macros: + HAVE_TIMES +[-UHAVE_TIMES ] +File Failed +APACHE 581635e28f1.c +Macros: + APR_HAVE_IPV6 +[-UAPR_HAVE_IPV6 ] +Desugared Clang Results: +Original file has no warnings +APACHE 2a6cbfa00e0.c +Macros: + SHARED_MODULE +[-USHARED_MODULE ] +97 :: Line:16 + Potential leak of memory pointed to by 'sc' [unix.Malloc] +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c:1496:5: warning: Potential leak of memory pointed to by '__sc_1019' [unix.Malloc] +if (__static_condition_default_1028) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c:1499:5: warning: Potential leak of memory pointed to by '__sc_1018' [unix.Malloc] +if (__static_condition_default_1029) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c:1525:10: warning: Value stored to '__sc_1021' during its initialization is never read [deadcode.DeadStores] +char * (__sc_1021)= malloc (sizeof(char) * 45);// L6 + ^~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c:1527:1: warning: Potential leak of memory pointed to by '__sc_1021' [unix.Malloc] +__static_type_error("type error") ; // L9 +^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c:1531:5: warning: Potential leak of memory pointed to by '__sc_1020' [unix.Malloc] +if (__static_condition_default_1034) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +5 warnings generated. +Matches: +Unmatched ids: + 97 +APACHE 1a3c8e3d840.c +Macros: + HAVE_TLSV1_X +[-UHAVE_TLSV1_X ] +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.c:273:2: warning: Value stored to '__thisopt_252' is never read [deadcode.DeadStores] + __thisopt_252 = ( 1 << 3 ) ; // L4:L13 + ^ ~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.c:287:2: warning: Value stored to '__thisopt_252' is never read [deadcode.DeadStores] + __thisopt_252 = ( 1 << 3 ) ; // L4:L13 + ^ ~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.c:318:2: warning: Value stored to '__thisopt_252' is never read [deadcode.DeadStores] + __thisopt_252 = ( 1 << 3 ) ; // L4:L13 + ^ ~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.c:332:2: warning: Value stored to '__thisopt_252' is never read [deadcode.DeadStores] + __thisopt_252 = ( 1 << 3 ) ; // L4:L13 + ^ ~~~~~~~~~~ +4 warnings generated. +Original file has no warnings +APACHE test.c +Macros: + XX + YY + ZZ +[-UXX -UYY -UZZ ] +[-DXX=1 -UYY -UZZ ] +[-UXX -DYY=1 -UZZ ] +[-DXX=1 -DYY=1 -UZZ ] +[-UXX -UYY -DZZ=1 ] +[-DXX=1 -UYY -DZZ=1 ] +[-UXX -DYY=1 -DZZ=1 ] +[-DXX=1 -DYY=1 -DZZ=1 ] +[-UXX -UYY -UZZ ] +Desugared Clang Results: +Original file has no warnings +APACHE dbafef17dd1.c +Macros: + HAS_APACHE_REGEX_LIB +[-UHAS_APACHE_REGEX_LIB ] +Desugared Clang Results: +Original file has no warnings +APACHE 3407eccc321.c +Macros: + __STDC_VERSION__ +[-U__STDC_VERSION__ ] +Desugared Clang Results: +Original file has no warnings +APACHE 664e3aac6dd.c +Macros: + WIN32X +[-UWIN32X ] +Desugared Clang Results: +Original file has no warnings +APACHE d05e574ec26.c +Macros: + APR_HAS_SHARED_MEMORY +[-UAPR_HAS_SHARED_MEMORY ] +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2919:10: warning: Value stored to '__buf_2043' during its initialization is never read [deadcode.DeadStores] +char * (__buf_2043)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2037 ,sizeof(char)));// L16 + ^~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2921:10: warning: Value stored to '__buf_2044' during its initialization is never read [deadcode.DeadStores] +char * (__buf_2044)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2038 ,sizeof(char)));// L16 + ^~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2921:62: warning: Potential leak of memory pointed to by '__buf_2043' [unix.Malloc] +char * (__buf_2044)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2038 ,sizeof(char)));// L16 + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2923:62: warning: Potential leak of memory pointed to by '__buf_2044' [unix.Malloc] +char * (__buf_2045)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2036 ,sizeof(char)));// L16 + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2927:10: warning: Value stored to '__buf_2047' during its initialization is never read [deadcode.DeadStores] +char * (__buf_2047)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2036 ,sizeof(char)));// L16 + ^~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2929:10: warning: Value stored to '__buf_2048' during its initialization is never read [deadcode.DeadStores] +char * (__buf_2048)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2038 ,sizeof(char)));// L16 + ^~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2929:62: warning: Potential leak of memory pointed to by '__buf_2047' [unix.Malloc] +char * (__buf_2048)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2038 ,sizeof(char)));// L16 + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2935:5: warning: Potential leak of memory pointed to by '__buf_2048' [unix.Malloc] +if (__static_condition_default_2053) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2938:5: warning: Potential leak of memory pointed to by '__buf_2041' [unix.Malloc] +if (__static_condition_default_2054) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2941:5: warning: Potential leak of memory pointed to by '__buf_2042' [unix.Malloc] +if (__static_condition_default_2055) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2944:5: warning: Potential leak of memory pointed to by '__buf_2045' [unix.Malloc] +if (__static_condition_default_2056) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2947:5: warning: Potential leak of memory pointed to by '__buf_2046' [unix.Malloc] +if (__static_condition_default_2057) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +12 warnings generated. +Original file has no warnings +APACHE 6338509eb37.c +Macros: + HAVE_FIPS +[-UHAVE_FIPS ] +Desugared Clang Results: +Original file has no warnings +APACHE 0900800fbab.c +Macros: + HAVE_SYSLOG + APLOG_MAX_LOGLEVEL +[-UHAVE_SYSLOG -UAPLOG_MAX_LOGLEVEL ] +[-DHAVE_SYSLOG=1 -UAPLOG_MAX_LOGLEVEL ] +[-UHAVE_SYSLOG -DAPLOG_MAX_LOGLEVEL=1 ] +[-DHAVE_SYSLOG=1 -DAPLOG_MAX_LOGLEVEL=1 ] +Desugared Clang Results: +Original file has no warnings +APACHE 0ddfa412ee9.c +Macros: + HAVE_TLS_ALPN +[-UHAVE_TLS_ALPN ] +Desugared Clang Results: +Original file has no warnings +APACHE 4945115b2e7.c +Macros: + DEBUG_CGI + OS2 +[-UDEBUG_CGI -UOS2 ] +[-DDEBUG_CGI=1 -UOS2 ] +[-UDEBUG_CGI -DOS2=1 ] +[-DDEBUG_CGI=1 -DOS2=1 ] +Desugared Clang Results: +Original file has no warnings +APACHE 56d9881993f.c +Macros: + APR_HAS_SENDFILE +[-UAPR_HAS_SENDFILE ] +Desugared Clang Results: +Original file has no warnings +APACHE 1b48bb3c1af.c +Macros: + APU_HAS_LDAP + APR_HAS_SHARED_MEMORY +[-UAPU_HAS_LDAP -UAPR_HAS_SHARED_MEMORY ] +[-DAPU_HAS_LDAP=1 -UAPR_HAS_SHARED_MEMORY ] +[-UAPU_HAS_LDAP -DAPR_HAS_SHARED_MEMORY=1 ] +[-DAPU_HAS_LDAP=1 -DAPR_HAS_SHARED_MEMORY=1 ] +103 :: Line:14 + 1st function call argument is an uninitialized value [core.CallAndMessage] +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c:1273:2: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] + __apr_rmm_init_1019 ( __rmm_lock_1023 ) ; // L14 + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c:1276:2: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] + __apr_rmm_init_1020 ( __rmm_lock_1023 ) ; // L14 + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +2 warnings generated. +Matches: + 103 has a match! +Unmatched ids: + None! diff --git a/fonda/cpp_testsuite/varBugs/summaryTableRec.txt b/fonda/cpp_testsuite/varBugs/summaryTableRec.txt new file mode 100644 index 00000000..fc89adba --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/summaryTableRec.txt @@ -0,0 +1,825 @@ +MARLIN/f87c80889fe BC generated : + clang: none infeasible:0 + + infer: none 0 0 +MARLIN/53be0f3399e BC generated : + clang: none infeasible:0 + + infer: none 0 0 +MARLIN/31873ec707d BC generated : + clang: none infeasible:0 + + infer: none 0 0 +MARLIN/2d22902d080 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +MARLIN/a7fc1f83c81 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +MARLIN/30248214c7f BC generated : + clang: none infeasible:0 + + infer: none 0 0 +MARLIN/2db384a21d6 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +MARLIN/b8e79dce897 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +MARLIN/8c4377dd635 BC generated : + clang: none infeasible:0 +Value stored to '__pid_output_0' is never read 19 [DEF_PIDTEMP = False] + + infer: none 0 2 +MARLIN/fc3c76fc164 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +MARLIN/831016b09f7 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +MARLIN/e30bfedce4d BC generated : + clang: missing 1 infeasible:0 +Value stored to '__xGridSpacing_1' during its initialization is never read 24 [DEF_ENABLE_AUTO_BED_LEVELING = True] + + infer: match 1 1 +MARLIN/7336e6df070 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +MARLIN/fdac8f6cece BC generated : + clang: none infeasible:0 + + infer: none 0 0 +LINUX/d530db0db90 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +LINUX/bc8cec0dff0 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +LINUX/d7e9711760a SuperC failed +LINUX/d7e9711760a BC failed +LINUX/221ac329e93 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +LINUX/51fd36f3fad BC generated : + clang: none infeasible:0 + + infer: none 0 2 +LINUX/208d89843b7 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +LINUX/ee3f34e8572 BC generated : + clang: missing 1 infeasible:2 + + infer: missing1 0 +LINUX/472a474c663 BC generated : + clang: missing 1 infeasible:0 +Dereference of null pointer (loaded from variable '__ptr_3') 14 [DEF_CONFIG_SMP = True] + + infer: none 0 0 +LINUX/657e9649e74 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +LINUX/f7ab9b407b3 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +LINUX/36855dcfc98 BC generated : + clang: none infeasible:0 +Value stored to '__wakeup_0' is never read 6 [DEF_CONFIG_BF60x = False] + + infer: none 0 0 +LINUX/e1fbd9210d5 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +LINUX/66517915e09 BC generated : + clang: none infeasible:0 +Value stored to '__codec_hw_write_1' during its initialization is never read 16 [DEF_CONFIG_SND_FSI_DA7210 = False, + DEF_CONFIG_SND_SOC_DA7210 = True] +Value stored to '__codec_hw_write_5' during its initialization is never read 24 [DEF_CONFIG_SND_SOC_AK4642 = True, + DEF_CONFIG_SND_FSI_AK4642 = False] + + infer: none 0 2 +LINUX/7c6048b7c83 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +LINUX/f3d83e24154 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +LINUX/eb91f1d0a53 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +LINUX/1f758a4341a BC generated : + clang: none infeasible:0 + + infer: none 0 0 +LINUX/0988c4c7fb5 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +LINUX/242f1a34377 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +LINUX/2f02c15a5d9 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +LINUX/8c8296223f3 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +LINUX/68bb91baa0 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +LINUX/1c17e4d4437 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +LINUX/f48ec1d7885 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +LINUX/0dc77b6dabe BC generated : + clang: none infeasible:0 + + infer: none 0 0 +LINUX/6515e48932c BC generated : + clang: none infeasible:0 + + infer: none 0 0 +LINUX/91ea8207168 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +LINUX/6e2b75740be BC generated : + clang: none infeasible:4 +1st function call argument is an uninitialized value 60 [DEF_CONFIG_SMP = False, DEF_CONFIG_MODULE_UNLOAD = False] +Value stored to '__dest_12' during its initialization is never read 46 [] + + infer: none 0 1 +LINUX/76baeebf7df SuperC failed +LINUX/76baeebf7df BC failed +LINUX/218ad12f42e BC generated : + clang: none infeasible:0 + + infer: none 0 0 +LINUX/ae249b5fa27 BC generated : + clang: none infeasible:2 + + infer: none 0 2 +LINUX/e67bc51e574 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +LINUX/c708c57e247 BC generated : + clang: missing 1 infeasible:0 +Assigned value is garbage or undefined 18 [DEF_CONFIG_S390_PRNG = True] + + infer: none 0 0 +LINUX/809e660f438 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +LINUX/0f8f8094d28 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +LINUX/6252547b8a7 BC generated : + clang: missing 2 infeasible:0 +Value stored to '__irq_2' during its initialization is never read 12 [DEF_CONFIG_TWL4030_CORE = True, + DEF_CONFIG_IRQ_DOMAIN = False] +Dereference of null pointer (loaded from variable '__ops_1') 12 [DEF_CONFIG_TWL4030_CORE = True, DEF_CONFIG_OF_IRQ = False] + + infer: missing2 1 +LINUX/d6c7e113959 BC generated : + clang: none infeasible:0 + + infer: none 0 1 +LINUX/e39363a9def BC generated : + clang: missing 1 infeasible:0 +Undefined or garbage value returned to caller 17 [DEF_CONFIG_NETPOLL = True, DEF_CONFIG_IPV6 = False] + + infer: match 1 1 +LINUX/30e053248da BC generated : + clang: missing 2 infeasible:2 +Value stored to '__x_9' during its initialization is never read 31 [] + + infer: match 1 3 +LINUX/d549f55f2e1 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +LINUX/7acf6cd80b2 BC generated : + clang: missing 3 infeasible:0 +1st function call argument is an uninitialized value 44 [DEF_CONFIG_UNIX98_PTYS = True] +Value stored to '__x_3' during its initialization is never read 8 [DEF_CONFIG_DEVPTS_MULTIPLE_INSTANCES = True] +Value stored to '__driver_data_15' is never read 39 [DEF_CONFIG_UNIX98_PTYS = True] + + infer: match 2 2 +LINUX/60e233a5660 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +LINUX/63878acfafb BC generated : + clang: none infeasible:1 + + infer: none 0 1 +BUSYBOX/5275b1e49f6 BC generated : + clang: none infeasible:0 +Value stored to '__m_has_modinfo_967' is never read 16 [USE___OPTIMIZE__ = 1, + USE__FORTIFY_SOURCE = 1, + DEF___USE_EXTERN_INLINES = True, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True] +Value stored to '__m_has_modinfo_967' is never read 18 [USE___OPTIMIZE__ = 1, + USE__FORTIFY_SOURCE = 1, + DEF___USE_EXTERN_INLINES = True, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True] +Value stored to '__k_crcs_970' is never read 25 [USE__FORTIFY_SOURCE = 0, + USE___OPTIMIZE__ = 1, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True, + DEF___USE_EXTERN_INLINES = True] +Value stored to '__k_crcs_970' is never read 21 [USE__FORTIFY_SOURCE = 0, + USE___OPTIMIZE__ = 1, + DEF__FORTIFY_SOURCE = True, + DEF___OPTIMIZE__ = True] +Value stored to '__k_crcs_970' is never read 25 [USE___OPTIMIZE__ = 1, + USE__FORTIFY_SOURCE = 1, + DEF___USE_EXTERN_INLINES = False, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True] +Value stored to '__k_crcs_970' is never read 25 [USE___OPTIMIZE__ = 1, + USE__FORTIFY_SOURCE = 1, + DEF___USE_EXTERN_INLINES = True, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True] +Value stored to '__m_has_modinfo_967' is never read 16 [USE___OPTIMIZE__ = 0, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True, + USE__FORTIFY_SOURCE = 1, + DEF___USE_EXTERN_INLINES = True] +Value stored to '__k_crcs_970' is never read 25 [USE__FORTIFY_SOURCE = 1, + USE___OPTIMIZE__ = 0, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True, + DEF___USE_EXTERN_INLINES = False] +Value stored to '__m_has_modinfo_967' is never read 16 [USE__FORTIFY_SOURCE = 0, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True, + USE___OPTIMIZE__ = 1, + DEF___USE_EXTERN_INLINES = False] +Value stored to '__m_has_modinfo_967' is never read 16 [USE___OPTIMIZE__ = 1, + USE__FORTIFY_SOURCE = 1, + DEF___USE_EXTERN_INLINES = False, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True] +Value stored to '__m_has_modinfo_967' is never read 18 [USE___OPTIMIZE__ = 1, + USE__FORTIFY_SOURCE = 1, + DEF___USE_EXTERN_INLINES = False, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True] +Value stored to '__m_has_modinfo_967' is never read 18 [DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True, + USE__FORTIFY_SOURCE = 1, + USE___OPTIMIZE__ = 0, + DEF___USE_EXTERN_INLINES = False] +Value stored to '__k_crcs_970' is never read 21 [USE___OPTIMIZE__ = 1, + USE__FORTIFY_SOURCE = 1, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True] +Value stored to '__m_has_modinfo_967' is never read 18 [DEF___OPTIMIZE__ = True, + USE___OPTIMIZE__ = 0, + DEF__FORTIFY_SOURCE = True, + USE__FORTIFY_SOURCE = 1, + DEF___USE_EXTERN_INLINES = True] + + infer: none 0 5 +BUSYBOX/5cd6461b6fb BC generated : + clang: none infeasible:0 + + infer: none 0 0 +BUSYBOX/1b487ea8a69 BC generated : + clang: missing 1 infeasible:0 +Dereference of null pointer (loaded from variable '__scontext_2038') 14 [USE___OPTIMIZE__ = 1, + USE__FORTIFY_SOURCE = 1, + DEF___need___FILE = False, + DEF_ENABLE_SELINUX = True, + DEF___STRICT_ANSI__ = True, + DEF_ENABLE_FEATURE_STAT_FORMAT = False, + DEF___need_malloc_and_calloc = False, + DEF__STDLIB_H = False, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True] +Dereference of null pointer (loaded from variable '__scontext_2038') 14 [USE__FORTIFY_SOURCE = 1, + USE___OPTIMIZE__ = 1, + DEF___OPTIMIZE__ = False, + DEF__FORTIFY_SOURCE = True, + DEF___need___FILE = False, + DEF___STRICT_ANSI__ = True, + DEF_ENABLE_SELINUX = True, + DEF_ENABLE_FEATURE_STAT_FORMAT = False, + DEF___need_malloc_and_calloc = False, + DEF__STDLIB_H = False] + + infer: match 1 2 +BUSYBOX/b7ebc61b54f BC generated : + clang: none infeasible:0 + + infer: none 0 0 +BUSYBOX/ebee301c8b0 BC generated : + clang: none infeasible:2 + + infer: none 0 2 +BUSYBOX/b273d665181 BC generated : + clang: missing 1 infeasible:2 +2nd function call argument is an uninitialized value 16 [USE___OPTIMIZE__ = 1, + USE__FORTIFY_SOURCE = 1, + DEF___need___FILE = False, + DEF___STRICT_ANSI__ = True, + DEF_BB_FEATURE_LS_USERNAME = False, + DEF_BB_FEATURE_LS_FILETYPES = True, + DEF___need_malloc_and_calloc = False, + DEF__STDLIB_H = False, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True] +2nd function call argument is an uninitialized value 16 [USE___OPTIMIZE__ = 0, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True, + USE__FORTIFY_SOURCE = 1, + DEF___need___FILE = False, + DEF___STRICT_ANSI__ = True, + DEF_BB_FEATURE_LS_USERNAME = False, + DEF___need_malloc_and_calloc = False, + DEF_BB_FEATURE_LS_FILETYPES = True, + DEF__STDLIB_H = False] +Value stored to '__info_2036' is never read 11 [DEF_BB_FEATURE_LS_USERNAME = True, + DEF__STDLIB_H = False, + DEF_BB_FEATURE_LS_FILETYPES = True, + DEF___need_malloc_and_calloc = True] + + infer: match 1 4 +BUSYBOX/df7b6577c6a BC generated : + clang: none infeasible:0 + + infer: none 0 0 +BUSYBOX/061fd0a353e SuperC failed +BUSYBOX/061fd0a353e BC failed +BUSYBOX/eef2317b9f5 SuperC failed +BUSYBOX/eef2317b9f5 BC failed +BUSYBOX/192c35f6eb2 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +BUSYBOX/2631486f1bf BC generated : + clang: missing 1 infeasible:4 +Result of 'malloc' is converted to a pointer of type 'struct __dnode_963', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_986)' 65 [USE___OPTIMIZE__ = 1, + USE__FORTIFY_SOURCE = 1, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True] +Result of 'malloc' is converted to a pointer of type 'struct __dnode_963', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_986)' 65 [USE___OPTIMIZE__ = 0, + USE__FORTIFY_SOURCE = 1, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True] + + infer: missing2 5 +BUSYBOX/95755181b82 BC failed +BUSYBOX/cc3f20b9bdf BC generated : + clang: none infeasible:0 + + infer: none 0 0 +BUSYBOX/cf1f2ace391 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +BUSYBOX/bc0ffc0e971 BC generated : + clang: missing 1 infeasible:11 +Result of 'malloc' is converted to a pointer of type '__ethtable_t_1823', which is incompatible with sizeof operand type 'struct (anonymous struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2238:1)' 29 [DEF___OPTIMIZE__ = True, + USE__FORTIFY_SOURCE = 1, + DEF__FORTIFY_SOURCE = True, + USE___OPTIMIZE__ = 0, + DEF___need_malloc_and_calloc = False, + DEF___STRICT_ANSI__ = True] +Result of 'malloc' is converted to a pointer of type '__ethtable_t_1823', which is incompatible with sizeof operand type 'struct (anonymous struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2238:1)' 29 [DEF___need_malloc_and_calloc = True, + USE__FORTIFY_SOURCE = 0, + USE___OPTIMIZE__ = 1, + DEF___OPTIMIZE__ = True, + DEF___STRICT_ANSI__ = True, + DEF__FORTIFY_SOURCE = True] +Result of 'malloc' is converted to a pointer of type '__ethtable_t_1824', which is incompatible with sizeof operand type 'struct (anonymous struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2279:1)' 29 [USE___OPTIMIZE__ = 1, + USE__FORTIFY_SOURCE = 1, + DEF___need_malloc_and_calloc = True, + DEF___STRICT_ANSI__ = True, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True] +Result of 'malloc' is converted to a pointer of type '__ethtable_t_1824', which is incompatible with sizeof operand type 'struct (anonymous struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2279:1)' 29 [USE___OPTIMIZE__ = 1, + USE__FORTIFY_SOURCE = 1, + DEF___need_malloc_and_calloc = False, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True, + DEF___STRICT_ANSI__ = True] + + infer: missing1 2 +BUSYBOX/b62bd7b261b BC generated : + clang: missing 2 infeasible:2 +Value stored to '__a_1261' during its initialization is never read 14 [USE___OPTIMIZE__ = 0, + USE__FORTIFY_SOURCE = 1, + DEF___OPTIMIZE__ = False, + DEF_ENABLE_FEATURE_MDEV_RENAME = False, + DEF__FORTIFY_SOURCE = True, + DEF_ENABLE_FEATURE_MDEV_RENAME_REGEXP = False, + DEF_ENABLE_FEATURE_MDEV_CONF = True] +Value stored to '__a_1261' during its initialization is never read 14 [DEF_ENABLE_FEATURE_MDEV_RENAME = True, + DEF_ENABLE_FEATURE_MDEV_RENAME_REGEXP = False, + DEF_ENABLE_FEATURE_MDEV_CONF = True, + USE___OPTIMIZE__ = 1, + USE__FORTIFY_SOURCE = 1, + DEF__FORTIFY_SOURCE = True, + DEF___OPTIMIZE__ = True] +Dereference of undefined pointer value (loaded from variable '__p_1260') 24 [USE___OPTIMIZE__ = 1, + USE__FORTIFY_SOURCE = 1, + DEF___USE_EXTERN_INLINES = False, + DEF_ENABLE_FEATURE_MDEV_RENAME_REGEXP = True, + DEF_ENABLE_FEATURE_MDEV_RENAME = True, + DEF_ENABLE_FEATURE_MDEV_CONF = True, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True] +Dereference of undefined pointer value (loaded from variable '__p_1260') 24 [DEF___OPTIMIZE__ = False, + DEF__FORTIFY_SOURCE = True, + USE___OPTIMIZE__ = 0, + USE__FORTIFY_SOURCE = 1, + DEF_ENABLE_FEATURE_MDEV_CONF = True, + DEF_ENABLE_FEATURE_MDEV_RENAME = True, + DEF_ENABLE_FEATURE_MDEV_RENAME_REGEXP = True, + DEF___USE_EXTERN_INLINES = False] +Value stored to '__val_1258' is never read 16:L395 [USE__FORTIFY_SOURCE = 1, + USE___OPTIMIZE__ = 1, + DEF___OPTIMIZE__ = False, + DEF__FORTIFY_SOURCE = False, + DEF_ENABLE_FEATURE_MDEV_CONF = True, + DEF_ENABLE_FEATURE_MDEV_RENAME = True, + DEF_ENABLE_FEATURE_MDEV_RENAME_REGEXP = False] +Value stored to '__val_1258' is never read 16:L395 [USE___OPTIMIZE__ = 1, + USE__FORTIFY_SOURCE = 1, + DEF_ENABLE_FEATURE_MDEV_RENAME_REGEXP = True, + DEF_ENABLE_FEATURE_MDEV_RENAME = True, + DEF_ENABLE_FEATURE_MDEV_CONF = True, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True] +Value stored to '__val_1258' is never read 16:L395 [USE___OPTIMIZE__ = 1, + USE__FORTIFY_SOURCE = 1, + DEF_ENABLE_FEATURE_MDEV_RENAME_REGEXP = False, + DEF_ENABLE_FEATURE_MDEV_RENAME = True, + DEF_ENABLE_FEATURE_MDEV_CONF = True, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True] +Assigned value is garbage or undefined 14 [DEF_ENABLE_FEATURE_MDEV_RENAME_REGEXP = False, + USE__FORTIFY_SOURCE = 1, + DEF___OPTIMIZE__ = True, + DEF_ENABLE_FEATURE_MDEV_RENAME = False, + DEF__FORTIFY_SOURCE = True, + USE___OPTIMIZE__ = 0, + DEF_ENABLE_FEATURE_MDEV_CONF = False, + DEF___USE_EXTERN_INLINES = False] +Value stored to '__val_1258' is never read 16:L395 [DEF___OPTIMIZE__ = False, + USE__FORTIFY_SOURCE = 1, + DEF__FORTIFY_SOURCE = True, + USE___OPTIMIZE__ = 0, + DEF_ENABLE_FEATURE_MDEV_CONF = True, + DEF_ENABLE_FEATURE_MDEV_RENAME = True, + DEF_ENABLE_FEATURE_MDEV_RENAME_REGEXP = True] +Assigned value is garbage or undefined 14 [DEF_ENABLE_FEATURE_MDEV_RENAME_REGEXP = False, + DEF_ENABLE_FEATURE_MDEV_CONF = False, + DEF_ENABLE_FEATURE_MDEV_RENAME = True, + USE___OPTIMIZE__ = 1, + USE__FORTIFY_SOURCE = 1, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True, + DEF___USE_EXTERN_INLINES = False] + + infer: match 2 5 +BUSYBOX/0301ffab3d9 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +BUSYBOX/199501f2a00 BC generated : + clang: missing 1 infeasible:0 +Value stored to '__dt_1258' is never read 10 [USE___OPTIMIZE__ = 1, + USE__FORTIFY_SOURCE = 1, + DEF_ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS = False, + DEF___USE_EXTERN_INLINES = False, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True] +Value stored to '__dt_1258' is never read 10 [USE___OPTIMIZE__ = 1, + USE__FORTIFY_SOURCE = 1, + DEF_ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS = False, + DEF___USE_EXTERN_INLINES = True, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True] + + infer: missing1 2 +APACHE/d0040a07aec BC generated : + clang: none infeasible:0 + + infer: none 0 0 +APACHE/c76df14dfb4 BC generated : + clang: missing 1 infeasible:0 +Value stored to '__flags_1818' is never read 4:L42 [DEF___malloc_and_calloc_defined = False, + DEF_OS2 = False, + DEF_CROSS_COMPILE = False, + DEF_NEED_ENHANCED_ESCAPES = False, + DEF__STDLIB_H = True, + DEF___STRICT_ANSI__ = False, + DEF___need_malloc_and_calloc = False] +Value stored to '__flags_1818' is never read 4:L42 [DEF___malloc_and_calloc_defined = False, + DEF_OS2 = False, + DEF_CROSS_COMPILE = False, + DEF_NEED_ENHANCED_ESCAPES = False, + DEF___STRICT_ANSI__ = False, + DEF__STDLIB_H = False, + DEF___need_malloc_and_calloc = True] +Value stored to '__flags_1818' is never read 4:L42 [DEF___OPTIMIZE__ = True, + USE__FORTIFY_SOURCE = 1, + USE___OPTIMIZE__ = 0, + DEF__FORTIFY_SOURCE = True, + DEF___STRICT_ANSI__ = True, + DEF___need_malloc_and_calloc = False, + DEF_OS2 = False, + DEF__STDLIB_H = False, + DEF_CROSS_COMPILE = False, + DEF_NEED_ENHANCED_ESCAPES = False] +Value stored to '__flags_1818' is never read 4:L42 [USE___OPTIMIZE__ = 1, + USE__FORTIFY_SOURCE = 1, + DEF_NEED_ENHANCED_ESCAPES = False, + DEF_OS2 = False, + DEF___need_malloc_and_calloc = False, + DEF__STDLIB_H = False, + DEF_CROSS_COMPILE = False, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True, + DEF___STRICT_ANSI__ = True] + + infer: match 1 4 +APACHE/97ecbec1237 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +APACHE/bbeb0516cf0 BC generated : + clang: missing 1 infeasible:0 + + infer: missing1 0 +APACHE/1f46088b38d BC generated : + clang: none infeasible:0 + + infer: none 0 0 +APACHE/9327311d30f BC generated : + clang: none infeasible:0 + + infer: none 0 0 +APACHE/35ae2e259e4 BC generated : + clang: missing 1 infeasible:4 +Potential leak of memory pointed to by '__eckey_798' 0 [USE__FORTIFY_SOURCE = 1, + DEF___OPTIMIZE__ = False, + USE___OPTIMIZE__ = 0, + DEF__FORTIFY_SOURCE = True, + DEF___malloc_and_calloc_defined = True, + DEF___STRICT_ANSI__ = False, + DEF_HAVE_ECC = True, + DEF___need_malloc_and_calloc = False, + DEF__STDLIB_H = False] +Potential leak of memory pointed to by '__eckey_798' 0 [USE___OPTIMIZE__ = 1, + USE__FORTIFY_SOURCE = 1, + DEF_HAVE_ECC = True, + DEF___malloc_and_calloc_defined = False, + DEF___need_malloc_and_calloc = True, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True, + DEF__STDLIB_H = False] +Value stored to '__eckey_798' is never read 10 [USE___OPTIMIZE__ = 1, + USE__FORTIFY_SOURCE = 1, + DEF_HAVE_ECC = True, + DEF___malloc_and_calloc_defined = False, + DEF___need_malloc_and_calloc = True, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True, + DEF__STDLIB_H = False] +Potential leak of memory pointed to by '__eckey_798' 0 [USE___OPTIMIZE__ = 0, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True, + USE__FORTIFY_SOURCE = 1, + DEF___need_malloc_and_calloc = True, + DEF__STDLIB_H = False, + DEF_HAVE_ECC = True, + DEF___malloc_and_calloc_defined = False] +Potential leak of memory pointed to by '__eckey_798' 0 [USE___OPTIMIZE__ = 1, + USE__FORTIFY_SOURCE = 1, + DEF___STRICT_ANSI__ = False, + DEF_HAVE_ECC = True, + DEF___need_malloc_and_calloc = False, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True, + DEF__STDLIB_H = False] +Value stored to '__eckey_798' is never read 10 [USE__FORTIFY_SOURCE = 1, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True, + USE___OPTIMIZE__ = 0, + DEF___need_malloc_and_calloc = True, + DEF__STDLIB_H = False, + DEF_HAVE_ECC = True, + DEF___malloc_and_calloc_defined = False] + + infer: match 2 5 +APACHE/4202d5fee3e BC generated : + clang: none infeasible:0 + + infer: none 0 0 +APACHE/b833f064550 SuperC failed +APACHE/b833f064550 BC failed +APACHE/581635e28f1 BC generated : + clang: none infeasible:0 + + infer: none 0 1 +APACHE/2a6cbfa00e0 BC generated : + clang: missing 1 infeasible:0 +Potential leak of memory pointed to by '__sc_1020' 0 [USE___OPTIMIZE__ = 1, + USE__FORTIFY_SOURCE = 1, + DEF___STRICT_ANSI__ = False, + DEF_SHARED_MODULE = True, + DEF___need_malloc_and_calloc = False, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True] +Value stored to '__sc_1021' during its initialization is never read 6 [USE___OPTIMIZE__ = 1, + USE__FORTIFY_SOURCE = 1, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True] +Potential leak of memory pointed to by '__sc_1021' 9 [USE___OPTIMIZE__ = 1, + USE__FORTIFY_SOURCE = 1, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True] +Potential leak of memory pointed to by '__sc_1018' 0 [DEF___STRICT_ANSI__ = False, + USE__FORTIFY_SOURCE = 1, + USE___OPTIMIZE__ = 0, + DEF___OPTIMIZE__ = True, + DEF_SHARED_MODULE = True, + DEF__FORTIFY_SOURCE = True, + DEF___need_malloc_and_calloc = False] +Potential leak of memory pointed to by '__sc_1019' 0 [USE___OPTIMIZE__ = 1, + DEF___OPTIMIZE__ = True, + DEF___STRICT_ANSI__ = False, + DEF__FORTIFY_SOURCE = False, + DEF___need_malloc_and_calloc = False, + USE__FORTIFY_SOURCE = 1] + + infer: missing1 1 +APACHE/1a3c8e3d840 BC generated : + clang: none infeasible:0 +Value stored to '__thisopt_252' is never read 4:L13 [USE___OPTIMIZE__ = 0, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True, + USE__FORTIFY_SOURCE = 1, + DEF___USE_EXTERN_INLINES = True] +Value stored to '__thisopt_252' is never read 4:L13 [USE___OPTIMIZE__ = 1, + USE__FORTIFY_SOURCE = 1, + DEF___USE_EXTERN_INLINES = True, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True] +Value stored to '__thisopt_252' is never read 4:L13 [DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True, + USE___OPTIMIZE__ = 0, + USE__FORTIFY_SOURCE = 1, + DEF___USE_EXTERN_INLINES = False] +Value stored to '__thisopt_252' is never read 4:L13 [USE___OPTIMIZE__ = 1, + USE__FORTIFY_SOURCE = 1, + DEF___USE_EXTERN_INLINES = False, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True] + + infer: none 0 4 +APACHE/test BC generated : + clang: none infeasible:0 + + infer: none 0 0 +APACHE/dbafef17dd1 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +APACHE/3407eccc321 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +APACHE/664e3aac6dd BC generated : + clang: none infeasible:0 + + infer: none 0 0 +APACHE/d05e574ec26 BC generated : + clang: missing 1 infeasible:0 +Value stored to '__buf_2043' during its initialization is never read 16 [USE_APR_HAS_SHARED_MEMORY = 1] +Potential leak of memory pointed to by '__buf_2048' 0 [DEF__STDLIB_H = False, + DEF___STRICT_ANSI__ = True, + DEF___need_malloc_and_calloc = True, + DEF___malloc_and_calloc_defined = False, + USE_APR_HAS_SHARED_MEMORY = 1] +Value stored to '__buf_2047' during its initialization is never read 16 [USE_APR_HAS_SHARED_MEMORY = 1] +Potential leak of memory pointed to by '__buf_2042' 0 [DEF___need_malloc_and_calloc = True, + DEF___need___FILE = False, + DEF__FORTIFY_SOURCE = True, + DEF___OPTIMIZE__ = True, + DEF___malloc_and_calloc_defined = False, + USE__FORTIFY_SOURCE = 1, + DEF__STDLIB_H = False, + USE___OPTIMIZE__ = 0, + DEF___STRICT_ANSI__ = False, + USE_APR_HAS_SHARED_MEMORY = 1] +Potential leak of memory pointed to by '__buf_2045' 0 [DEF___OPTIMIZE__ = True, + DEF___need___FILE = False, + USE___OPTIMIZE__ = 0, + DEF___malloc_and_calloc_defined = False, + USE__FORTIFY_SOURCE = 1, + DEF__STDLIB_H = False, + DEF___STRICT_ANSI__ = True, + DEF___need_malloc_and_calloc = True, + DEF__FORTIFY_SOURCE = False, + USE_APR_HAS_SHARED_MEMORY = 1] +Potential leak of memory pointed to by '__buf_2044' 16 [USE_APR_HAS_SHARED_MEMORY = 1] +Potential leak of memory pointed to by '__buf_2046' 0 [DEF___need___FILE = True, + USE___OPTIMIZE__ = 0, + DEF___malloc_and_calloc_defined = False, + USE__FORTIFY_SOURCE = 1, + DEF___OPTIMIZE__ = True, + DEF__STDLIB_H = False, + DEF___STRICT_ANSI__ = False, + DEF___need_malloc_and_calloc = True, + DEF__FORTIFY_SOURCE = False, + USE_APR_HAS_SHARED_MEMORY = 1] +Potential leak of memory pointed to by '__buf_2043' 16 [USE_APR_HAS_SHARED_MEMORY = 1] +Value stored to '__buf_2044' during its initialization is never read 16 [USE_APR_HAS_SHARED_MEMORY = 1] +Potential leak of memory pointed to by '__buf_2041' 0 [DEF___OPTIMIZE__ = True, + USE__FORTIFY_SOURCE = 0, + DEF___malloc_and_calloc_defined = False, + USE___OPTIMIZE__ = 1, + DEF__FORTIFY_SOURCE = True, + DEF__STDLIB_H = False, + DEF___STRICT_ANSI__ = True, + DEF___need_malloc_and_calloc = False, + DEF___need___FILE = False, + USE_APR_HAS_SHARED_MEMORY = 1] +Value stored to '__buf_2048' during its initialization is never read 16 [USE_APR_HAS_SHARED_MEMORY = 1] +Potential leak of memory pointed to by '__buf_2047' 16 [USE_APR_HAS_SHARED_MEMORY = 1] + + infer: none 0 4 +APACHE/6338509eb37 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +APACHE/0900800fbab BC generated : + clang: none infeasible:0 + + infer: none 0 0 +APACHE/0ddfa412ee9 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +APACHE/4945115b2e7 BC generated : + clang: none infeasible:0 + + infer: missing2 0 +APACHE/56d9881993f BC generated : + clang: none infeasible:0 + + infer: none 0 0 +APACHE/1b48bb3c1af BC generated : + clang: missing 1 infeasible:0 +1st function call argument is an uninitialized value 14 [USE___OPTIMIZE__ = 0, + DEF___STRICT_ANSI__ = False, + USE__FORTIFY_SOURCE = 1, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True, + DEF_APR_HAS_SHARED_MEMORY = True, + DEF_APU_HAS_LDAP = True] +1st function call argument is an uninitialized value 14 [USE___OPTIMIZE__ = 1, + USE__FORTIFY_SOURCE = 1, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True, + DEF___STRICT_ANSI__ = False, + DEF_APR_HAS_SHARED_MEMORY = True, + DEF_APU_HAS_LDAP = True] + + infer: none 0 0 diff --git a/fonda/cpp_testsuite/varBugs/summaryTableReg.txt b/fonda/cpp_testsuite/varBugs/summaryTableReg.txt new file mode 100644 index 00000000..c9c83775 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/summaryTableReg.txt @@ -0,0 +1,1051 @@ +MARLIN/f87c80889fe BC generated : + clang: none infeasible:0 + + infer: none 0 0 +MARLIN/53be0f3399e BC failed +MARLIN/31873ec707d BC generated : + clang: none infeasible:0 + + infer: none 0 0 +MARLIN/2d22902d080 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +MARLIN/a7fc1f83c81 BC generated : + clang: none infeasible:0 +Value stored to '__len_218' during its initialization is never read 10 [DEF_SDSUPPORT = True] +Value stored to '__len_217' during its initialization is never read 10 [DEF_SDSUPPORT = True] +Value stored to '__lfilename_221' during its initialization is never read 15 [DEF_SDSUPPORT = True] + + infer: none 0 3 +MARLIN/30248214c7f BC generated : + clang: none infeasible:0 + + infer: none 0 0 +MARLIN/2db384a21d6 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +MARLIN/b8e79dce897 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +MARLIN/8c4377dd635 BC generated : + clang: none infeasible:0 +Value stored to '__pid_output_4' is never read 19 [DEF_PIDTEMP = False, DEF_MARLIN_H = True] +Value stored to '__pid_output_4' is never read 19 [DEF_PIDTEMP = False, DEF_MARLIN_H = False] + + infer: none 0 4 +MARLIN/fc3c76fc164 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +MARLIN/831016b09f7 BC generated : + clang: none infeasible:0 +Value stored to '__time_7' during its initialization is never read 14 [DEF_SDSUPPORT = True] + + infer: none 0 1 +MARLIN/e30bfedce4d BC generated : + clang: missing 1 infeasible:0 +Value stored to '__xGridSpacing_1' during its initialization is never read 24 [DEF_ENABLE_AUTO_BED_LEVELING = True] + + infer: match 1 1 +MARLIN/7336e6df070 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +MARLIN/fdac8f6cece BC generated : + clang: none infeasible:0 + + infer: none 0 0 +LINUX/d530db0db90 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +LINUX/bc8cec0dff0 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +LINUX/d7e9711760a BC generated : + clang: missing 1 infeasible:0 +Value stored to '__reserved_803' is never read 30 [DEF_CONFIG_QUOTA_DEBUG = True] + + infer: match 1 1 +LINUX/221ac329e93 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +LINUX/51fd36f3fad BC generated : + clang: none infeasible:3 + + infer: none 0 3 +LINUX/208d89843b7 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +LINUX/ee3f34e8572 BC generated : + clang: missing 1 infeasible:2 + + infer: missing1 0 +LINUX/472a474c663 BC generated : + clang: missing 1 infeasible:0 +Dereference of null pointer (loaded from variable '__ptr_3') 14 [DEF_CONFIG_SMP = True] + + infer: none 0 0 +LINUX/657e9649e74 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +LINUX/f7ab9b407b3 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +LINUX/36855dcfc98 BC generated : + clang: none infeasible:0 +Value stored to '__wakeup_0' is never read 6 [DEF_CONFIG_BF60x = False] + + infer: none 0 0 +LINUX/e1fbd9210d5 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +LINUX/66517915e09 BC generated : + clang: none infeasible:0 +Value stored to '__codec_hw_write_5' during its initialization is never read 24 [DEF_CONFIG_SND_FSI_AK4642 = True, + DEF_CONFIG_SND_SOC_AK4642 = False] +Value stored to '__codec_hw_write_1' during its initialization is never read 16 [DEF_CONFIG_SND_FSI_DA7210 = False, + DEF_CONFIG_SND_SOC_DA7210 = True] + + infer: none 0 2 +LINUX/7c6048b7c83 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +LINUX/f3d83e24154 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +LINUX/eb91f1d0a53 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +LINUX/1f758a4341a BC generated : + clang: none infeasible:0 + + infer: none 0 0 +LINUX/0988c4c7fb5 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +LINUX/242f1a34377 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +LINUX/2f02c15a5d9 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +LINUX/8c8296223f3 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +LINUX/68bb91baa0 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +LINUX/1c17e4d4437 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +LINUX/f48ec1d7885 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +LINUX/0dc77b6dabe BC generated : + clang: none infeasible:0 + + infer: none 0 0 +LINUX/6515e48932c BC generated : + clang: none infeasible:0 + + infer: none 0 0 +LINUX/91ea8207168 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +LINUX/6e2b75740be BC generated : + clang: none infeasible:4 +1st function call argument is an uninitialized value 60 [DEF_CONFIG_SMP = False, DEF_CONFIG_MODULE_UNLOAD = False] +Value stored to '__dest_12' during its initialization is never read 46 [] + + infer: none 0 1 +LINUX/76baeebf7df SuperC failed +LINUX/76baeebf7df BC failed +LINUX/218ad12f42e BC generated : + clang: none infeasible:0 + + infer: none 0 0 +LINUX/ae249b5fa27 BC generated : + clang: none infeasible:2 + + infer: none 0 2 +LINUX/e67bc51e574 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +LINUX/c708c57e247 BC generated : + clang: missing 1 infeasible:0 +Assigned value is garbage or undefined 18 [DEF_CONFIG_S390_PRNG = True] + + infer: none 0 0 +LINUX/809e660f438 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +LINUX/0f8f8094d28 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +LINUX/6252547b8a7 BC generated : + clang: missing 2 infeasible:0 +Dereference of null pointer (loaded from variable '__ops_1') 12 [DEF_CONFIG_TWL4030_CORE = True, DEF_CONFIG_OF_IRQ = False] +Value stored to '__irq_2' during its initialization is never read 12 [DEF_CONFIG_TWL4030_CORE = True, + DEF_CONFIG_IRQ_DOMAIN = False] + + infer: missing2 1 +LINUX/d6c7e113959 BC generated : + clang: none infeasible:0 + + infer: none 0 1 +LINUX/e39363a9def BC generated : + clang: missing 1 infeasible:0 +Undefined or garbage value returned to caller 17 [DEF_CONFIG_NETPOLL = True, DEF_CONFIG_IPV6 = False] + + infer: match 1 1 +LINUX/30e053248da BC generated : + clang: missing 2 infeasible:2 +Value stored to '__x_9' during its initialization is never read 31 [] + + infer: match 1 3 +LINUX/d549f55f2e1 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +LINUX/7acf6cd80b2 BC generated : + clang: missing 3 infeasible:0 +Value stored to '__driver_data_15' is never read 39 [DEF_CONFIG_UNIX98_PTYS = True] +1st function call argument is an uninitialized value 44 [DEF_CONFIG_UNIX98_PTYS = True] +Value stored to '__x_3' during its initialization is never read 8 [DEF_CONFIG_DEVPTS_MULTIPLE_INSTANCES = True] + + infer: match 2 2 +LINUX/60e233a5660 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +LINUX/63878acfafb BC generated : + clang: none infeasible:1 + + infer: none 0 1 +BUSYBOX/5275b1e49f6 BC generated : + clang: none infeasible:0 +Value stored to '__m_has_modinfo_2040' is never read 18 [USE___OPTIMIZE__ = 1, + USE__FORTIFY_SOURCE = 1, + DEF_CONFIG_FEATURE_INSMOD_VERSION_CHECKING = False, + DEF___need_malloc_and_calloc = False, + DEF__STDLIB_H = False, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True, + DEF___STRICT_ANSI__ = True] +Value stored to '__m_has_modinfo_2040' is never read 18 [DEF___OPTIMIZE__ = False, + USE__FORTIFY_SOURCE = 1, + DEF__FORTIFY_SOURCE = True, + USE___OPTIMIZE__ = 0, + DEF___need_malloc_and_calloc = False, + DEF___STRICT_ANSI__ = True, + DEF__STDLIB_H = False, + DEF_CONFIG_FEATURE_INSMOD_VERSION_CHECKING = False] +Value stored to '__m_has_modinfo_2040' is never read 16 [USE___OPTIMIZE__ = 1, + USE__FORTIFY_SOURCE = 1, + DEF_CONFIG_FEATURE_INSMOD_VERSION_CHECKING = True, + DEF___need_malloc_and_calloc = False, + DEF__STDLIB_H = False, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True, + DEF___STRICT_ANSI__ = True] +Value stored to '__k_crcs_2043' is never read 25 [USE___OPTIMIZE__ = 1, + USE__FORTIFY_SOURCE = 1, + DEF_CONFIG_FEATURE_INSMOD_VERSION_CHECKING = True, + DEF___need_malloc_and_calloc = False, + DEF__STDLIB_H = False, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True, + DEF___STRICT_ANSI__ = True] +Value stored to '__m_has_modinfo_2040' is never read 16 [DEF___OPTIMIZE__ = False, + DEF__FORTIFY_SOURCE = True, + USE__FORTIFY_SOURCE = 0, + USE___OPTIMIZE__ = 1, + DEF___need_malloc_and_calloc = False, + DEF__STDLIB_H = False, + DEF___STRICT_ANSI__ = True, + DEF_CONFIG_FEATURE_INSMOD_VERSION_CHECKING = False] +Value stored to '__k_crcs_2043' is never read 21 [USE__FORTIFY_SOURCE = 1, + USE___OPTIMIZE__ = 1, + DEF___OPTIMIZE__ = False, + DEF__FORTIFY_SOURCE = True, + DEF_CONFIG_FEATURE_INSMOD_VERSION_CHECKING = True, + DEF___need_malloc_and_calloc = False, + DEF__STDLIB_H = False] +Value stored to '__k_crcs_2043' is never read 21 [DEF__STDLIB_H = False, + DEF___need_malloc_and_calloc = True, + DEF_CONFIG_FEATURE_INSMOD_VERSION_CHECKING = True] +Value stored to '__k_crcs_2043' is never read 25 [USE__FORTIFY_SOURCE = 1, + DEF___OPTIMIZE__ = False, + USE___OPTIMIZE__ = 0, + DEF__FORTIFY_SOURCE = True, + DEF_CONFIG_FEATURE_INSMOD_VERSION_CHECKING = True, + DEF___need_malloc_and_calloc = False, + DEF___STRICT_ANSI__ = True, + DEF__STDLIB_H = False] +Value stored to '__m_has_modinfo_2040' is never read 16 [USE___OPTIMIZE__ = 1, + USE__FORTIFY_SOURCE = 1, + DEF_CONFIG_FEATURE_INSMOD_VERSION_CHECKING = False, + DEF___need_malloc_and_calloc = False, + DEF__STDLIB_H = False, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True, + DEF___STRICT_ANSI__ = True] +Value stored to '__m_has_modinfo_2040' is never read 18 [USE___OPTIMIZE__ = 1, + USE__FORTIFY_SOURCE = 1, + DEF_CONFIG_FEATURE_INSMOD_VERSION_CHECKING = True, + DEF___need_malloc_and_calloc = False, + DEF__STDLIB_H = False, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True, + DEF___STRICT_ANSI__ = True] +Value stored to '__k_crcs_2043' is never read 21 [USE___OPTIMIZE__ = 1, + USE__FORTIFY_SOURCE = 1, + DEF_CONFIG_FEATURE_INSMOD_VERSION_CHECKING = True, + DEF___need_malloc_and_calloc = False, + DEF__STDLIB_H = False, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True] +Value stored to '__m_has_modinfo_2040' is never read 18 [USE___OPTIMIZE__ = 0, + USE__FORTIFY_SOURCE = 1, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True, + DEF_CONFIG_FEATURE_INSMOD_VERSION_CHECKING = True, + DEF___need_malloc_and_calloc = False, + DEF___STRICT_ANSI__ = True, + DEF__STDLIB_H = False] +Value stored to '__m_has_modinfo_2040' is never read 16 [USE__FORTIFY_SOURCE = 1, + USE___OPTIMIZE__ = 0, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True, + DEF_CONFIG_FEATURE_INSMOD_VERSION_CHECKING = True, + DEF___need_malloc_and_calloc = False, + DEF___STRICT_ANSI__ = True, + DEF__STDLIB_H = False] + + infer: none 0 5 +BUSYBOX/5cd6461b6fb BC generated : + clang: none infeasible:0 + + infer: none 0 0 +BUSYBOX/1b487ea8a69 BC generated : + clang: missing 1 infeasible:0 +Dereference of null pointer (loaded from variable '__scontext_2038') 14 [USE___OPTIMIZE__ = 1, + USE__FORTIFY_SOURCE = 1, + DEF___need___FILE = False, + DEF_ENABLE_SELINUX = True, + DEF___STRICT_ANSI__ = True, + DEF_ENABLE_FEATURE_STAT_FORMAT = False, + DEF___need_malloc_and_calloc = False, + DEF__STDLIB_H = False, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True] +Dereference of null pointer (loaded from variable '__scontext_2038') 14 [USE__FORTIFY_SOURCE = 1, + USE___OPTIMIZE__ = 0, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True, + DEF___need___FILE = False, + DEF___STRICT_ANSI__ = True, + DEF_ENABLE_SELINUX = True, + DEF_ENABLE_FEATURE_STAT_FORMAT = False, + DEF___need_malloc_and_calloc = False, + DEF__STDLIB_H = False] + + infer: match 1 2 +BUSYBOX/b7ebc61b54f BC generated : + clang: none infeasible:0 + + infer: none 0 0 +BUSYBOX/ebee301c8b0 BC generated : + clang: none infeasible:2 + + infer: none 0 2 +BUSYBOX/b273d665181 BC generated : + clang: missing 1 infeasible:2 +2nd function call argument is an uninitialized value 16 [USE___OPTIMIZE__ = 1, + USE__FORTIFY_SOURCE = 1, + DEF___need___FILE = False, + DEF___STRICT_ANSI__ = True, + DEF_BB_FEATURE_LS_USERNAME = False, + DEF_BB_FEATURE_LS_FILETYPES = True, + DEF___need_malloc_and_calloc = False, + DEF__STDLIB_H = False, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True] +2nd function call argument is an uninitialized value 16 [DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True, + USE__FORTIFY_SOURCE = 1, + USE___OPTIMIZE__ = 0, + DEF___need___FILE = False, + DEF_BB_FEATURE_LS_USERNAME = False, + DEF___STRICT_ANSI__ = True, + DEF_BB_FEATURE_LS_FILETYPES = True, + DEF___need_malloc_and_calloc = False, + DEF__STDLIB_H = False] +Value stored to '__info_2036' is never read 11 [DEF_BB_FEATURE_LS_USERNAME = True, + DEF__STDLIB_H = True, + DEF_BB_FEATURE_LS_FILETYPES = True, + DEF___need_malloc_and_calloc = False] + + infer: match 1 4 +BUSYBOX/df7b6577c6a BC generated : + clang: none infeasible:0 + + infer: none 0 0 +BUSYBOX/061fd0a353e BC generated : + clang: none infeasible:0 +Value stored to '__p_2040' is never read 16 [USE___OPTIMIZE__ = 1, + USE__FORTIFY_SOURCE = 1, + DEF_CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF = False, + DEF_CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF = True, + DEF___need_malloc_and_calloc = False, + DEF__STDLIB_H = False, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True, + DEF___STRICT_ANSI__ = True] +Value stored to '__p_2040' is never read 16 [DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True, + USE__FORTIFY_SOURCE = 1, + USE___OPTIMIZE__ = 0, + DEF_CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF = True, + DEF___need_malloc_and_calloc = False, + DEF__STDLIB_H = False, + DEF___STRICT_ANSI__ = True, + DEF_CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF = False] + + infer: none 0 2 +BUSYBOX/eef2317b9f5 BC generated : + clang: missing 1 infeasible:1 +Value stored to '__buf_964' is never read 26 [DEF___malloc_and_calloc_defined = False, + DEF___STRICT_ANSI__ = False, + DEF___need_malloc_and_calloc = False, + USE__FORTIFY_SOURCE = 1, + USE___OPTIMIZE__ = 1, + DEF__FORTIFY_SOURCE = True, + DEF__STDLIB_H = False, + DEF___OPTIMIZE__ = True, + DEF_CONFIG_FEATURE_CLEAN_UP = False] +Value stored to '__buf_964' is never read 26 [USE___OPTIMIZE__ = 1, + DEF___malloc_and_calloc_defined = True, + DEF___OPTIMIZE__ = False, + DEF___STRICT_ANSI__ = False, + DEF__FORTIFY_SOURCE = True, + USE__FORTIFY_SOURCE = 0, + DEF___need_malloc_and_calloc = False, + DEF__STDLIB_H = False, + DEF_CONFIG_FEATURE_CLEAN_UP = False] +Potential leak of memory pointed to by '__buf_964' 0 [USE__FORTIFY_SOURCE = 1, + USE___OPTIMIZE__ = 1, + DEF__FORTIFY_SOURCE = True, + DEF___OPTIMIZE__ = True, + DEF___malloc_and_calloc_defined = False, + DEF___need_malloc_and_calloc = True, + DEF__STDLIB_H = False, + DEF_CONFIG_FEATURE_CLEAN_UP = True] +Potential leak of memory pointed to by '__buf_964' 0 [DEF___OPTIMIZE__ = True, + DEF___STRICT_ANSI__ = True, + DEF__FORTIFY_SOURCE = True, + USE__FORTIFY_SOURCE = 1, + USE___OPTIMIZE__ = 0, + DEF___malloc_and_calloc_defined = False, + DEF___need_malloc_and_calloc = True, + DEF__STDLIB_H = False, + DEF_CONFIG_FEATURE_CLEAN_UP = True] +Potential leak of memory pointed to by '__buf_964' 0 [DEF___malloc_and_calloc_defined = False, + DEF___STRICT_ANSI__ = False, + DEF___need_malloc_and_calloc = True, + USE__FORTIFY_SOURCE = 1, + USE___OPTIMIZE__ = 1, + DEF__FORTIFY_SOURCE = True, + DEF__STDLIB_H = False, + DEF___OPTIMIZE__ = True, + DEF_CONFIG_FEATURE_CLEAN_UP = False] +Potential leak of memory pointed to by '__buf_964' 0 [DEF___malloc_and_calloc_defined = False, + USE__FORTIFY_SOURCE = 1, + USE___OPTIMIZE__ = 0, + DEF___STRICT_ANSI__ = False, + DEF__FORTIFY_SOURCE = True, + DEF___need_malloc_and_calloc = False, + DEF___OPTIMIZE__ = True, + DEF__STDLIB_H = False, + DEF_CONFIG_FEATURE_CLEAN_UP = False] + + infer: match 1 3 +BUSYBOX/192c35f6eb2 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +BUSYBOX/2631486f1bf BC generated : + clang: missing 1 infeasible:6 +Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' 65 [USE__FORTIFY_SOURCE = 1, + USE___OPTIMIZE__ = 0, + DEF___OPTIMIZE__ = False, + DEF___STRICT_ANSI__ = False, + DEF__FORTIFY_SOURCE = True, + DEF___malloc_and_calloc_defined = False, + DEF___need_malloc_and_calloc = True, + DEF___need___FILE = True, + DEF__STDLIB_H = False, + DEF_CONFIG_FEATURE_LS_SORTFILES = True] +Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' 65 [DEF___malloc_and_calloc_defined = True, + DEF___STRICT_ANSI__ = False, + DEF___need_malloc_and_calloc = False, + USE___OPTIMIZE__ = 1, + USE__FORTIFY_SOURCE = 1, + DEF__FORTIFY_SOURCE = True, + DEF___need___FILE = True, + DEF__STDLIB_H = False, + DEF___OPTIMIZE__ = True, + DEF_CONFIG_FEATURE_LS_SORTFILES = True] +Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' 65 [DEF___STRICT_ANSI__ = True, + DEF___need_malloc_and_calloc = False, + DEF___malloc_and_calloc_defined = False, + USE___OPTIMIZE__ = 1, + USE__FORTIFY_SOURCE = 1, + DEF__FORTIFY_SOURCE = True, + DEF___need___FILE = True, + DEF__STDLIB_H = False, + DEF___OPTIMIZE__ = True, + DEF_CONFIG_FEATURE_LS_SORTFILES = False] +Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' 65 [DEF__FORTIFY_SOURCE = True, + DEF___need_malloc_and_calloc = False, + DEF___OPTIMIZE__ = True, + DEF___malloc_and_calloc_defined = False, + USE___OPTIMIZE__ = 0, + USE__FORTIFY_SOURCE = 1, + DEF___STRICT_ANSI__ = True, + DEF___need___FILE = False, + DEF__STDLIB_H = False, + DEF_CONFIG_FEATURE_LS_SORTFILES = False] +Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' 65 [DEF___malloc_and_calloc_defined = False, + DEF___STRICT_ANSI__ = False, + DEF___need_malloc_and_calloc = False, + USE___OPTIMIZE__ = 1, + USE__FORTIFY_SOURCE = 1, + DEF__FORTIFY_SOURCE = True, + DEF___need___FILE = False, + DEF__STDLIB_H = False, + DEF___OPTIMIZE__ = True, + DEF_CONFIG_FEATURE_LS_SORTFILES = True] +Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' 65 [DEF___STRICT_ANSI__ = False, + DEF___malloc_and_calloc_defined = False, + DEF___need_malloc_and_calloc = True, + USE__FORTIFY_SOURCE = 1, + USE___OPTIMIZE__ = 1, + DEF__FORTIFY_SOURCE = True, + DEF___need___FILE = False, + DEF__STDLIB_H = False, + DEF___OPTIMIZE__ = True, + DEF_CONFIG_FEATURE_LS_SORTFILES = False] +Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' 65 [USE___OPTIMIZE__ = 0, + DEF___malloc_and_calloc_defined = True, + DEF___OPTIMIZE__ = True, + USE__FORTIFY_SOURCE = 1, + DEF___STRICT_ANSI__ = False, + DEF__FORTIFY_SOURCE = True, + DEF___need_malloc_and_calloc = False, + DEF___need___FILE = False, + DEF__STDLIB_H = False, + DEF_CONFIG_FEATURE_LS_SORTFILES = True] +Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' 65 [DEF___malloc_and_calloc_defined = False, + USE___OPTIMIZE__ = 0, + DEF___OPTIMIZE__ = True, + DEF___STRICT_ANSI__ = False, + DEF__FORTIFY_SOURCE = True, + USE__FORTIFY_SOURCE = 1, + DEF___need_malloc_and_calloc = True, + DEF___need___FILE = True, + DEF__STDLIB_H = False, + DEF_CONFIG_FEATURE_LS_SORTFILES = False] + + infer: missing2 5 +BUSYBOX/95755181b82 BC failed +BUSYBOX/cc3f20b9bdf BC generated : + clang: none infeasible:0 + + infer: none 0 0 +BUSYBOX/cf1f2ace391 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +BUSYBOX/bc0ffc0e971 BC generated : + clang: missing 1 infeasible:10 +Result of 'malloc' is converted to a pointer of type '__ethtable_t_2394', which is incompatible with sizeof operand type 'struct (anonymous struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3337:1)' 29 [DEF___OPTIMIZE__ = True, + DEF___need_malloc_and_calloc = False, + USE__FORTIFY_SOURCE = 1, + DEF___malloc_and_calloc_defined = False, + USE___OPTIMIZE__ = 0, + DEF___STRICT_ANSI__ = True, + DEF__FORTIFY_SOURCE = True, + DEF___need___FILE = True, + DEF__STDLIB_H = False] +Result of 'malloc' is converted to a pointer of type '__ethtable_t_2395', which is incompatible with sizeof operand type 'struct (anonymous struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3405:1)' 29 [DEF___malloc_and_calloc_defined = False, + DEF___STRICT_ANSI__ = False, + DEF___need_malloc_and_calloc = True, + USE___OPTIMIZE__ = 1, + USE__FORTIFY_SOURCE = 1, + DEF___need___FILE = False, + DEF__STDLIB_H = False, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True] +Result of 'malloc' is converted to a pointer of type '__ethtable_t_2395', which is incompatible with sizeof operand type 'struct (anonymous struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3405:1)' 29 [DEF___STRICT_ANSI__ = True, + DEF___malloc_and_calloc_defined = False, + DEF___need_malloc_and_calloc = False, + USE___OPTIMIZE__ = 1, + USE__FORTIFY_SOURCE = 1, + DEF___need___FILE = True, + DEF__STDLIB_H = False, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True] +Result of 'malloc' is converted to a pointer of type '__ethtable_t_2394', which is incompatible with sizeof operand type 'struct (anonymous struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3337:1)' 29 [DEF___need_malloc_and_calloc = False, + USE___OPTIMIZE__ = 1, + DEF___OPTIMIZE__ = True, + DEF___STRICT_ANSI__ = True, + DEF__FORTIFY_SOURCE = True, + DEF___malloc_and_calloc_defined = False, + USE__FORTIFY_SOURCE = 0, + DEF___need___FILE = False, + DEF__STDLIB_H = False] + + infer: missing1 2 +BUSYBOX/b62bd7b261b BC generated : + clang: missing 2 infeasible:0 +Branch condition evaluates to a garbage value 16:L395 [DEF___CORRECT_ISO_CPP_STRING_H_PROTO = True, + DEF___OPTIMIZE__ = True, + USE__FORTIFY_SOURCE = 1, + USE___OPTIMIZE__ = 0, + DEF__FORTIFY_SOURCE = True, + DEF_ENABLE_FEATURE_MDEV_CONF = True, + DEF_ENABLE_FEATURE_MDEV_RENAME_REGEXP = True, + DEF_ENABLE_FEATURE_MDEV_RENAME = True, + DEF___need_malloc_and_calloc = False, + DEF__STDLIB_H = False, + DEF___STRICT_ANSI__ = True] +Value stored to '__val_2390' is never read 16:L395 [USE___OPTIMIZE__ = 1, + USE__FORTIFY_SOURCE = 1, + DEF_ENABLE_FEATURE_MDEV_RENAME_REGEXP = True, + DEF_ENABLE_FEATURE_MDEV_RENAME = True, + DEF_ENABLE_FEATURE_MDEV_CONF = True, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True] +Value stored to '__val_2390' is never read 16:L395 [DEF___OPTIMIZE__ = False, + USE__FORTIFY_SOURCE = 1, + DEF__FORTIFY_SOURCE = True, + USE___OPTIMIZE__ = 0, + DEF_ENABLE_FEATURE_MDEV_CONF = True, + DEF_ENABLE_FEATURE_MDEV_RENAME = True, + DEF_ENABLE_FEATURE_MDEV_RENAME_REGEXP = True] +Value stored to '__val_2390' is never read 16:L395 [DEF___OPTIMIZE__ = False, + DEF__FORTIFY_SOURCE = True, + USE__FORTIFY_SOURCE = 0, + USE___OPTIMIZE__ = 1, + DEF_ENABLE_FEATURE_MDEV_CONF = True, + DEF_ENABLE_FEATURE_MDEV_RENAME = True, + DEF_ENABLE_FEATURE_MDEV_RENAME_REGEXP = False] +Assigned value is garbage or undefined 14 [DEF_ENABLE_FEATURE_MDEV_RENAME = False, + DEF_ENABLE_FEATURE_MDEV_RENAME_REGEXP = False, + DEF_ENABLE_FEATURE_MDEV_CONF = True, + USE___OPTIMIZE__ = 1, + USE__FORTIFY_SOURCE = 1, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True, + DEF___need_malloc_and_calloc = False, + DEF__STDLIB_H = False, + DEF___STRICT_ANSI__ = True] +Dereference of undefined pointer value (loaded from variable '__p_2392') 24 [USE___OPTIMIZE__ = 1, + USE__FORTIFY_SOURCE = 1, + DEF___need_malloc_and_calloc = False, + DEF__STDLIB_H = False, + DEF___STRICT_ANSI__ = True, + DEF___CORRECT_ISO_CPP_STRING_H_PROTO = False, + DEF_ENABLE_FEATURE_MDEV_RENAME_REGEXP = True, + DEF_ENABLE_FEATURE_MDEV_RENAME = True, + DEF_ENABLE_FEATURE_MDEV_CONF = True, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True] +Value stored to '__a_2393' during its initialization is never read 14 [USE__FORTIFY_SOURCE = 1, + DEF_ENABLE_FEATURE_MDEV_RENAME = False, + DEF_ENABLE_FEATURE_MDEV_RENAME_REGEXP = False, + DEF___OPTIMIZE__ = False, + DEF__FORTIFY_SOURCE = True, + USE___OPTIMIZE__ = 0, + DEF_ENABLE_FEATURE_MDEV_CONF = True] +Value stored to '__a_2393' during its initialization is never read 14 [DEF_ENABLE_FEATURE_MDEV_RENAME = True, + DEF_ENABLE_FEATURE_MDEV_RENAME_REGEXP = False, + DEF_ENABLE_FEATURE_MDEV_CONF = True, + USE___OPTIMIZE__ = 1, + USE__FORTIFY_SOURCE = 1, + DEF__FORTIFY_SOURCE = True, + DEF___OPTIMIZE__ = True] +Value stored to '__val_2390' is never read 16:L395 [USE___OPTIMIZE__ = 1, + USE__FORTIFY_SOURCE = 1, + DEF_ENABLE_FEATURE_MDEV_RENAME_REGEXP = False, + DEF_ENABLE_FEATURE_MDEV_RENAME = True, + DEF_ENABLE_FEATURE_MDEV_CONF = True, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True] +Branch condition evaluates to a garbage value 16:L395 [USE___OPTIMIZE__ = 1, + USE__FORTIFY_SOURCE = 1, + DEF___need_malloc_and_calloc = False, + DEF__STDLIB_H = False, + DEF___STRICT_ANSI__ = True, + DEF___CORRECT_ISO_CPP_STRING_H_PROTO = True, + DEF_ENABLE_FEATURE_MDEV_RENAME_REGEXP = True, + DEF_ENABLE_FEATURE_MDEV_RENAME = True, + DEF_ENABLE_FEATURE_MDEV_CONF = True, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True] +Branch condition evaluates to a garbage value 16:L395 [USE___OPTIMIZE__ = 1, + USE__FORTIFY_SOURCE = 1, + DEF___need_malloc_and_calloc = False, + DEF__STDLIB_H = False, + DEF___STRICT_ANSI__ = True, + DEF___CORRECT_ISO_CPP_STRING_H_PROTO = True, + DEF_ENABLE_FEATURE_MDEV_RENAME_REGEXP = False, + DEF_ENABLE_FEATURE_MDEV_RENAME = True, + DEF_ENABLE_FEATURE_MDEV_CONF = True, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True] +Dereference of undefined pointer value (loaded from variable '__p_2392') 24 [DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True, + USE___OPTIMIZE__ = 0, + USE__FORTIFY_SOURCE = 1, + DEF___CORRECT_ISO_CPP_STRING_H_PROTO = False, + DEF_ENABLE_FEATURE_MDEV_CONF = True, + DEF_ENABLE_FEATURE_MDEV_RENAME = True, + DEF_ENABLE_FEATURE_MDEV_RENAME_REGEXP = True, + DEF___need_malloc_and_calloc = False, + DEF__STDLIB_H = False, + DEF___STRICT_ANSI__ = True] +Branch condition evaluates to a garbage value 16:L395 [USE___OPTIMIZE__ = 0, + DEF___CORRECT_ISO_CPP_STRING_H_PROTO = True, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True, + USE__FORTIFY_SOURCE = 1, + DEF_ENABLE_FEATURE_MDEV_CONF = True, + DEF_ENABLE_FEATURE_MDEV_RENAME = True, + DEF_ENABLE_FEATURE_MDEV_RENAME_REGEXP = False, + DEF___need_malloc_and_calloc = False, + DEF__STDLIB_H = False, + DEF___STRICT_ANSI__ = True] +Assigned value is garbage or undefined 14 [USE___OPTIMIZE__ = 0, + USE__FORTIFY_SOURCE = 1, + DEF___OPTIMIZE__ = True, + DEF_ENABLE_FEATURE_MDEV_RENAME = True, + DEF__FORTIFY_SOURCE = True, + DEF_ENABLE_FEATURE_MDEV_RENAME_REGEXP = False, + DEF_ENABLE_FEATURE_MDEV_CONF = False, + DEF___need_malloc_and_calloc = False, + DEF__STDLIB_H = False, + DEF___STRICT_ANSI__ = True] + + infer: match 2 5 +BUSYBOX/0301ffab3d9 BC generated : + clang: none infeasible:0 +Value stored to '__gdp_0' is never read 7 [DEF_EXT2FS_ENABLE_SWAPFS = True] + + infer: none 0 1 +BUSYBOX/199501f2a00 BC generated : + clang: missing 1 infeasible:0 +Value stored to '__dt_2390' is never read 10 [USE___OPTIMIZE__ = 1, + USE__FORTIFY_SOURCE = 1, + DEF_ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS = False, + DEF___need_malloc_and_calloc = False, + DEF__STDLIB_H = False, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True, + DEF___STRICT_ANSI__ = True] + + infer: missing1 1 +APACHE/d0040a07aec BC generated : + clang: none infeasible:0 + + infer: none 0 0 +APACHE/c76df14dfb4 BC generated : + clang: missing 1 infeasible:0 +Value stored to '__flags_2323' is never read 4:L42 [USE___OPTIMIZE__ = 0, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True, + USE__FORTIFY_SOURCE = 1, + DEF_NEED_ENHANCED_ESCAPES = False, + DEF_OS2 = False, + DEF__STDLIB_H = False, + DEF_CROSS_COMPILE = False, + DEF___need_malloc_and_calloc = False, + DEF___CORRECT_ISO_CPP_STRING_H_PROTO = False] +Value stored to '__flags_2323' is never read 4:L42 [USE___OPTIMIZE__ = 1, + USE__FORTIFY_SOURCE = 1, + DEF_NEED_ENHANCED_ESCAPES = False, + DEF_OS2 = False, + DEF___need_malloc_and_calloc = False, + DEF__STDLIB_H = False, + DEF_CROSS_COMPILE = False, + DEF___CORRECT_ISO_CPP_STRING_H_PROTO = False, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True] +Value stored to '__flags_2323' is never read 4:L42 [DEF___malloc_and_calloc_defined = True, + DEF_OS2 = False, + DEF_CROSS_COMPILE = False, + DEF___CORRECT_ISO_CPP_STRING_H_PROTO = False, + DEF_NEED_ENHANCED_ESCAPES = False, + DEF__STDLIB_H = False, + DEF___need_malloc_and_calloc = True] +Value stored to '__flags_2323' is never read 4:L42 [DEF___malloc_and_calloc_defined = False, + DEF_OS2 = False, + DEF___CORRECT_ISO_CPP_STRING_H_PROTO = False, + DEF_CROSS_COMPILE = False, + DEF__STDLIB_H = False, + DEF_NEED_ENHANCED_ESCAPES = False, + DEF___need_malloc_and_calloc = True] + + infer: match 1 4 +APACHE/97ecbec1237 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +APACHE/bbeb0516cf0 BC generated : + clang: missing 1 infeasible:0 + + infer: missing1 0 +APACHE/1f46088b38d BC generated : + clang: none infeasible:0 + + infer: none 0 0 +APACHE/9327311d30f BC generated : + clang: none infeasible:0 + + infer: none 0 0 +APACHE/35ae2e259e4 BC generated : + clang: missing 1 infeasible:4 +Value stored to '__eckey_798' is never read 10 [USE___OPTIMIZE__ = 1, + USE__FORTIFY_SOURCE = 1, + DEF_HAVE_ECC = True, + DEF___malloc_and_calloc_defined = False, + DEF___need_malloc_and_calloc = True, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True, + DEF__STDLIB_H = False] +Value stored to '__eckey_798' is never read 10 [DEF___OPTIMIZE__ = True, + USE___OPTIMIZE__ = 0, + DEF__FORTIFY_SOURCE = True, + USE__FORTIFY_SOURCE = 1, + DEF___need_malloc_and_calloc = True, + DEF__STDLIB_H = False, + DEF_HAVE_ECC = True, + DEF___malloc_and_calloc_defined = False] +Potential leak of memory pointed to by '__eckey_798' 0 [USE___OPTIMIZE__ = 1, + USE__FORTIFY_SOURCE = 1, + DEF___STRICT_ANSI__ = False, + DEF_HAVE_ECC = True, + DEF___need_malloc_and_calloc = False, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True, + DEF__STDLIB_H = False] +Potential leak of memory pointed to by '__eckey_798' 0 [DEF___STRICT_ANSI__ = False, + USE___OPTIMIZE__ = 0, + DEF___OPTIMIZE__ = True, + USE__FORTIFY_SOURCE = 0, + DEF__FORTIFY_SOURCE = True, + DEF___malloc_and_calloc_defined = True, + DEF_HAVE_ECC = True, + DEF___need_malloc_and_calloc = False, + DEF__STDLIB_H = False] +Potential leak of memory pointed to by '__eckey_798' 0 [USE___OPTIMIZE__ = 1, + USE__FORTIFY_SOURCE = 1, + DEF_HAVE_ECC = True, + DEF___malloc_and_calloc_defined = False, + DEF___need_malloc_and_calloc = True, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True, + DEF__STDLIB_H = False] +Potential leak of memory pointed to by '__eckey_798' 0 [USE__FORTIFY_SOURCE = 1, + USE___OPTIMIZE__ = 0, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True, + DEF___need_malloc_and_calloc = True, + DEF__STDLIB_H = False, + DEF_HAVE_ECC = True, + DEF___malloc_and_calloc_defined = False] + + infer: match 2 5 +APACHE/4202d5fee3e BC generated : + clang: none infeasible:0 + + infer: none 0 0 +APACHE/b833f064550 SuperC failed +APACHE/b833f064550 BC failed +APACHE/581635e28f1 BC generated : + clang: none infeasible:0 + + infer: none 0 1 +APACHE/2a6cbfa00e0 BC generated : + clang: missing 1 infeasible:1 +Potential leak of memory pointed to by '__sc_1085' 0 [DEF___malloc_and_calloc_defined = True, + DEF___STRICT_ANSI__ = False, + DEF_SHARED_MODULE = False, + DEF___need_malloc_and_calloc = False, + USE___OPTIMIZE__ = 1, + USE__FORTIFY_SOURCE = 1, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True, + DEF__STDLIB_H = False] + + infer: missing1 0 +APACHE/1a3c8e3d840 BC generated : + clang: none infeasible:0 +Value stored to '__thisopt_798' is never read 4:L13 [USE___OPTIMIZE__ = 1, + USE__FORTIFY_SOURCE = 1, + DEF_HAVE_TLSV1_X = True, + DEF___need_malloc_and_calloc = False, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True, + DEF___STRICT_ANSI__ = True, + DEF__STDLIB_H = False] +Value stored to '__thisopt_798' is never read 4:L13 [USE__FORTIFY_SOURCE = 1, + USE___OPTIMIZE__ = 0, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = False, + DEF_HAVE_TLSV1_X = True, + DEF___need_malloc_and_calloc = False, + DEF__STDLIB_H = False, + DEF___STRICT_ANSI__ = True] + + infer: none 0 2 +APACHE/test BC generated : + clang: none infeasible:0 + + infer: none 0 0 +APACHE/dbafef17dd1 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +APACHE/3407eccc321 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +APACHE/664e3aac6dd BC generated : + clang: none infeasible:0 + + infer: none 0 0 +APACHE/d05e574ec26 BC generated : + clang: missing 1 infeasible:0 +Potential leak of memory pointed to by '__buf_2047' 16 [USE_APR_HAS_SHARED_MEMORY = 1] +Value stored to '__buf_2044' during its initialization is never read 16 [USE_APR_HAS_SHARED_MEMORY = 1] +Value stored to '__buf_2048' during its initialization is never read 16 [USE_APR_HAS_SHARED_MEMORY = 1] +Potential leak of memory pointed to by '__buf_2048' 0 [DEF___malloc_and_calloc_defined = True, + DEF___need_malloc_and_calloc = False, + DEF___STRICT_ANSI__ = False, + DEF__STDLIB_H = False, + USE_APR_HAS_SHARED_MEMORY = 1] +Value stored to '__buf_2047' during its initialization is never read 16 [USE_APR_HAS_SHARED_MEMORY = 1] +Potential leak of memory pointed to by '__buf_2043' 16 [USE_APR_HAS_SHARED_MEMORY = 1] +Potential leak of memory pointed to by '__buf_2041' 0 [DEF___need___FILE = False, + USE__FORTIFY_SOURCE = 1, + DEF___OPTIMIZE__ = True, + DEF___malloc_and_calloc_defined = False, + USE___OPTIMIZE__ = 1, + DEF___STRICT_ANSI__ = False, + DEF__STDLIB_H = False, + DEF___need_malloc_and_calloc = True, + DEF__FORTIFY_SOURCE = True, + USE_APR_HAS_SHARED_MEMORY = 1] +Potential leak of memory pointed to by '__buf_2044' 16 [USE_APR_HAS_SHARED_MEMORY = 1] +Potential leak of memory pointed to by '__buf_2042' 0 [DEF___OPTIMIZE__ = True, + USE__FORTIFY_SOURCE = 1, + DEF___malloc_and_calloc_defined = False, + DEF__FORTIFY_SOURCE = True, + USE___OPTIMIZE__ = 1, + DEF___STRICT_ANSI__ = True, + DEF__STDLIB_H = False, + DEF___need_malloc_and_calloc = False, + DEF___need___FILE = True, + USE_APR_HAS_SHARED_MEMORY = 1] +Potential leak of memory pointed to by '__buf_2045' 0 [DEF__FORTIFY_SOURCE = True, + DEF___need___FILE = False, + DEF___malloc_and_calloc_defined = False, + USE___OPTIMIZE__ = 1, + DEF___OPTIMIZE__ = True, + DEF___STRICT_ANSI__ = True, + DEF__STDLIB_H = False, + DEF___need_malloc_and_calloc = True, + USE__FORTIFY_SOURCE = 0, + USE_APR_HAS_SHARED_MEMORY = 1] +Potential leak of memory pointed to by '__buf_2046' 0 [DEF__FORTIFY_SOURCE = True, + USE__FORTIFY_SOURCE = 1, + USE___OPTIMIZE__ = 0, + DEF___malloc_and_calloc_defined = False, + DEF___OPTIMIZE__ = True, + DEF___need___FILE = True, + DEF__STDLIB_H = False, + DEF___STRICT_ANSI__ = True, + DEF___need_malloc_and_calloc = True, + USE_APR_HAS_SHARED_MEMORY = 1] +Value stored to '__buf_2043' during its initialization is never read 16 [USE_APR_HAS_SHARED_MEMORY = 1] + + infer: none 0 4 +APACHE/6338509eb37 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +APACHE/0900800fbab BC generated : + clang: none infeasible:0 + + infer: none 0 0 +APACHE/0ddfa412ee9 BC generated : + clang: none infeasible:0 + + infer: none 0 0 +APACHE/4945115b2e7 BC generated : + clang: none infeasible:0 + + infer: missing2 0 +APACHE/56d9881993f BC generated : + clang: none infeasible:0 + + infer: none 0 0 +APACHE/1b48bb3c1af BC generated : + clang: missing 1 infeasible:0 +1st function call argument is an uninitialized value 14 [USE___OPTIMIZE__ = 1, + USE__FORTIFY_SOURCE = 0, + DEF___OPTIMIZE__ = False, + DEF___STRICT_ANSI__ = False, + DEF__FORTIFY_SOURCE = False, + DEF___need___FILE = False, + DEF_APR_HAS_SHARED_MEMORY = True, + DEF_APU_HAS_LDAP = True] +1st function call argument is an uninitialized value 14 [USE___OPTIMIZE__ = 1, + USE__FORTIFY_SOURCE = 1, + DEF___OPTIMIZE__ = True, + DEF__FORTIFY_SOURCE = True, + DEF___STRICT_ANSI__ = False, + DEF___need___FILE = False, + DEF_APR_HAS_SHARED_MEMORY = True, + DEF_APU_HAS_LDAP = True] +1st function call argument is an uninitialized value 14 [DEF___need___FILE = True, + DEF_APR_HAS_SHARED_MEMORY = True, + DEF_APU_HAS_LDAP = True] + + infer: none 0 0 diff --git a/fonda/cpp_testsuite/varBugs/test.c b/fonda/cpp_testsuite/varBugs/test.c new file mode 100644 index 00000000..b2f99762 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/test.c @@ -0,0 +1,2 @@ +int main() { +} From 791c9247e97a44b64b5405a6c12fe1845c0673af Mon Sep 17 00:00:00 2001 From: pattersonz Date: Tue, 30 Aug 2022 17:05:56 -0500 Subject: [PATCH 16/77] changed unsupported semantic actions to parse errors --- .../varBugs/APACHE-1b48bb3c1af.report | 4 +- .../varBugs/APACHE-2a6cbfa00e0.report | 4 +- .../varBugs/APACHE-35ae2e259e4.report | 21 +- .../APACHE/0900800fbab.desugared.inferres | 2 - .../varBugs/APACHE/0900800fbab.inferres | 2 - .../APACHE/0ddfa412ee9.desugared.inferres | 2 - .../varBugs/APACHE/0ddfa412ee9.inferres | 2 - .../APACHE/1a3c8e3d840.desugared.inferres | 41 -- .../varBugs/APACHE/1a3c8e3d840.inferres | 0 ...1b48bb3c1af.desugared.c.desugared.inferres | 2 - .../APACHE/1b48bb3c1af.desugared.c.inferres | 0 .../APACHE/1b48bb3c1af.desugared.inferres | 2 - .../varBugs/APACHE/1b48bb3c1af.inferres | 2 - .../APACHE/1f46088b38d.desugared.inferres | 2 - .../varBugs/APACHE/1f46088b38d.inferres | 0 .../APACHE/2a6cbfa00e0.desugared.inferres | 14 - .../varBugs/APACHE/2a6cbfa00e0.inferres | 14 - .../APACHE/3407eccc321.desugared.inferres | 2 - .../varBugs/APACHE/3407eccc321.inferres | 2 - .../varBugs/APACHE/35ae2e259e4.clangres | 2 +- .../APACHE/35ae2e259e4.desugared.clangres | 21 +- .../APACHE/35ae2e259e4.desugared.inferres | 51 --- .../varBugs/APACHE/35ae2e259e4.inferres | 23 - .../APACHE/4202d5fee3e.desugared.inferres | 2 - .../varBugs/APACHE/4202d5fee3e.inferres | 2 - .../APACHE/4945115b2e7.desugared.inferres | 2 - .../varBugs/APACHE/4945115b2e7.inferres | 24 - .../APACHE/56d9881993f.desugared.inferres | 2 - .../varBugs/APACHE/56d9881993f.inferres | 2 - .../APACHE/581635e28f1.desugared.inferres | 14 - .../varBugs/APACHE/581635e28f1.inferres | 0 .../APACHE/6338509eb37.desugared.inferres | 2 - .../varBugs/APACHE/6338509eb37.inferres | 0 .../APACHE/664e3aac6dd.desugared.inferres | 2 - .../varBugs/APACHE/664e3aac6dd.inferres | 2 - .../APACHE/9327311d30f.desugared.inferres | 2 - .../varBugs/APACHE/9327311d30f.inferres | 2 - .../APACHE/97ecbec1237.desugared.inferres | 2 - .../varBugs/APACHE/97ecbec1237.inferres | 2 - .../varBugs/APACHE/b833f064550.inferres | 2 - .../APACHE/bbeb0516cf0.desugared.inferres | 2 - .../varBugs/APACHE/bbeb0516cf0.inferres | 14 - .../varBugs/APACHE/c76df14dfb4.clangres | 2 +- .../APACHE/c76df14dfb4.desugared.inferres | 41 -- .../varBugs/APACHE/c76df14dfb4.inferres | 14 - .../varBugs/APACHE/d0040a07aec.clangres | 2 +- .../APACHE/d0040a07aec.desugared.inferres | 2 - .../varBugs/APACHE/d0040a07aec.inferres | 0 .../APACHE/d05e574ec26.desugared.inferres | 41 -- .../varBugs/APACHE/d05e574ec26.inferres | 2 - .../APACHE/dbafef17dd1.desugared.inferres | 2 - .../varBugs/APACHE/dbafef17dd1.inferres | 2 - .../varBugs/APACHE/test.desugared.inferres | 2 - .../varBugs/APACHE/test.inferres | 0 .../varBugs/BUSYBOX-061fd0a353e.report | 12 +- .../varBugs/BUSYBOX-199501f2a00.report | 4 +- .../varBugs/BUSYBOX-1b487ea8a69.report | 4 +- .../varBugs/BUSYBOX-2631486f1bf.report | 26 +- .../varBugs/BUSYBOX-b273d665181.report | 4 +- .../varBugs/BUSYBOX-b62bd7b261b.report | 27 +- .../varBugs/BUSYBOX-bc0ffc0e971.report | 31 +- .../varBugs/BUSYBOX-eef2317b9f5.report | 4 +- .../BUSYBOX/0301ffab3d9.desugared.inferres | 2 - .../varBugs/BUSYBOX/0301ffab3d9.inferres | 2 - .../BUSYBOX/061fd0a353e.desugared.inferres | 50 --- .../varBugs/BUSYBOX/061fd0a353e.inferres | 0 .../BUSYBOX/192c35f6eb2.desugared.inferres | 2 - .../varBugs/BUSYBOX/192c35f6eb2.inferres | 2 - .../BUSYBOX/199501f2a00.desugared.inferres | 23 - .../varBugs/BUSYBOX/199501f2a00.inferres | 14 - .../BUSYBOX/1b487ea8a69.desugared.inferres | 23 - .../varBugs/BUSYBOX/1b487ea8a69.inferres | 14 - .../BUSYBOX/2631486f1bf.desugared.clangres | 12 +- .../BUSYBOX/2631486f1bf.desugared.inferres | 51 --- .../varBugs/BUSYBOX/2631486f1bf.inferres | 34 -- .../BUSYBOX/5275b1e49f6.desugared.inferres | 50 --- .../varBugs/BUSYBOX/5275b1e49f6.inferres | 0 .../BUSYBOX/5cd6461b6fb.desugared.inferres | 2 - .../varBugs/BUSYBOX/5cd6461b6fb.inferres | 2 - .../BUSYBOX/95755181b82.desugared.inferres | 0 .../varBugs/BUSYBOX/95755181b82.inferres | 0 .../BUSYBOX/b273d665181.desugared.inferres | 41 -- .../varBugs/BUSYBOX/b273d665181.inferres | 14 - .../BUSYBOX/b62bd7b261b.desugared.clangres | 8 +- .../BUSYBOX/b62bd7b261b.desugared.inferres | 51 --- .../varBugs/BUSYBOX/b62bd7b261b.inferres | 23 - .../BUSYBOX/b7ebc61b54f.desugared.inferres | 2 - .../varBugs/BUSYBOX/b7ebc61b54f.inferres | 0 .../BUSYBOX/bc0ffc0e971.desugared.clangres | 27 +- .../BUSYBOX/bc0ffc0e971.desugared.inferres | 23 - .../varBugs/BUSYBOX/bc0ffc0e971.inferres | 14 - .../BUSYBOX/cc3f20b9bdf.desugared.inferres | 2 - .../varBugs/BUSYBOX/cc3f20b9bdf.inferres | 2 - .../BUSYBOX/cf1f2ace391.desugared.inferres | 2 - .../varBugs/BUSYBOX/cf1f2ace391.inferres | 2 - .../BUSYBOX/df7b6577c6a.desugared.inferres | 2 - .../varBugs/BUSYBOX/df7b6577c6a.inferres | 2 - .../varBugs/BUSYBOX/ebee301c8b0.clangres | 2 +- .../BUSYBOX/ebee301c8b0.desugared.inferres | 23 - .../varBugs/BUSYBOX/ebee301c8b0.inferres | 2 - .../BUSYBOX/eef2317b9f5.desugared.inferres | 24 - .../varBugs/BUSYBOX/eef2317b9f5.inferres | 14 - .../varBugs/LINUX-30e053248da.report | 8 +- .../varBugs/LINUX-36855dcfc98.report | 4 +- .../varBugs/LINUX-6252547b8a7.report | 18 +- .../varBugs/LINUX-66517915e09.report | 34 +- .../varBugs/LINUX-6e2b75740be.report | 5 +- .../varBugs/LINUX-7acf6cd80b2.report | 18 +- .../varBugs/LINUX-e39363a9def.report | 4 +- .../LINUX/0988c4c7fb5.desugared.inferres | 2 - .../varBugs/LINUX/0988c4c7fb5.inferres | 2 - .../varBugs/LINUX/0dc77b6dabe.clangres | 2 +- .../LINUX/0dc77b6dabe.desugared.inferres | 2 - .../varBugs/LINUX/0dc77b6dabe.inferres | 2 - .../varBugs/LINUX/0f8f8094d28.clangres | 2 +- .../LINUX/0f8f8094d28.desugared.inferres | 2 - .../varBugs/LINUX/0f8f8094d28.inferres | 0 .../LINUX/1c17e4d4437.desugared.inferres | 2 - .../varBugs/LINUX/1c17e4d4437.inferres | 2 - .../LINUX/1f758a4341a.desugared.inferres | 2 - .../varBugs/LINUX/1f758a4341a.inferres | 2 - .../LINUX/208d89843b7.desugared.inferres | 2 - .../varBugs/LINUX/208d89843b7.inferres | 2 - .../LINUX/218ad12f42e.desugared.inferres | 2 - .../varBugs/LINUX/218ad12f42e.inferres | 2 - .../LINUX/221ac329e93.desugared.inferres | 2 - .../varBugs/LINUX/221ac329e93.inferres | 2 - .../LINUX/242f1a34377.desugared.inferres | 2 - .../varBugs/LINUX/242f1a34377.inferres | 2 - .../LINUX/2f02c15a5d9.desugared.inferres | 2 - .../varBugs/LINUX/2f02c15a5d9.inferres | 2 - .../LINUX/30e053248da.desugared.inferres | 33 -- .../varBugs/LINUX/30e053248da.inferres | 14 - .../LINUX/36855dcfc98.desugared.inferres | 2 - .../varBugs/LINUX/36855dcfc98.inferres | 2 - .../LINUX/472a474c663.desugared.inferres | 2 - .../varBugs/LINUX/472a474c663.inferres | 2 - .../LINUX/51fd36f3fad.desugared.inferres | 23 - .../varBugs/LINUX/51fd36f3fad.inferres | 2 - .../varBugs/LINUX/60e233a5660.clangres | 2 +- .../LINUX/60e233a5660.desugared.inferres | 2 - .../varBugs/LINUX/60e233a5660.inferres | 2 - .../LINUX/6252547b8a7.desugared.inferres | 14 - .../varBugs/LINUX/6252547b8a7.inferres | 24 - .../varBugs/LINUX/63878acfafb.clangres | 2 +- .../LINUX/63878acfafb.desugared.inferres | 14 - .../varBugs/LINUX/63878acfafb.inferres | 2 - .../varBugs/LINUX/6515e48932c.clangres | 2 +- .../LINUX/6515e48932c.desugared.inferres | 2 - .../varBugs/LINUX/6515e48932c.inferres | 2 - .../LINUX/657e9649e74.desugared.inferres | 2 - .../varBugs/LINUX/657e9649e74.inferres | 2 - .../LINUX/66517915e09.desugared.inferres | 23 - .../varBugs/LINUX/66517915e09.inferres | 0 .../varBugs/LINUX/68bb91baa0.clangres | 2 +- .../LINUX/68bb91baa0.desugared.inferres | 2 - .../varBugs/LINUX/68bb91baa0.inferres | 0 .../varBugs/LINUX/6e2b75740be.clangres | 2 +- .../LINUX/6e2b75740be.desugared.clangres | 5 +- .../LINUX/6e2b75740be.desugared.inferres | 14 - .../varBugs/LINUX/6e2b75740be.inferres | 2 - .../varBugs/LINUX/76baeebf7df.inferres | 2 - .../LINUX/7acf6cd80b2.desugared.inferres | 23 - .../varBugs/LINUX/7acf6cd80b2.inferres | 23 - .../varBugs/LINUX/7c6048b7c83.clangres | 2 +- .../LINUX/7c6048b7c83.desugared.inferres | 2 - .../varBugs/LINUX/7c6048b7c83.inferres | 2 - .../LINUX/809e660f438.desugared.inferres | 2 - .../varBugs/LINUX/809e660f438.inferres | 2 - .../LINUX/8c8296223f3.desugared.inferres | 2 - .../varBugs/LINUX/8c8296223f3.inferres | 2 - .../LINUX/91ea8207168.desugared.inferres | 2 - .../varBugs/LINUX/91ea8207168.inferres | 2 - .../LINUX/ae249b5fa27.desugared.inferres | 23 - .../varBugs/LINUX/ae249b5fa27.inferres | 2 - .../LINUX/bc8cec0dff0.desugared.inferres | 2 - .../varBugs/LINUX/bc8cec0dff0.inferres | 2 - .../LINUX/c708c57e247.desugared.inferres | 2 - .../varBugs/LINUX/c708c57e247.inferres | 2 - .../LINUX/d530db0db90.desugared.inferres | 2 - .../varBugs/LINUX/d530db0db90.inferres | 0 .../varBugs/LINUX/d549f55f2e1.clangres | 2 +- .../LINUX/d549f55f2e1.desugared.inferres | 2 - .../varBugs/LINUX/d549f55f2e1.inferres | 2 - .../LINUX/d6c7e113959.desugared.inferres | 14 - .../varBugs/LINUX/d6c7e113959.inferres | 2 - .../LINUX/d7e9711760a.desugared.inferres | 14 - .../varBugs/LINUX/d7e9711760a.inferres | 14 - .../LINUX/e1fbd9210d5.desugared.inferres | 2 - .../varBugs/LINUX/e1fbd9210d5.inferres | 2 - .../LINUX/e39363a9def.desugared.inferres | 14 - .../varBugs/LINUX/e39363a9def.inferres | 14 - .../LINUX/e67bc51e574.desugared.inferres | 2 - .../varBugs/LINUX/e67bc51e574.inferres | 0 .../varBugs/LINUX/eb91f1d0a53.clangres | 2 +- .../LINUX/eb91f1d0a53.desugared.inferres | 2 - .../varBugs/LINUX/eb91f1d0a53.inferres | 2 - .../varBugs/LINUX/ee3f34e8572.clangres | 2 +- .../LINUX/ee3f34e8572.desugared.inferres | 2 - .../varBugs/LINUX/ee3f34e8572.inferres | 14 - .../varBugs/LINUX/f3d83e24154.clangres | 2 +- .../LINUX/f3d83e24154.desugared.inferres | 2 - .../varBugs/LINUX/f3d83e24154.inferres | 2 - .../LINUX/f48ec1d7885.desugared.inferres | 2 - .../varBugs/LINUX/f48ec1d7885.inferres | 0 .../LINUX/f7ab9b407b3.desugared.inferres | 2 - .../varBugs/LINUX/f7ab9b407b3.inferres | 2 - .../varBugs/MARLIN-e30bfedce4d.report | 6 +- .../MARLIN/2d22902d080.desugared.inferres | 2 - .../varBugs/MARLIN/2d22902d080.inferres | 2 - .../MARLIN/2db384a21d6.desugared.inferres | 2 - .../varBugs/MARLIN/2db384a21d6.inferres | 2 - .../varBugs/MARLIN/30248214c7f.clangres | 2 +- .../MARLIN/30248214c7f.desugared.inferres | 2 - .../varBugs/MARLIN/30248214c7f.inferres | 2 - .../MARLIN/31873ec707d.desugared.inferres | 2 - .../varBugs/MARLIN/31873ec707d.inferres | 0 .../MARLIN/53be0f3399e.desugared.inferres | 2 - .../varBugs/MARLIN/53be0f3399e.inferres | 0 .../MARLIN/7336e6df070.desugared.inferres | 2 - .../varBugs/MARLIN/7336e6df070.inferres | 0 .../MARLIN/831016b09f7.desugared.inferres | 2 - .../varBugs/MARLIN/831016b09f7.inferres | 0 .../MARLIN/8c4377dd635.desugared.inferres | 23 - .../varBugs/MARLIN/8c4377dd635.inferres | 0 .../MARLIN/a7fc1f83c81.desugared.inferres | 2 - .../varBugs/MARLIN/a7fc1f83c81.inferres | 2 - .../MARLIN/b8e79dce897.desugared.inferres | 2 - .../varBugs/MARLIN/b8e79dce897.inferres | 2 - .../MARLIN/e30bfedce4d.desugared.inferres | 14 - .../varBugs/MARLIN/e30bfedce4d.inferres | 14 - .../MARLIN/f87c80889fe.desugared.inferres | 2 - .../varBugs/MARLIN/f87c80889fe.inferres | 2 - .../MARLIN/fc3c76fc164.desugared.inferres | 2 - .../varBugs/MARLIN/fc3c76fc164.inferres | 0 .../MARLIN/fdac8f6cece.desugared.inferres | 2 - .../varBugs/MARLIN/fdac8f6cece.inferres | 0 fonda/cpp_testsuite/varBugs/a.out | Bin 8376 -> 8376 bytes .../varBugs/infer-out/.infer_runstate.json | 1 - .../cpp_testsuite/varBugs/infer-out/bugs.txt | 1 - .../infer-out/config-impact-report.json | 1 - .../varBugs/infer-out/costs-report.json | 1 - fonda/cpp_testsuite/varBugs/infer-out/logs | 115 ----- .../varBugs/infer-out/report.json | 1 - .../varBugs/infer-out/report.txt | 0 .../varBugs/infer-out/results.db | Bin 1310720 -> 0 bytes .../varBugs/infer-out/results.db-shm | Bin 32768 -> 0 bytes .../varBugs/infer-out/results.db-wal | Bin 1672424 -> 0 bytes .../tmp/clang_command_.tmp.3490f2.txt | 11 - .../tmp/clang_command_.tmp.403c06.txt | 62 --- fonda/cpp_testsuite/varBugs/runTests.py | 8 +- fonda/cpp_testsuite/varBugs/summaryTable.txt | 422 +++++++++++++----- fonda/cpp_testsuite/varBugs/test.c | 4 + src/superc/cdesugarer/CActions.java | 140 ++++-- src/superc/cdesugarer/desugarer.y | 140 ++++-- 255 files changed, 693 insertions(+), 1945 deletions(-) delete mode 100644 fonda/cpp_testsuite/varBugs/APACHE/0900800fbab.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/APACHE/0900800fbab.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/APACHE/0ddfa412ee9.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/APACHE/0ddfa412ee9.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/APACHE/1f46088b38d.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/APACHE/1f46088b38d.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/APACHE/3407eccc321.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/APACHE/3407eccc321.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/APACHE/4202d5fee3e.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/APACHE/4202d5fee3e.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/APACHE/4945115b2e7.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/APACHE/4945115b2e7.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/APACHE/56d9881993f.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/APACHE/56d9881993f.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/APACHE/581635e28f1.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/APACHE/581635e28f1.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/APACHE/6338509eb37.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/APACHE/6338509eb37.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/APACHE/664e3aac6dd.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/APACHE/664e3aac6dd.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/APACHE/9327311d30f.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/APACHE/9327311d30f.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/APACHE/97ecbec1237.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/APACHE/97ecbec1237.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/APACHE/b833f064550.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/APACHE/bbeb0516cf0.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/APACHE/bbeb0516cf0.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/APACHE/dbafef17dd1.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/APACHE/dbafef17dd1.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/APACHE/test.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/APACHE/test.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/192c35f6eb2.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/192c35f6eb2.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/5cd6461b6fb.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/5cd6461b6fb.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/cc3f20b9bdf.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/cc3f20b9bdf.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/cf1f2ace391.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/cf1f2ace391.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/df7b6577c6a.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/df7b6577c6a.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/0988c4c7fb5.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/0988c4c7fb5.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/1c17e4d4437.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/1c17e4d4437.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/1f758a4341a.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/1f758a4341a.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/208d89843b7.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/208d89843b7.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/218ad12f42e.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/218ad12f42e.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/221ac329e93.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/221ac329e93.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/242f1a34377.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/242f1a34377.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/2f02c15a5d9.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/2f02c15a5d9.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/30e053248da.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/30e053248da.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/36855dcfc98.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/36855dcfc98.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/472a474c663.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/472a474c663.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/6515e48932c.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/6515e48932c.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/657e9649e74.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/657e9649e74.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/66517915e09.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/66517915e09.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/76baeebf7df.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/7c6048b7c83.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/7c6048b7c83.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/809e660f438.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/809e660f438.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/8c8296223f3.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/8c8296223f3.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/91ea8207168.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/91ea8207168.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/bc8cec0dff0.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/bc8cec0dff0.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/c708c57e247.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/c708c57e247.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/d530db0db90.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/d530db0db90.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/d6c7e113959.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/d6c7e113959.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/e1fbd9210d5.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/e1fbd9210d5.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/e67bc51e574.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/e67bc51e574.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/f3d83e24154.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/f3d83e24154.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/f48ec1d7885.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/f48ec1d7885.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/f7ab9b407b3.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/LINUX/f7ab9b407b3.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/2d22902d080.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/2d22902d080.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/2db384a21d6.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/2db384a21d6.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/30248214c7f.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/30248214c7f.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/7336e6df070.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/7336e6df070.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/b8e79dce897.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/b8e79dce897.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/f87c80889fe.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/f87c80889fe.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/fc3c76fc164.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/fc3c76fc164.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/fdac8f6cece.desugared.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/fdac8f6cece.inferres delete mode 100644 fonda/cpp_testsuite/varBugs/infer-out/.infer_runstate.json delete mode 100644 fonda/cpp_testsuite/varBugs/infer-out/bugs.txt delete mode 100644 fonda/cpp_testsuite/varBugs/infer-out/config-impact-report.json delete mode 100644 fonda/cpp_testsuite/varBugs/infer-out/costs-report.json delete mode 100644 fonda/cpp_testsuite/varBugs/infer-out/logs delete mode 100644 fonda/cpp_testsuite/varBugs/infer-out/report.json delete mode 100644 fonda/cpp_testsuite/varBugs/infer-out/report.txt delete mode 100644 fonda/cpp_testsuite/varBugs/infer-out/results.db delete mode 100644 fonda/cpp_testsuite/varBugs/infer-out/results.db-shm delete mode 100644 fonda/cpp_testsuite/varBugs/infer-out/results.db-wal delete mode 100644 fonda/cpp_testsuite/varBugs/infer-out/tmp/clang_command_.tmp.3490f2.txt delete mode 100644 fonda/cpp_testsuite/varBugs/infer-out/tmp/clang_command_.tmp.403c06.txt diff --git a/fonda/cpp_testsuite/varBugs/APACHE-1b48bb3c1af.report b/fonda/cpp_testsuite/varBugs/APACHE-1b48bb3c1af.report index f2b0a106..53f0d50b 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE-1b48bb3c1af.report +++ b/fonda/cpp_testsuite/varBugs/APACHE-1b48bb3c1af.report @@ -6,7 +6,7 @@ Macros: [-DAPU_HAS_LDAP=1 -UAPR_HAS_SHARED_MEMORY ] [-UAPU_HAS_LDAP -DAPR_HAS_SHARED_MEMORY=1 ] [-DAPU_HAS_LDAP=1 -DAPR_HAS_SHARED_MEMORY=1 ] -103 :: Line:14 +115 :: Line:14 1st function call argument is an uninitialized value [core.CallAndMessage] Desugared Clang Results: /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c:1273:2: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] @@ -17,6 +17,6 @@ Desugared Clang Results: ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2 warnings generated. Matches: - 103 has a match! + 115 has a match! Unmatched ids: None! diff --git a/fonda/cpp_testsuite/varBugs/APACHE-2a6cbfa00e0.report b/fonda/cpp_testsuite/varBugs/APACHE-2a6cbfa00e0.report index 0cd04f44..c47fd0cd 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE-2a6cbfa00e0.report +++ b/fonda/cpp_testsuite/varBugs/APACHE-2a6cbfa00e0.report @@ -2,7 +2,7 @@ APACHE 2a6cbfa00e0.c Macros: SHARED_MODULE [-USHARED_MODULE ] -97 :: Line:16 +108 :: Line:16 Potential leak of memory pointed to by 'sc' [unix.Malloc] Desugared Clang Results: /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c:1496:5: warning: Potential leak of memory pointed to by '__sc_1019' [unix.Malloc] @@ -23,4 +23,4 @@ if (__static_condition_default_1034) { 5 warnings generated. Matches: Unmatched ids: - 97 + 108 diff --git a/fonda/cpp_testsuite/varBugs/APACHE-35ae2e259e4.report b/fonda/cpp_testsuite/varBugs/APACHE-35ae2e259e4.report index 48f86f8f..223f67cd 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE-35ae2e259e4.report +++ b/fonda/cpp_testsuite/varBugs/APACHE-35ae2e259e4.report @@ -7,21 +7,21 @@ Macros: [-UHAVE_ECC -Ddefined=1 ] [-DHAVE_ECC=1 -Ddefined=1 ] Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1373:17: warning: Dereference of undefined pointer value [core.NullDereference] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1373:17: warning: Dereference of undefined pointer value (loaded from variable '__eckey_798') [core.NullDereference] * __eckey_798 = 30 ; // L12 -~~~~~~~~~~~~~~~~^~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1397:17: warning: Dereference of undefined pointer value [core.NullDereference] + ~~~~~~~~~~~ ^ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1397:17: warning: Dereference of undefined pointer value (loaded from variable '__eckey_798') [core.NullDereference] * __eckey_798 = 15 ; // L17 -~~~~~~~~~~~~~~~~^~~~ + ~~~~~~~~~~~ ^ /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1403:5: warning: Potential leak of memory pointed to by '__eckey_798' [unix.Malloc] if (__static_condition_default_809) { ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1442:17: warning: Dereference of undefined pointer value [core.NullDereference] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1442:17: warning: Dereference of undefined pointer value (loaded from variable '__eckey_798') [core.NullDereference] * __eckey_798 = 30 ; // L12 -~~~~~~~~~~~~~~~~^~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1466:17: warning: Dereference of undefined pointer value [core.NullDereference] + ~~~~~~~~~~~ ^ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1466:17: warning: Dereference of undefined pointer value (loaded from variable '__eckey_798') [core.NullDereference] * __eckey_798 = 15 ; // L17 -~~~~~~~~~~~~~~~~^~~~ + ~~~~~~~~~~~ ^ /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1472:5: warning: Potential leak of memory pointed to by '__eckey_798' [unix.Malloc] if (__static_condition_default_818) { ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ @@ -34,5 +34,8 @@ if (__static_condition_default_818) { /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1501:5: warning: Potential leak of memory pointed to by '__eckey_798' [unix.Malloc] if (__static_condition_default_823) { ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -9 warnings generated. +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1501:5: warning: Potential leak of memory pointed to by '__eckey_798' [unix.Malloc] +if (__static_condition_default_823) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +10 warnings generated. Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/APACHE/0900800fbab.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/0900800fbab.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/APACHE/0900800fbab.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/0900800fbab.inferres b/fonda/cpp_testsuite/varBugs/APACHE/0900800fbab.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/APACHE/0900800fbab.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/0ddfa412ee9.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/0ddfa412ee9.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/APACHE/0ddfa412ee9.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/0ddfa412ee9.inferres b/fonda/cpp_testsuite/varBugs/APACHE/0ddfa412ee9.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/APACHE/0ddfa412ee9.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.inferres deleted file mode 100644 index e56293cd..00000000 --- a/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.inferres +++ /dev/null @@ -1,41 +0,0 @@ - -APACHE/1a3c8e3d840.desugared.c:273: error: Dead Store - The value written to &__thisopt_252 (type int) is never used. - 271. - 272. - 273. __thisopt_252 = ( 1 << 3 ) ; // L4:L13 - ^ - 274. } - 275. } - -APACHE/1a3c8e3d840.desugared.c:287: error: Dead Store - The value written to &__thisopt_252 (type int) is never used. - 285. - 286. - 287. __thisopt_252 = ( 1 << 3 ) ; // L4:L13 - ^ - 288. } - 289. } - -APACHE/1a3c8e3d840.desugared.c:318: error: Dead Store - The value written to &__thisopt_252 (type int) is never used. - 316. - 317. - 318. __thisopt_252 = ( 1 << 3 ) ; // L4:L13 - ^ - 319. } - 320. } - -APACHE/1a3c8e3d840.desugared.c:332: error: Dead Store - The value written to &__thisopt_252 (type int) is never used. - 330. - 331. - 332. __thisopt_252 = ( 1 << 3 ) ; // L4:L13 - ^ - 333. } - 334. } - - -Found 4 issues - Issue Type(ISSUED_TYPE_ID): # - Dead Store(DEAD_STORE): 4 diff --git a/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.inferres b/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.inferres deleted file mode 100644 index e69de29b..00000000 diff --git a/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c.inferres b/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c.inferres deleted file mode 100644 index e69de29b..00000000 diff --git a/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.inferres b/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/1f46088b38d.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/1f46088b38d.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/APACHE/1f46088b38d.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/1f46088b38d.inferres b/fonda/cpp_testsuite/varBugs/APACHE/1f46088b38d.inferres deleted file mode 100644 index e69de29b..00000000 diff --git a/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.inferres deleted file mode 100644 index 91e523d9..00000000 --- a/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.inferres +++ /dev/null @@ -1,14 +0,0 @@ - -APACHE/2a6cbfa00e0.desugared.c:1525: error: Dead Store - The value written to &__sc_1021 (type char*) is never used. - 1523. char * (__sc_1020)= malloc (sizeof(char) * 45);// L6 - 1524. - 1525. char * (__sc_1021)= malloc (sizeof(char) * 45);// L6 - ^ - 1526. - 1527. __static_type_error("type error") ; // L9 - - -Found 1 issue - Issue Type(ISSUED_TYPE_ID): # - Dead Store(DEAD_STORE): 1 diff --git a/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.inferres b/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.inferres deleted file mode 100644 index 62be4faf..00000000 --- a/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.inferres +++ /dev/null @@ -1,14 +0,0 @@ - -APACHE/2a6cbfa00e0.c:9: error: Null Dereference - pointer `sc` last assigned on line 6 could be null and is dereferenced by call to `strcpy()` at line 9, column 3. - 7. - 8. // code making use of 'sc' - 9. strcpy(sc, "something"); - ^ - 10. - 11. #ifdef SHARED_MODULE - - -Found 1 issue - Issue Type(ISSUED_TYPE_ID): # - Null Dereference(NULL_DEREFERENCE): 1 diff --git a/fonda/cpp_testsuite/varBugs/APACHE/3407eccc321.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/3407eccc321.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/APACHE/3407eccc321.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/3407eccc321.inferres b/fonda/cpp_testsuite/varBugs/APACHE/3407eccc321.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/APACHE/3407eccc321.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.clangres b/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.clangres index 54a04e27..f78a7d92 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.clangres @@ -1,4 +1,4 @@ -In file included from :342: +In file included from :344: :2:9: error: 'defined' cannot be used as a macro name #define defined 1 ^ diff --git a/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.clangres b/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.clangres index 48e366a1..94146951 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.clangres @@ -1,18 +1,18 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1373:17: warning: Dereference of undefined pointer value [core.NullDereference] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1373:17: warning: Dereference of undefined pointer value (loaded from variable '__eckey_798') [core.NullDereference] * __eckey_798 = 30 ; // L12 -~~~~~~~~~~~~~~~~^~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1397:17: warning: Dereference of undefined pointer value [core.NullDereference] + ~~~~~~~~~~~ ^ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1397:17: warning: Dereference of undefined pointer value (loaded from variable '__eckey_798') [core.NullDereference] * __eckey_798 = 15 ; // L17 -~~~~~~~~~~~~~~~~^~~~ + ~~~~~~~~~~~ ^ /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1403:5: warning: Potential leak of memory pointed to by '__eckey_798' [unix.Malloc] if (__static_condition_default_809) { ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1442:17: warning: Dereference of undefined pointer value [core.NullDereference] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1442:17: warning: Dereference of undefined pointer value (loaded from variable '__eckey_798') [core.NullDereference] * __eckey_798 = 30 ; // L12 -~~~~~~~~~~~~~~~~^~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1466:17: warning: Dereference of undefined pointer value [core.NullDereference] + ~~~~~~~~~~~ ^ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1466:17: warning: Dereference of undefined pointer value (loaded from variable '__eckey_798') [core.NullDereference] * __eckey_798 = 15 ; // L17 -~~~~~~~~~~~~~~~~^~~~ + ~~~~~~~~~~~ ^ /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1472:5: warning: Potential leak of memory pointed to by '__eckey_798' [unix.Malloc] if (__static_condition_default_818) { ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ @@ -25,4 +25,7 @@ if (__static_condition_default_818) { /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1501:5: warning: Potential leak of memory pointed to by '__eckey_798' [unix.Malloc] if (__static_condition_default_823) { ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -9 warnings generated. +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1501:5: warning: Potential leak of memory pointed to by '__eckey_798' [unix.Malloc] +if (__static_condition_default_823) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +10 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.inferres deleted file mode 100644 index 68dc4f85..00000000 --- a/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.inferres +++ /dev/null @@ -1,51 +0,0 @@ - -APACHE/35ae2e259e4.desugared.c:1373: error: Null Dereference - pointer `__eckey_798` last assigned on line 1358 could be null and is dereferenced at line 1373, column 1. - 1371. - 1372. - 1373. * __eckey_798 = 30 ; // L12 - ^ - 1374. } - 1375. } - -APACHE/35ae2e259e4.desugared.c:1397: error: Null Dereference - pointer `__eckey_798` last assigned on line 1358 could be null and is dereferenced at line 1397, column 1. - 1395. - 1396. - 1397. * __eckey_798 = 15 ; // L17 - ^ - 1398. } - 1399. } - -APACHE/35ae2e259e4.desugared.c:1442: error: Null Dereference - pointer `__eckey_798` last assigned on line 1427 could be null and is dereferenced at line 1442, column 1. - 1440. - 1441. - 1442. * __eckey_798 = 30 ; // L12 - ^ - 1443. } - 1444. } - -APACHE/35ae2e259e4.desugared.c:1466: error: Null Dereference - pointer `__eckey_798` last assigned on line 1427 could be null and is dereferenced at line 1466, column 1. - 1464. - 1465. - 1466. * __eckey_798 = 15 ; // L17 - ^ - 1467. } - 1468. } - -APACHE/35ae2e259e4.desugared.c:1496: error: Dead Store - The value written to &__eckey_798 (type int*) is never used. - 1494. - 1495. if (__static_condition_default_821) { - 1496. __eckey_798 = malloc (sizeof(int)) ; // L10 - ^ - 1497. } - 1498. if (__static_condition_default_822) { - - -Found 6 issues (console output truncated to 5, see '/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/infer-out/report.txt' for the full list) - Issue Type(ISSUED_TYPE_ID): # - Null Dereference(NULL_DEREFERENCE): 4 - Dead Store(DEAD_STORE): 2 diff --git a/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.inferres b/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.inferres deleted file mode 100644 index cd1357a1..00000000 --- a/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.inferres +++ /dev/null @@ -1,23 +0,0 @@ - -APACHE/35ae2e259e4.c:12: error: Null Dereference - pointer `eckey` last assigned on line 10 could be null and is dereferenced at line 12, column 5. - 10. eckey = malloc(sizeof(int)); - 11. if (rand() % 2) { - 12. *eckey = 30; - ^ - 13. } else { - 14. #if defined(SSL_CTX_set_ecdh_auto) - -APACHE/35ae2e259e4.c:17: error: Null Dereference - pointer `eckey` last assigned on line 10 could be null and is dereferenced at line 17, column 5. - 15. // do something - 16. #else - 17. *eckey = 15; - ^ - 18. #endif - 19. } - - -Found 2 issues - Issue Type(ISSUED_TYPE_ID): # - Null Dereference(NULL_DEREFERENCE): 2 diff --git a/fonda/cpp_testsuite/varBugs/APACHE/4202d5fee3e.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/4202d5fee3e.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/APACHE/4202d5fee3e.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/4202d5fee3e.inferres b/fonda/cpp_testsuite/varBugs/APACHE/4202d5fee3e.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/APACHE/4202d5fee3e.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/4945115b2e7.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/4945115b2e7.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/APACHE/4945115b2e7.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/4945115b2e7.inferres b/fonda/cpp_testsuite/varBugs/APACHE/4945115b2e7.inferres deleted file mode 100644 index e25320ee..00000000 --- a/fonda/cpp_testsuite/varBugs/APACHE/4945115b2e7.inferres +++ /dev/null @@ -1,24 +0,0 @@ - -APACHE/4945115b2e7.c:15: error: Null Dereference - pointer `dbg` last assigned on line 10 could be null and is dereferenced by call to `fprintf()` at line 15, column 3. - 13. - 14. #ifdef DEBUG_CGI - 15. fprintf(dbg, "Environment\n"); - ^ - 16. #endif - 17. - -APACHE/4945115b2e7.c:19: error: Resource Leak - resource of type `_IO_FILE` acquired by call to `fopen()` at line 10, column 15 is not released after line 19, column 5. - 17. - 18. if(rand() % 2) - 19. return; // ERROR: dbg is leaked - ^ - 20. - 21. #ifdef DEBUG_CGI - - -Found 2 issues - Issue Type(ISSUED_TYPE_ID): # - Resource Leak(RESOURCE_LEAK): 1 - Null Dereference(NULL_DEREFERENCE): 1 diff --git a/fonda/cpp_testsuite/varBugs/APACHE/56d9881993f.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/56d9881993f.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/APACHE/56d9881993f.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/56d9881993f.inferres b/fonda/cpp_testsuite/varBugs/APACHE/56d9881993f.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/APACHE/56d9881993f.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/581635e28f1.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/581635e28f1.desugared.inferres deleted file mode 100644 index 4681ad10..00000000 --- a/fonda/cpp_testsuite/varBugs/APACHE/581635e28f1.desugared.inferres +++ /dev/null @@ -1,14 +0,0 @@ - -APACHE/581635e28f1.desugared.c:27: error: Dead Store - The value written to &__family_0 (type int) is never used. - 25. - 26. - 27. int __family_0= 6;// L7 - ^ - 28. - 29. if (__static_condition_default_1) { - - -Found 1 issue - Issue Type(ISSUED_TYPE_ID): # - Dead Store(DEAD_STORE): 1 diff --git a/fonda/cpp_testsuite/varBugs/APACHE/581635e28f1.inferres b/fonda/cpp_testsuite/varBugs/APACHE/581635e28f1.inferres deleted file mode 100644 index e69de29b..00000000 diff --git a/fonda/cpp_testsuite/varBugs/APACHE/6338509eb37.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/6338509eb37.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/APACHE/6338509eb37.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/6338509eb37.inferres b/fonda/cpp_testsuite/varBugs/APACHE/6338509eb37.inferres deleted file mode 100644 index e69de29b..00000000 diff --git a/fonda/cpp_testsuite/varBugs/APACHE/664e3aac6dd.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/664e3aac6dd.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/APACHE/664e3aac6dd.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/664e3aac6dd.inferres b/fonda/cpp_testsuite/varBugs/APACHE/664e3aac6dd.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/APACHE/664e3aac6dd.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/9327311d30f.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/9327311d30f.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/APACHE/9327311d30f.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/9327311d30f.inferres b/fonda/cpp_testsuite/varBugs/APACHE/9327311d30f.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/APACHE/9327311d30f.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/97ecbec1237.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/97ecbec1237.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/APACHE/97ecbec1237.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/97ecbec1237.inferres b/fonda/cpp_testsuite/varBugs/APACHE/97ecbec1237.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/APACHE/97ecbec1237.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/b833f064550.inferres b/fonda/cpp_testsuite/varBugs/APACHE/b833f064550.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/APACHE/b833f064550.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/bbeb0516cf0.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/bbeb0516cf0.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/APACHE/bbeb0516cf0.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/bbeb0516cf0.inferres b/fonda/cpp_testsuite/varBugs/APACHE/bbeb0516cf0.inferres deleted file mode 100644 index 07e74702..00000000 --- a/fonda/cpp_testsuite/varBugs/APACHE/bbeb0516cf0.inferres +++ /dev/null @@ -1,14 +0,0 @@ - -APACHE/bbeb0516cf0.c:19: error: Null Dereference - pointer `r` last assigned on line 18 could be null and is dereferenced by call to `cgi_handler()` at line 19, column 3. - 17. { - 18. char *r = NULL; - 19. cgi_handler(r); - ^ - 20. return 0; - 21. } - - -Found 1 issue - Issue Type(ISSUED_TYPE_ID): # - Null Dereference(NULL_DEREFERENCE): 1 diff --git a/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.clangres b/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.clangres index 1f6a9663..8d078084 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.clangres @@ -1,4 +1,4 @@ -In file included from :342: +In file included from :344: :2:8: error: 'defined' cannot be used as a macro name #undef defined ^ diff --git a/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.inferres deleted file mode 100644 index e5257c37..00000000 --- a/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.inferres +++ /dev/null @@ -1,41 +0,0 @@ - -APACHE/c76df14dfb4.desugared.c:2149: error: Dead Store - The value written to &__flags_1818 (type unsigned char) is never used. - 2147. - 2148. - 2149. __flags_1818 |= ( 0x01 ) ; // L4:L42 - ^ - 2150. } - 2151. } - -APACHE/c76df14dfb4.desugared.c:2213: error: Dead Store - The value written to &__flags_1818 (type unsigned char) is never used. - 2211. - 2212. - 2213. __flags_1818 |= ( 0x01 ) ; // L4:L42 - ^ - 2214. } - 2215. } - -APACHE/c76df14dfb4.desugared.c:2305: error: Dead Store - The value written to &__flags_1818 (type unsigned char) is never used. - 2303. - 2304. - 2305. __flags_1818 |= ( 0x01 ) ; // L4:L42 - ^ - 2306. } - 2307. } - -APACHE/c76df14dfb4.desugared.c:2397: error: Dead Store - The value written to &__flags_1818 (type unsigned char) is never used. - 2395. - 2396. - 2397. __flags_1818 |= ( 0x01 ) ; // L4:L42 - ^ - 2398. } - 2399. } - - -Found 4 issues - Issue Type(ISSUED_TYPE_ID): # - Dead Store(DEAD_STORE): 4 diff --git a/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.inferres b/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.inferres deleted file mode 100644 index a42e0ab2..00000000 --- a/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.inferres +++ /dev/null @@ -1,14 +0,0 @@ - -APACHE/c76df14dfb4.c:42: error: Dead Store - The value written to &flags (type unsigned char) is never used. - 40. #else - 41. if (c && strchr("&;`'\"|*?~<>^()[]{}$\\\n", c)) { - 42. flags |= T_ESCAPE_SHELL_CMD; - ^ - 43. } - 44. #endif - - -Found 1 issue - Issue Type(ISSUED_TYPE_ID): # - Dead Store(DEAD_STORE): 1 diff --git a/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.clangres b/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.clangres index c064c3ab..4465012c 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.clangres @@ -1,4 +1,4 @@ -In file included from :342: +In file included from :344: :1:9: error: 'defined' cannot be used as a macro name #define defined 1 ^ diff --git a/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.inferres b/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.inferres deleted file mode 100644 index e69de29b..00000000 diff --git a/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.inferres deleted file mode 100644 index c4d11814..00000000 --- a/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.inferres +++ /dev/null @@ -1,41 +0,0 @@ - -APACHE/d05e574ec26.desugared.c:2919: error: Dead Store - The value written to &__buf_2043 (type char*) is never used. - 2917. char * (__buf_2042)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2038 ,sizeof(char)));// L16 - 2918. - 2919. char * (__buf_2043)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2037 ,sizeof(char)));// L16 - ^ - 2920. - 2921. char * (__buf_2044)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2038 ,sizeof(char)));// L16 - -APACHE/d05e574ec26.desugared.c:2921: error: Dead Store - The value written to &__buf_2044 (type char*) is never used. - 2919. char * (__buf_2043)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2037 ,sizeof(char)));// L16 - 2920. - 2921. char * (__buf_2044)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2038 ,sizeof(char)));// L16 - ^ - 2922. - 2923. char * (__buf_2045)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2036 ,sizeof(char)));// L16 - -APACHE/d05e574ec26.desugared.c:2927: error: Dead Store - The value written to &__buf_2047 (type char*) is never used. - 2925. char * (__buf_2046)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2038 ,sizeof(char)));// L16 - 2926. - 2927. char * (__buf_2047)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2036 ,sizeof(char)));// L16 - ^ - 2928. - 2929. char * (__buf_2048)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2038 ,sizeof(char)));// L16 - -APACHE/d05e574ec26.desugared.c:2929: error: Dead Store - The value written to &__buf_2048 (type char*) is never used. - 2927. char * (__buf_2047)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2036 ,sizeof(char)));// L16 - 2928. - 2929. char * (__buf_2048)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2038 ,sizeof(char)));// L16 - ^ - 2930. - 2931. if (__static_condition_default_2049) { - - -Found 4 issues - Issue Type(ISSUED_TYPE_ID): # - Dead Store(DEAD_STORE): 4 diff --git a/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.inferres b/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/dbafef17dd1.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/dbafef17dd1.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/APACHE/dbafef17dd1.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/dbafef17dd1.inferres b/fonda/cpp_testsuite/varBugs/APACHE/dbafef17dd1.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/APACHE/dbafef17dd1.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/test.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/test.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/APACHE/test.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/test.inferres b/fonda/cpp_testsuite/varBugs/APACHE/test.inferres deleted file mode 100644 index e69de29b..00000000 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX-061fd0a353e.report b/fonda/cpp_testsuite/varBugs/BUSYBOX-061fd0a353e.report index 1492eda4..f4a5ee8d 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX-061fd0a353e.report +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX-061fd0a353e.report @@ -3,19 +3,19 @@ Macros: CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF [-UCONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF -UCONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF ] -61 :: Line:16 +64 :: Line:16 Value stored to 'p' is never read [deadcode.DeadStores] [-DCONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF=1 -UCONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF ] [-UCONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF -DCONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF=1 ] -62 :: Line:16 +65 :: Line:16 Value stored to 'p' is never read [deadcode.DeadStores] -63 :: Line:27 +66 :: Line:27 Branch condition evaluates to a garbage value [core.uninitialized.Branch] [-DCONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF=1 -DCONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF=1 ] -64 :: Line:16 +67 :: Line:16 Value stored to 'p' is never read [deadcode.DeadStores] -65 :: Line:20 +68 :: Line:20 Branch condition evaluates to a garbage value [core.uninitialized.Branch] -66 :: Line:27 +69 :: Line:27 Branch condition evaluates to a garbage value [core.uninitialized.Branch] File Failed diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX-199501f2a00.report b/fonda/cpp_testsuite/varBugs/BUSYBOX-199501f2a00.report index e8888f77..9ce53de1 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX-199501f2a00.report +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX-199501f2a00.report @@ -2,7 +2,7 @@ BUSYBOX 199501f2a00.c Macros: ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS [-UENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS ] -94 :: Line:21 +103 :: Line:21 Null pointer passed to 2nd parameter expecting 'nonnull' [core.NonNullParamChecker] Desugared Clang Results: /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.c:1543:2: warning: Value stored to '__dt_1258' is never read [deadcode.DeadStores] @@ -14,4 +14,4 @@ Desugared Clang Results: 2 warnings generated. Matches: Unmatched ids: - 94 + 103 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX-1b487ea8a69.report b/fonda/cpp_testsuite/varBugs/BUSYBOX-1b487ea8a69.report index 4dd763ee..e89b6081 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX-1b487ea8a69.report +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX-1b487ea8a69.report @@ -4,7 +4,7 @@ Macros: ENABLE_FEATURE_STAT_FORMAT [-UENABLE_SELINUX -UENABLE_FEATURE_STAT_FORMAT ] [-DENABLE_SELINUX=1 -UENABLE_FEATURE_STAT_FORMAT ] -54 :: Line:14 +57 :: Line:14 Dereference of null pointer (loaded from variable 'scontext') [core.NullDereference] [-UENABLE_SELINUX -DENABLE_FEATURE_STAT_FORMAT=1 ] [-DENABLE_SELINUX=1 -DENABLE_FEATURE_STAT_FORMAT=1 ] @@ -17,6 +17,6 @@ Desugared Clang Results: ^~~~~~~~~~~~~~~~~~ 2 warnings generated. Matches: - 54 has a match! + 57 has a match! Unmatched ids: None! diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX-2631486f1bf.report b/fonda/cpp_testsuite/varBugs/BUSYBOX-2631486f1bf.report index 9ce3a705..c26a2b98 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX-2631486f1bf.report +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX-2631486f1bf.report @@ -3,16 +3,16 @@ Macros: CONFIG_FEATURE_LS_RECURSIVE CONFIG_FEATURE_LS_SORTFILES [-UCONFIG_FEATURE_LS_RECURSIVE -UCONFIG_FEATURE_LS_SORTFILES ] -69 :: Line:67 +72 :: Line:67 Assigned value is garbage or undefined [core.uninitialized.Assign] [-DCONFIG_FEATURE_LS_RECURSIVE=1 -UCONFIG_FEATURE_LS_SORTFILES ] -70 :: Line:67 +73 :: Line:67 Assigned value is garbage or undefined [core.uninitialized.Assign] [-UCONFIG_FEATURE_LS_RECURSIVE -DCONFIG_FEATURE_LS_SORTFILES=1 ] -71 :: Line:67 +74 :: Line:67 Assigned value is garbage or undefined [core.uninitialized.Assign] [-DCONFIG_FEATURE_LS_RECURSIVE=1 -DCONFIG_FEATURE_LS_SORTFILES=1 ] -72 :: Line:67 +75 :: Line:67 Assigned value is garbage or undefined [core.uninitialized.Assign] Desugared Clang Results: /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1250:42: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_963', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_986)' [unix.MallocSizeof] @@ -21,22 +21,22 @@ Desugared Clang Results: /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1253:42: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_963', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_986)' [unix.MallocSizeof] __curr_979 = ( struct __dnode_963 * ) malloc (sizeof(typeof(__sizeofStandin_986))) ; // L65 ~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1256:27: warning: Dereference of undefined pointer value [core.NullDereference] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1256:27: warning: Access to field '__val_964' results in a dereference of an undefined pointer value (loaded from variable '__curr_979') [core.NullDereference] __curr_979 -> __val_964 = rand( ) % 10 ; // L66 - ~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1259:27: warning: Dereference of undefined pointer value [core.NullDereference] + ~~~~~~~~~~ ^ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1259:27: warning: Access to field '__val_964' results in a dereference of an undefined pointer value (loaded from variable '__curr_979') [core.NullDereference] __curr_979 -> __val_964 = rand( ) % 10 ; // L66 - ~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~ + ~~~~~~~~~~ ^ /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1261:28: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] __curr_979 -> __next_965 = __head_980 ; // L67 ^ ~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1261:28: warning: Dereference of undefined pointer value [core.NullDereference] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1261:28: warning: Access to field '__next_965' results in a dereference of an undefined pointer value (loaded from variable '__curr_979') [core.NullDereference] __curr_979 -> __next_965 = __head_980 ; // L67 - ~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~ + ~~~~~~~~~~ ^ 6 warnings generated. Matches: Unmatched ids: - 69 - 70 - 71 72 + 73 + 74 + 75 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX-b273d665181.report b/fonda/cpp_testsuite/varBugs/BUSYBOX-b273d665181.report index 0612e022..e27c98ff 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX-b273d665181.report +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX-b273d665181.report @@ -4,7 +4,7 @@ Macros: BB_FEATURE_LS_USERNAME [-UBB_FEATURE_LS_FILETYPES -UBB_FEATURE_LS_USERNAME ] [-DBB_FEATURE_LS_FILETYPES=1 -UBB_FEATURE_LS_USERNAME ] -57 :: Line:16 +60 :: Line:16 2nd function call argument is an uninitialized value [core.CallAndMessage] [-UBB_FEATURE_LS_FILETYPES -DBB_FEATURE_LS_USERNAME=1 ] [-DBB_FEATURE_LS_FILETYPES=1 -DBB_FEATURE_LS_USERNAME=1 ] @@ -26,6 +26,6 @@ Desugared Clang Results: ^ ~ 5 warnings generated. Matches: - 57 has a match! + 60 has a match! Unmatched ids: None! diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX-b62bd7b261b.report b/fonda/cpp_testsuite/varBugs/BUSYBOX-b62bd7b261b.report index e137c5c6..835370db 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX-b62bd7b261b.report +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX-b62bd7b261b.report @@ -7,18 +7,18 @@ Macros: [-DENABLE_FEATURE_MDEV_CONF=1 -UENABLE_FEATURE_MDEV_RENAME -UENABLE_FEATURE_MDEV_RENAME_REGEXP ] [-UENABLE_FEATURE_MDEV_CONF -DENABLE_FEATURE_MDEV_RENAME=1 -UENABLE_FEATURE_MDEV_RENAME_REGEXP ] [-DENABLE_FEATURE_MDEV_CONF=1 -DENABLE_FEATURE_MDEV_RENAME=1 -UENABLE_FEATURE_MDEV_RENAME_REGEXP ] -80 :: Line:14 +89 :: Line:14 Value stored to 'a' during its initialization is never read [deadcode.DeadStores] -81 :: Line:16 +90 :: Line:16 Value stored to 'val' is never read [deadcode.DeadStores] [-UENABLE_FEATURE_MDEV_CONF -UENABLE_FEATURE_MDEV_RENAME -DENABLE_FEATURE_MDEV_RENAME_REGEXP=1 ] [-DENABLE_FEATURE_MDEV_CONF=1 -UENABLE_FEATURE_MDEV_RENAME -DENABLE_FEATURE_MDEV_RENAME_REGEXP=1 ] [-UENABLE_FEATURE_MDEV_CONF -DENABLE_FEATURE_MDEV_RENAME=1 -DENABLE_FEATURE_MDEV_RENAME_REGEXP=1 ] [-DENABLE_FEATURE_MDEV_CONF=1 -DENABLE_FEATURE_MDEV_RENAME=1 -DENABLE_FEATURE_MDEV_RENAME_REGEXP=1 ] -82 :: Line:16 +91 :: Line:16 Value stored to 'val' is never read [deadcode.DeadStores] -83 :: Line:24 - Dereference of undefined pointer value [core.NullDereference] +92 :: Line:24 + Dereference of undefined pointer value (loaded from variable 'p') [core.NullDereference] [-UENABLE_FEATURE_MDEV_CONF -UENABLE_FEATURE_MDEV_RENAME -UENABLE_FEATURE_MDEV_RENAME_REGEXP ] Desugared Clang Results: /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1451:1: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] @@ -36,9 +36,9 @@ char * (__a_1261)= __val_1258 ;// L14 /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1482:2: warning: Value stored to '__val_1258' is never read [deadcode.DeadStores] __val_1258 = ( __s_1259 && __s_1259 [ 1 ] ) ? __s_1259 + 1 : ( ( void * ) 0 ) ; // L16:L395 ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1494:14: warning: Dereference of undefined pointer value [core.NullDereference] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1494:14: warning: Dereference of undefined pointer value (loaded from variable '__p_1260') [core.NullDereference] * __p_1260 = * __s_1259 ; // L24 -~~~~~~~~~~~~~^~~~~~~~~~~~~ + ~~~~~~~~ ^ /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1556:1: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] char * (__a_1261)= __val_1258 ;// L14 ^~~~~~~~~~~~~~~~~ ~~~~~~~~~~ @@ -54,13 +54,14 @@ char * (__a_1261)= __val_1258 ;// L14 /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1587:2: warning: Value stored to '__val_1258' is never read [deadcode.DeadStores] __val_1258 = ( __s_1259 && __s_1259 [ 1 ] ) ? __s_1259 + 1 : ( ( void * ) 0 ) ; // L16:L395 ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1599:14: warning: Dereference of undefined pointer value [core.NullDereference] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1599:14: warning: Dereference of undefined pointer value (loaded from variable '__p_1260') [core.NullDereference] * __p_1260 = * __s_1259 ; // L24 -~~~~~~~~~~~~~^~~~~~~~~~~~~ + ~~~~~~~~ ^ 12 warnings generated. Matches: - 80 has a match! - 81 has a match! - 82 has a match! + 89 has a match! + 90 has a match! + 91 has a match! + 92 has a match! Unmatched ids: - 83 + None! diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX-bc0ffc0e971.report b/fonda/cpp_testsuite/varBugs/BUSYBOX-bc0ffc0e971.report index 16fa647b..5b09be82 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX-bc0ffc0e971.report +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX-bc0ffc0e971.report @@ -2,46 +2,55 @@ BUSYBOX bc0ffc0e971.c Macros: ENABLE_FEATURE_CLEAN_UP [-UENABLE_FEATURE_CLEAN_UP ] -75 :: Line:46 +81 :: Line:46 Potential leak of memory pointed to by 'clist' [unix.Malloc] Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2257:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_1823', which is incompatible with sizeof operand type 'struct (anonymous struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2238:1)' [unix.MallocSizeof] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2184:1: warning: Attempt to free released memory [unix.Malloc] +free ( __ch_1826 -> __ifname_1822) ; // L15 +^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2257:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_1823', which is incompatible with sizeof operand type 'struct (unnamed struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2238:1)' [unix.MallocSizeof] __ch_1848 = malloc (sizeof(__sizeofStandin_1852)) ; // L29 ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2260:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_1823', which is incompatible with sizeof operand type 'struct (anonymous struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2238:1)' [unix.MallocSizeof] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2260:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_1823', which is incompatible with sizeof operand type 'struct (unnamed struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2238:1)' [unix.MallocSizeof] __ch_1848 = malloc (sizeof(__sizeofStandin_1852)) ; // L29 ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2262:30: warning: Dereference of undefined pointer value [core.NullDereference] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2262:30: warning: Access to field '__ifname_1822' results in a dereference of an undefined pointer value (loaded from variable '__ch_1848') [core.NullDereference] __ch_1848 -> __ifname_1822 = __ifname_1847 ; // L30 - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~ + ~~~~~~~~~ ^ /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2262:33: warning: Potential leak of memory pointed to by '__ch_1848' [unix.Malloc] __ch_1848 -> __ifname_1822 = __ifname_1847 ; // L30 ^~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2297:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_1824', which is incompatible with sizeof operand type 'struct (anonymous struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2279:1)' [unix.MallocSizeof] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2297:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_1824', which is incompatible with sizeof operand type 'struct (unnamed struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2279:1)' [unix.MallocSizeof] __ch_1849 = malloc (sizeof(__sizeofStandin_1855)) ; // L29 ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2300:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_1824', which is incompatible with sizeof operand type 'struct (anonymous struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2279:1)' [unix.MallocSizeof] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2300:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_1824', which is incompatible with sizeof operand type 'struct (unnamed struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2279:1)' [unix.MallocSizeof] __ch_1849 = malloc (sizeof(__sizeofStandin_1855)) ; // L29 ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2302:30: warning: Dereference of undefined pointer value [core.NullDereference] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2302:30: warning: Access to field '__ifname_1822' results in a dereference of an undefined pointer value (loaded from variable '__ch_1849') [core.NullDereference] __ch_1849 -> __ifname_1822 = __ifname_1847 ; // L30 - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~ + ~~~~~~~~~ ^ /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2302:33: warning: Potential leak of memory pointed to by '__ch_1849' [unix.Malloc] __ch_1849 -> __ifname_1822 = __ifname_1847 ; // L30 ^~~~~~~~~~~~~ /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2333:39: warning: Potential leak of memory pointed to by '__ch_1872' [unix.Malloc] for ( __ch_1872 = __clist_1870 ; __ch_1872 ; __ch_1872 = __ch_1872 -> __next_1821 )// L43 ^~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2333:67: warning: Use of memory after it is freed [unix.Malloc] +for ( __ch_1872 = __clist_1870 ; __ch_1872 ; __ch_1872 = __ch_1872 -> __next_1821 )// L43 + ^~~~~~~~~~~~~~~~~~~~~~~~~ /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2338:5: warning: Potential leak of memory pointed to by '__clist_1870' [unix.Malloc] if (__static_condition_default_1876) { ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2339:39: warning: Potential leak of memory pointed to by '__ch_1873' [unix.Malloc] for ( __ch_1873 = __clist_1871 ; __ch_1873 ; __ch_1873 = __ch_1873 -> __next_1821 )// L43 ^~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2339:67: warning: Use of memory after it is freed [unix.Malloc] +for ( __ch_1873 = __clist_1871 ; __ch_1873 ; __ch_1873 = __ch_1873 -> __next_1821 )// L43 + ^~~~~~~~~~~~~~~~~~~~~~~~~ /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2344:5: warning: Potential leak of memory pointed to by '__clist_1871' [unix.Malloc] if (__static_condition_default_1877) { ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -12 warnings generated. +15 warnings generated. Matches: Unmatched ids: - 75 + 81 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX-eef2317b9f5.report b/fonda/cpp_testsuite/varBugs/BUSYBOX-eef2317b9f5.report index e3bc3e56..26d1f155 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX-eef2317b9f5.report +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX-eef2317b9f5.report @@ -2,8 +2,8 @@ BUSYBOX eef2317b9f5.c Macros: CONFIG_FEATURE_CLEAN_UP [-UCONFIG_FEATURE_CLEAN_UP ] -67 :: Line:26 +70 :: Line:26 Value stored to 'buf' is never read [deadcode.DeadStores] -68 :: Line:34 +71 :: Line:34 Potential leak of memory pointed to by 'buf' [unix.Malloc] File Failed diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.inferres deleted file mode 100644 index 70df76f3..00000000 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.inferres +++ /dev/null @@ -1,50 +0,0 @@ - -BUSYBOX/061fd0a353e.desugared.c:36: error: Uninitialized Value - The value read from __c_3 was never initialized. - 34. switch ( __c_3 )// L12 - 35. { - 36. case 'W' : - ^ - 37. { - 38. - -BUSYBOX/061fd0a353e.desugared.c:44: error: Uninitialized Value - The value read from __c_3 was never initialized. - 42. break ; // L17 - 43. } - 44. case 'U' : - ^ - 45. { - 46. - -BUSYBOX/061fd0a353e.desugared.c:58: error: Uninitialized Value - The value read from __c_3 was never initialized. - 56. break ; // L22 - 57. } - 58. case 'R' : - ^ - 59. { - 60. - -BUSYBOX/061fd0a353e.desugared.c:49: error: Uninitialized Value - The value read from __p_2 was never initialized. - 47. - 48. - 49. if ( ! __p_2 )// L20 - ^ - 50. { - 51. - -BUSYBOX/061fd0a353e.desugared.c:63: error: Uninitialized Value - The value read from __p_2 was never initialized. - 61. - 62. - 63. if ( ! __p_2 )// L27 - ^ - 64. { - 65. - - -Found 5 issues (console output truncated to 5, see '/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/infer-out/report.txt' for the full list) - Issue Type(ISSUED_TYPE_ID): # - Uninitialized Value(UNINITIALIZED_VALUE): 5 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.inferres deleted file mode 100644 index e69de29b..00000000 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/192c35f6eb2.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/192c35f6eb2.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/192c35f6eb2.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/192c35f6eb2.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/192c35f6eb2.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/192c35f6eb2.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.inferres deleted file mode 100644 index a2ac9ac8..00000000 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.inferres +++ /dev/null @@ -1,23 +0,0 @@ - -BUSYBOX/199501f2a00.desugared.c:1543: error: Dead Store - The value written to &__dt_1258 (type char*) is never used. - 1541. - 1542. - 1543. __dt_1258 = "-i" ; // L10 - ^ - 1544. } - 1545. } - -BUSYBOX/199501f2a00.desugared.c:1557: error: Dead Store - The value written to &__dt_1258 (type char*) is never used. - 1555. - 1556. - 1557. __dt_1258 = "-i" ; // L10 - ^ - 1558. } - 1559. } - - -Found 2 issues - Issue Type(ISSUED_TYPE_ID): # - Dead Store(DEAD_STORE): 2 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.inferres deleted file mode 100644 index 1064ec89..00000000 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.inferres +++ /dev/null @@ -1,14 +0,0 @@ - -BUSYBOX/199501f2a00.c:21: error: Null Dereference - pointer `dt` last assigned on line 7 could be null and is dereferenced by call to `strcat()` at line 21, column 3. - 19. strcpy(buf, "module option(s): "); - 20. - 21. strcat(buf, dt); // ERROR - ^ - 22. #endif - 23. } - - -Found 1 issue - Issue Type(ISSUED_TYPE_ID): # - Null Dereference(NULL_DEREFERENCE): 1 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.inferres deleted file mode 100644 index f2235f69..00000000 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.inferres +++ /dev/null @@ -1,23 +0,0 @@ - -BUSYBOX/1b487ea8a69.desugared.c:2937: error: Null Dereference - pointer `__scontext_2038` last assigned on line 2931 could be null and is dereferenced at line 2937, column 26. - 2935. { - 2936. if (__static_condition_default_2045) { - 2937. __printf_421 (" %lc\n",* __scontext_2038 ) ; // L14 - ^ - 2938. } - 2939. if (__static_condition_default_2046) { - -BUSYBOX/1b487ea8a69.desugared.c:2994: error: Null Dereference - pointer `__scontext_2038` last assigned on line 2988 could be null and is dereferenced at line 2994, column 26. - 2992. { - 2993. if (__static_condition_default_2054) { - 2994. __printf_421 (" %lc\n",* __scontext_2038 ) ; // L14 - ^ - 2995. } - 2996. if (__static_condition_default_2055) { - - -Found 2 issues - Issue Type(ISSUED_TYPE_ID): # - Null Dereference(NULL_DEREFERENCE): 2 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.inferres deleted file mode 100644 index e007757f..00000000 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.inferres +++ /dev/null @@ -1,14 +0,0 @@ - -BUSYBOX/1b487ea8a69.c:14: error: Null Dereference - pointer `scontext` last assigned on line 7 could be null and is dereferenced at line 14, column 22. - 12. #ifdef ENABLE_SELINUX - 13. if(rand() % 2) - 14. printf(" %lc\n", *scontext); // ERROR - ^ - 15. #endif - 16. - - -Found 1 issue - Issue Type(ISSUED_TYPE_ID): # - Null Dereference(NULL_DEREFERENCE): 1 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.clangres index 31fa8f3d..34ba5287 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.clangres @@ -4,16 +4,16 @@ /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1253:42: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_963', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_986)' [unix.MallocSizeof] __curr_979 = ( struct __dnode_963 * ) malloc (sizeof(typeof(__sizeofStandin_986))) ; // L65 ~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1256:27: warning: Dereference of undefined pointer value [core.NullDereference] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1256:27: warning: Access to field '__val_964' results in a dereference of an undefined pointer value (loaded from variable '__curr_979') [core.NullDereference] __curr_979 -> __val_964 = rand( ) % 10 ; // L66 - ~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1259:27: warning: Dereference of undefined pointer value [core.NullDereference] + ~~~~~~~~~~ ^ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1259:27: warning: Access to field '__val_964' results in a dereference of an undefined pointer value (loaded from variable '__curr_979') [core.NullDereference] __curr_979 -> __val_964 = rand( ) % 10 ; // L66 - ~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~ + ~~~~~~~~~~ ^ /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1261:28: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] __curr_979 -> __next_965 = __head_980 ; // L67 ^ ~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1261:28: warning: Dereference of undefined pointer value [core.NullDereference] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1261:28: warning: Access to field '__next_965' results in a dereference of an undefined pointer value (loaded from variable '__curr_979') [core.NullDereference] __curr_979 -> __next_965 = __head_980 ; // L67 - ~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~ + ~~~~~~~~~~ ^ 6 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.inferres deleted file mode 100644 index e7bbdd8b..00000000 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.inferres +++ /dev/null @@ -1,51 +0,0 @@ - -BUSYBOX/2631486f1bf.desugared.c:1256: error: Null Dereference - pointer `__curr_979` last assigned on line 1253 could be null and is dereferenced at line 1256, column 2. - 1254. } - 1255. if (__static_condition_default_989) { - 1256. __curr_979 -> __val_964 = rand( ) % 10 ; // L66 - ^ - 1257. } - 1258. if (__static_condition_default_990) { - -BUSYBOX/2631486f1bf.desugared.c:1259: error: Null Dereference - pointer `__curr_979` last assigned on line 1253 could be null and is dereferenced at line 1259, column 2. - 1257. } - 1258. if (__static_condition_default_990) { - 1259. __curr_979 -> __val_964 = rand( ) % 10 ; // L66 - ^ - 1260. } - 1261. __curr_979 -> __next_965 = __head_980 ; // L67 - -BUSYBOX/2631486f1bf.desugared.c:1261: error: Null Dereference - pointer `__curr_979` last assigned on line 1253 could be null and is dereferenced at line 1261, column 2. - 1259. __curr_979 -> __val_964 = rand( ) % 10 ; // L66 - 1260. } - 1261. __curr_979 -> __next_965 = __head_980 ; // L67 - ^ - 1262. __head_980 = __curr_979 ; // L68 - 1263. __arr_982 [ ( __size_981 - 1 ) - __i_983 ] = __curr_979 ; // L69 - -BUSYBOX/2631486f1bf.desugared.c:1262: error: Uninitialized Value - The value read from __curr_979 was never initialized. - 1260. } - 1261. __curr_979 -> __next_965 = __head_980 ; // L67 - 1262. __head_980 = __curr_979 ; // L68 - ^ - 1263. __arr_982 [ ( __size_981 - 1 ) - __i_983 ] = __curr_979 ; // L69 - 1264. } - -BUSYBOX/2631486f1bf.desugared.c:1263: error: Uninitialized Value - The value read from __curr_979 was never initialized. - 1261. __curr_979 -> __next_965 = __head_980 ; // L67 - 1262. __head_980 = __curr_979 ; // L68 - 1263. __arr_982 [ ( __size_981 - 1 ) - __i_983 ] = __curr_979 ; // L69 - ^ - 1264. } - 1265. } - - -Found 6 issues (console output truncated to 5, see '/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/infer-out/report.txt' for the full list) - Issue Type(ISSUED_TYPE_ID): # - Uninitialized Value(UNINITIALIZED_VALUE): 3 - Null Dereference(NULL_DEREFERENCE): 3 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.inferres deleted file mode 100644 index 3179d9ee..00000000 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.inferres +++ /dev/null @@ -1,34 +0,0 @@ - -BUSYBOX/2631486f1bf.c:66: error: Null Dereference - pointer `curr` last assigned on line 65 could be null and is dereferenced at line 66, column 5. - 64. for (int i = 0; i < size; i++) { - 65. curr = (struct dnode *) malloc(sizeof(struct dnode)); - 66. curr->val = rand() % 10; - ^ - 67. curr->next = head; - 68. head = curr; - -BUSYBOX/2631486f1bf.c:67: error: Uninitialized Value - The value read from head was never initialized. - 65. curr = (struct dnode *) malloc(sizeof(struct dnode)); - 66. curr->val = rand() % 10; - 67. curr->next = head; - ^ - 68. head = curr; - 69. arr[(size-1)-i] = curr; - -BUSYBOX/2631486f1bf.c:51: warning: Pointer To Integral Implicit Cast - Implicit conversion from `int**` to `int` in usage of `temp` at line 51, column 17. - 49. temp=*arr[i]; - 50. *arr[i]=*arr[j]; - 51. *arr[j]=temp; - ^ - 52. } - 53. } - - -Found 3 issues - Issue Type(ISSUED_TYPE_ID): # - Uninitialized Value(UNINITIALIZED_VALUE): 1 - Pointer To Integral Implicit Cast(POINTER_TO_INTEGRAL_IMPLICIT_CAST): 1 - Null Dereference(NULL_DEREFERENCE): 1 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.inferres deleted file mode 100644 index 7180583a..00000000 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.inferres +++ /dev/null @@ -1,50 +0,0 @@ - -BUSYBOX/5275b1e49f6.desugared.c:1170: error: Dead Store - The value written to &__k_crcs_970 (type int) is never used. - 1168. - 1169. - 1170. __k_crcs_970 = __someInt_969 ; // L25 - ^ - 1171. } - 1172. } - -BUSYBOX/5275b1e49f6.desugared.c:1204: error: Dead Store - The value written to &__k_crcs_970 (type int) is never used. - 1202. - 1203. - 1204. __k_crcs_970 = __someInt_969 ; // L25 - ^ - 1205. } - 1206. } - -BUSYBOX/5275b1e49f6.desugared.c:1141: error: Dead Store - The value written to &__m_has_modinfo_967 (type int) is never used. - 1139. { - 1140. if (__static_condition_default_974) { - 1141. __m_has_modinfo_967 = 1 ; // L18 - ^ - 1142. } - 1143. } - -BUSYBOX/5275b1e49f6.desugared.c:1155: error: Dead Store - The value written to &__m_has_modinfo_967 (type int) is never used. - 1153. { - 1154. if (__static_condition_default_975) { - 1155. __m_has_modinfo_967 = 1 ; // L18 - ^ - 1156. } - 1157. } - -BUSYBOX/5275b1e49f6.desugared.c:1300: error: Dead Store - The value written to &__k_crcs_970 (type int) is never used. - 1298. - 1299. - 1300. __k_crcs_970 = __someInt_969 ; // L25 - ^ - 1301. } - 1302. } - - -Found 8 issues (console output truncated to 5, see '/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/infer-out/report.txt' for the full list) - Issue Type(ISSUED_TYPE_ID): # - Dead Store(DEAD_STORE): 8 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.inferres deleted file mode 100644 index e69de29b..00000000 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/5cd6461b6fb.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/5cd6461b6fb.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/5cd6461b6fb.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/5cd6461b6fb.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/5cd6461b6fb.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/5cd6461b6fb.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.inferres deleted file mode 100644 index e69de29b..00000000 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.inferres deleted file mode 100644 index e69de29b..00000000 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.inferres deleted file mode 100644 index 2cb125a8..00000000 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.inferres +++ /dev/null @@ -1,41 +0,0 @@ - -BUSYBOX/b273d665181.desugared.c:2936: error: Uninitialized Value - The value read from __info_2036 was never initialized. - 2934. { - 2935. if (__static_condition_default_2044) { - 2936. __printf_421 ("%d", __info_2036 ) ; // L16 - ^ - 2937. } - 2938. if (__static_condition_default_2045) { - -BUSYBOX/b273d665181.desugared.c:2947: error: Uninitialized Value - The value read from __info_2036 was never initialized. - 2945. { - 2946. if (__static_condition_default_2047) { - 2947. __printf_421 ("%d", __info_2036 ) ; // L16 - ^ - 2948. } - 2949. if (__static_condition_default_2048) { - -BUSYBOX/b273d665181.desugared.c:3007: error: Uninitialized Value - The value read from __info_2036 was never initialized. - 3005. { - 3006. if (__static_condition_default_2054) { - 3007. __printf_421 ("%d", __info_2036 ) ; // L16 - ^ - 3008. } - 3009. if (__static_condition_default_2055) { - -BUSYBOX/b273d665181.desugared.c:3018: error: Uninitialized Value - The value read from __info_2036 was never initialized. - 3016. { - 3017. if (__static_condition_default_2057) { - 3018. __printf_421 ("%d", __info_2036 ) ; // L16 - ^ - 3019. } - 3020. if (__static_condition_default_2058) { - - -Found 4 issues - Issue Type(ISSUED_TYPE_ID): # - Uninitialized Value(UNINITIALIZED_VALUE): 4 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.inferres deleted file mode 100644 index adc228f5..00000000 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.inferres +++ /dev/null @@ -1,14 +0,0 @@ - -BUSYBOX/b273d665181.c:16: error: Uninitialized Value - The value read from info was never initialized. - 14. #ifdef BB_FEATURE_LS_FILETYPES - 15. if (rand() % 2) - 16. printf("%d", info); // ERROR - ^ - 17. #endif - 18. } - - -Found 1 issue - Issue Type(ISSUED_TYPE_ID): # - Uninitialized Value(UNINITIALIZED_VALUE): 1 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.clangres index 0568aaee..7faf2400 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.clangres @@ -13,9 +13,9 @@ char * (__a_1261)= __val_1258 ;// L14 /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1482:2: warning: Value stored to '__val_1258' is never read [deadcode.DeadStores] __val_1258 = ( __s_1259 && __s_1259 [ 1 ] ) ? __s_1259 + 1 : ( ( void * ) 0 ) ; // L16:L395 ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1494:14: warning: Dereference of undefined pointer value [core.NullDereference] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1494:14: warning: Dereference of undefined pointer value (loaded from variable '__p_1260') [core.NullDereference] * __p_1260 = * __s_1259 ; // L24 -~~~~~~~~~~~~~^~~~~~~~~~~~~ + ~~~~~~~~ ^ /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1556:1: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] char * (__a_1261)= __val_1258 ;// L14 ^~~~~~~~~~~~~~~~~ ~~~~~~~~~~ @@ -31,7 +31,7 @@ char * (__a_1261)= __val_1258 ;// L14 /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1587:2: warning: Value stored to '__val_1258' is never read [deadcode.DeadStores] __val_1258 = ( __s_1259 && __s_1259 [ 1 ] ) ? __s_1259 + 1 : ( ( void * ) 0 ) ; // L16:L395 ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1599:14: warning: Dereference of undefined pointer value [core.NullDereference] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1599:14: warning: Dereference of undefined pointer value (loaded from variable '__p_1260') [core.NullDereference] * __p_1260 = * __s_1259 ; // L24 -~~~~~~~~~~~~~^~~~~~~~~~~~~ + ~~~~~~~~ ^ 12 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.inferres deleted file mode 100644 index 6a93a88d..00000000 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.inferres +++ /dev/null @@ -1,51 +0,0 @@ - -BUSYBOX/b62bd7b261b.desugared.c:1451: error: Dead Store - The value written to &__a_1261 (type char*) is never used. - 1449. __val_1258 = "mode - device permissions" ; // L12 - 1450. } - 1451. char * (__a_1261)= __val_1258 ;// L14 - ^ - 1452. - 1453. if (__static_condition_default_1267) { - -BUSYBOX/b62bd7b261b.desugared.c:1457: error: Dead Store - The value written to &__val_1258 (type char*) is never used. - 1455. } - 1456. if (__static_condition_default_1268) { - 1457. __val_1258 = ( __s_1259 && __s_1259 [ 1 ] ) ? __s_1259 + 1 : ( ( void * ) 0 ) ; // L16:L395 - ^ - 1458. } - 1459. } - -BUSYBOX/b62bd7b261b.desugared.c:1482: error: Dead Store - The value written to &__val_1258 (type char*) is never used. - 1480. - 1481. __s_1259 = __strchr_1167 ( __val_1258 ,' ') ; // L15 - 1482. __val_1258 = ( __s_1259 && __s_1259 [ 1 ] ) ? __s_1259 + 1 : ( ( void * ) 0 ) ; // L16:L395 - ^ - 1483. int __n_1262= 0;// L20 - 1484. - -BUSYBOX/b62bd7b261b.desugared.c:1505: error: Uninitialized Value - The value read from __p_1260 was never initialized. - 1503. - 1504. __n_1262 ++ ; // L27 - 1505. __p_1260 += __n_1262 - 1 ; // L28 - ^ - 1506. } - 1507. } - -BUSYBOX/b62bd7b261b.desugared.c:1520: error: Uninitialized Value - The value read from __p_1260 was never initialized. - 1518. - 1519. __n_1262 ++ ; // L27 - 1520. __p_1260 += __n_1262 - 1 ; // L28 - ^ - 1521. } - 1522. } - - -Found 18 issues (console output truncated to 5, see '/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/infer-out/report.txt' for the full list) - Issue Type(ISSUED_TYPE_ID): # - Uninitialized Value(UNINITIALIZED_VALUE): 12 - Dead Store(DEAD_STORE): 6 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.inferres deleted file mode 100644 index c5909fa5..00000000 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.inferres +++ /dev/null @@ -1,23 +0,0 @@ - -BUSYBOX/b62bd7b261b.c:14: error: Dead Store - The value written to &a (type char*) is never used. - 12. val = "mode - device permissions"; - 13. - 14. char *a = val; - ^ - 15. s = strchr(val, ' '); - 16. val = (s && s[1]) ? s+1 : NULL; - -BUSYBOX/b62bd7b261b.c:16: error: Dead Store - The value written to &val (type char*) is never used. - 14. char *a = val; - 15. s = strchr(val, ' '); - 16. val = (s && s[1]) ? s+1 : NULL; - ^ - 17. - 18. #ifdef ENABLE_FEATURE_MDEV_RENAME_REGEXP - - -Found 2 issues - Issue Type(ISSUED_TYPE_ID): # - Dead Store(DEAD_STORE): 2 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.inferres deleted file mode 100644 index e69de29b..00000000 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.clangres index f60ed0a6..ccd3b8f5 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.clangres @@ -1,37 +1,46 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2257:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_1823', which is incompatible with sizeof operand type 'struct (anonymous struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2238:1)' [unix.MallocSizeof] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2184:1: warning: Attempt to free released memory [unix.Malloc] +free ( __ch_1826 -> __ifname_1822) ; // L15 +^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2257:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_1823', which is incompatible with sizeof operand type 'struct (unnamed struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2238:1)' [unix.MallocSizeof] __ch_1848 = malloc (sizeof(__sizeofStandin_1852)) ; // L29 ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2260:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_1823', which is incompatible with sizeof operand type 'struct (anonymous struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2238:1)' [unix.MallocSizeof] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2260:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_1823', which is incompatible with sizeof operand type 'struct (unnamed struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2238:1)' [unix.MallocSizeof] __ch_1848 = malloc (sizeof(__sizeofStandin_1852)) ; // L29 ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2262:30: warning: Dereference of undefined pointer value [core.NullDereference] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2262:30: warning: Access to field '__ifname_1822' results in a dereference of an undefined pointer value (loaded from variable '__ch_1848') [core.NullDereference] __ch_1848 -> __ifname_1822 = __ifname_1847 ; // L30 - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~ + ~~~~~~~~~ ^ /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2262:33: warning: Potential leak of memory pointed to by '__ch_1848' [unix.Malloc] __ch_1848 -> __ifname_1822 = __ifname_1847 ; // L30 ^~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2297:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_1824', which is incompatible with sizeof operand type 'struct (anonymous struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2279:1)' [unix.MallocSizeof] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2297:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_1824', which is incompatible with sizeof operand type 'struct (unnamed struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2279:1)' [unix.MallocSizeof] __ch_1849 = malloc (sizeof(__sizeofStandin_1855)) ; // L29 ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2300:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_1824', which is incompatible with sizeof operand type 'struct (anonymous struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2279:1)' [unix.MallocSizeof] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2300:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_1824', which is incompatible with sizeof operand type 'struct (unnamed struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2279:1)' [unix.MallocSizeof] __ch_1849 = malloc (sizeof(__sizeofStandin_1855)) ; // L29 ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2302:30: warning: Dereference of undefined pointer value [core.NullDereference] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2302:30: warning: Access to field '__ifname_1822' results in a dereference of an undefined pointer value (loaded from variable '__ch_1849') [core.NullDereference] __ch_1849 -> __ifname_1822 = __ifname_1847 ; // L30 - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~ + ~~~~~~~~~ ^ /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2302:33: warning: Potential leak of memory pointed to by '__ch_1849' [unix.Malloc] __ch_1849 -> __ifname_1822 = __ifname_1847 ; // L30 ^~~~~~~~~~~~~ /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2333:39: warning: Potential leak of memory pointed to by '__ch_1872' [unix.Malloc] for ( __ch_1872 = __clist_1870 ; __ch_1872 ; __ch_1872 = __ch_1872 -> __next_1821 )// L43 ^~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2333:67: warning: Use of memory after it is freed [unix.Malloc] +for ( __ch_1872 = __clist_1870 ; __ch_1872 ; __ch_1872 = __ch_1872 -> __next_1821 )// L43 + ^~~~~~~~~~~~~~~~~~~~~~~~~ /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2338:5: warning: Potential leak of memory pointed to by '__clist_1870' [unix.Malloc] if (__static_condition_default_1876) { ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2339:39: warning: Potential leak of memory pointed to by '__ch_1873' [unix.Malloc] for ( __ch_1873 = __clist_1871 ; __ch_1873 ; __ch_1873 = __ch_1873 -> __next_1821 )// L43 ^~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2339:67: warning: Use of memory after it is freed [unix.Malloc] +for ( __ch_1873 = __clist_1871 ; __ch_1873 ; __ch_1873 = __ch_1873 -> __next_1821 )// L43 + ^~~~~~~~~~~~~~~~~~~~~~~~~ /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2344:5: warning: Potential leak of memory pointed to by '__clist_1871' [unix.Malloc] if (__static_condition_default_1877) { ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -12 warnings generated. +15 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.inferres deleted file mode 100644 index 34212b7d..00000000 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.inferres +++ /dev/null @@ -1,23 +0,0 @@ - -BUSYBOX/bc0ffc0e971.desugared.c:2264: error: Uninitialized Value - The value read from __ch_1848 was never initialized. - 2262. __ch_1848 -> __ifname_1822 = __ifname_1847 ; // L30 - 2263. __ch_1848 -> __next_1821 = * __clist_1845 ; // L31 - 2264. * __clist_1845 = __ch_1848 ; // L32 - ^ - 2265. } - 2266. } - -BUSYBOX/bc0ffc0e971.desugared.c:2304: error: Uninitialized Value - The value read from __ch_1849 was never initialized. - 2302. __ch_1849 -> __ifname_1822 = __ifname_1847 ; // L30 - 2303. __ch_1849 -> __next_1821 = * __clist_1846 ; // L31 - 2304. * __clist_1846 = __ch_1849 ; // L32 - ^ - 2305. } - 2306. } - - -Found 2 issues - Issue Type(ISSUED_TYPE_ID): # - Uninitialized Value(UNINITIALIZED_VALUE): 2 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.inferres deleted file mode 100644 index f7cf7004..00000000 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.inferres +++ /dev/null @@ -1,14 +0,0 @@ - -BUSYBOX/bc0ffc0e971.c:30: error: Null Dereference - pointer `ch` last assigned on line 29 could be null and is dereferenced at line 30, column 3. - 28. printf("interface name '%s' too long", ifname); - 29. ch = malloc(sizeof(*ch)); - 30. ch->ifname = ifname; - ^ - 31. ch->next = *clist; - 32. *clist = ch; - - -Found 1 issue - Issue Type(ISSUED_TYPE_ID): # - Null Dereference(NULL_DEREFERENCE): 1 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/cc3f20b9bdf.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/cc3f20b9bdf.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/cc3f20b9bdf.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/cc3f20b9bdf.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/cc3f20b9bdf.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/cc3f20b9bdf.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/cf1f2ace391.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/cf1f2ace391.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/cf1f2ace391.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/cf1f2ace391.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/cf1f2ace391.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/cf1f2ace391.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/df7b6577c6a.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/df7b6577c6a.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/df7b6577c6a.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/df7b6577c6a.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/df7b6577c6a.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/df7b6577c6a.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.clangres index f8544390..8629f8de 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.clangres @@ -1,4 +1,4 @@ -In file included from :342: +In file included from :344: :1:8: error: 'defined' cannot be used as a macro name #undef defined ^ diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.inferres deleted file mode 100644 index 15280db3..00000000 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.inferres +++ /dev/null @@ -1,23 +0,0 @@ - -BUSYBOX/ebee301c8b0.desugared.c:2920: error: Uninitialized Value - The value read from __dst_2043 was never initialized. - 2918. } - 2919. if (__static_condition_default_2050) { - 2920. __copySubFile_2038 ( __src_2042 , __dst_2043 ) ; // L18 - ^ - 2921. } - 2922. if (__static_condition_default_2051) { - -BUSYBOX/ebee301c8b0.desugared.c:2920: error: Uninitialized Value - The value read from __src_2042 was never initialized. - 2918. } - 2919. if (__static_condition_default_2050) { - 2920. __copySubFile_2038 ( __src_2042 , __dst_2043 ) ; // L18 - ^ - 2921. } - 2922. if (__static_condition_default_2051) { - - -Found 2 issues - Issue Type(ISSUED_TYPE_ID): # - Uninitialized Value(UNINITIALIZED_VALUE): 2 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.inferres deleted file mode 100644 index 2b5e0fcd..00000000 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.inferres +++ /dev/null @@ -1,24 +0,0 @@ - -BUSYBOX/eef2317b9f5.desugared.c:50: error: Dead Store - The value written to &__bufsize_28 (type int) is never used. - 48. char * (__buf_27);// L6 - 49. - 50. int __bufsize_28= 8196;// L7 - ^ - 51. - 52. int __i_29;// L8 - -BUSYBOX/eef2317b9f5.desugared.c:76: error: Uninitialized Value - The value read from __buf_27 was never initialized. - 74. all_done_0: - 75. { - 76. if ( __buf_27 )// L30 - ^ - 77. { - 78. - - -Found 2 issues - Issue Type(ISSUED_TYPE_ID): # - Uninitialized Value(UNINITIALIZED_VALUE): 1 - Dead Store(DEAD_STORE): 1 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.inferres deleted file mode 100644 index 19b17f14..00000000 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.inferres +++ /dev/null @@ -1,14 +0,0 @@ - -BUSYBOX/eef2317b9f5.c:30: error: Uninitialized Value - The value read from buf was never initialized. - 28. all_done: - 29. #ifdef CONFIG_FEATURE_CLEAN_UP - 30. if (buf) { //WARNING - ^ - 31. free(buf); //ERROR - 32. } - - -Found 1 issue - Issue Type(ISSUED_TYPE_ID): # - Uninitialized Value(UNINITIALIZED_VALUE): 1 diff --git a/fonda/cpp_testsuite/varBugs/LINUX-30e053248da.report b/fonda/cpp_testsuite/varBugs/LINUX-30e053248da.report index 900fdfa0..2835c36f 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-30e053248da.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-30e053248da.report @@ -2,9 +2,9 @@ LINUX 30e053248da.c Macros: CONFIG_SECURITY [-UCONFIG_SECURITY ] -42 :: Line:31 - Assigned value is garbage or undefined [core.uninitialized.Assign] 43 :: Line:31 + Assigned value is garbage or undefined [core.uninitialized.Assign] +44 :: Line:31 Value stored to 'x' during its initialization is never read [deadcode.DeadStores] Desugared Clang Results: /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.desugared.c:111:7: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] @@ -18,6 +18,6 @@ int __x_9= * __length_7 ;// L31 ^~~~~ ~~~~~~~~~~~~~ 3 warnings generated. Matches: - 43 has a match! + 44 has a match! Unmatched ids: - 42 + 43 diff --git a/fonda/cpp_testsuite/varBugs/LINUX-36855dcfc98.report b/fonda/cpp_testsuite/varBugs/LINUX-36855dcfc98.report index a981cc12..ba5de319 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-36855dcfc98.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-36855dcfc98.report @@ -2,7 +2,7 @@ LINUX 36855dcfc98.c Macros: CONFIG_BF60x [-UCONFIG_BF60x ] -10 :: Line:6 +11 :: Line:6 Value stored to 'wakeup' is never read [deadcode.DeadStores] Desugared Clang Results: /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/36855dcfc98.desugared.c:32:2: warning: Value stored to '__wakeup_0' is never read [deadcode.DeadStores] @@ -10,6 +10,6 @@ Desugared Clang Results: ^ ~ 1 warning generated. Matches: - 10 has a match! + 11 has a match! Unmatched ids: None! diff --git a/fonda/cpp_testsuite/varBugs/LINUX-6252547b8a7.report b/fonda/cpp_testsuite/varBugs/LINUX-6252547b8a7.report index cd05e52f..2bcceaaf 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-6252547b8a7.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-6252547b8a7.report @@ -5,27 +5,27 @@ Macros: CONFIG_OF_IRQ [-UCONFIG_TWL4030_CORE -UCONFIG_IRQ_DOMAIN -UCONFIG_OF_IRQ ] [-DCONFIG_TWL4030_CORE=1 -UCONFIG_IRQ_DOMAIN -UCONFIG_OF_IRQ ] -30 :: Line:12 - Value stored to 'irq' during its initialization is never read [deadcode.DeadStores] 31 :: Line:12 + Value stored to 'irq' during its initialization is never read [deadcode.DeadStores] +32 :: Line:12 Dereference of null pointer (loaded from variable 'ops') [core.NullDereference] [-UCONFIG_TWL4030_CORE -DCONFIG_IRQ_DOMAIN=1 -UCONFIG_OF_IRQ ] -32 :: Line:12 - Value stored to 'irq' during its initialization is never read [deadcode.DeadStores] -[-DCONFIG_TWL4030_CORE=1 -DCONFIG_IRQ_DOMAIN=1 -UCONFIG_OF_IRQ ] 33 :: Line:12 Value stored to 'irq' during its initialization is never read [deadcode.DeadStores] +[-DCONFIG_TWL4030_CORE=1 -DCONFIG_IRQ_DOMAIN=1 -UCONFIG_OF_IRQ ] 34 :: Line:12 + Value stored to 'irq' during its initialization is never read [deadcode.DeadStores] +35 :: Line:12 Dereference of null pointer (loaded from variable 'ops') [core.NullDereference] [-UCONFIG_TWL4030_CORE -UCONFIG_IRQ_DOMAIN -DCONFIG_OF_IRQ=1 ] [-DCONFIG_TWL4030_CORE=1 -UCONFIG_IRQ_DOMAIN -DCONFIG_OF_IRQ=1 ] -35 :: Line:12 +36 :: Line:12 Value stored to 'irq' during its initialization is never read [deadcode.DeadStores] [-UCONFIG_TWL4030_CORE -DCONFIG_IRQ_DOMAIN=1 -DCONFIG_OF_IRQ=1 ] -36 :: Line:12 +37 :: Line:12 Value stored to 'irq' during its initialization is never read [deadcode.DeadStores] [-DCONFIG_TWL4030_CORE=1 -DCONFIG_IRQ_DOMAIN=1 -DCONFIG_OF_IRQ=1 ] -37 :: Line:12 +38 :: Line:12 Value stored to 'irq' during its initialization is never read [deadcode.DeadStores] [-UCONFIG_TWL4030_CORE -UCONFIG_IRQ_DOMAIN -UCONFIG_OF_IRQ ] Desugared Clang Results: @@ -37,7 +37,6 @@ int __irq_2= * __ops_1 ;// L12 ^~~~~~~~~~ 2 warnings generated. Matches: - 30 has a match! 31 has a match! 32 has a match! 33 has a match! @@ -45,5 +44,6 @@ Matches: 35 has a match! 36 has a match! 37 has a match! + 38 has a match! Unmatched ids: None! diff --git a/fonda/cpp_testsuite/varBugs/LINUX-66517915e09.report b/fonda/cpp_testsuite/varBugs/LINUX-66517915e09.report index 2c61c5bf..b2562383 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-66517915e09.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-66517915e09.report @@ -11,55 +11,55 @@ Macros: [-DCONFIG_SND_FSI_AK4642=1 -DCONFIG_SND_FSI_DA7210=1 -UCONFIG_I2C -UCONFIG_SND_SOC_DA7210 -UCONFIG_SND_SOC_AK4642 ] [-UCONFIG_SND_FSI_AK4642 -UCONFIG_SND_FSI_DA7210 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -UCONFIG_SND_SOC_AK4642 ] [-DCONFIG_SND_FSI_AK4642=1 -UCONFIG_SND_FSI_DA7210 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -UCONFIG_SND_SOC_AK4642 ] -12 :: Line:24 +13 :: Line:24 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-UCONFIG_SND_FSI_AK4642 -DCONFIG_SND_FSI_DA7210=1 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -UCONFIG_SND_SOC_AK4642 ] -13 :: Line:16 +14 :: Line:16 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-DCONFIG_SND_FSI_AK4642=1 -DCONFIG_SND_FSI_DA7210=1 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -UCONFIG_SND_SOC_AK4642 ] -14 :: Line:16 +15 :: Line:16 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] -15 :: Line:24 +16 :: Line:24 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-UCONFIG_SND_FSI_AK4642 -UCONFIG_SND_FSI_DA7210 -UCONFIG_I2C -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] [-DCONFIG_SND_FSI_AK4642=1 -UCONFIG_SND_FSI_DA7210 -UCONFIG_I2C -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] [-UCONFIG_SND_FSI_AK4642 -DCONFIG_SND_FSI_DA7210=1 -UCONFIG_I2C -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] [-DCONFIG_SND_FSI_AK4642=1 -DCONFIG_SND_FSI_DA7210=1 -UCONFIG_I2C -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] [-UCONFIG_SND_FSI_AK4642 -UCONFIG_SND_FSI_DA7210 -DCONFIG_I2C=1 -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] -16 :: Line:16 +17 :: Line:16 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-DCONFIG_SND_FSI_AK4642=1 -UCONFIG_SND_FSI_DA7210 -DCONFIG_I2C=1 -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] -17 :: Line:16 +18 :: Line:16 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] -18 :: Line:24 +19 :: Line:24 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-UCONFIG_SND_FSI_AK4642 -DCONFIG_SND_FSI_DA7210=1 -DCONFIG_I2C=1 -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] -19 :: Line:16 +20 :: Line:16 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-DCONFIG_SND_FSI_AK4642=1 -DCONFIG_SND_FSI_DA7210=1 -DCONFIG_I2C=1 -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] -20 :: Line:16 +21 :: Line:16 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] -21 :: Line:24 +22 :: Line:24 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-UCONFIG_SND_FSI_AK4642 -UCONFIG_SND_FSI_DA7210 -UCONFIG_I2C -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] [-DCONFIG_SND_FSI_AK4642=1 -UCONFIG_SND_FSI_DA7210 -UCONFIG_I2C -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] [-UCONFIG_SND_FSI_AK4642 -DCONFIG_SND_FSI_DA7210=1 -UCONFIG_I2C -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] [-DCONFIG_SND_FSI_AK4642=1 -DCONFIG_SND_FSI_DA7210=1 -UCONFIG_I2C -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] [-UCONFIG_SND_FSI_AK4642 -UCONFIG_SND_FSI_DA7210 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] -22 :: Line:24 +23 :: Line:24 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-DCONFIG_SND_FSI_AK4642=1 -UCONFIG_SND_FSI_DA7210 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] -23 :: Line:24 +24 :: Line:24 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-UCONFIG_SND_FSI_AK4642 -DCONFIG_SND_FSI_DA7210=1 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] -24 :: Line:16 +25 :: Line:16 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] -25 :: Line:24 +26 :: Line:24 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-DCONFIG_SND_FSI_AK4642=1 -DCONFIG_SND_FSI_DA7210=1 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] -26 :: Line:16 +27 :: Line:16 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] -27 :: Line:24 +28 :: Line:24 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-UCONFIG_SND_FSI_AK4642 -UCONFIG_SND_FSI_DA7210 -UCONFIG_I2C -DCONFIG_SND_SOC_DA7210=1 -DCONFIG_SND_SOC_AK4642=1 ] Desugared Clang Results: @@ -71,7 +71,6 @@ int __codec_hw_write_5= __i2c_master_send_0 ;// L24 ^~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~ 2 warnings generated. Matches: - 12 has a match! 13 has a match! 14 has a match! 15 has a match! @@ -87,5 +86,6 @@ Matches: 25 has a match! 26 has a match! 27 has a match! + 28 has a match! Unmatched ids: None! diff --git a/fonda/cpp_testsuite/varBugs/LINUX-6e2b75740be.report b/fonda/cpp_testsuite/varBugs/LINUX-6e2b75740be.report index 1aeaf5eb..e46c017a 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-6e2b75740be.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-6e2b75740be.report @@ -15,8 +15,11 @@ free (( __mod_9 [ 1 ] )) ; // L60 /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.c:153:1: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] free (( __mod_9 [ 0 ] )) ; // L63 ^~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.c:177:1: warning: Attempt to free released memory [unix.Malloc] +free ( __hdr_8 ) ; // L67 +^~~~~~~~~~~~~~~~ /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.c:182:9: warning: Potential leak of memory pointed to by '__mod_9' [unix.Malloc] return __err_10 ;// L69 ^~~~~~~~ -5 warnings generated. +6 warnings generated. Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-7acf6cd80b2.report b/fonda/cpp_testsuite/varBugs/LINUX-7acf6cd80b2.report index b0d5ee1d..a9594168 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-7acf6cd80b2.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-7acf6cd80b2.report @@ -4,19 +4,19 @@ Macros: CONFIG_UNIX98_PTYS [-UCONFIG_DEVPTS_MULTIPLE_INSTANCES -UCONFIG_UNIX98_PTYS ] [-DCONFIG_DEVPTS_MULTIPLE_INSTANCES=1 -UCONFIG_UNIX98_PTYS ] -45 :: Line:8 +48 :: Line:8 Value stored to 'x' during its initialization is never read [deadcode.DeadStores] [-UCONFIG_DEVPTS_MULTIPLE_INSTANCES -DCONFIG_UNIX98_PTYS=1 ] -46 :: Line:39 +49 :: Line:39 Value stored to 'driver_data' is never read [deadcode.DeadStores] -47 :: Line:44 +50 :: Line:44 1st function call argument is an uninitialized value [core.CallAndMessage] [-DCONFIG_DEVPTS_MULTIPLE_INSTANCES=1 -DCONFIG_UNIX98_PTYS=1 ] -48 :: Line:8 +51 :: Line:8 Value stored to 'x' during its initialization is never read [deadcode.DeadStores] -49 :: Line:39 +52 :: Line:39 Value stored to 'driver_data' is never read [deadcode.DeadStores] -50 :: Line:44 +53 :: Line:44 1st function call argument is an uninitialized value [core.CallAndMessage] Desugared Clang Results: /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.desugared.c:77:6: warning: Value stored to '__x_3' during its initialization is never read [deadcode.DeadStores] @@ -30,11 +30,11 @@ int __x_3= * __inode_2 ;// L8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 3 warnings generated. Matches: - 45 has a match! - 46 has a match! - 47 has a match! 48 has a match! 49 has a match! 50 has a match! + 51 has a match! + 52 has a match! + 53 has a match! Unmatched ids: None! diff --git a/fonda/cpp_testsuite/varBugs/LINUX-e39363a9def.report b/fonda/cpp_testsuite/varBugs/LINUX-e39363a9def.report index fa82dfdd..fc8bfd30 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-e39363a9def.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-e39363a9def.report @@ -4,7 +4,7 @@ Macros: CONFIG_IPV6 [-UCONFIG_NETPOLL -UCONFIG_IPV6 ] [-DCONFIG_NETPOLL=1 -UCONFIG_IPV6 ] -40 :: Line:17 +41 :: Line:17 Undefined or garbage value returned to caller [core.uninitialized.UndefReturn] [-UCONFIG_NETPOLL -DCONFIG_IPV6=1 ] [-DCONFIG_NETPOLL=1 -DCONFIG_IPV6=1 ] @@ -14,6 +14,6 @@ return __err_1 ;// L17 ^~~~~~~~~~~~~~~ 1 warning generated. Matches: - 40 has a match! + 41 has a match! Unmatched ids: None! diff --git a/fonda/cpp_testsuite/varBugs/LINUX/0988c4c7fb5.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/0988c4c7fb5.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/0988c4c7fb5.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/0988c4c7fb5.inferres b/fonda/cpp_testsuite/varBugs/LINUX/0988c4c7fb5.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/0988c4c7fb5.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.clangres b/fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.clangres index 3537601f..21572cd7 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.clangres @@ -1,4 +1,4 @@ -In file included from :342: +In file included from :344: :4:9: error: 'defined' cannot be used as a macro name #define defined 1 ^ diff --git a/fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.inferres b/fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.clangres b/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.clangres index a02bfdae..ea065e73 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.clangres @@ -1,4 +1,4 @@ -In file included from :342: +In file included from :344: :2:8: error: 'defined' cannot be used as a macro name #undef defined ^ diff --git a/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.inferres b/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.inferres deleted file mode 100644 index e69de29b..00000000 diff --git a/fonda/cpp_testsuite/varBugs/LINUX/1c17e4d4437.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/1c17e4d4437.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/1c17e4d4437.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/1c17e4d4437.inferres b/fonda/cpp_testsuite/varBugs/LINUX/1c17e4d4437.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/1c17e4d4437.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/1f758a4341a.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/1f758a4341a.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/1f758a4341a.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/1f758a4341a.inferres b/fonda/cpp_testsuite/varBugs/LINUX/1f758a4341a.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/1f758a4341a.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/208d89843b7.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/208d89843b7.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/208d89843b7.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/208d89843b7.inferres b/fonda/cpp_testsuite/varBugs/LINUX/208d89843b7.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/208d89843b7.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/218ad12f42e.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/218ad12f42e.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/218ad12f42e.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/218ad12f42e.inferres b/fonda/cpp_testsuite/varBugs/LINUX/218ad12f42e.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/218ad12f42e.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/221ac329e93.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/221ac329e93.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/221ac329e93.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/221ac329e93.inferres b/fonda/cpp_testsuite/varBugs/LINUX/221ac329e93.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/221ac329e93.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/242f1a34377.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/242f1a34377.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/242f1a34377.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/242f1a34377.inferres b/fonda/cpp_testsuite/varBugs/LINUX/242f1a34377.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/242f1a34377.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/2f02c15a5d9.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/2f02c15a5d9.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/2f02c15a5d9.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/2f02c15a5d9.inferres b/fonda/cpp_testsuite/varBugs/LINUX/2f02c15a5d9.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/2f02c15a5d9.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.desugared.inferres deleted file mode 100644 index 6e4cb4c8..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.desugared.inferres +++ /dev/null @@ -1,33 +0,0 @@ - -LINUX/30e053248da.desugared.c:124: error: Dead Store - The value written to &__x_9 (type int) is never used. - 122. } - 123. } - 124. int __x_9= * __length_7 ;// L31 - ^ - 125. - 126. return 0 ;// L33 - -LINUX/30e053248da.desugared.c:111: error: Uninitialized Value - The value read from __error_8 was never initialized. - 109. __error_8 = __security_old_inode_init_security_4 ( __length_7 ) ; // L24 - 110. } - 111. if ( __error_8 )// L26 - ^ - 112. { - 113. - -LINUX/30e053248da.desugared.c:120: error: Uninitialized Value - The value read from __error_8 was never initialized. - 118. - 119. * __length_7 = 0 ; // L27 - 120. return __error_8 ;// L28 - ^ - 121. } - 122. } - - -Found 3 issues - Issue Type(ISSUED_TYPE_ID): # - Uninitialized Value(UNINITIALIZED_VALUE): 2 - Dead Store(DEAD_STORE): 1 diff --git a/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.inferres b/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.inferres deleted file mode 100644 index d018973b..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.inferres +++ /dev/null @@ -1,14 +0,0 @@ - -LINUX/30e053248da.c:31: error: Dead Store - The value written to &x (type int) is never used. - 29. } - 30. - 31. int x = *length; // (6) ERROR - ^ - 32. - 33. return 0; - - -Found 1 issue - Issue Type(ISSUED_TYPE_ID): # - Dead Store(DEAD_STORE): 1 diff --git a/fonda/cpp_testsuite/varBugs/LINUX/36855dcfc98.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/36855dcfc98.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/36855dcfc98.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/36855dcfc98.inferres b/fonda/cpp_testsuite/varBugs/LINUX/36855dcfc98.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/36855dcfc98.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/472a474c663.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/472a474c663.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/472a474c663.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/472a474c663.inferres b/fonda/cpp_testsuite/varBugs/LINUX/472a474c663.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/472a474c663.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.inferres deleted file mode 100644 index 217d1734..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.inferres +++ /dev/null @@ -1,23 +0,0 @@ - -LINUX/51fd36f3fad.desugared.c:206: error: Uninitialized Value - The value read from __expires_39 was never initialized. - 204. } - 205. } - 206. return __expires_39 ;// L60 - ^ - 207. } - 208. } - -LINUX/51fd36f3fad.desugared.c:236: error: Uninitialized Value - The value read from __expires_39 was never initialized. - 234. } - 235. } - 236. return __expires_39 ;// L60 - ^ - 237. } - 238. } - - -Found 2 issues - Issue Type(ISSUED_TYPE_ID): # - Uninitialized Value(UNINITIALIZED_VALUE): 2 diff --git a/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.inferres b/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.clangres b/fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.clangres index f8544390..8629f8de 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.clangres @@ -1,4 +1,4 @@ -In file included from :342: +In file included from :344: :1:8: error: 'defined' cannot be used as a macro name #undef defined ^ diff --git a/fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.inferres b/fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.desugared.inferres deleted file mode 100644 index a93f28f2..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.desugared.inferres +++ /dev/null @@ -1,14 +0,0 @@ - -LINUX/6252547b8a7.desugared.c:49: error: Dead Store - The value written to &__irq_2 (type int) is never used. - 47. - 48. - 49. int __irq_2= * __ops_1 ;// L12 - ^ - 50. - 51. } - - -Found 1 issue - Issue Type(ISSUED_TYPE_ID): # - Dead Store(DEAD_STORE): 1 diff --git a/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.inferres b/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.inferres deleted file mode 100644 index 3be79683..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.inferres +++ /dev/null @@ -1,24 +0,0 @@ - -LINUX/6252547b8a7.c:12: error: Dead Store - The value written to &irq (type int) is never used. - 10. void irq_domain_add(int *ops) - 11. { - 12. int irq = *ops; // (4) ERROR - ^ - 13. } - 14. #endif - -LINUX/6252547b8a7.c:25: error: Null Dereference - pointer `ops` last assigned on line 19 could be null and is dereferenced by call to `irq_domain_add()` at line 25, column 3. - 23. #endif - 24. - 25. irq_domain_add(ops); // (3) - ^ - 26. } - 27. #endif - - -Found 2 issues - Issue Type(ISSUED_TYPE_ID): # - Null Dereference(NULL_DEREFERENCE): 1 - Dead Store(DEAD_STORE): 1 diff --git a/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.clangres b/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.clangres index c2d164cf..1a88ea26 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.clangres @@ -1,4 +1,4 @@ -In file included from :342: +In file included from :344: :3:8: error: 'defined' cannot be used as a macro name #undef defined ^ diff --git a/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.desugared.inferres deleted file mode 100644 index 1e55e64c..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.desugared.inferres +++ /dev/null @@ -1,14 +0,0 @@ - -LINUX/63878acfafb.desugared.c:159: error: Uninitialized Value - The value read from __v_16 was never initialized. - 157. __v_16 = __omap3_core_dpll_m2_set_rate_13 ( ) ; // L38 - 158. } - 159. return __v_16 ;// L40 - ^ - 160. } - 161. } - - -Found 1 issue - Issue Type(ISSUED_TYPE_ID): # - Uninitialized Value(UNINITIALIZED_VALUE): 1 diff --git a/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.inferres b/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/6515e48932c.clangres b/fonda/cpp_testsuite/varBugs/LINUX/6515e48932c.clangres index 037ecb09..930ea29e 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/6515e48932c.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/6515e48932c.clangres @@ -1,4 +1,4 @@ -In file included from :342: +In file included from :344: :1:9: error: 'defined' cannot be used as a macro name #define defined 1 ^ diff --git a/fonda/cpp_testsuite/varBugs/LINUX/6515e48932c.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/6515e48932c.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/6515e48932c.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/6515e48932c.inferres b/fonda/cpp_testsuite/varBugs/LINUX/6515e48932c.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/6515e48932c.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/657e9649e74.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/657e9649e74.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/657e9649e74.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/657e9649e74.inferres b/fonda/cpp_testsuite/varBugs/LINUX/657e9649e74.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/657e9649e74.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.desugared.inferres deleted file mode 100644 index 25f8482c..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.desugared.inferres +++ /dev/null @@ -1,23 +0,0 @@ - -LINUX/66517915e09.desugared.c:48: error: Dead Store - The value written to &__codec_hw_write_1 (type int) is never used. - 46. - 47. - 48. int __codec_hw_write_1= __i2c_master_send_0 ;// L16 - ^ - 49. - 50. if (__static_condition_default_2) { - -LINUX/66517915e09.desugared.c:70: error: Dead Store - The value written to &__codec_hw_write_5 (type int) is never used. - 68. - 69. - 70. int __codec_hw_write_5= __i2c_master_send_0 ;// L24 - ^ - 71. - 72. if (__static_condition_default_6) { - - -Found 2 issues - Issue Type(ISSUED_TYPE_ID): # - Dead Store(DEAD_STORE): 2 diff --git a/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.inferres b/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.inferres deleted file mode 100644 index e69de29b..00000000 diff --git a/fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.clangres b/fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.clangres index c2d164cf..1a88ea26 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.clangres @@ -1,4 +1,4 @@ -In file included from :342: +In file included from :344: :3:8: error: 'defined' cannot be used as a macro name #undef defined ^ diff --git a/fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.inferres b/fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.inferres deleted file mode 100644 index e69de29b..00000000 diff --git a/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.clangres b/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.clangres index f8544390..8629f8de 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.clangres @@ -1,4 +1,4 @@ -In file included from :342: +In file included from :344: :1:8: error: 'defined' cannot be used as a macro name #undef defined ^ diff --git a/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.clangres index 5c177b9c..f459dc91 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.clangres @@ -10,7 +10,10 @@ free (( __mod_9 [ 1 ] )) ; // L60 /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.c:153:1: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] free (( __mod_9 [ 0 ] )) ; // L63 ^~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.c:177:1: warning: Attempt to free released memory [unix.Malloc] +free ( __hdr_8 ) ; // L67 +^~~~~~~~~~~~~~~~ /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.c:182:9: warning: Potential leak of memory pointed to by '__mod_9' [unix.Malloc] return __err_10 ;// L69 ^~~~~~~~ -5 warnings generated. +6 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.inferres deleted file mode 100644 index 6f2678eb..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.inferres +++ /dev/null @@ -1,14 +0,0 @@ - -LINUX/6e2b75740be.desugared.c:121: error: Dead Store - The value written to &__dest_12 (type void*) is never used. - 119. - 120. - 121. void * (__dest_12)= ( __mod_9 [ 1 ] );// L46 - ^ - 122. - 123. __static_type_error("type error : no valid expression"); // L47 - - -Found 1 issue - Issue Type(ISSUED_TYPE_ID): # - Dead Store(DEAD_STORE): 1 diff --git a/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.inferres b/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/76baeebf7df.inferres b/fonda/cpp_testsuite/varBugs/LINUX/76baeebf7df.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/76baeebf7df.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.desugared.inferres deleted file mode 100644 index d8b7481d..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.desugared.inferres +++ /dev/null @@ -1,23 +0,0 @@ - -LINUX/7acf6cd80b2.desugared.c:77: error: Dead Store - The value written to &__x_3 (type int) is never used. - 75. - 76. - 77. int __x_3= * __inode_2 ;// L8 - ^ - 78. - 79. } - -LINUX/7acf6cd80b2.desugared.c:170: error: Dead Store - The value written to &__driver_data_15 (type int*) is never used. - 168. } - 169. } - 170. __driver_data_15 = & __some_int_1 ; // L39 - ^ - 171. return 0 ;// L41 - 172. - - -Found 2 issues - Issue Type(ISSUED_TYPE_ID): # - Dead Store(DEAD_STORE): 2 diff --git a/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.inferres b/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.inferres deleted file mode 100644 index 4d015dcf..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.inferres +++ /dev/null @@ -1,23 +0,0 @@ - -LINUX/7acf6cd80b2.c:8: error: Dead Store - The value written to &x (type int) is never used. - 6. { - 7. #ifdef CONFIG_DEVPTS_MULTIPLE_INSTANCES - 8. int x = *inode; // ERROR (7) - ^ - 9. #endif - 10. } - -LINUX/7acf6cd80b2.c:39: error: Dead Store - The value written to &driver_data (type int*) is never used. - 37. } - 38. - 39. driver_data = &some_int; - ^ - 40. - 41. return 0; - - -Found 2 issues - Issue Type(ISSUED_TYPE_ID): # - Dead Store(DEAD_STORE): 2 diff --git a/fonda/cpp_testsuite/varBugs/LINUX/7c6048b7c83.clangres b/fonda/cpp_testsuite/varBugs/LINUX/7c6048b7c83.clangres index f8544390..8629f8de 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/7c6048b7c83.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/7c6048b7c83.clangres @@ -1,4 +1,4 @@ -In file included from :342: +In file included from :344: :1:8: error: 'defined' cannot be used as a macro name #undef defined ^ diff --git a/fonda/cpp_testsuite/varBugs/LINUX/7c6048b7c83.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/7c6048b7c83.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/7c6048b7c83.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/7c6048b7c83.inferres b/fonda/cpp_testsuite/varBugs/LINUX/7c6048b7c83.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/7c6048b7c83.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/809e660f438.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/809e660f438.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/809e660f438.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/809e660f438.inferres b/fonda/cpp_testsuite/varBugs/LINUX/809e660f438.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/809e660f438.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/8c8296223f3.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/8c8296223f3.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/8c8296223f3.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/8c8296223f3.inferres b/fonda/cpp_testsuite/varBugs/LINUX/8c8296223f3.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/8c8296223f3.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/91ea8207168.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/91ea8207168.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/91ea8207168.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/91ea8207168.inferres b/fonda/cpp_testsuite/varBugs/LINUX/91ea8207168.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/91ea8207168.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.desugared.inferres deleted file mode 100644 index 95a373fc..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.desugared.inferres +++ /dev/null @@ -1,23 +0,0 @@ - -LINUX/ae249b5fa27.desugared.c:283: error: Uninitialized Value - The value read from __r_236 was never initialized. - 281. } - 282. if (__static_condition_default_245) { - 283. ( ( __r_236 != 0xff ) ? ( void ) ( 0 ) : ____assert_fail_4 ("r != 0xff","/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.c",19, __PRETTY_FUNCTION__ ) ) ; // L19:L91 - ^ - 284. } - 285. if (__static_condition_default_246) { - -LINUX/ae249b5fa27.desugared.c:288: error: Uninitialized Value - The value read from __r_236 was never initialized. - 286. __static_type_error("type error") ; // L19:L91 - 287. } - 288. return ( int ) __r_236 ;// L21 - ^ - 289. } - 290. } - - -Found 2 issues - Issue Type(ISSUED_TYPE_ID): # - Uninitialized Value(UNINITIALIZED_VALUE): 2 diff --git a/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.inferres b/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/bc8cec0dff0.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/bc8cec0dff0.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/bc8cec0dff0.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/bc8cec0dff0.inferres b/fonda/cpp_testsuite/varBugs/LINUX/bc8cec0dff0.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/bc8cec0dff0.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/c708c57e247.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/c708c57e247.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/c708c57e247.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/c708c57e247.inferres b/fonda/cpp_testsuite/varBugs/LINUX/c708c57e247.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/c708c57e247.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d530db0db90.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/d530db0db90.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/d530db0db90.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d530db0db90.inferres b/fonda/cpp_testsuite/varBugs/LINUX/d530db0db90.inferres deleted file mode 100644 index e69de29b..00000000 diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.clangres b/fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.clangres index 54a04e27..f78a7d92 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.clangres @@ -1,4 +1,4 @@ -In file included from :342: +In file included from :344: :2:9: error: 'defined' cannot be used as a macro name #define defined 1 ^ diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.inferres b/fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d6c7e113959.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/d6c7e113959.desugared.inferres deleted file mode 100644 index 9d3b7228..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/d6c7e113959.desugared.inferres +++ /dev/null @@ -1,14 +0,0 @@ - -LINUX/d6c7e113959.desugared.c:45: error: Dead Store - The value written to &__pdata_0 (type int*) is never used. - 43. - 44. - 45. * __pdata_0 ++ ; // L5 - ^ - 46. return 0 ;// L6 - 47. } - - -Found 1 issue - Issue Type(ISSUED_TYPE_ID): # - Dead Store(DEAD_STORE): 1 diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d6c7e113959.inferres b/fonda/cpp_testsuite/varBugs/LINUX/d6c7e113959.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/d6c7e113959.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.desugared.inferres deleted file mode 100644 index 85a582ab..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.desugared.inferres +++ /dev/null @@ -1,14 +0,0 @@ - -LINUX/d7e9711760a.desugared.c:1397: error: Dead Store - The value written to &__reserved_803 (type int) is never used. - 1395. if ( __inode_get_rsv_space_802 ( ) > 0 )// L29 - 1396. { - 1397. __reserved_803 = 1 ; // L30 - ^ - 1398. } - 1399. __static_type_error("type error : no valid expression"); // L33 - - -Found 1 issue - Issue Type(ISSUED_TYPE_ID): # - Dead Store(DEAD_STORE): 1 diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.inferres b/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.inferres deleted file mode 100644 index 051967c6..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.inferres +++ /dev/null @@ -1,14 +0,0 @@ - -LINUX/d7e9711760a.c:30: error: Dead Store - The value written to &reserved (type int) is never used. - 28. #ifdef CONFIG_QUOTA_DEBUG - 29. if (inode_get_rsv_space() > 0) // (3) - 30. reserved = 1; - ^ - 31. #endif - 32. - - -Found 1 issue - Issue Type(ISSUED_TYPE_ID): # - Dead Store(DEAD_STORE): 1 diff --git a/fonda/cpp_testsuite/varBugs/LINUX/e1fbd9210d5.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/e1fbd9210d5.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/e1fbd9210d5.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/e1fbd9210d5.inferres b/fonda/cpp_testsuite/varBugs/LINUX/e1fbd9210d5.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/e1fbd9210d5.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.desugared.inferres deleted file mode 100644 index 4c906bd1..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.desugared.inferres +++ /dev/null @@ -1,14 +0,0 @@ - -LINUX/e39363a9def.desugared.c:77: error: Uninitialized Value - The value read from __err_1 was never initialized. - 75. put_0: - 76. { - 77. return __err_1 ;// L17 - ^ - 78. } - 79. } - - -Found 1 issue - Issue Type(ISSUED_TYPE_ID): # - Uninitialized Value(UNINITIALIZED_VALUE): 1 diff --git a/fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.inferres b/fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.inferres deleted file mode 100644 index 35ee0b4d..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.inferres +++ /dev/null @@ -1,14 +0,0 @@ - -LINUX/e39363a9def.c:17: error: Uninitialized Value - The value read from err was never initialized. - 15. - 16. put: - 17. return err; // ERROR (3) - ^ - 18. } - 19. #endif - - -Found 1 issue - Issue Type(ISSUED_TYPE_ID): # - Uninitialized Value(UNINITIALIZED_VALUE): 1 diff --git a/fonda/cpp_testsuite/varBugs/LINUX/e67bc51e574.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/e67bc51e574.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/e67bc51e574.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/e67bc51e574.inferres b/fonda/cpp_testsuite/varBugs/LINUX/e67bc51e574.inferres deleted file mode 100644 index e69de29b..00000000 diff --git a/fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.clangres b/fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.clangres index 037ecb09..930ea29e 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.clangres @@ -1,4 +1,4 @@ -In file included from :342: +In file included from :344: :1:9: error: 'defined' cannot be used as a macro name #define defined 1 ^ diff --git a/fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.inferres b/fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.clangres b/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.clangres index c2d164cf..1a88ea26 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.clangres @@ -1,4 +1,4 @@ -In file included from :342: +In file included from :344: :3:8: error: 'defined' cannot be used as a macro name #undef defined ^ diff --git a/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.inferres b/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.inferres deleted file mode 100644 index 2956df92..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.inferres +++ /dev/null @@ -1,14 +0,0 @@ - -LINUX/ee3f34e8572.c:44: error: Dead Store - The value written to &rt (type char*) is never used. - 42. } - 43. if (!IS_ERR(dst)) { - 44. char *rt =(char *) dst; // (3) - ^ - 45. SCTP_DEBUG_PRINTK(rt); // (4) ERROR - 46. } - - -Found 1 issue - Issue Type(ISSUED_TYPE_ID): # - Dead Store(DEAD_STORE): 1 diff --git a/fonda/cpp_testsuite/varBugs/LINUX/f3d83e24154.clangres b/fonda/cpp_testsuite/varBugs/LINUX/f3d83e24154.clangres index f8544390..8629f8de 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/f3d83e24154.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/f3d83e24154.clangres @@ -1,4 +1,4 @@ -In file included from :342: +In file included from :344: :1:8: error: 'defined' cannot be used as a macro name #undef defined ^ diff --git a/fonda/cpp_testsuite/varBugs/LINUX/f3d83e24154.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/f3d83e24154.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/f3d83e24154.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/f3d83e24154.inferres b/fonda/cpp_testsuite/varBugs/LINUX/f3d83e24154.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/f3d83e24154.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/f48ec1d7885.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/f48ec1d7885.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/f48ec1d7885.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/f48ec1d7885.inferres b/fonda/cpp_testsuite/varBugs/LINUX/f48ec1d7885.inferres deleted file mode 100644 index e69de29b..00000000 diff --git a/fonda/cpp_testsuite/varBugs/LINUX/f7ab9b407b3.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/f7ab9b407b3.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/f7ab9b407b3.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/f7ab9b407b3.inferres b/fonda/cpp_testsuite/varBugs/LINUX/f7ab9b407b3.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/LINUX/f7ab9b407b3.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN-e30bfedce4d.report b/fonda/cpp_testsuite/varBugs/MARLIN-e30bfedce4d.report index a5cd5bb8..35db9d9f 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN-e30bfedce4d.report +++ b/fonda/cpp_testsuite/varBugs/MARLIN-e30bfedce4d.report @@ -4,11 +4,11 @@ Macros: AUTO_BED_LEVELING_GRID [-UENABLE_AUTO_BED_LEVELING -UAUTO_BED_LEVELING_GRID ] [-DENABLE_AUTO_BED_LEVELING=1 -UAUTO_BED_LEVELING_GRID ] -7 :: Line:24 +8 :: Line:24 Value stored to 'xGridSpacing' during its initialization is never read [deadcode.DeadStores] [-UENABLE_AUTO_BED_LEVELING -DAUTO_BED_LEVELING_GRID=1 ] [-DENABLE_AUTO_BED_LEVELING=1 -DAUTO_BED_LEVELING_GRID=1 ] -8 :: Line:24 +9 :: Line:24 Value stored to 'xGridSpacing' during its initialization is never read [deadcode.DeadStores] Desugared Clang Results: /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.desugared.c:48:6: warning: Value stored to '__xGridSpacing_1' during its initialization is never read [deadcode.DeadStores] @@ -16,7 +16,7 @@ int __xGridSpacing_1= __left_probe_bed_position_0 ;// L24 ^~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~ 1 warning generated. Matches: - 7 has a match! 8 has a match! + 9 has a match! Unmatched ids: None! diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/2d22902d080.desugared.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/2d22902d080.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/MARLIN/2d22902d080.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/2d22902d080.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/2d22902d080.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/MARLIN/2d22902d080.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/2db384a21d6.desugared.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/2db384a21d6.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/MARLIN/2db384a21d6.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/2db384a21d6.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/2db384a21d6.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/MARLIN/2db384a21d6.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/30248214c7f.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/30248214c7f.clangres index f8544390..8629f8de 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/30248214c7f.clangres +++ b/fonda/cpp_testsuite/varBugs/MARLIN/30248214c7f.clangres @@ -1,4 +1,4 @@ -In file included from :342: +In file included from :344: :1:8: error: 'defined' cannot be used as a macro name #undef defined ^ diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/30248214c7f.desugared.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/30248214c7f.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/MARLIN/30248214c7f.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/30248214c7f.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/30248214c7f.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/MARLIN/30248214c7f.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.desugared.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.inferres deleted file mode 100644 index e69de29b..00000000 diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.desugared.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.inferres deleted file mode 100644 index e69de29b..00000000 diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/7336e6df070.desugared.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/7336e6df070.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/MARLIN/7336e6df070.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/7336e6df070.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/7336e6df070.inferres deleted file mode 100644 index e69de29b..00000000 diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.desugared.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.inferres deleted file mode 100644 index e69de29b..00000000 diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.inferres deleted file mode 100644 index 6b7663a9..00000000 --- a/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.inferres +++ /dev/null @@ -1,23 +0,0 @@ - -MARLIN/8c4377dd635.desugared.c:37: error: Dead Store - The value written to &__pid_output_0 (type float) is never used. - 35. - 36. - 37. float __pid_output_0= 1;// L11 - ^ - 38. - 39. int __e_1= 0;// L12 - -MARLIN/8c4377dd635.desugared.c:54: error: Dead Store - The value written to &__pid_output_0 (type float) is never used. - 52. - 53. - 54. float __pid_output_0= 1;// L11 - ^ - 55. - 56. int __e_1= 0;// L12 - - -Found 2 issues - Issue Type(ISSUED_TYPE_ID): # - Dead Store(DEAD_STORE): 2 diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.inferres deleted file mode 100644 index e69de29b..00000000 diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/b8e79dce897.desugared.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/b8e79dce897.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/MARLIN/b8e79dce897.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/b8e79dce897.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/b8e79dce897.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/MARLIN/b8e79dce897.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.desugared.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.desugared.inferres deleted file mode 100644 index 24cb0fd6..00000000 --- a/fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.desugared.inferres +++ /dev/null @@ -1,14 +0,0 @@ - -MARLIN/e30bfedce4d.desugared.c:48: error: Dead Store - The value written to &__xGridSpacing_1 (type int) is never used. - 46. int __left_probe_bed_position_0= 15;// L21 - 47. - 48. int __xGridSpacing_1= __left_probe_bed_position_0 ;// L24 - ^ - 49. - 50. } - - -Found 1 issue - Issue Type(ISSUED_TYPE_ID): # - Dead Store(DEAD_STORE): 1 diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.inferres deleted file mode 100644 index fc454a92..00000000 --- a/fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.inferres +++ /dev/null @@ -1,14 +0,0 @@ - -MARLIN/e30bfedce4d.c:24: error: Dead Store - The value written to &xGridSpacing (type int) is never used. - 22. - 23. #ifdef AUTO_BED_LEVELING_GRID - 24. int xGridSpacing = left_probe_bed_position; - ^ - 25. #else - 26. float z_at_pt_1, z_at_pt_2, z_at_pt_3; - - -Found 1 issue - Issue Type(ISSUED_TYPE_ID): # - Dead Store(DEAD_STORE): 1 diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/f87c80889fe.desugared.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/f87c80889fe.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/MARLIN/f87c80889fe.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/f87c80889fe.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/f87c80889fe.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/MARLIN/f87c80889fe.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/fc3c76fc164.desugared.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/fc3c76fc164.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/MARLIN/fc3c76fc164.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/fc3c76fc164.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/fc3c76fc164.inferres deleted file mode 100644 index e69de29b..00000000 diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/fdac8f6cece.desugared.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/fdac8f6cece.desugared.inferres deleted file mode 100644 index 11be972e..00000000 --- a/fonda/cpp_testsuite/varBugs/MARLIN/fdac8f6cece.desugared.inferres +++ /dev/null @@ -1,2 +0,0 @@ - - No issues found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/fdac8f6cece.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/fdac8f6cece.inferres deleted file mode 100644 index e69de29b..00000000 diff --git a/fonda/cpp_testsuite/varBugs/a.out b/fonda/cpp_testsuite/varBugs/a.out index bd1fabfdcb66676c5ef0a98869754ffb0a1d929a..0575c634d7bf713f5d790b2f7309a3251fb3573e 100755 GIT binary patch delta 2287 zcmZuzZ){Ul6u{rT`NRz5xQWA zaU(-WnIs+O3&bEH;R7Mj#LPeQ3yh37jA)oajf4-yfSJiKi!Qnk!1LVO_r@IFmls(R7CLB5VPVm4@ z!P@H;3n&djVEV$K^iP_V0b`3*BFg(C8D71m^j|lR5_R_B)dn`OkSZ_yK?l82&^$yEzudX`o8sN(HZIS zv@6*M6YpV&UmH)9z;R=!7fsB%rdrHd>|a-PA44SeWAx}JenkFN1D$>QL{*h+%M21G z<`6zZ0z#8>pbH2o11&QH1dmMIJ<7t=?T@uQLThB=165t87W9QYVz0(_v}S*fwa2!% zovQlCEMZcoR#N#&Ec>`M`*+(i8lYLZ_E?zkJb_+Qdpor>w{d=9t%86V`_0FydJ*L$ z$}W@vj6a9+F3Ot}M>&bI4WqSkgzQJT0_9z(E?UC%!Oo)PzGJvoyN_fsa@mDLOoDSo z&n3)gfnFvOvx&#~rczVPT0}huu)l+S2AR81&g%Icj6n5gut#x!#aw-RVSh7X^rJ^% zp?RY*jx2uYZS#2}^qC)7Mhr6DLUIPEuq|+25(>*w1`=}H2rt?8@H0GIwk_Zq;Tu~c z=Y?W>(2>)aMH({>4fZf6!#;bELr)GDn(sO-dbyw2BF`B>5u@8yg(9J9Y3UpLGBWnP zJ)NOs_klI(L^9Rc-Th{G-&^U_!4PVsRH8mzmrOQ9Y7(nEQ>j|)4YkpRXreZ;sy>~J zMxyn#iH6jwW%yth!9}r)n}KVhTQJc)9UhEip~EehNgTG~D#un9a*4?jGQy;lmoE|QMqZ__=*0f66LF+qgIN^zv zY?+5I)bQLqydH6mct`|VU15I207qOqiqA7pB=3U5>4HgD8TT=8Wgg!ZhP#Mli{tER z8-r@p-eJJANj!u^nWtC4OY6kIXq}-=zpydHB~nf#t->)S4n2rF@Tk};#->_@n=sZv7DWA6zQRC}J z+M?SLWaeWz8wvRwaT*z`f{5vnRTS`E!b<8K#h0j{j_050DB?5~`YS;jD-S4dP(yem z^Z7>^AD@XJQ~J}EJeWC@=}D(UNz#>qPs&dkGO0ruX!0Dkc9M=%S0a-jor!~x_pF3P z-nE{>52q||Y-`=n)KL?v39TmS?rwP9`$9=a$M(%l9W5_6cXSM0_ttXokMABAhhHkf zju~ENK4-KOYJ_pT*DL%1M^uX_s{N>%VW&R~X1@q${E_0grj5h6zkaqf%g=T zPFL1hWK$u2*);S+<%=9T@CC!g`n8l`Yp}jpKl2C-1{-n35+(yI)5+lC;t>srfKRHo TOqCb(w>fxCs^hN1ptR&)W+&Lp delta 2495 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�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 $24v0>t8UlT3VYMTiU}j<+qXt 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 lGW zuz|V3shSz7#D?#zmf3_!BCSst%ra=;*;|Rxv7BCR6`tZ>1br??&%`1k3!UF#g$lgIN>PNjn9uper0zb?@qFr0>%~CUOgIR(${Pt;j7<0J@Ww(&k!dhN z0V4q#F0*dx@W#UqZuN2w4RrDD-OMrnZt!IBS0SdBqGu8CG zHx9CHGu`ttkgx?vC|>X66^?PwqH2_#2k98;zF%Ud#*IuQS{T_$Ya%BSX;H8jl}5T~p&2q%X#U*<;*G{p~3iU~%O7*8kv7nI3K zu(wSlNg6|EUNFVC)f2SYz%b^>zGhXG1ANkbPe5>QohbtLumJQ0>&%5f6}(w~+y&tA zP6|LKF2+f197Ogf5e2kKTxfuZ#%&OAJYf}FLHwyN49!yO%v#pNy%92b>&#}nX5H6e zio2~d+p4)65Vf9I{C4iRR@~EQqDSfG%lK3Xxoy@d>=XJnM$}j7rVTh&TbHZxV~O>n zl8b*3rw|u}Zf(Z_5w#&k&@YNWSVC3Nk3t-zC8Ruf7>0oP9+IObA!LXb)Y`>26yO*7Eb-3|qSU=17r zgjz2T)j^aRtBC7;uWv6Vtyq0rM1HmOajAi4TOao>>P@I)TH2`eOz7hpr4>+X8KnCs z>e|h2+&2^_>DGt3!NZe3++Jo^|F!7&kJvi?1T&kJ=zw^&NzhD|AR#Hr6|1pRZBp0j z$(;}C&g1a|89lf5yWKp3SQ1Q|3rlf;q=YqlR7ui$xQmjci$X9d`zp=mKT%I2uE*DH zQ2v>ElJt7flXGN*>3SKp@2BX!)~I`36<-fyD?v9H6ux0E1c728s=HlAq@i#1LP zAN`cYtDAt^95ia0uI;AKtElB#s=X9md8wat-?Z*%M-`)kNTU=44@~ru>L?ej<7JVK zfMK7yLS0FML3fElq0fjN7R*NI$n1 z#DOOQUE^0Pr#szeQpwfmWppuw%h-OmH0HVDM@eCAiZ15s{(BJJOLilv%=6VJdEm?j z9(d}^yXX> z)bF7F`E7^ZJYW5_i}qbqao$CVczpyAe;NTo>ajnzHAnMNb4We6H$YAS5DrzNUW+!E zN^X>Z6l2njYR*$rwUG)CyqSIu&3V2$(G8G@=Ddpr@unysg#bkFkLC=u15!lIA>G_w z0MSQ6cZ;|1EI`Vs@|6fv^yD;wQit1U@1hpC=g#7 z1!Wh3LaMP6qj`OYsR=cRRC9X+Wf?%(YH#WlRB|hWB5FugO=^Ki>ILesa;WIrb+X%y z87kUgm!TqFvjB0?9;u-1=V^+|qrO79=j3!=VTyVhBO< zIw1MI4HEx()SmhzAc4v(MhMmkHBS5!spNJE$w3_scLe*Fvo2>zNc1LMhpbi6W)>v= z3tS<&%7SE-LvNUE26jXtSp-PZ$Dn7Y*xOS{?P=&8l63G!5!)mhvi`MH@-hj@UAn;5 zp!T}G=1UbQ9lE{(*Ay8Ofu+tBmZvOOR)<&Gbf6iQol#h>Bv`-z`fXH|?!Ss!v?~c% zE(I+1b=7|pm28x-yrYY|QS%r(EVn6G-q3Z>v;Il)S_GE6U19l+1qOhDG zSgu2@N9<30idxj11T41!mIv)6S)-(dVbPc9up8C=>;l+Av6m$*=|#Fu<7|BlEZuIf zXy;q7l!jN^V7W$;LjF^Ro{l|X@{XmaKdW@p)1Oni>FH2r?BPpzpwvxIe;&D&eD1Tz z!A~X%zJT24Irll_-r^io?=@CvNbf?fp3l9A9H}kn>DYDl58xb>js3I%si%JtxfeP2 z5^}7Vkq*^kKQYmI`j?UW2j^Z!3Vi}UHt3Q5m^Ih^IEf!{wu%&ivZ2NP5~qkNjQmBM z_NSCwuOhvl(*{oSkV;L7uTbs|N}wr1&N}%MFp+i~27^U;W+2E zuE>78+7cW5edxZ!x8R^ET>gUVmKf{4uf-k*RBv^ibl)vWNHUu5*1h(vG_|#0SFK2D z7w>d7BIsfEJ+Y(&5=re{B)^rWb})L`N>dvcqSvjoO50Z2;-t3H)HX(JX{#9L`t*Io5J zS*kn{a|~~5D5svZKx5MJ$@n2|y1_Fr?~IG8{#!$c3tFXTaxHR4!&iC&`hypyndVDxaHTK;aKNg?#6w ztm4m=*JCFHrfF1uOSJAL?1sR^jm~b3p1mA9BH|4`TN6F|LF|f%pL09pF7URK(D9{q z@FvSvzCUnMtmbp83|L!JfLW@$Hd@Pvu|)z6VLBU(p1l{_B;wnAwk~@1A#9b1Z}8br z^z8r0?Go`-w+#dAeUTn$+J6je8u;`9=%Ck}#tNWK@NwHOU}J?r@4WnH%UB^l8~On` zg>@zQP!hvv4TF}w2T$B zb4)AR-RT=E=mSpMSRw80oZ)Wzm~{cNQ3%%M6zAjwg0)2@!C-xMeO+O0u&$uEzPJ#5 zuFba@D|j@8j1^Aj5tZ@A3La0An?}hSD`+5WeEBrK>CIY!U3>6mmlV)i6IfD< zya}A>a)hc*S(@p_YukQtdfnT_OM(q?{ zH*~FsI!AZyoX89LKeJPSxxaVMzH+CCwNubFS3sEY9+RYe`{N=zChn<3d5zerkg1^$TQ}8dwxlKSO zY*iq~b_#wj1&;gw*iJ#41AcD0-A;iPVE<)j+D_p=n90aaK_6&E? zl$mz5uI+`Q4a(XW?}|R!DfGH70vTNF6i)oN>=Zo49D2}0clEk`htA6wwc@7n2Zy%p zZf)PCSZrdg?JV{*zKBj#JhleA^0eFG?zRv|=BaplgDJH=>E`5p;mm!?cYm}7rX-b7 z!O=3BkquIWlHX+Z3)aJ_fFee7nKB|KDXQm$a=0=u%;QH5Yzk00H#!n}C%8GS>b5yS zc97l(yX6ala#rY7xkTi_)2Uo6KqHr8YWE$ebJoOjVL!};urciql5v2n+G*b!hNJ1B zO5V?=WQfhs&{Q94t&y?85UsIkdre*Qo?00vk{`6w`5?J^;0Y7u6XG1rqHU$lB8Irs zgfC$@!>EpU00n#@gIu{~U3+X*Ys#pw82jw$q!JrBp7_YPiQ^5GWsbKux{Z1t6 zJI3$baE?>6T%l0f;rXCLMFS}4EQLV3;*%G0Iy49drKg*VC{9d~GO z#<5oEHvF@tnfBZ^wG?z58X}jvCKAh z#R6_A&x)&{bv$~0Fw*R;Ne}BK{oSAcG&YYRV1nFl9oHI`*=REi4cfaIk zN(&KU2+lDc^L9bQ?FaQMVG)}un}Pe@;O0=gDcHOv+8D0dTov0A^GB0SRe^B4DH)D8 zvz&`Qg2?y%7$A!c=zyd2kHuWWsJYK7-D-q&Ajs%Sk3GV#1W4&|9JhLWvCVegl4UpK?V}pv zGFwJu6`)~}P7iX`h2k^pU*anFxJjocR1Z~nhW(B+onP#++~(IQb`2bdH|u!9#C|Y6 z4|nC4JT2Dc+{&1$koGLOV`ocevZ1k+Q>k|+n;RNCI~zfG@L5bD?>E9mkJDh*&x?GQ zW6uZqVHO3xFUeEF77t`UH}_%3Q;p656kUZTecm~SaK~GTT_E4gRm)j#U(RFnFx_vY zBJb1aA#BEnB|R`4IPO6`SE;v_*!HB`v4B5?93;CiSU;vfR^Gjqs6)%X7ZY`hIE&gv zXn73>uHd172^p{Iyv}yoID!yD(!m0Y-#!0Dtu6s)TbhnnZq?~^yo(?BxZv*dZl)5H z&qk>U${zWuS@(HKN^C}ZmXw4|fDq{n=Fr~b+jsf)ZN9zAx2O2_VXk+nJL|?a5%~iU zg0UM=@g`80iZ{`#;Tw)Oaexs$e0;gYPeG1DJ^U2Mo9N-EkVsV(IFQ7C{)Pid+$97; zp16K@+E_tEoAr5bXU*9I$N+7(Zvd{Tqi&~j3p_Ry;EmeX^SR?6UHbqtowEx)j$cTvy>*uTvi)M!@iVLkgVdUSK_Z98WW#IiVu*oD95` zM+9?ZXYbhv^7q^sAWx9FBiU`x`lpr)Z9$j5X+RSCS``0kg3sy>M-#>D0LwfCe3?$P@mD&y{9#qf(sr#gi^Uk zNCun%2sxOdSor$uPwEvNo$cN2P3^6zIc8}uqFb?HHq%RV1zpa~DXN6Of(1YBb=9CZ zNGx_!wOB0GaF!tGYIw6Vfih;7PVn-Mb1jN00fL@n5+x~sJ*2N{6IePWeixWpb{X7GtK74u9hZKjATz)o=&Z8$)UIvvJ2jURDvNUAdwog%Q<;D zD>rg!n0i|_cY}tBJ^9Xm@-gTZ8m4=1bF#6jxp{Li(zJO?Fcb+kZ3#Cgn?n9zFxco1 zHbOrNat^)$cgj(a-uSp9j`P8!%rF`_Y$s(Z6|`Jpi%7vRd(2M9;j71&*??9{b&$Et_|CCwcc9j3Dm0)svC2pw31q_4CNJVU679g@fI}^w7KNorZoaMdxA!&VMwBjSE5f3ZY>{ z^IK)xeglZm_P9<*xgpfl=}2D53}0uJ?^1S&4pm6&<@Q)h9 zr>QhW6Z1A9v?nHc48pTbRhuYb+tW;rjoIM{rO@sQPP@lgZ>3Hv)$8^+F#~ixQ!!8r zSK}BxL*Fq{u7WcDrbbJIEm+FQRGFp`x~kR&l;l)*InIuvqKy1-HK~NfDmNX-5o8a{ zH+F!K#s7>+gb}D7Birp*HIr(HheAGxhtRWqx(Xt~JCg@{mrgH9VZTn_l7bP8<~sZN zJ4QdIcZ}`u6JT{z`(xP>h+_Q%)bp?!@pAiwyTCD%_FQ3WCqsMY0S>ve=VwgX^Vu}* zxze^jU1-mjF&mS4B5<(b4~!2uU#F>0j;mHJ-@S&?Mk##>rDi-0t08#6<102ChN=Mf zdbyX&eTv+nc3pZ8-{%b_v5(XoH1@p(Z5t4`g` zO(L%N3HlJ<5blO9rv?DZ&snuDKF+Bg+1%-v~bA;AAI*Q z)IUI9c?N?8{^i&BWgP#4AG_}ITTUR4W2`-d=x+GYjel79lFNPGFQU5$zJ_bHP7tU* zpwlDxn+5}I83%PXIqeBk2t z3Gs98FFT4yPyd{rfzvZ^dInCaOnQ1q%#OVtePpCeEY2 zV8OohHx(fyfAWWs7c~}&#)DyhDCjpMmDQrP@wj5RLhN=hEB%^E#SV;<(qRnF*hf2@ z3OUp@JJXbjLrUYQ?=1*1euwKP$Fl?&EEGs^icdIccpj9%VehwD&Vh``QI6Hn1l4sePh+YQ8VpPvR4@qofI(MVQ#A+W-F)H+ z&x5!0m0f8Im)SID&it6l(41Z*Gf<|T2tRHzVKPYQhEi~mJW6X6qg&dKS-+)^;7F<^ z5^yA>o569a?=BR^r&{rg${^NxGIpvNI85DTSDMPumbNz7zceSix;u9^A&GB;bz|s= zxq&`(BPtH~8tFh_kf{z9V$U(s{*{C84B?s%d)5fzn1gH|pE|tAc)nH-Fp-j_iXd1PqH1vd)r3I1oI7@5^GY8kq z0iKKc;qIBGLG2UdXoAGbdPmR*y>eWIxaA)L;S{Re%N zVccOvL(!2jh30CtG?zY>5-@jHelUl5DGCF+fw?)om1RA%dO8kWnh(wufxO%Zs9ON} zn1H$(SF|7qawedP#GnRb>_SU#11g>g((2!{A>+u9Rz-H`G|^?1e2ys5l?C*2V5Uia zfgq1XgH?fGJQNN@km1!I^GC{N=HJvdSj?alQnsVCi^CN%WdX7fnsk*GfqFp~{HV=VA!AwEM;l|~w!s!+Tg0yI0+q+?z3{6#oH zCfU^-&tcmt$Y&6U24Z00V>s*}m2|aOPJaPi8IXR~=rohN2yT@w zh8`nDE4WvAInM`@1$!$e-cBVtDapGiPH~~t04p8Ny{b#z5RY7YbW5qNGuPUs>w>$Kl=?&wj#GsDs*064(ic{nvn z`GA^_0w=_U%6s74-q~Xtd)B8`B)_F%2aWe-Plv{revS z9C@(37y=weZWhJJ7Q5zu1W?QdiI*1x6918&VUP&BwniOp1cB*4= zi3g|k&Kld^Q*mT^4^k6AKhV(7y{)tTj)t9W&B;zUXx-6}?Cfms+#3obKSvxwJ%2bD z2?nD$K_+Bmh**YeDz3{Eed1V$0U@Cp$f-)lhEo902aSLi@tsP4i|g|a0MKq(J^beE zFwP+G>@W_UV*1VgW0C3N55R&`ICVFQBGomXuj_A2xUIR{-vC(4ruwH}I|H^_Ev*gR z+dHr(N!*3BXNh@3+w_3OYK-|=tE6Vw1g09-RBo$j&5~sea5hPHwluc3+?iDMqB_3@ zKTsiCcuX=JaB>PLClqmFr{a!__zvM76sTZv&iiYX}_KpC=E%@ zh()w3>atj@Di{oeKzsPBf{|!E7L5D%Wv#As^FoaOW(`V=LQM;Io)F_Pqzj<6xL9K{ z1ytu^Trl@KA6k=%sl(W-?t@V4Zx?G0!Z>af?J2Yf5WliO*nVa?S>I=P-#{4L=&36> ze>HTM`}{#)fQ&%_WD$zNeJ2EF6+vr)c{UgT>`|D|Q;KoXjAAzuWWckG#IFeSMAH=Q zehy6X;%a)beX?QvPe0W$%^2p-kV=|A|3y7oozg61zK*K@4D+zWZ65Hg`LqZjo+ffCO@NgE?j$anp%tNuRQ#=AamsoL(^zMQPAuU^B@_K%>T@uf1~R_h5`&g=xD(%;S`knM=2uMrNQ+)4$7oS z|CSbsT{dg|4K;3OT-C|gWjVSTz3BI|>4p?7p*7H)HQeF$ru1V4EmTm_VQU;tA#NJZ zCKw-vkX4aTJWw@fUuF*pYPlGLzl{~j1)5WGU+(C2k3n5_JKbL31?k^1TCe(NUlvys zICr1*v`8lz{~gdc7liwqWTC$r0PWqlZWQ31qG|x}B(64GD9U6q?jJs(S8G1+ z6-?hGpsB`3gu=z`9?%(!4Kim1zmBT{i@2IY#;v5A)jHMM%+OPhzUuQ%M+RlO4UgQe z9?5o4@OgXCrM18}=q2aKqU};xrxP2SBa)U5PX#HhS2fs)qycp7bN#ovBIrk-!Jwgu z!bdecn(=Wpl_j7#VncSg8lrX}yf>hz(Ww`Ckl1lx5lyBGQi^oi4D#taP>fG7J*?kOJ3RyxqNpTfUW-Jy3j})|3k$6=+5DdowprYYOM9X?wCK4-dGT)m3_;Z+VHV#zG_ognl`Ln>a zAu!*Ywim9`#(Zz`RJ*+)pgqleXN}jD?wGgFwyJ5uLowb3n$4m-+!*fyH7Q8w%y<`A z0B6P<>Z5)GD{k_*o(`G2G~?|&cc5!Hc{+sXp$KkO5isGApyS5MWx5OWAKOt3uZGTa z|A)bJzh^Mr|JMnhD5iUpyYRuzbpL^SGz_NO9SXT%iU)W1mNV1+=*DbJ(b%@t#1nyd zuquc%jWvivtQrgW18JknY^ED}X9H1WDlpIl(o*Nvqhr7Zo|tF|W#0pyc%c|PF`TxF zK@$w)vww<|$ZmAq@NR%)2{0O!H)#un(a|c zuCU1_9w;D$-MGVT;)aI@Hr`&iP8%NBxXVKe2z{sLW>^9|rTbl5)x zf$K(h{AY*#`2?;SEl@JoY6U07zTF~lbq6^vu>asCy)$6oRet2cEZ7etAgfjm!mdap z5Qzn$l#3$XLnsRh`z!DTh3L8AGB5FHVkZ1Np93Kl*MVTaxKc#x9xMaNu`-H}W zPJ1dB4HW47NkIea-LYYDXh1Ot`HeE%p^qCHIIH){v0Hnl92uL123p&_AvYG z^aJs4EL;TzQYaWPu>cY`h#p}IKG|$9EwZt^Zz2JQYAi?q*4d&(IImbO!Z4aD1_unV z4&i2{Ly(VJ{PzBI2sfV$+%P9+#zzP>3{`{R)RCuCL3onHf_~_U12GVD*hT@(_GC6% zD4;vIc@$(uHxE^2bn{STMh@!(4^0P~y~=%-N3(E(dy7Lr3GNlSVT1xR?~D;FN`sq+ zA~UkggaRX)27~}PMHTEo{Q-X@?hnFZtSaiTnR4+#fvyi99}GcXaPv@PM)~vwg=9wV z5XTK4Q13Kh3%axML9%UY_cl|p47Lo`l91Iw_zNo_a0w|1w&}77?kin^ablq2I#NM9q$Oi{-G)i9DAa8d8XiEVdxHk0HQG8k8Ada zv*CXMox!?MU<=j_l`U8|B(}h5m7Foa+Cpo;Q@E>l5W3Jf#=IdX1289Z>t zLEwP~7;3|zhh9By+7~(MaN*(f9v{k3Z4Um z03W{9b$)FN=7rUh_#Z_l< z?kUiHg(>VN&Ei+@;J0(XPG2<4hi-BQfg)9_qkYBfmrw+92?TS3m0A?$t1Tj%4tS}a@( zY&a9ETD|o9VWxZq{SXQ4#&z_SP0JU(!2}!gw#n4g(qFn6`vzej9)JO83})Ggy%C3v zm3B?WT7RKucE0I|1$7ozrv0#)osVm*Y3Ey}V=JLUGB@E;#pKW$%=+J9=j4SoOBF?SiKz=k3|Lb9=I_ zdv62*S*l`)t_he4X@7TaESr2QkV z4DNNY?Hz7=qs)h`JsAkz?>xsiB)qM#v4-Ry^?qGx^Y%vgu^>ljjaP-@5h(3LRk5nL zmiq$tncba=wBuU4%T3m=AcO(bi*}}6+fleqo2q85XR+HGc2!O8kX_X^fqmI4%o7Cn zFVmg2K;ssSTgaWZKusnVskT5))19`!G8E*^*1AJZnZdNqChrV_ibISr?6D|&i}_(a z9*#x=`8HWDk5*t5a-aadN7cS-t>-$oy@ckAaHuWBqq&17H+*qM?-lF?@@TfKuDN}C zV@sPMs{;uj^iUkO`%$KnV!^aWt?32A$bz*uX#twGhBTMvP?3&hFfhfGVN2_V(%2}Y zi5pJ_nyAbj@CSq<9DBm(0kmQ`7)1my==-Vy2;>dJF8jknL=88Ng1GL+p^EEn9Fn-s zX_cJ$uetlI&t{>70*wvms#-WJotdo%u*M$(Z18hB%f3PHq#^b?Q zAm+5Eaxp=H&Yu)aaHBh`S{x=Qq{VlKJ}#KxfwjGtLyLde;VD_ty3LKv4c&V>k}b`9 zIS?6qYr-5MBnqJ^%T!FJAq@Brv6<&`T$cb31Wl$P^L_>k zvZ)(36|R%%`Z|`NEukg-H@F({3Q@YqjFDpB2tiB`2_PW{?505eA*4zyqFE+KhP)N){FsJ3tOeRr>nswU zOEnq``OOs7`JAXVUqXr}o#tSdagv0``STg|s9jLQ4s`qaZ*Y~*;*kf8pf#V;BmxfP zGYcGo*647r59AA4;|@ezAnSt{^iGCMru>m{4v=-r&bFrRmi9LI@wc|_4S~&pkrW_n z7^jYH5=`*QUK9*oVdv_(6i@+4nUxm>Z$4Wk29!nOg6z7|F!pl>jJ*{wcJlF&fw5~& z28<2l8SMyx+Tl&=5aDh9F@W8ThQolih^c@eQn64~5bSTl;e{ar-!-=t29yE{h5&rm z6cJFu27K3i$gLB0;Oj7CR~Q@=7;HNRS)kax^&x;__lgvVvU^IKpxAvC?4UUR1hDB+ z9MRK*h~VPqy%K}BZB)yBAqz0Ow?0~cd5tU4UmRf8$PcO)usM%&n>*xj0n86{^j-$x z$CSg_3TlQj$=yxK4u;HdV2A*>u%P^roXy*lI8!GKB0o6{SHk z6x2fYt{XwJclF5t$#WfsIzr%h7_&J*-g8x7SmMUP6H2cF@FxS1+(So_FU1PKr2Xhs`%})%wgBCZKo9LZ1wyEdh zzI_hFa8qMfHAW_VRi@HT9wE=H$=d?snc|Y+YVSWBXxzTvjnE{YG;8{_qK)rPTebV1E=nDZU?71!^H*w2^C>! zLcm`I7e9z~BXKSLTow>@Z)>!G=qlG3P$L6G-C>3s5MADT>DXk?rH9XV0HTryaWCvx zt3rMxT|s0OxXJ)m1=ATMLRnB0!Syq;1bICTMjdKNgVA;aj3Ob$h)HU%KN(jN6URN^+0)bg`yKw)$G3g8dF-tdHymI4 zFRK@ z`}-7KL>Ilrd4Dykrx5(nCNAlt@nWYmMuV4L3bsm($lxILWoh>Z={(G^Y&3cmlluy6 zp%%;Wpi-{s`aYTo_I4Z*>g%I(*zTzjDM_TRY`Z7Ca6Zxwhc)_JBs#}5&^L7ahR<*6 zw2(hv#|@cwqkNl!BUo&vUGMprVZB;Mk5phHqkv4i_$F^~qU%j>Xk=T3o61k=1vD>? z&)g6Gp`wyX{)~{s0{PT+x>~1=W>U#bDO6ydk7wM=xF{Ql;#AZmp4N32XfayIzzS=O9yBCcTicr&wzVKBsD8Ee zv@hHoYig{DH^ElX-xLcr8F`R3Z8}EWA>g(8uTu%l>*?3smV>TgSOkPcSDS?(7X&v& zLa`{67BI_-L4(E4lhK(5KtyICGspPrW)K@3bRbQS%-gmA+kQc;sHKQtrVI)o$!g4w#-^6;J+d-2e+@w3^}IX$ zl_|8<7h`cWwf^rQ$7bD=1FqO>gSqx;M7UCI0(A#|%^@$?qV(@{O+(E`UF+Uw*8O3# z&}peV-2gV>)AY(~uhD;f07oxtOSz7x(j11+A$)SC7~_Ef{wcW=E3p#+MjBfiHt*b` zKXNJ_7Bz!FxyXM6zj8Sxb!vABZNVUlH=)nF?vwz|oK(x_U9JPdqG#~!$8TZu%;)92 zR~~d$daVA4gruC*$xfBByFMeE+8Uf7V~q4Ayzq3&=iUC=Yqn|AL;f+y^8h4U0rh(yA$#|$HgTqG8PgOWc!yE$n>Iy{Z`k@nB$ zeS~{*Lg+rb5&Ql`zt{7R#gjWubZzR<6e@YAx{t=C5>)C$s_sWRGWC7EEyG>^F(!Sh z`E}5qmuNLM!uLh3hLe{`x9e;f*CafLW)i_)bu2cwPT<5nCuOrG0poQ(Jq*_r6j zmmgrZw`o4_r*$w49G&7bYL*w-W?4V>Vl{2h=;nl4ms>R2^kSlB5#6HGjd|ZEYXj&1+MeqO*M7&*H!F?F0O7UFO{*{4P?~ zB{T1??4w8dsYN)NbdIlNqR;zfpZBMyE;!XwOQiR_E8j)$pB2q&y@E9bHeiW~+k7Rn zxf0%hC0B4sHefi4h}FnlfCS^9hmdnP>=!~i39(K49vu&12iDLM9lI?~vw0)(+`l=< z?`z-=>kvl-0jB7BTpMw%#8rtH~DX~a0dhWfB1HSZ+GzRZoa+AH5}4Ce?-g={(0}O zQ0A&|FO@q2!JzDu`x$Z{0|stjfTQN(R2Y1!=N}C|)$wnx=AO6r3VnF0K;%DlykulqT;M8{w}!r>PdQe zLqk`~oyinPK>kGH_7tsBY^yHpp291r#)&K3tkVFUTaYQ-YW8D`Sr8V~=#c6gT`64@ zo&a8vyl0(Q0{ZzW!4c5E>U2EK4`7ZVT>Uc#x}Uz2OZMN1$^4Tf@h{{R%1h$^*t4=| zaIdJkn(Sosexd3TCS^v?GGSH*k@F8SB=?V-AiQR>t{Nma{fK@9a)ZCSPzatHh$ra3 zc}FGqR)FyFPB!+V&wE+AG@eUB_!OtC(RG?h^O)-4ZY&&>x0!b2jM++Z{v#d-2nW$_ z2yy!3JNl?z3(T#wFv92EgZ@q97Swn=;LY|+*B4u9PJdb}W~lQl$}yj}Bi%#T%X6x9Bv6RM z-Va1(G@H%T(G*jdchg7sV>O_Z{!%K1@Rq?(qbtj~sv{}v3wYGYV4&o9K@A2Z=v5NR zt_vBfnGpRHt{u2uHp)Ht?83!_X$^?dRk-fgXfg=XD?peo%n+v8!%;y3)8D4`k{K2m z;Ua~*OxW_-@8>Qa2aEJ~n$P=|PH&_4KJRxGk?QmEub?*nH--%EG!M1OMm`-=)%r3Csn7k!)+Y%HwAzK@mIpa~N!Oza0}KhGw{%csA# z3-KV2O3^1kPTZ3rC;C}~JxG&8&O<+;hv-$It%sqDll34~H4C7)>MG!#%S1V@;s#IC zAi->ed^|&cIc<6&c3UE8j z?VpJi^z^*b)4&ULzzK*SPZ1})P<=}9TdXA<#*xgZ$DxE}_4u={T)mrmyx@dFLw*_l z7eEbZlcO|_5X#j6-_EEZuG3yDSwS}YLjr+-)zUb^Ah7v+flGiO(*@#R-S?SY`jrh0 z9VrL^I)v-rB%Er3W=cEsxb>wNS76|i7Z{a1&$k|(E;wdPEA6TgE?92V=!8~4WoK)^ z)=9m25y`WSMZ*9EQ0*M$d(4HURXEfH=>H_3KLRQ!jP>!JC z=YbzNKb0y^bal0CZKDfJBw~$mD@f$iKq3hE|9zd7@JN54(<=V_2cGQ{bRFZ3f?UO? zO|Ifu6Jb1CG@kepy@c)YI2}TJc5G1`M?t@$cE%T5bZRsCiS`sK%ZDs5;1NI;hbH!3 zEt2Lxs~tIHVVZ(eaNvEUh((52qc8GAy{hF>Dl7#3GI;k{bW!e||}y-H_fTskxc5pp*py z@oTVqfKyCCGEETVU^QMwIt>us=M+S64>2rew(X!<=;4Ba+ftZ{hS`5zc_{U*tA=9Tj50>G~>l91TR)*;YG%c(IMc)uPeOx_Xb}4o`Dxx zBV06I{JM!3zhUCVZxoFeKSfVrD}IS`&5Vo0i@zKqUc`V$059I(*t@W-C)U$>sKW^_ zX4|I1DaepY_*@0Aj8pMoJt;1#tu&LcpPnhX$As4|^*^Q018|e3SLnqUGm>kQ!Q;;VwofJDb>wFKhb& z4qSxZ-HsemtP0?6%o`LL44_?wVKBp4r~J640?q|BIv4c+_|)M=#`6g^3l53}uB~39 zBj8>z9%^L60zvT2jy>XkcU#`G|jvb_9Uj12cQCD(h)EQ2y|R!vS)|t-CAq+hagK z&QLUWgrQ&Y8&l14>5J&Z>u{YQz{T&MT)0?#Ur$5KqIdqNLrh2iN7IlPX(5oZ5DAqK zxe3Wu;9KGk1^s0ZK;?s$X_cw~l*s^xuN-`O!;<1u8An;a)hHA?E@zE+CBxQ-est5HZ7oHvtBni)$gSz;FSg%GQ$8 zhGrKhL-1;nglBvK5{^$Ho$B{+9dQPI5H7r5fwaNx9~m}PIfQ}Lg317M%{F7hplj^J z<=jI*AEVD`U_aSZg?tFBKSMFhm`35^je~CxjTZ`m82;5O-)EU~Bg>o{_Xc2TW(WxA z0+aQ3gd$||q876r9MEvC5MixOx6^#HreTlN=rg3G_)%hnyI6woVQ`H~f&jXzvsRJ5 zNhi{GugpcAmGs>zwdEy!k8}(ODYoy%!@ZoG3vT*=+k|C~P_9uv_3#@n~ikoBC*_7#!8X zR*F8#e=uym;61Z&d;6}Wqj63{x#2vSLKI|wED%Ma7fzuI^CM(o)3M~ve@JmF{pnV) zGmzJmrZYx5vZjxA49W@{##)-3Pf zA+&?VWxKZbb9`aeg#KO!tpN8I*7=`M{l%(mG%)BTcmU=B@Sjgn46C$F1G6D3j>r4e zTG?G>QiC)*z2g7IHg45ea+s2#+f+*DVvWyJ?>YE~JPL!cufcX`nNIM~Mq#;5_eo)e zF6h_iU8&R8<(unudP54V#sFG|#N`A%&9_5*gDbgC=jJn$Vsm^FLwwUHpKaH5ww!tt zTShFWj>uQcdT({FSdM3o*`uORj6)jqE`C3yc+0~+0n zF6QHtFykY@C*8ZPw`%P6p4kUy_xKHWA~S^&yB3+{y$+dGOuWtv&Y8Go;<}RYx+UX^ zvJaHA;ZTD;H;Wo*2|{Fez6dtud0bB%2TZZrzMK2g5+-AqtqD+1=owLpLp^e?<%WfW z%>;e~gP<37e?Xck)!D=&h+%-Ayg1^`+xxC^hzudwtJ=1-tAl383;hC)Y=Vth={V+= znMS5Dgo8)wu^6Z5s0t#!w3d00$G|WspHCcCi<_zao|uBvv8FUs3mdRIQ%*ejppH5vHe_s|Lop)Sx;$? z|Kao84|@PuEIXmrhnm{ky1J9QJ37sC&pkT}*BtIy-gA%Sin*0#XXi4c6fdBrUqDL1 zK^_(i_vjbZpgOMl5Kg~PhE*LO{Uf{Ab~JW2Zg23XD$_-wniUjCh(Vzsc&Eb!!z`2P zGksP>DNGWk4lPO|SeBFTw*?;hGO>2dU|m%z!B# ze*8KGP;+2ZMH)tZ5-{o+z$m!hqEk%p3#po_bh#Qeb1saX=2Npq$m{IS9=|@QssiK>kQB} z51$nbx^hzzW%lq85?vW^>}>;%Z3Z0EihyGy)Orq3%U>^VaoOhpKZf~o0SJ%-+gvIi zEfD9qZix%ci#?LgF6SIiYZ%aun;bP@=Q4%7K9qrZ(v6})o;*Fe5Ko#Id4T7EoQ7#K zdGEA=-_QbfqM>#)=WZ;`^gL% z6KXRGLOX|w95c2Vux=76Wp<6PPrP4PS8Uq?>8#9Kfs-WQZlrm*p{%!}K28EVS70KT ztCOSa!qmy%4VQ)-dTC^MI%#6$S-RmskJWZkX|&n7(SaHFcJxNZ?&*mhoZd4pO)8~D z1By&a|GL*9H<$@35(cPXZc}7A_MBlBqR63=oCITrMCZ2#h=3BhD2dMdYBL8kIM-$; zfEe43lxSzi_P&J_>V6r^fXkV-ykb^bCBr24>wI$1CavoTzl zb?>^~5R$=7J9w!@0L^Iw6^X*7y$<>IOzI>CIKqrfTGN!y!)GB(9NxF)>oaH)7zhtZ z%QTFZaww6UI_waL&%j6#Azsg4ZgUm9If05%(Jwg zcymES8AgF6xBRC(hx{ayBRSe7%*Jr#wG(@T;6cg{-I@PvJ0w%hB|@rjG+D1CBoY%L zIa{chw5$f{@eC?r(&NS=NsnQ*l|yjk)M7vB!=g2E>l`gI!|VBqyVTwZcnpKikak9m z(#V}JhOZVPLp5JCnV}vZT|z^(G4iAa>NTO!S4?Om1%^iar##T;10y+d;8KAd>B1-7 zTi+WPdwWmCgLn2!OUp*Y9$66`Qrzp5meM3U7667Y*-?Q@gd&-Al^MFDaAHe?^7tpz zV%oPne!Q@K%kUb@AwF`evBM-j93w@2?Ag#4br69dO0^T@7!|T3&v2RU*yB!hp!1_l zb8rVnUhuI;o$x*Ce9K3z&R^y^+b5aQVA`DpAAE>r4Dcf4*&;4S`Tmk#|Jb{FDi5u5 zJ<1MwhI6S5wnAqrgOws8>d4(O#pNtE2o27iViFov!#>syUC&OD3}cBJ*np+uhvfF# zez1o{Y&cXpTGYm_CHZ!O6R;QtnSlmIjmU7ACx)XIDuY`un#SOVN0-9j7Dk@F*rj04 zE(Lq!qgLlH^T3`DjIPLnLYR%AL!pCvd*_$+%s6oV5!1CW?cHQ1xf41g{jEb7$qI)E znP&Wuc0iIVaIwG4Cgy+KqHe;9++tuZdBt@NF%?W#ErA7+s;;PzoC=uv0`Qqxg@_=J z;o6c7%me^Et=y;)Xa6MkknQ21aWEeFqqVw3S?VBL))T#cMmN$|WCD)i3u}iZfE8PUz>`ySrFx<8Alg|d)`$m(C!Gs(i<3O3_ zJobQ4pq(ou#IS}rbXe4vbdrc!Y_#ZogR#IM0?NW${9FVxdffQ#;z7gN#$llmwr>Zo ztEymKAI;#0IZcJbjziejPh=j3J4;YZBx|iEk_8gA(0A1?;<)BTBx-?8U!1OCyT}-f z9`P}kX23jBhI->5&pfAV@WVXv8Cr!{xz7-iqlg*zGCaHi*LAo6EkN(~Q8lh6Tu9+C z3Fh6C5h-`RM9NKPlUcC9mS;wRwFL_-!EvW3l%4Ct?)^4mb?kv#$Ynb1M!$UC$vW+q z0!+5qDw4x!7Yt+N72`)v4ETn@#-flH%dEGn_J50jwmSWsPOt~ZIX-VG+O^tkSJP!h z*h1=f%jaE4Ut@E~$8|!L74U4Ypr=zzxdOT7^K9oi$ZsEH-|j9%Fh|rlyX10D*JIm{ zZ~0=wp*6p#Et^w4<1a6H_JV8AI&#J~{OR=1|JWJ0Z&B~cu`NB*AKKOv7b+y#*@kuGp5{FE_2$srzUZ7l{A(QvwB|H(RZzb1g2{bTsXEjNcB$Kl~cmm%`_Rv zfE|WlO8*K%PYo+p??x>}yFp!Tm)VkNjjyyAv3fat%R`9ReiW`SvKoR$ecT)#;doIK z4Hwo+fuAl_F?TCXRFe~P_hpDzfU^-Mg){#Uyk&W=7*-=xibhZHZzrglZ*v*xoaydr zn07CG8M80$g|8U6$0G$6p}vwI31x{{9)}&h9qkmEl=fAQyslG&&e7EnPDQy3aX1w- zjAAuTo5i%m>%l}6+5|3m=HRT}6=Uz{i61$?Cn%7lxqW+MOPks}!1|Wo*zF&o5TmhZ zG>iyPaQ{b=GgErX-C{w@TwEe(skFXo?rr7%o>Pfte>go@AA+=d!{AODaZSqxEv8S0 z#Y@m$kMK$Cl?Z2{+@9w)s=$z*0R@iL@wPQd`(YZ@JJ)MD_ZF8SnhzkOBd2+5`&MK* zRfpOb8H3O5U0c-y@KS1Ozr#q&Zcey8z@nd@M1aLxM?MiN_KvcBTM+Rth#+J^PG>66 z+0A>plU*-y#s`jP#9&mX^D^;%K}E~g{3pH?GhJ<06>SUuuw7m*&nPEXV#m=ZSzA8EMH`#^a^NRppH z;wtGJCqP}S7!3YM_X;%Sh__tZ6uaLRMZh;GXHYm(g8oLAF5}(>2f1U+KTM{G@C;|; zPY4S^mjDLO)aY992nlfkG$ zI>Mp=mjB9d0sS@i^?#k9)eO|Hz zvaP$Z8>xpmGv$6~tGvug!UugEJEETn_&K1Q&yg@wVTVUd>>vfk4*aKTXJ^tIY%B_r zv-!L}?EK%*zd5*S%_@RDVdmrt`Y5A{JH@^HfDV~NEk&posA2#iank(Bwb}Rrlk8;J zlODDUvgj-CT|TzGNBhKX!)KvsTVtmw4de1Ppg!9>KzRm3Rqo~y%R()O+NN_ecupXN5@(G$3S{v+AV(Peobhc3WRc6w zk4*DA!!yl*SEdlk6k44%?}cad>B!R+NX_KCc#u{oOhXftXlaIwR1KFV3IRFsZ^Hj2 zuLb3`pafol+an}K2`X2w#nV(2&d5wY8-S-s9)ZJ{MSmhD!%U_>y>Recz0`O%A64mX z00TS2fvn_Q+w(1pWr}N-+A=~p5tq%nnMH}AP#uI9n-HGjd;vIPG{gr@A(}}e;1Xm# zm7XQGq&tXEavnzHIFI`f3zVl#BsZI`>!aC#WM>H#2?7?t7nM#`mD=;m>c?KXj=NHe zh^rF1R4pMows8@_oRQb`Y;;ZXni@H3?O9L}NMj;8mbZKURUqb*&?*; zM^G*AMnvz}tA9Ik@P^TB7R%q`|OvpFt-*Lw?io4*<4R~YTh6|vb85u06Oh|Q2mj~3y&3Mi1T zn{X}DkjbQxU&kE2i}cS?)e>VR(G}=v{U1XTs25)w`NFT2?`s7@-GX-y)%v_m z^8RH$?_MUP4reJ}MOj)s(RK9pjqh9cM`~~P}%!tg<32GIJ;ccFx zAM)*AlJR3R4ijTHIGQ+Xg9j$D<9=@Z8pxww=4@ zB0cwf0h+BXn_JoeF45Gjd~1|8HZxf5voR8};F2A-EH)I@734L-RO`l}BN_iOy7KwgbD3$w?z01aS^=J=u=BHE| zB_l&c01^HJ*tR(X<+bWnv;C{?zX$Fb&cq zG)R-8LFVXCBN!Yq&9us@Cd*3;ztTBJUJ`nzNzpr3bFy;|W(V0%oSRRmJ|F`l|EPFv ztC1~9L}&}3NQ)qoxWsK^4Z@llfGr2IX1(;>7P1XFmhh98w3)oN*u7;U$VBP2e^ftO z%7!2v2Z{hMQ68EQB$L6-Ko_MDq~l~F#?1|x$B}tz3O|kXws;&h3x>zEt&om;eLmNuda9sq1H62$75d?u{CT6maT%?BOpt+d@+M`~h z7mVn`pEsiK$T}4neb_sR;S;NECUXIic2FpiC!&M&5nU%8;f}L|S5(uaA|Mjx{M!&a zf*}I2*^1=3(AJdG_7oOFu?L?YX#9SWPCEE5TZUFUn?> z)YrM@1N$~Nc0tgCJnb!QTPtFa-$M!?^M}Ln0D@~p;~^6|JqZ{B0h#9!Tn{pUsI<~6xwZkA(?9M2v;)Y>Jr;(MV^=vr zybmY^31>{R5uo40L2AnIQbD{3iRQnetP80%o(9sbH7Yg`bbWW;+!^jpXXvHK;n zdrMbGdlv{@koA+4#Z1Y)uB|BH#s_sGnG66Z$h$cM3=7aX@|y)Ep%CbRzZg<)TQZmx zpz%s|i|E|Cf>uBy2#+f_vmevq4Cu+UfM%YipS<>(&wC|=-}$;aTJxB-*h`~JGYXI#$`)#y# zNEX`gdGE#n_)uC8>+Ue+mUc5UdnOW} zcLs;XMKnuHzU(+wW^)^vWF$WC68ty5bxKEKZPWq+!7m%j?(-fuq)CrRX9~>%WA=elmZ1A z0`BB@5s?`D!0kGW4oC&t@5Tul(2y-4pY;}xIluLmb@JzJa}hs0=;>Wr*0cP;`jmf! zxPsPX+t%)F72#+oR8@tc$ zkb1m@>(x_;5AXviDxRxB^;m$ZqUKAVa;4@dXq;k7Q%>dTG(&miHYGKMvyv|}tG>=G z82C?=KhCrmzCYH!tq%4|@F#NdzkV`)fa0~DZd**Vk2TJ{` z`SWF+>i84ZM+|eX<=boqyhU0xl_D*Q=&VbhGT^T&K(vfPk${+56p)Mf}~mI7e0MN=iNnFE+TOvDJl;1_Fpmz4F~e4zE+i$@3sTfzTc zFoB473vdi$C|E>AgOQMF3-vJ!gfof5ufp^22O*eY&-vW$X?89uy#N;lku#;<<2nB+ zk7xY;G)NXI0uNb!`ZW*szXlAK2vW^(v#YH=t5lCiTM@`!~c^vp2^t;DcY=)(AW%?OD1;oQ7aE-D-Y&g7)`0~cF171@nAm1U6UP9 zU@+e>$MCmi;j3KW!Gxk!K|q8^94V5JA1MNx$q@4uH zle%SAm-P9(;|FDx#q#CH_}k}j)#LgVuAkrz%_9tEl3CWdpi<2Anf7chOD!+%2Y+-mF6h}fg9RHiAo+=uVu~NEPt{wVAK+uQ zGVd{iz8~)=dFJGxUAPE6UdbozdYm+$_cr{;K;-KiWQ)VdqJ|%LKV?4eXJs{bv7b$s zKF%d|&;Tfc5!m)ZF#_SN-yaX~7HH{G@+~=IGdR|}(e~~^c~hpJwPg!o3<(dY8^r@k z)HGJuC9Y3H)ZSQHhjpUQ+o<`xA67HEIJL+!qxvy8WSRXsXjmLA$XFbKN%eUTsyCOW z>MU=HRp^?`vj2jY{V}w)gXcx&|KfF+|EGD)Zg5$%PvV`gW!~9>cV3Xixe@Tk=l!)z zGvCxA;=8?smLOF5}wxc$Z8{m(EiyWQoUo-d9h{SJSG(A*o4Z zX0ga63uR{IS6Q0|*R@$L5AxcWe5tR*AeXY&reyA)z}grLI|=01^-mj&>Px8h37u%L}+r5k0BV znb5?a4OlZZ18Xd*Skudr&06U^Ab-tQvQ!;@yVW5Z@|9dzjds?mKVN5q4e#-pUz>&v zCH;U6B^%IV!FK{1F6T}r88+XPqO*J@3-BLx%GbB?>+AA^jFRoB>LDJys%kZ=x`W@j zna}lj*S%vBOuiD6V)B(3Bva1bdG?gtJ9%`A%E%GfeeCn{lz`IpiViP;=1P9a?+VcS z&vfZ$Tw*jA3?mS05MDDdrH%&t!Ei*dTvKC5V^d2v%%BC&t%q$Hw%RiI44KRM^+B#c zZN()1wgVSui@O;C{}uw+0dSB&<*JgS{mdH`Yv|W7kRX@t0waX z{TXl2jj}<%%KOAyB47W4H`^wc4f-FtuT*RqR8=cb)$h2fTbK?horwQj6@UE)S)T?p z{dI1-zzUU`e3-9v6+g~vRl0~vLWo2{v1k>RCJ>1sV=hwV#-lSq3Z(g#=@8i%4VO+G zl((e$TZ`HrrLwi8$(`xOZ!;T*7&sb?2Lj+TB9V9i!eQ|KX6riI0^hU&GCM4KJ#vd1 zQ(3x1bwl9P7W@s?nFLQv2=7!m%&7$X%2s9I)d`0xiHdcLph zntdhb;g@&Vvf1b59Wq<m}zP^jM-F5l5UFiW-bu?4eGE{Ytt6C=8 z?lZp9&u~@zb)T&Ja&%b4uZ6bVKXawB@;^zJe!wN!c5cFDth%x5q}`VXfM?qpG<)r>d&!QPo9U)gq}X=!0$nRq@xC z$WnYuOE{6tS)XoPo!s2q%<t_Y4G44PDe zwZ5{OM)VkFx(RGR0NwO;HTTsi&BE&Lhtj5GW<6%~yHFwEDcCbue{hO9&IrJN>E}@X ze;DR|lvx<@VSK_Cz4YVw?m_&%L#O{EF4Yt81} zD~NsGN)4vi_KhtV_r73=`6KB3Ij~Zhr@?sZN@>31Hi^~q2-Fw+< zts|tyXlQ6@+mh_Wy$$!~BqZiLo4OG`!e+SXW_kKD6dSB+egfAaH!=2TiT<4}Pm8yk zP)l~sWza#xzJJ^wapky|r`VO`lrS!0wrUu1*V8ts4LjT5>)X(weDH#)W07Lj1&7s%9T=5DIgP@bOHK*!U#Y@s` zLl7{G`gkDzcvT2S3ejj)JQPQ~j;d&A?mlZ>GN`E-)HDt1Qe#liqw=7@HFg?YBWqLP zk4Z3rrz>%-1oyaKqY2P@T#!13+LS}Wth%(E~%D>2r5tM5>D3;m~otDf%+%R;>S5mIi52P?trxQ}Bz@3BV zyuO+FTXWUR#>yS%r) ztY_1Kwr3ZQ6pIgA=CmNF!bw(ST8)1kEWBx}_<^wUZ2MJ|EK9AyxN-0!{ierLb_=dE zjsuZqd(KzC#GHFAq>K2dllvmmxt(PddCVA;s6wRbg?#vHv^wx4ujq8Pf*k6eaj5^( z7aCBD%$TQu7poW#FtvIWPXQN%2a`#3)rhg-yDP~$T7n~ID}Q)~Cg2(R{P3;(3o1iu zFg*!29&n-VMr+WP{Ru2P{y=n$C5$@aqPt1(R6GM-+K9QvvsHaXA6!7!$-1~Bm~H?J zayg!Z&4Y9%o;yP#xVntr$`bfCRGtF8_l-31<#}VR;r3R;z7B8D8)%!q zQ%-NSY_0mO^z6GUrsyB|LEcZI#pJ>pYRy1@xxx$(Uo#Of#AtfqpiJkWp&vK`&D ze$dJZ8Y^8#_^4fj(sdBeRT6!w6Va#GSZF&ggi?aTnz9My*i%bz_2K%6Mwft;o|J;u zp63lza#*dVJ%X41=&SS;qO#x-nDBn|Et-qw#Zrq(AW=|X>#3DAR=sW4lMnJ_)|>l) zHDWj}egx&<;m9n02MzZ#5x$r;fH zR&W4*pEu4CF6$`b^H!x;T}E35@ZfnU9OrK4q0o71N5Gfp(2U+iOrhWQXX{6fLRT*M zY!Or8vr8DsFscr0ob=5Rq1^r>!aCn{eFJ%UNdiqE-DOmFA7m`~CMvvN}a zNGnwvNmdgU`)V2PK4in z4z~a0;vtkmAbA2#>gAou?wy@&T8h3v7r}J|7#VUm&#OSsL-2X!Xr77?d>u7?6NKOf z*~Bb`^Ss)HsL*dCJ}HxYV$dspQzYNKj`o%|5UWN&V9Qy?!^&n&%?PkI%vB(5^hZL0 z5L~}vF<6hyPQTu+W4@HDKqWm&`{{PLaiNZX;n#(@Vx;*hL~szU@()OSzqM>V^%0f3Py+qoM1d!PXCVf?P#vW&#Z+m}Aa3(Uc zC14RO-6ryzKU$&{;pAe!fVl@B55G7c-Q_?r# zPYF>DSP>;A)F6@yAP_)rm7kNd)fcj*Y0p)AEybIg)tr&u5;y+*f*>}f)- z#2zv0dx{X)_n3X!Zx(iP!Nwp%w!=Rv%#aTGJHpsgND14KPGN^3Y+vsrY=_L06@C_B zJFSx1^0HjdZz=i+D@7HsWs-$YdLAHmJU_+Ul*IXE58lJ*QuHDW%`gwXPG@H~9Y(ZJ~8 z;Y_^e3sm=W<2`$x17yEeqp$094Y&TcM%?Fb@Wh=U+zJPF^E}7!nuUnZa{=+5QOL{T zqyxJNheJnT3!>9!=@V$m&gNWNP=BxE9r`C~WXbWoY$Nc~* z`q!YIe-PK4QwVTp*-*YOv-;OwLpJHtfoVt9Q2tMZi7Co9!gPY86a#Ta$#-)>h;w{;h;||Je4rkrmx@^f>@$N$kzc0!c3aWN zMq%hBwj5fiM>#*;+d%l^AjdQm_jXk;$AR#?jSz(6RRxP}>7H~m3z0=A{36gKPY#tB zPJk*mL_HZqf<4XzyJM>yS=FGf5_K$b<>rEh!DAWdjxuD}dJ*W`Ox#s#3q_G@7V&^eAkP9uSLI+ z`G(d0GEn!9BW;e+VeHd%=>oIwoWnUsQLEA-@8B zN8^p0WU{JXHR(iagrfai-&>#)k3k-OlTPaDCSY;Vy3eFgu1M&AJ4`g*FKzNOPec)UX=8G}x*Nu!+{5rtdt zVud!HjZ!!Ag~?Ytb^56kcHs`%^*G8gQ1e;a-Sw#3%p6c zj=}KtIaZ-_z$kc7kPq=xn8WpzO!0Ytl=! z52}diuwgMkm(M$}7y-VxUZnlxKrI*hN@BheSaAHt=Vd(utO;Ur56Hbj?pMlvJnpbf z!1V3qsaeIh)iOV84Mr#Q3hHO@9x{%E(XWqaVWd9%nWp$S6!81PZ$MBe) ziFl$Q6T!RbKd~{fus-ibT+4MjgpY;HdUCim-s%Wj1|~&YLZ9_{Z%^@t(CA(E4L)D1 z&c|rr#Ebx=aW?4uiD!JqbH_J3zSQ!CrkxuSH=MQdKbC!K>4i04yJ~f0MrD6RYFg7} zlP(TUTzyUj9z6YXdInCqjlH8M{$#i(F7Y$F_H@BYS*598 zu)zA;-arr*A2CG9iuxl+vmOse;!!hXb~U=p){Ap-m5V*P^;Km`q9OJ%VqN7{qE*@+ z1~H&;^BMc0LHNAK<9icV-*M9x&5^8VG^vUjrn2mDt!=f7WvWGX%?~#;B%3%-bFwKN zdU|%UvlAgTn%bL_X78DzPw10Fk7#Zd zVxuKe5LO7o*5w~qNX}Mg9h^BwMX#_foE3;S;YRFy#Xzog@!ZaxZQU)~lWJpHTMGnZ z@o+2_LvTGm%t}IGe_YFYnmf+adV($8*?+^S=d!Rg8D`)8C6hW=Pofs~2s}!+CEyN< z72XI&D$QGJ2qs43r~?*x_)AkC?U61oBfmSZNOy2E%;cI8;pld?qnsn6War`oH->yM z2<6Wqf>p~O8ca$fPh_jY8Rixl0D=`+Jx?;m`S6hjcQP!uZi_{{CeuCB(d%OsDr!4r(;5HnA$51k_aJSi;p(nDYON7lyoL{hvWHP0U^NoMnd!p zIU)LD2y5ua8vS22M7u4acmS{`h~x785lw^3CO3q^o_)Tv=d zY96!o^yl>l%X>GE-O&>~a&b>k5O8N>+g1b2Em&arWiLFu!+w7_9D?Pgp95wG;wJXJ z7JXstD}53lNz02FV2QZ)IaO$LtdF8!YM4Icl<-Di0^W#g`f(HW8j=w67+K7~ZPge! z7O4)3X;BGM^o-=#sV?5N3T32)&s7~C{i8msp`oL(vvGTaKUJA7iW(f6RhGceB*=XQ z>^oKq7-HabgaGCrrNW*M*$g&v79ugmRgRs!y=$v_1g$o;-(jR4GUwWE)a~adVV!;J z$S2#xmPzhzN_KQFi1-&o5S1XOGZpCU<~`lXu9sMBych%IG3s<)CcIQFzT&UVOW7zm zP8S}+W0JZLn;^>!{w|sE8ml6|1y3J6##_>PDjBjMYeZEfUd8e7IN3rp9Emt!aDaW! zPnYy9bfU7%NzmyDMt=`+n{)wU!_yh~^$zZHURwgxiG10DFY*A>0{iS`nCbHF6bk^Z zZK{H&io!Y42gD@AM*`U9CiIEn-DSWcNXx+;W8>$^6csdfHvYt@>=FRFnHp&js#bFb z0UkKOrgYM-M(7`;%gxhB|EzHmf}^zCz-fs6_Y6{gj7QylbQVYBTuc|LT5@9$NE@3p z`Y&A$0x}wKlmU%?4S6_!{)YRC_yen1pm+tA72)yocr3whZsGQ1_qO)tDcc&mrnI$B zY1!Vu&5uKrdE~{9RpvrG%Vv91APY6o9O=(-XwRN{ahaQ;I7EHqGWgRo7UF za_%mE`ZdJ-vt+zMmIMHI?El}wLR;t4Z+(eoxl!pjAN-Fck5lMl=nLHas2&MQ*tMya zBGk*+L*uk{2C`tlY(*9Ycd!elxOZc3V_8pW&$-GuA99!8ft+0>v@ zEe}Y5*P(_!ssPA1%OE(sufkr~fC2hD?i$UNv$;DdfB|3SarcF?JhcA$Cd@vf#~TremFUlN?{8+2HRAj&PA zPHSlv-GZ}i8YeBruI6KHW<2v?B8ppRxAUFsy|t`oJkIyR{O5a0Q+r!i_mu2oo@-=0 z++)r>mF)21jF*jL{xwVnR2U_lxNaS(V?M;L-uPBJe z0jK&1QbV0?)S*+STcBXZL7zoKs-m~3vzI{o;I1PL*Gk|OI zWB}7^O7ehtH_RKj0`Jmd*c_^4@FZcBWrvi5M9*Laooem|8J}>2c5cvV#;{<3**`3X z@Q=rUAw-==ks+kojsZhR)gEhxklOfYGlYM%=)^x-bRrjsPNbhI{skC9OmbF{Mizqc z#^UzXq`TWY)WRd1TI-q`>R6x$ERymU>Fz?|U};Hd7+$vsep%`*O{TjgiKY#QOiz6@ z6@w@$(d{<_7?=XYS->A9rT{S`HoGOVND&~~>q)^Lc{Q4WJCxNO1#w!Uc% z(!4Qtx2E&oLx!lHt)Aly)lA-(KvFH}|Gdyi`$~f$EO4Jsx7|q%f?-C)fvkIt#fPT! z5c0V`LW3+$S|zgR&8}kDLBSs=h`}JqAKSV2q$(x{Y4V>4l0(aq8E~p?Oq%pC*eyL= zkt#j(ckwi`^f0KB9-ay5VL3|=soDzJ$t=>t*C9Q84bsCc%>RjAg-H*ojSFNprT- zZt@{Ly0;7^7=6Ix!{RvFfh|tO0lvVsdQT_bRhEh*v`YjO^%+DqDt|!mI?~b?C;KI9 zF>pT!O-cCES<3KC3B)hZoyQ=3xDH2)LIP3r`1dxEps|$%jjbeT{0Q_tO=NLm_ozU8 zSJ0M$ss=IXGbNKjDVcP^cdo1|yL`eGbuHLE$4LrFZ!drO<5_q$f}@7=nHHWNJPSn?!=G&RvQ2RUAI7Wk03wEcpMbet`%44CvYx5mTNd#7!|9d}RnVv^yGz>F&5`w+;@p@Sr*@AaM%L(}m(;T= z8YMV@)nhtY4ZNZ5I|RDo1iIoT=sG%c$-N@=FS?RoMF2L-cm_D9?7ZW12K3l6D3w&Q zgF+Z%h zFezE1@)rXPJE_}W%%0Ow+Qd~0Ult>sd{(MKvx>yWfaB8g4CxFI>C{ITn(0lJvuT;@ z2Z-`n-bK^EsSj#y7pH+B?!zM~-z{pHO05;=I(BDI!jI$xKG5QUQqT|KAcBO4r(M|% zIv6|-1Hn03haHbq@r5boY^Q?!_Ti|;aVk{U7g^?Pm`(Jd(ZVmO@xczkp6wD*M%7^i zTe>hc0wuw4iC<6M_)^$rU`+eO23>p=uSo>WElK4WLVAZ`Oka|% z0y$b4|H$T{498T=5oP>?1>8b8H+C;Cr~z-oT=33D%rx?en~e7Egij3O%YGF#7KyL3 zu|R)a{1;Z@ld_g_n_u7#dRH%0?nWj87)BZ5B+McFj|@h19Ov_Y_)6Fi&vRimoB+9S z8qPq#FEA(YZ9c;`<1noDbOU~nPSyl}$;}TuUzy+L?lvkApEE$DU?h9a%4xYvW(d?h zIHb|}c%aeFOusT*BBla%i{%QxGU+JA?qsP32Q(x2bm;J7l2!`%ivq|slgl2ymmmNz zF4+l))3RwdC?M+~N)v&K_#eHV&6;}}cD?2vKpeR(6)M1m{AXNjA8`E%1?v!gFABdWT=zs+4e47MI#xt?>AgOnDs6kqvD=N{a+iu3R$pLExOR#M9q)4#xYLu~Es`kU) zEwefTSSAZ(kq0>h3>mr)b-kZRu!szjU|4=j>P$UbxC8h0MC)ObOC{Gxz7niQatHu= zAi+YFM^S=BwH*Tq7FBz!C0NwPM_YpR2%#2=*TaE(2-$Ff)E)FwMSkjz4^@JNN$#lx zE790~UY|{Ep?im#45~%6&z{{7S+{;ub39qtUJ?$0Wh)H^!(}AFD)V}i8uN0XuR%Bf z-Ca}3*le=-v@yl1up40n6cy>o2LJ;kswjean;TJcdN<-2atIXuT$i3OOlxUkW2z)G zn$<8qFMhQ;C%;Id2X`bIBRVm@>vsCS;^>TM2lxIRxZ2 z?j)ZsYV+)SH?zHhnC(3J4jh;Q)!AtyMM32}Xwdh$)`=l*GrA2MoU1AvzZWA=u(WX( zAyt2SC{+~6t(V^wq!w&{k5b73rX`LL*?6AX0ox4(VgA~fCyPsm&? z7l_cHpBxAc1Shu{+MhwWKMc6qAkUNuse(A< z25d|)s2h^XvJCbV6Lh5P>B9DN`?eLe&D}fOw6Iv$2x0EJSY4!f%_eeZm_0lF3iwoi zIP5J!TF$Z{4D|xx(r}VbJqt7kSy~Y7F@<)jH~sN$(gVvjvm!n70nCxfuU48C7Y(qw zn4C_8SPL%&p=H*Ux@YojJcDm_td{og5%R9ibptG0*iYfdrQ*6iZn#g)zdFwty$zF6 z!{R8!l}k07`CDP!n}Y@D0S}8Rk0K9CwH*TIf(*(7SK65Qh6HR1yKwfX#$^TOJ6byNUwZ zV*F5UbTdDhwb&7ZgiC6(hshG#r0N6_Bn}^yt`4;6RqJ;59q**{OU|5S|4?pI%I(lQ zu7XCcNEfG3#5&NPFdqQK6h)bu3R=tM##QuHfiJ9MrI0@v`m7T57-AtCDWr<_bulz2 zRfLY51CTs_Ew5--PmlcUt|_z3W$^l9497oH4vkssH;5X&g5u4<5164SiW!I zc(I2|IG^S+sGOAE96iyzqEa&DfotAId_PG-iQriGVPIx2Aq{E#HnJE^B&1}F0$;A z>rQH4(I?tA`lgf3I7;1m?%A{10Axzg>-T}}E(?{F!9D>V@1-HjNe_V*7^+Xi_gI4J zsj6XfdBN*eQNu*8+uHoS0;m8+F`hSZ{4jkxq{!nG_1i5~%xnk;oXldf_XZ)52RR$J zU`Ye~nZ_-tQZ@l~q!%v_kFpM4(aRK6Ax@-vOet3-32gAXk^2DE(+SZ+6n1ku;^ZGB zgP#M2s3ecxq}7WwUva=AxW6g4>_s8pP&x6Q2cgO^7B)b*aA0-5PQ0C6WVm7RablUC zfaC2xu=+G7oVDOU9AN{x#7IP887Ouk53LCBZ$DVol_kLbb&`@y!`|igr%esaX_(1w(!l71-7n+D%;k~i| zhfn+3m-pGwHvLY&0ys2nj5kMGo0`v<0;M*h>y*Gv0|Xx|L;_{r5(`3Dc$0cG(GfyG z^slHQ*@A)jlCpx{2u$Gq9HOd$1k^sG0u-jgLa_x?t>7&4+zjxfsC!QY@m) zZ3#Wjra_y)@LB?fyWrU`#oo}~T#iAJoBnB1?2Ri|*GMS24kGW>bU(Jka#Py91Xdy4 zaCEB*j^2gj+zdxi)jd_Bgj;t6p843=Mj`GkxE*6^VJ zA--ecXGU){s?X4<#%b;Vx7o)U)*y3O``HG48U`~S#|Xl2FpWc`8k34mjR(gVj_UkR z2$>NE>HZmNu zvUpRuH}FL#F^zaz7B<|&mq@SAmk1r=l5SL61u`O|pP)}x@|Q^?GRBaYT%_hE3H&I{ zO_56MxN>@4bhPH)C4NZgay?m$!9fTqWySBvyuL=v7H=g`twbrV45W#Y;rW&QE=AmX!mgy{EiLQ-UaaN>%i@cn4E|C}K6i-ovBebyZ=Ye%Y zI3C1tuOs%&9?%eKxzrv?35o$A44_NP7zJq7r=@f^ zvTX@Sr1Ff>>H{F)Wa9J=@QPWH)x%|j_=9+yh6VFYhGHty@h9LeGa}GlL@F1t-=zXP963Q0eIn-l)>mSR1yY37xD+8Ikr_qLnRpmx(N(@1wTol&j?Y# zUS6D&5c9yUEGh?}#mjhN;cjtm7fle`m(Qngsw>0_`UR%gb*$Z8Am-)h@-0?R_gDpX zrquO@Vq! zSM>x;K^)mz;*Du26akdy=nGvPdU<66EaM`HjeWLWC|KTN46onTL1A?lIjZ%d~x?nlxcCz>G-7@dXDzHxT@QZU;7y>k>KL$^e3yTTj8 z5>SINc2VvQ3S?gF0JHP;=a7TcAdz>kbGgK?aXfnnuPEI(umb#-+I=jQMFqo2f~z~6 zL~{A|Do^vdDw!qi4nv$m{B1t$Hdbukm18E6ui9qvRol#QSiLNnt~QtvPKw)(XRgx5 zE@LGvwOq@TB2eCReA2}fe!ldj#hZ+Y2znZ6O&}dAzP9_W;B7{>hhj1_${?#8U_b}< zEVGdSxU_v~yOYh_mBbKV4$vYQXv{$i*^M0m$QFcbH7JJn+8K-PFX7$_j5a`B%;ZYmH1%`ai_B{Vq_7imaQirs(5 z3Wyg0c*Z0}h%k`?Ae*9#0kD1=#MV!AQ%LqSBi6tq3rmQEo6!^eImy@PQ%9M^r2*%|i(KP4qbl#7R1LJnx$7nYQ3Pvks#xfHtwDUXl)L^Q8y3Xe9tjp4(7u?$jC=2x zpB)RT+>A2O;2aYTCJlZRBqv$?|@QUd4y3I}NVso~` z;xFv;0g)h8A{=@sAdw|#i~}(a$1xvAbr$|Gvj%-mw<~} zx~5HPi7Rd5&WVOtBL-R$O2usRqvrEuoM7R>ZG_jhNC~4vh4+9=BnuxPyBQJ{;>uOa=OwT@a4I4Chlc&21iIY!rvZ)_Z!ufCS@@?8yH=bqd$*m5g7 zpq;z@1F>D*O1|}|(2Qc4?Y**+?;dbMC$Yw=hQzLHsl(Jy7L8aQMs=jInno2)q7_t* zyibVobtYYyAuo&~)zv*P<36*CCX%(VwYQ6TW|XgcV!K7PsiD(Fv14cQ3-dJ`X#Z3l z%nP-NnlCW5toxz!)tK=lrgJrp`8dcB=~5gqT^tXVdl;v%Cu--pDTU<@aVAy0 zc(=HmzYm?(bp>8hrm0bD%TL0eW>Y5b8fuR<6j$bvMM&Uk2Wr4f+;crbLJMn+m5J;(xio zPytbOzh*MSN0^f<55|#9m-^AEf4BY8-B@2NRlbKr$Yj361rjR5I?BnVt3HiqKAnPz z8Jat;xvMZZJB=_U8;xLeiC>Bb@Qf)$rYTwjl7py)SD9e=f3U~Ut3*irDM8vpaXyZx zaTwG)Csico{|MM<(jgA^-0s@Eym{EVw#XG1ys_f8v+kY!O5iKrRpYmv^j|~Y?)Pc@ z{K@B&8TcS);O3V0=Au!{?zyaOGy-TgP)cQU{ZpV;s2Dgl&OpGzDc0|_vE)5PQIL-R z0n+g#kd8k~CmjKDi^o53moc^_F`>nbQfjLtl`sOMEs0Ws#w5>_5gIcC-dW#Vz@;yjceV2CzD!A0QC`E$7#FnJ>QtTA+oh)-DUB_RI|W(VFZ(e zUbsTcKphF@tMODZKXv;37uOn-8k(9nK$To9zqk9*ZUsM6F6MB%;*8V=PnVr1VLe8l z=0d%KAFMtIrG2mWAe65XlL=iMsHHrdh@&9-QGv{*cIya#NL4vW8G8M_e2+gmtED+Q zYyGi1T)DSwq|p_k~zl9FfE8z5aOA8;b;j{$MB)4wuC+lY0$OXCdES z@13RW!TuiAyifFJOPGEX{4#cw^O&oA5#-II7q_7Ky? z@m1OAyw^L*ndb=`g$e7nIX7plJW-qSHg-_Ue^zb+AbVtQo{9D~_h7j6aKTi=*V@N< zP(;M4a`~2`y0`$#eD&kyl{J(FaXB6zEoWz*?PX@37r6=4#O-9C-~qW7Q5)wNcGJHsYgm| zeE#qxk$tEb=U#lao3qpPBEH^-NW)IHZSVDGlQ!)2chFr#8}@pSNJ6qWK#A_EMhW4C z$_9}2Uucz<%WbKA;1fU7fH;BOt$uS#bbSha{ zEm~Ad8PL2CxQ6-{F&NCxCzD{M1%eZa$q1;IpQm`{ruG&fa)zgHwnie9J36u zTc0mrTjx!HD!m-N#22F8n5dcDL&+VDocT2m4KREn(K+}zY$*G#pTsQ($D{_mq3(7Nrn13CH;5A$ z^Par5B5F*+1C5(DB#PxX+n!A^5&kej_*L>XiHZD-Z|Txe#w4_WsI7@&`OOGFY$E(g zsYC*-BZ0c-9oP*cA#t|E1ag;Silnyw+ygK?(^=KNSVa$9&`l2%^)o~S{D@hp7z18C zAuf^C!mU3yMNrgV2@EAT%1sgMfGR{nX_F!->gNof`{bYq5)i`%iP51kS|VMSYb0ljC*5+!ZvqN}vvhr%i-S24J8Z`U0@_XQXYq3)zu28!(Wk zSB|y%Jh*f@wT|s#z9tyrj@0>D10)-1ZjNlLlR<=OJ`D8hWC%`PF)3xIVaVC*5bni3u*e(Qxpw5V@jxeF zux#`Qq)_yA%OxbEh;xOziL6tDM@*cpfnr@ z+4oP!vA}>?>3ngG=3YqTMH7=3a2ar{PvASCoQ@&)OHFmcWl!}leVBh zyF^=%G;9DUf=TjMdad$~-sPYx+8|E249A&=6m&&7(-jp=SGcwjS&>pnjWbDMmqmb5 zw~-Jel_g-J>#T6aG9o6PC>YQ&$hA%;^x0o>X|>K&oXa`Zz9G8tIrA_qDN?o*tK;Oe^9j0r4-={t$Ow#OnR4fVljC>{>P zOG{#bSVI|yItVvJLhvsmamzK`N_yA!RjSDV_5_6_aX~jiNSQ^$c+iyYK$QTeTd|;v zCKtgwd)TLk#R?wzEa1Wc;2S}xn1S5vgi05UoU}k`YY#>o5768~>)^V~8NY#%n@YD? zG?WufFcLJub0$sTx-1Jp1$Mj?dF*A=aEC_g>esp-X|JUk2F@CAo!%|{q@74iDsO37 zx292;?6lnvyn{wdrub>2g{FIg!-)+iF5I<+Fjs})LKG%ks5D&L z=|UBKg~0(s{G65$eGG0ybFU?1 z8X!Et)URPefa?B)FM##MumD*MjF-U8CfcEdV<`-?)BD7zfpByeHDmiMx}~(esc7Vq z2YNHV9BtXyXx2O!HK!u9$v|lIGd(VE>09h_c_2(L+KD5q!e};5x%az-(o(Bg=z!Az znJZI~p}RMB+VBNny-4^x^%q}y+Zfm4OH6F>G3$$Pz*CHFo;d~KjphfYZLME`2mE-z z&rG%-7ywQ&LwP17OREFV&5?Mn3=7bUKWEB6=cv#gJR8wRmU#DmAK~pdzLF(opNm(S zBK#gKxo64hVyR*QGf`QQNcB7|#sRyHrv-)nk^H;&`$`~^7kcZE z@^9}2>)$0gQ7g;8Terufv5-F&_j}`!P-)y3^~b`2Kn&Th>X8Jiv@8PDhWOwtf*^D3 z-tQ~nHle5<)O@#H{ykOBjU73W9JBX7mE)GTJ8{wF66(;jsUJ7l=>GZ0y-&bW?ZE)Q z1NR?#f26l}=!MCkI{Ye!XlGD6VK)GAC`<29?LU-rW6H+GDr(-s%nq{g-v3yjf_`0i zQrCfuSCbDnTnHQ+;{^ytvYy< z4A_ilEyx&pzfZ&#$rwL35c8nH1Sun)@E2 z$i88SKcdbN>~MAo2xI&KYvrBz3gK9eBY|TJ4v4Y#>I=nQ&3zY%BCbT^ojP1$9YqmN zdjpR-kZyOL-`)sO#N*3Y6cOFH&7|B^q6qv-Ly~t4SOmiD8!lJhw{R#OOHv6p*9J=z zVODZZo@AQ~J2!8tje5tgN{94<$h>s8FC^85wjpB}nrfRci=H)A6SW5ror=X3pxZ>~ z0OGarUzI8-rnF12ZHgEXe=1^dn1uhv@{wH zha$mvJQ#?SdK*BNKGjW@I&`K>j79a+U*Eb!R_`;b_iYaa>%(zSydZd^q5Ar8gEt!U zM@mXdgT4sjX;Jmh8;D!OZ_{b4MD+Hs?>`0MyC1P}2J(9vfOiEi{^LOk)-H2uO}-X8 zCCGvs6DYi!A2$!5ygi29E(7765X6)fSl@Wl2fjYXR9jg!elYIcxH<1 z=A;hSM&&BQ@U4tAlqz=urXZk_-Pq|!mfa9_l@3oN$aY&pZaRv@)frSN7JQR(9CFmW zrzc_@Bgp?WC*^2rV-%F**%({;rq|pJKtYw(*czQ*=X@mMrQ347&XI6}Ge^~!^~|Nfh#pGq7A4L~p`#7nhUcX8&TE-4wLrDnus*Venlg;NduBkQ*#y0z zOl*#E-%sPFU&i2%&ztY_l3X2zIeVYP?x3kJlpLYelr{b3iL+DsxC8UBR*4yP&HZPC zP%R4oXNZfq@E3!uad73YRwCuUp?`z;(mN%4p=>TOoOWoR=@!nz+g!>>7Y_{cr1ev@QgDV0S|<#1!@#Mv(WduFn)Yc zx)ooV$7gW@9zU*qnXd&E}8C{GZ76WtG$B+g&w^FBVqj0#tF@p%!SkH=ZO zPN&atx@rhc$%!UzPAQ@ytw`yS=y0tp-xHE1 zoN}$yZ(6s$bzNf%l1~uBK&O7pHT38606q`o^B_JC<})&B;m+guoRW^Zlei4mT4Em{ z=xrem0dn4EVh~8s+bkIohTG0=V}apnqB|BEu131!9K*GN zz84v;OXyBVZexL++wjCR&-vgsJWDmt*$Orzp~8F+6BkOp;H^HxJ66}NrwgD?XmyxR zgQuZ?v{Y`>JX0_Q@D~NQiG!Bdr8qiRyLy8mZo#-b(COgX?@%0o<4hcraX_B*Reh28 zs^*zT3=a4s%%1phlD|opOgq2>JmkRMTyuW=21uqqwNOf?o7S(-CYi?1wA$q@p6^0< z{V13mNTxl_htR-Wm!8a0sz3{tVA`yOrMnfFBjz@s8zr_=PM>ARl}=8WR@-ntf>MG$ zELTQTX|~dnx$a7^9qytAC`)aT`N!fhwul-?H8}7bc+NFnxu_Ts=H@zTISh!D4;M8w zsj6Z$+b2J3DAxB{^n-)Eu&80Ps+letW{Ndbrf*PDgBpzpuudcKtN@Qm`3yMZH+^H5 z6A%OFI}AT8z_0=kQhMHy+w0R~ z+SfyRaMuNLdu_;O$PnGIk)~B{uHLu8kl|_=F~1mb!k zyE6u)TnFW}z-Iu%ctSZ0-Ww;8)+uT5k#xeSvGXr(*Ef_qRVQP1$^nDIWJ9dx!W1NG z;6gD*!-c7q{ogc0yvSFk;|!eiJvx1rPN3=!BN{VKC4{GjX2(;6voxlKd-J&n2%!^* zio)uD!$e)KgC^>7Jw+IcBV$i@)-f);Mw1Iy#)o^S$k?WpOSox(H2;HH z#6rDRER<#uz>(;=NhhY`NT)Z7`EVdXKYM2TCBTtSoGfwVTFa3@DPdm=9>l_tgOQ%9 zmmjIFp2u;z3P)Bjj;xeU1g-~?I8xTK%t6Esh>&K3gz=BY6lD^sro+ID&LM9bW21=) zQ8s;$ZUW`P?j}GTmjr7b27d?iggA>4JQ1-jm}S-y5eoq9<@Y9E9(!_QaWhR?kw`an zaD866yCfc5V#`iwypTynUnEWxC$fm10`+~aTD9(=2-IM|)?3!OC{dBJ!4GwT{3WSi zac6vjF-iJmJ;`A{ z;5^J!pgEiep3Zo{V!Kw>P4p6MJ`OeU&)*%rycy!U#w{-Oub*( z`4mhomOy62U}S~O`B2gii-8LIQGL0(wJ&?OzK(iEr1ooH&VIF8{mS%_aP3ioHz2ZA zl!c8j8aTZ9TtKk4%eipAL5X(o(*2}&%P7}F%7KxH65a~(sT!LpPJ)0X8T$6bz;J6I z_!>0uuxwzyZT<7KsXHxiw+o0n4jv%8!3moCFzWASOw^NwC2LbOLwQ;4I6ZP^=i0VB`v$|Gd9|rDZqr3Q zFZw8gq~Yzs6tj$WkjDjMH(7z*b%%W2#S+-bn-x&jiejpChG;|M)5J+MhH0|Kvs>|HmCz3a#hXE&kG0f`7^;SuHLCwF$u zbDkWsgB(QjXbH^|MGx?wsL+yxm@I}c2!t!En4yc|c#$JCPj9>q5TKf;3H^moHTlsz z8^zOLwhqaL7No5%#AsT|>YL^4vW~^@0xH=qow_v7<&^hRM5#7I+?Z17RcMA;LeCDA z{Pgo=Ja{$Tau`N)IIW@+IE2GuC!L<8(_Wk?dJml;%*1&HpMTBg$N0R1&vmGh-0Cva zF~k;HqRdPdk*@S%cF{7^qAOX{F5uNLMMj6_xdeq;Ch%cd=6QID=BeiaABMJry5w2T z=L$%I#!{uHa5JO$JeqmaPRX3^v6$1(6W%MbPc!=&>#06q?7t2eywgjcmQEf|6c#!T|hQb3>SdPMeDy%?ZAN2xC zo*MA5>7NeW?fR6R1NOYEdA?_0D!!$8zR66fjrG;sdsTY@^I14`k4FBN_830&e8J2K zp8sz5^EP*coYXy@eaUJ z_p>Oi#c>>tD2@d<#^bmK$9*^e8dnj+uWiRJ;sh{qN!Cdi=L!;6)&f)s9kT2{f z`?W9Y;b_DkME!7Zv@GVF>L)2h4{JZfCUfIcOy-J{CUZ{B$ybxF&D`IS zB`vvHu5q@qD#&QAUs8Z^O%6+|p1oCs3NXZZ=1vl)Vx3>3T%}m&K9gH21$8wQL|piY z?Cpqz>7SggUCwflg1s5o(v2X(F6BtN2&zltt7B(zw-KXTkR07k=fwb%yH>i-5?DA{ zP{QP{h3=zq?aaCoC|&KhWYdW5K({NWfdM0>KOQ4(=hj-rTY1~gJ%lmtOpdYL`3?5O zc8ZLa_AnPbx`2psD zEDtpIixODag%KSGIc4)q>5)Ro3}J^B#N8!ikQR~#X{D%R8m_%AYp}EWENxJO{#+Jm zPEakwB+U)THG&86kHSsT`l9z6@i0CpU5qcy(_fg*DP$w$Cf-Q%3`FTcE>Y+wurs(e z7-wR1K%wKD;PX~K6K{l+i+rAhGdcMlCT*JOqXN6Eo&@M3-o(!QfamCxtjP{y6JYY; zx*qf+vnJOOQ^0z&>*Q_3n_Nq`k>>1Lx{Y`fxL3;nQv7Tvh8eH|rtsoGo7=I8X-n-JfxxnX_N7K&Tn)I583 z+J)^tufMd!8w{6~hC`*u0E{4y0V{_6To{y5c(@rjCQ)$pS!qwp6xO;<8D13i=o$B; zzjClzt;^+xu2QVQG2sx#lgem7T$370{b)69w{SzUu8jVT$E2Z;yjbLlu}t4`BsY;3 zZslSmD+RMvP5NV5wK$nyAKT1{S@#)WFN_(@n;I!Bs(fA6{8C{44J~WrEz^+*6YmqA z>FXNTSa-~<#-KLi2I>Z>QTN91e zZ7mDcg-T|uU)Q*4>x?yxo9aqu24{NfX3p&XzpgR5ep4)77o9fE{1p=v-x@{y*4aVt z?4Y6O%oKFCep_q2@rsm>Yhr9P3q*bGyPFk)dfnYdT7B2JoOUnGgl2A!7sHfdctpaiWectZVXJOuE znUgUKlQFAwR&pYs&Z`1_aTB!(Gf3na>5V@TlmSqjStJEhh&qwsk$<(z{klk8Not22 z>+Oq>{n9F8izKRTEL+G|8oYM*QeZEdm-2FBpIC`L;V*FtV&RBD7j=v*cSea26GsE_ z6H$od>N;5$I;4peoEwa)t(2X#%VWVuj<&X__@$l@ucMW%+;Y}jpP819G`ZqJUBEn^ zHUr60&Y^D@$FHF8zv84L0{Rldh}kV0kvA`gjkeqMVs(yJ3B1`)N(+GrCBB3os>GL8 zh)Wk2$jpR(s!*FqF0(LQCDtN9|40%78RBp7L^TKk5ZJdqqBvXlbH+FZ?$z955D640 z2l0Mu4YElK>Q%5{YEMA&$hOEP9-$n^y>W1A%FaAiFg=g8sKO}MAJ@LN&ziO=H=ocp zh7n5ZwvBNL9@{i~cCxq~W^>p^LAZpK_`@Lt1rA#%WH$OiC?uICvpD&b1-kA__%ol^ zQ|`mq<;Z$^Af&WsN=Y+Lq!IXCO1;jlG7vH~{6Y(U60pE?g%<0`$!TcEl64OE0=Nw`nfU$yY@-0!5QKOj z0NY>yHpj;tK;1~|Wxz-ob|3(CH(8)=2wLhRh60RoN z9{A~ZugwHXO&jCQk=CZ>GtQXe^9BQD$j=l&q0A3sB4036Y{JOX(YghfCaQq|WjIpQ zFtxh{BRQ&~lR?fthk>sG?koXxp`rb={yI>lwYT^!Y0N%44bH5`9VxEjld<0 zHi}VoFYG7+AH7=#_oeLYk>)j&ogH5c+x(QlO9D1A)gpDrXTmfrkSX2y;IqRtQgB-^ zElw~Ex^D#B#ZVZWoda<`rAHPOl&2+m`CJv0ThC#(%JqXfjiX*e$~padH7-hl+j_7BjP92u>cF2JHqr95+k37 zsW^|~muT$wHw)im(6#$u9S>kwf&Me$1hp(b2MmTJ(I%K7M_bK3gla8K0U4#1oB}8&t+*Lq z8XK!q#F%k7g4lZcJn?x*ffMM2iG9;(0Ow_oH;iSgyJ!Hm&!XK!+8g>@(l+(81Dt7q zv1d#v^TVRq8w`bzrZHFoTV7wlA^}b_NdN@&b2*X#0YwE#3SjIR20A6jRP-n)fH#2s ze~#m`htTVfF9krfz-mVVC66hq64SF$5W^4|12db2-NBBuD2v&dlm*;R&g@Pkl%295 zaf7+(#pOgofV*x9pZet49nFkx-Y|82na4s61B2BfahwYCALu(5clKbKv~o| zfqe@#5osiJ&27Ht3|izSP$Sog zFUz?2phXZ)Y#44IDkEh8bs}~H{yss{CWsE3q(y*xh+Brglp(&v1;WI@xL=^t19W0q z1R})46r~@GOiyW%3neX5CutG5!Z9tfTGAr?Rcr9qJbc+{k*k=d02l$O0a|1;`nwrk zUIrPzQ`$$(JrP~Yq(ye~b2r;*k?pvB7||l|340l|$ZGr@nalC+Qi&0=_{NwKN%*k% z6P@0o(<^j(j^<%Y!PH2W38;}HpPM!TN@~QF3}9!9NaI9bVGvi*%oqgWQ=b!eIBdKW zas+YbLXbYlu=ubfAabOiA&@K==6g(|%qH#IJZRtCr-2;l)WwTQtGhIs#ChR6(9SBRlw^ejVejGoO!-VKpIwJZK)o{$tR3c_3@HezNnQ)K+H(r}m=h)<& zqu@_xWX1fntqI5i@SMnBQqWmRI2wYd+1)sLrV2-6#n)i7tV~AkPvJ08Wr(YEK+`J= zk$0*R^<5}Nh!KPo%R5%Caahg_#0evUA9GC7$DY#NEcPlrAzC4qTxZH9J61M2)ZQgV zfy*5vZlKT+WhPE@yc=lccvFr_$|3j=_lM|Wx`g)`63&&*sA7-w|3PFGfqktLlL@J& zPPX6#hyVZ%!;l^CCcn59DQxA;e=&fF15e{T8_w|KmdWk0K3m$#_V+PU(YI`CX^n5NRQIWWZTAIX zzUV9Sl|W_hEAx86+a&e&6#xMw+)V22r>8#Jt#?7n`pimn`_0J#_IU&VWg3E>@5bR( z0Tz4Cl2rkhjR_hS$ovc+TX+iSxJ% zIdt2QHATb-;{HUL#pOYzkB@})UyzF^Oj5Ud?ORm00c z!SwEBYPL32X$a!-=$T)*m(RKVsILSZ++zk(yvUYl!`{tjPp} zYfCf1pv{#Ek<0~}C-5?iuQH_oq8=VnV0b}FDQe?=gU1^N4!Y0 zYYVz)F39R5Y$Ehiz$2F92m-N#SQ`v-<2bVV;E~ix6rW-BF~fo%6qo`NKAhs6)|pfX z>L6|Cah5i87_^~Dr9)*(9D^r=shqnz<17XT>6fxEXwxfze3%iVAcI?rZWAY+mRRhgOjV7>M#u z6!?mf3=Jvy>Cji(C@;-@i{{=zJYI|DzC^*}1@kn7xdS40P-C#ST!2(E#OR4%k?&)T zs1(0WfU)b;k%_LHqRCg7B4?tBNbPJH#pDB5h(mM`KZCn+^%EmqO|`457JTaTPldMn zOJ+QJYSZBF;^HTtPiEkg8Tfadf!k-cUycx-kG8V&Wn*`Wg29*(frDTNWlN;2Q1mmw zO9`d=j{%Q$Bit_`1nTqDA(ay80B|0Ft)%|nA@|GFYVuAl<%0Bf_A`qgot%ejfAV^Nf)!2TFeMpR|#(uF^=!I zCp5s5rhldIisfnEm6Gs}9)N`g5u?OMh$RO|bxMELsR&b;Ahkf!<95N>V?z~`^0Im{ zPAnFiP1}gEXw*U2<97X1=`bTn0K3tyO4f6YA(lweg@_cgBUUFM%1hqk24l@vRHi}5|1HILbRdGAE}4WLw!RuS|9WJ>*FCx;PqyzCQ~_GB+ZpygO_jB>!poNFuCIp<(;`qxaBx(g&qg_<}!V(npf~Aur==gHd8@ zGI+yj?z{QgaX6DNXslhzOhzA6&+jA0}4(a<$pal&sJj35Lpdq--*i*#vYI6zg}(&Q$kG!zYu)MvCiZ1+bhqnwpx753 zb&8$ZmCa_S*vWpvqR)%P!c_X4FN^*nAUN(9c!hrS=HY7FA)*Ho7R`P>{#=SbVd+Rj zdqhRFuV>byhUxa-8{$%1q5x#5kWKj$;=F{|VG{8HdGWLa0>+CL^Wy0;EII5w05R}Z zrn@Q<8R1y}pal04^ya4U??q;&X%=z+dnHCHgt$NLk+R0rn8Ee&vOuIh5Rb;ZvHDWP zC#m>Wz2snn5nQs_u@(p9aH$W(j zB5g5aqMkJDpMZ%c1`qGj>eJI#a67@!-F@HE1jh2*^#Dk?YjS%JjBu66@ z7w1TtI4^ZsBcQY6(vuT!k0aXEh2^SFs&*+}1m{2FCGgfoDn!bf3u0rI(I9iPG0?1B znPk@9%9?o?nv^40zDRfD9wR3nHtd*^x0HJtOW14bj>yKa7z?Qm@;l{7y69KQ*^uA!h(dDFEw%+#;U%HYxb`|`wIeyY z-#Raeg}Cu)x-s{X=njqZ+pOyWo`eWTA{&>naek|u2)xo_^ObV2XS`A$zf!T@@=jl3 zOL4|;^Bh2kbTOdjITcO*HaXtkIKRzBAa<-95 zu^lw}Un*%8P}ML-D#i?G9tb?)CxZgg1(0Et<^gH_EiP<8Ux+5tJdG$p6pB)lY|750 zb|R3^GRPY!Zm{@`=3YqMqxj7@Eywcse>&8n#ILTB{OY-=?i^IsE-O<+5LRO(d3$;U zVa@$D&5ep>qu-!LzlsLGLJfXRHb@bxA47w8!TOIJig>!xBbpKo$RbyD<94QZGHQe8 zE%`2Ko=1~RZ)Qweal9^uaNydZ9Juy)134@-&sWi--{WC?P-2;YhkE%uE@&R`G(Po}_4}zo7y}JAIR@ zsB*}XeMuTCd`R>B$iPHX$XBK|=#Rf?p0|ik1uv9pb6hPRQz3HjH7Th*a+2w&|6u|H z_~6N&keI09@r)V@qOMTG*UTDHIr3h9&GRHCR{TFKQ4&3o4LKQ2L%4MV+f5_XDZ!P; z@dd!>8IM$z_@az>TW~yv17OYrKIBz>sdyEeApzF>za@wMcV`aW0hr;HVn6FHo~+c< zqPxTGmw`k7N-rd!VsIQL>1OK#YqKkoXVw7mlsQHTzU{gbL7qsDKVae__?|ByOJ5eEf)P3 z&iFT%y>&;II8H(Jh%XtUjb06t{l9Qv!0qARvjtB5xw40H#MzkX$EXiUW?EfK8V{JR zf6IrN{sW8+lcQC)BAMwi-|qDp6{HIVV$srg%;)uaV}WR(zRVvAH$)n|^^sBpO^tz> z7XL`q!KvE-Ws+S7r+!RMV-{Xoykkuxv(oBX(x$OsRvHoO-6!OnM2fB?-mMyFO=2pr zF9|l(M?)IkOZ@S&27kcsN4h%AT?7029F1TW?P&=hN^-l@gO*d5 zH#Z!^7)K|Y|CuxEL)>sJ-DuI;&QU?Z4PPpuAbR<;tlUqBr|0XBLUxPmW#1(;{4?dA z#OxhiX80jYMIC410Qk2_6I<62y`U~O{5jBKL zbQft~e@=Ii_Vwp<7cr!C#biiv4HtX+{R3Ls7Jb4z4Y$S~h z{SVFa0CAr8Xr8_F{oi1n6#VA{4*aKri_A$|;jO+&00y6KKC~dh0yX^6tRa<)^!yn) zY>10|8#heHaUqWTD9(wv5qlh?3m9-DLHZh8|E(b)`{0PUSdyL=9OvV>+z?&*649l3 zu1J7`JOB>T@~g{G?>fL3ya)&8@p{p|t*H9So6lnAas8I&?Qp&gm3jjup%B7@A#fp5 z0VE?9PJ|k{2**h{hQYjY609`wj7~8_GoLaros!S&^&B2}4ZP-j95W6n_)L4A=Pu$i zb5~B@Xe#|MC`5ZUB+C9X7TsYs&~A!JKoxJD6|%Fy&CQV9+yoUj=QqS@%*`PPc(95C z(_zzMG)fKX_m%Ko0^Hm@S}i1a66aYw+6zh~#ppFp9xZKB;C@jfn*a)Y;Yc_%mVHwq zsk9cbbT3M_(B+J{D+-i*?-SSPVkcqlF6E?j@k`~YDOih9ZcEt3nEQFtcyq3NRl>n#{s29uWbOu(M7?clqXZT8~d?6~8!20_HO$k`PKm~%; zTp&=5;Szi$z>xOo&{x=?tN0>94&m;UTdRe00(y+$Im|QQ*M$Z`ACglE;!gPVYQ*-s zD}jpS_I72!A%_`rhC|os?OTzR=jKx^IAqqW%F06!C)swdF9Nh20$9;;WCY755mpw^ zf?D#2A&9&)+QqMa!MEIkA^u|wL#mEF45>TjFa)Ub;|xRKkjOA(zX?O` zH(>~13&RlD^8L%hkY_#^7;@v__AP)Rx6PI?B;J?}hQu3bV&xrLyUXRScDclZIGS>k zC(k6w6In}5-gHPB3?YC`_z`e6l@7@bLk=VoRS8i>;%V3WI>VD^4H0IOFqUqi#sF9B zNS-{WL~8kxCyNk8co^{BaO(bn-C{gbDM{txvr4qg2)Tcb_#KcZp8!fCG~>q8?TM(% zN@C%7yrd*v5-g3y;tiz@{%A>qKNyRaHAKonls@XxR0-*`4irrf>%J=0J|=?fM@;wG zQ+%<_gMtp)1B#y}ie=&7&PE4`I=U~ngl8Wtta;^t2Ku&gpk4g>k=8nB2-E%s_8fG( z`rYhD%nps;kQas@;~_Ngt4vtzF;bcEtIQ<)o;R)7c)-s%54fs8!cUwbeoSQFGs-c@ zA@dk|Ah4-UH!Jv-a)%)BzLeJp$iG_YrM@F=3dFlIz7_@ldV;RQTA4uiSLk#noi3x( z9HIe-+DHFh;VkLx}v`16$|UajaCKkg5Yjj8;qUM5M;axBgWQ$c1XF;5sYKI=_o3 zEh|kU=>EU_=Di4J(;Q7q!f88M#7;2840PDyfm3kLXl8Z?{$bdcjq$OT*2E;7I9zq9 zAts9B`3X2AVz3srk`9a`SB!C+Fq)+<>>-KNc0_cGNq8*jAc-eg$GICxf5n+nt16KN z|3cQ#Ye6_SNWwWEYiNLaG*d&UPe3IPT=Xw&&4AtE)-VYNs0qEV3EB!bqGVrKsoQ z3bg1=PKdfSX(TXqPUMg=h3)JK9`~JU6}Q*>OJYG^s2-N$5&SFjmWCU=4S}FP6fG-_ zN@H=DCw)6dGa2(P7C26ToW~V5V^=107hntP>96UYSfB8Q3lEm~%4 zHX@tFcb&=R#f6g1mZDpHS2-3rb&PWgmY1%w+2gXJdkMyuNq}gckr>~fsmn z?!9RdeNDGT^f@UV+d=d2-%4Udw_8MCh<>w0^ryM79&!7*u)&~^xcI42ZvDl!txx$( zM^K-YHpL_dnp;>3r>vC`oI6*yeg7eCUr@Z@$z8v$uvN!=TV}&!05xG19ySZM*&x$p64r4Jx|x@KIrG=ebCQ~=jlG^ z=TV^ApqHmhxV8c%*e8@5D^d6^-L(n@mMENy!qarSlRGtKx3&3G_ZqJC8U%%QuW4GZ zarE6+^SrOn-v3&K!R^-LIoTMz{96fR;)5r9MlPX_yUjY7pEsDN*Lp=YPba1XegimG z;vgsN?~sYNc-0U<)En2Du5HNed+(T$!Zkla)Hi-tRDM)ZJJd5B0(>ui|OmG2B zeZhi@${q?XdhW(ef{RN(;)08NKU#u|Zyqzj#j_uG!3D(A|1N@yX-6iwDEmZk5lQuqT>LmWzj+HTehKa^ zU2ySh%&HVzypbxn_)Su9LCm5QTtLQQ3NGG4NeV6?k|43eCxQ!O9)t~_2rdw0iL~!I z^*mTWO2NhIkBQ*os`l1C)os0>3Yn6NNb7cFED!m@0b~gCg-XMrGM_hTxj}hKGc7mZ zqn-#To+2TSfo*3BI?4+(-S|bf=|-*w@)v}@yRRH{QH3d`+^;cUC{ zhO?3;Puqc0orUg)V;85H`Kq%A?9zpp{}J++l|6U znr6G9?nd6W8|ue1YzU<7hWchXaSGdw*Rw380&F+b)f_9^4RveMcEeSB&C6krE^Q_?wzMM4ucrB~xhoBG=Nf8K)oyBX)<%Ol2m$7q? zZ8u(Zwrwcbc7u(#NvZ#;ax9V+|A1{be&Ia6f^9c8n6?}07&PYaK1|zb@7Zt#6% zyYV{RN46WUb8Te1flIhXwi~ZeZDhOgD&0l48wlc{8)UojQ?Aw_{@<~*-N?ztKzxzQ zb|WXbF&bAvZskR$gl2rg{48|r3`TyU}Hmj^F>hxc)=xU2E)i#K05=sG&0k zpEh7_-=)1*_F9cwdj8q9Y3D!$d%9t0+tAiEkqsLnrejM+z&QD9w`|1Ighp>cE^!2{ z^Nc@~=GOwx)p7NQdmCf7CMIm97#I|YvbzfDB4V&J%I_*rshT+A$Rzh3JO%=zTOa{s$k8g%YYMo=sBkVP44Tr@0lK*h3Fl#Hbh$2&WuVh zoZDOh5k-rsXToEKm~dZzzP%>aMC3A1NWeK|sOd7mO1fZOoz1&7*0ia9eVm8hfuYsg z+mL#jLw5}Vx zg~jD!9vT$O41u7|7{ye*3Yx~%3HbNvB9wIOnuR6U8^@^*;wSVm;_J;CU`_~@(wSTR(_OG?pJ{M^1(@!6nwVyE+S=RogJNwbv zA0*d)g9-JOYri1{>~ApFe%`bWuYIn;w)Um{O(CQX1p8;H#;8dH3h_5>%Amj36Ayr5kmMY3R&(~Y_+eTo-g++jtWha z9l~ExI8k%Ov0v|3SnK@?YrS)U);s<5ky-BGW8%a)DJ>l#}v zC_ltp^d!L?h($le`n`MQ_qhy#>i>!yJV?OP`?*7DvP+2j>=A)oJIGbdR?h;5Xu=Qy zjsDBJm@&37F`<#e1rOuRQf08LGa1PDcouP{rFofbAmiTK~sI1GN3S63ylNGu)u?5BsnR7WnW$=0jz6h`JNe40J|l+HqxBG1om<C?17- z*j^+lqM>u>_4c#U8;A2q4=UZ4YIqS5#S)m=gWpqFKiAdiqm_5gwI$W*peU>y(6>Ap z&^PnREdF3MiPT{2W-Q+x4D0(yX_K6*jINs&Rhd1LW163+Ns(yFc#t)Q_!L!Wd9~OC z=Gg1Js4-1#^U~f+7yp82{VS1TM|O$hK)Tw}CzO}ZNl2oQNK7hkX<4_X(Te-KAW@sr zp+j8=AY6+zWZ$fsdypYsPY!y=>a>nJ-ilgW7R+T3yzlIz0V` zf9Ds*M2cdItZE!t#k0>^2(I4+S8HR5>r#>x|OQzmGK-r>3|eT!o( z^9?Z{Z$oo0FvLbKEJWT@E}SFlNspT#3~`r?z9{zT;$DOZHYoI>xX(aBKg#*W8W4K` zYKPq-hRK`l+V<}Fmzj&vt|f;Rf_sx0LBhQ`8R5Wg+vptn(tWidUg4z(CCf`Z=ABmj z2scDJ|KLm47@8YOEHrg3N~5@R9nNHee*IU~U<7fE5+YnpcTqxwtLZLE zW5|X1D6m9)0SY^qmT)kWztW}*(%g4wZe&Q;+>cTsKYZVyxp(LWRDekZ5wKXb*qpW( zpd2i8{iE^?wD|F{M@Gzv1@Po1^GV3;l9gJjD9BTVEg$&2&qmQ%BCVa?BypT9lh)dYT$bv72x|*1qoIL8P7*UGLth z6;)n-^IZ1t-?R~l2LmN#q0(Sk0J#UlWnubQi5VtB1Jjc>jWZOy2I_O^Q?5S8`FtN!Rv6OCV)cv=R?Xm=rm)_K!2O7pqBh$2*S)B z#jJw_Lvm&vJVF>!b?jjXMo~lfjd+}614B}?4t@+_2x1i<>#TzxIt+P6^dNI-;V`6Q z+Rk2Z)BAZN6Edw$n=HeG!5}^a4$CBGGJpvEOwdw7krVH6xipATA~p#ma`I3v_dEF3Xh%4?2KmDfz;Cj#@&8)8h1H#avn5#cvRV62QESVB|r zRD!JFz~WXC08CgSnlt#>(q}jP-k5*@gNQv!XBH7H<_F8gY2rAVH(+AQ6%~O%s7?xm z&Q%G7V*FIiL27Lk5~|zsB1Ta`8Q)NS(CW|TYD$-wDktinDkmBZgFOK*kC+~3gS~T= z2s>ZW>kctP%y`fcGwBsrmV2v|ghnCM*R`w7$NfBpQu}{0*fcf5ab& zM3Ct_77T{!V~`+yF(rDgdzAx)*5T77)?AK^0@7mMbTUrC4BQ zIRBI-#c~kFxtA|hEsieKPw9k2JtR!XAV*6?-577j|Iglc0LD>WYwxV?*rvH*uxaj= zyRDU0%@8wcmL>OYOp#Zsm2I#jBgrKQj2%P?2E3-10E20Hp$QWLfdInEBP0YOdIBkS zdU+4>(vz2j|2yZ->`u8Otz?_Wdq1-0?v&fhIp>~p?m5GWBezJLCab*A#c7hf!MWH` z529N4RG;PD+8YrMBA?S_w=#=RTdwQ^u9f5yic4)*F^gO-P8BSmN^A!W_ja ztjr+X0`sD%+d5e{bl1{KRmXz)i{7NMQ-8-Sy;mGhOudfq_|n0pW_DA3eMp^Ul$AOYK0bShphJP1B zaCK@3)HRX^K2I*ZVY1uBF1!Wi!M85BD#fuF-0j9<`T4a)br3EPvo;FrbMP~R{BP+Y zf5i#gioouXW3kfZU5Pl9QbMpO4b;?aaR4VgBmlIbhtjLzL1^{2duTOS z&428nmFFfGJ2=o1F04e>KcK98f(wi1tCmw2fhmGhftKb-58PTibcWvmDQ-wFPshQPK*#`k?d}^0JS3g!|wCd6}bm5RPbCwUVI4IlRZD2V_0mVT#R|eR}wDQ{2io z`%Gf=O70aa#fx0gZvi-;0~a^|i{E0Y2^^X4NBV!4>DRcR zV~;R;wW~Pt#WhCPPPJWQjU!)N;|yIJOa8IOOaE9CFilTFfjX-_75U4{&05>e)O!{xVzwGFza@_dyC)QfxAEQ z-4{$fYY^W7FJ?h1iFkJ*gp4u^tOQtG|0{>@ariig4{>-Chub-Xn>oaUE(*e24s{B( zk2w4lhtG5PB@S=ou!X|{9@+tiBI_jS=g}u6m2=*AR5e-@tabzSB5*v40g(7taEX*m@+#LH;d?| z1~&`2^zw>1W`|h<-Ve`(totM<37*x&u}g376t81=MHZe$AO_uJ-J@syP0#u(?qF*_ z>xa0$V;JT=Al1t%5Cao|SxI`i`(gUBd!+0JcfxYrAmPN3OzhXg@4R0Olv(0qwLWR z=#j&RqIPgmoU-@3Yoxy_oqjxN^(2qVrk}PRH;_o1w9=xb@*l0;_jTynz~5q+5FQ+r zguj8=`5}J8xM&>~;uoe|vc}-|FSv4X{S43Lh=(m{Rx6=V{9b|!9h&t`JR>hC!|2*} zJQGcI9e#g~8VFo7ac#i07*{j$T4K~7z#x!AMo|6m$QUj(N)0@Ozn{{0z&WZA9o&U| zz0ictU=kV0Fxo~4gX8{NeC?3-Fhq{G&bGt_wzNPca%^pK2n+h@(EWTU6w?14*L??& z{alYf#=|cxu+$-}dYBmq4n_tE4o-twqEc`$vsZ$HN|)fEBv^0&=>R~sS8$Mk;2Q4l0!UEJ>*Ktg~??2@cTMk}}N4a^=2| zDbt<~{9{IqW`f^PlIo<*wv&2-8S3S$RWPXwwIJ4g&~`y!<9J^>4<#8+d6Xg#r8ww0 zhxr=y5);iS#|N+1#usR-|%}y zxfpRlS8L4c~GVtX+!+Q6m`_Ke}z64{X#pd zoqqpLH8?1?Qvgh!x#5E{LT#kLQ2|iI3LNEhLkb+_Oi@|n6bXA?Oc7JsbP!XfTOtTx zI0dltOprUc5#PXenmGIL0FEnUiVsmOi>%VJQClXfM3;i9B2c|>DY&uX4_HYbIA|*R zQc^B{O=X+pw#q-&v-3nx>&2rHgjebaNs^ZM&|GCxoblO+mh~ zk1@p_qg?FKwPTa0xFMbiMoIy*45oB9{%M*&d`s-D53-vw&|_0ZNn@Vu=dhRPto! zlM7g3Vm=9~ZM!n!Y^;)L9HCrpFc71$LQJI0(+3**AgDH!P$*M;(`Mrvl2e}9cYMR* zqySulLkz6I%DCptHLBIpBd&qlo?B`8$vkRQc>q_;=nhv*2CxE%A1O{W?RjP?El|^! zsejwP@mlvsiw3S)^g>4vbxnJz4GpD7+sV~HV3EHMyJY8*ju95DDYP=ol$ z6o15715}9dLpfY?pq>&xykOynQV=fKSOcV?NMsOMDn^rw^$s+SK2`3wzl<*z-^1&V z`1PE0ijoS#lCBjY-n6ho4zL5pn6}&EofLL>gZc^FfP>;INGQ%HlyDxS2*wL*EgX@; z4n6jg5<4_`u)`Vf>`qwWY+akDzzCPBCXFn7KCwX3|mi|NbkJ_m}l3?f%ioXGhHb{SJP5oH! zVT(wlwzw#oo5+df7DnppbMtfKk>Z@ZL}4T^H(pmzgv#F`j;GYKc0KhazsfT0E3WNHY0P&~dIuX}koPlJaR<`W$WiBgd zon6@LkYK|%CBK$B1%|#VQ0|jh#bp7O3#Kh^bTU(6|CU@?l&unVckwE~K4&cO7h$eR zxK2S+rWnwI*)zMQesg0@pt8KMJk~CEo%iE*E>x}6|1!mE)BwiO`RA!%Ah&ao6HDjT z)C5VAPlaHTmm1oauhjXH?Sr^{n<=i9MZ-oPMOStQcL8VwF^0v#w&Ip0FT>cp&qmJBw`h<*ww zP3hVQXogX*fsR75Fg}bWofx9aaC8r6)+7}2yW!Icl}&|ZWTg7COf|>V^GSkT#HZ;i zywtV*s3RK`f}_t^{?u zR&0R3lN84?)IJWUB~ZXGWdUw!CCg0JxytBn5o^bOsVqifrjqjRDnvDL>59=&QVZa? zRX;nsSXZpiBM=^n5x8E?_`n)TU9rC5R6RTjCEVRZ2{Z(IcnF}GV2A-2^GZ?|>#lSC zE;vOk?1oy(U^@&EV`VTLHoFoG{4?Zn2R-~5Q&?ws-6vv6iB>EzK%bTIOaLEPEHlJX z%!K8f(FzlmJ@v4a*njXnsIm}9GO_1(F-|iRlx|={r6$I0-=|VLN@2|(Ud*#rs!9P>aSEwS z=-Ti2v^HsGLPg9F$0lRwhgnJp0QL$ReT!^#05@C@7emtlHCTxMM2bhDza<9qP{PQB zm~My@(VHXm@GK07C_{!1BQ~j1*nfKX5%CgsgFlu9EpQ<}b3fFTma$61ipNVT=7^Q1 z=t3q>n>mX=DaI0%4b2yd4u)O~Tzj>6y9URsmV_ln#O)Qzr!Qby*pbahbNf2gn2o?nH zgU?md*9>(Hutky`_#n3X;k|g+&fD}N-2Hl~9=?rQN7cQaL-YskKMN{vJQXsMD>911 z(Zqx8?37$saE~Q7;&g0InHw>Sm=Mg4n8mwsI(Ar0v2dUpH;9D;-TbChDk$I`zo9L8}Ab4cAq_m;OqIb)8wL4Xd1)b~@&GxtpL0OXJY#5Zj*IPKG z?<7!xKcwda>$#S}2JDr4+Cw4r%bwI}a}SxM?y^#+`5sv-^sFq5hpzn!xgUe;bX*YX zh9AO3N^vjX7lL2yaa{eurozu>agD=8GGS7)%Etu_B4|5+M8cBAkA@LB9=|^@Rw2-{ zh9x@2PAv@n_*DFpN37ANOr ztWtrRm>Ye_`F{7Attql^6co@HWxHi`Kee@QF7+3&e@n`!*VL&ka?C{zV?)y|IoyXf zzGI3rX$YBiQP)J0!DlvCO)}YjO$|7XM@=TB7u>bw)JKcsMaA&zU6@;3R9jnIoR?Er zgjb2W{9+tc!wCHpo4p>&0DW{E)4_Y7%SYPh>`^_SYh=gz>0qy6rGVsC&mMzgOU`2x z-c24Ko9KOy>e`8>xU`4n+Iu^7hs*Z4x2nuYnhQGB%P=ELL6D553LG8GVX5jRhh?v> zosr_1jaJU_E&?&eq4LZYySDdC(39%5kD%A;(A1JtQ%9{;Q4h>Dn}>*}Qbe0w6T~)y zN^(BMqlGwXfhs@QL}EJkeF^B=<)-*RRy-+S&Pf}k>`rv#OlwD;58{0in2*q)J}zzV zYOtIe?$c?^eIsV7zr!9tKU^luMWG{u=SFYYsbZ_Hbx@~`R5nC*8bkhGbKjP__4s)_ z7or_S)DC+*gHAM_*6j&G+9>GS9D5*$0e70R{#^|EnDlK6Mx(}?ZjA5jVy1iNk=gB@JQ#W5$~>1?(xw> z>cZVR^0Y6UX`dR&N$JS@IS1l+1A+x&4-94Y!11PtBJCNd5jI@(hr25L=wTY@&3p&l z0pbbn=7$p62OH>ABBd{%{jb5kRH)2yP_l@IdpGL-N#?n5G_l;wDTSxoGF%*mT zjbkVl?HlQhwQs~byrgX-N26`yXo^PL#!+-bYV9NGhBl4Rpyq9$au*nCaBl*`7ZS_H z)Wd6WollESwFwmWsh}?QVB?w-Ey<%MAZ+WA3`7B8E&xSz^@&VD4o6!#r1xOq2XLAV zod@0sPB7zIit8#RGo_TeSS6*N$x`Ztw6`iJ zeoYA4m<5)UI)_JH4m}ud^cS>e3O#nQa;~D=riB6+bdEjKB9c-w?GJm7kF8T>mC;`5 zKo{+|d|eEsZV{t)5G@~iY_lqVN=e*KPX})`#o6hU+f*r`Oacoij5-+ylU)>R5|~7) zh|%13cRZ^}*d3xiK3@LcbLo#I{bZ4;+K1&))TP#4!sI_VlRQLn@uPsh`Zs(4C*qog_#7y5q`x2;Z9K32E(1b124M-aA$v%;m)So<_jza zj|%S4XX-vnVP*&5O&gSDUc)t01$W#EGlK~35CE~W$y{S*$R}N626oQ+qA_!#awW)x z(_4+1ZiDNLhVrG)V~G>plCS zXv_@kUN_|}kH*YEW#yF{_CwK_Ij;L!5y9`$m^rS;YIUbEqbY&8aU?ZnraClcaJC|X z!p2FJnenFh7oHxGxWvteWZjRU%C?fWv93KSQ+c_m#PJ5**;jC_YhO2Yt*iqC1aqo~ zDQjS}Rn=cjR+;&(te=Z%9=Sk46b*4<%sZ;FT1R#*DgyWZ(KF1<+RjB`g(Q zb{e9VJqfWS9eEHm)SaKutWEU+?I4uHAb5X-=oTEQ8ugq?S!Um_DL zoY1YtOy6hH6)2@&x|9Ho89f{# zl^N_Q$-e=eao!`w+8Q$_C;@=fn7K_hI$%Q%IXX0E_Uhrq_}{I@%o(=E%%i9;tV5*! zU~NEr6MM-6vLG+-)2}h}I!5Ffi|reJHb`UUc@(o2g+NILcYNq^A|76(a@86$P^Pgp zW`^RHv>_>+PGR^|zW)`6=xn_I9EUM%gLTd5VIO>0HD;&-|BW2qJ*R|Gmvgp;pR9l zDRYgPp-_|oD=~}oGmfFfK|6YI#$0=Us1&L;|6p45eh-8Jc!tYCNeYdb9=C8vzdxPc z>4-!GYT$O^nx z4JHiuP_FH|VLG0ZxS%D2gSz5dXr$PFb#E6BYCXged1yE&3 z7Ql%mgU7?Oz8|_ozbLEu_zR-zFI@4bWf#o*#~Jq(Us*6AZ@|niO}lpT%n2Wk{oSbl zI`zL#&KfTIM-ctfzfXJM(;oOF_rMj)+sA{|xvP5Tu+5FoCDP*OH%5nZZkz_eSaSChZV0x2bpln>@J87tVof3>N?_ShC z4l1J0&DuGVC%wI_d^UmPS8AtRRfEbPK=>V83~Yh`;fLN;g;`Tp0v}bTd+N`mWdI** z7i`{ypO%DNTrZ+UTIf&aja}~8$z)zpZgDg>r=T!5nj6iD6z1mT7ff#2lxU8%HZ_07 zL}ga_%9zGwY_3liP-Yh(hOhBOpK3>kp8~EG8KK^T3>XoO-pP`B3+xgsrai``{HwLIKEw*s#NsEN?-ID z)Yz@f8(JOtSEmv*pX*D&^^pne0_LUSUwU?T@$L4`PsP9H9AEtGnwm|qI+(b`>{^hD zc-y>yh`AhbVJhMS)d3OnIO3vI#3!l(B1Spl;#9=Wxd9QOJcc?hNkx3MQV|iJJvTIR z#HFc-?=AO5oLUp#+*}iH+PJwv#$J|+{maF^*b{5&H*8EaHgUeoQ!)Rz%oj7erha2= zT?Dn#ddwFSc~VT-pDXP=VHIGhFY1JvjZN_jIL}q-h^H*@MVwUA5Np05 z(JaefosK(cg)i=enuex22`tV^N6eq&i#V}HnrY|q*QBGC&i6%~TGO<#&Kdpebo50_ ze9>prY-x?vZcI2+oRdy*&LZ%$fb3PM9%>O}N3{s26P5a7l6({jd%Xwe~{|9@f|otMIVYeprNuYWtxQ52g0QnRu9GKNR8t(@T~!6Ax4DhlzL? zYd?&_!^!r;a6AmP9|qy!X#1f*9>Vg0HmQFnBRIgme=)`Ht+yYV;y2dqFUjTymkcE% z@t$@2E|^8u?RQP60>}v8ghl|}Vn|C2@uEu8B3KL9o`B<8oQcIFj{DgpfP8#Y1D3SnEUFfXq@R$QB#53eExMes@*tE+`#cci$uJ_k-yAo=|F4lTS@DXl1h z^--qts(Q570J7{`9cYILKW<1(!6c5A(HrExB?Dpf9M=&*R*oixn8NI@?;=OeM~!Q2 z%PT63)Yd_e3sErSxb?O9dG&SmIni3Yi4^D6qb1>jF#54~ zKcI~84H)A1#;rG25tOcS-~{j4TW zwN(5jD!Bwcpup0Pz)-EWwFIYVFgZ3U`>Bij6)fsP%VGqXz|H}i`bk_^p@Wlqilo&D zYx^~8R*HHQmS~sfM#zbV!61|v28}x8^IOy{4^_h-?vBQfuKg$OCh*+{ zxGTUH=$a|^(8(K;r&UR#?qt7_adQ$ol9!kg#@&XL1Slmm{sD)-eP9DsG2GY-!q^>ehLKo8GA_qn+BVy|jp z!F;iHjra~CqfatLRw%(T#)@S8kH!xCZ1(i`BlInFjWr^7t~bR_la-R&OtB9R&1lSc zC3YI~MJJYGQg$G0Hp0{|RJu#W4~#O4pXD|48??01S(sZ!2(57cExx?1eJr;0SC8B| z6z+r@mD|(LH$(9bqnBcjo>t;Gz+yGOmSK{bXPOsZ)rD#s;{3GpV`tJpV<&=T|XnP zTAC?H;7|b0!=Vrfg)Fv~c0v6Im?|>-)4W*GyCf|HpKw(@rQZ8XRW)44Ceiw zBR}u=*zbJRevbvnp1{+d2FC*W zy`J^y99)y0Hx0d-^t*dA>33h`o=1J3^t;!%bL!iq&-YAvH?-d!bC;39tlxd)XZ>z_ z*6+4wJ>Sr*r%#`lS?}wLZf1R3`>6h>Ex-CiK>Mbxn>Rr=U`_nN*2E{ce;g+MB>TH# z?q7&+w*cCg;L1@z{E-`;`-3@lYdkq&YuqAvT-i7mKr$^Hq!Pez!oesIO&+0Mn&{b{ z`Sjl&D!+b)BzU&QTR*!g(HD{j5adJ9M`f*^U`_7ZOr zL#(yLc`-|z2eVo%&WlqY_gS=?eI_k zZAW_gZ|nW^-*)7u|28@Ox5??xKjkL9{KQOuMJEJL|0~XDKdt|$mAi&9^pCeT#~NEK z@IS-@{wD+c%LtAI(1A#g0QO&wt2s0H@6Lx;K&h$J4#_@w)<4bhb%~aEaw3Ha%@Dv* z0%jdlC7fpDp8&iet?`pG2)GK7a)HygJ*$FT?3+=Ul1-HWT2w7o1mOzG9dlcm7ex00 zZ3v683~UTTx~?7bhDK}0&{pj&AcZ!9cFGs|T4{(DYo`n;Oc6C>Gn6Rk7i=d&8?$=3 zQ@%*9n~UYTX``QV6H2lfuA3Xh<)$evWrwA12GtmEYZ-Z%RMnetUKZ$M4GaX~Os%c{ zQ76$yTK&VbS5|aJH|u9j`>FjawqLzv=g8J3CZ5{za&mHui;MCK@^T6y;AH1TiZ8L2 z)C8=S{SIbwZ1(u`Uk)!64=v6fiGkUeB8WasZZtL zJO!>Jv{89*t;f}bglb^|+}KF&6G$@VK7piR?o%yBx-Z*OEcp^c^R=m-O|nKI;s5>=qz4comySiLh>EY zwii-*$?U?CAy#ZLu1URGGRUJ3izB@)LEmRinIZBaEe;<;_J8f-INYq+!?QTltl4fB zM}`dA!>~Bkw4ao~b<`Ks(?iaE zSY1xkQ`sBTQ+Y_M%a3|0KOWRm*;mw4`EjA1N*nc5+Ng(b2=&mXPZ;V6=$39#&q*oN z!}B>9^~mX-UNU__J*hnUusEEk2a6+9rT_-&kQRp@_55#L9ETnC9G1oLv7w&cFOKut zM+~Uk8M=BK5oWQL_=XK_5%}gQhI%=+KKc2$$t!}gowa62v7YulC*iX8J)FoOO&@y(1!kp*_CpW>HgRQDDARDWFPr`kq8)i(O! z8$v(y=@W*20=lJJ^fNq#et1F$qaQin4-NgK^610jaH1b9j?B@|p)C$S`uX3wI1W4d zIV_9gV?#f^UL1EVZ$A+VD$kY!`!sB7j5Szm!>^#iU$HVQKH9*SapY=BD0B>dk6EQ) z3ivEOX3GL73)_h(v#P;rl1%4}7-!NgatZ5cecu#gmRZLZgU%mn?#mIq z*~e<5@miQkuT8|@Q?M{rSYKa|$c3q~{5WZ+!_78x7DX1S@VZh*7ruLvFqj_rUD`-H zggUIX6xByV1@~A(3}F>qOHqBbLQ#FODaKLfbuXLMw61PVZHsY`F~~7sHFd2^so~13 ze<(5cPus_~xRxa@Cw!!$tbIp0DGUMCrzterP@7yXr^rf|Yr9UdV!x;m<)r8@O2iy4 z6lWq&H^e+v+n;ZOoiFyvv~KTzY%J+@W!+(v&=6mei7JwF9lj`8iCJOY^J!B&BKrib zc~hz9zdtDk1%9-Q1)3JrKmx!$@kOt3Xid}{X02-{0Ndu4^PZY*r+c1`&Uz-bSgt|5jwrFIH;j$SW__neGx$AI-5E|a(VnIAko|~Et zI;6qEglgBs=Se^|yZTn8Dp(~?b>chf`rHfUOY%Rr2a53Q^kM#TR9+p~guy1b5SBHa z=NiZkc6c|I!1Z!k>go)v`9IAPaqt?zNarKh3uUegTl0Fx7G9UNOH5RLzN2*cUNm37}h$RDFI$9XUJAzicKizVSp-=ZKqil;Q|g_xPgVPJ!|S(M`{YZtDN|XLl@e+ z%E`i(-nCa`n*$GB+>6EV7S0;tzv|G%UG|}iAE0i}GCZ*YDWByBS;QPyw|2tUD7&1T zXy{rt;R5(p(zQvnq-g!XfZpl&GK2a}dgPdo#}8#zOI@TvvI`J$9@f>2_6z>YoKYib zq?&abn`&bl4UExffoc#qG)!IlU8)1Wuk1i}ANT!$9?QlN0bSN%nTzg82?}-Xhe%r z_NEdSc7IYOJjFh#f)ftmqq#U3q9BpqL<(k8uo!`^;eZOlJ30I|ci$KLep&_As-~d8 z3qsCgTfOyJP~SEot@H5KhAncHTU;uyG{0} z-lSbN8~dWVOmEKcjD7|dbmZ$*%!+}eTg21ihS1I{-GMVR2gOSi{G5V+Qh@n@(OARb?HqoW!w)#* zui^f5AC4kBJv@{;?|cd_;2zw_VFQPa95!*diNgyyZ04|q!&VMAbGU`u0<+=*H8TMV zqVRGks|p2c6p4BxggOQe`=P|oajMHWMB_T~ry4pOFtUaY$BMLf5l>nbdzZ!u$BJNL z3U6?%2sbo5be@RbQ9QCL_BO>MhYD{|JUP}h5#(6o6US}&>;ouZZpcWQytKI#R?4E~ov~4qQqwfu=1dfZN&J!g z=1BZ;R7Obru@t69x{G8R;HdORQkfa?$5I#<@kdgc6!Aw>84~F>mRKsg-e4JfWKLctY0!kf9c~yWfnw&VAfeP?}3pF zW_CfRGYP^1IZmj@Np(6`M;oe_l*ZPHJSEpwfrh}emo_PJ4&YlR?otY1ZE8B!1-q7f zX_YD~-qB{Lw3cQ`q}yhiH(fujzNra^{~c~<=B6pD}LxsjrfDNu@wmJpLwW5K9g+yo!c&>B6T z4_UUDBF`und7?Fm`WOO6$%4>rKo25S0J^=rU;D5DWjjMx9=&sIYs0KrtqpC3#ksI~ zkeizyEi8ogXhB{y-zh^q3ewP#xK1UL31eGvblkWH`aAwa27i<_)gD5MbAg`WtVC;Y zqh>x|Q*ihE;pX_(^&47@WM&yVg+y$fPu7KJ8wa$`X=o)qPCLap_eLDYh{tgbrDcE= zJgG7C(%w!0N4#?Go};2OH@7s;+<@cQo9hxYw-puC6hx`pmln&Jm@@G(sko>pwT@)%vA9O1=M8MmsS>5Kr1r`jhFlj4={Qw6_`h*=cqb;26APpPJUP22w>H$QYiNai zDoJX*h(4-hlXvoaCIw4_S2F%Ytp!jnax3n;S!nYbvmcB)*riQp?}$a8Ud5n`Z<|t(ralCCH6%;IOb^K#DRba9r3H zAVoPfaA4T{A4QpLjf}XH1rvt2%?Iqk5k$la(~@X{#&V3I97yp9rz+lb$4BO5G9K6* zYpBUdPD|a=p-wVTCcZ3ABr9rSe2JA39w+g~cpoNF*nk?&U_7;-rzf0rV${jZndq?J z)MAu%Z60i5+i%umP<5@`6npJAjTl5-!)d@f>^H3#H5iyN#f|oxi!e;Y!4%i-=V8&c z9T*p|I!$qf9p?%R1I#*Mira6lL9df-G_lQob3Hm)*N!*Eh4!0UE10JQyM16PX*#zl zi}v?u6Ttp|o8r&b?H}MQ*Sh^JOmtbdKQ+aVtlRfZ$f9JjH!(LY18c9C;w9_t*G=)f zb^EL-zGB@zVTwoTR`Ryw;J9%s_@Suv2cWWO795b|v(qecR%cKY5+3z1_rtlS__-rp z6{RbCIw=NYnPM@!33JhpGhgvKB23V=Z|K@n7MU)>kc0EbbJ2*=+z2woB}Ij&LBce} z5ChY4;vuq+=D36*T~v6v-7a#8gNDKIEgL0+5^J; z8%U_hW20;9sSS5vH9M-ZkE%kx#CvMP7tsdWFC;bo1xi>Y+wgbtX`NC~psz1mZMd5l z=fcy5E>#^8VPv~U~90l3wMyQvLtnBp6bHvF2ZLQ<5T+VEqv;d)2HKU2c_vJEiL z^)*uzI==pk+Au~BU&*XTwy;Cva2$<;uJz+az&4~9i)*+Xi2LnERJmm6+z8SDu^RC< z8j%H=``^>0>Dnl&%)*{qkp%{*_OdhOG)lRMn-R`t=h6+%&rz!#-`2x7o1#^IO10w* zRXg6d+fnUON8olWPPHR^47G!tE9W@NTS3)Xl0ie}A?3fEDQhX^QrVDF9R|(Cz0S|) zTMhYz9{!FgzT|00v!WroHpFhpJilN0W$BibP)k}-pL%D3yQn_PGiV8kQKHV2w^GU# zvLz2g#A1r?J3pJUC0UF0tgu5|Z%wT)DqB)%w`6{@+My!CW3n>clC9K|FQFx0a2EI? z)n`=(EqMwpVfV}u#_8H?lybFf$v@zk1vw9L=KPM;6!_IB!nc$~NvkbCQnuw1yDbY` z{@uAPXQkWn2({$^a(%;D;$NsnYcgmH@%v3j$}r4|mX@5&ZONJspCibbEoE434IgW@ z<#&2kBfia-Y3-#F9;R%|6Lwn`x?I9@Th2+h<)>&1B!ha`0)`Al!qcfn=l0wdKzlv> zj+q0lrkpUvQ^J2Kz$!~e%~hBB2Lk>-ov-2J#E>cYD;*O z-IkK%LPuL9&q5C;4P9IU+g~7gbOHM(uoZ}#O95B-W(PbC@(q@@#%dYjbGTc??=HjL z6@1r@yXW}sa@>(jTo>fgYC7Lti92E~>EbHfwe#KQad!vbU5&eY`HlpqB!XmVb@(d2 zM}6=npF-^;4!_0WjU2+t8s1MqC{XA@(MbWxF~v$yv|xYu_%C=PvX~zT6aKi@Iqb(_ ze+~z5coc_6b9fAg$8vZahXXkrL>$G=PRY<=jw17Q%1q|#;5a%S@wI}V%{lZ)#uxc( z8H_K|XS}K6HxQBX_j&wO3Na}^E|5P9<T+)8%Kj4;^ss&Xcb^W9P=!4GoEwO^G;oq1IhnBrjSB&C;A4 zaFufCSYtt?$YzP=f%8Nx(Q&v&vK3i78CpPAWEE+RN$EHifAkwjPW;i!a9wx+6lq#? z>Dw~*p%muZlwg2pd(8ID(>36|iwumz%rdP4pKw;MS*BLE2Qp5PtLUFOFV~uRXhc$bg!iBX4PRPT>^Cb5f+R7&alm%`Ys9`Gz|tJ0>j#;mfIs!jrUoRrdU!qw!R#Yr$z%fYT7fx2V% zO>Es#(`d66nNL>53{_{GjOtL~%Q_ob+c|^5R$^3Pdp!sHbjd7qmOyyXpy}^o89HOQ z>d9&^A zHVgx~)F~yV5}MJBW{CCB#wKPJp0~}Byq&n&A=Xe_Sif3kaettjK94v>GDbC5$Ibl_ zNmJYd-VZXmL9%|tcIw{}*~y}fYZ4%3Im8trH}h_#xs;loL-_M>n)^fGqz~MmZAMbO z2wvltY~By$(?{OVZshg7H0y_Q%8>OVer^hjKqcTJ(wrahl6W}H9ieYai548IYa#Ii z7h{3GtpUI1G>hLe9lP=gxK0MYXJT*pJ>nHmxEk~qm(gfrdqBBwBPulmb`LQ_pLe9Y zoYFD3NBl|r3M8lF+qIIi)yC`EaLdb;#G=hUHuSc8WBcI#C(OU|VyK0IKCp@>L8;R$>UjD_!y>=;uLC}M z5C|CJLH##ge1z@R%%?v)9#UsGyGc%@(6SDh%Eo)#YA(&c%t$52aVr>*7h?zz3f|&l zRSd%}olj2wSTar7Im)kjsx=<{IOJ zRC~nHh8P6C`efM`ZoWF{?u)Rpy)t^GpIuFCc-3SOZBX7%H6yG(E@b;Q5$f-J<}W%B_bucca=={2o1eQ0O z;UI38t>A-TLR0n*&xU}5U~}Aj04?hy<=iv`ou1=R?Jl=Xi8{>&8brUpJsdCuFu!#9Ii#c4v;ZhElak!jA zsEKuUc4pK|h$XuT_!LJLWH-Ty1~^Li3p zsFxN5EszSV4kLsT-G7TO-`+lmY!8fvP0)3*hK88!|H5x|O@5~I66=SzfGX&f1B{7Q z5tN6MQ_=?y7}xf~_JDS6Xr9}^xWolL?_Tn})(Ew0>)knJgxP&|2s7}2aczUUpf2h( zQtJ$|>#1qi9(kMS*IJ+oXO}vqb|&ADb|!ra(9ZODcU2o3aJeY4mPemGVEDSCn-#FN zeITuXq4o-}U0?*PfO;ASYXvk}D*%k0%zR*2D}eKGt$@skU5E7zZC7trz^>1_XH(x7 zz^=pM51?Bo7`uA!4q(@jpZXA8NX6t`_SEMan)>wV6EpRFT@gI>p^q6F+HYuR+tdrc zzTvUeA1=A9dP?c)S)F;&X(Pw|eDu;&elh%#3}0V!s~IVOf_J^)#|Xy-oUhKZS? zAH5Yv$;XM<BIIM$B)oMu)`_IaS ze&HPpgS=FNF<}VkXK$k4FGG+=zfU3np95wJ4hoz!?D3c!cpJ>x2>rq$EknPuNXyVK z=?0`FZURY5=b1Ot6mN=`5I%1TR=lJQlt&s-AtreGhj&>fRsH+oK4L;Z`4S38cjHux zQ7$5aB$1tlSd-#6(6Jl z5z&v`f)&&Q^LQvjI4gc0CzHbBd4Mcc60(#5(43CPV)3CU3ACve(P4wwXH z-oC1RdyJ%*mlU<~fUI@Ow;NdVQ}6tiE1_rJ$SRmlp;oZZlcjWL1Du~6W`MKB6pgYZ z%($P_dM0roz-h<1&UCT{PcjBL7>>&*3J+fz?#Ow=5N04ZOw0g7l>p8#`Is#M&QF$m zGVP+g2;dYkz?o(N9E_rf0@#$|0{@)=&Z~=#N!vsk*|0TAe4Tw$Z2_q7Z3o} zkRF~`jq!)vwOggS6u>!X1Dv1Q0Ouz*!1+nW0OyCI3jpV30Z8S8G-Ev-lZG@0#ODdp z+{k(ncal%(a`f(9Nrp7bgCUK-Te^WXi`%0_#gs}&)3h;=sY##)pQ#@uG|KuWU=75b zS&!nnxhGh2q^TIIYHo1zaZ@ok${?v2#?F{_8B#HCdM9$GkcFuj8<@Otn1KnjZ`RTx zX6ogQjHwqF40=OJy$F_Cr=f@>Yc1+!2bIZSCW-0pqFyXu@W_n4z zye&+EDc76gVjLEdP;_sbqV9J8_JfdC<2~!$2bw|C(p|>E)OP>&k!t{$Z zDgQ^eMX&Y|puFat%zXkVuO3N&@@n4z%Bx2LpuBn{01E8Vy0@lB0HA!wrcPe70m`d% zLjdK~Pc}gD_f9teCDEQs0A-T|DC=!cyvps+dTc6FB+8EfP{5DRdJWfCR3u6%vrEb> zM$7%F{gBLMdBA=Mn|8NNOnWaTlbP7uC|M~Zcy}_rbMOb|n0Ru$+jHXyC=6R3s=Xm5 z@sHf?7}(y-mfIVtYU|^p?88oG0my)|a^B{=4CAMkmg~$EGDW6yIMYC0%D21|Hgljc zTnq=vKY|Lgsgait4S2Zw*Ud?JIcQ_!=~?hmny5-lz`UIBEJu4=vn|y{X@bNWN7~0Y zw>3$DbGnkY!~W{!BeAD>!8-^bH!Ly)%#G#VBK!ISNlNlL8vq{{A{qk*6 ziI5GihcH=QE*CdYUdZPf3a&urCy?UF@vK@hj8sb``vu!5mh6STWy717ZFuu?FuZ}* zhBO0%B0#$QM7)jgRq=JuE=Yub_Fsj_^$b#aH}rGyC{Zrhhko7^55ZUnc0;qp!%5x^ z)dlZ{{2kg2pjqD@AwaW50-9KBca%$vXhC}~bg(yk7cF#I3ed=0GG)AIq02MiyvRJ= zTOq0|PxSv8&I`!ZL*TqT>s=I?LZ)EO%QJ@to_wrc*RJQ8AOPiK^}0AO&-8}#Vhyqv zMEN)`&m0LT^;PeH90AVDS8Z7HtPN|Pv0=?K!LY`|>iu{*FaB-`hBa3XYR>`Z~4 zHMcf3)LOtsAwS~J4roJ+ zqGk#?YQ6Fy5}Q2GC!is9+8h#_VBfl-2h=+eut7)3nk(ck_j}uD2qd*`Tq! zZfr7>3Zlg+e?h@11gQ=;Y+;<)8eN4PdU>!T{Jv6oUe38{mz_YBYn@qiu;Xz<%206D zE{_&@hZcTMt$gnCuj6q#0Au|7=F%pDbCcP;t2|3Urx-fIp%w4FWR8Qa{p3*-5VjT8 zM_YG|OLzu-fX7|C3 zjxKR3hH&&9i~eDbX~aR3#x{77jTF}=if~{xCqFMYk{``2$}6fXEUbrvzg+U#K|bQw zQ3uezBdo4F1Ruw-{{0?!`C$(kmGF=e5Lwo2p6d{TJdc63u!BnCol7uS3BOaN(#P&X zO2fcm3@ohcWQF-KM);jx9>$pOK2q_fiQy}^?7j3<@k`l$RR4QQ&k~q>_wd{kw;5y$ zj3O%6Dg0#_IP)Q^Smgo&sROLyO`NSfM*Ld*Iw{6jP9`QmaEFs5!^C&UYs7Tqal9#h zi~hkMHhu`n@VkI4A2%n$BpkgyK^Ehdrm}O1@Vm+}?B2PAHqmk}0sD41$HGP7*aacJ zi4;^&u#|$ADBvTLS5iIJb}tyDZL!YV;(i?V=MdI52sD#1J%WLuj|^hOgvq{1d9|*M zr-JFo2aqzt6RE_HFkMce+=g=wBRD*Xw%VP%*ABm7q1^EMglQ{GKnKFKCXQ_2j$&0> z?_h)jL&&didINXBlyFrLW~UVMaKp|E;ISb5HsugxcVnAto33lkx)w*Z-8lMo6(B*| zdjo;dD;sEz;twe^g{w%#S}~jqD3K=5PF<@Zvfw@GO<*}r9-D#=nVv}o0d;LG#J~W? zxQmBSaN&{Vl$3X#0%*r!Bu7Qq(P5H#Ki) zY_&Dxq2yk#1U~gQU-82is)*xVv|JWMW{D4XO3%5z^mT`gl&;%PJKafL2+F^tWek2=i|FK)s~WE<*+_Ihb}B2)U1=_MJSEDhb`ZLRDx_o+p42(_=0I;ez31ApizUrNhc z)G#Ikg1D5J5Uj>rMvE(bvUo+XJ`7RutI+VJLGVFoU z2$@x${Y4k`0?|KU6Wu1O#Pm=TIx1I*HV&cX_9VLH#KmtHjFsnQTp^ zyEXg88nN7>6V5TjYK*`drWMX+Uw6NkiQMOM>1eT{vut!)?J6Pd$IPF^@51b8+lARN zDHmpL8nhc1X2VT!6ZbAK>TcZV+DSNPNOr~9nCw&h>J(Famv2tR$yUCB+aHL&8<$R*inh|Q=Re(q19MxPd= ze{Kh3#oYtir}rPV@(WXd6#TcYdW0=Msl(wuN(NaY`}Kspfb(b%3NMk%fmNwv-b}jp^HQkeWGSwyx14 zO4cWwdxsZbNkHQ!#Z@@B&53hwR|3re7A64)%fcf*^TmX73-0c_#Tk;J<|rV{V62=<8MT?m;a z-o3-dyD%fa$lGY~SN|A-3c& zzK5Lf&;F|r&E4YR9>EbZ9`DA(gpH}QVIE;B;o>jiC)w&hk|jjf6jM`1|MAzCSd z@?diq3u6J)WQkrU@wmvr5fiCZLFg5yU2Gj1I^QwJg+>QaqA~*X6}yarmguD}*ju=qLcRfCWfKnp1B)BGXZ?G& zzT!q@Pxl5Fi|dv1-4K7WHogw%i{3v2joj_JooH()sZ+EGvxw@X)o9 zy~oQi{^QvXPfOwD={8;l;+J?Ch+pF69D-Iy8ZV3M3FBfvjE#0D?}x?BglK6$jJr;} z!+x0RFYN{0M6t+T5Z?eVlX0kw@iLriPbEBDr)w+dcRufnfr{PuSnXiYwK zST9nh@!JGGJ)z|LO|g`P$&DsSaJHM`>(EX^s*`Y$S*WpauK|>NEo?OrN(O@*O&4EG zp=2-TIB4o46_BP8qS18yE#AGbeJb|IcTOX`+~`8giaoLwfwHhL^BLA2`R~BYod^7w zS+z%Y&@q+wVabaGfzObOaE#t)slWpP&^67NIKnQocIoyvC0F3bRltCRN@ ziT9y_&dqZ`BWxtDuA^+?p&;=u^bU!CLD|#2LgKe8=R1Js5#Ln@ba6^T9K_NNNax4n z|5x|dWU5i(@w*8_lXXPmbW1#bR|=1Vr7rRKoi-ll8^YtT(U>tF@AdvVSK4XVxS=*) zQyXj95Qnh_7e4P1iUA`Z=}oo|qX(>mV2pm%5~B7~O@>eR`eN=QK9&M<;4Y z5)7BLdYJ;7D<#1b9r-XmFO~RwuWPGp@2`)jAXq?6^Dqg51vEERGlp4lJtJJFG+01w zQ;}6~cFnVzfB%XT;YRD>{mKTlH#|yk7VF9&HRSh5) z?nBO*%7w-K%64araMj6si*WnUK&ON_pb<90RoC&*5$=7xL%8=Td%9N$cdv53A8FBX zK=<~HY}Fm_N4Ec0g~(#Bjcjd=Xu*omylIARw6$rz-$u6g+sKx02-)7(3uN1)5Lp3T z+{m>@hy~<&Bqhl{#2PT)yFsk$+b3hIe8>3^C)f8RPPQXBkn8(Et~Ua)zKBc3#6J4; zFaMLRY$ak1$;q&`gMG@E8kE0TD#$k-NoEK1Fh^SKayh+&G zGlp(-@U=s`mBPOacf@{4n#v1ndVL8PF*zOc5gHm|-gnpce7 z@Rbghc4)UscHDkt8PwogT7Hl- zR@lO(*u$XCNinD+HiJ6XW>DwZ4C*KW#3Rk14t?IjwV@^5!cR$$yC3_`|A-gN8X;!XQh zxBSyQ7}wr&M*Ad)i(fnzo7j5SF4nKmY<;JRAeqvGr$Og=Y$!Bv40N7%9`G=w3FVdH z1Q_{TbKuRHbYB~bU$A)-aR(9-TfLYhboD3cea#U&nanH7EsnywOJQy_H<}YE%+1R$ znCx-@he7m|F^$XET%Rt0ox4#1V)z9-P*hXM>NjjmG&XU*D^oH5xXc$b zyQY3)Y+VaSTqSML{s{m}i}_+APl_q~bG4nPt__6ljc4^upyQ7haGqzSBc8Ir7jaTe zL#+9NM6)b^O*-x*2n>ChHZ;{qU~zUjV*VUo#ECUc_4O@@RxbaXbkx%MzNk}cnl{!s zqo13OzG#Ur`iz<_t+CpT31^D)(kaeaWQg-XtE=`2*h*N(uDjWMOtK*`L0F7JyJ_jq zh*NsA*|1M?D-U|GzN%ugA$43!gjA(59OXGT8@l#Y0CZi0yK!wFSwf|U`*E4}!<~4z z)qc1M4@vvsT0C53KU|K79rnW|c-Uq?Y{tVT`=J33>+OdG9@g3q=i*_t{jdTLi|vO6 zc$jNHRN#U7o-6tpJQUdv`FO~&AEx7BlKn6N52Nje)9^6DemDUSgUSCSHTyVR1MDw4 z9zya#{L>VFwQhlKerMhOrwJ#5ToLGki38T{4@n-4x2R)@fkTFhGrzC!M6RLj9G&v+ za&6~eiv|ePJx8puRXt zlEn|<>}$7@c~t^apc(RO|0$-5sUQv5GaU933Vud!__dMBRi(}?VNp@EuCTbc01Vrr z+IUVZQCu6zi$!8FoD{CBD}*{XA4FtTYC5$mt_x(?_9g3a8SV@PHZqEqXSzKMNZ#8$ zVqaRg%oIC2Fk!j#)UB{tw(764jRD)m8!77^j`xUbdSuz|l{J(O=dMw9b@0YzyOjOZh03z|-a?q~#koQ88C*FyPk$z^gN7KK z+*4Fjzqzr-ZpExwDdJolF9&;Ja<1d(RL6~95%9RK{hTU-azC#umpiQ5G(_o5d%V3w zuFZ2J#gRgII4>wHj^ySSMRJOA497MDokRzk_macIrCiEf)q=BHN9{V9jz}*Oqh*y# zl2wi>@1Pv6RDwQ3*8uQy&=g(!7fglo%}1udp&~;MhhV>xZ#0>$kFW5$c*Qyg_NF1e zi*sPF^Et3LV57=h*12Mf`b&mK-obu(rUuNWVZ&M z>EyNY95>z{Wzg574R97Z`7E}$(qcg1EF0dCWSy7|QnC&v1Kw5O9dQ{1=j^ z;3Dw^9k+IzF6$91qW>SI~^^b<_3SIj$nkv4E2&B3W?Z&kxnZ39e59h*1D1PSR zT8HZ{Tvy@hFmae~p|}$Ohji(#AYD525;0dw#D5#5SP^BCe-QG?3If&`x)kJv5u)n3 z{uU<(w@-v2x4WS3zL_1nTRHnIM#`_0*ixu#hm_!PSaX?+Yv2I|@1n%%U;~HDaTYr} zol7++{U;%Khd!ev3qZF?%Szd28dJ;(T$`ly;?90FPGCZ=%(RGlY!fC@oGmdjIqWrVGf{ z@%*`HjAe(WC*zUgaU~eE0ab|uYO+lS(V+zII3*@z8uuwNcA(p#M4>YJ++>-f2$hMN z%_a`op-V;BVW(yWzZnhyds4Cz$d9SjIW9vhbja0fkVbUOQ>`-~L_!&Kcp4_6ON4dY zsN8KGrArJ2rq%|({bh4v%jS4I(Sn2KldZe9;#ggxwkWs0zP>g;8jU83BK5JHc%mp) zR}`yH6vjYs-;0wZvL!%2>Y5NKe+VUXIO)~oSTao$P>}2~w@Mb%M&#H;IagtC^43)C zA3ayqkBsD@#X`}T>MO1RXYInx8=4a}v5nv&z?4{BO{}>&_F2ThRwoHd8hgdthIo@O z@}tVB)kRUs;lLP+Vwp(T9n{KX@+ZG%wxm{q%1QInT~r`wmU-~PP8CJL4=W4i)|A0T zd#X9XhI+)qOH>^q>yCr!F)G0*CB(n6M{GSb@v0^ej!$DV`P2 zN*e^?J6L+JVd;IB2n#scmCl5LzU4`^Vq4%a3vMJ#F&I&B!tJMAp);gS8D0Af9)b0L zPQm*WyiEa90uRyMRTQkiJOP1vC^P|(C#i;akgH&k%{%W7yjfjo(={Ma`lBo`%BaM@ zP!OSDHlWU_L{ivBUg-X0CNfUp5N2Tr7n*Q!j00c5tfY+pIM5rD8kjd0snH>$5v@Tl znbyEN>FroXBcg*}ksn{afh8E2PDLbGf)Ni>UO`01b~nwTttDm(T6mGJH35wwDgN1i z6{1BoRn0E(Gs|Z*l29UDyPl5Rfn2!Hgn=YoI|J8LnAFD)jQ?DOAJVla0j+Jdp2l-Tk1d)v}{Zy0?pFPuhdRiw*EcP1f`H^ zbm4m70J8TOXc5_e)yzqoTN3f6#=4f|RQt}-9>`8-$hf`)y+W9^0wab$&847NTP7*CYuLNP;qUGlg2`yJ1PPF{|A*1E#e`wQH zXgM!0o~X?!tgVkG6191CvHYUKL~cP*T|q%!tQL$Upk)vkX|$}a38CdfDB*Jow5%>j zLS7GA2C{-#jux7AzyZ%GN1BlpmTDWt>WSm>T=&RodKy`&3sWL1Cw^sQ^)=-bHn90% zTt%KRmZGxaS=neGf?6kH7J}Mfhy)|3dQ+Tdh;PaSKK!&xTp_No@Y5~8PqzU-!P>$I zL%ao#UnmNgTJU9U~$6s?v(aJ72sq*qJ=v5E6QhatOjb zTRgaDJWRx)DQ=9jK?%&d!~-Hp?KUlZGeOsM!Z){>;vXOqOc66_teW_I*I$5Vpp94EsR3sXWLCY-?%K=_0gvHY+#54u@1qC@piTb))I!=F$6HlpYLU`&B zO1Mpdr_=>W2<*XA#9F8AW4Dv`apyMjsl&OAd>*#U2|+%koMK%(kB{g!@+-=Md$o=H zO81!Av5iz0ro_xnZarh>CzXrV&^2LiBXxTl+0Wia_LoEM!_vXqNK0DaL(|=CBS(9- zke2dl@WwvprQZR7-d8<|Zb`#-add>S~Zh#rhY5i{P3V^q_|xfa zB)wz|j(2h!DWlOgl3&p_l5YruKShyf8wu(r7?pdskuhu|88f?)`Grb|-v##|x6(+M z7Bb(4t|4T858-fVV9U?*0K2ko42PPkZ3g9Nm`!? zCdeqF5_B>QABfqw#;WLKmsc#{v=9T2V0=#jr))bTMKw$M(3Xf{GE_D;kdkDFB=0%$fTH`6dSD_?kH3* zh%DEx@T$g3?A`O}j`d2H$7LO;j8a#>r=uR&42=#EVMu<~J-vOU!|Abhd64TJPp97m z&SM9fP6{j9rQVqJ!!?n~9 zBd{%Mkpt)V9-_5-hu9Fmw!F3fhRmO!i?D;fiGKfs>U|J0a0D!4&(Mjo)@~6a+7(1V zfEdv(ryJOp!3|Loa#~aNslN{692ZMK{89XeX@a@@9b`tlu&RM7v%GW1+uP0jAf|lcKtq&Ay-PB zF(Toh4IYcd1`CuO!>_~uVTd)>tD)#$2`$?IEk7%vWeXT*7vOP&d|amjp4jhS%fNF7 z*hl4}+EoQOjTgDHu$f7*E-7xciaTAtEP_Swq}XM>EJqyzA?!}?^2-#$VjIt_Ty`qI zg@zC#T|y9c$Du=5-&j5bpTSfHgUcOp&q^b3NjrAmkbX7gScK~3wRKF%6j1h?Fx8(f z%WIfX4P_@f){_Nhzs}Q|JH`QKA27u+@?9~*YFYsFOh7je{-~&)fk2m(-R>1D80c16 zK=)iET!O0tz?QB!u2mA~ZVLpumwHFt(6yl^>@SnJ4Evhv`37P}nDoFK;)DX`-bevN z-Wj`X(k`_D?@k-=?yv#xj!XfsuAN5iIskN!17DSX3$X=L=pK#t%nBF$Ef$Xu`~_d| zPE)*SJD%R3WcDjuJ6V7-2lOF%H_OH~z7vDt@2PI!@3!_Opeb)0D&a2xqm`?YrnKOu z1${rXpzq%ReSi1~g1$_ET2=l35BRnnS>SuIcNrc!@NGNNz_%@k!0jIRwt0O^W&(WM zF7zyEHSi@8*Pf#00|2X{&#<@c$iv=k-a!X|Jrb~Yn+I?ts!Cv#cqr)7CR4|>Qg zF{6#}iHn2iTnTAqmP$xFhUr8fX#_HNcACt!=?RcZd4Xi^EZ9B(WolEflf_a=DpE+t zi1tljWbD6!E0kYQ4n9_W!l_CE!sUSN`3ih5>ABa~W&{1_2Vc(Je4X zYb1d<%waHxe86ZVfjA^A318gy0FJ?-aU46b9j9U^-u2pv1-98Fo86V!{pUX9%@=3? ziIae{$?k?tV(0s>ldR+9|9e%{Gt<}1Xn+O#>(STMrJ1hk>euzodiCBh$Q@)X@RwzG zI58_*a{7R^`-jBW&I>?6A#=n@$`j&i=UN9LzJ;9n&bb*zRe5R6PNp78i&3FVjXB>+j>WEw(ONHEe zvyfZoE4j5E4VU7GKwhO|1CCWvZrvf@n}@NW!}*3mJ9U}+j`meBxHjOMK9&H>=>96H zI2<0bms>k5+PTA`ot+l#gyA7Og8{tqXeEk#0N|xgKqc9AB3$@LFa=EQ)`LRFi?T_t zQ{Y(&>GfqHy?zDOJ);Id{d-eLuiN~kS2w)UP|*7LGNPcX6$RbYo>qF5De4skeH|2Z zGpOeear~VZ1+`m5I}^48*~_gy6x3w_vn--9*-lWG94w;Nga$(XFIz-U7*P9(CW<5~ zI$T0l5KV;0GAn_07*&Hs8Yi(UO}2)JAaeR)u!1xfA%&>P_A1g?OmiIe$*EezG*X<< z_f-KWw>uFgTavhwO=J^+?vrR(7_iXn+s>UdI&7z(;A}75K@h7pKhe@*JH@aLCmUsH zJAH*SvBgc^DSO+gHPxhG*_C)pWIH8et2LL15Y9}opccWg8!w>ESD-8tL~*4ciVGA` zycL}+!%+=lNJkXMEs`kSzs7dbq@O# zQP=NqhDicPtwo@&i`WkVq;7-l_ouFIz@veWSJuI6;!EL`_0U>S*I4Jh+bzqiYe$g$ zm0pvit$B~Y6!A0?t*^tez)4#{AxFM6dIg`jy`Aj55>`g2{WLm|^ zJ`=iDyUKZo9(pGR)-wDup=&j+XEa!|%7ngAWkSco)I4+p+b=%7&xEekNUYK36RuQq zt(ML;boNCVM;7!$h$GK&b31~JaXzk)KQPckkoSQc$kQ-a?6R8zIQ$-rdinbHd#*mBg?>-hw(2_z>Z8u}x@% z_)d8$IOI4P-K9!pFqCV`ss$TLeM$QP*p(xtpp5WRO=3m370aSF3&BJ*6MFwZ>cIzR z&`vWveYvt^FpG)7NX$WBF|V$A!ClzY%;-a#ZTEG(=Ln)i}%=V?L?@tUe7Oh4#%}<5+k&_1>6#QCCHt# zhE0RkBSf;939jSZsqF_If808-Grl-HeCb1Dgk08Up%(euF&uQh99k#vqq8j)v+lwV zj{&RZ;F#)xSp|CzKEcPv%<(ZLhb4PRWiwfC!Xlk9LRg|t=WLV>OR^Hc&~CRw2F{kV zRHopEK7E6um-CGp`gEtsDl=B-)7>i2dW8@h6hcH5LWq~xd(Hy*DTF{pB804v6AAs4 z9YXA5ce+sFdIv-;$!jm$KsazSx%IGHDI#bMo6K&LI8dIz0oRhH8yNo6|DoCOMP&53 zmZpElJ<;{UoBVgHmn9v(Re;w8Z?6$MiiJ678d{o(9b?m_ji?-UdN`b@ z+g3<6dM!Pl9~;#hoJf={fjFS{>j_toJp@JKresTxp1Z-wwcdeUyh-a%be#ivdi-qZ zC$Iy6h9>Mk(MFGE9=7yuY@|yz@-!OB6rtWr$7& zQ_p0UPj;fHukn1kuoEp2b|ORBiB_Ru9gf+s57AMNW2v+gwaK^U62Eo*4(I!YJqR{) zit{0C<_HLb3ieJM6O|B3NDhao*p4aAvh}vR!y=Ro7NLw%g$QNTpHSMp?JQ>x_CC_~ z!K_n=cy}H~^RzA>lh|j8e!j#h`4k*Kia{*$}_0ZS2s)SM*G zN=%;!a-HZ-(1vQR3_EtGUz%)qdrE8%mA=)%$G1{{g;a_Sc=kB(?CMnFCNrE?d~@4x z`FIMoY8FztlQwc8P9aEA6`Km0m{`=CAaCcrmpmd`)CeM0&)EVY#w?a2WaM$2S=iTa zb1LIT0vjM_NQ97nnbL{rZ;H=BD=bt=NIz)QL!=ts7<0(uxHme1PKh z-YA~NqNM9n(h(_s3U< z+I);1f~4PtZ8DtQ?`dI5gRATnwuMmjcFt-z*#ac0Zp0&X8*Gk0s=C3020j+pLu2E0 z5Ot0;CQvnvs6(hl@KlI80*LxGAnA{Aoa!B-!oVaDm3sRi;^`_2Pc3_ImUw!LbLRF6 zPf36voLO}a_?e=K_aEax&>gKEEgM@A#YbRj3X-n!MN&VzmaeaGKB~b!qO^~Pl=g90 zX&*;u8swsVtgw*u77IyNSxCAnYb1Rbxs*A35iXF(HVPMdj=|XNTy1|nMNk_*Q5I3SoPjgp9nY*xQo!X1SP?=L^y>&|jankS*h?9m=#9Fh$85c?|VrVL( zg{=!8;VbU8lFdsp&hTas$r?r(Qv|o{N6q|X`tTM{b5XXa2p+who=OPzE2*aNGQ8Py zk8m$+0V!g$e>ke}=9|6DL_PG#=~iO&aEs@2V>LrD&j&d%N`a?j=4IqK0=$IDtar>a zjCCBrJi}WQUWPX-yhJ5itAJ#ldlAA#V5g^`>k*zn7z((+V)g|%&j2}L^#BLOB9r8x zEvAEmx(sGMfJ%d*BjfXljn*qRnh<#1j&_7wTT|KS5XDCSFYxm<5By9c?@Bf*drL*s zXRrvLihndoff|>bxVzM1qe5uJjLVXZE_3phY;jkJyA~T=dVbhwR$}hb960D==Tlw) z4vJkoQp{bZFjZfwFcp<-G47s1o4`-CZj>{ARxz2D%%P6bX#KdPOur%4lJp2dl9GCPEFviaWpB_VMc_pvjtK`-D zl)So=?vsnWie?hqstL(x%cWS7B_mKIYiyItM^7SnF{l3UXMJi}zVjKlV27ZrPst_O z)tniEAx<}Hu%C5 z=5_ZD$FMYOb@oAIfpr!OtWzkNB@0~WoUYlTq>TmEogb8}@IuKH{jn|we5`do;054* zwH7`uwD7TxDuj=9S>xly;eKxL_~YflZSiWtOHJXWZ}2mLN?Ve6Nj6yRHQ?mm;`p2g zUWWEY+W9y#oEDJXREB4e7%95R9wS{V8mabIuscEH*dXuS8`H#ntc*CUAXSANFIxJj zkWdcB3&Sh?RG>e~YyI>_eXes#W{Y#6xS2SR2fJW(CudCrA+d}z z$BAs%YcP<7poSh}gACRmrqywB;2z5%vz(7;usD3TsBbK2&7$)`&cLjoHKG6)gwB12 z0GItz2zrrRa4x2-;DU3gLRg2W!G3GT%WXcc>_N5%df|O+JId#=BbS2>+Ie9*tIZ2o zD8#$pz_DP2utiES+zf80IFjaC0C7VGgZ8ni9$XiXkZ+RkYXx^|PRj`4^K0Ffj5I>n zd=d!fl@B+KGAPkbbapAon&p!|GQGA8!Ty%t3F;u z$Yt4DELF~1%50=pqBObhpDS{S&MpPyDz=cTN-@SPk*mZx{c=LC;`4)CWe()B>u|+6 zVAl-i<6QvknqgsA2_Y5faK%(1?uAW9mn3$%!GaO{u&$3>9XEho=FLJ@gkw?~)`ee_ z*u`M#)W>LA9|X$n^Yhc_zD_et&bxROVj@HCv3outIv_ls3ebh>#R`=p)LA*Jg~5_q z+CuE=;4D|KR2zn!q7d~7DOUB#*;MYev4iD%%aMr0J&6sWUBLLr2sJfuL5g4%1RhDV z;gM8|e~ab6GB}yTb9XwY&1`FE&~h`|6vW&mlM6Pp-5{PyA?$K-4_{Gps&gi1i>OQ4 za5nro&PLFENZO3R9x^2-ggxCu>y2LW<`&Lk)W487r}%A9bHzS@9p%nsGiU6B?^D!m zfaxB(LcKam-+^pny0Gcg8bpEv8T=_aL#8 z?6U}9j;ZxT>Si)bn{U)mY#GrX0)Cw#d7E8Lo5qG3RKmfv8*~TRDfE1cBu%wQ(iDp% zP4Op5o9qJh&#}picD1p874YXC5_P$+b?HCZ36iJrKH!J}-=c_7!y>H9#29JYg0EMR z8?HPXOv^G*CfVo3piD`kGztby;bvsHFDxN)=gv*495{!YY_sy2yj+@#(}x@w z?L-)fTA6pXZLmTP5YZZSo{1K$x9th)Gb-zF16UN@muwbupnxD+te!4NQY-a}<>pus zp-Yf63Lt26c2q=bl((bMs|u*z(9jx$12emU`%#ID?xXV zAxA12qb<5K%Az~i(&{G)t+msgGf3dT*|)LBlz>R)YL_NI!2xu-2!9y*ze~FF2qn3r z3`cT-_bF4*oqB(|*>W7yIy3?NOelbXcmp2YlJqAMbm;}*7UOx#*R+207Z%;V|8-nh{h&cG3m%SeN@XnJ`P#P%>ooDZj2G>#%NKA2|{YB z9P-tbJb!zKIbnOpP9*7NRbqHmY>pTma^+1~zaB0qok$3_o+enzFv(hkkB>EOo#;r& zP1@(N!v&khaBXIX4($uh$(}92!G@rDG(6$UAr{3*WP&82eLg4Zll@*=+`${|(|JB> z&pRK~pb*@^LxVwb63!b4he~q;Zoc^B;Jl$dudrGZ`Kh4bXrEVDjfyW;JIn{412%H@ z&+Ju{k0HAO{LDqZRlAAK2eB1$f0L~yp(4uJe9qwDQv#u)gl#bea?kTcZVw>&Blm-w z;&ZSte6(F6H{u#7slv-~qg{nPP>B6Ah!ul@)ZfK%(o3wc#rM!YXNeW6msLJu1xSM3 zv5Izx5Mi-`ED^mK%Uu=XHQhWSJsV^|CDkqV9hjb^UYXevbqo*K%Q*FTAyk=u&X;hWRhg%u$9ytXkHKX5dJX%SoEliN21Pmu;xvpj zm?1)s8Jg5%`dRYCU?MnVS{bA$4=TQt$Dzl(#eM*4^BqVv9Cx+Tn_^!<;una?0a^nh z3MbVUu&p1oW-fbC(wa1ph}{77r!^nBEX)uEn#+>qC%ICrM`eN}mfrl(hGpFXKEDB`^C5=1tc2741EXE-{NP z^|9zupRDQ9#jvk-CQod9u1$>LUx0)L}FJYVUzOEm0;Gm*+YWC#y@TOK>46S&r-M;_Z3`u%x`z>tK=W zUg4oI0@`~Gw*8Qy29YSon{1`Yb}O^Y1a$8!d0peguWX538-i0Nw4-%YBkhQ`u#U)y z;=%Hk%opLJdf2+PBOy0!?IE0RNy^nm0HlxW#tzvdztBl`{hfd~f2{xf8_&S;-bn0jDsmZqL-ED|`vB7unE z<7euzZ(n8avfn^7`z8A+ZC<^KGBUeuJ!!l)5D}O?OH$ewkjfg#s4a8P7fqoNZt&Fz zbvK04kip6ESwsf!Qe-eq%v>Ti+qM%(m6Y}wkilC)0-wOKCo>tmkemOlk>ySX6BZ`p z5(}EEy?dd9=4!upqExmdGc{=Zi{e|LuIG2Kyh59k!s3kSQLZ^Pdnz zfzI!v0D(NvTPmsjx1y5T?-iBQ-c?i*l`N?w(m5bfCC3hb_7`GNL@N=`aWI*@U6%2* z@o~qqZxgkA5f(TOL!63_ds0%%W?yRQ0jV_9a%y}gQOo-jwT${_3?phOou?GFd=}Ia z@f+DEaO}!VEq|008f7D;GW5DIebR;)hoB21!^H@d!uF9I zsl9`+IW?@tk|U?s!i-Oq!eyx~%sBkXe1%KxcTTj*mQwD;o^}G5Fuk`>O$nFUI~Ra# zK8-w-@@}y0zmv6a3EbJAY?h^P`DJYRPd4%sF8`V?aSE4mVrMH{YVTZd;ZpmJ^Zg2P zDaa49<(E;UG{Lb%j^XOYc!EVB7d_GGg!0{e0)V}|rG2!889FVjkw z`MF7#9w73kmx#Ae2`7dln*_bYYMZ2mVg)fZv>G`v;a7sFyrR#wSVn{cW8R-|{D&8{ zwCl-Vw^kceFY|pgY_HXZl$&$k#ReLhQfX&k31PZiLXcU<97_nJ`3cjkL0}%zRuQsW z(4n)OO|z|R_l;jvZXZh*f2JXhznwWYiGAQddX^gb~i~#9$608Ayjz+ z)z4~9T!GDP3_LaIiiCH7dLM-2UBlljbVLhl9WNC%kSqpK`T8Jwu z@P!mVMXF(ccYeAI?8$x`rhx4legeim$3E#{svqM30*ODk9#`)op{8BL72Rot7TskE z6|l}QuoR!)xeX&r z-47#I32!{`^sT&bTlAiemiwB_$*LmaF~|+05jG8dBn)RVBf#v>ZeG9(n%mm9MLW$& z@+{m1BI3SPY_1e<=A_;*?UMg$(NHe=|3pY8g)}LWu1EujW*}&s@B+XpP#RI>r_LFl zErEb%P>sZ5IIu0C8c_?v#h>IPigd|sI)z_){0%;?y{W_OKLO>=rkUkUjinWpjnRh6 zvYBPkipGYU58R$f_W)}&n7b?SKJ!~#K1rSXyA}r`1KLMG zeZx7QjgWpBMZBblbeALGjHnEh546DkK&MzeTU8}r!fggyixrzB>2!MLgx_X{1bs+|v|pAEaY-fIV3B5-u_2glt#xW`-l>5!l;Kt*;kZdQDU9C zySp3WCHUMM77P5T#R75nstD}|(0(EqWi4uN(pB?C1?}pr$`Vw5OqW;Jcyh{i8>bBE z_k{EovIi^->GSA3E2Ph$b7M$H&glrpjIb|wJ4FdZpz94m;_NI1Sv( z3fpHn?Hcd9_@A|Vr*BylE35y}%2xand;$mr5C|X;Kp=oX0D%Ak0R#dF1P}-y5I`V+ zKmdUN0s#a92m}xaAP_(xfIt9&00IF70tf^U2p|wZAb>ysfdB#l1Of;I5C|X;Kp=oX z0D%Ak0R#dF1P}-y5I`V+KmdUN0s#a92m}xaAP_(xfIt9&00IF70tf^U2p|wZAb>ys zfdB#l1Of;I5C|X;Kp=oX0D%Ak0R#dF1Q76rz|n&Ex^VTbrv~pIeb2V&)~#)^oyBD( zWtBx`#bw1smF49#XO_&^t)k?PM>k;{BXA6(3|Fd&VHUd^aRdvK?fU)}Avq5s9OpAQ zT23RHSe=$kO^)b;*Dr02@$n)QW+9c7H#3{=WzEZjAJyIOI0f_@|*xJ$%Ti+1vXo*daA?jT*UEmjKH+-PV ztCmx@oKNGL=?n+Dl{Y_QmVj^)n+6m1fmL}Ir`+W6%@0sQv}iM z+*wjmQe0eIR52skFte#K7DYVGvRKK?=CU$;+uT%vAetS>KP{s$0tWF#o+Cgc%^Z5( zXOE;gNy5Y(Ni+O_=X1-;J;G@&7U4A69rV(?o2q!47SPhh(;S59l*7Xz^q!wCx&(ZYOl8`qIWLf?6Y*8 z478lY1CD^n*HL82r+R4CQ<%;cb_Kh_WLNnP2(gy)Sx8LNiPT)iTOMdGV@2{I-O)P3 z`#rJ7V1HEkSdnZ(1Y3Sj_TY-w*~+%4c%9n~)`l3EcZztO2&}jX0T=trR_=J6KJ$fV z3fk$@&KEC5og~LUlnuqb5TKzPz035MWrYa zpz{}0e2U{Wsirg8FQz%Y~+=*Iux4{v)GyDKug~*+# z;2T8llodqo4Bt4B973V%^@A}wH@I(w|LEF-ot*yo+A)&{1H4hhV*iZw)qk# zTv{tq;{FV2uaM@Fv;X8FeGHBPI3{tn579RFh4jf3ZF385r&yp?2A0_uMf^~x2~MrJvMYV1#g#F5#ejbV2K)e+@8dW&obEjXCSVXRtpY&K zJFf-Q61;Zm2a4COx#+xh`vv2*yFbjl7WwBcMPB>O4>+$yVlYrVgZ*Cd+CSvPYx`a_ zUOU?2wb%Ea*G_Tq+Gz=13qCA)?F|;Moni6XBESnQ^+UyLW9PtY5lZ_K;I-zO_?mvT z`}3aO3}zdXYH>w*adF9vk{P8%B{R!QE6U0%iY&dDm^zrMb{&opLUEOC470?el@u!^ zXAVCJ&U_N0K_xizA3Zp8>BPgc_=MJNP1_pGiQ<${jx*mw@a%|-XA6aQ-rXbr%cgS| zL3O)Ma(Om{4W@aCOb|W1ix_|Pi4%{Q3y~wmWLNm;(kGDJfK4M|ztBsgp2yj!Q>0Pv z0n75>@|C#TXV^rSMy;L_gMrYr%TJ?5YoHO{!Bj0`8Yyb*J|vw9@AcFTB$>&qQEyA- z@_RfrsNQJQdE1V>m#R^hmo>-AikliMn=310l|?1RCDGEN%2;$}X{;%R@9|m=rgHf` zz8ZB7J%21)F2CFJxg`iQXw=?Kd#h3B@NnI!T;6*WmPYOUt9(4WMvXZ(Mzd?xyF6iI zY1Q5s%uaLmFA2SRm#1D$JuHA;?un|u;p}v>{q0_wjL^&LI1_0grCy%ICeq81BbQF2 z+0_R7d_q0Hj}2mjOg4n@&GX5io|iy9f0h*@y9gyjx)H|>IP#&W&%;q-upv;^>m>X< zl=YpS2x(B>0=5>I9MZ=_zY>)RvJ;oSet_Mt^z}mqI|zOKL7}gIgtNV9ULsq0=<7aj zI-|bs-OjDAFScZeCB2s+pjvk0q4DAD%P5gnA|XQ{amZWZtJ^sHA5poThx9yAy8|VJ zh(A&BODeuj1*q*A_7WA)+RuZ+zLQk(2o&$Vq>5LgvWGNqp|I~sDD1oGDpJ^YTME0V zkix!;F85Q|7daGmGo=~AA53*Hm^C)dnkeDYjibFDDaPk^qWb6{}yM9 zIJ+I04>=_ry-RBEA>3g$jshIe?+-wOKM>OAlLo&Xx5Vj%M7|7{8t*fc{ndDLP<%Di z_@`$jBnw|PK8dVKSbz$zpMbD18N$M^PrKE4Z&H&gkPujipZ7*67=Gb|f*VtWg1H|k zp`hiW3k68_k~FiQSE1nOhgm52%B3t6AcxO62?f9UPznXm#-&g&#u5s~<|Gu{aM6T< z1(r|%X{@*Dw^q4?g4GG3013~ePyoq63I*%H#H3I_s~zC|A1a~X$axeB9=U{sf+sh` zZwU`y`s#-Lqwj8S>9o>aQi3gpgU*+OjZY9i(tDKx!NAorA?<*#Y1)9OQy>t0{sfiP z#%pGkp@*;JwocZFHF24pQm$@8Vv;#7`|+m&y0(D8`y!a_cQw0|CXOuNWVQr`= zD{U$+Ybb4s#wtppSn6*q#ydxrIkAAu@@NFU=7$`5KAEkgF~sw^B?#?_43qgWBhPX6 z2)$tfUNu3_yBB4N7zh|5MQ4Agl9!3~{mZ@BMRyMy;Xix9e_x_I3P^e1t%r?4`y5~e zqxzc}`i4q=tynid#zx~wR1Qv`$Cgi5=SV7 z+cIh*&*;@TJ$Fc-4wg0~!;{04r^t7Jay-k-x)i%$H%vH3(eZfd7%c~TPB3LbK^{fA zEJI?_@Zg)gG}0cl6mAcnOS(OH-%Z$3hEsOZWo(oj^m21y%AhGhX!t76k;=4yQ+XyRpg-|hRzD~ik3q{4J# zQ|J0K}Yzf*PR_u$BA^myWsWroZfHzZ=zey3yS49T9 z3=`@V-}_2nuQ8XTK&6YIvfKwM-@qU~9n!m*jy|vSH`cA-f=P;rHgo;@_NF^`w6r&^ z7Yh*4&Zb5QA_r`)^qde9HeyQU1CFrp4KR<*UEjQ;b-i!LOeM3eGH*(GvVHUduJGhx zMo9lHXXGyu(%S~FJE$yn4`Vx?kHyu7@<5}wp?YK zZs{gH8!lViV!Kx|HLlNecUkT7u2BMd-n9tze*(T9`G4bL&r643MD z+whL~YBFX(e^HwvhwLlCEukiNsZ*IthM?7|Iq(hYaZ8}7jk+i}C?NFU6ZGQ!^EU>1@?V0L)3Iy;yP z(OZ2{13sCJk{Z+O}duFQYL&sBOe4l(!wVkBJ(bafjIrD9S5DzT<9@@HmWrq!o4;Y>dJRJCw|-!U{Vy zVTBz+SCJKV2wg>PQ}j)wnlF^!;mgJ9OTG-1!J_4I)UKkID?|kst+Xm@P`OfcQBw<} zsPofhXq|QgZr+Jd-e19hoA*p8?+H48Jd}4BkAOZ>+Sjrld+|(Iar3SX=||``T>a6D z{az@q4Z{oR5aC}1+Hv+e{%OUkI!fuXq;AE9?go`XYJP+=1m%c4(~2*+n8P1hE(}LbL4DEy_%T9#vb4WpXwFY8 zAZnof1?rO|3sN(>ntJuqjI@)^6zh__Wmbx6;2@e$LJfG6_Nr%^_bm0H;y1tjgVdzl zScWYtE2@}TUQsc#tf{G~xx73E@Al@3%F2?4##jUNAuJ%=NKhjwUwd_tBOCpr@NLea z)6H3`LfR|Nrmdz?+itym9d)pUMcK8=&(vwF5l2}HLUY%PSLdLay9rEi77 zekL2aS1>(*m1*(P-NeqCp>sgH96@9KLxM5e)oOqFM`xUU98K}z>?q2R-q(_U^e|_C zE57Q-$(0zt_2=w|qA~y_Sm*0h{2djaqT+EX_EWK$`m4*0r-GYx3wEg;Cw7KKOYI~m zGqFqURpMgAE>WYaYEgTIt^&J61>b;O$_f@OHHaL(iC-?-(ZXVJV0X1_ zt79gD#9~K9huBfku`?sV0nZvu^OZhabRW`dATDCa47?8O%#6eW=DqxQ{#Jc>x_W)Su6$g4zSJ-8O7~HV z^=cJ|>swF6@9XB0*RDtT*Qzr%YiinWD|eK;iTBAGce{P1>z!N+dM+wU%H9@M*Sqn} zf%b>WBjvHOVW%yD00IagfB*srAbb*H(^QnArl0iNkmkQkd482f*-RQg<)4`r$Xh{^eEMv_hHb*8ZPw=6 z^uCc*Y`#s;#<4n6V4-7>ak3 zo32P85K>^tR&32SY)i94e`cSC>>je0n=48n(47KqqAr0zcM7;!(gXqsAb zRod!6MO&Blsa2?T3AL@zx|OQcs+B6W)w-Z|vzv;obuIsM->Y5g-CY zfCvx)B0vO)01+SpM1Tko0U|&IhyW2F0z`la5CI}U1c(3;AOb{y2oM1xKm>>Y5g-CY zfCvx)B0vO)01+SpM1Tko0U|&IhyW2F0z`la5CI}U1c(3;AOb{y2oM1xKm>>Y5g-CY zfCvx)B0vO)01+SpM1Tko0U|&IhyW2F0z`la5CI}U1c(3;AOb{y2oM1xKm>@ufCRR; z+eb97voG9Sa?6~H%2l>V-{)T)RKt;Qx9W7bYA@Y>+XHZ>QrH-5V__S; z?IG>>0S-~%m9yNt)Z0A2rN-G>+tAwT_B(x{>OiooXO%A+3{?A#)7tCcbkktF8@8+S zZMIGuKbXI~#(&^vORt^1!}ZV>g($_Xg6yyrI%~de<+Hz^SWC@9#3nlFW|0s_!>ff zU%(k~G`2b%o}jC~!SC9jv61l;DjJ;J0%6Ti;5A6*KLXFUt+v_nRzf>H^A@4xO*B}P z8eprkEmLw&IApw(n6|IC$-DU4-ki#|C8gR4s@m1<>kj)>e@7$`?hbcE)Ic!g>uJ+F zi${SIlrXq3k6y19Yvygrav^{Zv}6ji3%@A5X!Wknh*P*{br;}Y|Zo0_#(Y&oFf&CJ+htjN-iaobE|Qx!JP(7Y&3^IXtem9y*eOq%OcHG319 z-?OSY^NvZ)vlVuhq50%A&GSI>xab@2NJ(%pwnk&?5@y~%BU9Wyt3eN$Z)BtGTOo0| zRn^xS)l+SJ6md2}H&8S!#wN3IJi^~^%5>I!{0JqswLuN_L{z~U*>H``QP^b$l!ay} zdi=hZIezutzSw-E##*2ovf~ui81G`oY0R&%t0B%cR;RG-#^vVsIf$nSFSJ4a6Sqe) z#Z5zM++3AF{h`&k$-HASZpsvPhoSkTG|f$N<7SV>9!r?{$XeVq4;VKt2M+>M+`&UBF&pZ|j#kT44u`%bjRCh>ebU*=UW8RoJ^mZIh`sw#nOT&tnFTy$_h7>qB7q*HmJHoqnt|{Js z;~xWO?CW{+VSZ-&##e3de|ixCB0vO)01+SpM1Tko0U|&IhyW2F0z`la5CI}U1c(3; zAOb{y2oM1xKm>>Y5g-CYfCvx)B0vO)01+SpM1Tko0U|&IhyW2F0z`la5CI}U1c(3; zAOb{y2oM1xKm>>Y5g-CYfCvx)B0vO)01+SpM1Tko0U|&IhyW2F0z`la5CI}U1c(3; zAOb{y2oM1xKm>>Y5g-CYfCvx)B0vO)01+SpM1Tko0U|&IhyW2F0z`la5CI}U1c(3; zAOb{y2oM1xKm>>Y5%|ALU}|o2fvWa&huhS)fUi^a`~0heYB&<^R-F!4Ef~+?=C|w! z@7}qlc>k@#W_|6)Kl<`7i+Dx!d|S^L_(3lsKm>>Y5g-CYfCvx)B0vO)01+SpM1Tko z0U|&IhyW2F0z`la5CI}U1c(3;AOb{y2oM1xKm>>Y5g-CYfCvx)B0vO)01+SpM1Tko z0U|&IhyW2F0z`la5CI}U1c(3;AOb{y2oM1xKm>>Y5g-CYfCvx)B0vO)01+SpM1Tko z0U|&IhyW2F0z`la5CI}U1c(3;AOb{y2oM1xKm>>Y5g-CYfCvx)B0vO)01+SpM1Tko zflm#A&Es|ah)$QvJ`_*VL;%g5_R$aRNwg*7!B-j{iV_+M#?IF#X zwxa^C<=&;<=J_o(&eqz7)>gOQ=?hf{f?YkUe9>T_+8;mHlW>kw*sg``ihP@`(*}oX znpT0=j8)=q>m3`ko3)tI%g@e#@ZCD1;Z@;?uPs)IzpZy}(AY?QC%$9y)zaJI-8N@n zRhjA)P5+;w^lMu)^mz?`_A>BQ3ESha-TT)6C4-6rZmMjGl6%4-;{{a80zK{RYkO^n zY=>gCT~U8ctFJ3qv#7%lanup1Zf{fANYR087-I@6;*Av#3_Aczyp-+j_7TnN>!@trtQ;eR5jY(uC{gf*YIb>x?=^<(fX9E_cwSP?s{h^;HztBbcI?&0jJ;N^R(7_ z>Vuy8`uda(1L~}u*WDWOcv@S10e8K_*AVji0?vS=vDM-51YPwFewVq2X>e8xg!}f3 z{6}myd$rA$w-VavnMA*UQxVFH!HOs~y#p>Yb-6?0AJuGisKaYcw`_FDqgrz0JG4&2w3i#tIZxVeGiXyyK=OE+S)()8Jq>N?{J; z6fNdc=-3p%Rx-2p^i0_5l)l*5EFD`8sCY9owiqk2v}4>h)7Vsn%`-GFO4B?SG*{*9 zx;&HS`c%!{gy#3GYRe~IZg9C&^#{s#ye6HT#T*J*t&$7_s_@_x6f+O zL*^S@X!}-3Ty9nMbw>5X8h2ya7H#< zV{;UCnE_>?8Hygi?`4i(y|*tmAE~hx=!Wb#g*C>z*l`;3E9`2BbB)z0Y`bx}`F#%J zDZ&eFkpIN(kxX&ZkQz5vB~X88HEuHRn2eh;h23FjJ}FIeliax3qp`;lWZ$O!6hN8#KhZf^zf%!;b+^kgCYZy1L8<%S~AEaOIO^cVC zYd%tAdw7`MrLa5WVR{#^SJ>P7<&IX^LE~~Knhs*4V_r5|V`CNeu2I`$s*P>(_S*AU zM!Xs;RM^M7Rq&;;QsY;RMWLi6>~{7%{C+@VFKFymjh(Nt2Q;=xV=FaQ zt+8(CQW~4Cu@_-z(paU&CTZ-TvWy*M#j(V^wGpO>Y5g-CYfCvx)B0vO)01+SpM1Tko0U|&IhyW2F0z`la5CI}U1c(3;AOb{y2oM1x zKm>>Y5g-CYfCvx)B0vO)01+SpM1Tko0U|&IhyW2F0z`la5CI}U1c(3;AOb{y2oM1x zKm>>Y5g-CYfCvx)B0vO)01+SpM1Tko0U|&IhyW2F0z`la5CI}U1c(3;AOb{y2oM1x zKm>>Y5g-CYfCvx)B0vO)01+SpM1Tko0V42OCon#@#;&Se-M;RyUyTMMzV>irRnFAh z<^omi=?=H4Z2@1W>i79q2i0&S+^sqtu39ji!;Np*5#GIXP4WIKpa0=kFF4}0GmD@s zxBX&U&zR`>@E>{+0U|&IhyW2F0z`la5CI}U1c(3;AOb{y2oM1xKm>>Y5g-CYfCvx) zB0vO)01+SpM1Tko0U|&IhyW2F0z`la5CI}U1c(3;AOb{y2oM1xKm>>Y5g-CYfCvx) zB0vO)01+SpM1Tko0U|&IhyW2F0z`la5CI}U1c(3;AOb{y2oM1xKm>>Y5g-CYfCvx) zB0vO)01+SpM1Tko0U|&IhyW2F0z`la5CI}U1U|(CuIS1wbf05icuCcjwe2CzE!b6oSI%jhRFi`D}pYA?5O)+d6VC%@Y**a}-tfpx-s($sh4*wc>Zk)3r=1M78@7SQ-ti_aG zelh(A|HaFH=&zPuJA2BzZO*_dGSw>@{7+E^@TnOW_Zoh3*Mg7B;Td-eVVm^UXW5Vj z;;U@)l-v^z880QK?dxswdav!xnYeky4VIcH#>Q!^gf|b%fd+Z*j7-3v)!-6MTI@uA z%=WDSzDiX)qv1$*NOd>3p%9{D`?k`uu0oB~@trg+#!A^_g`d7D)9Lr|6DYB*PBqjM zQO##&!wthNX@(UrJo1%m#%d=do_6T(hy=pj;f{zJ2!?z;ZThnfT?!B@VQ_vPg?%SLN#gu+fY_H8!ryQzsw$=G=`HcDe>DC}(G6epTa!SZ8XmaktRVAM95YGa$c zaDf*sT%b^4Yj}&rUu=!Wg77UBpC8%`iX~<9_?*I;Q2xS87F~K_U7~&QX_oQxOoHRhInSB4BiCmw;XMiGDuwM@*sd_; zhYGxAtP+1qOL34FD>|a#RpE%QEmn!Yt#@t!`#jcCUM;;X84+iSOFaQ9w!)YsRi&k3xZ*WDWOcv@S10e8K_*AVji0?vS= zvDM-51YPwFewVq2Y2e-h;lBMM{}G$bUJdDJCA8BsiGIOJ63R@$iYSedWSOZ08dH+R zFhWJrlON6l`pkKC$5wx;Hapi?Je0 zJ0>PJY^uWM8JZWFZR@koxzN;AIlC^;q`5v-vp1pnJ*%2C@0ip)TVZDznomyCJP$OF zi@x!Wlmr*!bD(tzGw)lQQO`HJkUpVKU$HqGc^cvq>B(#ykMQ>`Pox{-6X}%YqO%d^ z(`=5yE;FDkG(*wj_r1*Vs}Hw}%|~jig->FSQ&?lXiyfyizrwDDIEUqc!nPZio8RXk zT(#ssaeE|F+%%-d%~c81A6ku@%sVFIrc7aX7@AK?)7&ICZuV&Gv4okAti?_9fN|q; zq{PifhZ{F8M?7x!8&LWzKlQlz&|=&y=z~)fH!BtP8ph4*#^usiL2p{TT*_K&4-eD3 z6n1AkOz#5r3VU0>+|dde)oX{^-v zRbx@;<7@)|m&QJTpLupWdmes2ps^P;cB{tD*VqFZ+oZ9T8mrb=H*_hDP1o3quz1v1 zrN$;{?4YuY9c0C^#Jsf;riO*EmBTijFS7d0FTy$_h7>qB7q*HmJHoqnt|{JMJoUZz zK7RkYb^Oe^8}G4gyl3MR8()Qg(2EEV0U|&IhyW2F0z`la5CI}U1c(3;AOb{y2oM1x zKm>>Y5g-CYfCvx)B0vO)01+SpM1Tko0U|&IhyW2F0z`la5CI}U1c(3;AOb{y2oM1x zKm>>Y5g-CYfCvx)B0vO)01+SpM1Tko0U|&IhyW2F0z`la5CI}U1c(3;AOb{y2oM1x zKm>>Y5g-CYfCvx)B0vO)01+SpM1Tko0U|&IhyW2F0z`la5CI}U1c(3;AOb{y2oM1x zKm>>Y5g-CYfCvx)B0vO)z-NQN#9X&sRehaNHQL^;h9lu_)#-3Ka>wV^KzUcUuRH8l zqrr%;Jseq;Gc~ulKvjFX!)>Y z5g-CYfCvx)B0vO)01+SpM1Tko0U|&IhyW2F0z`la5CI}U1c(3;AOb{y2oM1xKm>>Y z5g-CYfCvx)B0vO)01+SpM1Tko0U|&IhyW2F0z`la5CI}U1c(3;AOb{y2oM1xKm>>Y z5g-CYfCvx)B0vO)01+SpM1Tko0U|&IhyW4zOcA)Eixs-hu`j%&>dNx7)1G|fY`k>) zZ4ZE<$*?il#=tge+e4aLu&V;EoaNr7-sbr&HO|)BhSpZM-{}ig2ZCKat9;R5pxPfl z-Fj0}b-%8JU1TtHC9jwAhLKnC)8ue3hzp zM#GWrkm_!5Lm@=R_HCtQU4F!l?7@~y z!uH14C`&tfn|FDe=Q3uf^_tagQrKw=XE5PoNE>_|mpQ#96~imnv)vT9!$4@NlJ)N=h9A?&g(ZU6?p7l15&nc`4%7+Fsis+o4!(SJYqA>gx*DEb8#XQ&Br2)$MHx8!0-F4P#7UMZCr0L1qVFiI=jy z-9Dmuoqgfvl3V6nR6f81RpUqVkm4cA2l&y@R>u!;2*0Sc;n`jXr<(@b-LPGa(aMic zSzo+#*ny_)OPNNy+_3_PIR4Dp_}a(iUhi-4INbHlP{3E$(C7-ah5}B%$LDFS_0$JF z_4W1XD($wxl%E2<_>Agg%gYgx=K@gGB>O z*E8=MUsv?AG&x>j(+n$1`&fZ>2`geF<0E{L#tIZxVeGiXyraG-Igqi(X>c$sahSt6 zg?KqvGPCydOxWsDu(4VCa*i)!-^`3H#)>TMn3&kGsS2BCXkKKtt*^P~LQ_}e?7BRY z=K564-h}4&tZL4@V^Z^Mg`H(+J~>VEJkUHY`o=p_5?qY0{MIGRyl-trJ>Td;`fY^% z?o;vG2b0-29^vm>o=7*uZy%&Q9^BaocM;eeg<&ZoNoks!e@tek?aEp*l;Q!Lt2k>Y5g-CYfCvx)B0vO)01+SpM1Tko0U|&IhyW2F0z`la5CI}U1c(3; zAOb{y2oM1xKm>>Y5g-CYfCvx)B0vO)01+SpM1Tko0U|&IhyW2F0z`la5CI}U1c(3; zAOb{y2oM1xKm>>Y5g-CYfCvx)B0vO)01+SpM1Tko0U|&IhyW2F0z`la5CI}U1c(3; zAOb{y2oM1xKm>>Y5g-CYfCvx)B0vO)01+SpM1Tko0U|&IhyW2F0z`la5CI}U1U^j! zCg!^Bs_N^Es?qj#H5>_dt4@crkqOIPj@>Y5g-CYfCvx)B0vO) z01+SpM1Tko0U|&IhyW2F0z`la5CI}U1c(3;AOb{y2oM1xKm>>Y5g-CYfCvx)B0vO) z01+SpM1Tko0U|&IhyW2F0z`la5CI}U1c(3;AOb{y2oM1xKm>>Y5g-CYfCvx)B0vO) z01+SpM1Tko0V44K4S~%qd4j@njz}Qf9qx!Eo)L5D_S+r+D5bD5 z*v7&(dfP+V@dF&9z-zg8skeE4OO3O&wxPAv?RWY@)q!AF&njOu7^wEg&-z0A%-6wx zx8&Pwoi;dB)3jN^^E;!#t}YM~o1Of9y<>xRvldf&`4#vN*tG&5W)rK#-_|=fXl$gu z6W=lUYU!Qp-8N@nWtr*~P5+;wSb(4zO1*|#yBl0q!uBL=yWjf1YgbXgTa`^wa!)v9 zynt3&pr^fkZLjT+?NF??E9$Rl^>qbn7IpaHi9{Wd>h?B;jT9ZohB2nFBHoDcps@qK z#7nuNixs-hu`j%&>dNx71y4kZA2b<`;PE>Kwo%Y@Zo#hn8adVi_dYmHF>D)P>oB!s zjjBJ7sjb7mhCh#~A?8XcNDEaXCEgX(4Qr z%%S<2GoPOOlh=D~Z_dQcD{j!NIEt}x8Y|%$gylekJbFf^tnjP`muS*r zC-P&qZ-oG>Qq|6AIMN+b-3@NuvYNJiTWMKWp~mWr)D>f;Y_h^n-<0X}`}hfz*jA?+ z>WQf4Gqd4_;g&SR3K$->af)9%L6E8g!H}<~jXyKY<>bA!gu(fF6neE-v+g?=ggw}j zN!Z>P8)a!nZ}Tp1^IXOZwO+H@O$s|rVM{btY*fxQS88nX-d#;>w8BOy&AXIlFB`3~ z5ehrq*tgld@1`a$C1dB&*eH#ip|G=!Q=Diz1(!UdkRaDhUF zt>G;ef3YLJjbP*F_n9^98GLMz9qF5rqO@Pjr2OA%2$7rHhf~=Q2 zK-P0PEN4BJgKPXWWWA>{a?KQs$$>dN>lr>j(X97L8Zv@aZq|D)yIJqKtYy8CuUs=W zQ`U1S{bs$Vt!BNZ3wXj_Q0fXxk(V|1NHtC3lSA`?Kwpb z2~Y!fFlLBt_f3HIGVsM$B#*;(uX)<{nKvj}N@Q&fvc26tqIsQt;pUQC=3G=hzynp| zAu3o*_xlW19<0`eXL}vA;xyRqhV5#MR(^cS`r@U-4m53F$~4;Ljuk+}@n_M-*FG-y zdVhn*;jVXv0=~M2Mpvjc6ma@IK2K|{r#|SZudh#8%!5vA=XJM+Jf7B8U%*}O@HK?| zzJN2}Xl!*jJV94|gWqLd{cCVm=nZhYVnD)u`$hgEHk-W~CSfZfl{}N^7jP;ES(+TLuxW;srG2cx zx`Y+6k?|3}NMi*Gt1xz4V%||-lpM&|<1{!JmN?8|oI<>uE16k)dM0djDcIO7eL2UM zv2SL^7Gp)0c1%oc*i?nhGc+$U+t!`iEX&#LCkJ0>;HR@hmF z=9AMj&jZclqHnw-CBen`%5Po5%=^}6)bovOq~AtJU&%Ndc^cBR7@N$-@d$t4@vP}2=CS8KXH2`Q`|J9#?4g;)E`=no6I{V_xa`rm;$mP14vwWf?ojiergeON}r!EQGBbw(0!VQos2{SZBnL0te^9 zR>Y5g-CYfCvx) zB0vO)01+SpM1Tko0U|&IhyW2F0z`la5CI}U1c(3;AOb{y2oM1xKm>>Y5g-CYfCvx) zB0vO)01+SpM1Tko0U|&IhyW2F0z`la5CI}U1c(3;AOb{y2oM1xKm>>Y5g-CYfCvx) zB0vO)01+SpM1Tko0U|&IhyW2F0z`la5CI}U1c(3;AOb|-lOu3UZnIrgySjbdVZZ9{ zhy=pj;f{zJ4Mu$J;mE4IiMej5_jN|qXnVUFj)c2ar^DIEgyk+r?)coA>V-{)T)#Iw0-!LFTK-m)XSd*_c6uk`mZ;IBZq0;fuj9e8ZQ1KKw^N{~d0tp3+;i@jYAq`fA&SU)}ig z4T~;Ze!-#*)7DpCFutE-sF(;40U|&IhyW2F0z`la5CI}U1c(3;AOb{y2oM1xKm>>Y z5g-CYfCvx)B0vO)01+SpM1Tko0U|&IhyW2F0z`la5CI}U1c(3;AOb{y2oM1xKm>>Y z5g-CYfCvx)B0vO)01+SpM1Tko0U|&IhyW2F0z`la5CI}U1c(3;AOb{y2oM1xKm>>Y z5g-CYfCvx)B0vO)01+SpM1Tko0U|&IhyW2F0z`la5CI}U1c(3;AOb{y2oM1xKm>>Y z5g-CY;4?$uqQLOs6H80&myGWAwYCM@I|9KrwW~Ae?=tE?=Jwtj#Q`V9|adJ&l^5*;zau;xjG%4i~eI+A0m2D!rrHy#mr&DCVqZme=Kw_ zs#E{Z@QZVEhfgdkvtP2n@ZZrB^#|2ZxGmV#W%`}s!F=ob_Ug8 zboblv;YfFIRWPdR2b>oUbg%Bx_cfi1$7C?j6Ah|7){JUVu!W+*uGMX8 z;R*Ad-LQ9{WWmW0vhlDjnOV<m_R{@y!}diW;q%fpMH zY}l~)-9rm?_*TDoS5DfWx+PW{@e%k|J@mSaxY~x@Xz3n0Ga|0ctz$<6Dcd55| zeoKwBwYH(P)$MosLe+s_SI;UROqHtr@$+5@=i@`{3fShuK-_8L2lJQL_z(PS>9yNl z@@|_m@Ch^3D;k{2igHcq<(KyA3Uj{Xvf1X{X|p%&wb@7g=dDkdL=EIr+3fZ|E4e2e zGG0n7_N><1Y87 z!i@lrE3en`?1d4_rT(9&{socx=PapD&^P3}LFivlew=<> z|C^})Z<6%qj6?m;i}e4-l72mDe!0gN;P7j;yqqFb595?k4uwae_P@*0-hkSFC(^#( zl6HfAT&3#tfKV5z=j@aE8&Us1Wai?}s|Ff3#>obHv@LZ0*4#a-}#ly@-FNU(S zQ29S)DZdz%KPOWDjCJMkt`JuaBW=zFCgplDlwE?#-;||%2P*%KNcpd=D_>issy`@6eeMKQ|BOieuPmw8GbDfa5Wu@&bj=-u;vqvC z~Wlp!9R7{$H}xpN;DGiPS%7 zNxhyQJMl|L;~{)8pvI(Lw0L_7?uxf@YCaF16& z>1C+?U0LdHNA3_tMe*ONK9`kNUlk7{Vy&M*=Fhzr+ z0P6lomhQ_@_hTa64_nf$$4qy)osX<;NRsSgR1Ps?ltbYasQqJE+V4c|zYuBvxh3sz z!yZ-`T|s|GB+$k6L!x9mP(NhQWF1u8g&zJZ%fmD1;Zc!?y_P(4k_$a=27G}4d}c^>!)k=RjSe7h#w(!oy|{Y2O_KV& zDX9Kok@|-$sn^HaHNmx9JFG|YCZKj0YxQC%I~tYSWhwWf@}G;8KWIt0gGY}(EE%Z> zhTFX3Q9Y!jL=}`bp@SS*4npW)ugJjzmK^Aj!}AP}oLU%h^Ug;75IOM*C|!l>b7iUj zDysjPNd5hm)a(3P+t$S2K&yp8H*YiQ2mXmFDE}HdV6q(aqJxJ-4(_w$Kp%HOrXSwe zfd+taH}7^d0OKy!K=CfrpC?QIZ&3e(BK<$Lq+cHc43+xKp%zBpyrA`g2kd2sVgggT9u zfYEr^By<7&+*}J)CFmnxmX8zB$9*CnyDj<9<0;eypTmv!2pEos%|RCsPsuu{Xh9DJ zvOI**!%syX?zQA0-WG-jqb*=a9_B|EdRruGq3Rs;Q7FsDmFVLqA|F4tyBF8wX^Zq)-L^sr~p1^>iM-yNX#d2~}G%gx8= z=3bGTdj{{O2i?GUJ?uXMH}M^y_P^+6lq5I9r=y!6i`@Lck{f;1)@Iz6^T3!rdS3TB9x|zqS3qeysy{-O`mLz`9+CRHEveTtD!k7NpI3v7>VXk@_*YRrWK^ty z;%%sZtStRMM*Tk!>A%a8eto{(1-Iwgf)Q>22It|uXaMHhi7F_+7afd~<>2?|V3)|j zot7Lxh|gWHs73X_Xg2&eDE(Mo1_dvo<|8F(&bOiFUXkWIENRy7Z5gUz5F7phs)l=8 zhVFbj>K-pkcNyxwTcrE@mUQdU(%#BHx65yD)dBMSV^BPpN>o94IXaji%fU(L;4YDa z+bucZxpJNw>g?dRx9Xw0=AVfAXC^A3bRnvrC`)|@s=rgD{(F|xbN+^UeG=LLqiuc| z^;epzpu7_u93{)a)#%_3k%OI<9OyIYRgoUQdah4x3wOcC!eF$`zYj~$kL@VviZ3Cs-iH#Qnz*vh{LJy@Bik~7&dDDO?qswwRhE?~TDeVR<>nz+2}Yyb3XIGJZ6YhY9_qT#$}zI6T#Ht2 z6^>pwwm-UF65;0#<9LTBx}nZA_D8<5jeAi^#@zEZM-e=n4kc=q~txUGRH!VYEfO z5-MIp6VoM`C>(|+ZWfvNwj~qT7VyqTm(dmt5K)CTbYZjw)GD4eTFRQ52ExNMbf`zNxHsl>o_+N`Y=cr?m_i%mjbJx_#reG-x7)6J{a+xJvw;^oDqxri02hhxB|sj$r67) zivOla{MCaN?{dI91tX#&@oQ21Y+2%OMDf>(#D8Nj;zPlXkm_>qu(`I6cwPa8-$wD( zvc&I2@z;pNZySPm7-&b_Cldd26kj7t{GU<$c9Hn4mc;XX4{OK}EL1w+&v_j@>R(0q z`rQem3X1=N1{{(Mj2wvut`-@H4aETe>$Q=?ga$?yp#i5X15PyX4UvJXEE(W$^+5}C z!o=UN-y{kK;A8gC2S!$+4M*w@Q0YQ5E?H(yLo?e%X0AL8GtehSE*;3s7toAbmYMZv zW~<1|*Daah%NgD`_?|Ob%{0m~a|W9Es>sY&ESceVF(7-L8-fp!L||IQ|N5!u z6!cMPs)O<~(ZX@EEL?~dwumfTHZ%(`Di)pJkA;nB;dogVZb1uIh%9WjWP#t;(_5i4 z3UBa3Gw{C+DY_9oRGBNG;=5?#bFxf4h9)i-nYeU_CSX}ww6{MKkE4mt%QEo~H1QRY ziAyY*h_9o~x;^S|CcEOzsK+ivCKFW#eXYvl9*Fb3l%2#B`|02r2R3v}XP~=1Z z9d(*e{+Cd`SC;&XQ2r$%`5P_CkBX9@HPzU8tqJS$GRA zY!X?xU}zR#SvTsh{aAP#Ewo6oFnT;%*eJ5F-japm;w!pnFsQcr{A+qTRrs<$A2bIn z>_(49FSR@=!IvlZ*$H--fTrfkGIbo9x=>_l-C>%7W!~u8Os0-UQ}bk*Qqj}~k*T$o zOu@T9_^BTk|M2#a@G`v= zN;aeH1+rv+4`r_x$v$tevSElDeM_3`+fnvOvSj}XWv>&-KG%|L2o(I3zl(nwd-P){ zd`99!{-d8p=?i5^e+Q+n6-n>0B%S|3i}C3~7yl^s=zpN{a-$fE{)NI9NfJKhC=`Ca zNO>iQqFI$og@eN%0r@34nSh9?{2z8em#ZYuP z3STNq_#G&`TO_=5u)^ygg^#%{UHF|Se3>lazeeF*BHoL(vozzCxC81%-Etgtu82&L1BF!XXzPahypwFNPv73O`kr@E{8B5D8ynNjTic z(Z3=(=!3jc55aPTiqb2v0t!PY{xn(Qx1jilNc=gL#KUZ*yS>wRGl_rN@`y`O`;2%w zlzkPYe?gY?yHR?(NP2ki(qYs;;(G$=y(s;3SAykgXULNN zK1yFBlD;Y~9llq7=H`~X!sd1P3olu{xftG2iGSHW|7sQZy8DiZ5%BPx=<)BQFNI_H zcioSLjepnu@dF&9z{}b<-M;{5<7d7Owk`NI@|vd23ZCBy4-)DEA+g!X-`6`fq<$H@ zW^_Oh8mq*wabNG;pfUYsC0Am4we)6QMO*mFd`;2dq!u6;xZ~fNZ?n6>WhHD+!nQl{ zt@;1=>?(@>75s`R1eI-N0eJe@+Fsis+o4!(SJYqA>gx*DEb8#XLl!zB)$MHx8!0-F z4P#7UMZ6W`p=bwuiI;Lk7b|q1V_$el)s^LEtE#Uvsz%$}^`|z#_X;~3;|EQKBY6Cd zfo&8t9lX(=wkyAe#YZ&U2d629Z3Ao_roe^!&iv~9eMx@xh8VmV)2ARUg!x7LKG%WW zpD`O)3Q|2p`}5g1G;`O2kIQYgoQ1GWGKc18&XAD+=b2(JrtO1gKX|Y0&6&7)#SNMj zM=>@|VWvnI%6n^ zu~If!;iqrPbozb#1n}etXZ*<#$uqOzhT)bp!wMK4wQ-7HJ3)}D;}0@{7UBpBfrZiTj%wuJ&D3(ZY z6QDEZ!N$khF&ZSRv{-_ympee#b2%($J(q)P{4`{}r!sQQ6pSz|YhXs0-3_0gXx95A z4H>~IH|sr@-K_Uq*0SEnSFRbGDeJkEezV@wRmtL4$v*5Hpp7SO_)-=!b_?OlgPx8VYdB(H0KH)QUzCO7Ywku52Jkg>< zv^MF8hF68*@w>4~{B3}>N#?gLEhWHs3KZM!n*i-);ES(F9*6B-^R(|XZ&0+9$l4lY zd%Jx^^E&&&%_X z4Ys>syBedFAD^=<}&{JPupR$+-oz~9lZVh=nt*yR*yWZhz2*H=|I0KHxR)@nAbk#TbUFOxl z24^)^>H`w)+b{ATvDxg^FbP`;spOeNzkpK_N`B|Z5=vuAvdlbx))!)nVO>($wxl%E z2<_>Agg%gYgx=K@gGB>O*E8=MUsv?AG&x>j(+n$1`&fZ>2`geF<0E{L#tIY`{{n_3 z<{kA#N#c$sahSunmUuZ=GPCydOxWsDu(4VCa*i)!-^`3H#)>TMn3&kGsS2BC zXkKKttvB^tXzHq*U6*IlT%W30e;YtwdcS8?bLJhBnrAEQEJO3jX`1JO=5f(C-jR~v zVtnPdF3|w*TbohOH?om_8=>F(H(HEMX5)B-zi)XW-4MThkap(_?jo=`3cJjJvd|1g zkKfE++HV}W*nFhMTKLlaIE6LFyV!9W^DFFXh;z6JqOk48LG$|@g!gLlpSV4eDQ+5+ zzLR)%RRZ;gR^uk~j>)(wQ&{}H-jmWaH_45gJsQ(LRibx-kF3Q_^MG*^UjZlM=A*-n z87xXJvL{YD5Z=z~)fH!BtP8ph4*#zE=#e%{PDu`!NJxx=)Fhv{7k zyE7i9cL95ay{%vFXoVd#4(fBCXf)g>f*Vm|6&8OhI_*AD9?OVVW3XcSSf5qIe`u`K z_)TL`m<_QB{9hXT0Dk7#?d*B@{eZ?^(AcdSJ6~fDXl#?lR%)zTWAI2$cyi=)jlBrB z%rsW1!6PQvL1h^`$ckf$TT6{FH7ta!9JcBF)>6OuMObIVkOBwi!e-mDBfNX(n&SP( z|K-K&etF8?Zhq!r8_%?Dynf?78`p0>Y5g-CYfCvx)B0vO)01+SpM1Tko0U|&I zhyW2F0z`la5CI}U1c(3;AOb{y2oM1xKm>>Y5g-CYfCvx)B0vO)01+SpM1Tko0U|&I zhyW2F0z`la5CI}U1c(3;AOb{y2oM1xKm>>Y5g-CYfCvx)B0vO)01+SpM1Tko0U|&I zhyW2F0z`la5CI}U1c(3;AOb{y2oM1xKm>?@90Db|Ep}Dy>h^Vq{c1Q8?hgCf!s~)j zH4qH>dfK{&9h2Lf+`-=w3BWEL5j7f&_}asfRe2M0-B9oAjH=Q0cKr;h)8TAn!g7}* zcYJP5@_cxfoT<6Z1*+Q99d1+G0=`bw@AIz?;@Moa;B_YVyJbgs_s%uN`#*T-#{Yc3 z;)$c6Xx7$k4{6SX1w5kyFHPINZMLd*w|9oZZ9&yl->Bss@lJ2NW=6am%0A#_O0V61 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 tc{x#Z(~^;NAwkR$4sj " + curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.inferres') + os.system('infer --pulse -- clang -c ' + stdInc + ' ' + curDir + '/' + dirFiles + " > " + curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.inferres') if os.path.getsize(curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.desugared.c') <= 32: sumTable.write(sumTOut + (maxC - len(sumTOut))*' ' + 'SuperC failed\n') @@ -260,7 +260,7 @@ def main(toinclude): else: os.system('clang -Wno-everything -emit-llvm -c ' + curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.desugared.c') os.system('clang --analyze ' + curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.desugared.c 2> ' + curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.desugared.clangres') - #os.system('infer -- clang -c ' + curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.desugared.c > ' + curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.desugared.inferres') + os.system('infer --pulse --enable-issue-type -- clang -c ' + curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.desugared.c > ' + curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.desugared.inferres') if os.path.exists(os.getcwd() + '/' + dirFiles[:len(dirFiles) - 2] + '.desugared.bc'): report += 'Desugared Clang Results:\n' ff = open (curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.desugared.clangres','r') @@ -268,8 +268,8 @@ def main(toinclude): ff.close() os.system('mv ' + dirFiles[:len(dirFiles) - 2] + '.desugared.bc ' + curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.desugared.bc') report += getClangAlarm(realFile[:-2], warningsC) - #alarmi = getInferAlarm(curDir + '/' + dirFiles[:len(dirFiles) - 2],sumTOut) - sumTable.write(report) + alarmi = getInferAlarm(curDir + '/' + dirFiles[:len(dirFiles) - 2],sumTOut) + sumTable.write(report + "\n" + alarmi + "\n") else: report += 'File Failed\n' sumTable.write(report) diff --git a/fonda/cpp_testsuite/varBugs/summaryTable.txt b/fonda/cpp_testsuite/varBugs/summaryTable.txt index e0dd731f..cbed33ca 100644 --- a/fonda/cpp_testsuite/varBugs/summaryTable.txt +++ b/fonda/cpp_testsuite/varBugs/summaryTable.txt @@ -4,6 +4,8 @@ Macros: [-UTEMP_RESIDENCY_TIME ] Desugared Clang Results: Original file has no warnings + +none 0 0 MARLIN 53be0f3399e.c Macros: BABYSTEPPING @@ -14,30 +16,40 @@ Macros: [-DBABYSTEPPING=1 -DDELTA=1 ] Desugared Clang Results: Original file has no warnings + +none 0 0 MARLIN 31873ec707d.c Macros: ULTRA_LCD [-UULTRA_LCD ] Desugared Clang Results: Original file has no warnings + +none 0 0 MARLIN 2d22902d080.c Macros: SDSUPPORT [-USDSUPPORT ] Desugared Clang Results: Original file has no warnings + +none 0 0 MARLIN a7fc1f83c81.c Macros: SDSUPPORT [-USDSUPPORT ] Desugared Clang Results: Original file has no warnings + +none 0 0 MARLIN 30248214c7f.c Macros: defined [-Udefined ] Desugared Clang Results: Original file has no warnings + +none 0 0 MARLIN 2db384a21d6.c Macros: MESH_BED_LEVELING @@ -48,6 +60,8 @@ Macros: [-DMESH_BED_LEVELING=1 -DDISABLE_M503=1 ] Desugared Clang Results: Original file has no warnings + +none 0 0 MARLIN b8e79dce897.c Macros: ULTRA_LCD @@ -64,6 +78,8 @@ Macros: [-UULTRA_LCD -UENCODER_RATE_MULTIPLIER -UTEMP_SENSOR_0 ] Desugared Clang Results: Original file has no warnings + +none 0 0 MARLIN 8c4377dd635.c Macros: MARLIN_H @@ -101,6 +117,8 @@ Matches: 5 has a match! Unmatched ids: None! + +missing1 0 MARLIN fc3c76fc164.c Macros: HAS_HEATER_THERMAL_PROTECTION @@ -111,6 +129,8 @@ Macros: [-DHAS_HEATER_THERMAL_PROTECTION=1 -DHAS_BED_THERMAL_PROTECTION=1 ] Desugared Clang Results: Original file has no warnings + +none 0 0 MARLIN 831016b09f7.c Macros: ULTRA_LCD @@ -121,17 +141,19 @@ Macros: [-DULTRA_LCD=1 -DSDSUPPORT=1 ] Desugared Clang Results: Original file has no warnings + +none 0 0 MARLIN e30bfedce4d.c Macros: ENABLE_AUTO_BED_LEVELING AUTO_BED_LEVELING_GRID [-UENABLE_AUTO_BED_LEVELING -UAUTO_BED_LEVELING_GRID ] [-DENABLE_AUTO_BED_LEVELING=1 -UAUTO_BED_LEVELING_GRID ] -7 :: Line:24 +8 :: Line:24 Value stored to 'xGridSpacing' during its initialization is never read [deadcode.DeadStores] [-UENABLE_AUTO_BED_LEVELING -DAUTO_BED_LEVELING_GRID=1 ] [-DENABLE_AUTO_BED_LEVELING=1 -DAUTO_BED_LEVELING_GRID=1 ] -8 :: Line:24 +9 :: Line:24 Value stored to 'xGridSpacing' during its initialization is never read [deadcode.DeadStores] Desugared Clang Results: /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.desugared.c:48:6: warning: Value stored to '__xGridSpacing_1' during its initialization is never read [deadcode.DeadStores] @@ -139,10 +161,12 @@ int __xGridSpacing_1= __left_probe_bed_position_0 ;// L24 ^~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~ 1 warning generated. Matches: - 7 has a match! 8 has a match! + 9 has a match! Unmatched ids: None! + +none 0 0 MARLIN 7336e6df070.c Macros: Z_DUAL_STEPPER_DRIVERS @@ -167,12 +191,16 @@ Macros: [-DZ_DUAL_STEPPER_DRIVERS=1 -DZ_DUAL_ENDSTOPS=1 -DHAS_Z_MIN=1 -DHAS_Z_MAX=1 ] Desugared Clang Results: Original file has no warnings + +none 0 0 MARLIN fdac8f6cece.c Macros: ENABLE_AUTO_BED_LEVELING [-UENABLE_AUTO_BED_LEVELING ] Desugared Clang Results: Original file has no warnings + +none 0 0 LINUX d530db0db90.c Macros: CONFIG_VORTEX @@ -183,12 +211,16 @@ Macros: [-DCONFIG_VORTEX=1 -DCONFIG_PCI=1 ] Desugared Clang Results: Original file has no warnings + +none 0 0 LINUX bc8cec0dff0.c Macros: CONFIG_JFFS2_FS_WBUF_VERIFY [-UCONFIG_JFFS2_FS_WBUF_VERIFY ] Desugared Clang Results: Original file has no warnings + +none 0 0 LINUX/d7e9711760a SuperC failed LINUX d7e9711760a.c Macros: @@ -201,18 +233,24 @@ Macros: [-UCONFIG_KPROBES ] Desugared Clang Results: Original file has no warnings + +none 0 0 LINUX 51fd36f3fad.c Macros: CONFIG_64BIT [-UCONFIG_64BIT ] Desugared Clang Results: Original file has no warnings + +none 0 0 LINUX 208d89843b7.c Macros: CONFIG_HIGHMEM [-UCONFIG_HIGHMEM ] Desugared Clang Results: Original file has no warnings + +none 0 0 LINUX ee3f34e8572.c Macros: SCTP_DEBUG @@ -236,6 +274,8 @@ Desugared Clang Results: ^~~~~~~~~~~~~~~~~~~ 2 warnings generated. Original file has no warnings + +none 0 0 LINUX 472a474c663.c Macros: CONFIG_SMP @@ -246,6 +286,8 @@ Desugared Clang Results: ~~~~~~~ ^ 1 warning generated. Original file has no warnings + +none 0 0 LINUX 657e9649e74.c Macros: CONFIG_PREEMPT @@ -256,6 +298,8 @@ Macros: [-DCONFIG_PREEMPT=1 -DCONFIG_TCP_MD5SIG=1 ] Desugared Clang Results: Original file has no warnings + +none 0 0 LINUX f7ab9b407b3.c Macros: CONFIG_TMPFS @@ -272,11 +316,13 @@ Macros: [-UCONFIG_TMPFS -UCONFIG_SHMEM -UCONFIG_DRM_I915 ] Desugared Clang Results: Original file has no warnings + +none 0 0 LINUX 36855dcfc98.c Macros: CONFIG_BF60x [-UCONFIG_BF60x ] -10 :: Line:6 +11 :: Line:6 Value stored to 'wakeup' is never read [deadcode.DeadStores] Desugared Clang Results: /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/36855dcfc98.desugared.c:32:2: warning: Value stored to '__wakeup_0' is never read [deadcode.DeadStores] @@ -284,9 +330,11 @@ Desugared Clang Results: ^ ~ 1 warning generated. Matches: - 10 has a match! + 11 has a match! Unmatched ids: None! + +none 0 0 LINUX e1fbd9210d5.c Macros: CONFIG_LBDAF @@ -297,6 +345,8 @@ Macros: [-DCONFIG_LBDAF=1 -DCONFIG_AMIGA_Z2RAM=1 ] Desugared Clang Results: Original file has no warnings + +none 0 0 LINUX 66517915e09.c Macros: CONFIG_SND_FSI_AK4642 @@ -310,55 +360,55 @@ Macros: [-DCONFIG_SND_FSI_AK4642=1 -DCONFIG_SND_FSI_DA7210=1 -UCONFIG_I2C -UCONFIG_SND_SOC_DA7210 -UCONFIG_SND_SOC_AK4642 ] [-UCONFIG_SND_FSI_AK4642 -UCONFIG_SND_FSI_DA7210 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -UCONFIG_SND_SOC_AK4642 ] [-DCONFIG_SND_FSI_AK4642=1 -UCONFIG_SND_FSI_DA7210 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -UCONFIG_SND_SOC_AK4642 ] -12 :: Line:24 +13 :: Line:24 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-UCONFIG_SND_FSI_AK4642 -DCONFIG_SND_FSI_DA7210=1 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -UCONFIG_SND_SOC_AK4642 ] -13 :: Line:16 +14 :: Line:16 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-DCONFIG_SND_FSI_AK4642=1 -DCONFIG_SND_FSI_DA7210=1 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -UCONFIG_SND_SOC_AK4642 ] -14 :: Line:16 +15 :: Line:16 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] -15 :: Line:24 +16 :: Line:24 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-UCONFIG_SND_FSI_AK4642 -UCONFIG_SND_FSI_DA7210 -UCONFIG_I2C -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] [-DCONFIG_SND_FSI_AK4642=1 -UCONFIG_SND_FSI_DA7210 -UCONFIG_I2C -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] [-UCONFIG_SND_FSI_AK4642 -DCONFIG_SND_FSI_DA7210=1 -UCONFIG_I2C -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] [-DCONFIG_SND_FSI_AK4642=1 -DCONFIG_SND_FSI_DA7210=1 -UCONFIG_I2C -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] [-UCONFIG_SND_FSI_AK4642 -UCONFIG_SND_FSI_DA7210 -DCONFIG_I2C=1 -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] -16 :: Line:16 +17 :: Line:16 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-DCONFIG_SND_FSI_AK4642=1 -UCONFIG_SND_FSI_DA7210 -DCONFIG_I2C=1 -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] -17 :: Line:16 +18 :: Line:16 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] -18 :: Line:24 +19 :: Line:24 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-UCONFIG_SND_FSI_AK4642 -DCONFIG_SND_FSI_DA7210=1 -DCONFIG_I2C=1 -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] -19 :: Line:16 +20 :: Line:16 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-DCONFIG_SND_FSI_AK4642=1 -DCONFIG_SND_FSI_DA7210=1 -DCONFIG_I2C=1 -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] -20 :: Line:16 +21 :: Line:16 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] -21 :: Line:24 +22 :: Line:24 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-UCONFIG_SND_FSI_AK4642 -UCONFIG_SND_FSI_DA7210 -UCONFIG_I2C -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] [-DCONFIG_SND_FSI_AK4642=1 -UCONFIG_SND_FSI_DA7210 -UCONFIG_I2C -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] [-UCONFIG_SND_FSI_AK4642 -DCONFIG_SND_FSI_DA7210=1 -UCONFIG_I2C -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] [-DCONFIG_SND_FSI_AK4642=1 -DCONFIG_SND_FSI_DA7210=1 -UCONFIG_I2C -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] [-UCONFIG_SND_FSI_AK4642 -UCONFIG_SND_FSI_DA7210 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] -22 :: Line:24 +23 :: Line:24 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-DCONFIG_SND_FSI_AK4642=1 -UCONFIG_SND_FSI_DA7210 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] -23 :: Line:24 +24 :: Line:24 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-UCONFIG_SND_FSI_AK4642 -DCONFIG_SND_FSI_DA7210=1 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] -24 :: Line:16 +25 :: Line:16 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] -25 :: Line:24 +26 :: Line:24 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-DCONFIG_SND_FSI_AK4642=1 -DCONFIG_SND_FSI_DA7210=1 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] -26 :: Line:16 +27 :: Line:16 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] -27 :: Line:24 +28 :: Line:24 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-UCONFIG_SND_FSI_AK4642 -UCONFIG_SND_FSI_DA7210 -UCONFIG_I2C -DCONFIG_SND_SOC_DA7210=1 -DCONFIG_SND_SOC_AK4642=1 ] Desugared Clang Results: @@ -370,7 +420,6 @@ int __codec_hw_write_5= __i2c_master_send_0 ;// L24 ^~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~ 2 warnings generated. Matches: - 12 has a match! 13 has a match! 14 has a match! 15 has a match! @@ -386,8 +435,11 @@ Matches: 25 has a match! 26 has a match! 27 has a match! + 28 has a match! Unmatched ids: None! + +none 0 0 LINUX 7c6048b7c83.c Macros: defined @@ -404,12 +456,16 @@ Macros: [-Udefined -UCONFIG_BACKLIGHT_CLASS_DEVICE -UCONFIG_ACPI_VIDEO ] Desugared Clang Results: Original file has no warnings + +none 0 0 LINUX f3d83e24154.c Macros: defined [-Udefined ] Desugared Clang Results: Original file has no warnings + +none 0 0 LINUX eb91f1d0a53.c Macros: defined @@ -434,6 +490,8 @@ Macros: [-Ddefined=1 -DCONFIG_SLAB=1 -DCONFIG_NUMA=1 -DCONFIG_KMEMTRACE=1 ] Desugared Clang Results: Original file has no warnings + +none 0 0 LINUX 1f758a4341a.c Macros: CONFIG_ZONE_DMA @@ -444,6 +502,8 @@ Macros: [-DCONFIG_ZONE_DMA=1 -DCONFIG_EP93XX_ETH=1 ] Desugared Clang Results: Original file has no warnings + +none 0 0 LINUX 0988c4c7fb5.c Macros: CONFIG_VLAN_8021Q @@ -454,6 +514,8 @@ Macros: [-DCONFIG_VLAN_8021Q=1 -DCONFIG_RPS=1 ] Desugared Clang Results: Original file has no warnings + +none 0 0 LINUX 242f1a34377.c Macros: CONFIG_CRYPTO_BLKCIPHER @@ -464,6 +526,8 @@ Macros: [-DCONFIG_CRYPTO_BLKCIPHER=1 -DCONFIG_CRYPTO_TEST=1 ] Desugared Clang Results: Original file has no warnings + +none 0 0 LINUX 2f02c15a5d9.c Macros: CONFIG_SSB_DRIVER_EXTIF @@ -474,12 +538,16 @@ Macros: [-DCONFIG_SSB_DRIVER_EXTIF=1 -DCONFIG_BCM47XX=1 ] Desugared Clang Results: Original file has no warnings + +none 0 0 LINUX 8c8296223f3.c Macros: CONFIG_PROC_PAGE_MONITOR [-UCONFIG_PROC_PAGE_MONITOR ] Desugared Clang Results: Original file has no warnings + +none 0 0 LINUX 68bb91baa0.c Macros: CONFIG_I2C_DESIGNWARE_PLATFORM @@ -496,6 +564,8 @@ Macros: [-UCONFIG_I2C_DESIGNWARE_PLATFORM -UCONFIG_I2C_DESIGNWARE_PCI -Udefined ] Desugared Clang Results: Original file has no warnings + +none 0 0 LINUX 1c17e4d4437.c Macros: CONFIG_RCU_CPU_STALL_INFO @@ -506,6 +576,8 @@ Macros: [-DCONFIG_RCU_CPU_STALL_INFO=1 -DCONFIG_RCU_FAST_NO_HZ=1 ] Desugared Clang Results: Original file has no warnings + +none 0 0 LINUX f48ec1d7885.c Macros: CONFIG_BLK_CGROUP @@ -516,6 +588,8 @@ Macros: [-DCONFIG_BLK_CGROUP=1 -DCONFIG_IOSCHED_CFQ=1 ] Desugared Clang Results: Original file has no warnings + +none 0 0 LINUX 0dc77b6dabe.c Macros: CONFIG_ANDROID @@ -540,6 +614,8 @@ Macros: [-DCONFIG_ANDROID=1 -DCONFIG_SYSFS=1 -DCONFIG_EXTCON=1 -Ddefined=1 ] Desugared Clang Results: Original file has no warnings + +none 0 0 LINUX 6515e48932c.c Macros: defined @@ -550,6 +626,8 @@ Macros: [-Ddefined=1 -DCONFIG_MACH_OMAP_H4=1 ] Desugared Clang Results: Original file has no warnings + +none 0 0 LINUX 91ea8207168.c Macros: CONFIG_NODES_SHIFT @@ -566,6 +644,8 @@ Macros: [-UCONFIG_NODES_SHIFT -UCONFIG_DISCONTIGMEM -UCONFIG_PROC_PAGE_MONITOR ] Desugared Clang Results: Original file has no warnings + +none 0 0 LINUX 6e2b75740be.c Macros: defined @@ -583,11 +663,16 @@ free (( __mod_9 [ 1 ] )) ; // L60 /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.c:153:1: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] free (( __mod_9 [ 0 ] )) ; // L63 ^~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.c:177:1: warning: Attempt to free released memory [unix.Malloc] +free ( __hdr_8 ) ; // L67 +^~~~~~~~~~~~~~~~ /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.c:182:9: warning: Potential leak of memory pointed to by '__mod_9' [unix.Malloc] return __err_10 ;// L69 ^~~~~~~~ -5 warnings generated. +6 warnings generated. Original file has no warnings + +none 0 0 LINUX/76baeebf7df SuperC failed LINUX 76baeebf7df.c Macros: @@ -628,6 +713,8 @@ Macros: [-UCONFIG_NUMA ] Desugared Clang Results: Original file has no warnings + +none 0 0 LINUX ae249b5fa27.c Macros: CONFIG_DISCONTIGMEM @@ -645,12 +732,16 @@ return ( int ) __r_236 ;// L21 ^~~~~~~~~~~~~~~~~~~~~~~~~ 2 warnings generated. Original file has no warnings + +none 0 0 LINUX e67bc51e574.c Macros: CONFIG_TRACING [-UCONFIG_TRACING ] Desugared Clang Results: Original file has no warnings + +none 0 0 LINUX c708c57e247.c Macros: CONFIG_S390_PRNG @@ -661,12 +752,16 @@ Desugared Clang Results: ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 1 warning generated. Original file has no warnings + +none 0 0 LINUX 809e660f438.c Macros: CONFIG_ARM_LPAE [-UCONFIG_ARM_LPAE ] Desugared Clang Results: Original file has no warnings + +none 0 0 LINUX 0f8f8094d28.c Macros: CONFIG_FORCE_MAX_ZONEORDER @@ -701,6 +796,8 @@ Macros: [-UCONFIG_FORCE_MAX_ZONEORDER -Udefined -UCONFIG_SLAB -DCONFIG_SLOB=1 -DCONFIG_LOCKDEP=1 ] Desugared Clang Results: Original file has no warnings + +none 0 0 LINUX 6252547b8a7.c Macros: CONFIG_TWL4030_CORE @@ -708,27 +805,27 @@ Macros: CONFIG_OF_IRQ [-UCONFIG_TWL4030_CORE -UCONFIG_IRQ_DOMAIN -UCONFIG_OF_IRQ ] [-DCONFIG_TWL4030_CORE=1 -UCONFIG_IRQ_DOMAIN -UCONFIG_OF_IRQ ] -30 :: Line:12 - Value stored to 'irq' during its initialization is never read [deadcode.DeadStores] 31 :: Line:12 + Value stored to 'irq' during its initialization is never read [deadcode.DeadStores] +32 :: Line:12 Dereference of null pointer (loaded from variable 'ops') [core.NullDereference] [-UCONFIG_TWL4030_CORE -DCONFIG_IRQ_DOMAIN=1 -UCONFIG_OF_IRQ ] -32 :: Line:12 - Value stored to 'irq' during its initialization is never read [deadcode.DeadStores] -[-DCONFIG_TWL4030_CORE=1 -DCONFIG_IRQ_DOMAIN=1 -UCONFIG_OF_IRQ ] 33 :: Line:12 Value stored to 'irq' during its initialization is never read [deadcode.DeadStores] +[-DCONFIG_TWL4030_CORE=1 -DCONFIG_IRQ_DOMAIN=1 -UCONFIG_OF_IRQ ] 34 :: Line:12 + Value stored to 'irq' during its initialization is never read [deadcode.DeadStores] +35 :: Line:12 Dereference of null pointer (loaded from variable 'ops') [core.NullDereference] [-UCONFIG_TWL4030_CORE -UCONFIG_IRQ_DOMAIN -DCONFIG_OF_IRQ=1 ] [-DCONFIG_TWL4030_CORE=1 -UCONFIG_IRQ_DOMAIN -DCONFIG_OF_IRQ=1 ] -35 :: Line:12 +36 :: Line:12 Value stored to 'irq' during its initialization is never read [deadcode.DeadStores] [-UCONFIG_TWL4030_CORE -DCONFIG_IRQ_DOMAIN=1 -DCONFIG_OF_IRQ=1 ] -36 :: Line:12 +37 :: Line:12 Value stored to 'irq' during its initialization is never read [deadcode.DeadStores] [-DCONFIG_TWL4030_CORE=1 -DCONFIG_IRQ_DOMAIN=1 -DCONFIG_OF_IRQ=1 ] -37 :: Line:12 +38 :: Line:12 Value stored to 'irq' during its initialization is never read [deadcode.DeadStores] [-UCONFIG_TWL4030_CORE -UCONFIG_IRQ_DOMAIN -UCONFIG_OF_IRQ ] Desugared Clang Results: @@ -740,7 +837,6 @@ int __irq_2= * __ops_1 ;// L12 ^~~~~~~~~~ 2 warnings generated. Matches: - 30 has a match! 31 has a match! 32 has a match! 33 has a match! @@ -748,8 +844,11 @@ Matches: 35 has a match! 36 has a match! 37 has a match! + 38 has a match! Unmatched ids: None! + +none 0 0 LINUX d6c7e113959.c Macros: CONFIG_REGULATOR_MAX8660 @@ -760,13 +859,15 @@ Macros: [-DCONFIG_REGULATOR_MAX8660=1 -DCONFIG_OF=1 ] Desugared Clang Results: Original file has no warnings + +none 0 0 LINUX e39363a9def.c Macros: CONFIG_NETPOLL CONFIG_IPV6 [-UCONFIG_NETPOLL -UCONFIG_IPV6 ] [-DCONFIG_NETPOLL=1 -UCONFIG_IPV6 ] -40 :: Line:17 +41 :: Line:17 Undefined or garbage value returned to caller [core.uninitialized.UndefReturn] [-UCONFIG_NETPOLL -DCONFIG_IPV6=1 ] [-DCONFIG_NETPOLL=1 -DCONFIG_IPV6=1 ] @@ -776,16 +877,18 @@ return __err_1 ;// L17 ^~~~~~~~~~~~~~~ 1 warning generated. Matches: - 40 has a match! + 41 has a match! Unmatched ids: None! + +none 0 0 LINUX 30e053248da.c Macros: CONFIG_SECURITY [-UCONFIG_SECURITY ] -42 :: Line:31 - Assigned value is garbage or undefined [core.uninitialized.Assign] 43 :: Line:31 + Assigned value is garbage or undefined [core.uninitialized.Assign] +44 :: Line:31 Value stored to 'x' during its initialization is never read [deadcode.DeadStores] Desugared Clang Results: /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.desugared.c:111:7: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] @@ -799,9 +902,11 @@ int __x_9= * __length_7 ;// L31 ^~~~~ ~~~~~~~~~~~~~ 3 warnings generated. Matches: - 43 has a match! + 44 has a match! Unmatched ids: - 42 + 43 + +missing2 0 LINUX d549f55f2e1.c Macros: CONFIG_VLAN_8021Q @@ -812,25 +917,27 @@ Macros: [-DCONFIG_VLAN_8021Q=1 -Ddefined=1 ] Desugared Clang Results: Original file has no warnings + +none 0 0 LINUX 7acf6cd80b2.c Macros: CONFIG_DEVPTS_MULTIPLE_INSTANCES CONFIG_UNIX98_PTYS [-UCONFIG_DEVPTS_MULTIPLE_INSTANCES -UCONFIG_UNIX98_PTYS ] [-DCONFIG_DEVPTS_MULTIPLE_INSTANCES=1 -UCONFIG_UNIX98_PTYS ] -45 :: Line:8 +48 :: Line:8 Value stored to 'x' during its initialization is never read [deadcode.DeadStores] [-UCONFIG_DEVPTS_MULTIPLE_INSTANCES -DCONFIG_UNIX98_PTYS=1 ] -46 :: Line:39 +49 :: Line:39 Value stored to 'driver_data' is never read [deadcode.DeadStores] -47 :: Line:44 +50 :: Line:44 1st function call argument is an uninitialized value [core.CallAndMessage] [-DCONFIG_DEVPTS_MULTIPLE_INSTANCES=1 -DCONFIG_UNIX98_PTYS=1 ] -48 :: Line:8 +51 :: Line:8 Value stored to 'x' during its initialization is never read [deadcode.DeadStores] -49 :: Line:39 +52 :: Line:39 Value stored to 'driver_data' is never read [deadcode.DeadStores] -50 :: Line:44 +53 :: Line:44 1st function call argument is an uninitialized value [core.CallAndMessage] Desugared Clang Results: /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.desugared.c:77:6: warning: Value stored to '__x_3' during its initialization is never read [deadcode.DeadStores] @@ -844,20 +951,24 @@ int __x_3= * __inode_2 ;// L8 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 3 warnings generated. Matches: - 45 has a match! - 46 has a match! - 47 has a match! 48 has a match! 49 has a match! 50 has a match! + 51 has a match! + 52 has a match! + 53 has a match! Unmatched ids: None! + +none 0 0 LINUX 60e233a5660.c Macros: defined [-Udefined ] Desugared Clang Results: Original file has no warnings + +none 0 0 LINUX 63878acfafb.c Macros: CONFIG_ARCH_OMAP3 @@ -878,6 +989,8 @@ return __v_16 ;// L40 ^~~~~~~~~~~~~~ 1 warning generated. Original file has no warnings + +none 0 0 BUSYBOX 5275b1e49f6.c Macros: CONFIG_FEATURE_INSMOD_VERSION_CHECKING @@ -927,6 +1040,8 @@ Desugared Clang Results: ^ ~~~~~~~~~~~~~ 14 warnings generated. Original file has no warnings + +none 0 0 BUSYBOX 5cd6461b6fb.c Macros: CONFIG_FEATURE_HTTPD_CGI @@ -943,13 +1058,15 @@ Macros: [-UCONFIG_FEATURE_HTTPD_CGI -UCONFIG_LFS -UCONFIG_FEATURE_HTTPD_BASIC_AUTH ] Desugared Clang Results: Original file has no warnings + +none 0 0 BUSYBOX 1b487ea8a69.c Macros: ENABLE_SELINUX ENABLE_FEATURE_STAT_FORMAT [-UENABLE_SELINUX -UENABLE_FEATURE_STAT_FORMAT ] [-DENABLE_SELINUX=1 -UENABLE_FEATURE_STAT_FORMAT ] -54 :: Line:14 +57 :: Line:14 Dereference of null pointer (loaded from variable 'scontext') [core.NullDereference] [-UENABLE_SELINUX -DENABLE_FEATURE_STAT_FORMAT=1 ] [-DENABLE_SELINUX=1 -DENABLE_FEATURE_STAT_FORMAT=1 ] @@ -962,15 +1079,19 @@ Desugared Clang Results: ^~~~~~~~~~~~~~~~~~ 2 warnings generated. Matches: - 54 has a match! + 57 has a match! Unmatched ids: None! + +none 0 0 BUSYBOX b7ebc61b54f.c Macros: CONFIG_FEATURE_LS_TIMESTAMPS [-UCONFIG_FEATURE_LS_TIMESTAMPS ] Desugared Clang Results: Original file has no warnings + +none 0 0 BUSYBOX ebee301c8b0.c Macros: defined @@ -984,13 +1105,15 @@ Desugared Clang Results: ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2 warnings generated. Original file has no warnings + +none 0 0 BUSYBOX b273d665181.c Macros: BB_FEATURE_LS_FILETYPES BB_FEATURE_LS_USERNAME [-UBB_FEATURE_LS_FILETYPES -UBB_FEATURE_LS_USERNAME ] [-DBB_FEATURE_LS_FILETYPES=1 -UBB_FEATURE_LS_USERNAME ] -57 :: Line:16 +60 :: Line:16 2nd function call argument is an uninitialized value [core.CallAndMessage] [-UBB_FEATURE_LS_FILETYPES -DBB_FEATURE_LS_USERNAME=1 ] [-DBB_FEATURE_LS_FILETYPES=1 -DBB_FEATURE_LS_USERNAME=1 ] @@ -1012,35 +1135,39 @@ Desugared Clang Results: ^ ~ 5 warnings generated. Matches: - 57 has a match! + 60 has a match! Unmatched ids: None! + +none 0 0 BUSYBOX df7b6577c6a.c Macros: ENABLE_DESKTOP [-UENABLE_DESKTOP ] Desugared Clang Results: Original file has no warnings + +none 0 0 BUSYBOX/061fd0a353e SuperC failed BUSYBOX 061fd0a353e.c Macros: CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF [-UCONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF -UCONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF ] -61 :: Line:16 +64 :: Line:16 Value stored to 'p' is never read [deadcode.DeadStores] [-DCONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF=1 -UCONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF ] [-UCONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF -DCONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF=1 ] -62 :: Line:16 +65 :: Line:16 Value stored to 'p' is never read [deadcode.DeadStores] -63 :: Line:27 +66 :: Line:27 Branch condition evaluates to a garbage value [core.uninitialized.Branch] [-DCONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF=1 -DCONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF=1 ] -64 :: Line:16 +67 :: Line:16 Value stored to 'p' is never read [deadcode.DeadStores] -65 :: Line:20 +68 :: Line:20 Branch condition evaluates to a garbage value [core.uninitialized.Branch] -66 :: Line:27 +69 :: Line:27 Branch condition evaluates to a garbage value [core.uninitialized.Branch] File Failed BUSYBOX/eef2317b9f5 SuperC failed @@ -1048,9 +1175,9 @@ BUSYBOX eef2317b9f5.c Macros: CONFIG_FEATURE_CLEAN_UP [-UCONFIG_FEATURE_CLEAN_UP ] -67 :: Line:26 +70 :: Line:26 Value stored to 'buf' is never read [deadcode.DeadStores] -68 :: Line:34 +71 :: Line:34 Potential leak of memory pointed to by 'buf' [unix.Malloc] File Failed BUSYBOX 192c35f6eb2.c @@ -1059,21 +1186,23 @@ Macros: [-UCONFIG_FEATURE_REMOTE_LOG ] Desugared Clang Results: Original file has no warnings + +none 0 0 BUSYBOX 2631486f1bf.c Macros: CONFIG_FEATURE_LS_RECURSIVE CONFIG_FEATURE_LS_SORTFILES [-UCONFIG_FEATURE_LS_RECURSIVE -UCONFIG_FEATURE_LS_SORTFILES ] -69 :: Line:67 +72 :: Line:67 Assigned value is garbage or undefined [core.uninitialized.Assign] [-DCONFIG_FEATURE_LS_RECURSIVE=1 -UCONFIG_FEATURE_LS_SORTFILES ] -70 :: Line:67 +73 :: Line:67 Assigned value is garbage or undefined [core.uninitialized.Assign] [-UCONFIG_FEATURE_LS_RECURSIVE -DCONFIG_FEATURE_LS_SORTFILES=1 ] -71 :: Line:67 +74 :: Line:67 Assigned value is garbage or undefined [core.uninitialized.Assign] [-DCONFIG_FEATURE_LS_RECURSIVE=1 -DCONFIG_FEATURE_LS_SORTFILES=1 ] -72 :: Line:67 +75 :: Line:67 Assigned value is garbage or undefined [core.uninitialized.Assign] Desugared Clang Results: /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1250:42: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_963', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_986)' [unix.MallocSizeof] @@ -1082,25 +1211,27 @@ Desugared Clang Results: /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1253:42: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_963', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_986)' [unix.MallocSizeof] __curr_979 = ( struct __dnode_963 * ) malloc (sizeof(typeof(__sizeofStandin_986))) ; // L65 ~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1256:27: warning: Dereference of undefined pointer value [core.NullDereference] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1256:27: warning: Access to field '__val_964' results in a dereference of an undefined pointer value (loaded from variable '__curr_979') [core.NullDereference] __curr_979 -> __val_964 = rand( ) % 10 ; // L66 - ~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1259:27: warning: Dereference of undefined pointer value [core.NullDereference] + ~~~~~~~~~~ ^ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1259:27: warning: Access to field '__val_964' results in a dereference of an undefined pointer value (loaded from variable '__curr_979') [core.NullDereference] __curr_979 -> __val_964 = rand( ) % 10 ; // L66 - ~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~ + ~~~~~~~~~~ ^ /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1261:28: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] __curr_979 -> __next_965 = __head_980 ; // L67 ^ ~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1261:28: warning: Dereference of undefined pointer value [core.NullDereference] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1261:28: warning: Access to field '__next_965' results in a dereference of an undefined pointer value (loaded from variable '__curr_979') [core.NullDereference] __curr_979 -> __next_965 = __head_980 ; // L67 - ~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~ + ~~~~~~~~~~ ^ 6 warnings generated. Matches: Unmatched ids: - 69 - 70 - 71 72 + 73 + 74 + 75 + +missing3 0 BUSYBOX 95755181b82.c Macros: ENABLE_FEATURE_HTTPD_GZIP @@ -1120,59 +1251,74 @@ BUSYBOX cc3f20b9bdf.c Macros: Desugared Clang Results: Original file has no warnings + +none 0 0 BUSYBOX cf1f2ace391.c Macros: ENABLE_DEBUG_INIT [-UENABLE_DEBUG_INIT ] Desugared Clang Results: Original file has no warnings + +none 0 0 BUSYBOX bc0ffc0e971.c Macros: ENABLE_FEATURE_CLEAN_UP [-UENABLE_FEATURE_CLEAN_UP ] -75 :: Line:46 +81 :: Line:46 Potential leak of memory pointed to by 'clist' [unix.Malloc] Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2257:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_1823', which is incompatible with sizeof operand type 'struct (anonymous struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2238:1)' [unix.MallocSizeof] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2184:1: warning: Attempt to free released memory [unix.Malloc] +free ( __ch_1826 -> __ifname_1822) ; // L15 +^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2257:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_1823', which is incompatible with sizeof operand type 'struct (unnamed struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2238:1)' [unix.MallocSizeof] __ch_1848 = malloc (sizeof(__sizeofStandin_1852)) ; // L29 ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2260:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_1823', which is incompatible with sizeof operand type 'struct (anonymous struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2238:1)' [unix.MallocSizeof] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2260:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_1823', which is incompatible with sizeof operand type 'struct (unnamed struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2238:1)' [unix.MallocSizeof] __ch_1848 = malloc (sizeof(__sizeofStandin_1852)) ; // L29 ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2262:30: warning: Dereference of undefined pointer value [core.NullDereference] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2262:30: warning: Access to field '__ifname_1822' results in a dereference of an undefined pointer value (loaded from variable '__ch_1848') [core.NullDereference] __ch_1848 -> __ifname_1822 = __ifname_1847 ; // L30 - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~ + ~~~~~~~~~ ^ /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2262:33: warning: Potential leak of memory pointed to by '__ch_1848' [unix.Malloc] __ch_1848 -> __ifname_1822 = __ifname_1847 ; // L30 ^~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2297:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_1824', which is incompatible with sizeof operand type 'struct (anonymous struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2279:1)' [unix.MallocSizeof] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2297:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_1824', which is incompatible with sizeof operand type 'struct (unnamed struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2279:1)' [unix.MallocSizeof] __ch_1849 = malloc (sizeof(__sizeofStandin_1855)) ; // L29 ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2300:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_1824', which is incompatible with sizeof operand type 'struct (anonymous struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2279:1)' [unix.MallocSizeof] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2300:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_1824', which is incompatible with sizeof operand type 'struct (unnamed struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2279:1)' [unix.MallocSizeof] __ch_1849 = malloc (sizeof(__sizeofStandin_1855)) ; // L29 ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2302:30: warning: Dereference of undefined pointer value [core.NullDereference] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2302:30: warning: Access to field '__ifname_1822' results in a dereference of an undefined pointer value (loaded from variable '__ch_1849') [core.NullDereference] __ch_1849 -> __ifname_1822 = __ifname_1847 ; // L30 - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~ + ~~~~~~~~~ ^ /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2302:33: warning: Potential leak of memory pointed to by '__ch_1849' [unix.Malloc] __ch_1849 -> __ifname_1822 = __ifname_1847 ; // L30 ^~~~~~~~~~~~~ /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2333:39: warning: Potential leak of memory pointed to by '__ch_1872' [unix.Malloc] for ( __ch_1872 = __clist_1870 ; __ch_1872 ; __ch_1872 = __ch_1872 -> __next_1821 )// L43 ^~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2333:67: warning: Use of memory after it is freed [unix.Malloc] +for ( __ch_1872 = __clist_1870 ; __ch_1872 ; __ch_1872 = __ch_1872 -> __next_1821 )// L43 + ^~~~~~~~~~~~~~~~~~~~~~~~~ /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2338:5: warning: Potential leak of memory pointed to by '__clist_1870' [unix.Malloc] if (__static_condition_default_1876) { ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2339:39: warning: Potential leak of memory pointed to by '__ch_1873' [unix.Malloc] for ( __ch_1873 = __clist_1871 ; __ch_1873 ; __ch_1873 = __ch_1873 -> __next_1821 )// L43 ^~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2339:67: warning: Use of memory after it is freed [unix.Malloc] +for ( __ch_1873 = __clist_1871 ; __ch_1873 ; __ch_1873 = __ch_1873 -> __next_1821 )// L43 + ^~~~~~~~~~~~~~~~~~~~~~~~~ /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2344:5: warning: Potential leak of memory pointed to by '__clist_1871' [unix.Malloc] if (__static_condition_default_1877) { ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -12 warnings generated. +15 warnings generated. Matches: Unmatched ids: - 75 + 81 + +missing3 0 BUSYBOX b62bd7b261b.c Macros: ENABLE_FEATURE_MDEV_CONF @@ -1182,18 +1328,18 @@ Macros: [-DENABLE_FEATURE_MDEV_CONF=1 -UENABLE_FEATURE_MDEV_RENAME -UENABLE_FEATURE_MDEV_RENAME_REGEXP ] [-UENABLE_FEATURE_MDEV_CONF -DENABLE_FEATURE_MDEV_RENAME=1 -UENABLE_FEATURE_MDEV_RENAME_REGEXP ] [-DENABLE_FEATURE_MDEV_CONF=1 -DENABLE_FEATURE_MDEV_RENAME=1 -UENABLE_FEATURE_MDEV_RENAME_REGEXP ] -80 :: Line:14 +89 :: Line:14 Value stored to 'a' during its initialization is never read [deadcode.DeadStores] -81 :: Line:16 +90 :: Line:16 Value stored to 'val' is never read [deadcode.DeadStores] [-UENABLE_FEATURE_MDEV_CONF -UENABLE_FEATURE_MDEV_RENAME -DENABLE_FEATURE_MDEV_RENAME_REGEXP=1 ] [-DENABLE_FEATURE_MDEV_CONF=1 -UENABLE_FEATURE_MDEV_RENAME -DENABLE_FEATURE_MDEV_RENAME_REGEXP=1 ] [-UENABLE_FEATURE_MDEV_CONF -DENABLE_FEATURE_MDEV_RENAME=1 -DENABLE_FEATURE_MDEV_RENAME_REGEXP=1 ] [-DENABLE_FEATURE_MDEV_CONF=1 -DENABLE_FEATURE_MDEV_RENAME=1 -DENABLE_FEATURE_MDEV_RENAME_REGEXP=1 ] -82 :: Line:16 +91 :: Line:16 Value stored to 'val' is never read [deadcode.DeadStores] -83 :: Line:24 - Dereference of undefined pointer value [core.NullDereference] +92 :: Line:24 + Dereference of undefined pointer value (loaded from variable 'p') [core.NullDereference] [-UENABLE_FEATURE_MDEV_CONF -UENABLE_FEATURE_MDEV_RENAME -UENABLE_FEATURE_MDEV_RENAME_REGEXP ] Desugared Clang Results: /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1451:1: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] @@ -1211,9 +1357,9 @@ char * (__a_1261)= __val_1258 ;// L14 /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1482:2: warning: Value stored to '__val_1258' is never read [deadcode.DeadStores] __val_1258 = ( __s_1259 && __s_1259 [ 1 ] ) ? __s_1259 + 1 : ( ( void * ) 0 ) ; // L16:L395 ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1494:14: warning: Dereference of undefined pointer value [core.NullDereference] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1494:14: warning: Dereference of undefined pointer value (loaded from variable '__p_1260') [core.NullDereference] * __p_1260 = * __s_1259 ; // L24 -~~~~~~~~~~~~~^~~~~~~~~~~~~ + ~~~~~~~~ ^ /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1556:1: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] char * (__a_1261)= __val_1258 ;// L14 ^~~~~~~~~~~~~~~~~ ~~~~~~~~~~ @@ -1229,27 +1375,32 @@ char * (__a_1261)= __val_1258 ;// L14 /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1587:2: warning: Value stored to '__val_1258' is never read [deadcode.DeadStores] __val_1258 = ( __s_1259 && __s_1259 [ 1 ] ) ? __s_1259 + 1 : ( ( void * ) 0 ) ; // L16:L395 ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1599:14: warning: Dereference of undefined pointer value [core.NullDereference] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1599:14: warning: Dereference of undefined pointer value (loaded from variable '__p_1260') [core.NullDereference] * __p_1260 = * __s_1259 ; // L24 -~~~~~~~~~~~~~^~~~~~~~~~~~~ + ~~~~~~~~ ^ 12 warnings generated. Matches: - 80 has a match! - 81 has a match! - 82 has a match! + 89 has a match! + 90 has a match! + 91 has a match! + 92 has a match! Unmatched ids: - 83 + None! + +none 0 0 BUSYBOX 0301ffab3d9.c Macros: EXT2FS_ENABLE_SWAPFS [-UEXT2FS_ENABLE_SWAPFS ] Desugared Clang Results: Original file has no warnings + +none 0 0 BUSYBOX 199501f2a00.c Macros: ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS [-UENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS ] -94 :: Line:21 +103 :: Line:21 Null pointer passed to 2nd parameter expecting 'nonnull' [core.NonNullParamChecker] Desugared Clang Results: /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.c:1543:2: warning: Value stored to '__dt_1258' is never read [deadcode.DeadStores] @@ -1261,7 +1412,9 @@ Desugared Clang Results: 2 warnings generated. Matches: Unmatched ids: - 94 + 103 + +missing1 0 APACHE d0040a07aec.c Macros: defined @@ -1272,6 +1425,8 @@ Macros: [-Ddefined=1 -DRLIMIT_NPROC=1 ] Desugared Clang Results: Original file has no warnings + +none 0 0 APACHE c76df14dfb4.c Macros: CROSS_COMPILE @@ -1301,30 +1456,40 @@ Desugared Clang Results: ^ ~~~~~~~~ 4 warnings generated. Original file has no warnings + +missing1 0 APACHE 97ecbec1237.c Macros: APR_HAS_SHARED_MEMORY [-UAPR_HAS_SHARED_MEMORY ] Desugared Clang Results: Original file has no warnings + +none 0 0 APACHE bbeb0516cf0.c Macros: APR_FILES_AS_SOCKETS [-UAPR_FILES_AS_SOCKETS ] Desugared Clang Results: Original file has no warnings + +none 0 0 APACHE 1f46088b38d.c Macros: SIGPIPE [-USIGPIPE ] Desugared Clang Results: Original file has no warnings + +none 0 0 APACHE 9327311d30f.c Macros: APR_HAS_SHARED_MEMORY [-UAPR_HAS_SHARED_MEMORY ] Desugared Clang Results: Original file has no warnings + +none 0 0 APACHE 35ae2e259e4.c Macros: HAVE_ECC @@ -1334,21 +1499,21 @@ Macros: [-UHAVE_ECC -Ddefined=1 ] [-DHAVE_ECC=1 -Ddefined=1 ] Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1373:17: warning: Dereference of undefined pointer value [core.NullDereference] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1373:17: warning: Dereference of undefined pointer value (loaded from variable '__eckey_798') [core.NullDereference] * __eckey_798 = 30 ; // L12 -~~~~~~~~~~~~~~~~^~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1397:17: warning: Dereference of undefined pointer value [core.NullDereference] + ~~~~~~~~~~~ ^ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1397:17: warning: Dereference of undefined pointer value (loaded from variable '__eckey_798') [core.NullDereference] * __eckey_798 = 15 ; // L17 -~~~~~~~~~~~~~~~~^~~~ + ~~~~~~~~~~~ ^ /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1403:5: warning: Potential leak of memory pointed to by '__eckey_798' [unix.Malloc] if (__static_condition_default_809) { ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1442:17: warning: Dereference of undefined pointer value [core.NullDereference] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1442:17: warning: Dereference of undefined pointer value (loaded from variable '__eckey_798') [core.NullDereference] * __eckey_798 = 30 ; // L12 -~~~~~~~~~~~~~~~~^~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1466:17: warning: Dereference of undefined pointer value [core.NullDereference] + ~~~~~~~~~~~ ^ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1466:17: warning: Dereference of undefined pointer value (loaded from variable '__eckey_798') [core.NullDereference] * __eckey_798 = 15 ; // L17 -~~~~~~~~~~~~~~~~^~~~ + ~~~~~~~~~~~ ^ /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1472:5: warning: Potential leak of memory pointed to by '__eckey_798' [unix.Malloc] if (__static_condition_default_818) { ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ @@ -1361,8 +1526,13 @@ if (__static_condition_default_818) { /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1501:5: warning: Potential leak of memory pointed to by '__eckey_798' [unix.Malloc] if (__static_condition_default_823) { ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -9 warnings generated. +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1501:5: warning: Potential leak of memory pointed to by '__eckey_798' [unix.Malloc] +if (__static_condition_default_823) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +10 warnings generated. Original file has no warnings + +none 0 0 APACHE 4202d5fee3e.c Macros: APU_HAS_LDAP @@ -1373,6 +1543,8 @@ Macros: [-DAPU_HAS_LDAP=1 -DAPU_HAS_LDAP_NETSCAPE_SSL=1 ] Desugared Clang Results: Original file has no warnings + +none 0 0 APACHE/b833f064550 SuperC failed APACHE b833f064550.c Macros: @@ -1385,11 +1557,13 @@ Macros: [-UAPR_HAVE_IPV6 ] Desugared Clang Results: Original file has no warnings + +none 0 0 APACHE 2a6cbfa00e0.c Macros: SHARED_MODULE [-USHARED_MODULE ] -97 :: Line:16 +108 :: Line:16 Potential leak of memory pointed to by 'sc' [unix.Malloc] Desugared Clang Results: /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c:1496:5: warning: Potential leak of memory pointed to by '__sc_1019' [unix.Malloc] @@ -1410,7 +1584,9 @@ if (__static_condition_default_1034) { 5 warnings generated. Matches: Unmatched ids: - 97 + 108 + +missing1 0 APACHE 1a3c8e3d840.c Macros: HAVE_TLSV1_X @@ -1430,6 +1606,8 @@ Desugared Clang Results: ^ ~~~~~~~~~~ 4 warnings generated. Original file has no warnings + +none 0 0 APACHE test.c Macros: XX @@ -1446,24 +1624,32 @@ Macros: [-UXX -UYY -UZZ ] Desugared Clang Results: Original file has no warnings + +none 0 0 APACHE dbafef17dd1.c Macros: HAS_APACHE_REGEX_LIB [-UHAS_APACHE_REGEX_LIB ] Desugared Clang Results: Original file has no warnings + +none 0 0 APACHE 3407eccc321.c Macros: __STDC_VERSION__ [-U__STDC_VERSION__ ] Desugared Clang Results: Original file has no warnings + +none 0 0 APACHE 664e3aac6dd.c Macros: WIN32X [-UWIN32X ] Desugared Clang Results: Original file has no warnings + +none 0 0 APACHE d05e574ec26.c Macros: APR_HAS_SHARED_MEMORY @@ -1507,12 +1693,16 @@ if (__static_condition_default_2057) { ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 12 warnings generated. Original file has no warnings + +none 0 0 APACHE 6338509eb37.c Macros: HAVE_FIPS [-UHAVE_FIPS ] Desugared Clang Results: Original file has no warnings + +none 0 0 APACHE 0900800fbab.c Macros: HAVE_SYSLOG @@ -1523,12 +1713,16 @@ Macros: [-DHAVE_SYSLOG=1 -DAPLOG_MAX_LOGLEVEL=1 ] Desugared Clang Results: Original file has no warnings + +none 0 0 APACHE 0ddfa412ee9.c Macros: HAVE_TLS_ALPN [-UHAVE_TLS_ALPN ] Desugared Clang Results: Original file has no warnings + +none 0 0 APACHE 4945115b2e7.c Macros: DEBUG_CGI @@ -1539,12 +1733,16 @@ Macros: [-DDEBUG_CGI=1 -DOS2=1 ] Desugared Clang Results: Original file has no warnings + +none 0 0 APACHE 56d9881993f.c Macros: APR_HAS_SENDFILE [-UAPR_HAS_SENDFILE ] Desugared Clang Results: Original file has no warnings + +none 0 0 APACHE 1b48bb3c1af.c Macros: APU_HAS_LDAP @@ -1553,7 +1751,7 @@ Macros: [-DAPU_HAS_LDAP=1 -UAPR_HAS_SHARED_MEMORY ] [-UAPU_HAS_LDAP -DAPR_HAS_SHARED_MEMORY=1 ] [-DAPU_HAS_LDAP=1 -DAPR_HAS_SHARED_MEMORY=1 ] -103 :: Line:14 +115 :: Line:14 1st function call argument is an uninitialized value [core.CallAndMessage] Desugared Clang Results: /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c:1273:2: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] @@ -1564,6 +1762,8 @@ Desugared Clang Results: ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2 warnings generated. Matches: - 103 has a match! + 115 has a match! Unmatched ids: None! + +none 0 0 diff --git a/fonda/cpp_testsuite/varBugs/test.c b/fonda/cpp_testsuite/varBugs/test.c index b2f99762..714df1a8 100644 --- a/fonda/cpp_testsuite/varBugs/test.c +++ b/fonda/cpp_testsuite/varBugs/test.c @@ -1,2 +1,6 @@ int main() { + int *x = malloc(sizeof(int)); + *x = 2; + free(x); + return *x; } diff --git a/src/superc/cdesugarer/CActions.java b/src/superc/cdesugarer/CActions.java index 0989ecd9..e20fe85b 100644 --- a/src/superc/cdesugarer/CActions.java +++ b/src/superc/cdesugarer/CActions.java @@ -571,7 +571,8 @@ public Object action(int production, Subparser subparser, Object value) { { // TODO System.err.println("ERROR: unsupported semantic action: FunctionDefinition"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } break; @@ -668,7 +669,8 @@ public Object action(int production, Subparser subparser, Object value) { case 23: { System.err.println("ERROR: unsupported semantic action: FunctionPrototype (6)"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); bindFunDef(subparser, null, getNodeAt(subparser, 1)); } break; @@ -676,7 +678,8 @@ public Object action(int production, Subparser subparser, Object value) { case 24: { System.err.println("ERROR: unsupported semantic action: FunctionPrototype (7)"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); saveBaseType(subparser, getNodeAt(subparser, 2)); bindFunDef(subparser, getNodeAt(subparser, 2), getNodeAt(subparser, 1)); } @@ -685,7 +688,8 @@ public Object action(int production, Subparser subparser, Object value) { case 25: { System.err.println("ERROR: unsupported semantic action: FunctionPrototype (8)"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); saveBaseType(subparser, getNodeAt(subparser, 2)); bindFunDef(subparser, getNodeAt(subparser, 2), getNodeAt(subparser, 1)); } @@ -694,7 +698,8 @@ public Object action(int production, Subparser subparser, Object value) { case 26: { System.err.println("ERROR: unsupported semantic action: FunctionPrototype (9)"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); saveBaseType(subparser, getNodeAt(subparser, 2)); bindFunDef(subparser, getNodeAt(subparser, 2), getNodeAt(subparser, 1)); } @@ -703,7 +708,8 @@ public Object action(int production, Subparser subparser, Object value) { case 27: { System.err.println("ERROR: unsupported semantic action: FunctionPrototype (10)"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); saveBaseType(subparser, getNodeAt(subparser, 2)); bindFunDef(subparser, getNodeAt(subparser, 2), getNodeAt(subparser, 1)); } @@ -712,7 +718,8 @@ public Object action(int production, Subparser subparser, Object value) { case 28: { System.err.println("ERROR: unsupported semantic action: FunctionOldPrototype"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); bindFunDef(subparser, null, getNodeAt(subparser, 1)); } break; @@ -722,7 +729,8 @@ public Object action(int production, Subparser subparser, Object value) { saveBaseType(subparser, getNodeAt(subparser, 2)); bindFunDef(subparser, getNodeAt(subparser, 2), getNodeAt(subparser, 1)); System.err.println("ERROR: unsupported semantic action: FunctionOldPrototype"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } break; @@ -731,7 +739,8 @@ public Object action(int production, Subparser subparser, Object value) { saveBaseType(subparser, getNodeAt(subparser, 2)); bindFunDef(subparser, getNodeAt(subparser, 2), getNodeAt(subparser, 1)); System.err.println("ERROR: unsupported semantic action: FunctionOldPrototype"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } break; @@ -740,7 +749,8 @@ public Object action(int production, Subparser subparser, Object value) { saveBaseType(subparser, getNodeAt(subparser, 2)); bindFunDef(subparser, getNodeAt(subparser, 2), getNodeAt(subparser, 1)); System.err.println("ERROR: unsupported semantic action: FunctionOldPrototype"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } break; @@ -749,7 +759,8 @@ public Object action(int production, Subparser subparser, Object value) { saveBaseType(subparser, getNodeAt(subparser, 2)); bindFunDef(subparser, getNodeAt(subparser, 2), getNodeAt(subparser, 1)); System.err.println("ERROR: unsupported semantic action: FunctionOldPrototype"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } break; @@ -757,7 +768,8 @@ public Object action(int production, Subparser subparser, Object value) { { PresenceCondition pc = subparser.getPresenceCondition(); System.err.println("ERROR: unsupported semantic action: NestedFunctionDefinition"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } break; @@ -778,7 +790,8 @@ public Object action(int production, Subparser subparser, Object value) { { PresenceCondition pc = subparser.getPresenceCondition(); System.err.println("ERROR: unsupported semantic action: NestedFunctionDefinition"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } break; @@ -839,7 +852,8 @@ public Object action(int production, Subparser subparser, Object value) { saveBaseType(subparser, getNodeAt(subparser, 2)); bindFunDef(subparser, getNodeAt(subparser, 2), getNodeAt(subparser, 1)); System.err.println("ERROR: unsupported semantic action: NestedFunctionDefinition(5)"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } break; @@ -848,7 +862,8 @@ public Object action(int production, Subparser subparser, Object value) { saveBaseType(subparser, getNodeAt(subparser, 2)); bindFunDef(subparser, getNodeAt(subparser, 2), getNodeAt(subparser, 1)); System.err.println("ERROR: unsupported semantic action: NestedFunctionDefinition(6)"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } break; @@ -857,7 +872,8 @@ public Object action(int production, Subparser subparser, Object value) { saveBaseType(subparser, getNodeAt(subparser, 2)); bindFunDef(subparser, getNodeAt(subparser, 2), getNodeAt(subparser, 1)); System.err.println("ERROR: unsupported semantic action: NestedFunctionDefinition(7)"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } break; @@ -866,7 +882,8 @@ public Object action(int production, Subparser subparser, Object value) { saveBaseType(subparser, getNodeAt(subparser, 2)); bindFunDef(subparser, getNodeAt(subparser, 2), getNodeAt(subparser, 1)); System.err.println("ERROR: unsupported semantic action: NestedFunctionDefinition(8)"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } break; @@ -875,7 +892,8 @@ public Object action(int production, Subparser subparser, Object value) { saveBaseType(subparser, getNodeAt(subparser, 2)); bindFunDef(subparser, getNodeAt(subparser, 2), getNodeAt(subparser, 1)); System.err.println("ERROR: unsupported semantic action: NestedFunctionOldPrototype"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } break; @@ -884,7 +902,8 @@ public Object action(int production, Subparser subparser, Object value) { saveBaseType(subparser, getNodeAt(subparser, 2)); bindFunDef(subparser, getNodeAt(subparser, 2), getNodeAt(subparser, 1)); System.err.println("ERROR: unsupported semantic action: NestedFunctionOldPrototype"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } break; @@ -893,7 +912,8 @@ public Object action(int production, Subparser subparser, Object value) { saveBaseType(subparser, getNodeAt(subparser, 2)); bindFunDef(subparser, getNodeAt(subparser, 2), getNodeAt(subparser, 1)); System.err.println("ERROR: unsupported semantic action: NestedFunctionOldPrototype"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } break; @@ -902,7 +922,8 @@ public Object action(int production, Subparser subparser, Object value) { saveBaseType(subparser, getNodeAt(subparser, 2)); bindFunDef(subparser, getNodeAt(subparser, 2), getNodeAt(subparser, 1)); System.err.println("ERROR: unsupported semantic action: NestedFunctionOldPrototype"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } break; @@ -2612,14 +2633,16 @@ public Object action(int production, Subparser subparser, Object value) { case 183: { System.err.println("ERROR: unsupported semantic action: StructDeclaration (2)"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } break; case 184: { System.err.println("ERROR: unsupported semantic action: StructDeclaration (3)"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } break; @@ -2644,21 +2667,24 @@ public Object action(int production, Subparser subparser, Object value) { case 186: { System.err.println("ERROR: unsupported semantic action: StructDeclaration (5)"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } break; case 187: { System.err.println("ERROR: unsupported semantic action: StructDefaultDeclaringList (1)"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } break; case 188: { System.err.println("ERROR: unsupported semantic action: StructDefaultDeclaringList (2)"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } break; @@ -2716,14 +2742,16 @@ public Object action(int production, Subparser subparser, Object value) { case 193: { System.err.println("ERROR: unsupported semantic action: StructIdentifierDeclarator"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } break; case 194: { System.err.println("ERROR: unsupported semantic action: StructIdentifierDeclarator"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } break; @@ -3414,7 +3442,8 @@ public Object action(int production, Subparser subparser, Object value) { case 240: { System.err.println("ERROR: unsupported semantic action: IdentifierList"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } break; @@ -3671,14 +3700,16 @@ public Object action(int production, Subparser subparser, Object value) { case 260: { System.err.println("ERROR: unsupported semantic action: Designation (2)"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } break; case 261: { System.err.println("ERROR: unsupported semantic action: Designation (3)"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } break; @@ -3713,7 +3744,8 @@ public Object action(int production, Subparser subparser, Object value) { case 265: { System.err.println("ERROR: unsupported semantic action: Designator (2)"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } break; @@ -3738,21 +3770,24 @@ public Object action(int production, Subparser subparser, Object value) { case 268: { System.err.println("ERROR: unsupported semantic action: ObsoleteArrayDesignation"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } break; case 269: { System.err.println("ERROR: unsupported semantic action: ObsoleteArrayDesignation"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } break; case 270: { System.err.println("ERROR: unsupported semantic action: ObsoleteFieldDesignation"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } break; @@ -4255,21 +4290,24 @@ public Object action(int production, Subparser subparser, Object value) { case 318: { System.err.println("ERROR: unsupported semantic action: PostfixOldFunctionDeclarator"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } break; case 319: { System.err.println("ERROR: unsupported semantic action: PostfixOldFunctionDeclarator"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } break; case 320: { System.err.println("ERROR: unsupported semantic action: PostfixOldFunctionDeclarator"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } break; @@ -4594,7 +4632,8 @@ public Object action(int production, Subparser subparser, Object value) { todoReminder("check that case expression is int"); PresenceCondition pc = subparser.getPresenceCondition(); System.err.println("ERROR: unsupported semantic action: SwitchLabeledStatement (2)"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } break; @@ -4703,7 +4742,8 @@ public Object action(int production, Subparser subparser, Object value) { { PresenceCondition pc = subparser.getPresenceCondition(); System.err.println("ERROR: unsupported semantic action: LocalLabelDeclaration"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } break; @@ -4711,7 +4751,8 @@ public Object action(int production, Subparser subparser, Object value) { { PresenceCondition pc = subparser.getPresenceCondition(); System.err.println("ERROR: unsupported semantic action: LocalLabelList"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } break; @@ -4719,7 +4760,8 @@ public Object action(int production, Subparser subparser, Object value) { { PresenceCondition pc = subparser.getPresenceCondition(); System.err.println("ERROR: unsupported semantic action: LocalLabelList"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } break; @@ -5237,7 +5279,8 @@ public Object action(int production, Subparser subparser, Object value) { { PresenceCondition pc = subparser.getPresenceCondition(); System.err.println("ERROR: unsupported semantic action: GotoStatement (2)"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } break; @@ -6603,7 +6646,8 @@ else if (size1 > size2) { case 438: { System.err.println("ERROR: unsupported semantic action: TypeCompatibilityExpression"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } break; @@ -6729,7 +6773,8 @@ else if (size1 > size2) { case 444: { System.err.println("ERROR: unsupported semantic action: AlignofExpression (2)"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } break; @@ -6748,7 +6793,8 @@ else if (size1 > size2) { case 447: { System.err.println("ERROR: unsupported semantic action: LabelAddressExpression"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } break; @@ -11166,7 +11212,7 @@ public String staticInitialization(boolean showParseError) { invalidGlobals.toString())); if (showParseError && CContext.getParseErrorCond().isNotFalse()) { sb.append("if (" + parseErrorCond + - ")\n{\n__static_parse_error(\"Unable to parse\");\n}\n"); + ") {\n__static_parse_error(\"Unable to parse\");\n}\n"); } sb.append("};\n"); diff --git a/src/superc/cdesugarer/desugarer.y b/src/superc/cdesugarer/desugarer.y index 9207b72a..a36403a3 100644 --- a/src/superc/cdesugarer/desugarer.y +++ b/src/superc/cdesugarer/desugarer.y @@ -684,7 +684,8 @@ FunctionPrototype {restartLabelFunction();} CompoundStatement { // TODO System.err.println("ERROR: unsupported semantic action: FunctionDefinition"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } ; /* FunctionCompoundStatement is now only for old prototypes. */ @@ -779,34 +780,39 @@ FunctionPrototype: /** complete **/ | OldFunctionDeclarator { System.err.println("ERROR: unsupported semantic action: FunctionPrototype (6)"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); bindFunDef(subparser, null, getNodeAt(subparser, 1)); } | DeclarationSpecifier OldFunctionDeclarator { System.err.println("ERROR: unsupported semantic action: FunctionPrototype (7)"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); saveBaseType(subparser, getNodeAt(subparser, 2)); bindFunDef(subparser, getNodeAt(subparser, 2), getNodeAt(subparser, 1)); } | TypeSpecifier OldFunctionDeclarator { System.err.println("ERROR: unsupported semantic action: FunctionPrototype (8)"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); saveBaseType(subparser, getNodeAt(subparser, 2)); bindFunDef(subparser, getNodeAt(subparser, 2), getNodeAt(subparser, 1)); } | DeclarationQualifierList OldFunctionDeclarator { System.err.println("ERROR: unsupported semantic action: FunctionPrototype (9)"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); saveBaseType(subparser, getNodeAt(subparser, 2)); bindFunDef(subparser, getNodeAt(subparser, 2), getNodeAt(subparser, 1)); } | TypeQualifierList OldFunctionDeclarator { System.err.println("ERROR: unsupported semantic action: FunctionPrototype (10)"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); saveBaseType(subparser, getNodeAt(subparser, 2)); bindFunDef(subparser, getNodeAt(subparser, 2), getNodeAt(subparser, 1)); } @@ -816,7 +822,8 @@ FunctionOldPrototype: /** nomerge **/ OldFunctionDeclarator { System.err.println("ERROR: unsupported semantic action: FunctionOldPrototype"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); bindFunDef(subparser, null, getNodeAt(subparser, 1)); } | DeclarationSpecifier OldFunctionDeclarator @@ -824,28 +831,32 @@ FunctionOldPrototype: /** nomerge **/ saveBaseType(subparser, getNodeAt(subparser, 2)); bindFunDef(subparser, getNodeAt(subparser, 2), getNodeAt(subparser, 1)); System.err.println("ERROR: unsupported semantic action: FunctionOldPrototype"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } | TypeSpecifier OldFunctionDeclarator { saveBaseType(subparser, getNodeAt(subparser, 2)); bindFunDef(subparser, getNodeAt(subparser, 2), getNodeAt(subparser, 1)); System.err.println("ERROR: unsupported semantic action: FunctionOldPrototype"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } | DeclarationQualifierList OldFunctionDeclarator { saveBaseType(subparser, getNodeAt(subparser, 2)); bindFunDef(subparser, getNodeAt(subparser, 2), getNodeAt(subparser, 1)); System.err.println("ERROR: unsupported semantic action: FunctionOldPrototype"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } | TypeQualifierList OldFunctionDeclarator { saveBaseType(subparser, getNodeAt(subparser, 2)); bindFunDef(subparser, getNodeAt(subparser, 2), getNodeAt(subparser, 1)); System.err.println("ERROR: unsupported semantic action: FunctionOldPrototype"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } ; @@ -857,14 +868,16 @@ NestedFunctionDefinition: /** complete **/ // added scoping { PresenceCondition pc = subparser.getPresenceCondition(); System.err.println("ERROR: unsupported semantic action: NestedFunctionDefinition"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } CompoundStatement { } | NestedFunctionOldPrototype { ReenterScope(subparser); } DeclarationList LBRACE LocalLabelDeclarationListOpt DeclarationOrStatementList { ExitScope(subparser); } RBRACE { PresenceCondition pc = subparser.getPresenceCondition(); System.err.println("ERROR: unsupported semantic action: NestedFunctionDefinition"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } ; @@ -918,28 +931,32 @@ NestedFunctionPrototype: /** nomerge **/ saveBaseType(subparser, getNodeAt(subparser, 2)); bindFunDef(subparser, getNodeAt(subparser, 2), getNodeAt(subparser, 1)); System.err.println("ERROR: unsupported semantic action: NestedFunctionDefinition(5)"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } | TypeSpecifier OldFunctionDeclarator { saveBaseType(subparser, getNodeAt(subparser, 2)); bindFunDef(subparser, getNodeAt(subparser, 2), getNodeAt(subparser, 1)); System.err.println("ERROR: unsupported semantic action: NestedFunctionDefinition(6)"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } | DeclarationQualifierList OldFunctionDeclarator { saveBaseType(subparser, getNodeAt(subparser, 2)); bindFunDef(subparser, getNodeAt(subparser, 2), getNodeAt(subparser, 1)); System.err.println("ERROR: unsupported semantic action: NestedFunctionDefinition(7)"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } | TypeQualifierList OldFunctionDeclarator { saveBaseType(subparser, getNodeAt(subparser, 2)); bindFunDef(subparser, getNodeAt(subparser, 2), getNodeAt(subparser, 1)); System.err.println("ERROR: unsupported semantic action: NestedFunctionDefinition(8)"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } ; @@ -949,28 +966,32 @@ NestedFunctionOldPrototype: /** nomerge **/ saveBaseType(subparser, getNodeAt(subparser, 2)); bindFunDef(subparser, getNodeAt(subparser, 2), getNodeAt(subparser, 1)); System.err.println("ERROR: unsupported semantic action: NestedFunctionOldPrototype"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } | TypeSpecifier OldFunctionDeclarator { saveBaseType(subparser, getNodeAt(subparser, 2)); bindFunDef(subparser, getNodeAt(subparser, 2), getNodeAt(subparser, 1)); System.err.println("ERROR: unsupported semantic action: NestedFunctionOldPrototype"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } | DeclarationQualifierList OldFunctionDeclarator { saveBaseType(subparser, getNodeAt(subparser, 2)); bindFunDef(subparser, getNodeAt(subparser, 2), getNodeAt(subparser, 1)); System.err.println("ERROR: unsupported semantic action: NestedFunctionOldPrototype"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } | TypeQualifierList OldFunctionDeclarator { saveBaseType(subparser, getNodeAt(subparser, 2)); bindFunDef(subparser, getNodeAt(subparser, 2), getNodeAt(subparser, 1)); System.err.println("ERROR: unsupported semantic action: NestedFunctionOldPrototype"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } ; @@ -2640,12 +2661,14 @@ StructDeclaration: /** complete **/ // returns List> | StructDefaultDeclaringList SEMICOLON { System.err.println("ERROR: unsupported semantic action: StructDeclaration (2)"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } | TypeQualifierList SEMICOLON // ADDED Declarator is optional { System.err.println("ERROR: unsupported semantic action: StructDeclaration (3)"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } | TypeSpecifier SEMICOLON // ADDED Declarator is optional { @@ -2666,7 +2689,8 @@ StructDeclaration: /** complete **/ // returns List> | SEMICOLON // ADDED gcc allows empty struct field in declaration { System.err.println("ERROR: unsupported semantic action: StructDeclaration (5)"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } ; @@ -2674,12 +2698,14 @@ StructDefaultDeclaringList: /** list, complete **/ /* doesn't redeclare t TypeQualifierList StructIdentifierDeclarator AttributeSpecifierListOpt { System.err.println("ERROR: unsupported semantic action: StructDefaultDeclaringList (1)"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } | StructDefaultDeclaringList COMMA StructIdentifierDeclarator AttributeSpecifierListOpt { System.err.println("ERROR: unsupported semantic action: StructDefaultDeclaringList (2)"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } ; @@ -2737,12 +2763,14 @@ StructIdentifierDeclarator: /** nomerge **/ IdentifierDeclarator BitFieldSizeOpt { System.err.println("ERROR: unsupported semantic action: StructIdentifierDeclarator"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } | BitFieldSize { System.err.println("ERROR: unsupported semantic action: StructIdentifierDeclarator"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } ; @@ -3541,7 +3569,8 @@ IdentifierList: /** list, nomerge **/ | IdentifierList COMMA Identifier { System.err.println("ERROR: unsupported semantic action: IdentifierList"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } ; @@ -3794,12 +3823,14 @@ Designation: /* ADDED */ // Multiverse | ObsoleteArrayDesignation { System.err.println("ERROR: unsupported semantic action: Designation (2)"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } | ObsoleteFieldDesignation { System.err.println("ERROR: unsupported semantic action: Designation (3)"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } ; @@ -3833,7 +3864,8 @@ Designator: /* ADDED */ // Multiverse | LBRACK ConstantExpression ELLIPSIS ConstantExpression RBRACK { System.err.println("ERROR: unsupported semantic action: Designator (2)"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } | DOT IDENTIFIER //IDENTIFIER { @@ -3855,12 +3887,14 @@ ObsoleteArrayDesignation: /** nomerge **/ /* ADDED */ LBRACK ConstantExpression RBRACK { System.err.println("ERROR: unsupported semantic action: ObsoleteArrayDesignation"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } | LBRACK ConstantExpression ELLIPSIS ConstantExpression RBRACK { System.err.println("ERROR: unsupported semantic action: ObsoleteArrayDesignation"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } ; @@ -3868,7 +3902,8 @@ ObsoleteFieldDesignation: /** nomerge **/ /* ADDED */ IDENTIFIER COLON { System.err.println("ERROR: unsupported semantic action: ObsoleteFieldDesignation"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } ; @@ -4337,17 +4372,20 @@ PostfixOldFunctionDeclarator: /** nomerge **/ ParenIdentifierDeclarator LPAREN { EnterScope(subparser); } IdentifierList { ExitReentrantScope(subparser); } RPAREN { System.err.println("ERROR: unsupported semantic action: PostfixOldFunctionDeclarator"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } | LPAREN OldFunctionDeclarator RPAREN { System.err.println("ERROR: unsupported semantic action: PostfixOldFunctionDeclarator"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } | LPAREN OldFunctionDeclarator RPAREN PostfixingAbstractDeclarator { System.err.println("ERROR: unsupported semantic action: PostfixOldFunctionDeclarator"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } ; @@ -4671,7 +4709,8 @@ SwitchLabeledStatement: /** complete **/ // Multiverse todoReminder("check that case expression is int"); PresenceCondition pc = subparser.getPresenceCondition(); System.err.println("ERROR: unsupported semantic action: SwitchLabeledStatement (2)"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } | DEFAULT COLON CompoundStatementBody { @@ -4799,7 +4838,8 @@ LocalLabelDeclaration: /** complete **/ /* ADDED */ { PresenceCondition pc = subparser.getPresenceCondition(); System.err.println("ERROR: unsupported semantic action: LocalLabelDeclaration"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } ; @@ -4808,13 +4848,15 @@ LocalLabelList: /** list, complete **/ // ADDED { PresenceCondition pc = subparser.getPresenceCondition(); System.err.println("ERROR: unsupported semantic action: LocalLabelList"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } | LocalLabelList COMMA IDENTIFIER { PresenceCondition pc = subparser.getPresenceCondition(); System.err.println("ERROR: unsupported semantic action: LocalLabelList"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } ; @@ -5316,7 +5358,8 @@ GotoStatement: /** complete **/ // Multiverse { PresenceCondition pc = subparser.getPresenceCondition(); System.err.println("ERROR: unsupported semantic action: GotoStatement (2)"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } ; @@ -6649,7 +6692,8 @@ TypeCompatibilityExpression: /** nomerge **/ __BUILTIN_TYPES_COMPATIBLE_P LPAREN TypeName COMMA TypeName RPAREN { System.err.println("ERROR: unsupported semantic action: TypeCompatibilityExpression"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } ; @@ -6777,7 +6821,8 @@ AlignofExpression: /** nomerge **/ // ExpressionValue | Alignofkeyword UnaryExpression { System.err.println("ERROR: unsupported semantic action: AlignofExpression (2)"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } ; @@ -6796,7 +6841,8 @@ LabelAddressExpression: /** nomerge **/ // ADDED ANDAND IDENTIFIER { System.err.println("ERROR: unsupported semantic action: LabelAddressExpression"); - System.exit(1); + subparser.lookahead.setError(); + //System.exit(1); } ; @@ -11028,7 +11074,7 @@ public String staticInitialization(boolean showParseError) { invalidGlobals.toString())); if (showParseError && CContext.getParseErrorCond().isNotFalse()) { sb.append("if (" + parseErrorCond + - ")\n{\n__static_parse_error(\"Unable to parse\");\n}\n"); + ") {\n__static_parse_error(\"Unable to parse\");\n}\n"); } sb.append("};\n"); From cd17f03b7123bd333a53335fa005649e49492321 Mon Sep 17 00:00:00 2001 From: pattersonzUTD Date: Thu, 8 Sep 2022 13:43:18 -0500 Subject: [PATCH 17/77] updated runTest scripts, new results for files --- .../varBugs/APACHE-0900800fbab.report | 4 + .../varBugs/APACHE-0ddfa412ee9.report | 4 + .../varBugs/APACHE-1a3c8e3d840.report | 20 +- .../varBugs/APACHE-1b48bb3c1af.report | 25 +- .../varBugs/APACHE-1f46088b38d.report | 4 + .../varBugs/APACHE-2a6cbfa00e0.report | 39 +- .../varBugs/APACHE-3407eccc321.report | 4 + .../varBugs/APACHE-35ae2e259e4.report | 52 + .../varBugs/APACHE-4202d5fee3e.report | 4 + .../varBugs/APACHE-4945115b2e7.report | 4 + .../varBugs/APACHE-56d9881993f.report | 4 + .../varBugs/APACHE-581635e28f1.report | 4 + .../varBugs/APACHE-6338509eb37.report | 4 + .../varBugs/APACHE-664e3aac6dd.report | 4 + .../varBugs/APACHE-9327311d30f.report | 4 + .../varBugs/APACHE-97ecbec1237.report | 4 + .../varBugs/APACHE-bbeb0516cf0.report | 4 + .../varBugs/APACHE-c76df14dfb4.report | 20 +- .../varBugs/APACHE-d0040a07aec.report | 4 + .../varBugs/APACHE-d05e574ec26.report | 4 + .../varBugs/APACHE-dbafef17dd1.report | 4 + .../cpp_testsuite/varBugs/APACHE-test.report | 4 + .../varBugs/APACHE/0900800fbab.desugared.c | 60 +- .../APACHE/0900800fbab.desugared.inferres | 2 + .../varBugs/APACHE/0900800fbab.inferres | 2 + .../varBugs/APACHE/0ddfa412ee9.desugared.c | 2 +- .../APACHE/0ddfa412ee9.desugared.inferres | 2 + .../varBugs/APACHE/0ddfa412ee9.inferres | 2 + .../varBugs/APACHE/1a3c8e3d840.desugared.c | 1551 +++- .../APACHE/1a3c8e3d840.desugared.clangres | 16 +- .../APACHE/1a3c8e3d840.desugared.inferres | 2 + .../varBugs/APACHE/1a3c8e3d840.inferres | 0 .../varBugs/APACHE/1b48bb3c1af.desugared.c | 2117 +++-- .../APACHE/1b48bb3c1af.desugared.clangres | 13 +- .../APACHE/1b48bb3c1af.desugared.inferres | 2 + .../varBugs/APACHE/1b48bb3c1af.inferres | 14 + .../varBugs/APACHE/1f46088b38d.desugared.c | 2068 +++-- .../APACHE/1f46088b38d.desugared.inferres | 2 + .../varBugs/APACHE/1f46088b38d.inferres | 0 .../varBugs/APACHE/2a6cbfa00e0.desugared.c | 1102 +-- .../APACHE/2a6cbfa00e0.desugared.clangres | 19 +- .../APACHE/2a6cbfa00e0.desugared.inferres | 14 + .../varBugs/APACHE/2a6cbfa00e0.inferres | 2 + .../varBugs/APACHE/3407eccc321.desugared.c | 4039 +++++---- .../APACHE/3407eccc321.desugared.inferres | 2 + .../varBugs/APACHE/3407eccc321.inferres | 2 + .../varBugs/APACHE/35ae2e259e4.desugared.c | 138 +- .../APACHE/35ae2e259e4.desugared.inferres | 50 + .../varBugs/APACHE/35ae2e259e4.inferres | 0 .../varBugs/APACHE/4202d5fee3e.desugared.c | 488 +- .../APACHE/4202d5fee3e.desugared.inferres | 2 + .../varBugs/APACHE/4202d5fee3e.inferres | 0 .../varBugs/APACHE/4945115b2e7.desugared.c | 3693 ++++++-- .../APACHE/4945115b2e7.desugared.inferres | 2 + .../varBugs/APACHE/4945115b2e7.inferres | 2 + .../varBugs/APACHE/56d9881993f.desugared.c | 2 +- .../APACHE/56d9881993f.desugared.inferres | 2 + .../varBugs/APACHE/56d9881993f.inferres | 2 + .../APACHE/581635e28f1.desugared.inferres | 2 + .../varBugs/APACHE/581635e28f1.inferres | 0 .../varBugs/APACHE/6338509eb37.desugared.c | 2065 +++-- .../APACHE/6338509eb37.desugared.inferres | 2 + .../varBugs/APACHE/6338509eb37.inferres | 0 .../varBugs/APACHE/664e3aac6dd.desugared.c | 372 +- .../APACHE/664e3aac6dd.desugared.inferres | 2 + .../varBugs/APACHE/664e3aac6dd.inferres | 2 + .../varBugs/APACHE/9327311d30f.desugared.c | 217 +- .../APACHE/9327311d30f.desugared.inferres | 2 + .../varBugs/APACHE/9327311d30f.inferres | 2 + .../varBugs/APACHE/97ecbec1237.desugared.c | 1618 +++- .../APACHE/97ecbec1237.desugared.inferres | 2 + .../varBugs/APACHE/97ecbec1237.inferres | 2 + .../varBugs/APACHE/b833f064550.inferres | 2 + .../varBugs/APACHE/bbeb0516cf0.desugared.c | 382 +- .../APACHE/bbeb0516cf0.desugared.inferres | 2 + .../varBugs/APACHE/bbeb0516cf0.inferres | 2 + .../varBugs/APACHE/c76df14dfb4.desugared.c | 4551 ++++++---- .../APACHE/c76df14dfb4.desugared.clangres | 16 +- .../APACHE/c76df14dfb4.desugared.inferres | 2 + .../varBugs/APACHE/c76df14dfb4.inferres | 0 .../varBugs/APACHE/d0040a07aec.desugared.c | 620 +- .../APACHE/d0040a07aec.desugared.inferres | 2 + .../varBugs/APACHE/d0040a07aec.inferres | 0 .../varBugs/APACHE/d05e574ec26.desugared.c | 620 +- .../APACHE/d05e574ec26.desugared.inferres | 2 + .../varBugs/APACHE/d05e574ec26.inferres | 2 + .../varBugs/APACHE/dbafef17dd1.desugared.c | 396 +- .../APACHE/dbafef17dd1.desugared.inferres | 2 + .../varBugs/APACHE/dbafef17dd1.inferres | 2 + .../varBugs/APACHE/test.desugared.c | 25 + .../varBugs/APACHE/test.desugared.inferres | 2 + .../varBugs/APACHE/test.inferres | 0 .../varBugs/BUSYBOX-0301ffab3d9.report | 8 + .../varBugs/BUSYBOX-061fd0a353e.report | 43 +- .../varBugs/BUSYBOX-192c35f6eb2.report | 4 + .../varBugs/BUSYBOX-199501f2a00.report | 17 +- .../varBugs/BUSYBOX-1b487ea8a69.report | 12 +- .../varBugs/BUSYBOX-2631486f1bf.report | 107 +- .../varBugs/BUSYBOX-5275b1e49f6.report | 87 +- .../varBugs/BUSYBOX-5cd6461b6fb.report | 4 + .../varBugs/BUSYBOX-b273d665181.report | 12 +- .../varBugs/BUSYBOX-b62bd7b261b.report | 80 +- .../varBugs/BUSYBOX-b7ebc61b54f.report | 4 + .../varBugs/BUSYBOX-bc0ffc0e971.report | 110 +- .../varBugs/BUSYBOX-cc3f20b9bdf.report | 4 + .../varBugs/BUSYBOX-cf1f2ace391.report | 4 + .../varBugs/BUSYBOX-df7b6577c6a.report | 4 + .../varBugs/BUSYBOX-ebee301c8b0.report | 4 + .../varBugs/BUSYBOX-eef2317b9f5.report | 61 +- .../varBugs/BUSYBOX/0301ffab3d9.desugared.c | 56 +- .../BUSYBOX/0301ffab3d9.desugared.clangres | 4 + .../BUSYBOX/0301ffab3d9.desugared.inferres | 2 + .../varBugs/BUSYBOX/0301ffab3d9.inferres | 2 + .../varBugs/BUSYBOX/061fd0a353e.desugared.c | 3404 +++++++ .../BUSYBOX/061fd0a353e.desugared.clangres | 7 + .../BUSYBOX/061fd0a353e.desugared.inferres | 2 + .../varBugs/BUSYBOX/061fd0a353e.inferres | 23 + .../varBugs/BUSYBOX/192c35f6eb2.desugared.c | 844 +- .../BUSYBOX/192c35f6eb2.desugared.inferres | 2 + .../varBugs/BUSYBOX/192c35f6eb2.inferres | 2 + .../varBugs/BUSYBOX/199501f2a00.desugared.c | 3637 ++++++-- .../BUSYBOX/199501f2a00.desugared.clangres | 9 +- .../BUSYBOX/199501f2a00.desugared.inferres | 2 + .../varBugs/BUSYBOX/199501f2a00.inferres | 2 + .../varBugs/BUSYBOX/1b487ea8a69.desugared.c | 662 +- .../BUSYBOX/1b487ea8a69.desugared.inferres | 2 + .../varBugs/BUSYBOX/1b487ea8a69.inferres | 2 + .../varBugs/BUSYBOX/2631486f1bf.desugared.c | 4038 ++++++--- .../BUSYBOX/2631486f1bf.desugared.clangres | 62 +- .../BUSYBOX/2631486f1bf.desugared.inferres | 2 + .../varBugs/BUSYBOX/2631486f1bf.inferres | 24 + .../varBugs/BUSYBOX/5275b1e49f6.desugared.c | 3705 ++++++-- .../BUSYBOX/5275b1e49f6.desugared.clangres | 83 +- .../BUSYBOX/5275b1e49f6.desugared.inferres | 2 + .../varBugs/BUSYBOX/5275b1e49f6.inferres | 0 .../varBugs/BUSYBOX/5cd6461b6fb.desugared.c | 4125 +++++---- .../BUSYBOX/5cd6461b6fb.desugared.inferres | 2 + .../varBugs/BUSYBOX/5cd6461b6fb.inferres | 2 + .../varBugs/BUSYBOX/95755181b82.desugared.c | 5049 ++++++----- .../BUSYBOX/95755181b82.desugared.clangres | 32 +- .../BUSYBOX/95755181b82.desugared.inferres | 0 .../varBugs/BUSYBOX/95755181b82.inferres | 0 .../varBugs/BUSYBOX/b273d665181.desugared.c | 656 +- .../BUSYBOX/b273d665181.desugared.inferres | 2 + .../varBugs/BUSYBOX/b273d665181.inferres | 2 + .../varBugs/BUSYBOX/b62bd7b261b.desugared.c | 3747 +++++--- .../BUSYBOX/b62bd7b261b.desugared.clangres | 56 +- .../BUSYBOX/b62bd7b261b.desugared.inferres | 2 + .../varBugs/BUSYBOX/b62bd7b261b.inferres | 2 + .../varBugs/BUSYBOX/b7ebc61b54f.desugared.c | 1508 +++- .../BUSYBOX/b7ebc61b54f.desugared.inferres | 2 + .../varBugs/BUSYBOX/b7ebc61b54f.inferres | 0 .../varBugs/BUSYBOX/bc0ffc0e971.desugared.c | 4735 ++++++---- .../BUSYBOX/bc0ffc0e971.desugared.clangres | 65 +- .../BUSYBOX/bc0ffc0e971.desugared.inferres | 32 + .../varBugs/BUSYBOX/bc0ffc0e971.inferres | 24 + .../BUSYBOX/cc3f20b9bdf.desugared.inferres | 2 + .../varBugs/BUSYBOX/cc3f20b9bdf.inferres | 0 .../varBugs/BUSYBOX/cf1f2ace391.desugared.c | 4767 +++++----- .../BUSYBOX/cf1f2ace391.desugared.inferres | 2 + .../varBugs/BUSYBOX/cf1f2ace391.inferres | 2 + .../varBugs/BUSYBOX/df7b6577c6a.desugared.c | 2141 +++-- .../BUSYBOX/df7b6577c6a.desugared.inferres | 2 + .../varBugs/BUSYBOX/df7b6577c6a.inferres | 2 + .../varBugs/BUSYBOX/ebee301c8b0.desugared.c | 622 +- .../BUSYBOX/ebee301c8b0.desugared.inferres | 2 + .../varBugs/BUSYBOX/ebee301c8b0.inferres | 0 .../varBugs/BUSYBOX/eef2317b9f5.desugared.c | 1769 ++++ .../BUSYBOX/eef2317b9f5.desugared.clangres | 26 +- .../BUSYBOX/eef2317b9f5.desugared.inferres | 23 + .../varBugs/BUSYBOX/eef2317b9f5.inferres | 14 + .../varBugs/LINUX-0988c4c7fb5.report | 4 + .../varBugs/LINUX-0dc77b6dabe.report | 15 + .../varBugs/LINUX-0f8f8094d28.report | 4 + .../varBugs/LINUX-1c17e4d4437.report | 4 + .../varBugs/LINUX-1f758a4341a.report | 4 + .../varBugs/LINUX-208d89843b7.report | 4 + .../varBugs/LINUX-218ad12f42e.report | 24 + .../varBugs/LINUX-221ac329e93.report | 43 + .../varBugs/LINUX-242f1a34377.report | 4 + .../varBugs/LINUX-2f02c15a5d9.report | 4 + .../varBugs/LINUX-30e053248da.report | 16 +- .../varBugs/LINUX-36855dcfc98.report | 6 +- .../varBugs/LINUX-472a474c663.report | 4 + .../varBugs/LINUX-51fd36f3fad.report | 14 + .../varBugs/LINUX-60e233a5660.report | 4 + .../varBugs/LINUX-6252547b8a7.report | 31 +- .../varBugs/LINUX-63878acfafb.report | 4 + .../varBugs/LINUX-6515e48932c.report | 4 + .../varBugs/LINUX-657e9649e74.report | 4 + .../varBugs/LINUX-66517915e09.report | 36 +- .../varBugs/LINUX-68bb91baa0.report | 4 + .../varBugs/LINUX-6e2b75740be.report | 4 + .../varBugs/LINUX-76baeebf7df.report | 14 +- .../varBugs/LINUX-7acf6cd80b2.report | 35 +- .../varBugs/LINUX-7c6048b7c83.report | 4 + .../varBugs/LINUX-809e660f438.report | 4 + .../varBugs/LINUX-8c8296223f3.report | 16 + .../varBugs/LINUX-91ea8207168.report | 4 + .../varBugs/LINUX-ae249b5fa27.report | 4 + .../varBugs/LINUX-bc8cec0dff0.report | 15 + .../varBugs/LINUX-c708c57e247.report | 4 + .../varBugs/LINUX-d530db0db90.report | 4 + .../varBugs/LINUX-d549f55f2e1.report | 4 + .../varBugs/LINUX-d6c7e113959.report | 4 + .../varBugs/LINUX-d7e9711760a.report | 11 +- .../varBugs/LINUX-e1fbd9210d5.report | 4 + .../varBugs/LINUX-e39363a9def.report | 12 +- .../varBugs/LINUX-e67bc51e574.report | 4 + .../varBugs/LINUX-eb91f1d0a53.report | 4 + .../varBugs/LINUX-ee3f34e8572.report | 4 + .../varBugs/LINUX-f3d83e24154.report | 4 + .../varBugs/LINUX-f48ec1d7885.report | 4 + .../varBugs/LINUX-f7ab9b407b3.report | 4 + .../varBugs/LINUX/0988c4c7fb5.desugared.c | 14 +- .../LINUX/0988c4c7fb5.desugared.inferres | 2 + .../varBugs/LINUX/0988c4c7fb5.inferres | 2 + .../varBugs/LINUX/0dc77b6dabe.desugared.c | 10 +- .../LINUX/0dc77b6dabe.desugared.inferres | 13 + .../varBugs/LINUX/0dc77b6dabe.inferres | 0 .../varBugs/LINUX/0f8f8094d28.desugared.c | 89 +- .../LINUX/0f8f8094d28.desugared.inferres | 2 + .../varBugs/LINUX/0f8f8094d28.inferres | 0 .../varBugs/LINUX/1c17e4d4437.desugared.c | 10 +- .../LINUX/1c17e4d4437.desugared.inferres | 2 + .../varBugs/LINUX/1c17e4d4437.inferres | 2 + .../varBugs/LINUX/1f758a4341a.desugared.c | 6 +- .../LINUX/1f758a4341a.desugared.inferres | 2 + .../varBugs/LINUX/1f758a4341a.inferres | 2 + .../varBugs/LINUX/208d89843b7.desugared.c | 1616 +++- .../LINUX/208d89843b7.desugared.inferres | 2 + .../varBugs/LINUX/208d89843b7.inferres | 2 + .../varBugs/LINUX/218ad12f42e.desugared.c | 6 +- .../LINUX/218ad12f42e.desugared.inferres | 22 + .../varBugs/LINUX/218ad12f42e.inferres | 2 + .../varBugs/LINUX/221ac329e93.desugared.c | 7884 +++++++++-------- .../LINUX/221ac329e93.desugared.inferres | 41 + .../varBugs/LINUX/221ac329e93.inferres | 2 + .../varBugs/LINUX/242f1a34377.desugared.c | 2 +- .../LINUX/242f1a34377.desugared.inferres | 2 + .../varBugs/LINUX/242f1a34377.inferres | 2 + .../varBugs/LINUX/2f02c15a5d9.desugared.c | 6 +- .../LINUX/2f02c15a5d9.desugared.inferres | 2 + .../varBugs/LINUX/2f02c15a5d9.inferres | 2 + .../varBugs/LINUX/30e053248da.desugared.c | 2 +- .../LINUX/30e053248da.desugared.inferres | 2 + .../varBugs/LINUX/30e053248da.inferres | 14 + .../LINUX/36855dcfc98.desugared.inferres | 2 + .../varBugs/LINUX/36855dcfc98.inferres | 2 + .../varBugs/LINUX/472a474c663.desugared.c | 4 +- .../LINUX/472a474c663.desugared.inferres | 2 + .../varBugs/LINUX/472a474c663.inferres | 2 + .../varBugs/LINUX/51fd36f3fad.desugared.c | 172 +- .../LINUX/51fd36f3fad.desugared.clangres | 10 + .../LINUX/51fd36f3fad.desugared.inferres | 2 + .../varBugs/LINUX/51fd36f3fad.inferres | 2 + .../varBugs/LINUX/60e233a5660.desugared.c | 494 +- .../LINUX/60e233a5660.desugared.inferres | 2 + .../varBugs/LINUX/60e233a5660.inferres | 0 .../varBugs/LINUX/6252547b8a7.desugared.c | 8 +- .../LINUX/6252547b8a7.desugared.inferres | 2 + .../varBugs/LINUX/6252547b8a7.inferres | 2 + .../varBugs/LINUX/63878acfafb.desugared.c | 18 +- .../LINUX/63878acfafb.desugared.inferres | 2 + .../varBugs/LINUX/63878acfafb.inferres | 0 .../varBugs/LINUX/6515e48932c.desugared.c | 6 +- .../LINUX/6515e48932c.desugared.inferres | 2 + .../varBugs/LINUX/6515e48932c.inferres | 0 .../varBugs/LINUX/657e9649e74.desugared.c | 131 +- .../LINUX/657e9649e74.desugared.inferres | 2 + .../varBugs/LINUX/657e9649e74.inferres | 2 + .../varBugs/LINUX/66517915e09.desugared.c | 8 +- .../LINUX/66517915e09.desugared.inferres | 2 + .../varBugs/LINUX/66517915e09.inferres | 0 .../varBugs/LINUX/68bb91baa0.desugared.c | 14 +- .../LINUX/68bb91baa0.desugared.inferres | 2 + .../varBugs/LINUX/68bb91baa0.inferres | 0 .../varBugs/LINUX/6e2b75740be.desugared.c | 2 +- .../LINUX/6e2b75740be.desugared.inferres | 2 + .../varBugs/LINUX/6e2b75740be.inferres | 0 .../varBugs/LINUX/76baeebf7df.desugared.c | 1728 ++++ .../LINUX/76baeebf7df.desugared.clangres | 7 + .../LINUX/76baeebf7df.desugared.inferres | 2 + .../varBugs/LINUX/76baeebf7df.inferres | 2 + .../varBugs/LINUX/7acf6cd80b2.desugared.c | 6 +- .../LINUX/7acf6cd80b2.desugared.inferres | 2 + .../varBugs/LINUX/7acf6cd80b2.inferres | 14 + .../varBugs/LINUX/7c6048b7c83.desugared.c | 8 +- .../LINUX/7c6048b7c83.desugared.inferres | 2 + .../varBugs/LINUX/7c6048b7c83.inferres | 0 .../varBugs/LINUX/809e660f438.desugared.c | 2 +- .../LINUX/809e660f438.desugared.inferres | 2 + .../varBugs/LINUX/809e660f438.inferres | 2 + .../varBugs/LINUX/8c8296223f3.desugared.c | 96 +- .../LINUX/8c8296223f3.desugared.inferres | 14 + .../varBugs/LINUX/8c8296223f3.inferres | 2 + .../varBugs/LINUX/91ea8207168.desugared.c | 345 +- .../LINUX/91ea8207168.desugared.inferres | 2 + .../varBugs/LINUX/91ea8207168.inferres | 2 + .../varBugs/LINUX/ae249b5fa27.desugared.c | 58 +- .../LINUX/ae249b5fa27.desugared.inferres | 2 + .../varBugs/LINUX/ae249b5fa27.inferres | 2 + .../varBugs/LINUX/bc8cec0dff0.desugared.c | 6 +- .../LINUX/bc8cec0dff0.desugared.inferres | 13 + .../varBugs/LINUX/bc8cec0dff0.inferres | 2 + .../LINUX/c708c57e247.desugared.inferres | 2 + .../varBugs/LINUX/c708c57e247.inferres | 2 + .../varBugs/LINUX/d530db0db90.desugared.c | 96 +- .../LINUX/d530db0db90.desugared.inferres | 2 + .../varBugs/LINUX/d530db0db90.inferres | 2 + .../varBugs/LINUX/d549f55f2e1.desugared.c | 1543 +++- .../LINUX/d549f55f2e1.desugared.inferres | 2 + .../varBugs/LINUX/d549f55f2e1.inferres | 0 .../varBugs/LINUX/d6c7e113959.desugared.c | 2 +- .../LINUX/d6c7e113959.desugared.inferres | 2 + .../varBugs/LINUX/d6c7e113959.inferres | 2 + .../varBugs/LINUX/d7e9711760a.desugared.c | 1423 +++ .../LINUX/d7e9711760a.desugared.inferres | 2 + .../varBugs/LINUX/d7e9711760a.inferres | 2 + .../varBugs/LINUX/e1fbd9210d5.desugared.c | 500 +- .../LINUX/e1fbd9210d5.desugared.inferres | 2 + .../varBugs/LINUX/e1fbd9210d5.inferres | 2 + .../varBugs/LINUX/e39363a9def.desugared.c | 6 +- .../LINUX/e39363a9def.desugared.inferres | 2 + .../varBugs/LINUX/e39363a9def.inferres | 2 + .../varBugs/LINUX/e67bc51e574.desugared.c | 38 +- .../LINUX/e67bc51e574.desugared.inferres | 2 + .../varBugs/LINUX/e67bc51e574.inferres | 0 .../varBugs/LINUX/eb91f1d0a53.desugared.c | 40 +- .../LINUX/eb91f1d0a53.desugared.inferres | 2 + .../varBugs/LINUX/eb91f1d0a53.inferres | 0 .../varBugs/LINUX/ee3f34e8572.desugared.c | 130 +- .../LINUX/ee3f34e8572.desugared.inferres | 2 + .../varBugs/LINUX/ee3f34e8572.inferres | 0 .../varBugs/LINUX/f3d83e24154.desugared.c | 24 +- .../LINUX/f3d83e24154.desugared.inferres | 2 + .../varBugs/LINUX/f3d83e24154.inferres | 0 .../varBugs/LINUX/f48ec1d7885.desugared.c | 52 +- .../LINUX/f48ec1d7885.desugared.inferres | 2 + .../varBugs/LINUX/f48ec1d7885.inferres | 0 .../varBugs/LINUX/f7ab9b407b3.desugared.c | 6 +- .../LINUX/f7ab9b407b3.desugared.inferres | 2 + .../varBugs/LINUX/f7ab9b407b3.inferres | 2 + .../varBugs/MARLIN-2d22902d080.report | 4 + .../varBugs/MARLIN-2db384a21d6.report | 4 + .../varBugs/MARLIN-30248214c7f.report | 4 + .../varBugs/MARLIN-31873ec707d.report | 4 + .../varBugs/MARLIN-53be0f3399e.report | 3 +- .../varBugs/MARLIN-7336e6df070.report | 4 + .../varBugs/MARLIN-831016b09f7.report | 8 + .../varBugs/MARLIN-8c4377dd635.report | 23 +- .../varBugs/MARLIN-a7fc1f83c81.report | 14 + .../varBugs/MARLIN-b8e79dce897.report | 4 + .../varBugs/MARLIN-e30bfedce4d.report | 8 +- .../varBugs/MARLIN-f87c80889fe.report | 4 + .../varBugs/MARLIN-fc3c76fc164.report | 4 + .../varBugs/MARLIN-fdac8f6cece.report | 4 + .../varBugs/MARLIN/2d22902d080.desugared.c | 223 +- .../MARLIN/2d22902d080.desugared.inferres | 2 + .../varBugs/MARLIN/2d22902d080.inferres | 2 + .../varBugs/MARLIN/2db384a21d6.desugared.c | 31 +- .../MARLIN/2db384a21d6.desugared.inferres | 2 + .../varBugs/MARLIN/2db384a21d6.inferres | 2 + .../varBugs/MARLIN/30248214c7f.desugared.c | 2097 +++-- .../MARLIN/30248214c7f.desugared.inferres | 2 + .../varBugs/MARLIN/30248214c7f.inferres | 0 .../varBugs/MARLIN/31873ec707d.desugared.c | 1442 ++- .../MARLIN/31873ec707d.desugared.inferres | 2 + .../varBugs/MARLIN/31873ec707d.inferres | 2 + .../varBugs/MARLIN/53be0f3399e.desugared.c | 4274 ++++++--- .../MARLIN/53be0f3399e.desugared.clangres | 7 + .../MARLIN/53be0f3399e.desugared.inferres | 0 .../varBugs/MARLIN/53be0f3399e.inferres | 0 .../varBugs/MARLIN/7336e6df070.desugared.c | 526 +- .../MARLIN/7336e6df070.desugared.inferres | 2 + .../varBugs/MARLIN/7336e6df070.inferres | 0 .../varBugs/MARLIN/831016b09f7.desugared.c | 36 +- .../MARLIN/831016b09f7.desugared.clangres | 4 + .../MARLIN/831016b09f7.desugared.inferres | 2 + .../varBugs/MARLIN/831016b09f7.inferres | 2 + .../varBugs/MARLIN/8c4377dd635.desugared.c | 132 +- .../MARLIN/8c4377dd635.desugared.clangres | 9 +- .../MARLIN/8c4377dd635.desugared.inferres | 2 + .../varBugs/MARLIN/8c4377dd635.inferres | 2 + .../varBugs/MARLIN/a7fc1f83c81.desugared.c | 321 +- .../MARLIN/a7fc1f83c81.desugared.clangres | 10 + .../MARLIN/a7fc1f83c81.desugared.inferres | 2 + .../varBugs/MARLIN/a7fc1f83c81.inferres | 2 + .../varBugs/MARLIN/b8e79dce897.desugared.c | 514 +- .../MARLIN/b8e79dce897.desugared.inferres | 2 + .../varBugs/MARLIN/b8e79dce897.inferres | 2 + .../varBugs/MARLIN/e30bfedce4d.desugared.c | 2 +- .../MARLIN/e30bfedce4d.desugared.inferres | 2 + .../varBugs/MARLIN/e30bfedce4d.inferres | 2 + .../varBugs/MARLIN/f87c80889fe.desugared.c | 956 +- .../MARLIN/f87c80889fe.desugared.inferres | 2 + .../varBugs/MARLIN/f87c80889fe.inferres | 2 + .../MARLIN/fc3c76fc164.desugared.inferres | 2 + .../varBugs/MARLIN/fc3c76fc164.inferres | 0 .../varBugs/MARLIN/fdac8f6cece.desugared.c | 13 +- .../MARLIN/fdac8f6cece.desugared.inferres | 2 + .../varBugs/MARLIN/fdac8f6cece.inferres | 0 fonda/cpp_testsuite/varBugs/runTests.py | 126 +- fonda/cpp_testsuite/varBugs/summaryTable.txt | 1475 ++- 404 files changed, 69082 insertions(+), 33663 deletions(-) create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/0900800fbab.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/0900800fbab.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/0ddfa412ee9.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/0ddfa412ee9.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/1f46088b38d.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/1f46088b38d.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/3407eccc321.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/3407eccc321.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/4202d5fee3e.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/4202d5fee3e.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/4945115b2e7.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/4945115b2e7.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/56d9881993f.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/56d9881993f.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/581635e28f1.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/581635e28f1.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/6338509eb37.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/6338509eb37.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/664e3aac6dd.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/664e3aac6dd.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/9327311d30f.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/9327311d30f.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/97ecbec1237.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/97ecbec1237.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/b833f064550.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/bbeb0516cf0.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/bbeb0516cf0.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/dbafef17dd1.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/dbafef17dd1.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/test.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/test.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/192c35f6eb2.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/192c35f6eb2.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/5cd6461b6fb.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/5cd6461b6fb.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/cc3f20b9bdf.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/cc3f20b9bdf.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/cf1f2ace391.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/cf1f2ace391.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/df7b6577c6a.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/df7b6577c6a.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/0988c4c7fb5.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/0988c4c7fb5.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/1c17e4d4437.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/1c17e4d4437.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/1f758a4341a.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/1f758a4341a.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/208d89843b7.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/208d89843b7.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/218ad12f42e.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/218ad12f42e.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/221ac329e93.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/221ac329e93.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/242f1a34377.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/242f1a34377.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/2f02c15a5d9.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/2f02c15a5d9.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/30e053248da.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/30e053248da.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/36855dcfc98.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/36855dcfc98.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/472a474c663.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/472a474c663.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/6515e48932c.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/6515e48932c.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/657e9649e74.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/657e9649e74.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/66517915e09.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/66517915e09.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/76baeebf7df.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/76baeebf7df.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/76baeebf7df.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/7c6048b7c83.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/7c6048b7c83.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/809e660f438.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/809e660f438.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/8c8296223f3.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/8c8296223f3.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/91ea8207168.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/91ea8207168.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/bc8cec0dff0.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/bc8cec0dff0.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/c708c57e247.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/c708c57e247.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/d530db0db90.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/d530db0db90.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/d6c7e113959.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/d6c7e113959.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/e1fbd9210d5.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/e1fbd9210d5.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/e67bc51e574.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/e67bc51e574.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/f3d83e24154.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/f3d83e24154.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/f48ec1d7885.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/f48ec1d7885.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/f7ab9b407b3.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/LINUX/f7ab9b407b3.inferres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/2d22902d080.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/2d22902d080.inferres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/2db384a21d6.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/2db384a21d6.inferres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/30248214c7f.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/30248214c7f.inferres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.inferres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.inferres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/7336e6df070.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/7336e6df070.inferres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.inferres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.inferres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.inferres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/b8e79dce897.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/b8e79dce897.inferres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.inferres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/f87c80889fe.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/f87c80889fe.inferres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/fc3c76fc164.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/fc3c76fc164.inferres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/fdac8f6cece.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/MARLIN/fdac8f6cece.inferres diff --git a/fonda/cpp_testsuite/varBugs/APACHE-0900800fbab.report b/fonda/cpp_testsuite/varBugs/APACHE-0900800fbab.report index 1003ecf7..9b7b918c 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE-0900800fbab.report +++ b/fonda/cpp_testsuite/varBugs/APACHE-0900800fbab.report @@ -7,4 +7,8 @@ Macros: [-UHAVE_SYSLOG -DAPLOG_MAX_LOGLEVEL=1 ] [-DHAVE_SYSLOG=1 -DAPLOG_MAX_LOGLEVEL=1 ] Desugared Clang Results: +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/APACHE-0ddfa412ee9.report b/fonda/cpp_testsuite/varBugs/APACHE-0ddfa412ee9.report index 2180db40..832bf90e 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE-0ddfa412ee9.report +++ b/fonda/cpp_testsuite/varBugs/APACHE-0ddfa412ee9.report @@ -3,4 +3,8 @@ Macros: HAVE_TLS_ALPN [-UHAVE_TLS_ALPN ] Desugared Clang Results: +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/APACHE-1a3c8e3d840.report b/fonda/cpp_testsuite/varBugs/APACHE-1a3c8e3d840.report index f5408078..d07185ce 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE-1a3c8e3d840.report +++ b/fonda/cpp_testsuite/varBugs/APACHE-1a3c8e3d840.report @@ -3,17 +3,15 @@ Macros: HAVE_TLSV1_X [-UHAVE_TLSV1_X ] Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.c:273:2: warning: Value stored to '__thisopt_252' is never read [deadcode.DeadStores] - __thisopt_252 = ( 1 << 3 ) ; // L4:L13 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.c:1332:2: warning: Value stored to '__thisopt_798' is never read [deadcode.DeadStores] + __thisopt_798 = ( 1 << 3 ) ; // L4:L13 ^ ~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.c:287:2: warning: Value stored to '__thisopt_252' is never read [deadcode.DeadStores] - __thisopt_252 = ( 1 << 3 ) ; // L4:L13 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.c:1368:2: warning: Value stored to '__thisopt_798' is never read [deadcode.DeadStores] + __thisopt_798 = ( 1 << 3 ) ; // L4:L13 ^ ~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.c:318:2: warning: Value stored to '__thisopt_252' is never read [deadcode.DeadStores] - __thisopt_252 = ( 1 << 3 ) ; // L4:L13 - ^ ~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.c:332:2: warning: Value stored to '__thisopt_252' is never read [deadcode.DeadStores] - __thisopt_252 = ( 1 << 3 ) ; // L4:L13 - ^ ~~~~~~~~~~ -4 warnings generated. +2 warnings generated. +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/APACHE-1b48bb3c1af.report b/fonda/cpp_testsuite/varBugs/APACHE-1b48bb3c1af.report index 53f0d50b..874c7351 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE-1b48bb3c1af.report +++ b/fonda/cpp_testsuite/varBugs/APACHE-1b48bb3c1af.report @@ -6,17 +6,28 @@ Macros: [-DAPU_HAS_LDAP=1 -UAPR_HAS_SHARED_MEMORY ] [-UAPU_HAS_LDAP -DAPR_HAS_SHARED_MEMORY=1 ] [-DAPU_HAS_LDAP=1 -DAPR_HAS_SHARED_MEMORY=1 ] -115 :: Line:14 +clang :: 186 :: Line:14 1st function call argument is an uninitialized value [core.CallAndMessage] +infer :: 187 :: Line:14 + Uninitialized Value Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c:1273:2: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] - __apr_rmm_init_1019 ( __rmm_lock_1023 ) ; // L14 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c:1427:2: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] + __apr_rmm_init_1093 ( __rmm_lock_1099 ) ; // L14 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c:1276:2: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] - __apr_rmm_init_1020 ( __rmm_lock_1023 ) ; // L14 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c:1430:2: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] + __apr_rmm_init_1094 ( __rmm_lock_1099 ) ; // L14 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -2 warnings generated. +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c:1433:2: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] + __apr_rmm_init_1095 ( __rmm_lock_1099 ) ; // L14 + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +3 warnings generated. +Desugared Infer Results: + + No issues found Matches: - 115 has a match! + 186 has a match! Unmatched ids: None! +Matches: +Unmatched ids: + 187 diff --git a/fonda/cpp_testsuite/varBugs/APACHE-1f46088b38d.report b/fonda/cpp_testsuite/varBugs/APACHE-1f46088b38d.report index ce5d903c..332e1077 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE-1f46088b38d.report +++ b/fonda/cpp_testsuite/varBugs/APACHE-1f46088b38d.report @@ -3,4 +3,8 @@ Macros: SIGPIPE [-USIGPIPE ] Desugared Clang Results: +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/APACHE-2a6cbfa00e0.report b/fonda/cpp_testsuite/varBugs/APACHE-2a6cbfa00e0.report index c47fd0cd..173a67f5 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE-2a6cbfa00e0.report +++ b/fonda/cpp_testsuite/varBugs/APACHE-2a6cbfa00e0.report @@ -2,25 +2,32 @@ APACHE 2a6cbfa00e0.c Macros: SHARED_MODULE [-USHARED_MODULE ] -108 :: Line:16 +clang :: 184 :: Line:16 Potential leak of memory pointed to by 'sc' [unix.Malloc] Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c:1496:5: warning: Potential leak of memory pointed to by '__sc_1019' [unix.Malloc] -if (__static_condition_default_1028) { +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c:1569:5: warning: Potential leak of memory pointed to by '__sc_1084' [unix.Malloc] +if (__static_condition_default_1093) { ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c:1499:5: warning: Potential leak of memory pointed to by '__sc_1018' [unix.Malloc] -if (__static_condition_default_1029) { +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c:1603:5: warning: Potential leak of memory pointed to by '__sc_1085' [unix.Malloc] +if (__static_condition_default_1098) { ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c:1525:10: warning: Value stored to '__sc_1021' during its initialization is never read [deadcode.DeadStores] -char * (__sc_1021)= malloc (sizeof(char) * 45);// L6 - ^~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c:1527:1: warning: Potential leak of memory pointed to by '__sc_1021' [unix.Malloc] -__static_type_error("type error") ; // L9 -^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c:1531:5: warning: Potential leak of memory pointed to by '__sc_1020' [unix.Malloc] -if (__static_condition_default_1034) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -5 warnings generated. +2 warnings generated. +Desugared Infer Results: + +APACHE/2a6cbfa00e0.desugared.c:1600: error: Memory Leak + Memory dynamically allocated by `malloc` on line 1593 is not freed after the last access at line 1600, column 5. + 1598. + 1599. __static_type_error("type error") ; // L9 + 1600. if (__static_condition_default_1097) { + ^ + 1601. free ( __sc_1085 ) ; // L12 + 1602. } + + +Found 1 issue + Issue Type(ISSUED_TYPE_ID): # + Memory Leak(MEMORY_LEAK_C): 1 Matches: Unmatched ids: - 108 + 184 +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/APACHE-3407eccc321.report b/fonda/cpp_testsuite/varBugs/APACHE-3407eccc321.report index 16586262..149c1bb5 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE-3407eccc321.report +++ b/fonda/cpp_testsuite/varBugs/APACHE-3407eccc321.report @@ -3,4 +3,8 @@ Macros: __STDC_VERSION__ [-U__STDC_VERSION__ ] Desugared Clang Results: +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/APACHE-35ae2e259e4.report b/fonda/cpp_testsuite/varBugs/APACHE-35ae2e259e4.report index 223f67cd..bcf2246e 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE-35ae2e259e4.report +++ b/fonda/cpp_testsuite/varBugs/APACHE-35ae2e259e4.report @@ -38,4 +38,56 @@ if (__static_condition_default_823) { if (__static_condition_default_823) { ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 10 warnings generated. +Desugared Infer Results: + +APACHE/35ae2e259e4.desugared.c:1366: error: Memory Leak + Memory dynamically allocated by `malloc` on line 1358 is not freed after the last access at line 1366, column 5. + 1364. if ( rand( ) % 2 )// L11 + 1365. { + 1366. if (__static_condition_default_806) { + ^ + 1367. + 1368. { + +APACHE/35ae2e259e4.desugared.c:1373: error: Memory Leak + Memory dynamically allocated by `malloc` on line 1358 is not freed after the last access at line 1373, column 1. + 1371. + 1372. + 1373. * __eckey_798 = 30 ; // L12 + ^ + 1374. } + 1375. } + +APACHE/35ae2e259e4.desugared.c:1397: error: Memory Leak + Memory dynamically allocated by `malloc` on line 1358 is not freed after the last access at line 1397, column 1. + 1395. + 1396. + 1397. * __eckey_798 = 15 ; // L17 + ^ + 1398. } + 1399. } + +APACHE/35ae2e259e4.desugared.c:1435: error: Memory Leak + Memory dynamically allocated by `malloc` on line 1427 is not freed after the last access at line 1435, column 5. + 1433. if ( rand( ) % 2 )// L11 + 1434. { + 1435. if (__static_condition_default_815) { + ^ + 1436. + 1437. { + +APACHE/35ae2e259e4.desugared.c:1442: error: Memory Leak + Memory dynamically allocated by `malloc` on line 1427 is not freed after the last access at line 1442, column 1. + 1440. + 1441. + 1442. * __eckey_798 = 30 ; // L12 + ^ + 1443. } + 1444. } + + +Found 8 issues (console output truncated to 5, see '/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/infer-out/report.txt' for the full list) + Issue Type(ISSUED_TYPE_ID): # + Memory Leak(MEMORY_LEAK_C): 8 +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/APACHE-4202d5fee3e.report b/fonda/cpp_testsuite/varBugs/APACHE-4202d5fee3e.report index 5ddc5d01..ba5f4e94 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE-4202d5fee3e.report +++ b/fonda/cpp_testsuite/varBugs/APACHE-4202d5fee3e.report @@ -7,4 +7,8 @@ Macros: [-UAPU_HAS_LDAP -DAPU_HAS_LDAP_NETSCAPE_SSL=1 ] [-DAPU_HAS_LDAP=1 -DAPU_HAS_LDAP_NETSCAPE_SSL=1 ] Desugared Clang Results: +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/APACHE-4945115b2e7.report b/fonda/cpp_testsuite/varBugs/APACHE-4945115b2e7.report index 4ef96384..4b10b2f4 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE-4945115b2e7.report +++ b/fonda/cpp_testsuite/varBugs/APACHE-4945115b2e7.report @@ -7,4 +7,8 @@ Macros: [-UDEBUG_CGI -DOS2=1 ] [-DDEBUG_CGI=1 -DOS2=1 ] Desugared Clang Results: +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/APACHE-56d9881993f.report b/fonda/cpp_testsuite/varBugs/APACHE-56d9881993f.report index 15ced9c4..499dbeec 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE-56d9881993f.report +++ b/fonda/cpp_testsuite/varBugs/APACHE-56d9881993f.report @@ -3,4 +3,8 @@ Macros: APR_HAS_SENDFILE [-UAPR_HAS_SENDFILE ] Desugared Clang Results: +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/APACHE-581635e28f1.report b/fonda/cpp_testsuite/varBugs/APACHE-581635e28f1.report index e8e848ba..194655f8 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE-581635e28f1.report +++ b/fonda/cpp_testsuite/varBugs/APACHE-581635e28f1.report @@ -3,4 +3,8 @@ Macros: APR_HAVE_IPV6 [-UAPR_HAVE_IPV6 ] Desugared Clang Results: +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/APACHE-6338509eb37.report b/fonda/cpp_testsuite/varBugs/APACHE-6338509eb37.report index 0a7c2e98..cc51bea9 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE-6338509eb37.report +++ b/fonda/cpp_testsuite/varBugs/APACHE-6338509eb37.report @@ -3,4 +3,8 @@ Macros: HAVE_FIPS [-UHAVE_FIPS ] Desugared Clang Results: +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/APACHE-664e3aac6dd.report b/fonda/cpp_testsuite/varBugs/APACHE-664e3aac6dd.report index 3af5000b..ee2f7073 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE-664e3aac6dd.report +++ b/fonda/cpp_testsuite/varBugs/APACHE-664e3aac6dd.report @@ -3,4 +3,8 @@ Macros: WIN32X [-UWIN32X ] Desugared Clang Results: +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/APACHE-9327311d30f.report b/fonda/cpp_testsuite/varBugs/APACHE-9327311d30f.report index 2349fb60..1f1c4b6f 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE-9327311d30f.report +++ b/fonda/cpp_testsuite/varBugs/APACHE-9327311d30f.report @@ -3,4 +3,8 @@ Macros: APR_HAS_SHARED_MEMORY [-UAPR_HAS_SHARED_MEMORY ] Desugared Clang Results: +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/APACHE-97ecbec1237.report b/fonda/cpp_testsuite/varBugs/APACHE-97ecbec1237.report index c3c09430..912ac29c 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE-97ecbec1237.report +++ b/fonda/cpp_testsuite/varBugs/APACHE-97ecbec1237.report @@ -3,4 +3,8 @@ Macros: APR_HAS_SHARED_MEMORY [-UAPR_HAS_SHARED_MEMORY ] Desugared Clang Results: +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/APACHE-bbeb0516cf0.report b/fonda/cpp_testsuite/varBugs/APACHE-bbeb0516cf0.report index 8266ffb4..859089bb 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE-bbeb0516cf0.report +++ b/fonda/cpp_testsuite/varBugs/APACHE-bbeb0516cf0.report @@ -3,4 +3,8 @@ Macros: APR_FILES_AS_SOCKETS [-UAPR_FILES_AS_SOCKETS ] Desugared Clang Results: +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/APACHE-c76df14dfb4.report b/fonda/cpp_testsuite/varBugs/APACHE-c76df14dfb4.report index d7172b18..d25b5834 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE-c76df14dfb4.report +++ b/fonda/cpp_testsuite/varBugs/APACHE-c76df14dfb4.report @@ -13,17 +13,21 @@ Macros: [-DCROSS_COMPILE=1 -Ddefined=1 -DNEED_ENHANCED_ESCAPES=1 ] [-UCROSS_COMPILE -Udefined -UNEED_ENHANCED_ESCAPES ] Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c:2149:2: warning: Value stored to '__flags_1818' is never read [deadcode.DeadStores] - __flags_1818 |= ( 0x01 ) ; // L4:L42 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c:3171:2: warning: Value stored to '__flags_2323' is never read [deadcode.DeadStores] + __flags_2323 |= ( 0x01 ) ; // L4:L42 ^ ~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c:2213:2: warning: Value stored to '__flags_1818' is never read [deadcode.DeadStores] - __flags_1818 |= ( 0x01 ) ; // L4:L42 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c:3240:2: warning: Value stored to '__flags_2323' is never read [deadcode.DeadStores] + __flags_2323 |= ( 0x01 ) ; // L4:L42 ^ ~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c:2305:2: warning: Value stored to '__flags_1818' is never read [deadcode.DeadStores] - __flags_1818 |= ( 0x01 ) ; // L4:L42 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c:3309:2: warning: Value stored to '__flags_2323' is never read [deadcode.DeadStores] + __flags_2323 |= ( 0x01 ) ; // L4:L42 ^ ~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c:2397:2: warning: Value stored to '__flags_1818' is never read [deadcode.DeadStores] - __flags_1818 |= ( 0x01 ) ; // L4:L42 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c:3378:2: warning: Value stored to '__flags_2323' is never read [deadcode.DeadStores] + __flags_2323 |= ( 0x01 ) ; // L4:L42 ^ ~~~~~~~~ 4 warnings generated. +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/APACHE-d0040a07aec.report b/fonda/cpp_testsuite/varBugs/APACHE-d0040a07aec.report index 2f8a81a7..0b654f95 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE-d0040a07aec.report +++ b/fonda/cpp_testsuite/varBugs/APACHE-d0040a07aec.report @@ -7,4 +7,8 @@ Macros: [-Udefined -DRLIMIT_NPROC=1 ] [-Ddefined=1 -DRLIMIT_NPROC=1 ] Desugared Clang Results: +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/APACHE-d05e574ec26.report b/fonda/cpp_testsuite/varBugs/APACHE-d05e574ec26.report index d38d3b18..5d31eda9 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE-d05e574ec26.report +++ b/fonda/cpp_testsuite/varBugs/APACHE-d05e574ec26.report @@ -40,4 +40,8 @@ if (__static_condition_default_2056) { if (__static_condition_default_2057) { ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 12 warnings generated. +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/APACHE-dbafef17dd1.report b/fonda/cpp_testsuite/varBugs/APACHE-dbafef17dd1.report index 4efe630e..1bdda520 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE-dbafef17dd1.report +++ b/fonda/cpp_testsuite/varBugs/APACHE-dbafef17dd1.report @@ -3,4 +3,8 @@ Macros: HAS_APACHE_REGEX_LIB [-UHAS_APACHE_REGEX_LIB ] Desugared Clang Results: +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/APACHE-test.report b/fonda/cpp_testsuite/varBugs/APACHE-test.report index c23ad083..e5ae7ddf 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE-test.report +++ b/fonda/cpp_testsuite/varBugs/APACHE-test.report @@ -13,4 +13,8 @@ Macros: [-DXX=1 -DYY=1 -DZZ=1 ] [-UXX -UYY -UZZ ] Desugared Clang Results: +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/APACHE/0900800fbab.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/0900800fbab.desugared.c index e3fcfb6e..c8a91ac8 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/0900800fbab.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/0900800fbab.desugared.c @@ -7,42 +7,81 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); +extern const bool __static_condition_default_7; +extern const bool __static_condition_default_6; +extern const bool __static_condition_default_5; +extern const bool __static_condition_default_10; +extern const bool __static_condition_default_9; extern const bool __static_condition_default_3; -extern const bool __static_condition_default_2; extern const bool __static_condition_default_4; -extern const bool __static_condition_default_5; +extern const bool __static_condition_default_8; void __static_initializer_default() { __static_renaming("__ap_get_server_module_loglevel_0", "ap_get_server_module_loglevel"); __static_renaming("__main_1", "main"); +__static_renaming("__main_2", "main"); -__static_condition_renaming("__static_condition_default_2", "(defined AP_DEBUG) && !(defined APLOG_MAX_LOGLEVEL)"); -__static_condition_renaming("__static_condition_default_3", "(defined AP_DEBUG) && (defined APLOG_MAX_LOGLEVEL)"); -__static_condition_renaming("__static_condition_default_4", "!(defined AP_DEBUG) && !(defined APLOG_MAX_LOGLEVEL)"); -__static_condition_renaming("__static_condition_default_5", "!(defined AP_DEBUG) && (defined APLOG_MAX_LOGLEVEL)"); +__static_condition_renaming("__static_condition_default_3", "!(defined HAVE_SYSLOG)"); +__static_condition_renaming("__static_condition_default_4", "!(defined HAVE_SYSLOG) && !(defined APLOG_MAX_LOGLEVEL)"); +__static_condition_renaming("__static_condition_default_5", "!(defined HAVE_SYSLOG) && (defined APLOG_MAX_LOGLEVEL)"); +__static_condition_renaming("__static_condition_default_6", "(defined HAVE_SYSLOG)"); +__static_condition_renaming("__static_condition_default_7", "(defined HAVE_SYSLOG) && (defined AP_DEBUG) && !(defined APLOG_MAX_LOGLEVEL)"); +__static_condition_renaming("__static_condition_default_8", "(defined HAVE_SYSLOG) && (defined AP_DEBUG) && (defined APLOG_MAX_LOGLEVEL)"); +__static_condition_renaming("__static_condition_default_9", "(defined HAVE_SYSLOG) && !(defined AP_DEBUG) && !(defined APLOG_MAX_LOGLEVEL)"); +__static_condition_renaming("__static_condition_default_10", "(defined HAVE_SYSLOG) && !(defined AP_DEBUG) && (defined APLOG_MAX_LOGLEVEL)"); }; void (__ap_get_server_module_loglevel_0) ();// L7 int (__main_1) (void ) { +if (__static_condition_default_3) { + +{ +{ + + + +if (__static_condition_default_4) { +if ( 1 <= 2 )// L16 +{ +__static_type_error("type error") ; // L17 +} +} +if (__static_condition_default_5) { +if ( 1 <= 3 )// L16 +{ +__static_type_error("type error") ; // L20 +} +} +return 0 ;// L23 +} +} + + +} +} +int (__main_2) (void ) { + +if (__static_condition_default_6) { + { { -if (__static_condition_default_2) { +if (__static_condition_default_7) { if ( 1 <= 2 )// L16 { __ap_get_server_module_loglevel_0 ( ) ; // L17 } } -if (__static_condition_default_3) { +if (__static_condition_default_8) { if ( 1 <= 3 )// L16 { __ap_get_server_module_loglevel_0 ( ) ; // L20 } } -if (__static_condition_default_4) { +if (__static_condition_default_9) { if ( 1 <= 2 )// L16 { do @@ -59,7 +98,7 @@ do while( 0 );// L9:L17 } } -if (__static_condition_default_5) { +if (__static_condition_default_10) { if ( 1 <= 3 )// L16 { do @@ -82,4 +121,5 @@ return 0 ;// L23 } +} diff --git a/fonda/cpp_testsuite/varBugs/APACHE/0900800fbab.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/0900800fbab.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/0900800fbab.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/0900800fbab.inferres b/fonda/cpp_testsuite/varBugs/APACHE/0900800fbab.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/0900800fbab.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/0ddfa412ee9.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/0ddfa412ee9.desugared.c index 24e0b1b9..1f7c0429 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/0ddfa412ee9.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/0ddfa412ee9.desugared.c @@ -7,9 +7,9 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); +extern const bool __static_condition_default_7; extern const bool __static_condition_default_2; extern const bool __static_condition_default_6; -extern const bool __static_condition_default_7; void __static_initializer_default() { __static_renaming("__ssl_array_index_0", "ssl_array_index"); __static_renaming("__ssl_cmp_alpn_protos_1", "ssl_cmp_alpn_protos"); diff --git a/fonda/cpp_testsuite/varBugs/APACHE/0ddfa412ee9.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/0ddfa412ee9.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/0ddfa412ee9.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/0ddfa412ee9.inferres b/fonda/cpp_testsuite/varBugs/APACHE/0ddfa412ee9.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/0ddfa412ee9.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.c index 30fc2316..7613572d 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.c @@ -7,155 +7,850 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_109; -extern const bool __static_condition_default_151; +extern const bool __static_condition_default_806; extern const bool __static_condition_default_255; -extern const bool __static_condition_default_260; -extern const bool __static_condition_default_130; -extern const bool __static_condition_default_149; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_132; -extern const bool __static_condition_default_107; -extern const bool __static_condition_default_190; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_157; +extern const bool __static_condition_default_302; +extern const bool __static_condition_default_261; +extern const bool __static_condition_default_414; +extern const bool __static_condition_default_215; +extern const bool __static_condition_default_378; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_273; +extern const bool __static_condition_default_305; +extern const bool __static_condition_default_308; +extern const bool __static_condition_default_812; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_325; +extern const bool __static_condition_default_810; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_429; +extern const bool __static_condition_default_243; +extern const bool __static_condition_default_420; +extern const bool __static_condition_default_237; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_581; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_352; +extern const bool __static_condition_default_252; +extern const bool __static_condition_default_802; +extern const bool __static_condition_default_627; +extern const bool __static_condition_default_804; +extern const bool __static_condition_default_276; +extern const bool __static_condition_default_805; +extern const bool __static_condition_default_594; +extern const bool __static_condition_default_279; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_285; +extern const bool __static_condition_default_394; +extern const bool __static_condition_default_361; +extern const bool __static_condition_default_60; +extern const bool __static_condition_default_604; +extern const bool __static_condition_default_234; +extern const bool __static_condition_default_426; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_579; extern const bool __static_condition_default_258; -extern const bool __static_condition_default_256; -extern const bool __static_condition_default_155; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_122; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_67; +extern const bool __static_condition_default_423; +extern const bool __static_condition_default_240; +extern const bool __static_condition_default_814; +extern const bool __static_condition_default_349; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_808; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_595; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_629; +extern const bool __static_condition_default_379; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_813; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); __static_renaming("__wchar_t_2", "wchar_t"); -__static_renaming("__div_t_7", "div_t"); -__static_renaming("__ldiv_t_12", "ldiv_t"); -__static_renaming("__lldiv_t_17", "lldiv_t"); -__static_renaming("____ctype_get_mb_cur_max_18", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_19", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_20", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_21", "__ctype_get_mb_cur_max"); -__static_renaming("__atof_23", "atof"); -__static_renaming("__atof_24", "atof"); -__static_renaming("__atoi_26", "atoi"); -__static_renaming("__atoi_27", "atoi"); -__static_renaming("__atol_29", "atol"); -__static_renaming("__atol_30", "atol"); -__static_renaming("__atoll_32", "atoll"); -__static_renaming("__atoll_33", "atoll"); -__static_renaming("__strtod_36", "strtod"); -__static_renaming("__strtof_39", "strtof"); -__static_renaming("__strtold_42", "strtold"); -__static_renaming("__strtol_46", "strtol"); -__static_renaming("__strtoul_50", "strtoul"); -__static_renaming("__strtoll_54", "strtoll"); -__static_renaming("__strtoull_58", "strtoull"); -__static_renaming("__rand_62", "rand"); -__static_renaming("__rand_63", "rand"); -__static_renaming("__srand_65", "srand"); -__static_renaming("__malloc_67", "malloc"); -__static_renaming("__malloc_68", "malloc"); -__static_renaming("__calloc_71", "calloc"); -__static_renaming("__calloc_72", "calloc"); -__static_renaming("__realloc_75", "realloc"); -__static_renaming("__realloc_76", "realloc"); -__static_renaming("__free_78", "free"); -__static_renaming("__aligned_alloc_81", "aligned_alloc"); -__static_renaming("__aligned_alloc_82", "aligned_alloc"); -__static_renaming("__abort_83", "abort"); -__static_renaming("__atexit_85", "atexit"); -__static_renaming("__at_quick_exit_87", "at_quick_exit"); -__static_renaming("__exit_89", "exit"); -__static_renaming("__quick_exit_91", "quick_exit"); -__static_renaming("___Exit_93", "_Exit"); -__static_renaming("__getenv_95", "getenv"); -__static_renaming("__getenv_96", "getenv"); -__static_renaming("__system_98", "system"); -__static_renaming("__system_99", "system"); -__static_renaming("____compar_fn_t_100", "__compar_fn_t"); -__static_renaming("__bsearch_108", "bsearch"); -__static_renaming("__bsearch_110", "bsearch"); -__static_renaming("____l_117", "__l"); -__static_renaming("____u_118", "__u"); -__static_renaming("____idx_119", "__idx"); -__static_renaming("____p_120", "__p"); -__static_renaming("____comparison_121", "__comparison"); -__static_renaming("__qsort_129", "qsort"); -__static_renaming("__qsort_131", "qsort"); -__static_renaming("__abs_134", "abs"); -__static_renaming("__abs_135", "abs"); -__static_renaming("__labs_137", "labs"); -__static_renaming("__labs_138", "labs"); -__static_renaming("__llabs_140", "llabs"); -__static_renaming("__llabs_141", "llabs"); -__static_renaming("__div_144", "div"); -__static_renaming("__div_145", "div"); -__static_renaming("__ldiv_148", "ldiv"); -__static_renaming("__ldiv_150", "ldiv"); -__static_renaming("__lldiv_154", "lldiv"); -__static_renaming("__lldiv_156", "lldiv"); -__static_renaming("__mblen_160", "mblen"); -__static_renaming("__mbtowc_164", "mbtowc"); -__static_renaming("__wctomb_167", "wctomb"); -__static_renaming("__mbstowcs_171", "mbstowcs"); -__static_renaming("__wcstombs_175", "wcstombs"); -__static_renaming("____realpath_chk_180", "__realpath_chk"); -__static_renaming("____realpath_alias_183", "__realpath_alias"); -__static_renaming("____realpath_chk_warn_187", "__realpath_chk_warn"); -__static_renaming("____ptsname_r_chk_195", "__ptsname_r_chk"); -__static_renaming("____ptsname_r_alias_199", "__ptsname_r_alias"); -__static_renaming("____ptsname_r_chk_warn_204", "__ptsname_r_chk_warn"); -__static_renaming("____wctomb_chk_212", "__wctomb_chk"); -__static_renaming("____wctomb_alias_215", "__wctomb_alias"); -__static_renaming("____mbstowcs_chk_222", "__mbstowcs_chk"); -__static_renaming("____mbstowcs_alias_226", "__mbstowcs_alias"); -__static_renaming("____mbstowcs_chk_warn_231", "__mbstowcs_chk_warn"); -__static_renaming("____wcstombs_chk_239", "__wcstombs_chk"); -__static_renaming("____wcstombs_alias_243", "__wcstombs_alias"); -__static_renaming("____wcstombs_chk_warn_248", "__wcstombs_chk_warn"); -__static_renaming("__thisopt_252", "thisopt"); -__static_renaming("__ssl_cmd_protocol_parse_253", "ssl_cmd_protocol_parse"); -__static_renaming("__ssl_cmd_protocol_parse_254", "ssl_cmd_protocol_parse"); -__static_renaming("__main_261", "main"); - -__static_condition_renaming("__static_condition_default_107", "!(defined _FORTIFY_SOURCE) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_109", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_122", "(defined __USE_EXTERN_INLINES) && !(defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_123", "(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_130", "!(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_132", "(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_149", "!(defined _FORTIFY_SOURCE) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_151", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_155", "!(defined _FORTIFY_SOURCE) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_157", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_190", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_255", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_256", "!(defined _FORTIFY_SOURCE) && !(defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_257", "!(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_258", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_259", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_260", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); +__static_renaming("__idtype_t_8", "idtype_t"); +__static_renaming("____u_char_9", "__u_char"); +__static_renaming("____u_short_10", "__u_short"); +__static_renaming("____u_int_11", "__u_int"); +__static_renaming("____u_long_12", "__u_long"); +__static_renaming("____int8_t_13", "__int8_t"); +__static_renaming("____uint8_t_14", "__uint8_t"); +__static_renaming("____int16_t_15", "__int16_t"); +__static_renaming("____uint16_t_16", "__uint16_t"); +__static_renaming("____int32_t_17", "__int32_t"); +__static_renaming("____uint32_t_18", "__uint32_t"); +__static_renaming("____int64_t_19", "__int64_t"); +__static_renaming("____uint64_t_20", "__uint64_t"); +__static_renaming("____quad_t_21", "__quad_t"); +__static_renaming("____u_quad_t_22", "__u_quad_t"); +__static_renaming("____dev_t_23", "__dev_t"); +__static_renaming("____uid_t_24", "__uid_t"); +__static_renaming("____gid_t_25", "__gid_t"); +__static_renaming("____ino_t_26", "__ino_t"); +__static_renaming("____ino64_t_27", "__ino64_t"); +__static_renaming("____mode_t_28", "__mode_t"); +__static_renaming("____nlink_t_29", "__nlink_t"); +__static_renaming("____off_t_30", "__off_t"); +__static_renaming("____off64_t_31", "__off64_t"); +__static_renaming("____pid_t_32", "__pid_t"); +__static_renaming("____fsid_t_36", "__fsid_t"); +__static_renaming("____clock_t_37", "__clock_t"); +__static_renaming("____rlim_t_38", "__rlim_t"); +__static_renaming("____rlim64_t_39", "__rlim64_t"); +__static_renaming("____id_t_40", "__id_t"); +__static_renaming("____time_t_41", "__time_t"); +__static_renaming("____useconds_t_42", "__useconds_t"); +__static_renaming("____suseconds_t_43", "__suseconds_t"); +__static_renaming("____daddr_t_44", "__daddr_t"); +__static_renaming("____key_t_45", "__key_t"); +__static_renaming("____clockid_t_46", "__clockid_t"); +__static_renaming("____timer_t_47", "__timer_t"); +__static_renaming("____blksize_t_48", "__blksize_t"); +__static_renaming("____blkcnt_t_49", "__blkcnt_t"); +__static_renaming("____blkcnt64_t_50", "__blkcnt64_t"); +__static_renaming("____fsblkcnt_t_51", "__fsblkcnt_t"); +__static_renaming("____fsblkcnt64_t_52", "__fsblkcnt64_t"); +__static_renaming("____fsfilcnt_t_53", "__fsfilcnt_t"); +__static_renaming("____fsfilcnt64_t_54", "__fsfilcnt64_t"); +__static_renaming("____fsword_t_55", "__fsword_t"); +__static_renaming("____ssize_t_56", "__ssize_t"); +__static_renaming("____syscall_slong_t_57", "__syscall_slong_t"); +__static_renaming("____syscall_ulong_t_58", "__syscall_ulong_t"); +__static_renaming("____loff_t_59", "__loff_t"); +__static_renaming("____qaddr_t_61", "__qaddr_t"); +__static_renaming("____caddr_t_62", "__caddr_t"); +__static_renaming("____intptr_t_63", "__intptr_t"); +__static_renaming("____socklen_t_64", "__socklen_t"); +__static_renaming("____bswap_32_66", "__bswap_32"); +__static_renaming("____bswap_64_69", "__bswap_64"); +__static_renaming("____WAIT_STATUS_89", "__WAIT_STATUS"); +__static_renaming("__div_t_94", "div_t"); +__static_renaming("__ldiv_t_99", "ldiv_t"); +__static_renaming("__lldiv_t_104", "lldiv_t"); +__static_renaming("____ctype_get_mb_cur_max_105", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_106", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_107", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_108", "__ctype_get_mb_cur_max"); +__static_renaming("__atof_110", "atof"); +__static_renaming("__atof_111", "atof"); +__static_renaming("__atoi_113", "atoi"); +__static_renaming("__atoi_114", "atoi"); +__static_renaming("__atol_116", "atol"); +__static_renaming("__atol_117", "atol"); +__static_renaming("__atoll_119", "atoll"); +__static_renaming("__atoll_120", "atoll"); +__static_renaming("__strtod_123", "strtod"); +__static_renaming("__strtof_126", "strtof"); +__static_renaming("__strtold_129", "strtold"); +__static_renaming("__strtol_133", "strtol"); +__static_renaming("__strtoul_137", "strtoul"); +__static_renaming("__strtoq_141", "strtoq"); +__static_renaming("__strtouq_145", "strtouq"); +__static_renaming("__strtoll_149", "strtoll"); +__static_renaming("__strtoll_150", "strtoll"); +__static_renaming("__strtoull_154", "strtoull"); +__static_renaming("__l64a_159", "l64a"); +__static_renaming("__l64a_160", "l64a"); +__static_renaming("__a64l_162", "a64l"); +__static_renaming("__a64l_163", "a64l"); +__static_renaming("____u_char_164", "__u_char"); +__static_renaming("____u_short_165", "__u_short"); +__static_renaming("____u_int_166", "__u_int"); +__static_renaming("____u_long_167", "__u_long"); +__static_renaming("____int8_t_168", "__int8_t"); +__static_renaming("____uint8_t_169", "__uint8_t"); +__static_renaming("____int16_t_170", "__int16_t"); +__static_renaming("____uint16_t_171", "__uint16_t"); +__static_renaming("____int32_t_172", "__int32_t"); +__static_renaming("____uint32_t_173", "__uint32_t"); +__static_renaming("____int64_t_174", "__int64_t"); +__static_renaming("____uint64_t_175", "__uint64_t"); +__static_renaming("____quad_t_176", "__quad_t"); +__static_renaming("____u_quad_t_177", "__u_quad_t"); +__static_renaming("____dev_t_178", "__dev_t"); +__static_renaming("____uid_t_179", "__uid_t"); +__static_renaming("____gid_t_180", "__gid_t"); +__static_renaming("____ino_t_181", "__ino_t"); +__static_renaming("____ino64_t_182", "__ino64_t"); +__static_renaming("____mode_t_183", "__mode_t"); +__static_renaming("____nlink_t_184", "__nlink_t"); +__static_renaming("____off_t_185", "__off_t"); +__static_renaming("____off64_t_186", "__off64_t"); +__static_renaming("____pid_t_187", "__pid_t"); +__static_renaming("____fsid_t_191", "__fsid_t"); +__static_renaming("____clock_t_192", "__clock_t"); +__static_renaming("____rlim_t_193", "__rlim_t"); +__static_renaming("____rlim64_t_194", "__rlim64_t"); +__static_renaming("____id_t_195", "__id_t"); +__static_renaming("____time_t_196", "__time_t"); +__static_renaming("____useconds_t_197", "__useconds_t"); +__static_renaming("____suseconds_t_198", "__suseconds_t"); +__static_renaming("____daddr_t_199", "__daddr_t"); +__static_renaming("____key_t_200", "__key_t"); +__static_renaming("____clockid_t_201", "__clockid_t"); +__static_renaming("____timer_t_202", "__timer_t"); +__static_renaming("____blksize_t_203", "__blksize_t"); +__static_renaming("____blkcnt_t_204", "__blkcnt_t"); +__static_renaming("____blkcnt64_t_205", "__blkcnt64_t"); +__static_renaming("____fsblkcnt_t_206", "__fsblkcnt_t"); +__static_renaming("____fsblkcnt64_t_207", "__fsblkcnt64_t"); +__static_renaming("____fsfilcnt_t_208", "__fsfilcnt_t"); +__static_renaming("____fsfilcnt64_t_209", "__fsfilcnt64_t"); +__static_renaming("____fsword_t_210", "__fsword_t"); +__static_renaming("____ssize_t_211", "__ssize_t"); +__static_renaming("____syscall_slong_t_212", "__syscall_slong_t"); +__static_renaming("____syscall_ulong_t_213", "__syscall_ulong_t"); +__static_renaming("____loff_t_214", "__loff_t"); +__static_renaming("____qaddr_t_216", "__qaddr_t"); +__static_renaming("____caddr_t_217", "__caddr_t"); +__static_renaming("____intptr_t_218", "__intptr_t"); +__static_renaming("____socklen_t_219", "__socklen_t"); +__static_renaming("__u_char_220", "u_char"); +__static_renaming("__u_char_221", "u_char"); +__static_renaming("__u_short_222", "u_short"); +__static_renaming("__u_short_223", "u_short"); +__static_renaming("__u_int_224", "u_int"); +__static_renaming("__u_int_225", "u_int"); +__static_renaming("__u_long_226", "u_long"); +__static_renaming("__u_long_227", "u_long"); +__static_renaming("__quad_t_228", "quad_t"); +__static_renaming("__quad_t_229", "quad_t"); +__static_renaming("__u_quad_t_230", "u_quad_t"); +__static_renaming("__u_quad_t_231", "u_quad_t"); +__static_renaming("__fsid_t_232", "fsid_t"); +__static_renaming("__fsid_t_233", "fsid_t"); +__static_renaming("__loff_t_235", "loff_t"); +__static_renaming("__loff_t_236", "loff_t"); +__static_renaming("__loff_t_238", "loff_t"); +__static_renaming("__loff_t_239", "loff_t"); +__static_renaming("__ino_t_241", "ino_t"); +__static_renaming("__ino_t_242", "ino_t"); +__static_renaming("__ino_t_244", "ino_t"); +__static_renaming("__ino_t_245", "ino_t"); +__static_renaming("__dev_t_247", "dev_t"); +__static_renaming("__dev_t_248", "dev_t"); +__static_renaming("__gid_t_250", "gid_t"); +__static_renaming("__gid_t_251", "gid_t"); +__static_renaming("__gid_t_253", "gid_t"); +__static_renaming("__gid_t_254", "gid_t"); +__static_renaming("__mode_t_256", "mode_t"); +__static_renaming("__mode_t_257", "mode_t"); +__static_renaming("__nlink_t_259", "nlink_t"); +__static_renaming("__nlink_t_260", "nlink_t"); +__static_renaming("__uid_t_262", "uid_t"); +__static_renaming("__uid_t_263", "uid_t"); +__static_renaming("__uid_t_265", "uid_t"); +__static_renaming("__uid_t_266", "uid_t"); +__static_renaming("__off_t_268", "off_t"); +__static_renaming("__off_t_269", "off_t"); +__static_renaming("__off_t_271", "off_t"); +__static_renaming("__off_t_272", "off_t"); +__static_renaming("__pid_t_274", "pid_t"); +__static_renaming("__pid_t_275", "pid_t"); +__static_renaming("__pid_t_277", "pid_t"); +__static_renaming("__pid_t_278", "pid_t"); +__static_renaming("__id_t_280", "id_t"); +__static_renaming("__id_t_281", "id_t"); +__static_renaming("__ssize_t_283", "ssize_t"); +__static_renaming("__ssize_t_284", "ssize_t"); +__static_renaming("__daddr_t_286", "daddr_t"); +__static_renaming("__daddr_t_287", "daddr_t"); +__static_renaming("__caddr_t_289", "caddr_t"); +__static_renaming("__caddr_t_290", "caddr_t"); +__static_renaming("__key_t_291", "key_t"); +__static_renaming("__key_t_292", "key_t"); +__static_renaming("__key_t_294", "key_t"); +__static_renaming("__key_t_295", "key_t"); +__static_renaming("__clock_t_297", "clock_t"); +__static_renaming("__clock_t_298", "clock_t"); +__static_renaming("__time_t_300", "time_t"); +__static_renaming("__time_t_301", "time_t"); +__static_renaming("__clockid_t_303", "clockid_t"); +__static_renaming("__clockid_t_304", "clockid_t"); +__static_renaming("__timer_t_306", "timer_t"); +__static_renaming("__timer_t_307", "timer_t"); +__static_renaming("__ulong_309", "ulong"); +__static_renaming("__ulong_310", "ulong"); +__static_renaming("__ulong_311", "ulong"); +__static_renaming("__ushort_312", "ushort"); +__static_renaming("__uint_313", "uint"); +__static_renaming("__int8_t_314", "int8_t"); +__static_renaming("__int16_t_315", "int16_t"); +__static_renaming("__int32_t_316", "int32_t"); +__static_renaming("__int64_t_317", "int64_t"); +__static_renaming("__u_int8_t_318", "u_int8_t"); +__static_renaming("__u_int16_t_319", "u_int16_t"); +__static_renaming("__u_int32_t_320", "u_int32_t"); +__static_renaming("__u_int64_t_321", "u_int64_t"); +__static_renaming("__register_t_322", "register_t"); +__static_renaming("____bswap_32_324", "__bswap_32"); +__static_renaming("____bswap_64_327", "__bswap_64"); +__static_renaming("____sig_atomic_t_328", "__sig_atomic_t"); +__static_renaming("____sigset_t_332", "__sigset_t"); +__static_renaming("__sigset_t_333", "sigset_t"); +__static_renaming("__suseconds_t_350", "suseconds_t"); +__static_renaming("__suseconds_t_351", "suseconds_t"); +__static_renaming("____fd_mask_353", "__fd_mask"); +__static_renaming("____fd_mask_354", "__fd_mask"); +__static_renaming("__fd_set_362", "fd_set"); +__static_renaming("__fd_mask_363", "fd_mask"); +__static_renaming("__fd_mask_364", "fd_mask"); +__static_renaming("__select_376", "select"); +__static_renaming("__select_377", "select"); +__static_renaming("__pselect_392", "pselect"); +__static_renaming("__pselect_393", "pselect"); +__static_renaming("____fdelt_chk_397", "__fdelt_chk"); +__static_renaming("____fdelt_warn_399", "__fdelt_warn"); +__static_renaming("__gnu_dev_major_401", "gnu_dev_major"); +__static_renaming("__gnu_dev_major_402", "gnu_dev_major"); +__static_renaming("__gnu_dev_minor_404", "gnu_dev_minor"); +__static_renaming("__gnu_dev_makedev_407", "gnu_dev_makedev"); +__static_renaming("__blksize_t_412", "blksize_t"); +__static_renaming("__blksize_t_413", "blksize_t"); +__static_renaming("__blkcnt_t_415", "blkcnt_t"); +__static_renaming("__blkcnt_t_416", "blkcnt_t"); +__static_renaming("__fsblkcnt_t_418", "fsblkcnt_t"); +__static_renaming("__fsblkcnt_t_419", "fsblkcnt_t"); +__static_renaming("__blkcnt_t_421", "blkcnt_t"); +__static_renaming("__blkcnt_t_422", "blkcnt_t"); +__static_renaming("__fsblkcnt_t_424", "fsblkcnt_t"); +__static_renaming("__fsblkcnt_t_425", "fsblkcnt_t"); +__static_renaming("__fsfilcnt_t_427", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_428", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_430", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_431", "fsfilcnt_t"); +__static_renaming("__pthread_t_433", "pthread_t"); +__static_renaming("__pthread_attr_t_437", "pthread_attr_t"); +__static_renaming("____pthread_list_t_442", "__pthread_list_t"); +__static_renaming("____pthread_list_t_443", "__pthread_list_t"); +__static_renaming("__pthread_mutex_t_459", "pthread_mutex_t"); +__static_renaming("__pthread_mutexattr_t_464", "pthread_mutexattr_t"); +__static_renaming("__rand_465", "rand"); +__static_renaming("__srand_467", "srand"); +__static_renaming("__rand_r_469", "rand_r"); +__static_renaming("__drand48_470", "drand48"); +__static_renaming("__erand48_472", "erand48"); +__static_renaming("__lrand48_473", "lrand48"); +__static_renaming("__nrand48_475", "nrand48"); +__static_renaming("__mrand48_476", "mrand48"); +__static_renaming("__jrand48_478", "jrand48"); +__static_renaming("__srand48_480", "srand48"); +__static_renaming("__seed48_482", "seed48"); +__static_renaming("__lcong48_484", "lcong48"); +__static_renaming("__malloc_486", "malloc"); +__static_renaming("__malloc_487", "malloc"); +__static_renaming("__calloc_490", "calloc"); +__static_renaming("__calloc_491", "calloc"); +__static_renaming("__realloc_494", "realloc"); +__static_renaming("__free_496", "free"); +__static_renaming("__cfree_498", "cfree"); +__static_renaming("__alloca_500", "alloca"); +__static_renaming("__valloc_502", "valloc"); +__static_renaming("__valloc_503", "valloc"); +__static_renaming("__posix_memalign_507", "posix_memalign"); +__static_renaming("__posix_memalign_508", "posix_memalign"); +__static_renaming("__aligned_alloc_511", "aligned_alloc"); +__static_renaming("__aligned_alloc_512", "aligned_alloc"); +__static_renaming("__aligned_alloc_513", "aligned_alloc"); +__static_renaming("__aligned_alloc_514", "aligned_alloc"); +__static_renaming("__abort_515", "abort"); +__static_renaming("__atexit_517", "atexit"); +__static_renaming("__at_quick_exit_519", "at_quick_exit"); +__static_renaming("__on_exit_524", "on_exit"); +__static_renaming("__exit_526", "exit"); +__static_renaming("__exit_527", "exit"); +__static_renaming("__quick_exit_529", "quick_exit"); +__static_renaming("___Exit_531", "_Exit"); +__static_renaming("__getenv_533", "getenv"); +__static_renaming("__getenv_534", "getenv"); +__static_renaming("__putenv_536", "putenv"); +__static_renaming("__setenv_540", "setenv"); +__static_renaming("__unsetenv_542", "unsetenv"); +__static_renaming("__clearenv_543", "clearenv"); +__static_renaming("__mktemp_545", "mktemp"); +__static_renaming("__mkstemp_548", "mkstemp"); +__static_renaming("__mkstemp_549", "mkstemp"); +__static_renaming("__mkstemp_550", "mkstemp"); +__static_renaming("__mkstemp_551", "mkstemp"); +__static_renaming("__mkstemps_556", "mkstemps"); +__static_renaming("__mkstemps_557", "mkstemps"); +__static_renaming("__mkstemps_558", "mkstemps"); +__static_renaming("__mkstemps_559", "mkstemps"); +__static_renaming("__mkdtemp_561", "mkdtemp"); +__static_renaming("__mkdtemp_562", "mkdtemp"); +__static_renaming("__system_564", "system"); +__static_renaming("__system_565", "system"); +__static_renaming("__system_566", "system"); +__static_renaming("__system_567", "system"); +__static_renaming("__realpath_570", "realpath"); +__static_renaming("__realpath_571", "realpath"); +__static_renaming("____compar_fn_t_572", "__compar_fn_t"); +__static_renaming("__bsearch_580", "bsearch"); +__static_renaming("__bsearch_582", "bsearch"); +__static_renaming("____l_589", "__l"); +__static_renaming("____u_590", "__u"); +__static_renaming("____idx_591", "__idx"); +__static_renaming("____p_592", "__p"); +__static_renaming("____comparison_593", "__comparison"); +__static_renaming("__qsort_601", "qsort"); +__static_renaming("__qsort_603", "qsort"); +__static_renaming("__abs_606", "abs"); +__static_renaming("__abs_607", "abs"); +__static_renaming("__labs_609", "labs"); +__static_renaming("__labs_610", "labs"); +__static_renaming("__llabs_612", "llabs"); +__static_renaming("__llabs_613", "llabs"); +__static_renaming("__div_616", "div"); +__static_renaming("__div_617", "div"); +__static_renaming("__ldiv_620", "ldiv"); +__static_renaming("__ldiv_622", "ldiv"); +__static_renaming("__lldiv_626", "lldiv"); +__static_renaming("__lldiv_628", "lldiv"); +__static_renaming("__ecvt_634", "ecvt"); +__static_renaming("__ecvt_635", "ecvt"); +__static_renaming("__fcvt_640", "fcvt"); +__static_renaming("__fcvt_641", "fcvt"); +__static_renaming("__gcvt_645", "gcvt"); +__static_renaming("__gcvt_646", "gcvt"); +__static_renaming("__qecvt_651", "qecvt"); +__static_renaming("__qecvt_652", "qecvt"); +__static_renaming("__qfcvt_657", "qfcvt"); +__static_renaming("__qfcvt_658", "qfcvt"); +__static_renaming("__qgcvt_662", "qgcvt"); +__static_renaming("__qgcvt_663", "qgcvt"); +__static_renaming("__ecvt_r_670", "ecvt_r"); +__static_renaming("__fcvt_r_677", "fcvt_r"); +__static_renaming("__qecvt_r_684", "qecvt_r"); +__static_renaming("__qfcvt_r_691", "qfcvt_r"); +__static_renaming("__mblen_694", "mblen"); +__static_renaming("__mblen_695", "mblen"); +__static_renaming("__mbtowc_699", "mbtowc"); +__static_renaming("__wctomb_702", "wctomb"); +__static_renaming("__mbstowcs_706", "mbstowcs"); +__static_renaming("__wcstombs_710", "wcstombs"); +__static_renaming("__rpmatch_712", "rpmatch"); +__static_renaming("__rpmatch_713", "rpmatch"); +__static_renaming("__getsubopt_717", "getsubopt"); +__static_renaming("__getsubopt_718", "getsubopt"); +__static_renaming("__getloadavg_721", "getloadavg"); +__static_renaming("____realpath_chk_726", "__realpath_chk"); +__static_renaming("____realpath_alias_729", "__realpath_alias"); +__static_renaming("____realpath_chk_warn_733", "__realpath_chk_warn"); +__static_renaming("____ptsname_r_chk_741", "__ptsname_r_chk"); +__static_renaming("____ptsname_r_alias_745", "__ptsname_r_alias"); +__static_renaming("____ptsname_r_chk_warn_750", "__ptsname_r_chk_warn"); +__static_renaming("____wctomb_chk_758", "__wctomb_chk"); +__static_renaming("____wctomb_alias_761", "__wctomb_alias"); +__static_renaming("____mbstowcs_chk_768", "__mbstowcs_chk"); +__static_renaming("____mbstowcs_alias_772", "__mbstowcs_alias"); +__static_renaming("____mbstowcs_chk_warn_777", "__mbstowcs_chk_warn"); +__static_renaming("____wcstombs_chk_785", "__wcstombs_chk"); +__static_renaming("____wcstombs_alias_789", "__wcstombs_alias"); +__static_renaming("____wcstombs_chk_warn_794", "__wcstombs_chk_warn"); +__static_renaming("__thisopt_798", "thisopt"); +__static_renaming("__ssl_cmd_protocol_parse_799", "ssl_cmd_protocol_parse"); +__static_renaming("__ssl_cmd_protocol_parse_800", "ssl_cmd_protocol_parse"); +__static_renaming("__ssl_cmd_protocol_parse_801", "ssl_cmd_protocol_parse"); +__static_renaming("__main_811", "main"); +__static_condition_renaming("__static_condition_default_60", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_67", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_215", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_234", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __u_char_defined)"); +__static_condition_renaming("__static_condition_default_237", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __u_char_defined)"); +__static_condition_renaming("__static_condition_default_240", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __u_char_defined)"); +__static_condition_renaming("__static_condition_default_243", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ino_t_defined)"); +__static_condition_renaming("__static_condition_default_246", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ino_t_defined) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ino_t_defined)"); +__static_condition_renaming("__static_condition_default_249", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_252", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_255", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_258", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_261", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __nlink_t_defined)"); +__static_condition_renaming("__static_condition_default_264", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __nlink_t_defined)"); +__static_condition_renaming("__static_condition_default_267", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __nlink_t_defined)"); +__static_condition_renaming("__static_condition_default_270", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_273", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_276", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_279", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_282", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __id_t_defined)"); +__static_condition_renaming("__static_condition_default_285", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_288", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_293", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_296", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_299", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __clock_t_defined)"); +__static_condition_renaming("__static_condition_default_302", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __time_t_defined)"); +__static_condition_renaming("__static_condition_default_305", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __clockid_t_defined)"); +__static_condition_renaming("__static_condition_default_308", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __timer_t_defined)"); +__static_condition_renaming("__static_condition_default_325", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_341", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_349", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_352", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __suseconds_t_defined)"); +__static_condition_renaming("__static_condition_default_361", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_378", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_379", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_394", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_395", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_414", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blksize_t_defined)"); +__static_condition_renaming("__static_condition_default_417", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blkcnt_t_defined) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blkcnt_t_defined)"); +__static_condition_renaming("__static_condition_default_420", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_423", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blkcnt_t_defined)"); +__static_condition_renaming("__static_condition_default_426", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_429", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_432", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_579", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_581", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_594", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __USE_EXTERN_INLINES) && !(defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_595", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_602", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_604", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_621", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_623", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_627", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_629", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_736", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_802", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_803", "!(defined _STDLIB_H) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_804", "!(defined _STDLIB_H) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined HAVE_TLSV1_X) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined HAVE_TLSV1_X) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined HAVE_TLSV1_X) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined HAVE_TLSV1_X)"); +__static_condition_renaming("__static_condition_default_805", "!(defined _STDLIB_H) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && !(defined HAVE_TLSV1_X) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && !(defined HAVE_TLSV1_X) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && !(defined HAVE_TLSV1_X) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && !(defined HAVE_TLSV1_X)"); +__static_condition_renaming("__static_condition_default_806", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_807", "!(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_808", "!(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined HAVE_TLSV1_X)"); +__static_condition_renaming("__static_condition_default_809", "!(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && !(defined HAVE_TLSV1_X)"); +__static_condition_renaming("__static_condition_default_810", "!(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_812", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_813", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_814", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc)"); + +if (__static_condition_default_814) { +__static_parse_error("Unable to parse"); +} }; typedef long int __ptrdiff_t_0;// L143:L324 typedef long unsigned int __size_t_1;// L177:L209 typedef int __wchar_t_2;// L243:L321 -struct ____anonymous_tag_3_4 { -int __quot_5;// L99 -int __rem_6;// L100 +enum ____anonymous_tag_6_7 { +__P_ALL_3, +__P_PID_4, +__P_PGID_5, +}; +typedef enum ____anonymous_tag_6_7 __idtype_t_8;// L50:L55 +typedef unsigned char ____u_char_9;// L30 +typedef unsigned short int ____u_short_10;// L31 +typedef unsigned int ____u_int_11;// L32 +typedef unsigned long int ____u_long_12;// L33 +typedef signed char ____int8_t_13;// L36 +typedef unsigned char ____uint8_t_14;// L37 +typedef signed short int ____int16_t_15;// L38 +typedef unsigned short int ____uint16_t_16;// L39 +typedef signed int ____int32_t_17;// L40 +typedef unsigned int ____uint32_t_18;// L41 +typedef signed long int ____int64_t_19;// L43 +typedef unsigned long int ____uint64_t_20;// L44 +typedef long int ____quad_t_21;// L52 +typedef unsigned long int ____u_quad_t_22;// L53 +typedef unsigned long int ____dev_t_23;// L109:L124 +typedef unsigned int ____uid_t_24;// L92:L125 +typedef unsigned int ____gid_t_25;// L92:L126 +typedef unsigned long int ____ino_t_26;// L94:L127 +typedef unsigned long int ____ino64_t_27;// L109:L128 +typedef unsigned int ____mode_t_28;// L92:L129 +typedef unsigned long int ____nlink_t_29;// L94:L130 +typedef long int ____off_t_30;// L93:L131 +typedef long int ____off64_t_31;// L108:L132 +typedef int ____pid_t_32;// L91:L133 +struct ____anonymous_tag_33_34 { +int ____val_35[2];// L72 +}; +typedef struct ____anonymous_tag_33_34 ____fsid_t_36;// L72:L134 +typedef long int ____clock_t_37;// L93:L135 +typedef unsigned long int ____rlim_t_38;// L94:L136 +typedef unsigned long int ____rlim64_t_39;// L109:L137 +typedef unsigned int ____id_t_40;// L92:L138 +typedef long int ____time_t_41;// L93:L139 +typedef unsigned int ____useconds_t_42;// L92:L140 +typedef long int ____suseconds_t_43;// L93:L141 +typedef int ____daddr_t_44;// L91:L143 +typedef int ____key_t_45;// L91:L144 +typedef int ____clockid_t_46;// L91:L147 +typedef void * (____timer_t_47);// L70:L150 +typedef long int ____blksize_t_48;// L93:L153 +typedef long int ____blkcnt_t_49;// L93:L158 +typedef long int ____blkcnt64_t_50;// L108:L159 +typedef unsigned long int ____fsblkcnt_t_51;// L94:L162 +typedef unsigned long int ____fsblkcnt64_t_52;// L109:L163 +typedef unsigned long int ____fsfilcnt_t_53;// L94:L166 +typedef unsigned long int ____fsfilcnt64_t_54;// L109:L167 +typedef long int ____fsword_t_55;// L93:L170 +typedef long int ____ssize_t_56;// L110:L172 +typedef long int ____syscall_slong_t_57;// L93:L175 +typedef unsigned long int ____syscall_ulong_t_58;// L94:L177 +typedef ____off64_t_31 ____loff_t_59;// L181 +typedef ____quad_t_21 * (____qaddr_t_61);// L182 +typedef char * (____caddr_t_62);// L183 +typedef long int ____intptr_t_63;// L110:L186 +typedef unsigned int ____socklen_t_64;// L92:L189 +struct ____anonymous_tag_70_71 { +unsigned int ____w_termsig_72 : 7;// L72 +unsigned int ____w_coredump_73 : 1;// L73 +unsigned int ____w_retcode_74 : 8;// L74 +unsigned int __anon_id_0_75 : 16;// L75 +}; +struct ____anonymous_tag_76_77 { +unsigned int ____w_stopval_78 : 8;// L87 +unsigned int ____w_stopsig_79 : 8;// L88 +unsigned int __anon_id_1_80 : 16;// L89 +}; +union __wait_81 { +int __w_status_82;// L68 +struct ____anonymous_tag_70_71 ____wait_terminated_83;// L69 +struct ____anonymous_tag_76_77 ____wait_stopped_84;// L84 +}; +union ____anonymous_tag_85_86 { +union __wait_81 * (____uptr_87);// L69 +int * (____iptr_88);// L70 +}; +typedef union ____anonymous_tag_85_86 ____WAIT_STATUS_89;// L67:L71 +struct ____anonymous_tag_90_91 { +int __quot_92;// L99 +int __rem_93;// L100 +}; +typedef struct ____anonymous_tag_90_91 __div_t_94;// L97:L101 +struct ____anonymous_tag_95_96 { +long int __quot_97;// L107 +long int __rem_98;// L108 +}; +typedef struct ____anonymous_tag_95_96 __ldiv_t_99;// L105:L109 +struct ____anonymous_tag_100_101 { +long long int __quot_102;// L119 +long long int __rem_103;// L120 +}; +typedef struct ____anonymous_tag_100_101 __lldiv_t_104;// L117:L121 +typedef unsigned char ____u_char_164;// L30 +typedef unsigned short int ____u_short_165;// L31 +typedef unsigned int ____u_int_166;// L32 +typedef unsigned long int ____u_long_167;// L33 +typedef signed char ____int8_t_168;// L36 +typedef unsigned char ____uint8_t_169;// L37 +typedef signed short int ____int16_t_170;// L38 +typedef unsigned short int ____uint16_t_171;// L39 +typedef signed int ____int32_t_172;// L40 +typedef unsigned int ____uint32_t_173;// L41 +typedef signed long int ____int64_t_174;// L43 +typedef unsigned long int ____uint64_t_175;// L44 +typedef long int ____quad_t_176;// L52 +typedef unsigned long int ____u_quad_t_177;// L53 +typedef unsigned long int ____dev_t_178;// L109:L124 +typedef unsigned int ____uid_t_179;// L92:L125 +typedef unsigned int ____gid_t_180;// L92:L126 +typedef unsigned long int ____ino_t_181;// L94:L127 +typedef unsigned long int ____ino64_t_182;// L109:L128 +typedef unsigned int ____mode_t_183;// L92:L129 +typedef unsigned long int ____nlink_t_184;// L94:L130 +typedef long int ____off_t_185;// L93:L131 +typedef long int ____off64_t_186;// L108:L132 +typedef int ____pid_t_187;// L91:L133 +struct ____anonymous_tag_188_189 { +int ____val_190[2];// L72 +}; +typedef struct ____anonymous_tag_188_189 ____fsid_t_191;// L72:L134 +typedef long int ____clock_t_192;// L93:L135 +typedef unsigned long int ____rlim_t_193;// L94:L136 +typedef unsigned long int ____rlim64_t_194;// L109:L137 +typedef unsigned int ____id_t_195;// L92:L138 +typedef long int ____time_t_196;// L93:L139 +typedef unsigned int ____useconds_t_197;// L92:L140 +typedef long int ____suseconds_t_198;// L93:L141 +typedef int ____daddr_t_199;// L91:L143 +typedef int ____key_t_200;// L91:L144 +typedef int ____clockid_t_201;// L91:L147 +typedef void * (____timer_t_202);// L70:L150 +typedef long int ____blksize_t_203;// L93:L153 +typedef long int ____blkcnt_t_204;// L93:L158 +typedef long int ____blkcnt64_t_205;// L108:L159 +typedef unsigned long int ____fsblkcnt_t_206;// L94:L162 +typedef unsigned long int ____fsblkcnt64_t_207;// L109:L163 +typedef unsigned long int ____fsfilcnt_t_208;// L94:L166 +typedef unsigned long int ____fsfilcnt64_t_209;// L109:L167 +typedef long int ____fsword_t_210;// L93:L170 +typedef long int ____ssize_t_211;// L110:L172 +typedef long int ____syscall_slong_t_212;// L93:L175 +typedef unsigned long int ____syscall_ulong_t_213;// L94:L177 +typedef ____off64_t_186 ____loff_t_214;// L181 +typedef ____quad_t_176 * (____qaddr_t_216);// L182 +typedef char * (____caddr_t_217);// L183 +typedef long int ____intptr_t_218;// L110:L186 +typedef unsigned int ____socklen_t_219;// L92:L189 +typedef ____u_char_9 __u_char_220;// L33 +typedef ____u_char_164 __u_char_221;// L33 +typedef ____u_short_10 __u_short_222;// L34 +typedef ____u_short_165 __u_short_223;// L34 +typedef ____u_int_11 __u_int_224;// L35 +typedef ____u_int_166 __u_int_225;// L35 +typedef ____u_long_12 __u_long_226;// L36 +typedef ____u_long_167 __u_long_227;// L36 +typedef ____quad_t_21 __quad_t_228;// L37 +typedef ____quad_t_176 __quad_t_229;// L37 +typedef ____u_quad_t_22 __u_quad_t_230;// L38 +typedef ____u_quad_t_177 __u_quad_t_231;// L38 +typedef ____fsid_t_36 __fsid_t_232;// L39 +typedef ____fsid_t_191 __fsid_t_233;// L39 +typedef ____loff_t_59 __loff_t_235;// L44 +typedef ____loff_t_214 __loff_t_236;// L44 +typedef ____loff_t_59 __loff_t_238;// L44 +typedef ____loff_t_214 __loff_t_239;// L44 +typedef ____ino64_t_27 __ino_t_241;// L50 +typedef ____ino64_t_182 __ino_t_242;// L50 +typedef ____ino_t_26 __ino_t_244;// L48 +typedef ____ino_t_181 __ino_t_245;// L48 +typedef ____dev_t_23 __dev_t_247;// L60 +typedef ____dev_t_178 __dev_t_248;// L60 +typedef ____gid_t_25 __gid_t_250;// L65 +typedef ____gid_t_180 __gid_t_251;// L65 +typedef ____gid_t_25 __gid_t_253;// L65 +typedef ____gid_t_180 __gid_t_254;// L65 +typedef ____mode_t_28 __mode_t_256;// L70 +typedef ____mode_t_183 __mode_t_257;// L70 +typedef ____nlink_t_29 __nlink_t_259;// L75 +typedef ____nlink_t_184 __nlink_t_260;// L75 +typedef ____uid_t_24 __uid_t_262;// L80 +typedef ____uid_t_179 __uid_t_263;// L80 +typedef ____uid_t_24 __uid_t_265;// L80 +typedef ____uid_t_179 __uid_t_266;// L80 +typedef ____off64_t_31 __off_t_268;// L88 +typedef ____off64_t_186 __off_t_269;// L88 +typedef ____off_t_30 __off_t_271;// L86 +typedef ____off_t_185 __off_t_272;// L86 +typedef ____pid_t_32 __pid_t_274;// L98 +typedef ____pid_t_187 __pid_t_275;// L98 +typedef ____pid_t_32 __pid_t_277;// L98 +typedef ____pid_t_187 __pid_t_278;// L98 +typedef ____id_t_40 __id_t_280;// L104 +typedef ____id_t_195 __id_t_281;// L104 +typedef ____ssize_t_56 __ssize_t_283;// L109 +typedef ____ssize_t_211 __ssize_t_284;// L109 +typedef ____daddr_t_44 __daddr_t_286;// L115 +typedef ____daddr_t_199 __daddr_t_287;// L115 +typedef ____caddr_t_62 __caddr_t_289;// L116 +typedef ____caddr_t_217 __caddr_t_290;// L116 +typedef ____key_t_45 __key_t_291;// L122 +typedef ____key_t_200 __key_t_292;// L122 +typedef ____key_t_45 __key_t_294;// L122 +typedef ____key_t_200 __key_t_295;// L122 +typedef ____clock_t_37 __clock_t_297;// L59 +typedef ____clock_t_192 __clock_t_298;// L59 +typedef ____time_t_41 __time_t_300;// L75 +typedef ____time_t_196 __time_t_301;// L75 +typedef ____clockid_t_46 __clockid_t_303;// L91 +typedef ____clockid_t_201 __clockid_t_304;// L91 +typedef ____timer_t_47 __timer_t_306;// L103 +typedef ____timer_t_202 __timer_t_307;// L103 +typedef unsigned long int __ulong_309;// L150 +typedef unsigned long int __ulong_310;// L150 +typedef unsigned long int __ulong_311;// L150 +typedef unsigned short int __ushort_312;// L151 +typedef unsigned int __uint_313;// L152 +typedef int __int8_t_314;// L188:L194 +typedef int __int16_t_315;// L188:L195 +typedef int __int32_t_316;// L188:L196 +typedef int __int64_t_317;// L188:L197 +typedef unsigned int __u_int8_t_318;// L190:L200 +typedef unsigned int __u_int16_t_319;// L190:L201 +typedef unsigned int __u_int32_t_320;// L190:L202 +typedef unsigned int __u_int64_t_321;// L190:L203 +typedef int __register_t_322;// L205 +typedef int ____sig_atomic_t_328;// L22 +struct ____anonymous_tag_329_330 { +unsigned long int ____val_331[( 1024 / ( 8 * sizeof(unsigned long) ) )];// L29 +}; +typedef struct ____anonymous_tag_329_330 ____sigset_t_332;// L27:L30 +typedef ____sigset_t_332 __sigset_t_333;// L37 +struct __timespec_334 { +____time_t_41 __tv_sec_335;// L0 +____time_t_196 __tv_sec_336;// L0 +____syscall_slong_t_57 __tv_nsec_338;// L0 +____syscall_slong_t_212 __tv_nsec_339;// L0 +}; +struct __timeval_342 { +____time_t_41 __tv_sec_343;// L0 +____time_t_196 __tv_sec_344;// L0 +____suseconds_t_43 __tv_usec_346;// L0 +____suseconds_t_198 __tv_usec_347;// L0 +}; +typedef ____suseconds_t_43 __suseconds_t_350;// L48 +typedef ____suseconds_t_198 __suseconds_t_351;// L48 +typedef long int ____fd_mask_353;// L54 +typedef long int ____fd_mask_354;// L54 +struct ____anonymous_tag_355_356 { +____fd_mask_353 ____fds_bits_357[1024 / ( 8 * ( int ) sizeof(long) )];// L0 +____fd_mask_354 ____fds_bits_359[1024 / ( 8 * ( int ) sizeof(long) )];// L0 +}; +typedef struct ____anonymous_tag_355_356 __fd_set_362;// L64:L75 +typedef ____fd_mask_353 __fd_mask_363;// L82 +typedef ____fd_mask_354 __fd_mask_364;// L82 +typedef ____blksize_t_48 __blksize_t_412;// L228 +typedef ____blksize_t_203 __blksize_t_413;// L228 +typedef ____blkcnt_t_49 __blkcnt_t_415;// L235 +typedef ____blkcnt_t_204 __blkcnt_t_416;// L235 +typedef ____fsblkcnt_t_51 __fsblkcnt_t_418;// L239 +typedef ____fsblkcnt_t_206 __fsblkcnt_t_419;// L239 +typedef ____blkcnt64_t_50 __blkcnt_t_421;// L248 +typedef ____blkcnt64_t_205 __blkcnt_t_422;// L248 +typedef ____fsblkcnt64_t_52 __fsblkcnt_t_424;// L252 +typedef ____fsblkcnt64_t_207 __fsblkcnt_t_425;// L252 +typedef ____fsfilcnt_t_53 __fsfilcnt_t_427;// L243 +typedef ____fsfilcnt_t_208 __fsfilcnt_t_428;// L243 +typedef ____fsfilcnt64_t_54 __fsfilcnt_t_430;// L256 +typedef ____fsfilcnt64_t_209 __fsfilcnt_t_431;// L256 +typedef unsigned long int __pthread_t_433;// L60 +union __pthread_attr_t_434 { +char ____size_435[56];// L65 +long int ____align_436;// L66 +}; +typedef union __pthread_attr_t_434 __pthread_attr_t_437;// L69 +struct ____pthread_internal_list_439 { +struct __forward_tag_reference_438 * (____prev_440);// L0 +struct __forward_tag_reference_438 * (____next_441);// L0 +}; +typedef struct ____pthread_internal_list_439 ____pthread_list_t_442;// L75:L79 +typedef struct ____pthread_internal_list_439 ____pthread_list_t_443;// L75:L79 +struct ____pthread_mutex_s_444 { +int ____lock_445;// L94 +unsigned int ____count_446;// L95 +int ____owner_447;// L96 +unsigned int ____nusers_448;// L98 +int ____kind_449;// L102 +short ____spins_450;// L104 +short ____elision_451;// L105 +____pthread_list_t_442 ____list_452;// L0 +____pthread_list_t_443 ____list_453;// L0 +}; +union ____anonymous_tag_454_455 { +struct ____pthread_mutex_s_444 ____data_456;// L92 +char ____size_457[40];// L126 +long int ____align_458;// L127 +}; +typedef union ____anonymous_tag_454_455 __pthread_mutex_t_459;// L90:L128 +union ____anonymous_tag_460_461 { +char ____size_462[4];// L132 +int ____align_463;// L133 }; -typedef struct ____anonymous_tag_3_4 __div_t_7;// L97:L101 -struct ____anonymous_tag_8_9 { -long int __quot_10;// L107 -long int __rem_11;// L108 +typedef union ____anonymous_tag_460_461 __pthread_mutexattr_t_464;// L130:L134 +typedef int (* (____compar_fn_t_572)) (const void *, const void *);// L741 + +struct __forward_tag_reference_438 { // generated union of struct variations +union { }; -typedef struct ____anonymous_tag_8_9 __ldiv_t_12;// L105:L109 -struct ____anonymous_tag_13_14 { -long long int __quot_15;// L119 -long long int __rem_16;// L120 }; -typedef struct ____anonymous_tag_13_14 __lldiv_t_17;// L117:L121 -typedef int (* (____compar_fn_t_100)) (const void *, const void *);// L741 // typedef moved to top of scope // typedef moved to top of scope @@ -163,150 +858,468 @@ typedef int (* (____compar_fn_t_100)) (const void *, const void *);// L741 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern __size_t_1 (____ctype_get_mb_cur_max_18) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_19) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_20) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_21) (void );// L139 -extern double (__atof_23) (const char * (____nptr_22));// L144:L145 -extern double (__atof_24) (const char * (____nptr_22));// L144:L145 -extern int (__atoi_26) (const char * (____nptr_25));// L147:L148 -extern int (__atoi_27) (const char * (____nptr_25));// L147:L148 -extern long int (__atol_29) (const char * (____nptr_28));// L150:L151 -extern long int (__atol_30) (const char * (____nptr_28));// L150:L151 -extern long long int (__atoll_32) (const char * (____nptr_31));// L157:L158 -extern long long int (__atoll_33) (const char * (____nptr_31));// L157:L158 -extern double (__strtod_36) (const char * __restrict ____nptr_34, char * (* __restrict ____endptr_35));// L164:L166 -extern float (__strtof_39) (const char * __restrict ____nptr_37, char * (* __restrict ____endptr_38));// L172:L173 -extern long double (__strtold_42) (const char * __restrict ____nptr_40, char * (* __restrict ____endptr_41));// L175:L177 -extern long int (__strtol_46) (const char * __restrict ____nptr_43, char * (* __restrict ____endptr_44), int ____base_45);// L183:L185 -extern unsigned long int (__strtoul_50) (const char * __restrict ____nptr_47, char * (* __restrict ____endptr_48), int ____base_49);// L187:L189 -extern long long int (__strtoll_54) (const char * __restrict ____nptr_51, char * (* __restrict ____endptr_52), int ____base_53);// L209:L211 -extern unsigned long long int (__strtoull_58) (const char * __restrict ____nptr_55, char * (* __restrict ____endptr_56), int ____base_57);// L214:L216 -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -__extension__/* no function due to type errors in the function prototype */ -extern int (__rand_62) (void );// L374 -extern int (__rand_63) (void );// L374 -extern void (__srand_65) (unsigned int ____seed_64);// L376 -extern void * ((__malloc_67) (__size_t_1 ____size_66));// L466 -extern void * ((__malloc_68) (__size_t_1 ____size_66));// L466 -extern void * ((__calloc_71) (__size_t_1 ____nmemb_69, __size_t_1 ____size_70));// L468:L469 -extern void * ((__calloc_72) (__size_t_1 ____nmemb_69, __size_t_1 ____size_70));// L468:L469 -extern void * ((__realloc_75) (void * (____ptr_73), __size_t_1 ____size_74));// L480:L481 -extern void * ((__realloc_76) (void * (____ptr_73), __size_t_1 ____size_74));// L480:L481 -extern void (__free_78) (void * (____ptr_77));// L483 -extern void * ((__aligned_alloc_81) (__size_t_1 ____alignment_79, __size_t_1 ____size_80));// L509:L510 -extern void * ((__aligned_alloc_82) (__size_t_1 ____alignment_79, __size_t_1 ____size_80));// L509:L510 -extern void (__abort_83) (void );// L515 -extern int (__atexit_85) (void (* (____func_84)) (void ));// L519 -extern int (__at_quick_exit_87) (void (* (____func_86)) (void ));// L527 -extern void (__exit_89) (int ____status_88);// L543 -extern void (__quick_exit_91) (int ____status_90);// L549 -extern void (___Exit_93) (int ____status_92);// L557 -extern char * ((__getenv_95) (const char * (____name_94)));// L564 -extern char * ((__getenv_96) (const char * (____name_94)));// L564 -extern int (__system_98) (const char * (____command_97));// L716 -extern int (__system_99) (const char * (____command_97));// L716 -// typedef moved to top of scope -extern void * ((__bsearch_108) (const void * (____key_101), const void * (____base_102), __size_t_1 ____nmemb_103, __size_t_1 ____size_104, ____compar_fn_t_100 ____compar_105));// L754:L756 -extern void * ((__bsearch_110) (const void * (____key_101), const void * (____base_102), __size_t_1 ____nmemb_103, __size_t_1 ____size_104, ____compar_fn_t_100 ____compar_105));// L754:L756 -/* no function due to type errors in the function prototype */ -extern void (__qsort_129) (void * (____base_124), __size_t_1 ____nmemb_125, __size_t_1 ____size_126, ____compar_fn_t_100 ____compar_127);// L764:L765 -extern void (__qsort_131) (void * (____base_124), __size_t_1 ____nmemb_125, __size_t_1 ____size_126, ____compar_fn_t_100 ____compar_127);// L764:L765 -extern int (__abs_134) (int ____x_133);// L774 -extern int (__abs_135) (int ____x_133);// L774 -extern long int (__labs_137) (long int ____x_136);// L775 -extern long int (__labs_138) (long int ____x_136);// L775 -extern long long int (__llabs_140) (long long int ____x_139);// L779:L780 -extern long long int (__llabs_141) (long long int ____x_139);// L779:L780 -extern __div_t_7 (__div_144) (int ____numer_142, int ____denom_143);// L788:L789 -extern __div_t_7 (__div_145) (int ____numer_142, int ____denom_143);// L788:L789 -extern __ldiv_t_12 (__ldiv_148) (long int ____numer_146, long int ____denom_147);// L790:L791 -extern __ldiv_t_12 (__ldiv_150) (long int ____numer_146, long int ____denom_147);// L790:L791 -extern __lldiv_t_17 (__lldiv_154) (long long int ____numer_152, long long int ____denom_153);// L796:L798 -extern __lldiv_t_17 (__lldiv_156) (long long int ____numer_152, long long int ____denom_153);// L796:L798 -extern int (__mblen_160) (const char * (____s_158), __size_t_1 ____n_159);// L862 -extern int (__mbtowc_164) (__wchar_t_2 * __restrict ____pwc_161, const char * __restrict ____s_162, __size_t_1 ____n_163);// L865:L866 -extern int (__wctomb_167) (char * (____s_165), __wchar_t_2 ____wchar_166);// L869 -extern __size_t_1 (__mbstowcs_171) (__wchar_t_2 * __restrict ____pwcs_168, const char * __restrict ____s_169, __size_t_1 ____n_170);// L873:L874 -extern __size_t_1 (__wcstombs_175) (char * __restrict ____s_172, const __wchar_t_2 * __restrict ____pwcs_173, __size_t_1 ____n_174);// L876:L878 -/* no function due to type errors in the function prototype */ -extern char * ((____realpath_chk_180) (const char * __restrict ____name_177, char * __restrict ____resolved_178, __size_t_1 ____resolvedlen_179));// L23:L25 -extern char * ((____realpath_alias_183) (const char * __restrict ____name_181, char * __restrict ____resolved_182));// L26:L28 -extern char * ((____realpath_chk_warn_187) (const char * __restrict ____name_184, char * __restrict ____resolved_185, __size_t_1 ____resolvedlen_186));// L29:L34 -/* no function due to type errors in the function prototype */ -extern int (____ptsname_r_chk_195) (int ____fd_191, char * (____buf_192), __size_t_1 ____buflen_193, __size_t_1 ____nreal_194);// L52:L53 -extern int (____ptsname_r_alias_199) (int ____fd_196, char * (____buf_197), __size_t_1 ____buflen_198);// L54:L56 -extern int (____ptsname_r_chk_warn_204) (int ____fd_200, char * (____buf_201), __size_t_1 ____buflen_202, __size_t_1 ____nreal_203);// L57:L61 -/* no function due to type errors in the function prototype */ -extern int (____wctomb_chk_212) (char * (____s_209), __wchar_t_2 ____wchar_210, __size_t_1 ____buflen_211);// L77:L78 -extern int (____wctomb_alias_215) (char * (____s_213), __wchar_t_2 ____wchar_214);// L79:L80 -/* no function due to type errors in the function prototype */ -extern __size_t_1 (____mbstowcs_chk_222) (__wchar_t_2 * __restrict ____dst_218, const char * __restrict ____src_219, __size_t_1 ____len_220, __size_t_1 ____dstlen_221);// L98:L100 -extern __size_t_1 (____mbstowcs_alias_226) (__wchar_t_2 * __restrict ____dst_223, const char * __restrict ____src_224, __size_t_1 ____len_225);// L101:L104 -extern __size_t_1 (____mbstowcs_chk_warn_231) (__wchar_t_2 * __restrict ____dst_227, const char * __restrict ____src_228, __size_t_1 ____len_229, __size_t_1 ____dstlen_230);// L105:L110 -/* no function due to type errors in the function prototype */ -extern __size_t_1 (____wcstombs_chk_239) (char * __restrict ____dst_235, const __wchar_t_2 * __restrict ____src_236, __size_t_1 ____len_237, __size_t_1 ____dstlen_238);// L130:L132 -extern __size_t_1 (____wcstombs_alias_243) (char * __restrict ____dst_240, const __wchar_t_2 * __restrict ____src_241, __size_t_1 ____len_242);// L133:L136 -extern __size_t_1 (____wcstombs_chk_warn_248) (char * __restrict ____dst_244, const __wchar_t_2 * __restrict ____src_245, __size_t_1 ____len_246, __size_t_1 ____dstlen_247);// L137:L141 -/* no function due to type errors in the function prototype */ -void (__ssl_cmd_protocol_parse_253) () { +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +static __inline unsigned int (____bswap_32_66) (unsigned int ____bsx_65) { -if (__static_condition_default_255) { +if (__static_condition_default_67) { { { -int __thisopt_252;// L9 +__static_type_error("invalid type found in return expression"); +} +} -if (__static_condition_default_256) { -if ( rand( ) % 2 )// L11 -{ + +} +} +static __inline ____uint64_t_20 (____bswap_64_69) (____uint64_t_20 ____bsx_68) { + +if (__static_condition_default_67) { { { - __thisopt_252 = ( 1 << 3 ) ; // L4:L13 +__static_type_error("invalid type found in return expression"); } } + + } } -if (__static_condition_default_257) { -if ( rand( ) % 2 )// L11 -{ +union __wait_81 ;// L66 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern __size_t_1 (____ctype_get_mb_cur_max_105) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_106) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_107) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_108) (void );// L139 +extern double (__atof_110) (const char * (____nptr_109));// L144:L145 +extern double (__atof_111) (const char * (____nptr_109));// L144:L145 +extern int (__atoi_113) (const char * (____nptr_112));// L147:L148 +extern int (__atoi_114) (const char * (____nptr_112));// L147:L148 +extern long int (__atol_116) (const char * (____nptr_115));// L150:L151 +extern long int (__atol_117) (const char * (____nptr_115));// L150:L151 +extern long long int (__atoll_119) (const char * (____nptr_118));// L157:L158 +extern long long int (__atoll_120) (const char * (____nptr_118));// L157:L158 +extern double (__strtod_123) (const char * __restrict ____nptr_121, char * (* __restrict ____endptr_122));// L164:L166 +extern float (__strtof_126) (const char * __restrict ____nptr_124, char * (* __restrict ____endptr_125));// L172:L173 +extern long double (__strtold_129) (const char * __restrict ____nptr_127, char * (* __restrict ____endptr_128));// L175:L177 +extern long int (__strtol_133) (const char * __restrict ____nptr_130, char * (* __restrict ____endptr_131), int ____base_132);// L183:L185 +extern unsigned long int (__strtoul_137) (const char * __restrict ____nptr_134, char * (* __restrict ____endptr_135), int ____base_136);// L187:L189 +extern long long int (__strtoq_141) (const char * __restrict ____nptr_138, char * (* __restrict ____endptr_139), int ____base_140);// L195:L197 +extern unsigned long long int (__strtouq_145) (const char * __restrict ____nptr_142, char * (* __restrict ____endptr_143), int ____base_144);// L200:L202 +extern long long int (__strtoll_149) (const char * __restrict ____nptr_146, char * (* __restrict ____endptr_147), int ____base_148);// L209:L211 +extern long long int (__strtoll_150) (const char * __restrict ____nptr_146, char * (* __restrict ____endptr_147), int ____base_148);// L209:L211 +extern unsigned long long int (__strtoull_154) (const char * __restrict ____nptr_151, char * (* __restrict ____endptr_152), int ____base_153);// L214:L216 +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +__extension__/* no function due to type errors in the function prototype */ +extern char * ((__l64a_159) (long int ____n_158));// L305 +extern char * ((__l64a_160) (long int ____n_158));// L305 +extern long int (__a64l_162) (const char * (____s_161));// L308:L309 +extern long int (__a64l_163) (const char * (____s_161));// L308:L309 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +static __inline unsigned int (____bswap_32_324) (unsigned int ____bsx_323) { + +if (__static_condition_default_325) { { { - __thisopt_252 = ( 1 << 3 ) ; // L4:L13 +__static_type_error("invalid type found in return expression"); } } + + } } +static __inline ____uint64_t_175 (____bswap_64_327) (____uint64_t_175 ____bsx_326) { + +if (__static_condition_default_325) { + +{ +{ + + + +__static_type_error("invalid type found in return expression"); } } } } -void (__ssl_cmd_protocol_parse_254) () { +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +struct __timespec_334 ;// L120 -if (__static_condition_default_258) { +struct __timeval_342 ;// L30 + +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern int (__select_376) (int ____nfds_365, __fd_set_362 * __restrict ____readfds_366, __fd_set_362 * __restrict ____writefds_368, __fd_set_362 * __restrict ____exceptfds_370, struct __timeval_342 * __restrict ____timeout_373);// L106:L109 +extern int (__select_377) (int ____nfds_365, __fd_set_362 * __restrict ____readfds_366, __fd_set_362 * __restrict ____writefds_368, __fd_set_362 * __restrict ____exceptfds_370, struct __forward_tag_reference_372 * __restrict ____timeout_375);// L106:L109 +extern int (__pselect_392) (int ____nfds_380, __fd_set_362 * __restrict ____readfds_381, __fd_set_362 * __restrict ____writefds_383, __fd_set_362 * __restrict ____exceptfds_385, const struct __timespec_334 * __restrict ____timeout_388, const ____sigset_t_332 * __restrict ____sigmask_391);// L118:L122 +extern int (__pselect_393) (int ____nfds_380, __fd_set_362 * __restrict ____readfds_381, __fd_set_362 * __restrict ____writefds_383, __fd_set_362 * __restrict ____exceptfds_385, const struct __forward_tag_reference_387 * __restrict ____timeout_390, const ____sigset_t_332 * __restrict ____sigmask_391);// L118:L122 +extern long int (____fdelt_chk_397) (long int ____d_396);// L24 +extern long int (____fdelt_warn_399) (long int ____d_398);// L25:L26 +extern unsigned int (__gnu_dev_major_401) (unsigned long long int ____dev_400);// L27:L28 +extern unsigned int (__gnu_dev_major_402) (unsigned long long int ____dev_400);// L27:L28 +extern unsigned int (__gnu_dev_minor_404) (unsigned long long int ____dev_403);// L30:L31 +extern unsigned long long int (__gnu_dev_makedev_407) (unsigned int ____major_405, unsigned int ____minor_406);// L33:L35 +__extension__/* no function due to type errors in the function prototype */ +__extension__/* no function due to type errors in the function prototype */ +__extension__/* no function due to type errors in the function prototype */ +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +union __pthread_attr_t_434 ;// L63 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern int (__rand_465) (void );// L374 +extern void (__srand_467) (unsigned int ____seed_466);// L376 +extern int (__rand_r_469) (unsigned int * (____seed_468));// L381 +extern double (__drand48_470) (void );// L389 +extern double (__erand48_472) (unsigned short int ____xsubi_471[3]);// L390 +extern long int (__lrand48_473) (void );// L393 +extern long int (__nrand48_475) (unsigned short int ____xsubi_474[3]);// L394:L395 +extern long int (__mrand48_476) (void );// L398 +extern long int (__jrand48_478) (unsigned short int ____xsubi_477[3]);// L399:L400 +extern void (__srand48_480) (long int ____seedval_479);// L403 +extern unsigned short int * ((__seed48_482) (unsigned short int ____seed16v_481[3]));// L404:L405 +extern void (__lcong48_484) (unsigned short int ____param_483[7]);// L406 +extern void * ((__malloc_486) (__size_t_1 ____size_485));// L466 +extern void * ((__malloc_487) (__size_t_1 ____size_485));// L466 +extern void * ((__calloc_490) (__size_t_1 ____nmemb_488, __size_t_1 ____size_489));// L468:L469 +extern void * ((__calloc_491) (__size_t_1 ____nmemb_488, __size_t_1 ____size_489));// L468:L469 +extern void * ((__realloc_494) (void * (____ptr_492), __size_t_1 ____size_493));// L480:L481 +extern void (__free_496) (void * (____ptr_495));// L483 +extern void (__cfree_498) (void * (____ptr_497));// L488 +extern void * ((__alloca_500) (__size_t_1 ____size_499));// L32 +extern void * ((__valloc_502) (__size_t_1 ____size_501));// L498 +extern void * ((__valloc_503) (__size_t_1 ____size_501));// L498 +extern int (__posix_memalign_507) (void * (* (____memptr_504)), __size_t_1 ____alignment_505, __size_t_1 ____size_506);// L503:L504 +extern int (__posix_memalign_508) (void * (* (____memptr_504)), __size_t_1 ____alignment_505, __size_t_1 ____size_506);// L503:L504 +extern void * ((__aligned_alloc_511) (__size_t_1 ____alignment_509, __size_t_1 ____size_510));// L509:L510 +extern void * ((__aligned_alloc_512) (__size_t_1 ____alignment_509, __size_t_1 ____size_510));// L509:L510 +extern void * ((__aligned_alloc_513) (__size_t_1 ____alignment_509, __size_t_1 ____size_510));// L509:L510 +extern void * ((__aligned_alloc_514) (__size_t_1 ____alignment_509, __size_t_1 ____size_510));// L509:L510 +extern void (__abort_515) (void );// L515 +extern int (__atexit_517) (void (* (____func_516)) (void ));// L519 +extern int (__at_quick_exit_519) (void (* (____func_518)) (void ));// L527 +extern int (__on_exit_524) (void (* (____func_522)) (int ____status_520, void * (____arg_521)), void * (____arg_523));// L535:L536 +extern void (__exit_526) (int ____status_525);// L543 +extern void (__exit_527) (int ____status_525);// L543 +extern void (__quick_exit_529) (int ____status_528);// L549 +extern void (___Exit_531) (int ____status_530);// L557 +extern char * ((__getenv_533) (const char * (____name_532)));// L564 +extern char * ((__getenv_534) (const char * (____name_532)));// L564 +extern int (__putenv_536) (char * (____string_535));// L578 +extern int (__setenv_540) (const char * (____name_537), const char * (____value_538), int ____replace_539);// L584:L585 +extern int (__unsetenv_542) (const char * (____name_541));// L588 +extern int (__clearenv_543) (void );// L595 +extern char * ((__mktemp_545) (char * (____template_544)));// L606 +extern int (__mkstemp_548) (char * (____template_546));// L619 +extern int (__mkstemp_550) (char * (____template_546));// L619 +extern int (__mkstemp_549) (char * (____template_547));// L622:L623 +extern int (__mkstemp_551) (char * (____template_547));// L622:L623 +extern int (__mkstemps_556) (char * (____template_552), int ____suffixlen_553);// L641 +extern int (__mkstemps_557) (char * (____template_554), int ____suffixlen_555);// L644:L645 +extern int (__mkstemps_558) (char * (____template_552), int ____suffixlen_553);// L641 +extern int (__mkstemps_559) (char * (____template_554), int ____suffixlen_555);// L644:L645 +extern char * ((__mkdtemp_561) (char * (____template_560)));// L662 +extern char * ((__mkdtemp_562) (char * (____template_560)));// L662 +extern int (__system_564) (const char * (____command_563));// L716 +extern int (__system_565) (const char * (____command_563));// L716 +extern int (__system_566) (const char * (____command_563));// L716 +extern int (__system_567) (const char * (____command_563));// L716 +extern char * ((__realpath_570) (const char * __restrict ____name_568, char * __restrict ____resolved_569));// L733:L734 +extern char * ((__realpath_571) (const char * __restrict ____name_568, char * __restrict ____resolved_569));// L733:L734 +// typedef moved to top of scope +extern void * ((__bsearch_580) (const void * (____key_573), const void * (____base_574), __size_t_1 ____nmemb_575, __size_t_1 ____size_576, ____compar_fn_t_572 ____compar_577));// L754:L756 +extern void * ((__bsearch_582) (const void * (____key_573), const void * (____base_574), __size_t_1 ____nmemb_575, __size_t_1 ____size_576, ____compar_fn_t_572 ____compar_577));// L754:L756 +/* no function due to type errors in the function prototype */ +extern void (__qsort_601) (void * (____base_596), __size_t_1 ____nmemb_597, __size_t_1 ____size_598, ____compar_fn_t_572 ____compar_599);// L764:L765 +extern void (__qsort_603) (void * (____base_596), __size_t_1 ____nmemb_597, __size_t_1 ____size_598, ____compar_fn_t_572 ____compar_599);// L764:L765 +extern int (__abs_606) (int ____x_605);// L774 +extern int (__abs_607) (int ____x_605);// L774 +extern long int (__labs_609) (long int ____x_608);// L775 +extern long int (__labs_610) (long int ____x_608);// L775 +extern long long int (__llabs_612) (long long int ____x_611);// L779:L780 +extern long long int (__llabs_613) (long long int ____x_611);// L779:L780 +extern __div_t_94 (__div_616) (int ____numer_614, int ____denom_615);// L788:L789 +extern __div_t_94 (__div_617) (int ____numer_614, int ____denom_615);// L788:L789 +extern __ldiv_t_99 (__ldiv_620) (long int ____numer_618, long int ____denom_619);// L790:L791 +extern __ldiv_t_99 (__ldiv_622) (long int ____numer_618, long int ____denom_619);// L790:L791 +extern __lldiv_t_104 (__lldiv_626) (long long int ____numer_624, long long int ____denom_625);// L796:L798 +extern __lldiv_t_104 (__lldiv_628) (long long int ____numer_624, long long int ____denom_625);// L796:L798 +extern char * ((__ecvt_634) (double ____value_630, int ____ndigit_631, int * __restrict ____decpt_632, int * __restrict ____sign_633));// L811:L812 +extern char * ((__ecvt_635) (double ____value_630, int ____ndigit_631, int * __restrict ____decpt_632, int * __restrict ____sign_633));// L811:L812 +extern char * ((__fcvt_640) (double ____value_636, int ____ndigit_637, int * __restrict ____decpt_638, int * __restrict ____sign_639));// L817:L818 +extern char * ((__fcvt_641) (double ____value_636, int ____ndigit_637, int * __restrict ____decpt_638, int * __restrict ____sign_639));// L817:L818 +extern char * ((__gcvt_645) (double ____value_642, int ____ndigit_643, char * (____buf_644)));// L823:L824 +extern char * ((__gcvt_646) (double ____value_642, int ____ndigit_643, char * (____buf_644)));// L823:L824 +extern char * ((__qecvt_651) (long double ____value_647, int ____ndigit_648, int * __restrict ____decpt_649, int * __restrict ____sign_650));// L829:L831 +extern char * ((__qecvt_652) (long double ____value_647, int ____ndigit_648, int * __restrict ____decpt_649, int * __restrict ____sign_650));// L829:L831 +extern char * ((__qfcvt_657) (long double ____value_653, int ____ndigit_654, int * __restrict ____decpt_655, int * __restrict ____sign_656));// L832:L834 +extern char * ((__qfcvt_658) (long double ____value_653, int ____ndigit_654, int * __restrict ____decpt_655, int * __restrict ____sign_656));// L832:L834 +extern char * ((__qgcvt_662) (long double ____value_659, int ____ndigit_660, char * (____buf_661)));// L835:L836 +extern char * ((__qgcvt_663) (long double ____value_659, int ____ndigit_660, char * (____buf_661)));// L835:L836 +extern int (__ecvt_r_670) (double ____value_664, int ____ndigit_665, int * __restrict ____decpt_666, int * __restrict ____sign_667, char * __restrict ____buf_668, __size_t_1 ____len_669);// L841:L843 +extern int (__fcvt_r_677) (double ____value_671, int ____ndigit_672, int * __restrict ____decpt_673, int * __restrict ____sign_674, char * __restrict ____buf_675, __size_t_1 ____len_676);// L844:L846 +extern int (__qecvt_r_684) (long double ____value_678, int ____ndigit_679, int * __restrict ____decpt_680, int * __restrict ____sign_681, char * __restrict ____buf_682, __size_t_1 ____len_683);// L848:L851 +extern int (__qfcvt_r_691) (long double ____value_685, int ____ndigit_686, int * __restrict ____decpt_687, int * __restrict ____sign_688, char * __restrict ____buf_689, __size_t_1 ____len_690);// L852:L855 +extern int (__mblen_694) (const char * (____s_692), __size_t_1 ____n_693);// L862 +extern int (__mblen_695) (const char * (____s_692), __size_t_1 ____n_693);// L862 +extern int (__mbtowc_699) (__wchar_t_2 * __restrict ____pwc_696, const char * __restrict ____s_697, __size_t_1 ____n_698);// L865:L866 +extern int (__wctomb_702) (char * (____s_700), __wchar_t_2 ____wchar_701);// L869 +extern __size_t_1 (__mbstowcs_706) (__wchar_t_2 * __restrict ____pwcs_703, const char * __restrict ____s_704, __size_t_1 ____n_705);// L873:L874 +extern __size_t_1 (__wcstombs_710) (char * __restrict ____s_707, const __wchar_t_2 * __restrict ____pwcs_708, __size_t_1 ____n_709);// L876:L878 +extern int (__rpmatch_713) (const char * (____response_711));// L887 +extern int (__rpmatch_712) (const char * (____response_711));// L887 +extern int (__getsubopt_718) (char * (* __restrict ____optionp_714), char * const * __restrict ____tokens_715, char * (* __restrict ____valuep_716));// L898:L901 +extern int (__getsubopt_717) (char * (* __restrict ____optionp_714), char * const * __restrict ____tokens_715, char * (* __restrict ____valuep_716));// L898:L901 +extern int (__getloadavg_721) (double ____loadavg_719[], int ____nelem_720);// L950:L951 +/* no function due to type errors in the function prototype */ +extern char * ((____realpath_chk_726) (const char * __restrict ____name_723, char * __restrict ____resolved_724, __size_t_1 ____resolvedlen_725));// L23:L25 +extern char * ((____realpath_alias_729) (const char * __restrict ____name_727, char * __restrict ____resolved_728));// L26:L28 +extern char * ((____realpath_chk_warn_733) (const char * __restrict ____name_730, char * __restrict ____resolved_731, __size_t_1 ____resolvedlen_732));// L29:L34 +/* no function due to type errors in the function prototype */ +extern int (____ptsname_r_chk_741) (int ____fd_737, char * (____buf_738), __size_t_1 ____buflen_739, __size_t_1 ____nreal_740);// L52:L53 +extern int (____ptsname_r_alias_745) (int ____fd_742, char * (____buf_743), __size_t_1 ____buflen_744);// L54:L56 +extern int (____ptsname_r_chk_warn_750) (int ____fd_746, char * (____buf_747), __size_t_1 ____buflen_748, __size_t_1 ____nreal_749);// L57:L61 +/* no function due to type errors in the function prototype */ +extern int (____wctomb_chk_758) (char * (____s_755), __wchar_t_2 ____wchar_756, __size_t_1 ____buflen_757);// L77:L78 +extern int (____wctomb_alias_761) (char * (____s_759), __wchar_t_2 ____wchar_760);// L79:L80 +/* no function due to type errors in the function prototype */ +extern __size_t_1 (____mbstowcs_chk_768) (__wchar_t_2 * __restrict ____dst_764, const char * __restrict ____src_765, __size_t_1 ____len_766, __size_t_1 ____dstlen_767);// L98:L100 +extern __size_t_1 (____mbstowcs_alias_772) (__wchar_t_2 * __restrict ____dst_769, const char * __restrict ____src_770, __size_t_1 ____len_771);// L101:L104 +extern __size_t_1 (____mbstowcs_chk_warn_777) (__wchar_t_2 * __restrict ____dst_773, const char * __restrict ____src_774, __size_t_1 ____len_775, __size_t_1 ____dstlen_776);// L105:L110 +/* no function due to type errors in the function prototype */ +extern __size_t_1 (____wcstombs_chk_785) (char * __restrict ____dst_781, const __wchar_t_2 * __restrict ____src_782, __size_t_1 ____len_783, __size_t_1 ____dstlen_784);// L130:L132 +extern __size_t_1 (____wcstombs_alias_789) (char * __restrict ____dst_786, const __wchar_t_2 * __restrict ____src_787, __size_t_1 ____len_788);// L133:L136 +extern __size_t_1 (____wcstombs_chk_warn_794) (char * __restrict ____dst_790, const __wchar_t_2 * __restrict ____src_791, __size_t_1 ____len_792, __size_t_1 ____dstlen_793);// L137:L141 +/* no function due to type errors in the function prototype */ +void (__ssl_cmd_protocol_parse_799) () { + +if (__static_condition_default_802) { { { -int __thisopt_252;// L9 +int __thisopt_798;// L9 -if (__static_condition_default_259) { +if (__static_condition_default_803) { if ( rand( ) % 2 )// L11 { @@ -315,12 +1328,34 @@ if ( rand( ) % 2 )// L11 - __thisopt_252 = ( 1 << 3 ) ; // L4:L13 +if (__static_condition_default_804) { + __thisopt_798 = ( 1 << 3 ) ; // L4:L13 +} +if (__static_condition_default_805) { +__static_type_error("type error : no valid expression"); // L13 +} +} +} } } } } -if (__static_condition_default_260) { + + +} +} +void (__ssl_cmd_protocol_parse_800) () { + +if (__static_condition_default_806) { + +{ +{ + + + +int __thisopt_798;// L9 + +if (__static_condition_default_807) { if ( rand( ) % 2 )// L11 { @@ -329,7 +1364,12 @@ if ( rand( ) % 2 )// L11 - __thisopt_252 = ( 1 << 3 ) ; // L4:L13 +if (__static_condition_default_808) { + __thisopt_798 = ( 1 << 3 ) ; // L4:L13 +} +if (__static_condition_default_809) { +__static_type_error("type error : no valid expression"); // L13 +} } } } @@ -340,18 +1380,39 @@ if ( rand( ) % 2 )// L11 } } -int (__main_261) (void ) { +void (__ssl_cmd_protocol_parse_801) () { + +if (__static_condition_default_810) { { { -if (__static_condition_default_255) { - __ssl_cmd_protocol_parse_253 ( ) ; // L19 +int __thisopt_798;// L9 + +__static_type_error("invalid type found in if statement"); +} +} + + +} +} +int (__main_811) (void ) { + +{ +{ + + + +if (__static_condition_default_812) { + __ssl_cmd_protocol_parse_799 ( ) ; // L19 +} +if (__static_condition_default_813) { + __ssl_cmd_protocol_parse_800 ( ) ; // L19 } -if (__static_condition_default_258) { - __ssl_cmd_protocol_parse_254 ( ) ; // L19 +if (__static_condition_default_810) { + __ssl_cmd_protocol_parse_801 ( ) ; // L19 } return 0 ;// L20 } diff --git a/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.clangres b/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.clangres index eae8581b..95c5ae87 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.clangres @@ -1,13 +1,7 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.c:273:2: warning: Value stored to '__thisopt_252' is never read [deadcode.DeadStores] - __thisopt_252 = ( 1 << 3 ) ; // L4:L13 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.c:1332:2: warning: Value stored to '__thisopt_798' is never read [deadcode.DeadStores] + __thisopt_798 = ( 1 << 3 ) ; // L4:L13 ^ ~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.c:287:2: warning: Value stored to '__thisopt_252' is never read [deadcode.DeadStores] - __thisopt_252 = ( 1 << 3 ) ; // L4:L13 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.c:1368:2: warning: Value stored to '__thisopt_798' is never read [deadcode.DeadStores] + __thisopt_798 = ( 1 << 3 ) ; // L4:L13 ^ ~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.c:318:2: warning: Value stored to '__thisopt_252' is never read [deadcode.DeadStores] - __thisopt_252 = ( 1 << 3 ) ; // L4:L13 - ^ ~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.c:332:2: warning: Value stored to '__thisopt_252' is never read [deadcode.DeadStores] - __thisopt_252 = ( 1 << 3 ) ; // L4:L13 - ^ ~~~~~~~~~~ -4 warnings generated. +2 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.inferres b/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c index bdf9b4d2..6eccf22a 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c @@ -7,217 +7,284 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_870; -extern const bool __static_condition_default_820; -extern const bool __static_condition_default_74; -extern const bool __static_condition_default_338; -extern const bool __static_condition_default_474; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_577; -extern const bool __static_condition_default_707; -extern const bool __static_condition_default_924; -extern const bool __static_condition_default_162; -extern const bool __static_condition_default_626; -extern const bool __static_condition_default_395; +extern const bool __static_condition_default_455; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_333; +extern const bool __static_condition_default_347; +extern const bool __static_condition_default_929; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_559; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_512; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_84; extern const bool __static_condition_default_473; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_308; -extern const bool __static_condition_default_551; -extern const bool __static_condition_default_236; -extern const bool __static_condition_default_743; -extern const bool __static_condition_default_318; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_274; extern const bool __static_condition_default_991; -extern const bool __static_condition_default_435; -extern const bool __static_condition_default_575; -extern const bool __static_condition_default_774; -extern const bool __static_condition_default_790; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_680; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_714; -extern const bool __static_condition_default_933; -extern const bool __static_condition_default_762; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_223; +extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_1105; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_198; extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_969; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_759; +extern const bool __static_condition_default_1109; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_568; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_311; +extern const bool __static_condition_default_521; extern const bool __static_condition_default_809; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_881; -extern const bool __static_condition_default_234; -extern const bool __static_condition_default_772; -extern const bool __static_condition_default_336; -extern const bool __static_condition_default_320; -extern const bool __static_condition_default_768; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_753; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_544; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_636; +extern const bool __static_condition_default_613; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_388; extern const bool __static_condition_default_469; -extern const bool __static_condition_default_719; -extern const bool __static_condition_default_586; -extern const bool __static_condition_default_733; -extern const bool __static_condition_default_641; -extern const bool __static_condition_default_356; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_495; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_343; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_276; -extern const bool __static_condition_default_706; -extern const bool __static_condition_default_695; -extern const bool __static_condition_default_605; -extern const bool __static_condition_default_528; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_961; -extern const bool __static_condition_default_788; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_549; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_955; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_337; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_761; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_267; extern const bool __static_condition_default_431; -extern const bool __static_condition_default_766; -extern const bool __static_condition_default_905; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_540; -extern const bool __static_condition_default_457; -extern const bool __static_condition_default_421; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_226; -extern const bool __static_condition_default_379; -extern const bool __static_condition_default_595; -extern const bool __static_condition_default_225; -extern const bool __static_condition_default_400; -extern const bool __static_condition_default_935; -extern const bool __static_condition_default_784; -extern const bool __static_condition_default_696; -extern const bool __static_condition_default_496; -extern const bool __static_condition_default_556; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_567; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_374; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_358; -extern const bool __static_condition_default_501; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_893; -extern const bool __static_condition_default_500; -extern const bool __static_condition_default_1025; -extern const bool __static_condition_default_300; -extern const bool __static_condition_default_349; -extern const bool __static_condition_default_953; -extern const bool __static_condition_default_508; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_446; +extern const bool __static_condition_default_846; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_789; +extern const bool __static_condition_default_1108; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_386; extern const bool __static_condition_default_475; -extern const bool __static_condition_default_992; -extern const bool __static_condition_default_332; -extern const bool __static_condition_default_451; -extern const bool __static_condition_default_502; -extern const bool __static_condition_default_597; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_1110; extern const bool __static_condition_default_715; -extern const bool __static_condition_default_1026; -extern const bool __static_condition_default_304; -extern const bool __static_condition_default_1033; -extern const bool __static_condition_default_562; -extern const bool __static_condition_default_507; -extern const bool __static_condition_default_1017; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_482; -extern const bool __static_condition_default_517; -extern const bool __static_condition_default_749; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_330; -extern const bool __static_condition_default_448; -extern const bool __static_condition_default_889; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_161; -extern const bool __static_condition_default_165; -extern const bool __static_condition_default_470; -extern const bool __static_condition_default_254; -extern const bool __static_condition_default_720; -extern const bool __static_condition_default_906; -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_694; -extern const bool __static_condition_default_459; -extern const bool __static_condition_default_983; -extern const bool __static_condition_default_882; -extern const bool __static_condition_default_968; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_118; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_798; -extern const bool __static_condition_default_833; -extern const bool __static_condition_default_954; -extern const bool __static_condition_default_381; -extern const bool __static_condition_default_579; -extern const bool __static_condition_default_672; -extern const bool __static_condition_default_1021; -extern const bool __static_condition_default_904; -extern const bool __static_condition_default_610; -extern const bool __static_condition_default_612; -extern const bool __static_condition_default_648; -extern const bool __static_condition_default_962; -extern const bool __static_condition_default_688; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_917; -extern const bool __static_condition_default_227; -extern const bool __static_condition_default_588; -extern const bool __static_condition_default_294; -extern const bool __static_condition_default_898; -extern const bool __static_condition_default_328; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_729; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_739; -extern const bool __static_condition_default_453; -extern const bool __static_condition_default_984; -extern const bool __static_condition_default_1016; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_639; -extern const bool __static_condition_default_976; -extern const bool __static_condition_default_370; -extern const bool __static_condition_default_449; -extern const bool __static_condition_default_778; -extern const bool __static_condition_default_480; -extern const bool __static_condition_default_454; -extern const bool __static_condition_default_256; -extern const bool __static_condition_default_640; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_543; extern const bool __static_condition_default_433; -extern const bool __static_condition_default_230; -extern const bool __static_condition_default_948; -extern const bool __static_condition_default_232; -extern const bool __static_condition_default_310; -extern const bool __static_condition_default_999; -extern const bool __static_condition_default_394; -extern const bool __static_condition_default_977; -extern const bool __static_condition_default_393; -extern const bool __static_condition_default_931; -extern const bool __static_condition_default_429; -extern const bool __static_condition_default_603; -extern const bool __static_condition_default_642; -extern const bool __static_condition_default_533; -extern const bool __static_condition_default_351; -extern const bool __static_condition_default_627; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_702; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_907; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_365; +extern const bool __static_condition_default_963; +extern const bool __static_condition_default_1096; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_550; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_1104; +extern const bool __static_condition_default_583; +extern const bool __static_condition_default_875; +extern const bool __static_condition_default_1102; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_380; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_894; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_488; +extern const bool __static_condition_default_842; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_1097; extern const bool __static_condition_default_708; -extern const bool __static_condition_default_941; -extern const bool __static_condition_default_1031; -extern const bool __static_condition_default_735; +extern const bool __static_condition_default_204; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_779; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_1035; extern const bool __static_condition_default_471; -extern const bool __static_condition_default_716; -extern const bool __static_condition_default_624; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_804; -extern const bool __static_condition_default_718; -extern const bool __static_condition_default_794; -extern const bool __static_condition_default_326; -extern const bool __static_condition_default_855; -extern const bool __static_condition_default_1006; -extern const bool __static_condition_default_655; -extern const bool __static_condition_default_1032; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_367; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_76; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_536; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_619; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_419; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_721; +extern const bool __static_condition_default_290; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_791; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_1098; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_489; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_1103; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_769; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_862; extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_670; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_1101; +extern const bool __static_condition_default_382; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_834; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_187; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_891; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_747; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_677; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_978; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -269,439 +336,510 @@ __static_renaming("____ssize_t_49", "__ssize_t"); __static_renaming("____syscall_slong_t_50", "__syscall_slong_t"); __static_renaming("____syscall_ulong_t_51", "__syscall_ulong_t"); __static_renaming("____loff_t_52", "__loff_t"); -__static_renaming("____qaddr_t_53", "__qaddr_t"); -__static_renaming("____caddr_t_54", "__caddr_t"); -__static_renaming("____intptr_t_55", "__intptr_t"); -__static_renaming("____socklen_t_56", "__socklen_t"); -__static_renaming("__FILE_58", "FILE"); -__static_renaming("____FILE_59", "__FILE"); -__static_renaming("____mbstate_t_68", "__mbstate_t"); -__static_renaming("___G_fpos_t_75", "_G_fpos_t"); -__static_renaming("___G_fpos64_t_81", "_G_fpos64_t"); -__static_renaming("____gnuc_va_list_82", "__gnuc_va_list"); -__static_renaming("___IO_lock_t_84", "_IO_lock_t"); -__static_renaming("___IO_FILE_163", "_IO_FILE"); -__static_renaming("___IO_FILE_164", "_IO_FILE"); -__static_renaming("___IO_2_1_stdin__167", "_IO_2_1_stdin_"); -__static_renaming("___IO_2_1_stdout__168", "_IO_2_1_stdout_"); -__static_renaming("___IO_2_1_stderr__169", "_IO_2_1_stderr_"); -__static_renaming("____io_read_fn_173", "__io_read_fn"); -__static_renaming("____io_write_fn_177", "__io_write_fn"); -__static_renaming("____io_seek_fn_181", "__io_seek_fn"); -__static_renaming("____io_close_fn_183", "__io_close_fn"); -__static_renaming("____underflow_184", "__underflow"); -__static_renaming("____underflow_185", "__underflow"); -__static_renaming("____uflow_186", "__uflow"); -__static_renaming("____uflow_187", "__uflow"); -__static_renaming("____overflow_188", "__overflow"); -__static_renaming("____overflow_189", "__overflow"); -__static_renaming("___IO_getc_193", "_IO_getc"); -__static_renaming("___IO_getc_194", "_IO_getc"); -__static_renaming("___IO_putc_199", "_IO_putc"); -__static_renaming("___IO_putc_200", "_IO_putc"); -__static_renaming("___IO_feof_204", "_IO_feof"); -__static_renaming("___IO_feof_205", "_IO_feof"); -__static_renaming("___IO_ferror_209", "_IO_ferror"); -__static_renaming("___IO_ferror_210", "_IO_ferror"); -__static_renaming("___IO_peekc_locked_214", "_IO_peekc_locked"); -__static_renaming("___IO_peekc_locked_215", "_IO_peekc_locked"); -__static_renaming("___IO_flockfile_216", "_IO_flockfile"); -__static_renaming("___IO_flockfile_217", "_IO_flockfile"); -__static_renaming("___IO_funlockfile_218", "_IO_funlockfile"); -__static_renaming("___IO_funlockfile_219", "_IO_funlockfile"); -__static_renaming("___IO_ftrylockfile_220", "_IO_ftrylockfile"); -__static_renaming("___IO_ftrylockfile_221", "_IO_ftrylockfile"); -__static_renaming("___IO_vfscanf_222", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_224", "_IO_vfscanf"); -__static_renaming("___IO_vfprintf_231", "_IO_vfprintf"); -__static_renaming("___IO_vfprintf_233", "_IO_vfprintf"); -__static_renaming("___IO_padn_238", "_IO_padn"); -__static_renaming("___IO_padn_239", "_IO_padn"); -__static_renaming("___IO_sgetn_240", "_IO_sgetn"); -__static_renaming("___IO_sgetn_241", "_IO_sgetn"); -__static_renaming("___IO_seekoff_242", "_IO_seekoff"); -__static_renaming("___IO_seekoff_243", "_IO_seekoff"); -__static_renaming("___IO_seekpos_244", "_IO_seekpos"); -__static_renaming("___IO_seekpos_245", "_IO_seekpos"); -__static_renaming("___IO_free_backup_area_246", "_IO_free_backup_area"); -__static_renaming("___IO_free_backup_area_247", "_IO_free_backup_area"); -__static_renaming("__va_list_248", "va_list"); -__static_renaming("__off_t_250", "off_t"); -__static_renaming("__off_t_251", "off_t"); -__static_renaming("__ssize_t_252", "ssize_t"); -__static_renaming("__fpos_t_253", "fpos_t"); -__static_renaming("__fpos_t_255", "fpos_t"); -__static_renaming("__stdin_257", "stdin"); -__static_renaming("__stdin_258", "stdin"); -__static_renaming("__stdout_259", "stdout"); -__static_renaming("__stdout_260", "stdout"); -__static_renaming("__stderr_261", "stderr"); -__static_renaming("__stderr_262", "stderr"); -__static_renaming("__remove_264", "remove"); -__static_renaming("__rename_267", "rename"); -__static_renaming("__renameat_272", "renameat"); -__static_renaming("__tmpfile_273", "tmpfile"); -__static_renaming("__tmpfile_275", "tmpfile"); -__static_renaming("__tmpfile_277", "tmpfile"); -__static_renaming("__tmpfile_279", "tmpfile"); -__static_renaming("__tmpnam_282", "tmpnam"); -__static_renaming("__tmpnam_283", "tmpnam"); -__static_renaming("__tmpnam_r_285", "tmpnam_r"); -__static_renaming("__tmpnam_r_286", "tmpnam_r"); -__static_renaming("__tempnam_289", "tempnam"); -__static_renaming("__tempnam_290", "tempnam"); -__static_renaming("__fclose_293", "fclose"); -__static_renaming("__fclose_295", "fclose"); -__static_renaming("__fflush_299", "fflush"); -__static_renaming("__fflush_unlocked_303", "fflush_unlocked"); -__static_renaming("__fopen_307", "fopen"); -__static_renaming("__fopen_309", "fopen"); -__static_renaming("__fopen_317", "fopen"); -__static_renaming("__fopen_319", "fopen"); -__static_renaming("__freopen_325", "freopen"); -__static_renaming("__freopen_327", "freopen"); -__static_renaming("__freopen_329", "freopen"); -__static_renaming("__freopen_331", "freopen"); -__static_renaming("__fdopen_335", "fdopen"); -__static_renaming("__fdopen_337", "fdopen"); -__static_renaming("__fmemopen_342", "fmemopen"); -__static_renaming("__fmemopen_344", "fmemopen"); -__static_renaming("__open_memstream_348", "open_memstream"); -__static_renaming("__open_memstream_350", "open_memstream"); -__static_renaming("__setbuf_355", "setbuf"); -__static_renaming("__setbuf_357", "setbuf"); -__static_renaming("__setvbuf_364", "setvbuf"); -__static_renaming("__setbuffer_369", "setbuffer"); -__static_renaming("__setlinebuf_373", "setlinebuf"); -__static_renaming("__fprintf_378", "fprintf"); -__static_renaming("__fprintf_380", "fprintf"); -__static_renaming("__printf_383", "printf"); -__static_renaming("__sprintf_386", "sprintf"); -__static_renaming("__vfprintf_392", "vfprintf"); -__static_renaming("__vprintf_399", "vprintf"); -__static_renaming("__vsprintf_405", "vsprintf"); -__static_renaming("__snprintf_409", "snprintf"); -__static_renaming("__vsnprintf_415", "vsnprintf"); -__static_renaming("__vdprintf_420", "vdprintf"); -__static_renaming("__dprintf_424", "dprintf"); -__static_renaming("__fscanf_428", "fscanf"); -__static_renaming("__fscanf_430", "fscanf"); -__static_renaming("__fscanf_432", "fscanf"); -__static_renaming("__fscanf_434", "fscanf"); -__static_renaming("__scanf_437", "scanf"); -__static_renaming("__scanf_438", "scanf"); -__static_renaming("__sscanf_441", "sscanf"); -__static_renaming("__vfscanf_468", "vfscanf"); -__static_renaming("__vfscanf_472", "vfscanf"); -__static_renaming("__vscanf_479", "vscanf"); -__static_renaming("__vscanf_481", "vscanf"); -__static_renaming("__vsscanf_487", "vsscanf"); -__static_renaming("__fgetc_520", "fgetc"); -__static_renaming("__getc_523", "getc"); -__static_renaming("__getchar_524", "getchar"); -__static_renaming("__getc_unlocked_527", "getc_unlocked"); -__static_renaming("__getchar_unlocked_529", "getchar_unlocked"); -__static_renaming("__fgetc_unlocked_532", "fgetc_unlocked"); -__static_renaming("__fputc_537", "fputc"); -__static_renaming("__fputc_539", "fputc"); -__static_renaming("__putc_544", "putc"); -__static_renaming("__putchar_546", "putchar"); -__static_renaming("__fputc_unlocked_550", "fputc_unlocked"); -__static_renaming("__putc_unlocked_555", "putc_unlocked"); -__static_renaming("__putchar_unlocked_558", "putchar_unlocked"); -__static_renaming("__getw_561", "getw"); -__static_renaming("__putw_566", "putw"); -__static_renaming("__fgets_572", "fgets"); -__static_renaming("__fgets_574", "fgets"); -__static_renaming("__fgets_576", "fgets"); -__static_renaming("__fgets_578", "fgets"); -__static_renaming("____getdelim_585", "__getdelim"); -__static_renaming("____getdelim_587", "__getdelim"); -__static_renaming("__getdelim_594", "getdelim"); -__static_renaming("__getdelim_596", "getdelim"); -__static_renaming("__getline_602", "getline"); -__static_renaming("__getline_604", "getline"); -__static_renaming("__fputs_609", "fputs"); -__static_renaming("__fputs_611", "fputs"); -__static_renaming("__puts_614", "puts"); -__static_renaming("__ungetc_618", "ungetc"); -__static_renaming("__fseek_654", "fseek"); -__static_renaming("__fseek_656", "fseek"); -__static_renaming("__ftell_660", "ftell"); -__static_renaming("__ftell_662", "ftell"); -__static_renaming("__rewind_666", "rewind"); -__static_renaming("__fseeko_671", "fseeko"); -__static_renaming("__fseeko_679", "fseeko"); -__static_renaming("__ftello_683", "ftello"); -__static_renaming("__ftello_685", "ftello"); -__static_renaming("__ftello_687", "ftello"); -__static_renaming("__fgetpos_693", "fgetpos"); -__static_renaming("__fgetpos_705", "fgetpos"); -__static_renaming("__fsetpos_713", "fsetpos"); -__static_renaming("__fsetpos_717", "fsetpos"); -__static_renaming("__clearerr_723", "clearerr"); -__static_renaming("__feof_726", "feof"); -__static_renaming("__feof_728", "feof"); -__static_renaming("__ferror_732", "ferror"); -__static_renaming("__ferror_734", "ferror"); -__static_renaming("__clearerr_unlocked_738", "clearerr_unlocked"); -__static_renaming("__feof_unlocked_742", "feof_unlocked"); -__static_renaming("__feof_unlocked_744", "feof_unlocked"); -__static_renaming("__ferror_unlocked_748", "ferror_unlocked"); -__static_renaming("__ferror_unlocked_750", "ferror_unlocked"); -__static_renaming("__perror_753", "perror"); -__static_renaming("__perror_754", "perror"); -__static_renaming("__sys_nerr_755", "sys_nerr"); -__static_renaming("__sys_errlist_756", "sys_errlist"); -__static_renaming("__fileno_759", "fileno"); -__static_renaming("__fileno_761", "fileno"); -__static_renaming("__fileno_unlocked_765", "fileno_unlocked"); -__static_renaming("__fileno_unlocked_767", "fileno_unlocked"); -__static_renaming("__popen_771", "popen"); -__static_renaming("__popen_773", "popen"); -__static_renaming("__pclose_777", "pclose"); -__static_renaming("__ctermid_780", "ctermid"); -__static_renaming("__flockfile_783", "flockfile"); -__static_renaming("__ftrylockfile_787", "ftrylockfile"); -__static_renaming("__ftrylockfile_789", "ftrylockfile"); -__static_renaming("__funlockfile_793", "funlockfile"); -__static_renaming("____sprintf_chk_825", "__sprintf_chk"); -__static_renaming("____vsprintf_chk_832", "__vsprintf_chk"); -__static_renaming("____snprintf_chk_846", "__snprintf_chk"); -__static_renaming("____vsnprintf_chk_854", "__vsnprintf_chk"); -__static_renaming("____fprintf_chk_869", "__fprintf_chk"); -__static_renaming("____printf_chk_873", "__printf_chk"); -__static_renaming("____vfprintf_chk_880", "__vfprintf_chk"); -__static_renaming("____vprintf_chk_888", "__vprintf_chk"); -__static_renaming("____dprintf_chk_910", "__dprintf_chk"); -__static_renaming("____vdprintf_chk_916", "__vdprintf_chk"); -__static_renaming("____fgets_chk_930", "__fgets_chk"); -__static_renaming("____fgets_chk_932", "__fgets_chk"); -__static_renaming("____fgets_chk_934", "__fgets_chk"); -__static_renaming("____fgets_alias_940", "__fgets_alias"); -__static_renaming("____fgets_chk_warn_947", "__fgets_chk_warn"); -__static_renaming("____cnt_1013", "__cnt"); -__static_renaming("____cptr_1014", "__cptr"); -__static_renaming("__apr_rmm_init_1019", "apr_rmm_init"); -__static_renaming("__apr_rmm_init_1020", "apr_rmm_init"); -__static_renaming("__rmm_lock_1023", "rmm_lock"); -__static_renaming("__util_ldap_cache_init_1024", "util_ldap_cache_init"); -__static_renaming("__main_1029", "main"); -__static_renaming("__main_1030", "main"); - -__static_condition_renaming("__static_condition_default_74", "(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_118", "(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_161", "(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_162", "(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_165", "(defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_223", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_225", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_226", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_227", "(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_230", "(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_232", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_234", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_235", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_236", "(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_249", "!(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); -__static_condition_renaming("__static_condition_default_254", "!(defined _FILE_OFFSET_BITS) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_256", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_274", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_276", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_278", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_280", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_294", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_296", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_300", "(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_304", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_308", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_310", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_318", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_320", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_326", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_328", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_330", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_332", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_336", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_338", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_343", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_345", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_349", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_351", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_356", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_358", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_370", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_374", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_379", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_381", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_393", "!(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_394", "(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_395", "(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_400", "!(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_421", "!(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_429", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_431", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_433", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_435", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_446", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_448", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_449", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_451", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_453", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_454", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_457", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_459", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_469", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_470", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_471", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_473", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_474", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_475", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_480", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_482", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_494", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_495", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_496", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_497", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_499", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_500", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_501", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_502", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_507", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_508", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_510", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_511", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_517", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_528", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_533", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_538", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_540", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_551", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_556", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_562", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_567", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_573", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_575", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_577", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_579", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_586", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_588", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_595", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_597", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_603", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_605", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_610", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_612", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_624", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_625", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_626", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_627", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_633", "!(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_639", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_640", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_641", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_642", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_648", "!(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_649", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_655", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_657", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_661", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_663", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_672", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_680", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_684", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_686", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_688", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_694", "!(defined _FILE_OFFSET_BITS) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_695", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_696", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_706", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_707", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_708", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_714", "!(defined _FILE_OFFSET_BITS) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_715", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_716", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_718", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_719", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_720", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_727", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_729", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_733", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_735", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_739", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_743", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_745", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_749", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_751", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_760", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_762", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_766", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_768", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_772", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_774", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_778", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_784", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_788", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_790", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_794", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_798", "!(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_801", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_804", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_809", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_813", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_817", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_820", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_833", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_840", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_855", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_864", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_870", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_881", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_882", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_883", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_889", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_893", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_898", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_904", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_905", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_906", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_917", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_924", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_931", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_933", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_935", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_941", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_948", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_953", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_954", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_961", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_962", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_968", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_969", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_976", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_977", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_983", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_984", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_991", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_992", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_998", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_999", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1006", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1007", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1015", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_1016", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1017", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1021", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) || (defined __STRICT_ANSI__)"); -__static_condition_renaming("__static_condition_default_1022", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1025", "(defined APU_HAS_LDAP) && !(defined APR_HAS_SHARED_MEMORY)"); -__static_condition_renaming("__static_condition_default_1026", "(defined APU_HAS_LDAP) && (defined APR_HAS_SHARED_MEMORY)"); -__static_condition_renaming("__static_condition_default_1027", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined APU_HAS_LDAP) && (defined APR_HAS_SHARED_MEMORY) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined APU_HAS_LDAP) && (defined APR_HAS_SHARED_MEMORY) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined APU_HAS_LDAP) && (defined APR_HAS_SHARED_MEMORY) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined APU_HAS_LDAP) && (defined APR_HAS_SHARED_MEMORY) || (defined __STRICT_ANSI__) && (defined APU_HAS_LDAP) && (defined APR_HAS_SHARED_MEMORY)"); -__static_condition_renaming("__static_condition_default_1028", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined APU_HAS_LDAP) && (defined APR_HAS_SHARED_MEMORY)"); -__static_condition_renaming("__static_condition_default_1031", "!(defined APU_HAS_LDAP)"); -__static_condition_renaming("__static_condition_default_1032", "(defined APU_HAS_LDAP)"); -__static_condition_renaming("__static_condition_default_1033", "(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); - -if (__static_condition_default_1033) { +__static_renaming("____qaddr_t_54", "__qaddr_t"); +__static_renaming("____caddr_t_55", "__caddr_t"); +__static_renaming("____intptr_t_56", "__intptr_t"); +__static_renaming("____socklen_t_57", "__socklen_t"); +__static_renaming("__FILE_59", "FILE"); +__static_renaming("____FILE_60", "__FILE"); +__static_renaming("____mbstate_t_69", "__mbstate_t"); +__static_renaming("___G_fpos_t_77", "_G_fpos_t"); +__static_renaming("___G_fpos64_t_85", "_G_fpos64_t"); +__static_renaming("____gnuc_va_list_86", "__gnuc_va_list"); +__static_renaming("___IO_lock_t_88", "_IO_lock_t"); +__static_renaming("___IO_FILE_171", "_IO_FILE"); +__static_renaming("___IO_FILE_172", "_IO_FILE"); +__static_renaming("___IO_2_1_stdin__175", "_IO_2_1_stdin_"); +__static_renaming("___IO_2_1_stdout__176", "_IO_2_1_stdout_"); +__static_renaming("___IO_2_1_stderr__177", "_IO_2_1_stderr_"); +__static_renaming("____io_read_fn_181", "__io_read_fn"); +__static_renaming("____io_write_fn_186", "__io_write_fn"); +__static_renaming("____io_seek_fn_192", "__io_seek_fn"); +__static_renaming("____io_close_fn_195", "__io_close_fn"); +__static_renaming("____underflow_196", "__underflow"); +__static_renaming("____underflow_197", "__underflow"); +__static_renaming("____uflow_199", "__uflow"); +__static_renaming("____uflow_200", "__uflow"); +__static_renaming("____overflow_202", "__overflow"); +__static_renaming("____overflow_203", "__overflow"); +__static_renaming("___IO_getc_208", "_IO_getc"); +__static_renaming("___IO_getc_209", "_IO_getc"); +__static_renaming("___IO_putc_215", "_IO_putc"); +__static_renaming("___IO_putc_216", "_IO_putc"); +__static_renaming("___IO_feof_221", "_IO_feof"); +__static_renaming("___IO_feof_222", "_IO_feof"); +__static_renaming("___IO_ferror_227", "_IO_ferror"); +__static_renaming("___IO_ferror_228", "_IO_ferror"); +__static_renaming("___IO_peekc_locked_233", "_IO_peekc_locked"); +__static_renaming("___IO_peekc_locked_234", "_IO_peekc_locked"); +__static_renaming("___IO_flockfile_236", "_IO_flockfile"); +__static_renaming("___IO_flockfile_237", "_IO_flockfile"); +__static_renaming("___IO_funlockfile_239", "_IO_funlockfile"); +__static_renaming("___IO_funlockfile_240", "_IO_funlockfile"); +__static_renaming("___IO_ftrylockfile_242", "_IO_ftrylockfile"); +__static_renaming("___IO_ftrylockfile_243", "_IO_ftrylockfile"); +__static_renaming("___IO_vfscanf_245", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_247", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_251", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_252", "_IO_vfscanf"); +__static_renaming("___IO_vfprintf_254", "_IO_vfprintf"); +__static_renaming("___IO_vfprintf_256", "_IO_vfprintf"); +__static_renaming("___IO_vfprintf_260", "_IO_vfprintf"); +__static_renaming("___IO_padn_261", "_IO_padn"); +__static_renaming("___IO_padn_262", "_IO_padn"); +__static_renaming("___IO_sgetn_265", "_IO_sgetn"); +__static_renaming("___IO_sgetn_266", "_IO_sgetn"); +__static_renaming("___IO_seekoff_268", "_IO_seekoff"); +__static_renaming("___IO_seekoff_269", "_IO_seekoff"); +__static_renaming("___IO_seekpos_272", "_IO_seekpos"); +__static_renaming("___IO_seekpos_273", "_IO_seekpos"); +__static_renaming("___IO_free_backup_area_276", "_IO_free_backup_area"); +__static_renaming("___IO_free_backup_area_277", "_IO_free_backup_area"); +__static_renaming("__va_list_279", "va_list"); +__static_renaming("__off_t_281", "off_t"); +__static_renaming("__off_t_283", "off_t"); +__static_renaming("__ssize_t_285", "ssize_t"); +__static_renaming("__fpos_t_287", "fpos_t"); +__static_renaming("__fpos_t_289", "fpos_t"); +__static_renaming("__stdin_291", "stdin"); +__static_renaming("__stdin_292", "stdin"); +__static_renaming("__stdout_294", "stdout"); +__static_renaming("__stdout_295", "stdout"); +__static_renaming("__stderr_297", "stderr"); +__static_renaming("__stderr_298", "stderr"); +__static_renaming("__remove_301", "remove"); +__static_renaming("__rename_304", "rename"); +__static_renaming("__renameat_309", "renameat"); +__static_renaming("__tmpfile_310", "tmpfile"); +__static_renaming("__tmpfile_312", "tmpfile"); +__static_renaming("__tmpfile_314", "tmpfile"); +__static_renaming("__tmpfile_316", "tmpfile"); +__static_renaming("__tmpnam_319", "tmpnam"); +__static_renaming("__tmpnam_320", "tmpnam"); +__static_renaming("__tmpnam_r_322", "tmpnam_r"); +__static_renaming("__tmpnam_r_323", "tmpnam_r"); +__static_renaming("__tempnam_326", "tempnam"); +__static_renaming("__tempnam_327", "tempnam"); +__static_renaming("__fclose_330", "fclose"); +__static_renaming("__fclose_332", "fclose"); +__static_renaming("__fflush_336", "fflush"); +__static_renaming("__fflush_unlocked_340", "fflush_unlocked"); +__static_renaming("__fopen_344", "fopen"); +__static_renaming("__fopen_346", "fopen"); +__static_renaming("__fopen_354", "fopen"); +__static_renaming("__fopen_356", "fopen"); +__static_renaming("__freopen_362", "freopen"); +__static_renaming("__freopen_364", "freopen"); +__static_renaming("__freopen_366", "freopen"); +__static_renaming("__freopen_368", "freopen"); +__static_renaming("__fdopen_372", "fdopen"); +__static_renaming("__fdopen_374", "fdopen"); +__static_renaming("__fmemopen_379", "fmemopen"); +__static_renaming("__fmemopen_381", "fmemopen"); +__static_renaming("__open_memstream_385", "open_memstream"); +__static_renaming("__open_memstream_387", "open_memstream"); +__static_renaming("__setbuf_392", "setbuf"); +__static_renaming("__setbuf_394", "setbuf"); +__static_renaming("__setvbuf_401", "setvbuf"); +__static_renaming("__setbuffer_407", "setbuffer"); +__static_renaming("__setlinebuf_411", "setlinebuf"); +__static_renaming("__fprintf_416", "fprintf"); +__static_renaming("__fprintf_418", "fprintf"); +__static_renaming("__printf_421", "printf"); +__static_renaming("__sprintf_424", "sprintf"); +__static_renaming("__vfprintf_430", "vfprintf"); +__static_renaming("__vprintf_437", "vprintf"); +__static_renaming("__vsprintf_443", "vsprintf"); +__static_renaming("__snprintf_448", "snprintf"); +__static_renaming("__vsnprintf_454", "vsnprintf"); +__static_renaming("__vdprintf_460", "vdprintf"); +__static_renaming("__dprintf_464", "dprintf"); +__static_renaming("__fscanf_468", "fscanf"); +__static_renaming("__fscanf_470", "fscanf"); +__static_renaming("__fscanf_472", "fscanf"); +__static_renaming("__fscanf_474", "fscanf"); +__static_renaming("__scanf_477", "scanf"); +__static_renaming("__scanf_478", "scanf"); +__static_renaming("__sscanf_481", "sscanf"); +__static_renaming("__vfscanf_509", "vfscanf"); +__static_renaming("__vfscanf_513", "vfscanf"); +__static_renaming("__vscanf_520", "vscanf"); +__static_renaming("__vscanf_522", "vscanf"); +__static_renaming("__vsscanf_528", "vsscanf"); +__static_renaming("__fgetc_563", "fgetc"); +__static_renaming("__getc_567", "getc"); +__static_renaming("__getchar_569", "getchar"); +__static_renaming("__getc_unlocked_572", "getc_unlocked"); +__static_renaming("__getchar_unlocked_574", "getchar_unlocked"); +__static_renaming("__fgetc_unlocked_577", "fgetc_unlocked"); +__static_renaming("__fputc_582", "fputc"); +__static_renaming("__fputc_584", "fputc"); +__static_renaming("__putc_589", "putc"); +__static_renaming("__putchar_592", "putchar"); +__static_renaming("__fputc_unlocked_596", "fputc_unlocked"); +__static_renaming("__putc_unlocked_601", "putc_unlocked"); +__static_renaming("__putchar_unlocked_604", "putchar_unlocked"); +__static_renaming("__getw_607", "getw"); +__static_renaming("__putw_612", "putw"); +__static_renaming("__fgets_618", "fgets"); +__static_renaming("__fgets_620", "fgets"); +__static_renaming("__fgets_622", "fgets"); +__static_renaming("__fgets_624", "fgets"); +__static_renaming("____getdelim_631", "__getdelim"); +__static_renaming("____getdelim_635", "__getdelim"); +__static_renaming("__getdelim_644", "getdelim"); +__static_renaming("__getdelim_648", "getdelim"); +__static_renaming("__getline_656", "getline"); +__static_renaming("__getline_660", "getline"); +__static_renaming("__fputs_667", "fputs"); +__static_renaming("__fputs_669", "fputs"); +__static_renaming("__puts_672", "puts"); +__static_renaming("__ungetc_676", "ungetc"); +__static_renaming("__fseek_714", "fseek"); +__static_renaming("__fseek_716", "fseek"); +__static_renaming("__ftell_720", "ftell"); +__static_renaming("__ftell_722", "ftell"); +__static_renaming("__rewind_726", "rewind"); +__static_renaming("__fseeko_733", "fseeko"); +__static_renaming("__fseeko_744", "fseeko"); +__static_renaming("__ftello_750", "ftello"); +__static_renaming("__ftello_754", "ftello"); +__static_renaming("__ftello_758", "ftello"); +__static_renaming("__fgetpos_766", "fgetpos"); +__static_renaming("__fgetpos_778", "fgetpos"); +__static_renaming("__fsetpos_786", "fsetpos"); +__static_renaming("__fsetpos_790", "fsetpos"); +__static_renaming("__clearerr_796", "clearerr"); +__static_renaming("__feof_800", "feof"); +__static_renaming("__feof_802", "feof"); +__static_renaming("__ferror_806", "ferror"); +__static_renaming("__ferror_808", "ferror"); +__static_renaming("__clearerr_unlocked_812", "clearerr_unlocked"); +__static_renaming("__feof_unlocked_816", "feof_unlocked"); +__static_renaming("__feof_unlocked_818", "feof_unlocked"); +__static_renaming("__ferror_unlocked_822", "ferror_unlocked"); +__static_renaming("__ferror_unlocked_824", "ferror_unlocked"); +__static_renaming("__perror_827", "perror"); +__static_renaming("__perror_828", "perror"); +__static_renaming("__sys_nerr_829", "sys_nerr"); +__static_renaming("__sys_errlist_830", "sys_errlist"); +__static_renaming("__fileno_833", "fileno"); +__static_renaming("__fileno_835", "fileno"); +__static_renaming("__fileno_unlocked_839", "fileno_unlocked"); +__static_renaming("__fileno_unlocked_841", "fileno_unlocked"); +__static_renaming("__popen_845", "popen"); +__static_renaming("__popen_847", "popen"); +__static_renaming("__pclose_851", "pclose"); +__static_renaming("__ctermid_854", "ctermid"); +__static_renaming("__flockfile_857", "flockfile"); +__static_renaming("__ftrylockfile_861", "ftrylockfile"); +__static_renaming("__ftrylockfile_863", "ftrylockfile"); +__static_renaming("__funlockfile_867", "funlockfile"); +__static_renaming("____sprintf_chk_899", "__sprintf_chk"); +__static_renaming("____vsprintf_chk_906", "__vsprintf_chk"); +__static_renaming("____snprintf_chk_920", "__snprintf_chk"); +__static_renaming("____vsnprintf_chk_928", "__vsnprintf_chk"); +__static_renaming("____fprintf_chk_943", "__fprintf_chk"); +__static_renaming("____printf_chk_947", "__printf_chk"); +__static_renaming("____vfprintf_chk_954", "__vfprintf_chk"); +__static_renaming("____vprintf_chk_962", "__vprintf_chk"); +__static_renaming("____dprintf_chk_984", "__dprintf_chk"); +__static_renaming("____vdprintf_chk_990", "__vdprintf_chk"); +__static_renaming("____fgets_chk_1004", "__fgets_chk"); +__static_renaming("____fgets_chk_1006", "__fgets_chk"); +__static_renaming("____fgets_chk_1008", "__fgets_chk"); +__static_renaming("____fgets_alias_1014", "__fgets_alias"); +__static_renaming("____fgets_chk_warn_1021", "__fgets_chk_warn"); +__static_renaming("____cnt_1087", "__cnt"); +__static_renaming("____cptr_1088", "__cptr"); +__static_renaming("__apr_rmm_init_1093", "apr_rmm_init"); +__static_renaming("__apr_rmm_init_1094", "apr_rmm_init"); +__static_renaming("__apr_rmm_init_1095", "apr_rmm_init"); +__static_renaming("__rmm_lock_1099", "rmm_lock"); +__static_renaming("__util_ldap_cache_init_1100", "util_ldap_cache_init"); +__static_renaming("__main_1106", "main"); +__static_renaming("__main_1107", "main"); + +__static_condition_renaming("__static_condition_default_53", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_76", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_84", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_123", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_169", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_170", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_173", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_182", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_187", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_193", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_198", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_201", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_204", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_210", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_217", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_223", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_229", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_235", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_238", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_241", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_244", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_246", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_248", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_249", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_250", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_253", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_255", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_257", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_258", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_259", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_263", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_264", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_267", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_270", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_271", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_274", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_275", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_278", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_280", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); +__static_condition_renaming("__static_condition_default_282", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_284", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_286", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_288", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_290", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_293", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_296", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_299", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_311", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_313", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_315", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_317", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_331", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_333", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_337", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_341", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_345", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_347", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_355", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_357", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_363", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_365", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_367", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_369", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_373", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_375", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_380", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_382", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_386", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_388", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_393", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_395", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_402", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_408", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_412", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_417", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_419", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_431", "!(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_432", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_433", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_438", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_444", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_455", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_461", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_469", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_471", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_473", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_475", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_486", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_488", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_489", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_491", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_493", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_494", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_497", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_499", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_503", "!(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_510", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_511", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_512", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_514", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_515", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_516", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_521", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_523", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_529", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_536", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_537", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_538", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_539", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_541", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_542", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_543", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_544", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_549", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_550", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_552", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_553", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_559", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_560", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_564", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_568", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_573", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_578", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_583", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_585", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_590", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_597", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_602", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_608", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_613", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_619", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_621", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_623", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_625", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_632", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_633", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_634", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_636", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_637", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_638", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_645", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_646", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_647", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_649", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_650", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_651", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_657", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_658", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_659", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_661", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_662", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_663", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_668", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_670", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_677", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_683", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_684", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_685", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_686", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_692", "!(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_693", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_699", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_700", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_701", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_702", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_708", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_709", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_715", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_717", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_721", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_723", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_727", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_734", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_735", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_736", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_745", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_746", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_747", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_751", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_752", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_753", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_755", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_756", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_757", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_759", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_760", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_761", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_767", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_768", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_769", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_779", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_780", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_781", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_787", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_788", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_789", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_791", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_792", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_793", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_797", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_801", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_803", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_807", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_809", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_813", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_817", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_819", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_823", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_825", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_834", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_836", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_840", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_842", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_846", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_848", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_852", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_858", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_862", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_864", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_868", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_872", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_875", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_878", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_883", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_887", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_891", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_894", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_907", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_914", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_929", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_938", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_944", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_955", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_956", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_957", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_963", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_967", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_972", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_978", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_979", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_980", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_991", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_998", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1005", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1007", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1009", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1015", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1022", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1027", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1028", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1035", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1036", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1042", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1043", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1050", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1051", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1057", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1058", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1065", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1066", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1072", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1073", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1080", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1081", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1089", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_1090", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1091", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1096", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) || !(defined __need___FILE) && (defined __STRICT_ANSI__)"); +__static_condition_renaming("__static_condition_default_1097", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1098", "(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_1101", "(defined APU_HAS_LDAP) && !(defined APR_HAS_SHARED_MEMORY)"); +__static_condition_renaming("__static_condition_default_1102", "(defined APU_HAS_LDAP) && (defined APR_HAS_SHARED_MEMORY)"); +__static_condition_renaming("__static_condition_default_1103", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined APU_HAS_LDAP) && (defined APR_HAS_SHARED_MEMORY) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined APU_HAS_LDAP) && (defined APR_HAS_SHARED_MEMORY) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined APU_HAS_LDAP) && (defined APR_HAS_SHARED_MEMORY) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined APU_HAS_LDAP) && (defined APR_HAS_SHARED_MEMORY) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined APU_HAS_LDAP) && (defined APR_HAS_SHARED_MEMORY)"); +__static_condition_renaming("__static_condition_default_1104", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined APU_HAS_LDAP) && (defined APR_HAS_SHARED_MEMORY)"); +__static_condition_renaming("__static_condition_default_1105", "(defined __need___FILE) && (defined APU_HAS_LDAP) && (defined APR_HAS_SHARED_MEMORY)"); +__static_condition_renaming("__static_condition_default_1108", "!(defined APU_HAS_LDAP)"); +__static_condition_renaming("__static_condition_default_1109", "(defined APU_HAS_LDAP)"); +__static_condition_renaming("__static_condition_default_1110", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); + +if (__static_condition_default_1110) { __static_parse_error("Unable to parse"); } }; @@ -758,142 +896,142 @@ typedef long int ____ssize_t_49;// L110:L172 typedef long int ____syscall_slong_t_50;// L93:L175 typedef unsigned long int ____syscall_ulong_t_51;// L94:L177 typedef ____off64_t_24 ____loff_t_52;// L181 -typedef ____quad_t_14 * (____qaddr_t_53);// L182 -typedef char * (____caddr_t_54);// L183 -typedef long int ____intptr_t_55;// L110:L186 -typedef unsigned int ____socklen_t_56;// L92:L189 -typedef struct __forward_tag_reference_57 __FILE_58;// L48 -typedef struct __forward_tag_reference_57 ____FILE_59;// L64 -union ____anonymous_tag_60_61 { -unsigned int ____wch_62;// L265 -char ____wchb_63[4];// L92 +typedef ____quad_t_14 * (____qaddr_t_54);// L182 +typedef char * (____caddr_t_55);// L183 +typedef long int ____intptr_t_56;// L110:L186 +typedef unsigned int ____socklen_t_57;// L92:L189 +typedef struct __forward_tag_reference_58 __FILE_59;// L48 +typedef struct __forward_tag_reference_58 ____FILE_60;// L64 +union ____anonymous_tag_61_62 { +unsigned int ____wch_63;// L265 +char ____wchb_64[4];// L92 }; -struct ____anonymous_tag_64_65 { -int ____count_66;// L84 -union ____anonymous_tag_60_61 ____value_67;// L85 +struct ____anonymous_tag_65_66 { +int ____count_67;// L84 +union ____anonymous_tag_61_62 ____value_68;// L85 }; -typedef struct ____anonymous_tag_64_65 ____mbstate_t_68;// L82:L94 -struct ____anonymous_tag_69_70 { -____off_t_23 ____pos_71;// L0 -____mbstate_t_68 ____state_72;// L0 +typedef struct ____anonymous_tag_65_66 ____mbstate_t_69;// L82:L94 +struct ____anonymous_tag_70_71 { +____off_t_23 ____pos_72;// L0 +____mbstate_t_69 ____state_74;// L0 }; -typedef struct ____anonymous_tag_69_70 ___G_fpos_t_75;// L21:L25 -struct ____anonymous_tag_76_77 { -____off64_t_24 ____pos_78;// L0 -____mbstate_t_68 ____state_79;// L0 +typedef struct ____anonymous_tag_70_71 ___G_fpos_t_77;// L21:L25 +struct ____anonymous_tag_78_79 { +____off64_t_24 ____pos_80;// L0 +____mbstate_t_69 ____state_82;// L0 }; -typedef struct ____anonymous_tag_76_77 ___G_fpos64_t_81;// L26:L30 -typedef __builtin_va_list ____gnuc_va_list_82;// L40 -typedef void ___IO_lock_t_84;// L150 -struct ___IO_marker_86 { -struct __forward_tag_reference_85 * (___next_87);// L0 -struct __forward_tag_reference_57 * (___sbuf_88);// L0 -int ___pos_89;// L162 +typedef struct ____anonymous_tag_78_79 ___G_fpos64_t_85;// L26:L30 +typedef __builtin_va_list ____gnuc_va_list_86;// L40 +typedef void ___IO_lock_t_88;// L150 +struct ___IO_marker_90 { +struct __forward_tag_reference_89 * (___next_91);// L0 +struct __forward_tag_reference_58 * (___sbuf_92);// L0 +int ___pos_93;// L162 }; -enum ____codecvt_result_94 { -____codecvt_ok_90, -____codecvt_partial_91, -____codecvt_error_92, -____codecvt_noconv_93, +enum ____codecvt_result_98 { +____codecvt_ok_94, +____codecvt_partial_95, +____codecvt_error_96, +____codecvt_noconv_97, }; -struct ___IO_FILE_95 { -int ___flags_96;// L242 -char * (___IO_read_ptr_97);// L247 -char * (___IO_read_end_98);// L248 -char * (___IO_read_base_99);// L249 -char * (___IO_write_base_100);// L250 -char * (___IO_write_ptr_101);// L251 -char * (___IO_write_end_102);// L252 -char * (___IO_buf_base_103);// L253 -char * (___IO_buf_end_104);// L254 -char * (___IO_save_base_105);// L256 -char * (___IO_backup_base_106);// L257 -char * (___IO_save_end_107);// L258 -struct ___IO_marker_86 * (___markers_108);// L260 -struct __forward_tag_reference_57 * (___chain_109);// L0 -int ___fileno_110;// L264 -int ___flags2_111;// L268 -____off_t_23 ___old_offset_112;// L0 -unsigned short ___cur_column_113;// L274 -signed char ___vtable_offset_114;// L275 -char ___shortbuf_115[1];// L276 -___IO_lock_t_84 * (___lock_116);// L0 +struct ___IO_FILE_99 { +int ___flags_100;// L242 +char * (___IO_read_ptr_101);// L247 +char * (___IO_read_end_102);// L248 +char * (___IO_read_base_103);// L249 +char * (___IO_write_base_104);// L250 +char * (___IO_write_ptr_105);// L251 +char * (___IO_write_end_106);// L252 +char * (___IO_buf_base_107);// L253 +char * (___IO_buf_end_108);// L254 +char * (___IO_save_base_109);// L256 +char * (___IO_backup_base_110);// L257 +char * (___IO_save_end_111);// L258 +struct ___IO_marker_90 * (___markers_112);// L260 +struct __forward_tag_reference_58 * (___chain_113);// L0 +int ___fileno_114;// L264 +int ___flags2_115;// L268 +____off_t_23 ___old_offset_116;// L0 +unsigned short ___cur_column_118;// L274 +signed char ___vtable_offset_119;// L275 +char ___shortbuf_120[1];// L276 +___IO_lock_t_88 * (___lock_121);// L0 }; -struct ___IO_FILE_119 { -int ___flags_120;// L242 -char * (___IO_read_ptr_121);// L247 -char * (___IO_read_end_122);// L248 -char * (___IO_read_base_123);// L249 -char * (___IO_write_base_124);// L250 -char * (___IO_write_ptr_125);// L251 -char * (___IO_write_end_126);// L252 -char * (___IO_buf_base_127);// L253 -char * (___IO_buf_end_128);// L254 -char * (___IO_save_base_129);// L256 -char * (___IO_backup_base_130);// L257 -char * (___IO_save_end_131);// L258 -struct ___IO_marker_86 * (___markers_132);// L260 -struct __forward_tag_reference_57 * (___chain_133);// L0 -int ___fileno_134;// L264 -int ___flags2_135;// L268 -____off_t_23 ___old_offset_136;// L0 -unsigned short ___cur_column_137;// L274 -signed char ___vtable_offset_138;// L275 -char ___shortbuf_139[1];// L276 -___IO_lock_t_84 * (___lock_140);// L0 -____off64_t_24 ___offset_142;// L0 -void * (____pad1_143);// L297 -void * (____pad2_144);// L298 -void * (____pad3_145);// L299 -void * (____pad4_146);// L300 -__size_t_1 ____pad5_147;// L0 -int ___mode_148;// L303 -char ___unused2_149[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +struct ___IO_FILE_124 { +int ___flags_125;// L242 +char * (___IO_read_ptr_126);// L247 +char * (___IO_read_end_127);// L248 +char * (___IO_read_base_128);// L249 +char * (___IO_write_base_129);// L250 +char * (___IO_write_ptr_130);// L251 +char * (___IO_write_end_131);// L252 +char * (___IO_buf_base_132);// L253 +char * (___IO_buf_end_133);// L254 +char * (___IO_save_base_134);// L256 +char * (___IO_backup_base_135);// L257 +char * (___IO_save_end_136);// L258 +struct ___IO_marker_90 * (___markers_137);// L260 +struct __forward_tag_reference_58 * (___chain_138);// L0 +int ___fileno_139;// L264 +int ___flags2_140;// L268 +____off_t_23 ___old_offset_141;// L0 +unsigned short ___cur_column_143;// L274 +signed char ___vtable_offset_144;// L275 +char ___shortbuf_145[1];// L276 +___IO_lock_t_88 * (___lock_146);// L0 +____off64_t_24 ___offset_148;// L0 +void * (____pad1_150);// L297 +void * (____pad2_151);// L298 +void * (____pad3_152);// L299 +void * (____pad4_153);// L300 +__size_t_1 ____pad5_154;// L0 +int ___mode_155;// L303 +char ___unused2_156[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -struct ___IO_FILE_complete_150 { -struct ___IO_FILE_95 ___file_151;// L286 -____off64_t_24 ___offset_153;// L0 -void * (____pad1_154);// L297 -void * (____pad2_155);// L298 -void * (____pad3_156);// L299 -void * (____pad4_157);// L300 -__size_t_1 ____pad5_158;// L0 -int ___mode_159;// L303 -char ___unused2_160[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +struct ___IO_FILE_complete_157 { +struct ___IO_FILE_99 ___file_158;// L286 +____off64_t_24 ___offset_160;// L0 +void * (____pad1_162);// L297 +void * (____pad2_163);// L298 +void * (____pad3_164);// L299 +void * (____pad4_165);// L300 +__size_t_1 ____pad5_166;// L0 +int ___mode_167;// L303 +char ___unused2_168[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -typedef struct ___IO_FILE_95 ___IO_FILE_163;// L310 -typedef struct ___IO_FILE_119 ___IO_FILE_164;// L310 -typedef ____ssize_t_49 (____io_read_fn_173) (void * (____cookie_170), char * (____buf_171), __size_t_1 ____nbytes_172);// L333 -typedef ____ssize_t_49 (____io_write_fn_177) (void * (____cookie_174), const char * (____buf_175), __size_t_1 ____n_176);// L341:L342 -typedef int (____io_seek_fn_181) (void * (____cookie_178), ____off64_t_24 * (____pos_179), int ____w_180);// L350 -typedef int (____io_close_fn_183) (void * (____cookie_182));// L353 -typedef ____gnuc_va_list_82 __va_list_248;// L79 -typedef ____off_t_23 __off_t_250;// L90 -typedef ____off64_t_24 __off_t_251;// L92 -typedef ____ssize_t_49 __ssize_t_252;// L102 -typedef ___G_fpos_t_75 __fpos_t_253;// L110 -typedef ___G_fpos64_t_81 __fpos_t_255;// L112 -extern const char * const __sys_errlist_756[];// L27 - -struct __forward_tag_reference_57 { // generated union of struct variations +typedef struct ___IO_FILE_99 ___IO_FILE_171;// L310 +typedef struct ___IO_FILE_124 ___IO_FILE_172;// L310 +typedef ____ssize_t_49 (____io_read_fn_181) (void * (____cookie_178), char * (____buf_179), __size_t_1 ____nbytes_180);// L333 +typedef ____ssize_t_49 (____io_write_fn_186) (void * (____cookie_183), const char * (____buf_184), __size_t_1 ____n_185);// L341:L342 +typedef int (____io_seek_fn_192) (void * (____cookie_188), ____off64_t_24 * (____pos_189), int ____w_191);// L350 +typedef int (____io_close_fn_195) (void * (____cookie_194));// L353 +typedef ____gnuc_va_list_86 __va_list_279;// L79 +typedef ____off_t_23 __off_t_281;// L90 +typedef ____off64_t_24 __off_t_283;// L92 +typedef ____ssize_t_49 __ssize_t_285;// L102 +typedef ___G_fpos_t_77 __fpos_t_287;// L110 +typedef ___G_fpos64_t_85 __fpos_t_289;// L112 +extern const char * const __sys_errlist_830[];// L27 + +struct __forward_tag_reference_89 { // generated union of struct variations union { -struct ___IO_FILE_95 ___IO_FILE_95; -struct ___IO_FILE_119 ___IO_FILE_119; +struct ___IO_marker_90 ___IO_marker_90; }; }; -struct __forward_tag_reference_85 { // generated union of struct variations +struct __forward_tag_reference_58 { // generated union of struct variations union { -struct ___IO_marker_86 ___IO_marker_86; +struct ___IO_FILE_99 ___IO_FILE_99; +struct ___IO_FILE_124 ___IO_FILE_124; }; }; -struct __forward_tag_reference_83 { // generated union of struct variations +struct __forward_tag_reference_87 { // generated union of struct variations union { }; }; -struct __forward_tag_reference_166 { // generated union of struct variations +struct __forward_tag_reference_174 { // generated union of struct variations union { }; }; @@ -952,225 +1090,225 @@ union { // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_57 ;// L0 +struct __forward_tag_reference_58 ;// L0 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_83 ;// L0 -struct __forward_tag_reference_83 ;// L0 -struct __forward_tag_reference_57 ;// L0 +struct __forward_tag_reference_87 ;// L0 +struct __forward_tag_reference_87 ;// L0 +struct __forward_tag_reference_58 ;// L0 // typedef moved to top of scope -struct ___IO_marker_86 ;// L156 -enum ____codecvt_result_94 ;// L176 -struct ___IO_FILE_95 ;// L241 +struct ___IO_marker_90 ;// L156 +enum ____codecvt_result_98 ;// L176 +struct ___IO_FILE_99 ;// L241 -struct ___IO_FILE_119 ;// L241 -struct ___IO_FILE_complete_150 ;// L241 +struct ___IO_FILE_124 ;// L241 +struct ___IO_FILE_complete_157 ;// L241 // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_166 ;// L0 -extern struct __forward_tag_reference_166 ___IO_2_1_stdin__167;// L315 -extern struct __forward_tag_reference_166 ___IO_2_1_stdout__168;// L316 -extern struct __forward_tag_reference_166 ___IO_2_1_stderr__169;// L317 +struct __forward_tag_reference_174 ;// L0 +extern struct __forward_tag_reference_174 ___IO_2_1_stdin__175;// L315 +extern struct __forward_tag_reference_174 ___IO_2_1_stdout__176;// L316 +extern struct __forward_tag_reference_174 ___IO_2_1_stderr__177;// L317 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern int (____underflow_184) (___IO_FILE_163 *);// L385 -extern int (____underflow_185) (___IO_FILE_164 *);// L385 -extern int (____uflow_186) (___IO_FILE_163 *);// L386 -extern int (____uflow_187) (___IO_FILE_164 *);// L386 -extern int (____overflow_188) (___IO_FILE_163 *, int );// L387 -extern int (____overflow_189) (___IO_FILE_164 *, int );// L387 -extern int (___IO_getc_193) (___IO_FILE_163 * (____fp_190));// L429 -extern int (___IO_getc_194) (___IO_FILE_164 * (____fp_191));// L429 -extern int (___IO_putc_199) (int ____c_195, ___IO_FILE_163 * (____fp_196));// L430 -extern int (___IO_putc_200) (int ____c_195, ___IO_FILE_164 * (____fp_197));// L430 -extern int (___IO_feof_204) (___IO_FILE_163 * (____fp_201));// L431 -extern int (___IO_feof_205) (___IO_FILE_164 * (____fp_202));// L431 -extern int (___IO_ferror_209) (___IO_FILE_163 * (____fp_206));// L432 -extern int (___IO_ferror_210) (___IO_FILE_164 * (____fp_207));// L432 -extern int (___IO_peekc_locked_214) (___IO_FILE_163 * (____fp_211));// L434 -extern int (___IO_peekc_locked_215) (___IO_FILE_164 * (____fp_212));// L434 -extern void (___IO_flockfile_216) (___IO_FILE_163 *);// L440 -extern void (___IO_flockfile_217) (___IO_FILE_164 *);// L440 -extern void (___IO_funlockfile_218) (___IO_FILE_163 *);// L441 -extern void (___IO_funlockfile_219) (___IO_FILE_164 *);// L441 -extern int (___IO_ftrylockfile_220) (___IO_FILE_163 *);// L442 -extern int (___IO_ftrylockfile_221) (___IO_FILE_164 *);// L442 -extern int (___IO_vfscanf_222) (___IO_FILE_163 * __restrict , const char * __restrict , ____gnuc_va_list_82 , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_224) (___IO_FILE_164 * __restrict , const char * __restrict , ____gnuc_va_list_82 , int * __restrict );// L459:L460 - - -extern int (___IO_vfprintf_231) (___IO_FILE_163 * __restrict , const char * __restrict , ____gnuc_va_list_82 );// L461:L462 -extern int (___IO_vfprintf_233) (___IO_FILE_164 * __restrict , const char * __restrict , ____gnuc_va_list_82 );// L461:L462 - -extern ____ssize_t_49 (___IO_padn_238) (___IO_FILE_163 *, int , ____ssize_t_49 );// L463 -extern ____ssize_t_49 (___IO_padn_239) (___IO_FILE_164 *, int , ____ssize_t_49 );// L463 -extern __size_t_1 (___IO_sgetn_240) (___IO_FILE_163 *, void *, __size_t_1 );// L464 -extern __size_t_1 (___IO_sgetn_241) (___IO_FILE_164 *, void *, __size_t_1 );// L464 -extern ____off64_t_24 (___IO_seekoff_242) (___IO_FILE_163 *, ____off64_t_24 , int , int );// L466 -extern ____off64_t_24 (___IO_seekoff_243) (___IO_FILE_164 *, ____off64_t_24 , int , int );// L466 -extern ____off64_t_24 (___IO_seekpos_244) (___IO_FILE_163 *, ____off64_t_24 , int );// L467 -extern ____off64_t_24 (___IO_seekpos_245) (___IO_FILE_164 *, ____off64_t_24 , int );// L467 -extern void (___IO_free_backup_area_246) (___IO_FILE_163 *);// L469 -extern void (___IO_free_backup_area_247) (___IO_FILE_164 *);// L469 +extern int (____underflow_196) (___IO_FILE_171 *);// L385 +extern int (____underflow_197) (___IO_FILE_172 *);// L385 +extern int (____uflow_199) (___IO_FILE_171 *);// L386 +extern int (____uflow_200) (___IO_FILE_172 *);// L386 +extern int (____overflow_202) (___IO_FILE_171 *, int );// L387 +extern int (____overflow_203) (___IO_FILE_172 *, int );// L387 +extern int (___IO_getc_208) (___IO_FILE_171 * (____fp_205));// L429 +extern int (___IO_getc_209) (___IO_FILE_172 * (____fp_206));// L429 +extern int (___IO_putc_215) (int ____c_211, ___IO_FILE_171 * (____fp_212));// L430 +extern int (___IO_putc_216) (int ____c_211, ___IO_FILE_172 * (____fp_213));// L430 +extern int (___IO_feof_221) (___IO_FILE_171 * (____fp_218));// L431 +extern int (___IO_feof_222) (___IO_FILE_172 * (____fp_219));// L431 +extern int (___IO_ferror_227) (___IO_FILE_171 * (____fp_224));// L432 +extern int (___IO_ferror_228) (___IO_FILE_172 * (____fp_225));// L432 +extern int (___IO_peekc_locked_233) (___IO_FILE_171 * (____fp_230));// L434 +extern int (___IO_peekc_locked_234) (___IO_FILE_172 * (____fp_231));// L434 +extern void (___IO_flockfile_236) (___IO_FILE_171 *);// L440 +extern void (___IO_flockfile_237) (___IO_FILE_172 *);// L440 +extern void (___IO_funlockfile_239) (___IO_FILE_171 *);// L441 +extern void (___IO_funlockfile_240) (___IO_FILE_172 *);// L441 +extern int (___IO_ftrylockfile_242) (___IO_FILE_171 *);// L442 +extern int (___IO_ftrylockfile_243) (___IO_FILE_172 *);// L442 +extern int (___IO_vfscanf_245) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_247) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_251) (___IO_FILE_171 * __restrict , const char * __restrict , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_252) (___IO_FILE_172 * __restrict , const char * __restrict , int * __restrict );// L459:L460 +extern int (___IO_vfprintf_254) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 +extern int (___IO_vfprintf_256) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 +extern int (___IO_vfprintf_260) ();// L461:L462 +extern ____ssize_t_49 (___IO_padn_261) (___IO_FILE_171 *, int , ____ssize_t_49 );// L463 +extern ____ssize_t_49 (___IO_padn_262) (___IO_FILE_172 *, int , ____ssize_t_49 );// L463 +extern __size_t_1 (___IO_sgetn_265) (___IO_FILE_171 *, void *, __size_t_1 );// L464 +extern __size_t_1 (___IO_sgetn_266) (___IO_FILE_172 *, void *, __size_t_1 );// L464 +extern ____off64_t_24 (___IO_seekoff_268) (___IO_FILE_171 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekoff_269) (___IO_FILE_172 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekpos_272) (___IO_FILE_171 *, ____off64_t_24 , int );// L467 +extern ____off64_t_24 (___IO_seekpos_273) (___IO_FILE_172 *, ____off64_t_24 , int );// L467 +extern void (___IO_free_backup_area_276) (___IO_FILE_171 *);// L469 +extern void (___IO_free_backup_area_277) (___IO_FILE_172 *);// L469 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern struct ___IO_FILE_95 * (__stdin_257);// L168 -extern struct ___IO_FILE_119 * (__stdin_258);// L168 -extern struct ___IO_FILE_95 * (__stdout_259);// L169 -extern struct ___IO_FILE_119 * (__stdout_260);// L169 -extern struct ___IO_FILE_95 * (__stderr_261);// L170 -extern struct ___IO_FILE_119 * (__stderr_262);// L170 -extern int (__remove_264) (const char * (____filename_263));// L178 -extern int (__rename_267) (const char * (____old_265), const char * (____new_266));// L180 -extern int (__renameat_272) (int ____oldfd_268, const char * (____old_269), int ____newfd_270, const char * (____new_271));// L185:L186 -extern __FILE_58 * ((__tmpfile_273) (void ));// L195 -extern __FILE_58 * ((__tmpfile_279) (void ));// L198 -extern __FILE_58 * ((__tmpfile_277) (void ));// L198 -extern __FILE_58 * ((__tmpfile_275) (void ));// L195 -extern char * ((__tmpnam_282) (char * (____s_281)));// L209 -extern char * ((__tmpnam_283) (char * (____s_281)));// L209 -extern char * ((__tmpnam_r_285) (char * (____s_284)));// L215 -extern char * ((__tmpnam_r_286) (char * (____s_284)));// L215 -extern char * ((__tempnam_289) (const char * (____dir_287), const char * (____pfx_288)));// L227:L228 -extern char * ((__tempnam_290) (const char * (____dir_287), const char * (____pfx_288)));// L227:L228 -extern int (__fclose_293) (__FILE_58 * (____stream_291));// L237 -extern int (__fclose_295) (__FILE_58 * (____stream_291));// L237 -extern int (__fflush_299) (__FILE_58 * (____stream_297));// L242 -extern int (__fflush_unlocked_303) (__FILE_58 * (____stream_301));// L252 -extern __FILE_58 * ((__fopen_307) (const char * __restrict ____filename_305, const char * __restrict ____modes_306));// L272:L273 -extern __FILE_58 * ((__fopen_309) (const char * __restrict ____filename_305, const char * __restrict ____modes_306));// L272:L273 -extern __FILE_58 * ((__fopen_317) (const char * __restrict ____filename_315, const char * __restrict ____modes_316));// L283:L285 -extern __FILE_58 * ((__fopen_319) (const char * __restrict ____filename_315, const char * __restrict ____modes_316));// L283:L285 -extern __FILE_58 * ((__freopen_325) (const char * __restrict ____filename_311, const char * __restrict ____modes_312, __FILE_58 * __restrict ____stream_313));// L278:L280 -extern __FILE_58 * ((__freopen_331) (const char * __restrict ____filename_321, const char * __restrict ____modes_322, __FILE_58 * __restrict ____stream_323));// L286:L289 -extern __FILE_58 * ((__freopen_329) (const char * __restrict ____filename_321, const char * __restrict ____modes_322, __FILE_58 * __restrict ____stream_323));// L286:L289 -extern __FILE_58 * ((__freopen_327) (const char * __restrict ____filename_311, const char * __restrict ____modes_312, __FILE_58 * __restrict ____stream_313));// L278:L280 -extern __FILE_58 * ((__fdopen_335) (int ____fd_333, const char * (____modes_334)));// L306 -extern __FILE_58 * ((__fdopen_337) (int ____fd_333, const char * (____modes_334)));// L306 -extern __FILE_58 * ((__fmemopen_342) (void * (____s_339), __size_t_1 ____len_340, const char * (____modes_341)));// L319:L320 -extern __FILE_58 * ((__fmemopen_344) (void * (____s_339), __size_t_1 ____len_340, const char * (____modes_341)));// L319:L320 -extern __FILE_58 * ((__open_memstream_348) (char * (* (____bufloc_346)), __size_t_1 * (____sizeloc_347)));// L325 -extern __FILE_58 * ((__open_memstream_350) (char * (* (____bufloc_346)), __size_t_1 * (____sizeloc_347)));// L325 -extern void (__setbuf_355) (__FILE_58 * __restrict ____stream_352, char * __restrict ____buf_354);// L332 -extern void (__setbuf_357) (__FILE_58 * __restrict ____stream_352, char * __restrict ____buf_354);// L332 -extern int (__setvbuf_364) (__FILE_58 * __restrict ____stream_359, char * __restrict ____buf_361, int ____modes_362, __size_t_1 ____n_363);// L336:L337 -extern void (__setbuffer_369) (__FILE_58 * __restrict ____stream_365, char * __restrict ____buf_367, __size_t_1 ____size_368);// L343:L344 -extern void (__setlinebuf_373) (__FILE_58 * (____stream_371));// L347 -extern int (__fprintf_378) (__FILE_58 * __restrict ____stream_375, const char * __restrict ____format_377, ... );// L356:L357 -extern int (__fprintf_380) (__FILE_58 * __restrict ____stream_375, const char * __restrict ____format_377, ... );// L356:L357 -extern int (__printf_383) (const char * __restrict ____format_382, ... );// L362 -extern int (__sprintf_386) (char * __restrict ____s_384, const char * __restrict ____format_385, ... );// L364:L365 -extern int (__vfprintf_392) (__FILE_58 * __restrict ____s_387, const char * __restrict ____format_389, ____gnuc_va_list_82 ____arg_390);// L371:L372 -extern int (__vprintf_399) (const char * __restrict ____format_396, ____gnuc_va_list_82 ____arg_397);// L377 -extern int (__vsprintf_405) (char * __restrict ____s_401, const char * __restrict ____format_402, ____gnuc_va_list_82 ____arg_403);// L379:L380 -extern int (__snprintf_409) (char * __restrict ____s_406, __size_t_1 ____maxlen_407, const char * __restrict ____format_408, ... );// L386:L388 -extern int (__vsnprintf_415) (char * __restrict ____s_410, __size_t_1 ____maxlen_411, const char * __restrict ____format_412, ____gnuc_va_list_82 ____arg_413);// L390:L392 -extern int (__vdprintf_420) (int ____fd_416, const char * __restrict ____fmt_417, ____gnuc_va_list_82 ____arg_418);// L412:L414 -extern int (__dprintf_424) (int ____fd_422, const char * __restrict ____fmt_423, ... );// L415:L416 -extern int (__fscanf_428) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 -extern int (__fscanf_430) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 -extern int (__fscanf_432) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 -extern int (__fscanf_434) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 -extern int (__scanf_437) (const char * __restrict ____format_436, ... );// L431 -extern int (__scanf_438) (const char * __restrict ____format_436, ... );// L431 -extern int (__sscanf_441) (const char * __restrict ____s_439, const char * __restrict ____format_440, ... );// L433:L434 - - - - - - - -extern int (__vfscanf_468) (__FILE_58 * __restrict ____s_463, const char * __restrict ____format_465, ____gnuc_va_list_82 ____arg_466);// L471:L473 -extern int (__vfscanf_472) (__FILE_58 * __restrict ____s_463, const char * __restrict ____format_465, ____gnuc_va_list_82 ____arg_466);// L471:L473 -extern int (__vscanf_479) (const char * __restrict ____format_476, ____gnuc_va_list_82 ____arg_477);// L479:L480 -extern int (__vscanf_481) (const char * __restrict ____format_476, ____gnuc_va_list_82 ____arg_477);// L479:L480 -extern int (__vsscanf_487) (const char * __restrict ____s_483, const char * __restrict ____format_484, ____gnuc_va_list_82 ____arg_485);// L483:L485 - - - - - -extern int (__fgetc_520) (__FILE_58 * (____stream_518));// L531 -extern int (__getc_523) (__FILE_58 * (____stream_521));// L532 -extern int (__getchar_524) (void );// L538 -extern int (__getc_unlocked_527) (__FILE_58 * (____stream_525));// L550 -extern int (__getchar_unlocked_529) (void );// L551 -extern int (__fgetc_unlocked_532) (__FILE_58 * (____stream_530));// L561 -extern int (__fputc_537) (int ____c_534, __FILE_58 * (____stream_535));// L573 -extern int (__fputc_539) (int ____c_534, __FILE_58 * (____stream_535));// L573 -extern int (__putc_544) (int ____c_541, __FILE_58 * (____stream_542));// L574 -extern int (__putchar_546) (int ____c_545);// L580 -extern int (__fputc_unlocked_550) (int ____c_547, __FILE_58 * (____stream_548));// L594 -extern int (__putc_unlocked_555) (int ____c_552, __FILE_58 * (____stream_553));// L602 -extern int (__putchar_unlocked_558) (int ____c_557);// L603 -extern int (__getw_561) (__FILE_58 * (____stream_559));// L610 -extern int (__putw_566) (int ____w_563, __FILE_58 * (____stream_564));// L613 -extern char * ((__fgets_572) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 -extern char * ((__fgets_574) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 -extern char * ((__fgets_576) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 -extern char * ((__fgets_578) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 -extern ____ssize_t_49 (____getdelim_585) (char * (* __restrict ____lineptr_580), __size_t_1 * __restrict ____n_581, int ____delimiter_582, __FILE_58 * __restrict ____stream_583);// L665:L667 -extern ____ssize_t_49 (____getdelim_587) (char * (* __restrict ____lineptr_580), __size_t_1 * __restrict ____n_581, int ____delimiter_582, __FILE_58 * __restrict ____stream_583);// L665:L667 -extern ____ssize_t_49 (__getdelim_594) (char * (* __restrict ____lineptr_589), __size_t_1 * __restrict ____n_590, int ____delimiter_591, __FILE_58 * __restrict ____stream_592);// L668:L670 -extern ____ssize_t_49 (__getdelim_596) (char * (* __restrict ____lineptr_589), __size_t_1 * __restrict ____n_590, int ____delimiter_591, __FILE_58 * __restrict ____stream_592);// L668:L670 -extern ____ssize_t_49 (__getline_602) (char * (* __restrict ____lineptr_598), __size_t_1 * __restrict ____n_599, __FILE_58 * __restrict ____stream_600);// L678:L680 -extern ____ssize_t_49 (__getline_604) (char * (* __restrict ____lineptr_598), __size_t_1 * __restrict ____n_599, __FILE_58 * __restrict ____stream_600);// L678:L680 -extern int (__fputs_609) (const char * __restrict ____s_606, __FILE_58 * __restrict ____stream_607);// L689 -extern int (__fputs_611) (const char * __restrict ____s_606, __FILE_58 * __restrict ____stream_607);// L689 -extern int (__puts_614) (const char * (____s_613));// L695 -extern int (__ungetc_618) (int ____c_615, __FILE_58 * (____stream_616));// L702 -extern int (__fseek_654) (__FILE_58 * (____stream_650), long int ____off_652, int ____whence_653);// L749 -extern int (__fseek_656) (__FILE_58 * (____stream_650), long int ____off_652, int ____whence_653);// L749 -extern long int (__ftell_660) (__FILE_58 * (____stream_658));// L754 -extern long int (__ftell_662) (__FILE_58 * (____stream_658));// L754 -extern void (__rewind_666) (__FILE_58 * (____stream_664));// L759 -extern int (__fseeko_671) (__FILE_58 * (____stream_667), ____off_t_23 ____off_669, int ____whence_670);// L773 -extern int (__fseeko_679) (__FILE_58 * (____stream_675), ____off64_t_24 ____off_677, int ____whence_678);// L781:L783 -extern ____off_t_23 (__ftello_683) (__FILE_58 * (____stream_673));// L778 -extern ____off_t_23 (__ftello_685) (__FILE_58 * (____stream_673));// L778 -extern int (__fgetpos_693) (__FILE_58 * __restrict ____stream_689, __fpos_t_253 * __restrict ____pos_691);// L798 -extern ____off64_t_24 (__ftello_687) (__FILE_58 * (____stream_681));// L784 -extern int (__fgetpos_705) (__FILE_58 * __restrict ____stream_701, __fpos_t_255 * __restrict ____pos_703);// L806:L807 -extern int (__fsetpos_713) (__FILE_58 * (____stream_697), const __fpos_t_253 * (____pos_699));// L803 -extern int (__fsetpos_717) (__FILE_58 * (____stream_709), const __fpos_t_255 * (____pos_711));// L808:L809 -extern void (__clearerr_723) (__FILE_58 * (____stream_721));// L826 -extern int (__feof_726) (__FILE_58 * (____stream_724));// L828 -extern int (__feof_728) (__FILE_58 * (____stream_724));// L828 -extern int (__ferror_732) (__FILE_58 * (____stream_730));// L830 -extern int (__ferror_734) (__FILE_58 * (____stream_730));// L830 -extern void (__clearerr_unlocked_738) (__FILE_58 * (____stream_736));// L835 -extern int (__feof_unlocked_742) (__FILE_58 * (____stream_740));// L836 -extern int (__feof_unlocked_744) (__FILE_58 * (____stream_740));// L836 -extern int (__ferror_unlocked_748) (__FILE_58 * (____stream_746));// L837 -extern int (__ferror_unlocked_750) (__FILE_58 * (____stream_746));// L837 -extern void (__perror_753) (const char * (____s_752));// L846 -extern void (__perror_754) (const char * (____s_752));// L846 -extern int __sys_nerr_755;// L26 - -extern int (__fileno_761) (__FILE_58 * (____stream_757));// L858 -extern int (__fileno_759) (__FILE_58 * (____stream_757));// L858 -extern int (__fileno_unlocked_767) (__FILE_58 * (____stream_763));// L863 -extern int (__fileno_unlocked_765) (__FILE_58 * (____stream_763));// L863 -extern __FILE_58 * ((__popen_771) (const char * (____command_769), const char * (____modes_770)));// L872 -extern __FILE_58 * ((__popen_773) (const char * (____command_769), const char * (____modes_770)));// L872 -extern int (__pclose_777) (__FILE_58 * (____stream_775));// L878 -extern char * ((__ctermid_780) (char * (____s_779)));// L884 -extern void (__flockfile_783) (__FILE_58 * (____stream_781));// L912 -extern int (__ftrylockfile_787) (__FILE_58 * (____stream_785));// L916 -extern int (__ftrylockfile_789) (__FILE_58 * (____stream_785));// L916 -extern void (__funlockfile_793) (__FILE_58 * (____stream_791));// L919 +extern struct ___IO_FILE_99 * (__stdin_291);// L168 +extern struct ___IO_FILE_124 * (__stdin_292);// L168 +extern struct ___IO_FILE_99 * (__stdout_294);// L169 +extern struct ___IO_FILE_124 * (__stdout_295);// L169 +extern struct ___IO_FILE_99 * (__stderr_297);// L170 +extern struct ___IO_FILE_124 * (__stderr_298);// L170 +extern int (__remove_301) (const char * (____filename_300));// L178 +extern int (__rename_304) (const char * (____old_302), const char * (____new_303));// L180 +extern int (__renameat_309) (int ____oldfd_305, const char * (____old_306), int ____newfd_307, const char * (____new_308));// L185:L186 +extern __FILE_59 * ((__tmpfile_310) (void ));// L195 +extern __FILE_59 * ((__tmpfile_316) (void ));// L198 +extern __FILE_59 * ((__tmpfile_314) (void ));// L195 +extern __FILE_59 * ((__tmpfile_312) (void ));// L198 +extern char * ((__tmpnam_319) (char * (____s_318)));// L209 +extern char * ((__tmpnam_320) (char * (____s_318)));// L209 +extern char * ((__tmpnam_r_322) (char * (____s_321)));// L215 +extern char * ((__tmpnam_r_323) (char * (____s_321)));// L215 +extern char * ((__tempnam_326) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 +extern char * ((__tempnam_327) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 +extern int (__fclose_330) (__FILE_59 * (____stream_328));// L237 +extern int (__fclose_332) (__FILE_59 * (____stream_328));// L237 +extern int (__fflush_336) (__FILE_59 * (____stream_334));// L242 +extern int (__fflush_unlocked_340) (__FILE_59 * (____stream_338));// L252 +extern __FILE_59 * ((__fopen_344) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 +extern __FILE_59 * ((__fopen_346) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 +extern __FILE_59 * ((__fopen_354) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 +extern __FILE_59 * ((__fopen_356) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 +extern __FILE_59 * ((__freopen_362) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 +extern __FILE_59 * ((__freopen_368) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 +extern __FILE_59 * ((__freopen_366) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 +extern __FILE_59 * ((__freopen_364) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 +extern __FILE_59 * ((__fdopen_372) (int ____fd_370, const char * (____modes_371)));// L306 +extern __FILE_59 * ((__fdopen_374) (int ____fd_370, const char * (____modes_371)));// L306 +extern __FILE_59 * ((__fmemopen_379) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 +extern __FILE_59 * ((__fmemopen_381) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 +extern __FILE_59 * ((__open_memstream_385) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 +extern __FILE_59 * ((__open_memstream_387) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 +extern void (__setbuf_392) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 +extern void (__setbuf_394) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 +extern int (__setvbuf_401) (__FILE_59 * __restrict ____stream_396, char * __restrict ____buf_398, int ____modes_399, __size_t_1 ____n_400);// L336:L337 +extern void (__setbuffer_407) (__FILE_59 * __restrict ____stream_403, char * __restrict ____buf_405, __size_t_1 ____size_406);// L343:L344 +extern void (__setlinebuf_411) (__FILE_59 * (____stream_409));// L347 +extern int (__fprintf_416) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 +extern int (__fprintf_418) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 +extern int (__printf_421) (const char * __restrict ____format_420, ... );// L362 +extern int (__sprintf_424) (char * __restrict ____s_422, const char * __restrict ____format_423, ... );// L364:L365 +extern int (__vfprintf_430) (__FILE_59 * __restrict ____s_425, const char * __restrict ____format_427, ____gnuc_va_list_86 ____arg_428);// L371:L372 +extern int (__vprintf_437) (const char * __restrict ____format_434, ____gnuc_va_list_86 ____arg_435);// L377 +extern int (__vsprintf_443) (char * __restrict ____s_439, const char * __restrict ____format_440, ____gnuc_va_list_86 ____arg_441);// L379:L380 +extern int (__snprintf_448) (char * __restrict ____s_445, __size_t_1 ____maxlen_446, const char * __restrict ____format_447, ... );// L386:L388 +extern int (__vsnprintf_454) (char * __restrict ____s_449, __size_t_1 ____maxlen_450, const char * __restrict ____format_451, ____gnuc_va_list_86 ____arg_452);// L390:L392 +extern int (__vdprintf_460) (int ____fd_456, const char * __restrict ____fmt_457, ____gnuc_va_list_86 ____arg_458);// L412:L414 +extern int (__dprintf_464) (int ____fd_462, const char * __restrict ____fmt_463, ... );// L415:L416 +extern int (__fscanf_468) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_470) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_472) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_474) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__scanf_477) (const char * __restrict ____format_476, ... );// L431 +extern int (__scanf_478) (const char * __restrict ____format_476, ... );// L431 +extern int (__sscanf_481) (const char * __restrict ____s_479, const char * __restrict ____format_480, ... );// L433:L434 + + + + + + + +extern int (__vfscanf_509) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 +extern int (__vfscanf_513) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 +extern int (__vscanf_520) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 +extern int (__vscanf_522) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 +extern int (__vsscanf_528) (const char * __restrict ____s_524, const char * __restrict ____format_525, ____gnuc_va_list_86 ____arg_526);// L483:L485 + + + + + +extern int (__fgetc_563) (__FILE_59 * (____stream_561));// L531 +extern int (__getc_567) (__FILE_59 * (____stream_565));// L532 +extern int (__getchar_569) (void );// L538 +extern int (__getc_unlocked_572) (__FILE_59 * (____stream_570));// L550 +extern int (__getchar_unlocked_574) (void );// L551 +extern int (__fgetc_unlocked_577) (__FILE_59 * (____stream_575));// L561 +extern int (__fputc_582) (int ____c_579, __FILE_59 * (____stream_580));// L573 +extern int (__fputc_584) (int ____c_579, __FILE_59 * (____stream_580));// L573 +extern int (__putc_589) (int ____c_586, __FILE_59 * (____stream_587));// L574 +extern int (__putchar_592) (int ____c_591);// L580 +extern int (__fputc_unlocked_596) (int ____c_593, __FILE_59 * (____stream_594));// L594 +extern int (__putc_unlocked_601) (int ____c_598, __FILE_59 * (____stream_599));// L602 +extern int (__putchar_unlocked_604) (int ____c_603);// L603 +extern int (__getw_607) (__FILE_59 * (____stream_605));// L610 +extern int (__putw_612) (int ____w_609, __FILE_59 * (____stream_610));// L613 +extern char * ((__fgets_618) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_620) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_622) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_624) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern ____ssize_t_49 (____getdelim_631) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 +extern ____ssize_t_49 (____getdelim_635) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 +extern ____ssize_t_49 (__getdelim_644) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 +extern ____ssize_t_49 (__getdelim_648) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 +extern ____ssize_t_49 (__getline_656) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 +extern ____ssize_t_49 (__getline_660) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 +extern int (__fputs_667) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 +extern int (__fputs_669) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 +extern int (__puts_672) (const char * (____s_671));// L695 +extern int (__ungetc_676) (int ____c_673, __FILE_59 * (____stream_674));// L702 +extern int (__fseek_714) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 +extern int (__fseek_716) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 +extern long int (__ftell_720) (__FILE_59 * (____stream_718));// L754 +extern long int (__ftell_722) (__FILE_59 * (____stream_718));// L754 +extern void (__rewind_726) (__FILE_59 * (____stream_724));// L759 +extern int (__fseeko_733) (__FILE_59 * (____stream_728), ____off_t_23 ____off_730, int ____whence_732);// L773 +extern int (__fseeko_744) (__FILE_59 * (____stream_739), ____off64_t_24 ____off_741, int ____whence_743);// L781:L783 +extern ____off_t_23 (__ftello_758) (__FILE_59 * (____stream_737));// L778 +extern ____off_t_23 (__ftello_750) (__FILE_59 * (____stream_737));// L778 +extern int (__fgetpos_766) (__FILE_59 * __restrict ____stream_762, __fpos_t_287 * __restrict ____pos_764);// L798 +extern ____off64_t_24 (__ftello_754) (__FILE_59 * (____stream_748));// L784 +extern int (__fgetpos_778) (__FILE_59 * __restrict ____stream_774, __fpos_t_289 * __restrict ____pos_776);// L806:L807 +extern int (__fsetpos_786) (__FILE_59 * (____stream_770), const __fpos_t_287 * (____pos_772));// L803 +extern int (__fsetpos_790) (__FILE_59 * (____stream_782), const __fpos_t_289 * (____pos_784));// L808:L809 +extern void (__clearerr_796) (__FILE_59 * (____stream_794));// L826 +extern int (__feof_800) (__FILE_59 * (____stream_798));// L828 +extern int (__feof_802) (__FILE_59 * (____stream_798));// L828 +extern int (__ferror_806) (__FILE_59 * (____stream_804));// L830 +extern int (__ferror_808) (__FILE_59 * (____stream_804));// L830 +extern void (__clearerr_unlocked_812) (__FILE_59 * (____stream_810));// L835 +extern int (__feof_unlocked_816) (__FILE_59 * (____stream_814));// L836 +extern int (__feof_unlocked_818) (__FILE_59 * (____stream_814));// L836 +extern int (__ferror_unlocked_822) (__FILE_59 * (____stream_820));// L837 +extern int (__ferror_unlocked_824) (__FILE_59 * (____stream_820));// L837 +extern void (__perror_827) (const char * (____s_826));// L846 +extern void (__perror_828) (const char * (____s_826));// L846 +extern int __sys_nerr_829;// L26 + +extern int (__fileno_835) (__FILE_59 * (____stream_831));// L858 +extern int (__fileno_833) (__FILE_59 * (____stream_831));// L858 +extern int (__fileno_unlocked_841) (__FILE_59 * (____stream_837));// L863 +extern int (__fileno_unlocked_839) (__FILE_59 * (____stream_837));// L863 +extern __FILE_59 * ((__popen_845) (const char * (____command_843), const char * (____modes_844)));// L872 +extern __FILE_59 * ((__popen_847) (const char * (____command_843), const char * (____modes_844)));// L872 +extern int (__pclose_851) (__FILE_59 * (____stream_849));// L878 +extern char * ((__ctermid_854) (char * (____s_853)));// L884 +extern void (__flockfile_857) (__FILE_59 * (____stream_855));// L912 +extern int (__ftrylockfile_861) (__FILE_59 * (____stream_859));// L916 +extern int (__ftrylockfile_863) (__FILE_59 * (____stream_859));// L916 +extern void (__funlockfile_867) (__FILE_59 * (____stream_865));// L919 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ @@ -1182,77 +1320,93 @@ extern void (__funlockfile_793) (__FILE_58 * (____stream_791));// L919 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____sprintf_chk_825) (char * __restrict ____s_821, int ____flag_822, __size_t_1 ____slen_823, const char * __restrict ____format_824, ... );// L23:L24 -extern int (____vsprintf_chk_832) (char * __restrict ____s_826, int ____flag_827, __size_t_1 ____slen_828, const char * __restrict ____format_829, ____gnuc_va_list_82 ____ap_830);// L25:L27 +extern int (____sprintf_chk_899) (char * __restrict ____s_895, int ____flag_896, __size_t_1 ____slen_897, const char * __restrict ____format_898, ... );// L23:L24 +extern int (____vsprintf_chk_906) (char * __restrict ____s_900, int ____flag_901, __size_t_1 ____slen_902, const char * __restrict ____format_903, ____gnuc_va_list_86 ____ap_904);// L25:L27 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____snprintf_chk_846) (char * __restrict ____s_841, __size_t_1 ____n_842, int ____flag_843, __size_t_1 ____slen_844, const char * __restrict ____format_845, ... );// L52:L54 -extern int (____vsnprintf_chk_854) (char * __restrict ____s_847, __size_t_1 ____n_848, int ____flag_849, __size_t_1 ____slen_850, const char * __restrict ____format_851, ____gnuc_va_list_82 ____ap_852);// L55:L57 +extern int (____snprintf_chk_920) (char * __restrict ____s_915, __size_t_1 ____n_916, int ____flag_917, __size_t_1 ____slen_918, const char * __restrict ____format_919, ... );// L52:L54 +extern int (____vsnprintf_chk_928) (char * __restrict ____s_921, __size_t_1 ____n_922, int ____flag_923, __size_t_1 ____slen_924, const char * __restrict ____format_925, ____gnuc_va_list_86 ____ap_926);// L55:L57 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____fprintf_chk_869) (__FILE_58 * __restrict ____stream_865, int ____flag_867, const char * __restrict ____format_868, ... );// L85:L86 -extern int (____printf_chk_873) (int ____flag_871, const char * __restrict ____format_872, ... );// L87 -extern int (____vfprintf_chk_880) (__FILE_58 * __restrict ____stream_874, int ____flag_876, const char * __restrict ____format_877, ____gnuc_va_list_82 ____ap_878);// L88:L89 -extern int (____vprintf_chk_888) (int ____flag_884, const char * __restrict ____format_885, ____gnuc_va_list_82 ____ap_886);// L90:L91 +extern int (____fprintf_chk_943) (__FILE_59 * __restrict ____stream_939, int ____flag_941, const char * __restrict ____format_942, ... );// L85:L86 +extern int (____printf_chk_947) (int ____flag_945, const char * __restrict ____format_946, ... );// L87 +extern int (____vfprintf_chk_954) (__FILE_59 * __restrict ____stream_948, int ____flag_950, const char * __restrict ____format_951, ____gnuc_va_list_86 ____ap_952);// L88:L89 +extern int (____vprintf_chk_962) (int ____flag_958, const char * __restrict ____format_959, ____gnuc_va_list_86 ____ap_960);// L90:L91 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____dprintf_chk_910) (int ____fd_907, int ____flag_908, const char * __restrict ____fmt_909, ... );// L131:L132 -extern int (____vdprintf_chk_916) (int ____fd_911, int ____flag_912, const char * __restrict ____fmt_913, ____gnuc_va_list_82 ____arg_914);// L133:L135 +extern int (____dprintf_chk_984) (int ____fd_981, int ____flag_982, const char * __restrict ____fmt_983, ... );// L131:L132 +extern int (____vdprintf_chk_990) (int ____fd_985, int ____flag_986, const char * __restrict ____fmt_987, ____gnuc_va_list_86 ____arg_988);// L133:L135 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern char * ((____fgets_chk_930) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 -extern char * ((____fgets_chk_932) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 -extern char * ((____fgets_chk_934) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 -extern char * ((____fgets_alias_940) (char * __restrict ____s_936, int ____n_937, __FILE_58 * __restrict ____stream_938));// L243:L245 -extern char * ((____fgets_chk_warn_947) (char * __restrict ____s_942, __size_t_1 ____size_943, int ____n_944, __FILE_58 * __restrict ____stream_945));// L246:L250 +extern char * ((____fgets_chk_1004) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_chk_1006) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_chk_1008) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_alias_1014) (char * __restrict ____s_1010, int ____n_1011, __FILE_59 * __restrict ____stream_1012));// L243:L245 +extern char * ((____fgets_chk_warn_1021) (char * __restrict ____s_1016, __size_t_1 ____size_1017, int ____n_1018, __FILE_59 * __restrict ____stream_1019));// L246:L250 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -void (__apr_rmm_init_1019) (char * (__rmm_lock_1018)) { +void (__apr_rmm_init_1093) (char * (__rmm_lock_1092)) { -if (__static_condition_default_1021) { +if (__static_condition_default_1096) { { { - __printf_383 ("%s\n", __rmm_lock_1018 ) ; // L5 + __printf_421 ("%s\n", __rmm_lock_1092 ) ; // L5 } } } } -void (__apr_rmm_init_1020) (char * (__rmm_lock_1018)) { +void (__apr_rmm_init_1094) (char * (__rmm_lock_1092)) { -if (__static_condition_default_1022) { +if (__static_condition_default_1097) { { { - __printf_383 ("%s\n", __rmm_lock_1018 ) ; // L5 + __printf_421 ("%s\n", __rmm_lock_1092 ) ; // L5 } } } } -void (__util_ldap_cache_init_1024) () { +void (__apr_rmm_init_1095) (char * (__rmm_lock_1092)) { + +if (__static_condition_default_1098) { { -if (__static_condition_default_1025) { +{ + + + +__static_type_error("type error") ; // L5 +} +} + + +} +} +void (__util_ldap_cache_init_1100) () { + +{ +if (__static_condition_default_1101) { { { -char * (__rmm_lock_1023);// L11 +char * (__rmm_lock_1099);// L11 } } @@ -1260,20 +1414,23 @@ char * (__rmm_lock_1023);// L11 } -if (__static_condition_default_1026) { +if (__static_condition_default_1102) { { { -char * (__rmm_lock_1023);// L11 +char * (__rmm_lock_1099);// L11 -if (__static_condition_default_1027) { - __apr_rmm_init_1019 ( __rmm_lock_1023 ) ; // L14 +if (__static_condition_default_1103) { + __apr_rmm_init_1093 ( __rmm_lock_1099 ) ; // L14 +} +if (__static_condition_default_1104) { + __apr_rmm_init_1094 ( __rmm_lock_1099 ) ; // L14 } -if (__static_condition_default_1028) { - __apr_rmm_init_1020 ( __rmm_lock_1023 ) ; // L14 +if (__static_condition_default_1105) { + __apr_rmm_init_1095 ( __rmm_lock_1099 ) ; // L14 } } } @@ -1282,9 +1439,9 @@ if (__static_condition_default_1028) { } }} -int (__main_1029) (void ) { +int (__main_1106) (void ) { -if (__static_condition_default_1031) { +if (__static_condition_default_1108) { { { @@ -1298,16 +1455,16 @@ return 0 ;// L24 } } -int (__main_1030) (void ) { +int (__main_1107) (void ) { -if (__static_condition_default_1032) { +if (__static_condition_default_1109) { { { - __util_ldap_cache_init_1024 ( ) ; // L22 + __util_ldap_cache_init_1100 ( ) ; // L22 return 0 ;// L24 } } diff --git a/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.clangres b/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.clangres index 4e829d65..c9ebc321 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.clangres @@ -1,7 +1,10 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c:1273:2: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] - __apr_rmm_init_1019 ( __rmm_lock_1023 ) ; // L14 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c:1427:2: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] + __apr_rmm_init_1093 ( __rmm_lock_1099 ) ; // L14 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c:1276:2: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] - __apr_rmm_init_1020 ( __rmm_lock_1023 ) ; // L14 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c:1430:2: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] + __apr_rmm_init_1094 ( __rmm_lock_1099 ) ; // L14 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -2 warnings generated. +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c:1433:2: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] + __apr_rmm_init_1095 ( __rmm_lock_1099 ) ; // L14 + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +3 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.inferres b/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.inferres new file mode 100644 index 00000000..79f369a8 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.inferres @@ -0,0 +1,14 @@ + +APACHE/1b48bb3c1af.c:14: error: Uninitialized Value + `rmm_lock` is read without initialization. + 12. + 13. #ifdef APR_HAS_SHARED_MEMORY + 14. apr_rmm_init(rmm_lock); // ERROR: rmm_lock uninitialized + ^ + 15. #endif + 16. } + + +Found 1 issue + Issue Type(ISSUED_TYPE_ID): # + Uninitialized Value(PULSE_UNINITIALIZED_VALUE): 1 diff --git a/fonda/cpp_testsuite/varBugs/APACHE/1f46088b38d.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/1f46088b38d.desugared.c index cf671e20..16ccb79b 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/1f46088b38d.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/1f46088b38d.desugared.c @@ -7,211 +7,281 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_394; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_501; -extern const bool __static_condition_default_586; -extern const bool __static_condition_default_906; -extern const bool __static_condition_default_680; -extern const bool __static_condition_default_772; -extern const bool __static_condition_default_400; -extern const bool __static_condition_default_655; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_833; -extern const bool __static_condition_default_696; -extern const bool __static_condition_default_641; -extern const bool __static_condition_default_603; -extern const bool __static_condition_default_435; -extern const bool __static_condition_default_161; -extern const bool __static_condition_default_577; -extern const bool __static_condition_default_820; -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_1006; -extern const bool __static_condition_default_556; -extern const bool __static_condition_default_778; -extern const bool __static_condition_default_310; -extern const bool __static_condition_default_718; -extern const bool __static_condition_default_330; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_801; extern const bool __static_condition_default_223; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_429; -extern const bool __static_condition_default_695; -extern const bool __static_condition_default_162; -extern const bool __static_condition_default_421; -extern const bool __static_condition_default_474; -extern const bool __static_condition_default_508; -extern const bool __static_condition_default_480; -extern const bool __static_condition_default_672; -extern const bool __static_condition_default_739; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_533; -extern const bool __static_condition_default_790; -extern const bool __static_condition_default_118; -extern const bool __static_condition_default_308; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_905; +extern const bool __static_condition_default_419; +extern const bool __static_condition_default_431; extern const bool __static_condition_default_235; -extern const bool __static_condition_default_254; -extern const bool __static_condition_default_716; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_612; -extern const bool __static_condition_default_794; -extern const bool __static_condition_default_482; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_381; -extern const bool __static_condition_default_517; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_225; -extern const bool __static_condition_default_318; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_904; +extern const bool __static_condition_default_76; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_1102; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_1036; extern const bool __static_condition_default_768; +extern const bool __static_condition_default_907; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_701; extern const bool __static_condition_default_813; -extern const bool __static_condition_default_351; -extern const bool __static_condition_default_567; -extern const bool __static_condition_default_528; -extern const bool __static_condition_default_889; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_234; -extern const bool __static_condition_default_809; +extern const bool __static_condition_default_536; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_347; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_380; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_1098; +extern const bool __static_condition_default_677; +extern const bool __static_condition_default_613; +extern const bool __static_condition_default_488; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_1104; +extern const bool __static_condition_default_634; extern const bool __static_condition_default_684; -extern const bool __static_condition_default_749; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_893; -extern const bool __static_condition_default_431; -extern const bool __static_condition_default_328; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_326; -extern const bool __static_condition_default_451; -extern const bool __static_condition_default_500; -extern const bool __static_condition_default_976; -extern const bool __static_condition_default_459; -extern const bool __static_condition_default_935; -extern const bool __static_condition_default_962; -extern const bool __static_condition_default_358; -extern const bool __static_condition_default_230; -extern const bool __static_condition_default_733; -extern const bool __static_condition_default_784; -extern const bool __static_condition_default_694; -extern const bool __static_condition_default_236; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_446; -extern const bool __static_condition_default_502; +extern const bool __static_condition_default_550; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_779; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_455; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_1097; extern const bool __static_condition_default_663; -extern const bool __static_condition_default_720; -extern const bool __static_condition_default_343; -extern const bool __static_condition_default_610; -extern const bool __static_condition_default_374; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_640; -extern const bool __static_condition_default_648; -extern const bool __static_condition_default_507; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_304; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_551; -extern const bool __static_condition_default_954; -extern const bool __static_condition_default_968; -extern const bool __static_condition_default_931; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_540; -extern const bool __static_condition_default_232; -extern const bool __static_condition_default_562; -extern const bool __static_condition_default_729; -extern const bool __static_condition_default_762; -extern const bool __static_condition_default_448; -extern const bool __static_condition_default_626; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_1021; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_294; -extern const bool __static_condition_default_595; -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_457; -extern const bool __static_condition_default_227; -extern const bool __static_condition_default_449; -extern const bool __static_condition_default_332; -extern const bool __static_condition_default_870; -extern const bool __static_condition_default_349; -extern const bool __static_condition_default_605; -extern const bool __static_condition_default_855; -extern const bool __static_condition_default_336; -extern const bool __static_condition_default_276; -extern const bool __static_condition_default_470; -extern const bool __static_condition_default_1016; -extern const bool __static_condition_default_917; -extern const bool __static_condition_default_941; -extern const bool __static_condition_default_495; -extern const bool __static_condition_default_627; -extern const bool __static_condition_default_961; -extern const bool __static_condition_default_454; -extern const bool __static_condition_default_983; -extern const bool __static_condition_default_624; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_706; -extern const bool __static_condition_default_924; -extern const bool __static_condition_default_881; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_320; -extern const bool __static_condition_default_453; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_583; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_365; +extern const bool __static_condition_default_894; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_367; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_382; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_955; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_761; +extern const bool __static_condition_default_84; extern const bool __static_condition_default_494; -extern const bool __static_condition_default_999; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_992; -extern const bool __static_condition_default_338; -extern const bool __static_condition_default_471; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_636; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_721; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_1103; +extern const bool __static_condition_default_311; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_769; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_559; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_891; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_963; +extern const bool __static_condition_default_290; +extern const bool __static_condition_default_544; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_759; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_568; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_834; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_670; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_846; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_337; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_702; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_753; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_659; extern const bool __static_condition_default_864; -extern const bool __static_condition_default_984; -extern const bool __static_condition_default_804; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_743; -extern const bool __static_condition_default_1017; -extern const bool __static_condition_default_639; -extern const bool __static_condition_default_300; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_575; +extern const bool __static_condition_default_842; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_1096; +extern const bool __static_condition_default_204; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_747; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_875; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_538; extern const bool __static_condition_default_625; -extern const bool __static_condition_default_953; -extern const bool __static_condition_default_977; -extern const bool __static_condition_default_165; -extern const bool __static_condition_default_74; -extern const bool __static_condition_default_579; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_714; -extern const bool __static_condition_default_642; -extern const bool __static_condition_default_933; -extern const bool __static_condition_default_1024; -extern const bool __static_condition_default_370; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_688; -extern const bool __static_condition_default_969; -extern const bool __static_condition_default_379; -extern const bool __static_condition_default_948; -extern const bool __static_condition_default_393; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_882; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_1101; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_386; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_789; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_187; +extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_521; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_512; +extern const bool __static_condition_default_489; +extern const bool __static_condition_default_1009; extern const bool __static_condition_default_497; -extern const bool __static_condition_default_719; -extern const bool __static_condition_default_766; -extern const bool __static_condition_default_898; -extern const bool __static_condition_default_356; +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_929; +extern const bool __static_condition_default_388; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_549; +extern const bool __static_condition_default_1100; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_619; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_333; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_791; extern const bool __static_condition_default_475; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_496; -extern const bool __static_condition_default_256; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_774; -extern const bool __static_condition_default_226; -extern const bool __static_condition_default_588; -extern const bool __static_condition_default_707; -extern const bool __static_condition_default_798; -extern const bool __static_condition_default_538; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -263,430 +333,504 @@ __static_renaming("____ssize_t_49", "__ssize_t"); __static_renaming("____syscall_slong_t_50", "__syscall_slong_t"); __static_renaming("____syscall_ulong_t_51", "__syscall_ulong_t"); __static_renaming("____loff_t_52", "__loff_t"); -__static_renaming("____qaddr_t_53", "__qaddr_t"); -__static_renaming("____caddr_t_54", "__caddr_t"); -__static_renaming("____intptr_t_55", "__intptr_t"); -__static_renaming("____socklen_t_56", "__socklen_t"); -__static_renaming("__FILE_58", "FILE"); -__static_renaming("____FILE_59", "__FILE"); -__static_renaming("____mbstate_t_68", "__mbstate_t"); -__static_renaming("___G_fpos_t_75", "_G_fpos_t"); -__static_renaming("___G_fpos64_t_81", "_G_fpos64_t"); -__static_renaming("____gnuc_va_list_82", "__gnuc_va_list"); -__static_renaming("___IO_lock_t_84", "_IO_lock_t"); -__static_renaming("___IO_FILE_163", "_IO_FILE"); -__static_renaming("___IO_FILE_164", "_IO_FILE"); -__static_renaming("___IO_2_1_stdin__167", "_IO_2_1_stdin_"); -__static_renaming("___IO_2_1_stdout__168", "_IO_2_1_stdout_"); -__static_renaming("___IO_2_1_stderr__169", "_IO_2_1_stderr_"); -__static_renaming("____io_read_fn_173", "__io_read_fn"); -__static_renaming("____io_write_fn_177", "__io_write_fn"); -__static_renaming("____io_seek_fn_181", "__io_seek_fn"); -__static_renaming("____io_close_fn_183", "__io_close_fn"); -__static_renaming("____underflow_184", "__underflow"); -__static_renaming("____underflow_185", "__underflow"); -__static_renaming("____uflow_186", "__uflow"); -__static_renaming("____uflow_187", "__uflow"); -__static_renaming("____overflow_188", "__overflow"); -__static_renaming("____overflow_189", "__overflow"); -__static_renaming("___IO_getc_193", "_IO_getc"); -__static_renaming("___IO_getc_194", "_IO_getc"); -__static_renaming("___IO_putc_199", "_IO_putc"); -__static_renaming("___IO_putc_200", "_IO_putc"); -__static_renaming("___IO_feof_204", "_IO_feof"); -__static_renaming("___IO_feof_205", "_IO_feof"); -__static_renaming("___IO_ferror_209", "_IO_ferror"); -__static_renaming("___IO_ferror_210", "_IO_ferror"); -__static_renaming("___IO_peekc_locked_214", "_IO_peekc_locked"); -__static_renaming("___IO_peekc_locked_215", "_IO_peekc_locked"); -__static_renaming("___IO_flockfile_216", "_IO_flockfile"); -__static_renaming("___IO_flockfile_217", "_IO_flockfile"); -__static_renaming("___IO_funlockfile_218", "_IO_funlockfile"); -__static_renaming("___IO_funlockfile_219", "_IO_funlockfile"); -__static_renaming("___IO_ftrylockfile_220", "_IO_ftrylockfile"); -__static_renaming("___IO_ftrylockfile_221", "_IO_ftrylockfile"); -__static_renaming("___IO_vfscanf_222", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_224", "_IO_vfscanf"); -__static_renaming("___IO_vfprintf_231", "_IO_vfprintf"); -__static_renaming("___IO_vfprintf_233", "_IO_vfprintf"); -__static_renaming("___IO_padn_238", "_IO_padn"); -__static_renaming("___IO_padn_239", "_IO_padn"); -__static_renaming("___IO_sgetn_240", "_IO_sgetn"); -__static_renaming("___IO_sgetn_241", "_IO_sgetn"); -__static_renaming("___IO_seekoff_242", "_IO_seekoff"); -__static_renaming("___IO_seekoff_243", "_IO_seekoff"); -__static_renaming("___IO_seekpos_244", "_IO_seekpos"); -__static_renaming("___IO_seekpos_245", "_IO_seekpos"); -__static_renaming("___IO_free_backup_area_246", "_IO_free_backup_area"); -__static_renaming("___IO_free_backup_area_247", "_IO_free_backup_area"); -__static_renaming("__va_list_248", "va_list"); -__static_renaming("__off_t_250", "off_t"); -__static_renaming("__off_t_251", "off_t"); -__static_renaming("__ssize_t_252", "ssize_t"); -__static_renaming("__fpos_t_253", "fpos_t"); -__static_renaming("__fpos_t_255", "fpos_t"); -__static_renaming("__stdin_257", "stdin"); -__static_renaming("__stdin_258", "stdin"); -__static_renaming("__stdout_259", "stdout"); -__static_renaming("__stdout_260", "stdout"); -__static_renaming("__stderr_261", "stderr"); -__static_renaming("__stderr_262", "stderr"); -__static_renaming("__remove_264", "remove"); -__static_renaming("__rename_267", "rename"); -__static_renaming("__renameat_272", "renameat"); -__static_renaming("__tmpfile_273", "tmpfile"); -__static_renaming("__tmpfile_275", "tmpfile"); -__static_renaming("__tmpfile_277", "tmpfile"); -__static_renaming("__tmpfile_279", "tmpfile"); -__static_renaming("__tmpnam_282", "tmpnam"); -__static_renaming("__tmpnam_283", "tmpnam"); -__static_renaming("__tmpnam_r_285", "tmpnam_r"); -__static_renaming("__tmpnam_r_286", "tmpnam_r"); -__static_renaming("__tempnam_289", "tempnam"); -__static_renaming("__tempnam_290", "tempnam"); -__static_renaming("__fclose_293", "fclose"); -__static_renaming("__fclose_295", "fclose"); -__static_renaming("__fflush_299", "fflush"); -__static_renaming("__fflush_unlocked_303", "fflush_unlocked"); -__static_renaming("__fopen_307", "fopen"); -__static_renaming("__fopen_309", "fopen"); -__static_renaming("__fopen_317", "fopen"); -__static_renaming("__fopen_319", "fopen"); -__static_renaming("__freopen_325", "freopen"); -__static_renaming("__freopen_327", "freopen"); -__static_renaming("__freopen_329", "freopen"); -__static_renaming("__freopen_331", "freopen"); -__static_renaming("__fdopen_335", "fdopen"); -__static_renaming("__fdopen_337", "fdopen"); -__static_renaming("__fmemopen_342", "fmemopen"); -__static_renaming("__fmemopen_344", "fmemopen"); -__static_renaming("__open_memstream_348", "open_memstream"); -__static_renaming("__open_memstream_350", "open_memstream"); -__static_renaming("__setbuf_355", "setbuf"); -__static_renaming("__setbuf_357", "setbuf"); -__static_renaming("__setvbuf_364", "setvbuf"); -__static_renaming("__setbuffer_369", "setbuffer"); -__static_renaming("__setlinebuf_373", "setlinebuf"); -__static_renaming("__fprintf_378", "fprintf"); -__static_renaming("__fprintf_380", "fprintf"); -__static_renaming("__printf_383", "printf"); -__static_renaming("__sprintf_386", "sprintf"); -__static_renaming("__vfprintf_392", "vfprintf"); -__static_renaming("__vprintf_399", "vprintf"); -__static_renaming("__vsprintf_405", "vsprintf"); -__static_renaming("__snprintf_409", "snprintf"); -__static_renaming("__vsnprintf_415", "vsnprintf"); -__static_renaming("__vdprintf_420", "vdprintf"); -__static_renaming("__dprintf_424", "dprintf"); -__static_renaming("__fscanf_428", "fscanf"); -__static_renaming("__fscanf_430", "fscanf"); -__static_renaming("__fscanf_432", "fscanf"); -__static_renaming("__fscanf_434", "fscanf"); -__static_renaming("__scanf_437", "scanf"); -__static_renaming("__scanf_438", "scanf"); -__static_renaming("__sscanf_441", "sscanf"); -__static_renaming("__vfscanf_468", "vfscanf"); -__static_renaming("__vfscanf_472", "vfscanf"); -__static_renaming("__vscanf_479", "vscanf"); -__static_renaming("__vscanf_481", "vscanf"); -__static_renaming("__vsscanf_487", "vsscanf"); -__static_renaming("__fgetc_520", "fgetc"); -__static_renaming("__getc_523", "getc"); -__static_renaming("__getchar_524", "getchar"); -__static_renaming("__getc_unlocked_527", "getc_unlocked"); -__static_renaming("__getchar_unlocked_529", "getchar_unlocked"); -__static_renaming("__fgetc_unlocked_532", "fgetc_unlocked"); -__static_renaming("__fputc_537", "fputc"); -__static_renaming("__fputc_539", "fputc"); -__static_renaming("__putc_544", "putc"); -__static_renaming("__putchar_546", "putchar"); -__static_renaming("__fputc_unlocked_550", "fputc_unlocked"); -__static_renaming("__putc_unlocked_555", "putc_unlocked"); -__static_renaming("__putchar_unlocked_558", "putchar_unlocked"); -__static_renaming("__getw_561", "getw"); -__static_renaming("__putw_566", "putw"); -__static_renaming("__fgets_572", "fgets"); -__static_renaming("__fgets_574", "fgets"); -__static_renaming("__fgets_576", "fgets"); -__static_renaming("__fgets_578", "fgets"); -__static_renaming("____getdelim_585", "__getdelim"); -__static_renaming("____getdelim_587", "__getdelim"); -__static_renaming("__getdelim_594", "getdelim"); -__static_renaming("__getdelim_596", "getdelim"); -__static_renaming("__getline_602", "getline"); -__static_renaming("__getline_604", "getline"); -__static_renaming("__fputs_609", "fputs"); -__static_renaming("__fputs_611", "fputs"); -__static_renaming("__puts_614", "puts"); -__static_renaming("__ungetc_618", "ungetc"); -__static_renaming("__fseek_654", "fseek"); -__static_renaming("__fseek_656", "fseek"); -__static_renaming("__ftell_660", "ftell"); -__static_renaming("__ftell_662", "ftell"); -__static_renaming("__rewind_666", "rewind"); -__static_renaming("__fseeko_671", "fseeko"); -__static_renaming("__fseeko_679", "fseeko"); -__static_renaming("__ftello_683", "ftello"); -__static_renaming("__ftello_685", "ftello"); -__static_renaming("__ftello_687", "ftello"); -__static_renaming("__fgetpos_693", "fgetpos"); -__static_renaming("__fgetpos_705", "fgetpos"); -__static_renaming("__fsetpos_713", "fsetpos"); -__static_renaming("__fsetpos_717", "fsetpos"); -__static_renaming("__clearerr_723", "clearerr"); -__static_renaming("__feof_726", "feof"); -__static_renaming("__feof_728", "feof"); -__static_renaming("__ferror_732", "ferror"); -__static_renaming("__ferror_734", "ferror"); -__static_renaming("__clearerr_unlocked_738", "clearerr_unlocked"); -__static_renaming("__feof_unlocked_742", "feof_unlocked"); -__static_renaming("__feof_unlocked_744", "feof_unlocked"); -__static_renaming("__ferror_unlocked_748", "ferror_unlocked"); -__static_renaming("__ferror_unlocked_750", "ferror_unlocked"); -__static_renaming("__perror_753", "perror"); -__static_renaming("__perror_754", "perror"); -__static_renaming("__sys_nerr_755", "sys_nerr"); -__static_renaming("__sys_errlist_756", "sys_errlist"); -__static_renaming("__fileno_759", "fileno"); -__static_renaming("__fileno_761", "fileno"); -__static_renaming("__fileno_unlocked_765", "fileno_unlocked"); -__static_renaming("__fileno_unlocked_767", "fileno_unlocked"); -__static_renaming("__popen_771", "popen"); -__static_renaming("__popen_773", "popen"); -__static_renaming("__pclose_777", "pclose"); -__static_renaming("__ctermid_780", "ctermid"); -__static_renaming("__flockfile_783", "flockfile"); -__static_renaming("__ftrylockfile_787", "ftrylockfile"); -__static_renaming("__ftrylockfile_789", "ftrylockfile"); -__static_renaming("__funlockfile_793", "funlockfile"); -__static_renaming("____sprintf_chk_825", "__sprintf_chk"); -__static_renaming("____vsprintf_chk_832", "__vsprintf_chk"); -__static_renaming("____snprintf_chk_846", "__snprintf_chk"); -__static_renaming("____vsnprintf_chk_854", "__vsnprintf_chk"); -__static_renaming("____fprintf_chk_869", "__fprintf_chk"); -__static_renaming("____printf_chk_873", "__printf_chk"); -__static_renaming("____vfprintf_chk_880", "__vfprintf_chk"); -__static_renaming("____vprintf_chk_888", "__vprintf_chk"); -__static_renaming("____dprintf_chk_910", "__dprintf_chk"); -__static_renaming("____vdprintf_chk_916", "__vdprintf_chk"); -__static_renaming("____fgets_chk_930", "__fgets_chk"); -__static_renaming("____fgets_chk_932", "__fgets_chk"); -__static_renaming("____fgets_chk_934", "__fgets_chk"); -__static_renaming("____fgets_alias_940", "__fgets_alias"); -__static_renaming("____fgets_chk_warn_947", "__fgets_chk_warn"); -__static_renaming("____cnt_1013", "__cnt"); -__static_renaming("____cptr_1014", "__cptr"); -__static_renaming("__apr_signal_block_1019", "apr_signal_block"); -__static_renaming("__apr_signal_block_1020", "apr_signal_block"); -__static_renaming("__main_1023", "main"); +__static_renaming("____qaddr_t_54", "__qaddr_t"); +__static_renaming("____caddr_t_55", "__caddr_t"); +__static_renaming("____intptr_t_56", "__intptr_t"); +__static_renaming("____socklen_t_57", "__socklen_t"); +__static_renaming("__FILE_59", "FILE"); +__static_renaming("____FILE_60", "__FILE"); +__static_renaming("____mbstate_t_69", "__mbstate_t"); +__static_renaming("___G_fpos_t_77", "_G_fpos_t"); +__static_renaming("___G_fpos64_t_85", "_G_fpos64_t"); +__static_renaming("____gnuc_va_list_86", "__gnuc_va_list"); +__static_renaming("___IO_lock_t_88", "_IO_lock_t"); +__static_renaming("___IO_FILE_171", "_IO_FILE"); +__static_renaming("___IO_FILE_172", "_IO_FILE"); +__static_renaming("___IO_2_1_stdin__175", "_IO_2_1_stdin_"); +__static_renaming("___IO_2_1_stdout__176", "_IO_2_1_stdout_"); +__static_renaming("___IO_2_1_stderr__177", "_IO_2_1_stderr_"); +__static_renaming("____io_read_fn_181", "__io_read_fn"); +__static_renaming("____io_write_fn_186", "__io_write_fn"); +__static_renaming("____io_seek_fn_192", "__io_seek_fn"); +__static_renaming("____io_close_fn_195", "__io_close_fn"); +__static_renaming("____underflow_196", "__underflow"); +__static_renaming("____underflow_197", "__underflow"); +__static_renaming("____uflow_199", "__uflow"); +__static_renaming("____uflow_200", "__uflow"); +__static_renaming("____overflow_202", "__overflow"); +__static_renaming("____overflow_203", "__overflow"); +__static_renaming("___IO_getc_208", "_IO_getc"); +__static_renaming("___IO_getc_209", "_IO_getc"); +__static_renaming("___IO_putc_215", "_IO_putc"); +__static_renaming("___IO_putc_216", "_IO_putc"); +__static_renaming("___IO_feof_221", "_IO_feof"); +__static_renaming("___IO_feof_222", "_IO_feof"); +__static_renaming("___IO_ferror_227", "_IO_ferror"); +__static_renaming("___IO_ferror_228", "_IO_ferror"); +__static_renaming("___IO_peekc_locked_233", "_IO_peekc_locked"); +__static_renaming("___IO_peekc_locked_234", "_IO_peekc_locked"); +__static_renaming("___IO_flockfile_236", "_IO_flockfile"); +__static_renaming("___IO_flockfile_237", "_IO_flockfile"); +__static_renaming("___IO_funlockfile_239", "_IO_funlockfile"); +__static_renaming("___IO_funlockfile_240", "_IO_funlockfile"); +__static_renaming("___IO_ftrylockfile_242", "_IO_ftrylockfile"); +__static_renaming("___IO_ftrylockfile_243", "_IO_ftrylockfile"); +__static_renaming("___IO_vfscanf_245", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_247", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_251", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_252", "_IO_vfscanf"); +__static_renaming("___IO_vfprintf_254", "_IO_vfprintf"); +__static_renaming("___IO_vfprintf_256", "_IO_vfprintf"); +__static_renaming("___IO_vfprintf_260", "_IO_vfprintf"); +__static_renaming("___IO_padn_261", "_IO_padn"); +__static_renaming("___IO_padn_262", "_IO_padn"); +__static_renaming("___IO_sgetn_265", "_IO_sgetn"); +__static_renaming("___IO_sgetn_266", "_IO_sgetn"); +__static_renaming("___IO_seekoff_268", "_IO_seekoff"); +__static_renaming("___IO_seekoff_269", "_IO_seekoff"); +__static_renaming("___IO_seekpos_272", "_IO_seekpos"); +__static_renaming("___IO_seekpos_273", "_IO_seekpos"); +__static_renaming("___IO_free_backup_area_276", "_IO_free_backup_area"); +__static_renaming("___IO_free_backup_area_277", "_IO_free_backup_area"); +__static_renaming("__va_list_279", "va_list"); +__static_renaming("__off_t_281", "off_t"); +__static_renaming("__off_t_283", "off_t"); +__static_renaming("__ssize_t_285", "ssize_t"); +__static_renaming("__fpos_t_287", "fpos_t"); +__static_renaming("__fpos_t_289", "fpos_t"); +__static_renaming("__stdin_291", "stdin"); +__static_renaming("__stdin_292", "stdin"); +__static_renaming("__stdout_294", "stdout"); +__static_renaming("__stdout_295", "stdout"); +__static_renaming("__stderr_297", "stderr"); +__static_renaming("__stderr_298", "stderr"); +__static_renaming("__remove_301", "remove"); +__static_renaming("__rename_304", "rename"); +__static_renaming("__renameat_309", "renameat"); +__static_renaming("__tmpfile_310", "tmpfile"); +__static_renaming("__tmpfile_312", "tmpfile"); +__static_renaming("__tmpfile_314", "tmpfile"); +__static_renaming("__tmpfile_316", "tmpfile"); +__static_renaming("__tmpnam_319", "tmpnam"); +__static_renaming("__tmpnam_320", "tmpnam"); +__static_renaming("__tmpnam_r_322", "tmpnam_r"); +__static_renaming("__tmpnam_r_323", "tmpnam_r"); +__static_renaming("__tempnam_326", "tempnam"); +__static_renaming("__tempnam_327", "tempnam"); +__static_renaming("__fclose_330", "fclose"); +__static_renaming("__fclose_332", "fclose"); +__static_renaming("__fflush_336", "fflush"); +__static_renaming("__fflush_unlocked_340", "fflush_unlocked"); +__static_renaming("__fopen_344", "fopen"); +__static_renaming("__fopen_346", "fopen"); +__static_renaming("__fopen_354", "fopen"); +__static_renaming("__fopen_356", "fopen"); +__static_renaming("__freopen_362", "freopen"); +__static_renaming("__freopen_364", "freopen"); +__static_renaming("__freopen_366", "freopen"); +__static_renaming("__freopen_368", "freopen"); +__static_renaming("__fdopen_372", "fdopen"); +__static_renaming("__fdopen_374", "fdopen"); +__static_renaming("__fmemopen_379", "fmemopen"); +__static_renaming("__fmemopen_381", "fmemopen"); +__static_renaming("__open_memstream_385", "open_memstream"); +__static_renaming("__open_memstream_387", "open_memstream"); +__static_renaming("__setbuf_392", "setbuf"); +__static_renaming("__setbuf_394", "setbuf"); +__static_renaming("__setvbuf_401", "setvbuf"); +__static_renaming("__setbuffer_407", "setbuffer"); +__static_renaming("__setlinebuf_411", "setlinebuf"); +__static_renaming("__fprintf_416", "fprintf"); +__static_renaming("__fprintf_418", "fprintf"); +__static_renaming("__printf_421", "printf"); +__static_renaming("__sprintf_424", "sprintf"); +__static_renaming("__vfprintf_430", "vfprintf"); +__static_renaming("__vprintf_437", "vprintf"); +__static_renaming("__vsprintf_443", "vsprintf"); +__static_renaming("__snprintf_448", "snprintf"); +__static_renaming("__vsnprintf_454", "vsnprintf"); +__static_renaming("__vdprintf_460", "vdprintf"); +__static_renaming("__dprintf_464", "dprintf"); +__static_renaming("__fscanf_468", "fscanf"); +__static_renaming("__fscanf_470", "fscanf"); +__static_renaming("__fscanf_472", "fscanf"); +__static_renaming("__fscanf_474", "fscanf"); +__static_renaming("__scanf_477", "scanf"); +__static_renaming("__scanf_478", "scanf"); +__static_renaming("__sscanf_481", "sscanf"); +__static_renaming("__vfscanf_509", "vfscanf"); +__static_renaming("__vfscanf_513", "vfscanf"); +__static_renaming("__vscanf_520", "vscanf"); +__static_renaming("__vscanf_522", "vscanf"); +__static_renaming("__vsscanf_528", "vsscanf"); +__static_renaming("__fgetc_563", "fgetc"); +__static_renaming("__getc_567", "getc"); +__static_renaming("__getchar_569", "getchar"); +__static_renaming("__getc_unlocked_572", "getc_unlocked"); +__static_renaming("__getchar_unlocked_574", "getchar_unlocked"); +__static_renaming("__fgetc_unlocked_577", "fgetc_unlocked"); +__static_renaming("__fputc_582", "fputc"); +__static_renaming("__fputc_584", "fputc"); +__static_renaming("__putc_589", "putc"); +__static_renaming("__putchar_592", "putchar"); +__static_renaming("__fputc_unlocked_596", "fputc_unlocked"); +__static_renaming("__putc_unlocked_601", "putc_unlocked"); +__static_renaming("__putchar_unlocked_604", "putchar_unlocked"); +__static_renaming("__getw_607", "getw"); +__static_renaming("__putw_612", "putw"); +__static_renaming("__fgets_618", "fgets"); +__static_renaming("__fgets_620", "fgets"); +__static_renaming("__fgets_622", "fgets"); +__static_renaming("__fgets_624", "fgets"); +__static_renaming("____getdelim_631", "__getdelim"); +__static_renaming("____getdelim_635", "__getdelim"); +__static_renaming("__getdelim_644", "getdelim"); +__static_renaming("__getdelim_648", "getdelim"); +__static_renaming("__getline_656", "getline"); +__static_renaming("__getline_660", "getline"); +__static_renaming("__fputs_667", "fputs"); +__static_renaming("__fputs_669", "fputs"); +__static_renaming("__puts_672", "puts"); +__static_renaming("__ungetc_676", "ungetc"); +__static_renaming("__fseek_714", "fseek"); +__static_renaming("__fseek_716", "fseek"); +__static_renaming("__ftell_720", "ftell"); +__static_renaming("__ftell_722", "ftell"); +__static_renaming("__rewind_726", "rewind"); +__static_renaming("__fseeko_733", "fseeko"); +__static_renaming("__fseeko_744", "fseeko"); +__static_renaming("__ftello_750", "ftello"); +__static_renaming("__ftello_754", "ftello"); +__static_renaming("__ftello_758", "ftello"); +__static_renaming("__fgetpos_766", "fgetpos"); +__static_renaming("__fgetpos_778", "fgetpos"); +__static_renaming("__fsetpos_786", "fsetpos"); +__static_renaming("__fsetpos_790", "fsetpos"); +__static_renaming("__clearerr_796", "clearerr"); +__static_renaming("__feof_800", "feof"); +__static_renaming("__feof_802", "feof"); +__static_renaming("__ferror_806", "ferror"); +__static_renaming("__ferror_808", "ferror"); +__static_renaming("__clearerr_unlocked_812", "clearerr_unlocked"); +__static_renaming("__feof_unlocked_816", "feof_unlocked"); +__static_renaming("__feof_unlocked_818", "feof_unlocked"); +__static_renaming("__ferror_unlocked_822", "ferror_unlocked"); +__static_renaming("__ferror_unlocked_824", "ferror_unlocked"); +__static_renaming("__perror_827", "perror"); +__static_renaming("__perror_828", "perror"); +__static_renaming("__sys_nerr_829", "sys_nerr"); +__static_renaming("__sys_errlist_830", "sys_errlist"); +__static_renaming("__fileno_833", "fileno"); +__static_renaming("__fileno_835", "fileno"); +__static_renaming("__fileno_unlocked_839", "fileno_unlocked"); +__static_renaming("__fileno_unlocked_841", "fileno_unlocked"); +__static_renaming("__popen_845", "popen"); +__static_renaming("__popen_847", "popen"); +__static_renaming("__pclose_851", "pclose"); +__static_renaming("__ctermid_854", "ctermid"); +__static_renaming("__flockfile_857", "flockfile"); +__static_renaming("__ftrylockfile_861", "ftrylockfile"); +__static_renaming("__ftrylockfile_863", "ftrylockfile"); +__static_renaming("__funlockfile_867", "funlockfile"); +__static_renaming("____sprintf_chk_899", "__sprintf_chk"); +__static_renaming("____vsprintf_chk_906", "__vsprintf_chk"); +__static_renaming("____snprintf_chk_920", "__snprintf_chk"); +__static_renaming("____vsnprintf_chk_928", "__vsnprintf_chk"); +__static_renaming("____fprintf_chk_943", "__fprintf_chk"); +__static_renaming("____printf_chk_947", "__printf_chk"); +__static_renaming("____vfprintf_chk_954", "__vfprintf_chk"); +__static_renaming("____vprintf_chk_962", "__vprintf_chk"); +__static_renaming("____dprintf_chk_984", "__dprintf_chk"); +__static_renaming("____vdprintf_chk_990", "__vdprintf_chk"); +__static_renaming("____fgets_chk_1004", "__fgets_chk"); +__static_renaming("____fgets_chk_1006", "__fgets_chk"); +__static_renaming("____fgets_chk_1008", "__fgets_chk"); +__static_renaming("____fgets_alias_1014", "__fgets_alias"); +__static_renaming("____fgets_chk_warn_1021", "__fgets_chk_warn"); +__static_renaming("____cnt_1087", "__cnt"); +__static_renaming("____cptr_1088", "__cptr"); +__static_renaming("__apr_signal_block_1093", "apr_signal_block"); +__static_renaming("__apr_signal_block_1094", "apr_signal_block"); +__static_renaming("__apr_signal_block_1095", "apr_signal_block"); +__static_renaming("__main_1099", "main"); -__static_condition_renaming("__static_condition_default_74", "(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_118", "(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_161", "(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_162", "(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_165", "(defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_223", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_225", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_226", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_227", "(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_230", "(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_232", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_234", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_235", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_236", "(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_249", "!(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); -__static_condition_renaming("__static_condition_default_254", "!(defined _FILE_OFFSET_BITS) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_256", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_274", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_276", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_278", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_280", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_294", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_296", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_300", "(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_304", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_308", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_310", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_318", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_320", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_326", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_328", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_330", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_332", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_336", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_338", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_343", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_345", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_349", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_351", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_356", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_358", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_370", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_374", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_379", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_381", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_393", "!(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_394", "(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_395", "(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_400", "!(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_421", "!(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_429", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_431", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_433", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_435", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_446", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_448", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_449", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_451", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_453", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_454", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_457", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_459", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_469", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_470", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_471", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_473", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_474", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_475", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_480", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_482", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_494", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_495", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_496", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_497", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_499", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_500", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_501", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_502", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_507", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_508", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_510", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_511", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_517", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_528", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_533", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_538", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_540", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_551", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_556", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_562", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_567", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_573", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_575", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_577", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_579", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_586", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_588", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_595", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_597", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_603", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_605", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_610", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_612", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_624", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_625", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_626", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_627", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_633", "!(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_639", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_640", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_641", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_642", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_648", "!(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_649", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_655", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_657", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_661", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_663", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_672", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_680", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_684", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_686", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_688", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_694", "!(defined _FILE_OFFSET_BITS) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_695", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_696", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_706", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_707", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_708", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_714", "!(defined _FILE_OFFSET_BITS) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_715", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_716", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_718", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_719", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_720", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_727", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_729", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_733", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_735", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_739", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_743", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_745", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_749", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_751", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_760", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_762", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_766", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_768", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_772", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_774", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_778", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_784", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_788", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_790", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_794", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_798", "!(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_801", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_804", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_809", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_813", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_817", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_820", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_833", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_840", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_855", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_864", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_870", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_881", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_882", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_883", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_889", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_893", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_898", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_904", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_905", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_906", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_917", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_924", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_931", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_933", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_935", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_941", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_948", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_953", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_954", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_961", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_962", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_968", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_969", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_976", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_977", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_983", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_984", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_991", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_992", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_998", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_999", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1006", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1007", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1015", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_1016", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1017", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1021", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) || (defined __STRICT_ANSI__)"); -__static_condition_renaming("__static_condition_default_1022", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1024", "(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_53", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_76", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_84", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_123", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_169", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_170", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_173", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_182", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_187", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_193", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_198", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_201", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_204", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_210", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_217", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_223", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_229", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_235", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_238", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_241", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_244", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_246", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_248", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_249", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_250", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_253", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_255", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_257", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_258", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_259", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_263", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_264", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_267", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_270", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_271", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_274", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_275", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_278", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_280", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); +__static_condition_renaming("__static_condition_default_282", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_284", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_286", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_288", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_290", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_293", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_296", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_299", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_311", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_313", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_315", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_317", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_331", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_333", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_337", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_341", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_345", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_347", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_355", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_357", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_363", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_365", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_367", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_369", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_373", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_375", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_380", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_382", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_386", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_388", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_393", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_395", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_402", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_408", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_412", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_417", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_419", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_431", "!(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_432", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_433", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_438", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_444", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_455", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_461", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_469", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_471", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_473", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_475", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_486", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_488", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_489", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_491", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_493", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_494", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_497", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_499", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_503", "!(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_510", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_511", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_512", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_514", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_515", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_516", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_521", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_523", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_529", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_536", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_537", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_538", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_539", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_541", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_542", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_543", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_544", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_549", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_550", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_552", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_553", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_559", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_560", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_564", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_568", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_573", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_578", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_583", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_585", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_590", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_597", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_602", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_608", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_613", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_619", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_621", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_623", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_625", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_632", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_633", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_634", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_636", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_637", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_638", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_645", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_646", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_647", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_649", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_650", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_651", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_657", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_658", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_659", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_661", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_662", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_663", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_668", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_670", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_677", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_683", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_684", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_685", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_686", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_692", "!(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_693", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_699", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_700", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_701", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_702", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_708", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_709", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_715", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_717", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_721", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_723", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_727", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_734", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_735", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_736", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_745", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_746", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_747", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_751", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_752", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_753", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_755", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_756", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_757", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_759", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_760", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_761", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_767", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_768", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_769", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_779", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_780", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_781", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_787", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_788", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_789", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_791", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_792", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_793", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_797", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_801", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_803", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_807", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_809", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_813", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_817", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_819", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_823", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_825", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_834", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_836", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_840", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_842", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_846", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_848", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_852", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_858", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_862", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_864", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_868", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_872", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_875", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_878", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_883", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_887", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_891", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_894", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_907", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_914", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_929", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_938", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_944", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_955", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_956", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_957", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_963", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_967", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_972", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_978", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_979", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_980", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_991", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_998", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1005", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1007", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1009", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1015", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1022", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1027", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1028", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1035", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1036", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1042", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1043", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1050", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1051", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1057", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1058", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1065", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1066", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1072", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1073", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1080", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1081", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1089", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_1090", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1091", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1096", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) || !(defined __need___FILE) && (defined __STRICT_ANSI__)"); +__static_condition_renaming("__static_condition_default_1097", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1098", "(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_1100", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined SIGPIPE) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined SIGPIPE) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined SIGPIPE) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined SIGPIPE) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined SIGPIPE)"); +__static_condition_renaming("__static_condition_default_1101", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined SIGPIPE)"); +__static_condition_renaming("__static_condition_default_1102", "(defined __need___FILE) && (defined SIGPIPE)"); +__static_condition_renaming("__static_condition_default_1103", "!(defined SIGPIPE)"); +__static_condition_renaming("__static_condition_default_1104", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -if (__static_condition_default_1024) { +if (__static_condition_default_1104) { __static_parse_error("Unable to parse"); } }; @@ -743,142 +887,142 @@ typedef long int ____ssize_t_49;// L110:L172 typedef long int ____syscall_slong_t_50;// L93:L175 typedef unsigned long int ____syscall_ulong_t_51;// L94:L177 typedef ____off64_t_24 ____loff_t_52;// L181 -typedef ____quad_t_14 * (____qaddr_t_53);// L182 -typedef char * (____caddr_t_54);// L183 -typedef long int ____intptr_t_55;// L110:L186 -typedef unsigned int ____socklen_t_56;// L92:L189 -typedef struct __forward_tag_reference_57 __FILE_58;// L48 -typedef struct __forward_tag_reference_57 ____FILE_59;// L64 -union ____anonymous_tag_60_61 { -unsigned int ____wch_62;// L265 -char ____wchb_63[4];// L92 +typedef ____quad_t_14 * (____qaddr_t_54);// L182 +typedef char * (____caddr_t_55);// L183 +typedef long int ____intptr_t_56;// L110:L186 +typedef unsigned int ____socklen_t_57;// L92:L189 +typedef struct __forward_tag_reference_58 __FILE_59;// L48 +typedef struct __forward_tag_reference_58 ____FILE_60;// L64 +union ____anonymous_tag_61_62 { +unsigned int ____wch_63;// L265 +char ____wchb_64[4];// L92 }; -struct ____anonymous_tag_64_65 { -int ____count_66;// L84 -union ____anonymous_tag_60_61 ____value_67;// L85 +struct ____anonymous_tag_65_66 { +int ____count_67;// L84 +union ____anonymous_tag_61_62 ____value_68;// L85 }; -typedef struct ____anonymous_tag_64_65 ____mbstate_t_68;// L82:L94 -struct ____anonymous_tag_69_70 { -____off_t_23 ____pos_71;// L0 -____mbstate_t_68 ____state_72;// L0 +typedef struct ____anonymous_tag_65_66 ____mbstate_t_69;// L82:L94 +struct ____anonymous_tag_70_71 { +____off_t_23 ____pos_72;// L0 +____mbstate_t_69 ____state_74;// L0 }; -typedef struct ____anonymous_tag_69_70 ___G_fpos_t_75;// L21:L25 -struct ____anonymous_tag_76_77 { -____off64_t_24 ____pos_78;// L0 -____mbstate_t_68 ____state_79;// L0 +typedef struct ____anonymous_tag_70_71 ___G_fpos_t_77;// L21:L25 +struct ____anonymous_tag_78_79 { +____off64_t_24 ____pos_80;// L0 +____mbstate_t_69 ____state_82;// L0 }; -typedef struct ____anonymous_tag_76_77 ___G_fpos64_t_81;// L26:L30 -typedef __builtin_va_list ____gnuc_va_list_82;// L40 -typedef void ___IO_lock_t_84;// L150 -struct ___IO_marker_86 { -struct __forward_tag_reference_85 * (___next_87);// L0 -struct __forward_tag_reference_57 * (___sbuf_88);// L0 -int ___pos_89;// L162 +typedef struct ____anonymous_tag_78_79 ___G_fpos64_t_85;// L26:L30 +typedef __builtin_va_list ____gnuc_va_list_86;// L40 +typedef void ___IO_lock_t_88;// L150 +struct ___IO_marker_90 { +struct __forward_tag_reference_89 * (___next_91);// L0 +struct __forward_tag_reference_58 * (___sbuf_92);// L0 +int ___pos_93;// L162 }; -enum ____codecvt_result_94 { -____codecvt_ok_90, -____codecvt_partial_91, -____codecvt_error_92, -____codecvt_noconv_93, +enum ____codecvt_result_98 { +____codecvt_ok_94, +____codecvt_partial_95, +____codecvt_error_96, +____codecvt_noconv_97, }; -struct ___IO_FILE_95 { -int ___flags_96;// L242 -char * (___IO_read_ptr_97);// L247 -char * (___IO_read_end_98);// L248 -char * (___IO_read_base_99);// L249 -char * (___IO_write_base_100);// L250 -char * (___IO_write_ptr_101);// L251 -char * (___IO_write_end_102);// L252 -char * (___IO_buf_base_103);// L253 -char * (___IO_buf_end_104);// L254 -char * (___IO_save_base_105);// L256 -char * (___IO_backup_base_106);// L257 -char * (___IO_save_end_107);// L258 -struct ___IO_marker_86 * (___markers_108);// L260 -struct __forward_tag_reference_57 * (___chain_109);// L0 -int ___fileno_110;// L264 -int ___flags2_111;// L268 -____off_t_23 ___old_offset_112;// L0 -unsigned short ___cur_column_113;// L274 -signed char ___vtable_offset_114;// L275 -char ___shortbuf_115[1];// L276 -___IO_lock_t_84 * (___lock_116);// L0 +struct ___IO_FILE_99 { +int ___flags_100;// L242 +char * (___IO_read_ptr_101);// L247 +char * (___IO_read_end_102);// L248 +char * (___IO_read_base_103);// L249 +char * (___IO_write_base_104);// L250 +char * (___IO_write_ptr_105);// L251 +char * (___IO_write_end_106);// L252 +char * (___IO_buf_base_107);// L253 +char * (___IO_buf_end_108);// L254 +char * (___IO_save_base_109);// L256 +char * (___IO_backup_base_110);// L257 +char * (___IO_save_end_111);// L258 +struct ___IO_marker_90 * (___markers_112);// L260 +struct __forward_tag_reference_58 * (___chain_113);// L0 +int ___fileno_114;// L264 +int ___flags2_115;// L268 +____off_t_23 ___old_offset_116;// L0 +unsigned short ___cur_column_118;// L274 +signed char ___vtable_offset_119;// L275 +char ___shortbuf_120[1];// L276 +___IO_lock_t_88 * (___lock_121);// L0 }; -struct ___IO_FILE_119 { -int ___flags_120;// L242 -char * (___IO_read_ptr_121);// L247 -char * (___IO_read_end_122);// L248 -char * (___IO_read_base_123);// L249 -char * (___IO_write_base_124);// L250 -char * (___IO_write_ptr_125);// L251 -char * (___IO_write_end_126);// L252 -char * (___IO_buf_base_127);// L253 -char * (___IO_buf_end_128);// L254 -char * (___IO_save_base_129);// L256 -char * (___IO_backup_base_130);// L257 -char * (___IO_save_end_131);// L258 -struct ___IO_marker_86 * (___markers_132);// L260 -struct __forward_tag_reference_57 * (___chain_133);// L0 -int ___fileno_134;// L264 -int ___flags2_135;// L268 -____off_t_23 ___old_offset_136;// L0 -unsigned short ___cur_column_137;// L274 -signed char ___vtable_offset_138;// L275 -char ___shortbuf_139[1];// L276 -___IO_lock_t_84 * (___lock_140);// L0 -____off64_t_24 ___offset_142;// L0 -void * (____pad1_143);// L297 -void * (____pad2_144);// L298 -void * (____pad3_145);// L299 -void * (____pad4_146);// L300 -__size_t_1 ____pad5_147;// L0 -int ___mode_148;// L303 -char ___unused2_149[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +struct ___IO_FILE_124 { +int ___flags_125;// L242 +char * (___IO_read_ptr_126);// L247 +char * (___IO_read_end_127);// L248 +char * (___IO_read_base_128);// L249 +char * (___IO_write_base_129);// L250 +char * (___IO_write_ptr_130);// L251 +char * (___IO_write_end_131);// L252 +char * (___IO_buf_base_132);// L253 +char * (___IO_buf_end_133);// L254 +char * (___IO_save_base_134);// L256 +char * (___IO_backup_base_135);// L257 +char * (___IO_save_end_136);// L258 +struct ___IO_marker_90 * (___markers_137);// L260 +struct __forward_tag_reference_58 * (___chain_138);// L0 +int ___fileno_139;// L264 +int ___flags2_140;// L268 +____off_t_23 ___old_offset_141;// L0 +unsigned short ___cur_column_143;// L274 +signed char ___vtable_offset_144;// L275 +char ___shortbuf_145[1];// L276 +___IO_lock_t_88 * (___lock_146);// L0 +____off64_t_24 ___offset_148;// L0 +void * (____pad1_150);// L297 +void * (____pad2_151);// L298 +void * (____pad3_152);// L299 +void * (____pad4_153);// L300 +__size_t_1 ____pad5_154;// L0 +int ___mode_155;// L303 +char ___unused2_156[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -struct ___IO_FILE_complete_150 { -struct ___IO_FILE_95 ___file_151;// L286 -____off64_t_24 ___offset_153;// L0 -void * (____pad1_154);// L297 -void * (____pad2_155);// L298 -void * (____pad3_156);// L299 -void * (____pad4_157);// L300 -__size_t_1 ____pad5_158;// L0 -int ___mode_159;// L303 -char ___unused2_160[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +struct ___IO_FILE_complete_157 { +struct ___IO_FILE_99 ___file_158;// L286 +____off64_t_24 ___offset_160;// L0 +void * (____pad1_162);// L297 +void * (____pad2_163);// L298 +void * (____pad3_164);// L299 +void * (____pad4_165);// L300 +__size_t_1 ____pad5_166;// L0 +int ___mode_167;// L303 +char ___unused2_168[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -typedef struct ___IO_FILE_95 ___IO_FILE_163;// L310 -typedef struct ___IO_FILE_119 ___IO_FILE_164;// L310 -typedef ____ssize_t_49 (____io_read_fn_173) (void * (____cookie_170), char * (____buf_171), __size_t_1 ____nbytes_172);// L333 -typedef ____ssize_t_49 (____io_write_fn_177) (void * (____cookie_174), const char * (____buf_175), __size_t_1 ____n_176);// L341:L342 -typedef int (____io_seek_fn_181) (void * (____cookie_178), ____off64_t_24 * (____pos_179), int ____w_180);// L350 -typedef int (____io_close_fn_183) (void * (____cookie_182));// L353 -typedef ____gnuc_va_list_82 __va_list_248;// L79 -typedef ____off_t_23 __off_t_250;// L90 -typedef ____off64_t_24 __off_t_251;// L92 -typedef ____ssize_t_49 __ssize_t_252;// L102 -typedef ___G_fpos_t_75 __fpos_t_253;// L110 -typedef ___G_fpos64_t_81 __fpos_t_255;// L112 -extern const char * const __sys_errlist_756[];// L27 +typedef struct ___IO_FILE_99 ___IO_FILE_171;// L310 +typedef struct ___IO_FILE_124 ___IO_FILE_172;// L310 +typedef ____ssize_t_49 (____io_read_fn_181) (void * (____cookie_178), char * (____buf_179), __size_t_1 ____nbytes_180);// L333 +typedef ____ssize_t_49 (____io_write_fn_186) (void * (____cookie_183), const char * (____buf_184), __size_t_1 ____n_185);// L341:L342 +typedef int (____io_seek_fn_192) (void * (____cookie_188), ____off64_t_24 * (____pos_189), int ____w_191);// L350 +typedef int (____io_close_fn_195) (void * (____cookie_194));// L353 +typedef ____gnuc_va_list_86 __va_list_279;// L79 +typedef ____off_t_23 __off_t_281;// L90 +typedef ____off64_t_24 __off_t_283;// L92 +typedef ____ssize_t_49 __ssize_t_285;// L102 +typedef ___G_fpos_t_77 __fpos_t_287;// L110 +typedef ___G_fpos64_t_85 __fpos_t_289;// L112 +extern const char * const __sys_errlist_830[];// L27 -struct __forward_tag_reference_57 { // generated union of struct variations +struct __forward_tag_reference_89 { // generated union of struct variations union { -struct ___IO_FILE_95 ___IO_FILE_95; -struct ___IO_FILE_119 ___IO_FILE_119; +struct ___IO_marker_90 ___IO_marker_90; }; }; -struct __forward_tag_reference_85 { // generated union of struct variations +struct __forward_tag_reference_58 { // generated union of struct variations union { -struct ___IO_marker_86 ___IO_marker_86; +struct ___IO_FILE_99 ___IO_FILE_99; +struct ___IO_FILE_124 ___IO_FILE_124; }; }; -struct __forward_tag_reference_83 { // generated union of struct variations +struct __forward_tag_reference_87 { // generated union of struct variations union { }; }; -struct __forward_tag_reference_166 { // generated union of struct variations +struct __forward_tag_reference_174 { // generated union of struct variations union { }; }; @@ -937,225 +1081,225 @@ union { // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_57 ;// L0 +struct __forward_tag_reference_58 ;// L0 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_83 ;// L0 -struct __forward_tag_reference_83 ;// L0 -struct __forward_tag_reference_57 ;// L0 +struct __forward_tag_reference_87 ;// L0 +struct __forward_tag_reference_87 ;// L0 +struct __forward_tag_reference_58 ;// L0 // typedef moved to top of scope -struct ___IO_marker_86 ;// L156 -enum ____codecvt_result_94 ;// L176 -struct ___IO_FILE_95 ;// L241 +struct ___IO_marker_90 ;// L156 +enum ____codecvt_result_98 ;// L176 +struct ___IO_FILE_99 ;// L241 -struct ___IO_FILE_119 ;// L241 -struct ___IO_FILE_complete_150 ;// L241 +struct ___IO_FILE_124 ;// L241 +struct ___IO_FILE_complete_157 ;// L241 // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_166 ;// L0 -extern struct __forward_tag_reference_166 ___IO_2_1_stdin__167;// L315 -extern struct __forward_tag_reference_166 ___IO_2_1_stdout__168;// L316 -extern struct __forward_tag_reference_166 ___IO_2_1_stderr__169;// L317 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern int (____underflow_184) (___IO_FILE_163 *);// L385 -extern int (____underflow_185) (___IO_FILE_164 *);// L385 -extern int (____uflow_186) (___IO_FILE_163 *);// L386 -extern int (____uflow_187) (___IO_FILE_164 *);// L386 -extern int (____overflow_188) (___IO_FILE_163 *, int );// L387 -extern int (____overflow_189) (___IO_FILE_164 *, int );// L387 -extern int (___IO_getc_193) (___IO_FILE_163 * (____fp_190));// L429 -extern int (___IO_getc_194) (___IO_FILE_164 * (____fp_191));// L429 -extern int (___IO_putc_199) (int ____c_195, ___IO_FILE_163 * (____fp_196));// L430 -extern int (___IO_putc_200) (int ____c_195, ___IO_FILE_164 * (____fp_197));// L430 -extern int (___IO_feof_204) (___IO_FILE_163 * (____fp_201));// L431 -extern int (___IO_feof_205) (___IO_FILE_164 * (____fp_202));// L431 -extern int (___IO_ferror_209) (___IO_FILE_163 * (____fp_206));// L432 -extern int (___IO_ferror_210) (___IO_FILE_164 * (____fp_207));// L432 -extern int (___IO_peekc_locked_214) (___IO_FILE_163 * (____fp_211));// L434 -extern int (___IO_peekc_locked_215) (___IO_FILE_164 * (____fp_212));// L434 -extern void (___IO_flockfile_216) (___IO_FILE_163 *);// L440 -extern void (___IO_flockfile_217) (___IO_FILE_164 *);// L440 -extern void (___IO_funlockfile_218) (___IO_FILE_163 *);// L441 -extern void (___IO_funlockfile_219) (___IO_FILE_164 *);// L441 -extern int (___IO_ftrylockfile_220) (___IO_FILE_163 *);// L442 -extern int (___IO_ftrylockfile_221) (___IO_FILE_164 *);// L442 -extern int (___IO_vfscanf_222) (___IO_FILE_163 * __restrict , const char * __restrict , ____gnuc_va_list_82 , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_224) (___IO_FILE_164 * __restrict , const char * __restrict , ____gnuc_va_list_82 , int * __restrict );// L459:L460 +struct __forward_tag_reference_174 ;// L0 +extern struct __forward_tag_reference_174 ___IO_2_1_stdin__175;// L315 +extern struct __forward_tag_reference_174 ___IO_2_1_stdout__176;// L316 +extern struct __forward_tag_reference_174 ___IO_2_1_stderr__177;// L317 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern int (____underflow_196) (___IO_FILE_171 *);// L385 +extern int (____underflow_197) (___IO_FILE_172 *);// L385 +extern int (____uflow_199) (___IO_FILE_171 *);// L386 +extern int (____uflow_200) (___IO_FILE_172 *);// L386 +extern int (____overflow_202) (___IO_FILE_171 *, int );// L387 +extern int (____overflow_203) (___IO_FILE_172 *, int );// L387 +extern int (___IO_getc_208) (___IO_FILE_171 * (____fp_205));// L429 +extern int (___IO_getc_209) (___IO_FILE_172 * (____fp_206));// L429 +extern int (___IO_putc_215) (int ____c_211, ___IO_FILE_171 * (____fp_212));// L430 +extern int (___IO_putc_216) (int ____c_211, ___IO_FILE_172 * (____fp_213));// L430 +extern int (___IO_feof_221) (___IO_FILE_171 * (____fp_218));// L431 +extern int (___IO_feof_222) (___IO_FILE_172 * (____fp_219));// L431 +extern int (___IO_ferror_227) (___IO_FILE_171 * (____fp_224));// L432 +extern int (___IO_ferror_228) (___IO_FILE_172 * (____fp_225));// L432 +extern int (___IO_peekc_locked_233) (___IO_FILE_171 * (____fp_230));// L434 +extern int (___IO_peekc_locked_234) (___IO_FILE_172 * (____fp_231));// L434 +extern void (___IO_flockfile_236) (___IO_FILE_171 *);// L440 +extern void (___IO_flockfile_237) (___IO_FILE_172 *);// L440 +extern void (___IO_funlockfile_239) (___IO_FILE_171 *);// L441 +extern void (___IO_funlockfile_240) (___IO_FILE_172 *);// L441 +extern int (___IO_ftrylockfile_242) (___IO_FILE_171 *);// L442 +extern int (___IO_ftrylockfile_243) (___IO_FILE_172 *);// L442 +extern int (___IO_vfscanf_245) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_247) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_251) (___IO_FILE_171 * __restrict , const char * __restrict , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_252) (___IO_FILE_172 * __restrict , const char * __restrict , int * __restrict );// L459:L460 +extern int (___IO_vfprintf_254) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 +extern int (___IO_vfprintf_256) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 +extern int (___IO_vfprintf_260) ();// L461:L462 +extern ____ssize_t_49 (___IO_padn_261) (___IO_FILE_171 *, int , ____ssize_t_49 );// L463 +extern ____ssize_t_49 (___IO_padn_262) (___IO_FILE_172 *, int , ____ssize_t_49 );// L463 +extern __size_t_1 (___IO_sgetn_265) (___IO_FILE_171 *, void *, __size_t_1 );// L464 +extern __size_t_1 (___IO_sgetn_266) (___IO_FILE_172 *, void *, __size_t_1 );// L464 +extern ____off64_t_24 (___IO_seekoff_268) (___IO_FILE_171 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekoff_269) (___IO_FILE_172 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekpos_272) (___IO_FILE_171 *, ____off64_t_24 , int );// L467 +extern ____off64_t_24 (___IO_seekpos_273) (___IO_FILE_172 *, ____off64_t_24 , int );// L467 +extern void (___IO_free_backup_area_276) (___IO_FILE_171 *);// L469 +extern void (___IO_free_backup_area_277) (___IO_FILE_172 *);// L469 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern struct ___IO_FILE_99 * (__stdin_291);// L168 +extern struct ___IO_FILE_124 * (__stdin_292);// L168 +extern struct ___IO_FILE_99 * (__stdout_294);// L169 +extern struct ___IO_FILE_124 * (__stdout_295);// L169 +extern struct ___IO_FILE_99 * (__stderr_297);// L170 +extern struct ___IO_FILE_124 * (__stderr_298);// L170 +extern int (__remove_301) (const char * (____filename_300));// L178 +extern int (__rename_304) (const char * (____old_302), const char * (____new_303));// L180 +extern int (__renameat_309) (int ____oldfd_305, const char * (____old_306), int ____newfd_307, const char * (____new_308));// L185:L186 +extern __FILE_59 * ((__tmpfile_310) (void ));// L195 +extern __FILE_59 * ((__tmpfile_316) (void ));// L198 +extern __FILE_59 * ((__tmpfile_314) (void ));// L195 +extern __FILE_59 * ((__tmpfile_312) (void ));// L198 +extern char * ((__tmpnam_319) (char * (____s_318)));// L209 +extern char * ((__tmpnam_320) (char * (____s_318)));// L209 +extern char * ((__tmpnam_r_322) (char * (____s_321)));// L215 +extern char * ((__tmpnam_r_323) (char * (____s_321)));// L215 +extern char * ((__tempnam_326) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 +extern char * ((__tempnam_327) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 +extern int (__fclose_330) (__FILE_59 * (____stream_328));// L237 +extern int (__fclose_332) (__FILE_59 * (____stream_328));// L237 +extern int (__fflush_336) (__FILE_59 * (____stream_334));// L242 +extern int (__fflush_unlocked_340) (__FILE_59 * (____stream_338));// L252 +extern __FILE_59 * ((__fopen_344) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 +extern __FILE_59 * ((__fopen_346) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 +extern __FILE_59 * ((__fopen_354) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 +extern __FILE_59 * ((__fopen_356) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 +extern __FILE_59 * ((__freopen_362) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 +extern __FILE_59 * ((__freopen_368) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 +extern __FILE_59 * ((__freopen_366) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 +extern __FILE_59 * ((__freopen_364) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 +extern __FILE_59 * ((__fdopen_372) (int ____fd_370, const char * (____modes_371)));// L306 +extern __FILE_59 * ((__fdopen_374) (int ____fd_370, const char * (____modes_371)));// L306 +extern __FILE_59 * ((__fmemopen_379) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 +extern __FILE_59 * ((__fmemopen_381) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 +extern __FILE_59 * ((__open_memstream_385) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 +extern __FILE_59 * ((__open_memstream_387) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 +extern void (__setbuf_392) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 +extern void (__setbuf_394) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 +extern int (__setvbuf_401) (__FILE_59 * __restrict ____stream_396, char * __restrict ____buf_398, int ____modes_399, __size_t_1 ____n_400);// L336:L337 +extern void (__setbuffer_407) (__FILE_59 * __restrict ____stream_403, char * __restrict ____buf_405, __size_t_1 ____size_406);// L343:L344 +extern void (__setlinebuf_411) (__FILE_59 * (____stream_409));// L347 +extern int (__fprintf_416) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 +extern int (__fprintf_418) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 +extern int (__printf_421) (const char * __restrict ____format_420, ... );// L362 +extern int (__sprintf_424) (char * __restrict ____s_422, const char * __restrict ____format_423, ... );// L364:L365 +extern int (__vfprintf_430) (__FILE_59 * __restrict ____s_425, const char * __restrict ____format_427, ____gnuc_va_list_86 ____arg_428);// L371:L372 +extern int (__vprintf_437) (const char * __restrict ____format_434, ____gnuc_va_list_86 ____arg_435);// L377 +extern int (__vsprintf_443) (char * __restrict ____s_439, const char * __restrict ____format_440, ____gnuc_va_list_86 ____arg_441);// L379:L380 +extern int (__snprintf_448) (char * __restrict ____s_445, __size_t_1 ____maxlen_446, const char * __restrict ____format_447, ... );// L386:L388 +extern int (__vsnprintf_454) (char * __restrict ____s_449, __size_t_1 ____maxlen_450, const char * __restrict ____format_451, ____gnuc_va_list_86 ____arg_452);// L390:L392 +extern int (__vdprintf_460) (int ____fd_456, const char * __restrict ____fmt_457, ____gnuc_va_list_86 ____arg_458);// L412:L414 +extern int (__dprintf_464) (int ____fd_462, const char * __restrict ____fmt_463, ... );// L415:L416 +extern int (__fscanf_468) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_470) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_472) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_474) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__scanf_477) (const char * __restrict ____format_476, ... );// L431 +extern int (__scanf_478) (const char * __restrict ____format_476, ... );// L431 +extern int (__sscanf_481) (const char * __restrict ____s_479, const char * __restrict ____format_480, ... );// L433:L434 -extern int (___IO_vfprintf_231) (___IO_FILE_163 * __restrict , const char * __restrict , ____gnuc_va_list_82 );// L461:L462 -extern int (___IO_vfprintf_233) (___IO_FILE_164 * __restrict , const char * __restrict , ____gnuc_va_list_82 );// L461:L462 -extern ____ssize_t_49 (___IO_padn_238) (___IO_FILE_163 *, int , ____ssize_t_49 );// L463 -extern ____ssize_t_49 (___IO_padn_239) (___IO_FILE_164 *, int , ____ssize_t_49 );// L463 -extern __size_t_1 (___IO_sgetn_240) (___IO_FILE_163 *, void *, __size_t_1 );// L464 -extern __size_t_1 (___IO_sgetn_241) (___IO_FILE_164 *, void *, __size_t_1 );// L464 -extern ____off64_t_24 (___IO_seekoff_242) (___IO_FILE_163 *, ____off64_t_24 , int , int );// L466 -extern ____off64_t_24 (___IO_seekoff_243) (___IO_FILE_164 *, ____off64_t_24 , int , int );// L466 -extern ____off64_t_24 (___IO_seekpos_244) (___IO_FILE_163 *, ____off64_t_24 , int );// L467 -extern ____off64_t_24 (___IO_seekpos_245) (___IO_FILE_164 *, ____off64_t_24 , int );// L467 -extern void (___IO_free_backup_area_246) (___IO_FILE_163 *);// L469 -extern void (___IO_free_backup_area_247) (___IO_FILE_164 *);// L469 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern struct ___IO_FILE_95 * (__stdin_257);// L168 -extern struct ___IO_FILE_119 * (__stdin_258);// L168 -extern struct ___IO_FILE_95 * (__stdout_259);// L169 -extern struct ___IO_FILE_119 * (__stdout_260);// L169 -extern struct ___IO_FILE_95 * (__stderr_261);// L170 -extern struct ___IO_FILE_119 * (__stderr_262);// L170 -extern int (__remove_264) (const char * (____filename_263));// L178 -extern int (__rename_267) (const char * (____old_265), const char * (____new_266));// L180 -extern int (__renameat_272) (int ____oldfd_268, const char * (____old_269), int ____newfd_270, const char * (____new_271));// L185:L186 -extern __FILE_58 * ((__tmpfile_273) (void ));// L195 -extern __FILE_58 * ((__tmpfile_279) (void ));// L198 -extern __FILE_58 * ((__tmpfile_277) (void ));// L198 -extern __FILE_58 * ((__tmpfile_275) (void ));// L195 -extern char * ((__tmpnam_282) (char * (____s_281)));// L209 -extern char * ((__tmpnam_283) (char * (____s_281)));// L209 -extern char * ((__tmpnam_r_285) (char * (____s_284)));// L215 -extern char * ((__tmpnam_r_286) (char * (____s_284)));// L215 -extern char * ((__tempnam_289) (const char * (____dir_287), const char * (____pfx_288)));// L227:L228 -extern char * ((__tempnam_290) (const char * (____dir_287), const char * (____pfx_288)));// L227:L228 -extern int (__fclose_293) (__FILE_58 * (____stream_291));// L237 -extern int (__fclose_295) (__FILE_58 * (____stream_291));// L237 -extern int (__fflush_299) (__FILE_58 * (____stream_297));// L242 -extern int (__fflush_unlocked_303) (__FILE_58 * (____stream_301));// L252 -extern __FILE_58 * ((__fopen_307) (const char * __restrict ____filename_305, const char * __restrict ____modes_306));// L272:L273 -extern __FILE_58 * ((__fopen_309) (const char * __restrict ____filename_305, const char * __restrict ____modes_306));// L272:L273 -extern __FILE_58 * ((__fopen_317) (const char * __restrict ____filename_315, const char * __restrict ____modes_316));// L283:L285 -extern __FILE_58 * ((__fopen_319) (const char * __restrict ____filename_315, const char * __restrict ____modes_316));// L283:L285 -extern __FILE_58 * ((__freopen_325) (const char * __restrict ____filename_311, const char * __restrict ____modes_312, __FILE_58 * __restrict ____stream_313));// L278:L280 -extern __FILE_58 * ((__freopen_331) (const char * __restrict ____filename_321, const char * __restrict ____modes_322, __FILE_58 * __restrict ____stream_323));// L286:L289 -extern __FILE_58 * ((__freopen_329) (const char * __restrict ____filename_321, const char * __restrict ____modes_322, __FILE_58 * __restrict ____stream_323));// L286:L289 -extern __FILE_58 * ((__freopen_327) (const char * __restrict ____filename_311, const char * __restrict ____modes_312, __FILE_58 * __restrict ____stream_313));// L278:L280 -extern __FILE_58 * ((__fdopen_335) (int ____fd_333, const char * (____modes_334)));// L306 -extern __FILE_58 * ((__fdopen_337) (int ____fd_333, const char * (____modes_334)));// L306 -extern __FILE_58 * ((__fmemopen_342) (void * (____s_339), __size_t_1 ____len_340, const char * (____modes_341)));// L319:L320 -extern __FILE_58 * ((__fmemopen_344) (void * (____s_339), __size_t_1 ____len_340, const char * (____modes_341)));// L319:L320 -extern __FILE_58 * ((__open_memstream_348) (char * (* (____bufloc_346)), __size_t_1 * (____sizeloc_347)));// L325 -extern __FILE_58 * ((__open_memstream_350) (char * (* (____bufloc_346)), __size_t_1 * (____sizeloc_347)));// L325 -extern void (__setbuf_355) (__FILE_58 * __restrict ____stream_352, char * __restrict ____buf_354);// L332 -extern void (__setbuf_357) (__FILE_58 * __restrict ____stream_352, char * __restrict ____buf_354);// L332 -extern int (__setvbuf_364) (__FILE_58 * __restrict ____stream_359, char * __restrict ____buf_361, int ____modes_362, __size_t_1 ____n_363);// L336:L337 -extern void (__setbuffer_369) (__FILE_58 * __restrict ____stream_365, char * __restrict ____buf_367, __size_t_1 ____size_368);// L343:L344 -extern void (__setlinebuf_373) (__FILE_58 * (____stream_371));// L347 -extern int (__fprintf_378) (__FILE_58 * __restrict ____stream_375, const char * __restrict ____format_377, ... );// L356:L357 -extern int (__fprintf_380) (__FILE_58 * __restrict ____stream_375, const char * __restrict ____format_377, ... );// L356:L357 -extern int (__printf_383) (const char * __restrict ____format_382, ... );// L362 -extern int (__sprintf_386) (char * __restrict ____s_384, const char * __restrict ____format_385, ... );// L364:L365 -extern int (__vfprintf_392) (__FILE_58 * __restrict ____s_387, const char * __restrict ____format_389, ____gnuc_va_list_82 ____arg_390);// L371:L372 -extern int (__vprintf_399) (const char * __restrict ____format_396, ____gnuc_va_list_82 ____arg_397);// L377 -extern int (__vsprintf_405) (char * __restrict ____s_401, const char * __restrict ____format_402, ____gnuc_va_list_82 ____arg_403);// L379:L380 -extern int (__snprintf_409) (char * __restrict ____s_406, __size_t_1 ____maxlen_407, const char * __restrict ____format_408, ... );// L386:L388 -extern int (__vsnprintf_415) (char * __restrict ____s_410, __size_t_1 ____maxlen_411, const char * __restrict ____format_412, ____gnuc_va_list_82 ____arg_413);// L390:L392 -extern int (__vdprintf_420) (int ____fd_416, const char * __restrict ____fmt_417, ____gnuc_va_list_82 ____arg_418);// L412:L414 -extern int (__dprintf_424) (int ____fd_422, const char * __restrict ____fmt_423, ... );// L415:L416 -extern int (__fscanf_428) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 -extern int (__fscanf_430) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 -extern int (__fscanf_432) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 -extern int (__fscanf_434) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 -extern int (__scanf_437) (const char * __restrict ____format_436, ... );// L431 -extern int (__scanf_438) (const char * __restrict ____format_436, ... );// L431 -extern int (__sscanf_441) (const char * __restrict ____s_439, const char * __restrict ____format_440, ... );// L433:L434 +extern int (__vfscanf_509) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 +extern int (__vfscanf_513) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 +extern int (__vscanf_520) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 +extern int (__vscanf_522) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 +extern int (__vsscanf_528) (const char * __restrict ____s_524, const char * __restrict ____format_525, ____gnuc_va_list_86 ____arg_526);// L483:L485 -extern int (__vfscanf_468) (__FILE_58 * __restrict ____s_463, const char * __restrict ____format_465, ____gnuc_va_list_82 ____arg_466);// L471:L473 -extern int (__vfscanf_472) (__FILE_58 * __restrict ____s_463, const char * __restrict ____format_465, ____gnuc_va_list_82 ____arg_466);// L471:L473 -extern int (__vscanf_479) (const char * __restrict ____format_476, ____gnuc_va_list_82 ____arg_477);// L479:L480 -extern int (__vscanf_481) (const char * __restrict ____format_476, ____gnuc_va_list_82 ____arg_477);// L479:L480 -extern int (__vsscanf_487) (const char * __restrict ____s_483, const char * __restrict ____format_484, ____gnuc_va_list_82 ____arg_485);// L483:L485 +extern int (__fgetc_563) (__FILE_59 * (____stream_561));// L531 +extern int (__getc_567) (__FILE_59 * (____stream_565));// L532 +extern int (__getchar_569) (void );// L538 +extern int (__getc_unlocked_572) (__FILE_59 * (____stream_570));// L550 +extern int (__getchar_unlocked_574) (void );// L551 +extern int (__fgetc_unlocked_577) (__FILE_59 * (____stream_575));// L561 +extern int (__fputc_582) (int ____c_579, __FILE_59 * (____stream_580));// L573 +extern int (__fputc_584) (int ____c_579, __FILE_59 * (____stream_580));// L573 +extern int (__putc_589) (int ____c_586, __FILE_59 * (____stream_587));// L574 +extern int (__putchar_592) (int ____c_591);// L580 +extern int (__fputc_unlocked_596) (int ____c_593, __FILE_59 * (____stream_594));// L594 +extern int (__putc_unlocked_601) (int ____c_598, __FILE_59 * (____stream_599));// L602 +extern int (__putchar_unlocked_604) (int ____c_603);// L603 +extern int (__getw_607) (__FILE_59 * (____stream_605));// L610 +extern int (__putw_612) (int ____w_609, __FILE_59 * (____stream_610));// L613 +extern char * ((__fgets_618) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_620) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_622) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_624) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern ____ssize_t_49 (____getdelim_631) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 +extern ____ssize_t_49 (____getdelim_635) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 +extern ____ssize_t_49 (__getdelim_644) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 +extern ____ssize_t_49 (__getdelim_648) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 +extern ____ssize_t_49 (__getline_656) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 +extern ____ssize_t_49 (__getline_660) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 +extern int (__fputs_667) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 +extern int (__fputs_669) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 +extern int (__puts_672) (const char * (____s_671));// L695 +extern int (__ungetc_676) (int ____c_673, __FILE_59 * (____stream_674));// L702 +extern int (__fseek_714) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 +extern int (__fseek_716) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 +extern long int (__ftell_720) (__FILE_59 * (____stream_718));// L754 +extern long int (__ftell_722) (__FILE_59 * (____stream_718));// L754 +extern void (__rewind_726) (__FILE_59 * (____stream_724));// L759 +extern int (__fseeko_733) (__FILE_59 * (____stream_728), ____off_t_23 ____off_730, int ____whence_732);// L773 +extern int (__fseeko_744) (__FILE_59 * (____stream_739), ____off64_t_24 ____off_741, int ____whence_743);// L781:L783 +extern ____off_t_23 (__ftello_758) (__FILE_59 * (____stream_737));// L778 +extern ____off_t_23 (__ftello_750) (__FILE_59 * (____stream_737));// L778 +extern int (__fgetpos_766) (__FILE_59 * __restrict ____stream_762, __fpos_t_287 * __restrict ____pos_764);// L798 +extern ____off64_t_24 (__ftello_754) (__FILE_59 * (____stream_748));// L784 +extern int (__fgetpos_778) (__FILE_59 * __restrict ____stream_774, __fpos_t_289 * __restrict ____pos_776);// L806:L807 +extern int (__fsetpos_786) (__FILE_59 * (____stream_770), const __fpos_t_287 * (____pos_772));// L803 +extern int (__fsetpos_790) (__FILE_59 * (____stream_782), const __fpos_t_289 * (____pos_784));// L808:L809 +extern void (__clearerr_796) (__FILE_59 * (____stream_794));// L826 +extern int (__feof_800) (__FILE_59 * (____stream_798));// L828 +extern int (__feof_802) (__FILE_59 * (____stream_798));// L828 +extern int (__ferror_806) (__FILE_59 * (____stream_804));// L830 +extern int (__ferror_808) (__FILE_59 * (____stream_804));// L830 +extern void (__clearerr_unlocked_812) (__FILE_59 * (____stream_810));// L835 +extern int (__feof_unlocked_816) (__FILE_59 * (____stream_814));// L836 +extern int (__feof_unlocked_818) (__FILE_59 * (____stream_814));// L836 +extern int (__ferror_unlocked_822) (__FILE_59 * (____stream_820));// L837 +extern int (__ferror_unlocked_824) (__FILE_59 * (____stream_820));// L837 +extern void (__perror_827) (const char * (____s_826));// L846 +extern void (__perror_828) (const char * (____s_826));// L846 +extern int __sys_nerr_829;// L26 - - -extern int (__fgetc_520) (__FILE_58 * (____stream_518));// L531 -extern int (__getc_523) (__FILE_58 * (____stream_521));// L532 -extern int (__getchar_524) (void );// L538 -extern int (__getc_unlocked_527) (__FILE_58 * (____stream_525));// L550 -extern int (__getchar_unlocked_529) (void );// L551 -extern int (__fgetc_unlocked_532) (__FILE_58 * (____stream_530));// L561 -extern int (__fputc_537) (int ____c_534, __FILE_58 * (____stream_535));// L573 -extern int (__fputc_539) (int ____c_534, __FILE_58 * (____stream_535));// L573 -extern int (__putc_544) (int ____c_541, __FILE_58 * (____stream_542));// L574 -extern int (__putchar_546) (int ____c_545);// L580 -extern int (__fputc_unlocked_550) (int ____c_547, __FILE_58 * (____stream_548));// L594 -extern int (__putc_unlocked_555) (int ____c_552, __FILE_58 * (____stream_553));// L602 -extern int (__putchar_unlocked_558) (int ____c_557);// L603 -extern int (__getw_561) (__FILE_58 * (____stream_559));// L610 -extern int (__putw_566) (int ____w_563, __FILE_58 * (____stream_564));// L613 -extern char * ((__fgets_572) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 -extern char * ((__fgets_574) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 -extern char * ((__fgets_576) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 -extern char * ((__fgets_578) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 -extern ____ssize_t_49 (____getdelim_585) (char * (* __restrict ____lineptr_580), __size_t_1 * __restrict ____n_581, int ____delimiter_582, __FILE_58 * __restrict ____stream_583);// L665:L667 -extern ____ssize_t_49 (____getdelim_587) (char * (* __restrict ____lineptr_580), __size_t_1 * __restrict ____n_581, int ____delimiter_582, __FILE_58 * __restrict ____stream_583);// L665:L667 -extern ____ssize_t_49 (__getdelim_594) (char * (* __restrict ____lineptr_589), __size_t_1 * __restrict ____n_590, int ____delimiter_591, __FILE_58 * __restrict ____stream_592);// L668:L670 -extern ____ssize_t_49 (__getdelim_596) (char * (* __restrict ____lineptr_589), __size_t_1 * __restrict ____n_590, int ____delimiter_591, __FILE_58 * __restrict ____stream_592);// L668:L670 -extern ____ssize_t_49 (__getline_602) (char * (* __restrict ____lineptr_598), __size_t_1 * __restrict ____n_599, __FILE_58 * __restrict ____stream_600);// L678:L680 -extern ____ssize_t_49 (__getline_604) (char * (* __restrict ____lineptr_598), __size_t_1 * __restrict ____n_599, __FILE_58 * __restrict ____stream_600);// L678:L680 -extern int (__fputs_609) (const char * __restrict ____s_606, __FILE_58 * __restrict ____stream_607);// L689 -extern int (__fputs_611) (const char * __restrict ____s_606, __FILE_58 * __restrict ____stream_607);// L689 -extern int (__puts_614) (const char * (____s_613));// L695 -extern int (__ungetc_618) (int ____c_615, __FILE_58 * (____stream_616));// L702 -extern int (__fseek_654) (__FILE_58 * (____stream_650), long int ____off_652, int ____whence_653);// L749 -extern int (__fseek_656) (__FILE_58 * (____stream_650), long int ____off_652, int ____whence_653);// L749 -extern long int (__ftell_660) (__FILE_58 * (____stream_658));// L754 -extern long int (__ftell_662) (__FILE_58 * (____stream_658));// L754 -extern void (__rewind_666) (__FILE_58 * (____stream_664));// L759 -extern int (__fseeko_671) (__FILE_58 * (____stream_667), ____off_t_23 ____off_669, int ____whence_670);// L773 -extern int (__fseeko_679) (__FILE_58 * (____stream_675), ____off64_t_24 ____off_677, int ____whence_678);// L781:L783 -extern ____off_t_23 (__ftello_683) (__FILE_58 * (____stream_673));// L778 -extern ____off_t_23 (__ftello_685) (__FILE_58 * (____stream_673));// L778 -extern int (__fgetpos_693) (__FILE_58 * __restrict ____stream_689, __fpos_t_253 * __restrict ____pos_691);// L798 -extern ____off64_t_24 (__ftello_687) (__FILE_58 * (____stream_681));// L784 -extern int (__fgetpos_705) (__FILE_58 * __restrict ____stream_701, __fpos_t_255 * __restrict ____pos_703);// L806:L807 -extern int (__fsetpos_713) (__FILE_58 * (____stream_697), const __fpos_t_253 * (____pos_699));// L803 -extern int (__fsetpos_717) (__FILE_58 * (____stream_709), const __fpos_t_255 * (____pos_711));// L808:L809 -extern void (__clearerr_723) (__FILE_58 * (____stream_721));// L826 -extern int (__feof_726) (__FILE_58 * (____stream_724));// L828 -extern int (__feof_728) (__FILE_58 * (____stream_724));// L828 -extern int (__ferror_732) (__FILE_58 * (____stream_730));// L830 -extern int (__ferror_734) (__FILE_58 * (____stream_730));// L830 -extern void (__clearerr_unlocked_738) (__FILE_58 * (____stream_736));// L835 -extern int (__feof_unlocked_742) (__FILE_58 * (____stream_740));// L836 -extern int (__feof_unlocked_744) (__FILE_58 * (____stream_740));// L836 -extern int (__ferror_unlocked_748) (__FILE_58 * (____stream_746));// L837 -extern int (__ferror_unlocked_750) (__FILE_58 * (____stream_746));// L837 -extern void (__perror_753) (const char * (____s_752));// L846 -extern void (__perror_754) (const char * (____s_752));// L846 -extern int __sys_nerr_755;// L26 - -extern int (__fileno_761) (__FILE_58 * (____stream_757));// L858 -extern int (__fileno_759) (__FILE_58 * (____stream_757));// L858 -extern int (__fileno_unlocked_767) (__FILE_58 * (____stream_763));// L863 -extern int (__fileno_unlocked_765) (__FILE_58 * (____stream_763));// L863 -extern __FILE_58 * ((__popen_771) (const char * (____command_769), const char * (____modes_770)));// L872 -extern __FILE_58 * ((__popen_773) (const char * (____command_769), const char * (____modes_770)));// L872 -extern int (__pclose_777) (__FILE_58 * (____stream_775));// L878 -extern char * ((__ctermid_780) (char * (____s_779)));// L884 -extern void (__flockfile_783) (__FILE_58 * (____stream_781));// L912 -extern int (__ftrylockfile_787) (__FILE_58 * (____stream_785));// L916 -extern int (__ftrylockfile_789) (__FILE_58 * (____stream_785));// L916 -extern void (__funlockfile_793) (__FILE_58 * (____stream_791));// L919 +extern int (__fileno_835) (__FILE_59 * (____stream_831));// L858 +extern int (__fileno_833) (__FILE_59 * (____stream_831));// L858 +extern int (__fileno_unlocked_841) (__FILE_59 * (____stream_837));// L863 +extern int (__fileno_unlocked_839) (__FILE_59 * (____stream_837));// L863 +extern __FILE_59 * ((__popen_845) (const char * (____command_843), const char * (____modes_844)));// L872 +extern __FILE_59 * ((__popen_847) (const char * (____command_843), const char * (____modes_844)));// L872 +extern int (__pclose_851) (__FILE_59 * (____stream_849));// L878 +extern char * ((__ctermid_854) (char * (____s_853)));// L884 +extern void (__flockfile_857) (__FILE_59 * (____stream_855));// L912 +extern int (__ftrylockfile_861) (__FILE_59 * (____stream_859));// L916 +extern int (__ftrylockfile_863) (__FILE_59 * (____stream_859));// L916 +extern void (__funlockfile_867) (__FILE_59 * (____stream_865));// L919 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ @@ -1167,78 +1311,100 @@ extern void (__funlockfile_793) (__FILE_58 * (____stream_791));// L919 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____sprintf_chk_825) (char * __restrict ____s_821, int ____flag_822, __size_t_1 ____slen_823, const char * __restrict ____format_824, ... );// L23:L24 -extern int (____vsprintf_chk_832) (char * __restrict ____s_826, int ____flag_827, __size_t_1 ____slen_828, const char * __restrict ____format_829, ____gnuc_va_list_82 ____ap_830);// L25:L27 +extern int (____sprintf_chk_899) (char * __restrict ____s_895, int ____flag_896, __size_t_1 ____slen_897, const char * __restrict ____format_898, ... );// L23:L24 +extern int (____vsprintf_chk_906) (char * __restrict ____s_900, int ____flag_901, __size_t_1 ____slen_902, const char * __restrict ____format_903, ____gnuc_va_list_86 ____ap_904);// L25:L27 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____snprintf_chk_846) (char * __restrict ____s_841, __size_t_1 ____n_842, int ____flag_843, __size_t_1 ____slen_844, const char * __restrict ____format_845, ... );// L52:L54 -extern int (____vsnprintf_chk_854) (char * __restrict ____s_847, __size_t_1 ____n_848, int ____flag_849, __size_t_1 ____slen_850, const char * __restrict ____format_851, ____gnuc_va_list_82 ____ap_852);// L55:L57 +extern int (____snprintf_chk_920) (char * __restrict ____s_915, __size_t_1 ____n_916, int ____flag_917, __size_t_1 ____slen_918, const char * __restrict ____format_919, ... );// L52:L54 +extern int (____vsnprintf_chk_928) (char * __restrict ____s_921, __size_t_1 ____n_922, int ____flag_923, __size_t_1 ____slen_924, const char * __restrict ____format_925, ____gnuc_va_list_86 ____ap_926);// L55:L57 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____fprintf_chk_869) (__FILE_58 * __restrict ____stream_865, int ____flag_867, const char * __restrict ____format_868, ... );// L85:L86 -extern int (____printf_chk_873) (int ____flag_871, const char * __restrict ____format_872, ... );// L87 -extern int (____vfprintf_chk_880) (__FILE_58 * __restrict ____stream_874, int ____flag_876, const char * __restrict ____format_877, ____gnuc_va_list_82 ____ap_878);// L88:L89 -extern int (____vprintf_chk_888) (int ____flag_884, const char * __restrict ____format_885, ____gnuc_va_list_82 ____ap_886);// L90:L91 +extern int (____fprintf_chk_943) (__FILE_59 * __restrict ____stream_939, int ____flag_941, const char * __restrict ____format_942, ... );// L85:L86 +extern int (____printf_chk_947) (int ____flag_945, const char * __restrict ____format_946, ... );// L87 +extern int (____vfprintf_chk_954) (__FILE_59 * __restrict ____stream_948, int ____flag_950, const char * __restrict ____format_951, ____gnuc_va_list_86 ____ap_952);// L88:L89 +extern int (____vprintf_chk_962) (int ____flag_958, const char * __restrict ____format_959, ____gnuc_va_list_86 ____ap_960);// L90:L91 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____dprintf_chk_910) (int ____fd_907, int ____flag_908, const char * __restrict ____fmt_909, ... );// L131:L132 -extern int (____vdprintf_chk_916) (int ____fd_911, int ____flag_912, const char * __restrict ____fmt_913, ____gnuc_va_list_82 ____arg_914);// L133:L135 +extern int (____dprintf_chk_984) (int ____fd_981, int ____flag_982, const char * __restrict ____fmt_983, ... );// L131:L132 +extern int (____vdprintf_chk_990) (int ____fd_985, int ____flag_986, const char * __restrict ____fmt_987, ____gnuc_va_list_86 ____arg_988);// L133:L135 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern char * ((____fgets_chk_930) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 -extern char * ((____fgets_chk_932) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 -extern char * ((____fgets_chk_934) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 -extern char * ((____fgets_alias_940) (char * __restrict ____s_936, int ____n_937, __FILE_58 * __restrict ____stream_938));// L243:L245 -extern char * ((____fgets_chk_warn_947) (char * __restrict ____s_942, __size_t_1 ____size_943, int ____n_944, __FILE_58 * __restrict ____stream_945));// L246:L250 +extern char * ((____fgets_chk_1004) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_chk_1006) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_chk_1008) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_alias_1014) (char * __restrict ____s_1010, int ____n_1011, __FILE_59 * __restrict ____stream_1012));// L243:L245 +extern char * ((____fgets_chk_warn_1021) (char * __restrict ____s_1016, __size_t_1 ____size_1017, int ____n_1018, __FILE_59 * __restrict ____stream_1019));// L246:L250 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -void (__apr_signal_block_1019) (int __signal_1018) { +void (__apr_signal_block_1093) (int __signal_1092) { -if (__static_condition_default_1021) { +if (__static_condition_default_1096) { { { - __printf_383 ("%d\n", __signal_1018 ) ; // L9 + __printf_421 ("%d\n", __signal_1092 ) ; // L9 } } } } -void (__apr_signal_block_1020) (int __signal_1018) { +void (__apr_signal_block_1094) (int __signal_1092) { -if (__static_condition_default_1022) { +if (__static_condition_default_1097) { { { - __printf_383 ("%d\n", __signal_1018 ) ; // L9 + __printf_421 ("%d\n", __signal_1092 ) ; // L9 } } } } -int (__main_1023) (void ) { +void (__apr_signal_block_1095) (int __signal_1092) { + +if (__static_condition_default_1098) { { { -if (__static_condition_default_1021) { - __apr_signal_block_1019 (1) ; // L14 +__static_type_error("type error") ; // L9 +} +} + + +} +} +int (__main_1099) (void ) { + +{ +{ + + + +if (__static_condition_default_1100) { + __apr_signal_block_1093 (1) ; // L14 +} +if (__static_condition_default_1101) { + __apr_signal_block_1094 (1) ; // L14 +} +if (__static_condition_default_1102) { + __apr_signal_block_1095 (1) ; // L14 } -if (__static_condition_default_1022) { - __apr_signal_block_1020 (1) ; // L14 +if (__static_condition_default_1103) { +__static_type_error("type error : no valid expression"); // L14 } return 0 ;// L15 } diff --git a/fonda/cpp_testsuite/varBugs/APACHE/1f46088b38d.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/1f46088b38d.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/1f46088b38d.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/1f46088b38d.inferres b/fonda/cpp_testsuite/varBugs/APACHE/1f46088b38d.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c index 3eb5e61b..f3f96f65 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c @@ -7,87 +7,95 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_394; extern const bool __static_condition_default_341; -extern const bool __static_condition_default_984; -extern const bool __static_condition_default_977; -extern const bool __static_condition_default_308; -extern const bool __static_condition_default_1013; -extern const bool __static_condition_default_429; -extern const bool __static_condition_default_1026; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_240; -extern const bool __static_condition_default_349; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_993; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_804; -extern const bool __static_condition_default_420; -extern const bool __static_condition_default_1032; -extern const bool __static_condition_default_379; -extern const bool __static_condition_default_631; -extern const bool __static_condition_default_1038; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_738; +extern const bool __static_condition_default_67; +extern const bool __static_condition_default_1037; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_261; +extern const bool __static_condition_default_627; +extern const bool __static_condition_default_1047; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_243; +extern const bool __static_condition_default_604; +extern const bool __static_condition_default_1092; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_1102; +extern const bool __static_condition_default_426; +extern const bool __static_condition_default_1024; +extern const bool __static_condition_default_237; +extern const bool __static_condition_default_1093; +extern const bool __static_condition_default_423; +extern const bool __static_condition_default_819; extern const bool __static_condition_default_293; -extern const bool __static_condition_default_581; extern const bool __static_condition_default_361; -extern const bool __static_condition_default_352; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_1100; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_1077; +extern const bool __static_condition_default_1099; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_818; +extern const bool __static_condition_default_1082; +extern const bool __static_condition_default_1098; +extern const bool __static_condition_default_804; +extern const bool __static_condition_default_1074; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_240; +extern const bool __static_condition_default_1054; +extern const bool __static_condition_default_349; +extern const bool __static_condition_default_594; +extern const bool __static_condition_default_1094; +extern const bool __static_condition_default_1025; +extern const bool __static_condition_default_806; +extern const bool __static_condition_default_276; +extern const bool __static_condition_default_414; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_1053; +extern const bool __static_condition_default_285; +extern const bool __static_condition_default_273; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_1030; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_1096; extern const bool __static_condition_default_325; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_1048; +extern const bool __static_condition_default_579; +extern const bool __static_condition_default_1086; extern const bool __static_condition_default_296; -extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_805; +extern const bool __static_condition_default_305; +extern const bool __static_condition_default_379; extern const bool __static_condition_default_1031; -extern const bool __static_condition_default_237; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_302; +extern const bool __static_condition_default_581; +extern const bool __static_condition_default_308; +extern const bool __static_condition_default_595; extern const bool __static_condition_default_60; +extern const bool __static_condition_default_378; +extern const bool __static_condition_default_1083; +extern const bool __static_condition_default_252; +extern const bool __static_condition_default_420; +extern const bool __static_condition_default_299; extern const bool __static_condition_default_629; -extern const bool __static_condition_default_302; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_1010; -extern const bool __static_condition_default_276; -extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_1034; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_258; +extern const bool __static_condition_default_352; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_395; extern const bool __static_condition_default_279; -extern const bool __static_condition_default_583; -extern const bool __static_condition_default_243; -extern const bool __static_condition_default_803; -extern const bool __static_condition_default_1029; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_606; -extern const bool __static_condition_default_992; -extern const bool __static_condition_default_305; -extern const bool __static_condition_default_261; -extern const bool __static_condition_default_285; -extern const bool __static_condition_default_1017; extern const bool __static_condition_default_282; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_1025; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_234; -extern const bool __static_condition_default_67; -extern const bool __static_condition_default_596; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_378; -extern const bool __static_condition_default_423; -extern const bool __static_condition_default_394; +extern const bool __static_condition_default_1095; +extern const bool __static_condition_default_1097; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_429; extern const bool __static_condition_default_215; -extern const bool __static_condition_default_997; -extern const bool __static_condition_default_252; -extern const bool __static_condition_default_1033; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_814; -extern const bool __static_condition_default_273; -extern const bool __static_condition_default_604; -extern const bool __static_condition_default_426; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_805; -extern const bool __static_condition_default_1030; -extern const bool __static_condition_default_414; +extern const bool __static_condition_default_234; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -363,261 +371,293 @@ __static_renaming("__seed48_482", "seed48"); __static_renaming("__lcong48_484", "lcong48"); __static_renaming("__malloc_486", "malloc"); __static_renaming("__malloc_487", "malloc"); -__static_renaming("__malloc_488", "malloc"); -__static_renaming("__malloc_489", "malloc"); -__static_renaming("__calloc_492", "calloc"); -__static_renaming("__calloc_493", "calloc"); -__static_renaming("__realloc_496", "realloc"); -__static_renaming("__free_498", "free"); -__static_renaming("__cfree_500", "cfree"); -__static_renaming("__alloca_502", "alloca"); -__static_renaming("__valloc_504", "valloc"); -__static_renaming("__valloc_505", "valloc"); -__static_renaming("__posix_memalign_509", "posix_memalign"); -__static_renaming("__posix_memalign_510", "posix_memalign"); +__static_renaming("__calloc_490", "calloc"); +__static_renaming("__calloc_491", "calloc"); +__static_renaming("__realloc_494", "realloc"); +__static_renaming("__free_496", "free"); +__static_renaming("__cfree_498", "cfree"); +__static_renaming("__alloca_500", "alloca"); +__static_renaming("__valloc_502", "valloc"); +__static_renaming("__valloc_503", "valloc"); +__static_renaming("__posix_memalign_507", "posix_memalign"); +__static_renaming("__posix_memalign_508", "posix_memalign"); +__static_renaming("__aligned_alloc_511", "aligned_alloc"); +__static_renaming("__aligned_alloc_512", "aligned_alloc"); __static_renaming("__aligned_alloc_513", "aligned_alloc"); __static_renaming("__aligned_alloc_514", "aligned_alloc"); -__static_renaming("__aligned_alloc_515", "aligned_alloc"); -__static_renaming("__aligned_alloc_516", "aligned_alloc"); -__static_renaming("__abort_517", "abort"); -__static_renaming("__atexit_519", "atexit"); -__static_renaming("__at_quick_exit_521", "at_quick_exit"); -__static_renaming("__on_exit_526", "on_exit"); -__static_renaming("__exit_528", "exit"); -__static_renaming("__exit_529", "exit"); -__static_renaming("__quick_exit_531", "quick_exit"); -__static_renaming("___Exit_533", "_Exit"); -__static_renaming("__getenv_535", "getenv"); -__static_renaming("__getenv_536", "getenv"); -__static_renaming("__putenv_538", "putenv"); -__static_renaming("__setenv_542", "setenv"); -__static_renaming("__unsetenv_544", "unsetenv"); -__static_renaming("__clearenv_545", "clearenv"); -__static_renaming("__mktemp_547", "mktemp"); +__static_renaming("__abort_515", "abort"); +__static_renaming("__atexit_517", "atexit"); +__static_renaming("__at_quick_exit_519", "at_quick_exit"); +__static_renaming("__on_exit_524", "on_exit"); +__static_renaming("__exit_526", "exit"); +__static_renaming("__exit_527", "exit"); +__static_renaming("__quick_exit_529", "quick_exit"); +__static_renaming("___Exit_531", "_Exit"); +__static_renaming("__getenv_533", "getenv"); +__static_renaming("__getenv_534", "getenv"); +__static_renaming("__putenv_536", "putenv"); +__static_renaming("__setenv_540", "setenv"); +__static_renaming("__unsetenv_542", "unsetenv"); +__static_renaming("__clearenv_543", "clearenv"); +__static_renaming("__mktemp_545", "mktemp"); +__static_renaming("__mkstemp_548", "mkstemp"); +__static_renaming("__mkstemp_549", "mkstemp"); __static_renaming("__mkstemp_550", "mkstemp"); __static_renaming("__mkstemp_551", "mkstemp"); -__static_renaming("__mkstemp_552", "mkstemp"); -__static_renaming("__mkstemp_553", "mkstemp"); +__static_renaming("__mkstemps_556", "mkstemps"); +__static_renaming("__mkstemps_557", "mkstemps"); __static_renaming("__mkstemps_558", "mkstemps"); __static_renaming("__mkstemps_559", "mkstemps"); -__static_renaming("__mkstemps_560", "mkstemps"); -__static_renaming("__mkstemps_561", "mkstemps"); -__static_renaming("__mkdtemp_563", "mkdtemp"); -__static_renaming("__mkdtemp_564", "mkdtemp"); +__static_renaming("__mkdtemp_561", "mkdtemp"); +__static_renaming("__mkdtemp_562", "mkdtemp"); +__static_renaming("__system_564", "system"); +__static_renaming("__system_565", "system"); __static_renaming("__system_566", "system"); __static_renaming("__system_567", "system"); -__static_renaming("__system_568", "system"); -__static_renaming("__system_569", "system"); -__static_renaming("__realpath_572", "realpath"); -__static_renaming("__realpath_573", "realpath"); -__static_renaming("____compar_fn_t_574", "__compar_fn_t"); +__static_renaming("__realpath_570", "realpath"); +__static_renaming("__realpath_571", "realpath"); +__static_renaming("____compar_fn_t_572", "__compar_fn_t"); +__static_renaming("__bsearch_580", "bsearch"); __static_renaming("__bsearch_582", "bsearch"); -__static_renaming("__bsearch_584", "bsearch"); -__static_renaming("____l_591", "__l"); -__static_renaming("____u_592", "__u"); -__static_renaming("____idx_593", "__idx"); -__static_renaming("____p_594", "__p"); -__static_renaming("____comparison_595", "__comparison"); +__static_renaming("____l_589", "__l"); +__static_renaming("____u_590", "__u"); +__static_renaming("____idx_591", "__idx"); +__static_renaming("____p_592", "__p"); +__static_renaming("____comparison_593", "__comparison"); +__static_renaming("__qsort_601", "qsort"); __static_renaming("__qsort_603", "qsort"); -__static_renaming("__qsort_605", "qsort"); -__static_renaming("__abs_608", "abs"); -__static_renaming("__abs_609", "abs"); -__static_renaming("__labs_611", "labs"); -__static_renaming("__labs_612", "labs"); -__static_renaming("__llabs_614", "llabs"); -__static_renaming("__llabs_615", "llabs"); -__static_renaming("__div_618", "div"); -__static_renaming("__div_619", "div"); +__static_renaming("__abs_606", "abs"); +__static_renaming("__abs_607", "abs"); +__static_renaming("__labs_609", "labs"); +__static_renaming("__labs_610", "labs"); +__static_renaming("__llabs_612", "llabs"); +__static_renaming("__llabs_613", "llabs"); +__static_renaming("__div_616", "div"); +__static_renaming("__div_617", "div"); +__static_renaming("__ldiv_620", "ldiv"); __static_renaming("__ldiv_622", "ldiv"); -__static_renaming("__ldiv_624", "ldiv"); +__static_renaming("__lldiv_626", "lldiv"); __static_renaming("__lldiv_628", "lldiv"); -__static_renaming("__lldiv_630", "lldiv"); -__static_renaming("__ecvt_636", "ecvt"); -__static_renaming("__ecvt_637", "ecvt"); -__static_renaming("__fcvt_642", "fcvt"); -__static_renaming("__fcvt_643", "fcvt"); -__static_renaming("__gcvt_647", "gcvt"); -__static_renaming("__gcvt_648", "gcvt"); -__static_renaming("__qecvt_653", "qecvt"); -__static_renaming("__qecvt_654", "qecvt"); -__static_renaming("__qfcvt_659", "qfcvt"); -__static_renaming("__qfcvt_660", "qfcvt"); -__static_renaming("__qgcvt_664", "qgcvt"); -__static_renaming("__qgcvt_665", "qgcvt"); -__static_renaming("__ecvt_r_672", "ecvt_r"); -__static_renaming("__fcvt_r_679", "fcvt_r"); -__static_renaming("__qecvt_r_686", "qecvt_r"); -__static_renaming("__qfcvt_r_693", "qfcvt_r"); -__static_renaming("__mblen_696", "mblen"); -__static_renaming("__mblen_697", "mblen"); -__static_renaming("__mbtowc_701", "mbtowc"); -__static_renaming("__wctomb_704", "wctomb"); -__static_renaming("__mbstowcs_708", "mbstowcs"); -__static_renaming("__wcstombs_712", "wcstombs"); -__static_renaming("__rpmatch_714", "rpmatch"); -__static_renaming("__rpmatch_715", "rpmatch"); -__static_renaming("__getsubopt_719", "getsubopt"); -__static_renaming("__getsubopt_720", "getsubopt"); -__static_renaming("__getloadavg_723", "getloadavg"); -__static_renaming("____realpath_chk_728", "__realpath_chk"); -__static_renaming("____realpath_alias_731", "__realpath_alias"); -__static_renaming("____realpath_chk_warn_735", "__realpath_chk_warn"); -__static_renaming("____ptsname_r_chk_743", "__ptsname_r_chk"); -__static_renaming("____ptsname_r_alias_747", "__ptsname_r_alias"); -__static_renaming("____ptsname_r_chk_warn_752", "__ptsname_r_chk_warn"); -__static_renaming("____wctomb_chk_760", "__wctomb_chk"); -__static_renaming("____wctomb_alias_763", "__wctomb_alias"); -__static_renaming("____mbstowcs_chk_770", "__mbstowcs_chk"); -__static_renaming("____mbstowcs_alias_774", "__mbstowcs_alias"); -__static_renaming("____mbstowcs_chk_warn_779", "__mbstowcs_chk_warn"); -__static_renaming("____wcstombs_chk_787", "__wcstombs_chk"); -__static_renaming("____wcstombs_alias_791", "__wcstombs_alias"); -__static_renaming("____wcstombs_chk_warn_796", "__wcstombs_chk_warn"); -__static_renaming("__memmove_809", "memmove"); -__static_renaming("__memset_818", "memset"); -__static_renaming("__memset_819", "memset"); -__static_renaming("__memcmp_823", "memcmp"); -__static_renaming("__memchr_827", "memchr"); -__static_renaming("__strcpy_830", "strcpy"); -__static_renaming("__strncpy_834", "strncpy"); -__static_renaming("__strcat_837", "strcat"); -__static_renaming("__strncat_841", "strncat"); -__static_renaming("__strcmp_844", "strcmp"); -__static_renaming("__strncmp_848", "strncmp"); -__static_renaming("__strcoll_851", "strcoll"); -__static_renaming("__strxfrm_855", "strxfrm"); -__static_renaming("____locale_t_863", "__locale_t"); -__static_renaming("__locale_t_864", "locale_t"); -__static_renaming("__strcoll_l_868", "strcoll_l"); -__static_renaming("__strxfrm_l_873", "strxfrm_l"); -__static_renaming("__strdup_875", "strdup"); -__static_renaming("__strndup_878", "strndup"); -__static_renaming("__strchr_881", "strchr"); -__static_renaming("__strchr_882", "strchr"); -__static_renaming("__strrchr_885", "strrchr"); -__static_renaming("__strcspn_888", "strcspn"); -__static_renaming("__strspn_891", "strspn"); -__static_renaming("__strpbrk_894", "strpbrk"); -__static_renaming("__strstr_897", "strstr"); -__static_renaming("__strtok_900", "strtok"); -__static_renaming("____strtok_r_904", "__strtok_r"); -__static_renaming("__strtok_r_908", "strtok_r"); -__static_renaming("__strlen_910", "strlen"); -__static_renaming("__strlen_911", "strlen"); -__static_renaming("__strnlen_914", "strnlen"); -__static_renaming("__strerror_916", "strerror"); -__static_renaming("__strerror_917", "strerror"); -__static_renaming("__strerror_r_921", "strerror_r"); -__static_renaming("__strerror_l_924", "strerror_l"); -__static_renaming("____bzero_927", "__bzero"); -__static_renaming("____bzero_928", "__bzero"); -__static_renaming("__bcopy_932", "bcopy"); -__static_renaming("__bzero_935", "bzero"); -__static_renaming("__bcmp_939", "bcmp"); -__static_renaming("__index_942", "index"); -__static_renaming("__rindex_945", "rindex"); -__static_renaming("__ffs_947", "ffs"); -__static_renaming("__strcasecmp_950", "strcasecmp"); -__static_renaming("__strncasecmp_954", "strncasecmp"); -__static_renaming("__strsep_957", "strsep"); -__static_renaming("__strsignal_959", "strsignal"); -__static_renaming("____stpcpy_962", "__stpcpy"); -__static_renaming("__stpcpy_965", "stpcpy"); -__static_renaming("____stpncpy_969", "__stpncpy"); -__static_renaming("__stpncpy_973", "stpncpy"); -__static_renaming("____stpncpy_chk_1002", "__stpncpy_chk"); -__static_renaming("____stpncpy_alias_1006", "__stpncpy_alias"); -__static_renaming("__sc_1018", "sc"); -__static_renaming("__sc_1019", "sc"); -__static_renaming("__sc_1020", "sc"); -__static_renaming("__sc_1021", "sc"); -__static_renaming("__ssl_init_ModuleKill_1023", "ssl_init_ModuleKill"); -__static_renaming("__ssl_init_ModuleKill_1024", "ssl_init_ModuleKill"); -__static_renaming("__main_1037", "main"); +__static_renaming("__ecvt_634", "ecvt"); +__static_renaming("__ecvt_635", "ecvt"); +__static_renaming("__fcvt_640", "fcvt"); +__static_renaming("__fcvt_641", "fcvt"); +__static_renaming("__gcvt_645", "gcvt"); +__static_renaming("__gcvt_646", "gcvt"); +__static_renaming("__qecvt_651", "qecvt"); +__static_renaming("__qecvt_652", "qecvt"); +__static_renaming("__qfcvt_657", "qfcvt"); +__static_renaming("__qfcvt_658", "qfcvt"); +__static_renaming("__qgcvt_662", "qgcvt"); +__static_renaming("__qgcvt_663", "qgcvt"); +__static_renaming("__ecvt_r_670", "ecvt_r"); +__static_renaming("__fcvt_r_677", "fcvt_r"); +__static_renaming("__qecvt_r_684", "qecvt_r"); +__static_renaming("__qfcvt_r_691", "qfcvt_r"); +__static_renaming("__mblen_694", "mblen"); +__static_renaming("__mblen_695", "mblen"); +__static_renaming("__mbtowc_699", "mbtowc"); +__static_renaming("__wctomb_702", "wctomb"); +__static_renaming("__mbstowcs_706", "mbstowcs"); +__static_renaming("__wcstombs_710", "wcstombs"); +__static_renaming("__rpmatch_712", "rpmatch"); +__static_renaming("__rpmatch_713", "rpmatch"); +__static_renaming("__getsubopt_717", "getsubopt"); +__static_renaming("__getsubopt_718", "getsubopt"); +__static_renaming("__getloadavg_721", "getloadavg"); +__static_renaming("____realpath_chk_726", "__realpath_chk"); +__static_renaming("____realpath_alias_729", "__realpath_alias"); +__static_renaming("____realpath_chk_warn_733", "__realpath_chk_warn"); +__static_renaming("____ptsname_r_chk_741", "__ptsname_r_chk"); +__static_renaming("____ptsname_r_alias_745", "__ptsname_r_alias"); +__static_renaming("____ptsname_r_chk_warn_750", "__ptsname_r_chk_warn"); +__static_renaming("____wctomb_chk_758", "__wctomb_chk"); +__static_renaming("____wctomb_alias_761", "__wctomb_alias"); +__static_renaming("____mbstowcs_chk_768", "__mbstowcs_chk"); +__static_renaming("____mbstowcs_alias_772", "__mbstowcs_alias"); +__static_renaming("____mbstowcs_chk_warn_777", "__mbstowcs_chk_warn"); +__static_renaming("____wcstombs_chk_785", "__wcstombs_chk"); +__static_renaming("____wcstombs_alias_789", "__wcstombs_alias"); +__static_renaming("____wcstombs_chk_warn_794", "__wcstombs_chk_warn"); +__static_renaming("__ptrdiff_t_798", "ptrdiff_t"); +__static_renaming("__size_t_799", "size_t"); +__static_renaming("__memmove_811", "memmove"); +__static_renaming("__memmove_812", "memmove"); +__static_renaming("__memset_824", "memset"); +__static_renaming("__memset_825", "memset"); +__static_renaming("__memset_826", "memset"); +__static_renaming("__memset_827", "memset"); +__static_renaming("__memcmp_832", "memcmp"); +__static_renaming("__memcmp_833", "memcmp"); +__static_renaming("__memchr_838", "memchr"); +__static_renaming("__memchr_839", "memchr"); +__static_renaming("__strcpy_842", "strcpy"); +__static_renaming("__strncpy_847", "strncpy"); +__static_renaming("__strncpy_848", "strncpy"); +__static_renaming("__strcat_851", "strcat"); +__static_renaming("__strncat_856", "strncat"); +__static_renaming("__strncat_857", "strncat"); +__static_renaming("__strcmp_860", "strcmp"); +__static_renaming("__strncmp_865", "strncmp"); +__static_renaming("__strncmp_866", "strncmp"); +__static_renaming("__strcoll_869", "strcoll"); +__static_renaming("__strxfrm_874", "strxfrm"); +__static_renaming("__strxfrm_875", "strxfrm"); +__static_renaming("____locale_t_883", "__locale_t"); +__static_renaming("__locale_t_884", "locale_t"); +__static_renaming("__strcoll_l_888", "strcoll_l"); +__static_renaming("__strxfrm_l_894", "strxfrm_l"); +__static_renaming("__strxfrm_l_895", "strxfrm_l"); +__static_renaming("__strdup_897", "strdup"); +__static_renaming("__strndup_901", "strndup"); +__static_renaming("__strndup_902", "strndup"); +__static_renaming("__strchr_905", "strchr"); +__static_renaming("__strrchr_908", "strrchr"); +__static_renaming("__strcspn_911", "strcspn"); +__static_renaming("__strcspn_912", "strcspn"); +__static_renaming("__strspn_915", "strspn"); +__static_renaming("__strspn_916", "strspn"); +__static_renaming("__strpbrk_919", "strpbrk"); +__static_renaming("__strstr_922", "strstr"); +__static_renaming("__strtok_925", "strtok"); +__static_renaming("____strtok_r_929", "__strtok_r"); +__static_renaming("__strtok_r_933", "strtok_r"); +__static_renaming("__strlen_935", "strlen"); +__static_renaming("__strlen_936", "strlen"); +__static_renaming("__strlen_937", "strlen"); +__static_renaming("__strlen_938", "strlen"); +__static_renaming("__strnlen_942", "strnlen"); +__static_renaming("__strnlen_943", "strnlen"); +__static_renaming("__strerror_945", "strerror"); +__static_renaming("__strerror_946", "strerror"); +__static_renaming("__strerror_r_951", "strerror_r"); +__static_renaming("__strerror_r_952", "strerror_r"); +__static_renaming("__strerror_l_955", "strerror_l"); +__static_renaming("____bzero_959", "__bzero"); +__static_renaming("____bzero_960", "__bzero"); +__static_renaming("____bzero_961", "__bzero"); +__static_renaming("____bzero_962", "__bzero"); +__static_renaming("__bcopy_967", "bcopy"); +__static_renaming("__bcopy_968", "bcopy"); +__static_renaming("__bzero_972", "bzero"); +__static_renaming("__bzero_973", "bzero"); +__static_renaming("__bcmp_978", "bcmp"); +__static_renaming("__bcmp_979", "bcmp"); +__static_renaming("__index_982", "index"); +__static_renaming("__rindex_985", "rindex"); +__static_renaming("__ffs_987", "ffs"); +__static_renaming("__strcasecmp_990", "strcasecmp"); +__static_renaming("__strncasecmp_995", "strncasecmp"); +__static_renaming("__strncasecmp_996", "strncasecmp"); +__static_renaming("__strsep_999", "strsep"); +__static_renaming("__strsignal_1001", "strsignal"); +__static_renaming("____stpcpy_1004", "__stpcpy"); +__static_renaming("__stpcpy_1007", "stpcpy"); +__static_renaming("____stpncpy_1012", "__stpncpy"); +__static_renaming("____stpncpy_1013", "__stpncpy"); +__static_renaming("__stpncpy_1018", "stpncpy"); +__static_renaming("__stpncpy_1019", "stpncpy"); +__static_renaming("____stpncpy_chk_1061", "__stpncpy_chk"); +__static_renaming("____stpncpy_chk_1062", "__stpncpy_chk"); +__static_renaming("____stpncpy_alias_1067", "__stpncpy_alias"); +__static_renaming("____stpncpy_alias_1068", "__stpncpy_alias"); +__static_renaming("__sc_1084", "sc"); +__static_renaming("__sc_1085", "sc"); +__static_renaming("__ssl_init_ModuleKill_1087", "ssl_init_ModuleKill"); +__static_renaming("__ssl_init_ModuleKill_1088", "ssl_init_ModuleKill"); +__static_renaming("__main_1101", "main"); -__static_condition_renaming("__static_condition_default_60", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_67", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_215", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_234", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __u_char_defined)"); -__static_condition_renaming("__static_condition_default_237", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __u_char_defined)"); -__static_condition_renaming("__static_condition_default_240", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __u_char_defined)"); -__static_condition_renaming("__static_condition_default_243", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ino_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ino_t_defined)"); -__static_condition_renaming("__static_condition_default_246", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ino_t_defined)"); -__static_condition_renaming("__static_condition_default_249", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_252", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_255", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_258", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_261", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __nlink_t_defined)"); -__static_condition_renaming("__static_condition_default_264", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __nlink_t_defined)"); -__static_condition_renaming("__static_condition_default_267", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __nlink_t_defined)"); -__static_condition_renaming("__static_condition_default_270", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_273", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_276", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_279", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); -__static_condition_renaming("__static_condition_default_282", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __id_t_defined)"); -__static_condition_renaming("__static_condition_default_285", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_288", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_293", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_296", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __daddr_t_defined)"); -__static_condition_renaming("__static_condition_default_299", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __clock_t_defined)"); -__static_condition_renaming("__static_condition_default_302", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __time_t_defined)"); -__static_condition_renaming("__static_condition_default_305", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __clockid_t_defined)"); -__static_condition_renaming("__static_condition_default_308", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __timer_t_defined)"); -__static_condition_renaming("__static_condition_default_325", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_341", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_349", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_352", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __suseconds_t_defined)"); -__static_condition_renaming("__static_condition_default_361", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_378", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_379", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined _STRUCT_TIMEVAL)"); -__static_condition_renaming("__static_condition_default_394", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_395", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __timespec_defined)"); -__static_condition_renaming("__static_condition_default_414", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blksize_t_defined)"); -__static_condition_renaming("__static_condition_default_417", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blkcnt_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blkcnt_t_defined)"); -__static_condition_renaming("__static_condition_default_420", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_423", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blkcnt_t_defined)"); -__static_condition_renaming("__static_condition_default_426", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_429", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_432", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_581", "!(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_583", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_596", "!(defined __need_malloc_and_calloc) && (defined __USE_EXTERN_INLINES) && !(defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_597", "!(defined __need_malloc_and_calloc) && (defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_604", "!(defined __need_malloc_and_calloc) && !(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_606", "!(defined __need_malloc_and_calloc) && (defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_623", "!(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_625", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_629", "!(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_631", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_738", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_803", "!(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_804", "(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_805", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_814", "!(defined __STRICT_ANSI__)"); -__static_condition_renaming("__static_condition_default_977", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_984", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_992", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_993", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_997", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1010", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1013", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1017", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1022", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1025", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1026", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1027", "!(defined _FORTIFY_SOURCE) && (defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1028", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined SHARED_MODULE) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined SHARED_MODULE) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined SHARED_MODULE) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined SHARED_MODULE)"); -__static_condition_renaming("__static_condition_default_1029", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined SHARED_MODULE) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined SHARED_MODULE) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined SHARED_MODULE) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined SHARED_MODULE) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need_malloc_and_calloc) && (defined SHARED_MODULE) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need_malloc_and_calloc) && (defined SHARED_MODULE) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need_malloc_and_calloc) && (defined SHARED_MODULE) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && (defined SHARED_MODULE)"); -__static_condition_renaming("__static_condition_default_1030", "!(defined _FORTIFY_SOURCE) && !(defined SHARED_MODULE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined SHARED_MODULE) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined SHARED_MODULE) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined SHARED_MODULE)"); -__static_condition_renaming("__static_condition_default_1031", "!(defined _FORTIFY_SOURCE) && (defined SHARED_MODULE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined SHARED_MODULE) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined SHARED_MODULE) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined SHARED_MODULE)"); -__static_condition_renaming("__static_condition_default_1032", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1033", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined SHARED_MODULE)"); -__static_condition_renaming("__static_condition_default_1034", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined SHARED_MODULE) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && (defined SHARED_MODULE)"); -__static_condition_renaming("__static_condition_default_1035", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined SHARED_MODULE)"); -__static_condition_renaming("__static_condition_default_1036", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined SHARED_MODULE)"); -__static_condition_renaming("__static_condition_default_1038", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_60", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_67", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_215", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_234", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __u_char_defined)"); +__static_condition_renaming("__static_condition_default_237", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __u_char_defined)"); +__static_condition_renaming("__static_condition_default_240", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __u_char_defined)"); +__static_condition_renaming("__static_condition_default_243", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ino_t_defined)"); +__static_condition_renaming("__static_condition_default_246", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ino_t_defined) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ino_t_defined)"); +__static_condition_renaming("__static_condition_default_249", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_252", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_255", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_258", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_261", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __nlink_t_defined)"); +__static_condition_renaming("__static_condition_default_264", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __nlink_t_defined)"); +__static_condition_renaming("__static_condition_default_267", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __nlink_t_defined)"); +__static_condition_renaming("__static_condition_default_270", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_273", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_276", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_279", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_282", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __id_t_defined)"); +__static_condition_renaming("__static_condition_default_285", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_288", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_293", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_296", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_299", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __clock_t_defined)"); +__static_condition_renaming("__static_condition_default_302", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __time_t_defined)"); +__static_condition_renaming("__static_condition_default_305", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __clockid_t_defined)"); +__static_condition_renaming("__static_condition_default_308", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __timer_t_defined)"); +__static_condition_renaming("__static_condition_default_325", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_341", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_349", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_352", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __suseconds_t_defined)"); +__static_condition_renaming("__static_condition_default_361", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_378", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_379", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_394", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_395", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_414", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blksize_t_defined)"); +__static_condition_renaming("__static_condition_default_417", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blkcnt_t_defined) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blkcnt_t_defined)"); +__static_condition_renaming("__static_condition_default_420", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_423", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blkcnt_t_defined)"); +__static_condition_renaming("__static_condition_default_426", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_429", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_432", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_579", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_581", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_594", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __USE_EXTERN_INLINES) && !(defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_595", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_602", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_604", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_621", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_623", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_627", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_629", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_736", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_804", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_805", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && (defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_806", "(defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_818", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__)"); +__static_condition_renaming("__static_condition_default_819", "(defined _STDLIB_H) && !(defined __STRICT_ANSI__)"); +__static_condition_renaming("__static_condition_default_1024", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1025", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1030", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1031", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1036", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1037", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1047", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1048", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1053", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1054", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1073", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1074", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1077", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1082", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1083", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1086", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined __malloc_and_calloc_defined) || (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_1089", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1090", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __malloc_and_calloc_defined) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __malloc_and_calloc_defined) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __malloc_and_calloc_defined) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __malloc_and_calloc_defined)"); +__static_condition_renaming("__static_condition_default_1091", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __malloc_and_calloc_defined) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __malloc_and_calloc_defined) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __malloc_and_calloc_defined) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __malloc_and_calloc_defined) || (defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) || (defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1092", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined SHARED_MODULE) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined SHARED_MODULE) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined SHARED_MODULE) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined SHARED_MODULE) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined SHARED_MODULE) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined SHARED_MODULE) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined SHARED_MODULE) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined SHARED_MODULE)"); +__static_condition_renaming("__static_condition_default_1093", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need_malloc_and_calloc) && (defined SHARED_MODULE) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need_malloc_and_calloc) && (defined SHARED_MODULE) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need_malloc_and_calloc) && (defined SHARED_MODULE) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && (defined SHARED_MODULE) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined SHARED_MODULE) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need_malloc_and_calloc) && (defined SHARED_MODULE) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined SHARED_MODULE) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need_malloc_and_calloc) && (defined SHARED_MODULE) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined SHARED_MODULE) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need_malloc_and_calloc) && (defined SHARED_MODULE) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined SHARED_MODULE) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && (defined SHARED_MODULE) || (defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && (defined SHARED_MODULE) || (defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined SHARED_MODULE) || (defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined SHARED_MODULE) || (defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined SHARED_MODULE)"); +__static_condition_renaming("__static_condition_default_1094", "!(defined _FORTIFY_SOURCE) && !(defined SHARED_MODULE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined SHARED_MODULE) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined SHARED_MODULE) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined SHARED_MODULE)"); +__static_condition_renaming("__static_condition_default_1095", "!(defined _FORTIFY_SOURCE) && (defined SHARED_MODULE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined SHARED_MODULE) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined SHARED_MODULE) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined SHARED_MODULE)"); +__static_condition_renaming("__static_condition_default_1096", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1097", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined SHARED_MODULE) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined SHARED_MODULE)"); +__static_condition_renaming("__static_condition_default_1098", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && (defined SHARED_MODULE) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined SHARED_MODULE) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && (defined SHARED_MODULE) || (defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined SHARED_MODULE)"); +__static_condition_renaming("__static_condition_default_1099", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined SHARED_MODULE)"); +__static_condition_renaming("__static_condition_default_1100", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined SHARED_MODULE)"); +__static_condition_renaming("__static_condition_default_1102", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined __need_malloc_and_calloc) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || (defined _STDLIB_H) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO)"); -if (__static_condition_default_1038) { +if (__static_condition_default_1102) { __static_parse_error("Unable to parse"); } }; @@ -794,10 +834,10 @@ typedef ____loff_t_59 __loff_t_235;// L44 typedef ____loff_t_214 __loff_t_236;// L44 typedef ____loff_t_59 __loff_t_238;// L44 typedef ____loff_t_214 __loff_t_239;// L44 -typedef ____ino_t_26 __ino_t_241;// L48 -typedef ____ino_t_181 __ino_t_242;// L48 -typedef ____ino64_t_27 __ino_t_244;// L50 -typedef ____ino64_t_182 __ino_t_245;// L50 +typedef ____ino64_t_27 __ino_t_241;// L50 +typedef ____ino64_t_182 __ino_t_242;// L50 +typedef ____ino_t_26 __ino_t_244;// L48 +typedef ____ino_t_181 __ino_t_245;// L48 typedef ____dev_t_23 __dev_t_247;// L60 typedef ____dev_t_178 __dev_t_248;// L60 typedef ____gid_t_25 __gid_t_250;// L65 @@ -812,10 +852,10 @@ typedef ____uid_t_24 __uid_t_262;// L80 typedef ____uid_t_179 __uid_t_263;// L80 typedef ____uid_t_24 __uid_t_265;// L80 typedef ____uid_t_179 __uid_t_266;// L80 -typedef ____off_t_30 __off_t_268;// L86 -typedef ____off_t_185 __off_t_269;// L86 -typedef ____off64_t_31 __off_t_271;// L88 -typedef ____off64_t_186 __off_t_272;// L88 +typedef ____off64_t_31 __off_t_268;// L88 +typedef ____off64_t_186 __off_t_269;// L88 +typedef ____off_t_30 __off_t_271;// L86 +typedef ____off_t_185 __off_t_272;// L86 typedef ____pid_t_32 __pid_t_274;// L98 typedef ____pid_t_187 __pid_t_275;// L98 typedef ____pid_t_32 __pid_t_277;// L98 @@ -931,23 +971,25 @@ char ____size_462[4];// L132 int ____align_463;// L133 }; typedef union ____anonymous_tag_460_461 __pthread_mutexattr_t_464;// L130:L134 -typedef int (* (____compar_fn_t_574)) (const void *, const void *);// L741 -struct ____locale_struct_857 { -struct __forward_tag_reference_856 * (____locales_858[13]);// L0 -const unsigned short int * (____ctype_b_859);// L33 -const int * (____ctype_tolower_860);// L34 -const int * (____ctype_toupper_861);// L35 -const char * (____names_862[13]);// L38 +typedef int (* (____compar_fn_t_572)) (const void *, const void *);// L741 +typedef long int __ptrdiff_t_798;// L143:L324 +typedef long unsigned int __size_t_799;// L177:L209 +struct ____locale_struct_877 { +struct __forward_tag_reference_876 * (____locales_878[13]);// L0 +const unsigned short int * (____ctype_b_879);// L33 +const int * (____ctype_tolower_880);// L34 +const int * (____ctype_toupper_881);// L35 +const char * (____names_882[13]);// L38 }; -typedef struct ____locale_struct_857 * (____locale_t_863);// L27:L39 -typedef ____locale_t_863 __locale_t_864;// L42 +typedef struct ____locale_struct_877 * (____locale_t_883);// L27:L39 +typedef ____locale_t_883 __locale_t_884;// L42 struct __forward_tag_reference_438 { // generated union of struct variations union { }; }; -struct __forward_tag_reference_856 { // generated union of struct variations +struct __forward_tag_reference_876 { // generated union of struct variations union { }; }; @@ -1298,170 +1340,194 @@ extern unsigned short int * ((__seed48_482) (unsigned short int ____seed16v_48 extern void (__lcong48_484) (unsigned short int ____param_483[7]);// L406 extern void * ((__malloc_486) (__size_t_1 ____size_485));// L466 extern void * ((__malloc_487) (__size_t_1 ____size_485));// L466 -extern void * ((__malloc_488) (__size_t_1 ____size_485));// L466 -extern void * ((__malloc_489) (__size_t_1 ____size_485));// L466 -extern void * ((__calloc_492) (__size_t_1 ____nmemb_490, __size_t_1 ____size_491));// L468:L469 -extern void * ((__calloc_493) (__size_t_1 ____nmemb_490, __size_t_1 ____size_491));// L468:L469 -extern void * ((__realloc_496) (void * (____ptr_494), __size_t_1 ____size_495));// L480:L481 -extern void (__free_498) (void * (____ptr_497));// L483 -extern void (__cfree_500) (void * (____ptr_499));// L488 -extern void * ((__alloca_502) (__size_t_1 ____size_501));// L32 -extern void * ((__valloc_504) (__size_t_1 ____size_503));// L498 -extern void * ((__valloc_505) (__size_t_1 ____size_503));// L498 -extern int (__posix_memalign_509) (void * (* (____memptr_506)), __size_t_1 ____alignment_507, __size_t_1 ____size_508);// L503:L504 -extern int (__posix_memalign_510) (void * (* (____memptr_506)), __size_t_1 ____alignment_507, __size_t_1 ____size_508);// L503:L504 -extern void * ((__aligned_alloc_513) (__size_t_1 ____alignment_511, __size_t_1 ____size_512));// L509:L510 -extern void * ((__aligned_alloc_514) (__size_t_1 ____alignment_511, __size_t_1 ____size_512));// L509:L510 -extern void * ((__aligned_alloc_515) (__size_t_1 ____alignment_511, __size_t_1 ____size_512));// L509:L510 -extern void * ((__aligned_alloc_516) (__size_t_1 ____alignment_511, __size_t_1 ____size_512));// L509:L510 -extern void (__abort_517) (void );// L515 -extern int (__atexit_519) (void (* (____func_518)) (void ));// L519 -extern int (__at_quick_exit_521) (void (* (____func_520)) (void ));// L527 -extern int (__on_exit_526) (void (* (____func_524)) (int ____status_522, void * (____arg_523)), void * (____arg_525));// L535:L536 -extern void (__exit_528) (int ____status_527);// L543 -extern void (__exit_529) (int ____status_527);// L543 -extern void (__quick_exit_531) (int ____status_530);// L549 -extern void (___Exit_533) (int ____status_532);// L557 -extern char * ((__getenv_535) (const char * (____name_534)));// L564 -extern char * ((__getenv_536) (const char * (____name_534)));// L564 -extern int (__putenv_538) (char * (____string_537));// L578 -extern int (__setenv_542) (const char * (____name_539), const char * (____value_540), int ____replace_541);// L584:L585 -extern int (__unsetenv_544) (const char * (____name_543));// L588 -extern int (__clearenv_545) (void );// L595 -extern char * ((__mktemp_547) (char * (____template_546)));// L606 -extern int (__mkstemp_550) (char * (____template_548));// L619 -extern int (__mkstemp_552) (char * (____template_548));// L619 -extern int (__mkstemp_551) (char * (____template_549));// L622:L623 -extern int (__mkstemp_553) (char * (____template_549));// L622:L623 -extern int (__mkstemps_558) (char * (____template_554), int ____suffixlen_555);// L641 -extern int (__mkstemps_559) (char * (____template_556), int ____suffixlen_557);// L644:L645 -extern int (__mkstemps_560) (char * (____template_554), int ____suffixlen_555);// L641 -extern int (__mkstemps_561) (char * (____template_556), int ____suffixlen_557);// L644:L645 -extern char * ((__mkdtemp_563) (char * (____template_562)));// L662 -extern char * ((__mkdtemp_564) (char * (____template_562)));// L662 -extern int (__system_566) (const char * (____command_565));// L716 -extern int (__system_567) (const char * (____command_565));// L716 -extern int (__system_568) (const char * (____command_565));// L716 -extern int (__system_569) (const char * (____command_565));// L716 -extern char * ((__realpath_572) (const char * __restrict ____name_570, char * __restrict ____resolved_571));// L733:L734 -extern char * ((__realpath_573) (const char * __restrict ____name_570, char * __restrict ____resolved_571));// L733:L734 -// typedef moved to top of scope -extern void * ((__bsearch_582) (const void * (____key_575), const void * (____base_576), __size_t_1 ____nmemb_577, __size_t_1 ____size_578, ____compar_fn_t_574 ____compar_579));// L754:L756 -extern void * ((__bsearch_584) (const void * (____key_575), const void * (____base_576), __size_t_1 ____nmemb_577, __size_t_1 ____size_578, ____compar_fn_t_574 ____compar_579));// L754:L756 +extern void * ((__calloc_490) (__size_t_1 ____nmemb_488, __size_t_1 ____size_489));// L468:L469 +extern void * ((__calloc_491) (__size_t_1 ____nmemb_488, __size_t_1 ____size_489));// L468:L469 +extern void * ((__realloc_494) (void * (____ptr_492), __size_t_1 ____size_493));// L480:L481 +extern void (__free_496) (void * (____ptr_495));// L483 +extern void (__cfree_498) (void * (____ptr_497));// L488 +extern void * ((__alloca_500) (__size_t_1 ____size_499));// L32 +extern void * ((__valloc_502) (__size_t_1 ____size_501));// L498 +extern void * ((__valloc_503) (__size_t_1 ____size_501));// L498 +extern int (__posix_memalign_507) (void * (* (____memptr_504)), __size_t_1 ____alignment_505, __size_t_1 ____size_506);// L503:L504 +extern int (__posix_memalign_508) (void * (* (____memptr_504)), __size_t_1 ____alignment_505, __size_t_1 ____size_506);// L503:L504 +extern void * ((__aligned_alloc_511) (__size_t_1 ____alignment_509, __size_t_1 ____size_510));// L509:L510 +extern void * ((__aligned_alloc_512) (__size_t_1 ____alignment_509, __size_t_1 ____size_510));// L509:L510 +extern void * ((__aligned_alloc_513) (__size_t_1 ____alignment_509, __size_t_1 ____size_510));// L509:L510 +extern void * ((__aligned_alloc_514) (__size_t_1 ____alignment_509, __size_t_1 ____size_510));// L509:L510 +extern void (__abort_515) (void );// L515 +extern int (__atexit_517) (void (* (____func_516)) (void ));// L519 +extern int (__at_quick_exit_519) (void (* (____func_518)) (void ));// L527 +extern int (__on_exit_524) (void (* (____func_522)) (int ____status_520, void * (____arg_521)), void * (____arg_523));// L535:L536 +extern void (__exit_526) (int ____status_525);// L543 +extern void (__exit_527) (int ____status_525);// L543 +extern void (__quick_exit_529) (int ____status_528);// L549 +extern void (___Exit_531) (int ____status_530);// L557 +extern char * ((__getenv_533) (const char * (____name_532)));// L564 +extern char * ((__getenv_534) (const char * (____name_532)));// L564 +extern int (__putenv_536) (char * (____string_535));// L578 +extern int (__setenv_540) (const char * (____name_537), const char * (____value_538), int ____replace_539);// L584:L585 +extern int (__unsetenv_542) (const char * (____name_541));// L588 +extern int (__clearenv_543) (void );// L595 +extern char * ((__mktemp_545) (char * (____template_544)));// L606 +extern int (__mkstemp_548) (char * (____template_546));// L619 +extern int (__mkstemp_550) (char * (____template_546));// L619 +extern int (__mkstemp_549) (char * (____template_547));// L622:L623 +extern int (__mkstemp_551) (char * (____template_547));// L622:L623 +extern int (__mkstemps_556) (char * (____template_552), int ____suffixlen_553);// L641 +extern int (__mkstemps_557) (char * (____template_554), int ____suffixlen_555);// L644:L645 +extern int (__mkstemps_558) (char * (____template_552), int ____suffixlen_553);// L641 +extern int (__mkstemps_559) (char * (____template_554), int ____suffixlen_555);// L644:L645 +extern char * ((__mkdtemp_561) (char * (____template_560)));// L662 +extern char * ((__mkdtemp_562) (char * (____template_560)));// L662 +extern int (__system_564) (const char * (____command_563));// L716 +extern int (__system_565) (const char * (____command_563));// L716 +extern int (__system_566) (const char * (____command_563));// L716 +extern int (__system_567) (const char * (____command_563));// L716 +extern char * ((__realpath_570) (const char * __restrict ____name_568, char * __restrict ____resolved_569));// L733:L734 +extern char * ((__realpath_571) (const char * __restrict ____name_568, char * __restrict ____resolved_569));// L733:L734 +// typedef moved to top of scope +extern void * ((__bsearch_580) (const void * (____key_573), const void * (____base_574), __size_t_1 ____nmemb_575, __size_t_1 ____size_576, ____compar_fn_t_572 ____compar_577));// L754:L756 +extern void * ((__bsearch_582) (const void * (____key_573), const void * (____base_574), __size_t_1 ____nmemb_575, __size_t_1 ____size_576, ____compar_fn_t_572 ____compar_577));// L754:L756 /* no function due to type errors in the function prototype */ -extern void (__qsort_603) (void * (____base_598), __size_t_1 ____nmemb_599, __size_t_1 ____size_600, ____compar_fn_t_574 ____compar_601);// L764:L765 -extern void (__qsort_605) (void * (____base_598), __size_t_1 ____nmemb_599, __size_t_1 ____size_600, ____compar_fn_t_574 ____compar_601);// L764:L765 -extern int (__abs_608) (int ____x_607);// L774 -extern int (__abs_609) (int ____x_607);// L774 -extern long int (__labs_611) (long int ____x_610);// L775 -extern long int (__labs_612) (long int ____x_610);// L775 -extern long long int (__llabs_614) (long long int ____x_613);// L779:L780 -extern long long int (__llabs_615) (long long int ____x_613);// L779:L780 -extern __div_t_94 (__div_618) (int ____numer_616, int ____denom_617);// L788:L789 -extern __div_t_94 (__div_619) (int ____numer_616, int ____denom_617);// L788:L789 -extern __ldiv_t_99 (__ldiv_622) (long int ____numer_620, long int ____denom_621);// L790:L791 -extern __ldiv_t_99 (__ldiv_624) (long int ____numer_620, long int ____denom_621);// L790:L791 -extern __lldiv_t_104 (__lldiv_628) (long long int ____numer_626, long long int ____denom_627);// L796:L798 -extern __lldiv_t_104 (__lldiv_630) (long long int ____numer_626, long long int ____denom_627);// L796:L798 -extern char * ((__ecvt_636) (double ____value_632, int ____ndigit_633, int * __restrict ____decpt_634, int * __restrict ____sign_635));// L811:L812 -extern char * ((__ecvt_637) (double ____value_632, int ____ndigit_633, int * __restrict ____decpt_634, int * __restrict ____sign_635));// L811:L812 -extern char * ((__fcvt_642) (double ____value_638, int ____ndigit_639, int * __restrict ____decpt_640, int * __restrict ____sign_641));// L817:L818 -extern char * ((__fcvt_643) (double ____value_638, int ____ndigit_639, int * __restrict ____decpt_640, int * __restrict ____sign_641));// L817:L818 -extern char * ((__gcvt_647) (double ____value_644, int ____ndigit_645, char * (____buf_646)));// L823:L824 -extern char * ((__gcvt_648) (double ____value_644, int ____ndigit_645, char * (____buf_646)));// L823:L824 -extern char * ((__qecvt_653) (long double ____value_649, int ____ndigit_650, int * __restrict ____decpt_651, int * __restrict ____sign_652));// L829:L831 -extern char * ((__qecvt_654) (long double ____value_649, int ____ndigit_650, int * __restrict ____decpt_651, int * __restrict ____sign_652));// L829:L831 -extern char * ((__qfcvt_659) (long double ____value_655, int ____ndigit_656, int * __restrict ____decpt_657, int * __restrict ____sign_658));// L832:L834 -extern char * ((__qfcvt_660) (long double ____value_655, int ____ndigit_656, int * __restrict ____decpt_657, int * __restrict ____sign_658));// L832:L834 -extern char * ((__qgcvt_664) (long double ____value_661, int ____ndigit_662, char * (____buf_663)));// L835:L836 -extern char * ((__qgcvt_665) (long double ____value_661, int ____ndigit_662, char * (____buf_663)));// L835:L836 -extern int (__ecvt_r_672) (double ____value_666, int ____ndigit_667, int * __restrict ____decpt_668, int * __restrict ____sign_669, char * __restrict ____buf_670, __size_t_1 ____len_671);// L841:L843 -extern int (__fcvt_r_679) (double ____value_673, int ____ndigit_674, int * __restrict ____decpt_675, int * __restrict ____sign_676, char * __restrict ____buf_677, __size_t_1 ____len_678);// L844:L846 -extern int (__qecvt_r_686) (long double ____value_680, int ____ndigit_681, int * __restrict ____decpt_682, int * __restrict ____sign_683, char * __restrict ____buf_684, __size_t_1 ____len_685);// L848:L851 -extern int (__qfcvt_r_693) (long double ____value_687, int ____ndigit_688, int * __restrict ____decpt_689, int * __restrict ____sign_690, char * __restrict ____buf_691, __size_t_1 ____len_692);// L852:L855 -extern int (__mblen_696) (const char * (____s_694), __size_t_1 ____n_695);// L862 -extern int (__mblen_697) (const char * (____s_694), __size_t_1 ____n_695);// L862 -extern int (__mbtowc_701) (__wchar_t_2 * __restrict ____pwc_698, const char * __restrict ____s_699, __size_t_1 ____n_700);// L865:L866 -extern int (__wctomb_704) (char * (____s_702), __wchar_t_2 ____wchar_703);// L869 -extern __size_t_1 (__mbstowcs_708) (__wchar_t_2 * __restrict ____pwcs_705, const char * __restrict ____s_706, __size_t_1 ____n_707);// L873:L874 -extern __size_t_1 (__wcstombs_712) (char * __restrict ____s_709, const __wchar_t_2 * __restrict ____pwcs_710, __size_t_1 ____n_711);// L876:L878 -extern int (__rpmatch_715) (const char * (____response_713));// L887 -extern int (__rpmatch_714) (const char * (____response_713));// L887 -extern int (__getsubopt_720) (char * (* __restrict ____optionp_716), char * const * __restrict ____tokens_717, char * (* __restrict ____valuep_718));// L898:L901 -extern int (__getsubopt_719) (char * (* __restrict ____optionp_716), char * const * __restrict ____tokens_717, char * (* __restrict ____valuep_718));// L898:L901 -extern int (__getloadavg_723) (double ____loadavg_721[], int ____nelem_722);// L950:L951 +extern void (__qsort_601) (void * (____base_596), __size_t_1 ____nmemb_597, __size_t_1 ____size_598, ____compar_fn_t_572 ____compar_599);// L764:L765 +extern void (__qsort_603) (void * (____base_596), __size_t_1 ____nmemb_597, __size_t_1 ____size_598, ____compar_fn_t_572 ____compar_599);// L764:L765 +extern int (__abs_606) (int ____x_605);// L774 +extern int (__abs_607) (int ____x_605);// L774 +extern long int (__labs_609) (long int ____x_608);// L775 +extern long int (__labs_610) (long int ____x_608);// L775 +extern long long int (__llabs_612) (long long int ____x_611);// L779:L780 +extern long long int (__llabs_613) (long long int ____x_611);// L779:L780 +extern __div_t_94 (__div_616) (int ____numer_614, int ____denom_615);// L788:L789 +extern __div_t_94 (__div_617) (int ____numer_614, int ____denom_615);// L788:L789 +extern __ldiv_t_99 (__ldiv_620) (long int ____numer_618, long int ____denom_619);// L790:L791 +extern __ldiv_t_99 (__ldiv_622) (long int ____numer_618, long int ____denom_619);// L790:L791 +extern __lldiv_t_104 (__lldiv_626) (long long int ____numer_624, long long int ____denom_625);// L796:L798 +extern __lldiv_t_104 (__lldiv_628) (long long int ____numer_624, long long int ____denom_625);// L796:L798 +extern char * ((__ecvt_634) (double ____value_630, int ____ndigit_631, int * __restrict ____decpt_632, int * __restrict ____sign_633));// L811:L812 +extern char * ((__ecvt_635) (double ____value_630, int ____ndigit_631, int * __restrict ____decpt_632, int * __restrict ____sign_633));// L811:L812 +extern char * ((__fcvt_640) (double ____value_636, int ____ndigit_637, int * __restrict ____decpt_638, int * __restrict ____sign_639));// L817:L818 +extern char * ((__fcvt_641) (double ____value_636, int ____ndigit_637, int * __restrict ____decpt_638, int * __restrict ____sign_639));// L817:L818 +extern char * ((__gcvt_645) (double ____value_642, int ____ndigit_643, char * (____buf_644)));// L823:L824 +extern char * ((__gcvt_646) (double ____value_642, int ____ndigit_643, char * (____buf_644)));// L823:L824 +extern char * ((__qecvt_651) (long double ____value_647, int ____ndigit_648, int * __restrict ____decpt_649, int * __restrict ____sign_650));// L829:L831 +extern char * ((__qecvt_652) (long double ____value_647, int ____ndigit_648, int * __restrict ____decpt_649, int * __restrict ____sign_650));// L829:L831 +extern char * ((__qfcvt_657) (long double ____value_653, int ____ndigit_654, int * __restrict ____decpt_655, int * __restrict ____sign_656));// L832:L834 +extern char * ((__qfcvt_658) (long double ____value_653, int ____ndigit_654, int * __restrict ____decpt_655, int * __restrict ____sign_656));// L832:L834 +extern char * ((__qgcvt_662) (long double ____value_659, int ____ndigit_660, char * (____buf_661)));// L835:L836 +extern char * ((__qgcvt_663) (long double ____value_659, int ____ndigit_660, char * (____buf_661)));// L835:L836 +extern int (__ecvt_r_670) (double ____value_664, int ____ndigit_665, int * __restrict ____decpt_666, int * __restrict ____sign_667, char * __restrict ____buf_668, __size_t_1 ____len_669);// L841:L843 +extern int (__fcvt_r_677) (double ____value_671, int ____ndigit_672, int * __restrict ____decpt_673, int * __restrict ____sign_674, char * __restrict ____buf_675, __size_t_1 ____len_676);// L844:L846 +extern int (__qecvt_r_684) (long double ____value_678, int ____ndigit_679, int * __restrict ____decpt_680, int * __restrict ____sign_681, char * __restrict ____buf_682, __size_t_1 ____len_683);// L848:L851 +extern int (__qfcvt_r_691) (long double ____value_685, int ____ndigit_686, int * __restrict ____decpt_687, int * __restrict ____sign_688, char * __restrict ____buf_689, __size_t_1 ____len_690);// L852:L855 +extern int (__mblen_694) (const char * (____s_692), __size_t_1 ____n_693);// L862 +extern int (__mblen_695) (const char * (____s_692), __size_t_1 ____n_693);// L862 +extern int (__mbtowc_699) (__wchar_t_2 * __restrict ____pwc_696, const char * __restrict ____s_697, __size_t_1 ____n_698);// L865:L866 +extern int (__wctomb_702) (char * (____s_700), __wchar_t_2 ____wchar_701);// L869 +extern __size_t_1 (__mbstowcs_706) (__wchar_t_2 * __restrict ____pwcs_703, const char * __restrict ____s_704, __size_t_1 ____n_705);// L873:L874 +extern __size_t_1 (__wcstombs_710) (char * __restrict ____s_707, const __wchar_t_2 * __restrict ____pwcs_708, __size_t_1 ____n_709);// L876:L878 +extern int (__rpmatch_713) (const char * (____response_711));// L887 +extern int (__rpmatch_712) (const char * (____response_711));// L887 +extern int (__getsubopt_718) (char * (* __restrict ____optionp_714), char * const * __restrict ____tokens_715, char * (* __restrict ____valuep_716));// L898:L901 +extern int (__getsubopt_717) (char * (* __restrict ____optionp_714), char * const * __restrict ____tokens_715, char * (* __restrict ____valuep_716));// L898:L901 +extern int (__getloadavg_721) (double ____loadavg_719[], int ____nelem_720);// L950:L951 /* no function due to type errors in the function prototype */ -extern char * ((____realpath_chk_728) (const char * __restrict ____name_725, char * __restrict ____resolved_726, __size_t_1 ____resolvedlen_727));// L23:L25 -extern char * ((____realpath_alias_731) (const char * __restrict ____name_729, char * __restrict ____resolved_730));// L26:L28 -extern char * ((____realpath_chk_warn_735) (const char * __restrict ____name_732, char * __restrict ____resolved_733, __size_t_1 ____resolvedlen_734));// L29:L34 +extern char * ((____realpath_chk_726) (const char * __restrict ____name_723, char * __restrict ____resolved_724, __size_t_1 ____resolvedlen_725));// L23:L25 +extern char * ((____realpath_alias_729) (const char * __restrict ____name_727, char * __restrict ____resolved_728));// L26:L28 +extern char * ((____realpath_chk_warn_733) (const char * __restrict ____name_730, char * __restrict ____resolved_731, __size_t_1 ____resolvedlen_732));// L29:L34 /* no function due to type errors in the function prototype */ -extern int (____ptsname_r_chk_743) (int ____fd_739, char * (____buf_740), __size_t_1 ____buflen_741, __size_t_1 ____nreal_742);// L52:L53 -extern int (____ptsname_r_alias_747) (int ____fd_744, char * (____buf_745), __size_t_1 ____buflen_746);// L54:L56 -extern int (____ptsname_r_chk_warn_752) (int ____fd_748, char * (____buf_749), __size_t_1 ____buflen_750, __size_t_1 ____nreal_751);// L57:L61 +extern int (____ptsname_r_chk_741) (int ____fd_737, char * (____buf_738), __size_t_1 ____buflen_739, __size_t_1 ____nreal_740);// L52:L53 +extern int (____ptsname_r_alias_745) (int ____fd_742, char * (____buf_743), __size_t_1 ____buflen_744);// L54:L56 +extern int (____ptsname_r_chk_warn_750) (int ____fd_746, char * (____buf_747), __size_t_1 ____buflen_748, __size_t_1 ____nreal_749);// L57:L61 /* no function due to type errors in the function prototype */ -extern int (____wctomb_chk_760) (char * (____s_757), __wchar_t_2 ____wchar_758, __size_t_1 ____buflen_759);// L77:L78 -extern int (____wctomb_alias_763) (char * (____s_761), __wchar_t_2 ____wchar_762);// L79:L80 +extern int (____wctomb_chk_758) (char * (____s_755), __wchar_t_2 ____wchar_756, __size_t_1 ____buflen_757);// L77:L78 +extern int (____wctomb_alias_761) (char * (____s_759), __wchar_t_2 ____wchar_760);// L79:L80 /* no function due to type errors in the function prototype */ -extern __size_t_1 (____mbstowcs_chk_770) (__wchar_t_2 * __restrict ____dst_766, const char * __restrict ____src_767, __size_t_1 ____len_768, __size_t_1 ____dstlen_769);// L98:L100 -extern __size_t_1 (____mbstowcs_alias_774) (__wchar_t_2 * __restrict ____dst_771, const char * __restrict ____src_772, __size_t_1 ____len_773);// L101:L104 -extern __size_t_1 (____mbstowcs_chk_warn_779) (__wchar_t_2 * __restrict ____dst_775, const char * __restrict ____src_776, __size_t_1 ____len_777, __size_t_1 ____dstlen_778);// L105:L110 +extern __size_t_1 (____mbstowcs_chk_768) (__wchar_t_2 * __restrict ____dst_764, const char * __restrict ____src_765, __size_t_1 ____len_766, __size_t_1 ____dstlen_767);// L98:L100 +extern __size_t_1 (____mbstowcs_alias_772) (__wchar_t_2 * __restrict ____dst_769, const char * __restrict ____src_770, __size_t_1 ____len_771);// L101:L104 +extern __size_t_1 (____mbstowcs_chk_warn_777) (__wchar_t_2 * __restrict ____dst_773, const char * __restrict ____src_774, __size_t_1 ____len_775, __size_t_1 ____dstlen_776);// L105:L110 /* no function due to type errors in the function prototype */ -extern __size_t_1 (____wcstombs_chk_787) (char * __restrict ____dst_783, const __wchar_t_2 * __restrict ____src_784, __size_t_1 ____len_785, __size_t_1 ____dstlen_786);// L130:L132 -extern __size_t_1 (____wcstombs_alias_791) (char * __restrict ____dst_788, const __wchar_t_2 * __restrict ____src_789, __size_t_1 ____len_790);// L133:L136 -extern __size_t_1 (____wcstombs_chk_warn_796) (char * __restrict ____dst_792, const __wchar_t_2 * __restrict ____src_793, __size_t_1 ____len_794, __size_t_1 ____dstlen_795);// L137:L141 +extern __size_t_1 (____wcstombs_chk_785) (char * __restrict ____dst_781, const __wchar_t_2 * __restrict ____src_782, __size_t_1 ____len_783, __size_t_1 ____dstlen_784);// L130:L132 +extern __size_t_1 (____wcstombs_alias_789) (char * __restrict ____dst_786, const __wchar_t_2 * __restrict ____src_787, __size_t_1 ____len_788);// L133:L136 +extern __size_t_1 (____wcstombs_chk_warn_794) (char * __restrict ____dst_790, const __wchar_t_2 * __restrict ____src_791, __size_t_1 ____len_792, __size_t_1 ____dstlen_793);// L137:L141 +// typedef moved to top of scope +// typedef moved to top of scope /* no function due to type errors in the function prototype */ -extern void * ((__memmove_809) (void * (____dest_806), const void * (____src_807), __size_t_1 ____n_808));// L46:L47 -extern void * ((__memset_818) (void * (____s_815), int ____c_816, __size_t_1 ____n_817));// L62 -extern void * ((__memset_819) (void * (____s_815), int ____c_816, __size_t_1 ____n_817));// L62 -extern int (__memcmp_823) (const void * (____s1_820), const void * (____s2_821), __size_t_1 ____n_822);// L65:L66 -extern void * ((__memchr_827) (const void * (____s_824), int ____c_825, __size_t_1 ____n_826));// L92:L93 -extern char * ((__strcpy_830) (char * __restrict ____dest_828, const char * __restrict ____src_829));// L125:L126 -extern char * ((__strncpy_834) (char * __restrict ____dest_831, const char * __restrict ____src_832, __size_t_1 ____n_833));// L128:L130 -extern char * ((__strcat_837) (char * __restrict ____dest_835, const char * __restrict ____src_836));// L133:L134 -extern char * ((__strncat_841) (char * __restrict ____dest_838, const char * __restrict ____src_839, __size_t_1 ____n_840));// L136:L137 -extern int (__strcmp_844) (const char * (____s1_842), const char * (____s2_843));// L140:L141 -extern int (__strncmp_848) (const char * (____s1_845), const char * (____s2_846), __size_t_1 ____n_847);// L143:L144 -extern int (__strcoll_851) (const char * (____s1_849), const char * (____s2_850));// L147:L148 -extern __size_t_1 (__strxfrm_855) (char * __restrict ____dest_852, const char * __restrict ____src_853, __size_t_1 ____n_854);// L150:L152 -// typedef moved to top of scope -// typedef moved to top of scope -extern int (__strcoll_l_868) (const char * (____s1_865), const char * (____s2_866), ____locale_t_863 ____l_867);// L162:L163 -extern __size_t_1 (__strxfrm_l_873) (char * (____dest_869), const char * (____src_870), __size_t_1 ____n_871, ____locale_t_863 ____l_872);// L165:L166 -extern char * ((__strdup_875) (const char * (____s_874)));// L171:L172 -extern char * ((__strndup_878) (const char * (____string_876), __size_t_1 ____n_877));// L179:L180 -extern char * ((__strchr_881) (const char * (____s_879), int ____c_880));// L231:L232 -extern char * ((__strchr_882) (const char * (____s_879), int ____c_880));// L231:L232 -extern char * ((__strrchr_885) (const char * (____s_883), int ____c_884));// L258:L259 -extern __size_t_1 (__strcspn_888) (const char * (____s_886), const char * (____reject_887));// L280:L281 -extern __size_t_1 (__strspn_891) (const char * (____s_889), const char * (____accept_890));// L284:L285 -extern char * ((__strpbrk_894) (const char * (____s_892), const char * (____accept_893)));// L310:L311 -extern char * ((__strstr_897) (const char * (____haystack_895), const char * (____needle_896)));// L337:L338 -extern char * ((__strtok_900) (char * __restrict ____s_898, const char * __restrict ____delim_899));// L343:L344 -extern char * ((____strtok_r_904) (char * __restrict ____s_901, const char * __restrict ____delim_902, char * (* __restrict ____save_ptr_903)));// L349:L352 -extern char * ((__strtok_r_908) (char * __restrict ____s_905, const char * __restrict ____delim_906, char * (* __restrict ____save_ptr_907)));// L354:L356 -extern __size_t_1 (__strlen_910) (const char * (____s_909));// L394:L395 -extern __size_t_1 (__strlen_911) (const char * (____s_909));// L394:L395 -extern __size_t_1 (__strnlen_914) (const char * (____string_912), __size_t_1 ____maxlen_913);// L401:L402 -extern char * ((__strerror_916) (int ____errnum_915));// L408 -extern char * ((__strerror_917) (int ____errnum_915));// L408 -extern int (__strerror_r_921) (int ____errnum_918, char * (____buf_919), __size_t_1 ____buflen_920);// L422:L424 -extern char * ((__strerror_l_924) (int ____errnum_922, ____locale_t_863 ____l_923));// L440 -extern void (____bzero_927) (void * (____s_925), __size_t_1 ____n_926);// L446 -extern void (____bzero_928) (void * (____s_925), __size_t_1 ____n_926);// L446 -extern void (__bcopy_932) (const void * (____src_929), void * (____dest_930), __size_t_1 ____n_931);// L450:L451 -extern void (__bzero_935) (void * (____s_933), __size_t_1 ____n_934);// L454 -extern int (__bcmp_939) (const void * (____s1_936), const void * (____s2_937), __size_t_1 ____n_938);// L457:L458 -extern char * ((__index_942) (const char * (____s_940), int ____c_941));// L484:L485 -extern char * ((__rindex_945) (const char * (____s_943), int ____c_944));// L512:L513 -extern int (__ffs_947) (int ____i_946);// L518 -extern int (__strcasecmp_950) (const char * (____s1_948), const char * (____s2_949));// L529:L530 -extern int (__strncasecmp_954) (const char * (____s1_951), const char * (____s2_952), __size_t_1 ____n_953);// L533:L534 -extern char * ((__strsep_957) (char * (* __restrict ____stringp_955), const char * __restrict ____delim_956));// L552:L554 -extern char * ((__strsignal_959) (int ____sig_958));// L559 -extern char * ((____stpcpy_962) (char * __restrict ____dest_960, const char * __restrict ____src_961));// L562:L563 -extern char * ((__stpcpy_965) (char * __restrict ____dest_963, const char * __restrict ____src_964));// L564:L565 -extern char * ((____stpncpy_969) (char * __restrict ____dest_966, const char * __restrict ____src_967, __size_t_1 ____n_968));// L569:L571 -extern char * ((__stpncpy_973) (char * __restrict ____dest_970, const char * __restrict ____src_971, __size_t_1 ____n_972));// L572:L574 +extern void * ((__memmove_811) (void * (____dest_807), const void * (____src_808), __size_t_1 ____n_809));// L46:L47 +extern void * ((__memmove_812) (void * (____dest_807), const void * (____src_808), __size_t_799 ____n_810));// L46:L47 +extern void * ((__memset_824) (void * (____s_820), int ____c_821, __size_t_1 ____n_822));// L62 +extern void * ((__memset_825) (void * (____s_820), int ____c_821, __size_t_799 ____n_823));// L62 +extern void * ((__memset_826) (void * (____s_820), int ____c_821, __size_t_1 ____n_822));// L62 +extern void * ((__memset_827) (void * (____s_820), int ____c_821, __size_t_799 ____n_823));// L62 +extern int (__memcmp_832) (const void * (____s1_828), const void * (____s2_829), __size_t_1 ____n_830);// L65:L66 +extern int (__memcmp_833) (const void * (____s1_828), const void * (____s2_829), __size_t_799 ____n_831);// L65:L66 +extern void * ((__memchr_838) (const void * (____s_834), int ____c_835, __size_t_1 ____n_836));// L92:L93 +extern void * ((__memchr_839) (const void * (____s_834), int ____c_835, __size_t_799 ____n_837));// L92:L93 +extern char * ((__strcpy_842) (char * __restrict ____dest_840, const char * __restrict ____src_841));// L125:L126 +extern char * ((__strncpy_847) (char * __restrict ____dest_843, const char * __restrict ____src_844, __size_t_1 ____n_845));// L128:L130 +extern char * ((__strncpy_848) (char * __restrict ____dest_843, const char * __restrict ____src_844, __size_t_799 ____n_846));// L128:L130 +extern char * ((__strcat_851) (char * __restrict ____dest_849, const char * __restrict ____src_850));// L133:L134 +extern char * ((__strncat_856) (char * __restrict ____dest_852, const char * __restrict ____src_853, __size_t_1 ____n_854));// L136:L137 +extern char * ((__strncat_857) (char * __restrict ____dest_852, const char * __restrict ____src_853, __size_t_799 ____n_855));// L136:L137 +extern int (__strcmp_860) (const char * (____s1_858), const char * (____s2_859));// L140:L141 +extern int (__strncmp_865) (const char * (____s1_861), const char * (____s2_862), __size_t_1 ____n_863);// L143:L144 +extern int (__strncmp_866) (const char * (____s1_861), const char * (____s2_862), __size_t_799 ____n_864);// L143:L144 +extern int (__strcoll_869) (const char * (____s1_867), const char * (____s2_868));// L147:L148 +extern __size_t_1 (__strxfrm_874) (char * __restrict ____dest_870, const char * __restrict ____src_871, __size_t_1 ____n_872);// L150:L152 +extern __size_t_799 (__strxfrm_875) (char * __restrict ____dest_870, const char * __restrict ____src_871, __size_t_799 ____n_873);// L150:L152 +// typedef moved to top of scope +// typedef moved to top of scope +extern int (__strcoll_l_888) (const char * (____s1_885), const char * (____s2_886), ____locale_t_883 ____l_887);// L162:L163 +extern __size_t_1 (__strxfrm_l_894) (char * (____dest_889), const char * (____src_890), __size_t_1 ____n_891, ____locale_t_883 ____l_893);// L165:L166 +extern __size_t_799 (__strxfrm_l_895) (char * (____dest_889), const char * (____src_890), __size_t_799 ____n_892, ____locale_t_883 ____l_893);// L165:L166 +extern char * ((__strdup_897) (const char * (____s_896)));// L171:L172 +extern char * ((__strndup_901) (const char * (____string_898), __size_t_1 ____n_899));// L179:L180 +extern char * ((__strndup_902) (const char * (____string_898), __size_t_799 ____n_900));// L179:L180 +extern char * ((__strchr_905) (const char * (____s_903), int ____c_904));// L231:L232 +extern char * ((__strrchr_908) (const char * (____s_906), int ____c_907));// L258:L259 +extern __size_t_1 (__strcspn_911) (const char * (____s_909), const char * (____reject_910));// L280:L281 +extern __size_t_799 (__strcspn_912) (const char * (____s_909), const char * (____reject_910));// L280:L281 +extern __size_t_1 (__strspn_915) (const char * (____s_913), const char * (____accept_914));// L284:L285 +extern __size_t_799 (__strspn_916) (const char * (____s_913), const char * (____accept_914));// L284:L285 +extern char * ((__strpbrk_919) (const char * (____s_917), const char * (____accept_918)));// L310:L311 +extern char * ((__strstr_922) (const char * (____haystack_920), const char * (____needle_921)));// L337:L338 +extern char * ((__strtok_925) (char * __restrict ____s_923, const char * __restrict ____delim_924));// L343:L344 +extern char * ((____strtok_r_929) (char * __restrict ____s_926, const char * __restrict ____delim_927, char * (* __restrict ____save_ptr_928)));// L349:L352 +extern char * ((__strtok_r_933) (char * __restrict ____s_930, const char * __restrict ____delim_931, char * (* __restrict ____save_ptr_932)));// L354:L356 +extern __size_t_1 (__strlen_935) (const char * (____s_934));// L394:L395 +extern __size_t_799 (__strlen_936) (const char * (____s_934));// L394:L395 +extern __size_t_1 (__strlen_937) (const char * (____s_934));// L394:L395 +extern __size_t_799 (__strlen_938) (const char * (____s_934));// L394:L395 +extern __size_t_1 (__strnlen_942) (const char * (____string_939), __size_t_1 ____maxlen_940);// L401:L402 +extern __size_t_799 (__strnlen_943) (const char * (____string_939), __size_t_799 ____maxlen_941);// L401:L402 +extern char * ((__strerror_945) (int ____errnum_944));// L408 +extern char * ((__strerror_946) (int ____errnum_944));// L408 +extern int (__strerror_r_951) (int ____errnum_947, char * (____buf_948), __size_t_1 ____buflen_949);// L422:L424 +extern int (__strerror_r_952) (int ____errnum_947, char * (____buf_948), __size_t_799 ____buflen_950);// L422:L424 +extern char * ((__strerror_l_955) (int ____errnum_953, ____locale_t_883 ____l_954));// L440 +extern void (____bzero_959) (void * (____s_956), __size_t_1 ____n_957);// L446 +extern void (____bzero_960) (void * (____s_956), __size_t_799 ____n_958);// L446 +extern void (____bzero_961) (void * (____s_956), __size_t_1 ____n_957);// L446 +extern void (____bzero_962) (void * (____s_956), __size_t_799 ____n_958);// L446 +extern void (__bcopy_967) (const void * (____src_963), void * (____dest_964), __size_t_1 ____n_965);// L450:L451 +extern void (__bcopy_968) (const void * (____src_963), void * (____dest_964), __size_t_799 ____n_966);// L450:L451 +extern void (__bzero_972) (void * (____s_969), __size_t_1 ____n_970);// L454 +extern void (__bzero_973) (void * (____s_969), __size_t_799 ____n_971);// L454 +extern int (__bcmp_978) (const void * (____s1_974), const void * (____s2_975), __size_t_1 ____n_976);// L457:L458 +extern int (__bcmp_979) (const void * (____s1_974), const void * (____s2_975), __size_t_799 ____n_977);// L457:L458 +extern char * ((__index_982) (const char * (____s_980), int ____c_981));// L484:L485 +extern char * ((__rindex_985) (const char * (____s_983), int ____c_984));// L512:L513 +extern int (__ffs_987) (int ____i_986);// L518 +extern int (__strcasecmp_990) (const char * (____s1_988), const char * (____s2_989));// L529:L530 +extern int (__strncasecmp_995) (const char * (____s1_991), const char * (____s2_992), __size_t_1 ____n_993);// L533:L534 +extern int (__strncasecmp_996) (const char * (____s1_991), const char * (____s2_992), __size_t_799 ____n_994);// L533:L534 +extern char * ((__strsep_999) (char * (* __restrict ____stringp_997), const char * __restrict ____delim_998));// L552:L554 +extern char * ((__strsignal_1001) (int ____sig_1000));// L559 +extern char * ((____stpcpy_1004) (char * __restrict ____dest_1002, const char * __restrict ____src_1003));// L562:L563 +extern char * ((__stpcpy_1007) (char * __restrict ____dest_1005, const char * __restrict ____src_1006));// L564:L565 +extern char * ((____stpncpy_1012) (char * __restrict ____dest_1008, const char * __restrict ____src_1009, __size_t_1 ____n_1010));// L569:L571 +extern char * ((____stpncpy_1013) (char * __restrict ____dest_1008, const char * __restrict ____src_1009, __size_t_799 ____n_1011));// L569:L571 +extern char * ((__stpncpy_1018) (char * __restrict ____dest_1014, const char * __restrict ____src_1015, __size_t_1 ____n_1016));// L572:L574 +extern char * ((__stpncpy_1019) (char * __restrict ____dest_1014, const char * __restrict ____src_1015, __size_t_799 ____n_1017));// L572:L574 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ @@ -1469,40 +1535,44 @@ extern char * ((__stpncpy_973) (char * __restrict ____dest_970, const char * /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern char * ((____stpncpy_chk_1002) (char * (____dest_998), const char * (____src_999), __size_t_1 ____n_1000, __size_t_1 ____destlen_1001));// L130:L131 -extern char * ((____stpncpy_alias_1006) (char * (____dest_1003), const char * (____src_1004), __size_t_1 ____n_1005));// L132:L133 +extern char * ((____stpncpy_chk_1061) (char * (____dest_1055), const char * (____src_1056), __size_t_1 ____n_1057, __size_t_1 ____destlen_1059));// L130:L131 +extern char * ((____stpncpy_chk_1062) (char * (____dest_1055), const char * (____src_1056), __size_t_799 ____n_1058, __size_t_799 ____destlen_1060));// L130:L131 +extern char * ((____stpncpy_alias_1067) (char * (____dest_1063), const char * (____src_1064), __size_t_1 ____n_1065));// L132:L133 +extern char * ((____stpncpy_alias_1068) (char * (____dest_1063), const char * (____src_1064), __size_t_799 ____n_1066));// L132:L133 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -void (__ssl_init_ModuleKill_1023) () { +void (__ssl_init_ModuleKill_1087) () { -if (__static_condition_default_1025) { +if (__static_condition_default_1089) { { { -char * (__sc_1018)= malloc (sizeof(char) * 45);// L6 +char * (__sc_1084)= malloc (sizeof(char) * 45);// L6 -char * (__sc_1019)= malloc (sizeof(char) * 45);// L6 +if (__static_condition_default_1086) { +__static_type_error("invalid declaration of sc under this presence condition"); +} -if (__static_condition_default_1026) { - __strcpy_830 ( __sc_1018 ,"something") ; // L9 +if (__static_condition_default_1090) { + __strcpy_842 ( __sc_1084 ,"something") ; // L9 } -if (__static_condition_default_1027) { - __strcpy_830 ( __sc_1019 ,"something") ; // L9 +if (__static_condition_default_1091) { +__static_type_error("type error") ; // L9 } -if (__static_condition_default_1028) { -free ( __sc_1018 ) ; // L12 +if (__static_condition_default_1092) { +free ( __sc_1084 ) ; // L12 } -if (__static_condition_default_1029) { +if (__static_condition_default_1093) { __static_type_error("type error") ; // L12 } -if (__static_condition_default_1030) { +if (__static_condition_default_1094) { return ;// L16 } -if (__static_condition_default_1031) { +if (__static_condition_default_1095) { return ;// L16 } } @@ -1511,30 +1581,32 @@ return ;// L16 } } -void (__ssl_init_ModuleKill_1024) () { +void (__ssl_init_ModuleKill_1088) () { -if (__static_condition_default_1032) { +if (__static_condition_default_1096) { { { -char * (__sc_1020)= malloc (sizeof(char) * 45);// L6 +char * (__sc_1085)= malloc (sizeof(char) * 45);// L6 -char * (__sc_1021)= malloc (sizeof(char) * 45);// L6 +if (__static_condition_default_1086) { +__static_type_error("invalid declaration of sc under this presence condition"); +} __static_type_error("type error") ; // L9 -if (__static_condition_default_1033) { -free ( __sc_1020 ) ; // L12 +if (__static_condition_default_1097) { +free ( __sc_1085 ) ; // L12 } -if (__static_condition_default_1034) { +if (__static_condition_default_1098) { __static_type_error("type error") ; // L12 } -if (__static_condition_default_1035) { +if (__static_condition_default_1099) { return ;// L16 } -if (__static_condition_default_1036) { +if (__static_condition_default_1100) { return ;// L16 } } @@ -1543,18 +1615,18 @@ return ;// L16 } } -int (__main_1037) (void ) { +int (__main_1101) (void ) { { { -if (__static_condition_default_1025) { - __ssl_init_ModuleKill_1023 ( ) ; // L21 +if (__static_condition_default_1089) { + __ssl_init_ModuleKill_1087 ( ) ; // L21 } -if (__static_condition_default_1032) { - __ssl_init_ModuleKill_1024 ( ) ; // L21 +if (__static_condition_default_1096) { + __ssl_init_ModuleKill_1088 ( ) ; // L21 } return 0 ;// L22 } diff --git a/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.clangres b/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.clangres index 7b33cf35..b2195459 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.clangres @@ -1,16 +1,7 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c:1496:5: warning: Potential leak of memory pointed to by '__sc_1019' [unix.Malloc] -if (__static_condition_default_1028) { +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c:1569:5: warning: Potential leak of memory pointed to by '__sc_1084' [unix.Malloc] +if (__static_condition_default_1093) { ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c:1499:5: warning: Potential leak of memory pointed to by '__sc_1018' [unix.Malloc] -if (__static_condition_default_1029) { +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c:1603:5: warning: Potential leak of memory pointed to by '__sc_1085' [unix.Malloc] +if (__static_condition_default_1098) { ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c:1525:10: warning: Value stored to '__sc_1021' during its initialization is never read [deadcode.DeadStores] -char * (__sc_1021)= malloc (sizeof(char) * 45);// L6 - ^~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c:1527:1: warning: Potential leak of memory pointed to by '__sc_1021' [unix.Malloc] -__static_type_error("type error") ; // L9 -^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c:1531:5: warning: Potential leak of memory pointed to by '__sc_1020' [unix.Malloc] -if (__static_condition_default_1034) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -5 warnings generated. +2 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.inferres new file mode 100644 index 00000000..2f0cf119 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.inferres @@ -0,0 +1,14 @@ + +APACHE/2a6cbfa00e0.desugared.c:1600: error: Memory Leak + Memory dynamically allocated by `malloc` on line 1593 is not freed after the last access at line 1600, column 5. + 1598. + 1599. __static_type_error("type error") ; // L9 + 1600. if (__static_condition_default_1097) { + ^ + 1601. free ( __sc_1085 ) ; // L12 + 1602. } + + +Found 1 issue + Issue Type(ISSUED_TYPE_ID): # + Memory Leak(MEMORY_LEAK_C): 1 diff --git a/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.inferres b/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/3407eccc321.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/3407eccc321.desugared.c index 02b42f05..41a87b5a 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/3407eccc321.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/3407eccc321.desugared.c @@ -7,225 +7,352 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_567; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_1404; -extern const bool __static_condition_default_502; -extern const bool __static_condition_default_870; -extern const bool __static_condition_default_579; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_772; -extern const bool __static_condition_default_743; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_612; -extern const bool __static_condition_default_232; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_948; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_358; -extern const bool __static_condition_default_326; -extern const bool __static_condition_default_474; -extern const bool __static_condition_default_984; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_833; -extern const bool __static_condition_default_294; -extern const bool __static_condition_default_429; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_451; -extern const bool __static_condition_default_533; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_893; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_496; -extern const bool __static_condition_default_648; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_459; -extern const bool __static_condition_default_435; -extern const bool __static_condition_default_1606; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_804; -extern const bool __static_condition_default_976; -extern const bool __static_condition_default_446; -extern const bool __static_condition_default_961; -extern const bool __static_condition_default_457; -extern const bool __static_condition_default_969; -extern const bool __static_condition_default_349; -extern const bool __static_condition_default_511; +extern const bool __static_condition_default_568; +extern const bool __static_condition_default_313; extern const bool __static_condition_default_278; -extern const bool __static_condition_default_330; -extern const bool __static_condition_default_304; -extern const bool __static_condition_default_941; +extern const bool __static_condition_default_1428; +extern const bool __static_condition_default_1808; extern const bool __static_condition_default_433; -extern const bool __static_condition_default_672; -extern const bool __static_condition_default_905; -extern const bool __static_condition_default_586; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_1165; +extern const bool __static_condition_default_1489; +extern const bool __static_condition_default_1532; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_907; +extern const bool __static_condition_default_1395; +extern const bool __static_condition_default_1785; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_1315; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_2042; +extern const bool __static_condition_default_497; extern const bool __static_condition_default_633; -extern const bool __static_condition_default_694; -extern const bool __static_condition_default_642; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_924; -extern const bool __static_condition_default_332; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_507; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_379; -extern const bool __static_condition_default_595; -extern const bool __static_condition_default_1016; -extern const bool __static_condition_default_1383; -extern const bool __static_condition_default_421; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_729; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_696; -extern const bool __static_condition_default_276; -extern const bool __static_condition_default_639; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_338; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_739; -extern const bool __static_condition_default_962; -extern const bool __static_condition_default_1167; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_556; +extern const bool __static_condition_default_455; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_1381; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_2043; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_761; +extern const bool __static_condition_default_267; extern const bool __static_condition_default_473; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_76; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_1164; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_1750; +extern const bool __static_condition_default_2051; +extern const bool __static_condition_default_846; +extern const bool __static_condition_default_1388; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_1028; extern const bool __static_condition_default_469; -extern const bool __static_condition_default_1397; -extern const bool __static_condition_default_482; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_1409; +extern const bool __static_condition_default_1791; +extern const bool __static_condition_default_1391; +extern const bool __static_condition_default_286; extern const bool __static_condition_default_573; -extern const bool __static_condition_default_454; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_1159; +extern const bool __static_condition_default_677; +extern const bool __static_condition_default_1564; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_1753; +extern const bool __static_condition_default_550; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_2052; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_1459; +extern const bool __static_condition_default_1816; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_1373; +extern const bool __static_condition_default_1475; +extern const bool __static_condition_default_779; +extern const bool __static_condition_default_2048; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_1776; +extern const bool __static_condition_default_1424; +extern const bool __static_condition_default_636; +extern const bool __static_condition_default_521; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_2041; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_1402; +extern const bool __static_condition_default_386; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_333; +extern const bool __static_condition_default_789; +extern const bool __static_condition_default_583; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_1774; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_1458; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_1341; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_2053; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_1568; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_1405; +extern const bool __static_condition_default_2054; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_769; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_1572; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_721; +extern const bool __static_condition_default_1357; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_1749; +extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_2050; +extern const bool __static_condition_default_544; +extern const bool __static_condition_default_613; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_2044; extern const bool __static_condition_default_431; -extern const bool __static_condition_default_508; -extern const bool __static_condition_default_1423; -extern const bool __static_condition_default_784; -extern const bool __static_condition_default_162; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_790; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_380; +extern const bool __static_condition_default_759; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_894; +extern const bool __static_condition_default_1754; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_963; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_1420; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_493; extern const bool __static_condition_default_249; -extern const bool __static_condition_default_453; -extern const bool __static_condition_default_118; -extern const bool __static_condition_default_762; -extern const bool __static_condition_default_720; -extern const bool __static_condition_default_517; -extern const bool __static_condition_default_933; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_500; -extern const bool __static_condition_default_706; -extern const bool __static_condition_default_400; -extern const bool __static_condition_default_624; -extern const bool __static_condition_default_641; -extern const bool __static_condition_default_1006; -extern const bool __static_condition_default_935; -extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_834; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_891; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_1556; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_1432; +extern const bool __static_condition_default_367; +extern const bool __static_condition_default_929; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_842; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_1349; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_1416; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_1385; +extern const bool __static_condition_default_187; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_745; extern const bool __static_condition_default_751; -extern const bool __static_condition_default_356; -extern const bool __static_condition_default_719; -extern const bool __static_condition_default_733; -extern const bool __static_condition_default_226; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_318; -extern const bool __static_condition_default_603; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_536; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_1560; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_1377; +extern const bool __static_condition_default_1361; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_619; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_2040; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_1789; +extern const bool __static_condition_default_753; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_419; +extern const bool __static_condition_default_1516; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_955; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_791; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_1814; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_549; +extern const bool __static_condition_default_1453; +extern const bool __static_condition_default_1498; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_337; +extern const bool __static_condition_default_559; +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_488; +extern const bool __static_condition_default_1152; +extern const bool __static_condition_default_388; +extern const bool __static_condition_default_1531; +extern const bool __static_condition_default_290; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_1775; +extern const bool __static_condition_default_311; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_1369; +extern const bool __static_condition_default_1773; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_2047; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_1398; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_875; +extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_1944; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_1515; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_512; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_1787; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_747; +extern const bool __static_condition_default_1007; extern const bool __static_condition_default_998; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_931; -extern const bool __static_condition_default_1017; -extern const bool __static_condition_default_351; -extern const bool __static_condition_default_370; -extern const bool __static_condition_default_889; -extern const bool __static_condition_default_336; -extern const bool __static_condition_default_749; -extern const bool __static_condition_default_501; -extern const bool __static_condition_default_766; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_1425; -extern const bool __static_condition_default_310; -extern const bool __static_condition_default_540; -extern const bool __static_condition_default_480; -extern const bool __static_condition_default_577; -extern const bool __static_condition_default_448; -extern const bool __static_condition_default_227; -extern const bool __static_condition_default_551; -extern const bool __static_condition_default_718; -extern const bool __static_condition_default_296; +extern const bool __static_condition_default_1436; extern const bool __static_condition_default_801; -extern const bool __static_condition_default_968; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_236; -extern const bool __static_condition_default_906; -extern const bool __static_condition_default_225; -extern const bool __static_condition_default_495; -extern const bool __static_condition_default_575; -extern const bool __static_condition_default_898; -extern const bool __static_condition_default_328; -extern const bool __static_condition_default_716; -extern const bool __static_condition_default_470; -extern const bool __static_condition_default_820; -extern const bool __static_condition_default_1406; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_714; -extern const bool __static_condition_default_798; -extern const bool __static_condition_default_999; -extern const bool __static_condition_default_688; -extern const bool __static_condition_default_343; -extern const bool __static_condition_default_904; -extern const bool __static_condition_default_1605; -extern const bool __static_condition_default_381; -extern const bool __static_condition_default_695; +extern const bool __static_condition_default_1353; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_1345; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_1576; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_2045; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_1810; +extern const bool __static_condition_default_84; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_347; extern const bool __static_condition_default_597; -extern const bool __static_condition_default_1396; -extern const bool __static_condition_default_954; -extern const bool __static_condition_default_1604; -extern const bool __static_condition_default_1608; -extern const bool __static_condition_default_300; -extern const bool __static_condition_default_562; -extern const bool __static_condition_default_640; -extern const bool __static_condition_default_1538; -extern const bool __static_condition_default_374; -extern const bool __static_condition_default_707; -extern const bool __static_condition_default_528; -extern const bool __static_condition_default_1431; -extern const bool __static_condition_default_1381; -extern const bool __static_condition_default_977; -extern const bool __static_condition_default_882; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_778; -extern const bool __static_condition_default_74; -extern const bool __static_condition_default_394; -extern const bool __static_condition_default_983; -extern const bool __static_condition_default_627; -extern const bool __static_condition_default_254; -extern const bool __static_condition_default_588; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_320; -extern const bool __static_condition_default_680; -extern const bool __static_condition_default_794; +extern const bool __static_condition_default_1365; +extern const bool __static_condition_default_365; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_670; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_204; +extern const bool __static_condition_default_123; extern const bool __static_condition_default_395; +extern const bool __static_condition_default_702; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_1552; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_1485; +extern const bool __static_condition_default_382; +extern const bool __static_condition_default_489; +extern const bool __static_condition_default_2046; +extern const bool __static_condition_default_516; extern const bool __static_condition_default_510; -extern const bool __static_condition_default_774; -extern const bool __static_condition_default_917; -extern const bool __static_condition_default_610; -extern const bool __static_condition_default_234; -extern const bool __static_condition_default_230; -extern const bool __static_condition_default_308; -extern const bool __static_condition_default_1429; -extern const bool __static_condition_default_992; -extern const bool __static_condition_default_626; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_449; -extern const bool __static_condition_default_605; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_165; -extern const bool __static_condition_default_953; -extern const bool __static_condition_default_655; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_393; -extern const bool __static_condition_default_881; -extern const bool __static_condition_default_256; -extern const bool __static_condition_default_855; -extern const bool __static_condition_default_161; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_246; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -277,677 +404,1041 @@ __static_renaming("____ssize_t_49", "__ssize_t"); __static_renaming("____syscall_slong_t_50", "__syscall_slong_t"); __static_renaming("____syscall_ulong_t_51", "__syscall_ulong_t"); __static_renaming("____loff_t_52", "__loff_t"); -__static_renaming("____qaddr_t_53", "__qaddr_t"); -__static_renaming("____caddr_t_54", "__caddr_t"); -__static_renaming("____intptr_t_55", "__intptr_t"); -__static_renaming("____socklen_t_56", "__socklen_t"); -__static_renaming("__FILE_58", "FILE"); -__static_renaming("____FILE_59", "__FILE"); -__static_renaming("____mbstate_t_68", "__mbstate_t"); -__static_renaming("___G_fpos_t_75", "_G_fpos_t"); -__static_renaming("___G_fpos64_t_81", "_G_fpos64_t"); -__static_renaming("____gnuc_va_list_82", "__gnuc_va_list"); -__static_renaming("___IO_lock_t_84", "_IO_lock_t"); -__static_renaming("___IO_FILE_163", "_IO_FILE"); -__static_renaming("___IO_FILE_164", "_IO_FILE"); -__static_renaming("___IO_2_1_stdin__167", "_IO_2_1_stdin_"); -__static_renaming("___IO_2_1_stdout__168", "_IO_2_1_stdout_"); -__static_renaming("___IO_2_1_stderr__169", "_IO_2_1_stderr_"); -__static_renaming("____io_read_fn_173", "__io_read_fn"); -__static_renaming("____io_write_fn_177", "__io_write_fn"); -__static_renaming("____io_seek_fn_181", "__io_seek_fn"); -__static_renaming("____io_close_fn_183", "__io_close_fn"); -__static_renaming("____underflow_184", "__underflow"); -__static_renaming("____underflow_185", "__underflow"); -__static_renaming("____uflow_186", "__uflow"); -__static_renaming("____uflow_187", "__uflow"); -__static_renaming("____overflow_188", "__overflow"); -__static_renaming("____overflow_189", "__overflow"); -__static_renaming("___IO_getc_193", "_IO_getc"); -__static_renaming("___IO_getc_194", "_IO_getc"); -__static_renaming("___IO_putc_199", "_IO_putc"); -__static_renaming("___IO_putc_200", "_IO_putc"); -__static_renaming("___IO_feof_204", "_IO_feof"); -__static_renaming("___IO_feof_205", "_IO_feof"); -__static_renaming("___IO_ferror_209", "_IO_ferror"); -__static_renaming("___IO_ferror_210", "_IO_ferror"); -__static_renaming("___IO_peekc_locked_214", "_IO_peekc_locked"); -__static_renaming("___IO_peekc_locked_215", "_IO_peekc_locked"); -__static_renaming("___IO_flockfile_216", "_IO_flockfile"); -__static_renaming("___IO_flockfile_217", "_IO_flockfile"); -__static_renaming("___IO_funlockfile_218", "_IO_funlockfile"); -__static_renaming("___IO_funlockfile_219", "_IO_funlockfile"); -__static_renaming("___IO_ftrylockfile_220", "_IO_ftrylockfile"); -__static_renaming("___IO_ftrylockfile_221", "_IO_ftrylockfile"); -__static_renaming("___IO_vfscanf_222", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_224", "_IO_vfscanf"); -__static_renaming("___IO_vfprintf_231", "_IO_vfprintf"); -__static_renaming("___IO_vfprintf_233", "_IO_vfprintf"); -__static_renaming("___IO_padn_238", "_IO_padn"); -__static_renaming("___IO_padn_239", "_IO_padn"); -__static_renaming("___IO_sgetn_240", "_IO_sgetn"); -__static_renaming("___IO_sgetn_241", "_IO_sgetn"); -__static_renaming("___IO_seekoff_242", "_IO_seekoff"); -__static_renaming("___IO_seekoff_243", "_IO_seekoff"); -__static_renaming("___IO_seekpos_244", "_IO_seekpos"); -__static_renaming("___IO_seekpos_245", "_IO_seekpos"); -__static_renaming("___IO_free_backup_area_246", "_IO_free_backup_area"); -__static_renaming("___IO_free_backup_area_247", "_IO_free_backup_area"); -__static_renaming("__va_list_248", "va_list"); -__static_renaming("__off_t_250", "off_t"); -__static_renaming("__off_t_251", "off_t"); -__static_renaming("__ssize_t_252", "ssize_t"); -__static_renaming("__fpos_t_253", "fpos_t"); -__static_renaming("__fpos_t_255", "fpos_t"); -__static_renaming("__stdin_257", "stdin"); -__static_renaming("__stdin_258", "stdin"); -__static_renaming("__stdout_259", "stdout"); -__static_renaming("__stdout_260", "stdout"); -__static_renaming("__stderr_261", "stderr"); -__static_renaming("__stderr_262", "stderr"); -__static_renaming("__remove_264", "remove"); -__static_renaming("__rename_267", "rename"); -__static_renaming("__renameat_272", "renameat"); -__static_renaming("__tmpfile_273", "tmpfile"); -__static_renaming("__tmpfile_275", "tmpfile"); -__static_renaming("__tmpfile_277", "tmpfile"); -__static_renaming("__tmpfile_279", "tmpfile"); -__static_renaming("__tmpnam_282", "tmpnam"); -__static_renaming("__tmpnam_283", "tmpnam"); -__static_renaming("__tmpnam_r_285", "tmpnam_r"); -__static_renaming("__tmpnam_r_286", "tmpnam_r"); -__static_renaming("__tempnam_289", "tempnam"); -__static_renaming("__tempnam_290", "tempnam"); -__static_renaming("__fclose_293", "fclose"); -__static_renaming("__fclose_295", "fclose"); -__static_renaming("__fflush_299", "fflush"); -__static_renaming("__fflush_unlocked_303", "fflush_unlocked"); -__static_renaming("__fopen_307", "fopen"); -__static_renaming("__fopen_309", "fopen"); -__static_renaming("__fopen_317", "fopen"); -__static_renaming("__fopen_319", "fopen"); -__static_renaming("__freopen_325", "freopen"); -__static_renaming("__freopen_327", "freopen"); -__static_renaming("__freopen_329", "freopen"); -__static_renaming("__freopen_331", "freopen"); -__static_renaming("__fdopen_335", "fdopen"); -__static_renaming("__fdopen_337", "fdopen"); -__static_renaming("__fmemopen_342", "fmemopen"); -__static_renaming("__fmemopen_344", "fmemopen"); -__static_renaming("__open_memstream_348", "open_memstream"); -__static_renaming("__open_memstream_350", "open_memstream"); -__static_renaming("__setbuf_355", "setbuf"); -__static_renaming("__setbuf_357", "setbuf"); -__static_renaming("__setvbuf_364", "setvbuf"); -__static_renaming("__setbuffer_369", "setbuffer"); -__static_renaming("__setlinebuf_373", "setlinebuf"); -__static_renaming("__fprintf_378", "fprintf"); -__static_renaming("__fprintf_380", "fprintf"); -__static_renaming("__printf_383", "printf"); -__static_renaming("__sprintf_386", "sprintf"); -__static_renaming("__vfprintf_392", "vfprintf"); -__static_renaming("__vprintf_399", "vprintf"); -__static_renaming("__vsprintf_405", "vsprintf"); -__static_renaming("__snprintf_409", "snprintf"); -__static_renaming("__vsnprintf_415", "vsnprintf"); -__static_renaming("__vdprintf_420", "vdprintf"); -__static_renaming("__dprintf_424", "dprintf"); -__static_renaming("__fscanf_428", "fscanf"); -__static_renaming("__fscanf_430", "fscanf"); -__static_renaming("__fscanf_432", "fscanf"); -__static_renaming("__fscanf_434", "fscanf"); -__static_renaming("__scanf_437", "scanf"); -__static_renaming("__scanf_438", "scanf"); -__static_renaming("__sscanf_441", "sscanf"); -__static_renaming("__vfscanf_468", "vfscanf"); -__static_renaming("__vfscanf_472", "vfscanf"); -__static_renaming("__vscanf_479", "vscanf"); -__static_renaming("__vscanf_481", "vscanf"); -__static_renaming("__vsscanf_487", "vsscanf"); -__static_renaming("__fgetc_520", "fgetc"); -__static_renaming("__getc_523", "getc"); -__static_renaming("__getchar_524", "getchar"); -__static_renaming("__getc_unlocked_527", "getc_unlocked"); -__static_renaming("__getchar_unlocked_529", "getchar_unlocked"); -__static_renaming("__fgetc_unlocked_532", "fgetc_unlocked"); -__static_renaming("__fputc_537", "fputc"); -__static_renaming("__fputc_539", "fputc"); -__static_renaming("__putc_544", "putc"); -__static_renaming("__putchar_546", "putchar"); -__static_renaming("__fputc_unlocked_550", "fputc_unlocked"); -__static_renaming("__putc_unlocked_555", "putc_unlocked"); -__static_renaming("__putchar_unlocked_558", "putchar_unlocked"); -__static_renaming("__getw_561", "getw"); -__static_renaming("__putw_566", "putw"); -__static_renaming("__fgets_572", "fgets"); -__static_renaming("__fgets_574", "fgets"); -__static_renaming("__fgets_576", "fgets"); -__static_renaming("__fgets_578", "fgets"); -__static_renaming("____getdelim_585", "__getdelim"); -__static_renaming("____getdelim_587", "__getdelim"); -__static_renaming("__getdelim_594", "getdelim"); -__static_renaming("__getdelim_596", "getdelim"); -__static_renaming("__getline_602", "getline"); -__static_renaming("__getline_604", "getline"); -__static_renaming("__fputs_609", "fputs"); -__static_renaming("__fputs_611", "fputs"); -__static_renaming("__puts_614", "puts"); -__static_renaming("__ungetc_618", "ungetc"); -__static_renaming("__fseek_654", "fseek"); -__static_renaming("__fseek_656", "fseek"); -__static_renaming("__ftell_660", "ftell"); -__static_renaming("__ftell_662", "ftell"); -__static_renaming("__rewind_666", "rewind"); -__static_renaming("__fseeko_671", "fseeko"); -__static_renaming("__fseeko_679", "fseeko"); -__static_renaming("__ftello_683", "ftello"); -__static_renaming("__ftello_685", "ftello"); -__static_renaming("__ftello_687", "ftello"); -__static_renaming("__fgetpos_693", "fgetpos"); -__static_renaming("__fgetpos_705", "fgetpos"); -__static_renaming("__fsetpos_713", "fsetpos"); -__static_renaming("__fsetpos_717", "fsetpos"); -__static_renaming("__clearerr_723", "clearerr"); -__static_renaming("__feof_726", "feof"); -__static_renaming("__feof_728", "feof"); -__static_renaming("__ferror_732", "ferror"); -__static_renaming("__ferror_734", "ferror"); -__static_renaming("__clearerr_unlocked_738", "clearerr_unlocked"); -__static_renaming("__feof_unlocked_742", "feof_unlocked"); -__static_renaming("__feof_unlocked_744", "feof_unlocked"); -__static_renaming("__ferror_unlocked_748", "ferror_unlocked"); -__static_renaming("__ferror_unlocked_750", "ferror_unlocked"); -__static_renaming("__perror_753", "perror"); -__static_renaming("__perror_754", "perror"); -__static_renaming("__sys_nerr_755", "sys_nerr"); -__static_renaming("__sys_errlist_756", "sys_errlist"); -__static_renaming("__fileno_759", "fileno"); -__static_renaming("__fileno_761", "fileno"); -__static_renaming("__fileno_unlocked_765", "fileno_unlocked"); -__static_renaming("__fileno_unlocked_767", "fileno_unlocked"); -__static_renaming("__popen_771", "popen"); -__static_renaming("__popen_773", "popen"); -__static_renaming("__pclose_777", "pclose"); -__static_renaming("__ctermid_780", "ctermid"); -__static_renaming("__flockfile_783", "flockfile"); -__static_renaming("__ftrylockfile_787", "ftrylockfile"); -__static_renaming("__ftrylockfile_789", "ftrylockfile"); -__static_renaming("__funlockfile_793", "funlockfile"); -__static_renaming("____sprintf_chk_825", "__sprintf_chk"); -__static_renaming("____vsprintf_chk_832", "__vsprintf_chk"); -__static_renaming("____snprintf_chk_846", "__snprintf_chk"); -__static_renaming("____vsnprintf_chk_854", "__vsnprintf_chk"); -__static_renaming("____fprintf_chk_869", "__fprintf_chk"); -__static_renaming("____printf_chk_873", "__printf_chk"); -__static_renaming("____vfprintf_chk_880", "__vfprintf_chk"); -__static_renaming("____vprintf_chk_888", "__vprintf_chk"); -__static_renaming("____dprintf_chk_910", "__dprintf_chk"); -__static_renaming("____vdprintf_chk_916", "__vdprintf_chk"); -__static_renaming("____fgets_chk_930", "__fgets_chk"); -__static_renaming("____fgets_chk_932", "__fgets_chk"); -__static_renaming("____fgets_chk_934", "__fgets_chk"); -__static_renaming("____fgets_alias_940", "__fgets_alias"); -__static_renaming("____fgets_chk_warn_947", "__fgets_chk_warn"); -__static_renaming("____cnt_1013", "__cnt"); -__static_renaming("____cptr_1014", "__cptr"); -__static_renaming("__wchar_t_1018", "wchar_t"); -__static_renaming("__idtype_t_1024", "idtype_t"); -__static_renaming("____bswap_32_1026", "__bswap_32"); -__static_renaming("____bswap_64_1029", "__bswap_64"); -__static_renaming("____WAIT_STATUS_1049", "__WAIT_STATUS"); -__static_renaming("__div_t_1054", "div_t"); -__static_renaming("__ldiv_t_1059", "ldiv_t"); -__static_renaming("__lldiv_t_1064", "lldiv_t"); -__static_renaming("____ctype_get_mb_cur_max_1065", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1066", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1067", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1068", "__ctype_get_mb_cur_max"); -__static_renaming("__atof_1070", "atof"); -__static_renaming("__atof_1071", "atof"); -__static_renaming("__atoi_1073", "atoi"); -__static_renaming("__atoi_1074", "atoi"); -__static_renaming("__atol_1076", "atol"); -__static_renaming("__atol_1077", "atol"); -__static_renaming("__atoll_1079", "atoll"); -__static_renaming("__atoll_1080", "atoll"); -__static_renaming("__strtod_1083", "strtod"); -__static_renaming("__strtof_1086", "strtof"); -__static_renaming("__strtold_1089", "strtold"); -__static_renaming("__strtol_1093", "strtol"); -__static_renaming("__strtoul_1097", "strtoul"); -__static_renaming("__strtoq_1101", "strtoq"); -__static_renaming("__strtouq_1105", "strtouq"); -__static_renaming("__strtoll_1109", "strtoll"); -__static_renaming("__strtoll_1110", "strtoll"); -__static_renaming("__strtoull_1114", "strtoull"); -__static_renaming("__l64a_1119", "l64a"); -__static_renaming("__l64a_1120", "l64a"); -__static_renaming("__a64l_1122", "a64l"); -__static_renaming("__a64l_1123", "a64l"); -__static_renaming("__u_char_1124", "u_char"); -__static_renaming("__u_short_1125", "u_short"); -__static_renaming("__u_int_1126", "u_int"); -__static_renaming("__u_long_1127", "u_long"); -__static_renaming("__quad_t_1128", "quad_t"); -__static_renaming("__u_quad_t_1129", "u_quad_t"); -__static_renaming("__fsid_t_1130", "fsid_t"); -__static_renaming("__loff_t_1131", "loff_t"); -__static_renaming("__ino_t_1132", "ino_t"); -__static_renaming("__ino_t_1133", "ino_t"); -__static_renaming("__dev_t_1134", "dev_t"); -__static_renaming("__gid_t_1135", "gid_t"); -__static_renaming("__gid_t_1136", "gid_t"); -__static_renaming("__mode_t_1137", "mode_t"); -__static_renaming("__nlink_t_1138", "nlink_t"); -__static_renaming("__uid_t_1139", "uid_t"); -__static_renaming("__uid_t_1140", "uid_t"); -__static_renaming("__pid_t_1141", "pid_t"); -__static_renaming("__id_t_1142", "id_t"); -__static_renaming("__daddr_t_1143", "daddr_t"); -__static_renaming("__caddr_t_1144", "caddr_t"); -__static_renaming("__key_t_1145", "key_t"); -__static_renaming("__key_t_1146", "key_t"); -__static_renaming("__clock_t_1147", "clock_t"); -__static_renaming("__time_t_1148", "time_t"); -__static_renaming("__clockid_t_1149", "clockid_t"); -__static_renaming("__timer_t_1150", "timer_t"); -__static_renaming("__ulong_1151", "ulong"); -__static_renaming("__ulong_1152", "ulong"); -__static_renaming("__ulong_1153", "ulong"); -__static_renaming("__ushort_1154", "ushort"); -__static_renaming("__uint_1155", "uint"); -__static_renaming("__int8_t_1156", "int8_t"); -__static_renaming("__int16_t_1157", "int16_t"); -__static_renaming("__int32_t_1158", "int32_t"); -__static_renaming("__int64_t_1159", "int64_t"); -__static_renaming("__u_int8_t_1160", "u_int8_t"); -__static_renaming("__u_int16_t_1161", "u_int16_t"); -__static_renaming("__u_int32_t_1162", "u_int32_t"); -__static_renaming("__u_int64_t_1163", "u_int64_t"); -__static_renaming("__register_t_1164", "register_t"); -__static_renaming("____bswap_32_1166", "__bswap_32"); -__static_renaming("____bswap_64_1169", "__bswap_64"); -__static_renaming("____sig_atomic_t_1170", "__sig_atomic_t"); -__static_renaming("____sigset_t_1174", "__sigset_t"); -__static_renaming("__sigset_t_1175", "sigset_t"); -__static_renaming("__suseconds_t_1182", "suseconds_t"); -__static_renaming("____fd_mask_1183", "__fd_mask"); -__static_renaming("____fd_mask_1184", "__fd_mask"); -__static_renaming("__fd_set_1189", "fd_set"); -__static_renaming("__fd_mask_1190", "fd_mask"); -__static_renaming("__fd_mask_1191", "fd_mask"); -__static_renaming("__select_1199", "select"); -__static_renaming("__select_1200", "select"); -__static_renaming("__pselect_1209", "pselect"); -__static_renaming("__pselect_1210", "pselect"); -__static_renaming("____fdelt_chk_1212", "__fdelt_chk"); -__static_renaming("____fdelt_warn_1214", "__fdelt_warn"); -__static_renaming("__gnu_dev_major_1216", "gnu_dev_major"); -__static_renaming("__gnu_dev_major_1217", "gnu_dev_major"); -__static_renaming("__gnu_dev_minor_1219", "gnu_dev_minor"); -__static_renaming("__gnu_dev_makedev_1222", "gnu_dev_makedev"); -__static_renaming("__blksize_t_1227", "blksize_t"); -__static_renaming("__blkcnt_t_1228", "blkcnt_t"); -__static_renaming("__fsblkcnt_t_1229", "fsblkcnt_t"); -__static_renaming("__blkcnt_t_1230", "blkcnt_t"); -__static_renaming("__fsblkcnt_t_1231", "fsblkcnt_t"); -__static_renaming("__fsfilcnt_t_1232", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_1233", "fsfilcnt_t"); -__static_renaming("__pthread_t_1234", "pthread_t"); -__static_renaming("__pthread_attr_t_1238", "pthread_attr_t"); -__static_renaming("____pthread_list_t_1243", "__pthread_list_t"); -__static_renaming("____pthread_list_t_1244", "__pthread_list_t"); -__static_renaming("__pthread_mutex_t_1260", "pthread_mutex_t"); -__static_renaming("__pthread_mutexattr_t_1265", "pthread_mutexattr_t"); -__static_renaming("__rand_1266", "rand"); -__static_renaming("__srand_1268", "srand"); -__static_renaming("__rand_r_1270", "rand_r"); -__static_renaming("__drand48_1271", "drand48"); -__static_renaming("__erand48_1273", "erand48"); -__static_renaming("__lrand48_1274", "lrand48"); -__static_renaming("__nrand48_1276", "nrand48"); -__static_renaming("__mrand48_1277", "mrand48"); -__static_renaming("__jrand48_1279", "jrand48"); -__static_renaming("__srand48_1281", "srand48"); -__static_renaming("__seed48_1283", "seed48"); -__static_renaming("__lcong48_1285", "lcong48"); -__static_renaming("__malloc_1287", "malloc"); -__static_renaming("__malloc_1288", "malloc"); -__static_renaming("__calloc_1291", "calloc"); -__static_renaming("__calloc_1292", "calloc"); -__static_renaming("__realloc_1295", "realloc"); -__static_renaming("__realloc_1296", "realloc"); -__static_renaming("__free_1298", "free"); -__static_renaming("__cfree_1300", "cfree"); -__static_renaming("__alloca_1302", "alloca"); -__static_renaming("__valloc_1304", "valloc"); -__static_renaming("__valloc_1305", "valloc"); -__static_renaming("__posix_memalign_1309", "posix_memalign"); -__static_renaming("__posix_memalign_1310", "posix_memalign"); -__static_renaming("__aligned_alloc_1313", "aligned_alloc"); -__static_renaming("__aligned_alloc_1314", "aligned_alloc"); -__static_renaming("__aligned_alloc_1315", "aligned_alloc"); -__static_renaming("__aligned_alloc_1316", "aligned_alloc"); -__static_renaming("__abort_1317", "abort"); -__static_renaming("__atexit_1319", "atexit"); -__static_renaming("__at_quick_exit_1321", "at_quick_exit"); -__static_renaming("__on_exit_1326", "on_exit"); -__static_renaming("__exit_1328", "exit"); -__static_renaming("__exit_1329", "exit"); -__static_renaming("__quick_exit_1331", "quick_exit"); -__static_renaming("___Exit_1333", "_Exit"); -__static_renaming("__getenv_1335", "getenv"); -__static_renaming("__getenv_1336", "getenv"); -__static_renaming("__putenv_1338", "putenv"); -__static_renaming("__setenv_1342", "setenv"); -__static_renaming("__unsetenv_1344", "unsetenv"); -__static_renaming("__clearenv_1345", "clearenv"); -__static_renaming("__mktemp_1347", "mktemp"); -__static_renaming("__mkstemp_1350", "mkstemp"); -__static_renaming("__mkstemp_1351", "mkstemp"); -__static_renaming("__mkstemp_1352", "mkstemp"); -__static_renaming("__mkstemp_1353", "mkstemp"); -__static_renaming("__mkstemps_1358", "mkstemps"); -__static_renaming("__mkstemps_1359", "mkstemps"); -__static_renaming("__mkstemps_1360", "mkstemps"); -__static_renaming("__mkstemps_1361", "mkstemps"); -__static_renaming("__mkdtemp_1363", "mkdtemp"); -__static_renaming("__mkdtemp_1364", "mkdtemp"); -__static_renaming("__system_1366", "system"); -__static_renaming("__system_1367", "system"); -__static_renaming("__system_1368", "system"); -__static_renaming("__system_1369", "system"); -__static_renaming("__realpath_1372", "realpath"); -__static_renaming("__realpath_1373", "realpath"); -__static_renaming("____compar_fn_t_1374", "__compar_fn_t"); -__static_renaming("__bsearch_1382", "bsearch"); -__static_renaming("__bsearch_1384", "bsearch"); -__static_renaming("____l_1391", "__l"); -__static_renaming("____u_1392", "__u"); -__static_renaming("____idx_1393", "__idx"); -__static_renaming("____p_1394", "__p"); -__static_renaming("____comparison_1395", "__comparison"); -__static_renaming("__qsort_1403", "qsort"); -__static_renaming("__qsort_1405", "qsort"); -__static_renaming("__abs_1408", "abs"); -__static_renaming("__abs_1409", "abs"); -__static_renaming("__labs_1411", "labs"); -__static_renaming("__labs_1412", "labs"); -__static_renaming("__llabs_1414", "llabs"); -__static_renaming("__llabs_1415", "llabs"); -__static_renaming("__div_1418", "div"); -__static_renaming("__div_1419", "div"); -__static_renaming("__ldiv_1422", "ldiv"); -__static_renaming("__ldiv_1424", "ldiv"); -__static_renaming("__lldiv_1428", "lldiv"); -__static_renaming("__lldiv_1430", "lldiv"); -__static_renaming("__ecvt_1436", "ecvt"); -__static_renaming("__ecvt_1437", "ecvt"); -__static_renaming("__fcvt_1442", "fcvt"); -__static_renaming("__fcvt_1443", "fcvt"); -__static_renaming("__gcvt_1447", "gcvt"); -__static_renaming("__gcvt_1448", "gcvt"); -__static_renaming("__qecvt_1453", "qecvt"); -__static_renaming("__qecvt_1454", "qecvt"); -__static_renaming("__qfcvt_1459", "qfcvt"); -__static_renaming("__qfcvt_1460", "qfcvt"); -__static_renaming("__qgcvt_1464", "qgcvt"); -__static_renaming("__qgcvt_1465", "qgcvt"); -__static_renaming("__ecvt_r_1472", "ecvt_r"); -__static_renaming("__fcvt_r_1479", "fcvt_r"); -__static_renaming("__qecvt_r_1486", "qecvt_r"); -__static_renaming("__qfcvt_r_1493", "qfcvt_r"); -__static_renaming("__mblen_1496", "mblen"); -__static_renaming("__mblen_1497", "mblen"); -__static_renaming("__mbtowc_1501", "mbtowc"); -__static_renaming("__wctomb_1504", "wctomb"); -__static_renaming("__mbstowcs_1508", "mbstowcs"); -__static_renaming("__wcstombs_1512", "wcstombs"); -__static_renaming("__rpmatch_1514", "rpmatch"); -__static_renaming("__rpmatch_1515", "rpmatch"); -__static_renaming("__getsubopt_1519", "getsubopt"); -__static_renaming("__getsubopt_1520", "getsubopt"); -__static_renaming("__getloadavg_1523", "getloadavg"); -__static_renaming("____realpath_chk_1528", "__realpath_chk"); -__static_renaming("____realpath_alias_1531", "__realpath_alias"); -__static_renaming("____realpath_chk_warn_1535", "__realpath_chk_warn"); -__static_renaming("____ptsname_r_chk_1543", "__ptsname_r_chk"); -__static_renaming("____ptsname_r_alias_1547", "__ptsname_r_alias"); -__static_renaming("____ptsname_r_chk_warn_1552", "__ptsname_r_chk_warn"); -__static_renaming("____wctomb_chk_1560", "__wctomb_chk"); -__static_renaming("____wctomb_alias_1563", "__wctomb_alias"); -__static_renaming("____mbstowcs_chk_1570", "__mbstowcs_chk"); -__static_renaming("____mbstowcs_alias_1574", "__mbstowcs_alias"); -__static_renaming("____mbstowcs_chk_warn_1579", "__mbstowcs_chk_warn"); -__static_renaming("____wcstombs_chk_1587", "__wcstombs_chk"); -__static_renaming("____wcstombs_alias_1591", "__wcstombs_alias"); -__static_renaming("____wcstombs_chk_warn_1596", "__wcstombs_chk_warn"); -__static_renaming("__ap_log_perror__1601", "ap_log_perror_"); -__static_renaming("__ap_log_perror__1602", "ap_log_perror_"); -__static_renaming("__ap_log_perror__1603", "ap_log_perror_"); -__static_renaming("__main_1607", "main"); - -__static_condition_renaming("__static_condition_default_74", "(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_118", "(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_161", "(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_162", "(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_165", "(defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_223", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_225", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_226", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_227", "(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_230", "(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_232", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_234", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_235", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_236", "(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_249", "!(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); -__static_condition_renaming("__static_condition_default_254", "!(defined _FILE_OFFSET_BITS) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_256", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_274", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_276", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_278", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_280", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_294", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_296", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_300", "(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_304", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_308", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_310", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_318", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_320", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_326", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_328", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_330", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_332", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_336", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_338", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_343", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_345", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_349", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_351", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_356", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_358", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_370", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_374", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_379", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_381", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_393", "!(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_394", "(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_395", "(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_400", "!(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_421", "!(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_429", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_431", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_433", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_435", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_446", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_448", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_449", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_451", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_453", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_454", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_457", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_459", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_469", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_470", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_471", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_473", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_474", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_475", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_480", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_482", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_494", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_495", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_496", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_497", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_499", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_500", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_501", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_502", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_507", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_508", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_510", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_511", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_517", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_528", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_533", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_538", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_540", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_551", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_556", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_562", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_567", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_573", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_575", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_577", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_579", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_586", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_588", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_595", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_597", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_603", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_605", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_610", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_612", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_624", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_625", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_626", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_627", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_633", "!(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_639", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_640", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_641", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_642", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_648", "!(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_649", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_655", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_657", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_661", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_663", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_672", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_680", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_684", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_686", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_688", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_694", "!(defined _FILE_OFFSET_BITS) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_695", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_696", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_706", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_707", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_708", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_714", "!(defined _FILE_OFFSET_BITS) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_715", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_716", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_718", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_719", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_720", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_727", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_729", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_733", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_735", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_739", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_743", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_745", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_749", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_751", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_760", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_762", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_766", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_768", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_772", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_774", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_778", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_784", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_788", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_790", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_794", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_798", "!(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_801", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_804", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_809", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_813", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_817", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_820", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_833", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_840", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_855", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_864", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_870", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_881", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_882", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_883", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_889", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_893", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_898", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_904", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_905", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_906", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_917", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_924", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_931", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_933", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_935", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_941", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_948", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_953", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_954", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_961", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_962", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_968", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_969", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_976", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_977", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_983", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_984", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_991", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_992", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_998", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_999", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1006", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1007", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1015", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_1016", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1017", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1027", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1167", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1381", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1383", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1396", "(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1397", "(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1404", "!(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1406", "(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1423", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1425", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1429", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1431", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1538", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1604", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1605", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1606", "!(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_1608", "!(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); - -if (__static_condition_default_1608) { +__static_renaming("____qaddr_t_54", "__qaddr_t"); +__static_renaming("____caddr_t_55", "__caddr_t"); +__static_renaming("____intptr_t_56", "__intptr_t"); +__static_renaming("____socklen_t_57", "__socklen_t"); +__static_renaming("__FILE_59", "FILE"); +__static_renaming("____FILE_60", "__FILE"); +__static_renaming("____mbstate_t_69", "__mbstate_t"); +__static_renaming("___G_fpos_t_77", "_G_fpos_t"); +__static_renaming("___G_fpos64_t_85", "_G_fpos64_t"); +__static_renaming("____gnuc_va_list_86", "__gnuc_va_list"); +__static_renaming("___IO_lock_t_88", "_IO_lock_t"); +__static_renaming("___IO_FILE_171", "_IO_FILE"); +__static_renaming("___IO_FILE_172", "_IO_FILE"); +__static_renaming("___IO_2_1_stdin__175", "_IO_2_1_stdin_"); +__static_renaming("___IO_2_1_stdout__176", "_IO_2_1_stdout_"); +__static_renaming("___IO_2_1_stderr__177", "_IO_2_1_stderr_"); +__static_renaming("____io_read_fn_181", "__io_read_fn"); +__static_renaming("____io_write_fn_186", "__io_write_fn"); +__static_renaming("____io_seek_fn_192", "__io_seek_fn"); +__static_renaming("____io_close_fn_195", "__io_close_fn"); +__static_renaming("____underflow_196", "__underflow"); +__static_renaming("____underflow_197", "__underflow"); +__static_renaming("____uflow_199", "__uflow"); +__static_renaming("____uflow_200", "__uflow"); +__static_renaming("____overflow_202", "__overflow"); +__static_renaming("____overflow_203", "__overflow"); +__static_renaming("___IO_getc_208", "_IO_getc"); +__static_renaming("___IO_getc_209", "_IO_getc"); +__static_renaming("___IO_putc_215", "_IO_putc"); +__static_renaming("___IO_putc_216", "_IO_putc"); +__static_renaming("___IO_feof_221", "_IO_feof"); +__static_renaming("___IO_feof_222", "_IO_feof"); +__static_renaming("___IO_ferror_227", "_IO_ferror"); +__static_renaming("___IO_ferror_228", "_IO_ferror"); +__static_renaming("___IO_peekc_locked_233", "_IO_peekc_locked"); +__static_renaming("___IO_peekc_locked_234", "_IO_peekc_locked"); +__static_renaming("___IO_flockfile_236", "_IO_flockfile"); +__static_renaming("___IO_flockfile_237", "_IO_flockfile"); +__static_renaming("___IO_funlockfile_239", "_IO_funlockfile"); +__static_renaming("___IO_funlockfile_240", "_IO_funlockfile"); +__static_renaming("___IO_ftrylockfile_242", "_IO_ftrylockfile"); +__static_renaming("___IO_ftrylockfile_243", "_IO_ftrylockfile"); +__static_renaming("___IO_vfscanf_245", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_247", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_251", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_252", "_IO_vfscanf"); +__static_renaming("___IO_vfprintf_254", "_IO_vfprintf"); +__static_renaming("___IO_vfprintf_256", "_IO_vfprintf"); +__static_renaming("___IO_vfprintf_260", "_IO_vfprintf"); +__static_renaming("___IO_padn_261", "_IO_padn"); +__static_renaming("___IO_padn_262", "_IO_padn"); +__static_renaming("___IO_sgetn_265", "_IO_sgetn"); +__static_renaming("___IO_sgetn_266", "_IO_sgetn"); +__static_renaming("___IO_seekoff_268", "_IO_seekoff"); +__static_renaming("___IO_seekoff_269", "_IO_seekoff"); +__static_renaming("___IO_seekpos_272", "_IO_seekpos"); +__static_renaming("___IO_seekpos_273", "_IO_seekpos"); +__static_renaming("___IO_free_backup_area_276", "_IO_free_backup_area"); +__static_renaming("___IO_free_backup_area_277", "_IO_free_backup_area"); +__static_renaming("__va_list_279", "va_list"); +__static_renaming("__off_t_281", "off_t"); +__static_renaming("__off_t_283", "off_t"); +__static_renaming("__ssize_t_285", "ssize_t"); +__static_renaming("__fpos_t_287", "fpos_t"); +__static_renaming("__fpos_t_289", "fpos_t"); +__static_renaming("__stdin_291", "stdin"); +__static_renaming("__stdin_292", "stdin"); +__static_renaming("__stdout_294", "stdout"); +__static_renaming("__stdout_295", "stdout"); +__static_renaming("__stderr_297", "stderr"); +__static_renaming("__stderr_298", "stderr"); +__static_renaming("__remove_301", "remove"); +__static_renaming("__rename_304", "rename"); +__static_renaming("__renameat_309", "renameat"); +__static_renaming("__tmpfile_310", "tmpfile"); +__static_renaming("__tmpfile_312", "tmpfile"); +__static_renaming("__tmpfile_314", "tmpfile"); +__static_renaming("__tmpfile_316", "tmpfile"); +__static_renaming("__tmpnam_319", "tmpnam"); +__static_renaming("__tmpnam_320", "tmpnam"); +__static_renaming("__tmpnam_r_322", "tmpnam_r"); +__static_renaming("__tmpnam_r_323", "tmpnam_r"); +__static_renaming("__tempnam_326", "tempnam"); +__static_renaming("__tempnam_327", "tempnam"); +__static_renaming("__fclose_330", "fclose"); +__static_renaming("__fclose_332", "fclose"); +__static_renaming("__fflush_336", "fflush"); +__static_renaming("__fflush_unlocked_340", "fflush_unlocked"); +__static_renaming("__fopen_344", "fopen"); +__static_renaming("__fopen_346", "fopen"); +__static_renaming("__fopen_354", "fopen"); +__static_renaming("__fopen_356", "fopen"); +__static_renaming("__freopen_362", "freopen"); +__static_renaming("__freopen_364", "freopen"); +__static_renaming("__freopen_366", "freopen"); +__static_renaming("__freopen_368", "freopen"); +__static_renaming("__fdopen_372", "fdopen"); +__static_renaming("__fdopen_374", "fdopen"); +__static_renaming("__fmemopen_379", "fmemopen"); +__static_renaming("__fmemopen_381", "fmemopen"); +__static_renaming("__open_memstream_385", "open_memstream"); +__static_renaming("__open_memstream_387", "open_memstream"); +__static_renaming("__setbuf_392", "setbuf"); +__static_renaming("__setbuf_394", "setbuf"); +__static_renaming("__setvbuf_401", "setvbuf"); +__static_renaming("__setbuffer_407", "setbuffer"); +__static_renaming("__setlinebuf_411", "setlinebuf"); +__static_renaming("__fprintf_416", "fprintf"); +__static_renaming("__fprintf_418", "fprintf"); +__static_renaming("__printf_421", "printf"); +__static_renaming("__sprintf_424", "sprintf"); +__static_renaming("__vfprintf_430", "vfprintf"); +__static_renaming("__vprintf_437", "vprintf"); +__static_renaming("__vsprintf_443", "vsprintf"); +__static_renaming("__snprintf_448", "snprintf"); +__static_renaming("__vsnprintf_454", "vsnprintf"); +__static_renaming("__vdprintf_460", "vdprintf"); +__static_renaming("__dprintf_464", "dprintf"); +__static_renaming("__fscanf_468", "fscanf"); +__static_renaming("__fscanf_470", "fscanf"); +__static_renaming("__fscanf_472", "fscanf"); +__static_renaming("__fscanf_474", "fscanf"); +__static_renaming("__scanf_477", "scanf"); +__static_renaming("__scanf_478", "scanf"); +__static_renaming("__sscanf_481", "sscanf"); +__static_renaming("__vfscanf_509", "vfscanf"); +__static_renaming("__vfscanf_513", "vfscanf"); +__static_renaming("__vscanf_520", "vscanf"); +__static_renaming("__vscanf_522", "vscanf"); +__static_renaming("__vsscanf_528", "vsscanf"); +__static_renaming("__fgetc_563", "fgetc"); +__static_renaming("__getc_567", "getc"); +__static_renaming("__getchar_569", "getchar"); +__static_renaming("__getc_unlocked_572", "getc_unlocked"); +__static_renaming("__getchar_unlocked_574", "getchar_unlocked"); +__static_renaming("__fgetc_unlocked_577", "fgetc_unlocked"); +__static_renaming("__fputc_582", "fputc"); +__static_renaming("__fputc_584", "fputc"); +__static_renaming("__putc_589", "putc"); +__static_renaming("__putchar_592", "putchar"); +__static_renaming("__fputc_unlocked_596", "fputc_unlocked"); +__static_renaming("__putc_unlocked_601", "putc_unlocked"); +__static_renaming("__putchar_unlocked_604", "putchar_unlocked"); +__static_renaming("__getw_607", "getw"); +__static_renaming("__putw_612", "putw"); +__static_renaming("__fgets_618", "fgets"); +__static_renaming("__fgets_620", "fgets"); +__static_renaming("__fgets_622", "fgets"); +__static_renaming("__fgets_624", "fgets"); +__static_renaming("____getdelim_631", "__getdelim"); +__static_renaming("____getdelim_635", "__getdelim"); +__static_renaming("__getdelim_644", "getdelim"); +__static_renaming("__getdelim_648", "getdelim"); +__static_renaming("__getline_656", "getline"); +__static_renaming("__getline_660", "getline"); +__static_renaming("__fputs_667", "fputs"); +__static_renaming("__fputs_669", "fputs"); +__static_renaming("__puts_672", "puts"); +__static_renaming("__ungetc_676", "ungetc"); +__static_renaming("__fseek_714", "fseek"); +__static_renaming("__fseek_716", "fseek"); +__static_renaming("__ftell_720", "ftell"); +__static_renaming("__ftell_722", "ftell"); +__static_renaming("__rewind_726", "rewind"); +__static_renaming("__fseeko_733", "fseeko"); +__static_renaming("__fseeko_744", "fseeko"); +__static_renaming("__ftello_750", "ftello"); +__static_renaming("__ftello_754", "ftello"); +__static_renaming("__ftello_758", "ftello"); +__static_renaming("__fgetpos_766", "fgetpos"); +__static_renaming("__fgetpos_778", "fgetpos"); +__static_renaming("__fsetpos_786", "fsetpos"); +__static_renaming("__fsetpos_790", "fsetpos"); +__static_renaming("__clearerr_796", "clearerr"); +__static_renaming("__feof_800", "feof"); +__static_renaming("__feof_802", "feof"); +__static_renaming("__ferror_806", "ferror"); +__static_renaming("__ferror_808", "ferror"); +__static_renaming("__clearerr_unlocked_812", "clearerr_unlocked"); +__static_renaming("__feof_unlocked_816", "feof_unlocked"); +__static_renaming("__feof_unlocked_818", "feof_unlocked"); +__static_renaming("__ferror_unlocked_822", "ferror_unlocked"); +__static_renaming("__ferror_unlocked_824", "ferror_unlocked"); +__static_renaming("__perror_827", "perror"); +__static_renaming("__perror_828", "perror"); +__static_renaming("__sys_nerr_829", "sys_nerr"); +__static_renaming("__sys_errlist_830", "sys_errlist"); +__static_renaming("__fileno_833", "fileno"); +__static_renaming("__fileno_835", "fileno"); +__static_renaming("__fileno_unlocked_839", "fileno_unlocked"); +__static_renaming("__fileno_unlocked_841", "fileno_unlocked"); +__static_renaming("__popen_845", "popen"); +__static_renaming("__popen_847", "popen"); +__static_renaming("__pclose_851", "pclose"); +__static_renaming("__ctermid_854", "ctermid"); +__static_renaming("__flockfile_857", "flockfile"); +__static_renaming("__ftrylockfile_861", "ftrylockfile"); +__static_renaming("__ftrylockfile_863", "ftrylockfile"); +__static_renaming("__funlockfile_867", "funlockfile"); +__static_renaming("____sprintf_chk_899", "__sprintf_chk"); +__static_renaming("____vsprintf_chk_906", "__vsprintf_chk"); +__static_renaming("____snprintf_chk_920", "__snprintf_chk"); +__static_renaming("____vsnprintf_chk_928", "__vsnprintf_chk"); +__static_renaming("____fprintf_chk_943", "__fprintf_chk"); +__static_renaming("____printf_chk_947", "__printf_chk"); +__static_renaming("____vfprintf_chk_954", "__vfprintf_chk"); +__static_renaming("____vprintf_chk_962", "__vprintf_chk"); +__static_renaming("____dprintf_chk_984", "__dprintf_chk"); +__static_renaming("____vdprintf_chk_990", "__vdprintf_chk"); +__static_renaming("____fgets_chk_1004", "__fgets_chk"); +__static_renaming("____fgets_chk_1006", "__fgets_chk"); +__static_renaming("____fgets_chk_1008", "__fgets_chk"); +__static_renaming("____fgets_alias_1014", "__fgets_alias"); +__static_renaming("____fgets_chk_warn_1021", "__fgets_chk_warn"); +__static_renaming("____cnt_1087", "__cnt"); +__static_renaming("____cptr_1088", "__cptr"); +__static_renaming("__ptrdiff_t_1092", "ptrdiff_t"); +__static_renaming("__size_t_1093", "size_t"); +__static_renaming("__wchar_t_1094", "wchar_t"); +__static_renaming("__idtype_t_1100", "idtype_t"); +__static_renaming("____u_char_1101", "__u_char"); +__static_renaming("____u_short_1102", "__u_short"); +__static_renaming("____u_int_1103", "__u_int"); +__static_renaming("____u_long_1104", "__u_long"); +__static_renaming("____int8_t_1105", "__int8_t"); +__static_renaming("____uint8_t_1106", "__uint8_t"); +__static_renaming("____int16_t_1107", "__int16_t"); +__static_renaming("____uint16_t_1108", "__uint16_t"); +__static_renaming("____int32_t_1109", "__int32_t"); +__static_renaming("____uint32_t_1110", "__uint32_t"); +__static_renaming("____int64_t_1111", "__int64_t"); +__static_renaming("____uint64_t_1112", "__uint64_t"); +__static_renaming("____quad_t_1113", "__quad_t"); +__static_renaming("____u_quad_t_1114", "__u_quad_t"); +__static_renaming("____dev_t_1115", "__dev_t"); +__static_renaming("____uid_t_1116", "__uid_t"); +__static_renaming("____gid_t_1117", "__gid_t"); +__static_renaming("____ino_t_1118", "__ino_t"); +__static_renaming("____ino64_t_1119", "__ino64_t"); +__static_renaming("____mode_t_1120", "__mode_t"); +__static_renaming("____nlink_t_1121", "__nlink_t"); +__static_renaming("____off_t_1122", "__off_t"); +__static_renaming("____off64_t_1123", "__off64_t"); +__static_renaming("____pid_t_1124", "__pid_t"); +__static_renaming("____fsid_t_1128", "__fsid_t"); +__static_renaming("____clock_t_1129", "__clock_t"); +__static_renaming("____rlim_t_1130", "__rlim_t"); +__static_renaming("____rlim64_t_1131", "__rlim64_t"); +__static_renaming("____id_t_1132", "__id_t"); +__static_renaming("____time_t_1133", "__time_t"); +__static_renaming("____useconds_t_1134", "__useconds_t"); +__static_renaming("____suseconds_t_1135", "__suseconds_t"); +__static_renaming("____daddr_t_1136", "__daddr_t"); +__static_renaming("____key_t_1137", "__key_t"); +__static_renaming("____clockid_t_1138", "__clockid_t"); +__static_renaming("____timer_t_1139", "__timer_t"); +__static_renaming("____blksize_t_1140", "__blksize_t"); +__static_renaming("____blkcnt_t_1141", "__blkcnt_t"); +__static_renaming("____blkcnt64_t_1142", "__blkcnt64_t"); +__static_renaming("____fsblkcnt_t_1143", "__fsblkcnt_t"); +__static_renaming("____fsblkcnt64_t_1144", "__fsblkcnt64_t"); +__static_renaming("____fsfilcnt_t_1145", "__fsfilcnt_t"); +__static_renaming("____fsfilcnt64_t_1146", "__fsfilcnt64_t"); +__static_renaming("____fsword_t_1147", "__fsword_t"); +__static_renaming("____ssize_t_1148", "__ssize_t"); +__static_renaming("____syscall_slong_t_1149", "__syscall_slong_t"); +__static_renaming("____syscall_ulong_t_1150", "__syscall_ulong_t"); +__static_renaming("____loff_t_1151", "__loff_t"); +__static_renaming("____qaddr_t_1153", "__qaddr_t"); +__static_renaming("____caddr_t_1154", "__caddr_t"); +__static_renaming("____intptr_t_1155", "__intptr_t"); +__static_renaming("____socklen_t_1156", "__socklen_t"); +__static_renaming("____bswap_32_1158", "__bswap_32"); +__static_renaming("____bswap_64_1162", "__bswap_64"); +__static_renaming("____bswap_64_1163", "__bswap_64"); +__static_renaming("____WAIT_STATUS_1185", "__WAIT_STATUS"); +__static_renaming("__div_t_1190", "div_t"); +__static_renaming("__ldiv_t_1195", "ldiv_t"); +__static_renaming("__lldiv_t_1200", "lldiv_t"); +__static_renaming("____ctype_get_mb_cur_max_1201", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1202", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1203", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1204", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1205", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1206", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1207", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1208", "__ctype_get_mb_cur_max"); +__static_renaming("__atof_1210", "atof"); +__static_renaming("__atof_1211", "atof"); +__static_renaming("__atoi_1213", "atoi"); +__static_renaming("__atoi_1214", "atoi"); +__static_renaming("__atol_1216", "atol"); +__static_renaming("__atol_1217", "atol"); +__static_renaming("__atoll_1219", "atoll"); +__static_renaming("__atoll_1220", "atoll"); +__static_renaming("__strtod_1223", "strtod"); +__static_renaming("__strtof_1226", "strtof"); +__static_renaming("__strtold_1229", "strtold"); +__static_renaming("__strtol_1233", "strtol"); +__static_renaming("__strtoul_1237", "strtoul"); +__static_renaming("__strtoq_1241", "strtoq"); +__static_renaming("__strtouq_1245", "strtouq"); +__static_renaming("__strtoll_1249", "strtoll"); +__static_renaming("__strtoll_1250", "strtoll"); +__static_renaming("__strtoull_1254", "strtoull"); +__static_renaming("__l64a_1259", "l64a"); +__static_renaming("__l64a_1260", "l64a"); +__static_renaming("__a64l_1262", "a64l"); +__static_renaming("__a64l_1263", "a64l"); +__static_renaming("____u_char_1264", "__u_char"); +__static_renaming("____u_short_1265", "__u_short"); +__static_renaming("____u_int_1266", "__u_int"); +__static_renaming("____u_long_1267", "__u_long"); +__static_renaming("____int8_t_1268", "__int8_t"); +__static_renaming("____uint8_t_1269", "__uint8_t"); +__static_renaming("____int16_t_1270", "__int16_t"); +__static_renaming("____uint16_t_1271", "__uint16_t"); +__static_renaming("____int32_t_1272", "__int32_t"); +__static_renaming("____uint32_t_1273", "__uint32_t"); +__static_renaming("____int64_t_1274", "__int64_t"); +__static_renaming("____uint64_t_1275", "__uint64_t"); +__static_renaming("____quad_t_1276", "__quad_t"); +__static_renaming("____u_quad_t_1277", "__u_quad_t"); +__static_renaming("____dev_t_1278", "__dev_t"); +__static_renaming("____uid_t_1279", "__uid_t"); +__static_renaming("____gid_t_1280", "__gid_t"); +__static_renaming("____ino_t_1281", "__ino_t"); +__static_renaming("____ino64_t_1282", "__ino64_t"); +__static_renaming("____mode_t_1283", "__mode_t"); +__static_renaming("____nlink_t_1284", "__nlink_t"); +__static_renaming("____off_t_1285", "__off_t"); +__static_renaming("____off64_t_1286", "__off64_t"); +__static_renaming("____pid_t_1287", "__pid_t"); +__static_renaming("____fsid_t_1291", "__fsid_t"); +__static_renaming("____clock_t_1292", "__clock_t"); +__static_renaming("____rlim_t_1293", "__rlim_t"); +__static_renaming("____rlim64_t_1294", "__rlim64_t"); +__static_renaming("____id_t_1295", "__id_t"); +__static_renaming("____time_t_1296", "__time_t"); +__static_renaming("____useconds_t_1297", "__useconds_t"); +__static_renaming("____suseconds_t_1298", "__suseconds_t"); +__static_renaming("____daddr_t_1299", "__daddr_t"); +__static_renaming("____key_t_1300", "__key_t"); +__static_renaming("____clockid_t_1301", "__clockid_t"); +__static_renaming("____timer_t_1302", "__timer_t"); +__static_renaming("____blksize_t_1303", "__blksize_t"); +__static_renaming("____blkcnt_t_1304", "__blkcnt_t"); +__static_renaming("____blkcnt64_t_1305", "__blkcnt64_t"); +__static_renaming("____fsblkcnt_t_1306", "__fsblkcnt_t"); +__static_renaming("____fsblkcnt64_t_1307", "__fsblkcnt64_t"); +__static_renaming("____fsfilcnt_t_1308", "__fsfilcnt_t"); +__static_renaming("____fsfilcnt64_t_1309", "__fsfilcnt64_t"); +__static_renaming("____fsword_t_1310", "__fsword_t"); +__static_renaming("____ssize_t_1311", "__ssize_t"); +__static_renaming("____syscall_slong_t_1312", "__syscall_slong_t"); +__static_renaming("____syscall_ulong_t_1313", "__syscall_ulong_t"); +__static_renaming("____loff_t_1314", "__loff_t"); +__static_renaming("____qaddr_t_1316", "__qaddr_t"); +__static_renaming("____caddr_t_1317", "__caddr_t"); +__static_renaming("____intptr_t_1318", "__intptr_t"); +__static_renaming("____socklen_t_1319", "__socklen_t"); +__static_renaming("__u_char_1320", "u_char"); +__static_renaming("__u_char_1321", "u_char"); +__static_renaming("__u_char_1322", "u_char"); +__static_renaming("__u_short_1323", "u_short"); +__static_renaming("__u_short_1324", "u_short"); +__static_renaming("__u_short_1325", "u_short"); +__static_renaming("__u_int_1326", "u_int"); +__static_renaming("__u_int_1327", "u_int"); +__static_renaming("__u_int_1328", "u_int"); +__static_renaming("__u_long_1329", "u_long"); +__static_renaming("__u_long_1330", "u_long"); +__static_renaming("__u_long_1331", "u_long"); +__static_renaming("__quad_t_1332", "quad_t"); +__static_renaming("__quad_t_1333", "quad_t"); +__static_renaming("__quad_t_1334", "quad_t"); +__static_renaming("__u_quad_t_1335", "u_quad_t"); +__static_renaming("__u_quad_t_1336", "u_quad_t"); +__static_renaming("__u_quad_t_1337", "u_quad_t"); +__static_renaming("__fsid_t_1338", "fsid_t"); +__static_renaming("__fsid_t_1339", "fsid_t"); +__static_renaming("__fsid_t_1340", "fsid_t"); +__static_renaming("__loff_t_1342", "loff_t"); +__static_renaming("__loff_t_1343", "loff_t"); +__static_renaming("__loff_t_1344", "loff_t"); +__static_renaming("__loff_t_1346", "loff_t"); +__static_renaming("__loff_t_1347", "loff_t"); +__static_renaming("__loff_t_1348", "loff_t"); +__static_renaming("__ino_t_1350", "ino_t"); +__static_renaming("__ino_t_1351", "ino_t"); +__static_renaming("__ino_t_1352", "ino_t"); +__static_renaming("__ino_t_1354", "ino_t"); +__static_renaming("__ino_t_1355", "ino_t"); +__static_renaming("__ino_t_1356", "ino_t"); +__static_renaming("__dev_t_1358", "dev_t"); +__static_renaming("__dev_t_1359", "dev_t"); +__static_renaming("__dev_t_1360", "dev_t"); +__static_renaming("__gid_t_1362", "gid_t"); +__static_renaming("__gid_t_1363", "gid_t"); +__static_renaming("__gid_t_1364", "gid_t"); +__static_renaming("__gid_t_1366", "gid_t"); +__static_renaming("__gid_t_1367", "gid_t"); +__static_renaming("__gid_t_1368", "gid_t"); +__static_renaming("__mode_t_1370", "mode_t"); +__static_renaming("__mode_t_1371", "mode_t"); +__static_renaming("__mode_t_1372", "mode_t"); +__static_renaming("__nlink_t_1374", "nlink_t"); +__static_renaming("__nlink_t_1375", "nlink_t"); +__static_renaming("__nlink_t_1376", "nlink_t"); +__static_renaming("__uid_t_1378", "uid_t"); +__static_renaming("__uid_t_1379", "uid_t"); +__static_renaming("__uid_t_1380", "uid_t"); +__static_renaming("__uid_t_1382", "uid_t"); +__static_renaming("__uid_t_1383", "uid_t"); +__static_renaming("__uid_t_1384", "uid_t"); +__static_renaming("__off_t_1386", "off_t"); +__static_renaming("__off_t_1387", "off_t"); +__static_renaming("__off_t_1389", "off_t"); +__static_renaming("__off_t_1390", "off_t"); +__static_renaming("__pid_t_1392", "pid_t"); +__static_renaming("__pid_t_1393", "pid_t"); +__static_renaming("__pid_t_1394", "pid_t"); +__static_renaming("__pid_t_1396", "pid_t"); +__static_renaming("__pid_t_1397", "pid_t"); +__static_renaming("__id_t_1399", "id_t"); +__static_renaming("__id_t_1400", "id_t"); +__static_renaming("__id_t_1401", "id_t"); +__static_renaming("__ssize_t_1403", "ssize_t"); +__static_renaming("__ssize_t_1404", "ssize_t"); +__static_renaming("__daddr_t_1406", "daddr_t"); +__static_renaming("__daddr_t_1407", "daddr_t"); +__static_renaming("__daddr_t_1408", "daddr_t"); +__static_renaming("__caddr_t_1410", "caddr_t"); +__static_renaming("__caddr_t_1411", "caddr_t"); +__static_renaming("__caddr_t_1412", "caddr_t"); +__static_renaming("__key_t_1413", "key_t"); +__static_renaming("__key_t_1414", "key_t"); +__static_renaming("__key_t_1415", "key_t"); +__static_renaming("__key_t_1417", "key_t"); +__static_renaming("__key_t_1418", "key_t"); +__static_renaming("__key_t_1419", "key_t"); +__static_renaming("__clock_t_1421", "clock_t"); +__static_renaming("__clock_t_1422", "clock_t"); +__static_renaming("__clock_t_1423", "clock_t"); +__static_renaming("__time_t_1425", "time_t"); +__static_renaming("__time_t_1426", "time_t"); +__static_renaming("__time_t_1427", "time_t"); +__static_renaming("__clockid_t_1429", "clockid_t"); +__static_renaming("__clockid_t_1430", "clockid_t"); +__static_renaming("__clockid_t_1431", "clockid_t"); +__static_renaming("__timer_t_1433", "timer_t"); +__static_renaming("__timer_t_1434", "timer_t"); +__static_renaming("__timer_t_1435", "timer_t"); +__static_renaming("__ulong_1437", "ulong"); +__static_renaming("__ulong_1438", "ulong"); +__static_renaming("__ulong_1439", "ulong"); +__static_renaming("__ushort_1440", "ushort"); +__static_renaming("__uint_1441", "uint"); +__static_renaming("__int8_t_1442", "int8_t"); +__static_renaming("__int16_t_1443", "int16_t"); +__static_renaming("__int32_t_1444", "int32_t"); +__static_renaming("__int64_t_1445", "int64_t"); +__static_renaming("__u_int8_t_1446", "u_int8_t"); +__static_renaming("__u_int16_t_1447", "u_int16_t"); +__static_renaming("__u_int32_t_1448", "u_int32_t"); +__static_renaming("__u_int64_t_1449", "u_int64_t"); +__static_renaming("__register_t_1450", "register_t"); +__static_renaming("____bswap_32_1452", "__bswap_32"); +__static_renaming("____bswap_64_1456", "__bswap_64"); +__static_renaming("____bswap_64_1457", "__bswap_64"); +__static_renaming("____sig_atomic_t_1460", "__sig_atomic_t"); +__static_renaming("____sigset_t_1464", "__sigset_t"); +__static_renaming("__sigset_t_1465", "sigset_t"); +__static_renaming("__suseconds_t_1486", "suseconds_t"); +__static_renaming("__suseconds_t_1487", "suseconds_t"); +__static_renaming("__suseconds_t_1488", "suseconds_t"); +__static_renaming("____fd_mask_1490", "__fd_mask"); +__static_renaming("____fd_mask_1491", "__fd_mask"); +__static_renaming("__fd_set_1499", "fd_set"); +__static_renaming("__fd_mask_1500", "fd_mask"); +__static_renaming("__fd_mask_1501", "fd_mask"); +__static_renaming("__select_1513", "select"); +__static_renaming("__select_1514", "select"); +__static_renaming("__pselect_1529", "pselect"); +__static_renaming("__pselect_1530", "pselect"); +__static_renaming("____fdelt_chk_1534", "__fdelt_chk"); +__static_renaming("____fdelt_warn_1536", "__fdelt_warn"); +__static_renaming("__gnu_dev_major_1538", "gnu_dev_major"); +__static_renaming("__gnu_dev_major_1539", "gnu_dev_major"); +__static_renaming("__gnu_dev_minor_1541", "gnu_dev_minor"); +__static_renaming("__gnu_dev_makedev_1544", "gnu_dev_makedev"); +__static_renaming("__blksize_t_1549", "blksize_t"); +__static_renaming("__blksize_t_1550", "blksize_t"); +__static_renaming("__blksize_t_1551", "blksize_t"); +__static_renaming("__blkcnt_t_1553", "blkcnt_t"); +__static_renaming("__blkcnt_t_1554", "blkcnt_t"); +__static_renaming("__blkcnt_t_1555", "blkcnt_t"); +__static_renaming("__fsblkcnt_t_1557", "fsblkcnt_t"); +__static_renaming("__fsblkcnt_t_1558", "fsblkcnt_t"); +__static_renaming("__fsblkcnt_t_1559", "fsblkcnt_t"); +__static_renaming("__blkcnt_t_1561", "blkcnt_t"); +__static_renaming("__blkcnt_t_1562", "blkcnt_t"); +__static_renaming("__blkcnt_t_1563", "blkcnt_t"); +__static_renaming("__fsblkcnt_t_1565", "fsblkcnt_t"); +__static_renaming("__fsblkcnt_t_1566", "fsblkcnt_t"); +__static_renaming("__fsblkcnt_t_1567", "fsblkcnt_t"); +__static_renaming("__fsfilcnt_t_1569", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_1570", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_1571", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_1573", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_1574", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_1575", "fsfilcnt_t"); +__static_renaming("__pthread_t_1577", "pthread_t"); +__static_renaming("__pthread_attr_t_1581", "pthread_attr_t"); +__static_renaming("____pthread_list_t_1586", "__pthread_list_t"); +__static_renaming("____pthread_list_t_1587", "__pthread_list_t"); +__static_renaming("__pthread_mutex_t_1603", "pthread_mutex_t"); +__static_renaming("__pthread_mutexattr_t_1608", "pthread_mutexattr_t"); +__static_renaming("__rand_1609", "rand"); +__static_renaming("__srand_1611", "srand"); +__static_renaming("__rand_r_1613", "rand_r"); +__static_renaming("__drand48_1614", "drand48"); +__static_renaming("__erand48_1616", "erand48"); +__static_renaming("__lrand48_1617", "lrand48"); +__static_renaming("__nrand48_1619", "nrand48"); +__static_renaming("__mrand48_1620", "mrand48"); +__static_renaming("__jrand48_1622", "jrand48"); +__static_renaming("__srand48_1624", "srand48"); +__static_renaming("__seed48_1626", "seed48"); +__static_renaming("__lcong48_1628", "lcong48"); +__static_renaming("__malloc_1631", "malloc"); +__static_renaming("__malloc_1632", "malloc"); +__static_renaming("__malloc_1633", "malloc"); +__static_renaming("__malloc_1634", "malloc"); +__static_renaming("__calloc_1639", "calloc"); +__static_renaming("__calloc_1640", "calloc"); +__static_renaming("__calloc_1641", "calloc"); +__static_renaming("__calloc_1642", "calloc"); +__static_renaming("__realloc_1646", "realloc"); +__static_renaming("__realloc_1647", "realloc"); +__static_renaming("__free_1649", "free"); +__static_renaming("__cfree_1651", "cfree"); +__static_renaming("__alloca_1654", "alloca"); +__static_renaming("__alloca_1655", "alloca"); +__static_renaming("__valloc_1658", "valloc"); +__static_renaming("__valloc_1659", "valloc"); +__static_renaming("__valloc_1660", "valloc"); +__static_renaming("__valloc_1661", "valloc"); +__static_renaming("__posix_memalign_1667", "posix_memalign"); +__static_renaming("__posix_memalign_1668", "posix_memalign"); +__static_renaming("__posix_memalign_1669", "posix_memalign"); +__static_renaming("__posix_memalign_1670", "posix_memalign"); +__static_renaming("__aligned_alloc_1675", "aligned_alloc"); +__static_renaming("__aligned_alloc_1676", "aligned_alloc"); +__static_renaming("__aligned_alloc_1677", "aligned_alloc"); +__static_renaming("__aligned_alloc_1678", "aligned_alloc"); +__static_renaming("__aligned_alloc_1679", "aligned_alloc"); +__static_renaming("__aligned_alloc_1680", "aligned_alloc"); +__static_renaming("__aligned_alloc_1681", "aligned_alloc"); +__static_renaming("__aligned_alloc_1682", "aligned_alloc"); +__static_renaming("__abort_1683", "abort"); +__static_renaming("__atexit_1685", "atexit"); +__static_renaming("__at_quick_exit_1687", "at_quick_exit"); +__static_renaming("__on_exit_1692", "on_exit"); +__static_renaming("__exit_1694", "exit"); +__static_renaming("__exit_1695", "exit"); +__static_renaming("__quick_exit_1697", "quick_exit"); +__static_renaming("___Exit_1699", "_Exit"); +__static_renaming("__getenv_1701", "getenv"); +__static_renaming("__getenv_1702", "getenv"); +__static_renaming("__putenv_1704", "putenv"); +__static_renaming("__setenv_1708", "setenv"); +__static_renaming("__unsetenv_1710", "unsetenv"); +__static_renaming("__clearenv_1711", "clearenv"); +__static_renaming("__mktemp_1713", "mktemp"); +__static_renaming("__mkstemp_1716", "mkstemp"); +__static_renaming("__mkstemp_1717", "mkstemp"); +__static_renaming("__mkstemp_1718", "mkstemp"); +__static_renaming("__mkstemp_1719", "mkstemp"); +__static_renaming("__mkstemps_1724", "mkstemps"); +__static_renaming("__mkstemps_1725", "mkstemps"); +__static_renaming("__mkstemps_1726", "mkstemps"); +__static_renaming("__mkstemps_1727", "mkstemps"); +__static_renaming("__mkdtemp_1729", "mkdtemp"); +__static_renaming("__mkdtemp_1730", "mkdtemp"); +__static_renaming("__system_1732", "system"); +__static_renaming("__system_1733", "system"); +__static_renaming("__system_1734", "system"); +__static_renaming("__system_1735", "system"); +__static_renaming("__realpath_1738", "realpath"); +__static_renaming("__realpath_1739", "realpath"); +__static_renaming("____compar_fn_t_1740", "__compar_fn_t"); +__static_renaming("__bsearch_1751", "bsearch"); +__static_renaming("__bsearch_1752", "bsearch"); +__static_renaming("__bsearch_1755", "bsearch"); +__static_renaming("__bsearch_1756", "bsearch"); +__static_renaming("____l_1765", "__l"); +__static_renaming("____l_1766", "__l"); +__static_renaming("____u_1767", "__u"); +__static_renaming("____u_1768", "__u"); +__static_renaming("____idx_1769", "__idx"); +__static_renaming("____idx_1770", "__idx"); +__static_renaming("____p_1771", "__p"); +__static_renaming("____comparison_1772", "__comparison"); +__static_renaming("__qsort_1784", "qsort"); +__static_renaming("__qsort_1786", "qsort"); +__static_renaming("__qsort_1788", "qsort"); +__static_renaming("__qsort_1790", "qsort"); +__static_renaming("__abs_1793", "abs"); +__static_renaming("__abs_1794", "abs"); +__static_renaming("__labs_1796", "labs"); +__static_renaming("__labs_1797", "labs"); +__static_renaming("__llabs_1799", "llabs"); +__static_renaming("__llabs_1800", "llabs"); +__static_renaming("__div_1803", "div"); +__static_renaming("__div_1804", "div"); +__static_renaming("__ldiv_1807", "ldiv"); +__static_renaming("__ldiv_1809", "ldiv"); +__static_renaming("__lldiv_1813", "lldiv"); +__static_renaming("__lldiv_1815", "lldiv"); +__static_renaming("__ecvt_1821", "ecvt"); +__static_renaming("__ecvt_1822", "ecvt"); +__static_renaming("__fcvt_1827", "fcvt"); +__static_renaming("__fcvt_1828", "fcvt"); +__static_renaming("__gcvt_1832", "gcvt"); +__static_renaming("__gcvt_1833", "gcvt"); +__static_renaming("__qecvt_1838", "qecvt"); +__static_renaming("__qecvt_1839", "qecvt"); +__static_renaming("__qfcvt_1844", "qfcvt"); +__static_renaming("__qfcvt_1845", "qfcvt"); +__static_renaming("__qgcvt_1849", "qgcvt"); +__static_renaming("__qgcvt_1850", "qgcvt"); +__static_renaming("__ecvt_r_1858", "ecvt_r"); +__static_renaming("__ecvt_r_1859", "ecvt_r"); +__static_renaming("__fcvt_r_1867", "fcvt_r"); +__static_renaming("__fcvt_r_1868", "fcvt_r"); +__static_renaming("__qecvt_r_1876", "qecvt_r"); +__static_renaming("__qecvt_r_1877", "qecvt_r"); +__static_renaming("__qfcvt_r_1885", "qfcvt_r"); +__static_renaming("__qfcvt_r_1886", "qfcvt_r"); +__static_renaming("__mblen_1890", "mblen"); +__static_renaming("__mblen_1891", "mblen"); +__static_renaming("__mblen_1892", "mblen"); +__static_renaming("__mblen_1893", "mblen"); +__static_renaming("__mbtowc_1898", "mbtowc"); +__static_renaming("__mbtowc_1899", "mbtowc"); +__static_renaming("__wctomb_1902", "wctomb"); +__static_renaming("__mbstowcs_1907", "mbstowcs"); +__static_renaming("__mbstowcs_1908", "mbstowcs"); +__static_renaming("__wcstombs_1913", "wcstombs"); +__static_renaming("__wcstombs_1914", "wcstombs"); +__static_renaming("__rpmatch_1916", "rpmatch"); +__static_renaming("__rpmatch_1917", "rpmatch"); +__static_renaming("__getsubopt_1921", "getsubopt"); +__static_renaming("__getsubopt_1922", "getsubopt"); +__static_renaming("__getloadavg_1925", "getloadavg"); +__static_renaming("____realpath_chk_1931", "__realpath_chk"); +__static_renaming("____realpath_chk_1932", "__realpath_chk"); +__static_renaming("____realpath_alias_1935", "__realpath_alias"); +__static_renaming("____realpath_chk_warn_1940", "__realpath_chk_warn"); +__static_renaming("____realpath_chk_warn_1941", "__realpath_chk_warn"); +__static_renaming("____ptsname_r_chk_1951", "__ptsname_r_chk"); +__static_renaming("____ptsname_r_chk_1952", "__ptsname_r_chk"); +__static_renaming("____ptsname_r_alias_1957", "__ptsname_r_alias"); +__static_renaming("____ptsname_r_alias_1958", "__ptsname_r_alias"); +__static_renaming("____ptsname_r_chk_warn_1965", "__ptsname_r_chk_warn"); +__static_renaming("____ptsname_r_chk_warn_1966", "__ptsname_r_chk_warn"); +__static_renaming("____wctomb_chk_1977", "__wctomb_chk"); +__static_renaming("____wctomb_chk_1978", "__wctomb_chk"); +__static_renaming("____wctomb_alias_1981", "__wctomb_alias"); +__static_renaming("____mbstowcs_chk_1990", "__mbstowcs_chk"); +__static_renaming("____mbstowcs_chk_1991", "__mbstowcs_chk"); +__static_renaming("____mbstowcs_alias_1996", "__mbstowcs_alias"); +__static_renaming("____mbstowcs_alias_1997", "__mbstowcs_alias"); +__static_renaming("____mbstowcs_chk_warn_2004", "__mbstowcs_chk_warn"); +__static_renaming("____mbstowcs_chk_warn_2005", "__mbstowcs_chk_warn"); +__static_renaming("____wcstombs_chk_2016", "__wcstombs_chk"); +__static_renaming("____wcstombs_chk_2017", "__wcstombs_chk"); +__static_renaming("____wcstombs_alias_2022", "__wcstombs_alias"); +__static_renaming("____wcstombs_alias_2023", "__wcstombs_alias"); +__static_renaming("____wcstombs_chk_warn_2030", "__wcstombs_chk_warn"); +__static_renaming("____wcstombs_chk_warn_2031", "__wcstombs_chk_warn"); +__static_renaming("__ap_log_perror__2037", "ap_log_perror_"); +__static_renaming("__ap_log_perror__2038", "ap_log_perror_"); +__static_renaming("__ap_log_perror__2039", "ap_log_perror_"); +__static_renaming("__main_2049", "main"); + +__static_condition_renaming("__static_condition_default_53", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_76", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_84", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_123", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_169", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_170", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_173", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_182", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_187", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_193", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_198", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_201", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_204", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_210", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_217", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_223", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_229", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_235", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_238", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_241", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_244", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_246", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_248", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_249", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_250", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_253", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_255", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_257", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_258", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_259", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_263", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_264", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_267", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_270", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_271", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_274", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_275", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_278", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_280", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); +__static_condition_renaming("__static_condition_default_282", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_284", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_286", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_288", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_290", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_293", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_296", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_299", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_311", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_313", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_315", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_317", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_331", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_333", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_337", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_341", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_345", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_347", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_355", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_357", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_363", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_365", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_367", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_369", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_373", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_375", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_380", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_382", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_386", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_388", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_393", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_395", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_402", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_408", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_412", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_417", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_419", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_431", "!(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_432", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_433", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_438", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_444", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_455", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_461", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_469", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_471", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_473", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_475", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_486", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_488", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_489", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_491", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_493", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_494", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_497", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_499", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_503", "!(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_510", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_511", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_512", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_514", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_515", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_516", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_521", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_523", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_529", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_536", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_537", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_538", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_539", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_541", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_542", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_543", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_544", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_549", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_550", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_552", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_553", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_559", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_560", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_564", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_568", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_573", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_578", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_583", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_585", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_590", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_597", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_602", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_608", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_613", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_619", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_621", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_623", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_625", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_632", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_633", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_634", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_636", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_637", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_638", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_645", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_646", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_647", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_649", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_650", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_651", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_657", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_658", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_659", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_661", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_662", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_663", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_668", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_670", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_677", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_683", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_684", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_685", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_686", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_692", "!(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_693", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_699", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_700", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_701", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_702", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_708", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_709", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_715", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_717", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_721", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_723", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_727", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_734", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_735", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_736", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_745", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_746", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_747", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_751", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_752", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_753", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_755", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_756", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_757", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_759", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_760", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_761", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_767", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_768", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_769", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_779", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_780", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_781", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_787", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_788", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_789", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_791", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_792", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_793", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_797", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_801", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_803", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_807", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_809", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_813", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_817", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_819", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_823", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_825", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_834", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_836", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_840", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_842", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_846", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_848", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_852", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_858", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_862", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_864", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_868", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_872", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_875", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_878", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_883", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_887", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_891", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_894", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_907", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_914", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_929", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_938", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_944", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_955", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_956", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_957", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_963", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_967", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_972", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_978", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_979", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_980", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_991", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_998", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1005", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1007", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1009", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1015", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1022", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1027", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1028", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1035", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1036", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1042", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1043", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1050", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1051", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1057", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1058", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1065", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1066", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1072", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1073", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1080", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1081", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1089", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_1090", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1091", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1152", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1159", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1164", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1165", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1315", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1341", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __u_char_defined)"); +__static_condition_renaming("__static_condition_default_1345", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __u_char_defined)"); +__static_condition_renaming("__static_condition_default_1349", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __u_char_defined)"); +__static_condition_renaming("__static_condition_default_1353", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined)"); +__static_condition_renaming("__static_condition_default_1357", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined)"); +__static_condition_renaming("__static_condition_default_1361", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_1365", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_1369", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_1373", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1377", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __nlink_t_defined)"); +__static_condition_renaming("__static_condition_default_1381", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __nlink_t_defined)"); +__static_condition_renaming("__static_condition_default_1385", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __nlink_t_defined)"); +__static_condition_renaming("__static_condition_default_1388", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1391", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1395", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && (defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1398", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1402", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __id_t_defined)"); +__static_condition_renaming("__static_condition_default_1405", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1409", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_1416", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_1420", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_1424", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __clock_t_defined)"); +__static_condition_renaming("__static_condition_default_1428", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __time_t_defined)"); +__static_condition_renaming("__static_condition_default_1432", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __clockid_t_defined)"); +__static_condition_renaming("__static_condition_default_1436", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timer_t_defined)"); +__static_condition_renaming("__static_condition_default_1453", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1458", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1459", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1475", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_1485", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_1489", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __suseconds_t_defined)"); +__static_condition_renaming("__static_condition_default_1498", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1515", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_1516", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_1531", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_1532", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_1552", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blksize_t_defined)"); +__static_condition_renaming("__static_condition_default_1556", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined)"); +__static_condition_renaming("__static_condition_default_1560", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1564", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined)"); +__static_condition_renaming("__static_condition_default_1568", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1572", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1576", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1749", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1750", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1753", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1754", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1773", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1774", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1775", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1776", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1785", "!(defined __need___FILE) && !(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1787", "(defined __need___FILE) && !(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1789", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1791", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1808", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1810", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1814", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1816", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1944", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_2040", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_2041", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_2042", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_2043", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_2044", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_2045", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_2046", "!(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2047", "!(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2048", "(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2050", "(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined APLOG_MAX_LOGLEVEL)"); +__static_condition_renaming("__static_condition_default_2051", "!(defined __STRICT_ANSI__) && (defined APLOG_MAX_LOGLEVEL) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined APLOG_MAX_LOGLEVEL) || (defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined APLOG_MAX_LOGLEVEL)"); +__static_condition_renaming("__static_condition_default_2052", "(defined APLOG_MAX_LOGLEVEL)"); +__static_condition_renaming("__static_condition_default_2053", "!(defined APLOG_MAX_LOGLEVEL)"); +__static_condition_renaming("__static_condition_default_2054", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); + +if (__static_condition_default_2054) { __static_parse_error("Unable to parse"); } }; @@ -1004,297 +1495,498 @@ typedef long int ____ssize_t_49;// L110:L172 typedef long int ____syscall_slong_t_50;// L93:L175 typedef unsigned long int ____syscall_ulong_t_51;// L94:L177 typedef ____off64_t_24 ____loff_t_52;// L181 -typedef ____quad_t_14 * (____qaddr_t_53);// L182 -typedef char * (____caddr_t_54);// L183 -typedef long int ____intptr_t_55;// L110:L186 -typedef unsigned int ____socklen_t_56;// L92:L189 -typedef struct __forward_tag_reference_57 __FILE_58;// L48 -typedef struct __forward_tag_reference_57 ____FILE_59;// L64 -union ____anonymous_tag_60_61 { -unsigned int ____wch_62;// L265 -char ____wchb_63[4];// L92 +typedef ____quad_t_14 * (____qaddr_t_54);// L182 +typedef char * (____caddr_t_55);// L183 +typedef long int ____intptr_t_56;// L110:L186 +typedef unsigned int ____socklen_t_57;// L92:L189 +typedef struct __forward_tag_reference_58 __FILE_59;// L48 +typedef struct __forward_tag_reference_58 ____FILE_60;// L64 +union ____anonymous_tag_61_62 { +unsigned int ____wch_63;// L265 +char ____wchb_64[4];// L92 +}; +struct ____anonymous_tag_65_66 { +int ____count_67;// L84 +union ____anonymous_tag_61_62 ____value_68;// L85 }; -struct ____anonymous_tag_64_65 { -int ____count_66;// L84 -union ____anonymous_tag_60_61 ____value_67;// L85 +typedef struct ____anonymous_tag_65_66 ____mbstate_t_69;// L82:L94 +struct ____anonymous_tag_70_71 { +____off_t_23 ____pos_72;// L0 +____mbstate_t_69 ____state_74;// L0 }; -typedef struct ____anonymous_tag_64_65 ____mbstate_t_68;// L82:L94 -struct ____anonymous_tag_69_70 { -____off_t_23 ____pos_71;// L0 -____mbstate_t_68 ____state_72;// L0 +typedef struct ____anonymous_tag_70_71 ___G_fpos_t_77;// L21:L25 +struct ____anonymous_tag_78_79 { +____off64_t_24 ____pos_80;// L0 +____mbstate_t_69 ____state_82;// L0 }; -typedef struct ____anonymous_tag_69_70 ___G_fpos_t_75;// L21:L25 -struct ____anonymous_tag_76_77 { -____off64_t_24 ____pos_78;// L0 -____mbstate_t_68 ____state_79;// L0 +typedef struct ____anonymous_tag_78_79 ___G_fpos64_t_85;// L26:L30 +typedef __builtin_va_list ____gnuc_va_list_86;// L40 +typedef void ___IO_lock_t_88;// L150 +struct ___IO_marker_90 { +struct __forward_tag_reference_89 * (___next_91);// L0 +struct __forward_tag_reference_58 * (___sbuf_92);// L0 +int ___pos_93;// L162 }; -typedef struct ____anonymous_tag_76_77 ___G_fpos64_t_81;// L26:L30 -typedef __builtin_va_list ____gnuc_va_list_82;// L40 -typedef void ___IO_lock_t_84;// L150 -struct ___IO_marker_86 { -struct __forward_tag_reference_85 * (___next_87);// L0 -struct __forward_tag_reference_57 * (___sbuf_88);// L0 -int ___pos_89;// L162 +enum ____codecvt_result_98 { +____codecvt_ok_94, +____codecvt_partial_95, +____codecvt_error_96, +____codecvt_noconv_97, }; -enum ____codecvt_result_94 { -____codecvt_ok_90, -____codecvt_partial_91, -____codecvt_error_92, -____codecvt_noconv_93, +struct ___IO_FILE_99 { +int ___flags_100;// L242 +char * (___IO_read_ptr_101);// L247 +char * (___IO_read_end_102);// L248 +char * (___IO_read_base_103);// L249 +char * (___IO_write_base_104);// L250 +char * (___IO_write_ptr_105);// L251 +char * (___IO_write_end_106);// L252 +char * (___IO_buf_base_107);// L253 +char * (___IO_buf_end_108);// L254 +char * (___IO_save_base_109);// L256 +char * (___IO_backup_base_110);// L257 +char * (___IO_save_end_111);// L258 +struct ___IO_marker_90 * (___markers_112);// L260 +struct __forward_tag_reference_58 * (___chain_113);// L0 +int ___fileno_114;// L264 +int ___flags2_115;// L268 +____off_t_23 ___old_offset_116;// L0 +unsigned short ___cur_column_118;// L274 +signed char ___vtable_offset_119;// L275 +char ___shortbuf_120[1];// L276 +___IO_lock_t_88 * (___lock_121);// L0 }; -struct ___IO_FILE_95 { -int ___flags_96;// L242 -char * (___IO_read_ptr_97);// L247 -char * (___IO_read_end_98);// L248 -char * (___IO_read_base_99);// L249 -char * (___IO_write_base_100);// L250 -char * (___IO_write_ptr_101);// L251 -char * (___IO_write_end_102);// L252 -char * (___IO_buf_base_103);// L253 -char * (___IO_buf_end_104);// L254 -char * (___IO_save_base_105);// L256 -char * (___IO_backup_base_106);// L257 -char * (___IO_save_end_107);// L258 -struct ___IO_marker_86 * (___markers_108);// L260 -struct __forward_tag_reference_57 * (___chain_109);// L0 -int ___fileno_110;// L264 -int ___flags2_111;// L268 -____off_t_23 ___old_offset_112;// L0 -unsigned short ___cur_column_113;// L274 -signed char ___vtable_offset_114;// L275 -char ___shortbuf_115[1];// L276 -___IO_lock_t_84 * (___lock_116);// L0 +struct ___IO_FILE_124 { +int ___flags_125;// L242 +char * (___IO_read_ptr_126);// L247 +char * (___IO_read_end_127);// L248 +char * (___IO_read_base_128);// L249 +char * (___IO_write_base_129);// L250 +char * (___IO_write_ptr_130);// L251 +char * (___IO_write_end_131);// L252 +char * (___IO_buf_base_132);// L253 +char * (___IO_buf_end_133);// L254 +char * (___IO_save_base_134);// L256 +char * (___IO_backup_base_135);// L257 +char * (___IO_save_end_136);// L258 +struct ___IO_marker_90 * (___markers_137);// L260 +struct __forward_tag_reference_58 * (___chain_138);// L0 +int ___fileno_139;// L264 +int ___flags2_140;// L268 +____off_t_23 ___old_offset_141;// L0 +unsigned short ___cur_column_143;// L274 +signed char ___vtable_offset_144;// L275 +char ___shortbuf_145[1];// L276 +___IO_lock_t_88 * (___lock_146);// L0 +____off64_t_24 ___offset_148;// L0 +void * (____pad1_150);// L297 +void * (____pad2_151);// L298 +void * (____pad3_152);// L299 +void * (____pad4_153);// L300 +__size_t_1 ____pad5_154;// L0 +int ___mode_155;// L303 +char ___unused2_156[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -struct ___IO_FILE_119 { -int ___flags_120;// L242 -char * (___IO_read_ptr_121);// L247 -char * (___IO_read_end_122);// L248 -char * (___IO_read_base_123);// L249 -char * (___IO_write_base_124);// L250 -char * (___IO_write_ptr_125);// L251 -char * (___IO_write_end_126);// L252 -char * (___IO_buf_base_127);// L253 -char * (___IO_buf_end_128);// L254 -char * (___IO_save_base_129);// L256 -char * (___IO_backup_base_130);// L257 -char * (___IO_save_end_131);// L258 -struct ___IO_marker_86 * (___markers_132);// L260 -struct __forward_tag_reference_57 * (___chain_133);// L0 -int ___fileno_134;// L264 -int ___flags2_135;// L268 -____off_t_23 ___old_offset_136;// L0 -unsigned short ___cur_column_137;// L274 -signed char ___vtable_offset_138;// L275 -char ___shortbuf_139[1];// L276 -___IO_lock_t_84 * (___lock_140);// L0 -____off64_t_24 ___offset_142;// L0 -void * (____pad1_143);// L297 -void * (____pad2_144);// L298 -void * (____pad3_145);// L299 -void * (____pad4_146);// L300 -__size_t_1 ____pad5_147;// L0 -int ___mode_148;// L303 -char ___unused2_149[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +struct ___IO_FILE_complete_157 { +struct ___IO_FILE_99 ___file_158;// L286 +____off64_t_24 ___offset_160;// L0 +void * (____pad1_162);// L297 +void * (____pad2_163);// L298 +void * (____pad3_164);// L299 +void * (____pad4_165);// L300 +__size_t_1 ____pad5_166;// L0 +int ___mode_167;// L303 +char ___unused2_168[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -struct ___IO_FILE_complete_150 { -struct ___IO_FILE_95 ___file_151;// L286 -____off64_t_24 ___offset_153;// L0 -void * (____pad1_154);// L297 -void * (____pad2_155);// L298 -void * (____pad3_156);// L299 -void * (____pad4_157);// L300 -__size_t_1 ____pad5_158;// L0 -int ___mode_159;// L303 -char ___unused2_160[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +typedef struct ___IO_FILE_99 ___IO_FILE_171;// L310 +typedef struct ___IO_FILE_124 ___IO_FILE_172;// L310 +typedef ____ssize_t_49 (____io_read_fn_181) (void * (____cookie_178), char * (____buf_179), __size_t_1 ____nbytes_180);// L333 +typedef ____ssize_t_49 (____io_write_fn_186) (void * (____cookie_183), const char * (____buf_184), __size_t_1 ____n_185);// L341:L342 +typedef int (____io_seek_fn_192) (void * (____cookie_188), ____off64_t_24 * (____pos_189), int ____w_191);// L350 +typedef int (____io_close_fn_195) (void * (____cookie_194));// L353 +typedef ____gnuc_va_list_86 __va_list_279;// L79 +typedef ____off_t_23 __off_t_281;// L90 +typedef ____off64_t_24 __off_t_283;// L92 +typedef ____ssize_t_49 __ssize_t_285;// L102 +typedef ___G_fpos_t_77 __fpos_t_287;// L110 +typedef ___G_fpos64_t_85 __fpos_t_289;// L112 +extern const char * const __sys_errlist_830[];// L27 +typedef long int __ptrdiff_t_1092;// L143:L324 +typedef long unsigned int __size_t_1093;// L177:L209 +typedef int __wchar_t_1094;// L243:L321 +enum ____anonymous_tag_1098_1099 { +__P_ALL_1095, +__P_PID_1096, +__P_PGID_1097, }; -typedef struct ___IO_FILE_95 ___IO_FILE_163;// L310 -typedef struct ___IO_FILE_119 ___IO_FILE_164;// L310 -typedef ____ssize_t_49 (____io_read_fn_173) (void * (____cookie_170), char * (____buf_171), __size_t_1 ____nbytes_172);// L333 -typedef ____ssize_t_49 (____io_write_fn_177) (void * (____cookie_174), const char * (____buf_175), __size_t_1 ____n_176);// L341:L342 -typedef int (____io_seek_fn_181) (void * (____cookie_178), ____off64_t_24 * (____pos_179), int ____w_180);// L350 -typedef int (____io_close_fn_183) (void * (____cookie_182));// L353 -typedef ____gnuc_va_list_82 __va_list_248;// L79 -typedef ____off_t_23 __off_t_250;// L90 -typedef ____off64_t_24 __off_t_251;// L92 -typedef ____ssize_t_49 __ssize_t_252;// L102 -typedef ___G_fpos_t_75 __fpos_t_253;// L110 -typedef ___G_fpos64_t_81 __fpos_t_255;// L112 -extern const char * const __sys_errlist_756[];// L27 -typedef int __wchar_t_1018;// L243:L321 -enum ____anonymous_tag_1022_1023 { -__P_ALL_1019, -__P_PID_1020, -__P_PGID_1021, +typedef enum ____anonymous_tag_1098_1099 __idtype_t_1100;// L50:L55 +typedef unsigned char ____u_char_1101;// L30 +typedef unsigned short int ____u_short_1102;// L31 +typedef unsigned int ____u_int_1103;// L32 +typedef unsigned long int ____u_long_1104;// L33 +typedef signed char ____int8_t_1105;// L36 +typedef unsigned char ____uint8_t_1106;// L37 +typedef signed short int ____int16_t_1107;// L38 +typedef unsigned short int ____uint16_t_1108;// L39 +typedef signed int ____int32_t_1109;// L40 +typedef unsigned int ____uint32_t_1110;// L41 +typedef signed long int ____int64_t_1111;// L43 +typedef unsigned long int ____uint64_t_1112;// L44 +typedef long int ____quad_t_1113;// L52 +typedef unsigned long int ____u_quad_t_1114;// L53 +typedef unsigned long int ____dev_t_1115;// L109:L124 +typedef unsigned int ____uid_t_1116;// L92:L125 +typedef unsigned int ____gid_t_1117;// L92:L126 +typedef unsigned long int ____ino_t_1118;// L94:L127 +typedef unsigned long int ____ino64_t_1119;// L109:L128 +typedef unsigned int ____mode_t_1120;// L92:L129 +typedef unsigned long int ____nlink_t_1121;// L94:L130 +typedef long int ____off_t_1122;// L93:L131 +typedef long int ____off64_t_1123;// L108:L132 +typedef int ____pid_t_1124;// L91:L133 +struct ____anonymous_tag_1125_1126 { +int ____val_1127[2];// L72 }; -typedef enum ____anonymous_tag_1022_1023 __idtype_t_1024;// L50:L55 -struct ____anonymous_tag_1030_1031 { -unsigned int ____w_termsig_1032 : 7;// L72 -unsigned int ____w_coredump_1033 : 1;// L73 -unsigned int ____w_retcode_1034 : 8;// L74 -unsigned int __anon_id_0_1035 : 16;// L75 +typedef struct ____anonymous_tag_1125_1126 ____fsid_t_1128;// L72:L134 +typedef long int ____clock_t_1129;// L93:L135 +typedef unsigned long int ____rlim_t_1130;// L94:L136 +typedef unsigned long int ____rlim64_t_1131;// L109:L137 +typedef unsigned int ____id_t_1132;// L92:L138 +typedef long int ____time_t_1133;// L93:L139 +typedef unsigned int ____useconds_t_1134;// L92:L140 +typedef long int ____suseconds_t_1135;// L93:L141 +typedef int ____daddr_t_1136;// L91:L143 +typedef int ____key_t_1137;// L91:L144 +typedef int ____clockid_t_1138;// L91:L147 +typedef void * (____timer_t_1139);// L70:L150 +typedef long int ____blksize_t_1140;// L93:L153 +typedef long int ____blkcnt_t_1141;// L93:L158 +typedef long int ____blkcnt64_t_1142;// L108:L159 +typedef unsigned long int ____fsblkcnt_t_1143;// L94:L162 +typedef unsigned long int ____fsblkcnt64_t_1144;// L109:L163 +typedef unsigned long int ____fsfilcnt_t_1145;// L94:L166 +typedef unsigned long int ____fsfilcnt64_t_1146;// L109:L167 +typedef long int ____fsword_t_1147;// L93:L170 +typedef long int ____ssize_t_1148;// L110:L172 +typedef long int ____syscall_slong_t_1149;// L93:L175 +typedef unsigned long int ____syscall_ulong_t_1150;// L94:L177 +typedef ____off64_t_1123 ____loff_t_1151;// L181 +typedef ____quad_t_1113 * (____qaddr_t_1153);// L182 +typedef char * (____caddr_t_1154);// L183 +typedef long int ____intptr_t_1155;// L110:L186 +typedef unsigned int ____socklen_t_1156;// L92:L189 +struct ____anonymous_tag_1166_1167 { +unsigned int ____w_termsig_1168 : 7;// L72 +unsigned int ____w_coredump_1169 : 1;// L73 +unsigned int ____w_retcode_1170 : 8;// L74 +unsigned int __anon_id_0_1171 : 16;// L75 }; -struct ____anonymous_tag_1036_1037 { -unsigned int ____w_stopval_1038 : 8;// L87 -unsigned int ____w_stopsig_1039 : 8;// L88 -unsigned int __anon_id_1_1040 : 16;// L89 +struct ____anonymous_tag_1172_1173 { +unsigned int ____w_stopval_1174 : 8;// L87 +unsigned int ____w_stopsig_1175 : 8;// L88 +unsigned int __anon_id_1_1176 : 16;// L89 }; -union __wait_1041 { -int __w_status_1042;// L68 -struct ____anonymous_tag_1030_1031 ____wait_terminated_1043;// L69 -struct ____anonymous_tag_1036_1037 ____wait_stopped_1044;// L84 +union __wait_1177 { +int __w_status_1178;// L68 +struct ____anonymous_tag_1166_1167 ____wait_terminated_1179;// L69 +struct ____anonymous_tag_1172_1173 ____wait_stopped_1180;// L84 }; -union ____anonymous_tag_1045_1046 { -union __wait_1041 * (____uptr_1047);// L69 -int * (____iptr_1048);// L70 +union ____anonymous_tag_1181_1182 { +union __wait_1177 * (____uptr_1183);// L69 +int * (____iptr_1184);// L70 }; -typedef union ____anonymous_tag_1045_1046 ____WAIT_STATUS_1049;// L67:L71 -struct ____anonymous_tag_1050_1051 { -int __quot_1052;// L99 -int __rem_1053;// L100 +typedef union ____anonymous_tag_1181_1182 ____WAIT_STATUS_1185;// L67:L71 +struct ____anonymous_tag_1186_1187 { +int __quot_1188;// L99 +int __rem_1189;// L100 }; -typedef struct ____anonymous_tag_1050_1051 __div_t_1054;// L97:L101 -struct ____anonymous_tag_1055_1056 { -long int __quot_1057;// L107 -long int __rem_1058;// L108 +typedef struct ____anonymous_tag_1186_1187 __div_t_1190;// L97:L101 +struct ____anonymous_tag_1191_1192 { +long int __quot_1193;// L107 +long int __rem_1194;// L108 }; -typedef struct ____anonymous_tag_1055_1056 __ldiv_t_1059;// L105:L109 -struct ____anonymous_tag_1060_1061 { -long long int __quot_1062;// L119 -long long int __rem_1063;// L120 +typedef struct ____anonymous_tag_1191_1192 __ldiv_t_1195;// L105:L109 +struct ____anonymous_tag_1196_1197 { +long long int __quot_1198;// L119 +long long int __rem_1199;// L120 }; -typedef struct ____anonymous_tag_1060_1061 __lldiv_t_1064;// L117:L121 -typedef ____u_char_2 __u_char_1124;// L33 -typedef ____u_short_3 __u_short_1125;// L34 -typedef ____u_int_4 __u_int_1126;// L35 -typedef ____u_long_5 __u_long_1127;// L36 -typedef ____quad_t_14 __quad_t_1128;// L37 -typedef ____u_quad_t_15 __u_quad_t_1129;// L38 -typedef ____fsid_t_29 __fsid_t_1130;// L39 -typedef ____loff_t_52 __loff_t_1131;// L44 -typedef ____ino64_t_20 __ino_t_1132;// L50 -typedef ____ino_t_19 __ino_t_1133;// L48 -typedef ____dev_t_16 __dev_t_1134;// L60 -typedef ____gid_t_18 __gid_t_1135;// L65 -typedef ____gid_t_18 __gid_t_1136;// L65 -typedef ____mode_t_21 __mode_t_1137;// L70 -typedef ____nlink_t_22 __nlink_t_1138;// L75 -typedef ____uid_t_17 __uid_t_1139;// L80 -typedef ____uid_t_17 __uid_t_1140;// L80 -typedef ____pid_t_25 __pid_t_1141;// L98 -typedef ____id_t_33 __id_t_1142;// L104 -typedef ____daddr_t_37 __daddr_t_1143;// L115 -typedef ____caddr_t_54 __caddr_t_1144;// L116 -typedef ____key_t_38 __key_t_1145;// L122 -typedef ____key_t_38 __key_t_1146;// L122 -typedef ____clock_t_30 __clock_t_1147;// L59 -typedef ____time_t_34 __time_t_1148;// L75 -typedef ____clockid_t_39 __clockid_t_1149;// L91 -typedef ____timer_t_40 __timer_t_1150;// L103 -typedef unsigned long int __ulong_1151;// L150 -typedef unsigned long int __ulong_1152;// L150 -typedef unsigned long int __ulong_1153;// L150 -typedef unsigned short int __ushort_1154;// L151 -typedef unsigned int __uint_1155;// L152 -typedef int __int8_t_1156;// L188:L194 -typedef int __int16_t_1157;// L188:L195 -typedef int __int32_t_1158;// L188:L196 -typedef int __int64_t_1159;// L188:L197 -typedef unsigned int __u_int8_t_1160;// L190:L200 -typedef unsigned int __u_int16_t_1161;// L190:L201 -typedef unsigned int __u_int32_t_1162;// L190:L202 -typedef unsigned int __u_int64_t_1163;// L190:L203 -typedef int __register_t_1164;// L205 -typedef int ____sig_atomic_t_1170;// L22 -struct ____anonymous_tag_1171_1172 { -unsigned long int ____val_1173[( 1024 / ( 8 * sizeof(unsigned long) ) )];// L29 +typedef struct ____anonymous_tag_1196_1197 __lldiv_t_1200;// L117:L121 +typedef unsigned char ____u_char_1264;// L30 +typedef unsigned short int ____u_short_1265;// L31 +typedef unsigned int ____u_int_1266;// L32 +typedef unsigned long int ____u_long_1267;// L33 +typedef signed char ____int8_t_1268;// L36 +typedef unsigned char ____uint8_t_1269;// L37 +typedef signed short int ____int16_t_1270;// L38 +typedef unsigned short int ____uint16_t_1271;// L39 +typedef signed int ____int32_t_1272;// L40 +typedef unsigned int ____uint32_t_1273;// L41 +typedef signed long int ____int64_t_1274;// L43 +typedef unsigned long int ____uint64_t_1275;// L44 +typedef long int ____quad_t_1276;// L52 +typedef unsigned long int ____u_quad_t_1277;// L53 +typedef unsigned long int ____dev_t_1278;// L109:L124 +typedef unsigned int ____uid_t_1279;// L92:L125 +typedef unsigned int ____gid_t_1280;// L92:L126 +typedef unsigned long int ____ino_t_1281;// L94:L127 +typedef unsigned long int ____ino64_t_1282;// L109:L128 +typedef unsigned int ____mode_t_1283;// L92:L129 +typedef unsigned long int ____nlink_t_1284;// L94:L130 +typedef long int ____off_t_1285;// L93:L131 +typedef long int ____off64_t_1286;// L108:L132 +typedef int ____pid_t_1287;// L91:L133 +struct ____anonymous_tag_1288_1289 { +int ____val_1290[2];// L72 }; -typedef struct ____anonymous_tag_1171_1172 ____sigset_t_1174;// L27:L30 -typedef ____sigset_t_1174 __sigset_t_1175;// L37 -struct __timespec_1176 { -____time_t_34 __tv_sec_1177;// L0 -____syscall_slong_t_50 __tv_nsec_1178;// L0 +typedef struct ____anonymous_tag_1288_1289 ____fsid_t_1291;// L72:L134 +typedef long int ____clock_t_1292;// L93:L135 +typedef unsigned long int ____rlim_t_1293;// L94:L136 +typedef unsigned long int ____rlim64_t_1294;// L109:L137 +typedef unsigned int ____id_t_1295;// L92:L138 +typedef long int ____time_t_1296;// L93:L139 +typedef unsigned int ____useconds_t_1297;// L92:L140 +typedef long int ____suseconds_t_1298;// L93:L141 +typedef int ____daddr_t_1299;// L91:L143 +typedef int ____key_t_1300;// L91:L144 +typedef int ____clockid_t_1301;// L91:L147 +typedef void * (____timer_t_1302);// L70:L150 +typedef long int ____blksize_t_1303;// L93:L153 +typedef long int ____blkcnt_t_1304;// L93:L158 +typedef long int ____blkcnt64_t_1305;// L108:L159 +typedef unsigned long int ____fsblkcnt_t_1306;// L94:L162 +typedef unsigned long int ____fsblkcnt64_t_1307;// L109:L163 +typedef unsigned long int ____fsfilcnt_t_1308;// L94:L166 +typedef unsigned long int ____fsfilcnt64_t_1309;// L109:L167 +typedef long int ____fsword_t_1310;// L93:L170 +typedef long int ____ssize_t_1311;// L110:L172 +typedef long int ____syscall_slong_t_1312;// L93:L175 +typedef unsigned long int ____syscall_ulong_t_1313;// L94:L177 +typedef ____off64_t_1286 ____loff_t_1314;// L181 +typedef ____quad_t_1276 * (____qaddr_t_1316);// L182 +typedef char * (____caddr_t_1317);// L183 +typedef long int ____intptr_t_1318;// L110:L186 +typedef unsigned int ____socklen_t_1319;// L92:L189 +typedef ____u_char_2 __u_char_1320;// L33 +typedef ____u_char_1101 __u_char_1321;// L33 +typedef ____u_char_1264 __u_char_1322;// L33 +typedef ____u_short_3 __u_short_1323;// L34 +typedef ____u_short_1102 __u_short_1324;// L34 +typedef ____u_short_1265 __u_short_1325;// L34 +typedef ____u_int_4 __u_int_1326;// L35 +typedef ____u_int_1103 __u_int_1327;// L35 +typedef ____u_int_1266 __u_int_1328;// L35 +typedef ____u_long_5 __u_long_1329;// L36 +typedef ____u_long_1104 __u_long_1330;// L36 +typedef ____u_long_1267 __u_long_1331;// L36 +typedef ____quad_t_14 __quad_t_1332;// L37 +typedef ____quad_t_1113 __quad_t_1333;// L37 +typedef ____quad_t_1276 __quad_t_1334;// L37 +typedef ____u_quad_t_15 __u_quad_t_1335;// L38 +typedef ____u_quad_t_1114 __u_quad_t_1336;// L38 +typedef ____u_quad_t_1277 __u_quad_t_1337;// L38 +typedef ____fsid_t_29 __fsid_t_1338;// L39 +typedef ____fsid_t_1128 __fsid_t_1339;// L39 +typedef ____fsid_t_1291 __fsid_t_1340;// L39 +typedef ____loff_t_52 __loff_t_1342;// L44 +typedef ____loff_t_1151 __loff_t_1343;// L44 +typedef ____loff_t_1314 __loff_t_1344;// L44 +typedef ____loff_t_52 __loff_t_1346;// L44 +typedef ____loff_t_1151 __loff_t_1347;// L44 +typedef ____loff_t_1314 __loff_t_1348;// L44 +typedef ____ino64_t_20 __ino_t_1350;// L50 +typedef ____ino64_t_1119 __ino_t_1351;// L50 +typedef ____ino64_t_1282 __ino_t_1352;// L50 +typedef ____ino_t_19 __ino_t_1354;// L48 +typedef ____ino_t_1118 __ino_t_1355;// L48 +typedef ____ino_t_1281 __ino_t_1356;// L48 +typedef ____dev_t_16 __dev_t_1358;// L60 +typedef ____dev_t_1115 __dev_t_1359;// L60 +typedef ____dev_t_1278 __dev_t_1360;// L60 +typedef ____gid_t_18 __gid_t_1362;// L65 +typedef ____gid_t_1117 __gid_t_1363;// L65 +typedef ____gid_t_1280 __gid_t_1364;// L65 +typedef ____gid_t_18 __gid_t_1366;// L65 +typedef ____gid_t_1117 __gid_t_1367;// L65 +typedef ____gid_t_1280 __gid_t_1368;// L65 +typedef ____mode_t_21 __mode_t_1370;// L70 +typedef ____mode_t_1120 __mode_t_1371;// L70 +typedef ____mode_t_1283 __mode_t_1372;// L70 +typedef ____nlink_t_22 __nlink_t_1374;// L75 +typedef ____nlink_t_1121 __nlink_t_1375;// L75 +typedef ____nlink_t_1284 __nlink_t_1376;// L75 +typedef ____uid_t_17 __uid_t_1378;// L80 +typedef ____uid_t_1116 __uid_t_1379;// L80 +typedef ____uid_t_1279 __uid_t_1380;// L80 +typedef ____uid_t_17 __uid_t_1382;// L80 +typedef ____uid_t_1116 __uid_t_1383;// L80 +typedef ____uid_t_1279 __uid_t_1384;// L80 +typedef ____off64_t_1123 __off_t_1386;// L88 +typedef ____off64_t_1286 __off_t_1387;// L88 +typedef ____off_t_1122 __off_t_1389;// L86 +typedef ____off_t_1285 __off_t_1390;// L86 +typedef ____pid_t_25 __pid_t_1392;// L98 +typedef ____pid_t_1124 __pid_t_1393;// L98 +typedef ____pid_t_1287 __pid_t_1394;// L98 +typedef ____pid_t_1124 __pid_t_1396;// L98 +typedef ____pid_t_1287 __pid_t_1397;// L98 +typedef ____id_t_33 __id_t_1399;// L104 +typedef ____id_t_1132 __id_t_1400;// L104 +typedef ____id_t_1295 __id_t_1401;// L104 +typedef ____ssize_t_1148 __ssize_t_1403;// L109 +typedef ____ssize_t_1311 __ssize_t_1404;// L109 +typedef ____daddr_t_37 __daddr_t_1406;// L115 +typedef ____daddr_t_1136 __daddr_t_1407;// L115 +typedef ____daddr_t_1299 __daddr_t_1408;// L115 +typedef ____caddr_t_55 __caddr_t_1410;// L116 +typedef ____caddr_t_1154 __caddr_t_1411;// L116 +typedef ____caddr_t_1317 __caddr_t_1412;// L116 +typedef ____key_t_38 __key_t_1413;// L122 +typedef ____key_t_1137 __key_t_1414;// L122 +typedef ____key_t_1300 __key_t_1415;// L122 +typedef ____key_t_38 __key_t_1417;// L122 +typedef ____key_t_1137 __key_t_1418;// L122 +typedef ____key_t_1300 __key_t_1419;// L122 +typedef ____clock_t_30 __clock_t_1421;// L59 +typedef ____clock_t_1129 __clock_t_1422;// L59 +typedef ____clock_t_1292 __clock_t_1423;// L59 +typedef ____time_t_34 __time_t_1425;// L75 +typedef ____time_t_1133 __time_t_1426;// L75 +typedef ____time_t_1296 __time_t_1427;// L75 +typedef ____clockid_t_39 __clockid_t_1429;// L91 +typedef ____clockid_t_1138 __clockid_t_1430;// L91 +typedef ____clockid_t_1301 __clockid_t_1431;// L91 +typedef ____timer_t_40 __timer_t_1433;// L103 +typedef ____timer_t_1139 __timer_t_1434;// L103 +typedef ____timer_t_1302 __timer_t_1435;// L103 +typedef unsigned long int __ulong_1437;// L150 +typedef unsigned long int __ulong_1438;// L150 +typedef unsigned long int __ulong_1439;// L150 +typedef unsigned short int __ushort_1440;// L151 +typedef unsigned int __uint_1441;// L152 +typedef int __int8_t_1442;// L188:L194 +typedef int __int16_t_1443;// L188:L195 +typedef int __int32_t_1444;// L188:L196 +typedef int __int64_t_1445;// L188:L197 +typedef unsigned int __u_int8_t_1446;// L190:L200 +typedef unsigned int __u_int16_t_1447;// L190:L201 +typedef unsigned int __u_int32_t_1448;// L190:L202 +typedef unsigned int __u_int64_t_1449;// L190:L203 +typedef int __register_t_1450;// L205 +typedef int ____sig_atomic_t_1460;// L22 +struct ____anonymous_tag_1461_1462 { +unsigned long int ____val_1463[( 1024 / ( 8 * sizeof(unsigned long) ) )];// L29 }; -struct __timeval_1179 { -____time_t_34 __tv_sec_1180;// L0 -____suseconds_t_36 __tv_usec_1181;// L0 +typedef struct ____anonymous_tag_1461_1462 ____sigset_t_1464;// L27:L30 +typedef ____sigset_t_1464 __sigset_t_1465;// L37 +struct __timespec_1466 { +____time_t_34 __tv_sec_1467;// L0 +____time_t_1133 __tv_sec_1468;// L0 +____time_t_1296 __tv_sec_1469;// L0 +____syscall_slong_t_50 __tv_nsec_1471;// L0 +____syscall_slong_t_1149 __tv_nsec_1472;// L0 +____syscall_slong_t_1312 __tv_nsec_1473;// L0 }; -typedef ____suseconds_t_36 __suseconds_t_1182;// L48 -typedef long int ____fd_mask_1183;// L54 -typedef long int ____fd_mask_1184;// L54 -struct ____anonymous_tag_1185_1186 { -____fd_mask_1183 ____fds_bits_1187[1024 / ( 8 * ( int ) sizeof(long) )];// L0 -____fd_mask_1184 ____fds_bits_1188[1024 / ( 8 * ( int ) sizeof(long) )];// L0 +struct __timeval_1476 { +____time_t_34 __tv_sec_1477;// L0 +____time_t_1133 __tv_sec_1478;// L0 +____time_t_1296 __tv_sec_1479;// L0 +____suseconds_t_36 __tv_usec_1481;// L0 +____suseconds_t_1135 __tv_usec_1482;// L0 +____suseconds_t_1298 __tv_usec_1483;// L0 }; -typedef struct ____anonymous_tag_1185_1186 __fd_set_1189;// L64:L75 -typedef ____fd_mask_1183 __fd_mask_1190;// L82 -typedef ____fd_mask_1184 __fd_mask_1191;// L82 -typedef ____blksize_t_41 __blksize_t_1227;// L228 -typedef ____blkcnt_t_42 __blkcnt_t_1228;// L235 -typedef ____fsblkcnt_t_44 __fsblkcnt_t_1229;// L239 -typedef ____blkcnt64_t_43 __blkcnt_t_1230;// L248 -typedef ____fsblkcnt64_t_45 __fsblkcnt_t_1231;// L252 -typedef ____fsfilcnt_t_46 __fsfilcnt_t_1232;// L243 -typedef ____fsfilcnt64_t_47 __fsfilcnt_t_1233;// L256 -typedef unsigned long int __pthread_t_1234;// L60 -union __pthread_attr_t_1235 { -char ____size_1236[56];// L65 -long int ____align_1237;// L66 +typedef ____suseconds_t_36 __suseconds_t_1486;// L48 +typedef ____suseconds_t_1135 __suseconds_t_1487;// L48 +typedef ____suseconds_t_1298 __suseconds_t_1488;// L48 +typedef long int ____fd_mask_1490;// L54 +typedef long int ____fd_mask_1491;// L54 +struct ____anonymous_tag_1492_1493 { +____fd_mask_1490 ____fds_bits_1494[1024 / ( 8 * ( int ) sizeof(long) )];// L0 +____fd_mask_1491 ____fds_bits_1496[1024 / ( 8 * ( int ) sizeof(long) )];// L0 }; -typedef union __pthread_attr_t_1235 __pthread_attr_t_1238;// L69 -struct ____pthread_internal_list_1240 { -struct __forward_tag_reference_1239 * (____prev_1241);// L0 -struct __forward_tag_reference_1239 * (____next_1242);// L0 +typedef struct ____anonymous_tag_1492_1493 __fd_set_1499;// L64:L75 +typedef ____fd_mask_1490 __fd_mask_1500;// L82 +typedef ____fd_mask_1491 __fd_mask_1501;// L82 +typedef ____blksize_t_41 __blksize_t_1549;// L228 +typedef ____blksize_t_1140 __blksize_t_1550;// L228 +typedef ____blksize_t_1303 __blksize_t_1551;// L228 +typedef ____blkcnt_t_42 __blkcnt_t_1553;// L235 +typedef ____blkcnt_t_1141 __blkcnt_t_1554;// L235 +typedef ____blkcnt_t_1304 __blkcnt_t_1555;// L235 +typedef ____fsblkcnt_t_44 __fsblkcnt_t_1557;// L239 +typedef ____fsblkcnt_t_1143 __fsblkcnt_t_1558;// L239 +typedef ____fsblkcnt_t_1306 __fsblkcnt_t_1559;// L239 +typedef ____blkcnt64_t_43 __blkcnt_t_1561;// L248 +typedef ____blkcnt64_t_1142 __blkcnt_t_1562;// L248 +typedef ____blkcnt64_t_1305 __blkcnt_t_1563;// L248 +typedef ____fsblkcnt64_t_45 __fsblkcnt_t_1565;// L252 +typedef ____fsblkcnt64_t_1144 __fsblkcnt_t_1566;// L252 +typedef ____fsblkcnt64_t_1307 __fsblkcnt_t_1567;// L252 +typedef ____fsfilcnt_t_46 __fsfilcnt_t_1569;// L243 +typedef ____fsfilcnt_t_1145 __fsfilcnt_t_1570;// L243 +typedef ____fsfilcnt_t_1308 __fsfilcnt_t_1571;// L243 +typedef ____fsfilcnt64_t_47 __fsfilcnt_t_1573;// L256 +typedef ____fsfilcnt64_t_1146 __fsfilcnt_t_1574;// L256 +typedef ____fsfilcnt64_t_1309 __fsfilcnt_t_1575;// L256 +typedef unsigned long int __pthread_t_1577;// L60 +union __pthread_attr_t_1578 { +char ____size_1579[56];// L65 +long int ____align_1580;// L66 }; -typedef struct ____pthread_internal_list_1240 ____pthread_list_t_1243;// L75:L79 -typedef struct ____pthread_internal_list_1240 ____pthread_list_t_1244;// L75:L79 -struct ____pthread_mutex_s_1245 { -int ____lock_1246;// L94 -unsigned int ____count_1247;// L95 -int ____owner_1248;// L96 -unsigned int ____nusers_1249;// L98 -int ____kind_1250;// L102 -short ____spins_1251;// L104 -short ____elision_1252;// L105 -____pthread_list_t_1243 ____list_1253;// L0 -____pthread_list_t_1244 ____list_1254;// L0 +typedef union __pthread_attr_t_1578 __pthread_attr_t_1581;// L69 +struct ____pthread_internal_list_1583 { +struct __forward_tag_reference_1582 * (____prev_1584);// L0 +struct __forward_tag_reference_1582 * (____next_1585);// L0 }; -union ____anonymous_tag_1255_1256 { -struct ____pthread_mutex_s_1245 ____data_1257;// L92 -char ____size_1258[40];// L126 -long int ____align_1259;// L127 +typedef struct ____pthread_internal_list_1583 ____pthread_list_t_1586;// L75:L79 +typedef struct ____pthread_internal_list_1583 ____pthread_list_t_1587;// L75:L79 +struct ____pthread_mutex_s_1588 { +int ____lock_1589;// L94 +unsigned int ____count_1590;// L95 +int ____owner_1591;// L96 +unsigned int ____nusers_1592;// L98 +int ____kind_1593;// L102 +short ____spins_1594;// L104 +short ____elision_1595;// L105 +____pthread_list_t_1586 ____list_1596;// L0 +____pthread_list_t_1587 ____list_1597;// L0 }; -typedef union ____anonymous_tag_1255_1256 __pthread_mutex_t_1260;// L90:L128 -union ____anonymous_tag_1261_1262 { -char ____size_1263[4];// L132 -int ____align_1264;// L133 +union ____anonymous_tag_1598_1599 { +struct ____pthread_mutex_s_1588 ____data_1600;// L92 +char ____size_1601[40];// L126 +long int ____align_1602;// L127 }; -typedef union ____anonymous_tag_1261_1262 __pthread_mutexattr_t_1265;// L130:L134 -typedef int (* (____compar_fn_t_1374)) (const void *, const void *);// L741 +typedef union ____anonymous_tag_1598_1599 __pthread_mutex_t_1603;// L90:L128 +union ____anonymous_tag_1604_1605 { +char ____size_1606[4];// L132 +int ____align_1607;// L133 +}; +typedef union ____anonymous_tag_1604_1605 __pthread_mutexattr_t_1608;// L130:L134 +typedef int (* (____compar_fn_t_1740)) (const void *, const void *);// L741 -struct __forward_tag_reference_57 { // generated union of struct variations +struct __forward_tag_reference_89 { // generated union of struct variations union { -struct ___IO_FILE_95 ___IO_FILE_95; -struct ___IO_FILE_119 ___IO_FILE_119; +struct ___IO_marker_90 ___IO_marker_90; }; }; -struct __forward_tag_reference_85 { // generated union of struct variations +struct __forward_tag_reference_1582 { // generated union of struct variations union { -struct ___IO_marker_86 ___IO_marker_86; }; }; -struct __forward_tag_reference_1239 { // generated union of struct variations +struct __forward_tag_reference_58 { // generated union of struct variations union { +struct ___IO_FILE_99 ___IO_FILE_99; +struct ___IO_FILE_124 ___IO_FILE_124; }; }; -struct __forward_tag_reference_83 { // generated union of struct variations +struct __forward_tag_reference_87 { // generated union of struct variations union { }; }; -struct __forward_tag_reference_166 { // generated union of struct variations +struct __forward_tag_reference_174 { // generated union of struct variations union { }; }; @@ -1353,225 +2045,225 @@ union { // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_57 ;// L0 +struct __forward_tag_reference_58 ;// L0 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_83 ;// L0 -struct __forward_tag_reference_83 ;// L0 -struct __forward_tag_reference_57 ;// L0 +struct __forward_tag_reference_87 ;// L0 +struct __forward_tag_reference_87 ;// L0 +struct __forward_tag_reference_58 ;// L0 // typedef moved to top of scope -struct ___IO_marker_86 ;// L156 -enum ____codecvt_result_94 ;// L176 -struct ___IO_FILE_95 ;// L241 +struct ___IO_marker_90 ;// L156 +enum ____codecvt_result_98 ;// L176 +struct ___IO_FILE_99 ;// L241 -struct ___IO_FILE_119 ;// L241 -struct ___IO_FILE_complete_150 ;// L241 +struct ___IO_FILE_124 ;// L241 +struct ___IO_FILE_complete_157 ;// L241 // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_166 ;// L0 -extern struct __forward_tag_reference_166 ___IO_2_1_stdin__167;// L315 -extern struct __forward_tag_reference_166 ___IO_2_1_stdout__168;// L316 -extern struct __forward_tag_reference_166 ___IO_2_1_stderr__169;// L317 +struct __forward_tag_reference_174 ;// L0 +extern struct __forward_tag_reference_174 ___IO_2_1_stdin__175;// L315 +extern struct __forward_tag_reference_174 ___IO_2_1_stdout__176;// L316 +extern struct __forward_tag_reference_174 ___IO_2_1_stderr__177;// L317 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern int (____underflow_184) (___IO_FILE_163 *);// L385 -extern int (____underflow_185) (___IO_FILE_164 *);// L385 -extern int (____uflow_186) (___IO_FILE_163 *);// L386 -extern int (____uflow_187) (___IO_FILE_164 *);// L386 -extern int (____overflow_188) (___IO_FILE_163 *, int );// L387 -extern int (____overflow_189) (___IO_FILE_164 *, int );// L387 -extern int (___IO_getc_193) (___IO_FILE_163 * (____fp_190));// L429 -extern int (___IO_getc_194) (___IO_FILE_164 * (____fp_191));// L429 -extern int (___IO_putc_199) (int ____c_195, ___IO_FILE_163 * (____fp_196));// L430 -extern int (___IO_putc_200) (int ____c_195, ___IO_FILE_164 * (____fp_197));// L430 -extern int (___IO_feof_204) (___IO_FILE_163 * (____fp_201));// L431 -extern int (___IO_feof_205) (___IO_FILE_164 * (____fp_202));// L431 -extern int (___IO_ferror_209) (___IO_FILE_163 * (____fp_206));// L432 -extern int (___IO_ferror_210) (___IO_FILE_164 * (____fp_207));// L432 -extern int (___IO_peekc_locked_214) (___IO_FILE_163 * (____fp_211));// L434 -extern int (___IO_peekc_locked_215) (___IO_FILE_164 * (____fp_212));// L434 -extern void (___IO_flockfile_216) (___IO_FILE_163 *);// L440 -extern void (___IO_flockfile_217) (___IO_FILE_164 *);// L440 -extern void (___IO_funlockfile_218) (___IO_FILE_163 *);// L441 -extern void (___IO_funlockfile_219) (___IO_FILE_164 *);// L441 -extern int (___IO_ftrylockfile_220) (___IO_FILE_163 *);// L442 -extern int (___IO_ftrylockfile_221) (___IO_FILE_164 *);// L442 -extern int (___IO_vfscanf_222) (___IO_FILE_163 * __restrict , const char * __restrict , ____gnuc_va_list_82 , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_224) (___IO_FILE_164 * __restrict , const char * __restrict , ____gnuc_va_list_82 , int * __restrict );// L459:L460 - - -extern int (___IO_vfprintf_231) (___IO_FILE_163 * __restrict , const char * __restrict , ____gnuc_va_list_82 );// L461:L462 -extern int (___IO_vfprintf_233) (___IO_FILE_164 * __restrict , const char * __restrict , ____gnuc_va_list_82 );// L461:L462 - -extern ____ssize_t_49 (___IO_padn_238) (___IO_FILE_163 *, int , ____ssize_t_49 );// L463 -extern ____ssize_t_49 (___IO_padn_239) (___IO_FILE_164 *, int , ____ssize_t_49 );// L463 -extern __size_t_1 (___IO_sgetn_240) (___IO_FILE_163 *, void *, __size_t_1 );// L464 -extern __size_t_1 (___IO_sgetn_241) (___IO_FILE_164 *, void *, __size_t_1 );// L464 -extern ____off64_t_24 (___IO_seekoff_242) (___IO_FILE_163 *, ____off64_t_24 , int , int );// L466 -extern ____off64_t_24 (___IO_seekoff_243) (___IO_FILE_164 *, ____off64_t_24 , int , int );// L466 -extern ____off64_t_24 (___IO_seekpos_244) (___IO_FILE_163 *, ____off64_t_24 , int );// L467 -extern ____off64_t_24 (___IO_seekpos_245) (___IO_FILE_164 *, ____off64_t_24 , int );// L467 -extern void (___IO_free_backup_area_246) (___IO_FILE_163 *);// L469 -extern void (___IO_free_backup_area_247) (___IO_FILE_164 *);// L469 +extern int (____underflow_196) (___IO_FILE_171 *);// L385 +extern int (____underflow_197) (___IO_FILE_172 *);// L385 +extern int (____uflow_199) (___IO_FILE_171 *);// L386 +extern int (____uflow_200) (___IO_FILE_172 *);// L386 +extern int (____overflow_202) (___IO_FILE_171 *, int );// L387 +extern int (____overflow_203) (___IO_FILE_172 *, int );// L387 +extern int (___IO_getc_208) (___IO_FILE_171 * (____fp_205));// L429 +extern int (___IO_getc_209) (___IO_FILE_172 * (____fp_206));// L429 +extern int (___IO_putc_215) (int ____c_211, ___IO_FILE_171 * (____fp_212));// L430 +extern int (___IO_putc_216) (int ____c_211, ___IO_FILE_172 * (____fp_213));// L430 +extern int (___IO_feof_221) (___IO_FILE_171 * (____fp_218));// L431 +extern int (___IO_feof_222) (___IO_FILE_172 * (____fp_219));// L431 +extern int (___IO_ferror_227) (___IO_FILE_171 * (____fp_224));// L432 +extern int (___IO_ferror_228) (___IO_FILE_172 * (____fp_225));// L432 +extern int (___IO_peekc_locked_233) (___IO_FILE_171 * (____fp_230));// L434 +extern int (___IO_peekc_locked_234) (___IO_FILE_172 * (____fp_231));// L434 +extern void (___IO_flockfile_236) (___IO_FILE_171 *);// L440 +extern void (___IO_flockfile_237) (___IO_FILE_172 *);// L440 +extern void (___IO_funlockfile_239) (___IO_FILE_171 *);// L441 +extern void (___IO_funlockfile_240) (___IO_FILE_172 *);// L441 +extern int (___IO_ftrylockfile_242) (___IO_FILE_171 *);// L442 +extern int (___IO_ftrylockfile_243) (___IO_FILE_172 *);// L442 +extern int (___IO_vfscanf_245) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_247) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_251) (___IO_FILE_171 * __restrict , const char * __restrict , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_252) (___IO_FILE_172 * __restrict , const char * __restrict , int * __restrict );// L459:L460 +extern int (___IO_vfprintf_254) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 +extern int (___IO_vfprintf_256) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 +extern int (___IO_vfprintf_260) ();// L461:L462 +extern ____ssize_t_49 (___IO_padn_261) (___IO_FILE_171 *, int , ____ssize_t_49 );// L463 +extern ____ssize_t_49 (___IO_padn_262) (___IO_FILE_172 *, int , ____ssize_t_49 );// L463 +extern __size_t_1 (___IO_sgetn_265) (___IO_FILE_171 *, void *, __size_t_1 );// L464 +extern __size_t_1 (___IO_sgetn_266) (___IO_FILE_172 *, void *, __size_t_1 );// L464 +extern ____off64_t_24 (___IO_seekoff_268) (___IO_FILE_171 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekoff_269) (___IO_FILE_172 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekpos_272) (___IO_FILE_171 *, ____off64_t_24 , int );// L467 +extern ____off64_t_24 (___IO_seekpos_273) (___IO_FILE_172 *, ____off64_t_24 , int );// L467 +extern void (___IO_free_backup_area_276) (___IO_FILE_171 *);// L469 +extern void (___IO_free_backup_area_277) (___IO_FILE_172 *);// L469 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern struct ___IO_FILE_95 * (__stdin_257);// L168 -extern struct ___IO_FILE_119 * (__stdin_258);// L168 -extern struct ___IO_FILE_95 * (__stdout_259);// L169 -extern struct ___IO_FILE_119 * (__stdout_260);// L169 -extern struct ___IO_FILE_95 * (__stderr_261);// L170 -extern struct ___IO_FILE_119 * (__stderr_262);// L170 -extern int (__remove_264) (const char * (____filename_263));// L178 -extern int (__rename_267) (const char * (____old_265), const char * (____new_266));// L180 -extern int (__renameat_272) (int ____oldfd_268, const char * (____old_269), int ____newfd_270, const char * (____new_271));// L185:L186 -extern __FILE_58 * ((__tmpfile_273) (void ));// L195 -extern __FILE_58 * ((__tmpfile_279) (void ));// L198 -extern __FILE_58 * ((__tmpfile_277) (void ));// L198 -extern __FILE_58 * ((__tmpfile_275) (void ));// L195 -extern char * ((__tmpnam_282) (char * (____s_281)));// L209 -extern char * ((__tmpnam_283) (char * (____s_281)));// L209 -extern char * ((__tmpnam_r_285) (char * (____s_284)));// L215 -extern char * ((__tmpnam_r_286) (char * (____s_284)));// L215 -extern char * ((__tempnam_289) (const char * (____dir_287), const char * (____pfx_288)));// L227:L228 -extern char * ((__tempnam_290) (const char * (____dir_287), const char * (____pfx_288)));// L227:L228 -extern int (__fclose_293) (__FILE_58 * (____stream_291));// L237 -extern int (__fclose_295) (__FILE_58 * (____stream_291));// L237 -extern int (__fflush_299) (__FILE_58 * (____stream_297));// L242 -extern int (__fflush_unlocked_303) (__FILE_58 * (____stream_301));// L252 -extern __FILE_58 * ((__fopen_307) (const char * __restrict ____filename_305, const char * __restrict ____modes_306));// L272:L273 -extern __FILE_58 * ((__fopen_309) (const char * __restrict ____filename_305, const char * __restrict ____modes_306));// L272:L273 -extern __FILE_58 * ((__fopen_317) (const char * __restrict ____filename_315, const char * __restrict ____modes_316));// L283:L285 -extern __FILE_58 * ((__fopen_319) (const char * __restrict ____filename_315, const char * __restrict ____modes_316));// L283:L285 -extern __FILE_58 * ((__freopen_325) (const char * __restrict ____filename_311, const char * __restrict ____modes_312, __FILE_58 * __restrict ____stream_313));// L278:L280 -extern __FILE_58 * ((__freopen_331) (const char * __restrict ____filename_321, const char * __restrict ____modes_322, __FILE_58 * __restrict ____stream_323));// L286:L289 -extern __FILE_58 * ((__freopen_329) (const char * __restrict ____filename_321, const char * __restrict ____modes_322, __FILE_58 * __restrict ____stream_323));// L286:L289 -extern __FILE_58 * ((__freopen_327) (const char * __restrict ____filename_311, const char * __restrict ____modes_312, __FILE_58 * __restrict ____stream_313));// L278:L280 -extern __FILE_58 * ((__fdopen_335) (int ____fd_333, const char * (____modes_334)));// L306 -extern __FILE_58 * ((__fdopen_337) (int ____fd_333, const char * (____modes_334)));// L306 -extern __FILE_58 * ((__fmemopen_342) (void * (____s_339), __size_t_1 ____len_340, const char * (____modes_341)));// L319:L320 -extern __FILE_58 * ((__fmemopen_344) (void * (____s_339), __size_t_1 ____len_340, const char * (____modes_341)));// L319:L320 -extern __FILE_58 * ((__open_memstream_348) (char * (* (____bufloc_346)), __size_t_1 * (____sizeloc_347)));// L325 -extern __FILE_58 * ((__open_memstream_350) (char * (* (____bufloc_346)), __size_t_1 * (____sizeloc_347)));// L325 -extern void (__setbuf_355) (__FILE_58 * __restrict ____stream_352, char * __restrict ____buf_354);// L332 -extern void (__setbuf_357) (__FILE_58 * __restrict ____stream_352, char * __restrict ____buf_354);// L332 -extern int (__setvbuf_364) (__FILE_58 * __restrict ____stream_359, char * __restrict ____buf_361, int ____modes_362, __size_t_1 ____n_363);// L336:L337 -extern void (__setbuffer_369) (__FILE_58 * __restrict ____stream_365, char * __restrict ____buf_367, __size_t_1 ____size_368);// L343:L344 -extern void (__setlinebuf_373) (__FILE_58 * (____stream_371));// L347 -extern int (__fprintf_378) (__FILE_58 * __restrict ____stream_375, const char * __restrict ____format_377, ... );// L356:L357 -extern int (__fprintf_380) (__FILE_58 * __restrict ____stream_375, const char * __restrict ____format_377, ... );// L356:L357 -extern int (__printf_383) (const char * __restrict ____format_382, ... );// L362 -extern int (__sprintf_386) (char * __restrict ____s_384, const char * __restrict ____format_385, ... );// L364:L365 -extern int (__vfprintf_392) (__FILE_58 * __restrict ____s_387, const char * __restrict ____format_389, ____gnuc_va_list_82 ____arg_390);// L371:L372 -extern int (__vprintf_399) (const char * __restrict ____format_396, ____gnuc_va_list_82 ____arg_397);// L377 -extern int (__vsprintf_405) (char * __restrict ____s_401, const char * __restrict ____format_402, ____gnuc_va_list_82 ____arg_403);// L379:L380 -extern int (__snprintf_409) (char * __restrict ____s_406, __size_t_1 ____maxlen_407, const char * __restrict ____format_408, ... );// L386:L388 -extern int (__vsnprintf_415) (char * __restrict ____s_410, __size_t_1 ____maxlen_411, const char * __restrict ____format_412, ____gnuc_va_list_82 ____arg_413);// L390:L392 -extern int (__vdprintf_420) (int ____fd_416, const char * __restrict ____fmt_417, ____gnuc_va_list_82 ____arg_418);// L412:L414 -extern int (__dprintf_424) (int ____fd_422, const char * __restrict ____fmt_423, ... );// L415:L416 -extern int (__fscanf_428) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 -extern int (__fscanf_430) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 -extern int (__fscanf_432) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 -extern int (__fscanf_434) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 -extern int (__scanf_437) (const char * __restrict ____format_436, ... );// L431 -extern int (__scanf_438) (const char * __restrict ____format_436, ... );// L431 -extern int (__sscanf_441) (const char * __restrict ____s_439, const char * __restrict ____format_440, ... );// L433:L434 - - - - - - - -extern int (__vfscanf_468) (__FILE_58 * __restrict ____s_463, const char * __restrict ____format_465, ____gnuc_va_list_82 ____arg_466);// L471:L473 -extern int (__vfscanf_472) (__FILE_58 * __restrict ____s_463, const char * __restrict ____format_465, ____gnuc_va_list_82 ____arg_466);// L471:L473 -extern int (__vscanf_479) (const char * __restrict ____format_476, ____gnuc_va_list_82 ____arg_477);// L479:L480 -extern int (__vscanf_481) (const char * __restrict ____format_476, ____gnuc_va_list_82 ____arg_477);// L479:L480 -extern int (__vsscanf_487) (const char * __restrict ____s_483, const char * __restrict ____format_484, ____gnuc_va_list_82 ____arg_485);// L483:L485 - - - - - -extern int (__fgetc_520) (__FILE_58 * (____stream_518));// L531 -extern int (__getc_523) (__FILE_58 * (____stream_521));// L532 -extern int (__getchar_524) (void );// L538 -extern int (__getc_unlocked_527) (__FILE_58 * (____stream_525));// L550 -extern int (__getchar_unlocked_529) (void );// L551 -extern int (__fgetc_unlocked_532) (__FILE_58 * (____stream_530));// L561 -extern int (__fputc_537) (int ____c_534, __FILE_58 * (____stream_535));// L573 -extern int (__fputc_539) (int ____c_534, __FILE_58 * (____stream_535));// L573 -extern int (__putc_544) (int ____c_541, __FILE_58 * (____stream_542));// L574 -extern int (__putchar_546) (int ____c_545);// L580 -extern int (__fputc_unlocked_550) (int ____c_547, __FILE_58 * (____stream_548));// L594 -extern int (__putc_unlocked_555) (int ____c_552, __FILE_58 * (____stream_553));// L602 -extern int (__putchar_unlocked_558) (int ____c_557);// L603 -extern int (__getw_561) (__FILE_58 * (____stream_559));// L610 -extern int (__putw_566) (int ____w_563, __FILE_58 * (____stream_564));// L613 -extern char * ((__fgets_572) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 -extern char * ((__fgets_574) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 -extern char * ((__fgets_576) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 -extern char * ((__fgets_578) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 -extern ____ssize_t_49 (____getdelim_585) (char * (* __restrict ____lineptr_580), __size_t_1 * __restrict ____n_581, int ____delimiter_582, __FILE_58 * __restrict ____stream_583);// L665:L667 -extern ____ssize_t_49 (____getdelim_587) (char * (* __restrict ____lineptr_580), __size_t_1 * __restrict ____n_581, int ____delimiter_582, __FILE_58 * __restrict ____stream_583);// L665:L667 -extern ____ssize_t_49 (__getdelim_594) (char * (* __restrict ____lineptr_589), __size_t_1 * __restrict ____n_590, int ____delimiter_591, __FILE_58 * __restrict ____stream_592);// L668:L670 -extern ____ssize_t_49 (__getdelim_596) (char * (* __restrict ____lineptr_589), __size_t_1 * __restrict ____n_590, int ____delimiter_591, __FILE_58 * __restrict ____stream_592);// L668:L670 -extern ____ssize_t_49 (__getline_602) (char * (* __restrict ____lineptr_598), __size_t_1 * __restrict ____n_599, __FILE_58 * __restrict ____stream_600);// L678:L680 -extern ____ssize_t_49 (__getline_604) (char * (* __restrict ____lineptr_598), __size_t_1 * __restrict ____n_599, __FILE_58 * __restrict ____stream_600);// L678:L680 -extern int (__fputs_609) (const char * __restrict ____s_606, __FILE_58 * __restrict ____stream_607);// L689 -extern int (__fputs_611) (const char * __restrict ____s_606, __FILE_58 * __restrict ____stream_607);// L689 -extern int (__puts_614) (const char * (____s_613));// L695 -extern int (__ungetc_618) (int ____c_615, __FILE_58 * (____stream_616));// L702 -extern int (__fseek_654) (__FILE_58 * (____stream_650), long int ____off_652, int ____whence_653);// L749 -extern int (__fseek_656) (__FILE_58 * (____stream_650), long int ____off_652, int ____whence_653);// L749 -extern long int (__ftell_660) (__FILE_58 * (____stream_658));// L754 -extern long int (__ftell_662) (__FILE_58 * (____stream_658));// L754 -extern void (__rewind_666) (__FILE_58 * (____stream_664));// L759 -extern int (__fseeko_671) (__FILE_58 * (____stream_667), ____off_t_23 ____off_669, int ____whence_670);// L773 -extern int (__fseeko_679) (__FILE_58 * (____stream_675), ____off64_t_24 ____off_677, int ____whence_678);// L781:L783 -extern ____off_t_23 (__ftello_683) (__FILE_58 * (____stream_673));// L778 -extern ____off_t_23 (__ftello_685) (__FILE_58 * (____stream_673));// L778 -extern int (__fgetpos_693) (__FILE_58 * __restrict ____stream_689, __fpos_t_253 * __restrict ____pos_691);// L798 -extern ____off64_t_24 (__ftello_687) (__FILE_58 * (____stream_681));// L784 -extern int (__fgetpos_705) (__FILE_58 * __restrict ____stream_701, __fpos_t_255 * __restrict ____pos_703);// L806:L807 -extern int (__fsetpos_713) (__FILE_58 * (____stream_697), const __fpos_t_253 * (____pos_699));// L803 -extern int (__fsetpos_717) (__FILE_58 * (____stream_709), const __fpos_t_255 * (____pos_711));// L808:L809 -extern void (__clearerr_723) (__FILE_58 * (____stream_721));// L826 -extern int (__feof_726) (__FILE_58 * (____stream_724));// L828 -extern int (__feof_728) (__FILE_58 * (____stream_724));// L828 -extern int (__ferror_732) (__FILE_58 * (____stream_730));// L830 -extern int (__ferror_734) (__FILE_58 * (____stream_730));// L830 -extern void (__clearerr_unlocked_738) (__FILE_58 * (____stream_736));// L835 -extern int (__feof_unlocked_742) (__FILE_58 * (____stream_740));// L836 -extern int (__feof_unlocked_744) (__FILE_58 * (____stream_740));// L836 -extern int (__ferror_unlocked_748) (__FILE_58 * (____stream_746));// L837 -extern int (__ferror_unlocked_750) (__FILE_58 * (____stream_746));// L837 -extern void (__perror_753) (const char * (____s_752));// L846 -extern void (__perror_754) (const char * (____s_752));// L846 -extern int __sys_nerr_755;// L26 - -extern int (__fileno_761) (__FILE_58 * (____stream_757));// L858 -extern int (__fileno_759) (__FILE_58 * (____stream_757));// L858 -extern int (__fileno_unlocked_767) (__FILE_58 * (____stream_763));// L863 -extern int (__fileno_unlocked_765) (__FILE_58 * (____stream_763));// L863 -extern __FILE_58 * ((__popen_771) (const char * (____command_769), const char * (____modes_770)));// L872 -extern __FILE_58 * ((__popen_773) (const char * (____command_769), const char * (____modes_770)));// L872 -extern int (__pclose_777) (__FILE_58 * (____stream_775));// L878 -extern char * ((__ctermid_780) (char * (____s_779)));// L884 -extern void (__flockfile_783) (__FILE_58 * (____stream_781));// L912 -extern int (__ftrylockfile_787) (__FILE_58 * (____stream_785));// L916 -extern int (__ftrylockfile_789) (__FILE_58 * (____stream_785));// L916 -extern void (__funlockfile_793) (__FILE_58 * (____stream_791));// L919 +extern struct ___IO_FILE_99 * (__stdin_291);// L168 +extern struct ___IO_FILE_124 * (__stdin_292);// L168 +extern struct ___IO_FILE_99 * (__stdout_294);// L169 +extern struct ___IO_FILE_124 * (__stdout_295);// L169 +extern struct ___IO_FILE_99 * (__stderr_297);// L170 +extern struct ___IO_FILE_124 * (__stderr_298);// L170 +extern int (__remove_301) (const char * (____filename_300));// L178 +extern int (__rename_304) (const char * (____old_302), const char * (____new_303));// L180 +extern int (__renameat_309) (int ____oldfd_305, const char * (____old_306), int ____newfd_307, const char * (____new_308));// L185:L186 +extern __FILE_59 * ((__tmpfile_310) (void ));// L195 +extern __FILE_59 * ((__tmpfile_316) (void ));// L198 +extern __FILE_59 * ((__tmpfile_314) (void ));// L195 +extern __FILE_59 * ((__tmpfile_312) (void ));// L198 +extern char * ((__tmpnam_319) (char * (____s_318)));// L209 +extern char * ((__tmpnam_320) (char * (____s_318)));// L209 +extern char * ((__tmpnam_r_322) (char * (____s_321)));// L215 +extern char * ((__tmpnam_r_323) (char * (____s_321)));// L215 +extern char * ((__tempnam_326) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 +extern char * ((__tempnam_327) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 +extern int (__fclose_330) (__FILE_59 * (____stream_328));// L237 +extern int (__fclose_332) (__FILE_59 * (____stream_328));// L237 +extern int (__fflush_336) (__FILE_59 * (____stream_334));// L242 +extern int (__fflush_unlocked_340) (__FILE_59 * (____stream_338));// L252 +extern __FILE_59 * ((__fopen_344) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 +extern __FILE_59 * ((__fopen_346) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 +extern __FILE_59 * ((__fopen_354) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 +extern __FILE_59 * ((__fopen_356) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 +extern __FILE_59 * ((__freopen_362) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 +extern __FILE_59 * ((__freopen_368) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 +extern __FILE_59 * ((__freopen_366) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 +extern __FILE_59 * ((__freopen_364) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 +extern __FILE_59 * ((__fdopen_372) (int ____fd_370, const char * (____modes_371)));// L306 +extern __FILE_59 * ((__fdopen_374) (int ____fd_370, const char * (____modes_371)));// L306 +extern __FILE_59 * ((__fmemopen_379) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 +extern __FILE_59 * ((__fmemopen_381) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 +extern __FILE_59 * ((__open_memstream_385) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 +extern __FILE_59 * ((__open_memstream_387) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 +extern void (__setbuf_392) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 +extern void (__setbuf_394) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 +extern int (__setvbuf_401) (__FILE_59 * __restrict ____stream_396, char * __restrict ____buf_398, int ____modes_399, __size_t_1 ____n_400);// L336:L337 +extern void (__setbuffer_407) (__FILE_59 * __restrict ____stream_403, char * __restrict ____buf_405, __size_t_1 ____size_406);// L343:L344 +extern void (__setlinebuf_411) (__FILE_59 * (____stream_409));// L347 +extern int (__fprintf_416) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 +extern int (__fprintf_418) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 +extern int (__printf_421) (const char * __restrict ____format_420, ... );// L362 +extern int (__sprintf_424) (char * __restrict ____s_422, const char * __restrict ____format_423, ... );// L364:L365 +extern int (__vfprintf_430) (__FILE_59 * __restrict ____s_425, const char * __restrict ____format_427, ____gnuc_va_list_86 ____arg_428);// L371:L372 +extern int (__vprintf_437) (const char * __restrict ____format_434, ____gnuc_va_list_86 ____arg_435);// L377 +extern int (__vsprintf_443) (char * __restrict ____s_439, const char * __restrict ____format_440, ____gnuc_va_list_86 ____arg_441);// L379:L380 +extern int (__snprintf_448) (char * __restrict ____s_445, __size_t_1 ____maxlen_446, const char * __restrict ____format_447, ... );// L386:L388 +extern int (__vsnprintf_454) (char * __restrict ____s_449, __size_t_1 ____maxlen_450, const char * __restrict ____format_451, ____gnuc_va_list_86 ____arg_452);// L390:L392 +extern int (__vdprintf_460) (int ____fd_456, const char * __restrict ____fmt_457, ____gnuc_va_list_86 ____arg_458);// L412:L414 +extern int (__dprintf_464) (int ____fd_462, const char * __restrict ____fmt_463, ... );// L415:L416 +extern int (__fscanf_468) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_470) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_472) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_474) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__scanf_477) (const char * __restrict ____format_476, ... );// L431 +extern int (__scanf_478) (const char * __restrict ____format_476, ... );// L431 +extern int (__sscanf_481) (const char * __restrict ____s_479, const char * __restrict ____format_480, ... );// L433:L434 + + + + + + + +extern int (__vfscanf_509) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 +extern int (__vfscanf_513) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 +extern int (__vscanf_520) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 +extern int (__vscanf_522) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 +extern int (__vsscanf_528) (const char * __restrict ____s_524, const char * __restrict ____format_525, ____gnuc_va_list_86 ____arg_526);// L483:L485 + + + + + +extern int (__fgetc_563) (__FILE_59 * (____stream_561));// L531 +extern int (__getc_567) (__FILE_59 * (____stream_565));// L532 +extern int (__getchar_569) (void );// L538 +extern int (__getc_unlocked_572) (__FILE_59 * (____stream_570));// L550 +extern int (__getchar_unlocked_574) (void );// L551 +extern int (__fgetc_unlocked_577) (__FILE_59 * (____stream_575));// L561 +extern int (__fputc_582) (int ____c_579, __FILE_59 * (____stream_580));// L573 +extern int (__fputc_584) (int ____c_579, __FILE_59 * (____stream_580));// L573 +extern int (__putc_589) (int ____c_586, __FILE_59 * (____stream_587));// L574 +extern int (__putchar_592) (int ____c_591);// L580 +extern int (__fputc_unlocked_596) (int ____c_593, __FILE_59 * (____stream_594));// L594 +extern int (__putc_unlocked_601) (int ____c_598, __FILE_59 * (____stream_599));// L602 +extern int (__putchar_unlocked_604) (int ____c_603);// L603 +extern int (__getw_607) (__FILE_59 * (____stream_605));// L610 +extern int (__putw_612) (int ____w_609, __FILE_59 * (____stream_610));// L613 +extern char * ((__fgets_618) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_620) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_622) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_624) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern ____ssize_t_49 (____getdelim_631) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 +extern ____ssize_t_49 (____getdelim_635) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 +extern ____ssize_t_49 (__getdelim_644) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 +extern ____ssize_t_49 (__getdelim_648) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 +extern ____ssize_t_49 (__getline_656) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 +extern ____ssize_t_49 (__getline_660) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 +extern int (__fputs_667) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 +extern int (__fputs_669) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 +extern int (__puts_672) (const char * (____s_671));// L695 +extern int (__ungetc_676) (int ____c_673, __FILE_59 * (____stream_674));// L702 +extern int (__fseek_714) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 +extern int (__fseek_716) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 +extern long int (__ftell_720) (__FILE_59 * (____stream_718));// L754 +extern long int (__ftell_722) (__FILE_59 * (____stream_718));// L754 +extern void (__rewind_726) (__FILE_59 * (____stream_724));// L759 +extern int (__fseeko_733) (__FILE_59 * (____stream_728), ____off_t_23 ____off_730, int ____whence_732);// L773 +extern int (__fseeko_744) (__FILE_59 * (____stream_739), ____off64_t_24 ____off_741, int ____whence_743);// L781:L783 +extern ____off_t_23 (__ftello_758) (__FILE_59 * (____stream_737));// L778 +extern ____off_t_23 (__ftello_750) (__FILE_59 * (____stream_737));// L778 +extern int (__fgetpos_766) (__FILE_59 * __restrict ____stream_762, __fpos_t_287 * __restrict ____pos_764);// L798 +extern ____off64_t_24 (__ftello_754) (__FILE_59 * (____stream_748));// L784 +extern int (__fgetpos_778) (__FILE_59 * __restrict ____stream_774, __fpos_t_289 * __restrict ____pos_776);// L806:L807 +extern int (__fsetpos_786) (__FILE_59 * (____stream_770), const __fpos_t_287 * (____pos_772));// L803 +extern int (__fsetpos_790) (__FILE_59 * (____stream_782), const __fpos_t_289 * (____pos_784));// L808:L809 +extern void (__clearerr_796) (__FILE_59 * (____stream_794));// L826 +extern int (__feof_800) (__FILE_59 * (____stream_798));// L828 +extern int (__feof_802) (__FILE_59 * (____stream_798));// L828 +extern int (__ferror_806) (__FILE_59 * (____stream_804));// L830 +extern int (__ferror_808) (__FILE_59 * (____stream_804));// L830 +extern void (__clearerr_unlocked_812) (__FILE_59 * (____stream_810));// L835 +extern int (__feof_unlocked_816) (__FILE_59 * (____stream_814));// L836 +extern int (__feof_unlocked_818) (__FILE_59 * (____stream_814));// L836 +extern int (__ferror_unlocked_822) (__FILE_59 * (____stream_820));// L837 +extern int (__ferror_unlocked_824) (__FILE_59 * (____stream_820));// L837 +extern void (__perror_827) (const char * (____s_826));// L846 +extern void (__perror_828) (const char * (____s_826));// L846 +extern int __sys_nerr_829;// L26 + +extern int (__fileno_835) (__FILE_59 * (____stream_831));// L858 +extern int (__fileno_833) (__FILE_59 * (____stream_831));// L858 +extern int (__fileno_unlocked_841) (__FILE_59 * (____stream_837));// L863 +extern int (__fileno_unlocked_839) (__FILE_59 * (____stream_837));// L863 +extern __FILE_59 * ((__popen_845) (const char * (____command_843), const char * (____modes_844)));// L872 +extern __FILE_59 * ((__popen_847) (const char * (____command_843), const char * (____modes_844)));// L872 +extern int (__pclose_851) (__FILE_59 * (____stream_849));// L878 +extern char * ((__ctermid_854) (char * (____s_853)));// L884 +extern void (__flockfile_857) (__FILE_59 * (____stream_855));// L912 +extern int (__ftrylockfile_861) (__FILE_59 * (____stream_859));// L916 +extern int (__ftrylockfile_863) (__FILE_59 * (____stream_859));// L916 +extern void (__funlockfile_867) (__FILE_59 * (____stream_865));// L919 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ @@ -1583,39 +2275,93 @@ extern void (__funlockfile_793) (__FILE_58 * (____stream_791));// L919 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____sprintf_chk_825) (char * __restrict ____s_821, int ____flag_822, __size_t_1 ____slen_823, const char * __restrict ____format_824, ... );// L23:L24 -extern int (____vsprintf_chk_832) (char * __restrict ____s_826, int ____flag_827, __size_t_1 ____slen_828, const char * __restrict ____format_829, ____gnuc_va_list_82 ____ap_830);// L25:L27 +extern int (____sprintf_chk_899) (char * __restrict ____s_895, int ____flag_896, __size_t_1 ____slen_897, const char * __restrict ____format_898, ... );// L23:L24 +extern int (____vsprintf_chk_906) (char * __restrict ____s_900, int ____flag_901, __size_t_1 ____slen_902, const char * __restrict ____format_903, ____gnuc_va_list_86 ____ap_904);// L25:L27 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____snprintf_chk_846) (char * __restrict ____s_841, __size_t_1 ____n_842, int ____flag_843, __size_t_1 ____slen_844, const char * __restrict ____format_845, ... );// L52:L54 -extern int (____vsnprintf_chk_854) (char * __restrict ____s_847, __size_t_1 ____n_848, int ____flag_849, __size_t_1 ____slen_850, const char * __restrict ____format_851, ____gnuc_va_list_82 ____ap_852);// L55:L57 +extern int (____snprintf_chk_920) (char * __restrict ____s_915, __size_t_1 ____n_916, int ____flag_917, __size_t_1 ____slen_918, const char * __restrict ____format_919, ... );// L52:L54 +extern int (____vsnprintf_chk_928) (char * __restrict ____s_921, __size_t_1 ____n_922, int ____flag_923, __size_t_1 ____slen_924, const char * __restrict ____format_925, ____gnuc_va_list_86 ____ap_926);// L55:L57 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____fprintf_chk_869) (__FILE_58 * __restrict ____stream_865, int ____flag_867, const char * __restrict ____format_868, ... );// L85:L86 -extern int (____printf_chk_873) (int ____flag_871, const char * __restrict ____format_872, ... );// L87 -extern int (____vfprintf_chk_880) (__FILE_58 * __restrict ____stream_874, int ____flag_876, const char * __restrict ____format_877, ____gnuc_va_list_82 ____ap_878);// L88:L89 -extern int (____vprintf_chk_888) (int ____flag_884, const char * __restrict ____format_885, ____gnuc_va_list_82 ____ap_886);// L90:L91 +extern int (____fprintf_chk_943) (__FILE_59 * __restrict ____stream_939, int ____flag_941, const char * __restrict ____format_942, ... );// L85:L86 +extern int (____printf_chk_947) (int ____flag_945, const char * __restrict ____format_946, ... );// L87 +extern int (____vfprintf_chk_954) (__FILE_59 * __restrict ____stream_948, int ____flag_950, const char * __restrict ____format_951, ____gnuc_va_list_86 ____ap_952);// L88:L89 +extern int (____vprintf_chk_962) (int ____flag_958, const char * __restrict ____format_959, ____gnuc_va_list_86 ____ap_960);// L90:L91 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____dprintf_chk_910) (int ____fd_907, int ____flag_908, const char * __restrict ____fmt_909, ... );// L131:L132 -extern int (____vdprintf_chk_916) (int ____fd_911, int ____flag_912, const char * __restrict ____fmt_913, ____gnuc_va_list_82 ____arg_914);// L133:L135 +extern int (____dprintf_chk_984) (int ____fd_981, int ____flag_982, const char * __restrict ____fmt_983, ... );// L131:L132 +extern int (____vdprintf_chk_990) (int ____fd_985, int ____flag_986, const char * __restrict ____fmt_987, ____gnuc_va_list_86 ____arg_988);// L133:L135 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern char * ((____fgets_chk_930) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 -extern char * ((____fgets_chk_932) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 -extern char * ((____fgets_chk_934) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 -extern char * ((____fgets_alias_940) (char * __restrict ____s_936, int ____n_937, __FILE_58 * __restrict ____stream_938));// L243:L245 -extern char * ((____fgets_chk_warn_947) (char * __restrict ____s_942, __size_t_1 ____size_943, int ____n_944, __FILE_58 * __restrict ____stream_945));// L246:L250 +extern char * ((____fgets_chk_1004) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_chk_1006) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_chk_1008) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_alias_1014) (char * __restrict ____s_1010, int ____n_1011, __FILE_59 * __restrict ____stream_1012));// L243:L245 +extern char * ((____fgets_chk_warn_1021) (char * __restrict ____s_1016, __size_t_1 ____size_1017, int ____n_1018, __FILE_59 * __restrict ____stream_1019));// L246:L250 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ // typedef moved to top of scope // typedef moved to top of scope -static __inline unsigned int (____bswap_32_1026) (unsigned int ____bsx_1025) { +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +static __inline unsigned int (____bswap_32_1158) (unsigned int ____bsx_1157) { -if (__static_condition_default_1027) { +if (__static_condition_default_1159) { { { @@ -1629,9 +2375,9 @@ __static_type_error("invalid type found in return expression"); } } -static __inline ____uint64_t_13 (____bswap_64_1029) (____uint64_t_13 ____bsx_1028) { +static __inline ____uint64_t_13 (____bswap_64_1162) (____uint64_t_13 ____bsx_1160) { -if (__static_condition_default_1027) { +if (__static_condition_default_1164) { { { @@ -1645,40 +2391,72 @@ __static_type_error("invalid type found in return expression"); } } -union __wait_1041 ;// L66 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern __size_t_1 (____ctype_get_mb_cur_max_1065) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_1066) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_1067) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_1068) (void );// L139 -extern double (__atof_1070) (const char * (____nptr_1069));// L144:L145 -extern double (__atof_1071) (const char * (____nptr_1069));// L144:L145 -extern int (__atoi_1073) (const char * (____nptr_1072));// L147:L148 -extern int (__atoi_1074) (const char * (____nptr_1072));// L147:L148 -extern long int (__atol_1076) (const char * (____nptr_1075));// L150:L151 -extern long int (__atol_1077) (const char * (____nptr_1075));// L150:L151 -extern long long int (__atoll_1079) (const char * (____nptr_1078));// L157:L158 -extern long long int (__atoll_1080) (const char * (____nptr_1078));// L157:L158 -extern double (__strtod_1083) (const char * __restrict ____nptr_1081, char * (* __restrict ____endptr_1082));// L164:L166 -extern float (__strtof_1086) (const char * __restrict ____nptr_1084, char * (* __restrict ____endptr_1085));// L172:L173 -extern long double (__strtold_1089) (const char * __restrict ____nptr_1087, char * (* __restrict ____endptr_1088));// L175:L177 -extern long int (__strtol_1093) (const char * __restrict ____nptr_1090, char * (* __restrict ____endptr_1091), int ____base_1092);// L183:L185 -extern unsigned long int (__strtoul_1097) (const char * __restrict ____nptr_1094, char * (* __restrict ____endptr_1095), int ____base_1096);// L187:L189 -extern long long int (__strtoq_1101) (const char * __restrict ____nptr_1098, char * (* __restrict ____endptr_1099), int ____base_1100);// L195:L197 -extern unsigned long long int (__strtouq_1105) (const char * __restrict ____nptr_1102, char * (* __restrict ____endptr_1103), int ____base_1104);// L200:L202 -extern long long int (__strtoll_1109) (const char * __restrict ____nptr_1106, char * (* __restrict ____endptr_1107), int ____base_1108);// L209:L211 -extern long long int (__strtoll_1110) (const char * __restrict ____nptr_1106, char * (* __restrict ____endptr_1107), int ____base_1108);// L209:L211 -extern unsigned long long int (__strtoull_1114) (const char * __restrict ____nptr_1111, char * (* __restrict ____endptr_1112), int ____base_1113);// L214:L216 +static __inline ____uint64_t_1112 (____bswap_64_1163) (____uint64_t_1112 ____bsx_1161) { + +if (__static_condition_default_1165) { + +{ +{ + + + +__static_type_error("invalid type found in return expression"); +} +} + + +} +} +union __wait_1177 ;// L66 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern __size_t_1 (____ctype_get_mb_cur_max_1201) (void );// L139 +extern __size_t_1093 (____ctype_get_mb_cur_max_1202) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_1203) (void );// L139 +extern __size_t_1093 (____ctype_get_mb_cur_max_1204) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_1205) (void );// L139 +extern __size_t_1093 (____ctype_get_mb_cur_max_1206) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_1207) (void );// L139 +extern __size_t_1093 (____ctype_get_mb_cur_max_1208) (void );// L139 +extern double (__atof_1210) (const char * (____nptr_1209));// L144:L145 +extern double (__atof_1211) (const char * (____nptr_1209));// L144:L145 +extern int (__atoi_1213) (const char * (____nptr_1212));// L147:L148 +extern int (__atoi_1214) (const char * (____nptr_1212));// L147:L148 +extern long int (__atol_1216) (const char * (____nptr_1215));// L150:L151 +extern long int (__atol_1217) (const char * (____nptr_1215));// L150:L151 +extern long long int (__atoll_1219) (const char * (____nptr_1218));// L157:L158 +extern long long int (__atoll_1220) (const char * (____nptr_1218));// L157:L158 +extern double (__strtod_1223) (const char * __restrict ____nptr_1221, char * (* __restrict ____endptr_1222));// L164:L166 +extern float (__strtof_1226) (const char * __restrict ____nptr_1224, char * (* __restrict ____endptr_1225));// L172:L173 +extern long double (__strtold_1229) (const char * __restrict ____nptr_1227, char * (* __restrict ____endptr_1228));// L175:L177 +extern long int (__strtol_1233) (const char * __restrict ____nptr_1230, char * (* __restrict ____endptr_1231), int ____base_1232);// L183:L185 +extern unsigned long int (__strtoul_1237) (const char * __restrict ____nptr_1234, char * (* __restrict ____endptr_1235), int ____base_1236);// L187:L189 +extern long long int (__strtoq_1241) (const char * __restrict ____nptr_1238, char * (* __restrict ____endptr_1239), int ____base_1240);// L195:L197 +extern unsigned long long int (__strtouq_1245) (const char * __restrict ____nptr_1242, char * (* __restrict ____endptr_1243), int ____base_1244);// L200:L202 +extern long long int (__strtoll_1249) (const char * __restrict ____nptr_1246, char * (* __restrict ____endptr_1247), int ____base_1248);// L209:L211 +extern long long int (__strtoll_1250) (const char * __restrict ____nptr_1246, char * (* __restrict ____endptr_1247), int ____base_1248);// L209:L211 +extern unsigned long long int (__strtoull_1254) (const char * __restrict ____nptr_1251, char * (* __restrict ____endptr_1252), int ____base_1253);// L214:L216 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ __extension__/* no function due to type errors in the function prototype */ -extern char * ((__l64a_1119) (long int ____n_1118));// L305 -extern char * ((__l64a_1120) (long int ____n_1118));// L305 -extern long int (__a64l_1122) (const char * (____s_1121));// L308:L309 -extern long int (__a64l_1123) (const char * (____s_1121));// L308:L309 +extern char * ((__l64a_1259) (long int ____n_1258));// L305 +extern char * ((__l64a_1260) (long int ____n_1258));// L305 +extern long int (__a64l_1262) (const char * (____s_1261));// L308:L309 +extern long int (__a64l_1263) (const char * (____s_1261));// L308:L309 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope @@ -1720,9 +2498,130 @@ extern long int (__a64l_1123) (const char * (____s_1121));// L308:L309 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -static __inline unsigned int (____bswap_32_1166) (unsigned int ____bsx_1165) { +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +static __inline unsigned int (____bswap_32_1452) (unsigned int ____bsx_1451) { + +if (__static_condition_default_1453) { + +{ +{ + + + +__static_type_error("invalid type found in return expression"); +} +} + + +} +} +static __inline ____uint64_t_13 (____bswap_64_1456) (____uint64_t_13 ____bsx_1454) { -if (__static_condition_default_1167) { +if (__static_condition_default_1458) { { { @@ -1736,9 +2635,9 @@ __static_type_error("invalid type found in return expression"); } } -static __inline ____uint64_t_13 (____bswap_64_1169) (____uint64_t_13 ____bsx_1168) { +static __inline ____uint64_t_1275 (____bswap_64_1457) (____uint64_t_1275 ____bsx_1455) { -if (__static_condition_default_1167) { +if (__static_condition_default_1459) { { { @@ -1755,24 +2654,28 @@ __static_type_error("invalid type found in return expression"); // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __timespec_1176 ;// L120 -struct __timeval_1179 ;// L30 +struct __timespec_1466 ;// L120 + +struct __timeval_1476 ;// L30 + +// typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern int (__select_1199) (int ____nfds_1192, __fd_set_1189 * __restrict ____readfds_1193, __fd_set_1189 * __restrict ____writefds_1194, __fd_set_1189 * __restrict ____exceptfds_1195, struct __timeval_1179 * __restrict ____timeout_1197);// L106:L109 -extern int (__select_1200) (int ____nfds_1192, __fd_set_1189 * __restrict ____readfds_1193, __fd_set_1189 * __restrict ____writefds_1194, __fd_set_1189 * __restrict ____exceptfds_1195, struct __forward_tag_reference_1196 * __restrict ____timeout_1198);// L106:L109 -extern int (__pselect_1209) (int ____nfds_1201, __fd_set_1189 * __restrict ____readfds_1202, __fd_set_1189 * __restrict ____writefds_1203, __fd_set_1189 * __restrict ____exceptfds_1204, const struct __timespec_1176 * __restrict ____timeout_1206, const ____sigset_t_1174 * __restrict ____sigmask_1208);// L118:L122 -extern int (__pselect_1210) (int ____nfds_1201, __fd_set_1189 * __restrict ____readfds_1202, __fd_set_1189 * __restrict ____writefds_1203, __fd_set_1189 * __restrict ____exceptfds_1204, const struct __forward_tag_reference_1205 * __restrict ____timeout_1207, const ____sigset_t_1174 * __restrict ____sigmask_1208);// L118:L122 -extern long int (____fdelt_chk_1212) (long int ____d_1211);// L24 -extern long int (____fdelt_warn_1214) (long int ____d_1213);// L25:L26 -extern unsigned int (__gnu_dev_major_1216) (unsigned long long int ____dev_1215);// L27:L28 -extern unsigned int (__gnu_dev_major_1217) (unsigned long long int ____dev_1215);// L27:L28 -extern unsigned int (__gnu_dev_minor_1219) (unsigned long long int ____dev_1218);// L30:L31 -extern unsigned long long int (__gnu_dev_makedev_1222) (unsigned int ____major_1220, unsigned int ____minor_1221);// L33:L35 +// typedef moved to top of scope +extern int (__select_1513) (int ____nfds_1502, __fd_set_1499 * __restrict ____readfds_1503, __fd_set_1499 * __restrict ____writefds_1505, __fd_set_1499 * __restrict ____exceptfds_1507, struct __timeval_1476 * __restrict ____timeout_1510);// L106:L109 +extern int (__select_1514) (int ____nfds_1502, __fd_set_1499 * __restrict ____readfds_1503, __fd_set_1499 * __restrict ____writefds_1505, __fd_set_1499 * __restrict ____exceptfds_1507, struct __forward_tag_reference_1509 * __restrict ____timeout_1512);// L106:L109 +extern int (__pselect_1529) (int ____nfds_1517, __fd_set_1499 * __restrict ____readfds_1518, __fd_set_1499 * __restrict ____writefds_1520, __fd_set_1499 * __restrict ____exceptfds_1522, const struct __timespec_1466 * __restrict ____timeout_1525, const ____sigset_t_1464 * __restrict ____sigmask_1528);// L118:L122 +extern int (__pselect_1530) (int ____nfds_1517, __fd_set_1499 * __restrict ____readfds_1518, __fd_set_1499 * __restrict ____writefds_1520, __fd_set_1499 * __restrict ____exceptfds_1522, const struct __forward_tag_reference_1524 * __restrict ____timeout_1527, const ____sigset_t_1464 * __restrict ____sigmask_1528);// L118:L122 +extern long int (____fdelt_chk_1534) (long int ____d_1533);// L24 +extern long int (____fdelt_warn_1536) (long int ____d_1535);// L25:L26 +extern unsigned int (__gnu_dev_major_1538) (unsigned long long int ____dev_1537);// L27:L28 +extern unsigned int (__gnu_dev_major_1539) (unsigned long long int ____dev_1537);// L27:L28 +extern unsigned int (__gnu_dev_minor_1541) (unsigned long long int ____dev_1540);// L30:L31 +extern unsigned long long int (__gnu_dev_makedev_1544) (unsigned int ____major_1542, unsigned int ____minor_1543);// L33:L35 __extension__/* no function due to type errors in the function prototype */ __extension__/* no function due to type errors in the function prototype */ __extension__/* no function due to type errors in the function prototype */ @@ -1784,194 +2687,286 @@ __extension__/* no function due to type errors in the function prototype */ // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -union __pthread_attr_t_1235 ;// L63 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern int (__rand_1266) (void );// L374 -extern void (__srand_1268) (unsigned int ____seed_1267);// L376 -extern int (__rand_r_1270) (unsigned int * (____seed_1269));// L381 -extern double (__drand48_1271) (void );// L389 -extern double (__erand48_1273) (unsigned short int ____xsubi_1272[3]);// L390 -extern long int (__lrand48_1274) (void );// L393 -extern long int (__nrand48_1276) (unsigned short int ____xsubi_1275[3]);// L394:L395 -extern long int (__mrand48_1277) (void );// L398 -extern long int (__jrand48_1279) (unsigned short int ____xsubi_1278[3]);// L399:L400 -extern void (__srand48_1281) (long int ____seedval_1280);// L403 -extern unsigned short int * ((__seed48_1283) (unsigned short int ____seed16v_1282[3]));// L404:L405 -extern void (__lcong48_1285) (unsigned short int ____param_1284[7]);// L406 -extern void * ((__malloc_1287) (__size_t_1 ____size_1286));// L466 -extern void * ((__malloc_1288) (__size_t_1 ____size_1286));// L466 -extern void * ((__calloc_1291) (__size_t_1 ____nmemb_1289, __size_t_1 ____size_1290));// L468:L469 -extern void * ((__calloc_1292) (__size_t_1 ____nmemb_1289, __size_t_1 ____size_1290));// L468:L469 -extern void * ((__realloc_1295) (void * (____ptr_1293), __size_t_1 ____size_1294));// L480:L481 -extern void * ((__realloc_1296) (void * (____ptr_1293), __size_t_1 ____size_1294));// L480:L481 -extern void (__free_1298) (void * (____ptr_1297));// L483 -extern void (__cfree_1300) (void * (____ptr_1299));// L488 -extern void * ((__alloca_1302) (__size_t_1 ____size_1301));// L32 -extern void * ((__valloc_1304) (__size_t_1 ____size_1303));// L498 -extern void * ((__valloc_1305) (__size_t_1 ____size_1303));// L498 -extern int (__posix_memalign_1309) (void * (* (____memptr_1306)), __size_t_1 ____alignment_1307, __size_t_1 ____size_1308);// L503:L504 -extern int (__posix_memalign_1310) (void * (* (____memptr_1306)), __size_t_1 ____alignment_1307, __size_t_1 ____size_1308);// L503:L504 -extern void * ((__aligned_alloc_1313) (__size_t_1 ____alignment_1311, __size_t_1 ____size_1312));// L509:L510 -extern void * ((__aligned_alloc_1314) (__size_t_1 ____alignment_1311, __size_t_1 ____size_1312));// L509:L510 -extern void * ((__aligned_alloc_1315) (__size_t_1 ____alignment_1311, __size_t_1 ____size_1312));// L509:L510 -extern void * ((__aligned_alloc_1316) (__size_t_1 ____alignment_1311, __size_t_1 ____size_1312));// L509:L510 -extern void (__abort_1317) (void );// L515 -extern int (__atexit_1319) (void (* (____func_1318)) (void ));// L519 -extern int (__at_quick_exit_1321) (void (* (____func_1320)) (void ));// L527 -extern int (__on_exit_1326) (void (* (____func_1324)) (int ____status_1322, void * (____arg_1323)), void * (____arg_1325));// L535:L536 -extern void (__exit_1328) (int ____status_1327);// L543 -extern void (__exit_1329) (int ____status_1327);// L543 -extern void (__quick_exit_1331) (int ____status_1330);// L549 -extern void (___Exit_1333) (int ____status_1332);// L557 -extern char * ((__getenv_1335) (const char * (____name_1334)));// L564 -extern char * ((__getenv_1336) (const char * (____name_1334)));// L564 -extern int (__putenv_1338) (char * (____string_1337));// L578 -extern int (__setenv_1342) (const char * (____name_1339), const char * (____value_1340), int ____replace_1341);// L584:L585 -extern int (__unsetenv_1344) (const char * (____name_1343));// L588 -extern int (__clearenv_1345) (void );// L595 -extern char * ((__mktemp_1347) (char * (____template_1346)));// L606 -extern int (__mkstemp_1350) (char * (____template_1348));// L619 -extern int (__mkstemp_1352) (char * (____template_1348));// L619 -extern int (__mkstemp_1351) (char * (____template_1349));// L622:L623 -extern int (__mkstemp_1353) (char * (____template_1349));// L622:L623 -extern int (__mkstemps_1358) (char * (____template_1354), int ____suffixlen_1355);// L641 -extern int (__mkstemps_1359) (char * (____template_1356), int ____suffixlen_1357);// L644:L645 -extern int (__mkstemps_1360) (char * (____template_1354), int ____suffixlen_1355);// L641 -extern int (__mkstemps_1361) (char * (____template_1356), int ____suffixlen_1357);// L644:L645 -extern char * ((__mkdtemp_1363) (char * (____template_1362)));// L662 -extern char * ((__mkdtemp_1364) (char * (____template_1362)));// L662 -extern int (__system_1366) (const char * (____command_1365));// L716 -extern int (__system_1367) (const char * (____command_1365));// L716 -extern int (__system_1368) (const char * (____command_1365));// L716 -extern int (__system_1369) (const char * (____command_1365));// L716 -extern char * ((__realpath_1372) (const char * __restrict ____name_1370, char * __restrict ____resolved_1371));// L733:L734 -extern char * ((__realpath_1373) (const char * __restrict ____name_1370, char * __restrict ____resolved_1371));// L733:L734 -// typedef moved to top of scope -extern void * ((__bsearch_1382) (const void * (____key_1375), const void * (____base_1376), __size_t_1 ____nmemb_1377, __size_t_1 ____size_1378, ____compar_fn_t_1374 ____compar_1379));// L754:L756 -extern void * ((__bsearch_1384) (const void * (____key_1375), const void * (____base_1376), __size_t_1 ____nmemb_1377, __size_t_1 ____size_1378, ____compar_fn_t_1374 ____compar_1379));// L754:L756 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +union __pthread_attr_t_1578 ;// L63 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern int (__rand_1609) (void );// L374 +extern void (__srand_1611) (unsigned int ____seed_1610);// L376 +extern int (__rand_r_1613) (unsigned int * (____seed_1612));// L381 +extern double (__drand48_1614) (void );// L389 +extern double (__erand48_1616) (unsigned short int ____xsubi_1615[3]);// L390 +extern long int (__lrand48_1617) (void );// L393 +extern long int (__nrand48_1619) (unsigned short int ____xsubi_1618[3]);// L394:L395 +extern long int (__mrand48_1620) (void );// L398 +extern long int (__jrand48_1622) (unsigned short int ____xsubi_1621[3]);// L399:L400 +extern void (__srand48_1624) (long int ____seedval_1623);// L403 +extern unsigned short int * ((__seed48_1626) (unsigned short int ____seed16v_1625[3]));// L404:L405 +extern void (__lcong48_1628) (unsigned short int ____param_1627[7]);// L406 +extern void * ((__malloc_1631) (__size_t_1 ____size_1629));// L466 +extern void * ((__malloc_1632) (__size_t_1093 ____size_1630));// L466 +extern void * ((__malloc_1633) (__size_t_1 ____size_1629));// L466 +extern void * ((__malloc_1634) (__size_t_1093 ____size_1630));// L466 +extern void * ((__calloc_1639) (__size_t_1 ____nmemb_1635, __size_t_1 ____size_1637));// L468:L469 +extern void * ((__calloc_1640) (__size_t_1093 ____nmemb_1636, __size_t_1093 ____size_1638));// L468:L469 +extern void * ((__calloc_1641) (__size_t_1 ____nmemb_1635, __size_t_1 ____size_1637));// L468:L469 +extern void * ((__calloc_1642) (__size_t_1093 ____nmemb_1636, __size_t_1093 ____size_1638));// L468:L469 +extern void * ((__realloc_1646) (void * (____ptr_1643), __size_t_1 ____size_1644));// L480:L481 +extern void * ((__realloc_1647) (void * (____ptr_1643), __size_t_1093 ____size_1645));// L480:L481 +extern void (__free_1649) (void * (____ptr_1648));// L483 +extern void (__cfree_1651) (void * (____ptr_1650));// L488 +extern void * ((__alloca_1654) (__size_t_1 ____size_1652));// L32 +extern void * ((__alloca_1655) (__size_t_1093 ____size_1653));// L32 +extern void * ((__valloc_1658) (__size_t_1 ____size_1656));// L498 +extern void * ((__valloc_1659) (__size_t_1093 ____size_1657));// L498 +extern void * ((__valloc_1660) (__size_t_1 ____size_1656));// L498 +extern void * ((__valloc_1661) (__size_t_1093 ____size_1657));// L498 +extern int (__posix_memalign_1667) (void * (* (____memptr_1662)), __size_t_1 ____alignment_1663, __size_t_1 ____size_1665);// L503:L504 +extern int (__posix_memalign_1668) (void * (* (____memptr_1662)), __size_t_1093 ____alignment_1664, __size_t_1093 ____size_1666);// L503:L504 +extern int (__posix_memalign_1669) (void * (* (____memptr_1662)), __size_t_1 ____alignment_1663, __size_t_1 ____size_1665);// L503:L504 +extern int (__posix_memalign_1670) (void * (* (____memptr_1662)), __size_t_1093 ____alignment_1664, __size_t_1093 ____size_1666);// L503:L504 +extern void * ((__aligned_alloc_1675) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 +extern void * ((__aligned_alloc_1676) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 +extern void * ((__aligned_alloc_1677) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 +extern void * ((__aligned_alloc_1678) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 +extern void * ((__aligned_alloc_1679) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 +extern void * ((__aligned_alloc_1680) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 +extern void * ((__aligned_alloc_1681) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 +extern void * ((__aligned_alloc_1682) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 +extern void (__abort_1683) (void );// L515 +extern int (__atexit_1685) (void (* (____func_1684)) (void ));// L519 +extern int (__at_quick_exit_1687) (void (* (____func_1686)) (void ));// L527 +extern int (__on_exit_1692) (void (* (____func_1690)) (int ____status_1688, void * (____arg_1689)), void * (____arg_1691));// L535:L536 +extern void (__exit_1694) (int ____status_1693);// L543 +extern void (__exit_1695) (int ____status_1693);// L543 +extern void (__quick_exit_1697) (int ____status_1696);// L549 +extern void (___Exit_1699) (int ____status_1698);// L557 +extern char * ((__getenv_1701) (const char * (____name_1700)));// L564 +extern char * ((__getenv_1702) (const char * (____name_1700)));// L564 +extern int (__putenv_1704) (char * (____string_1703));// L578 +extern int (__setenv_1708) (const char * (____name_1705), const char * (____value_1706), int ____replace_1707);// L584:L585 +extern int (__unsetenv_1710) (const char * (____name_1709));// L588 +extern int (__clearenv_1711) (void );// L595 +extern char * ((__mktemp_1713) (char * (____template_1712)));// L606 +extern int (__mkstemp_1716) (char * (____template_1714));// L619 +extern int (__mkstemp_1718) (char * (____template_1714));// L619 +extern int (__mkstemp_1717) (char * (____template_1715));// L622:L623 +extern int (__mkstemp_1719) (char * (____template_1715));// L622:L623 +extern int (__mkstemps_1724) (char * (____template_1720), int ____suffixlen_1721);// L641 +extern int (__mkstemps_1725) (char * (____template_1722), int ____suffixlen_1723);// L644:L645 +extern int (__mkstemps_1726) (char * (____template_1720), int ____suffixlen_1721);// L641 +extern int (__mkstemps_1727) (char * (____template_1722), int ____suffixlen_1723);// L644:L645 +extern char * ((__mkdtemp_1729) (char * (____template_1728)));// L662 +extern char * ((__mkdtemp_1730) (char * (____template_1728)));// L662 +extern int (__system_1732) (const char * (____command_1731));// L716 +extern int (__system_1733) (const char * (____command_1731));// L716 +extern int (__system_1734) (const char * (____command_1731));// L716 +extern int (__system_1735) (const char * (____command_1731));// L716 +extern char * ((__realpath_1738) (const char * __restrict ____name_1736, char * __restrict ____resolved_1737));// L733:L734 +extern char * ((__realpath_1739) (const char * __restrict ____name_1736, char * __restrict ____resolved_1737));// L733:L734 +// typedef moved to top of scope +extern void * ((__bsearch_1751) (const void * (____key_1741), const void * (____base_1742), __size_t_1 ____nmemb_1743, __size_t_1 ____size_1745, ____compar_fn_t_1740 ____compar_1747));// L754:L756 +extern void * ((__bsearch_1752) (const void * (____key_1741), const void * (____base_1742), __size_t_1093 ____nmemb_1744, __size_t_1093 ____size_1746, ____compar_fn_t_1740 ____compar_1747));// L754:L756 +extern void * ((__bsearch_1755) (const void * (____key_1741), const void * (____base_1742), __size_t_1 ____nmemb_1743, __size_t_1 ____size_1745, ____compar_fn_t_1740 ____compar_1747));// L754:L756 +extern void * ((__bsearch_1756) (const void * (____key_1741), const void * (____base_1742), __size_t_1093 ____nmemb_1744, __size_t_1093 ____size_1746, ____compar_fn_t_1740 ____compar_1747));// L754:L756 /* no function due to type errors in the function prototype */ -extern void (__qsort_1403) (void * (____base_1398), __size_t_1 ____nmemb_1399, __size_t_1 ____size_1400, ____compar_fn_t_1374 ____compar_1401);// L764:L765 -extern void (__qsort_1405) (void * (____base_1398), __size_t_1 ____nmemb_1399, __size_t_1 ____size_1400, ____compar_fn_t_1374 ____compar_1401);// L764:L765 -extern int (__abs_1408) (int ____x_1407);// L774 -extern int (__abs_1409) (int ____x_1407);// L774 -extern long int (__labs_1411) (long int ____x_1410);// L775 -extern long int (__labs_1412) (long int ____x_1410);// L775 -extern long long int (__llabs_1414) (long long int ____x_1413);// L779:L780 -extern long long int (__llabs_1415) (long long int ____x_1413);// L779:L780 -extern __div_t_1054 (__div_1418) (int ____numer_1416, int ____denom_1417);// L788:L789 -extern __div_t_1054 (__div_1419) (int ____numer_1416, int ____denom_1417);// L788:L789 -extern __ldiv_t_1059 (__ldiv_1422) (long int ____numer_1420, long int ____denom_1421);// L790:L791 -extern __ldiv_t_1059 (__ldiv_1424) (long int ____numer_1420, long int ____denom_1421);// L790:L791 -extern __lldiv_t_1064 (__lldiv_1428) (long long int ____numer_1426, long long int ____denom_1427);// L796:L798 -extern __lldiv_t_1064 (__lldiv_1430) (long long int ____numer_1426, long long int ____denom_1427);// L796:L798 -extern char * ((__ecvt_1436) (double ____value_1432, int ____ndigit_1433, int * __restrict ____decpt_1434, int * __restrict ____sign_1435));// L811:L812 -extern char * ((__ecvt_1437) (double ____value_1432, int ____ndigit_1433, int * __restrict ____decpt_1434, int * __restrict ____sign_1435));// L811:L812 -extern char * ((__fcvt_1442) (double ____value_1438, int ____ndigit_1439, int * __restrict ____decpt_1440, int * __restrict ____sign_1441));// L817:L818 -extern char * ((__fcvt_1443) (double ____value_1438, int ____ndigit_1439, int * __restrict ____decpt_1440, int * __restrict ____sign_1441));// L817:L818 -extern char * ((__gcvt_1447) (double ____value_1444, int ____ndigit_1445, char * (____buf_1446)));// L823:L824 -extern char * ((__gcvt_1448) (double ____value_1444, int ____ndigit_1445, char * (____buf_1446)));// L823:L824 -extern char * ((__qecvt_1453) (long double ____value_1449, int ____ndigit_1450, int * __restrict ____decpt_1451, int * __restrict ____sign_1452));// L829:L831 -extern char * ((__qecvt_1454) (long double ____value_1449, int ____ndigit_1450, int * __restrict ____decpt_1451, int * __restrict ____sign_1452));// L829:L831 -extern char * ((__qfcvt_1459) (long double ____value_1455, int ____ndigit_1456, int * __restrict ____decpt_1457, int * __restrict ____sign_1458));// L832:L834 -extern char * ((__qfcvt_1460) (long double ____value_1455, int ____ndigit_1456, int * __restrict ____decpt_1457, int * __restrict ____sign_1458));// L832:L834 -extern char * ((__qgcvt_1464) (long double ____value_1461, int ____ndigit_1462, char * (____buf_1463)));// L835:L836 -extern char * ((__qgcvt_1465) (long double ____value_1461, int ____ndigit_1462, char * (____buf_1463)));// L835:L836 -extern int (__ecvt_r_1472) (double ____value_1466, int ____ndigit_1467, int * __restrict ____decpt_1468, int * __restrict ____sign_1469, char * __restrict ____buf_1470, __size_t_1 ____len_1471);// L841:L843 -extern int (__fcvt_r_1479) (double ____value_1473, int ____ndigit_1474, int * __restrict ____decpt_1475, int * __restrict ____sign_1476, char * __restrict ____buf_1477, __size_t_1 ____len_1478);// L844:L846 -extern int (__qecvt_r_1486) (long double ____value_1480, int ____ndigit_1481, int * __restrict ____decpt_1482, int * __restrict ____sign_1483, char * __restrict ____buf_1484, __size_t_1 ____len_1485);// L848:L851 -extern int (__qfcvt_r_1493) (long double ____value_1487, int ____ndigit_1488, int * __restrict ____decpt_1489, int * __restrict ____sign_1490, char * __restrict ____buf_1491, __size_t_1 ____len_1492);// L852:L855 -extern int (__mblen_1496) (const char * (____s_1494), __size_t_1 ____n_1495);// L862 -extern int (__mblen_1497) (const char * (____s_1494), __size_t_1 ____n_1495);// L862 -extern int (__mbtowc_1501) (__wchar_t_1018 * __restrict ____pwc_1498, const char * __restrict ____s_1499, __size_t_1 ____n_1500);// L865:L866 -extern int (__wctomb_1504) (char * (____s_1502), __wchar_t_1018 ____wchar_1503);// L869 -extern __size_t_1 (__mbstowcs_1508) (__wchar_t_1018 * __restrict ____pwcs_1505, const char * __restrict ____s_1506, __size_t_1 ____n_1507);// L873:L874 -extern __size_t_1 (__wcstombs_1512) (char * __restrict ____s_1509, const __wchar_t_1018 * __restrict ____pwcs_1510, __size_t_1 ____n_1511);// L876:L878 -extern int (__rpmatch_1515) (const char * (____response_1513));// L887 -extern int (__rpmatch_1514) (const char * (____response_1513));// L887 -extern int (__getsubopt_1520) (char * (* __restrict ____optionp_1516), char * const * __restrict ____tokens_1517, char * (* __restrict ____valuep_1518));// L898:L901 -extern int (__getsubopt_1519) (char * (* __restrict ____optionp_1516), char * const * __restrict ____tokens_1517, char * (* __restrict ____valuep_1518));// L898:L901 -extern int (__getloadavg_1523) (double ____loadavg_1521[], int ____nelem_1522);// L950:L951 +extern void (__qsort_1784) (void * (____base_1777), __size_t_1 ____nmemb_1778, __size_t_1 ____size_1780, ____compar_fn_t_1740 ____compar_1782);// L764:L765 +extern void (__qsort_1786) (void * (____base_1777), __size_t_1093 ____nmemb_1779, __size_t_1093 ____size_1781, ____compar_fn_t_1740 ____compar_1782);// L764:L765 +extern void (__qsort_1788) (void * (____base_1777), __size_t_1 ____nmemb_1778, __size_t_1 ____size_1780, ____compar_fn_t_1740 ____compar_1782);// L764:L765 +extern void (__qsort_1790) (void * (____base_1777), __size_t_1093 ____nmemb_1779, __size_t_1093 ____size_1781, ____compar_fn_t_1740 ____compar_1782);// L764:L765 +extern int (__abs_1793) (int ____x_1792);// L774 +extern int (__abs_1794) (int ____x_1792);// L774 +extern long int (__labs_1796) (long int ____x_1795);// L775 +extern long int (__labs_1797) (long int ____x_1795);// L775 +extern long long int (__llabs_1799) (long long int ____x_1798);// L779:L780 +extern long long int (__llabs_1800) (long long int ____x_1798);// L779:L780 +extern __div_t_1190 (__div_1803) (int ____numer_1801, int ____denom_1802);// L788:L789 +extern __div_t_1190 (__div_1804) (int ____numer_1801, int ____denom_1802);// L788:L789 +extern __ldiv_t_1195 (__ldiv_1807) (long int ____numer_1805, long int ____denom_1806);// L790:L791 +extern __ldiv_t_1195 (__ldiv_1809) (long int ____numer_1805, long int ____denom_1806);// L790:L791 +extern __lldiv_t_1200 (__lldiv_1813) (long long int ____numer_1811, long long int ____denom_1812);// L796:L798 +extern __lldiv_t_1200 (__lldiv_1815) (long long int ____numer_1811, long long int ____denom_1812);// L796:L798 +extern char * ((__ecvt_1821) (double ____value_1817, int ____ndigit_1818, int * __restrict ____decpt_1819, int * __restrict ____sign_1820));// L811:L812 +extern char * ((__ecvt_1822) (double ____value_1817, int ____ndigit_1818, int * __restrict ____decpt_1819, int * __restrict ____sign_1820));// L811:L812 +extern char * ((__fcvt_1827) (double ____value_1823, int ____ndigit_1824, int * __restrict ____decpt_1825, int * __restrict ____sign_1826));// L817:L818 +extern char * ((__fcvt_1828) (double ____value_1823, int ____ndigit_1824, int * __restrict ____decpt_1825, int * __restrict ____sign_1826));// L817:L818 +extern char * ((__gcvt_1832) (double ____value_1829, int ____ndigit_1830, char * (____buf_1831)));// L823:L824 +extern char * ((__gcvt_1833) (double ____value_1829, int ____ndigit_1830, char * (____buf_1831)));// L823:L824 +extern char * ((__qecvt_1838) (long double ____value_1834, int ____ndigit_1835, int * __restrict ____decpt_1836, int * __restrict ____sign_1837));// L829:L831 +extern char * ((__qecvt_1839) (long double ____value_1834, int ____ndigit_1835, int * __restrict ____decpt_1836, int * __restrict ____sign_1837));// L829:L831 +extern char * ((__qfcvt_1844) (long double ____value_1840, int ____ndigit_1841, int * __restrict ____decpt_1842, int * __restrict ____sign_1843));// L832:L834 +extern char * ((__qfcvt_1845) (long double ____value_1840, int ____ndigit_1841, int * __restrict ____decpt_1842, int * __restrict ____sign_1843));// L832:L834 +extern char * ((__qgcvt_1849) (long double ____value_1846, int ____ndigit_1847, char * (____buf_1848)));// L835:L836 +extern char * ((__qgcvt_1850) (long double ____value_1846, int ____ndigit_1847, char * (____buf_1848)));// L835:L836 +extern int (__ecvt_r_1858) (double ____value_1851, int ____ndigit_1852, int * __restrict ____decpt_1853, int * __restrict ____sign_1854, char * __restrict ____buf_1855, __size_t_1 ____len_1856);// L841:L843 +extern int (__ecvt_r_1859) (double ____value_1851, int ____ndigit_1852, int * __restrict ____decpt_1853, int * __restrict ____sign_1854, char * __restrict ____buf_1855, __size_t_1093 ____len_1857);// L841:L843 +extern int (__fcvt_r_1867) (double ____value_1860, int ____ndigit_1861, int * __restrict ____decpt_1862, int * __restrict ____sign_1863, char * __restrict ____buf_1864, __size_t_1 ____len_1865);// L844:L846 +extern int (__fcvt_r_1868) (double ____value_1860, int ____ndigit_1861, int * __restrict ____decpt_1862, int * __restrict ____sign_1863, char * __restrict ____buf_1864, __size_t_1093 ____len_1866);// L844:L846 +extern int (__qecvt_r_1876) (long double ____value_1869, int ____ndigit_1870, int * __restrict ____decpt_1871, int * __restrict ____sign_1872, char * __restrict ____buf_1873, __size_t_1 ____len_1874);// L848:L851 +extern int (__qecvt_r_1877) (long double ____value_1869, int ____ndigit_1870, int * __restrict ____decpt_1871, int * __restrict ____sign_1872, char * __restrict ____buf_1873, __size_t_1093 ____len_1875);// L848:L851 +extern int (__qfcvt_r_1885) (long double ____value_1878, int ____ndigit_1879, int * __restrict ____decpt_1880, int * __restrict ____sign_1881, char * __restrict ____buf_1882, __size_t_1 ____len_1883);// L852:L855 +extern int (__qfcvt_r_1886) (long double ____value_1878, int ____ndigit_1879, int * __restrict ____decpt_1880, int * __restrict ____sign_1881, char * __restrict ____buf_1882, __size_t_1093 ____len_1884);// L852:L855 +extern int (__mblen_1890) (const char * (____s_1887), __size_t_1 ____n_1888);// L862 +extern int (__mblen_1891) (const char * (____s_1887), __size_t_1093 ____n_1889);// L862 +extern int (__mblen_1892) (const char * (____s_1887), __size_t_1 ____n_1888);// L862 +extern int (__mblen_1893) (const char * (____s_1887), __size_t_1093 ____n_1889);// L862 +extern int (__mbtowc_1898) (__wchar_t_1094 * __restrict ____pwc_1894, const char * __restrict ____s_1895, __size_t_1 ____n_1896);// L865:L866 +extern int (__mbtowc_1899) (__wchar_t_1094 * __restrict ____pwc_1894, const char * __restrict ____s_1895, __size_t_1093 ____n_1897);// L865:L866 +extern int (__wctomb_1902) (char * (____s_1900), __wchar_t_1094 ____wchar_1901);// L869 +extern __size_t_1 (__mbstowcs_1907) (__wchar_t_1094 * __restrict ____pwcs_1903, const char * __restrict ____s_1904, __size_t_1 ____n_1905);// L873:L874 +extern __size_t_1093 (__mbstowcs_1908) (__wchar_t_1094 * __restrict ____pwcs_1903, const char * __restrict ____s_1904, __size_t_1093 ____n_1906);// L873:L874 +extern __size_t_1 (__wcstombs_1913) (char * __restrict ____s_1909, const __wchar_t_1094 * __restrict ____pwcs_1910, __size_t_1 ____n_1911);// L876:L878 +extern __size_t_1093 (__wcstombs_1914) (char * __restrict ____s_1909, const __wchar_t_1094 * __restrict ____pwcs_1910, __size_t_1093 ____n_1912);// L876:L878 +extern int (__rpmatch_1917) (const char * (____response_1915));// L887 +extern int (__rpmatch_1916) (const char * (____response_1915));// L887 +extern int (__getsubopt_1922) (char * (* __restrict ____optionp_1918), char * const * __restrict ____tokens_1919, char * (* __restrict ____valuep_1920));// L898:L901 +extern int (__getsubopt_1921) (char * (* __restrict ____optionp_1918), char * const * __restrict ____tokens_1919, char * (* __restrict ____valuep_1920));// L898:L901 +extern int (__getloadavg_1925) (double ____loadavg_1923[], int ____nelem_1924);// L950:L951 /* no function due to type errors in the function prototype */ -extern char * ((____realpath_chk_1528) (const char * __restrict ____name_1525, char * __restrict ____resolved_1526, __size_t_1 ____resolvedlen_1527));// L23:L25 -extern char * ((____realpath_alias_1531) (const char * __restrict ____name_1529, char * __restrict ____resolved_1530));// L26:L28 -extern char * ((____realpath_chk_warn_1535) (const char * __restrict ____name_1532, char * __restrict ____resolved_1533, __size_t_1 ____resolvedlen_1534));// L29:L34 +extern char * ((____realpath_chk_1931) (const char * __restrict ____name_1927, char * __restrict ____resolved_1928, __size_t_1 ____resolvedlen_1929));// L23:L25 +extern char * ((____realpath_chk_1932) (const char * __restrict ____name_1927, char * __restrict ____resolved_1928, __size_t_1093 ____resolvedlen_1930));// L23:L25 +extern char * ((____realpath_alias_1935) (const char * __restrict ____name_1933, char * __restrict ____resolved_1934));// L26:L28 +extern char * ((____realpath_chk_warn_1940) (const char * __restrict ____name_1936, char * __restrict ____resolved_1937, __size_t_1 ____resolvedlen_1938));// L29:L34 +extern char * ((____realpath_chk_warn_1941) (const char * __restrict ____name_1936, char * __restrict ____resolved_1937, __size_t_1093 ____resolvedlen_1939));// L29:L34 /* no function due to type errors in the function prototype */ -extern int (____ptsname_r_chk_1543) (int ____fd_1539, char * (____buf_1540), __size_t_1 ____buflen_1541, __size_t_1 ____nreal_1542);// L52:L53 -extern int (____ptsname_r_alias_1547) (int ____fd_1544, char * (____buf_1545), __size_t_1 ____buflen_1546);// L54:L56 -extern int (____ptsname_r_chk_warn_1552) (int ____fd_1548, char * (____buf_1549), __size_t_1 ____buflen_1550, __size_t_1 ____nreal_1551);// L57:L61 +extern int (____ptsname_r_chk_1951) (int ____fd_1945, char * (____buf_1946), __size_t_1 ____buflen_1947, __size_t_1 ____nreal_1949);// L52:L53 +extern int (____ptsname_r_chk_1952) (int ____fd_1945, char * (____buf_1946), __size_t_1093 ____buflen_1948, __size_t_1093 ____nreal_1950);// L52:L53 +extern int (____ptsname_r_alias_1957) (int ____fd_1953, char * (____buf_1954), __size_t_1 ____buflen_1955);// L54:L56 +extern int (____ptsname_r_alias_1958) (int ____fd_1953, char * (____buf_1954), __size_t_1093 ____buflen_1956);// L54:L56 +extern int (____ptsname_r_chk_warn_1965) (int ____fd_1959, char * (____buf_1960), __size_t_1 ____buflen_1961, __size_t_1 ____nreal_1963);// L57:L61 +extern int (____ptsname_r_chk_warn_1966) (int ____fd_1959, char * (____buf_1960), __size_t_1093 ____buflen_1962, __size_t_1093 ____nreal_1964);// L57:L61 /* no function due to type errors in the function prototype */ -extern int (____wctomb_chk_1560) (char * (____s_1557), __wchar_t_1018 ____wchar_1558, __size_t_1 ____buflen_1559);// L77:L78 -extern int (____wctomb_alias_1563) (char * (____s_1561), __wchar_t_1018 ____wchar_1562);// L79:L80 +extern int (____wctomb_chk_1977) (char * (____s_1973), __wchar_t_1094 ____wchar_1974, __size_t_1 ____buflen_1975);// L77:L78 +extern int (____wctomb_chk_1978) (char * (____s_1973), __wchar_t_1094 ____wchar_1974, __size_t_1093 ____buflen_1976);// L77:L78 +extern int (____wctomb_alias_1981) (char * (____s_1979), __wchar_t_1094 ____wchar_1980);// L79:L80 /* no function due to type errors in the function prototype */ -extern __size_t_1 (____mbstowcs_chk_1570) (__wchar_t_1018 * __restrict ____dst_1566, const char * __restrict ____src_1567, __size_t_1 ____len_1568, __size_t_1 ____dstlen_1569);// L98:L100 -extern __size_t_1 (____mbstowcs_alias_1574) (__wchar_t_1018 * __restrict ____dst_1571, const char * __restrict ____src_1572, __size_t_1 ____len_1573);// L101:L104 -extern __size_t_1 (____mbstowcs_chk_warn_1579) (__wchar_t_1018 * __restrict ____dst_1575, const char * __restrict ____src_1576, __size_t_1 ____len_1577, __size_t_1 ____dstlen_1578);// L105:L110 +extern __size_t_1 (____mbstowcs_chk_1990) (__wchar_t_1094 * __restrict ____dst_1984, const char * __restrict ____src_1985, __size_t_1 ____len_1986, __size_t_1 ____dstlen_1988);// L98:L100 +extern __size_t_1093 (____mbstowcs_chk_1991) (__wchar_t_1094 * __restrict ____dst_1984, const char * __restrict ____src_1985, __size_t_1093 ____len_1987, __size_t_1093 ____dstlen_1989);// L98:L100 +extern __size_t_1 (____mbstowcs_alias_1996) (__wchar_t_1094 * __restrict ____dst_1992, const char * __restrict ____src_1993, __size_t_1 ____len_1994);// L101:L104 +extern __size_t_1093 (____mbstowcs_alias_1997) (__wchar_t_1094 * __restrict ____dst_1992, const char * __restrict ____src_1993, __size_t_1093 ____len_1995);// L101:L104 +extern __size_t_1 (____mbstowcs_chk_warn_2004) (__wchar_t_1094 * __restrict ____dst_1998, const char * __restrict ____src_1999, __size_t_1 ____len_2000, __size_t_1 ____dstlen_2002);// L105:L110 +extern __size_t_1093 (____mbstowcs_chk_warn_2005) (__wchar_t_1094 * __restrict ____dst_1998, const char * __restrict ____src_1999, __size_t_1093 ____len_2001, __size_t_1093 ____dstlen_2003);// L105:L110 /* no function due to type errors in the function prototype */ -extern __size_t_1 (____wcstombs_chk_1587) (char * __restrict ____dst_1583, const __wchar_t_1018 * __restrict ____src_1584, __size_t_1 ____len_1585, __size_t_1 ____dstlen_1586);// L130:L132 -extern __size_t_1 (____wcstombs_alias_1591) (char * __restrict ____dst_1588, const __wchar_t_1018 * __restrict ____src_1589, __size_t_1 ____len_1590);// L133:L136 -extern __size_t_1 (____wcstombs_chk_warn_1596) (char * __restrict ____dst_1592, const __wchar_t_1018 * __restrict ____src_1593, __size_t_1 ____len_1594, __size_t_1 ____dstlen_1595);// L137:L141 +extern __size_t_1 (____wcstombs_chk_2016) (char * __restrict ____dst_2010, const __wchar_t_1094 * __restrict ____src_2011, __size_t_1 ____len_2012, __size_t_1 ____dstlen_2014);// L130:L132 +extern __size_t_1093 (____wcstombs_chk_2017) (char * __restrict ____dst_2010, const __wchar_t_1094 * __restrict ____src_2011, __size_t_1093 ____len_2013, __size_t_1093 ____dstlen_2015);// L130:L132 +extern __size_t_1 (____wcstombs_alias_2022) (char * __restrict ____dst_2018, const __wchar_t_1094 * __restrict ____src_2019, __size_t_1 ____len_2020);// L133:L136 +extern __size_t_1093 (____wcstombs_alias_2023) (char * __restrict ____dst_2018, const __wchar_t_1094 * __restrict ____src_2019, __size_t_1093 ____len_2021);// L133:L136 +extern __size_t_1 (____wcstombs_chk_warn_2030) (char * __restrict ____dst_2024, const __wchar_t_1094 * __restrict ____src_2025, __size_t_1 ____len_2026, __size_t_1 ____dstlen_2028);// L137:L141 +extern __size_t_1093 (____wcstombs_chk_warn_2031) (char * __restrict ____dst_2024, const __wchar_t_1094 * __restrict ____src_2025, __size_t_1093 ____len_2027, __size_t_1093 ____dstlen_2029);// L137:L141 /* no function due to type errors in the function prototype */ -void (__ap_log_perror__1601) (int __level_1600) { +void (__ap_log_perror__2037) (int __level_2036) { -if (__static_condition_default_1604) { +if (__static_condition_default_2040) { { { - __printf_383 ("%d\n", __level_1600 ) ; // L6 +if (__static_condition_default_2041) { + __printf_421 ("%d\n", __level_2036 ) ; // L6 +} +if (__static_condition_default_2042) { +__static_type_error("type error") ; // L6 +} } } } } -void (__ap_log_perror__1602) (int __level_1600) { +void (__ap_log_perror__2038) (int __level_2036) { -if (__static_condition_default_1605) { +if (__static_condition_default_2043) { { { - __printf_383 ("%d\n", __level_1600 ) ; // L6 +if (__static_condition_default_2044) { + __printf_421 ("%d\n", __level_2036 ) ; // L6 +} +if (__static_condition_default_2045) { +__static_type_error("type error") ; // L6 +} } } } } -void (__ap_log_perror__1603) (int __level_1600) { +void (__ap_log_perror__2039) (int __level_2036) { -if (__static_condition_default_1606) { +if (__static_condition_default_2046) { { { - __printf_383 ("%d\n", __level_1600 ) ; // L6 +if (__static_condition_default_2047) { + __printf_421 ("%d\n", __level_2036 ) ; // L6 +} +if (__static_condition_default_2048) { +__static_type_error("type error") ; // L6 +} } } } } -int (__main_1607) (void ) { +int (__main_2049) (void ) { + +{ +{ + + + +if (__static_condition_default_2050) { +if ( rand( ) % 2 )// L11 +{ { { +__static_type_error("type error : no valid expression"); // L11 +} +} +} +} +if (__static_condition_default_2051) { +__static_type_error("invalid type found in if statement"); +} +if (__static_condition_default_2052) { + ; // L17 +} +if (__static_condition_default_2053) { return 0 ;// L19 } +if (__static_condition_default_2052) { +return 0 ;// L19 +} +} } diff --git a/fonda/cpp_testsuite/varBugs/APACHE/3407eccc321.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/3407eccc321.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/3407eccc321.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/3407eccc321.inferres b/fonda/cpp_testsuite/varBugs/APACHE/3407eccc321.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/3407eccc321.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c index b82a1bcb..cd5ce4ce 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c @@ -7,89 +7,89 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_276; -extern const bool __static_condition_default_818; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_215; -extern const bool __static_condition_default_803; -extern const bool __static_condition_default_325; -extern const bool __static_condition_default_361; -extern const bool __static_condition_default_820; -extern const bool __static_condition_default_805; -extern const bool __static_condition_default_825; +extern const bool __static_condition_default_812; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_822; +extern const bool __static_condition_default_824; extern const bool __static_condition_default_828; -extern const bool __static_condition_default_240; +extern const bool __static_condition_default_267; extern const bool __static_condition_default_414; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_595; +extern const bool __static_condition_default_261; +extern const bool __static_condition_default_820; +extern const bool __static_condition_default_818; extern const bool __static_condition_default_378; -extern const bool __static_condition_default_420; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_305; -extern const bool __static_condition_default_237; -extern const bool __static_condition_default_627; -extern const bool __static_condition_default_816; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_829; -extern const bool __static_condition_default_308; -extern const bool __static_condition_default_423; -extern const bool __static_condition_default_812; +extern const bool __static_condition_default_60; extern const bool __static_condition_default_252; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_349; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_285; -extern const bool __static_condition_default_394; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_808; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_627; extern const bool __static_condition_default_629; -extern const bool __static_condition_default_815; -extern const bool __static_condition_default_243; -extern const bool __static_condition_default_595; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_821; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_814; -extern const bool __static_condition_default_302; -extern const bool __static_condition_default_234; -extern const bool __static_condition_default_261; -extern const bool __static_condition_default_579; -extern const bool __static_condition_default_804; -extern const bool __static_condition_default_822; -extern const bool __static_condition_default_802; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_352; -extern const bool __static_condition_default_273; -extern const bool __static_condition_default_246; extern const bool __static_condition_default_288; -extern const bool __static_condition_default_296; +extern const bool __static_condition_default_426; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_579; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_811; +extern const bool __static_condition_default_379; extern const bool __static_condition_default_282; +extern const bool __static_condition_default_361; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_305; +extern const bool __static_condition_default_808; +extern const bool __static_condition_default_813; extern const bool __static_condition_default_594; -extern const bool __static_condition_default_581; -extern const bool __static_condition_default_806; -extern const bool __static_condition_default_810; -extern const bool __static_condition_default_826; -extern const bool __static_condition_default_279; -extern const bool __static_condition_default_604; -extern const bool __static_condition_default_395; extern const bool __static_condition_default_823; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_243; +extern const bool __static_condition_default_240; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_279; +extern const bool __static_condition_default_804; extern const bool __static_condition_default_429; -extern const bool __static_condition_default_824; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_273; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_394; +extern const bool __static_condition_default_815; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_276; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_805; extern const bool __static_condition_default_67; -extern const bool __static_condition_default_426; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_215; +extern const bool __static_condition_default_829; +extern const bool __static_condition_default_826; +extern const bool __static_condition_default_325; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_806; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_352; extern const bool __static_condition_default_809; -extern const bool __static_condition_default_379; +extern const bool __static_condition_default_349; +extern const bool __static_condition_default_234; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_816; extern const bool __static_condition_default_299; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_811; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_60; +extern const bool __static_condition_default_308; +extern const bool __static_condition_default_604; +extern const bool __static_condition_default_302; +extern const bool __static_condition_default_285; +extern const bool __static_condition_default_802; +extern const bool __static_condition_default_237; +extern const bool __static_condition_default_420; +extern const bool __static_condition_default_810; +extern const bool __static_condition_default_821; extern const bool __static_condition_default_833; +extern const bool __static_condition_default_581; +extern const bool __static_condition_default_814; +extern const bool __static_condition_default_423; +extern const bool __static_condition_default_270; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); diff --git a/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.inferres new file mode 100644 index 00000000..4738c3a9 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.inferres @@ -0,0 +1,50 @@ + +APACHE/35ae2e259e4.desugared.c:1366: error: Memory Leak + Memory dynamically allocated by `malloc` on line 1358 is not freed after the last access at line 1366, column 5. + 1364. if ( rand( ) % 2 )// L11 + 1365. { + 1366. if (__static_condition_default_806) { + ^ + 1367. + 1368. { + +APACHE/35ae2e259e4.desugared.c:1373: error: Memory Leak + Memory dynamically allocated by `malloc` on line 1358 is not freed after the last access at line 1373, column 1. + 1371. + 1372. + 1373. * __eckey_798 = 30 ; // L12 + ^ + 1374. } + 1375. } + +APACHE/35ae2e259e4.desugared.c:1397: error: Memory Leak + Memory dynamically allocated by `malloc` on line 1358 is not freed after the last access at line 1397, column 1. + 1395. + 1396. + 1397. * __eckey_798 = 15 ; // L17 + ^ + 1398. } + 1399. } + +APACHE/35ae2e259e4.desugared.c:1435: error: Memory Leak + Memory dynamically allocated by `malloc` on line 1427 is not freed after the last access at line 1435, column 5. + 1433. if ( rand( ) % 2 )// L11 + 1434. { + 1435. if (__static_condition_default_815) { + ^ + 1436. + 1437. { + +APACHE/35ae2e259e4.desugared.c:1442: error: Memory Leak + Memory dynamically allocated by `malloc` on line 1427 is not freed after the last access at line 1442, column 1. + 1440. + 1441. + 1442. * __eckey_798 = 30 ; // L12 + ^ + 1443. } + 1444. } + + +Found 8 issues (console output truncated to 5, see '/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/infer-out/report.txt' for the full list) + Issue Type(ISSUED_TYPE_ID): # + Memory Leak(MEMORY_LEAK_C): 8 diff --git a/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.inferres b/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/APACHE/4202d5fee3e.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/4202d5fee3e.desugared.c index 981b9f41..7cab6db5 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/4202d5fee3e.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/4202d5fee3e.desugared.c @@ -7,278 +7,278 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_568; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_834; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_649; extern const bool __static_condition_default_521; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_317; -extern const bool __static_condition_default_512; -extern const bool __static_condition_default_393; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_846; -extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_564; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_638; -extern const bool __static_condition_default_419; -extern const bool __static_condition_default_543; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_380; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_333; extern const bool __static_condition_default_382; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_963; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_367; +extern const bool __static_condition_default_488; +extern const bool __static_condition_default_84; extern const bool __static_condition_default_801; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_583; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_632; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_290; -extern const bool __static_condition_default_204; -extern const bool __static_condition_default_455; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_636; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_337; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_991; extern const bool __static_condition_default_788; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_875; -extern const bool __static_condition_default_646; -extern const bool __static_condition_default_650; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_1095; +extern const bool __static_condition_default_891; extern const bool __static_condition_default_613; -extern const bool __static_condition_default_957; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_549; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_333; -extern const bool __static_condition_default_536; +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_1094; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_1099; extern const bool __static_condition_default_692; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_286; extern const bool __static_condition_default_311; -extern const bool __static_condition_default_685; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_693; -extern const bool __static_condition_default_590; extern const bool __static_condition_default_699; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_891; -extern const bool __static_condition_default_761; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_386; -extern const bool __static_condition_default_408; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_367; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_432; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_846; extern const bool __static_condition_default_747; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_955; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_769; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_753; -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_248; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_529; +extern const bool __static_condition_default_347; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_455; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_836; extern const bool __static_condition_default_736; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_780; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_568; +extern const bool __static_condition_default_787; extern const bool __static_condition_default_388; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_1100; -extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_475; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_512; +extern const bool __static_condition_default_792; extern const bool __static_condition_default_789; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_625; +extern const bool __static_condition_default_735; extern const bool __static_condition_default_663; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_715; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_76; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_753; +extern const bool __static_condition_default_293; extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_1095; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_331; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_761; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_670; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_875; +extern const bool __static_condition_default_549; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_1100; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_204; +extern const bool __static_condition_default_769; +extern const bool __static_condition_default_602; extern const bool __static_condition_default_282; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_259; extern const bool __static_condition_default_842; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_848; -extern const bool __static_condition_default_402; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_76; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_274; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_365; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_536; extern const bool __static_condition_default_702; -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_1099; +extern const bool __static_condition_default_717; extern const bool __static_condition_default_894; -extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_1089; extern const bool __static_condition_default_803; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_244; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_193; extern const bool __static_condition_default_313; -extern const bool __static_condition_default_412; extern const bool __static_condition_default_431; +extern const bool __static_condition_default_489; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_721; +extern const bool __static_condition_default_907; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_419; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_779; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_759; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_170; extern const bool __static_condition_default_217; -extern const bool __static_condition_default_315; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_677; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_809; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_290; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_864; extern const bool __static_condition_default_544; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_357; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_956; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_929; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_461; -extern const bool __static_condition_default_347; -extern const bool __static_condition_default_858; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_488; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_573; +extern const bool __static_condition_default_791; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_955; extern const bool __static_condition_default_1098; -extern const bool __static_condition_default_793; -extern const bool __static_condition_default_187; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_709; -extern const bool __static_condition_default_755; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_471; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_677; extern const bool __static_condition_default_807; -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_438; -extern const bool __static_condition_default_701; -extern const bool __static_condition_default_198; -extern const bool __static_condition_default_645; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_907; -extern const bool __static_condition_default_1028; extern const bool __static_condition_default_887; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_187; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_550; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_497; extern const bool __static_condition_default_668; -extern const bool __static_condition_default_670; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_872; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_779; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_963; +extern const bool __static_condition_default_583; +extern const bool __static_condition_default_386; extern const bool __static_condition_default_559; -extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_1094; -extern const bool __static_condition_default_914; -extern const bool __static_condition_default_787; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_53; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_380; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_929; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_619; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_780; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); diff --git a/fonda/cpp_testsuite/varBugs/APACHE/4202d5fee3e.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/4202d5fee3e.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/4202d5fee3e.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/4202d5fee3e.inferres b/fonda/cpp_testsuite/varBugs/APACHE/4202d5fee3e.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/APACHE/4945115b2e7.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/4945115b2e7.desugared.c index 6f2905d7..6d355632 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/4945115b2e7.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/4945115b2e7.desugared.c @@ -7,220 +7,408 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_577; -extern const bool __static_condition_default_1133; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_248; -extern const bool __static_condition_default_726; -extern const bool __static_condition_default_343; -extern const bool __static_condition_default_518; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_300; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_434; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_1135; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_531; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_741; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_1124; -extern const bool __static_condition_default_551; -extern const bool __static_condition_default_1119; -extern const bool __static_condition_default_1115; -extern const bool __static_condition_default_748; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_319; -extern const bool __static_condition_default_315; -extern const bool __static_condition_default_632; -extern const bool __static_condition_default_911; -extern const bool __static_condition_default_707; -extern const bool __static_condition_default_415; -extern const bool __static_condition_default_1120; -extern const bool __static_condition_default_921; -extern const bool __static_condition_default_1107; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_1114; -extern const bool __static_condition_default_339; -extern const bool __static_condition_default_439; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_1130; -extern const bool __static_condition_default_1101; -extern const bool __static_condition_default_348; -extern const bool __static_condition_default_1121; -extern const bool __static_condition_default_681; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_440; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_396; -extern const bool __static_condition_default_923; -extern const bool __static_condition_default_1118; +extern const bool __static_condition_default_568; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_1808; +extern const bool __static_condition_default_393; extern const bool __static_condition_default_241; -extern const bool __static_condition_default_492; -extern const bool __static_condition_default_498; -extern const bool __static_condition_default_1108; -extern const bool __static_condition_default_583; -extern const bool __static_condition_default_605; -extern const bool __static_condition_default_285; -extern const bool __static_condition_default_588; -extern const bool __static_condition_default_1125; -extern const bool __static_condition_default_436; -extern const bool __static_condition_default_76; -extern const bool __static_condition_default_912; -extern const bool __static_condition_default_217; -extern const bool __static_condition_default_427; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_910; -extern const bool __static_condition_default_589; -extern const bool __static_condition_default_890; -extern const bool __static_condition_default_302; -extern const bool __static_condition_default_304; -extern const bool __static_condition_default_298; -extern const bool __static_condition_default_675; -extern const bool __static_condition_default_593; -extern const bool __static_condition_default_329; +extern const bool __static_condition_default_907; +extern const bool __static_condition_default_1022; extern const bool __static_condition_default_647; -extern const bool __static_condition_default_749; -extern const bool __static_condition_default_603; -extern const bool __static_condition_default_123; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_455; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_2058; +extern const bool __static_condition_default_761; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_76; +extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_2052; +extern const bool __static_condition_default_1164; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_2096; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_2105; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_1409; +extern const bool __static_condition_default_2051; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_677; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_1816; +extern const bool __static_condition_default_250; extern const bool __static_condition_default_257; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_713; -extern const bool __static_condition_default_733; -extern const bool __static_condition_default_1113; -extern const bool __static_condition_default_453; -extern const bool __static_condition_default_374; -extern const bool __static_condition_default_673; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_952; -extern const bool __static_condition_default_484; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_465; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_674; -extern const bool __static_condition_default_1129; -extern const bool __static_condition_default_1116; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_385; -extern const bool __static_condition_default_697; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_1132; -extern const bool __static_condition_default_533; -extern const bool __static_condition_default_321; -extern const bool __static_condition_default_1102; -extern const bool __static_condition_default_1127; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_946; -extern const bool __static_condition_default_473; +extern const bool __static_condition_default_779; extern const bool __static_condition_default_229; -extern const bool __static_condition_default_1111; -extern const bool __static_condition_default_690; -extern const bool __static_condition_default_1122; -extern const bool __static_condition_default_1137; -extern const bool __static_condition_default_360; -extern const bool __static_condition_default_889; -extern const bool __static_condition_default_1139; -extern const bool __static_condition_default_1143; -extern const bool __static_condition_default_758; -extern const bool __static_condition_default_599; -extern const bool __static_condition_default_534; -extern const bool __static_condition_default_740; -extern const bool __static_condition_default_885; -extern const bool __static_condition_default_461; -extern const bool __static_condition_default_696; -extern const bool __static_condition_default_466; -extern const bool __static_condition_default_525; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_460; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_925; -extern const bool __static_condition_default_53; -extern const bool __static_condition_default_418; -extern const bool __static_condition_default_445; extern const bool __static_condition_default_274; -extern const bool __static_condition_default_927; -extern const bool __static_condition_default_1128; -extern const bool __static_condition_default_1134; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_462; -extern const bool __static_condition_default_1136; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_198; -extern const bool __static_condition_default_757; +extern const bool __static_condition_default_2067; +extern const bool __static_condition_default_521; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_333; +extern const bool __static_condition_default_583; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_2112; +extern const bool __static_condition_default_2090; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_2088; +extern const bool __static_condition_default_2092; +extern const bool __static_condition_default_2101; +extern const bool __static_condition_default_1568; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_2065; +extern const bool __static_condition_default_769; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_2059; +extern const bool __static_condition_default_2087; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_1572; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_613; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_759; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_1420; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_834; +extern const bool __static_condition_default_2056; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_1432; +extern const bool __static_condition_default_929; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_693; extern const bool __static_condition_default_187; -extern const bool __static_condition_default_467; -extern const bool __static_condition_default_476; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_540; -extern const bool __static_condition_default_587; -extern const bool __static_condition_default_513; -extern const bool __static_condition_default_423; -extern const bool __static_condition_default_1126; -extern const bool __static_condition_default_311; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_564; -extern const bool __static_condition_default_611; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_468; -extern const bool __static_condition_default_886; -extern const bool __static_condition_default_563; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_414; -extern const bool __static_condition_default_720; -extern const bool __static_condition_default_565; -extern const bool __static_condition_default_725; -extern const bool __static_condition_default_401; -extern const bool __static_condition_default_557; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_2082; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_536; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_1361; +extern const bool __static_condition_default_619; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_2113; extern const bool __static_condition_default_438; -extern const bool __static_condition_default_950; -extern const bool __static_condition_default_1138; -extern const bool __static_condition_default_1131; -extern const bool __static_condition_default_584; -extern const bool __static_condition_default_1123; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_955; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_2116; +extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_2076; +extern const bool __static_condition_default_2109; +extern const bool __static_condition_default_791; +extern const bool __static_condition_default_1814; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_2118; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_549; +extern const bool __static_condition_default_2073; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_2106; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_337; +extern const bool __static_condition_default_559; +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_1152; +extern const bool __static_condition_default_388; +extern const bool __static_condition_default_1531; +extern const bool __static_condition_default_311; +extern const bool __static_condition_default_1369; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_2081; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_2085; +extern const bool __static_condition_default_1398; +extern const bool __static_condition_default_875; +extern const bool __static_condition_default_1944; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_2107; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_1353; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_2108; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_2079; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_1810; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_637; extern const bool __static_condition_default_204; -extern const bool __static_condition_default_1140; -extern const bool __static_condition_default_532; -extern const bool __static_condition_default_1117; -extern const bool __static_condition_default_447; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_702; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_2068; +extern const bool __static_condition_default_2046; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_1485; +extern const bool __static_condition_default_489; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_2041; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_2069; +extern const bool __static_condition_default_2070; +extern const bool __static_condition_default_2098; +extern const bool __static_condition_default_1428; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_1165; +extern const bool __static_condition_default_1489; +extern const bool __static_condition_default_1532; +extern const bool __static_condition_default_2040; +extern const bool __static_condition_default_1395; +extern const bool __static_condition_default_1785; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_1315; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_1381; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_2064; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_2115; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_210; extern const bool __static_condition_default_685; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_1750; +extern const bool __static_condition_default_846; +extern const bool __static_condition_default_1388; extern const bool __static_condition_default_373; -extern const bool __static_condition_default_474; -extern const bool __static_condition_default_379; -extern const bool __static_condition_default_435; -extern const bool __static_condition_default_656; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_2104; extern const bool __static_condition_default_193; -extern const bool __static_condition_default_909; -extern const bool __static_condition_default_421; -extern const bool __static_condition_default_291; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_698; -extern const bool __static_condition_default_372; -extern const bool __static_condition_default_483; -extern const bool __static_condition_default_576; -extern const bool __static_condition_default_705; -extern const bool __static_condition_default_477; -extern const bool __static_condition_default_575; +extern const bool __static_condition_default_1791; +extern const bool __static_condition_default_1391; +extern const bool __static_condition_default_2103; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_1159; +extern const bool __static_condition_default_1564; +extern const bool __static_condition_default_1753; +extern const bool __static_condition_default_550; +extern const bool __static_condition_default_2074; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_1459; +extern const bool __static_condition_default_1373; +extern const bool __static_condition_default_1475; +extern const bool __static_condition_default_2047; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_1776; +extern const bool __static_condition_default_2089; +extern const bool __static_condition_default_2110; +extern const bool __static_condition_default_1424; +extern const bool __static_condition_default_636; +extern const bool __static_condition_default_1402; +extern const bool __static_condition_default_386; +extern const bool __static_condition_default_789; +extern const bool __static_condition_default_1774; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_1458; +extern const bool __static_condition_default_2072; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_1341; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_1405; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_721; +extern const bool __static_condition_default_1357; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_2093; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_2111; +extern const bool __static_condition_default_1749; +extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_544; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_2066; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_380; +extern const bool __static_condition_default_2060; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_894; +extern const bool __static_condition_default_1754; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_963; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_891; +extern const bool __static_condition_default_2091; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_1556; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_367; +extern const bool __static_condition_default_2078; +extern const bool __static_condition_default_2075; +extern const bool __static_condition_default_842; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_1349; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_1416; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_1385; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_1560; +extern const bool __static_condition_default_2095; +extern const bool __static_condition_default_1377; +extern const bool __static_condition_default_2071; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_1789; +extern const bool __static_condition_default_753; +extern const bool __static_condition_default_2099; +extern const bool __static_condition_default_2102; extern const bool __static_condition_default_553; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_547; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_403; +extern const bool __static_condition_default_419; +extern const bool __static_condition_default_1516; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_2086; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_1453; +extern const bool __static_condition_default_1498; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_2080; extern const bool __static_condition_default_488; -extern const bool __static_condition_default_463; -extern const bool __static_condition_default_1112; +extern const bool __static_condition_default_2077; +extern const bool __static_condition_default_290; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_2054; +extern const bool __static_condition_default_1775; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_2084; +extern const bool __static_condition_default_1773; +extern const bool __static_condition_default_2094; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_2055; +extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_1515; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_512; +extern const bool __static_condition_default_1787; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_2062; +extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_747; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_1436; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_2061; +extern const bool __static_condition_default_2057; +extern const bool __static_condition_default_1345; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_2053; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_2083; +extern const bool __static_condition_default_1576; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_84; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_347; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_1365; +extern const bool __static_condition_default_2100; +extern const bool __static_condition_default_365; +extern const bool __static_condition_default_2097; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_670; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_1552; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_2063; +extern const bool __static_condition_default_382; +extern const bool __static_condition_default_727; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -331,229 +519,642 @@ __static_renaming("___IO_seekpos_272", "_IO_seekpos"); __static_renaming("___IO_seekpos_273", "_IO_seekpos"); __static_renaming("___IO_free_backup_area_276", "_IO_free_backup_area"); __static_renaming("___IO_free_backup_area_277", "_IO_free_backup_area"); -__static_renaming("__fpos_t_279", "fpos_t"); -__static_renaming("__fpos_t_281", "fpos_t"); -__static_renaming("__stdin_283", "stdin"); -__static_renaming("__stdin_284", "stdin"); -__static_renaming("__stdout_286", "stdout"); -__static_renaming("__stdout_287", "stdout"); -__static_renaming("__stderr_289", "stderr"); -__static_renaming("__stderr_290", "stderr"); -__static_renaming("__remove_293", "remove"); -__static_renaming("__rename_296", "rename"); -__static_renaming("__tmpfile_297", "tmpfile"); -__static_renaming("__tmpfile_299", "tmpfile"); -__static_renaming("__tmpfile_301", "tmpfile"); -__static_renaming("__tmpfile_303", "tmpfile"); -__static_renaming("__tmpnam_306", "tmpnam"); -__static_renaming("__tmpnam_307", "tmpnam"); -__static_renaming("__fclose_310", "fclose"); -__static_renaming("__fflush_314", "fflush"); -__static_renaming("__fopen_318", "fopen"); -__static_renaming("__fopen_320", "fopen"); -__static_renaming("__fopen_328", "fopen"); -__static_renaming("__fopen_330", "fopen"); -__static_renaming("__freopen_336", "freopen"); -__static_renaming("__freopen_338", "freopen"); -__static_renaming("__freopen_340", "freopen"); -__static_renaming("__freopen_342", "freopen"); -__static_renaming("__setbuf_347", "setbuf"); -__static_renaming("__setvbuf_354", "setvbuf"); -__static_renaming("__fprintf_359", "fprintf"); -__static_renaming("__printf_362", "printf"); -__static_renaming("__sprintf_365", "sprintf"); -__static_renaming("__vfprintf_371", "vfprintf"); -__static_renaming("__vprintf_378", "vprintf"); -__static_renaming("__vsprintf_384", "vsprintf"); -__static_renaming("__snprintf_389", "snprintf"); -__static_renaming("__vsnprintf_395", "vsnprintf"); -__static_renaming("__fscanf_400", "fscanf"); -__static_renaming("__fscanf_402", "fscanf"); -__static_renaming("__scanf_405", "scanf"); -__static_renaming("__scanf_406", "scanf"); -__static_renaming("__sscanf_409", "sscanf"); -__static_renaming("__vfscanf_433", "vfscanf"); -__static_renaming("__vfscanf_437", "vfscanf"); -__static_renaming("__vscanf_444", "vscanf"); -__static_renaming("__vscanf_446", "vscanf"); -__static_renaming("__vsscanf_452", "vsscanf"); -__static_renaming("__fgetc_487", "fgetc"); -__static_renaming("__getc_491", "getc"); -__static_renaming("__getchar_493", "getchar"); -__static_renaming("__fputc_497", "fputc"); -__static_renaming("__putc_502", "putc"); -__static_renaming("__putchar_505", "putchar"); -__static_renaming("__fgets_510", "fgets"); -__static_renaming("__fgets_512", "fgets"); -__static_renaming("__fputs_517", "fputs"); -__static_renaming("__puts_520", "puts"); -__static_renaming("__ungetc_524", "ungetc"); -__static_renaming("__fseek_546", "fseek"); -__static_renaming("__ftell_550", "ftell"); -__static_renaming("__ftell_552", "ftell"); -__static_renaming("__rewind_556", "rewind"); -__static_renaming("__fgetpos_562", "fgetpos"); -__static_renaming("__fgetpos_574", "fgetpos"); -__static_renaming("__fsetpos_582", "fsetpos"); -__static_renaming("__fsetpos_586", "fsetpos"); -__static_renaming("__clearerr_592", "clearerr"); -__static_renaming("__feof_596", "feof"); -__static_renaming("__feof_598", "feof"); -__static_renaming("__ferror_602", "ferror"); -__static_renaming("__ferror_604", "ferror"); -__static_renaming("__perror_607", "perror"); -__static_renaming("____sprintf_chk_617", "__sprintf_chk"); -__static_renaming("____vsprintf_chk_624", "__vsprintf_chk"); -__static_renaming("____snprintf_chk_638", "__snprintf_chk"); -__static_renaming("____vsnprintf_chk_646", "__vsnprintf_chk"); -__static_renaming("____fprintf_chk_661", "__fprintf_chk"); -__static_renaming("____printf_chk_665", "__printf_chk"); -__static_renaming("____vfprintf_chk_672", "__vfprintf_chk"); -__static_renaming("____vprintf_chk_680", "__vprintf_chk"); -__static_renaming("____fgets_chk_704", "__fgets_chk"); -__static_renaming("____fgets_chk_706", "__fgets_chk"); -__static_renaming("____fgets_alias_712", "__fgets_alias"); -__static_renaming("____fgets_chk_warn_719", "__fgets_chk_warn"); -__static_renaming("__ptrdiff_t_755", "ptrdiff_t"); -__static_renaming("__size_t_756", "size_t"); -__static_renaming("__wchar_t_759", "wchar_t"); -__static_renaming("__wchar_t_760", "wchar_t"); -__static_renaming("__div_t_765", "div_t"); -__static_renaming("__ldiv_t_770", "ldiv_t"); -__static_renaming("__lldiv_t_775", "lldiv_t"); -__static_renaming("____ctype_get_mb_cur_max_776", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_777", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_778", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_779", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_780", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_781", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_782", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_783", "__ctype_get_mb_cur_max"); -__static_renaming("__atof_785", "atof"); -__static_renaming("__atof_786", "atof"); -__static_renaming("__atoi_788", "atoi"); -__static_renaming("__atoi_789", "atoi"); -__static_renaming("__atol_791", "atol"); -__static_renaming("__atol_792", "atol"); -__static_renaming("__atoll_794", "atoll"); -__static_renaming("__atoll_795", "atoll"); -__static_renaming("__strtod_798", "strtod"); -__static_renaming("__strtof_801", "strtof"); -__static_renaming("__strtold_804", "strtold"); -__static_renaming("__strtol_808", "strtol"); -__static_renaming("__strtoul_812", "strtoul"); -__static_renaming("__strtoll_816", "strtoll"); -__static_renaming("__strtoull_820", "strtoull"); -__static_renaming("__rand_824", "rand"); -__static_renaming("__rand_825", "rand"); -__static_renaming("__srand_827", "srand"); -__static_renaming("__malloc_830", "malloc"); -__static_renaming("__malloc_831", "malloc"); -__static_renaming("__malloc_832", "malloc"); -__static_renaming("__malloc_833", "malloc"); -__static_renaming("__calloc_838", "calloc"); -__static_renaming("__calloc_839", "calloc"); -__static_renaming("__calloc_840", "calloc"); -__static_renaming("__calloc_841", "calloc"); -__static_renaming("__realloc_845", "realloc"); -__static_renaming("__realloc_846", "realloc"); -__static_renaming("__realloc_847", "realloc"); -__static_renaming("__realloc_848", "realloc"); -__static_renaming("__free_850", "free"); -__static_renaming("__aligned_alloc_855", "aligned_alloc"); -__static_renaming("__aligned_alloc_856", "aligned_alloc"); -__static_renaming("__aligned_alloc_857", "aligned_alloc"); -__static_renaming("__aligned_alloc_858", "aligned_alloc"); -__static_renaming("__abort_859", "abort"); -__static_renaming("__atexit_861", "atexit"); -__static_renaming("__at_quick_exit_863", "at_quick_exit"); -__static_renaming("__exit_865", "exit"); -__static_renaming("__quick_exit_867", "quick_exit"); -__static_renaming("___Exit_869", "_Exit"); -__static_renaming("__getenv_871", "getenv"); -__static_renaming("__getenv_872", "getenv"); -__static_renaming("__system_874", "system"); -__static_renaming("__system_875", "system"); -__static_renaming("____compar_fn_t_876", "__compar_fn_t"); -__static_renaming("__bsearch_887", "bsearch"); -__static_renaming("__bsearch_888", "bsearch"); -__static_renaming("__bsearch_891", "bsearch"); -__static_renaming("__bsearch_892", "bsearch"); -__static_renaming("____l_901", "__l"); -__static_renaming("____l_902", "__l"); -__static_renaming("____u_903", "__u"); -__static_renaming("____u_904", "__u"); -__static_renaming("____idx_905", "__idx"); -__static_renaming("____idx_906", "__idx"); -__static_renaming("____p_907", "__p"); -__static_renaming("____comparison_908", "__comparison"); -__static_renaming("__qsort_920", "qsort"); -__static_renaming("__qsort_922", "qsort"); -__static_renaming("__qsort_924", "qsort"); -__static_renaming("__qsort_926", "qsort"); -__static_renaming("__abs_929", "abs"); -__static_renaming("__abs_930", "abs"); -__static_renaming("__labs_932", "labs"); -__static_renaming("__labs_933", "labs"); -__static_renaming("__llabs_935", "llabs"); -__static_renaming("__llabs_936", "llabs"); -__static_renaming("__div_939", "div"); -__static_renaming("__div_940", "div"); -__static_renaming("__ldiv_943", "ldiv"); -__static_renaming("__ldiv_945", "ldiv"); -__static_renaming("__lldiv_949", "lldiv"); -__static_renaming("__lldiv_951", "lldiv"); -__static_renaming("__mblen_956", "mblen"); -__static_renaming("__mblen_957", "mblen"); -__static_renaming("__mbtowc_963", "mbtowc"); -__static_renaming("__mbtowc_964", "mbtowc"); -__static_renaming("__mbtowc_965", "mbtowc"); -__static_renaming("__wctomb_969", "wctomb"); -__static_renaming("__wctomb_970", "wctomb"); -__static_renaming("__mbstowcs_976", "mbstowcs"); -__static_renaming("__mbstowcs_977", "mbstowcs"); -__static_renaming("__mbstowcs_978", "mbstowcs"); -__static_renaming("__wcstombs_984", "wcstombs"); -__static_renaming("__wcstombs_985", "wcstombs"); -__static_renaming("__wcstombs_986", "wcstombs"); -__static_renaming("____realpath_chk_992", "__realpath_chk"); -__static_renaming("____realpath_chk_993", "__realpath_chk"); -__static_renaming("____realpath_alias_996", "__realpath_alias"); -__static_renaming("____realpath_chk_warn_1001", "__realpath_chk_warn"); -__static_renaming("____realpath_chk_warn_1002", "__realpath_chk_warn"); -__static_renaming("____ptsname_r_chk_1012", "__ptsname_r_chk"); -__static_renaming("____ptsname_r_chk_1013", "__ptsname_r_chk"); -__static_renaming("____ptsname_r_alias_1018", "__ptsname_r_alias"); -__static_renaming("____ptsname_r_alias_1019", "__ptsname_r_alias"); -__static_renaming("____ptsname_r_chk_warn_1026", "__ptsname_r_chk_warn"); -__static_renaming("____ptsname_r_chk_warn_1027", "__ptsname_r_chk_warn"); -__static_renaming("____wctomb_chk_1038", "__wctomb_chk"); -__static_renaming("____wctomb_chk_1039", "__wctomb_chk"); -__static_renaming("____wctomb_alias_1042", "__wctomb_alias"); -__static_renaming("____mbstowcs_chk_1051", "__mbstowcs_chk"); -__static_renaming("____mbstowcs_chk_1052", "__mbstowcs_chk"); -__static_renaming("____mbstowcs_alias_1057", "__mbstowcs_alias"); -__static_renaming("____mbstowcs_alias_1058", "__mbstowcs_alias"); -__static_renaming("____mbstowcs_chk_warn_1065", "__mbstowcs_chk_warn"); -__static_renaming("____mbstowcs_chk_warn_1066", "__mbstowcs_chk_warn"); -__static_renaming("____wcstombs_chk_1077", "__wcstombs_chk"); -__static_renaming("____wcstombs_chk_1078", "__wcstombs_chk"); -__static_renaming("____wcstombs_alias_1083", "__wcstombs_alias"); -__static_renaming("____wcstombs_alias_1084", "__wcstombs_alias"); -__static_renaming("____wcstombs_chk_warn_1091", "__wcstombs_chk_warn"); -__static_renaming("____wcstombs_chk_warn_1092", "__wcstombs_chk_warn"); -__static_renaming("__dbg_1097", "dbg"); -__static_renaming("__dbg_1098", "dbg"); -__static_renaming("__dbg_1099", "dbg"); -__static_renaming("__dbg_1100", "dbg"); -__static_renaming("__dbg_1103", "dbg"); -__static_renaming("__dbg_1104", "dbg"); -__static_renaming("__dbg_1105", "dbg"); -__static_renaming("__dbg_1106", "dbg"); -__static_renaming("__run_cgi_child_1109", "run_cgi_child"); -__static_renaming("__run_cgi_child_1110", "run_cgi_child"); -__static_renaming("__cgi_handler_1141", "cgi_handler"); -__static_renaming("__main_1142", "main"); +__static_renaming("__va_list_279", "va_list"); +__static_renaming("__off_t_281", "off_t"); +__static_renaming("__off_t_283", "off_t"); +__static_renaming("__ssize_t_285", "ssize_t"); +__static_renaming("__fpos_t_287", "fpos_t"); +__static_renaming("__fpos_t_289", "fpos_t"); +__static_renaming("__stdin_291", "stdin"); +__static_renaming("__stdin_292", "stdin"); +__static_renaming("__stdout_294", "stdout"); +__static_renaming("__stdout_295", "stdout"); +__static_renaming("__stderr_297", "stderr"); +__static_renaming("__stderr_298", "stderr"); +__static_renaming("__remove_301", "remove"); +__static_renaming("__rename_304", "rename"); +__static_renaming("__renameat_309", "renameat"); +__static_renaming("__tmpfile_310", "tmpfile"); +__static_renaming("__tmpfile_312", "tmpfile"); +__static_renaming("__tmpfile_314", "tmpfile"); +__static_renaming("__tmpfile_316", "tmpfile"); +__static_renaming("__tmpnam_319", "tmpnam"); +__static_renaming("__tmpnam_320", "tmpnam"); +__static_renaming("__tmpnam_r_322", "tmpnam_r"); +__static_renaming("__tmpnam_r_323", "tmpnam_r"); +__static_renaming("__tempnam_326", "tempnam"); +__static_renaming("__tempnam_327", "tempnam"); +__static_renaming("__fclose_330", "fclose"); +__static_renaming("__fclose_332", "fclose"); +__static_renaming("__fflush_336", "fflush"); +__static_renaming("__fflush_unlocked_340", "fflush_unlocked"); +__static_renaming("__fopen_344", "fopen"); +__static_renaming("__fopen_346", "fopen"); +__static_renaming("__fopen_354", "fopen"); +__static_renaming("__fopen_356", "fopen"); +__static_renaming("__freopen_362", "freopen"); +__static_renaming("__freopen_364", "freopen"); +__static_renaming("__freopen_366", "freopen"); +__static_renaming("__freopen_368", "freopen"); +__static_renaming("__fdopen_372", "fdopen"); +__static_renaming("__fdopen_374", "fdopen"); +__static_renaming("__fmemopen_379", "fmemopen"); +__static_renaming("__fmemopen_381", "fmemopen"); +__static_renaming("__open_memstream_385", "open_memstream"); +__static_renaming("__open_memstream_387", "open_memstream"); +__static_renaming("__setbuf_392", "setbuf"); +__static_renaming("__setbuf_394", "setbuf"); +__static_renaming("__setvbuf_401", "setvbuf"); +__static_renaming("__setbuffer_407", "setbuffer"); +__static_renaming("__setlinebuf_411", "setlinebuf"); +__static_renaming("__fprintf_416", "fprintf"); +__static_renaming("__fprintf_418", "fprintf"); +__static_renaming("__printf_421", "printf"); +__static_renaming("__sprintf_424", "sprintf"); +__static_renaming("__vfprintf_430", "vfprintf"); +__static_renaming("__vprintf_437", "vprintf"); +__static_renaming("__vsprintf_443", "vsprintf"); +__static_renaming("__snprintf_448", "snprintf"); +__static_renaming("__vsnprintf_454", "vsnprintf"); +__static_renaming("__vdprintf_460", "vdprintf"); +__static_renaming("__dprintf_464", "dprintf"); +__static_renaming("__fscanf_468", "fscanf"); +__static_renaming("__fscanf_470", "fscanf"); +__static_renaming("__fscanf_472", "fscanf"); +__static_renaming("__fscanf_474", "fscanf"); +__static_renaming("__scanf_477", "scanf"); +__static_renaming("__scanf_478", "scanf"); +__static_renaming("__sscanf_481", "sscanf"); +__static_renaming("__vfscanf_509", "vfscanf"); +__static_renaming("__vfscanf_513", "vfscanf"); +__static_renaming("__vscanf_520", "vscanf"); +__static_renaming("__vscanf_522", "vscanf"); +__static_renaming("__vsscanf_528", "vsscanf"); +__static_renaming("__fgetc_563", "fgetc"); +__static_renaming("__getc_567", "getc"); +__static_renaming("__getchar_569", "getchar"); +__static_renaming("__getc_unlocked_572", "getc_unlocked"); +__static_renaming("__getchar_unlocked_574", "getchar_unlocked"); +__static_renaming("__fgetc_unlocked_577", "fgetc_unlocked"); +__static_renaming("__fputc_582", "fputc"); +__static_renaming("__fputc_584", "fputc"); +__static_renaming("__putc_589", "putc"); +__static_renaming("__putchar_592", "putchar"); +__static_renaming("__fputc_unlocked_596", "fputc_unlocked"); +__static_renaming("__putc_unlocked_601", "putc_unlocked"); +__static_renaming("__putchar_unlocked_604", "putchar_unlocked"); +__static_renaming("__getw_607", "getw"); +__static_renaming("__putw_612", "putw"); +__static_renaming("__fgets_618", "fgets"); +__static_renaming("__fgets_620", "fgets"); +__static_renaming("__fgets_622", "fgets"); +__static_renaming("__fgets_624", "fgets"); +__static_renaming("____getdelim_631", "__getdelim"); +__static_renaming("____getdelim_635", "__getdelim"); +__static_renaming("__getdelim_644", "getdelim"); +__static_renaming("__getdelim_648", "getdelim"); +__static_renaming("__getline_656", "getline"); +__static_renaming("__getline_660", "getline"); +__static_renaming("__fputs_667", "fputs"); +__static_renaming("__fputs_669", "fputs"); +__static_renaming("__puts_672", "puts"); +__static_renaming("__ungetc_676", "ungetc"); +__static_renaming("__fseek_714", "fseek"); +__static_renaming("__fseek_716", "fseek"); +__static_renaming("__ftell_720", "ftell"); +__static_renaming("__ftell_722", "ftell"); +__static_renaming("__rewind_726", "rewind"); +__static_renaming("__fseeko_733", "fseeko"); +__static_renaming("__fseeko_744", "fseeko"); +__static_renaming("__ftello_750", "ftello"); +__static_renaming("__ftello_754", "ftello"); +__static_renaming("__ftello_758", "ftello"); +__static_renaming("__fgetpos_766", "fgetpos"); +__static_renaming("__fgetpos_778", "fgetpos"); +__static_renaming("__fsetpos_786", "fsetpos"); +__static_renaming("__fsetpos_790", "fsetpos"); +__static_renaming("__clearerr_796", "clearerr"); +__static_renaming("__feof_800", "feof"); +__static_renaming("__feof_802", "feof"); +__static_renaming("__ferror_806", "ferror"); +__static_renaming("__ferror_808", "ferror"); +__static_renaming("__clearerr_unlocked_812", "clearerr_unlocked"); +__static_renaming("__feof_unlocked_816", "feof_unlocked"); +__static_renaming("__feof_unlocked_818", "feof_unlocked"); +__static_renaming("__ferror_unlocked_822", "ferror_unlocked"); +__static_renaming("__ferror_unlocked_824", "ferror_unlocked"); +__static_renaming("__perror_827", "perror"); +__static_renaming("__perror_828", "perror"); +__static_renaming("__sys_nerr_829", "sys_nerr"); +__static_renaming("__sys_errlist_830", "sys_errlist"); +__static_renaming("__fileno_833", "fileno"); +__static_renaming("__fileno_835", "fileno"); +__static_renaming("__fileno_unlocked_839", "fileno_unlocked"); +__static_renaming("__fileno_unlocked_841", "fileno_unlocked"); +__static_renaming("__popen_845", "popen"); +__static_renaming("__popen_847", "popen"); +__static_renaming("__pclose_851", "pclose"); +__static_renaming("__ctermid_854", "ctermid"); +__static_renaming("__flockfile_857", "flockfile"); +__static_renaming("__ftrylockfile_861", "ftrylockfile"); +__static_renaming("__ftrylockfile_863", "ftrylockfile"); +__static_renaming("__funlockfile_867", "funlockfile"); +__static_renaming("____sprintf_chk_899", "__sprintf_chk"); +__static_renaming("____vsprintf_chk_906", "__vsprintf_chk"); +__static_renaming("____snprintf_chk_920", "__snprintf_chk"); +__static_renaming("____vsnprintf_chk_928", "__vsnprintf_chk"); +__static_renaming("____fprintf_chk_943", "__fprintf_chk"); +__static_renaming("____printf_chk_947", "__printf_chk"); +__static_renaming("____vfprintf_chk_954", "__vfprintf_chk"); +__static_renaming("____vprintf_chk_962", "__vprintf_chk"); +__static_renaming("____dprintf_chk_984", "__dprintf_chk"); +__static_renaming("____vdprintf_chk_990", "__vdprintf_chk"); +__static_renaming("____fgets_chk_1004", "__fgets_chk"); +__static_renaming("____fgets_chk_1006", "__fgets_chk"); +__static_renaming("____fgets_chk_1008", "__fgets_chk"); +__static_renaming("____fgets_alias_1014", "__fgets_alias"); +__static_renaming("____fgets_chk_warn_1021", "__fgets_chk_warn"); +__static_renaming("____cnt_1087", "__cnt"); +__static_renaming("____cptr_1088", "__cptr"); +__static_renaming("__ptrdiff_t_1092", "ptrdiff_t"); +__static_renaming("__size_t_1093", "size_t"); +__static_renaming("__wchar_t_1094", "wchar_t"); +__static_renaming("__idtype_t_1100", "idtype_t"); +__static_renaming("____u_char_1101", "__u_char"); +__static_renaming("____u_short_1102", "__u_short"); +__static_renaming("____u_int_1103", "__u_int"); +__static_renaming("____u_long_1104", "__u_long"); +__static_renaming("____int8_t_1105", "__int8_t"); +__static_renaming("____uint8_t_1106", "__uint8_t"); +__static_renaming("____int16_t_1107", "__int16_t"); +__static_renaming("____uint16_t_1108", "__uint16_t"); +__static_renaming("____int32_t_1109", "__int32_t"); +__static_renaming("____uint32_t_1110", "__uint32_t"); +__static_renaming("____int64_t_1111", "__int64_t"); +__static_renaming("____uint64_t_1112", "__uint64_t"); +__static_renaming("____quad_t_1113", "__quad_t"); +__static_renaming("____u_quad_t_1114", "__u_quad_t"); +__static_renaming("____dev_t_1115", "__dev_t"); +__static_renaming("____uid_t_1116", "__uid_t"); +__static_renaming("____gid_t_1117", "__gid_t"); +__static_renaming("____ino_t_1118", "__ino_t"); +__static_renaming("____ino64_t_1119", "__ino64_t"); +__static_renaming("____mode_t_1120", "__mode_t"); +__static_renaming("____nlink_t_1121", "__nlink_t"); +__static_renaming("____off_t_1122", "__off_t"); +__static_renaming("____off64_t_1123", "__off64_t"); +__static_renaming("____pid_t_1124", "__pid_t"); +__static_renaming("____fsid_t_1128", "__fsid_t"); +__static_renaming("____clock_t_1129", "__clock_t"); +__static_renaming("____rlim_t_1130", "__rlim_t"); +__static_renaming("____rlim64_t_1131", "__rlim64_t"); +__static_renaming("____id_t_1132", "__id_t"); +__static_renaming("____time_t_1133", "__time_t"); +__static_renaming("____useconds_t_1134", "__useconds_t"); +__static_renaming("____suseconds_t_1135", "__suseconds_t"); +__static_renaming("____daddr_t_1136", "__daddr_t"); +__static_renaming("____key_t_1137", "__key_t"); +__static_renaming("____clockid_t_1138", "__clockid_t"); +__static_renaming("____timer_t_1139", "__timer_t"); +__static_renaming("____blksize_t_1140", "__blksize_t"); +__static_renaming("____blkcnt_t_1141", "__blkcnt_t"); +__static_renaming("____blkcnt64_t_1142", "__blkcnt64_t"); +__static_renaming("____fsblkcnt_t_1143", "__fsblkcnt_t"); +__static_renaming("____fsblkcnt64_t_1144", "__fsblkcnt64_t"); +__static_renaming("____fsfilcnt_t_1145", "__fsfilcnt_t"); +__static_renaming("____fsfilcnt64_t_1146", "__fsfilcnt64_t"); +__static_renaming("____fsword_t_1147", "__fsword_t"); +__static_renaming("____ssize_t_1148", "__ssize_t"); +__static_renaming("____syscall_slong_t_1149", "__syscall_slong_t"); +__static_renaming("____syscall_ulong_t_1150", "__syscall_ulong_t"); +__static_renaming("____loff_t_1151", "__loff_t"); +__static_renaming("____qaddr_t_1153", "__qaddr_t"); +__static_renaming("____caddr_t_1154", "__caddr_t"); +__static_renaming("____intptr_t_1155", "__intptr_t"); +__static_renaming("____socklen_t_1156", "__socklen_t"); +__static_renaming("____bswap_32_1158", "__bswap_32"); +__static_renaming("____bswap_64_1162", "__bswap_64"); +__static_renaming("____bswap_64_1163", "__bswap_64"); +__static_renaming("____WAIT_STATUS_1185", "__WAIT_STATUS"); +__static_renaming("__div_t_1190", "div_t"); +__static_renaming("__ldiv_t_1195", "ldiv_t"); +__static_renaming("__lldiv_t_1200", "lldiv_t"); +__static_renaming("____ctype_get_mb_cur_max_1201", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1202", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1203", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1204", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1205", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1206", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1207", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1208", "__ctype_get_mb_cur_max"); +__static_renaming("__atof_1210", "atof"); +__static_renaming("__atof_1211", "atof"); +__static_renaming("__atoi_1213", "atoi"); +__static_renaming("__atoi_1214", "atoi"); +__static_renaming("__atol_1216", "atol"); +__static_renaming("__atol_1217", "atol"); +__static_renaming("__atoll_1219", "atoll"); +__static_renaming("__atoll_1220", "atoll"); +__static_renaming("__strtod_1223", "strtod"); +__static_renaming("__strtof_1226", "strtof"); +__static_renaming("__strtold_1229", "strtold"); +__static_renaming("__strtol_1233", "strtol"); +__static_renaming("__strtoul_1237", "strtoul"); +__static_renaming("__strtoq_1241", "strtoq"); +__static_renaming("__strtouq_1245", "strtouq"); +__static_renaming("__strtoll_1249", "strtoll"); +__static_renaming("__strtoll_1250", "strtoll"); +__static_renaming("__strtoull_1254", "strtoull"); +__static_renaming("__l64a_1259", "l64a"); +__static_renaming("__l64a_1260", "l64a"); +__static_renaming("__a64l_1262", "a64l"); +__static_renaming("__a64l_1263", "a64l"); +__static_renaming("____u_char_1264", "__u_char"); +__static_renaming("____u_short_1265", "__u_short"); +__static_renaming("____u_int_1266", "__u_int"); +__static_renaming("____u_long_1267", "__u_long"); +__static_renaming("____int8_t_1268", "__int8_t"); +__static_renaming("____uint8_t_1269", "__uint8_t"); +__static_renaming("____int16_t_1270", "__int16_t"); +__static_renaming("____uint16_t_1271", "__uint16_t"); +__static_renaming("____int32_t_1272", "__int32_t"); +__static_renaming("____uint32_t_1273", "__uint32_t"); +__static_renaming("____int64_t_1274", "__int64_t"); +__static_renaming("____uint64_t_1275", "__uint64_t"); +__static_renaming("____quad_t_1276", "__quad_t"); +__static_renaming("____u_quad_t_1277", "__u_quad_t"); +__static_renaming("____dev_t_1278", "__dev_t"); +__static_renaming("____uid_t_1279", "__uid_t"); +__static_renaming("____gid_t_1280", "__gid_t"); +__static_renaming("____ino_t_1281", "__ino_t"); +__static_renaming("____ino64_t_1282", "__ino64_t"); +__static_renaming("____mode_t_1283", "__mode_t"); +__static_renaming("____nlink_t_1284", "__nlink_t"); +__static_renaming("____off_t_1285", "__off_t"); +__static_renaming("____off64_t_1286", "__off64_t"); +__static_renaming("____pid_t_1287", "__pid_t"); +__static_renaming("____fsid_t_1291", "__fsid_t"); +__static_renaming("____clock_t_1292", "__clock_t"); +__static_renaming("____rlim_t_1293", "__rlim_t"); +__static_renaming("____rlim64_t_1294", "__rlim64_t"); +__static_renaming("____id_t_1295", "__id_t"); +__static_renaming("____time_t_1296", "__time_t"); +__static_renaming("____useconds_t_1297", "__useconds_t"); +__static_renaming("____suseconds_t_1298", "__suseconds_t"); +__static_renaming("____daddr_t_1299", "__daddr_t"); +__static_renaming("____key_t_1300", "__key_t"); +__static_renaming("____clockid_t_1301", "__clockid_t"); +__static_renaming("____timer_t_1302", "__timer_t"); +__static_renaming("____blksize_t_1303", "__blksize_t"); +__static_renaming("____blkcnt_t_1304", "__blkcnt_t"); +__static_renaming("____blkcnt64_t_1305", "__blkcnt64_t"); +__static_renaming("____fsblkcnt_t_1306", "__fsblkcnt_t"); +__static_renaming("____fsblkcnt64_t_1307", "__fsblkcnt64_t"); +__static_renaming("____fsfilcnt_t_1308", "__fsfilcnt_t"); +__static_renaming("____fsfilcnt64_t_1309", "__fsfilcnt64_t"); +__static_renaming("____fsword_t_1310", "__fsword_t"); +__static_renaming("____ssize_t_1311", "__ssize_t"); +__static_renaming("____syscall_slong_t_1312", "__syscall_slong_t"); +__static_renaming("____syscall_ulong_t_1313", "__syscall_ulong_t"); +__static_renaming("____loff_t_1314", "__loff_t"); +__static_renaming("____qaddr_t_1316", "__qaddr_t"); +__static_renaming("____caddr_t_1317", "__caddr_t"); +__static_renaming("____intptr_t_1318", "__intptr_t"); +__static_renaming("____socklen_t_1319", "__socklen_t"); +__static_renaming("__u_char_1320", "u_char"); +__static_renaming("__u_char_1321", "u_char"); +__static_renaming("__u_char_1322", "u_char"); +__static_renaming("__u_short_1323", "u_short"); +__static_renaming("__u_short_1324", "u_short"); +__static_renaming("__u_short_1325", "u_short"); +__static_renaming("__u_int_1326", "u_int"); +__static_renaming("__u_int_1327", "u_int"); +__static_renaming("__u_int_1328", "u_int"); +__static_renaming("__u_long_1329", "u_long"); +__static_renaming("__u_long_1330", "u_long"); +__static_renaming("__u_long_1331", "u_long"); +__static_renaming("__quad_t_1332", "quad_t"); +__static_renaming("__quad_t_1333", "quad_t"); +__static_renaming("__quad_t_1334", "quad_t"); +__static_renaming("__u_quad_t_1335", "u_quad_t"); +__static_renaming("__u_quad_t_1336", "u_quad_t"); +__static_renaming("__u_quad_t_1337", "u_quad_t"); +__static_renaming("__fsid_t_1338", "fsid_t"); +__static_renaming("__fsid_t_1339", "fsid_t"); +__static_renaming("__fsid_t_1340", "fsid_t"); +__static_renaming("__loff_t_1342", "loff_t"); +__static_renaming("__loff_t_1343", "loff_t"); +__static_renaming("__loff_t_1344", "loff_t"); +__static_renaming("__loff_t_1346", "loff_t"); +__static_renaming("__loff_t_1347", "loff_t"); +__static_renaming("__loff_t_1348", "loff_t"); +__static_renaming("__ino_t_1350", "ino_t"); +__static_renaming("__ino_t_1351", "ino_t"); +__static_renaming("__ino_t_1352", "ino_t"); +__static_renaming("__ino_t_1354", "ino_t"); +__static_renaming("__ino_t_1355", "ino_t"); +__static_renaming("__ino_t_1356", "ino_t"); +__static_renaming("__dev_t_1358", "dev_t"); +__static_renaming("__dev_t_1359", "dev_t"); +__static_renaming("__dev_t_1360", "dev_t"); +__static_renaming("__gid_t_1362", "gid_t"); +__static_renaming("__gid_t_1363", "gid_t"); +__static_renaming("__gid_t_1364", "gid_t"); +__static_renaming("__gid_t_1366", "gid_t"); +__static_renaming("__gid_t_1367", "gid_t"); +__static_renaming("__gid_t_1368", "gid_t"); +__static_renaming("__mode_t_1370", "mode_t"); +__static_renaming("__mode_t_1371", "mode_t"); +__static_renaming("__mode_t_1372", "mode_t"); +__static_renaming("__nlink_t_1374", "nlink_t"); +__static_renaming("__nlink_t_1375", "nlink_t"); +__static_renaming("__nlink_t_1376", "nlink_t"); +__static_renaming("__uid_t_1378", "uid_t"); +__static_renaming("__uid_t_1379", "uid_t"); +__static_renaming("__uid_t_1380", "uid_t"); +__static_renaming("__uid_t_1382", "uid_t"); +__static_renaming("__uid_t_1383", "uid_t"); +__static_renaming("__uid_t_1384", "uid_t"); +__static_renaming("__off_t_1386", "off_t"); +__static_renaming("__off_t_1387", "off_t"); +__static_renaming("__off_t_1389", "off_t"); +__static_renaming("__off_t_1390", "off_t"); +__static_renaming("__pid_t_1392", "pid_t"); +__static_renaming("__pid_t_1393", "pid_t"); +__static_renaming("__pid_t_1394", "pid_t"); +__static_renaming("__pid_t_1396", "pid_t"); +__static_renaming("__pid_t_1397", "pid_t"); +__static_renaming("__id_t_1399", "id_t"); +__static_renaming("__id_t_1400", "id_t"); +__static_renaming("__id_t_1401", "id_t"); +__static_renaming("__ssize_t_1403", "ssize_t"); +__static_renaming("__ssize_t_1404", "ssize_t"); +__static_renaming("__daddr_t_1406", "daddr_t"); +__static_renaming("__daddr_t_1407", "daddr_t"); +__static_renaming("__daddr_t_1408", "daddr_t"); +__static_renaming("__caddr_t_1410", "caddr_t"); +__static_renaming("__caddr_t_1411", "caddr_t"); +__static_renaming("__caddr_t_1412", "caddr_t"); +__static_renaming("__key_t_1413", "key_t"); +__static_renaming("__key_t_1414", "key_t"); +__static_renaming("__key_t_1415", "key_t"); +__static_renaming("__key_t_1417", "key_t"); +__static_renaming("__key_t_1418", "key_t"); +__static_renaming("__key_t_1419", "key_t"); +__static_renaming("__clock_t_1421", "clock_t"); +__static_renaming("__clock_t_1422", "clock_t"); +__static_renaming("__clock_t_1423", "clock_t"); +__static_renaming("__time_t_1425", "time_t"); +__static_renaming("__time_t_1426", "time_t"); +__static_renaming("__time_t_1427", "time_t"); +__static_renaming("__clockid_t_1429", "clockid_t"); +__static_renaming("__clockid_t_1430", "clockid_t"); +__static_renaming("__clockid_t_1431", "clockid_t"); +__static_renaming("__timer_t_1433", "timer_t"); +__static_renaming("__timer_t_1434", "timer_t"); +__static_renaming("__timer_t_1435", "timer_t"); +__static_renaming("__ulong_1437", "ulong"); +__static_renaming("__ulong_1438", "ulong"); +__static_renaming("__ulong_1439", "ulong"); +__static_renaming("__ushort_1440", "ushort"); +__static_renaming("__uint_1441", "uint"); +__static_renaming("__int8_t_1442", "int8_t"); +__static_renaming("__int16_t_1443", "int16_t"); +__static_renaming("__int32_t_1444", "int32_t"); +__static_renaming("__int64_t_1445", "int64_t"); +__static_renaming("__u_int8_t_1446", "u_int8_t"); +__static_renaming("__u_int16_t_1447", "u_int16_t"); +__static_renaming("__u_int32_t_1448", "u_int32_t"); +__static_renaming("__u_int64_t_1449", "u_int64_t"); +__static_renaming("__register_t_1450", "register_t"); +__static_renaming("____bswap_32_1452", "__bswap_32"); +__static_renaming("____bswap_64_1456", "__bswap_64"); +__static_renaming("____bswap_64_1457", "__bswap_64"); +__static_renaming("____sig_atomic_t_1460", "__sig_atomic_t"); +__static_renaming("____sigset_t_1464", "__sigset_t"); +__static_renaming("__sigset_t_1465", "sigset_t"); +__static_renaming("__suseconds_t_1486", "suseconds_t"); +__static_renaming("__suseconds_t_1487", "suseconds_t"); +__static_renaming("__suseconds_t_1488", "suseconds_t"); +__static_renaming("____fd_mask_1490", "__fd_mask"); +__static_renaming("____fd_mask_1491", "__fd_mask"); +__static_renaming("__fd_set_1499", "fd_set"); +__static_renaming("__fd_mask_1500", "fd_mask"); +__static_renaming("__fd_mask_1501", "fd_mask"); +__static_renaming("__select_1513", "select"); +__static_renaming("__select_1514", "select"); +__static_renaming("__pselect_1529", "pselect"); +__static_renaming("__pselect_1530", "pselect"); +__static_renaming("____fdelt_chk_1534", "__fdelt_chk"); +__static_renaming("____fdelt_warn_1536", "__fdelt_warn"); +__static_renaming("__gnu_dev_major_1538", "gnu_dev_major"); +__static_renaming("__gnu_dev_major_1539", "gnu_dev_major"); +__static_renaming("__gnu_dev_minor_1541", "gnu_dev_minor"); +__static_renaming("__gnu_dev_makedev_1544", "gnu_dev_makedev"); +__static_renaming("__blksize_t_1549", "blksize_t"); +__static_renaming("__blksize_t_1550", "blksize_t"); +__static_renaming("__blksize_t_1551", "blksize_t"); +__static_renaming("__blkcnt_t_1553", "blkcnt_t"); +__static_renaming("__blkcnt_t_1554", "blkcnt_t"); +__static_renaming("__blkcnt_t_1555", "blkcnt_t"); +__static_renaming("__fsblkcnt_t_1557", "fsblkcnt_t"); +__static_renaming("__fsblkcnt_t_1558", "fsblkcnt_t"); +__static_renaming("__fsblkcnt_t_1559", "fsblkcnt_t"); +__static_renaming("__blkcnt_t_1561", "blkcnt_t"); +__static_renaming("__blkcnt_t_1562", "blkcnt_t"); +__static_renaming("__blkcnt_t_1563", "blkcnt_t"); +__static_renaming("__fsblkcnt_t_1565", "fsblkcnt_t"); +__static_renaming("__fsblkcnt_t_1566", "fsblkcnt_t"); +__static_renaming("__fsblkcnt_t_1567", "fsblkcnt_t"); +__static_renaming("__fsfilcnt_t_1569", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_1570", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_1571", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_1573", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_1574", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_1575", "fsfilcnt_t"); +__static_renaming("__pthread_t_1577", "pthread_t"); +__static_renaming("__pthread_attr_t_1581", "pthread_attr_t"); +__static_renaming("____pthread_list_t_1586", "__pthread_list_t"); +__static_renaming("____pthread_list_t_1587", "__pthread_list_t"); +__static_renaming("__pthread_mutex_t_1603", "pthread_mutex_t"); +__static_renaming("__pthread_mutexattr_t_1608", "pthread_mutexattr_t"); +__static_renaming("__rand_1609", "rand"); +__static_renaming("__srand_1611", "srand"); +__static_renaming("__rand_r_1613", "rand_r"); +__static_renaming("__drand48_1614", "drand48"); +__static_renaming("__erand48_1616", "erand48"); +__static_renaming("__lrand48_1617", "lrand48"); +__static_renaming("__nrand48_1619", "nrand48"); +__static_renaming("__mrand48_1620", "mrand48"); +__static_renaming("__jrand48_1622", "jrand48"); +__static_renaming("__srand48_1624", "srand48"); +__static_renaming("__seed48_1626", "seed48"); +__static_renaming("__lcong48_1628", "lcong48"); +__static_renaming("__malloc_1631", "malloc"); +__static_renaming("__malloc_1632", "malloc"); +__static_renaming("__malloc_1633", "malloc"); +__static_renaming("__malloc_1634", "malloc"); +__static_renaming("__calloc_1639", "calloc"); +__static_renaming("__calloc_1640", "calloc"); +__static_renaming("__calloc_1641", "calloc"); +__static_renaming("__calloc_1642", "calloc"); +__static_renaming("__realloc_1646", "realloc"); +__static_renaming("__realloc_1647", "realloc"); +__static_renaming("__free_1649", "free"); +__static_renaming("__cfree_1651", "cfree"); +__static_renaming("__alloca_1654", "alloca"); +__static_renaming("__alloca_1655", "alloca"); +__static_renaming("__valloc_1658", "valloc"); +__static_renaming("__valloc_1659", "valloc"); +__static_renaming("__valloc_1660", "valloc"); +__static_renaming("__valloc_1661", "valloc"); +__static_renaming("__posix_memalign_1667", "posix_memalign"); +__static_renaming("__posix_memalign_1668", "posix_memalign"); +__static_renaming("__posix_memalign_1669", "posix_memalign"); +__static_renaming("__posix_memalign_1670", "posix_memalign"); +__static_renaming("__aligned_alloc_1675", "aligned_alloc"); +__static_renaming("__aligned_alloc_1676", "aligned_alloc"); +__static_renaming("__aligned_alloc_1677", "aligned_alloc"); +__static_renaming("__aligned_alloc_1678", "aligned_alloc"); +__static_renaming("__aligned_alloc_1679", "aligned_alloc"); +__static_renaming("__aligned_alloc_1680", "aligned_alloc"); +__static_renaming("__aligned_alloc_1681", "aligned_alloc"); +__static_renaming("__aligned_alloc_1682", "aligned_alloc"); +__static_renaming("__abort_1683", "abort"); +__static_renaming("__atexit_1685", "atexit"); +__static_renaming("__at_quick_exit_1687", "at_quick_exit"); +__static_renaming("__on_exit_1692", "on_exit"); +__static_renaming("__exit_1694", "exit"); +__static_renaming("__exit_1695", "exit"); +__static_renaming("__quick_exit_1697", "quick_exit"); +__static_renaming("___Exit_1699", "_Exit"); +__static_renaming("__getenv_1701", "getenv"); +__static_renaming("__getenv_1702", "getenv"); +__static_renaming("__putenv_1704", "putenv"); +__static_renaming("__setenv_1708", "setenv"); +__static_renaming("__unsetenv_1710", "unsetenv"); +__static_renaming("__clearenv_1711", "clearenv"); +__static_renaming("__mktemp_1713", "mktemp"); +__static_renaming("__mkstemp_1716", "mkstemp"); +__static_renaming("__mkstemp_1717", "mkstemp"); +__static_renaming("__mkstemp_1718", "mkstemp"); +__static_renaming("__mkstemp_1719", "mkstemp"); +__static_renaming("__mkstemps_1724", "mkstemps"); +__static_renaming("__mkstemps_1725", "mkstemps"); +__static_renaming("__mkstemps_1726", "mkstemps"); +__static_renaming("__mkstemps_1727", "mkstemps"); +__static_renaming("__mkdtemp_1729", "mkdtemp"); +__static_renaming("__mkdtemp_1730", "mkdtemp"); +__static_renaming("__system_1732", "system"); +__static_renaming("__system_1733", "system"); +__static_renaming("__system_1734", "system"); +__static_renaming("__system_1735", "system"); +__static_renaming("__realpath_1738", "realpath"); +__static_renaming("__realpath_1739", "realpath"); +__static_renaming("____compar_fn_t_1740", "__compar_fn_t"); +__static_renaming("__bsearch_1751", "bsearch"); +__static_renaming("__bsearch_1752", "bsearch"); +__static_renaming("__bsearch_1755", "bsearch"); +__static_renaming("__bsearch_1756", "bsearch"); +__static_renaming("____l_1765", "__l"); +__static_renaming("____l_1766", "__l"); +__static_renaming("____u_1767", "__u"); +__static_renaming("____u_1768", "__u"); +__static_renaming("____idx_1769", "__idx"); +__static_renaming("____idx_1770", "__idx"); +__static_renaming("____p_1771", "__p"); +__static_renaming("____comparison_1772", "__comparison"); +__static_renaming("__qsort_1784", "qsort"); +__static_renaming("__qsort_1786", "qsort"); +__static_renaming("__qsort_1788", "qsort"); +__static_renaming("__qsort_1790", "qsort"); +__static_renaming("__abs_1793", "abs"); +__static_renaming("__abs_1794", "abs"); +__static_renaming("__labs_1796", "labs"); +__static_renaming("__labs_1797", "labs"); +__static_renaming("__llabs_1799", "llabs"); +__static_renaming("__llabs_1800", "llabs"); +__static_renaming("__div_1803", "div"); +__static_renaming("__div_1804", "div"); +__static_renaming("__ldiv_1807", "ldiv"); +__static_renaming("__ldiv_1809", "ldiv"); +__static_renaming("__lldiv_1813", "lldiv"); +__static_renaming("__lldiv_1815", "lldiv"); +__static_renaming("__ecvt_1821", "ecvt"); +__static_renaming("__ecvt_1822", "ecvt"); +__static_renaming("__fcvt_1827", "fcvt"); +__static_renaming("__fcvt_1828", "fcvt"); +__static_renaming("__gcvt_1832", "gcvt"); +__static_renaming("__gcvt_1833", "gcvt"); +__static_renaming("__qecvt_1838", "qecvt"); +__static_renaming("__qecvt_1839", "qecvt"); +__static_renaming("__qfcvt_1844", "qfcvt"); +__static_renaming("__qfcvt_1845", "qfcvt"); +__static_renaming("__qgcvt_1849", "qgcvt"); +__static_renaming("__qgcvt_1850", "qgcvt"); +__static_renaming("__ecvt_r_1858", "ecvt_r"); +__static_renaming("__ecvt_r_1859", "ecvt_r"); +__static_renaming("__fcvt_r_1867", "fcvt_r"); +__static_renaming("__fcvt_r_1868", "fcvt_r"); +__static_renaming("__qecvt_r_1876", "qecvt_r"); +__static_renaming("__qecvt_r_1877", "qecvt_r"); +__static_renaming("__qfcvt_r_1885", "qfcvt_r"); +__static_renaming("__qfcvt_r_1886", "qfcvt_r"); +__static_renaming("__mblen_1890", "mblen"); +__static_renaming("__mblen_1891", "mblen"); +__static_renaming("__mblen_1892", "mblen"); +__static_renaming("__mblen_1893", "mblen"); +__static_renaming("__mbtowc_1898", "mbtowc"); +__static_renaming("__mbtowc_1899", "mbtowc"); +__static_renaming("__wctomb_1902", "wctomb"); +__static_renaming("__mbstowcs_1907", "mbstowcs"); +__static_renaming("__mbstowcs_1908", "mbstowcs"); +__static_renaming("__wcstombs_1913", "wcstombs"); +__static_renaming("__wcstombs_1914", "wcstombs"); +__static_renaming("__rpmatch_1916", "rpmatch"); +__static_renaming("__rpmatch_1917", "rpmatch"); +__static_renaming("__getsubopt_1921", "getsubopt"); +__static_renaming("__getsubopt_1922", "getsubopt"); +__static_renaming("__getloadavg_1925", "getloadavg"); +__static_renaming("____realpath_chk_1931", "__realpath_chk"); +__static_renaming("____realpath_chk_1932", "__realpath_chk"); +__static_renaming("____realpath_alias_1935", "__realpath_alias"); +__static_renaming("____realpath_chk_warn_1940", "__realpath_chk_warn"); +__static_renaming("____realpath_chk_warn_1941", "__realpath_chk_warn"); +__static_renaming("____ptsname_r_chk_1951", "__ptsname_r_chk"); +__static_renaming("____ptsname_r_chk_1952", "__ptsname_r_chk"); +__static_renaming("____ptsname_r_alias_1957", "__ptsname_r_alias"); +__static_renaming("____ptsname_r_alias_1958", "__ptsname_r_alias"); +__static_renaming("____ptsname_r_chk_warn_1965", "__ptsname_r_chk_warn"); +__static_renaming("____ptsname_r_chk_warn_1966", "__ptsname_r_chk_warn"); +__static_renaming("____wctomb_chk_1977", "__wctomb_chk"); +__static_renaming("____wctomb_chk_1978", "__wctomb_chk"); +__static_renaming("____wctomb_alias_1981", "__wctomb_alias"); +__static_renaming("____mbstowcs_chk_1990", "__mbstowcs_chk"); +__static_renaming("____mbstowcs_chk_1991", "__mbstowcs_chk"); +__static_renaming("____mbstowcs_alias_1996", "__mbstowcs_alias"); +__static_renaming("____mbstowcs_alias_1997", "__mbstowcs_alias"); +__static_renaming("____mbstowcs_chk_warn_2004", "__mbstowcs_chk_warn"); +__static_renaming("____mbstowcs_chk_warn_2005", "__mbstowcs_chk_warn"); +__static_renaming("____wcstombs_chk_2016", "__wcstombs_chk"); +__static_renaming("____wcstombs_chk_2017", "__wcstombs_chk"); +__static_renaming("____wcstombs_alias_2022", "__wcstombs_alias"); +__static_renaming("____wcstombs_alias_2023", "__wcstombs_alias"); +__static_renaming("____wcstombs_chk_warn_2030", "__wcstombs_chk_warn"); +__static_renaming("____wcstombs_chk_warn_2031", "__wcstombs_chk_warn"); +__static_renaming("__dbg_2036", "dbg"); +__static_renaming("__dbg_2037", "dbg"); +__static_renaming("__dbg_2038", "dbg"); +__static_renaming("__dbg_2039", "dbg"); +__static_renaming("__dbg_2042", "dbg"); +__static_renaming("__dbg_2043", "dbg"); +__static_renaming("__dbg_2044", "dbg"); +__static_renaming("__dbg_2045", "dbg"); +__static_renaming("__run_cgi_child_2048", "run_cgi_child"); +__static_renaming("__run_cgi_child_2049", "run_cgi_child"); +__static_renaming("__run_cgi_child_2050", "run_cgi_child"); +__static_renaming("__cgi_handler_2114", "cgi_handler"); +__static_renaming("__main_2117", "main"); __static_condition_renaming("__static_condition_default_53", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); __static_condition_renaming("__static_condition_default_76", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); @@ -593,184 +1194,372 @@ __static_condition_renaming("__static_condition_default_271", "!(defined __need_ __static_condition_renaming("__static_condition_default_274", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); __static_condition_renaming("__static_condition_default_275", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); __static_condition_renaming("__static_condition_default_278", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_280", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_282", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_285", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_288", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_291", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_298", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_300", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_302", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_304", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_311", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_315", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_319", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_321", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_329", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_331", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_337", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_339", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_341", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_343", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_348", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_355", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_360", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_372", "!(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_373", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_374", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_379", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_385", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_396", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_401", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_403", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_414", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_415", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_417", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_418", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_421", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_423", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_427", "!(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_434", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_435", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_436", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_438", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_439", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_440", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_445", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_447", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_453", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_460", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_461", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_462", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_463", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_465", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_466", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_467", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_468", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_473", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_474", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_476", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_477", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_483", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_484", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_488", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_492", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_498", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_503", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_511", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_513", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_518", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_525", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_531", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_532", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_533", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_534", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_540", "!(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_541", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_547", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_551", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_553", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_557", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_563", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_564", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_565", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_575", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_576", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_577", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_583", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_584", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_585", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_587", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_588", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_589", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_593", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_597", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_599", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_603", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_605", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_611", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_625", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_632", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_647", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_656", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_662", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_673", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_674", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_675", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_681", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_685", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_690", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_696", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_697", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_698", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_705", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_707", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_713", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_720", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_725", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_726", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_733", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_734", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_740", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_741", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_748", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_749", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_757", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_758", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_885", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_886", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_889", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_890", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_909", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_910", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_911", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_912", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_921", "!(defined __need___FILE) && !(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_923", "(defined __need___FILE) && !(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_925", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_927", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_944", "!(defined _FORTIFY_SOURCE) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_946", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_950", "!(defined _FORTIFY_SOURCE) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_952", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1005", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1101", "!(defined __need___FILE) && (defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2)"); -__static_condition_renaming("__static_condition_default_1102", "(defined __need___FILE) && (defined DEBUG_CGI) && (defined OS2)"); -__static_condition_renaming("__static_condition_default_1107", "!(defined __need___FILE) && (defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2)"); -__static_condition_renaming("__static_condition_default_1108", "(defined __need___FILE) && (defined DEBUG_CGI) && !(defined OS2)"); -__static_condition_renaming("__static_condition_default_1111", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1112", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2)"); -__static_condition_renaming("__static_condition_default_1113", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2)"); -__static_condition_renaming("__static_condition_default_1114", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2)"); -__static_condition_renaming("__static_condition_default_1115", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2)"); -__static_condition_renaming("__static_condition_default_1116", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined DEBUG_CGI) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined DEBUG_CGI) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined DEBUG_CGI) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined DEBUG_CGI) || (defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined DEBUG_CGI) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined DEBUG_CGI) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined DEBUG_CGI) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined DEBUG_CGI)"); -__static_condition_renaming("__static_condition_default_1117", "!(defined _FORTIFY_SOURCE) && !(defined __USE_EXTERN_INLINES) && (defined DEBUG_CGI) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __USE_EXTERN_INLINES) && (defined DEBUG_CGI) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __USE_EXTERN_INLINES) && (defined DEBUG_CGI) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __USE_EXTERN_INLINES) && (defined DEBUG_CGI)"); -__static_condition_renaming("__static_condition_default_1118", "!(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined DEBUG_CGI) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined DEBUG_CGI) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined DEBUG_CGI) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined DEBUG_CGI)"); -__static_condition_renaming("__static_condition_default_1119", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2)"); -__static_condition_renaming("__static_condition_default_1120", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2)"); -__static_condition_renaming("__static_condition_default_1121", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2)"); -__static_condition_renaming("__static_condition_default_1122", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2)"); -__static_condition_renaming("__static_condition_default_1123", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined DEBUG_CGI) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined DEBUG_CGI) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined DEBUG_CGI) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined DEBUG_CGI) || (defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined DEBUG_CGI) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined DEBUG_CGI) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined DEBUG_CGI) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined DEBUG_CGI)"); -__static_condition_renaming("__static_condition_default_1124", "!(defined _FORTIFY_SOURCE) && !(defined __USE_EXTERN_INLINES) && !(defined DEBUG_CGI) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __USE_EXTERN_INLINES) && !(defined DEBUG_CGI) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __USE_EXTERN_INLINES) && !(defined DEBUG_CGI) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __USE_EXTERN_INLINES) && !(defined DEBUG_CGI)"); -__static_condition_renaming("__static_condition_default_1125", "!(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined DEBUG_CGI) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined DEBUG_CGI) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined DEBUG_CGI) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined DEBUG_CGI)"); -__static_condition_renaming("__static_condition_default_1126", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1127", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2)"); -__static_condition_renaming("__static_condition_default_1128", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2)"); -__static_condition_renaming("__static_condition_default_1129", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2)"); -__static_condition_renaming("__static_condition_default_1130", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2)"); -__static_condition_renaming("__static_condition_default_1131", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined DEBUG_CGI) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined DEBUG_CGI)"); -__static_condition_renaming("__static_condition_default_1132", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __USE_EXTERN_INLINES) && (defined DEBUG_CGI)"); -__static_condition_renaming("__static_condition_default_1133", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined DEBUG_CGI)"); -__static_condition_renaming("__static_condition_default_1134", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2)"); -__static_condition_renaming("__static_condition_default_1135", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2)"); -__static_condition_renaming("__static_condition_default_1136", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2)"); -__static_condition_renaming("__static_condition_default_1137", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2)"); -__static_condition_renaming("__static_condition_default_1138", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined DEBUG_CGI) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined DEBUG_CGI)"); -__static_condition_renaming("__static_condition_default_1139", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __USE_EXTERN_INLINES) && !(defined DEBUG_CGI)"); -__static_condition_renaming("__static_condition_default_1140", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined DEBUG_CGI)"); -__static_condition_renaming("__static_condition_default_1143", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); - -if (__static_condition_default_1143) { +__static_condition_renaming("__static_condition_default_280", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); +__static_condition_renaming("__static_condition_default_282", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_284", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_286", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_288", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_290", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_293", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_296", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_299", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_311", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_313", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_315", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_317", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_331", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_333", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_337", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_341", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_345", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_347", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_355", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_357", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_363", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_365", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_367", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_369", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_373", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_375", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_380", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_382", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_386", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_388", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_393", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_395", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_402", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_408", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_412", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_417", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_419", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_431", "!(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_432", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_433", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_438", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_444", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_455", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_461", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_469", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_471", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_473", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_475", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_486", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_488", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_489", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_491", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_493", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_494", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_497", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_499", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_503", "!(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_510", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_511", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_512", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_514", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_515", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_516", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_521", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_523", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_529", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_536", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_537", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_538", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_539", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_541", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_542", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_543", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_544", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_549", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_550", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_552", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_553", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_559", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_560", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_564", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_568", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_573", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_578", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_583", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_585", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_590", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_597", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_602", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_608", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_613", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_619", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_621", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_623", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_625", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_632", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_633", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_634", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_636", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_637", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_638", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_645", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_646", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_647", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_649", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_650", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_651", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_657", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_658", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_659", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_661", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_662", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_663", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_668", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_670", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_677", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_683", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_684", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_685", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_686", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_692", "!(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_693", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_699", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_700", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_701", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_702", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_708", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_709", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_715", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_717", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_721", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_723", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_727", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_734", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_735", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_736", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_745", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_746", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_747", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_751", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_752", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_753", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_755", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_756", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_757", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_759", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_760", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_761", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_767", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_768", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_769", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_779", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_780", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_781", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_787", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_788", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_789", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_791", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_792", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_793", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_797", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_801", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_803", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_807", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_809", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_813", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_817", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_819", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_823", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_825", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_834", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_836", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_840", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_842", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_846", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_848", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_852", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_858", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_862", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_864", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_868", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_872", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_875", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_878", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_883", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_887", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_891", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_894", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_907", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_914", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_929", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_938", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_944", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_955", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_956", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_957", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_963", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_967", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_972", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_978", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_979", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_980", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_991", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_998", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1005", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1007", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1009", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1015", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1022", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1027", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1028", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1035", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1036", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1042", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1043", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1050", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1051", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1057", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1058", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1065", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1066", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1072", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1073", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1080", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1081", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1089", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_1090", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1091", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1152", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1159", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1164", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1165", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1315", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1341", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __u_char_defined)"); +__static_condition_renaming("__static_condition_default_1345", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __u_char_defined)"); +__static_condition_renaming("__static_condition_default_1349", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __u_char_defined)"); +__static_condition_renaming("__static_condition_default_1353", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined)"); +__static_condition_renaming("__static_condition_default_1357", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined)"); +__static_condition_renaming("__static_condition_default_1361", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_1365", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_1369", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_1373", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1377", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __nlink_t_defined)"); +__static_condition_renaming("__static_condition_default_1381", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __nlink_t_defined)"); +__static_condition_renaming("__static_condition_default_1385", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __nlink_t_defined)"); +__static_condition_renaming("__static_condition_default_1388", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1391", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1395", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && (defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1398", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1402", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __id_t_defined)"); +__static_condition_renaming("__static_condition_default_1405", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1409", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_1416", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_1420", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_1424", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __clock_t_defined)"); +__static_condition_renaming("__static_condition_default_1428", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __time_t_defined)"); +__static_condition_renaming("__static_condition_default_1432", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __clockid_t_defined)"); +__static_condition_renaming("__static_condition_default_1436", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timer_t_defined)"); +__static_condition_renaming("__static_condition_default_1453", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1458", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1459", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1475", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_1485", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_1489", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __suseconds_t_defined)"); +__static_condition_renaming("__static_condition_default_1498", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1515", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_1516", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_1531", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_1532", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_1552", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blksize_t_defined)"); +__static_condition_renaming("__static_condition_default_1556", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined)"); +__static_condition_renaming("__static_condition_default_1560", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1564", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined)"); +__static_condition_renaming("__static_condition_default_1568", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1572", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1576", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1749", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1750", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1753", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1754", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1773", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1774", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1775", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1776", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1785", "!(defined __need___FILE) && !(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1787", "(defined __need___FILE) && !(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1789", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1791", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1808", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1810", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1814", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1816", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1944", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_2040", "!(defined __need___FILE) && (defined __FILE_defined) && (defined DEBUG_CGI) && (defined OS2)"); +__static_condition_renaming("__static_condition_default_2041", "(defined __need___FILE) && (defined DEBUG_CGI) && (defined OS2)"); +__static_condition_renaming("__static_condition_default_2046", "!(defined __need___FILE) && (defined __FILE_defined) && (defined DEBUG_CGI) && !(defined OS2)"); +__static_condition_renaming("__static_condition_default_2047", "(defined __need___FILE) && (defined DEBUG_CGI) && !(defined OS2)"); +__static_condition_renaming("__static_condition_default_2051", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_2052", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2)"); +__static_condition_renaming("__static_condition_default_2053", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2)"); +__static_condition_renaming("__static_condition_default_2054", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2)"); +__static_condition_renaming("__static_condition_default_2055", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2)"); +__static_condition_renaming("__static_condition_default_2056", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) || (defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI)"); +__static_condition_renaming("__static_condition_default_2057", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI)"); +__static_condition_renaming("__static_condition_default_2058", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2)"); +__static_condition_renaming("__static_condition_default_2059", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2)"); +__static_condition_renaming("__static_condition_default_2060", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2)"); +__static_condition_renaming("__static_condition_default_2061", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2)"); +__static_condition_renaming("__static_condition_default_2062", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) || (defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI)"); +__static_condition_renaming("__static_condition_default_2063", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined DEBUG_CGI) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined DEBUG_CGI) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined DEBUG_CGI) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined DEBUG_CGI)"); +__static_condition_renaming("__static_condition_default_2064", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_2065", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2)"); +__static_condition_renaming("__static_condition_default_2066", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2)"); +__static_condition_renaming("__static_condition_default_2067", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2)"); +__static_condition_renaming("__static_condition_default_2068", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2)"); +__static_condition_renaming("__static_condition_default_2069", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI)"); +__static_condition_renaming("__static_condition_default_2070", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI)"); +__static_condition_renaming("__static_condition_default_2071", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2)"); +__static_condition_renaming("__static_condition_default_2072", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2)"); +__static_condition_renaming("__static_condition_default_2073", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2)"); +__static_condition_renaming("__static_condition_default_2074", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2)"); +__static_condition_renaming("__static_condition_default_2075", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined DEBUG_CGI)"); +__static_condition_renaming("__static_condition_default_2076", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined DEBUG_CGI)"); +__static_condition_renaming("__static_condition_default_2077", "!(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2078", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2)"); +__static_condition_renaming("__static_condition_default_2079", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2)"); +__static_condition_renaming("__static_condition_default_2080", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2)"); +__static_condition_renaming("__static_condition_default_2081", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2)"); +__static_condition_renaming("__static_condition_default_2082", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2)"); +__static_condition_renaming("__static_condition_default_2083", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2)"); +__static_condition_renaming("__static_condition_default_2084", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2)"); +__static_condition_renaming("__static_condition_default_2085", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2)"); +__static_condition_renaming("__static_condition_default_2086", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2)"); +__static_condition_renaming("__static_condition_default_2087", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2)"); +__static_condition_renaming("__static_condition_default_2088", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2)"); +__static_condition_renaming("__static_condition_default_2089", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2)"); +__static_condition_renaming("__static_condition_default_2090", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2)"); +__static_condition_renaming("__static_condition_default_2091", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2)"); +__static_condition_renaming("__static_condition_default_2092", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2)"); +__static_condition_renaming("__static_condition_default_2093", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2)"); +__static_condition_renaming("__static_condition_default_2094", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) || !(defined __need___FILE) && (defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) || (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) || (defined __need___FILE) && (defined _STDLIB_H) && (defined DEBUG_CGI)"); +__static_condition_renaming("__static_condition_default_2095", "!(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) || (defined _STDLIB_H) && (defined DEBUG_CGI)"); +__static_condition_renaming("__static_condition_default_2096", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2)"); +__static_condition_renaming("__static_condition_default_2097", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2)"); +__static_condition_renaming("__static_condition_default_2098", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2)"); +__static_condition_renaming("__static_condition_default_2099", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2)"); +__static_condition_renaming("__static_condition_default_2100", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2)"); +__static_condition_renaming("__static_condition_default_2101", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2)"); +__static_condition_renaming("__static_condition_default_2102", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2)"); +__static_condition_renaming("__static_condition_default_2103", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2)"); +__static_condition_renaming("__static_condition_default_2104", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2)"); +__static_condition_renaming("__static_condition_default_2105", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2)"); +__static_condition_renaming("__static_condition_default_2106", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2)"); +__static_condition_renaming("__static_condition_default_2107", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && (defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && (defined OS2)"); +__static_condition_renaming("__static_condition_default_2108", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2)"); +__static_condition_renaming("__static_condition_default_2109", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2)"); +__static_condition_renaming("__static_condition_default_2110", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2)"); +__static_condition_renaming("__static_condition_default_2111", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) && !(defined OS2) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) && !(defined OS2)"); +__static_condition_renaming("__static_condition_default_2112", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) || !(defined __need___FILE) && (defined __FILE_defined) && (defined _STDLIB_H) && (defined DEBUG_CGI) || (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined DEBUG_CGI) || (defined __need___FILE) && (defined _STDLIB_H) && (defined DEBUG_CGI)"); +__static_condition_renaming("__static_condition_default_2113", "!(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined DEBUG_CGI) || (defined _STDLIB_H) && !(defined DEBUG_CGI)"); +__static_condition_renaming("__static_condition_default_2115", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_2116", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_2118", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); + +if (__static_condition_default_2118) { __static_parse_error("Unable to parse"); } }; @@ -936,28 +1725,364 @@ typedef ____ssize_t_49 (____io_read_fn_181) (void * (____cookie_178), char * typedef ____ssize_t_49 (____io_write_fn_186) (void * (____cookie_183), const char * (____buf_184), __size_t_1 ____n_185);// L341:L342 typedef int (____io_seek_fn_192) (void * (____cookie_188), ____off64_t_24 * (____pos_189), int ____w_191);// L350 typedef int (____io_close_fn_195) (void * (____cookie_194));// L353 -typedef ___G_fpos_t_77 __fpos_t_279;// L110 -typedef ___G_fpos64_t_85 __fpos_t_281;// L112 -typedef long int __ptrdiff_t_755;// L143:L324 -typedef long unsigned int __size_t_756;// L177:L209 -typedef int __wchar_t_759;// L243:L321 -typedef int __wchar_t_760;// L243:L321 -struct ____anonymous_tag_761_762 { -int __quot_763;// L99 -int __rem_764;// L100 +typedef ____gnuc_va_list_86 __va_list_279;// L79 +typedef ____off_t_23 __off_t_281;// L90 +typedef ____off64_t_24 __off_t_283;// L92 +typedef ____ssize_t_49 __ssize_t_285;// L102 +typedef ___G_fpos_t_77 __fpos_t_287;// L110 +typedef ___G_fpos64_t_85 __fpos_t_289;// L112 +extern const char * const __sys_errlist_830[];// L27 +typedef long int __ptrdiff_t_1092;// L143:L324 +typedef long unsigned int __size_t_1093;// L177:L209 +typedef int __wchar_t_1094;// L243:L321 +enum ____anonymous_tag_1098_1099 { +__P_ALL_1095, +__P_PID_1096, +__P_PGID_1097, +}; +typedef enum ____anonymous_tag_1098_1099 __idtype_t_1100;// L50:L55 +typedef unsigned char ____u_char_1101;// L30 +typedef unsigned short int ____u_short_1102;// L31 +typedef unsigned int ____u_int_1103;// L32 +typedef unsigned long int ____u_long_1104;// L33 +typedef signed char ____int8_t_1105;// L36 +typedef unsigned char ____uint8_t_1106;// L37 +typedef signed short int ____int16_t_1107;// L38 +typedef unsigned short int ____uint16_t_1108;// L39 +typedef signed int ____int32_t_1109;// L40 +typedef unsigned int ____uint32_t_1110;// L41 +typedef signed long int ____int64_t_1111;// L43 +typedef unsigned long int ____uint64_t_1112;// L44 +typedef long int ____quad_t_1113;// L52 +typedef unsigned long int ____u_quad_t_1114;// L53 +typedef unsigned long int ____dev_t_1115;// L109:L124 +typedef unsigned int ____uid_t_1116;// L92:L125 +typedef unsigned int ____gid_t_1117;// L92:L126 +typedef unsigned long int ____ino_t_1118;// L94:L127 +typedef unsigned long int ____ino64_t_1119;// L109:L128 +typedef unsigned int ____mode_t_1120;// L92:L129 +typedef unsigned long int ____nlink_t_1121;// L94:L130 +typedef long int ____off_t_1122;// L93:L131 +typedef long int ____off64_t_1123;// L108:L132 +typedef int ____pid_t_1124;// L91:L133 +struct ____anonymous_tag_1125_1126 { +int ____val_1127[2];// L72 +}; +typedef struct ____anonymous_tag_1125_1126 ____fsid_t_1128;// L72:L134 +typedef long int ____clock_t_1129;// L93:L135 +typedef unsigned long int ____rlim_t_1130;// L94:L136 +typedef unsigned long int ____rlim64_t_1131;// L109:L137 +typedef unsigned int ____id_t_1132;// L92:L138 +typedef long int ____time_t_1133;// L93:L139 +typedef unsigned int ____useconds_t_1134;// L92:L140 +typedef long int ____suseconds_t_1135;// L93:L141 +typedef int ____daddr_t_1136;// L91:L143 +typedef int ____key_t_1137;// L91:L144 +typedef int ____clockid_t_1138;// L91:L147 +typedef void * (____timer_t_1139);// L70:L150 +typedef long int ____blksize_t_1140;// L93:L153 +typedef long int ____blkcnt_t_1141;// L93:L158 +typedef long int ____blkcnt64_t_1142;// L108:L159 +typedef unsigned long int ____fsblkcnt_t_1143;// L94:L162 +typedef unsigned long int ____fsblkcnt64_t_1144;// L109:L163 +typedef unsigned long int ____fsfilcnt_t_1145;// L94:L166 +typedef unsigned long int ____fsfilcnt64_t_1146;// L109:L167 +typedef long int ____fsword_t_1147;// L93:L170 +typedef long int ____ssize_t_1148;// L110:L172 +typedef long int ____syscall_slong_t_1149;// L93:L175 +typedef unsigned long int ____syscall_ulong_t_1150;// L94:L177 +typedef ____off64_t_1123 ____loff_t_1151;// L181 +typedef ____quad_t_1113 * (____qaddr_t_1153);// L182 +typedef char * (____caddr_t_1154);// L183 +typedef long int ____intptr_t_1155;// L110:L186 +typedef unsigned int ____socklen_t_1156;// L92:L189 +struct ____anonymous_tag_1166_1167 { +unsigned int ____w_termsig_1168 : 7;// L72 +unsigned int ____w_coredump_1169 : 1;// L73 +unsigned int ____w_retcode_1170 : 8;// L74 +unsigned int __anon_id_0_1171 : 16;// L75 +}; +struct ____anonymous_tag_1172_1173 { +unsigned int ____w_stopval_1174 : 8;// L87 +unsigned int ____w_stopsig_1175 : 8;// L88 +unsigned int __anon_id_1_1176 : 16;// L89 +}; +union __wait_1177 { +int __w_status_1178;// L68 +struct ____anonymous_tag_1166_1167 ____wait_terminated_1179;// L69 +struct ____anonymous_tag_1172_1173 ____wait_stopped_1180;// L84 +}; +union ____anonymous_tag_1181_1182 { +union __wait_1177 * (____uptr_1183);// L69 +int * (____iptr_1184);// L70 +}; +typedef union ____anonymous_tag_1181_1182 ____WAIT_STATUS_1185;// L67:L71 +struct ____anonymous_tag_1186_1187 { +int __quot_1188;// L99 +int __rem_1189;// L100 +}; +typedef struct ____anonymous_tag_1186_1187 __div_t_1190;// L97:L101 +struct ____anonymous_tag_1191_1192 { +long int __quot_1193;// L107 +long int __rem_1194;// L108 +}; +typedef struct ____anonymous_tag_1191_1192 __ldiv_t_1195;// L105:L109 +struct ____anonymous_tag_1196_1197 { +long long int __quot_1198;// L119 +long long int __rem_1199;// L120 +}; +typedef struct ____anonymous_tag_1196_1197 __lldiv_t_1200;// L117:L121 +typedef unsigned char ____u_char_1264;// L30 +typedef unsigned short int ____u_short_1265;// L31 +typedef unsigned int ____u_int_1266;// L32 +typedef unsigned long int ____u_long_1267;// L33 +typedef signed char ____int8_t_1268;// L36 +typedef unsigned char ____uint8_t_1269;// L37 +typedef signed short int ____int16_t_1270;// L38 +typedef unsigned short int ____uint16_t_1271;// L39 +typedef signed int ____int32_t_1272;// L40 +typedef unsigned int ____uint32_t_1273;// L41 +typedef signed long int ____int64_t_1274;// L43 +typedef unsigned long int ____uint64_t_1275;// L44 +typedef long int ____quad_t_1276;// L52 +typedef unsigned long int ____u_quad_t_1277;// L53 +typedef unsigned long int ____dev_t_1278;// L109:L124 +typedef unsigned int ____uid_t_1279;// L92:L125 +typedef unsigned int ____gid_t_1280;// L92:L126 +typedef unsigned long int ____ino_t_1281;// L94:L127 +typedef unsigned long int ____ino64_t_1282;// L109:L128 +typedef unsigned int ____mode_t_1283;// L92:L129 +typedef unsigned long int ____nlink_t_1284;// L94:L130 +typedef long int ____off_t_1285;// L93:L131 +typedef long int ____off64_t_1286;// L108:L132 +typedef int ____pid_t_1287;// L91:L133 +struct ____anonymous_tag_1288_1289 { +int ____val_1290[2];// L72 +}; +typedef struct ____anonymous_tag_1288_1289 ____fsid_t_1291;// L72:L134 +typedef long int ____clock_t_1292;// L93:L135 +typedef unsigned long int ____rlim_t_1293;// L94:L136 +typedef unsigned long int ____rlim64_t_1294;// L109:L137 +typedef unsigned int ____id_t_1295;// L92:L138 +typedef long int ____time_t_1296;// L93:L139 +typedef unsigned int ____useconds_t_1297;// L92:L140 +typedef long int ____suseconds_t_1298;// L93:L141 +typedef int ____daddr_t_1299;// L91:L143 +typedef int ____key_t_1300;// L91:L144 +typedef int ____clockid_t_1301;// L91:L147 +typedef void * (____timer_t_1302);// L70:L150 +typedef long int ____blksize_t_1303;// L93:L153 +typedef long int ____blkcnt_t_1304;// L93:L158 +typedef long int ____blkcnt64_t_1305;// L108:L159 +typedef unsigned long int ____fsblkcnt_t_1306;// L94:L162 +typedef unsigned long int ____fsblkcnt64_t_1307;// L109:L163 +typedef unsigned long int ____fsfilcnt_t_1308;// L94:L166 +typedef unsigned long int ____fsfilcnt64_t_1309;// L109:L167 +typedef long int ____fsword_t_1310;// L93:L170 +typedef long int ____ssize_t_1311;// L110:L172 +typedef long int ____syscall_slong_t_1312;// L93:L175 +typedef unsigned long int ____syscall_ulong_t_1313;// L94:L177 +typedef ____off64_t_1286 ____loff_t_1314;// L181 +typedef ____quad_t_1276 * (____qaddr_t_1316);// L182 +typedef char * (____caddr_t_1317);// L183 +typedef long int ____intptr_t_1318;// L110:L186 +typedef unsigned int ____socklen_t_1319;// L92:L189 +typedef ____u_char_2 __u_char_1320;// L33 +typedef ____u_char_1101 __u_char_1321;// L33 +typedef ____u_char_1264 __u_char_1322;// L33 +typedef ____u_short_3 __u_short_1323;// L34 +typedef ____u_short_1102 __u_short_1324;// L34 +typedef ____u_short_1265 __u_short_1325;// L34 +typedef ____u_int_4 __u_int_1326;// L35 +typedef ____u_int_1103 __u_int_1327;// L35 +typedef ____u_int_1266 __u_int_1328;// L35 +typedef ____u_long_5 __u_long_1329;// L36 +typedef ____u_long_1104 __u_long_1330;// L36 +typedef ____u_long_1267 __u_long_1331;// L36 +typedef ____quad_t_14 __quad_t_1332;// L37 +typedef ____quad_t_1113 __quad_t_1333;// L37 +typedef ____quad_t_1276 __quad_t_1334;// L37 +typedef ____u_quad_t_15 __u_quad_t_1335;// L38 +typedef ____u_quad_t_1114 __u_quad_t_1336;// L38 +typedef ____u_quad_t_1277 __u_quad_t_1337;// L38 +typedef ____fsid_t_29 __fsid_t_1338;// L39 +typedef ____fsid_t_1128 __fsid_t_1339;// L39 +typedef ____fsid_t_1291 __fsid_t_1340;// L39 +typedef ____loff_t_52 __loff_t_1342;// L44 +typedef ____loff_t_1151 __loff_t_1343;// L44 +typedef ____loff_t_1314 __loff_t_1344;// L44 +typedef ____loff_t_52 __loff_t_1346;// L44 +typedef ____loff_t_1151 __loff_t_1347;// L44 +typedef ____loff_t_1314 __loff_t_1348;// L44 +typedef ____ino64_t_20 __ino_t_1350;// L50 +typedef ____ino64_t_1119 __ino_t_1351;// L50 +typedef ____ino64_t_1282 __ino_t_1352;// L50 +typedef ____ino_t_19 __ino_t_1354;// L48 +typedef ____ino_t_1118 __ino_t_1355;// L48 +typedef ____ino_t_1281 __ino_t_1356;// L48 +typedef ____dev_t_16 __dev_t_1358;// L60 +typedef ____dev_t_1115 __dev_t_1359;// L60 +typedef ____dev_t_1278 __dev_t_1360;// L60 +typedef ____gid_t_18 __gid_t_1362;// L65 +typedef ____gid_t_1117 __gid_t_1363;// L65 +typedef ____gid_t_1280 __gid_t_1364;// L65 +typedef ____gid_t_18 __gid_t_1366;// L65 +typedef ____gid_t_1117 __gid_t_1367;// L65 +typedef ____gid_t_1280 __gid_t_1368;// L65 +typedef ____mode_t_21 __mode_t_1370;// L70 +typedef ____mode_t_1120 __mode_t_1371;// L70 +typedef ____mode_t_1283 __mode_t_1372;// L70 +typedef ____nlink_t_22 __nlink_t_1374;// L75 +typedef ____nlink_t_1121 __nlink_t_1375;// L75 +typedef ____nlink_t_1284 __nlink_t_1376;// L75 +typedef ____uid_t_17 __uid_t_1378;// L80 +typedef ____uid_t_1116 __uid_t_1379;// L80 +typedef ____uid_t_1279 __uid_t_1380;// L80 +typedef ____uid_t_17 __uid_t_1382;// L80 +typedef ____uid_t_1116 __uid_t_1383;// L80 +typedef ____uid_t_1279 __uid_t_1384;// L80 +typedef ____off64_t_1123 __off_t_1386;// L88 +typedef ____off64_t_1286 __off_t_1387;// L88 +typedef ____off_t_1122 __off_t_1389;// L86 +typedef ____off_t_1285 __off_t_1390;// L86 +typedef ____pid_t_25 __pid_t_1392;// L98 +typedef ____pid_t_1124 __pid_t_1393;// L98 +typedef ____pid_t_1287 __pid_t_1394;// L98 +typedef ____pid_t_1124 __pid_t_1396;// L98 +typedef ____pid_t_1287 __pid_t_1397;// L98 +typedef ____id_t_33 __id_t_1399;// L104 +typedef ____id_t_1132 __id_t_1400;// L104 +typedef ____id_t_1295 __id_t_1401;// L104 +typedef ____ssize_t_1148 __ssize_t_1403;// L109 +typedef ____ssize_t_1311 __ssize_t_1404;// L109 +typedef ____daddr_t_37 __daddr_t_1406;// L115 +typedef ____daddr_t_1136 __daddr_t_1407;// L115 +typedef ____daddr_t_1299 __daddr_t_1408;// L115 +typedef ____caddr_t_55 __caddr_t_1410;// L116 +typedef ____caddr_t_1154 __caddr_t_1411;// L116 +typedef ____caddr_t_1317 __caddr_t_1412;// L116 +typedef ____key_t_38 __key_t_1413;// L122 +typedef ____key_t_1137 __key_t_1414;// L122 +typedef ____key_t_1300 __key_t_1415;// L122 +typedef ____key_t_38 __key_t_1417;// L122 +typedef ____key_t_1137 __key_t_1418;// L122 +typedef ____key_t_1300 __key_t_1419;// L122 +typedef ____clock_t_30 __clock_t_1421;// L59 +typedef ____clock_t_1129 __clock_t_1422;// L59 +typedef ____clock_t_1292 __clock_t_1423;// L59 +typedef ____time_t_34 __time_t_1425;// L75 +typedef ____time_t_1133 __time_t_1426;// L75 +typedef ____time_t_1296 __time_t_1427;// L75 +typedef ____clockid_t_39 __clockid_t_1429;// L91 +typedef ____clockid_t_1138 __clockid_t_1430;// L91 +typedef ____clockid_t_1301 __clockid_t_1431;// L91 +typedef ____timer_t_40 __timer_t_1433;// L103 +typedef ____timer_t_1139 __timer_t_1434;// L103 +typedef ____timer_t_1302 __timer_t_1435;// L103 +typedef unsigned long int __ulong_1437;// L150 +typedef unsigned long int __ulong_1438;// L150 +typedef unsigned long int __ulong_1439;// L150 +typedef unsigned short int __ushort_1440;// L151 +typedef unsigned int __uint_1441;// L152 +typedef int __int8_t_1442;// L188:L194 +typedef int __int16_t_1443;// L188:L195 +typedef int __int32_t_1444;// L188:L196 +typedef int __int64_t_1445;// L188:L197 +typedef unsigned int __u_int8_t_1446;// L190:L200 +typedef unsigned int __u_int16_t_1447;// L190:L201 +typedef unsigned int __u_int32_t_1448;// L190:L202 +typedef unsigned int __u_int64_t_1449;// L190:L203 +typedef int __register_t_1450;// L205 +typedef int ____sig_atomic_t_1460;// L22 +struct ____anonymous_tag_1461_1462 { +unsigned long int ____val_1463[( 1024 / ( 8 * sizeof(unsigned long) ) )];// L29 +}; +typedef struct ____anonymous_tag_1461_1462 ____sigset_t_1464;// L27:L30 +typedef ____sigset_t_1464 __sigset_t_1465;// L37 +struct __timespec_1466 { +____time_t_34 __tv_sec_1467;// L0 +____time_t_1133 __tv_sec_1468;// L0 +____time_t_1296 __tv_sec_1469;// L0 +____syscall_slong_t_50 __tv_nsec_1471;// L0 +____syscall_slong_t_1149 __tv_nsec_1472;// L0 +____syscall_slong_t_1312 __tv_nsec_1473;// L0 +}; +struct __timeval_1476 { +____time_t_34 __tv_sec_1477;// L0 +____time_t_1133 __tv_sec_1478;// L0 +____time_t_1296 __tv_sec_1479;// L0 +____suseconds_t_36 __tv_usec_1481;// L0 +____suseconds_t_1135 __tv_usec_1482;// L0 +____suseconds_t_1298 __tv_usec_1483;// L0 +}; +typedef ____suseconds_t_36 __suseconds_t_1486;// L48 +typedef ____suseconds_t_1135 __suseconds_t_1487;// L48 +typedef ____suseconds_t_1298 __suseconds_t_1488;// L48 +typedef long int ____fd_mask_1490;// L54 +typedef long int ____fd_mask_1491;// L54 +struct ____anonymous_tag_1492_1493 { +____fd_mask_1490 ____fds_bits_1494[1024 / ( 8 * ( int ) sizeof(long) )];// L0 +____fd_mask_1491 ____fds_bits_1496[1024 / ( 8 * ( int ) sizeof(long) )];// L0 +}; +typedef struct ____anonymous_tag_1492_1493 __fd_set_1499;// L64:L75 +typedef ____fd_mask_1490 __fd_mask_1500;// L82 +typedef ____fd_mask_1491 __fd_mask_1501;// L82 +typedef ____blksize_t_41 __blksize_t_1549;// L228 +typedef ____blksize_t_1140 __blksize_t_1550;// L228 +typedef ____blksize_t_1303 __blksize_t_1551;// L228 +typedef ____blkcnt_t_42 __blkcnt_t_1553;// L235 +typedef ____blkcnt_t_1141 __blkcnt_t_1554;// L235 +typedef ____blkcnt_t_1304 __blkcnt_t_1555;// L235 +typedef ____fsblkcnt_t_44 __fsblkcnt_t_1557;// L239 +typedef ____fsblkcnt_t_1143 __fsblkcnt_t_1558;// L239 +typedef ____fsblkcnt_t_1306 __fsblkcnt_t_1559;// L239 +typedef ____blkcnt64_t_43 __blkcnt_t_1561;// L248 +typedef ____blkcnt64_t_1142 __blkcnt_t_1562;// L248 +typedef ____blkcnt64_t_1305 __blkcnt_t_1563;// L248 +typedef ____fsblkcnt64_t_45 __fsblkcnt_t_1565;// L252 +typedef ____fsblkcnt64_t_1144 __fsblkcnt_t_1566;// L252 +typedef ____fsblkcnt64_t_1307 __fsblkcnt_t_1567;// L252 +typedef ____fsfilcnt_t_46 __fsfilcnt_t_1569;// L243 +typedef ____fsfilcnt_t_1145 __fsfilcnt_t_1570;// L243 +typedef ____fsfilcnt_t_1308 __fsfilcnt_t_1571;// L243 +typedef ____fsfilcnt64_t_47 __fsfilcnt_t_1573;// L256 +typedef ____fsfilcnt64_t_1146 __fsfilcnt_t_1574;// L256 +typedef ____fsfilcnt64_t_1309 __fsfilcnt_t_1575;// L256 +typedef unsigned long int __pthread_t_1577;// L60 +union __pthread_attr_t_1578 { +char ____size_1579[56];// L65 +long int ____align_1580;// L66 }; -typedef struct ____anonymous_tag_761_762 __div_t_765;// L97:L101 -struct ____anonymous_tag_766_767 { -long int __quot_768;// L107 -long int __rem_769;// L108 +typedef union __pthread_attr_t_1578 __pthread_attr_t_1581;// L69 +struct ____pthread_internal_list_1583 { +struct __forward_tag_reference_1582 * (____prev_1584);// L0 +struct __forward_tag_reference_1582 * (____next_1585);// L0 }; -typedef struct ____anonymous_tag_766_767 __ldiv_t_770;// L105:L109 -struct ____anonymous_tag_771_772 { -long long int __quot_773;// L119 -long long int __rem_774;// L120 +typedef struct ____pthread_internal_list_1583 ____pthread_list_t_1586;// L75:L79 +typedef struct ____pthread_internal_list_1583 ____pthread_list_t_1587;// L75:L79 +struct ____pthread_mutex_s_1588 { +int ____lock_1589;// L94 +unsigned int ____count_1590;// L95 +int ____owner_1591;// L96 +unsigned int ____nusers_1592;// L98 +int ____kind_1593;// L102 +short ____spins_1594;// L104 +short ____elision_1595;// L105 +____pthread_list_t_1586 ____list_1596;// L0 +____pthread_list_t_1587 ____list_1597;// L0 }; -typedef struct ____anonymous_tag_771_772 __lldiv_t_775;// L117:L121 -typedef int (* (____compar_fn_t_876)) (const void *, const void *);// L741 +union ____anonymous_tag_1598_1599 { +struct ____pthread_mutex_s_1588 ____data_1600;// L92 +char ____size_1601[40];// L126 +long int ____align_1602;// L127 +}; +typedef union ____anonymous_tag_1598_1599 __pthread_mutex_t_1603;// L90:L128 +union ____anonymous_tag_1604_1605 { +char ____size_1606[4];// L132 +int ____align_1607;// L133 +}; +typedef union ____anonymous_tag_1604_1605 __pthread_mutexattr_t_1608;// L130:L134 +typedef int (* (____compar_fn_t_1740)) (const void *, const void *);// L741 struct __forward_tag_reference_89 { // generated union of struct variations union { @@ -965,6 +2090,11 @@ struct ___IO_marker_90 ___IO_marker_90; }; }; +struct __forward_tag_reference_1582 { // generated union of struct variations +union { +}; +}; + struct __forward_tag_reference_58 { // generated union of struct variations union { struct ___IO_FILE_99 ___IO_FILE_99; @@ -1105,416 +2235,914 @@ extern void (___IO_free_backup_area_276) (___IO_FILE_171 *);// L469 extern void (___IO_free_backup_area_277) (___IO_FILE_172 *);// L469 // typedef moved to top of scope // typedef moved to top of scope -extern struct ___IO_FILE_99 * (__stdin_283);// L168 -extern struct ___IO_FILE_124 * (__stdin_284);// L168 -extern struct ___IO_FILE_99 * (__stdout_286);// L169 -extern struct ___IO_FILE_124 * (__stdout_287);// L169 -extern struct ___IO_FILE_99 * (__stderr_289);// L170 -extern struct ___IO_FILE_124 * (__stderr_290);// L170 -extern int (__remove_293) (const char * (____filename_292));// L178 -extern int (__rename_296) (const char * (____old_294), const char * (____new_295));// L180 -extern __FILE_59 * ((__tmpfile_297) (void ));// L195 -extern __FILE_59 * ((__tmpfile_303) (void ));// L198 -extern __FILE_59 * ((__tmpfile_301) (void ));// L195 -extern __FILE_59 * ((__tmpfile_299) (void ));// L198 -extern char * ((__tmpnam_306) (char * (____s_305)));// L209 -extern char * ((__tmpnam_307) (char * (____s_305)));// L209 -extern int (__fclose_310) (__FILE_59 * (____stream_308));// L237 -extern int (__fflush_314) (__FILE_59 * (____stream_312));// L242 -extern __FILE_59 * ((__fopen_318) (const char * __restrict ____filename_316, const char * __restrict ____modes_317));// L272:L273 -extern __FILE_59 * ((__fopen_320) (const char * __restrict ____filename_316, const char * __restrict ____modes_317));// L272:L273 -extern __FILE_59 * ((__fopen_328) (const char * __restrict ____filename_326, const char * __restrict ____modes_327));// L283:L285 -extern __FILE_59 * ((__fopen_330) (const char * __restrict ____filename_326, const char * __restrict ____modes_327));// L283:L285 -extern __FILE_59 * ((__freopen_336) (const char * __restrict ____filename_322, const char * __restrict ____modes_323, __FILE_59 * __restrict ____stream_324));// L278:L280 -extern __FILE_59 * ((__freopen_342) (const char * __restrict ____filename_332, const char * __restrict ____modes_333, __FILE_59 * __restrict ____stream_334));// L286:L289 -extern __FILE_59 * ((__freopen_340) (const char * __restrict ____filename_322, const char * __restrict ____modes_323, __FILE_59 * __restrict ____stream_324));// L278:L280 -extern __FILE_59 * ((__freopen_338) (const char * __restrict ____filename_332, const char * __restrict ____modes_333, __FILE_59 * __restrict ____stream_334));// L286:L289 -extern void (__setbuf_347) (__FILE_59 * __restrict ____stream_344, char * __restrict ____buf_346);// L332 -extern int (__setvbuf_354) (__FILE_59 * __restrict ____stream_349, char * __restrict ____buf_351, int ____modes_352, __size_t_1 ____n_353);// L336:L337 -extern int (__fprintf_359) (__FILE_59 * __restrict ____stream_356, const char * __restrict ____format_358, ... );// L356:L357 -extern int (__printf_362) (const char * __restrict ____format_361, ... );// L362 -extern int (__sprintf_365) (char * __restrict ____s_363, const char * __restrict ____format_364, ... );// L364:L365 -extern int (__vfprintf_371) (__FILE_59 * __restrict ____s_366, const char * __restrict ____format_368, ____gnuc_va_list_86 ____arg_369);// L371:L372 -extern int (__vprintf_378) (const char * __restrict ____format_375, ____gnuc_va_list_86 ____arg_376);// L377 -extern int (__vsprintf_384) (char * __restrict ____s_380, const char * __restrict ____format_381, ____gnuc_va_list_86 ____arg_382);// L379:L380 -extern int (__snprintf_389) (char * __restrict ____s_386, __size_t_1 ____maxlen_387, const char * __restrict ____format_388, ... );// L386:L388 -extern int (__vsnprintf_395) (char * __restrict ____s_390, __size_t_1 ____maxlen_391, const char * __restrict ____format_392, ____gnuc_va_list_86 ____arg_393);// L390:L392 -extern int (__fscanf_400) (__FILE_59 * __restrict ____stream_397, const char * __restrict ____format_399, ... );// L425:L426 -extern int (__fscanf_402) (__FILE_59 * __restrict ____stream_397, const char * __restrict ____format_399, ... );// L425:L426 -extern int (__scanf_405) (const char * __restrict ____format_404, ... );// L431 -extern int (__scanf_406) (const char * __restrict ____format_404, ... );// L431 -extern int (__sscanf_409) (const char * __restrict ____s_407, const char * __restrict ____format_408, ... );// L433:L434 - - - - - -extern int (__vfscanf_433) (__FILE_59 * __restrict ____s_428, const char * __restrict ____format_430, ____gnuc_va_list_86 ____arg_431);// L471:L473 -extern int (__vfscanf_437) (__FILE_59 * __restrict ____s_428, const char * __restrict ____format_430, ____gnuc_va_list_86 ____arg_431);// L471:L473 -extern int (__vscanf_444) (const char * __restrict ____format_441, ____gnuc_va_list_86 ____arg_442);// L479:L480 -extern int (__vscanf_446) (const char * __restrict ____format_441, ____gnuc_va_list_86 ____arg_442);// L479:L480 -extern int (__vsscanf_452) (const char * __restrict ____s_448, const char * __restrict ____format_449, ____gnuc_va_list_86 ____arg_450);// L483:L485 - - - - - -extern int (__fgetc_487) (__FILE_59 * (____stream_485));// L531 -extern int (__getc_491) (__FILE_59 * (____stream_489));// L532 -extern int (__getchar_493) (void );// L538 -extern int (__fputc_497) (int ____c_494, __FILE_59 * (____stream_495));// L573 -extern int (__putc_502) (int ____c_499, __FILE_59 * (____stream_500));// L574 -extern int (__putchar_505) (int ____c_504);// L580 -extern char * ((__fgets_510) (char * __restrict ____s_506, int ____n_507, __FILE_59 * __restrict ____stream_508));// L622:L623 -extern char * ((__fgets_512) (char * __restrict ____s_506, int ____n_507, __FILE_59 * __restrict ____stream_508));// L622:L623 -extern int (__fputs_517) (const char * __restrict ____s_514, __FILE_59 * __restrict ____stream_515);// L689 -extern int (__puts_520) (const char * (____s_519));// L695 -extern int (__ungetc_524) (int ____c_521, __FILE_59 * (____stream_522));// L702 -extern int (__fseek_546) (__FILE_59 * (____stream_542), long int ____off_544, int ____whence_545);// L749 -extern long int (__ftell_550) (__FILE_59 * (____stream_548));// L754 -extern long int (__ftell_552) (__FILE_59 * (____stream_548));// L754 -extern void (__rewind_556) (__FILE_59 * (____stream_554));// L759 -extern int (__fgetpos_562) (__FILE_59 * __restrict ____stream_558, __fpos_t_279 * __restrict ____pos_560);// L798 -extern int (__fgetpos_574) (__FILE_59 * __restrict ____stream_570, __fpos_t_281 * __restrict ____pos_572);// L806:L807 -extern int (__fsetpos_582) (__FILE_59 * (____stream_566), const __fpos_t_279 * (____pos_568));// L803 -extern int (__fsetpos_586) (__FILE_59 * (____stream_578), const __fpos_t_281 * (____pos_580));// L808:L809 -extern void (__clearerr_592) (__FILE_59 * (____stream_590));// L826 -extern int (__feof_596) (__FILE_59 * (____stream_594));// L828 -extern int (__feof_598) (__FILE_59 * (____stream_594));// L828 -extern int (__ferror_602) (__FILE_59 * (____stream_600));// L830 -extern int (__ferror_604) (__FILE_59 * (____stream_600));// L830 -extern void (__perror_607) (const char * (____s_606));// L846 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern struct ___IO_FILE_99 * (__stdin_291);// L168 +extern struct ___IO_FILE_124 * (__stdin_292);// L168 +extern struct ___IO_FILE_99 * (__stdout_294);// L169 +extern struct ___IO_FILE_124 * (__stdout_295);// L169 +extern struct ___IO_FILE_99 * (__stderr_297);// L170 +extern struct ___IO_FILE_124 * (__stderr_298);// L170 +extern int (__remove_301) (const char * (____filename_300));// L178 +extern int (__rename_304) (const char * (____old_302), const char * (____new_303));// L180 +extern int (__renameat_309) (int ____oldfd_305, const char * (____old_306), int ____newfd_307, const char * (____new_308));// L185:L186 +extern __FILE_59 * ((__tmpfile_310) (void ));// L195 +extern __FILE_59 * ((__tmpfile_316) (void ));// L198 +extern __FILE_59 * ((__tmpfile_314) (void ));// L195 +extern __FILE_59 * ((__tmpfile_312) (void ));// L198 +extern char * ((__tmpnam_319) (char * (____s_318)));// L209 +extern char * ((__tmpnam_320) (char * (____s_318)));// L209 +extern char * ((__tmpnam_r_322) (char * (____s_321)));// L215 +extern char * ((__tmpnam_r_323) (char * (____s_321)));// L215 +extern char * ((__tempnam_326) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 +extern char * ((__tempnam_327) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 +extern int (__fclose_330) (__FILE_59 * (____stream_328));// L237 +extern int (__fclose_332) (__FILE_59 * (____stream_328));// L237 +extern int (__fflush_336) (__FILE_59 * (____stream_334));// L242 +extern int (__fflush_unlocked_340) (__FILE_59 * (____stream_338));// L252 +extern __FILE_59 * ((__fopen_344) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 +extern __FILE_59 * ((__fopen_346) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 +extern __FILE_59 * ((__fopen_354) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 +extern __FILE_59 * ((__fopen_356) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 +extern __FILE_59 * ((__freopen_362) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 +extern __FILE_59 * ((__freopen_368) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 +extern __FILE_59 * ((__freopen_366) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 +extern __FILE_59 * ((__freopen_364) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 +extern __FILE_59 * ((__fdopen_372) (int ____fd_370, const char * (____modes_371)));// L306 +extern __FILE_59 * ((__fdopen_374) (int ____fd_370, const char * (____modes_371)));// L306 +extern __FILE_59 * ((__fmemopen_379) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 +extern __FILE_59 * ((__fmemopen_381) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 +extern __FILE_59 * ((__open_memstream_385) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 +extern __FILE_59 * ((__open_memstream_387) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 +extern void (__setbuf_392) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 +extern void (__setbuf_394) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 +extern int (__setvbuf_401) (__FILE_59 * __restrict ____stream_396, char * __restrict ____buf_398, int ____modes_399, __size_t_1 ____n_400);// L336:L337 +extern void (__setbuffer_407) (__FILE_59 * __restrict ____stream_403, char * __restrict ____buf_405, __size_t_1 ____size_406);// L343:L344 +extern void (__setlinebuf_411) (__FILE_59 * (____stream_409));// L347 +extern int (__fprintf_416) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 +extern int (__fprintf_418) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 +extern int (__printf_421) (const char * __restrict ____format_420, ... );// L362 +extern int (__sprintf_424) (char * __restrict ____s_422, const char * __restrict ____format_423, ... );// L364:L365 +extern int (__vfprintf_430) (__FILE_59 * __restrict ____s_425, const char * __restrict ____format_427, ____gnuc_va_list_86 ____arg_428);// L371:L372 +extern int (__vprintf_437) (const char * __restrict ____format_434, ____gnuc_va_list_86 ____arg_435);// L377 +extern int (__vsprintf_443) (char * __restrict ____s_439, const char * __restrict ____format_440, ____gnuc_va_list_86 ____arg_441);// L379:L380 +extern int (__snprintf_448) (char * __restrict ____s_445, __size_t_1 ____maxlen_446, const char * __restrict ____format_447, ... );// L386:L388 +extern int (__vsnprintf_454) (char * __restrict ____s_449, __size_t_1 ____maxlen_450, const char * __restrict ____format_451, ____gnuc_va_list_86 ____arg_452);// L390:L392 +extern int (__vdprintf_460) (int ____fd_456, const char * __restrict ____fmt_457, ____gnuc_va_list_86 ____arg_458);// L412:L414 +extern int (__dprintf_464) (int ____fd_462, const char * __restrict ____fmt_463, ... );// L415:L416 +extern int (__fscanf_468) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_470) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_472) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_474) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__scanf_477) (const char * __restrict ____format_476, ... );// L431 +extern int (__scanf_478) (const char * __restrict ____format_476, ... );// L431 +extern int (__sscanf_481) (const char * __restrict ____s_479, const char * __restrict ____format_480, ... );// L433:L434 + + + + + + + +extern int (__vfscanf_509) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 +extern int (__vfscanf_513) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 +extern int (__vscanf_520) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 +extern int (__vscanf_522) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 +extern int (__vsscanf_528) (const char * __restrict ____s_524, const char * __restrict ____format_525, ____gnuc_va_list_86 ____arg_526);// L483:L485 + + + + + +extern int (__fgetc_563) (__FILE_59 * (____stream_561));// L531 +extern int (__getc_567) (__FILE_59 * (____stream_565));// L532 +extern int (__getchar_569) (void );// L538 +extern int (__getc_unlocked_572) (__FILE_59 * (____stream_570));// L550 +extern int (__getchar_unlocked_574) (void );// L551 +extern int (__fgetc_unlocked_577) (__FILE_59 * (____stream_575));// L561 +extern int (__fputc_582) (int ____c_579, __FILE_59 * (____stream_580));// L573 +extern int (__fputc_584) (int ____c_579, __FILE_59 * (____stream_580));// L573 +extern int (__putc_589) (int ____c_586, __FILE_59 * (____stream_587));// L574 +extern int (__putchar_592) (int ____c_591);// L580 +extern int (__fputc_unlocked_596) (int ____c_593, __FILE_59 * (____stream_594));// L594 +extern int (__putc_unlocked_601) (int ____c_598, __FILE_59 * (____stream_599));// L602 +extern int (__putchar_unlocked_604) (int ____c_603);// L603 +extern int (__getw_607) (__FILE_59 * (____stream_605));// L610 +extern int (__putw_612) (int ____w_609, __FILE_59 * (____stream_610));// L613 +extern char * ((__fgets_618) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_620) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_622) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_624) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern ____ssize_t_49 (____getdelim_631) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 +extern ____ssize_t_49 (____getdelim_635) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 +extern ____ssize_t_49 (__getdelim_644) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 +extern ____ssize_t_49 (__getdelim_648) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 +extern ____ssize_t_49 (__getline_656) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 +extern ____ssize_t_49 (__getline_660) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 +extern int (__fputs_667) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 +extern int (__fputs_669) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 +extern int (__puts_672) (const char * (____s_671));// L695 +extern int (__ungetc_676) (int ____c_673, __FILE_59 * (____stream_674));// L702 +extern int (__fseek_714) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 +extern int (__fseek_716) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 +extern long int (__ftell_720) (__FILE_59 * (____stream_718));// L754 +extern long int (__ftell_722) (__FILE_59 * (____stream_718));// L754 +extern void (__rewind_726) (__FILE_59 * (____stream_724));// L759 +extern int (__fseeko_733) (__FILE_59 * (____stream_728), ____off_t_23 ____off_730, int ____whence_732);// L773 +extern int (__fseeko_744) (__FILE_59 * (____stream_739), ____off64_t_24 ____off_741, int ____whence_743);// L781:L783 +extern ____off_t_23 (__ftello_758) (__FILE_59 * (____stream_737));// L778 +extern ____off_t_23 (__ftello_750) (__FILE_59 * (____stream_737));// L778 +extern int (__fgetpos_766) (__FILE_59 * __restrict ____stream_762, __fpos_t_287 * __restrict ____pos_764);// L798 +extern ____off64_t_24 (__ftello_754) (__FILE_59 * (____stream_748));// L784 +extern int (__fgetpos_778) (__FILE_59 * __restrict ____stream_774, __fpos_t_289 * __restrict ____pos_776);// L806:L807 +extern int (__fsetpos_786) (__FILE_59 * (____stream_770), const __fpos_t_287 * (____pos_772));// L803 +extern int (__fsetpos_790) (__FILE_59 * (____stream_782), const __fpos_t_289 * (____pos_784));// L808:L809 +extern void (__clearerr_796) (__FILE_59 * (____stream_794));// L826 +extern int (__feof_800) (__FILE_59 * (____stream_798));// L828 +extern int (__feof_802) (__FILE_59 * (____stream_798));// L828 +extern int (__ferror_806) (__FILE_59 * (____stream_804));// L830 +extern int (__ferror_808) (__FILE_59 * (____stream_804));// L830 +extern void (__clearerr_unlocked_812) (__FILE_59 * (____stream_810));// L835 +extern int (__feof_unlocked_816) (__FILE_59 * (____stream_814));// L836 +extern int (__feof_unlocked_818) (__FILE_59 * (____stream_814));// L836 +extern int (__ferror_unlocked_822) (__FILE_59 * (____stream_820));// L837 +extern int (__ferror_unlocked_824) (__FILE_59 * (____stream_820));// L837 +extern void (__perror_827) (const char * (____s_826));// L846 +extern void (__perror_828) (const char * (____s_826));// L846 +extern int __sys_nerr_829;// L26 + +extern int (__fileno_835) (__FILE_59 * (____stream_831));// L858 +extern int (__fileno_833) (__FILE_59 * (____stream_831));// L858 +extern int (__fileno_unlocked_841) (__FILE_59 * (____stream_837));// L863 +extern int (__fileno_unlocked_839) (__FILE_59 * (____stream_837));// L863 +extern __FILE_59 * ((__popen_845) (const char * (____command_843), const char * (____modes_844)));// L872 +extern __FILE_59 * ((__popen_847) (const char * (____command_843), const char * (____modes_844)));// L872 +extern int (__pclose_851) (__FILE_59 * (____stream_849));// L878 +extern char * ((__ctermid_854) (char * (____s_853)));// L884 +extern void (__flockfile_857) (__FILE_59 * (____stream_855));// L912 +extern int (__ftrylockfile_861) (__FILE_59 * (____stream_859));// L916 +extern int (__ftrylockfile_863) (__FILE_59 * (____stream_859));// L916 +extern void (__funlockfile_867) (__FILE_59 * (____stream_865));// L919 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____sprintf_chk_617) (char * __restrict ____s_613, int ____flag_614, __size_t_1 ____slen_615, const char * __restrict ____format_616, ... );// L23:L24 -extern int (____vsprintf_chk_624) (char * __restrict ____s_618, int ____flag_619, __size_t_1 ____slen_620, const char * __restrict ____format_621, ____gnuc_va_list_86 ____ap_622);// L25:L27 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____snprintf_chk_638) (char * __restrict ____s_633, __size_t_1 ____n_634, int ____flag_635, __size_t_1 ____slen_636, const char * __restrict ____format_637, ... );// L52:L54 -extern int (____vsnprintf_chk_646) (char * __restrict ____s_639, __size_t_1 ____n_640, int ____flag_641, __size_t_1 ____slen_642, const char * __restrict ____format_643, ____gnuc_va_list_86 ____ap_644);// L55:L57 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____fprintf_chk_661) (__FILE_59 * __restrict ____stream_657, int ____flag_659, const char * __restrict ____format_660, ... );// L85:L86 -extern int (____printf_chk_665) (int ____flag_663, const char * __restrict ____format_664, ... );// L87 -extern int (____vfprintf_chk_672) (__FILE_59 * __restrict ____stream_666, int ____flag_668, const char * __restrict ____format_669, ____gnuc_va_list_86 ____ap_670);// L88:L89 -extern int (____vprintf_chk_680) (int ____flag_676, const char * __restrict ____format_677, ____gnuc_va_list_86 ____ap_678);// L90:L91 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern char * ((____fgets_chk_704) (char * __restrict ____s_699, __size_t_1 ____size_700, int ____n_701, __FILE_59 * __restrict ____stream_702));// L241:L242 -extern char * ((____fgets_chk_706) (char * __restrict ____s_699, __size_t_1 ____size_700, int ____n_701, __FILE_59 * __restrict ____stream_702));// L241:L242 -extern char * ((____fgets_alias_712) (char * __restrict ____s_708, int ____n_709, __FILE_59 * __restrict ____stream_710));// L243:L245 -extern char * ((____fgets_chk_warn_719) (char * __restrict ____s_714, __size_t_1 ____size_715, int ____n_716, __FILE_59 * __restrict ____stream_717));// L246:L250 +extern int (____sprintf_chk_899) (char * __restrict ____s_895, int ____flag_896, __size_t_1 ____slen_897, const char * __restrict ____format_898, ... );// L23:L24 +extern int (____vsprintf_chk_906) (char * __restrict ____s_900, int ____flag_901, __size_t_1 ____slen_902, const char * __restrict ____format_903, ____gnuc_va_list_86 ____ap_904);// L25:L27 /* no function due to type errors in the function prototype */ -// typedef moved to top of scope -// typedef moved to top of scope /* no function due to type errors in the function prototype */ -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern __size_t_1 (____ctype_get_mb_cur_max_776) (void );// L139 -extern __size_t_756 (____ctype_get_mb_cur_max_777) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_778) (void );// L139 -extern __size_t_756 (____ctype_get_mb_cur_max_779) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_780) (void );// L139 -extern __size_t_756 (____ctype_get_mb_cur_max_781) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_782) (void );// L139 -extern __size_t_756 (____ctype_get_mb_cur_max_783) (void );// L139 -extern double (__atof_785) (const char * (____nptr_784));// L144:L145 -extern double (__atof_786) (const char * (____nptr_784));// L144:L145 -extern int (__atoi_788) (const char * (____nptr_787));// L147:L148 -extern int (__atoi_789) (const char * (____nptr_787));// L147:L148 -extern long int (__atol_791) (const char * (____nptr_790));// L150:L151 -extern long int (__atol_792) (const char * (____nptr_790));// L150:L151 -extern long long int (__atoll_794) (const char * (____nptr_793));// L157:L158 -extern long long int (__atoll_795) (const char * (____nptr_793));// L157:L158 -extern double (__strtod_798) (const char * __restrict ____nptr_796, char * (* __restrict ____endptr_797));// L164:L166 -extern float (__strtof_801) (const char * __restrict ____nptr_799, char * (* __restrict ____endptr_800));// L172:L173 -extern long double (__strtold_804) (const char * __restrict ____nptr_802, char * (* __restrict ____endptr_803));// L175:L177 -extern long int (__strtol_808) (const char * __restrict ____nptr_805, char * (* __restrict ____endptr_806), int ____base_807);// L183:L185 -extern unsigned long int (__strtoul_812) (const char * __restrict ____nptr_809, char * (* __restrict ____endptr_810), int ____base_811);// L187:L189 -extern long long int (__strtoll_816) (const char * __restrict ____nptr_813, char * (* __restrict ____endptr_814), int ____base_815);// L209:L211 -extern unsigned long long int (__strtoull_820) (const char * __restrict ____nptr_817, char * (* __restrict ____endptr_818), int ____base_819);// L214:L216 +extern int (____snprintf_chk_920) (char * __restrict ____s_915, __size_t_1 ____n_916, int ____flag_917, __size_t_1 ____slen_918, const char * __restrict ____format_919, ... );// L52:L54 +extern int (____vsnprintf_chk_928) (char * __restrict ____s_921, __size_t_1 ____n_922, int ____flag_923, __size_t_1 ____slen_924, const char * __restrict ____format_925, ____gnuc_va_list_86 ____ap_926);// L55:L57 +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +extern int (____fprintf_chk_943) (__FILE_59 * __restrict ____stream_939, int ____flag_941, const char * __restrict ____format_942, ... );// L85:L86 +extern int (____printf_chk_947) (int ____flag_945, const char * __restrict ____format_946, ... );// L87 +extern int (____vfprintf_chk_954) (__FILE_59 * __restrict ____stream_948, int ____flag_950, const char * __restrict ____format_951, ____gnuc_va_list_86 ____ap_952);// L88:L89 +extern int (____vprintf_chk_962) (int ____flag_958, const char * __restrict ____format_959, ____gnuc_va_list_86 ____ap_960);// L90:L91 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -__extension__/* no function due to type errors in the function prototype */ -extern int (__rand_824) (void );// L374 -extern int (__rand_825) (void );// L374 -extern void (__srand_827) (unsigned int ____seed_826);// L376 -extern void * ((__malloc_830) (__size_t_1 ____size_828));// L466 -extern void * ((__malloc_831) (__size_t_756 ____size_829));// L466 -extern void * ((__malloc_832) (__size_t_1 ____size_828));// L466 -extern void * ((__malloc_833) (__size_t_756 ____size_829));// L466 -extern void * ((__calloc_838) (__size_t_1 ____nmemb_834, __size_t_1 ____size_836));// L468:L469 -extern void * ((__calloc_839) (__size_t_756 ____nmemb_835, __size_t_756 ____size_837));// L468:L469 -extern void * ((__calloc_840) (__size_t_1 ____nmemb_834, __size_t_1 ____size_836));// L468:L469 -extern void * ((__calloc_841) (__size_t_756 ____nmemb_835, __size_t_756 ____size_837));// L468:L469 -extern void * ((__realloc_845) (void * (____ptr_842), __size_t_1 ____size_843));// L480:L481 -extern void * ((__realloc_846) (void * (____ptr_842), __size_t_756 ____size_844));// L480:L481 -extern void * ((__realloc_847) (void * (____ptr_842), __size_t_1 ____size_843));// L480:L481 -extern void * ((__realloc_848) (void * (____ptr_842), __size_t_756 ____size_844));// L480:L481 -extern void (__free_850) (void * (____ptr_849));// L483 -extern void * ((__aligned_alloc_855) (__size_t_1 ____alignment_851, __size_t_1 ____size_853));// L509:L510 -extern void * ((__aligned_alloc_856) (__size_t_756 ____alignment_852, __size_t_756 ____size_854));// L509:L510 -extern void * ((__aligned_alloc_857) (__size_t_1 ____alignment_851, __size_t_1 ____size_853));// L509:L510 -extern void * ((__aligned_alloc_858) (__size_t_756 ____alignment_852, __size_t_756 ____size_854));// L509:L510 -extern void (__abort_859) (void );// L515 -extern int (__atexit_861) (void (* (____func_860)) (void ));// L519 -extern int (__at_quick_exit_863) (void (* (____func_862)) (void ));// L527 -extern void (__exit_865) (int ____status_864);// L543 -extern void (__quick_exit_867) (int ____status_866);// L549 -extern void (___Exit_869) (int ____status_868);// L557 -extern char * ((__getenv_871) (const char * (____name_870)));// L564 -extern char * ((__getenv_872) (const char * (____name_870)));// L564 -extern int (__system_874) (const char * (____command_873));// L716 -extern int (__system_875) (const char * (____command_873));// L716 -// typedef moved to top of scope -extern void * ((__bsearch_887) (const void * (____key_877), const void * (____base_878), __size_t_1 ____nmemb_879, __size_t_1 ____size_881, ____compar_fn_t_876 ____compar_883));// L754:L756 -extern void * ((__bsearch_888) (const void * (____key_877), const void * (____base_878), __size_t_756 ____nmemb_880, __size_t_756 ____size_882, ____compar_fn_t_876 ____compar_883));// L754:L756 -extern void * ((__bsearch_891) (const void * (____key_877), const void * (____base_878), __size_t_1 ____nmemb_879, __size_t_1 ____size_881, ____compar_fn_t_876 ____compar_883));// L754:L756 -extern void * ((__bsearch_892) (const void * (____key_877), const void * (____base_878), __size_t_756 ____nmemb_880, __size_t_756 ____size_882, ____compar_fn_t_876 ____compar_883));// L754:L756 /* no function due to type errors in the function prototype */ -extern void (__qsort_920) (void * (____base_913), __size_t_1 ____nmemb_914, __size_t_1 ____size_916, ____compar_fn_t_876 ____compar_918);// L764:L765 -extern void (__qsort_922) (void * (____base_913), __size_t_756 ____nmemb_915, __size_t_756 ____size_917, ____compar_fn_t_876 ____compar_918);// L764:L765 -extern void (__qsort_924) (void * (____base_913), __size_t_1 ____nmemb_914, __size_t_1 ____size_916, ____compar_fn_t_876 ____compar_918);// L764:L765 -extern void (__qsort_926) (void * (____base_913), __size_t_756 ____nmemb_915, __size_t_756 ____size_917, ____compar_fn_t_876 ____compar_918);// L764:L765 -extern int (__abs_929) (int ____x_928);// L774 -extern int (__abs_930) (int ____x_928);// L774 -extern long int (__labs_932) (long int ____x_931);// L775 -extern long int (__labs_933) (long int ____x_931);// L775 -extern long long int (__llabs_935) (long long int ____x_934);// L779:L780 -extern long long int (__llabs_936) (long long int ____x_934);// L779:L780 -extern __div_t_765 (__div_939) (int ____numer_937, int ____denom_938);// L788:L789 -extern __div_t_765 (__div_940) (int ____numer_937, int ____denom_938);// L788:L789 -extern __ldiv_t_770 (__ldiv_943) (long int ____numer_941, long int ____denom_942);// L790:L791 -extern __ldiv_t_770 (__ldiv_945) (long int ____numer_941, long int ____denom_942);// L790:L791 -extern __lldiv_t_775 (__lldiv_949) (long long int ____numer_947, long long int ____denom_948);// L796:L798 -extern __lldiv_t_775 (__lldiv_951) (long long int ____numer_947, long long int ____denom_948);// L796:L798 -extern int (__mblen_956) (const char * (____s_953), __size_t_1 ____n_954);// L862 -extern int (__mblen_957) (const char * (____s_953), __size_t_756 ____n_955);// L862 -extern int (__mbtowc_963) (__wchar_t_759 * __restrict ____pwc_958, const char * __restrict ____s_960, __size_t_1 ____n_961);// L865:L866 -extern int (__mbtowc_964) (__wchar_t_760 * __restrict ____pwc_959, const char * __restrict ____s_960, __size_t_1 ____n_961);// L865:L866 -extern int (__mbtowc_965) (__wchar_t_760 * __restrict ____pwc_959, const char * __restrict ____s_960, __size_t_756 ____n_962);// L865:L866 -extern int (__wctomb_969) (char * (____s_966), __wchar_t_759 ____wchar_967);// L869 -extern int (__wctomb_970) (char * (____s_966), __wchar_t_760 ____wchar_968);// L869 -extern __size_t_1 (__mbstowcs_976) (__wchar_t_759 * __restrict ____pwcs_971, const char * __restrict ____s_973, __size_t_1 ____n_974);// L873:L874 -extern __size_t_1 (__mbstowcs_977) (__wchar_t_760 * __restrict ____pwcs_972, const char * __restrict ____s_973, __size_t_1 ____n_974);// L873:L874 -extern __size_t_756 (__mbstowcs_978) (__wchar_t_760 * __restrict ____pwcs_972, const char * __restrict ____s_973, __size_t_756 ____n_975);// L873:L874 -extern __size_t_1 (__wcstombs_984) (char * __restrict ____s_979, const __wchar_t_759 * __restrict ____pwcs_980, __size_t_1 ____n_982);// L876:L878 -extern __size_t_1 (__wcstombs_985) (char * __restrict ____s_979, const __wchar_t_760 * __restrict ____pwcs_981, __size_t_1 ____n_982);// L876:L878 -extern __size_t_756 (__wcstombs_986) (char * __restrict ____s_979, const __wchar_t_760 * __restrict ____pwcs_981, __size_t_756 ____n_983);// L876:L878 /* no function due to type errors in the function prototype */ -extern char * ((____realpath_chk_992) (const char * __restrict ____name_988, char * __restrict ____resolved_989, __size_t_1 ____resolvedlen_990));// L23:L25 -extern char * ((____realpath_chk_993) (const char * __restrict ____name_988, char * __restrict ____resolved_989, __size_t_756 ____resolvedlen_991));// L23:L25 -extern char * ((____realpath_alias_996) (const char * __restrict ____name_994, char * __restrict ____resolved_995));// L26:L28 -extern char * ((____realpath_chk_warn_1001) (const char * __restrict ____name_997, char * __restrict ____resolved_998, __size_t_1 ____resolvedlen_999));// L29:L34 -extern char * ((____realpath_chk_warn_1002) (const char * __restrict ____name_997, char * __restrict ____resolved_998, __size_t_756 ____resolvedlen_1000));// L29:L34 +extern int (____dprintf_chk_984) (int ____fd_981, int ____flag_982, const char * __restrict ____fmt_983, ... );// L131:L132 +extern int (____vdprintf_chk_990) (int ____fd_985, int ____flag_986, const char * __restrict ____fmt_987, ____gnuc_va_list_86 ____arg_988);// L133:L135 /* no function due to type errors in the function prototype */ -extern int (____ptsname_r_chk_1012) (int ____fd_1006, char * (____buf_1007), __size_t_1 ____buflen_1008, __size_t_1 ____nreal_1010);// L52:L53 -extern int (____ptsname_r_chk_1013) (int ____fd_1006, char * (____buf_1007), __size_t_756 ____buflen_1009, __size_t_756 ____nreal_1011);// L52:L53 -extern int (____ptsname_r_alias_1018) (int ____fd_1014, char * (____buf_1015), __size_t_1 ____buflen_1016);// L54:L56 -extern int (____ptsname_r_alias_1019) (int ____fd_1014, char * (____buf_1015), __size_t_756 ____buflen_1017);// L54:L56 -extern int (____ptsname_r_chk_warn_1026) (int ____fd_1020, char * (____buf_1021), __size_t_1 ____buflen_1022, __size_t_1 ____nreal_1024);// L57:L61 -extern int (____ptsname_r_chk_warn_1027) (int ____fd_1020, char * (____buf_1021), __size_t_756 ____buflen_1023, __size_t_756 ____nreal_1025);// L57:L61 /* no function due to type errors in the function prototype */ -extern int (____wctomb_chk_1038) (char * (____s_1034), __wchar_t_760 ____wchar_1035, __size_t_1 ____buflen_1036);// L77:L78 -extern int (____wctomb_chk_1039) (char * (____s_1034), __wchar_t_760 ____wchar_1035, __size_t_756 ____buflen_1037);// L77:L78 -extern int (____wctomb_alias_1042) (char * (____s_1040), __wchar_t_760 ____wchar_1041);// L79:L80 +extern char * ((____fgets_chk_1004) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_chk_1006) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_chk_1008) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_alias_1014) (char * __restrict ____s_1010, int ____n_1011, __FILE_59 * __restrict ____stream_1012));// L243:L245 +extern char * ((____fgets_chk_warn_1021) (char * __restrict ____s_1016, __size_t_1 ____size_1017, int ____n_1018, __FILE_59 * __restrict ____stream_1019));// L246:L250 /* no function due to type errors in the function prototype */ -extern __size_t_1 (____mbstowcs_chk_1051) (__wchar_t_760 * __restrict ____dst_1045, const char * __restrict ____src_1046, __size_t_1 ____len_1047, __size_t_1 ____dstlen_1049);// L98:L100 -extern __size_t_756 (____mbstowcs_chk_1052) (__wchar_t_760 * __restrict ____dst_1045, const char * __restrict ____src_1046, __size_t_756 ____len_1048, __size_t_756 ____dstlen_1050);// L98:L100 -extern __size_t_1 (____mbstowcs_alias_1057) (__wchar_t_760 * __restrict ____dst_1053, const char * __restrict ____src_1054, __size_t_1 ____len_1055);// L101:L104 -extern __size_t_756 (____mbstowcs_alias_1058) (__wchar_t_760 * __restrict ____dst_1053, const char * __restrict ____src_1054, __size_t_756 ____len_1056);// L101:L104 -extern __size_t_1 (____mbstowcs_chk_warn_1065) (__wchar_t_760 * __restrict ____dst_1059, const char * __restrict ____src_1060, __size_t_1 ____len_1061, __size_t_1 ____dstlen_1063);// L105:L110 -extern __size_t_756 (____mbstowcs_chk_warn_1066) (__wchar_t_760 * __restrict ____dst_1059, const char * __restrict ____src_1060, __size_t_756 ____len_1062, __size_t_756 ____dstlen_1064);// L105:L110 /* no function due to type errors in the function prototype */ -extern __size_t_1 (____wcstombs_chk_1077) (char * __restrict ____dst_1071, const __wchar_t_760 * __restrict ____src_1072, __size_t_1 ____len_1073, __size_t_1 ____dstlen_1075);// L130:L132 -extern __size_t_756 (____wcstombs_chk_1078) (char * __restrict ____dst_1071, const __wchar_t_760 * __restrict ____src_1072, __size_t_756 ____len_1074, __size_t_756 ____dstlen_1076);// L130:L132 -extern __size_t_1 (____wcstombs_alias_1083) (char * __restrict ____dst_1079, const __wchar_t_760 * __restrict ____src_1080, __size_t_1 ____len_1081);// L133:L136 -extern __size_t_756 (____wcstombs_alias_1084) (char * __restrict ____dst_1079, const __wchar_t_760 * __restrict ____src_1080, __size_t_756 ____len_1082);// L133:L136 -extern __size_t_1 (____wcstombs_chk_warn_1091) (char * __restrict ____dst_1085, const __wchar_t_760 * __restrict ____src_1086, __size_t_1 ____len_1087, __size_t_1 ____dstlen_1089);// L137:L141 -extern __size_t_756 (____wcstombs_chk_warn_1092) (char * __restrict ____dst_1085, const __wchar_t_760 * __restrict ____src_1086, __size_t_756 ____len_1088, __size_t_756 ____dstlen_1090);// L137:L141 /* no function due to type errors in the function prototype */ -void (__run_cgi_child_1109) () { +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +static __inline unsigned int (____bswap_32_1158) (unsigned int ____bsx_1157) { -if (__static_condition_default_1111) { +if (__static_condition_default_1159) { { { -__FILE_59 * (__dbg_1097)= fopen ("con","w");// L8 - -__FILE_59 * (__dbg_1099)= fopen ("con","w");// L8 - -if (__static_condition_default_1101) { -__static_type_error("invalid declaration of dbg under this presence condition"); +__static_type_error("invalid type found in return expression"); } - -if (__static_condition_default_1102) { -__static_type_error("invalid declaration of dbg under this presence condition"); } -__FILE_59 * (__dbg_1103)= fopen ("/dev/tty","w");// L10 - -__FILE_59 * (__dbg_1105)= fopen ("/dev/tty","w");// L10 -if (__static_condition_default_1107) { -__static_type_error("invalid declaration of dbg under this presence condition"); } - -if (__static_condition_default_1108) { -__static_type_error("invalid declaration of dbg under this presence condition"); } +static __inline ____uint64_t_13 (____bswap_64_1162) (____uint64_t_13 ____bsx_1160) { + +if (__static_condition_default_1164) { -if (__static_condition_default_1112) { - __fprintf_359 ( __dbg_1097 ,"Environment\n") ; // L15 -} -if (__static_condition_default_1113) { - __fprintf_359 ( __dbg_1099 ,"Environment\n") ; // L15 -} -if (__static_condition_default_1114) { - __fprintf_359 ( __dbg_1103 ,"Environment\n") ; // L15 -} -if (__static_condition_default_1115) { - __fprintf_359 ( __dbg_1105 ,"Environment\n") ; // L15 -} -if (__static_condition_default_1116) { -__static_type_error("type error") ; // L15 -} -if (__static_condition_default_1117) { -if ( rand( ) % 2 )// L18 -{ -return ;// L19 -} -} -if (__static_condition_default_1118) { -if ( rand( ) % 2 )// L18 -{ -return ;// L19 -} -} -if (__static_condition_default_1119) { -fclose ( __dbg_1097 ) ; // L22 -} -if (__static_condition_default_1120) { -fclose ( __dbg_1099 ) ; // L22 -} -if (__static_condition_default_1121) { -fclose ( __dbg_1103 ) ; // L22 -} -if (__static_condition_default_1122) { -fclose ( __dbg_1105 ) ; // L22 -} -if (__static_condition_default_1123) { -__static_type_error("type error") ; // L22 -} -if (__static_condition_default_1124) { -if ( rand( ) % 2 )// L18 { -return ;// L19 -} -} -if (__static_condition_default_1125) { -if ( rand( ) % 2 )// L18 { -return ;// L19 -} -} -return ;// L24 + + + +__static_type_error("invalid type found in return expression"); } } } } -void (__run_cgi_child_1110) () { +static __inline ____uint64_t_1112 (____bswap_64_1163) (____uint64_t_1112 ____bsx_1161) { -if (__static_condition_default_1126) { +if (__static_condition_default_1165) { { { -__FILE_59 * (__dbg_1098)= fopen ("con","w");// L8 - -__FILE_59 * (__dbg_1100)= fopen ("con","w");// L8 - -if (__static_condition_default_1101) { -__static_type_error("invalid declaration of dbg under this presence condition"); +__static_type_error("invalid type found in return expression"); } - -if (__static_condition_default_1102) { -__static_type_error("invalid declaration of dbg under this presence condition"); } -__FILE_59 * (__dbg_1104)= fopen ("/dev/tty","w");// L10 - -__FILE_59 * (__dbg_1106)= fopen ("/dev/tty","w");// L10 -if (__static_condition_default_1107) { -__static_type_error("invalid declaration of dbg under this presence condition"); } - -if (__static_condition_default_1108) { +} +union __wait_1177 ;// L66 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern __size_t_1 (____ctype_get_mb_cur_max_1201) (void );// L139 +extern __size_t_1093 (____ctype_get_mb_cur_max_1202) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_1203) (void );// L139 +extern __size_t_1093 (____ctype_get_mb_cur_max_1204) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_1205) (void );// L139 +extern __size_t_1093 (____ctype_get_mb_cur_max_1206) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_1207) (void );// L139 +extern __size_t_1093 (____ctype_get_mb_cur_max_1208) (void );// L139 +extern double (__atof_1210) (const char * (____nptr_1209));// L144:L145 +extern double (__atof_1211) (const char * (____nptr_1209));// L144:L145 +extern int (__atoi_1213) (const char * (____nptr_1212));// L147:L148 +extern int (__atoi_1214) (const char * (____nptr_1212));// L147:L148 +extern long int (__atol_1216) (const char * (____nptr_1215));// L150:L151 +extern long int (__atol_1217) (const char * (____nptr_1215));// L150:L151 +extern long long int (__atoll_1219) (const char * (____nptr_1218));// L157:L158 +extern long long int (__atoll_1220) (const char * (____nptr_1218));// L157:L158 +extern double (__strtod_1223) (const char * __restrict ____nptr_1221, char * (* __restrict ____endptr_1222));// L164:L166 +extern float (__strtof_1226) (const char * __restrict ____nptr_1224, char * (* __restrict ____endptr_1225));// L172:L173 +extern long double (__strtold_1229) (const char * __restrict ____nptr_1227, char * (* __restrict ____endptr_1228));// L175:L177 +extern long int (__strtol_1233) (const char * __restrict ____nptr_1230, char * (* __restrict ____endptr_1231), int ____base_1232);// L183:L185 +extern unsigned long int (__strtoul_1237) (const char * __restrict ____nptr_1234, char * (* __restrict ____endptr_1235), int ____base_1236);// L187:L189 +extern long long int (__strtoq_1241) (const char * __restrict ____nptr_1238, char * (* __restrict ____endptr_1239), int ____base_1240);// L195:L197 +extern unsigned long long int (__strtouq_1245) (const char * __restrict ____nptr_1242, char * (* __restrict ____endptr_1243), int ____base_1244);// L200:L202 +extern long long int (__strtoll_1249) (const char * __restrict ____nptr_1246, char * (* __restrict ____endptr_1247), int ____base_1248);// L209:L211 +extern long long int (__strtoll_1250) (const char * __restrict ____nptr_1246, char * (* __restrict ____endptr_1247), int ____base_1248);// L209:L211 +extern unsigned long long int (__strtoull_1254) (const char * __restrict ____nptr_1251, char * (* __restrict ____endptr_1252), int ____base_1253);// L214:L216 +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +__extension__/* no function due to type errors in the function prototype */ +extern char * ((__l64a_1259) (long int ____n_1258));// L305 +extern char * ((__l64a_1260) (long int ____n_1258));// L305 +extern long int (__a64l_1262) (const char * (____s_1261));// L308:L309 +extern long int (__a64l_1263) (const char * (____s_1261));// L308:L309 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +static __inline unsigned int (____bswap_32_1452) (unsigned int ____bsx_1451) { + +if (__static_condition_default_1453) { + +{ +{ + + + +__static_type_error("invalid type found in return expression"); +} +} + + +} +} +static __inline ____uint64_t_13 (____bswap_64_1456) (____uint64_t_13 ____bsx_1454) { + +if (__static_condition_default_1458) { + +{ +{ + + + +__static_type_error("invalid type found in return expression"); +} +} + + +} +} +static __inline ____uint64_t_1275 (____bswap_64_1457) (____uint64_t_1275 ____bsx_1455) { + +if (__static_condition_default_1459) { + +{ +{ + + + +__static_type_error("invalid type found in return expression"); +} +} + + +} +} +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +struct __timespec_1466 ;// L120 + +struct __timeval_1476 ;// L30 + +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern int (__select_1513) (int ____nfds_1502, __fd_set_1499 * __restrict ____readfds_1503, __fd_set_1499 * __restrict ____writefds_1505, __fd_set_1499 * __restrict ____exceptfds_1507, struct __timeval_1476 * __restrict ____timeout_1510);// L106:L109 +extern int (__select_1514) (int ____nfds_1502, __fd_set_1499 * __restrict ____readfds_1503, __fd_set_1499 * __restrict ____writefds_1505, __fd_set_1499 * __restrict ____exceptfds_1507, struct __forward_tag_reference_1509 * __restrict ____timeout_1512);// L106:L109 +extern int (__pselect_1529) (int ____nfds_1517, __fd_set_1499 * __restrict ____readfds_1518, __fd_set_1499 * __restrict ____writefds_1520, __fd_set_1499 * __restrict ____exceptfds_1522, const struct __timespec_1466 * __restrict ____timeout_1525, const ____sigset_t_1464 * __restrict ____sigmask_1528);// L118:L122 +extern int (__pselect_1530) (int ____nfds_1517, __fd_set_1499 * __restrict ____readfds_1518, __fd_set_1499 * __restrict ____writefds_1520, __fd_set_1499 * __restrict ____exceptfds_1522, const struct __forward_tag_reference_1524 * __restrict ____timeout_1527, const ____sigset_t_1464 * __restrict ____sigmask_1528);// L118:L122 +extern long int (____fdelt_chk_1534) (long int ____d_1533);// L24 +extern long int (____fdelt_warn_1536) (long int ____d_1535);// L25:L26 +extern unsigned int (__gnu_dev_major_1538) (unsigned long long int ____dev_1537);// L27:L28 +extern unsigned int (__gnu_dev_major_1539) (unsigned long long int ____dev_1537);// L27:L28 +extern unsigned int (__gnu_dev_minor_1541) (unsigned long long int ____dev_1540);// L30:L31 +extern unsigned long long int (__gnu_dev_makedev_1544) (unsigned int ____major_1542, unsigned int ____minor_1543);// L33:L35 +__extension__/* no function due to type errors in the function prototype */ +__extension__/* no function due to type errors in the function prototype */ +__extension__/* no function due to type errors in the function prototype */ +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +union __pthread_attr_t_1578 ;// L63 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern int (__rand_1609) (void );// L374 +extern void (__srand_1611) (unsigned int ____seed_1610);// L376 +extern int (__rand_r_1613) (unsigned int * (____seed_1612));// L381 +extern double (__drand48_1614) (void );// L389 +extern double (__erand48_1616) (unsigned short int ____xsubi_1615[3]);// L390 +extern long int (__lrand48_1617) (void );// L393 +extern long int (__nrand48_1619) (unsigned short int ____xsubi_1618[3]);// L394:L395 +extern long int (__mrand48_1620) (void );// L398 +extern long int (__jrand48_1622) (unsigned short int ____xsubi_1621[3]);// L399:L400 +extern void (__srand48_1624) (long int ____seedval_1623);// L403 +extern unsigned short int * ((__seed48_1626) (unsigned short int ____seed16v_1625[3]));// L404:L405 +extern void (__lcong48_1628) (unsigned short int ____param_1627[7]);// L406 +extern void * ((__malloc_1631) (__size_t_1 ____size_1629));// L466 +extern void * ((__malloc_1632) (__size_t_1093 ____size_1630));// L466 +extern void * ((__malloc_1633) (__size_t_1 ____size_1629));// L466 +extern void * ((__malloc_1634) (__size_t_1093 ____size_1630));// L466 +extern void * ((__calloc_1639) (__size_t_1 ____nmemb_1635, __size_t_1 ____size_1637));// L468:L469 +extern void * ((__calloc_1640) (__size_t_1093 ____nmemb_1636, __size_t_1093 ____size_1638));// L468:L469 +extern void * ((__calloc_1641) (__size_t_1 ____nmemb_1635, __size_t_1 ____size_1637));// L468:L469 +extern void * ((__calloc_1642) (__size_t_1093 ____nmemb_1636, __size_t_1093 ____size_1638));// L468:L469 +extern void * ((__realloc_1646) (void * (____ptr_1643), __size_t_1 ____size_1644));// L480:L481 +extern void * ((__realloc_1647) (void * (____ptr_1643), __size_t_1093 ____size_1645));// L480:L481 +extern void (__free_1649) (void * (____ptr_1648));// L483 +extern void (__cfree_1651) (void * (____ptr_1650));// L488 +extern void * ((__alloca_1654) (__size_t_1 ____size_1652));// L32 +extern void * ((__alloca_1655) (__size_t_1093 ____size_1653));// L32 +extern void * ((__valloc_1658) (__size_t_1 ____size_1656));// L498 +extern void * ((__valloc_1659) (__size_t_1093 ____size_1657));// L498 +extern void * ((__valloc_1660) (__size_t_1 ____size_1656));// L498 +extern void * ((__valloc_1661) (__size_t_1093 ____size_1657));// L498 +extern int (__posix_memalign_1667) (void * (* (____memptr_1662)), __size_t_1 ____alignment_1663, __size_t_1 ____size_1665);// L503:L504 +extern int (__posix_memalign_1668) (void * (* (____memptr_1662)), __size_t_1093 ____alignment_1664, __size_t_1093 ____size_1666);// L503:L504 +extern int (__posix_memalign_1669) (void * (* (____memptr_1662)), __size_t_1 ____alignment_1663, __size_t_1 ____size_1665);// L503:L504 +extern int (__posix_memalign_1670) (void * (* (____memptr_1662)), __size_t_1093 ____alignment_1664, __size_t_1093 ____size_1666);// L503:L504 +extern void * ((__aligned_alloc_1675) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 +extern void * ((__aligned_alloc_1676) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 +extern void * ((__aligned_alloc_1677) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 +extern void * ((__aligned_alloc_1678) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 +extern void * ((__aligned_alloc_1679) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 +extern void * ((__aligned_alloc_1680) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 +extern void * ((__aligned_alloc_1681) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 +extern void * ((__aligned_alloc_1682) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 +extern void (__abort_1683) (void );// L515 +extern int (__atexit_1685) (void (* (____func_1684)) (void ));// L519 +extern int (__at_quick_exit_1687) (void (* (____func_1686)) (void ));// L527 +extern int (__on_exit_1692) (void (* (____func_1690)) (int ____status_1688, void * (____arg_1689)), void * (____arg_1691));// L535:L536 +extern void (__exit_1694) (int ____status_1693);// L543 +extern void (__exit_1695) (int ____status_1693);// L543 +extern void (__quick_exit_1697) (int ____status_1696);// L549 +extern void (___Exit_1699) (int ____status_1698);// L557 +extern char * ((__getenv_1701) (const char * (____name_1700)));// L564 +extern char * ((__getenv_1702) (const char * (____name_1700)));// L564 +extern int (__putenv_1704) (char * (____string_1703));// L578 +extern int (__setenv_1708) (const char * (____name_1705), const char * (____value_1706), int ____replace_1707);// L584:L585 +extern int (__unsetenv_1710) (const char * (____name_1709));// L588 +extern int (__clearenv_1711) (void );// L595 +extern char * ((__mktemp_1713) (char * (____template_1712)));// L606 +extern int (__mkstemp_1716) (char * (____template_1714));// L619 +extern int (__mkstemp_1718) (char * (____template_1714));// L619 +extern int (__mkstemp_1717) (char * (____template_1715));// L622:L623 +extern int (__mkstemp_1719) (char * (____template_1715));// L622:L623 +extern int (__mkstemps_1724) (char * (____template_1720), int ____suffixlen_1721);// L641 +extern int (__mkstemps_1725) (char * (____template_1722), int ____suffixlen_1723);// L644:L645 +extern int (__mkstemps_1726) (char * (____template_1720), int ____suffixlen_1721);// L641 +extern int (__mkstemps_1727) (char * (____template_1722), int ____suffixlen_1723);// L644:L645 +extern char * ((__mkdtemp_1729) (char * (____template_1728)));// L662 +extern char * ((__mkdtemp_1730) (char * (____template_1728)));// L662 +extern int (__system_1732) (const char * (____command_1731));// L716 +extern int (__system_1733) (const char * (____command_1731));// L716 +extern int (__system_1734) (const char * (____command_1731));// L716 +extern int (__system_1735) (const char * (____command_1731));// L716 +extern char * ((__realpath_1738) (const char * __restrict ____name_1736, char * __restrict ____resolved_1737));// L733:L734 +extern char * ((__realpath_1739) (const char * __restrict ____name_1736, char * __restrict ____resolved_1737));// L733:L734 +// typedef moved to top of scope +extern void * ((__bsearch_1751) (const void * (____key_1741), const void * (____base_1742), __size_t_1 ____nmemb_1743, __size_t_1 ____size_1745, ____compar_fn_t_1740 ____compar_1747));// L754:L756 +extern void * ((__bsearch_1752) (const void * (____key_1741), const void * (____base_1742), __size_t_1093 ____nmemb_1744, __size_t_1093 ____size_1746, ____compar_fn_t_1740 ____compar_1747));// L754:L756 +extern void * ((__bsearch_1755) (const void * (____key_1741), const void * (____base_1742), __size_t_1 ____nmemb_1743, __size_t_1 ____size_1745, ____compar_fn_t_1740 ____compar_1747));// L754:L756 +extern void * ((__bsearch_1756) (const void * (____key_1741), const void * (____base_1742), __size_t_1093 ____nmemb_1744, __size_t_1093 ____size_1746, ____compar_fn_t_1740 ____compar_1747));// L754:L756 +/* no function due to type errors in the function prototype */ +extern void (__qsort_1784) (void * (____base_1777), __size_t_1 ____nmemb_1778, __size_t_1 ____size_1780, ____compar_fn_t_1740 ____compar_1782);// L764:L765 +extern void (__qsort_1786) (void * (____base_1777), __size_t_1093 ____nmemb_1779, __size_t_1093 ____size_1781, ____compar_fn_t_1740 ____compar_1782);// L764:L765 +extern void (__qsort_1788) (void * (____base_1777), __size_t_1 ____nmemb_1778, __size_t_1 ____size_1780, ____compar_fn_t_1740 ____compar_1782);// L764:L765 +extern void (__qsort_1790) (void * (____base_1777), __size_t_1093 ____nmemb_1779, __size_t_1093 ____size_1781, ____compar_fn_t_1740 ____compar_1782);// L764:L765 +extern int (__abs_1793) (int ____x_1792);// L774 +extern int (__abs_1794) (int ____x_1792);// L774 +extern long int (__labs_1796) (long int ____x_1795);// L775 +extern long int (__labs_1797) (long int ____x_1795);// L775 +extern long long int (__llabs_1799) (long long int ____x_1798);// L779:L780 +extern long long int (__llabs_1800) (long long int ____x_1798);// L779:L780 +extern __div_t_1190 (__div_1803) (int ____numer_1801, int ____denom_1802);// L788:L789 +extern __div_t_1190 (__div_1804) (int ____numer_1801, int ____denom_1802);// L788:L789 +extern __ldiv_t_1195 (__ldiv_1807) (long int ____numer_1805, long int ____denom_1806);// L790:L791 +extern __ldiv_t_1195 (__ldiv_1809) (long int ____numer_1805, long int ____denom_1806);// L790:L791 +extern __lldiv_t_1200 (__lldiv_1813) (long long int ____numer_1811, long long int ____denom_1812);// L796:L798 +extern __lldiv_t_1200 (__lldiv_1815) (long long int ____numer_1811, long long int ____denom_1812);// L796:L798 +extern char * ((__ecvt_1821) (double ____value_1817, int ____ndigit_1818, int * __restrict ____decpt_1819, int * __restrict ____sign_1820));// L811:L812 +extern char * ((__ecvt_1822) (double ____value_1817, int ____ndigit_1818, int * __restrict ____decpt_1819, int * __restrict ____sign_1820));// L811:L812 +extern char * ((__fcvt_1827) (double ____value_1823, int ____ndigit_1824, int * __restrict ____decpt_1825, int * __restrict ____sign_1826));// L817:L818 +extern char * ((__fcvt_1828) (double ____value_1823, int ____ndigit_1824, int * __restrict ____decpt_1825, int * __restrict ____sign_1826));// L817:L818 +extern char * ((__gcvt_1832) (double ____value_1829, int ____ndigit_1830, char * (____buf_1831)));// L823:L824 +extern char * ((__gcvt_1833) (double ____value_1829, int ____ndigit_1830, char * (____buf_1831)));// L823:L824 +extern char * ((__qecvt_1838) (long double ____value_1834, int ____ndigit_1835, int * __restrict ____decpt_1836, int * __restrict ____sign_1837));// L829:L831 +extern char * ((__qecvt_1839) (long double ____value_1834, int ____ndigit_1835, int * __restrict ____decpt_1836, int * __restrict ____sign_1837));// L829:L831 +extern char * ((__qfcvt_1844) (long double ____value_1840, int ____ndigit_1841, int * __restrict ____decpt_1842, int * __restrict ____sign_1843));// L832:L834 +extern char * ((__qfcvt_1845) (long double ____value_1840, int ____ndigit_1841, int * __restrict ____decpt_1842, int * __restrict ____sign_1843));// L832:L834 +extern char * ((__qgcvt_1849) (long double ____value_1846, int ____ndigit_1847, char * (____buf_1848)));// L835:L836 +extern char * ((__qgcvt_1850) (long double ____value_1846, int ____ndigit_1847, char * (____buf_1848)));// L835:L836 +extern int (__ecvt_r_1858) (double ____value_1851, int ____ndigit_1852, int * __restrict ____decpt_1853, int * __restrict ____sign_1854, char * __restrict ____buf_1855, __size_t_1 ____len_1856);// L841:L843 +extern int (__ecvt_r_1859) (double ____value_1851, int ____ndigit_1852, int * __restrict ____decpt_1853, int * __restrict ____sign_1854, char * __restrict ____buf_1855, __size_t_1093 ____len_1857);// L841:L843 +extern int (__fcvt_r_1867) (double ____value_1860, int ____ndigit_1861, int * __restrict ____decpt_1862, int * __restrict ____sign_1863, char * __restrict ____buf_1864, __size_t_1 ____len_1865);// L844:L846 +extern int (__fcvt_r_1868) (double ____value_1860, int ____ndigit_1861, int * __restrict ____decpt_1862, int * __restrict ____sign_1863, char * __restrict ____buf_1864, __size_t_1093 ____len_1866);// L844:L846 +extern int (__qecvt_r_1876) (long double ____value_1869, int ____ndigit_1870, int * __restrict ____decpt_1871, int * __restrict ____sign_1872, char * __restrict ____buf_1873, __size_t_1 ____len_1874);// L848:L851 +extern int (__qecvt_r_1877) (long double ____value_1869, int ____ndigit_1870, int * __restrict ____decpt_1871, int * __restrict ____sign_1872, char * __restrict ____buf_1873, __size_t_1093 ____len_1875);// L848:L851 +extern int (__qfcvt_r_1885) (long double ____value_1878, int ____ndigit_1879, int * __restrict ____decpt_1880, int * __restrict ____sign_1881, char * __restrict ____buf_1882, __size_t_1 ____len_1883);// L852:L855 +extern int (__qfcvt_r_1886) (long double ____value_1878, int ____ndigit_1879, int * __restrict ____decpt_1880, int * __restrict ____sign_1881, char * __restrict ____buf_1882, __size_t_1093 ____len_1884);// L852:L855 +extern int (__mblen_1890) (const char * (____s_1887), __size_t_1 ____n_1888);// L862 +extern int (__mblen_1891) (const char * (____s_1887), __size_t_1093 ____n_1889);// L862 +extern int (__mblen_1892) (const char * (____s_1887), __size_t_1 ____n_1888);// L862 +extern int (__mblen_1893) (const char * (____s_1887), __size_t_1093 ____n_1889);// L862 +extern int (__mbtowc_1898) (__wchar_t_1094 * __restrict ____pwc_1894, const char * __restrict ____s_1895, __size_t_1 ____n_1896);// L865:L866 +extern int (__mbtowc_1899) (__wchar_t_1094 * __restrict ____pwc_1894, const char * __restrict ____s_1895, __size_t_1093 ____n_1897);// L865:L866 +extern int (__wctomb_1902) (char * (____s_1900), __wchar_t_1094 ____wchar_1901);// L869 +extern __size_t_1 (__mbstowcs_1907) (__wchar_t_1094 * __restrict ____pwcs_1903, const char * __restrict ____s_1904, __size_t_1 ____n_1905);// L873:L874 +extern __size_t_1093 (__mbstowcs_1908) (__wchar_t_1094 * __restrict ____pwcs_1903, const char * __restrict ____s_1904, __size_t_1093 ____n_1906);// L873:L874 +extern __size_t_1 (__wcstombs_1913) (char * __restrict ____s_1909, const __wchar_t_1094 * __restrict ____pwcs_1910, __size_t_1 ____n_1911);// L876:L878 +extern __size_t_1093 (__wcstombs_1914) (char * __restrict ____s_1909, const __wchar_t_1094 * __restrict ____pwcs_1910, __size_t_1093 ____n_1912);// L876:L878 +extern int (__rpmatch_1917) (const char * (____response_1915));// L887 +extern int (__rpmatch_1916) (const char * (____response_1915));// L887 +extern int (__getsubopt_1922) (char * (* __restrict ____optionp_1918), char * const * __restrict ____tokens_1919, char * (* __restrict ____valuep_1920));// L898:L901 +extern int (__getsubopt_1921) (char * (* __restrict ____optionp_1918), char * const * __restrict ____tokens_1919, char * (* __restrict ____valuep_1920));// L898:L901 +extern int (__getloadavg_1925) (double ____loadavg_1923[], int ____nelem_1924);// L950:L951 +/* no function due to type errors in the function prototype */ +extern char * ((____realpath_chk_1931) (const char * __restrict ____name_1927, char * __restrict ____resolved_1928, __size_t_1 ____resolvedlen_1929));// L23:L25 +extern char * ((____realpath_chk_1932) (const char * __restrict ____name_1927, char * __restrict ____resolved_1928, __size_t_1093 ____resolvedlen_1930));// L23:L25 +extern char * ((____realpath_alias_1935) (const char * __restrict ____name_1933, char * __restrict ____resolved_1934));// L26:L28 +extern char * ((____realpath_chk_warn_1940) (const char * __restrict ____name_1936, char * __restrict ____resolved_1937, __size_t_1 ____resolvedlen_1938));// L29:L34 +extern char * ((____realpath_chk_warn_1941) (const char * __restrict ____name_1936, char * __restrict ____resolved_1937, __size_t_1093 ____resolvedlen_1939));// L29:L34 +/* no function due to type errors in the function prototype */ +extern int (____ptsname_r_chk_1951) (int ____fd_1945, char * (____buf_1946), __size_t_1 ____buflen_1947, __size_t_1 ____nreal_1949);// L52:L53 +extern int (____ptsname_r_chk_1952) (int ____fd_1945, char * (____buf_1946), __size_t_1093 ____buflen_1948, __size_t_1093 ____nreal_1950);// L52:L53 +extern int (____ptsname_r_alias_1957) (int ____fd_1953, char * (____buf_1954), __size_t_1 ____buflen_1955);// L54:L56 +extern int (____ptsname_r_alias_1958) (int ____fd_1953, char * (____buf_1954), __size_t_1093 ____buflen_1956);// L54:L56 +extern int (____ptsname_r_chk_warn_1965) (int ____fd_1959, char * (____buf_1960), __size_t_1 ____buflen_1961, __size_t_1 ____nreal_1963);// L57:L61 +extern int (____ptsname_r_chk_warn_1966) (int ____fd_1959, char * (____buf_1960), __size_t_1093 ____buflen_1962, __size_t_1093 ____nreal_1964);// L57:L61 +/* no function due to type errors in the function prototype */ +extern int (____wctomb_chk_1977) (char * (____s_1973), __wchar_t_1094 ____wchar_1974, __size_t_1 ____buflen_1975);// L77:L78 +extern int (____wctomb_chk_1978) (char * (____s_1973), __wchar_t_1094 ____wchar_1974, __size_t_1093 ____buflen_1976);// L77:L78 +extern int (____wctomb_alias_1981) (char * (____s_1979), __wchar_t_1094 ____wchar_1980);// L79:L80 +/* no function due to type errors in the function prototype */ +extern __size_t_1 (____mbstowcs_chk_1990) (__wchar_t_1094 * __restrict ____dst_1984, const char * __restrict ____src_1985, __size_t_1 ____len_1986, __size_t_1 ____dstlen_1988);// L98:L100 +extern __size_t_1093 (____mbstowcs_chk_1991) (__wchar_t_1094 * __restrict ____dst_1984, const char * __restrict ____src_1985, __size_t_1093 ____len_1987, __size_t_1093 ____dstlen_1989);// L98:L100 +extern __size_t_1 (____mbstowcs_alias_1996) (__wchar_t_1094 * __restrict ____dst_1992, const char * __restrict ____src_1993, __size_t_1 ____len_1994);// L101:L104 +extern __size_t_1093 (____mbstowcs_alias_1997) (__wchar_t_1094 * __restrict ____dst_1992, const char * __restrict ____src_1993, __size_t_1093 ____len_1995);// L101:L104 +extern __size_t_1 (____mbstowcs_chk_warn_2004) (__wchar_t_1094 * __restrict ____dst_1998, const char * __restrict ____src_1999, __size_t_1 ____len_2000, __size_t_1 ____dstlen_2002);// L105:L110 +extern __size_t_1093 (____mbstowcs_chk_warn_2005) (__wchar_t_1094 * __restrict ____dst_1998, const char * __restrict ____src_1999, __size_t_1093 ____len_2001, __size_t_1093 ____dstlen_2003);// L105:L110 +/* no function due to type errors in the function prototype */ +extern __size_t_1 (____wcstombs_chk_2016) (char * __restrict ____dst_2010, const __wchar_t_1094 * __restrict ____src_2011, __size_t_1 ____len_2012, __size_t_1 ____dstlen_2014);// L130:L132 +extern __size_t_1093 (____wcstombs_chk_2017) (char * __restrict ____dst_2010, const __wchar_t_1094 * __restrict ____src_2011, __size_t_1093 ____len_2013, __size_t_1093 ____dstlen_2015);// L130:L132 +extern __size_t_1 (____wcstombs_alias_2022) (char * __restrict ____dst_2018, const __wchar_t_1094 * __restrict ____src_2019, __size_t_1 ____len_2020);// L133:L136 +extern __size_t_1093 (____wcstombs_alias_2023) (char * __restrict ____dst_2018, const __wchar_t_1094 * __restrict ____src_2019, __size_t_1093 ____len_2021);// L133:L136 +extern __size_t_1 (____wcstombs_chk_warn_2030) (char * __restrict ____dst_2024, const __wchar_t_1094 * __restrict ____src_2025, __size_t_1 ____len_2026, __size_t_1 ____dstlen_2028);// L137:L141 +extern __size_t_1093 (____wcstombs_chk_warn_2031) (char * __restrict ____dst_2024, const __wchar_t_1094 * __restrict ____src_2025, __size_t_1093 ____len_2027, __size_t_1093 ____dstlen_2029);// L137:L141 +/* no function due to type errors in the function prototype */ +void (__run_cgi_child_2048) () { + +if (__static_condition_default_2051) { + +{ +{ + + + +__FILE_59 * (__dbg_2036)= fopen ("con","w");// L8 + +__FILE_59 * (__dbg_2038)= fopen ("con","w");// L8 + +if (__static_condition_default_2040) { +__static_type_error("invalid declaration of dbg under this presence condition"); +} + +if (__static_condition_default_2041) { +__static_type_error("invalid declaration of dbg under this presence condition"); +} + +__FILE_59 * (__dbg_2042)= fopen ("/dev/tty","w");// L10 + +__FILE_59 * (__dbg_2044)= fopen ("/dev/tty","w");// L10 + +if (__static_condition_default_2046) { +__static_type_error("invalid declaration of dbg under this presence condition"); +} + +if (__static_condition_default_2047) { __static_type_error("invalid declaration of dbg under this presence condition"); } -if (__static_condition_default_1127) { - __fprintf_359 ( __dbg_1098 ,"Environment\n") ; // L15 +if (__static_condition_default_2052) { + __fprintf_416 ( __dbg_2036 ,"Environment\n") ; // L15 } -if (__static_condition_default_1128) { - __fprintf_359 ( __dbg_1100 ,"Environment\n") ; // L15 +if (__static_condition_default_2053) { + __fprintf_416 ( __dbg_2038 ,"Environment\n") ; // L15 } -if (__static_condition_default_1129) { - __fprintf_359 ( __dbg_1104 ,"Environment\n") ; // L15 +if (__static_condition_default_2054) { + __fprintf_416 ( __dbg_2042 ,"Environment\n") ; // L15 } -if (__static_condition_default_1130) { - __fprintf_359 ( __dbg_1106 ,"Environment\n") ; // L15 +if (__static_condition_default_2055) { + __fprintf_416 ( __dbg_2044 ,"Environment\n") ; // L15 } -if (__static_condition_default_1131) { +if (__static_condition_default_2056) { __static_type_error("type error") ; // L15 } -if (__static_condition_default_1132) { +if (__static_condition_default_2057) { if ( rand( ) % 2 )// L18 { return ;// L19 } } -if (__static_condition_default_1133) { +if (__static_condition_default_2058) { +fclose ( __dbg_2036 ) ; // L22 +} +if (__static_condition_default_2059) { +fclose ( __dbg_2038 ) ; // L22 +} +if (__static_condition_default_2060) { +fclose ( __dbg_2042 ) ; // L22 +} +if (__static_condition_default_2061) { +fclose ( __dbg_2044 ) ; // L22 +} +if (__static_condition_default_2062) { +__static_type_error("type error") ; // L22 +} +if (__static_condition_default_2063) { if ( rand( ) % 2 )// L18 { return ;// L19 } } -if (__static_condition_default_1134) { -fclose ( __dbg_1098 ) ; // L22 +return ;// L24 } -if (__static_condition_default_1135) { -fclose ( __dbg_1100 ) ; // L22 } -if (__static_condition_default_1136) { -fclose ( __dbg_1104 ) ; // L22 + + } -if (__static_condition_default_1137) { -fclose ( __dbg_1106 ) ; // L22 } -if (__static_condition_default_1138) { -__static_type_error("type error") ; // L22 +void (__run_cgi_child_2049) () { + +if (__static_condition_default_2064) { + +{ +{ + + + +__FILE_59 * (__dbg_2037)= fopen ("con","w");// L8 + +__FILE_59 * (__dbg_2039)= fopen ("con","w");// L8 + +if (__static_condition_default_2040) { +__static_type_error("invalid declaration of dbg under this presence condition"); } -if (__static_condition_default_1139) { + +if (__static_condition_default_2041) { +__static_type_error("invalid declaration of dbg under this presence condition"); +} + +__FILE_59 * (__dbg_2043)= fopen ("/dev/tty","w");// L10 + +__FILE_59 * (__dbg_2045)= fopen ("/dev/tty","w");// L10 + +if (__static_condition_default_2046) { +__static_type_error("invalid declaration of dbg under this presence condition"); +} + +if (__static_condition_default_2047) { +__static_type_error("invalid declaration of dbg under this presence condition"); +} + +if (__static_condition_default_2065) { + __fprintf_416 ( __dbg_2037 ,"Environment\n") ; // L15 +} +if (__static_condition_default_2066) { + __fprintf_416 ( __dbg_2039 ,"Environment\n") ; // L15 +} +if (__static_condition_default_2067) { + __fprintf_416 ( __dbg_2043 ,"Environment\n") ; // L15 +} +if (__static_condition_default_2068) { + __fprintf_416 ( __dbg_2045 ,"Environment\n") ; // L15 +} +if (__static_condition_default_2069) { +__static_type_error("type error") ; // L15 +} +if (__static_condition_default_2070) { if ( rand( ) % 2 )// L18 { return ;// L19 } } -if (__static_condition_default_1140) { +if (__static_condition_default_2071) { +fclose ( __dbg_2037 ) ; // L22 +} +if (__static_condition_default_2072) { +fclose ( __dbg_2039 ) ; // L22 +} +if (__static_condition_default_2073) { +fclose ( __dbg_2043 ) ; // L22 +} +if (__static_condition_default_2074) { +fclose ( __dbg_2045 ) ; // L22 +} +if (__static_condition_default_2075) { +__static_type_error("type error") ; // L22 +} +if (__static_condition_default_2076) { if ( rand( ) % 2 )// L18 { return ;// L19 @@ -1527,32 +3155,191 @@ return ;// L24 } } -void (__cgi_handler_1141) () { +void (__run_cgi_child_2050) () { + +if (__static_condition_default_2077) { { { -if (__static_condition_default_1111) { - __run_cgi_child_1109 ( ) ; // L29 +__FILE_59 * (__dbg_2036)= fopen ("con","w");// L8 + +__FILE_59 * (__dbg_2037)= fopen ("con","w");// L8 + +__FILE_59 * (__dbg_2038)= fopen ("con","w");// L8 + +__FILE_59 * (__dbg_2039)= fopen ("con","w");// L8 + +if (__static_condition_default_2040) { +__static_type_error("invalid declaration of dbg under this presence condition"); +} + +if (__static_condition_default_2041) { +__static_type_error("invalid declaration of dbg under this presence condition"); +} + +__FILE_59 * (__dbg_2042)= fopen ("/dev/tty","w");// L10 + +__FILE_59 * (__dbg_2043)= fopen ("/dev/tty","w");// L10 + +__FILE_59 * (__dbg_2044)= fopen ("/dev/tty","w");// L10 + +__FILE_59 * (__dbg_2045)= fopen ("/dev/tty","w");// L10 + +if (__static_condition_default_2046) { +__static_type_error("invalid declaration of dbg under this presence condition"); +} + +if (__static_condition_default_2047) { +__static_type_error("invalid declaration of dbg under this presence condition"); +} + +if (__static_condition_default_2078) { + __fprintf_416 ( __dbg_2036 ,"Environment\n") ; // L15 +} +if (__static_condition_default_2079) { + __fprintf_416 ( __dbg_2037 ,"Environment\n") ; // L15 +} +if (__static_condition_default_2080) { + __fprintf_416 ( __dbg_2038 ,"Environment\n") ; // L15 +} +if (__static_condition_default_2081) { + __fprintf_416 ( __dbg_2039 ,"Environment\n") ; // L15 +} +if (__static_condition_default_2082) { + __fprintf_416 ( __dbg_2042 ,"Environment\n") ; // L15 +} +if (__static_condition_default_2083) { + __fprintf_416 ( __dbg_2043 ,"Environment\n") ; // L15 +} +if (__static_condition_default_2084) { + __fprintf_416 ( __dbg_2044 ,"Environment\n") ; // L15 +} +if (__static_condition_default_2085) { + __fprintf_416 ( __dbg_2045 ,"Environment\n") ; // L15 +} +if (__static_condition_default_2086) { + __fprintf_418 ( __dbg_2036 ,"Environment\n") ; // L15 +} +if (__static_condition_default_2087) { + __fprintf_418 ( __dbg_2037 ,"Environment\n") ; // L15 +} +if (__static_condition_default_2088) { + __fprintf_418 ( __dbg_2038 ,"Environment\n") ; // L15 +} +if (__static_condition_default_2089) { + __fprintf_418 ( __dbg_2039 ,"Environment\n") ; // L15 +} +if (__static_condition_default_2090) { + __fprintf_418 ( __dbg_2042 ,"Environment\n") ; // L15 +} +if (__static_condition_default_2091) { + __fprintf_418 ( __dbg_2043 ,"Environment\n") ; // L15 +} +if (__static_condition_default_2092) { + __fprintf_418 ( __dbg_2044 ,"Environment\n") ; // L15 +} +if (__static_condition_default_2093) { + __fprintf_418 ( __dbg_2045 ,"Environment\n") ; // L15 +} +if (__static_condition_default_2094) { +__static_type_error("type error") ; // L15 +} +if (__static_condition_default_2095) { +__static_type_error("invalid type found in if statement"); +} +if (__static_condition_default_2096) { +fclose ( __dbg_2036 ) ; // L22 +} +if (__static_condition_default_2097) { +fclose ( __dbg_2037 ) ; // L22 +} +if (__static_condition_default_2098) { +fclose ( __dbg_2038 ) ; // L22 +} +if (__static_condition_default_2099) { +fclose ( __dbg_2039 ) ; // L22 +} +if (__static_condition_default_2100) { +fclose ( __dbg_2042 ) ; // L22 +} +if (__static_condition_default_2101) { +fclose ( __dbg_2043 ) ; // L22 +} +if (__static_condition_default_2102) { +fclose ( __dbg_2044 ) ; // L22 +} +if (__static_condition_default_2103) { +fclose ( __dbg_2045 ) ; // L22 +} +if (__static_condition_default_2104) { +fclose ( __dbg_2036 ) ; // L22 +} +if (__static_condition_default_2105) { +fclose ( __dbg_2037 ) ; // L22 +} +if (__static_condition_default_2106) { +fclose ( __dbg_2038 ) ; // L22 +} +if (__static_condition_default_2107) { +fclose ( __dbg_2039 ) ; // L22 +} +if (__static_condition_default_2108) { +fclose ( __dbg_2042 ) ; // L22 +} +if (__static_condition_default_2109) { +fclose ( __dbg_2043 ) ; // L22 +} +if (__static_condition_default_2110) { +fclose ( __dbg_2044 ) ; // L22 +} +if (__static_condition_default_2111) { +fclose ( __dbg_2045 ) ; // L22 +} +if (__static_condition_default_2112) { +__static_type_error("type error") ; // L22 +} +if (__static_condition_default_2113) { +__static_type_error("invalid type found in if statement"); +} +return ;// L24 +} +} + + +} +} +void (__cgi_handler_2114) () { + +{ +{ + + + +if (__static_condition_default_2115) { + __run_cgi_child_2048 ( ) ; // L29 +} +if (__static_condition_default_2116) { + __run_cgi_child_2049 ( ) ; // L29 } -if (__static_condition_default_1126) { - __run_cgi_child_1110 ( ) ; // L29 +if (__static_condition_default_2077) { + __run_cgi_child_2050 ( ) ; // L29 } } } } -int (__main_1142) (void ) { +int (__main_2117) (void ) { { { - __cgi_handler_1141 ( ) ; // L34 + __cgi_handler_2114 ( ) ; // L34 return 0 ;// L35 } } diff --git a/fonda/cpp_testsuite/varBugs/APACHE/4945115b2e7.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/4945115b2e7.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/4945115b2e7.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/4945115b2e7.inferres b/fonda/cpp_testsuite/varBugs/APACHE/4945115b2e7.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/4945115b2e7.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/56d9881993f.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/56d9881993f.desugared.c index 147a5f1c..bea4dd8d 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/56d9881993f.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/56d9881993f.desugared.c @@ -7,8 +7,8 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_2; extern const bool __static_condition_default_3; +extern const bool __static_condition_default_2; void __static_initializer_default() { __static_renaming("__sendfile_nonblocking_0", "sendfile_nonblocking"); __static_renaming("__send_brigade_nonblocking_1", "send_brigade_nonblocking"); diff --git a/fonda/cpp_testsuite/varBugs/APACHE/56d9881993f.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/56d9881993f.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/56d9881993f.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/56d9881993f.inferres b/fonda/cpp_testsuite/varBugs/APACHE/56d9881993f.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/56d9881993f.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/581635e28f1.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/581635e28f1.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/581635e28f1.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/581635e28f1.inferres b/fonda/cpp_testsuite/varBugs/APACHE/581635e28f1.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/APACHE/6338509eb37.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/6338509eb37.desugared.c index c473f7e0..62d9bc6f 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/6338509eb37.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/6338509eb37.desugared.c @@ -7,211 +7,278 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_394; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_501; -extern const bool __static_condition_default_586; -extern const bool __static_condition_default_680; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_400; -extern const bool __static_condition_default_655; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_696; -extern const bool __static_condition_default_881; -extern const bool __static_condition_default_641; -extern const bool __static_condition_default_603; -extern const bool __static_condition_default_906; -extern const bool __static_condition_default_435; -extern const bool __static_condition_default_161; -extern const bool __static_condition_default_577; -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_977; -extern const bool __static_condition_default_556; -extern const bool __static_condition_default_310; -extern const bool __static_condition_default_718; -extern const bool __static_condition_default_330; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_429; -extern const bool __static_condition_default_695; -extern const bool __static_condition_default_162; -extern const bool __static_condition_default_421; -extern const bool __static_condition_default_474; -extern const bool __static_condition_default_933; -extern const bool __static_condition_default_508; -extern const bool __static_condition_default_855; -extern const bool __static_condition_default_870; -extern const bool __static_condition_default_480; -extern const bool __static_condition_default_672; -extern const bool __static_condition_default_739; -extern const bool __static_condition_default_633; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_311; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_536; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_1100; +extern const bool __static_condition_default_846; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_761; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_1097; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_875; extern const bool __static_condition_default_727; -extern const bool __static_condition_default_533; -extern const bool __static_condition_default_118; -extern const bool __static_condition_default_308; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_904; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_794; -extern const bool __static_condition_default_254; -extern const bool __static_condition_default_716; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_612; -extern const bool __static_condition_default_790; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_482; -extern const bool __static_condition_default_381; -extern const bool __static_condition_default_954; -extern const bool __static_condition_default_517; -extern const bool __static_condition_default_225; -extern const bool __static_condition_default_318; -extern const bool __static_condition_default_969; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_543; extern const bool __static_condition_default_768; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_898; -extern const bool __static_condition_default_351; -extern const bool __static_condition_default_567; -extern const bool __static_condition_default_528; -extern const bool __static_condition_default_234; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_749; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_1006; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_677; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_489; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_386; +extern const bool __static_condition_default_455; +extern const bool __static_condition_default_834; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_512; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_544; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_757; extern const bool __static_condition_default_431; -extern const bool __static_condition_default_328; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_326; -extern const bool __static_condition_default_451; -extern const bool __static_condition_default_500; -extern const bool __static_condition_default_962; -extern const bool __static_condition_default_459; -extern const bool __static_condition_default_882; -extern const bool __static_condition_default_917; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_358; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_230; -extern const bool __static_condition_default_733; -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_694; -extern const bool __static_condition_default_236; -extern const bool __static_condition_default_446; -extern const bool __static_condition_default_893; -extern const bool __static_condition_default_931; -extern const bool __static_condition_default_935; -extern const bool __static_condition_default_992; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_502; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_204; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_290; +extern const bool __static_condition_default_955; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_842; +extern const bool __static_condition_default_929; +extern const bool __static_condition_default_779; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_699; extern const bool __static_condition_default_788; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_720; -extern const bool __static_condition_default_343; -extern const bool __static_condition_default_610; -extern const bool __static_condition_default_374; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_984; -extern const bool __static_condition_default_640; -extern const bool __static_condition_default_648; -extern const bool __static_condition_default_507; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_304; -extern const bool __static_condition_default_961; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_953; -extern const bool __static_condition_default_551; -extern const bool __static_condition_default_778; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_540; -extern const bool __static_condition_default_232; -extern const bool __static_condition_default_562; -extern const bool __static_condition_default_729; -extern const bool __static_condition_default_448; -extern const bool __static_condition_default_626; -extern const bool __static_condition_default_1021; +extern const bool __static_condition_default_759; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_367; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_84; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_382; extern const bool __static_condition_default_511; -extern const bool __static_condition_default_760; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_568; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_894; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_1096; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_549; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_747; +extern const bool __static_condition_default_753; +extern const bool __static_condition_default_337; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_583; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_1081; extern const bool __static_condition_default_745; -extern const bool __static_condition_default_294; -extern const bool __static_condition_default_595; -extern const bool __static_condition_default_999; -extern const bool __static_condition_default_457; -extern const bool __static_condition_default_227; -extern const bool __static_condition_default_449; -extern const bool __static_condition_default_332; -extern const bool __static_condition_default_349; -extern const bool __static_condition_default_605; -extern const bool __static_condition_default_798; -extern const bool __static_condition_default_772; -extern const bool __static_condition_default_336; -extern const bool __static_condition_default_784; -extern const bool __static_condition_default_941; -extern const bool __static_condition_default_276; -extern const bool __static_condition_default_470; -extern const bool __static_condition_default_766; -extern const bool __static_condition_default_1016; -extern const bool __static_condition_default_820; -extern const bool __static_condition_default_495; -extern const bool __static_condition_default_627; -extern const bool __static_condition_default_833; -extern const bool __static_condition_default_454; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_804; -extern const bool __static_condition_default_924; -extern const bool __static_condition_default_624; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_706; -extern const bool __static_condition_default_905; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_320; -extern const bool __static_condition_default_983; -extern const bool __static_condition_default_453; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_550; +extern const bool __static_condition_default_613; +extern const bool __static_condition_default_963; +extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_488; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_769; +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_636; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_907; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_365; +extern const bool __static_condition_default_187; extern const bool __static_condition_default_813; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_702; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_791; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_419; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_275; extern const bool __static_condition_default_494; -extern const bool __static_condition_default_762; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_338; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_743; -extern const bool __static_condition_default_1024; -extern const bool __static_condition_default_639; -extern const bool __static_condition_default_300; -extern const bool __static_condition_default_575; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_889; -extern const bool __static_condition_default_165; -extern const bool __static_condition_default_774; -extern const bool __static_condition_default_1017; -extern const bool __static_condition_default_74; -extern const bool __static_condition_default_579; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_619; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_380; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_721; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_347; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_789; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_388; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_1095; extern const bool __static_condition_default_573; -extern const bool __static_condition_default_714; -extern const bool __static_condition_default_968; -extern const bool __static_condition_default_642; -extern const bool __static_condition_default_370; -extern const bool __static_condition_default_976; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_688; -extern const bool __static_condition_default_379; -extern const bool __static_condition_default_948; -extern const bool __static_condition_default_393; -extern const bool __static_condition_default_735; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_661; extern const bool __static_condition_default_497; -extern const bool __static_condition_default_719; -extern const bool __static_condition_default_356; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_496; -extern const bool __static_condition_default_256; -extern const bool __static_condition_default_226; -extern const bool __static_condition_default_588; -extern const bool __static_condition_default_707; -extern const bool __static_condition_default_538; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_891; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_333; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_521; +extern const bool __static_condition_default_1098; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_76; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_670; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_559; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -263,431 +330,501 @@ __static_renaming("____ssize_t_49", "__ssize_t"); __static_renaming("____syscall_slong_t_50", "__syscall_slong_t"); __static_renaming("____syscall_ulong_t_51", "__syscall_ulong_t"); __static_renaming("____loff_t_52", "__loff_t"); -__static_renaming("____qaddr_t_53", "__qaddr_t"); -__static_renaming("____caddr_t_54", "__caddr_t"); -__static_renaming("____intptr_t_55", "__intptr_t"); -__static_renaming("____socklen_t_56", "__socklen_t"); -__static_renaming("__FILE_58", "FILE"); -__static_renaming("____FILE_59", "__FILE"); -__static_renaming("____mbstate_t_68", "__mbstate_t"); -__static_renaming("___G_fpos_t_75", "_G_fpos_t"); -__static_renaming("___G_fpos64_t_81", "_G_fpos64_t"); -__static_renaming("____gnuc_va_list_82", "__gnuc_va_list"); -__static_renaming("___IO_lock_t_84", "_IO_lock_t"); -__static_renaming("___IO_FILE_163", "_IO_FILE"); -__static_renaming("___IO_FILE_164", "_IO_FILE"); -__static_renaming("___IO_2_1_stdin__167", "_IO_2_1_stdin_"); -__static_renaming("___IO_2_1_stdout__168", "_IO_2_1_stdout_"); -__static_renaming("___IO_2_1_stderr__169", "_IO_2_1_stderr_"); -__static_renaming("____io_read_fn_173", "__io_read_fn"); -__static_renaming("____io_write_fn_177", "__io_write_fn"); -__static_renaming("____io_seek_fn_181", "__io_seek_fn"); -__static_renaming("____io_close_fn_183", "__io_close_fn"); -__static_renaming("____underflow_184", "__underflow"); -__static_renaming("____underflow_185", "__underflow"); -__static_renaming("____uflow_186", "__uflow"); -__static_renaming("____uflow_187", "__uflow"); -__static_renaming("____overflow_188", "__overflow"); -__static_renaming("____overflow_189", "__overflow"); -__static_renaming("___IO_getc_193", "_IO_getc"); -__static_renaming("___IO_getc_194", "_IO_getc"); -__static_renaming("___IO_putc_199", "_IO_putc"); -__static_renaming("___IO_putc_200", "_IO_putc"); -__static_renaming("___IO_feof_204", "_IO_feof"); -__static_renaming("___IO_feof_205", "_IO_feof"); -__static_renaming("___IO_ferror_209", "_IO_ferror"); -__static_renaming("___IO_ferror_210", "_IO_ferror"); -__static_renaming("___IO_peekc_locked_214", "_IO_peekc_locked"); -__static_renaming("___IO_peekc_locked_215", "_IO_peekc_locked"); -__static_renaming("___IO_flockfile_216", "_IO_flockfile"); -__static_renaming("___IO_flockfile_217", "_IO_flockfile"); -__static_renaming("___IO_funlockfile_218", "_IO_funlockfile"); -__static_renaming("___IO_funlockfile_219", "_IO_funlockfile"); -__static_renaming("___IO_ftrylockfile_220", "_IO_ftrylockfile"); -__static_renaming("___IO_ftrylockfile_221", "_IO_ftrylockfile"); -__static_renaming("___IO_vfscanf_222", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_224", "_IO_vfscanf"); -__static_renaming("___IO_vfprintf_231", "_IO_vfprintf"); -__static_renaming("___IO_vfprintf_233", "_IO_vfprintf"); -__static_renaming("___IO_padn_238", "_IO_padn"); -__static_renaming("___IO_padn_239", "_IO_padn"); -__static_renaming("___IO_sgetn_240", "_IO_sgetn"); -__static_renaming("___IO_sgetn_241", "_IO_sgetn"); -__static_renaming("___IO_seekoff_242", "_IO_seekoff"); -__static_renaming("___IO_seekoff_243", "_IO_seekoff"); -__static_renaming("___IO_seekpos_244", "_IO_seekpos"); -__static_renaming("___IO_seekpos_245", "_IO_seekpos"); -__static_renaming("___IO_free_backup_area_246", "_IO_free_backup_area"); -__static_renaming("___IO_free_backup_area_247", "_IO_free_backup_area"); -__static_renaming("__va_list_248", "va_list"); -__static_renaming("__off_t_250", "off_t"); -__static_renaming("__off_t_251", "off_t"); -__static_renaming("__ssize_t_252", "ssize_t"); -__static_renaming("__fpos_t_253", "fpos_t"); -__static_renaming("__fpos_t_255", "fpos_t"); -__static_renaming("__stdin_257", "stdin"); -__static_renaming("__stdin_258", "stdin"); -__static_renaming("__stdout_259", "stdout"); -__static_renaming("__stdout_260", "stdout"); -__static_renaming("__stderr_261", "stderr"); -__static_renaming("__stderr_262", "stderr"); -__static_renaming("__remove_264", "remove"); -__static_renaming("__rename_267", "rename"); -__static_renaming("__renameat_272", "renameat"); -__static_renaming("__tmpfile_273", "tmpfile"); -__static_renaming("__tmpfile_275", "tmpfile"); -__static_renaming("__tmpfile_277", "tmpfile"); -__static_renaming("__tmpfile_279", "tmpfile"); -__static_renaming("__tmpnam_282", "tmpnam"); -__static_renaming("__tmpnam_283", "tmpnam"); -__static_renaming("__tmpnam_r_285", "tmpnam_r"); -__static_renaming("__tmpnam_r_286", "tmpnam_r"); -__static_renaming("__tempnam_289", "tempnam"); -__static_renaming("__tempnam_290", "tempnam"); -__static_renaming("__fclose_293", "fclose"); -__static_renaming("__fclose_295", "fclose"); -__static_renaming("__fflush_299", "fflush"); -__static_renaming("__fflush_unlocked_303", "fflush_unlocked"); -__static_renaming("__fopen_307", "fopen"); -__static_renaming("__fopen_309", "fopen"); -__static_renaming("__fopen_317", "fopen"); -__static_renaming("__fopen_319", "fopen"); -__static_renaming("__freopen_325", "freopen"); -__static_renaming("__freopen_327", "freopen"); -__static_renaming("__freopen_329", "freopen"); -__static_renaming("__freopen_331", "freopen"); -__static_renaming("__fdopen_335", "fdopen"); -__static_renaming("__fdopen_337", "fdopen"); -__static_renaming("__fmemopen_342", "fmemopen"); -__static_renaming("__fmemopen_344", "fmemopen"); -__static_renaming("__open_memstream_348", "open_memstream"); -__static_renaming("__open_memstream_350", "open_memstream"); -__static_renaming("__setbuf_355", "setbuf"); -__static_renaming("__setbuf_357", "setbuf"); -__static_renaming("__setvbuf_364", "setvbuf"); -__static_renaming("__setbuffer_369", "setbuffer"); -__static_renaming("__setlinebuf_373", "setlinebuf"); -__static_renaming("__fprintf_378", "fprintf"); -__static_renaming("__fprintf_380", "fprintf"); -__static_renaming("__printf_383", "printf"); -__static_renaming("__sprintf_386", "sprintf"); -__static_renaming("__vfprintf_392", "vfprintf"); -__static_renaming("__vprintf_399", "vprintf"); -__static_renaming("__vsprintf_405", "vsprintf"); -__static_renaming("__snprintf_409", "snprintf"); -__static_renaming("__vsnprintf_415", "vsnprintf"); -__static_renaming("__vdprintf_420", "vdprintf"); -__static_renaming("__dprintf_424", "dprintf"); -__static_renaming("__fscanf_428", "fscanf"); -__static_renaming("__fscanf_430", "fscanf"); -__static_renaming("__fscanf_432", "fscanf"); -__static_renaming("__fscanf_434", "fscanf"); -__static_renaming("__scanf_437", "scanf"); -__static_renaming("__scanf_438", "scanf"); -__static_renaming("__sscanf_441", "sscanf"); -__static_renaming("__vfscanf_468", "vfscanf"); -__static_renaming("__vfscanf_472", "vfscanf"); -__static_renaming("__vscanf_479", "vscanf"); -__static_renaming("__vscanf_481", "vscanf"); -__static_renaming("__vsscanf_487", "vsscanf"); -__static_renaming("__fgetc_520", "fgetc"); -__static_renaming("__getc_523", "getc"); -__static_renaming("__getchar_524", "getchar"); -__static_renaming("__getc_unlocked_527", "getc_unlocked"); -__static_renaming("__getchar_unlocked_529", "getchar_unlocked"); -__static_renaming("__fgetc_unlocked_532", "fgetc_unlocked"); -__static_renaming("__fputc_537", "fputc"); -__static_renaming("__fputc_539", "fputc"); -__static_renaming("__putc_544", "putc"); -__static_renaming("__putchar_546", "putchar"); -__static_renaming("__fputc_unlocked_550", "fputc_unlocked"); -__static_renaming("__putc_unlocked_555", "putc_unlocked"); -__static_renaming("__putchar_unlocked_558", "putchar_unlocked"); -__static_renaming("__getw_561", "getw"); -__static_renaming("__putw_566", "putw"); -__static_renaming("__fgets_572", "fgets"); -__static_renaming("__fgets_574", "fgets"); -__static_renaming("__fgets_576", "fgets"); -__static_renaming("__fgets_578", "fgets"); -__static_renaming("____getdelim_585", "__getdelim"); -__static_renaming("____getdelim_587", "__getdelim"); -__static_renaming("__getdelim_594", "getdelim"); -__static_renaming("__getdelim_596", "getdelim"); -__static_renaming("__getline_602", "getline"); -__static_renaming("__getline_604", "getline"); -__static_renaming("__fputs_609", "fputs"); -__static_renaming("__fputs_611", "fputs"); -__static_renaming("__puts_614", "puts"); -__static_renaming("__ungetc_618", "ungetc"); -__static_renaming("__fseek_654", "fseek"); -__static_renaming("__fseek_656", "fseek"); -__static_renaming("__ftell_660", "ftell"); -__static_renaming("__ftell_662", "ftell"); -__static_renaming("__rewind_666", "rewind"); -__static_renaming("__fseeko_671", "fseeko"); -__static_renaming("__fseeko_679", "fseeko"); -__static_renaming("__ftello_683", "ftello"); -__static_renaming("__ftello_685", "ftello"); -__static_renaming("__ftello_687", "ftello"); -__static_renaming("__fgetpos_693", "fgetpos"); -__static_renaming("__fgetpos_705", "fgetpos"); -__static_renaming("__fsetpos_713", "fsetpos"); -__static_renaming("__fsetpos_717", "fsetpos"); -__static_renaming("__clearerr_723", "clearerr"); -__static_renaming("__feof_726", "feof"); -__static_renaming("__feof_728", "feof"); -__static_renaming("__ferror_732", "ferror"); -__static_renaming("__ferror_734", "ferror"); -__static_renaming("__clearerr_unlocked_738", "clearerr_unlocked"); -__static_renaming("__feof_unlocked_742", "feof_unlocked"); -__static_renaming("__feof_unlocked_744", "feof_unlocked"); -__static_renaming("__ferror_unlocked_748", "ferror_unlocked"); -__static_renaming("__ferror_unlocked_750", "ferror_unlocked"); -__static_renaming("__perror_753", "perror"); -__static_renaming("__perror_754", "perror"); -__static_renaming("__sys_nerr_755", "sys_nerr"); -__static_renaming("__sys_errlist_756", "sys_errlist"); -__static_renaming("__fileno_759", "fileno"); -__static_renaming("__fileno_761", "fileno"); -__static_renaming("__fileno_unlocked_765", "fileno_unlocked"); -__static_renaming("__fileno_unlocked_767", "fileno_unlocked"); -__static_renaming("__popen_771", "popen"); -__static_renaming("__popen_773", "popen"); -__static_renaming("__pclose_777", "pclose"); -__static_renaming("__ctermid_780", "ctermid"); -__static_renaming("__flockfile_783", "flockfile"); -__static_renaming("__ftrylockfile_787", "ftrylockfile"); -__static_renaming("__ftrylockfile_789", "ftrylockfile"); -__static_renaming("__funlockfile_793", "funlockfile"); -__static_renaming("____sprintf_chk_825", "__sprintf_chk"); -__static_renaming("____vsprintf_chk_832", "__vsprintf_chk"); -__static_renaming("____snprintf_chk_846", "__snprintf_chk"); -__static_renaming("____vsnprintf_chk_854", "__vsnprintf_chk"); -__static_renaming("____fprintf_chk_869", "__fprintf_chk"); -__static_renaming("____printf_chk_873", "__printf_chk"); -__static_renaming("____vfprintf_chk_880", "__vfprintf_chk"); -__static_renaming("____vprintf_chk_888", "__vprintf_chk"); -__static_renaming("____dprintf_chk_910", "__dprintf_chk"); -__static_renaming("____vdprintf_chk_916", "__vdprintf_chk"); -__static_renaming("____fgets_chk_930", "__fgets_chk"); -__static_renaming("____fgets_chk_932", "__fgets_chk"); -__static_renaming("____fgets_chk_934", "__fgets_chk"); -__static_renaming("____fgets_alias_940", "__fgets_alias"); -__static_renaming("____fgets_chk_warn_947", "__fgets_chk_warn"); -__static_renaming("____cnt_1013", "__cnt"); -__static_renaming("____cptr_1014", "__cptr"); -__static_renaming("__fips_1018", "fips"); -__static_renaming("__fips_1019", "fips"); -__static_renaming("__ssl_init_Module_1020", "ssl_init_Module"); -__static_renaming("__main_1023", "main"); +__static_renaming("____qaddr_t_54", "__qaddr_t"); +__static_renaming("____caddr_t_55", "__caddr_t"); +__static_renaming("____intptr_t_56", "__intptr_t"); +__static_renaming("____socklen_t_57", "__socklen_t"); +__static_renaming("__FILE_59", "FILE"); +__static_renaming("____FILE_60", "__FILE"); +__static_renaming("____mbstate_t_69", "__mbstate_t"); +__static_renaming("___G_fpos_t_77", "_G_fpos_t"); +__static_renaming("___G_fpos64_t_85", "_G_fpos64_t"); +__static_renaming("____gnuc_va_list_86", "__gnuc_va_list"); +__static_renaming("___IO_lock_t_88", "_IO_lock_t"); +__static_renaming("___IO_FILE_171", "_IO_FILE"); +__static_renaming("___IO_FILE_172", "_IO_FILE"); +__static_renaming("___IO_2_1_stdin__175", "_IO_2_1_stdin_"); +__static_renaming("___IO_2_1_stdout__176", "_IO_2_1_stdout_"); +__static_renaming("___IO_2_1_stderr__177", "_IO_2_1_stderr_"); +__static_renaming("____io_read_fn_181", "__io_read_fn"); +__static_renaming("____io_write_fn_186", "__io_write_fn"); +__static_renaming("____io_seek_fn_192", "__io_seek_fn"); +__static_renaming("____io_close_fn_195", "__io_close_fn"); +__static_renaming("____underflow_196", "__underflow"); +__static_renaming("____underflow_197", "__underflow"); +__static_renaming("____uflow_199", "__uflow"); +__static_renaming("____uflow_200", "__uflow"); +__static_renaming("____overflow_202", "__overflow"); +__static_renaming("____overflow_203", "__overflow"); +__static_renaming("___IO_getc_208", "_IO_getc"); +__static_renaming("___IO_getc_209", "_IO_getc"); +__static_renaming("___IO_putc_215", "_IO_putc"); +__static_renaming("___IO_putc_216", "_IO_putc"); +__static_renaming("___IO_feof_221", "_IO_feof"); +__static_renaming("___IO_feof_222", "_IO_feof"); +__static_renaming("___IO_ferror_227", "_IO_ferror"); +__static_renaming("___IO_ferror_228", "_IO_ferror"); +__static_renaming("___IO_peekc_locked_233", "_IO_peekc_locked"); +__static_renaming("___IO_peekc_locked_234", "_IO_peekc_locked"); +__static_renaming("___IO_flockfile_236", "_IO_flockfile"); +__static_renaming("___IO_flockfile_237", "_IO_flockfile"); +__static_renaming("___IO_funlockfile_239", "_IO_funlockfile"); +__static_renaming("___IO_funlockfile_240", "_IO_funlockfile"); +__static_renaming("___IO_ftrylockfile_242", "_IO_ftrylockfile"); +__static_renaming("___IO_ftrylockfile_243", "_IO_ftrylockfile"); +__static_renaming("___IO_vfscanf_245", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_247", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_251", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_252", "_IO_vfscanf"); +__static_renaming("___IO_vfprintf_254", "_IO_vfprintf"); +__static_renaming("___IO_vfprintf_256", "_IO_vfprintf"); +__static_renaming("___IO_vfprintf_260", "_IO_vfprintf"); +__static_renaming("___IO_padn_261", "_IO_padn"); +__static_renaming("___IO_padn_262", "_IO_padn"); +__static_renaming("___IO_sgetn_265", "_IO_sgetn"); +__static_renaming("___IO_sgetn_266", "_IO_sgetn"); +__static_renaming("___IO_seekoff_268", "_IO_seekoff"); +__static_renaming("___IO_seekoff_269", "_IO_seekoff"); +__static_renaming("___IO_seekpos_272", "_IO_seekpos"); +__static_renaming("___IO_seekpos_273", "_IO_seekpos"); +__static_renaming("___IO_free_backup_area_276", "_IO_free_backup_area"); +__static_renaming("___IO_free_backup_area_277", "_IO_free_backup_area"); +__static_renaming("__va_list_279", "va_list"); +__static_renaming("__off_t_281", "off_t"); +__static_renaming("__off_t_283", "off_t"); +__static_renaming("__ssize_t_285", "ssize_t"); +__static_renaming("__fpos_t_287", "fpos_t"); +__static_renaming("__fpos_t_289", "fpos_t"); +__static_renaming("__stdin_291", "stdin"); +__static_renaming("__stdin_292", "stdin"); +__static_renaming("__stdout_294", "stdout"); +__static_renaming("__stdout_295", "stdout"); +__static_renaming("__stderr_297", "stderr"); +__static_renaming("__stderr_298", "stderr"); +__static_renaming("__remove_301", "remove"); +__static_renaming("__rename_304", "rename"); +__static_renaming("__renameat_309", "renameat"); +__static_renaming("__tmpfile_310", "tmpfile"); +__static_renaming("__tmpfile_312", "tmpfile"); +__static_renaming("__tmpfile_314", "tmpfile"); +__static_renaming("__tmpfile_316", "tmpfile"); +__static_renaming("__tmpnam_319", "tmpnam"); +__static_renaming("__tmpnam_320", "tmpnam"); +__static_renaming("__tmpnam_r_322", "tmpnam_r"); +__static_renaming("__tmpnam_r_323", "tmpnam_r"); +__static_renaming("__tempnam_326", "tempnam"); +__static_renaming("__tempnam_327", "tempnam"); +__static_renaming("__fclose_330", "fclose"); +__static_renaming("__fclose_332", "fclose"); +__static_renaming("__fflush_336", "fflush"); +__static_renaming("__fflush_unlocked_340", "fflush_unlocked"); +__static_renaming("__fopen_344", "fopen"); +__static_renaming("__fopen_346", "fopen"); +__static_renaming("__fopen_354", "fopen"); +__static_renaming("__fopen_356", "fopen"); +__static_renaming("__freopen_362", "freopen"); +__static_renaming("__freopen_364", "freopen"); +__static_renaming("__freopen_366", "freopen"); +__static_renaming("__freopen_368", "freopen"); +__static_renaming("__fdopen_372", "fdopen"); +__static_renaming("__fdopen_374", "fdopen"); +__static_renaming("__fmemopen_379", "fmemopen"); +__static_renaming("__fmemopen_381", "fmemopen"); +__static_renaming("__open_memstream_385", "open_memstream"); +__static_renaming("__open_memstream_387", "open_memstream"); +__static_renaming("__setbuf_392", "setbuf"); +__static_renaming("__setbuf_394", "setbuf"); +__static_renaming("__setvbuf_401", "setvbuf"); +__static_renaming("__setbuffer_407", "setbuffer"); +__static_renaming("__setlinebuf_411", "setlinebuf"); +__static_renaming("__fprintf_416", "fprintf"); +__static_renaming("__fprintf_418", "fprintf"); +__static_renaming("__printf_421", "printf"); +__static_renaming("__sprintf_424", "sprintf"); +__static_renaming("__vfprintf_430", "vfprintf"); +__static_renaming("__vprintf_437", "vprintf"); +__static_renaming("__vsprintf_443", "vsprintf"); +__static_renaming("__snprintf_448", "snprintf"); +__static_renaming("__vsnprintf_454", "vsnprintf"); +__static_renaming("__vdprintf_460", "vdprintf"); +__static_renaming("__dprintf_464", "dprintf"); +__static_renaming("__fscanf_468", "fscanf"); +__static_renaming("__fscanf_470", "fscanf"); +__static_renaming("__fscanf_472", "fscanf"); +__static_renaming("__fscanf_474", "fscanf"); +__static_renaming("__scanf_477", "scanf"); +__static_renaming("__scanf_478", "scanf"); +__static_renaming("__sscanf_481", "sscanf"); +__static_renaming("__vfscanf_509", "vfscanf"); +__static_renaming("__vfscanf_513", "vfscanf"); +__static_renaming("__vscanf_520", "vscanf"); +__static_renaming("__vscanf_522", "vscanf"); +__static_renaming("__vsscanf_528", "vsscanf"); +__static_renaming("__fgetc_563", "fgetc"); +__static_renaming("__getc_567", "getc"); +__static_renaming("__getchar_569", "getchar"); +__static_renaming("__getc_unlocked_572", "getc_unlocked"); +__static_renaming("__getchar_unlocked_574", "getchar_unlocked"); +__static_renaming("__fgetc_unlocked_577", "fgetc_unlocked"); +__static_renaming("__fputc_582", "fputc"); +__static_renaming("__fputc_584", "fputc"); +__static_renaming("__putc_589", "putc"); +__static_renaming("__putchar_592", "putchar"); +__static_renaming("__fputc_unlocked_596", "fputc_unlocked"); +__static_renaming("__putc_unlocked_601", "putc_unlocked"); +__static_renaming("__putchar_unlocked_604", "putchar_unlocked"); +__static_renaming("__getw_607", "getw"); +__static_renaming("__putw_612", "putw"); +__static_renaming("__fgets_618", "fgets"); +__static_renaming("__fgets_620", "fgets"); +__static_renaming("__fgets_622", "fgets"); +__static_renaming("__fgets_624", "fgets"); +__static_renaming("____getdelim_631", "__getdelim"); +__static_renaming("____getdelim_635", "__getdelim"); +__static_renaming("__getdelim_644", "getdelim"); +__static_renaming("__getdelim_648", "getdelim"); +__static_renaming("__getline_656", "getline"); +__static_renaming("__getline_660", "getline"); +__static_renaming("__fputs_667", "fputs"); +__static_renaming("__fputs_669", "fputs"); +__static_renaming("__puts_672", "puts"); +__static_renaming("__ungetc_676", "ungetc"); +__static_renaming("__fseek_714", "fseek"); +__static_renaming("__fseek_716", "fseek"); +__static_renaming("__ftell_720", "ftell"); +__static_renaming("__ftell_722", "ftell"); +__static_renaming("__rewind_726", "rewind"); +__static_renaming("__fseeko_733", "fseeko"); +__static_renaming("__fseeko_744", "fseeko"); +__static_renaming("__ftello_750", "ftello"); +__static_renaming("__ftello_754", "ftello"); +__static_renaming("__ftello_758", "ftello"); +__static_renaming("__fgetpos_766", "fgetpos"); +__static_renaming("__fgetpos_778", "fgetpos"); +__static_renaming("__fsetpos_786", "fsetpos"); +__static_renaming("__fsetpos_790", "fsetpos"); +__static_renaming("__clearerr_796", "clearerr"); +__static_renaming("__feof_800", "feof"); +__static_renaming("__feof_802", "feof"); +__static_renaming("__ferror_806", "ferror"); +__static_renaming("__ferror_808", "ferror"); +__static_renaming("__clearerr_unlocked_812", "clearerr_unlocked"); +__static_renaming("__feof_unlocked_816", "feof_unlocked"); +__static_renaming("__feof_unlocked_818", "feof_unlocked"); +__static_renaming("__ferror_unlocked_822", "ferror_unlocked"); +__static_renaming("__ferror_unlocked_824", "ferror_unlocked"); +__static_renaming("__perror_827", "perror"); +__static_renaming("__perror_828", "perror"); +__static_renaming("__sys_nerr_829", "sys_nerr"); +__static_renaming("__sys_errlist_830", "sys_errlist"); +__static_renaming("__fileno_833", "fileno"); +__static_renaming("__fileno_835", "fileno"); +__static_renaming("__fileno_unlocked_839", "fileno_unlocked"); +__static_renaming("__fileno_unlocked_841", "fileno_unlocked"); +__static_renaming("__popen_845", "popen"); +__static_renaming("__popen_847", "popen"); +__static_renaming("__pclose_851", "pclose"); +__static_renaming("__ctermid_854", "ctermid"); +__static_renaming("__flockfile_857", "flockfile"); +__static_renaming("__ftrylockfile_861", "ftrylockfile"); +__static_renaming("__ftrylockfile_863", "ftrylockfile"); +__static_renaming("__funlockfile_867", "funlockfile"); +__static_renaming("____sprintf_chk_899", "__sprintf_chk"); +__static_renaming("____vsprintf_chk_906", "__vsprintf_chk"); +__static_renaming("____snprintf_chk_920", "__snprintf_chk"); +__static_renaming("____vsnprintf_chk_928", "__vsnprintf_chk"); +__static_renaming("____fprintf_chk_943", "__fprintf_chk"); +__static_renaming("____printf_chk_947", "__printf_chk"); +__static_renaming("____vfprintf_chk_954", "__vfprintf_chk"); +__static_renaming("____vprintf_chk_962", "__vprintf_chk"); +__static_renaming("____dprintf_chk_984", "__dprintf_chk"); +__static_renaming("____vdprintf_chk_990", "__vdprintf_chk"); +__static_renaming("____fgets_chk_1004", "__fgets_chk"); +__static_renaming("____fgets_chk_1006", "__fgets_chk"); +__static_renaming("____fgets_chk_1008", "__fgets_chk"); +__static_renaming("____fgets_alias_1014", "__fgets_alias"); +__static_renaming("____fgets_chk_warn_1021", "__fgets_chk_warn"); +__static_renaming("____cnt_1087", "__cnt"); +__static_renaming("____cptr_1088", "__cptr"); +__static_renaming("__fips_1092", "fips"); +__static_renaming("__ssl_init_Module_1093", "ssl_init_Module"); +__static_renaming("__ssl_init_Module_1094", "ssl_init_Module"); +__static_renaming("__main_1099", "main"); -__static_condition_renaming("__static_condition_default_74", "(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_118", "(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_161", "(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_162", "(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_165", "(defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_223", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_225", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_226", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_227", "(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_230", "(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_232", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_234", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_235", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_236", "(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_249", "!(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); -__static_condition_renaming("__static_condition_default_254", "!(defined _FILE_OFFSET_BITS) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_256", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_274", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_276", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_278", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_280", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_294", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_296", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_300", "(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_304", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_308", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_310", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_318", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_320", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_326", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_328", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_330", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_332", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_336", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_338", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_343", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_345", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_349", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_351", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_356", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_358", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_370", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_374", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_379", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_381", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_393", "!(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_394", "(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_395", "(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_400", "!(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_421", "!(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_429", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_431", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_433", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_435", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_446", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_448", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_449", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_451", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_453", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_454", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_457", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_459", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_469", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_470", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_471", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_473", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_474", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_475", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_480", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_482", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_494", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_495", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_496", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_497", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_499", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_500", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_501", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_502", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_507", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_508", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_510", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_511", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_517", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_528", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_533", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_538", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_540", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_551", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_556", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_562", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_567", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_573", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_575", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_577", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_579", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_586", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_588", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_595", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_597", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_603", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_605", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_610", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_612", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_624", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_625", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_626", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_627", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_633", "!(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_639", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_640", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_641", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_642", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_648", "!(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_649", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_655", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_657", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_661", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_663", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_672", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_680", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_684", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_686", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_688", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_694", "!(defined _FILE_OFFSET_BITS) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_695", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_696", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_706", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_707", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_708", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_714", "!(defined _FILE_OFFSET_BITS) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_715", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_716", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_718", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_719", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_720", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_727", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_729", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_733", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_735", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_739", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_743", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_745", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_749", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_751", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_760", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_762", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_766", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_768", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_772", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_774", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_778", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_784", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_788", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_790", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_794", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_798", "!(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_801", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_804", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_809", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_813", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_817", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_820", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_833", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_840", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_855", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_864", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_870", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_881", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_882", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_883", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_889", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_893", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_898", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_904", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_905", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_906", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_917", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_924", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_931", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_933", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_935", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_941", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_948", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_953", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_954", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_961", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_962", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_968", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_969", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_976", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_977", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_983", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_984", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_991", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_992", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_998", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_999", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1006", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1007", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1015", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_1016", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1017", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1021", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) || (defined __STRICT_ANSI__)"); -__static_condition_renaming("__static_condition_default_1022", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1024", "(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_53", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_76", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_84", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_123", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_169", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_170", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_173", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_182", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_187", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_193", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_198", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_201", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_204", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_210", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_217", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_223", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_229", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_235", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_238", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_241", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_244", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_246", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_248", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_249", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_250", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_253", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_255", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_257", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_258", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_259", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_263", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_264", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_267", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_270", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_271", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_274", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_275", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_278", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_280", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); +__static_condition_renaming("__static_condition_default_282", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_284", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_286", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_288", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_290", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_293", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_296", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_299", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_311", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_313", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_315", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_317", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_331", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_333", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_337", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_341", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_345", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_347", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_355", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_357", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_363", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_365", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_367", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_369", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_373", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_375", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_380", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_382", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_386", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_388", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_393", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_395", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_402", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_408", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_412", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_417", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_419", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_431", "!(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_432", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_433", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_438", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_444", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_455", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_461", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_469", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_471", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_473", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_475", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_486", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_488", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_489", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_491", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_493", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_494", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_497", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_499", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_503", "!(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_510", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_511", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_512", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_514", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_515", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_516", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_521", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_523", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_529", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_536", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_537", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_538", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_539", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_541", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_542", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_543", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_544", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_549", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_550", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_552", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_553", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_559", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_560", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_564", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_568", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_573", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_578", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_583", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_585", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_590", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_597", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_602", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_608", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_613", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_619", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_621", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_623", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_625", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_632", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_633", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_634", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_636", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_637", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_638", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_645", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_646", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_647", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_649", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_650", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_651", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_657", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_658", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_659", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_661", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_662", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_663", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_668", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_670", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_677", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_683", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_684", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_685", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_686", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_692", "!(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_693", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_699", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_700", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_701", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_702", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_708", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_709", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_715", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_717", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_721", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_723", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_727", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_734", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_735", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_736", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_745", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_746", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_747", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_751", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_752", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_753", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_755", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_756", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_757", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_759", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_760", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_761", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_767", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_768", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_769", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_779", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_780", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_781", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_787", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_788", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_789", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_791", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_792", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_793", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_797", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_801", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_803", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_807", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_809", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_813", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_817", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_819", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_823", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_825", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_834", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_836", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_840", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_842", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_846", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_848", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_852", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_858", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_862", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_864", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_868", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_872", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_875", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_878", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_883", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_887", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_891", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_894", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_907", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_914", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_929", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_938", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_944", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_955", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_956", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_957", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_963", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_967", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_972", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_978", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_979", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_980", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_991", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_998", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1005", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1007", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1009", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1015", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1022", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1027", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1028", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1035", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1036", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1042", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1043", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1050", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1051", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1057", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1058", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1065", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1066", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1072", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1073", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1080", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1081", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1089", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_1090", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1091", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1095", "!(defined HAVE_FIPS)"); +__static_condition_renaming("__static_condition_default_1096", "(defined HAVE_FIPS)"); +__static_condition_renaming("__static_condition_default_1097", "!(defined __need___FILE) && (defined HAVE_FIPS)"); +__static_condition_renaming("__static_condition_default_1098", "(defined __need___FILE) && (defined HAVE_FIPS)"); +__static_condition_renaming("__static_condition_default_1100", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -if (__static_condition_default_1024) { +if (__static_condition_default_1100) { __static_parse_error("Unable to parse"); } }; @@ -744,142 +881,142 @@ typedef long int ____ssize_t_49;// L110:L172 typedef long int ____syscall_slong_t_50;// L93:L175 typedef unsigned long int ____syscall_ulong_t_51;// L94:L177 typedef ____off64_t_24 ____loff_t_52;// L181 -typedef ____quad_t_14 * (____qaddr_t_53);// L182 -typedef char * (____caddr_t_54);// L183 -typedef long int ____intptr_t_55;// L110:L186 -typedef unsigned int ____socklen_t_56;// L92:L189 -typedef struct __forward_tag_reference_57 __FILE_58;// L48 -typedef struct __forward_tag_reference_57 ____FILE_59;// L64 -union ____anonymous_tag_60_61 { -unsigned int ____wch_62;// L265 -char ____wchb_63[4];// L92 +typedef ____quad_t_14 * (____qaddr_t_54);// L182 +typedef char * (____caddr_t_55);// L183 +typedef long int ____intptr_t_56;// L110:L186 +typedef unsigned int ____socklen_t_57;// L92:L189 +typedef struct __forward_tag_reference_58 __FILE_59;// L48 +typedef struct __forward_tag_reference_58 ____FILE_60;// L64 +union ____anonymous_tag_61_62 { +unsigned int ____wch_63;// L265 +char ____wchb_64[4];// L92 }; -struct ____anonymous_tag_64_65 { -int ____count_66;// L84 -union ____anonymous_tag_60_61 ____value_67;// L85 +struct ____anonymous_tag_65_66 { +int ____count_67;// L84 +union ____anonymous_tag_61_62 ____value_68;// L85 }; -typedef struct ____anonymous_tag_64_65 ____mbstate_t_68;// L82:L94 -struct ____anonymous_tag_69_70 { -____off_t_23 ____pos_71;// L0 -____mbstate_t_68 ____state_72;// L0 +typedef struct ____anonymous_tag_65_66 ____mbstate_t_69;// L82:L94 +struct ____anonymous_tag_70_71 { +____off_t_23 ____pos_72;// L0 +____mbstate_t_69 ____state_74;// L0 }; -typedef struct ____anonymous_tag_69_70 ___G_fpos_t_75;// L21:L25 -struct ____anonymous_tag_76_77 { -____off64_t_24 ____pos_78;// L0 -____mbstate_t_68 ____state_79;// L0 +typedef struct ____anonymous_tag_70_71 ___G_fpos_t_77;// L21:L25 +struct ____anonymous_tag_78_79 { +____off64_t_24 ____pos_80;// L0 +____mbstate_t_69 ____state_82;// L0 }; -typedef struct ____anonymous_tag_76_77 ___G_fpos64_t_81;// L26:L30 -typedef __builtin_va_list ____gnuc_va_list_82;// L40 -typedef void ___IO_lock_t_84;// L150 -struct ___IO_marker_86 { -struct __forward_tag_reference_85 * (___next_87);// L0 -struct __forward_tag_reference_57 * (___sbuf_88);// L0 -int ___pos_89;// L162 +typedef struct ____anonymous_tag_78_79 ___G_fpos64_t_85;// L26:L30 +typedef __builtin_va_list ____gnuc_va_list_86;// L40 +typedef void ___IO_lock_t_88;// L150 +struct ___IO_marker_90 { +struct __forward_tag_reference_89 * (___next_91);// L0 +struct __forward_tag_reference_58 * (___sbuf_92);// L0 +int ___pos_93;// L162 }; -enum ____codecvt_result_94 { -____codecvt_ok_90, -____codecvt_partial_91, -____codecvt_error_92, -____codecvt_noconv_93, +enum ____codecvt_result_98 { +____codecvt_ok_94, +____codecvt_partial_95, +____codecvt_error_96, +____codecvt_noconv_97, }; -struct ___IO_FILE_95 { -int ___flags_96;// L242 -char * (___IO_read_ptr_97);// L247 -char * (___IO_read_end_98);// L248 -char * (___IO_read_base_99);// L249 -char * (___IO_write_base_100);// L250 -char * (___IO_write_ptr_101);// L251 -char * (___IO_write_end_102);// L252 -char * (___IO_buf_base_103);// L253 -char * (___IO_buf_end_104);// L254 -char * (___IO_save_base_105);// L256 -char * (___IO_backup_base_106);// L257 -char * (___IO_save_end_107);// L258 -struct ___IO_marker_86 * (___markers_108);// L260 -struct __forward_tag_reference_57 * (___chain_109);// L0 -int ___fileno_110;// L264 -int ___flags2_111;// L268 -____off_t_23 ___old_offset_112;// L0 -unsigned short ___cur_column_113;// L274 -signed char ___vtable_offset_114;// L275 -char ___shortbuf_115[1];// L276 -___IO_lock_t_84 * (___lock_116);// L0 +struct ___IO_FILE_99 { +int ___flags_100;// L242 +char * (___IO_read_ptr_101);// L247 +char * (___IO_read_end_102);// L248 +char * (___IO_read_base_103);// L249 +char * (___IO_write_base_104);// L250 +char * (___IO_write_ptr_105);// L251 +char * (___IO_write_end_106);// L252 +char * (___IO_buf_base_107);// L253 +char * (___IO_buf_end_108);// L254 +char * (___IO_save_base_109);// L256 +char * (___IO_backup_base_110);// L257 +char * (___IO_save_end_111);// L258 +struct ___IO_marker_90 * (___markers_112);// L260 +struct __forward_tag_reference_58 * (___chain_113);// L0 +int ___fileno_114;// L264 +int ___flags2_115;// L268 +____off_t_23 ___old_offset_116;// L0 +unsigned short ___cur_column_118;// L274 +signed char ___vtable_offset_119;// L275 +char ___shortbuf_120[1];// L276 +___IO_lock_t_88 * (___lock_121);// L0 }; -struct ___IO_FILE_119 { -int ___flags_120;// L242 -char * (___IO_read_ptr_121);// L247 -char * (___IO_read_end_122);// L248 -char * (___IO_read_base_123);// L249 -char * (___IO_write_base_124);// L250 -char * (___IO_write_ptr_125);// L251 -char * (___IO_write_end_126);// L252 -char * (___IO_buf_base_127);// L253 -char * (___IO_buf_end_128);// L254 -char * (___IO_save_base_129);// L256 -char * (___IO_backup_base_130);// L257 -char * (___IO_save_end_131);// L258 -struct ___IO_marker_86 * (___markers_132);// L260 -struct __forward_tag_reference_57 * (___chain_133);// L0 -int ___fileno_134;// L264 -int ___flags2_135;// L268 -____off_t_23 ___old_offset_136;// L0 -unsigned short ___cur_column_137;// L274 -signed char ___vtable_offset_138;// L275 -char ___shortbuf_139[1];// L276 -___IO_lock_t_84 * (___lock_140);// L0 -____off64_t_24 ___offset_142;// L0 -void * (____pad1_143);// L297 -void * (____pad2_144);// L298 -void * (____pad3_145);// L299 -void * (____pad4_146);// L300 -__size_t_1 ____pad5_147;// L0 -int ___mode_148;// L303 -char ___unused2_149[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +struct ___IO_FILE_124 { +int ___flags_125;// L242 +char * (___IO_read_ptr_126);// L247 +char * (___IO_read_end_127);// L248 +char * (___IO_read_base_128);// L249 +char * (___IO_write_base_129);// L250 +char * (___IO_write_ptr_130);// L251 +char * (___IO_write_end_131);// L252 +char * (___IO_buf_base_132);// L253 +char * (___IO_buf_end_133);// L254 +char * (___IO_save_base_134);// L256 +char * (___IO_backup_base_135);// L257 +char * (___IO_save_end_136);// L258 +struct ___IO_marker_90 * (___markers_137);// L260 +struct __forward_tag_reference_58 * (___chain_138);// L0 +int ___fileno_139;// L264 +int ___flags2_140;// L268 +____off_t_23 ___old_offset_141;// L0 +unsigned short ___cur_column_143;// L274 +signed char ___vtable_offset_144;// L275 +char ___shortbuf_145[1];// L276 +___IO_lock_t_88 * (___lock_146);// L0 +____off64_t_24 ___offset_148;// L0 +void * (____pad1_150);// L297 +void * (____pad2_151);// L298 +void * (____pad3_152);// L299 +void * (____pad4_153);// L300 +__size_t_1 ____pad5_154;// L0 +int ___mode_155;// L303 +char ___unused2_156[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -struct ___IO_FILE_complete_150 { -struct ___IO_FILE_95 ___file_151;// L286 -____off64_t_24 ___offset_153;// L0 -void * (____pad1_154);// L297 -void * (____pad2_155);// L298 -void * (____pad3_156);// L299 -void * (____pad4_157);// L300 -__size_t_1 ____pad5_158;// L0 -int ___mode_159;// L303 -char ___unused2_160[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +struct ___IO_FILE_complete_157 { +struct ___IO_FILE_99 ___file_158;// L286 +____off64_t_24 ___offset_160;// L0 +void * (____pad1_162);// L297 +void * (____pad2_163);// L298 +void * (____pad3_164);// L299 +void * (____pad4_165);// L300 +__size_t_1 ____pad5_166;// L0 +int ___mode_167;// L303 +char ___unused2_168[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -typedef struct ___IO_FILE_95 ___IO_FILE_163;// L310 -typedef struct ___IO_FILE_119 ___IO_FILE_164;// L310 -typedef ____ssize_t_49 (____io_read_fn_173) (void * (____cookie_170), char * (____buf_171), __size_t_1 ____nbytes_172);// L333 -typedef ____ssize_t_49 (____io_write_fn_177) (void * (____cookie_174), const char * (____buf_175), __size_t_1 ____n_176);// L341:L342 -typedef int (____io_seek_fn_181) (void * (____cookie_178), ____off64_t_24 * (____pos_179), int ____w_180);// L350 -typedef int (____io_close_fn_183) (void * (____cookie_182));// L353 -typedef ____gnuc_va_list_82 __va_list_248;// L79 -typedef ____off_t_23 __off_t_250;// L90 -typedef ____off64_t_24 __off_t_251;// L92 -typedef ____ssize_t_49 __ssize_t_252;// L102 -typedef ___G_fpos_t_75 __fpos_t_253;// L110 -typedef ___G_fpos64_t_81 __fpos_t_255;// L112 -extern const char * const __sys_errlist_756[];// L27 +typedef struct ___IO_FILE_99 ___IO_FILE_171;// L310 +typedef struct ___IO_FILE_124 ___IO_FILE_172;// L310 +typedef ____ssize_t_49 (____io_read_fn_181) (void * (____cookie_178), char * (____buf_179), __size_t_1 ____nbytes_180);// L333 +typedef ____ssize_t_49 (____io_write_fn_186) (void * (____cookie_183), const char * (____buf_184), __size_t_1 ____n_185);// L341:L342 +typedef int (____io_seek_fn_192) (void * (____cookie_188), ____off64_t_24 * (____pos_189), int ____w_191);// L350 +typedef int (____io_close_fn_195) (void * (____cookie_194));// L353 +typedef ____gnuc_va_list_86 __va_list_279;// L79 +typedef ____off_t_23 __off_t_281;// L90 +typedef ____off64_t_24 __off_t_283;// L92 +typedef ____ssize_t_49 __ssize_t_285;// L102 +typedef ___G_fpos_t_77 __fpos_t_287;// L110 +typedef ___G_fpos64_t_85 __fpos_t_289;// L112 +extern const char * const __sys_errlist_830[];// L27 -struct __forward_tag_reference_57 { // generated union of struct variations +struct __forward_tag_reference_89 { // generated union of struct variations union { -struct ___IO_FILE_95 ___IO_FILE_95; -struct ___IO_FILE_119 ___IO_FILE_119; +struct ___IO_marker_90 ___IO_marker_90; }; }; -struct __forward_tag_reference_85 { // generated union of struct variations +struct __forward_tag_reference_58 { // generated union of struct variations union { -struct ___IO_marker_86 ___IO_marker_86; +struct ___IO_FILE_99 ___IO_FILE_99; +struct ___IO_FILE_124 ___IO_FILE_124; }; }; -struct __forward_tag_reference_83 { // generated union of struct variations +struct __forward_tag_reference_87 { // generated union of struct variations union { }; }; -struct __forward_tag_reference_166 { // generated union of struct variations +struct __forward_tag_reference_174 { // generated union of struct variations union { }; }; @@ -938,225 +1075,225 @@ union { // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_57 ;// L0 +struct __forward_tag_reference_58 ;// L0 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_83 ;// L0 -struct __forward_tag_reference_83 ;// L0 -struct __forward_tag_reference_57 ;// L0 +struct __forward_tag_reference_87 ;// L0 +struct __forward_tag_reference_87 ;// L0 +struct __forward_tag_reference_58 ;// L0 // typedef moved to top of scope -struct ___IO_marker_86 ;// L156 -enum ____codecvt_result_94 ;// L176 -struct ___IO_FILE_95 ;// L241 +struct ___IO_marker_90 ;// L156 +enum ____codecvt_result_98 ;// L176 +struct ___IO_FILE_99 ;// L241 -struct ___IO_FILE_119 ;// L241 -struct ___IO_FILE_complete_150 ;// L241 +struct ___IO_FILE_124 ;// L241 +struct ___IO_FILE_complete_157 ;// L241 // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_166 ;// L0 -extern struct __forward_tag_reference_166 ___IO_2_1_stdin__167;// L315 -extern struct __forward_tag_reference_166 ___IO_2_1_stdout__168;// L316 -extern struct __forward_tag_reference_166 ___IO_2_1_stderr__169;// L317 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern int (____underflow_184) (___IO_FILE_163 *);// L385 -extern int (____underflow_185) (___IO_FILE_164 *);// L385 -extern int (____uflow_186) (___IO_FILE_163 *);// L386 -extern int (____uflow_187) (___IO_FILE_164 *);// L386 -extern int (____overflow_188) (___IO_FILE_163 *, int );// L387 -extern int (____overflow_189) (___IO_FILE_164 *, int );// L387 -extern int (___IO_getc_193) (___IO_FILE_163 * (____fp_190));// L429 -extern int (___IO_getc_194) (___IO_FILE_164 * (____fp_191));// L429 -extern int (___IO_putc_199) (int ____c_195, ___IO_FILE_163 * (____fp_196));// L430 -extern int (___IO_putc_200) (int ____c_195, ___IO_FILE_164 * (____fp_197));// L430 -extern int (___IO_feof_204) (___IO_FILE_163 * (____fp_201));// L431 -extern int (___IO_feof_205) (___IO_FILE_164 * (____fp_202));// L431 -extern int (___IO_ferror_209) (___IO_FILE_163 * (____fp_206));// L432 -extern int (___IO_ferror_210) (___IO_FILE_164 * (____fp_207));// L432 -extern int (___IO_peekc_locked_214) (___IO_FILE_163 * (____fp_211));// L434 -extern int (___IO_peekc_locked_215) (___IO_FILE_164 * (____fp_212));// L434 -extern void (___IO_flockfile_216) (___IO_FILE_163 *);// L440 -extern void (___IO_flockfile_217) (___IO_FILE_164 *);// L440 -extern void (___IO_funlockfile_218) (___IO_FILE_163 *);// L441 -extern void (___IO_funlockfile_219) (___IO_FILE_164 *);// L441 -extern int (___IO_ftrylockfile_220) (___IO_FILE_163 *);// L442 -extern int (___IO_ftrylockfile_221) (___IO_FILE_164 *);// L442 -extern int (___IO_vfscanf_222) (___IO_FILE_163 * __restrict , const char * __restrict , ____gnuc_va_list_82 , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_224) (___IO_FILE_164 * __restrict , const char * __restrict , ____gnuc_va_list_82 , int * __restrict );// L459:L460 - +struct __forward_tag_reference_174 ;// L0 +extern struct __forward_tag_reference_174 ___IO_2_1_stdin__175;// L315 +extern struct __forward_tag_reference_174 ___IO_2_1_stdout__176;// L316 +extern struct __forward_tag_reference_174 ___IO_2_1_stderr__177;// L317 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern int (____underflow_196) (___IO_FILE_171 *);// L385 +extern int (____underflow_197) (___IO_FILE_172 *);// L385 +extern int (____uflow_199) (___IO_FILE_171 *);// L386 +extern int (____uflow_200) (___IO_FILE_172 *);// L386 +extern int (____overflow_202) (___IO_FILE_171 *, int );// L387 +extern int (____overflow_203) (___IO_FILE_172 *, int );// L387 +extern int (___IO_getc_208) (___IO_FILE_171 * (____fp_205));// L429 +extern int (___IO_getc_209) (___IO_FILE_172 * (____fp_206));// L429 +extern int (___IO_putc_215) (int ____c_211, ___IO_FILE_171 * (____fp_212));// L430 +extern int (___IO_putc_216) (int ____c_211, ___IO_FILE_172 * (____fp_213));// L430 +extern int (___IO_feof_221) (___IO_FILE_171 * (____fp_218));// L431 +extern int (___IO_feof_222) (___IO_FILE_172 * (____fp_219));// L431 +extern int (___IO_ferror_227) (___IO_FILE_171 * (____fp_224));// L432 +extern int (___IO_ferror_228) (___IO_FILE_172 * (____fp_225));// L432 +extern int (___IO_peekc_locked_233) (___IO_FILE_171 * (____fp_230));// L434 +extern int (___IO_peekc_locked_234) (___IO_FILE_172 * (____fp_231));// L434 +extern void (___IO_flockfile_236) (___IO_FILE_171 *);// L440 +extern void (___IO_flockfile_237) (___IO_FILE_172 *);// L440 +extern void (___IO_funlockfile_239) (___IO_FILE_171 *);// L441 +extern void (___IO_funlockfile_240) (___IO_FILE_172 *);// L441 +extern int (___IO_ftrylockfile_242) (___IO_FILE_171 *);// L442 +extern int (___IO_ftrylockfile_243) (___IO_FILE_172 *);// L442 +extern int (___IO_vfscanf_245) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_247) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_251) (___IO_FILE_171 * __restrict , const char * __restrict , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_252) (___IO_FILE_172 * __restrict , const char * __restrict , int * __restrict );// L459:L460 +extern int (___IO_vfprintf_254) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 +extern int (___IO_vfprintf_256) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 +extern int (___IO_vfprintf_260) ();// L461:L462 +extern ____ssize_t_49 (___IO_padn_261) (___IO_FILE_171 *, int , ____ssize_t_49 );// L463 +extern ____ssize_t_49 (___IO_padn_262) (___IO_FILE_172 *, int , ____ssize_t_49 );// L463 +extern __size_t_1 (___IO_sgetn_265) (___IO_FILE_171 *, void *, __size_t_1 );// L464 +extern __size_t_1 (___IO_sgetn_266) (___IO_FILE_172 *, void *, __size_t_1 );// L464 +extern ____off64_t_24 (___IO_seekoff_268) (___IO_FILE_171 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekoff_269) (___IO_FILE_172 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekpos_272) (___IO_FILE_171 *, ____off64_t_24 , int );// L467 +extern ____off64_t_24 (___IO_seekpos_273) (___IO_FILE_172 *, ____off64_t_24 , int );// L467 +extern void (___IO_free_backup_area_276) (___IO_FILE_171 *);// L469 +extern void (___IO_free_backup_area_277) (___IO_FILE_172 *);// L469 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern struct ___IO_FILE_99 * (__stdin_291);// L168 +extern struct ___IO_FILE_124 * (__stdin_292);// L168 +extern struct ___IO_FILE_99 * (__stdout_294);// L169 +extern struct ___IO_FILE_124 * (__stdout_295);// L169 +extern struct ___IO_FILE_99 * (__stderr_297);// L170 +extern struct ___IO_FILE_124 * (__stderr_298);// L170 +extern int (__remove_301) (const char * (____filename_300));// L178 +extern int (__rename_304) (const char * (____old_302), const char * (____new_303));// L180 +extern int (__renameat_309) (int ____oldfd_305, const char * (____old_306), int ____newfd_307, const char * (____new_308));// L185:L186 +extern __FILE_59 * ((__tmpfile_310) (void ));// L195 +extern __FILE_59 * ((__tmpfile_316) (void ));// L198 +extern __FILE_59 * ((__tmpfile_314) (void ));// L195 +extern __FILE_59 * ((__tmpfile_312) (void ));// L198 +extern char * ((__tmpnam_319) (char * (____s_318)));// L209 +extern char * ((__tmpnam_320) (char * (____s_318)));// L209 +extern char * ((__tmpnam_r_322) (char * (____s_321)));// L215 +extern char * ((__tmpnam_r_323) (char * (____s_321)));// L215 +extern char * ((__tempnam_326) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 +extern char * ((__tempnam_327) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 +extern int (__fclose_330) (__FILE_59 * (____stream_328));// L237 +extern int (__fclose_332) (__FILE_59 * (____stream_328));// L237 +extern int (__fflush_336) (__FILE_59 * (____stream_334));// L242 +extern int (__fflush_unlocked_340) (__FILE_59 * (____stream_338));// L252 +extern __FILE_59 * ((__fopen_344) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 +extern __FILE_59 * ((__fopen_346) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 +extern __FILE_59 * ((__fopen_354) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 +extern __FILE_59 * ((__fopen_356) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 +extern __FILE_59 * ((__freopen_362) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 +extern __FILE_59 * ((__freopen_368) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 +extern __FILE_59 * ((__freopen_366) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 +extern __FILE_59 * ((__freopen_364) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 +extern __FILE_59 * ((__fdopen_372) (int ____fd_370, const char * (____modes_371)));// L306 +extern __FILE_59 * ((__fdopen_374) (int ____fd_370, const char * (____modes_371)));// L306 +extern __FILE_59 * ((__fmemopen_379) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 +extern __FILE_59 * ((__fmemopen_381) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 +extern __FILE_59 * ((__open_memstream_385) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 +extern __FILE_59 * ((__open_memstream_387) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 +extern void (__setbuf_392) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 +extern void (__setbuf_394) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 +extern int (__setvbuf_401) (__FILE_59 * __restrict ____stream_396, char * __restrict ____buf_398, int ____modes_399, __size_t_1 ____n_400);// L336:L337 +extern void (__setbuffer_407) (__FILE_59 * __restrict ____stream_403, char * __restrict ____buf_405, __size_t_1 ____size_406);// L343:L344 +extern void (__setlinebuf_411) (__FILE_59 * (____stream_409));// L347 +extern int (__fprintf_416) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 +extern int (__fprintf_418) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 +extern int (__printf_421) (const char * __restrict ____format_420, ... );// L362 +extern int (__sprintf_424) (char * __restrict ____s_422, const char * __restrict ____format_423, ... );// L364:L365 +extern int (__vfprintf_430) (__FILE_59 * __restrict ____s_425, const char * __restrict ____format_427, ____gnuc_va_list_86 ____arg_428);// L371:L372 +extern int (__vprintf_437) (const char * __restrict ____format_434, ____gnuc_va_list_86 ____arg_435);// L377 +extern int (__vsprintf_443) (char * __restrict ____s_439, const char * __restrict ____format_440, ____gnuc_va_list_86 ____arg_441);// L379:L380 +extern int (__snprintf_448) (char * __restrict ____s_445, __size_t_1 ____maxlen_446, const char * __restrict ____format_447, ... );// L386:L388 +extern int (__vsnprintf_454) (char * __restrict ____s_449, __size_t_1 ____maxlen_450, const char * __restrict ____format_451, ____gnuc_va_list_86 ____arg_452);// L390:L392 +extern int (__vdprintf_460) (int ____fd_456, const char * __restrict ____fmt_457, ____gnuc_va_list_86 ____arg_458);// L412:L414 +extern int (__dprintf_464) (int ____fd_462, const char * __restrict ____fmt_463, ... );// L415:L416 +extern int (__fscanf_468) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_470) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_472) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_474) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__scanf_477) (const char * __restrict ____format_476, ... );// L431 +extern int (__scanf_478) (const char * __restrict ____format_476, ... );// L431 +extern int (__sscanf_481) (const char * __restrict ____s_479, const char * __restrict ____format_480, ... );// L433:L434 -extern int (___IO_vfprintf_231) (___IO_FILE_163 * __restrict , const char * __restrict , ____gnuc_va_list_82 );// L461:L462 -extern int (___IO_vfprintf_233) (___IO_FILE_164 * __restrict , const char * __restrict , ____gnuc_va_list_82 );// L461:L462 -extern ____ssize_t_49 (___IO_padn_238) (___IO_FILE_163 *, int , ____ssize_t_49 );// L463 -extern ____ssize_t_49 (___IO_padn_239) (___IO_FILE_164 *, int , ____ssize_t_49 );// L463 -extern __size_t_1 (___IO_sgetn_240) (___IO_FILE_163 *, void *, __size_t_1 );// L464 -extern __size_t_1 (___IO_sgetn_241) (___IO_FILE_164 *, void *, __size_t_1 );// L464 -extern ____off64_t_24 (___IO_seekoff_242) (___IO_FILE_163 *, ____off64_t_24 , int , int );// L466 -extern ____off64_t_24 (___IO_seekoff_243) (___IO_FILE_164 *, ____off64_t_24 , int , int );// L466 -extern ____off64_t_24 (___IO_seekpos_244) (___IO_FILE_163 *, ____off64_t_24 , int );// L467 -extern ____off64_t_24 (___IO_seekpos_245) (___IO_FILE_164 *, ____off64_t_24 , int );// L467 -extern void (___IO_free_backup_area_246) (___IO_FILE_163 *);// L469 -extern void (___IO_free_backup_area_247) (___IO_FILE_164 *);// L469 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern struct ___IO_FILE_95 * (__stdin_257);// L168 -extern struct ___IO_FILE_119 * (__stdin_258);// L168 -extern struct ___IO_FILE_95 * (__stdout_259);// L169 -extern struct ___IO_FILE_119 * (__stdout_260);// L169 -extern struct ___IO_FILE_95 * (__stderr_261);// L170 -extern struct ___IO_FILE_119 * (__stderr_262);// L170 -extern int (__remove_264) (const char * (____filename_263));// L178 -extern int (__rename_267) (const char * (____old_265), const char * (____new_266));// L180 -extern int (__renameat_272) (int ____oldfd_268, const char * (____old_269), int ____newfd_270, const char * (____new_271));// L185:L186 -extern __FILE_58 * ((__tmpfile_273) (void ));// L195 -extern __FILE_58 * ((__tmpfile_279) (void ));// L198 -extern __FILE_58 * ((__tmpfile_277) (void ));// L198 -extern __FILE_58 * ((__tmpfile_275) (void ));// L195 -extern char * ((__tmpnam_282) (char * (____s_281)));// L209 -extern char * ((__tmpnam_283) (char * (____s_281)));// L209 -extern char * ((__tmpnam_r_285) (char * (____s_284)));// L215 -extern char * ((__tmpnam_r_286) (char * (____s_284)));// L215 -extern char * ((__tempnam_289) (const char * (____dir_287), const char * (____pfx_288)));// L227:L228 -extern char * ((__tempnam_290) (const char * (____dir_287), const char * (____pfx_288)));// L227:L228 -extern int (__fclose_293) (__FILE_58 * (____stream_291));// L237 -extern int (__fclose_295) (__FILE_58 * (____stream_291));// L237 -extern int (__fflush_299) (__FILE_58 * (____stream_297));// L242 -extern int (__fflush_unlocked_303) (__FILE_58 * (____stream_301));// L252 -extern __FILE_58 * ((__fopen_307) (const char * __restrict ____filename_305, const char * __restrict ____modes_306));// L272:L273 -extern __FILE_58 * ((__fopen_309) (const char * __restrict ____filename_305, const char * __restrict ____modes_306));// L272:L273 -extern __FILE_58 * ((__fopen_317) (const char * __restrict ____filename_315, const char * __restrict ____modes_316));// L283:L285 -extern __FILE_58 * ((__fopen_319) (const char * __restrict ____filename_315, const char * __restrict ____modes_316));// L283:L285 -extern __FILE_58 * ((__freopen_325) (const char * __restrict ____filename_311, const char * __restrict ____modes_312, __FILE_58 * __restrict ____stream_313));// L278:L280 -extern __FILE_58 * ((__freopen_331) (const char * __restrict ____filename_321, const char * __restrict ____modes_322, __FILE_58 * __restrict ____stream_323));// L286:L289 -extern __FILE_58 * ((__freopen_329) (const char * __restrict ____filename_321, const char * __restrict ____modes_322, __FILE_58 * __restrict ____stream_323));// L286:L289 -extern __FILE_58 * ((__freopen_327) (const char * __restrict ____filename_311, const char * __restrict ____modes_312, __FILE_58 * __restrict ____stream_313));// L278:L280 -extern __FILE_58 * ((__fdopen_335) (int ____fd_333, const char * (____modes_334)));// L306 -extern __FILE_58 * ((__fdopen_337) (int ____fd_333, const char * (____modes_334)));// L306 -extern __FILE_58 * ((__fmemopen_342) (void * (____s_339), __size_t_1 ____len_340, const char * (____modes_341)));// L319:L320 -extern __FILE_58 * ((__fmemopen_344) (void * (____s_339), __size_t_1 ____len_340, const char * (____modes_341)));// L319:L320 -extern __FILE_58 * ((__open_memstream_348) (char * (* (____bufloc_346)), __size_t_1 * (____sizeloc_347)));// L325 -extern __FILE_58 * ((__open_memstream_350) (char * (* (____bufloc_346)), __size_t_1 * (____sizeloc_347)));// L325 -extern void (__setbuf_355) (__FILE_58 * __restrict ____stream_352, char * __restrict ____buf_354);// L332 -extern void (__setbuf_357) (__FILE_58 * __restrict ____stream_352, char * __restrict ____buf_354);// L332 -extern int (__setvbuf_364) (__FILE_58 * __restrict ____stream_359, char * __restrict ____buf_361, int ____modes_362, __size_t_1 ____n_363);// L336:L337 -extern void (__setbuffer_369) (__FILE_58 * __restrict ____stream_365, char * __restrict ____buf_367, __size_t_1 ____size_368);// L343:L344 -extern void (__setlinebuf_373) (__FILE_58 * (____stream_371));// L347 -extern int (__fprintf_378) (__FILE_58 * __restrict ____stream_375, const char * __restrict ____format_377, ... );// L356:L357 -extern int (__fprintf_380) (__FILE_58 * __restrict ____stream_375, const char * __restrict ____format_377, ... );// L356:L357 -extern int (__printf_383) (const char * __restrict ____format_382, ... );// L362 -extern int (__sprintf_386) (char * __restrict ____s_384, const char * __restrict ____format_385, ... );// L364:L365 -extern int (__vfprintf_392) (__FILE_58 * __restrict ____s_387, const char * __restrict ____format_389, ____gnuc_va_list_82 ____arg_390);// L371:L372 -extern int (__vprintf_399) (const char * __restrict ____format_396, ____gnuc_va_list_82 ____arg_397);// L377 -extern int (__vsprintf_405) (char * __restrict ____s_401, const char * __restrict ____format_402, ____gnuc_va_list_82 ____arg_403);// L379:L380 -extern int (__snprintf_409) (char * __restrict ____s_406, __size_t_1 ____maxlen_407, const char * __restrict ____format_408, ... );// L386:L388 -extern int (__vsnprintf_415) (char * __restrict ____s_410, __size_t_1 ____maxlen_411, const char * __restrict ____format_412, ____gnuc_va_list_82 ____arg_413);// L390:L392 -extern int (__vdprintf_420) (int ____fd_416, const char * __restrict ____fmt_417, ____gnuc_va_list_82 ____arg_418);// L412:L414 -extern int (__dprintf_424) (int ____fd_422, const char * __restrict ____fmt_423, ... );// L415:L416 -extern int (__fscanf_428) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 -extern int (__fscanf_430) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 -extern int (__fscanf_432) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 -extern int (__fscanf_434) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 -extern int (__scanf_437) (const char * __restrict ____format_436, ... );// L431 -extern int (__scanf_438) (const char * __restrict ____format_436, ... );// L431 -extern int (__sscanf_441) (const char * __restrict ____s_439, const char * __restrict ____format_440, ... );// L433:L434 +extern int (__vfscanf_509) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 +extern int (__vfscanf_513) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 +extern int (__vscanf_520) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 +extern int (__vscanf_522) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 +extern int (__vsscanf_528) (const char * __restrict ____s_524, const char * __restrict ____format_525, ____gnuc_va_list_86 ____arg_526);// L483:L485 -extern int (__vfscanf_468) (__FILE_58 * __restrict ____s_463, const char * __restrict ____format_465, ____gnuc_va_list_82 ____arg_466);// L471:L473 -extern int (__vfscanf_472) (__FILE_58 * __restrict ____s_463, const char * __restrict ____format_465, ____gnuc_va_list_82 ____arg_466);// L471:L473 -extern int (__vscanf_479) (const char * __restrict ____format_476, ____gnuc_va_list_82 ____arg_477);// L479:L480 -extern int (__vscanf_481) (const char * __restrict ____format_476, ____gnuc_va_list_82 ____arg_477);// L479:L480 -extern int (__vsscanf_487) (const char * __restrict ____s_483, const char * __restrict ____format_484, ____gnuc_va_list_82 ____arg_485);// L483:L485 +extern int (__fgetc_563) (__FILE_59 * (____stream_561));// L531 +extern int (__getc_567) (__FILE_59 * (____stream_565));// L532 +extern int (__getchar_569) (void );// L538 +extern int (__getc_unlocked_572) (__FILE_59 * (____stream_570));// L550 +extern int (__getchar_unlocked_574) (void );// L551 +extern int (__fgetc_unlocked_577) (__FILE_59 * (____stream_575));// L561 +extern int (__fputc_582) (int ____c_579, __FILE_59 * (____stream_580));// L573 +extern int (__fputc_584) (int ____c_579, __FILE_59 * (____stream_580));// L573 +extern int (__putc_589) (int ____c_586, __FILE_59 * (____stream_587));// L574 +extern int (__putchar_592) (int ____c_591);// L580 +extern int (__fputc_unlocked_596) (int ____c_593, __FILE_59 * (____stream_594));// L594 +extern int (__putc_unlocked_601) (int ____c_598, __FILE_59 * (____stream_599));// L602 +extern int (__putchar_unlocked_604) (int ____c_603);// L603 +extern int (__getw_607) (__FILE_59 * (____stream_605));// L610 +extern int (__putw_612) (int ____w_609, __FILE_59 * (____stream_610));// L613 +extern char * ((__fgets_618) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_620) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_622) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_624) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern ____ssize_t_49 (____getdelim_631) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 +extern ____ssize_t_49 (____getdelim_635) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 +extern ____ssize_t_49 (__getdelim_644) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 +extern ____ssize_t_49 (__getdelim_648) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 +extern ____ssize_t_49 (__getline_656) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 +extern ____ssize_t_49 (__getline_660) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 +extern int (__fputs_667) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 +extern int (__fputs_669) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 +extern int (__puts_672) (const char * (____s_671));// L695 +extern int (__ungetc_676) (int ____c_673, __FILE_59 * (____stream_674));// L702 +extern int (__fseek_714) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 +extern int (__fseek_716) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 +extern long int (__ftell_720) (__FILE_59 * (____stream_718));// L754 +extern long int (__ftell_722) (__FILE_59 * (____stream_718));// L754 +extern void (__rewind_726) (__FILE_59 * (____stream_724));// L759 +extern int (__fseeko_733) (__FILE_59 * (____stream_728), ____off_t_23 ____off_730, int ____whence_732);// L773 +extern int (__fseeko_744) (__FILE_59 * (____stream_739), ____off64_t_24 ____off_741, int ____whence_743);// L781:L783 +extern ____off_t_23 (__ftello_758) (__FILE_59 * (____stream_737));// L778 +extern ____off_t_23 (__ftello_750) (__FILE_59 * (____stream_737));// L778 +extern int (__fgetpos_766) (__FILE_59 * __restrict ____stream_762, __fpos_t_287 * __restrict ____pos_764);// L798 +extern ____off64_t_24 (__ftello_754) (__FILE_59 * (____stream_748));// L784 +extern int (__fgetpos_778) (__FILE_59 * __restrict ____stream_774, __fpos_t_289 * __restrict ____pos_776);// L806:L807 +extern int (__fsetpos_786) (__FILE_59 * (____stream_770), const __fpos_t_287 * (____pos_772));// L803 +extern int (__fsetpos_790) (__FILE_59 * (____stream_782), const __fpos_t_289 * (____pos_784));// L808:L809 +extern void (__clearerr_796) (__FILE_59 * (____stream_794));// L826 +extern int (__feof_800) (__FILE_59 * (____stream_798));// L828 +extern int (__feof_802) (__FILE_59 * (____stream_798));// L828 +extern int (__ferror_806) (__FILE_59 * (____stream_804));// L830 +extern int (__ferror_808) (__FILE_59 * (____stream_804));// L830 +extern void (__clearerr_unlocked_812) (__FILE_59 * (____stream_810));// L835 +extern int (__feof_unlocked_816) (__FILE_59 * (____stream_814));// L836 +extern int (__feof_unlocked_818) (__FILE_59 * (____stream_814));// L836 +extern int (__ferror_unlocked_822) (__FILE_59 * (____stream_820));// L837 +extern int (__ferror_unlocked_824) (__FILE_59 * (____stream_820));// L837 +extern void (__perror_827) (const char * (____s_826));// L846 +extern void (__perror_828) (const char * (____s_826));// L846 +extern int __sys_nerr_829;// L26 - -extern int (__fgetc_520) (__FILE_58 * (____stream_518));// L531 -extern int (__getc_523) (__FILE_58 * (____stream_521));// L532 -extern int (__getchar_524) (void );// L538 -extern int (__getc_unlocked_527) (__FILE_58 * (____stream_525));// L550 -extern int (__getchar_unlocked_529) (void );// L551 -extern int (__fgetc_unlocked_532) (__FILE_58 * (____stream_530));// L561 -extern int (__fputc_537) (int ____c_534, __FILE_58 * (____stream_535));// L573 -extern int (__fputc_539) (int ____c_534, __FILE_58 * (____stream_535));// L573 -extern int (__putc_544) (int ____c_541, __FILE_58 * (____stream_542));// L574 -extern int (__putchar_546) (int ____c_545);// L580 -extern int (__fputc_unlocked_550) (int ____c_547, __FILE_58 * (____stream_548));// L594 -extern int (__putc_unlocked_555) (int ____c_552, __FILE_58 * (____stream_553));// L602 -extern int (__putchar_unlocked_558) (int ____c_557);// L603 -extern int (__getw_561) (__FILE_58 * (____stream_559));// L610 -extern int (__putw_566) (int ____w_563, __FILE_58 * (____stream_564));// L613 -extern char * ((__fgets_572) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 -extern char * ((__fgets_574) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 -extern char * ((__fgets_576) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 -extern char * ((__fgets_578) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 -extern ____ssize_t_49 (____getdelim_585) (char * (* __restrict ____lineptr_580), __size_t_1 * __restrict ____n_581, int ____delimiter_582, __FILE_58 * __restrict ____stream_583);// L665:L667 -extern ____ssize_t_49 (____getdelim_587) (char * (* __restrict ____lineptr_580), __size_t_1 * __restrict ____n_581, int ____delimiter_582, __FILE_58 * __restrict ____stream_583);// L665:L667 -extern ____ssize_t_49 (__getdelim_594) (char * (* __restrict ____lineptr_589), __size_t_1 * __restrict ____n_590, int ____delimiter_591, __FILE_58 * __restrict ____stream_592);// L668:L670 -extern ____ssize_t_49 (__getdelim_596) (char * (* __restrict ____lineptr_589), __size_t_1 * __restrict ____n_590, int ____delimiter_591, __FILE_58 * __restrict ____stream_592);// L668:L670 -extern ____ssize_t_49 (__getline_602) (char * (* __restrict ____lineptr_598), __size_t_1 * __restrict ____n_599, __FILE_58 * __restrict ____stream_600);// L678:L680 -extern ____ssize_t_49 (__getline_604) (char * (* __restrict ____lineptr_598), __size_t_1 * __restrict ____n_599, __FILE_58 * __restrict ____stream_600);// L678:L680 -extern int (__fputs_609) (const char * __restrict ____s_606, __FILE_58 * __restrict ____stream_607);// L689 -extern int (__fputs_611) (const char * __restrict ____s_606, __FILE_58 * __restrict ____stream_607);// L689 -extern int (__puts_614) (const char * (____s_613));// L695 -extern int (__ungetc_618) (int ____c_615, __FILE_58 * (____stream_616));// L702 -extern int (__fseek_654) (__FILE_58 * (____stream_650), long int ____off_652, int ____whence_653);// L749 -extern int (__fseek_656) (__FILE_58 * (____stream_650), long int ____off_652, int ____whence_653);// L749 -extern long int (__ftell_660) (__FILE_58 * (____stream_658));// L754 -extern long int (__ftell_662) (__FILE_58 * (____stream_658));// L754 -extern void (__rewind_666) (__FILE_58 * (____stream_664));// L759 -extern int (__fseeko_671) (__FILE_58 * (____stream_667), ____off_t_23 ____off_669, int ____whence_670);// L773 -extern int (__fseeko_679) (__FILE_58 * (____stream_675), ____off64_t_24 ____off_677, int ____whence_678);// L781:L783 -extern ____off_t_23 (__ftello_683) (__FILE_58 * (____stream_673));// L778 -extern ____off_t_23 (__ftello_685) (__FILE_58 * (____stream_673));// L778 -extern int (__fgetpos_693) (__FILE_58 * __restrict ____stream_689, __fpos_t_253 * __restrict ____pos_691);// L798 -extern ____off64_t_24 (__ftello_687) (__FILE_58 * (____stream_681));// L784 -extern int (__fgetpos_705) (__FILE_58 * __restrict ____stream_701, __fpos_t_255 * __restrict ____pos_703);// L806:L807 -extern int (__fsetpos_713) (__FILE_58 * (____stream_697), const __fpos_t_253 * (____pos_699));// L803 -extern int (__fsetpos_717) (__FILE_58 * (____stream_709), const __fpos_t_255 * (____pos_711));// L808:L809 -extern void (__clearerr_723) (__FILE_58 * (____stream_721));// L826 -extern int (__feof_726) (__FILE_58 * (____stream_724));// L828 -extern int (__feof_728) (__FILE_58 * (____stream_724));// L828 -extern int (__ferror_732) (__FILE_58 * (____stream_730));// L830 -extern int (__ferror_734) (__FILE_58 * (____stream_730));// L830 -extern void (__clearerr_unlocked_738) (__FILE_58 * (____stream_736));// L835 -extern int (__feof_unlocked_742) (__FILE_58 * (____stream_740));// L836 -extern int (__feof_unlocked_744) (__FILE_58 * (____stream_740));// L836 -extern int (__ferror_unlocked_748) (__FILE_58 * (____stream_746));// L837 -extern int (__ferror_unlocked_750) (__FILE_58 * (____stream_746));// L837 -extern void (__perror_753) (const char * (____s_752));// L846 -extern void (__perror_754) (const char * (____s_752));// L846 -extern int __sys_nerr_755;// L26 - -extern int (__fileno_761) (__FILE_58 * (____stream_757));// L858 -extern int (__fileno_759) (__FILE_58 * (____stream_757));// L858 -extern int (__fileno_unlocked_767) (__FILE_58 * (____stream_763));// L863 -extern int (__fileno_unlocked_765) (__FILE_58 * (____stream_763));// L863 -extern __FILE_58 * ((__popen_771) (const char * (____command_769), const char * (____modes_770)));// L872 -extern __FILE_58 * ((__popen_773) (const char * (____command_769), const char * (____modes_770)));// L872 -extern int (__pclose_777) (__FILE_58 * (____stream_775));// L878 -extern char * ((__ctermid_780) (char * (____s_779)));// L884 -extern void (__flockfile_783) (__FILE_58 * (____stream_781));// L912 -extern int (__ftrylockfile_787) (__FILE_58 * (____stream_785));// L916 -extern int (__ftrylockfile_789) (__FILE_58 * (____stream_785));// L916 -extern void (__funlockfile_793) (__FILE_58 * (____stream_791));// L919 +extern int (__fileno_835) (__FILE_59 * (____stream_831));// L858 +extern int (__fileno_833) (__FILE_59 * (____stream_831));// L858 +extern int (__fileno_unlocked_841) (__FILE_59 * (____stream_837));// L863 +extern int (__fileno_unlocked_839) (__FILE_59 * (____stream_837));// L863 +extern __FILE_59 * ((__popen_845) (const char * (____command_843), const char * (____modes_844)));// L872 +extern __FILE_59 * ((__popen_847) (const char * (____command_843), const char * (____modes_844)));// L872 +extern int (__pclose_851) (__FILE_59 * (____stream_849));// L878 +extern char * ((__ctermid_854) (char * (____s_853)));// L884 +extern void (__flockfile_857) (__FILE_59 * (____stream_855));// L912 +extern int (__ftrylockfile_861) (__FILE_59 * (____stream_859));// L916 +extern int (__ftrylockfile_863) (__FILE_59 * (____stream_859));// L916 +extern void (__funlockfile_867) (__FILE_59 * (____stream_865));// L919 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ @@ -1168,53 +1305,67 @@ extern void (__funlockfile_793) (__FILE_58 * (____stream_791));// L919 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____sprintf_chk_825) (char * __restrict ____s_821, int ____flag_822, __size_t_1 ____slen_823, const char * __restrict ____format_824, ... );// L23:L24 -extern int (____vsprintf_chk_832) (char * __restrict ____s_826, int ____flag_827, __size_t_1 ____slen_828, const char * __restrict ____format_829, ____gnuc_va_list_82 ____ap_830);// L25:L27 +extern int (____sprintf_chk_899) (char * __restrict ____s_895, int ____flag_896, __size_t_1 ____slen_897, const char * __restrict ____format_898, ... );// L23:L24 +extern int (____vsprintf_chk_906) (char * __restrict ____s_900, int ____flag_901, __size_t_1 ____slen_902, const char * __restrict ____format_903, ____gnuc_va_list_86 ____ap_904);// L25:L27 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____snprintf_chk_846) (char * __restrict ____s_841, __size_t_1 ____n_842, int ____flag_843, __size_t_1 ____slen_844, const char * __restrict ____format_845, ... );// L52:L54 -extern int (____vsnprintf_chk_854) (char * __restrict ____s_847, __size_t_1 ____n_848, int ____flag_849, __size_t_1 ____slen_850, const char * __restrict ____format_851, ____gnuc_va_list_82 ____ap_852);// L55:L57 +extern int (____snprintf_chk_920) (char * __restrict ____s_915, __size_t_1 ____n_916, int ____flag_917, __size_t_1 ____slen_918, const char * __restrict ____format_919, ... );// L52:L54 +extern int (____vsnprintf_chk_928) (char * __restrict ____s_921, __size_t_1 ____n_922, int ____flag_923, __size_t_1 ____slen_924, const char * __restrict ____format_925, ____gnuc_va_list_86 ____ap_926);// L55:L57 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____fprintf_chk_869) (__FILE_58 * __restrict ____stream_865, int ____flag_867, const char * __restrict ____format_868, ... );// L85:L86 -extern int (____printf_chk_873) (int ____flag_871, const char * __restrict ____format_872, ... );// L87 -extern int (____vfprintf_chk_880) (__FILE_58 * __restrict ____stream_874, int ____flag_876, const char * __restrict ____format_877, ____gnuc_va_list_82 ____ap_878);// L88:L89 -extern int (____vprintf_chk_888) (int ____flag_884, const char * __restrict ____format_885, ____gnuc_va_list_82 ____ap_886);// L90:L91 +extern int (____fprintf_chk_943) (__FILE_59 * __restrict ____stream_939, int ____flag_941, const char * __restrict ____format_942, ... );// L85:L86 +extern int (____printf_chk_947) (int ____flag_945, const char * __restrict ____format_946, ... );// L87 +extern int (____vfprintf_chk_954) (__FILE_59 * __restrict ____stream_948, int ____flag_950, const char * __restrict ____format_951, ____gnuc_va_list_86 ____ap_952);// L88:L89 +extern int (____vprintf_chk_962) (int ____flag_958, const char * __restrict ____format_959, ____gnuc_va_list_86 ____ap_960);// L90:L91 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____dprintf_chk_910) (int ____fd_907, int ____flag_908, const char * __restrict ____fmt_909, ... );// L131:L132 -extern int (____vdprintf_chk_916) (int ____fd_911, int ____flag_912, const char * __restrict ____fmt_913, ____gnuc_va_list_82 ____arg_914);// L133:L135 +extern int (____dprintf_chk_984) (int ____fd_981, int ____flag_982, const char * __restrict ____fmt_983, ... );// L131:L132 +extern int (____vdprintf_chk_990) (int ____fd_985, int ____flag_986, const char * __restrict ____fmt_987, ____gnuc_va_list_86 ____arg_988);// L133:L135 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern char * ((____fgets_chk_930) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 -extern char * ((____fgets_chk_932) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 -extern char * ((____fgets_chk_934) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 -extern char * ((____fgets_alias_940) (char * __restrict ____s_936, int ____n_937, __FILE_58 * __restrict ____stream_938));// L243:L245 -extern char * ((____fgets_chk_warn_947) (char * __restrict ____s_942, __size_t_1 ____size_943, int ____n_944, __FILE_58 * __restrict ____stream_945));// L246:L250 +extern char * ((____fgets_chk_1004) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_chk_1006) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_chk_1008) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_alias_1014) (char * __restrict ____s_1010, int ____n_1011, __FILE_59 * __restrict ____stream_1012));// L243:L245 +extern char * ((____fgets_chk_warn_1021) (char * __restrict ____s_1016, __size_t_1 ____size_1017, int ____n_1018, __FILE_59 * __restrict ____stream_1019));// L246:L250 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -int __fips_1018;// L4 -int __fips_1019;// L4 -void (__ssl_init_Module_1020) () { +int __fips_1092;// L4 +void (__ssl_init_Module_1093) () { + +if (__static_condition_default_1095) { { { -if (__static_condition_default_1021) { -if ( __fips_1018 == 0 )// L9 -{ - __printf_383 ("Something") ; // L10 +__static_type_error("invalid type found in if statement"); +} +} + + } } -if (__static_condition_default_1022) { -if ( __fips_1019 == 0 )// L9 +void (__ssl_init_Module_1094) () { + +if (__static_condition_default_1096) { + { - __printf_383 ("Something") ; // L10 +{ + + + +if ( __fips_1092 == 0 )// L9 +{ +if (__static_condition_default_1097) { + __printf_421 ("Something") ; // L10 +} +if (__static_condition_default_1098) { +__static_type_error("type error") ; // L10 } } } @@ -1222,14 +1373,20 @@ if ( __fips_1019 == 0 )// L9 } -int (__main_1023) (void ) { +} +int (__main_1099) (void ) { { { - __ssl_init_Module_1020 ( ) ; // L15 +if (__static_condition_default_1095) { + __ssl_init_Module_1093 ( ) ; // L15 +} +if (__static_condition_default_1096) { + __ssl_init_Module_1094 ( ) ; // L15 +} return 0 ;// L16 } } diff --git a/fonda/cpp_testsuite/varBugs/APACHE/6338509eb37.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/6338509eb37.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/6338509eb37.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/6338509eb37.inferres b/fonda/cpp_testsuite/varBugs/APACHE/6338509eb37.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/APACHE/664e3aac6dd.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/664e3aac6dd.desugared.c index a24eb866..39451deb 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/664e3aac6dd.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/664e3aac6dd.desugared.c @@ -7,87 +7,87 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_305; -extern const bool __static_condition_default_627; -extern const bool __static_condition_default_288; +extern const bool __static_condition_default_806; extern const bool __static_condition_default_246; -extern const bool __static_condition_default_604; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_296; +extern const bool __static_condition_default_394; +extern const bool __static_condition_default_341; extern const bool __static_condition_default_67; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_804; -extern const bool __static_condition_default_1094; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_1077; +extern const bool __static_condition_default_261; +extern const bool __static_condition_default_627; +extern const bool __static_condition_default_602; extern const bool __static_condition_default_1048; -extern const bool __static_condition_default_1078; -extern const bool __static_condition_default_264; +extern const bool __static_condition_default_805; +extern const bool __static_condition_default_1053; +extern const bool __static_condition_default_243; +extern const bool __static_condition_default_604; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_426; +extern const bool __static_condition_default_237; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_423; extern const bool __static_condition_default_293; -extern const bool __static_condition_default_1083; +extern const bool __static_condition_default_361; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_818; extern const bool __static_condition_default_1037; -extern const bool __static_condition_default_308; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_1038; -extern const bool __static_condition_default_215; -extern const bool __static_condition_default_276; -extern const bool __static_condition_default_249; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_1082; extern const bool __static_condition_default_270; -extern const bool __static_condition_default_378; -extern const bool __static_condition_default_426; -extern const bool __static_condition_default_325; -extern const bool __static_condition_default_395; +extern const bool __static_condition_default_1031; +extern const bool __static_condition_default_1083; extern const bool __static_condition_default_1088; -extern const bool __static_condition_default_429; -extern const bool __static_condition_default_279; -extern const bool __static_condition_default_1049; -extern const bool __static_condition_default_594; -extern const bool __static_condition_default_282; extern const bool __static_condition_default_258; -extern const bool __static_condition_default_273; -extern const bool __static_condition_default_234; -extern const bool __static_condition_default_352; +extern const bool __static_condition_default_1047; +extern const bool __static_condition_default_240; +extern const bool __static_condition_default_1024; +extern const bool __static_condition_default_349; +extern const bool __static_condition_default_594; +extern const bool __static_condition_default_276; +extern const bool __static_condition_default_414; +extern const bool __static_condition_default_1093; +extern const bool __static_condition_default_1073; extern const bool __static_condition_default_417; -extern const bool __static_condition_default_1075; -extern const bool __static_condition_default_361; -extern const bool __static_condition_default_1031; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_252; -extern const bool __static_condition_default_1025; -extern const bool __static_condition_default_299; extern const bool __static_condition_default_285; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_1032; -extern const bool __static_condition_default_60; -extern const bool __static_condition_default_629; -extern const bool __static_condition_default_1095; -extern const bool __static_condition_default_1074; -extern const bool __static_condition_default_243; +extern const bool __static_condition_default_273; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_325; extern const bool __static_condition_default_255; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_1026; -extern const bool __static_condition_default_1093; -extern const bool __static_condition_default_240; -extern const bool __static_condition_default_621; +extern const bool __static_condition_default_1054; extern const bool __static_condition_default_579; -extern const bool __static_condition_default_423; -extern const bool __static_condition_default_394; -extern const bool __static_condition_default_420; -extern const bool __static_condition_default_1084; +extern const bool __static_condition_default_1025; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_1092; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_305; +extern const bool __static_condition_default_379; +extern const bool __static_condition_default_288; extern const bool __static_condition_default_302; extern const bool __static_condition_default_581; -extern const bool __static_condition_default_237; -extern const bool __static_condition_default_261; -extern const bool __static_condition_default_818; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_805; -extern const bool __static_condition_default_379; +extern const bool __static_condition_default_308; extern const bool __static_condition_default_595; -extern const bool __static_condition_default_806; -extern const bool __static_condition_default_349; -extern const bool __static_condition_default_1054; -extern const bool __static_condition_default_414; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_1055; +extern const bool __static_condition_default_60; +extern const bool __static_condition_default_378; +extern const bool __static_condition_default_252; +extern const bool __static_condition_default_420; +extern const bool __static_condition_default_1087; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_629; +extern const bool __static_condition_default_352; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_279; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_1074; +extern const bool __static_condition_default_429; +extern const bool __static_condition_default_804; +extern const bool __static_condition_default_1094; +extern const bool __static_condition_default_1030; +extern const bool __static_condition_default_215; +extern const bool __static_condition_default_234; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -504,61 +504,60 @@ __static_renaming("__strdup_897", "strdup"); __static_renaming("__strndup_901", "strndup"); __static_renaming("__strndup_902", "strndup"); __static_renaming("__strchr_905", "strchr"); -__static_renaming("__strchr_906", "strchr"); -__static_renaming("__strrchr_909", "strrchr"); +__static_renaming("__strrchr_908", "strrchr"); +__static_renaming("__strcspn_911", "strcspn"); __static_renaming("__strcspn_912", "strcspn"); -__static_renaming("__strcspn_913", "strcspn"); +__static_renaming("__strspn_915", "strspn"); __static_renaming("__strspn_916", "strspn"); -__static_renaming("__strspn_917", "strspn"); -__static_renaming("__strpbrk_920", "strpbrk"); -__static_renaming("__strstr_923", "strstr"); -__static_renaming("__strtok_926", "strtok"); -__static_renaming("____strtok_r_930", "__strtok_r"); -__static_renaming("__strtok_r_934", "strtok_r"); +__static_renaming("__strpbrk_919", "strpbrk"); +__static_renaming("__strstr_922", "strstr"); +__static_renaming("__strtok_925", "strtok"); +__static_renaming("____strtok_r_929", "__strtok_r"); +__static_renaming("__strtok_r_933", "strtok_r"); +__static_renaming("__strlen_935", "strlen"); __static_renaming("__strlen_936", "strlen"); __static_renaming("__strlen_937", "strlen"); __static_renaming("__strlen_938", "strlen"); -__static_renaming("__strlen_939", "strlen"); +__static_renaming("__strnlen_942", "strnlen"); __static_renaming("__strnlen_943", "strnlen"); -__static_renaming("__strnlen_944", "strnlen"); +__static_renaming("__strerror_945", "strerror"); __static_renaming("__strerror_946", "strerror"); -__static_renaming("__strerror_947", "strerror"); +__static_renaming("__strerror_r_951", "strerror_r"); __static_renaming("__strerror_r_952", "strerror_r"); -__static_renaming("__strerror_r_953", "strerror_r"); -__static_renaming("__strerror_l_956", "strerror_l"); +__static_renaming("__strerror_l_955", "strerror_l"); +__static_renaming("____bzero_959", "__bzero"); __static_renaming("____bzero_960", "__bzero"); __static_renaming("____bzero_961", "__bzero"); __static_renaming("____bzero_962", "__bzero"); -__static_renaming("____bzero_963", "__bzero"); +__static_renaming("__bcopy_967", "bcopy"); __static_renaming("__bcopy_968", "bcopy"); -__static_renaming("__bcopy_969", "bcopy"); +__static_renaming("__bzero_972", "bzero"); __static_renaming("__bzero_973", "bzero"); -__static_renaming("__bzero_974", "bzero"); +__static_renaming("__bcmp_978", "bcmp"); __static_renaming("__bcmp_979", "bcmp"); -__static_renaming("__bcmp_980", "bcmp"); -__static_renaming("__index_983", "index"); -__static_renaming("__rindex_986", "rindex"); -__static_renaming("__ffs_988", "ffs"); -__static_renaming("__strcasecmp_991", "strcasecmp"); +__static_renaming("__index_982", "index"); +__static_renaming("__rindex_985", "rindex"); +__static_renaming("__ffs_987", "ffs"); +__static_renaming("__strcasecmp_990", "strcasecmp"); +__static_renaming("__strncasecmp_995", "strncasecmp"); __static_renaming("__strncasecmp_996", "strncasecmp"); -__static_renaming("__strncasecmp_997", "strncasecmp"); -__static_renaming("__strsep_1000", "strsep"); -__static_renaming("__strsignal_1002", "strsignal"); -__static_renaming("____stpcpy_1005", "__stpcpy"); -__static_renaming("__stpcpy_1008", "stpcpy"); +__static_renaming("__strsep_999", "strsep"); +__static_renaming("__strsignal_1001", "strsignal"); +__static_renaming("____stpcpy_1004", "__stpcpy"); +__static_renaming("__stpcpy_1007", "stpcpy"); +__static_renaming("____stpncpy_1012", "__stpncpy"); __static_renaming("____stpncpy_1013", "__stpncpy"); -__static_renaming("____stpncpy_1014", "__stpncpy"); +__static_renaming("__stpncpy_1018", "stpncpy"); __static_renaming("__stpncpy_1019", "stpncpy"); -__static_renaming("__stpncpy_1020", "stpncpy"); +__static_renaming("____stpncpy_chk_1061", "__stpncpy_chk"); __static_renaming("____stpncpy_chk_1062", "__stpncpy_chk"); -__static_renaming("____stpncpy_chk_1063", "__stpncpy_chk"); +__static_renaming("____stpncpy_alias_1067", "__stpncpy_alias"); __static_renaming("____stpncpy_alias_1068", "__stpncpy_alias"); -__static_renaming("____stpncpy_alias_1069", "__stpncpy_alias"); -__static_renaming("__buffer_1085", "buffer"); -__static_renaming("__i_1086", "i"); -__static_renaming("__ap_get_win32_interpreter_1087", "ap_get_win32_interpreter"); +__static_renaming("__buffer_1084", "buffer"); +__static_renaming("__i_1085", "i"); +__static_renaming("__ap_get_win32_interpreter_1086", "ap_get_win32_interpreter"); +__static_renaming("__main_1090", "main"); __static_renaming("__main_1091", "main"); -__static_renaming("__main_1092", "main"); __static_condition_renaming("__static_condition_default_60", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H) && (defined _BITS_TYPESIZES_H)"); __static_condition_renaming("__static_condition_default_67", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); @@ -620,29 +619,29 @@ __static_condition_renaming("__static_condition_default_805", "!(defined _STDLIB __static_condition_renaming("__static_condition_default_806", "(defined _STDLIB_H)"); __static_condition_renaming("__static_condition_default_818", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__)"); __static_condition_renaming("__static_condition_default_819", "(defined _STDLIB_H) && !(defined __STRICT_ANSI__)"); -__static_condition_renaming("__static_condition_default_1025", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1026", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1031", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1032", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1037", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1038", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1048", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1049", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1054", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1055", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1074", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1075", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1078", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1083", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1084", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1088", "(defined WIN32X)"); -__static_condition_renaming("__static_condition_default_1089", "!(defined _STDLIB_H) && (defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined WIN32X)"); -__static_condition_renaming("__static_condition_default_1090", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined WIN32X) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined __need_malloc_and_calloc) && (defined WIN32X) || (defined _STDLIB_H) && (defined WIN32X)"); -__static_condition_renaming("__static_condition_default_1093", "!(defined WIN32X)"); -__static_condition_renaming("__static_condition_default_1094", "(defined WIN32X)"); -__static_condition_renaming("__static_condition_default_1095", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc)"); - -if (__static_condition_default_1095) { +__static_condition_renaming("__static_condition_default_1024", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1025", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1030", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1031", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1036", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1037", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1047", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1048", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1053", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1054", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1073", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1074", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1077", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1082", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1083", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1087", "(defined WIN32X)"); +__static_condition_renaming("__static_condition_default_1088", "!(defined _STDLIB_H) && (defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined WIN32X)"); +__static_condition_renaming("__static_condition_default_1089", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined WIN32X) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined __need_malloc_and_calloc) && (defined WIN32X) || (defined _STDLIB_H) && (defined WIN32X)"); +__static_condition_renaming("__static_condition_default_1092", "!(defined WIN32X)"); +__static_condition_renaming("__static_condition_default_1093", "(defined WIN32X)"); +__static_condition_renaming("__static_condition_default_1094", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined __need_malloc_and_calloc) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || (defined _STDLIB_H) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO)"); + +if (__static_condition_default_1094) { __static_parse_error("Unable to parse"); } }; @@ -1468,52 +1467,51 @@ extern char * ((__strdup_897) (const char * (____s_896)));// L171:L172 extern char * ((__strndup_901) (const char * (____string_898), __size_t_1 ____n_899));// L179:L180 extern char * ((__strndup_902) (const char * (____string_898), __size_t_799 ____n_900));// L179:L180 extern char * ((__strchr_905) (const char * (____s_903), int ____c_904));// L231:L232 -extern char * ((__strchr_906) (const char * (____s_903), int ____c_904));// L231:L232 -extern char * ((__strrchr_909) (const char * (____s_907), int ____c_908));// L258:L259 -extern __size_t_1 (__strcspn_912) (const char * (____s_910), const char * (____reject_911));// L280:L281 -extern __size_t_799 (__strcspn_913) (const char * (____s_910), const char * (____reject_911));// L280:L281 -extern __size_t_1 (__strspn_916) (const char * (____s_914), const char * (____accept_915));// L284:L285 -extern __size_t_799 (__strspn_917) (const char * (____s_914), const char * (____accept_915));// L284:L285 -extern char * ((__strpbrk_920) (const char * (____s_918), const char * (____accept_919)));// L310:L311 -extern char * ((__strstr_923) (const char * (____haystack_921), const char * (____needle_922)));// L337:L338 -extern char * ((__strtok_926) (char * __restrict ____s_924, const char * __restrict ____delim_925));// L343:L344 -extern char * ((____strtok_r_930) (char * __restrict ____s_927, const char * __restrict ____delim_928, char * (* __restrict ____save_ptr_929)));// L349:L352 -extern char * ((__strtok_r_934) (char * __restrict ____s_931, const char * __restrict ____delim_932, char * (* __restrict ____save_ptr_933)));// L354:L356 -extern __size_t_1 (__strlen_936) (const char * (____s_935));// L394:L395 -extern __size_t_799 (__strlen_937) (const char * (____s_935));// L394:L395 -extern __size_t_1 (__strlen_938) (const char * (____s_935));// L394:L395 -extern __size_t_799 (__strlen_939) (const char * (____s_935));// L394:L395 -extern __size_t_1 (__strnlen_943) (const char * (____string_940), __size_t_1 ____maxlen_941);// L401:L402 -extern __size_t_799 (__strnlen_944) (const char * (____string_940), __size_t_799 ____maxlen_942);// L401:L402 -extern char * ((__strerror_946) (int ____errnum_945));// L408 -extern char * ((__strerror_947) (int ____errnum_945));// L408 -extern int (__strerror_r_952) (int ____errnum_948, char * (____buf_949), __size_t_1 ____buflen_950);// L422:L424 -extern int (__strerror_r_953) (int ____errnum_948, char * (____buf_949), __size_t_799 ____buflen_951);// L422:L424 -extern char * ((__strerror_l_956) (int ____errnum_954, ____locale_t_883 ____l_955));// L440 -extern void (____bzero_960) (void * (____s_957), __size_t_1 ____n_958);// L446 -extern void (____bzero_961) (void * (____s_957), __size_t_799 ____n_959);// L446 -extern void (____bzero_962) (void * (____s_957), __size_t_1 ____n_958);// L446 -extern void (____bzero_963) (void * (____s_957), __size_t_799 ____n_959);// L446 -extern void (__bcopy_968) (const void * (____src_964), void * (____dest_965), __size_t_1 ____n_966);// L450:L451 -extern void (__bcopy_969) (const void * (____src_964), void * (____dest_965), __size_t_799 ____n_967);// L450:L451 -extern void (__bzero_973) (void * (____s_970), __size_t_1 ____n_971);// L454 -extern void (__bzero_974) (void * (____s_970), __size_t_799 ____n_972);// L454 -extern int (__bcmp_979) (const void * (____s1_975), const void * (____s2_976), __size_t_1 ____n_977);// L457:L458 -extern int (__bcmp_980) (const void * (____s1_975), const void * (____s2_976), __size_t_799 ____n_978);// L457:L458 -extern char * ((__index_983) (const char * (____s_981), int ____c_982));// L484:L485 -extern char * ((__rindex_986) (const char * (____s_984), int ____c_985));// L512:L513 -extern int (__ffs_988) (int ____i_987);// L518 -extern int (__strcasecmp_991) (const char * (____s1_989), const char * (____s2_990));// L529:L530 -extern int (__strncasecmp_996) (const char * (____s1_992), const char * (____s2_993), __size_t_1 ____n_994);// L533:L534 -extern int (__strncasecmp_997) (const char * (____s1_992), const char * (____s2_993), __size_t_799 ____n_995);// L533:L534 -extern char * ((__strsep_1000) (char * (* __restrict ____stringp_998), const char * __restrict ____delim_999));// L552:L554 -extern char * ((__strsignal_1002) (int ____sig_1001));// L559 -extern char * ((____stpcpy_1005) (char * __restrict ____dest_1003, const char * __restrict ____src_1004));// L562:L563 -extern char * ((__stpcpy_1008) (char * __restrict ____dest_1006, const char * __restrict ____src_1007));// L564:L565 -extern char * ((____stpncpy_1013) (char * __restrict ____dest_1009, const char * __restrict ____src_1010, __size_t_1 ____n_1011));// L569:L571 -extern char * ((____stpncpy_1014) (char * __restrict ____dest_1009, const char * __restrict ____src_1010, __size_t_799 ____n_1012));// L569:L571 -extern char * ((__stpncpy_1019) (char * __restrict ____dest_1015, const char * __restrict ____src_1016, __size_t_1 ____n_1017));// L572:L574 -extern char * ((__stpncpy_1020) (char * __restrict ____dest_1015, const char * __restrict ____src_1016, __size_t_799 ____n_1018));// L572:L574 +extern char * ((__strrchr_908) (const char * (____s_906), int ____c_907));// L258:L259 +extern __size_t_1 (__strcspn_911) (const char * (____s_909), const char * (____reject_910));// L280:L281 +extern __size_t_799 (__strcspn_912) (const char * (____s_909), const char * (____reject_910));// L280:L281 +extern __size_t_1 (__strspn_915) (const char * (____s_913), const char * (____accept_914));// L284:L285 +extern __size_t_799 (__strspn_916) (const char * (____s_913), const char * (____accept_914));// L284:L285 +extern char * ((__strpbrk_919) (const char * (____s_917), const char * (____accept_918)));// L310:L311 +extern char * ((__strstr_922) (const char * (____haystack_920), const char * (____needle_921)));// L337:L338 +extern char * ((__strtok_925) (char * __restrict ____s_923, const char * __restrict ____delim_924));// L343:L344 +extern char * ((____strtok_r_929) (char * __restrict ____s_926, const char * __restrict ____delim_927, char * (* __restrict ____save_ptr_928)));// L349:L352 +extern char * ((__strtok_r_933) (char * __restrict ____s_930, const char * __restrict ____delim_931, char * (* __restrict ____save_ptr_932)));// L354:L356 +extern __size_t_1 (__strlen_935) (const char * (____s_934));// L394:L395 +extern __size_t_799 (__strlen_936) (const char * (____s_934));// L394:L395 +extern __size_t_1 (__strlen_937) (const char * (____s_934));// L394:L395 +extern __size_t_799 (__strlen_938) (const char * (____s_934));// L394:L395 +extern __size_t_1 (__strnlen_942) (const char * (____string_939), __size_t_1 ____maxlen_940);// L401:L402 +extern __size_t_799 (__strnlen_943) (const char * (____string_939), __size_t_799 ____maxlen_941);// L401:L402 +extern char * ((__strerror_945) (int ____errnum_944));// L408 +extern char * ((__strerror_946) (int ____errnum_944));// L408 +extern int (__strerror_r_951) (int ____errnum_947, char * (____buf_948), __size_t_1 ____buflen_949);// L422:L424 +extern int (__strerror_r_952) (int ____errnum_947, char * (____buf_948), __size_t_799 ____buflen_950);// L422:L424 +extern char * ((__strerror_l_955) (int ____errnum_953, ____locale_t_883 ____l_954));// L440 +extern void (____bzero_959) (void * (____s_956), __size_t_1 ____n_957);// L446 +extern void (____bzero_960) (void * (____s_956), __size_t_799 ____n_958);// L446 +extern void (____bzero_961) (void * (____s_956), __size_t_1 ____n_957);// L446 +extern void (____bzero_962) (void * (____s_956), __size_t_799 ____n_958);// L446 +extern void (__bcopy_967) (const void * (____src_963), void * (____dest_964), __size_t_1 ____n_965);// L450:L451 +extern void (__bcopy_968) (const void * (____src_963), void * (____dest_964), __size_t_799 ____n_966);// L450:L451 +extern void (__bzero_972) (void * (____s_969), __size_t_1 ____n_970);// L454 +extern void (__bzero_973) (void * (____s_969), __size_t_799 ____n_971);// L454 +extern int (__bcmp_978) (const void * (____s1_974), const void * (____s2_975), __size_t_1 ____n_976);// L457:L458 +extern int (__bcmp_979) (const void * (____s1_974), const void * (____s2_975), __size_t_799 ____n_977);// L457:L458 +extern char * ((__index_982) (const char * (____s_980), int ____c_981));// L484:L485 +extern char * ((__rindex_985) (const char * (____s_983), int ____c_984));// L512:L513 +extern int (__ffs_987) (int ____i_986);// L518 +extern int (__strcasecmp_990) (const char * (____s1_988), const char * (____s2_989));// L529:L530 +extern int (__strncasecmp_995) (const char * (____s1_991), const char * (____s2_992), __size_t_1 ____n_993);// L533:L534 +extern int (__strncasecmp_996) (const char * (____s1_991), const char * (____s2_992), __size_t_799 ____n_994);// L533:L534 +extern char * ((__strsep_999) (char * (* __restrict ____stringp_997), const char * __restrict ____delim_998));// L552:L554 +extern char * ((__strsignal_1001) (int ____sig_1000));// L559 +extern char * ((____stpcpy_1004) (char * __restrict ____dest_1002, const char * __restrict ____src_1003));// L562:L563 +extern char * ((__stpcpy_1007) (char * __restrict ____dest_1005, const char * __restrict ____src_1006));// L564:L565 +extern char * ((____stpncpy_1012) (char * __restrict ____dest_1008, const char * __restrict ____src_1009, __size_t_1 ____n_1010));// L569:L571 +extern char * ((____stpncpy_1013) (char * __restrict ____dest_1008, const char * __restrict ____src_1009, __size_t_799 ____n_1011));// L569:L571 +extern char * ((__stpncpy_1018) (char * __restrict ____dest_1014, const char * __restrict ____src_1015, __size_t_1 ____n_1016));// L572:L574 +extern char * ((__stpncpy_1019) (char * __restrict ____dest_1014, const char * __restrict ____src_1015, __size_t_799 ____n_1017));// L572:L574 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ @@ -1521,27 +1519,27 @@ extern char * ((__stpncpy_1020) (char * __restrict ____dest_1015, const char /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern char * ((____stpncpy_chk_1062) (char * (____dest_1056), const char * (____src_1057), __size_t_1 ____n_1058, __size_t_1 ____destlen_1060));// L130:L131 -extern char * ((____stpncpy_chk_1063) (char * (____dest_1056), const char * (____src_1057), __size_t_799 ____n_1059, __size_t_799 ____destlen_1061));// L130:L131 -extern char * ((____stpncpy_alias_1068) (char * (____dest_1064), const char * (____src_1065), __size_t_1 ____n_1066));// L132:L133 -extern char * ((____stpncpy_alias_1069) (char * (____dest_1064), const char * (____src_1065), __size_t_799 ____n_1067));// L132:L133 +extern char * ((____stpncpy_chk_1061) (char * (____dest_1055), const char * (____src_1056), __size_t_1 ____n_1057, __size_t_1 ____destlen_1059));// L130:L131 +extern char * ((____stpncpy_chk_1062) (char * (____dest_1055), const char * (____src_1056), __size_t_799 ____n_1058, __size_t_799 ____destlen_1060));// L130:L131 +extern char * ((____stpncpy_alias_1067) (char * (____dest_1063), const char * (____src_1064), __size_t_1 ____n_1065));// L132:L133 +extern char * ((____stpncpy_alias_1068) (char * (____dest_1063), const char * (____src_1064), __size_t_799 ____n_1066));// L132:L133 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -void (__ap_get_win32_interpreter_1087) () { +void (__ap_get_win32_interpreter_1086) () { -if (__static_condition_default_1088) { +if (__static_condition_default_1087) { { { -char __buffer_1085[1024];// L7 +char __buffer_1084[1024];// L7 -int __i_1086;// L9 +int __i_1085;// L9 -if (__static_condition_default_1089) { +if (__static_condition_default_1088) { if ( rand( ) % 2 )// L10 { @@ -1550,7 +1548,7 @@ if ( rand( ) % 2 )// L10 -for ( __i_1086 = 0 ; __i_1086 < sizeof(( __buffer_1085 )) ; __i_1086 ++ )// L11 +for ( __i_1085 = 0 ; __i_1085 < sizeof(( __buffer_1084 )) ; __i_1085 ++ )// L11 { { @@ -1561,12 +1559,12 @@ for ( __i_1086 = 0 ; __i_1086 < sizeof(( __buffer_1085 )) ; __i_1086 ++ } } } - __buffer_1085 [ __i_1086 ] = '\0' ; // L14 + __buffer_1084 [ __i_1085 ] = '\0' ; // L14 } } } } -if (__static_condition_default_1090) { +if (__static_condition_default_1089) { __static_type_error("invalid type found in if statement"); } } @@ -1575,9 +1573,9 @@ __static_type_error("invalid type found in if statement"); } } -int (__main_1091) (void ) { +int (__main_1090) (void ) { -if (__static_condition_default_1093) { +if (__static_condition_default_1092) { { { @@ -1591,16 +1589,16 @@ return 0 ;// L24 } } -int (__main_1092) (void ) { +int (__main_1091) (void ) { -if (__static_condition_default_1094) { +if (__static_condition_default_1093) { { { - __ap_get_win32_interpreter_1087 ( ) ; // L22 + __ap_get_win32_interpreter_1086 ( ) ; // L22 return 0 ;// L24 } } diff --git a/fonda/cpp_testsuite/varBugs/APACHE/664e3aac6dd.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/664e3aac6dd.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/664e3aac6dd.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/664e3aac6dd.inferres b/fonda/cpp_testsuite/varBugs/APACHE/664e3aac6dd.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/664e3aac6dd.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/9327311d30f.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/9327311d30f.desugared.c index d2d18849..623371b4 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/9327311d30f.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/9327311d30f.desugared.c @@ -7,21 +7,22 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_183; -extern const bool __static_condition_default_221; -extern const bool __static_condition_default_209; extern const bool __static_condition_default_223; -extern const bool __static_condition_default_192; -extern const bool __static_condition_default_212; -extern const bool __static_condition_default_222; +extern const bool __static_condition_default_190; extern const bool __static_condition_default_229; -extern const bool __static_condition_default_224; +extern const bool __static_condition_default_222; extern const bool __static_condition_default_228; +extern const bool __static_condition_default_195; +extern const bool __static_condition_default_208; +extern const bool __static_condition_default_211; +extern const bool __static_condition_default_227; +extern const bool __static_condition_default_221; +extern const bool __static_condition_default_175; +extern const bool __static_condition_default_215; extern const bool __static_condition_default_191; -extern const bool __static_condition_default_216; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_220; extern const bool __static_condition_default_13; -extern const bool __static_condition_default_196; -extern const bool __static_condition_default_176; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -45,62 +46,65 @@ __static_renaming("__strxfrm_l_72", "strxfrm_l"); __static_renaming("__strdup_74", "strdup"); __static_renaming("__strndup_77", "strndup"); __static_renaming("__strchr_80", "strchr"); -__static_renaming("__strchr_81", "strchr"); -__static_renaming("__strrchr_84", "strrchr"); -__static_renaming("__strcspn_87", "strcspn"); -__static_renaming("__strspn_90", "strspn"); -__static_renaming("__strpbrk_93", "strpbrk"); -__static_renaming("__strstr_96", "strstr"); -__static_renaming("__strtok_99", "strtok"); -__static_renaming("____strtok_r_103", "__strtok_r"); -__static_renaming("__strtok_r_107", "strtok_r"); +__static_renaming("__strrchr_83", "strrchr"); +__static_renaming("__strcspn_86", "strcspn"); +__static_renaming("__strspn_89", "strspn"); +__static_renaming("__strpbrk_92", "strpbrk"); +__static_renaming("__strstr_95", "strstr"); +__static_renaming("__strtok_98", "strtok"); +__static_renaming("____strtok_r_102", "__strtok_r"); +__static_renaming("__strtok_r_106", "strtok_r"); +__static_renaming("__strlen_108", "strlen"); __static_renaming("__strlen_109", "strlen"); -__static_renaming("__strlen_110", "strlen"); -__static_renaming("__strnlen_113", "strnlen"); +__static_renaming("__strnlen_112", "strnlen"); +__static_renaming("__strerror_114", "strerror"); __static_renaming("__strerror_115", "strerror"); -__static_renaming("__strerror_116", "strerror"); -__static_renaming("__strerror_r_120", "strerror_r"); -__static_renaming("__strerror_l_123", "strerror_l"); +__static_renaming("__strerror_r_119", "strerror_r"); +__static_renaming("__strerror_l_122", "strerror_l"); +__static_renaming("____bzero_125", "__bzero"); __static_renaming("____bzero_126", "__bzero"); -__static_renaming("____bzero_127", "__bzero"); -__static_renaming("__bcopy_131", "bcopy"); -__static_renaming("__bzero_134", "bzero"); -__static_renaming("__bcmp_138", "bcmp"); -__static_renaming("__index_141", "index"); -__static_renaming("__rindex_144", "rindex"); -__static_renaming("__ffs_146", "ffs"); -__static_renaming("__strcasecmp_149", "strcasecmp"); -__static_renaming("__strncasecmp_153", "strncasecmp"); -__static_renaming("__strsep_156", "strsep"); -__static_renaming("__strsignal_158", "strsignal"); -__static_renaming("____stpcpy_161", "__stpcpy"); -__static_renaming("__stpcpy_164", "stpcpy"); -__static_renaming("____stpncpy_168", "__stpncpy"); -__static_renaming("__stpncpy_172", "stpncpy"); -__static_renaming("____stpncpy_chk_201", "__stpncpy_chk"); -__static_renaming("____stpncpy_alias_205", "__stpncpy_alias"); +__static_renaming("__bcopy_130", "bcopy"); +__static_renaming("__bzero_133", "bzero"); +__static_renaming("__bcmp_137", "bcmp"); +__static_renaming("__index_140", "index"); +__static_renaming("__rindex_143", "rindex"); +__static_renaming("__ffs_145", "ffs"); +__static_renaming("__strcasecmp_148", "strcasecmp"); +__static_renaming("__strncasecmp_152", "strncasecmp"); +__static_renaming("__strsep_155", "strsep"); +__static_renaming("__strsignal_157", "strsignal"); +__static_renaming("____stpcpy_160", "__stpcpy"); +__static_renaming("__stpcpy_163", "stpcpy"); +__static_renaming("____stpncpy_167", "__stpncpy"); +__static_renaming("__stpncpy_171", "stpncpy"); +__static_renaming("____stpncpy_chk_200", "__stpncpy_chk"); +__static_renaming("____stpncpy_alias_204", "__stpncpy_alias"); +__static_renaming("__rmm_addr_216", "rmm_addr"); __static_renaming("__rmm_addr_217", "rmm_addr"); -__static_renaming("__rmm_addr_218", "rmm_addr"); -__static_renaming("__util_ald_create_cache_220", "util_ald_create_cache"); -__static_renaming("__util_ald_create_caches_226", "util_ald_create_caches"); -__static_renaming("__main_227", "main"); +__static_renaming("__util_ald_create_cache_219", "util_ald_create_cache"); +__static_renaming("__util_ald_create_caches_225", "util_ald_create_caches"); +__static_renaming("__main_226", "main"); __static_condition_renaming("__static_condition_default_13", "!(defined __STRICT_ANSI__)"); -__static_condition_renaming("__static_condition_default_176", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_183", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_191", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_192", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_196", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_209", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_212", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_216", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_221", "!APR_HAS_SHARED_MEMORY"); -__static_condition_renaming("__static_condition_default_222", "APR_HAS_SHARED_MEMORY"); -__static_condition_renaming("__static_condition_default_223", "!(defined _FORTIFY_SOURCE) && APR_HAS_SHARED_MEMORY || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && APR_HAS_SHARED_MEMORY || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && APR_HAS_SHARED_MEMORY || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && APR_HAS_SHARED_MEMORY"); -__static_condition_renaming("__static_condition_default_224", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && APR_HAS_SHARED_MEMORY"); -__static_condition_renaming("__static_condition_default_228", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_229", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_175", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_182", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_190", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_191", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_195", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_208", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_211", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_215", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_220", "!APR_HAS_SHARED_MEMORY"); +__static_condition_renaming("__static_condition_default_221", "APR_HAS_SHARED_MEMORY"); +__static_condition_renaming("__static_condition_default_222", "!(defined _FORTIFY_SOURCE) && APR_HAS_SHARED_MEMORY || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && APR_HAS_SHARED_MEMORY || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && APR_HAS_SHARED_MEMORY || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && APR_HAS_SHARED_MEMORY"); +__static_condition_renaming("__static_condition_default_223", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && APR_HAS_SHARED_MEMORY"); +__static_condition_renaming("__static_condition_default_227", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_228", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_229", "(defined __CORRECT_ISO_CPP_STRING_H_PROTO)"); +if (__static_condition_default_229) { +__static_parse_error("Unable to parse"); +} }; typedef long int __ptrdiff_t_0;// L143:L324 typedef long unsigned int __size_t_1;// L177:L209 @@ -141,38 +145,37 @@ extern __size_t_1 (__strxfrm_l_72) (char * (____dest_68), const char * (____s extern char * ((__strdup_74) (const char * (____s_73)));// L171:L172 extern char * ((__strndup_77) (const char * (____string_75), __size_t_1 ____n_76));// L179:L180 extern char * ((__strchr_80) (const char * (____s_78), int ____c_79));// L231:L232 -extern char * ((__strchr_81) (const char * (____s_78), int ____c_79));// L231:L232 -extern char * ((__strrchr_84) (const char * (____s_82), int ____c_83));// L258:L259 -extern __size_t_1 (__strcspn_87) (const char * (____s_85), const char * (____reject_86));// L280:L281 -extern __size_t_1 (__strspn_90) (const char * (____s_88), const char * (____accept_89));// L284:L285 -extern char * ((__strpbrk_93) (const char * (____s_91), const char * (____accept_92)));// L310:L311 -extern char * ((__strstr_96) (const char * (____haystack_94), const char * (____needle_95)));// L337:L338 -extern char * ((__strtok_99) (char * __restrict ____s_97, const char * __restrict ____delim_98));// L343:L344 -extern char * ((____strtok_r_103) (char * __restrict ____s_100, const char * __restrict ____delim_101, char * (* __restrict ____save_ptr_102)));// L349:L352 -extern char * ((__strtok_r_107) (char * __restrict ____s_104, const char * __restrict ____delim_105, char * (* __restrict ____save_ptr_106)));// L354:L356 -extern __size_t_1 (__strlen_109) (const char * (____s_108));// L394:L395 -extern __size_t_1 (__strlen_110) (const char * (____s_108));// L394:L395 -extern __size_t_1 (__strnlen_113) (const char * (____string_111), __size_t_1 ____maxlen_112);// L401:L402 -extern char * ((__strerror_115) (int ____errnum_114));// L408 -extern char * ((__strerror_116) (int ____errnum_114));// L408 -extern int (__strerror_r_120) (int ____errnum_117, char * (____buf_118), __size_t_1 ____buflen_119);// L422:L424 -extern char * ((__strerror_l_123) (int ____errnum_121, ____locale_t_62 ____l_122));// L440 -extern void (____bzero_126) (void * (____s_124), __size_t_1 ____n_125);// L446 -extern void (____bzero_127) (void * (____s_124), __size_t_1 ____n_125);// L446 -extern void (__bcopy_131) (const void * (____src_128), void * (____dest_129), __size_t_1 ____n_130);// L450:L451 -extern void (__bzero_134) (void * (____s_132), __size_t_1 ____n_133);// L454 -extern int (__bcmp_138) (const void * (____s1_135), const void * (____s2_136), __size_t_1 ____n_137);// L457:L458 -extern char * ((__index_141) (const char * (____s_139), int ____c_140));// L484:L485 -extern char * ((__rindex_144) (const char * (____s_142), int ____c_143));// L512:L513 -extern int (__ffs_146) (int ____i_145);// L518 -extern int (__strcasecmp_149) (const char * (____s1_147), const char * (____s2_148));// L529:L530 -extern int (__strncasecmp_153) (const char * (____s1_150), const char * (____s2_151), __size_t_1 ____n_152);// L533:L534 -extern char * ((__strsep_156) (char * (* __restrict ____stringp_154), const char * __restrict ____delim_155));// L552:L554 -extern char * ((__strsignal_158) (int ____sig_157));// L559 -extern char * ((____stpcpy_161) (char * __restrict ____dest_159, const char * __restrict ____src_160));// L562:L563 -extern char * ((__stpcpy_164) (char * __restrict ____dest_162, const char * __restrict ____src_163));// L564:L565 -extern char * ((____stpncpy_168) (char * __restrict ____dest_165, const char * __restrict ____src_166, __size_t_1 ____n_167));// L569:L571 -extern char * ((__stpncpy_172) (char * __restrict ____dest_169, const char * __restrict ____src_170, __size_t_1 ____n_171));// L572:L574 +extern char * ((__strrchr_83) (const char * (____s_81), int ____c_82));// L258:L259 +extern __size_t_1 (__strcspn_86) (const char * (____s_84), const char * (____reject_85));// L280:L281 +extern __size_t_1 (__strspn_89) (const char * (____s_87), const char * (____accept_88));// L284:L285 +extern char * ((__strpbrk_92) (const char * (____s_90), const char * (____accept_91)));// L310:L311 +extern char * ((__strstr_95) (const char * (____haystack_93), const char * (____needle_94)));// L337:L338 +extern char * ((__strtok_98) (char * __restrict ____s_96, const char * __restrict ____delim_97));// L343:L344 +extern char * ((____strtok_r_102) (char * __restrict ____s_99, const char * __restrict ____delim_100, char * (* __restrict ____save_ptr_101)));// L349:L352 +extern char * ((__strtok_r_106) (char * __restrict ____s_103, const char * __restrict ____delim_104, char * (* __restrict ____save_ptr_105)));// L354:L356 +extern __size_t_1 (__strlen_108) (const char * (____s_107));// L394:L395 +extern __size_t_1 (__strlen_109) (const char * (____s_107));// L394:L395 +extern __size_t_1 (__strnlen_112) (const char * (____string_110), __size_t_1 ____maxlen_111);// L401:L402 +extern char * ((__strerror_114) (int ____errnum_113));// L408 +extern char * ((__strerror_115) (int ____errnum_113));// L408 +extern int (__strerror_r_119) (int ____errnum_116, char * (____buf_117), __size_t_1 ____buflen_118);// L422:L424 +extern char * ((__strerror_l_122) (int ____errnum_120, ____locale_t_62 ____l_121));// L440 +extern void (____bzero_125) (void * (____s_123), __size_t_1 ____n_124);// L446 +extern void (____bzero_126) (void * (____s_123), __size_t_1 ____n_124);// L446 +extern void (__bcopy_130) (const void * (____src_127), void * (____dest_128), __size_t_1 ____n_129);// L450:L451 +extern void (__bzero_133) (void * (____s_131), __size_t_1 ____n_132);// L454 +extern int (__bcmp_137) (const void * (____s1_134), const void * (____s2_135), __size_t_1 ____n_136);// L457:L458 +extern char * ((__index_140) (const char * (____s_138), int ____c_139));// L484:L485 +extern char * ((__rindex_143) (const char * (____s_141), int ____c_142));// L512:L513 +extern int (__ffs_145) (int ____i_144);// L518 +extern int (__strcasecmp_148) (const char * (____s1_146), const char * (____s2_147));// L529:L530 +extern int (__strncasecmp_152) (const char * (____s1_149), const char * (____s2_150), __size_t_1 ____n_151);// L533:L534 +extern char * ((__strsep_155) (char * (* __restrict ____stringp_153), const char * __restrict ____delim_154));// L552:L554 +extern char * ((__strsignal_157) (int ____sig_156));// L559 +extern char * ((____stpcpy_160) (char * __restrict ____dest_158, const char * __restrict ____src_159));// L562:L563 +extern char * ((__stpcpy_163) (char * __restrict ____dest_161, const char * __restrict ____src_162));// L564:L565 +extern char * ((____stpncpy_167) (char * __restrict ____dest_164, const char * __restrict ____src_165, __size_t_1 ____n_166));// L569:L571 +extern char * ((__stpncpy_171) (char * __restrict ____dest_168, const char * __restrict ____src_169, __size_t_1 ____n_170));// L572:L574 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ @@ -180,17 +183,17 @@ extern char * ((__stpncpy_172) (char * __restrict ____dest_169, const char * /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern char * ((____stpncpy_chk_201) (char * (____dest_197), const char * (____src_198), __size_t_1 ____n_199, __size_t_1 ____destlen_200));// L130:L131 -extern char * ((____stpncpy_alias_205) (char * (____dest_202), const char * (____src_203), __size_t_1 ____n_204));// L132:L133 +extern char * ((____stpncpy_chk_200) (char * (____dest_196), const char * (____src_197), __size_t_1 ____n_198, __size_t_1 ____destlen_199));// L130:L131 +extern char * ((____stpncpy_alias_204) (char * (____dest_201), const char * (____src_202), __size_t_1 ____n_203));// L132:L133 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ +char * (__rmm_addr_216);// L3 char * (__rmm_addr_217);// L3 -char * (__rmm_addr_218);// L3 -void (__util_ald_create_cache_220) (char * (__rmm_addr_219)) { +void (__util_ald_create_cache_219) (char * (__rmm_addr_218)) { { -if (__static_condition_default_221) { +if (__static_condition_default_220) { { { @@ -203,17 +206,17 @@ if (__static_condition_default_221) { } -if (__static_condition_default_222) { +if (__static_condition_default_221) { { { -if (__static_condition_default_223) { - __strcat_36 ( __rmm_addr_219 ,"something") ; // L8 +if (__static_condition_default_222) { + __strcat_36 ( __rmm_addr_218 ,"something") ; // L8 } -if (__static_condition_default_224) { +if (__static_condition_default_223) { __static_type_error("type error") ; // L8 } } @@ -223,31 +226,31 @@ __static_type_error("type error") ; // L8 } }} -void (__util_ald_create_caches_226) (char * (__rmm_addr_225)) { +void (__util_ald_create_caches_225) (char * (__rmm_addr_224)) { { { - __util_ald_create_cache_220 ( __rmm_addr_225 ) ; // L16 + __util_ald_create_cache_219 ( __rmm_addr_224 ) ; // L16 } } } -int (__main_227) (void ) { +int (__main_226) (void ) { { { -if (__static_condition_default_228) { - __util_ald_create_caches_226 ( __rmm_addr_217 ) ; // L21 +if (__static_condition_default_227) { + __util_ald_create_caches_225 ( __rmm_addr_216 ) ; // L21 } -if (__static_condition_default_229) { - __util_ald_create_caches_226 ( __rmm_addr_218 ) ; // L21 +if (__static_condition_default_228) { + __util_ald_create_caches_225 ( __rmm_addr_217 ) ; // L21 } return 0 ;// L22 } diff --git a/fonda/cpp_testsuite/varBugs/APACHE/9327311d30f.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/9327311d30f.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/9327311d30f.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/9327311d30f.inferres b/fonda/cpp_testsuite/varBugs/APACHE/9327311d30f.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/9327311d30f.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/97ecbec1237.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/97ecbec1237.desugared.c index 1354f0e8..260d8c9c 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/97ecbec1237.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/97ecbec1237.desugared.c @@ -7,271 +7,1338 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_129; -extern const bool __static_condition_default_131; -extern const bool __static_condition_default_268; -extern const bool __static_condition_default_108; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_106; -extern const bool __static_condition_default_265; -extern const bool __static_condition_default_154; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_804; +extern const bool __static_condition_default_826; extern const bool __static_condition_default_267; +extern const bool __static_condition_default_414; +extern const bool __static_condition_default_595; +extern const bool __static_condition_default_261; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_378; +extern const bool __static_condition_default_60; +extern const bool __static_condition_default_816; +extern const bool __static_condition_default_252; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_627; +extern const bool __static_condition_default_629; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_426; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_579; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_379; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_361; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_305; +extern const bool __static_condition_default_812; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_594; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_243; +extern const bool __static_condition_default_240; +extern const bool __static_condition_default_822; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_279; +extern const bool __static_condition_default_429; +extern const bool __static_condition_default_815; +extern const bool __static_condition_default_273; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_394; +extern const bool __static_condition_default_806; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_276; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_827; +extern const bool __static_condition_default_67; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_811; +extern const bool __static_condition_default_215; +extern const bool __static_condition_default_325; +extern const bool __static_condition_default_820; +extern const bool __static_condition_default_800; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_352; +extern const bool __static_condition_default_810; +extern const bool __static_condition_default_349; +extern const bool __static_condition_default_234; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_308; +extern const bool __static_condition_default_604; +extern const bool __static_condition_default_302; +extern const bool __static_condition_default_285; +extern const bool __static_condition_default_237; +extern const bool __static_condition_default_420; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_581; +extern const bool __static_condition_default_824; +extern const bool __static_condition_default_423; +extern const bool __static_condition_default_805; +extern const bool __static_condition_default_814; extern const bool __static_condition_default_270; -extern const bool __static_condition_default_122; -extern const bool __static_condition_default_156; -extern const bool __static_condition_default_269; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_121; -extern const bool __static_condition_default_189; -extern const bool __static_condition_default_148; -extern const bool __static_condition_default_150; -extern const bool __static_condition_default_266; -extern const bool __static_condition_default_262; -extern const bool __static_condition_default_256; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); __static_renaming("__wchar_t_2", "wchar_t"); -__static_renaming("__div_t_7", "div_t"); -__static_renaming("__ldiv_t_12", "ldiv_t"); -__static_renaming("__lldiv_t_17", "lldiv_t"); -__static_renaming("____ctype_get_mb_cur_max_18", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_19", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_20", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_21", "__ctype_get_mb_cur_max"); -__static_renaming("__atof_23", "atof"); -__static_renaming("__atof_24", "atof"); -__static_renaming("__atoi_26", "atoi"); -__static_renaming("__atoi_27", "atoi"); -__static_renaming("__atol_29", "atol"); -__static_renaming("__atol_30", "atol"); -__static_renaming("__atoll_32", "atoll"); -__static_renaming("__atoll_33", "atoll"); -__static_renaming("__strtod_36", "strtod"); -__static_renaming("__strtof_39", "strtof"); -__static_renaming("__strtold_42", "strtold"); -__static_renaming("__strtol_46", "strtol"); -__static_renaming("__strtoul_50", "strtoul"); -__static_renaming("__strtoll_54", "strtoll"); -__static_renaming("__strtoull_58", "strtoull"); -__static_renaming("__rand_62", "rand"); -__static_renaming("__rand_63", "rand"); -__static_renaming("__srand_65", "srand"); -__static_renaming("__malloc_67", "malloc"); -__static_renaming("__malloc_68", "malloc"); -__static_renaming("__calloc_71", "calloc"); -__static_renaming("__calloc_72", "calloc"); -__static_renaming("__realloc_75", "realloc"); -__static_renaming("__free_77", "free"); -__static_renaming("__aligned_alloc_80", "aligned_alloc"); -__static_renaming("__aligned_alloc_81", "aligned_alloc"); -__static_renaming("__abort_82", "abort"); -__static_renaming("__atexit_84", "atexit"); -__static_renaming("__at_quick_exit_86", "at_quick_exit"); -__static_renaming("__exit_88", "exit"); -__static_renaming("__quick_exit_90", "quick_exit"); -__static_renaming("___Exit_92", "_Exit"); -__static_renaming("__getenv_94", "getenv"); -__static_renaming("__getenv_95", "getenv"); -__static_renaming("__system_97", "system"); -__static_renaming("__system_98", "system"); -__static_renaming("____compar_fn_t_99", "__compar_fn_t"); -__static_renaming("__bsearch_107", "bsearch"); -__static_renaming("__bsearch_109", "bsearch"); -__static_renaming("____l_116", "__l"); -__static_renaming("____u_117", "__u"); -__static_renaming("____idx_118", "__idx"); -__static_renaming("____p_119", "__p"); -__static_renaming("____comparison_120", "__comparison"); -__static_renaming("__qsort_128", "qsort"); -__static_renaming("__qsort_130", "qsort"); -__static_renaming("__abs_133", "abs"); -__static_renaming("__abs_134", "abs"); -__static_renaming("__labs_136", "labs"); -__static_renaming("__labs_137", "labs"); -__static_renaming("__llabs_139", "llabs"); -__static_renaming("__llabs_140", "llabs"); -__static_renaming("__div_143", "div"); -__static_renaming("__div_144", "div"); -__static_renaming("__ldiv_147", "ldiv"); -__static_renaming("__ldiv_149", "ldiv"); -__static_renaming("__lldiv_153", "lldiv"); -__static_renaming("__lldiv_155", "lldiv"); -__static_renaming("__mblen_159", "mblen"); -__static_renaming("__mbtowc_163", "mbtowc"); -__static_renaming("__wctomb_166", "wctomb"); -__static_renaming("__mbstowcs_170", "mbstowcs"); -__static_renaming("__wcstombs_174", "wcstombs"); -__static_renaming("____realpath_chk_179", "__realpath_chk"); -__static_renaming("____realpath_alias_182", "__realpath_alias"); -__static_renaming("____realpath_chk_warn_186", "__realpath_chk_warn"); -__static_renaming("____ptsname_r_chk_194", "__ptsname_r_chk"); -__static_renaming("____ptsname_r_alias_198", "__ptsname_r_alias"); -__static_renaming("____ptsname_r_chk_warn_203", "__ptsname_r_chk_warn"); -__static_renaming("____wctomb_chk_211", "__wctomb_chk"); -__static_renaming("____wctomb_alias_214", "__wctomb_alias"); -__static_renaming("____mbstowcs_chk_221", "__mbstowcs_chk"); -__static_renaming("____mbstowcs_alias_225", "__mbstowcs_alias"); -__static_renaming("____mbstowcs_chk_warn_230", "__mbstowcs_chk_warn"); -__static_renaming("____wcstombs_chk_238", "__wcstombs_chk"); -__static_renaming("____wcstombs_alias_242", "__wcstombs_alias"); -__static_renaming("____wcstombs_chk_warn_247", "__wcstombs_chk_warn"); -__static_renaming("__cache_251", "cache"); -__static_renaming("__cache_252", "cache"); -__static_renaming("__util_ldap_shm_253", "util_ldap_shm"); -__static_renaming("__apr_shm_attach_255", "apr_shm_attach"); -__static_renaming("__apr_shm_create_259", "apr_shm_create"); -__static_renaming("__result_260", "result"); -__static_renaming("__util_ldap_cache_init_261", "util_ldap_cache_init"); -__static_renaming("__main_264", "main"); - -__static_condition_renaming("__static_condition_default_106", "!(defined _FORTIFY_SOURCE) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_108", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_121", "(defined __USE_EXTERN_INLINES) && !(defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_122", "(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_129", "!(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_131", "(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_148", "!(defined _FORTIFY_SOURCE) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_150", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_154", "!(defined _FORTIFY_SOURCE) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_156", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_189", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_256", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_257", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_262", "APR_HAS_SHARED_MEMORY"); -__static_condition_renaming("__static_condition_default_263", "!APR_HAS_SHARED_MEMORY"); -__static_condition_renaming("__static_condition_default_265", "!(defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_266", "!(defined _FORTIFY_SOURCE) && !(defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_267", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_268", "(defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_269", "!(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_270", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); +__static_renaming("__idtype_t_8", "idtype_t"); +__static_renaming("____u_char_9", "__u_char"); +__static_renaming("____u_short_10", "__u_short"); +__static_renaming("____u_int_11", "__u_int"); +__static_renaming("____u_long_12", "__u_long"); +__static_renaming("____int8_t_13", "__int8_t"); +__static_renaming("____uint8_t_14", "__uint8_t"); +__static_renaming("____int16_t_15", "__int16_t"); +__static_renaming("____uint16_t_16", "__uint16_t"); +__static_renaming("____int32_t_17", "__int32_t"); +__static_renaming("____uint32_t_18", "__uint32_t"); +__static_renaming("____int64_t_19", "__int64_t"); +__static_renaming("____uint64_t_20", "__uint64_t"); +__static_renaming("____quad_t_21", "__quad_t"); +__static_renaming("____u_quad_t_22", "__u_quad_t"); +__static_renaming("____dev_t_23", "__dev_t"); +__static_renaming("____uid_t_24", "__uid_t"); +__static_renaming("____gid_t_25", "__gid_t"); +__static_renaming("____ino_t_26", "__ino_t"); +__static_renaming("____ino64_t_27", "__ino64_t"); +__static_renaming("____mode_t_28", "__mode_t"); +__static_renaming("____nlink_t_29", "__nlink_t"); +__static_renaming("____off_t_30", "__off_t"); +__static_renaming("____off64_t_31", "__off64_t"); +__static_renaming("____pid_t_32", "__pid_t"); +__static_renaming("____fsid_t_36", "__fsid_t"); +__static_renaming("____clock_t_37", "__clock_t"); +__static_renaming("____rlim_t_38", "__rlim_t"); +__static_renaming("____rlim64_t_39", "__rlim64_t"); +__static_renaming("____id_t_40", "__id_t"); +__static_renaming("____time_t_41", "__time_t"); +__static_renaming("____useconds_t_42", "__useconds_t"); +__static_renaming("____suseconds_t_43", "__suseconds_t"); +__static_renaming("____daddr_t_44", "__daddr_t"); +__static_renaming("____key_t_45", "__key_t"); +__static_renaming("____clockid_t_46", "__clockid_t"); +__static_renaming("____timer_t_47", "__timer_t"); +__static_renaming("____blksize_t_48", "__blksize_t"); +__static_renaming("____blkcnt_t_49", "__blkcnt_t"); +__static_renaming("____blkcnt64_t_50", "__blkcnt64_t"); +__static_renaming("____fsblkcnt_t_51", "__fsblkcnt_t"); +__static_renaming("____fsblkcnt64_t_52", "__fsblkcnt64_t"); +__static_renaming("____fsfilcnt_t_53", "__fsfilcnt_t"); +__static_renaming("____fsfilcnt64_t_54", "__fsfilcnt64_t"); +__static_renaming("____fsword_t_55", "__fsword_t"); +__static_renaming("____ssize_t_56", "__ssize_t"); +__static_renaming("____syscall_slong_t_57", "__syscall_slong_t"); +__static_renaming("____syscall_ulong_t_58", "__syscall_ulong_t"); +__static_renaming("____loff_t_59", "__loff_t"); +__static_renaming("____qaddr_t_61", "__qaddr_t"); +__static_renaming("____caddr_t_62", "__caddr_t"); +__static_renaming("____intptr_t_63", "__intptr_t"); +__static_renaming("____socklen_t_64", "__socklen_t"); +__static_renaming("____bswap_32_66", "__bswap_32"); +__static_renaming("____bswap_64_69", "__bswap_64"); +__static_renaming("____WAIT_STATUS_89", "__WAIT_STATUS"); +__static_renaming("__div_t_94", "div_t"); +__static_renaming("__ldiv_t_99", "ldiv_t"); +__static_renaming("__lldiv_t_104", "lldiv_t"); +__static_renaming("____ctype_get_mb_cur_max_105", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_106", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_107", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_108", "__ctype_get_mb_cur_max"); +__static_renaming("__atof_110", "atof"); +__static_renaming("__atof_111", "atof"); +__static_renaming("__atoi_113", "atoi"); +__static_renaming("__atoi_114", "atoi"); +__static_renaming("__atol_116", "atol"); +__static_renaming("__atol_117", "atol"); +__static_renaming("__atoll_119", "atoll"); +__static_renaming("__atoll_120", "atoll"); +__static_renaming("__strtod_123", "strtod"); +__static_renaming("__strtof_126", "strtof"); +__static_renaming("__strtold_129", "strtold"); +__static_renaming("__strtol_133", "strtol"); +__static_renaming("__strtoul_137", "strtoul"); +__static_renaming("__strtoq_141", "strtoq"); +__static_renaming("__strtouq_145", "strtouq"); +__static_renaming("__strtoll_149", "strtoll"); +__static_renaming("__strtoll_150", "strtoll"); +__static_renaming("__strtoull_154", "strtoull"); +__static_renaming("__l64a_159", "l64a"); +__static_renaming("__l64a_160", "l64a"); +__static_renaming("__a64l_162", "a64l"); +__static_renaming("__a64l_163", "a64l"); +__static_renaming("____u_char_164", "__u_char"); +__static_renaming("____u_short_165", "__u_short"); +__static_renaming("____u_int_166", "__u_int"); +__static_renaming("____u_long_167", "__u_long"); +__static_renaming("____int8_t_168", "__int8_t"); +__static_renaming("____uint8_t_169", "__uint8_t"); +__static_renaming("____int16_t_170", "__int16_t"); +__static_renaming("____uint16_t_171", "__uint16_t"); +__static_renaming("____int32_t_172", "__int32_t"); +__static_renaming("____uint32_t_173", "__uint32_t"); +__static_renaming("____int64_t_174", "__int64_t"); +__static_renaming("____uint64_t_175", "__uint64_t"); +__static_renaming("____quad_t_176", "__quad_t"); +__static_renaming("____u_quad_t_177", "__u_quad_t"); +__static_renaming("____dev_t_178", "__dev_t"); +__static_renaming("____uid_t_179", "__uid_t"); +__static_renaming("____gid_t_180", "__gid_t"); +__static_renaming("____ino_t_181", "__ino_t"); +__static_renaming("____ino64_t_182", "__ino64_t"); +__static_renaming("____mode_t_183", "__mode_t"); +__static_renaming("____nlink_t_184", "__nlink_t"); +__static_renaming("____off_t_185", "__off_t"); +__static_renaming("____off64_t_186", "__off64_t"); +__static_renaming("____pid_t_187", "__pid_t"); +__static_renaming("____fsid_t_191", "__fsid_t"); +__static_renaming("____clock_t_192", "__clock_t"); +__static_renaming("____rlim_t_193", "__rlim_t"); +__static_renaming("____rlim64_t_194", "__rlim64_t"); +__static_renaming("____id_t_195", "__id_t"); +__static_renaming("____time_t_196", "__time_t"); +__static_renaming("____useconds_t_197", "__useconds_t"); +__static_renaming("____suseconds_t_198", "__suseconds_t"); +__static_renaming("____daddr_t_199", "__daddr_t"); +__static_renaming("____key_t_200", "__key_t"); +__static_renaming("____clockid_t_201", "__clockid_t"); +__static_renaming("____timer_t_202", "__timer_t"); +__static_renaming("____blksize_t_203", "__blksize_t"); +__static_renaming("____blkcnt_t_204", "__blkcnt_t"); +__static_renaming("____blkcnt64_t_205", "__blkcnt64_t"); +__static_renaming("____fsblkcnt_t_206", "__fsblkcnt_t"); +__static_renaming("____fsblkcnt64_t_207", "__fsblkcnt64_t"); +__static_renaming("____fsfilcnt_t_208", "__fsfilcnt_t"); +__static_renaming("____fsfilcnt64_t_209", "__fsfilcnt64_t"); +__static_renaming("____fsword_t_210", "__fsword_t"); +__static_renaming("____ssize_t_211", "__ssize_t"); +__static_renaming("____syscall_slong_t_212", "__syscall_slong_t"); +__static_renaming("____syscall_ulong_t_213", "__syscall_ulong_t"); +__static_renaming("____loff_t_214", "__loff_t"); +__static_renaming("____qaddr_t_216", "__qaddr_t"); +__static_renaming("____caddr_t_217", "__caddr_t"); +__static_renaming("____intptr_t_218", "__intptr_t"); +__static_renaming("____socklen_t_219", "__socklen_t"); +__static_renaming("__u_char_220", "u_char"); +__static_renaming("__u_char_221", "u_char"); +__static_renaming("__u_short_222", "u_short"); +__static_renaming("__u_short_223", "u_short"); +__static_renaming("__u_int_224", "u_int"); +__static_renaming("__u_int_225", "u_int"); +__static_renaming("__u_long_226", "u_long"); +__static_renaming("__u_long_227", "u_long"); +__static_renaming("__quad_t_228", "quad_t"); +__static_renaming("__quad_t_229", "quad_t"); +__static_renaming("__u_quad_t_230", "u_quad_t"); +__static_renaming("__u_quad_t_231", "u_quad_t"); +__static_renaming("__fsid_t_232", "fsid_t"); +__static_renaming("__fsid_t_233", "fsid_t"); +__static_renaming("__loff_t_235", "loff_t"); +__static_renaming("__loff_t_236", "loff_t"); +__static_renaming("__loff_t_238", "loff_t"); +__static_renaming("__loff_t_239", "loff_t"); +__static_renaming("__ino_t_241", "ino_t"); +__static_renaming("__ino_t_242", "ino_t"); +__static_renaming("__ino_t_244", "ino_t"); +__static_renaming("__ino_t_245", "ino_t"); +__static_renaming("__dev_t_247", "dev_t"); +__static_renaming("__dev_t_248", "dev_t"); +__static_renaming("__gid_t_250", "gid_t"); +__static_renaming("__gid_t_251", "gid_t"); +__static_renaming("__gid_t_253", "gid_t"); +__static_renaming("__gid_t_254", "gid_t"); +__static_renaming("__mode_t_256", "mode_t"); +__static_renaming("__mode_t_257", "mode_t"); +__static_renaming("__nlink_t_259", "nlink_t"); +__static_renaming("__nlink_t_260", "nlink_t"); +__static_renaming("__uid_t_262", "uid_t"); +__static_renaming("__uid_t_263", "uid_t"); +__static_renaming("__uid_t_265", "uid_t"); +__static_renaming("__uid_t_266", "uid_t"); +__static_renaming("__off_t_268", "off_t"); +__static_renaming("__off_t_269", "off_t"); +__static_renaming("__off_t_271", "off_t"); +__static_renaming("__off_t_272", "off_t"); +__static_renaming("__pid_t_274", "pid_t"); +__static_renaming("__pid_t_275", "pid_t"); +__static_renaming("__pid_t_277", "pid_t"); +__static_renaming("__pid_t_278", "pid_t"); +__static_renaming("__id_t_280", "id_t"); +__static_renaming("__id_t_281", "id_t"); +__static_renaming("__ssize_t_283", "ssize_t"); +__static_renaming("__ssize_t_284", "ssize_t"); +__static_renaming("__daddr_t_286", "daddr_t"); +__static_renaming("__daddr_t_287", "daddr_t"); +__static_renaming("__caddr_t_289", "caddr_t"); +__static_renaming("__caddr_t_290", "caddr_t"); +__static_renaming("__key_t_291", "key_t"); +__static_renaming("__key_t_292", "key_t"); +__static_renaming("__key_t_294", "key_t"); +__static_renaming("__key_t_295", "key_t"); +__static_renaming("__clock_t_297", "clock_t"); +__static_renaming("__clock_t_298", "clock_t"); +__static_renaming("__time_t_300", "time_t"); +__static_renaming("__time_t_301", "time_t"); +__static_renaming("__clockid_t_303", "clockid_t"); +__static_renaming("__clockid_t_304", "clockid_t"); +__static_renaming("__timer_t_306", "timer_t"); +__static_renaming("__timer_t_307", "timer_t"); +__static_renaming("__ulong_309", "ulong"); +__static_renaming("__ulong_310", "ulong"); +__static_renaming("__ulong_311", "ulong"); +__static_renaming("__ushort_312", "ushort"); +__static_renaming("__uint_313", "uint"); +__static_renaming("__int8_t_314", "int8_t"); +__static_renaming("__int16_t_315", "int16_t"); +__static_renaming("__int32_t_316", "int32_t"); +__static_renaming("__int64_t_317", "int64_t"); +__static_renaming("__u_int8_t_318", "u_int8_t"); +__static_renaming("__u_int16_t_319", "u_int16_t"); +__static_renaming("__u_int32_t_320", "u_int32_t"); +__static_renaming("__u_int64_t_321", "u_int64_t"); +__static_renaming("__register_t_322", "register_t"); +__static_renaming("____bswap_32_324", "__bswap_32"); +__static_renaming("____bswap_64_327", "__bswap_64"); +__static_renaming("____sig_atomic_t_328", "__sig_atomic_t"); +__static_renaming("____sigset_t_332", "__sigset_t"); +__static_renaming("__sigset_t_333", "sigset_t"); +__static_renaming("__suseconds_t_350", "suseconds_t"); +__static_renaming("__suseconds_t_351", "suseconds_t"); +__static_renaming("____fd_mask_353", "__fd_mask"); +__static_renaming("____fd_mask_354", "__fd_mask"); +__static_renaming("__fd_set_362", "fd_set"); +__static_renaming("__fd_mask_363", "fd_mask"); +__static_renaming("__fd_mask_364", "fd_mask"); +__static_renaming("__select_376", "select"); +__static_renaming("__select_377", "select"); +__static_renaming("__pselect_392", "pselect"); +__static_renaming("__pselect_393", "pselect"); +__static_renaming("____fdelt_chk_397", "__fdelt_chk"); +__static_renaming("____fdelt_warn_399", "__fdelt_warn"); +__static_renaming("__gnu_dev_major_401", "gnu_dev_major"); +__static_renaming("__gnu_dev_major_402", "gnu_dev_major"); +__static_renaming("__gnu_dev_minor_404", "gnu_dev_minor"); +__static_renaming("__gnu_dev_makedev_407", "gnu_dev_makedev"); +__static_renaming("__blksize_t_412", "blksize_t"); +__static_renaming("__blksize_t_413", "blksize_t"); +__static_renaming("__blkcnt_t_415", "blkcnt_t"); +__static_renaming("__blkcnt_t_416", "blkcnt_t"); +__static_renaming("__fsblkcnt_t_418", "fsblkcnt_t"); +__static_renaming("__fsblkcnt_t_419", "fsblkcnt_t"); +__static_renaming("__blkcnt_t_421", "blkcnt_t"); +__static_renaming("__blkcnt_t_422", "blkcnt_t"); +__static_renaming("__fsblkcnt_t_424", "fsblkcnt_t"); +__static_renaming("__fsblkcnt_t_425", "fsblkcnt_t"); +__static_renaming("__fsfilcnt_t_427", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_428", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_430", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_431", "fsfilcnt_t"); +__static_renaming("__pthread_t_433", "pthread_t"); +__static_renaming("__pthread_attr_t_437", "pthread_attr_t"); +__static_renaming("____pthread_list_t_442", "__pthread_list_t"); +__static_renaming("____pthread_list_t_443", "__pthread_list_t"); +__static_renaming("__pthread_mutex_t_459", "pthread_mutex_t"); +__static_renaming("__pthread_mutexattr_t_464", "pthread_mutexattr_t"); +__static_renaming("__rand_465", "rand"); +__static_renaming("__srand_467", "srand"); +__static_renaming("__rand_r_469", "rand_r"); +__static_renaming("__drand48_470", "drand48"); +__static_renaming("__erand48_472", "erand48"); +__static_renaming("__lrand48_473", "lrand48"); +__static_renaming("__nrand48_475", "nrand48"); +__static_renaming("__mrand48_476", "mrand48"); +__static_renaming("__jrand48_478", "jrand48"); +__static_renaming("__srand48_480", "srand48"); +__static_renaming("__seed48_482", "seed48"); +__static_renaming("__lcong48_484", "lcong48"); +__static_renaming("__malloc_486", "malloc"); +__static_renaming("__malloc_487", "malloc"); +__static_renaming("__calloc_490", "calloc"); +__static_renaming("__calloc_491", "calloc"); +__static_renaming("__realloc_494", "realloc"); +__static_renaming("__free_496", "free"); +__static_renaming("__cfree_498", "cfree"); +__static_renaming("__alloca_500", "alloca"); +__static_renaming("__valloc_502", "valloc"); +__static_renaming("__valloc_503", "valloc"); +__static_renaming("__posix_memalign_507", "posix_memalign"); +__static_renaming("__posix_memalign_508", "posix_memalign"); +__static_renaming("__aligned_alloc_511", "aligned_alloc"); +__static_renaming("__aligned_alloc_512", "aligned_alloc"); +__static_renaming("__aligned_alloc_513", "aligned_alloc"); +__static_renaming("__aligned_alloc_514", "aligned_alloc"); +__static_renaming("__abort_515", "abort"); +__static_renaming("__atexit_517", "atexit"); +__static_renaming("__at_quick_exit_519", "at_quick_exit"); +__static_renaming("__on_exit_524", "on_exit"); +__static_renaming("__exit_526", "exit"); +__static_renaming("__exit_527", "exit"); +__static_renaming("__quick_exit_529", "quick_exit"); +__static_renaming("___Exit_531", "_Exit"); +__static_renaming("__getenv_533", "getenv"); +__static_renaming("__getenv_534", "getenv"); +__static_renaming("__putenv_536", "putenv"); +__static_renaming("__setenv_540", "setenv"); +__static_renaming("__unsetenv_542", "unsetenv"); +__static_renaming("__clearenv_543", "clearenv"); +__static_renaming("__mktemp_545", "mktemp"); +__static_renaming("__mkstemp_548", "mkstemp"); +__static_renaming("__mkstemp_549", "mkstemp"); +__static_renaming("__mkstemp_550", "mkstemp"); +__static_renaming("__mkstemp_551", "mkstemp"); +__static_renaming("__mkstemps_556", "mkstemps"); +__static_renaming("__mkstemps_557", "mkstemps"); +__static_renaming("__mkstemps_558", "mkstemps"); +__static_renaming("__mkstemps_559", "mkstemps"); +__static_renaming("__mkdtemp_561", "mkdtemp"); +__static_renaming("__mkdtemp_562", "mkdtemp"); +__static_renaming("__system_564", "system"); +__static_renaming("__system_565", "system"); +__static_renaming("__system_566", "system"); +__static_renaming("__system_567", "system"); +__static_renaming("__realpath_570", "realpath"); +__static_renaming("__realpath_571", "realpath"); +__static_renaming("____compar_fn_t_572", "__compar_fn_t"); +__static_renaming("__bsearch_580", "bsearch"); +__static_renaming("__bsearch_582", "bsearch"); +__static_renaming("____l_589", "__l"); +__static_renaming("____u_590", "__u"); +__static_renaming("____idx_591", "__idx"); +__static_renaming("____p_592", "__p"); +__static_renaming("____comparison_593", "__comparison"); +__static_renaming("__qsort_601", "qsort"); +__static_renaming("__qsort_603", "qsort"); +__static_renaming("__abs_606", "abs"); +__static_renaming("__abs_607", "abs"); +__static_renaming("__labs_609", "labs"); +__static_renaming("__labs_610", "labs"); +__static_renaming("__llabs_612", "llabs"); +__static_renaming("__llabs_613", "llabs"); +__static_renaming("__div_616", "div"); +__static_renaming("__div_617", "div"); +__static_renaming("__ldiv_620", "ldiv"); +__static_renaming("__ldiv_622", "ldiv"); +__static_renaming("__lldiv_626", "lldiv"); +__static_renaming("__lldiv_628", "lldiv"); +__static_renaming("__ecvt_634", "ecvt"); +__static_renaming("__ecvt_635", "ecvt"); +__static_renaming("__fcvt_640", "fcvt"); +__static_renaming("__fcvt_641", "fcvt"); +__static_renaming("__gcvt_645", "gcvt"); +__static_renaming("__gcvt_646", "gcvt"); +__static_renaming("__qecvt_651", "qecvt"); +__static_renaming("__qecvt_652", "qecvt"); +__static_renaming("__qfcvt_657", "qfcvt"); +__static_renaming("__qfcvt_658", "qfcvt"); +__static_renaming("__qgcvt_662", "qgcvt"); +__static_renaming("__qgcvt_663", "qgcvt"); +__static_renaming("__ecvt_r_670", "ecvt_r"); +__static_renaming("__fcvt_r_677", "fcvt_r"); +__static_renaming("__qecvt_r_684", "qecvt_r"); +__static_renaming("__qfcvt_r_691", "qfcvt_r"); +__static_renaming("__mblen_694", "mblen"); +__static_renaming("__mblen_695", "mblen"); +__static_renaming("__mbtowc_699", "mbtowc"); +__static_renaming("__wctomb_702", "wctomb"); +__static_renaming("__mbstowcs_706", "mbstowcs"); +__static_renaming("__wcstombs_710", "wcstombs"); +__static_renaming("__rpmatch_712", "rpmatch"); +__static_renaming("__rpmatch_713", "rpmatch"); +__static_renaming("__getsubopt_717", "getsubopt"); +__static_renaming("__getsubopt_718", "getsubopt"); +__static_renaming("__getloadavg_721", "getloadavg"); +__static_renaming("____realpath_chk_726", "__realpath_chk"); +__static_renaming("____realpath_alias_729", "__realpath_alias"); +__static_renaming("____realpath_chk_warn_733", "__realpath_chk_warn"); +__static_renaming("____ptsname_r_chk_741", "__ptsname_r_chk"); +__static_renaming("____ptsname_r_alias_745", "__ptsname_r_alias"); +__static_renaming("____ptsname_r_chk_warn_750", "__ptsname_r_chk_warn"); +__static_renaming("____wctomb_chk_758", "__wctomb_chk"); +__static_renaming("____wctomb_alias_761", "__wctomb_alias"); +__static_renaming("____mbstowcs_chk_768", "__mbstowcs_chk"); +__static_renaming("____mbstowcs_alias_772", "__mbstowcs_alias"); +__static_renaming("____mbstowcs_chk_warn_777", "__mbstowcs_chk_warn"); +__static_renaming("____wcstombs_chk_785", "__wcstombs_chk"); +__static_renaming("____wcstombs_alias_789", "__wcstombs_alias"); +__static_renaming("____wcstombs_chk_warn_794", "__wcstombs_chk_warn"); +__static_renaming("__cache_798", "cache"); +__static_renaming("__cache_799", "cache"); +__static_renaming("__util_ldap_shm_801", "util_ldap_shm"); +__static_renaming("__apr_shm_attach_803", "apr_shm_attach"); +__static_renaming("__apr_shm_create_808", "apr_shm_create"); +__static_renaming("__result_817", "result"); +__static_renaming("__util_ldap_cache_init_818", "util_ldap_cache_init"); +__static_renaming("__main_821", "main"); +__static_condition_renaming("__static_condition_default_60", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_67", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_215", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_234", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __u_char_defined)"); +__static_condition_renaming("__static_condition_default_237", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __u_char_defined)"); +__static_condition_renaming("__static_condition_default_240", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __u_char_defined)"); +__static_condition_renaming("__static_condition_default_243", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ino_t_defined)"); +__static_condition_renaming("__static_condition_default_246", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ino_t_defined) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ino_t_defined)"); +__static_condition_renaming("__static_condition_default_249", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_252", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_255", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_258", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_261", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __nlink_t_defined)"); +__static_condition_renaming("__static_condition_default_264", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __nlink_t_defined)"); +__static_condition_renaming("__static_condition_default_267", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __nlink_t_defined)"); +__static_condition_renaming("__static_condition_default_270", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_273", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_276", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_279", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_282", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __id_t_defined)"); +__static_condition_renaming("__static_condition_default_285", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_288", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_293", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_296", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_299", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __clock_t_defined)"); +__static_condition_renaming("__static_condition_default_302", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __time_t_defined)"); +__static_condition_renaming("__static_condition_default_305", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __clockid_t_defined)"); +__static_condition_renaming("__static_condition_default_308", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __timer_t_defined)"); +__static_condition_renaming("__static_condition_default_325", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_341", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_349", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_352", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __suseconds_t_defined)"); +__static_condition_renaming("__static_condition_default_361", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_378", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_379", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_394", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_395", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_414", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blksize_t_defined)"); +__static_condition_renaming("__static_condition_default_417", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blkcnt_t_defined) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blkcnt_t_defined)"); +__static_condition_renaming("__static_condition_default_420", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_423", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blkcnt_t_defined)"); +__static_condition_renaming("__static_condition_default_426", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_429", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_432", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_579", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_581", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_594", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __USE_EXTERN_INLINES) && !(defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_595", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_602", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_604", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_621", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_623", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_627", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_629", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_736", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_800", "!(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_804", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_805", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_806", "!(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_809", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_810", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_811", "!(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_812", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined)"); +__static_condition_renaming("__static_condition_default_813", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined)"); +__static_condition_renaming("__static_condition_default_814", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined __need_malloc_and_calloc) || (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_815", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_816", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_819", "APR_HAS_SHARED_MEMORY"); +__static_condition_renaming("__static_condition_default_820", "!APR_HAS_SHARED_MEMORY"); +__static_condition_renaming("__static_condition_default_822", "!(defined _STDLIB_H) && (defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_823", "!(defined _STDLIB_H) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined)"); +__static_condition_renaming("__static_condition_default_824", "!(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined)"); +__static_condition_renaming("__static_condition_default_825", "!(defined _STDLIB_H) && (defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined)"); +__static_condition_renaming("__static_condition_default_826", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined __need_malloc_and_calloc) || (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_827", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc)"); + +if (__static_condition_default_827) { +__static_parse_error("Unable to parse"); +} }; typedef long int __ptrdiff_t_0;// L143:L324 typedef long unsigned int __size_t_1;// L177:L209 typedef int __wchar_t_2;// L243:L321 -struct ____anonymous_tag_3_4 { -int __quot_5;// L99 -int __rem_6;// L100 +enum ____anonymous_tag_6_7 { +__P_ALL_3, +__P_PID_4, +__P_PGID_5, +}; +typedef enum ____anonymous_tag_6_7 __idtype_t_8;// L50:L55 +typedef unsigned char ____u_char_9;// L30 +typedef unsigned short int ____u_short_10;// L31 +typedef unsigned int ____u_int_11;// L32 +typedef unsigned long int ____u_long_12;// L33 +typedef signed char ____int8_t_13;// L36 +typedef unsigned char ____uint8_t_14;// L37 +typedef signed short int ____int16_t_15;// L38 +typedef unsigned short int ____uint16_t_16;// L39 +typedef signed int ____int32_t_17;// L40 +typedef unsigned int ____uint32_t_18;// L41 +typedef signed long int ____int64_t_19;// L43 +typedef unsigned long int ____uint64_t_20;// L44 +typedef long int ____quad_t_21;// L52 +typedef unsigned long int ____u_quad_t_22;// L53 +typedef unsigned long int ____dev_t_23;// L109:L124 +typedef unsigned int ____uid_t_24;// L92:L125 +typedef unsigned int ____gid_t_25;// L92:L126 +typedef unsigned long int ____ino_t_26;// L94:L127 +typedef unsigned long int ____ino64_t_27;// L109:L128 +typedef unsigned int ____mode_t_28;// L92:L129 +typedef unsigned long int ____nlink_t_29;// L94:L130 +typedef long int ____off_t_30;// L93:L131 +typedef long int ____off64_t_31;// L108:L132 +typedef int ____pid_t_32;// L91:L133 +struct ____anonymous_tag_33_34 { +int ____val_35[2];// L72 +}; +typedef struct ____anonymous_tag_33_34 ____fsid_t_36;// L72:L134 +typedef long int ____clock_t_37;// L93:L135 +typedef unsigned long int ____rlim_t_38;// L94:L136 +typedef unsigned long int ____rlim64_t_39;// L109:L137 +typedef unsigned int ____id_t_40;// L92:L138 +typedef long int ____time_t_41;// L93:L139 +typedef unsigned int ____useconds_t_42;// L92:L140 +typedef long int ____suseconds_t_43;// L93:L141 +typedef int ____daddr_t_44;// L91:L143 +typedef int ____key_t_45;// L91:L144 +typedef int ____clockid_t_46;// L91:L147 +typedef void * (____timer_t_47);// L70:L150 +typedef long int ____blksize_t_48;// L93:L153 +typedef long int ____blkcnt_t_49;// L93:L158 +typedef long int ____blkcnt64_t_50;// L108:L159 +typedef unsigned long int ____fsblkcnt_t_51;// L94:L162 +typedef unsigned long int ____fsblkcnt64_t_52;// L109:L163 +typedef unsigned long int ____fsfilcnt_t_53;// L94:L166 +typedef unsigned long int ____fsfilcnt64_t_54;// L109:L167 +typedef long int ____fsword_t_55;// L93:L170 +typedef long int ____ssize_t_56;// L110:L172 +typedef long int ____syscall_slong_t_57;// L93:L175 +typedef unsigned long int ____syscall_ulong_t_58;// L94:L177 +typedef ____off64_t_31 ____loff_t_59;// L181 +typedef ____quad_t_21 * (____qaddr_t_61);// L182 +typedef char * (____caddr_t_62);// L183 +typedef long int ____intptr_t_63;// L110:L186 +typedef unsigned int ____socklen_t_64;// L92:L189 +struct ____anonymous_tag_70_71 { +unsigned int ____w_termsig_72 : 7;// L72 +unsigned int ____w_coredump_73 : 1;// L73 +unsigned int ____w_retcode_74 : 8;// L74 +unsigned int __anon_id_0_75 : 16;// L75 +}; +struct ____anonymous_tag_76_77 { +unsigned int ____w_stopval_78 : 8;// L87 +unsigned int ____w_stopsig_79 : 8;// L88 +unsigned int __anon_id_1_80 : 16;// L89 +}; +union __wait_81 { +int __w_status_82;// L68 +struct ____anonymous_tag_70_71 ____wait_terminated_83;// L69 +struct ____anonymous_tag_76_77 ____wait_stopped_84;// L84 +}; +union ____anonymous_tag_85_86 { +union __wait_81 * (____uptr_87);// L69 +int * (____iptr_88);// L70 +}; +typedef union ____anonymous_tag_85_86 ____WAIT_STATUS_89;// L67:L71 +struct ____anonymous_tag_90_91 { +int __quot_92;// L99 +int __rem_93;// L100 +}; +typedef struct ____anonymous_tag_90_91 __div_t_94;// L97:L101 +struct ____anonymous_tag_95_96 { +long int __quot_97;// L107 +long int __rem_98;// L108 +}; +typedef struct ____anonymous_tag_95_96 __ldiv_t_99;// L105:L109 +struct ____anonymous_tag_100_101 { +long long int __quot_102;// L119 +long long int __rem_103;// L120 }; -typedef struct ____anonymous_tag_3_4 __div_t_7;// L97:L101 -struct ____anonymous_tag_8_9 { -long int __quot_10;// L107 -long int __rem_11;// L108 +typedef struct ____anonymous_tag_100_101 __lldiv_t_104;// L117:L121 +typedef unsigned char ____u_char_164;// L30 +typedef unsigned short int ____u_short_165;// L31 +typedef unsigned int ____u_int_166;// L32 +typedef unsigned long int ____u_long_167;// L33 +typedef signed char ____int8_t_168;// L36 +typedef unsigned char ____uint8_t_169;// L37 +typedef signed short int ____int16_t_170;// L38 +typedef unsigned short int ____uint16_t_171;// L39 +typedef signed int ____int32_t_172;// L40 +typedef unsigned int ____uint32_t_173;// L41 +typedef signed long int ____int64_t_174;// L43 +typedef unsigned long int ____uint64_t_175;// L44 +typedef long int ____quad_t_176;// L52 +typedef unsigned long int ____u_quad_t_177;// L53 +typedef unsigned long int ____dev_t_178;// L109:L124 +typedef unsigned int ____uid_t_179;// L92:L125 +typedef unsigned int ____gid_t_180;// L92:L126 +typedef unsigned long int ____ino_t_181;// L94:L127 +typedef unsigned long int ____ino64_t_182;// L109:L128 +typedef unsigned int ____mode_t_183;// L92:L129 +typedef unsigned long int ____nlink_t_184;// L94:L130 +typedef long int ____off_t_185;// L93:L131 +typedef long int ____off64_t_186;// L108:L132 +typedef int ____pid_t_187;// L91:L133 +struct ____anonymous_tag_188_189 { +int ____val_190[2];// L72 }; -typedef struct ____anonymous_tag_8_9 __ldiv_t_12;// L105:L109 -struct ____anonymous_tag_13_14 { -long long int __quot_15;// L119 -long long int __rem_16;// L120 +typedef struct ____anonymous_tag_188_189 ____fsid_t_191;// L72:L134 +typedef long int ____clock_t_192;// L93:L135 +typedef unsigned long int ____rlim_t_193;// L94:L136 +typedef unsigned long int ____rlim64_t_194;// L109:L137 +typedef unsigned int ____id_t_195;// L92:L138 +typedef long int ____time_t_196;// L93:L139 +typedef unsigned int ____useconds_t_197;// L92:L140 +typedef long int ____suseconds_t_198;// L93:L141 +typedef int ____daddr_t_199;// L91:L143 +typedef int ____key_t_200;// L91:L144 +typedef int ____clockid_t_201;// L91:L147 +typedef void * (____timer_t_202);// L70:L150 +typedef long int ____blksize_t_203;// L93:L153 +typedef long int ____blkcnt_t_204;// L93:L158 +typedef long int ____blkcnt64_t_205;// L108:L159 +typedef unsigned long int ____fsblkcnt_t_206;// L94:L162 +typedef unsigned long int ____fsblkcnt64_t_207;// L109:L163 +typedef unsigned long int ____fsfilcnt_t_208;// L94:L166 +typedef unsigned long int ____fsfilcnt64_t_209;// L109:L167 +typedef long int ____fsword_t_210;// L93:L170 +typedef long int ____ssize_t_211;// L110:L172 +typedef long int ____syscall_slong_t_212;// L93:L175 +typedef unsigned long int ____syscall_ulong_t_213;// L94:L177 +typedef ____off64_t_186 ____loff_t_214;// L181 +typedef ____quad_t_176 * (____qaddr_t_216);// L182 +typedef char * (____caddr_t_217);// L183 +typedef long int ____intptr_t_218;// L110:L186 +typedef unsigned int ____socklen_t_219;// L92:L189 +typedef ____u_char_9 __u_char_220;// L33 +typedef ____u_char_164 __u_char_221;// L33 +typedef ____u_short_10 __u_short_222;// L34 +typedef ____u_short_165 __u_short_223;// L34 +typedef ____u_int_11 __u_int_224;// L35 +typedef ____u_int_166 __u_int_225;// L35 +typedef ____u_long_12 __u_long_226;// L36 +typedef ____u_long_167 __u_long_227;// L36 +typedef ____quad_t_21 __quad_t_228;// L37 +typedef ____quad_t_176 __quad_t_229;// L37 +typedef ____u_quad_t_22 __u_quad_t_230;// L38 +typedef ____u_quad_t_177 __u_quad_t_231;// L38 +typedef ____fsid_t_36 __fsid_t_232;// L39 +typedef ____fsid_t_191 __fsid_t_233;// L39 +typedef ____loff_t_59 __loff_t_235;// L44 +typedef ____loff_t_214 __loff_t_236;// L44 +typedef ____loff_t_59 __loff_t_238;// L44 +typedef ____loff_t_214 __loff_t_239;// L44 +typedef ____ino64_t_27 __ino_t_241;// L50 +typedef ____ino64_t_182 __ino_t_242;// L50 +typedef ____ino_t_26 __ino_t_244;// L48 +typedef ____ino_t_181 __ino_t_245;// L48 +typedef ____dev_t_23 __dev_t_247;// L60 +typedef ____dev_t_178 __dev_t_248;// L60 +typedef ____gid_t_25 __gid_t_250;// L65 +typedef ____gid_t_180 __gid_t_251;// L65 +typedef ____gid_t_25 __gid_t_253;// L65 +typedef ____gid_t_180 __gid_t_254;// L65 +typedef ____mode_t_28 __mode_t_256;// L70 +typedef ____mode_t_183 __mode_t_257;// L70 +typedef ____nlink_t_29 __nlink_t_259;// L75 +typedef ____nlink_t_184 __nlink_t_260;// L75 +typedef ____uid_t_24 __uid_t_262;// L80 +typedef ____uid_t_179 __uid_t_263;// L80 +typedef ____uid_t_24 __uid_t_265;// L80 +typedef ____uid_t_179 __uid_t_266;// L80 +typedef ____off64_t_31 __off_t_268;// L88 +typedef ____off64_t_186 __off_t_269;// L88 +typedef ____off_t_30 __off_t_271;// L86 +typedef ____off_t_185 __off_t_272;// L86 +typedef ____pid_t_32 __pid_t_274;// L98 +typedef ____pid_t_187 __pid_t_275;// L98 +typedef ____pid_t_32 __pid_t_277;// L98 +typedef ____pid_t_187 __pid_t_278;// L98 +typedef ____id_t_40 __id_t_280;// L104 +typedef ____id_t_195 __id_t_281;// L104 +typedef ____ssize_t_56 __ssize_t_283;// L109 +typedef ____ssize_t_211 __ssize_t_284;// L109 +typedef ____daddr_t_44 __daddr_t_286;// L115 +typedef ____daddr_t_199 __daddr_t_287;// L115 +typedef ____caddr_t_62 __caddr_t_289;// L116 +typedef ____caddr_t_217 __caddr_t_290;// L116 +typedef ____key_t_45 __key_t_291;// L122 +typedef ____key_t_200 __key_t_292;// L122 +typedef ____key_t_45 __key_t_294;// L122 +typedef ____key_t_200 __key_t_295;// L122 +typedef ____clock_t_37 __clock_t_297;// L59 +typedef ____clock_t_192 __clock_t_298;// L59 +typedef ____time_t_41 __time_t_300;// L75 +typedef ____time_t_196 __time_t_301;// L75 +typedef ____clockid_t_46 __clockid_t_303;// L91 +typedef ____clockid_t_201 __clockid_t_304;// L91 +typedef ____timer_t_47 __timer_t_306;// L103 +typedef ____timer_t_202 __timer_t_307;// L103 +typedef unsigned long int __ulong_309;// L150 +typedef unsigned long int __ulong_310;// L150 +typedef unsigned long int __ulong_311;// L150 +typedef unsigned short int __ushort_312;// L151 +typedef unsigned int __uint_313;// L152 +typedef int __int8_t_314;// L188:L194 +typedef int __int16_t_315;// L188:L195 +typedef int __int32_t_316;// L188:L196 +typedef int __int64_t_317;// L188:L197 +typedef unsigned int __u_int8_t_318;// L190:L200 +typedef unsigned int __u_int16_t_319;// L190:L201 +typedef unsigned int __u_int32_t_320;// L190:L202 +typedef unsigned int __u_int64_t_321;// L190:L203 +typedef int __register_t_322;// L205 +typedef int ____sig_atomic_t_328;// L22 +struct ____anonymous_tag_329_330 { +unsigned long int ____val_331[( 1024 / ( 8 * sizeof(unsigned long) ) )];// L29 }; -typedef struct ____anonymous_tag_13_14 __lldiv_t_17;// L117:L121 -typedef int (* (____compar_fn_t_99)) (const void *, const void *);// L741 +typedef struct ____anonymous_tag_329_330 ____sigset_t_332;// L27:L30 +typedef ____sigset_t_332 __sigset_t_333;// L37 +struct __timespec_334 { +____time_t_41 __tv_sec_335;// L0 +____time_t_196 __tv_sec_336;// L0 +____syscall_slong_t_57 __tv_nsec_338;// L0 +____syscall_slong_t_212 __tv_nsec_339;// L0 +}; +struct __timeval_342 { +____time_t_41 __tv_sec_343;// L0 +____time_t_196 __tv_sec_344;// L0 +____suseconds_t_43 __tv_usec_346;// L0 +____suseconds_t_198 __tv_usec_347;// L0 +}; +typedef ____suseconds_t_43 __suseconds_t_350;// L48 +typedef ____suseconds_t_198 __suseconds_t_351;// L48 +typedef long int ____fd_mask_353;// L54 +typedef long int ____fd_mask_354;// L54 +struct ____anonymous_tag_355_356 { +____fd_mask_353 ____fds_bits_357[1024 / ( 8 * ( int ) sizeof(long) )];// L0 +____fd_mask_354 ____fds_bits_359[1024 / ( 8 * ( int ) sizeof(long) )];// L0 +}; +typedef struct ____anonymous_tag_355_356 __fd_set_362;// L64:L75 +typedef ____fd_mask_353 __fd_mask_363;// L82 +typedef ____fd_mask_354 __fd_mask_364;// L82 +typedef ____blksize_t_48 __blksize_t_412;// L228 +typedef ____blksize_t_203 __blksize_t_413;// L228 +typedef ____blkcnt_t_49 __blkcnt_t_415;// L235 +typedef ____blkcnt_t_204 __blkcnt_t_416;// L235 +typedef ____fsblkcnt_t_51 __fsblkcnt_t_418;// L239 +typedef ____fsblkcnt_t_206 __fsblkcnt_t_419;// L239 +typedef ____blkcnt64_t_50 __blkcnt_t_421;// L248 +typedef ____blkcnt64_t_205 __blkcnt_t_422;// L248 +typedef ____fsblkcnt64_t_52 __fsblkcnt_t_424;// L252 +typedef ____fsblkcnt64_t_207 __fsblkcnt_t_425;// L252 +typedef ____fsfilcnt_t_53 __fsfilcnt_t_427;// L243 +typedef ____fsfilcnt_t_208 __fsfilcnt_t_428;// L243 +typedef ____fsfilcnt64_t_54 __fsfilcnt_t_430;// L256 +typedef ____fsfilcnt64_t_209 __fsfilcnt_t_431;// L256 +typedef unsigned long int __pthread_t_433;// L60 +union __pthread_attr_t_434 { +char ____size_435[56];// L65 +long int ____align_436;// L66 +}; +typedef union __pthread_attr_t_434 __pthread_attr_t_437;// L69 +struct ____pthread_internal_list_439 { +struct __forward_tag_reference_438 * (____prev_440);// L0 +struct __forward_tag_reference_438 * (____next_441);// L0 +}; +typedef struct ____pthread_internal_list_439 ____pthread_list_t_442;// L75:L79 +typedef struct ____pthread_internal_list_439 ____pthread_list_t_443;// L75:L79 +struct ____pthread_mutex_s_444 { +int ____lock_445;// L94 +unsigned int ____count_446;// L95 +int ____owner_447;// L96 +unsigned int ____nusers_448;// L98 +int ____kind_449;// L102 +short ____spins_450;// L104 +short ____elision_451;// L105 +____pthread_list_t_442 ____list_452;// L0 +____pthread_list_t_443 ____list_453;// L0 +}; +union ____anonymous_tag_454_455 { +struct ____pthread_mutex_s_444 ____data_456;// L92 +char ____size_457[40];// L126 +long int ____align_458;// L127 +}; +typedef union ____anonymous_tag_454_455 __pthread_mutex_t_459;// L90:L128 +union ____anonymous_tag_460_461 { +char ____size_462[4];// L132 +int ____align_463;// L133 +}; +typedef union ____anonymous_tag_460_461 __pthread_mutexattr_t_464;// L130:L134 +typedef int (* (____compar_fn_t_572)) (const void *, const void *);// L741 +struct __forward_tag_reference_438 { // generated union of struct variations +union { +}; +}; + +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern __size_t_1 (____ctype_get_mb_cur_max_18) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_19) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_20) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_21) (void );// L139 -extern double (__atof_23) (const char * (____nptr_22));// L144:L145 -extern double (__atof_24) (const char * (____nptr_22));// L144:L145 -extern int (__atoi_26) (const char * (____nptr_25));// L147:L148 -extern int (__atoi_27) (const char * (____nptr_25));// L147:L148 -extern long int (__atol_29) (const char * (____nptr_28));// L150:L151 -extern long int (__atol_30) (const char * (____nptr_28));// L150:L151 -extern long long int (__atoll_32) (const char * (____nptr_31));// L157:L158 -extern long long int (__atoll_33) (const char * (____nptr_31));// L157:L158 -extern double (__strtod_36) (const char * __restrict ____nptr_34, char * (* __restrict ____endptr_35));// L164:L166 -extern float (__strtof_39) (const char * __restrict ____nptr_37, char * (* __restrict ____endptr_38));// L172:L173 -extern long double (__strtold_42) (const char * __restrict ____nptr_40, char * (* __restrict ____endptr_41));// L175:L177 -extern long int (__strtol_46) (const char * __restrict ____nptr_43, char * (* __restrict ____endptr_44), int ____base_45);// L183:L185 -extern unsigned long int (__strtoul_50) (const char * __restrict ____nptr_47, char * (* __restrict ____endptr_48), int ____base_49);// L187:L189 -extern long long int (__strtoll_54) (const char * __restrict ____nptr_51, char * (* __restrict ____endptr_52), int ____base_53);// L209:L211 -extern unsigned long long int (__strtoull_58) (const char * __restrict ____nptr_55, char * (* __restrict ____endptr_56), int ____base_57);// L214:L216 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +static __inline unsigned int (____bswap_32_66) (unsigned int ____bsx_65) { + +if (__static_condition_default_67) { + +{ +{ + + + +__static_type_error("invalid type found in return expression"); +} +} + + +} +} +static __inline ____uint64_t_20 (____bswap_64_69) (____uint64_t_20 ____bsx_68) { + +if (__static_condition_default_67) { + +{ +{ + + + +__static_type_error("invalid type found in return expression"); +} +} + + +} +} +union __wait_81 ;// L66 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern __size_t_1 (____ctype_get_mb_cur_max_105) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_106) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_107) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_108) (void );// L139 +extern double (__atof_110) (const char * (____nptr_109));// L144:L145 +extern double (__atof_111) (const char * (____nptr_109));// L144:L145 +extern int (__atoi_113) (const char * (____nptr_112));// L147:L148 +extern int (__atoi_114) (const char * (____nptr_112));// L147:L148 +extern long int (__atol_116) (const char * (____nptr_115));// L150:L151 +extern long int (__atol_117) (const char * (____nptr_115));// L150:L151 +extern long long int (__atoll_119) (const char * (____nptr_118));// L157:L158 +extern long long int (__atoll_120) (const char * (____nptr_118));// L157:L158 +extern double (__strtod_123) (const char * __restrict ____nptr_121, char * (* __restrict ____endptr_122));// L164:L166 +extern float (__strtof_126) (const char * __restrict ____nptr_124, char * (* __restrict ____endptr_125));// L172:L173 +extern long double (__strtold_129) (const char * __restrict ____nptr_127, char * (* __restrict ____endptr_128));// L175:L177 +extern long int (__strtol_133) (const char * __restrict ____nptr_130, char * (* __restrict ____endptr_131), int ____base_132);// L183:L185 +extern unsigned long int (__strtoul_137) (const char * __restrict ____nptr_134, char * (* __restrict ____endptr_135), int ____base_136);// L187:L189 +extern long long int (__strtoq_141) (const char * __restrict ____nptr_138, char * (* __restrict ____endptr_139), int ____base_140);// L195:L197 +extern unsigned long long int (__strtouq_145) (const char * __restrict ____nptr_142, char * (* __restrict ____endptr_143), int ____base_144);// L200:L202 +extern long long int (__strtoll_149) (const char * __restrict ____nptr_146, char * (* __restrict ____endptr_147), int ____base_148);// L209:L211 +extern long long int (__strtoll_150) (const char * __restrict ____nptr_146, char * (* __restrict ____endptr_147), int ____base_148);// L209:L211 +extern unsigned long long int (__strtoull_154) (const char * __restrict ____nptr_151, char * (* __restrict ____endptr_152), int ____base_153);// L214:L216 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ __extension__/* no function due to type errors in the function prototype */ -extern int (__rand_62) (void );// L374 -extern int (__rand_63) (void );// L374 -extern void (__srand_65) (unsigned int ____seed_64);// L376 -extern void * ((__malloc_67) (__size_t_1 ____size_66));// L466 -extern void * ((__malloc_68) (__size_t_1 ____size_66));// L466 -extern void * ((__calloc_71) (__size_t_1 ____nmemb_69, __size_t_1 ____size_70));// L468:L469 -extern void * ((__calloc_72) (__size_t_1 ____nmemb_69, __size_t_1 ____size_70));// L468:L469 -extern void * ((__realloc_75) (void * (____ptr_73), __size_t_1 ____size_74));// L480:L481 -extern void (__free_77) (void * (____ptr_76));// L483 -extern void * ((__aligned_alloc_80) (__size_t_1 ____alignment_78, __size_t_1 ____size_79));// L509:L510 -extern void * ((__aligned_alloc_81) (__size_t_1 ____alignment_78, __size_t_1 ____size_79));// L509:L510 -extern void (__abort_82) (void );// L515 -extern int (__atexit_84) (void (* (____func_83)) (void ));// L519 -extern int (__at_quick_exit_86) (void (* (____func_85)) (void ));// L527 -extern void (__exit_88) (int ____status_87);// L543 -extern void (__quick_exit_90) (int ____status_89);// L549 -extern void (___Exit_92) (int ____status_91);// L557 -extern char * ((__getenv_94) (const char * (____name_93)));// L564 -extern char * ((__getenv_95) (const char * (____name_93)));// L564 -extern int (__system_97) (const char * (____command_96));// L716 -extern int (__system_98) (const char * (____command_96));// L716 -// typedef moved to top of scope -extern void * ((__bsearch_107) (const void * (____key_100), const void * (____base_101), __size_t_1 ____nmemb_102, __size_t_1 ____size_103, ____compar_fn_t_99 ____compar_104));// L754:L756 -extern void * ((__bsearch_109) (const void * (____key_100), const void * (____base_101), __size_t_1 ____nmemb_102, __size_t_1 ____size_103, ____compar_fn_t_99 ____compar_104));// L754:L756 +extern char * ((__l64a_159) (long int ____n_158));// L305 +extern char * ((__l64a_160) (long int ____n_158));// L305 +extern long int (__a64l_162) (const char * (____s_161));// L308:L309 +extern long int (__a64l_163) (const char * (____s_161));// L308:L309 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +static __inline unsigned int (____bswap_32_324) (unsigned int ____bsx_323) { + +if (__static_condition_default_325) { + +{ +{ + + + +__static_type_error("invalid type found in return expression"); +} +} + + +} +} +static __inline ____uint64_t_175 (____bswap_64_327) (____uint64_t_175 ____bsx_326) { + +if (__static_condition_default_325) { + +{ +{ + + + +__static_type_error("invalid type found in return expression"); +} +} + + +} +} +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +struct __timespec_334 ;// L120 + +struct __timeval_342 ;// L30 + +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern int (__select_376) (int ____nfds_365, __fd_set_362 * __restrict ____readfds_366, __fd_set_362 * __restrict ____writefds_368, __fd_set_362 * __restrict ____exceptfds_370, struct __timeval_342 * __restrict ____timeout_373);// L106:L109 +extern int (__select_377) (int ____nfds_365, __fd_set_362 * __restrict ____readfds_366, __fd_set_362 * __restrict ____writefds_368, __fd_set_362 * __restrict ____exceptfds_370, struct __forward_tag_reference_372 * __restrict ____timeout_375);// L106:L109 +extern int (__pselect_392) (int ____nfds_380, __fd_set_362 * __restrict ____readfds_381, __fd_set_362 * __restrict ____writefds_383, __fd_set_362 * __restrict ____exceptfds_385, const struct __timespec_334 * __restrict ____timeout_388, const ____sigset_t_332 * __restrict ____sigmask_391);// L118:L122 +extern int (__pselect_393) (int ____nfds_380, __fd_set_362 * __restrict ____readfds_381, __fd_set_362 * __restrict ____writefds_383, __fd_set_362 * __restrict ____exceptfds_385, const struct __forward_tag_reference_387 * __restrict ____timeout_390, const ____sigset_t_332 * __restrict ____sigmask_391);// L118:L122 +extern long int (____fdelt_chk_397) (long int ____d_396);// L24 +extern long int (____fdelt_warn_399) (long int ____d_398);// L25:L26 +extern unsigned int (__gnu_dev_major_401) (unsigned long long int ____dev_400);// L27:L28 +extern unsigned int (__gnu_dev_major_402) (unsigned long long int ____dev_400);// L27:L28 +extern unsigned int (__gnu_dev_minor_404) (unsigned long long int ____dev_403);// L30:L31 +extern unsigned long long int (__gnu_dev_makedev_407) (unsigned int ____major_405, unsigned int ____minor_406);// L33:L35 +__extension__/* no function due to type errors in the function prototype */ +__extension__/* no function due to type errors in the function prototype */ +__extension__/* no function due to type errors in the function prototype */ +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +union __pthread_attr_t_434 ;// L63 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern int (__rand_465) (void );// L374 +extern void (__srand_467) (unsigned int ____seed_466);// L376 +extern int (__rand_r_469) (unsigned int * (____seed_468));// L381 +extern double (__drand48_470) (void );// L389 +extern double (__erand48_472) (unsigned short int ____xsubi_471[3]);// L390 +extern long int (__lrand48_473) (void );// L393 +extern long int (__nrand48_475) (unsigned short int ____xsubi_474[3]);// L394:L395 +extern long int (__mrand48_476) (void );// L398 +extern long int (__jrand48_478) (unsigned short int ____xsubi_477[3]);// L399:L400 +extern void (__srand48_480) (long int ____seedval_479);// L403 +extern unsigned short int * ((__seed48_482) (unsigned short int ____seed16v_481[3]));// L404:L405 +extern void (__lcong48_484) (unsigned short int ____param_483[7]);// L406 +extern void * ((__malloc_486) (__size_t_1 ____size_485));// L466 +extern void * ((__malloc_487) (__size_t_1 ____size_485));// L466 +extern void * ((__calloc_490) (__size_t_1 ____nmemb_488, __size_t_1 ____size_489));// L468:L469 +extern void * ((__calloc_491) (__size_t_1 ____nmemb_488, __size_t_1 ____size_489));// L468:L469 +extern void * ((__realloc_494) (void * (____ptr_492), __size_t_1 ____size_493));// L480:L481 +extern void (__free_496) (void * (____ptr_495));// L483 +extern void (__cfree_498) (void * (____ptr_497));// L488 +extern void * ((__alloca_500) (__size_t_1 ____size_499));// L32 +extern void * ((__valloc_502) (__size_t_1 ____size_501));// L498 +extern void * ((__valloc_503) (__size_t_1 ____size_501));// L498 +extern int (__posix_memalign_507) (void * (* (____memptr_504)), __size_t_1 ____alignment_505, __size_t_1 ____size_506);// L503:L504 +extern int (__posix_memalign_508) (void * (* (____memptr_504)), __size_t_1 ____alignment_505, __size_t_1 ____size_506);// L503:L504 +extern void * ((__aligned_alloc_511) (__size_t_1 ____alignment_509, __size_t_1 ____size_510));// L509:L510 +extern void * ((__aligned_alloc_512) (__size_t_1 ____alignment_509, __size_t_1 ____size_510));// L509:L510 +extern void * ((__aligned_alloc_513) (__size_t_1 ____alignment_509, __size_t_1 ____size_510));// L509:L510 +extern void * ((__aligned_alloc_514) (__size_t_1 ____alignment_509, __size_t_1 ____size_510));// L509:L510 +extern void (__abort_515) (void );// L515 +extern int (__atexit_517) (void (* (____func_516)) (void ));// L519 +extern int (__at_quick_exit_519) (void (* (____func_518)) (void ));// L527 +extern int (__on_exit_524) (void (* (____func_522)) (int ____status_520, void * (____arg_521)), void * (____arg_523));// L535:L536 +extern void (__exit_526) (int ____status_525);// L543 +extern void (__exit_527) (int ____status_525);// L543 +extern void (__quick_exit_529) (int ____status_528);// L549 +extern void (___Exit_531) (int ____status_530);// L557 +extern char * ((__getenv_533) (const char * (____name_532)));// L564 +extern char * ((__getenv_534) (const char * (____name_532)));// L564 +extern int (__putenv_536) (char * (____string_535));// L578 +extern int (__setenv_540) (const char * (____name_537), const char * (____value_538), int ____replace_539);// L584:L585 +extern int (__unsetenv_542) (const char * (____name_541));// L588 +extern int (__clearenv_543) (void );// L595 +extern char * ((__mktemp_545) (char * (____template_544)));// L606 +extern int (__mkstemp_548) (char * (____template_546));// L619 +extern int (__mkstemp_550) (char * (____template_546));// L619 +extern int (__mkstemp_549) (char * (____template_547));// L622:L623 +extern int (__mkstemp_551) (char * (____template_547));// L622:L623 +extern int (__mkstemps_556) (char * (____template_552), int ____suffixlen_553);// L641 +extern int (__mkstemps_557) (char * (____template_554), int ____suffixlen_555);// L644:L645 +extern int (__mkstemps_558) (char * (____template_552), int ____suffixlen_553);// L641 +extern int (__mkstemps_559) (char * (____template_554), int ____suffixlen_555);// L644:L645 +extern char * ((__mkdtemp_561) (char * (____template_560)));// L662 +extern char * ((__mkdtemp_562) (char * (____template_560)));// L662 +extern int (__system_564) (const char * (____command_563));// L716 +extern int (__system_565) (const char * (____command_563));// L716 +extern int (__system_566) (const char * (____command_563));// L716 +extern int (__system_567) (const char * (____command_563));// L716 +extern char * ((__realpath_570) (const char * __restrict ____name_568, char * __restrict ____resolved_569));// L733:L734 +extern char * ((__realpath_571) (const char * __restrict ____name_568, char * __restrict ____resolved_569));// L733:L734 +// typedef moved to top of scope +extern void * ((__bsearch_580) (const void * (____key_573), const void * (____base_574), __size_t_1 ____nmemb_575, __size_t_1 ____size_576, ____compar_fn_t_572 ____compar_577));// L754:L756 +extern void * ((__bsearch_582) (const void * (____key_573), const void * (____base_574), __size_t_1 ____nmemb_575, __size_t_1 ____size_576, ____compar_fn_t_572 ____compar_577));// L754:L756 /* no function due to type errors in the function prototype */ -extern void (__qsort_128) (void * (____base_123), __size_t_1 ____nmemb_124, __size_t_1 ____size_125, ____compar_fn_t_99 ____compar_126);// L764:L765 -extern void (__qsort_130) (void * (____base_123), __size_t_1 ____nmemb_124, __size_t_1 ____size_125, ____compar_fn_t_99 ____compar_126);// L764:L765 -extern int (__abs_133) (int ____x_132);// L774 -extern int (__abs_134) (int ____x_132);// L774 -extern long int (__labs_136) (long int ____x_135);// L775 -extern long int (__labs_137) (long int ____x_135);// L775 -extern long long int (__llabs_139) (long long int ____x_138);// L779:L780 -extern long long int (__llabs_140) (long long int ____x_138);// L779:L780 -extern __div_t_7 (__div_143) (int ____numer_141, int ____denom_142);// L788:L789 -extern __div_t_7 (__div_144) (int ____numer_141, int ____denom_142);// L788:L789 -extern __ldiv_t_12 (__ldiv_147) (long int ____numer_145, long int ____denom_146);// L790:L791 -extern __ldiv_t_12 (__ldiv_149) (long int ____numer_145, long int ____denom_146);// L790:L791 -extern __lldiv_t_17 (__lldiv_153) (long long int ____numer_151, long long int ____denom_152);// L796:L798 -extern __lldiv_t_17 (__lldiv_155) (long long int ____numer_151, long long int ____denom_152);// L796:L798 -extern int (__mblen_159) (const char * (____s_157), __size_t_1 ____n_158);// L862 -extern int (__mbtowc_163) (__wchar_t_2 * __restrict ____pwc_160, const char * __restrict ____s_161, __size_t_1 ____n_162);// L865:L866 -extern int (__wctomb_166) (char * (____s_164), __wchar_t_2 ____wchar_165);// L869 -extern __size_t_1 (__mbstowcs_170) (__wchar_t_2 * __restrict ____pwcs_167, const char * __restrict ____s_168, __size_t_1 ____n_169);// L873:L874 -extern __size_t_1 (__wcstombs_174) (char * __restrict ____s_171, const __wchar_t_2 * __restrict ____pwcs_172, __size_t_1 ____n_173);// L876:L878 +extern void (__qsort_601) (void * (____base_596), __size_t_1 ____nmemb_597, __size_t_1 ____size_598, ____compar_fn_t_572 ____compar_599);// L764:L765 +extern void (__qsort_603) (void * (____base_596), __size_t_1 ____nmemb_597, __size_t_1 ____size_598, ____compar_fn_t_572 ____compar_599);// L764:L765 +extern int (__abs_606) (int ____x_605);// L774 +extern int (__abs_607) (int ____x_605);// L774 +extern long int (__labs_609) (long int ____x_608);// L775 +extern long int (__labs_610) (long int ____x_608);// L775 +extern long long int (__llabs_612) (long long int ____x_611);// L779:L780 +extern long long int (__llabs_613) (long long int ____x_611);// L779:L780 +extern __div_t_94 (__div_616) (int ____numer_614, int ____denom_615);// L788:L789 +extern __div_t_94 (__div_617) (int ____numer_614, int ____denom_615);// L788:L789 +extern __ldiv_t_99 (__ldiv_620) (long int ____numer_618, long int ____denom_619);// L790:L791 +extern __ldiv_t_99 (__ldiv_622) (long int ____numer_618, long int ____denom_619);// L790:L791 +extern __lldiv_t_104 (__lldiv_626) (long long int ____numer_624, long long int ____denom_625);// L796:L798 +extern __lldiv_t_104 (__lldiv_628) (long long int ____numer_624, long long int ____denom_625);// L796:L798 +extern char * ((__ecvt_634) (double ____value_630, int ____ndigit_631, int * __restrict ____decpt_632, int * __restrict ____sign_633));// L811:L812 +extern char * ((__ecvt_635) (double ____value_630, int ____ndigit_631, int * __restrict ____decpt_632, int * __restrict ____sign_633));// L811:L812 +extern char * ((__fcvt_640) (double ____value_636, int ____ndigit_637, int * __restrict ____decpt_638, int * __restrict ____sign_639));// L817:L818 +extern char * ((__fcvt_641) (double ____value_636, int ____ndigit_637, int * __restrict ____decpt_638, int * __restrict ____sign_639));// L817:L818 +extern char * ((__gcvt_645) (double ____value_642, int ____ndigit_643, char * (____buf_644)));// L823:L824 +extern char * ((__gcvt_646) (double ____value_642, int ____ndigit_643, char * (____buf_644)));// L823:L824 +extern char * ((__qecvt_651) (long double ____value_647, int ____ndigit_648, int * __restrict ____decpt_649, int * __restrict ____sign_650));// L829:L831 +extern char * ((__qecvt_652) (long double ____value_647, int ____ndigit_648, int * __restrict ____decpt_649, int * __restrict ____sign_650));// L829:L831 +extern char * ((__qfcvt_657) (long double ____value_653, int ____ndigit_654, int * __restrict ____decpt_655, int * __restrict ____sign_656));// L832:L834 +extern char * ((__qfcvt_658) (long double ____value_653, int ____ndigit_654, int * __restrict ____decpt_655, int * __restrict ____sign_656));// L832:L834 +extern char * ((__qgcvt_662) (long double ____value_659, int ____ndigit_660, char * (____buf_661)));// L835:L836 +extern char * ((__qgcvt_663) (long double ____value_659, int ____ndigit_660, char * (____buf_661)));// L835:L836 +extern int (__ecvt_r_670) (double ____value_664, int ____ndigit_665, int * __restrict ____decpt_666, int * __restrict ____sign_667, char * __restrict ____buf_668, __size_t_1 ____len_669);// L841:L843 +extern int (__fcvt_r_677) (double ____value_671, int ____ndigit_672, int * __restrict ____decpt_673, int * __restrict ____sign_674, char * __restrict ____buf_675, __size_t_1 ____len_676);// L844:L846 +extern int (__qecvt_r_684) (long double ____value_678, int ____ndigit_679, int * __restrict ____decpt_680, int * __restrict ____sign_681, char * __restrict ____buf_682, __size_t_1 ____len_683);// L848:L851 +extern int (__qfcvt_r_691) (long double ____value_685, int ____ndigit_686, int * __restrict ____decpt_687, int * __restrict ____sign_688, char * __restrict ____buf_689, __size_t_1 ____len_690);// L852:L855 +extern int (__mblen_694) (const char * (____s_692), __size_t_1 ____n_693);// L862 +extern int (__mblen_695) (const char * (____s_692), __size_t_1 ____n_693);// L862 +extern int (__mbtowc_699) (__wchar_t_2 * __restrict ____pwc_696, const char * __restrict ____s_697, __size_t_1 ____n_698);// L865:L866 +extern int (__wctomb_702) (char * (____s_700), __wchar_t_2 ____wchar_701);// L869 +extern __size_t_1 (__mbstowcs_706) (__wchar_t_2 * __restrict ____pwcs_703, const char * __restrict ____s_704, __size_t_1 ____n_705);// L873:L874 +extern __size_t_1 (__wcstombs_710) (char * __restrict ____s_707, const __wchar_t_2 * __restrict ____pwcs_708, __size_t_1 ____n_709);// L876:L878 +extern int (__rpmatch_713) (const char * (____response_711));// L887 +extern int (__rpmatch_712) (const char * (____response_711));// L887 +extern int (__getsubopt_718) (char * (* __restrict ____optionp_714), char * const * __restrict ____tokens_715, char * (* __restrict ____valuep_716));// L898:L901 +extern int (__getsubopt_717) (char * (* __restrict ____optionp_714), char * const * __restrict ____tokens_715, char * (* __restrict ____valuep_716));// L898:L901 +extern int (__getloadavg_721) (double ____loadavg_719[], int ____nelem_720);// L950:L951 /* no function due to type errors in the function prototype */ -extern char * ((____realpath_chk_179) (const char * __restrict ____name_176, char * __restrict ____resolved_177, __size_t_1 ____resolvedlen_178));// L23:L25 -extern char * ((____realpath_alias_182) (const char * __restrict ____name_180, char * __restrict ____resolved_181));// L26:L28 -extern char * ((____realpath_chk_warn_186) (const char * __restrict ____name_183, char * __restrict ____resolved_184, __size_t_1 ____resolvedlen_185));// L29:L34 +extern char * ((____realpath_chk_726) (const char * __restrict ____name_723, char * __restrict ____resolved_724, __size_t_1 ____resolvedlen_725));// L23:L25 +extern char * ((____realpath_alias_729) (const char * __restrict ____name_727, char * __restrict ____resolved_728));// L26:L28 +extern char * ((____realpath_chk_warn_733) (const char * __restrict ____name_730, char * __restrict ____resolved_731, __size_t_1 ____resolvedlen_732));// L29:L34 /* no function due to type errors in the function prototype */ -extern int (____ptsname_r_chk_194) (int ____fd_190, char * (____buf_191), __size_t_1 ____buflen_192, __size_t_1 ____nreal_193);// L52:L53 -extern int (____ptsname_r_alias_198) (int ____fd_195, char * (____buf_196), __size_t_1 ____buflen_197);// L54:L56 -extern int (____ptsname_r_chk_warn_203) (int ____fd_199, char * (____buf_200), __size_t_1 ____buflen_201, __size_t_1 ____nreal_202);// L57:L61 +extern int (____ptsname_r_chk_741) (int ____fd_737, char * (____buf_738), __size_t_1 ____buflen_739, __size_t_1 ____nreal_740);// L52:L53 +extern int (____ptsname_r_alias_745) (int ____fd_742, char * (____buf_743), __size_t_1 ____buflen_744);// L54:L56 +extern int (____ptsname_r_chk_warn_750) (int ____fd_746, char * (____buf_747), __size_t_1 ____buflen_748, __size_t_1 ____nreal_749);// L57:L61 /* no function due to type errors in the function prototype */ -extern int (____wctomb_chk_211) (char * (____s_208), __wchar_t_2 ____wchar_209, __size_t_1 ____buflen_210);// L77:L78 -extern int (____wctomb_alias_214) (char * (____s_212), __wchar_t_2 ____wchar_213);// L79:L80 +extern int (____wctomb_chk_758) (char * (____s_755), __wchar_t_2 ____wchar_756, __size_t_1 ____buflen_757);// L77:L78 +extern int (____wctomb_alias_761) (char * (____s_759), __wchar_t_2 ____wchar_760);// L79:L80 /* no function due to type errors in the function prototype */ -extern __size_t_1 (____mbstowcs_chk_221) (__wchar_t_2 * __restrict ____dst_217, const char * __restrict ____src_218, __size_t_1 ____len_219, __size_t_1 ____dstlen_220);// L98:L100 -extern __size_t_1 (____mbstowcs_alias_225) (__wchar_t_2 * __restrict ____dst_222, const char * __restrict ____src_223, __size_t_1 ____len_224);// L101:L104 -extern __size_t_1 (____mbstowcs_chk_warn_230) (__wchar_t_2 * __restrict ____dst_226, const char * __restrict ____src_227, __size_t_1 ____len_228, __size_t_1 ____dstlen_229);// L105:L110 +extern __size_t_1 (____mbstowcs_chk_768) (__wchar_t_2 * __restrict ____dst_764, const char * __restrict ____src_765, __size_t_1 ____len_766, __size_t_1 ____dstlen_767);// L98:L100 +extern __size_t_1 (____mbstowcs_alias_772) (__wchar_t_2 * __restrict ____dst_769, const char * __restrict ____src_770, __size_t_1 ____len_771);// L101:L104 +extern __size_t_1 (____mbstowcs_chk_warn_777) (__wchar_t_2 * __restrict ____dst_773, const char * __restrict ____src_774, __size_t_1 ____len_775, __size_t_1 ____dstlen_776);// L105:L110 /* no function due to type errors in the function prototype */ -extern __size_t_1 (____wcstombs_chk_238) (char * __restrict ____dst_234, const __wchar_t_2 * __restrict ____src_235, __size_t_1 ____len_236, __size_t_1 ____dstlen_237);// L130:L132 -extern __size_t_1 (____wcstombs_alias_242) (char * __restrict ____dst_239, const __wchar_t_2 * __restrict ____src_240, __size_t_1 ____len_241);// L133:L136 -extern __size_t_1 (____wcstombs_chk_warn_247) (char * __restrict ____dst_243, const __wchar_t_2 * __restrict ____src_244, __size_t_1 ____len_245, __size_t_1 ____dstlen_246);// L137:L141 +extern __size_t_1 (____wcstombs_chk_785) (char * __restrict ____dst_781, const __wchar_t_2 * __restrict ____src_782, __size_t_1 ____len_783, __size_t_1 ____dstlen_784);// L130:L132 +extern __size_t_1 (____wcstombs_alias_789) (char * __restrict ____dst_786, const __wchar_t_2 * __restrict ____src_787, __size_t_1 ____len_788);// L133:L136 +extern __size_t_1 (____wcstombs_chk_warn_794) (char * __restrict ____dst_790, const __wchar_t_2 * __restrict ____src_791, __size_t_1 ____len_792, __size_t_1 ____dstlen_793);// L137:L141 /* no function due to type errors in the function prototype */ -int * (__cache_251)= ( ( void * ) 0 );// L6 -int * (__cache_252)= ( ( void * ) 0 );// L6 -int * (__util_ldap_shm_253);// L7 -int (__apr_shm_attach_255) (int * (* (__util_ldap_shm_254))) { +int * (__cache_798)= ( ( void * ) 0 );// L6 +int * (__cache_799)= ( ( void * ) 0 );// L6 +int * (__util_ldap_shm_801);// L7 +int (__apr_shm_attach_803) (int * (* (__util_ldap_shm_802))) { { { -if (__static_condition_default_256) { -if ( __cache_251 )// L11 +if (__static_condition_default_804) { +if ( __cache_798 )// L11 { { @@ -279,14 +1346,14 @@ if ( __cache_251 )// L11 -* __util_ldap_shm_254 = __cache_251 ; // L12 +* __util_ldap_shm_802 = __cache_798 ; // L12 return 0 ;// L13 } } } } -if (__static_condition_default_257) { -if ( __cache_252 )// L11 +if (__static_condition_default_805) { +if ( __cache_799 )// L11 { { @@ -294,48 +1361,60 @@ if ( __cache_252 )// L11 -* __util_ldap_shm_254 = __cache_252 ; // L12 +* __util_ldap_shm_802 = __cache_799 ; // L12 return 0 ;// L13 } } } } +if (__static_condition_default_806) { +__static_type_error("invalid type found in if statement"); +} return - 1 ;// L15 } } } -int (__apr_shm_create_259) (int * (* (__util_ldap_shm_258))) { +int (__apr_shm_create_808) (int * (* (__util_ldap_shm_807))) { { { -if (__static_condition_default_256) { -if ( __cache_251 )// L20 +if (__static_condition_default_809) { +if ( __cache_798 )// L20 { return 2 ;// L21 } } -if (__static_condition_default_257) { -if ( __cache_252 )// L20 +if (__static_condition_default_810) { +if ( __cache_799 )// L20 { return 2 ;// L21 } } -if (__static_condition_default_256) { - __cache_251 = malloc (sizeof(int)) ; // L22 +if (__static_condition_default_811) { +__static_type_error("invalid type found in if statement"); +} +if (__static_condition_default_812) { + __cache_798 = malloc (sizeof(int)) ; // L22 } -if (__static_condition_default_257) { - __cache_252 = malloc (sizeof(int)) ; // L22 +if (__static_condition_default_813) { + __cache_799 = malloc (sizeof(int)) ; // L22 } -if (__static_condition_default_256) { -* __util_ldap_shm_258 = __cache_251 ; // L23 +if (__static_condition_default_814) { +__static_type_error("type error") ; // L22 } -if (__static_condition_default_257) { -* __util_ldap_shm_258 = __cache_252 ; // L23 +if (__static_condition_default_815) { +* __util_ldap_shm_807 = __cache_798 ; // L23 +} +if (__static_condition_default_816) { +* __util_ldap_shm_807 = __cache_799 ; // L23 +} +if (__static_condition_default_800) { +__static_type_error("type error") ; // L23 } return 0 ;// L24 } @@ -343,17 +1422,17 @@ return 0 ;// L24 } -int (__util_ldap_cache_init_261) () { +int (__util_ldap_cache_init_818) () { { { -int __result_260= __apr_shm_create_259 (& __util_ldap_shm_253 );// L30 +int __result_817= __apr_shm_create_808 (& __util_ldap_shm_801 );// L30 -if (__static_condition_default_262) { -if ( __result_260 != 1 )// L31 +if (__static_condition_default_819) { +if ( __result_817 != 1 )// L31 { { @@ -361,15 +1440,15 @@ if ( __result_260 != 1 )// L31 -return __result_260 ;// L32 +return __result_817 ;// L32 } } } } -if (__static_condition_default_263) { +if (__static_condition_default_820) { return 1 ;// L35 } -if (__static_condition_default_262) { +if (__static_condition_default_819) { return 1 ;// L35 } } @@ -377,14 +1456,14 @@ return 1 ;// L35 } -int (__main_264) (void ) { +int (__main_821) (void ) { { { -if (__static_condition_default_265) { +if (__static_condition_default_822) { if ( rand( ) % 2 )// L40 { @@ -393,36 +1472,23 @@ if ( rand( ) % 2 )// L40 -if (__static_condition_default_266) { - __cache_251 = malloc (sizeof(int)) ; // L41 -} -if (__static_condition_default_267) { - __cache_252 = malloc (sizeof(int)) ; // L41 -} -} +if (__static_condition_default_823) { + __cache_798 = malloc (sizeof(int)) ; // L41 } +if (__static_condition_default_824) { + __cache_799 = malloc (sizeof(int)) ; // L41 } +if (__static_condition_default_825) { +__static_type_error("type error") ; // L41 } -if (__static_condition_default_268) { -if ( rand( ) % 2 )// L40 -{ - -{ -{ - - - -if (__static_condition_default_269) { - __cache_251 = malloc (sizeof(int)) ; // L41 -} -if (__static_condition_default_270) { - __cache_252 = malloc (sizeof(int)) ; // L41 } } } } +if (__static_condition_default_826) { +__static_type_error("invalid type found in if statement"); } - __util_ldap_cache_init_261 ( ) ; // L43 + __util_ldap_cache_init_818 ( ) ; // L43 return 0 ;// L44 } } diff --git a/fonda/cpp_testsuite/varBugs/APACHE/97ecbec1237.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/97ecbec1237.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/97ecbec1237.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/97ecbec1237.inferres b/fonda/cpp_testsuite/varBugs/APACHE/97ecbec1237.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/97ecbec1237.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/b833f064550.inferres b/fonda/cpp_testsuite/varBugs/APACHE/b833f064550.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/b833f064550.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/bbeb0516cf0.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/bbeb0516cf0.desugared.c index 5b38d3db..ca6dcc64 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/bbeb0516cf0.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/bbeb0516cf0.desugared.c @@ -7,88 +7,88 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_1048; -extern const bool __static_condition_default_305; -extern const bool __static_condition_default_627; -extern const bool __static_condition_default_288; extern const bool __static_condition_default_246; -extern const bool __static_condition_default_604; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_67; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_1031; -extern const bool __static_condition_default_1088; -extern const bool __static_condition_default_818; -extern const bool __static_condition_default_1038; -extern const bool __static_condition_default_308; +extern const bool __static_condition_default_394; +extern const bool __static_condition_default_1097; extern const bool __static_condition_default_341; -extern const bool __static_condition_default_215; -extern const bool __static_condition_default_276; +extern const bool __static_condition_default_67; +extern const bool __static_condition_default_1037; extern const bool __static_condition_default_249; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_378; +extern const bool __static_condition_default_261; +extern const bool __static_condition_default_627; +extern const bool __static_condition_default_1047; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_243; +extern const bool __static_condition_default_604; +extern const bool __static_condition_default_621; extern const bool __static_condition_default_426; -extern const bool __static_condition_default_325; -extern const bool __static_condition_default_1032; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_805; -extern const bool __static_condition_default_1098; -extern const bool __static_condition_default_429; -extern const bool __static_condition_default_279; -extern const bool __static_condition_default_594; -extern const bool __static_condition_default_804; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_1037; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_273; +extern const bool __static_condition_default_1024; +extern const bool __static_condition_default_237; +extern const bool __static_condition_default_423; extern const bool __static_condition_default_819; -extern const bool __static_condition_default_234; -extern const bool __static_condition_default_352; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_1095; +extern const bool __static_condition_default_293; extern const bool __static_condition_default_361; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_1026; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_1077; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_818; +extern const bool __static_condition_default_1082; +extern const bool __static_condition_default_804; +extern const bool __static_condition_default_1074; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_240; extern const bool __static_condition_default_1054; -extern const bool __static_condition_default_252; -extern const bool __static_condition_default_1055; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_1049; +extern const bool __static_condition_default_349; +extern const bool __static_condition_default_594; +extern const bool __static_condition_default_1025; +extern const bool __static_condition_default_806; +extern const bool __static_condition_default_276; +extern const bool __static_condition_default_1092; +extern const bool __static_condition_default_414; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_1053; extern const bool __static_condition_default_285; -extern const bool __static_condition_default_60; -extern const bool __static_condition_default_629; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_1093; -extern const bool __static_condition_default_1094; -extern const bool __static_condition_default_243; +extern const bool __static_condition_default_273; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_1030; +extern const bool __static_condition_default_325; extern const bool __static_condition_default_255; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_1084; -extern const bool __static_condition_default_240; -extern const bool __static_condition_default_621; +extern const bool __static_condition_default_1048; extern const bool __static_condition_default_579; -extern const bool __static_condition_default_423; -extern const bool __static_condition_default_1074; -extern const bool __static_condition_default_394; -extern const bool __static_condition_default_420; -extern const bool __static_condition_default_1075; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_805; +extern const bool __static_condition_default_305; +extern const bool __static_condition_default_379; +extern const bool __static_condition_default_1031; +extern const bool __static_condition_default_288; extern const bool __static_condition_default_302; extern const bool __static_condition_default_581; -extern const bool __static_condition_default_237; -extern const bool __static_condition_default_261; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_379; +extern const bool __static_condition_default_1087; +extern const bool __static_condition_default_308; extern const bool __static_condition_default_595; -extern const bool __static_condition_default_1078; -extern const bool __static_condition_default_349; +extern const bool __static_condition_default_60; +extern const bool __static_condition_default_378; +extern const bool __static_condition_default_1094; extern const bool __static_condition_default_1083; -extern const bool __static_condition_default_414; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_1025; -extern const bool __static_condition_default_806; -extern const bool __static_condition_default_1092; +extern const bool __static_condition_default_252; +extern const bool __static_condition_default_420; +extern const bool __static_condition_default_1093; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_629; +extern const bool __static_condition_default_352; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_279; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_1088; +extern const bool __static_condition_default_429; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_215; +extern const bool __static_condition_default_234; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -505,61 +505,60 @@ __static_renaming("__strdup_897", "strdup"); __static_renaming("__strndup_901", "strndup"); __static_renaming("__strndup_902", "strndup"); __static_renaming("__strchr_905", "strchr"); -__static_renaming("__strchr_906", "strchr"); -__static_renaming("__strrchr_909", "strrchr"); +__static_renaming("__strrchr_908", "strrchr"); +__static_renaming("__strcspn_911", "strcspn"); __static_renaming("__strcspn_912", "strcspn"); -__static_renaming("__strcspn_913", "strcspn"); +__static_renaming("__strspn_915", "strspn"); __static_renaming("__strspn_916", "strspn"); -__static_renaming("__strspn_917", "strspn"); -__static_renaming("__strpbrk_920", "strpbrk"); -__static_renaming("__strstr_923", "strstr"); -__static_renaming("__strtok_926", "strtok"); -__static_renaming("____strtok_r_930", "__strtok_r"); -__static_renaming("__strtok_r_934", "strtok_r"); +__static_renaming("__strpbrk_919", "strpbrk"); +__static_renaming("__strstr_922", "strstr"); +__static_renaming("__strtok_925", "strtok"); +__static_renaming("____strtok_r_929", "__strtok_r"); +__static_renaming("__strtok_r_933", "strtok_r"); +__static_renaming("__strlen_935", "strlen"); __static_renaming("__strlen_936", "strlen"); __static_renaming("__strlen_937", "strlen"); __static_renaming("__strlen_938", "strlen"); -__static_renaming("__strlen_939", "strlen"); +__static_renaming("__strnlen_942", "strnlen"); __static_renaming("__strnlen_943", "strnlen"); -__static_renaming("__strnlen_944", "strnlen"); +__static_renaming("__strerror_945", "strerror"); __static_renaming("__strerror_946", "strerror"); -__static_renaming("__strerror_947", "strerror"); +__static_renaming("__strerror_r_951", "strerror_r"); __static_renaming("__strerror_r_952", "strerror_r"); -__static_renaming("__strerror_r_953", "strerror_r"); -__static_renaming("__strerror_l_956", "strerror_l"); +__static_renaming("__strerror_l_955", "strerror_l"); +__static_renaming("____bzero_959", "__bzero"); __static_renaming("____bzero_960", "__bzero"); __static_renaming("____bzero_961", "__bzero"); __static_renaming("____bzero_962", "__bzero"); -__static_renaming("____bzero_963", "__bzero"); +__static_renaming("__bcopy_967", "bcopy"); __static_renaming("__bcopy_968", "bcopy"); -__static_renaming("__bcopy_969", "bcopy"); +__static_renaming("__bzero_972", "bzero"); __static_renaming("__bzero_973", "bzero"); -__static_renaming("__bzero_974", "bzero"); +__static_renaming("__bcmp_978", "bcmp"); __static_renaming("__bcmp_979", "bcmp"); -__static_renaming("__bcmp_980", "bcmp"); -__static_renaming("__index_983", "index"); -__static_renaming("__rindex_986", "rindex"); -__static_renaming("__ffs_988", "ffs"); -__static_renaming("__strcasecmp_991", "strcasecmp"); +__static_renaming("__index_982", "index"); +__static_renaming("__rindex_985", "rindex"); +__static_renaming("__ffs_987", "ffs"); +__static_renaming("__strcasecmp_990", "strcasecmp"); +__static_renaming("__strncasecmp_995", "strncasecmp"); __static_renaming("__strncasecmp_996", "strncasecmp"); -__static_renaming("__strncasecmp_997", "strncasecmp"); -__static_renaming("__strsep_1000", "strsep"); -__static_renaming("__strsignal_1002", "strsignal"); -__static_renaming("____stpcpy_1005", "__stpcpy"); -__static_renaming("__stpcpy_1008", "stpcpy"); +__static_renaming("__strsep_999", "strsep"); +__static_renaming("__strsignal_1001", "strsignal"); +__static_renaming("____stpcpy_1004", "__stpcpy"); +__static_renaming("__stpcpy_1007", "stpcpy"); +__static_renaming("____stpncpy_1012", "__stpncpy"); __static_renaming("____stpncpy_1013", "__stpncpy"); -__static_renaming("____stpncpy_1014", "__stpncpy"); +__static_renaming("__stpncpy_1018", "stpncpy"); __static_renaming("__stpncpy_1019", "stpncpy"); -__static_renaming("__stpncpy_1020", "stpncpy"); +__static_renaming("____stpncpy_chk_1061", "__stpncpy_chk"); __static_renaming("____stpncpy_chk_1062", "__stpncpy_chk"); -__static_renaming("____stpncpy_chk_1063", "__stpncpy_chk"); +__static_renaming("____stpncpy_alias_1067", "__stpncpy_alias"); __static_renaming("____stpncpy_alias_1068", "__stpncpy_alias"); -__static_renaming("____stpncpy_alias_1069", "__stpncpy_alias"); +__static_renaming("__cgi_bucket_create_1085", "cgi_bucket_create"); __static_renaming("__cgi_bucket_create_1086", "cgi_bucket_create"); -__static_renaming("__cgi_bucket_create_1087", "cgi_bucket_create"); -__static_renaming("__cgi_handler_1091", "cgi_handler"); -__static_renaming("__r_1096", "r"); -__static_renaming("__main_1097", "main"); +__static_renaming("__cgi_handler_1090", "cgi_handler"); +__static_renaming("__r_1095", "r"); +__static_renaming("__main_1096", "main"); __static_condition_renaming("__static_condition_default_60", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H) && (defined _BITS_TYPESIZES_H)"); __static_condition_renaming("__static_condition_default_67", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); @@ -621,30 +620,30 @@ __static_condition_renaming("__static_condition_default_805", "!(defined _STDLIB __static_condition_renaming("__static_condition_default_806", "(defined _STDLIB_H)"); __static_condition_renaming("__static_condition_default_818", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__)"); __static_condition_renaming("__static_condition_default_819", "(defined _STDLIB_H) && !(defined __STRICT_ANSI__)"); -__static_condition_renaming("__static_condition_default_1025", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1026", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1031", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1032", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1037", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1038", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1048", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1049", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1054", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1055", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1074", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1075", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1078", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1083", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1084", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1088", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1089", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1092", "!APR_FILES_AS_SOCKETS"); -__static_condition_renaming("__static_condition_default_1093", "APR_FILES_AS_SOCKETS"); -__static_condition_renaming("__static_condition_default_1094", "!(defined _FORTIFY_SOURCE) && APR_FILES_AS_SOCKETS || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && APR_FILES_AS_SOCKETS || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && APR_FILES_AS_SOCKETS || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && APR_FILES_AS_SOCKETS"); -__static_condition_renaming("__static_condition_default_1095", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && APR_FILES_AS_SOCKETS"); -__static_condition_renaming("__static_condition_default_1098", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc)"); - -if (__static_condition_default_1098) { +__static_condition_renaming("__static_condition_default_1024", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1025", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1030", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1031", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1036", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1037", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1047", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1048", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1053", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1054", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1073", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1074", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1077", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1082", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1083", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1087", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1088", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1091", "!APR_FILES_AS_SOCKETS"); +__static_condition_renaming("__static_condition_default_1092", "APR_FILES_AS_SOCKETS"); +__static_condition_renaming("__static_condition_default_1093", "!(defined _FORTIFY_SOURCE) && APR_FILES_AS_SOCKETS || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && APR_FILES_AS_SOCKETS || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && APR_FILES_AS_SOCKETS || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && APR_FILES_AS_SOCKETS"); +__static_condition_renaming("__static_condition_default_1094", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && APR_FILES_AS_SOCKETS"); +__static_condition_renaming("__static_condition_default_1097", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined __need_malloc_and_calloc) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || (defined _STDLIB_H) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO)"); + +if (__static_condition_default_1097) { __static_parse_error("Unable to parse"); } }; @@ -1470,52 +1469,51 @@ extern char * ((__strdup_897) (const char * (____s_896)));// L171:L172 extern char * ((__strndup_901) (const char * (____string_898), __size_t_1 ____n_899));// L179:L180 extern char * ((__strndup_902) (const char * (____string_898), __size_t_799 ____n_900));// L179:L180 extern char * ((__strchr_905) (const char * (____s_903), int ____c_904));// L231:L232 -extern char * ((__strchr_906) (const char * (____s_903), int ____c_904));// L231:L232 -extern char * ((__strrchr_909) (const char * (____s_907), int ____c_908));// L258:L259 -extern __size_t_1 (__strcspn_912) (const char * (____s_910), const char * (____reject_911));// L280:L281 -extern __size_t_799 (__strcspn_913) (const char * (____s_910), const char * (____reject_911));// L280:L281 -extern __size_t_1 (__strspn_916) (const char * (____s_914), const char * (____accept_915));// L284:L285 -extern __size_t_799 (__strspn_917) (const char * (____s_914), const char * (____accept_915));// L284:L285 -extern char * ((__strpbrk_920) (const char * (____s_918), const char * (____accept_919)));// L310:L311 -extern char * ((__strstr_923) (const char * (____haystack_921), const char * (____needle_922)));// L337:L338 -extern char * ((__strtok_926) (char * __restrict ____s_924, const char * __restrict ____delim_925));// L343:L344 -extern char * ((____strtok_r_930) (char * __restrict ____s_927, const char * __restrict ____delim_928, char * (* __restrict ____save_ptr_929)));// L349:L352 -extern char * ((__strtok_r_934) (char * __restrict ____s_931, const char * __restrict ____delim_932, char * (* __restrict ____save_ptr_933)));// L354:L356 -extern __size_t_1 (__strlen_936) (const char * (____s_935));// L394:L395 -extern __size_t_799 (__strlen_937) (const char * (____s_935));// L394:L395 -extern __size_t_1 (__strlen_938) (const char * (____s_935));// L394:L395 -extern __size_t_799 (__strlen_939) (const char * (____s_935));// L394:L395 -extern __size_t_1 (__strnlen_943) (const char * (____string_940), __size_t_1 ____maxlen_941);// L401:L402 -extern __size_t_799 (__strnlen_944) (const char * (____string_940), __size_t_799 ____maxlen_942);// L401:L402 -extern char * ((__strerror_946) (int ____errnum_945));// L408 -extern char * ((__strerror_947) (int ____errnum_945));// L408 -extern int (__strerror_r_952) (int ____errnum_948, char * (____buf_949), __size_t_1 ____buflen_950);// L422:L424 -extern int (__strerror_r_953) (int ____errnum_948, char * (____buf_949), __size_t_799 ____buflen_951);// L422:L424 -extern char * ((__strerror_l_956) (int ____errnum_954, ____locale_t_883 ____l_955));// L440 -extern void (____bzero_960) (void * (____s_957), __size_t_1 ____n_958);// L446 -extern void (____bzero_961) (void * (____s_957), __size_t_799 ____n_959);// L446 -extern void (____bzero_962) (void * (____s_957), __size_t_1 ____n_958);// L446 -extern void (____bzero_963) (void * (____s_957), __size_t_799 ____n_959);// L446 -extern void (__bcopy_968) (const void * (____src_964), void * (____dest_965), __size_t_1 ____n_966);// L450:L451 -extern void (__bcopy_969) (const void * (____src_964), void * (____dest_965), __size_t_799 ____n_967);// L450:L451 -extern void (__bzero_973) (void * (____s_970), __size_t_1 ____n_971);// L454 -extern void (__bzero_974) (void * (____s_970), __size_t_799 ____n_972);// L454 -extern int (__bcmp_979) (const void * (____s1_975), const void * (____s2_976), __size_t_1 ____n_977);// L457:L458 -extern int (__bcmp_980) (const void * (____s1_975), const void * (____s2_976), __size_t_799 ____n_978);// L457:L458 -extern char * ((__index_983) (const char * (____s_981), int ____c_982));// L484:L485 -extern char * ((__rindex_986) (const char * (____s_984), int ____c_985));// L512:L513 -extern int (__ffs_988) (int ____i_987);// L518 -extern int (__strcasecmp_991) (const char * (____s1_989), const char * (____s2_990));// L529:L530 -extern int (__strncasecmp_996) (const char * (____s1_992), const char * (____s2_993), __size_t_1 ____n_994);// L533:L534 -extern int (__strncasecmp_997) (const char * (____s1_992), const char * (____s2_993), __size_t_799 ____n_995);// L533:L534 -extern char * ((__strsep_1000) (char * (* __restrict ____stringp_998), const char * __restrict ____delim_999));// L552:L554 -extern char * ((__strsignal_1002) (int ____sig_1001));// L559 -extern char * ((____stpcpy_1005) (char * __restrict ____dest_1003, const char * __restrict ____src_1004));// L562:L563 -extern char * ((__stpcpy_1008) (char * __restrict ____dest_1006, const char * __restrict ____src_1007));// L564:L565 -extern char * ((____stpncpy_1013) (char * __restrict ____dest_1009, const char * __restrict ____src_1010, __size_t_1 ____n_1011));// L569:L571 -extern char * ((____stpncpy_1014) (char * __restrict ____dest_1009, const char * __restrict ____src_1010, __size_t_799 ____n_1012));// L569:L571 -extern char * ((__stpncpy_1019) (char * __restrict ____dest_1015, const char * __restrict ____src_1016, __size_t_1 ____n_1017));// L572:L574 -extern char * ((__stpncpy_1020) (char * __restrict ____dest_1015, const char * __restrict ____src_1016, __size_t_799 ____n_1018));// L572:L574 +extern char * ((__strrchr_908) (const char * (____s_906), int ____c_907));// L258:L259 +extern __size_t_1 (__strcspn_911) (const char * (____s_909), const char * (____reject_910));// L280:L281 +extern __size_t_799 (__strcspn_912) (const char * (____s_909), const char * (____reject_910));// L280:L281 +extern __size_t_1 (__strspn_915) (const char * (____s_913), const char * (____accept_914));// L284:L285 +extern __size_t_799 (__strspn_916) (const char * (____s_913), const char * (____accept_914));// L284:L285 +extern char * ((__strpbrk_919) (const char * (____s_917), const char * (____accept_918)));// L310:L311 +extern char * ((__strstr_922) (const char * (____haystack_920), const char * (____needle_921)));// L337:L338 +extern char * ((__strtok_925) (char * __restrict ____s_923, const char * __restrict ____delim_924));// L343:L344 +extern char * ((____strtok_r_929) (char * __restrict ____s_926, const char * __restrict ____delim_927, char * (* __restrict ____save_ptr_928)));// L349:L352 +extern char * ((__strtok_r_933) (char * __restrict ____s_930, const char * __restrict ____delim_931, char * (* __restrict ____save_ptr_932)));// L354:L356 +extern __size_t_1 (__strlen_935) (const char * (____s_934));// L394:L395 +extern __size_t_799 (__strlen_936) (const char * (____s_934));// L394:L395 +extern __size_t_1 (__strlen_937) (const char * (____s_934));// L394:L395 +extern __size_t_799 (__strlen_938) (const char * (____s_934));// L394:L395 +extern __size_t_1 (__strnlen_942) (const char * (____string_939), __size_t_1 ____maxlen_940);// L401:L402 +extern __size_t_799 (__strnlen_943) (const char * (____string_939), __size_t_799 ____maxlen_941);// L401:L402 +extern char * ((__strerror_945) (int ____errnum_944));// L408 +extern char * ((__strerror_946) (int ____errnum_944));// L408 +extern int (__strerror_r_951) (int ____errnum_947, char * (____buf_948), __size_t_1 ____buflen_949);// L422:L424 +extern int (__strerror_r_952) (int ____errnum_947, char * (____buf_948), __size_t_799 ____buflen_950);// L422:L424 +extern char * ((__strerror_l_955) (int ____errnum_953, ____locale_t_883 ____l_954));// L440 +extern void (____bzero_959) (void * (____s_956), __size_t_1 ____n_957);// L446 +extern void (____bzero_960) (void * (____s_956), __size_t_799 ____n_958);// L446 +extern void (____bzero_961) (void * (____s_956), __size_t_1 ____n_957);// L446 +extern void (____bzero_962) (void * (____s_956), __size_t_799 ____n_958);// L446 +extern void (__bcopy_967) (const void * (____src_963), void * (____dest_964), __size_t_1 ____n_965);// L450:L451 +extern void (__bcopy_968) (const void * (____src_963), void * (____dest_964), __size_t_799 ____n_966);// L450:L451 +extern void (__bzero_972) (void * (____s_969), __size_t_1 ____n_970);// L454 +extern void (__bzero_973) (void * (____s_969), __size_t_799 ____n_971);// L454 +extern int (__bcmp_978) (const void * (____s1_974), const void * (____s2_975), __size_t_1 ____n_976);// L457:L458 +extern int (__bcmp_979) (const void * (____s1_974), const void * (____s2_975), __size_t_799 ____n_977);// L457:L458 +extern char * ((__index_982) (const char * (____s_980), int ____c_981));// L484:L485 +extern char * ((__rindex_985) (const char * (____s_983), int ____c_984));// L512:L513 +extern int (__ffs_987) (int ____i_986);// L518 +extern int (__strcasecmp_990) (const char * (____s1_988), const char * (____s2_989));// L529:L530 +extern int (__strncasecmp_995) (const char * (____s1_991), const char * (____s2_992), __size_t_1 ____n_993);// L533:L534 +extern int (__strncasecmp_996) (const char * (____s1_991), const char * (____s2_992), __size_t_799 ____n_994);// L533:L534 +extern char * ((__strsep_999) (char * (* __restrict ____stringp_997), const char * __restrict ____delim_998));// L552:L554 +extern char * ((__strsignal_1001) (int ____sig_1000));// L559 +extern char * ((____stpcpy_1004) (char * __restrict ____dest_1002, const char * __restrict ____src_1003));// L562:L563 +extern char * ((__stpcpy_1007) (char * __restrict ____dest_1005, const char * __restrict ____src_1006));// L564:L565 +extern char * ((____stpncpy_1012) (char * __restrict ____dest_1008, const char * __restrict ____src_1009, __size_t_1 ____n_1010));// L569:L571 +extern char * ((____stpncpy_1013) (char * __restrict ____dest_1008, const char * __restrict ____src_1009, __size_t_799 ____n_1011));// L569:L571 +extern char * ((__stpncpy_1018) (char * __restrict ____dest_1014, const char * __restrict ____src_1015, __size_t_1 ____n_1016));// L572:L574 +extern char * ((__stpncpy_1019) (char * __restrict ____dest_1014, const char * __restrict ____src_1015, __size_t_799 ____n_1017));// L572:L574 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ @@ -1523,32 +1521,32 @@ extern char * ((__stpncpy_1020) (char * __restrict ____dest_1015, const char /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern char * ((____stpncpy_chk_1062) (char * (____dest_1056), const char * (____src_1057), __size_t_1 ____n_1058, __size_t_1 ____destlen_1060));// L130:L131 -extern char * ((____stpncpy_chk_1063) (char * (____dest_1056), const char * (____src_1057), __size_t_799 ____n_1059, __size_t_799 ____destlen_1061));// L130:L131 -extern char * ((____stpncpy_alias_1068) (char * (____dest_1064), const char * (____src_1065), __size_t_1 ____n_1066));// L132:L133 -extern char * ((____stpncpy_alias_1069) (char * (____dest_1064), const char * (____src_1065), __size_t_799 ____n_1067));// L132:L133 +extern char * ((____stpncpy_chk_1061) (char * (____dest_1055), const char * (____src_1056), __size_t_1 ____n_1057, __size_t_1 ____destlen_1059));// L130:L131 +extern char * ((____stpncpy_chk_1062) (char * (____dest_1055), const char * (____src_1056), __size_t_799 ____n_1058, __size_t_799 ____destlen_1060));// L130:L131 +extern char * ((____stpncpy_alias_1067) (char * (____dest_1063), const char * (____src_1064), __size_t_1 ____n_1065));// L132:L133 +extern char * ((____stpncpy_alias_1068) (char * (____dest_1063), const char * (____src_1064), __size_t_799 ____n_1066));// L132:L133 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -void (__cgi_bucket_create_1086) (char * (__r_1085)) { +void (__cgi_bucket_create_1085) (char * (__r_1084)) { -if (__static_condition_default_1088) { +if (__static_condition_default_1087) { { { - __strcat_851 ( __r_1085 ,"something") ; // L6 + __strcat_851 ( __r_1084 ,"something") ; // L6 } } } } -void (__cgi_bucket_create_1087) (char * (__r_1085)) { +void (__cgi_bucket_create_1086) (char * (__r_1084)) { -if (__static_condition_default_1089) { +if (__static_condition_default_1088) { { { @@ -1562,10 +1560,10 @@ __static_type_error("type error") ; // L6 } } -void (__cgi_handler_1091) (char * (__r_1090)) { +void (__cgi_handler_1090) (char * (__r_1089)) { { -if (__static_condition_default_1092) { +if (__static_condition_default_1091) { { { @@ -1578,18 +1576,18 @@ if (__static_condition_default_1092) { } -if (__static_condition_default_1093) { +if (__static_condition_default_1092) { { { -if (__static_condition_default_1094) { - __cgi_bucket_create_1086 ( __r_1090 ) ; // L12 +if (__static_condition_default_1093) { + __cgi_bucket_create_1085 ( __r_1089 ) ; // L12 } -if (__static_condition_default_1095) { - __cgi_bucket_create_1087 ( __r_1090 ) ; // L12 +if (__static_condition_default_1094) { + __cgi_bucket_create_1086 ( __r_1089 ) ; // L12 } } } @@ -1598,16 +1596,16 @@ if (__static_condition_default_1095) { } }} -int (__main_1097) (void ) { +int (__main_1096) (void ) { { { -char * (__r_1096)= ( ( void * ) 0 );// L18 +char * (__r_1095)= ( ( void * ) 0 );// L18 - __cgi_handler_1091 ( __r_1096 ) ; // L19 + __cgi_handler_1090 ( __r_1095 ) ; // L19 return 0 ;// L20 } } diff --git a/fonda/cpp_testsuite/varBugs/APACHE/bbeb0516cf0.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/bbeb0516cf0.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/bbeb0516cf0.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/bbeb0516cf0.inferres b/fonda/cpp_testsuite/varBugs/APACHE/bbeb0516cf0.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/bbeb0516cf0.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c index bd634a18..e1fafce7 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c @@ -7,249 +7,379 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_695; -extern const bool __static_condition_default_161; -extern const bool __static_condition_default_648; -extern const bool __static_condition_default_833; -extern const bool __static_condition_default_232; -extern const bool __static_condition_default_640; -extern const bool __static_condition_default_641; -extern const bool __static_condition_default_855; -extern const bool __static_condition_default_694; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_1642; -extern const bool __static_condition_default_992; -extern const bool __static_condition_default_1614; -extern const bool __static_condition_default_935; -extern const bool __static_condition_default_320; -extern const bool __static_condition_default_881; -extern const bool __static_condition_default_941; -extern const bool __static_condition_default_394; -extern const bool __static_condition_default_448; -extern const bool __static_condition_default_948; -extern const bool __static_condition_default_227; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_165; -extern const bool __static_condition_default_707; -extern const bool __static_condition_default_1837; +extern const bool __static_condition_default_1443; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_419; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_488; +extern const bool __static_condition_default_2039; +extern const bool __static_condition_default_2040; +extern const bool __static_condition_default_2075; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_963; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_380; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_2073; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_583; +extern const bool __static_condition_default_1720; +extern const bool __static_condition_default_568; extern const bool __static_condition_default_1836; -extern const bool __static_condition_default_714; -extern const bool __static_condition_default_528; -extern const bool __static_condition_default_1829; -extern const bool __static_condition_default_304; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_1826; -extern const bool __static_condition_default_696; -extern const bool __static_condition_default_893; -extern const bool __static_condition_default_1648; -extern const bool __static_condition_default_453; -extern const bool __static_condition_default_1227; -extern const bool __static_condition_default_905; -extern const bool __static_condition_default_720; -extern const bool __static_condition_default_551; -extern const bool __static_condition_default_1230; -extern const bool __static_condition_default_579; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_370; -extern const bool __static_condition_default_1214; -extern const bool __static_condition_default_954; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_1835; -extern const bool __static_condition_default_379; -extern const bool __static_condition_default_688; -extern const bool __static_condition_default_336; -extern const bool __static_condition_default_1031; -extern const bool __static_condition_default_276; +extern const bool __static_condition_default_290; +extern const bool __static_condition_default_2330; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_789; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_753; +extern const bool __static_condition_default_76; +extern const bool __static_condition_default_337; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_2335; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_1633; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_1100; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_791; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_1657; +extern const bool __static_condition_default_1679; +extern const bool __static_condition_default_2339; +extern const bool __static_condition_default_1840; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_2338; +extern const bool __static_condition_default_2102; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_2331; +extern const bool __static_condition_default_1371; +extern const bool __static_condition_default_1675; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_1799; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_417; extern const bool __static_condition_default_684; -extern const bool __static_condition_default_480; -extern const bool __static_condition_default_234; -extern const bool __static_condition_default_540; -extern const bool __static_condition_default_562; -extern const bool __static_condition_default_639; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_976; -extern const bool __static_condition_default_381; -extern const bool __static_condition_default_605; -extern const bool __static_condition_default_610; -extern const bool __static_condition_default_328; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_507; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_435; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_1693; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_1449; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_84; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_779; +extern const bool __static_condition_default_2035; +extern const bool __static_condition_default_2100; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_1367; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_2094; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_721; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_1098; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_284; extern const bool __static_condition_default_768; -extern const bool __static_condition_default_1825; -extern const bool __static_condition_default_374; -extern const bool __static_condition_default_567; -extern const bool __static_condition_default_719; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_517; -extern const bool __static_condition_default_762; -extern const bool __static_condition_default_400; extern const bool __static_condition_default_991; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_1006; -extern const bool __static_condition_default_655; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_332; -extern const bool __static_condition_default_961; -extern const bool __static_condition_default_749; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_333; +extern const bool __static_condition_default_668; extern const bool __static_condition_default_760; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_1823; -extern const bool __static_condition_default_586; -extern const bool __static_condition_default_162; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_429; -extern const bool __static_condition_default_588; -extern const bool __static_condition_default_343; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_1621; -extern const bool __static_condition_default_933; -extern const bool __static_condition_default_962; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_1839; -extern const bool __static_condition_default_1600; -extern const bool __static_condition_default_495; -extern const bool __static_condition_default_1828; -extern const bool __static_condition_default_1833; -extern const bool __static_condition_default_300; -extern const bool __static_condition_default_882; -extern const bool __static_condition_default_351; -extern const bool __static_condition_default_790; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_718; -extern const bool __static_condition_default_496; -extern const bool __static_condition_default_1209; -extern const bool __static_condition_default_556; -extern const bool __static_condition_default_225; -extern const bool __static_condition_default_898; -extern const bool __static_condition_default_474; -extern const bool __static_condition_default_482; -extern const bool __static_condition_default_733; -extern const bool __static_condition_default_595; -extern const bool __static_condition_default_969; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_1640; -extern const bool __static_condition_default_953; -extern const bool __static_condition_default_1384; -extern const bool __static_condition_default_236; -extern const bool __static_condition_default_680; -extern const bool __static_condition_default_393; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_794; -extern const bool __static_condition_default_470; -extern const bool __static_condition_default_254; -extern const bool __static_condition_default_1623; -extern const bool __static_condition_default_449; +extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_891; +extern const bool __static_condition_default_386; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_1737; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_544; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_759; +extern const bool __static_condition_default_2342; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_512; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_1093; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_369; extern const bool __static_condition_default_497; -extern const bool __static_condition_default_906; -extern const bool __static_condition_default_421; -extern const bool __static_condition_default_1827; -extern const bool __static_condition_default_627; -extern const bool __static_condition_default_502; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_1669; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_907; +extern const bool __static_condition_default_1816; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_550; +extern const bool __static_condition_default_929; extern const bool __static_condition_default_431; -extern const bool __static_condition_default_326; -extern const bool __static_condition_default_457; -extern const bool __static_condition_default_716; -extern const bool __static_condition_default_977; -extern const bool __static_condition_default_1838; -extern const bool __static_condition_default_118; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_798; -extern const bool __static_condition_default_778; -extern const bool __static_condition_default_473; +extern const bool __static_condition_default_1649; +extern const bool __static_condition_default_388; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_1629; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_1686; +extern const bool __static_condition_default_1448; +extern const bool __static_condition_default_1331; +extern const bool __static_condition_default_187; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_1704; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_1743; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_1324; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_955; +extern const bool __static_condition_default_536; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_455; extern const bool __static_condition_default_538; -extern const bool __static_condition_default_1831; -extern const bool __static_condition_default_904; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_1598; -extern const bool __static_condition_default_612; -extern const bool __static_condition_default_889; -extern const bool __static_condition_default_772; -extern const bool __static_condition_default_1210; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_624; -extern const bool __static_condition_default_672; -extern const bool __static_condition_default_706; -extern const bool __static_condition_default_931; -extern const bool __static_condition_default_1234; -extern const bool __static_condition_default_308; -extern const bool __static_condition_default_1244; -extern const bool __static_condition_default_1646; -extern const bool __static_condition_default_330; -extern const bool __static_condition_default_533; -extern const bool __static_condition_default_226; -extern const bool __static_condition_default_577; +extern const bool __static_condition_default_1436; extern const bool __static_condition_default_745; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_804; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_74; -extern const bool __static_condition_default_446; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_358; -extern const bool __static_condition_default_1755; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_642; -extern const bool __static_condition_default_1832; -extern const bool __static_condition_default_924; -extern const bool __static_condition_default_784; -extern const bool __static_condition_default_766; -extern const bool __static_condition_default_256; -extern const bool __static_condition_default_984; -extern const bool __static_condition_default_1016; -extern const bool __static_condition_default_349; -extern const bool __static_condition_default_459; -extern const bool __static_condition_default_1834; -extern const bool __static_condition_default_356; -extern const bool __static_condition_default_1017; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_1201; -extern const bool __static_condition_default_454; +extern const bool __static_condition_default_894; +extern const bool __static_condition_default_670; +extern const bool __static_condition_default_367; +extern const bool __static_condition_default_2341; +extern const bool __static_condition_default_1325; +extern const bool __static_condition_default_1318; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_1712; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_382; +extern const bool __static_condition_default_846; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_2332; +extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_1848; +extern const bool __static_condition_default_1856; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_1661; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_2060; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_702; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_2348; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_2347; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_1099; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_1330; +extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_2059; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_769; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_559; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_677; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_834; +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_1377; extern const bool __static_condition_default_801; +extern const bool __static_condition_default_1368; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_365; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_2328; +extern const bool __static_condition_default_2334; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_1759; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_2077; +extern const bool __static_condition_default_1645; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_1637; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_2036; +extern const bool __static_condition_default_1769; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_2343; +extern const bool __static_condition_default_1672; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_1599; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_1348; +extern const bool __static_condition_default_2230; +extern const bool __static_condition_default_311; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_2329; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_1113; +extern const bool __static_condition_default_1815; +extern const bool __static_condition_default_204; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_1653; +extern const bool __static_condition_default_1782; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_521; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_2061; extern const bool __static_condition_default_864; -extern const bool __static_condition_default_338; -extern const bool __static_condition_default_820; -extern const bool __static_condition_default_294; -extern const bool __static_condition_default_501; -extern const bool __static_condition_default_500; -extern const bool __static_condition_default_310; -extern const bool __static_condition_default_999; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_2346; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_1773; +extern const bool __static_condition_default_1625; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_2333; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_1342; +extern const bool __static_condition_default_347; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_2062; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_1860; +extern const bool __static_condition_default_1689; +extern const bool __static_condition_default_2344; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_1716; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_1092; +extern const bool __static_condition_default_1112; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_2096; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_1641; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_1347; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_613; +extern const bool __static_condition_default_1682; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_1708; +extern const bool __static_condition_default_1341; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_2336; +extern const bool __static_condition_default_549; +extern const bool __static_condition_default_2340; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_2337; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_489; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_1376; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_1742; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_1844; +extern const bool __static_condition_default_747; extern const bool __static_condition_default_510; -extern const bool __static_condition_default_230; -extern const bool __static_condition_default_774; -extern const bool __static_condition_default_729; -extern const bool __static_condition_default_739; -extern const bool __static_condition_default_1824; -extern const bool __static_condition_default_508; -extern const bool __static_condition_default_575; -extern const bool __static_condition_default_1194; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_968; -extern const bool __static_condition_default_626; -extern const bool __static_condition_default_1613; -extern const bool __static_condition_default_983; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_1830; -extern const bool __static_condition_default_743; -extern const bool __static_condition_default_1021; -extern const bool __static_condition_default_451; -extern const bool __static_condition_default_917; -extern const bool __static_condition_default_318; -extern const bool __static_condition_default_870; -extern const bool __static_condition_default_603; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_735; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_1319; +extern const bool __static_condition_default_842; +extern const bool __static_condition_default_2345; +extern const bool __static_condition_default_636; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_875; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_1800; +extern const bool __static_condition_default_1852; +extern const bool __static_condition_default_2071; +extern const bool __static_condition_default_1665; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_1700; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_761; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_619; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_1005; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -301,757 +431,1152 @@ __static_renaming("____ssize_t_49", "__ssize_t"); __static_renaming("____syscall_slong_t_50", "__syscall_slong_t"); __static_renaming("____syscall_ulong_t_51", "__syscall_ulong_t"); __static_renaming("____loff_t_52", "__loff_t"); -__static_renaming("____qaddr_t_53", "__qaddr_t"); -__static_renaming("____caddr_t_54", "__caddr_t"); -__static_renaming("____intptr_t_55", "__intptr_t"); -__static_renaming("____socklen_t_56", "__socklen_t"); -__static_renaming("__FILE_58", "FILE"); -__static_renaming("____FILE_59", "__FILE"); -__static_renaming("____mbstate_t_68", "__mbstate_t"); -__static_renaming("___G_fpos_t_75", "_G_fpos_t"); -__static_renaming("___G_fpos64_t_81", "_G_fpos64_t"); -__static_renaming("____gnuc_va_list_82", "__gnuc_va_list"); -__static_renaming("___IO_lock_t_84", "_IO_lock_t"); -__static_renaming("___IO_FILE_163", "_IO_FILE"); -__static_renaming("___IO_FILE_164", "_IO_FILE"); -__static_renaming("___IO_2_1_stdin__167", "_IO_2_1_stdin_"); -__static_renaming("___IO_2_1_stdout__168", "_IO_2_1_stdout_"); -__static_renaming("___IO_2_1_stderr__169", "_IO_2_1_stderr_"); -__static_renaming("____io_read_fn_173", "__io_read_fn"); -__static_renaming("____io_write_fn_177", "__io_write_fn"); -__static_renaming("____io_seek_fn_181", "__io_seek_fn"); -__static_renaming("____io_close_fn_183", "__io_close_fn"); -__static_renaming("____underflow_184", "__underflow"); -__static_renaming("____underflow_185", "__underflow"); -__static_renaming("____uflow_186", "__uflow"); -__static_renaming("____uflow_187", "__uflow"); -__static_renaming("____overflow_188", "__overflow"); -__static_renaming("____overflow_189", "__overflow"); -__static_renaming("___IO_getc_193", "_IO_getc"); -__static_renaming("___IO_getc_194", "_IO_getc"); -__static_renaming("___IO_putc_199", "_IO_putc"); -__static_renaming("___IO_putc_200", "_IO_putc"); -__static_renaming("___IO_feof_204", "_IO_feof"); -__static_renaming("___IO_feof_205", "_IO_feof"); -__static_renaming("___IO_ferror_209", "_IO_ferror"); -__static_renaming("___IO_ferror_210", "_IO_ferror"); -__static_renaming("___IO_peekc_locked_214", "_IO_peekc_locked"); -__static_renaming("___IO_peekc_locked_215", "_IO_peekc_locked"); -__static_renaming("___IO_flockfile_216", "_IO_flockfile"); -__static_renaming("___IO_flockfile_217", "_IO_flockfile"); -__static_renaming("___IO_funlockfile_218", "_IO_funlockfile"); -__static_renaming("___IO_funlockfile_219", "_IO_funlockfile"); -__static_renaming("___IO_ftrylockfile_220", "_IO_ftrylockfile"); -__static_renaming("___IO_ftrylockfile_221", "_IO_ftrylockfile"); -__static_renaming("___IO_vfscanf_222", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_224", "_IO_vfscanf"); -__static_renaming("___IO_vfprintf_231", "_IO_vfprintf"); -__static_renaming("___IO_vfprintf_233", "_IO_vfprintf"); -__static_renaming("___IO_padn_238", "_IO_padn"); -__static_renaming("___IO_padn_239", "_IO_padn"); -__static_renaming("___IO_sgetn_240", "_IO_sgetn"); -__static_renaming("___IO_sgetn_241", "_IO_sgetn"); -__static_renaming("___IO_seekoff_242", "_IO_seekoff"); -__static_renaming("___IO_seekoff_243", "_IO_seekoff"); -__static_renaming("___IO_seekpos_244", "_IO_seekpos"); -__static_renaming("___IO_seekpos_245", "_IO_seekpos"); -__static_renaming("___IO_free_backup_area_246", "_IO_free_backup_area"); -__static_renaming("___IO_free_backup_area_247", "_IO_free_backup_area"); -__static_renaming("__va_list_248", "va_list"); -__static_renaming("__off_t_250", "off_t"); -__static_renaming("__off_t_251", "off_t"); -__static_renaming("__ssize_t_252", "ssize_t"); -__static_renaming("__fpos_t_253", "fpos_t"); -__static_renaming("__fpos_t_255", "fpos_t"); -__static_renaming("__stdin_257", "stdin"); -__static_renaming("__stdin_258", "stdin"); -__static_renaming("__stdout_259", "stdout"); -__static_renaming("__stdout_260", "stdout"); -__static_renaming("__stderr_261", "stderr"); -__static_renaming("__stderr_262", "stderr"); -__static_renaming("__remove_264", "remove"); -__static_renaming("__rename_267", "rename"); -__static_renaming("__renameat_272", "renameat"); -__static_renaming("__tmpfile_273", "tmpfile"); -__static_renaming("__tmpfile_275", "tmpfile"); -__static_renaming("__tmpfile_277", "tmpfile"); -__static_renaming("__tmpfile_279", "tmpfile"); -__static_renaming("__tmpnam_282", "tmpnam"); -__static_renaming("__tmpnam_283", "tmpnam"); -__static_renaming("__tmpnam_r_285", "tmpnam_r"); -__static_renaming("__tmpnam_r_286", "tmpnam_r"); -__static_renaming("__tempnam_289", "tempnam"); -__static_renaming("__tempnam_290", "tempnam"); -__static_renaming("__fclose_293", "fclose"); -__static_renaming("__fclose_295", "fclose"); -__static_renaming("__fflush_299", "fflush"); -__static_renaming("__fflush_unlocked_303", "fflush_unlocked"); -__static_renaming("__fopen_307", "fopen"); -__static_renaming("__fopen_309", "fopen"); -__static_renaming("__fopen_317", "fopen"); -__static_renaming("__fopen_319", "fopen"); -__static_renaming("__freopen_325", "freopen"); -__static_renaming("__freopen_327", "freopen"); -__static_renaming("__freopen_329", "freopen"); -__static_renaming("__freopen_331", "freopen"); -__static_renaming("__fdopen_335", "fdopen"); -__static_renaming("__fdopen_337", "fdopen"); -__static_renaming("__fmemopen_342", "fmemopen"); -__static_renaming("__fmemopen_344", "fmemopen"); -__static_renaming("__open_memstream_348", "open_memstream"); -__static_renaming("__open_memstream_350", "open_memstream"); -__static_renaming("__setbuf_355", "setbuf"); -__static_renaming("__setbuf_357", "setbuf"); -__static_renaming("__setvbuf_364", "setvbuf"); -__static_renaming("__setbuffer_369", "setbuffer"); -__static_renaming("__setlinebuf_373", "setlinebuf"); -__static_renaming("__fprintf_378", "fprintf"); -__static_renaming("__fprintf_380", "fprintf"); -__static_renaming("__printf_383", "printf"); -__static_renaming("__sprintf_386", "sprintf"); -__static_renaming("__vfprintf_392", "vfprintf"); -__static_renaming("__vprintf_399", "vprintf"); -__static_renaming("__vsprintf_405", "vsprintf"); -__static_renaming("__snprintf_409", "snprintf"); -__static_renaming("__vsnprintf_415", "vsnprintf"); -__static_renaming("__vdprintf_420", "vdprintf"); -__static_renaming("__dprintf_424", "dprintf"); -__static_renaming("__fscanf_428", "fscanf"); -__static_renaming("__fscanf_430", "fscanf"); -__static_renaming("__fscanf_432", "fscanf"); -__static_renaming("__fscanf_434", "fscanf"); -__static_renaming("__scanf_437", "scanf"); -__static_renaming("__scanf_438", "scanf"); -__static_renaming("__sscanf_441", "sscanf"); -__static_renaming("__vfscanf_468", "vfscanf"); -__static_renaming("__vfscanf_472", "vfscanf"); -__static_renaming("__vscanf_479", "vscanf"); -__static_renaming("__vscanf_481", "vscanf"); -__static_renaming("__vsscanf_487", "vsscanf"); -__static_renaming("__fgetc_520", "fgetc"); -__static_renaming("__getc_523", "getc"); -__static_renaming("__getchar_524", "getchar"); -__static_renaming("__getc_unlocked_527", "getc_unlocked"); -__static_renaming("__getchar_unlocked_529", "getchar_unlocked"); -__static_renaming("__fgetc_unlocked_532", "fgetc_unlocked"); -__static_renaming("__fputc_537", "fputc"); -__static_renaming("__fputc_539", "fputc"); -__static_renaming("__putc_544", "putc"); -__static_renaming("__putchar_546", "putchar"); -__static_renaming("__fputc_unlocked_550", "fputc_unlocked"); -__static_renaming("__putc_unlocked_555", "putc_unlocked"); -__static_renaming("__putchar_unlocked_558", "putchar_unlocked"); -__static_renaming("__getw_561", "getw"); -__static_renaming("__putw_566", "putw"); -__static_renaming("__fgets_572", "fgets"); -__static_renaming("__fgets_574", "fgets"); -__static_renaming("__fgets_576", "fgets"); -__static_renaming("__fgets_578", "fgets"); -__static_renaming("____getdelim_585", "__getdelim"); -__static_renaming("____getdelim_587", "__getdelim"); -__static_renaming("__getdelim_594", "getdelim"); -__static_renaming("__getdelim_596", "getdelim"); -__static_renaming("__getline_602", "getline"); -__static_renaming("__getline_604", "getline"); -__static_renaming("__fputs_609", "fputs"); -__static_renaming("__fputs_611", "fputs"); -__static_renaming("__puts_614", "puts"); -__static_renaming("__ungetc_618", "ungetc"); -__static_renaming("__fseek_654", "fseek"); -__static_renaming("__fseek_656", "fseek"); -__static_renaming("__ftell_660", "ftell"); -__static_renaming("__ftell_662", "ftell"); -__static_renaming("__rewind_666", "rewind"); -__static_renaming("__fseeko_671", "fseeko"); -__static_renaming("__fseeko_679", "fseeko"); -__static_renaming("__ftello_683", "ftello"); -__static_renaming("__ftello_685", "ftello"); -__static_renaming("__ftello_687", "ftello"); -__static_renaming("__fgetpos_693", "fgetpos"); -__static_renaming("__fgetpos_705", "fgetpos"); -__static_renaming("__fsetpos_713", "fsetpos"); -__static_renaming("__fsetpos_717", "fsetpos"); -__static_renaming("__clearerr_723", "clearerr"); -__static_renaming("__feof_726", "feof"); -__static_renaming("__feof_728", "feof"); -__static_renaming("__ferror_732", "ferror"); -__static_renaming("__ferror_734", "ferror"); -__static_renaming("__clearerr_unlocked_738", "clearerr_unlocked"); -__static_renaming("__feof_unlocked_742", "feof_unlocked"); -__static_renaming("__feof_unlocked_744", "feof_unlocked"); -__static_renaming("__ferror_unlocked_748", "ferror_unlocked"); -__static_renaming("__ferror_unlocked_750", "ferror_unlocked"); -__static_renaming("__perror_753", "perror"); -__static_renaming("__perror_754", "perror"); -__static_renaming("__sys_nerr_755", "sys_nerr"); -__static_renaming("__sys_errlist_756", "sys_errlist"); -__static_renaming("__fileno_759", "fileno"); -__static_renaming("__fileno_761", "fileno"); -__static_renaming("__fileno_unlocked_765", "fileno_unlocked"); -__static_renaming("__fileno_unlocked_767", "fileno_unlocked"); -__static_renaming("__popen_771", "popen"); -__static_renaming("__popen_773", "popen"); -__static_renaming("__pclose_777", "pclose"); -__static_renaming("__ctermid_780", "ctermid"); -__static_renaming("__flockfile_783", "flockfile"); -__static_renaming("__ftrylockfile_787", "ftrylockfile"); -__static_renaming("__ftrylockfile_789", "ftrylockfile"); -__static_renaming("__funlockfile_793", "funlockfile"); -__static_renaming("____sprintf_chk_825", "__sprintf_chk"); -__static_renaming("____vsprintf_chk_832", "__vsprintf_chk"); -__static_renaming("____snprintf_chk_846", "__snprintf_chk"); -__static_renaming("____vsnprintf_chk_854", "__vsnprintf_chk"); -__static_renaming("____fprintf_chk_869", "__fprintf_chk"); -__static_renaming("____printf_chk_873", "__printf_chk"); -__static_renaming("____vfprintf_chk_880", "__vfprintf_chk"); -__static_renaming("____vprintf_chk_888", "__vprintf_chk"); -__static_renaming("____dprintf_chk_910", "__dprintf_chk"); -__static_renaming("____vdprintf_chk_916", "__vdprintf_chk"); -__static_renaming("____fgets_chk_930", "__fgets_chk"); -__static_renaming("____fgets_chk_932", "__fgets_chk"); -__static_renaming("____fgets_chk_934", "__fgets_chk"); -__static_renaming("____fgets_alias_940", "__fgets_alias"); -__static_renaming("____fgets_chk_warn_947", "__fgets_chk_warn"); -__static_renaming("____cnt_1013", "__cnt"); -__static_renaming("____cptr_1014", "__cptr"); -__static_renaming("__memmove_1026", "memmove"); -__static_renaming("__memset_1035", "memset"); -__static_renaming("__memset_1036", "memset"); -__static_renaming("__memcmp_1040", "memcmp"); -__static_renaming("__memchr_1044", "memchr"); -__static_renaming("__strcpy_1047", "strcpy"); -__static_renaming("__strncpy_1051", "strncpy"); -__static_renaming("__strcat_1054", "strcat"); -__static_renaming("__strncat_1058", "strncat"); -__static_renaming("__strcmp_1061", "strcmp"); -__static_renaming("__strncmp_1065", "strncmp"); -__static_renaming("__strcoll_1068", "strcoll"); -__static_renaming("__strxfrm_1072", "strxfrm"); -__static_renaming("____locale_t_1080", "__locale_t"); -__static_renaming("__locale_t_1081", "locale_t"); -__static_renaming("__strcoll_l_1085", "strcoll_l"); -__static_renaming("__strxfrm_l_1090", "strxfrm_l"); -__static_renaming("__strdup_1092", "strdup"); -__static_renaming("__strndup_1095", "strndup"); -__static_renaming("__strchr_1098", "strchr"); -__static_renaming("__strchr_1099", "strchr"); -__static_renaming("__strrchr_1102", "strrchr"); -__static_renaming("__strcspn_1105", "strcspn"); -__static_renaming("__strspn_1108", "strspn"); -__static_renaming("__strpbrk_1111", "strpbrk"); -__static_renaming("__strstr_1114", "strstr"); -__static_renaming("__strtok_1117", "strtok"); -__static_renaming("____strtok_r_1121", "__strtok_r"); -__static_renaming("__strtok_r_1125", "strtok_r"); -__static_renaming("__strlen_1127", "strlen"); -__static_renaming("__strlen_1128", "strlen"); -__static_renaming("__strnlen_1131", "strnlen"); -__static_renaming("__strerror_1133", "strerror"); -__static_renaming("__strerror_1134", "strerror"); -__static_renaming("__strerror_r_1138", "strerror_r"); -__static_renaming("__strerror_l_1141", "strerror_l"); -__static_renaming("____bzero_1144", "__bzero"); -__static_renaming("____bzero_1145", "__bzero"); -__static_renaming("__bcopy_1149", "bcopy"); -__static_renaming("__bzero_1152", "bzero"); -__static_renaming("__bcmp_1156", "bcmp"); -__static_renaming("__index_1159", "index"); -__static_renaming("__rindex_1162", "rindex"); -__static_renaming("__ffs_1164", "ffs"); -__static_renaming("__strcasecmp_1167", "strcasecmp"); -__static_renaming("__strncasecmp_1171", "strncasecmp"); -__static_renaming("__strsep_1174", "strsep"); -__static_renaming("__strsignal_1176", "strsignal"); -__static_renaming("____stpcpy_1179", "__stpcpy"); -__static_renaming("__stpcpy_1182", "stpcpy"); -__static_renaming("____stpncpy_1186", "__stpncpy"); -__static_renaming("__stpncpy_1190", "stpncpy"); -__static_renaming("____stpncpy_chk_1219", "__stpncpy_chk"); -__static_renaming("____stpncpy_alias_1223", "__stpncpy_alias"); -__static_renaming("__wchar_t_1235", "wchar_t"); -__static_renaming("__idtype_t_1241", "idtype_t"); -__static_renaming("____bswap_32_1243", "__bswap_32"); -__static_renaming("____bswap_64_1246", "__bswap_64"); -__static_renaming("____WAIT_STATUS_1266", "__WAIT_STATUS"); -__static_renaming("__div_t_1271", "div_t"); -__static_renaming("__ldiv_t_1276", "ldiv_t"); -__static_renaming("__lldiv_t_1281", "lldiv_t"); -__static_renaming("____ctype_get_mb_cur_max_1282", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1283", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1284", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1285", "__ctype_get_mb_cur_max"); -__static_renaming("__atof_1287", "atof"); -__static_renaming("__atof_1288", "atof"); -__static_renaming("__atoi_1290", "atoi"); -__static_renaming("__atoi_1291", "atoi"); -__static_renaming("__atol_1293", "atol"); -__static_renaming("__atol_1294", "atol"); -__static_renaming("__atoll_1296", "atoll"); -__static_renaming("__atoll_1297", "atoll"); -__static_renaming("__strtod_1300", "strtod"); -__static_renaming("__strtof_1303", "strtof"); -__static_renaming("__strtold_1306", "strtold"); -__static_renaming("__strtol_1310", "strtol"); -__static_renaming("__strtoul_1314", "strtoul"); -__static_renaming("__strtoq_1318", "strtoq"); -__static_renaming("__strtouq_1322", "strtouq"); -__static_renaming("__strtoll_1326", "strtoll"); -__static_renaming("__strtoll_1327", "strtoll"); -__static_renaming("__strtoull_1331", "strtoull"); -__static_renaming("__l64a_1336", "l64a"); -__static_renaming("__l64a_1337", "l64a"); -__static_renaming("__a64l_1339", "a64l"); -__static_renaming("__a64l_1340", "a64l"); -__static_renaming("__u_char_1341", "u_char"); -__static_renaming("__u_short_1342", "u_short"); -__static_renaming("__u_int_1343", "u_int"); -__static_renaming("__u_long_1344", "u_long"); -__static_renaming("__quad_t_1345", "quad_t"); -__static_renaming("__u_quad_t_1346", "u_quad_t"); -__static_renaming("__fsid_t_1347", "fsid_t"); -__static_renaming("__loff_t_1348", "loff_t"); -__static_renaming("__ino_t_1349", "ino_t"); -__static_renaming("__ino_t_1350", "ino_t"); -__static_renaming("__dev_t_1351", "dev_t"); -__static_renaming("__gid_t_1352", "gid_t"); -__static_renaming("__gid_t_1353", "gid_t"); -__static_renaming("__mode_t_1354", "mode_t"); -__static_renaming("__nlink_t_1355", "nlink_t"); -__static_renaming("__uid_t_1356", "uid_t"); -__static_renaming("__uid_t_1357", "uid_t"); -__static_renaming("__pid_t_1358", "pid_t"); -__static_renaming("__id_t_1359", "id_t"); -__static_renaming("__daddr_t_1360", "daddr_t"); -__static_renaming("__caddr_t_1361", "caddr_t"); -__static_renaming("__key_t_1362", "key_t"); -__static_renaming("__key_t_1363", "key_t"); -__static_renaming("__clock_t_1364", "clock_t"); -__static_renaming("__time_t_1365", "time_t"); -__static_renaming("__clockid_t_1366", "clockid_t"); -__static_renaming("__timer_t_1367", "timer_t"); -__static_renaming("__ulong_1368", "ulong"); -__static_renaming("__ulong_1369", "ulong"); -__static_renaming("__ulong_1370", "ulong"); -__static_renaming("__ushort_1371", "ushort"); -__static_renaming("__uint_1372", "uint"); -__static_renaming("__int8_t_1373", "int8_t"); -__static_renaming("__int16_t_1374", "int16_t"); -__static_renaming("__int32_t_1375", "int32_t"); -__static_renaming("__int64_t_1376", "int64_t"); -__static_renaming("__u_int8_t_1377", "u_int8_t"); -__static_renaming("__u_int16_t_1378", "u_int16_t"); -__static_renaming("__u_int32_t_1379", "u_int32_t"); -__static_renaming("__u_int64_t_1380", "u_int64_t"); -__static_renaming("__register_t_1381", "register_t"); -__static_renaming("____bswap_32_1383", "__bswap_32"); -__static_renaming("____bswap_64_1386", "__bswap_64"); -__static_renaming("____sig_atomic_t_1387", "__sig_atomic_t"); -__static_renaming("____sigset_t_1391", "__sigset_t"); -__static_renaming("__sigset_t_1392", "sigset_t"); -__static_renaming("__suseconds_t_1399", "suseconds_t"); -__static_renaming("____fd_mask_1400", "__fd_mask"); -__static_renaming("____fd_mask_1401", "__fd_mask"); -__static_renaming("__fd_set_1406", "fd_set"); -__static_renaming("__fd_mask_1407", "fd_mask"); -__static_renaming("__fd_mask_1408", "fd_mask"); -__static_renaming("__select_1416", "select"); -__static_renaming("__select_1417", "select"); -__static_renaming("__pselect_1426", "pselect"); -__static_renaming("__pselect_1427", "pselect"); -__static_renaming("____fdelt_chk_1429", "__fdelt_chk"); -__static_renaming("____fdelt_warn_1431", "__fdelt_warn"); -__static_renaming("__gnu_dev_major_1433", "gnu_dev_major"); -__static_renaming("__gnu_dev_major_1434", "gnu_dev_major"); -__static_renaming("__gnu_dev_minor_1436", "gnu_dev_minor"); -__static_renaming("__gnu_dev_makedev_1439", "gnu_dev_makedev"); -__static_renaming("__blksize_t_1444", "blksize_t"); -__static_renaming("__blkcnt_t_1445", "blkcnt_t"); -__static_renaming("__fsblkcnt_t_1446", "fsblkcnt_t"); -__static_renaming("__blkcnt_t_1447", "blkcnt_t"); -__static_renaming("__fsblkcnt_t_1448", "fsblkcnt_t"); -__static_renaming("__fsfilcnt_t_1449", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_1450", "fsfilcnt_t"); -__static_renaming("__pthread_t_1451", "pthread_t"); -__static_renaming("__pthread_attr_t_1455", "pthread_attr_t"); -__static_renaming("____pthread_list_t_1460", "__pthread_list_t"); -__static_renaming("____pthread_list_t_1461", "__pthread_list_t"); -__static_renaming("__pthread_mutex_t_1477", "pthread_mutex_t"); -__static_renaming("__pthread_mutexattr_t_1482", "pthread_mutexattr_t"); -__static_renaming("__rand_1483", "rand"); -__static_renaming("__srand_1485", "srand"); -__static_renaming("__rand_r_1487", "rand_r"); -__static_renaming("__drand48_1488", "drand48"); -__static_renaming("__erand48_1490", "erand48"); -__static_renaming("__lrand48_1491", "lrand48"); -__static_renaming("__nrand48_1493", "nrand48"); -__static_renaming("__mrand48_1494", "mrand48"); -__static_renaming("__jrand48_1496", "jrand48"); -__static_renaming("__srand48_1498", "srand48"); -__static_renaming("__seed48_1500", "seed48"); -__static_renaming("__lcong48_1502", "lcong48"); -__static_renaming("__malloc_1504", "malloc"); -__static_renaming("__malloc_1505", "malloc"); -__static_renaming("__calloc_1508", "calloc"); -__static_renaming("__calloc_1509", "calloc"); -__static_renaming("__realloc_1512", "realloc"); -__static_renaming("__realloc_1513", "realloc"); -__static_renaming("__free_1515", "free"); -__static_renaming("__cfree_1517", "cfree"); -__static_renaming("__alloca_1519", "alloca"); -__static_renaming("__valloc_1521", "valloc"); -__static_renaming("__valloc_1522", "valloc"); -__static_renaming("__posix_memalign_1526", "posix_memalign"); -__static_renaming("__posix_memalign_1527", "posix_memalign"); -__static_renaming("__aligned_alloc_1530", "aligned_alloc"); -__static_renaming("__aligned_alloc_1531", "aligned_alloc"); -__static_renaming("__aligned_alloc_1532", "aligned_alloc"); -__static_renaming("__aligned_alloc_1533", "aligned_alloc"); -__static_renaming("__abort_1534", "abort"); -__static_renaming("__atexit_1536", "atexit"); -__static_renaming("__at_quick_exit_1538", "at_quick_exit"); -__static_renaming("__on_exit_1543", "on_exit"); -__static_renaming("__exit_1545", "exit"); -__static_renaming("__exit_1546", "exit"); -__static_renaming("__quick_exit_1548", "quick_exit"); -__static_renaming("___Exit_1550", "_Exit"); -__static_renaming("__getenv_1552", "getenv"); -__static_renaming("__getenv_1553", "getenv"); -__static_renaming("__putenv_1555", "putenv"); -__static_renaming("__setenv_1559", "setenv"); -__static_renaming("__unsetenv_1561", "unsetenv"); -__static_renaming("__clearenv_1562", "clearenv"); -__static_renaming("__mktemp_1564", "mktemp"); -__static_renaming("__mkstemp_1567", "mkstemp"); -__static_renaming("__mkstemp_1568", "mkstemp"); -__static_renaming("__mkstemp_1569", "mkstemp"); -__static_renaming("__mkstemp_1570", "mkstemp"); -__static_renaming("__mkstemps_1575", "mkstemps"); -__static_renaming("__mkstemps_1576", "mkstemps"); -__static_renaming("__mkstemps_1577", "mkstemps"); -__static_renaming("__mkstemps_1578", "mkstemps"); -__static_renaming("__mkdtemp_1580", "mkdtemp"); -__static_renaming("__mkdtemp_1581", "mkdtemp"); -__static_renaming("__system_1583", "system"); -__static_renaming("__system_1584", "system"); -__static_renaming("__system_1585", "system"); -__static_renaming("__system_1586", "system"); -__static_renaming("__realpath_1589", "realpath"); -__static_renaming("__realpath_1590", "realpath"); -__static_renaming("____compar_fn_t_1591", "__compar_fn_t"); -__static_renaming("__bsearch_1599", "bsearch"); -__static_renaming("__bsearch_1601", "bsearch"); -__static_renaming("____l_1608", "__l"); -__static_renaming("____u_1609", "__u"); -__static_renaming("____idx_1610", "__idx"); -__static_renaming("____p_1611", "__p"); -__static_renaming("____comparison_1612", "__comparison"); -__static_renaming("__qsort_1620", "qsort"); -__static_renaming("__qsort_1622", "qsort"); -__static_renaming("__abs_1625", "abs"); -__static_renaming("__abs_1626", "abs"); -__static_renaming("__labs_1628", "labs"); -__static_renaming("__labs_1629", "labs"); -__static_renaming("__llabs_1631", "llabs"); -__static_renaming("__llabs_1632", "llabs"); -__static_renaming("__div_1635", "div"); -__static_renaming("__div_1636", "div"); -__static_renaming("__ldiv_1639", "ldiv"); -__static_renaming("__ldiv_1641", "ldiv"); -__static_renaming("__lldiv_1645", "lldiv"); -__static_renaming("__lldiv_1647", "lldiv"); -__static_renaming("__ecvt_1653", "ecvt"); -__static_renaming("__ecvt_1654", "ecvt"); -__static_renaming("__fcvt_1659", "fcvt"); -__static_renaming("__fcvt_1660", "fcvt"); -__static_renaming("__gcvt_1664", "gcvt"); -__static_renaming("__gcvt_1665", "gcvt"); -__static_renaming("__qecvt_1670", "qecvt"); -__static_renaming("__qecvt_1671", "qecvt"); -__static_renaming("__qfcvt_1676", "qfcvt"); -__static_renaming("__qfcvt_1677", "qfcvt"); -__static_renaming("__qgcvt_1681", "qgcvt"); -__static_renaming("__qgcvt_1682", "qgcvt"); -__static_renaming("__ecvt_r_1689", "ecvt_r"); -__static_renaming("__fcvt_r_1696", "fcvt_r"); -__static_renaming("__qecvt_r_1703", "qecvt_r"); -__static_renaming("__qfcvt_r_1710", "qfcvt_r"); -__static_renaming("__mblen_1713", "mblen"); -__static_renaming("__mblen_1714", "mblen"); -__static_renaming("__mbtowc_1718", "mbtowc"); -__static_renaming("__wctomb_1721", "wctomb"); -__static_renaming("__mbstowcs_1725", "mbstowcs"); -__static_renaming("__wcstombs_1729", "wcstombs"); -__static_renaming("__rpmatch_1731", "rpmatch"); -__static_renaming("__rpmatch_1732", "rpmatch"); -__static_renaming("__getsubopt_1736", "getsubopt"); -__static_renaming("__getsubopt_1737", "getsubopt"); -__static_renaming("__getloadavg_1740", "getloadavg"); -__static_renaming("____realpath_chk_1745", "__realpath_chk"); -__static_renaming("____realpath_alias_1748", "__realpath_alias"); -__static_renaming("____realpath_chk_warn_1752", "__realpath_chk_warn"); -__static_renaming("____ptsname_r_chk_1760", "__ptsname_r_chk"); -__static_renaming("____ptsname_r_alias_1764", "__ptsname_r_alias"); -__static_renaming("____ptsname_r_chk_warn_1769", "__ptsname_r_chk_warn"); -__static_renaming("____wctomb_chk_1777", "__wctomb_chk"); -__static_renaming("____wctomb_alias_1780", "__wctomb_alias"); -__static_renaming("____mbstowcs_chk_1787", "__mbstowcs_chk"); -__static_renaming("____mbstowcs_alias_1791", "__mbstowcs_alias"); -__static_renaming("____mbstowcs_chk_warn_1796", "__mbstowcs_chk_warn"); -__static_renaming("____wcstombs_chk_1804", "__wcstombs_chk"); -__static_renaming("____wcstombs_alias_1808", "__wcstombs_alias"); -__static_renaming("____wcstombs_chk_warn_1813", "__wcstombs_chk_warn"); -__static_renaming("__c_1817", "c"); -__static_renaming("__flags_1818", "flags"); -__static_renaming("__main_1819", "main"); -__static_renaming("__main_1820", "main"); -__static_renaming("__main_1821", "main"); -__static_renaming("__main_1822", "main"); - -__static_condition_renaming("__static_condition_default_74", "(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_118", "(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_161", "(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_162", "(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_165", "(defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_223", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_225", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_226", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_227", "(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_230", "(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_232", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_234", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_235", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_236", "(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_249", "!(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); -__static_condition_renaming("__static_condition_default_254", "!(defined _FILE_OFFSET_BITS) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_256", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_274", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_276", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_278", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_280", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_294", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_296", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_300", "(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_304", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_308", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_310", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_318", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_320", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_326", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_328", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_330", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_332", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_336", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_338", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_343", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_345", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_349", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_351", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_356", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_358", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_370", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_374", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_379", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_381", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_393", "!(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_394", "(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_395", "(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_400", "!(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_421", "!(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_429", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_431", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_433", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_435", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_446", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_448", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_449", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_451", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_453", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_454", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_457", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_459", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_469", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_470", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_471", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_473", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_474", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_475", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_480", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_482", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_494", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_495", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_496", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_497", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_499", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_500", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_501", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_502", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_507", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_508", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_510", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_511", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_517", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_528", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_533", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_538", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_540", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_551", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_556", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_562", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_567", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_573", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_575", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_577", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_579", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_586", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_588", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_595", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_597", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_603", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_605", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_610", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_612", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_624", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_625", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_626", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_627", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_633", "!(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_639", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_640", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_641", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_642", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_648", "!(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_649", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_655", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_657", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_661", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_663", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_672", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_680", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_684", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_686", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_688", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_694", "!(defined _FILE_OFFSET_BITS) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_695", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_696", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_706", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_707", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_708", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_714", "!(defined _FILE_OFFSET_BITS) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_715", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_716", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_718", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_719", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_720", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_727", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_729", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_733", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_735", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_739", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_743", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_745", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_749", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_751", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_760", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_762", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_766", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_768", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_772", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_774", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_778", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_784", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_788", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_790", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_794", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_798", "!(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_801", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_804", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_809", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_813", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_817", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_820", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_833", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_840", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_855", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_864", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_870", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_881", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_882", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_883", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_889", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_893", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_898", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_904", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_905", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_906", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_917", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_924", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_931", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_933", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_935", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_941", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_948", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_953", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_954", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_961", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_962", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_968", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_969", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_976", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_977", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_983", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_984", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_991", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_992", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_998", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_999", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1006", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1007", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1015", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_1016", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1017", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1021", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) || (defined __STRICT_ANSI__)"); -__static_condition_renaming("__static_condition_default_1022", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1031", "!(defined __STRICT_ANSI__)"); -__static_condition_renaming("__static_condition_default_1194", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1201", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1209", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1210", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1214", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1227", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1230", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1234", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1244", "!(defined __STRICT_ANSI__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1384", "!(defined __STRICT_ANSI__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1598", "!(defined _FORTIFY_SOURCE) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1600", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1613", "(defined __USE_EXTERN_INLINES) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1614", "(defined __USE_EXTERN_INLINES) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1621", "!(defined __USE_EXTERN_INLINES) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1623", "(defined __USE_EXTERN_INLINES) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1640", "!(defined _FORTIFY_SOURCE) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1642", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1646", "!(defined _FORTIFY_SOURCE) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1648", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1755", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1823", "!(defined _FORTIFY_SOURCE) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1824", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined OS2) && (defined NEED_ENHANCED_ESCAPES) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined OS2) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined OS2) && (defined NEED_ENHANCED_ESCAPES) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined OS2) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined OS2) && (defined NEED_ENHANCED_ESCAPES) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined OS2) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined OS2) && (defined NEED_ENHANCED_ESCAPES) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined OS2)"); -__static_condition_renaming("__static_condition_default_1825", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined OS2) && !(defined NEED_ENHANCED_ESCAPES) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined OS2) && !(defined NEED_ENHANCED_ESCAPES) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined OS2) && !(defined NEED_ENHANCED_ESCAPES) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined OS2) && !(defined NEED_ENHANCED_ESCAPES)"); -__static_condition_renaming("__static_condition_default_1826", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1827", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined OS2) && (defined NEED_ENHANCED_ESCAPES) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined OS2)"); -__static_condition_renaming("__static_condition_default_1828", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined OS2) && !(defined NEED_ENHANCED_ESCAPES)"); -__static_condition_renaming("__static_condition_default_1829", "!(defined CROSS_COMPILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined)"); -__static_condition_renaming("__static_condition_default_1830", "(defined __STRICT_ANSI__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined OS2) && (defined NEED_ENHANCED_ESCAPES) || (defined __STRICT_ANSI__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined OS2)"); -__static_condition_renaming("__static_condition_default_1831", "!(defined __STRICT_ANSI__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined OS2) && (defined NEED_ENHANCED_ESCAPES) || !(defined __STRICT_ANSI__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined OS2)"); -__static_condition_renaming("__static_condition_default_1832", "(defined __STRICT_ANSI__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined OS2) && !(defined NEED_ENHANCED_ESCAPES)"); -__static_condition_renaming("__static_condition_default_1833", "!(defined __STRICT_ANSI__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined OS2) && !(defined NEED_ENHANCED_ESCAPES)"); -__static_condition_renaming("__static_condition_default_1834", "!(defined CROSS_COMPILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) || !(defined CROSS_COMPILE) && (defined _STDLIB_H) || (defined CROSS_COMPILE)"); -__static_condition_renaming("__static_condition_default_1835", "(defined __STRICT_ANSI__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined OS2) && (defined NEED_ENHANCED_ESCAPES) || (defined __STRICT_ANSI__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined OS2) || (defined __STRICT_ANSI__) && !(defined CROSS_COMPILE) && (defined _STDLIB_H) && !(defined OS2) && (defined NEED_ENHANCED_ESCAPES) || (defined __STRICT_ANSI__) && !(defined CROSS_COMPILE) && (defined _STDLIB_H) && (defined OS2) || (defined __STRICT_ANSI__) && (defined CROSS_COMPILE) && (defined NEED_ENHANCED_ESCAPES)"); -__static_condition_renaming("__static_condition_default_1836", "!(defined __STRICT_ANSI__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined OS2) && (defined NEED_ENHANCED_ESCAPES) || !(defined __STRICT_ANSI__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined OS2) || !(defined __STRICT_ANSI__) && !(defined CROSS_COMPILE) && (defined _STDLIB_H) && !(defined OS2) && (defined NEED_ENHANCED_ESCAPES) || !(defined __STRICT_ANSI__) && !(defined CROSS_COMPILE) && (defined _STDLIB_H) && (defined OS2) || !(defined __STRICT_ANSI__) && (defined CROSS_COMPILE) && (defined NEED_ENHANCED_ESCAPES)"); -__static_condition_renaming("__static_condition_default_1837", "(defined __STRICT_ANSI__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined OS2) && !(defined NEED_ENHANCED_ESCAPES) || (defined __STRICT_ANSI__) && !(defined CROSS_COMPILE) && (defined _STDLIB_H) && !(defined OS2) && !(defined NEED_ENHANCED_ESCAPES) || (defined __STRICT_ANSI__) && (defined CROSS_COMPILE) && !(defined NEED_ENHANCED_ESCAPES)"); -__static_condition_renaming("__static_condition_default_1838", "!(defined __STRICT_ANSI__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined OS2) && !(defined NEED_ENHANCED_ESCAPES) || !(defined __STRICT_ANSI__) && !(defined CROSS_COMPILE) && (defined _STDLIB_H) && !(defined OS2) && !(defined NEED_ENHANCED_ESCAPES) || !(defined __STRICT_ANSI__) && (defined CROSS_COMPILE) && !(defined NEED_ENHANCED_ESCAPES)"); -__static_condition_renaming("__static_condition_default_1839", "!(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); - -if (__static_condition_default_1839) { +__static_renaming("____qaddr_t_54", "__qaddr_t"); +__static_renaming("____caddr_t_55", "__caddr_t"); +__static_renaming("____intptr_t_56", "__intptr_t"); +__static_renaming("____socklen_t_57", "__socklen_t"); +__static_renaming("__FILE_59", "FILE"); +__static_renaming("____FILE_60", "__FILE"); +__static_renaming("____mbstate_t_69", "__mbstate_t"); +__static_renaming("___G_fpos_t_77", "_G_fpos_t"); +__static_renaming("___G_fpos64_t_85", "_G_fpos64_t"); +__static_renaming("____gnuc_va_list_86", "__gnuc_va_list"); +__static_renaming("___IO_lock_t_88", "_IO_lock_t"); +__static_renaming("___IO_FILE_171", "_IO_FILE"); +__static_renaming("___IO_FILE_172", "_IO_FILE"); +__static_renaming("___IO_2_1_stdin__175", "_IO_2_1_stdin_"); +__static_renaming("___IO_2_1_stdout__176", "_IO_2_1_stdout_"); +__static_renaming("___IO_2_1_stderr__177", "_IO_2_1_stderr_"); +__static_renaming("____io_read_fn_181", "__io_read_fn"); +__static_renaming("____io_write_fn_186", "__io_write_fn"); +__static_renaming("____io_seek_fn_192", "__io_seek_fn"); +__static_renaming("____io_close_fn_195", "__io_close_fn"); +__static_renaming("____underflow_196", "__underflow"); +__static_renaming("____underflow_197", "__underflow"); +__static_renaming("____uflow_199", "__uflow"); +__static_renaming("____uflow_200", "__uflow"); +__static_renaming("____overflow_202", "__overflow"); +__static_renaming("____overflow_203", "__overflow"); +__static_renaming("___IO_getc_208", "_IO_getc"); +__static_renaming("___IO_getc_209", "_IO_getc"); +__static_renaming("___IO_putc_215", "_IO_putc"); +__static_renaming("___IO_putc_216", "_IO_putc"); +__static_renaming("___IO_feof_221", "_IO_feof"); +__static_renaming("___IO_feof_222", "_IO_feof"); +__static_renaming("___IO_ferror_227", "_IO_ferror"); +__static_renaming("___IO_ferror_228", "_IO_ferror"); +__static_renaming("___IO_peekc_locked_233", "_IO_peekc_locked"); +__static_renaming("___IO_peekc_locked_234", "_IO_peekc_locked"); +__static_renaming("___IO_flockfile_236", "_IO_flockfile"); +__static_renaming("___IO_flockfile_237", "_IO_flockfile"); +__static_renaming("___IO_funlockfile_239", "_IO_funlockfile"); +__static_renaming("___IO_funlockfile_240", "_IO_funlockfile"); +__static_renaming("___IO_ftrylockfile_242", "_IO_ftrylockfile"); +__static_renaming("___IO_ftrylockfile_243", "_IO_ftrylockfile"); +__static_renaming("___IO_vfscanf_245", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_247", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_251", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_252", "_IO_vfscanf"); +__static_renaming("___IO_vfprintf_254", "_IO_vfprintf"); +__static_renaming("___IO_vfprintf_256", "_IO_vfprintf"); +__static_renaming("___IO_vfprintf_260", "_IO_vfprintf"); +__static_renaming("___IO_padn_261", "_IO_padn"); +__static_renaming("___IO_padn_262", "_IO_padn"); +__static_renaming("___IO_sgetn_265", "_IO_sgetn"); +__static_renaming("___IO_sgetn_266", "_IO_sgetn"); +__static_renaming("___IO_seekoff_268", "_IO_seekoff"); +__static_renaming("___IO_seekoff_269", "_IO_seekoff"); +__static_renaming("___IO_seekpos_272", "_IO_seekpos"); +__static_renaming("___IO_seekpos_273", "_IO_seekpos"); +__static_renaming("___IO_free_backup_area_276", "_IO_free_backup_area"); +__static_renaming("___IO_free_backup_area_277", "_IO_free_backup_area"); +__static_renaming("__va_list_279", "va_list"); +__static_renaming("__off_t_281", "off_t"); +__static_renaming("__off_t_283", "off_t"); +__static_renaming("__ssize_t_285", "ssize_t"); +__static_renaming("__fpos_t_287", "fpos_t"); +__static_renaming("__fpos_t_289", "fpos_t"); +__static_renaming("__stdin_291", "stdin"); +__static_renaming("__stdin_292", "stdin"); +__static_renaming("__stdout_294", "stdout"); +__static_renaming("__stdout_295", "stdout"); +__static_renaming("__stderr_297", "stderr"); +__static_renaming("__stderr_298", "stderr"); +__static_renaming("__remove_301", "remove"); +__static_renaming("__rename_304", "rename"); +__static_renaming("__renameat_309", "renameat"); +__static_renaming("__tmpfile_310", "tmpfile"); +__static_renaming("__tmpfile_312", "tmpfile"); +__static_renaming("__tmpfile_314", "tmpfile"); +__static_renaming("__tmpfile_316", "tmpfile"); +__static_renaming("__tmpnam_319", "tmpnam"); +__static_renaming("__tmpnam_320", "tmpnam"); +__static_renaming("__tmpnam_r_322", "tmpnam_r"); +__static_renaming("__tmpnam_r_323", "tmpnam_r"); +__static_renaming("__tempnam_326", "tempnam"); +__static_renaming("__tempnam_327", "tempnam"); +__static_renaming("__fclose_330", "fclose"); +__static_renaming("__fclose_332", "fclose"); +__static_renaming("__fflush_336", "fflush"); +__static_renaming("__fflush_unlocked_340", "fflush_unlocked"); +__static_renaming("__fopen_344", "fopen"); +__static_renaming("__fopen_346", "fopen"); +__static_renaming("__fopen_354", "fopen"); +__static_renaming("__fopen_356", "fopen"); +__static_renaming("__freopen_362", "freopen"); +__static_renaming("__freopen_364", "freopen"); +__static_renaming("__freopen_366", "freopen"); +__static_renaming("__freopen_368", "freopen"); +__static_renaming("__fdopen_372", "fdopen"); +__static_renaming("__fdopen_374", "fdopen"); +__static_renaming("__fmemopen_379", "fmemopen"); +__static_renaming("__fmemopen_381", "fmemopen"); +__static_renaming("__open_memstream_385", "open_memstream"); +__static_renaming("__open_memstream_387", "open_memstream"); +__static_renaming("__setbuf_392", "setbuf"); +__static_renaming("__setbuf_394", "setbuf"); +__static_renaming("__setvbuf_401", "setvbuf"); +__static_renaming("__setbuffer_407", "setbuffer"); +__static_renaming("__setlinebuf_411", "setlinebuf"); +__static_renaming("__fprintf_416", "fprintf"); +__static_renaming("__fprintf_418", "fprintf"); +__static_renaming("__printf_421", "printf"); +__static_renaming("__sprintf_424", "sprintf"); +__static_renaming("__vfprintf_430", "vfprintf"); +__static_renaming("__vprintf_437", "vprintf"); +__static_renaming("__vsprintf_443", "vsprintf"); +__static_renaming("__snprintf_448", "snprintf"); +__static_renaming("__vsnprintf_454", "vsnprintf"); +__static_renaming("__vdprintf_460", "vdprintf"); +__static_renaming("__dprintf_464", "dprintf"); +__static_renaming("__fscanf_468", "fscanf"); +__static_renaming("__fscanf_470", "fscanf"); +__static_renaming("__fscanf_472", "fscanf"); +__static_renaming("__fscanf_474", "fscanf"); +__static_renaming("__scanf_477", "scanf"); +__static_renaming("__scanf_478", "scanf"); +__static_renaming("__sscanf_481", "sscanf"); +__static_renaming("__vfscanf_509", "vfscanf"); +__static_renaming("__vfscanf_513", "vfscanf"); +__static_renaming("__vscanf_520", "vscanf"); +__static_renaming("__vscanf_522", "vscanf"); +__static_renaming("__vsscanf_528", "vsscanf"); +__static_renaming("__fgetc_563", "fgetc"); +__static_renaming("__getc_567", "getc"); +__static_renaming("__getchar_569", "getchar"); +__static_renaming("__getc_unlocked_572", "getc_unlocked"); +__static_renaming("__getchar_unlocked_574", "getchar_unlocked"); +__static_renaming("__fgetc_unlocked_577", "fgetc_unlocked"); +__static_renaming("__fputc_582", "fputc"); +__static_renaming("__fputc_584", "fputc"); +__static_renaming("__putc_589", "putc"); +__static_renaming("__putchar_592", "putchar"); +__static_renaming("__fputc_unlocked_596", "fputc_unlocked"); +__static_renaming("__putc_unlocked_601", "putc_unlocked"); +__static_renaming("__putchar_unlocked_604", "putchar_unlocked"); +__static_renaming("__getw_607", "getw"); +__static_renaming("__putw_612", "putw"); +__static_renaming("__fgets_618", "fgets"); +__static_renaming("__fgets_620", "fgets"); +__static_renaming("__fgets_622", "fgets"); +__static_renaming("__fgets_624", "fgets"); +__static_renaming("____getdelim_631", "__getdelim"); +__static_renaming("____getdelim_635", "__getdelim"); +__static_renaming("__getdelim_644", "getdelim"); +__static_renaming("__getdelim_648", "getdelim"); +__static_renaming("__getline_656", "getline"); +__static_renaming("__getline_660", "getline"); +__static_renaming("__fputs_667", "fputs"); +__static_renaming("__fputs_669", "fputs"); +__static_renaming("__puts_672", "puts"); +__static_renaming("__ungetc_676", "ungetc"); +__static_renaming("__fseek_714", "fseek"); +__static_renaming("__fseek_716", "fseek"); +__static_renaming("__ftell_720", "ftell"); +__static_renaming("__ftell_722", "ftell"); +__static_renaming("__rewind_726", "rewind"); +__static_renaming("__fseeko_733", "fseeko"); +__static_renaming("__fseeko_744", "fseeko"); +__static_renaming("__ftello_750", "ftello"); +__static_renaming("__ftello_754", "ftello"); +__static_renaming("__ftello_758", "ftello"); +__static_renaming("__fgetpos_766", "fgetpos"); +__static_renaming("__fgetpos_778", "fgetpos"); +__static_renaming("__fsetpos_786", "fsetpos"); +__static_renaming("__fsetpos_790", "fsetpos"); +__static_renaming("__clearerr_796", "clearerr"); +__static_renaming("__feof_800", "feof"); +__static_renaming("__feof_802", "feof"); +__static_renaming("__ferror_806", "ferror"); +__static_renaming("__ferror_808", "ferror"); +__static_renaming("__clearerr_unlocked_812", "clearerr_unlocked"); +__static_renaming("__feof_unlocked_816", "feof_unlocked"); +__static_renaming("__feof_unlocked_818", "feof_unlocked"); +__static_renaming("__ferror_unlocked_822", "ferror_unlocked"); +__static_renaming("__ferror_unlocked_824", "ferror_unlocked"); +__static_renaming("__perror_827", "perror"); +__static_renaming("__perror_828", "perror"); +__static_renaming("__sys_nerr_829", "sys_nerr"); +__static_renaming("__sys_errlist_830", "sys_errlist"); +__static_renaming("__fileno_833", "fileno"); +__static_renaming("__fileno_835", "fileno"); +__static_renaming("__fileno_unlocked_839", "fileno_unlocked"); +__static_renaming("__fileno_unlocked_841", "fileno_unlocked"); +__static_renaming("__popen_845", "popen"); +__static_renaming("__popen_847", "popen"); +__static_renaming("__pclose_851", "pclose"); +__static_renaming("__ctermid_854", "ctermid"); +__static_renaming("__flockfile_857", "flockfile"); +__static_renaming("__ftrylockfile_861", "ftrylockfile"); +__static_renaming("__ftrylockfile_863", "ftrylockfile"); +__static_renaming("__funlockfile_867", "funlockfile"); +__static_renaming("____sprintf_chk_899", "__sprintf_chk"); +__static_renaming("____vsprintf_chk_906", "__vsprintf_chk"); +__static_renaming("____snprintf_chk_920", "__snprintf_chk"); +__static_renaming("____vsnprintf_chk_928", "__vsnprintf_chk"); +__static_renaming("____fprintf_chk_943", "__fprintf_chk"); +__static_renaming("____printf_chk_947", "__printf_chk"); +__static_renaming("____vfprintf_chk_954", "__vfprintf_chk"); +__static_renaming("____vprintf_chk_962", "__vprintf_chk"); +__static_renaming("____dprintf_chk_984", "__dprintf_chk"); +__static_renaming("____vdprintf_chk_990", "__vdprintf_chk"); +__static_renaming("____fgets_chk_1004", "__fgets_chk"); +__static_renaming("____fgets_chk_1006", "__fgets_chk"); +__static_renaming("____fgets_chk_1008", "__fgets_chk"); +__static_renaming("____fgets_alias_1014", "__fgets_alias"); +__static_renaming("____fgets_chk_warn_1021", "__fgets_chk_warn"); +__static_renaming("____cnt_1087", "__cnt"); +__static_renaming("____cptr_1088", "__cptr"); +__static_renaming("__ptrdiff_t_1090", "ptrdiff_t"); +__static_renaming("__size_t_1091", "size_t"); +__static_renaming("__memmove_1105", "memmove"); +__static_renaming("__memmove_1106", "memmove"); +__static_renaming("__memset_1118", "memset"); +__static_renaming("__memset_1119", "memset"); +__static_renaming("__memset_1120", "memset"); +__static_renaming("__memset_1121", "memset"); +__static_renaming("__memcmp_1126", "memcmp"); +__static_renaming("__memcmp_1127", "memcmp"); +__static_renaming("__memchr_1132", "memchr"); +__static_renaming("__memchr_1133", "memchr"); +__static_renaming("__strcpy_1136", "strcpy"); +__static_renaming("__strncpy_1141", "strncpy"); +__static_renaming("__strncpy_1142", "strncpy"); +__static_renaming("__strcat_1145", "strcat"); +__static_renaming("__strncat_1150", "strncat"); +__static_renaming("__strncat_1151", "strncat"); +__static_renaming("__strcmp_1154", "strcmp"); +__static_renaming("__strncmp_1159", "strncmp"); +__static_renaming("__strncmp_1160", "strncmp"); +__static_renaming("__strcoll_1163", "strcoll"); +__static_renaming("__strxfrm_1168", "strxfrm"); +__static_renaming("__strxfrm_1169", "strxfrm"); +__static_renaming("____locale_t_1177", "__locale_t"); +__static_renaming("__locale_t_1178", "locale_t"); +__static_renaming("__strcoll_l_1182", "strcoll_l"); +__static_renaming("__strxfrm_l_1188", "strxfrm_l"); +__static_renaming("__strxfrm_l_1189", "strxfrm_l"); +__static_renaming("__strdup_1191", "strdup"); +__static_renaming("__strndup_1195", "strndup"); +__static_renaming("__strndup_1196", "strndup"); +__static_renaming("__strchr_1199", "strchr"); +__static_renaming("__strrchr_1202", "strrchr"); +__static_renaming("__strcspn_1205", "strcspn"); +__static_renaming("__strcspn_1206", "strcspn"); +__static_renaming("__strspn_1209", "strspn"); +__static_renaming("__strspn_1210", "strspn"); +__static_renaming("__strpbrk_1213", "strpbrk"); +__static_renaming("__strstr_1216", "strstr"); +__static_renaming("__strtok_1219", "strtok"); +__static_renaming("____strtok_r_1223", "__strtok_r"); +__static_renaming("__strtok_r_1227", "strtok_r"); +__static_renaming("__strlen_1229", "strlen"); +__static_renaming("__strlen_1230", "strlen"); +__static_renaming("__strlen_1231", "strlen"); +__static_renaming("__strlen_1232", "strlen"); +__static_renaming("__strnlen_1236", "strnlen"); +__static_renaming("__strnlen_1237", "strnlen"); +__static_renaming("__strerror_1239", "strerror"); +__static_renaming("__strerror_1240", "strerror"); +__static_renaming("__strerror_r_1245", "strerror_r"); +__static_renaming("__strerror_r_1246", "strerror_r"); +__static_renaming("__strerror_l_1249", "strerror_l"); +__static_renaming("____bzero_1253", "__bzero"); +__static_renaming("____bzero_1254", "__bzero"); +__static_renaming("____bzero_1255", "__bzero"); +__static_renaming("____bzero_1256", "__bzero"); +__static_renaming("__bcopy_1261", "bcopy"); +__static_renaming("__bcopy_1262", "bcopy"); +__static_renaming("__bzero_1266", "bzero"); +__static_renaming("__bzero_1267", "bzero"); +__static_renaming("__bcmp_1272", "bcmp"); +__static_renaming("__bcmp_1273", "bcmp"); +__static_renaming("__index_1276", "index"); +__static_renaming("__rindex_1279", "rindex"); +__static_renaming("__ffs_1281", "ffs"); +__static_renaming("__strcasecmp_1284", "strcasecmp"); +__static_renaming("__strncasecmp_1289", "strncasecmp"); +__static_renaming("__strncasecmp_1290", "strncasecmp"); +__static_renaming("__strsep_1293", "strsep"); +__static_renaming("__strsignal_1295", "strsignal"); +__static_renaming("____stpcpy_1298", "__stpcpy"); +__static_renaming("__stpcpy_1301", "stpcpy"); +__static_renaming("____stpncpy_1306", "__stpncpy"); +__static_renaming("____stpncpy_1307", "__stpncpy"); +__static_renaming("__stpncpy_1312", "stpncpy"); +__static_renaming("__stpncpy_1313", "stpncpy"); +__static_renaming("____stpncpy_chk_1355", "__stpncpy_chk"); +__static_renaming("____stpncpy_chk_1356", "__stpncpy_chk"); +__static_renaming("____stpncpy_alias_1361", "__stpncpy_alias"); +__static_renaming("____stpncpy_alias_1362", "__stpncpy_alias"); +__static_renaming("__wchar_t_1378", "wchar_t"); +__static_renaming("__idtype_t_1384", "idtype_t"); +__static_renaming("____u_char_1385", "__u_char"); +__static_renaming("____u_short_1386", "__u_short"); +__static_renaming("____u_int_1387", "__u_int"); +__static_renaming("____u_long_1388", "__u_long"); +__static_renaming("____int8_t_1389", "__int8_t"); +__static_renaming("____uint8_t_1390", "__uint8_t"); +__static_renaming("____int16_t_1391", "__int16_t"); +__static_renaming("____uint16_t_1392", "__uint16_t"); +__static_renaming("____int32_t_1393", "__int32_t"); +__static_renaming("____uint32_t_1394", "__uint32_t"); +__static_renaming("____int64_t_1395", "__int64_t"); +__static_renaming("____uint64_t_1396", "__uint64_t"); +__static_renaming("____quad_t_1397", "__quad_t"); +__static_renaming("____u_quad_t_1398", "__u_quad_t"); +__static_renaming("____dev_t_1399", "__dev_t"); +__static_renaming("____uid_t_1400", "__uid_t"); +__static_renaming("____gid_t_1401", "__gid_t"); +__static_renaming("____ino_t_1402", "__ino_t"); +__static_renaming("____ino64_t_1403", "__ino64_t"); +__static_renaming("____mode_t_1404", "__mode_t"); +__static_renaming("____nlink_t_1405", "__nlink_t"); +__static_renaming("____off_t_1406", "__off_t"); +__static_renaming("____off64_t_1407", "__off64_t"); +__static_renaming("____pid_t_1408", "__pid_t"); +__static_renaming("____fsid_t_1412", "__fsid_t"); +__static_renaming("____clock_t_1413", "__clock_t"); +__static_renaming("____rlim_t_1414", "__rlim_t"); +__static_renaming("____rlim64_t_1415", "__rlim64_t"); +__static_renaming("____id_t_1416", "__id_t"); +__static_renaming("____time_t_1417", "__time_t"); +__static_renaming("____useconds_t_1418", "__useconds_t"); +__static_renaming("____suseconds_t_1419", "__suseconds_t"); +__static_renaming("____daddr_t_1420", "__daddr_t"); +__static_renaming("____key_t_1421", "__key_t"); +__static_renaming("____clockid_t_1422", "__clockid_t"); +__static_renaming("____timer_t_1423", "__timer_t"); +__static_renaming("____blksize_t_1424", "__blksize_t"); +__static_renaming("____blkcnt_t_1425", "__blkcnt_t"); +__static_renaming("____blkcnt64_t_1426", "__blkcnt64_t"); +__static_renaming("____fsblkcnt_t_1427", "__fsblkcnt_t"); +__static_renaming("____fsblkcnt64_t_1428", "__fsblkcnt64_t"); +__static_renaming("____fsfilcnt_t_1429", "__fsfilcnt_t"); +__static_renaming("____fsfilcnt64_t_1430", "__fsfilcnt64_t"); +__static_renaming("____fsword_t_1431", "__fsword_t"); +__static_renaming("____ssize_t_1432", "__ssize_t"); +__static_renaming("____syscall_slong_t_1433", "__syscall_slong_t"); +__static_renaming("____syscall_ulong_t_1434", "__syscall_ulong_t"); +__static_renaming("____loff_t_1435", "__loff_t"); +__static_renaming("____qaddr_t_1437", "__qaddr_t"); +__static_renaming("____caddr_t_1438", "__caddr_t"); +__static_renaming("____intptr_t_1439", "__intptr_t"); +__static_renaming("____socklen_t_1440", "__socklen_t"); +__static_renaming("____bswap_32_1442", "__bswap_32"); +__static_renaming("____bswap_64_1446", "__bswap_64"); +__static_renaming("____bswap_64_1447", "__bswap_64"); +__static_renaming("____WAIT_STATUS_1469", "__WAIT_STATUS"); +__static_renaming("__div_t_1474", "div_t"); +__static_renaming("__ldiv_t_1479", "ldiv_t"); +__static_renaming("__lldiv_t_1484", "lldiv_t"); +__static_renaming("____ctype_get_mb_cur_max_1485", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1486", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1487", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1488", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1489", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1490", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1491", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1492", "__ctype_get_mb_cur_max"); +__static_renaming("__atof_1494", "atof"); +__static_renaming("__atof_1495", "atof"); +__static_renaming("__atoi_1497", "atoi"); +__static_renaming("__atoi_1498", "atoi"); +__static_renaming("__atol_1500", "atol"); +__static_renaming("__atol_1501", "atol"); +__static_renaming("__atoll_1503", "atoll"); +__static_renaming("__atoll_1504", "atoll"); +__static_renaming("__strtod_1507", "strtod"); +__static_renaming("__strtof_1510", "strtof"); +__static_renaming("__strtold_1513", "strtold"); +__static_renaming("__strtol_1517", "strtol"); +__static_renaming("__strtoul_1521", "strtoul"); +__static_renaming("__strtoq_1525", "strtoq"); +__static_renaming("__strtouq_1529", "strtouq"); +__static_renaming("__strtoll_1533", "strtoll"); +__static_renaming("__strtoll_1534", "strtoll"); +__static_renaming("__strtoull_1538", "strtoull"); +__static_renaming("__l64a_1543", "l64a"); +__static_renaming("__l64a_1544", "l64a"); +__static_renaming("__a64l_1546", "a64l"); +__static_renaming("__a64l_1547", "a64l"); +__static_renaming("____u_char_1548", "__u_char"); +__static_renaming("____u_short_1549", "__u_short"); +__static_renaming("____u_int_1550", "__u_int"); +__static_renaming("____u_long_1551", "__u_long"); +__static_renaming("____int8_t_1552", "__int8_t"); +__static_renaming("____uint8_t_1553", "__uint8_t"); +__static_renaming("____int16_t_1554", "__int16_t"); +__static_renaming("____uint16_t_1555", "__uint16_t"); +__static_renaming("____int32_t_1556", "__int32_t"); +__static_renaming("____uint32_t_1557", "__uint32_t"); +__static_renaming("____int64_t_1558", "__int64_t"); +__static_renaming("____uint64_t_1559", "__uint64_t"); +__static_renaming("____quad_t_1560", "__quad_t"); +__static_renaming("____u_quad_t_1561", "__u_quad_t"); +__static_renaming("____dev_t_1562", "__dev_t"); +__static_renaming("____uid_t_1563", "__uid_t"); +__static_renaming("____gid_t_1564", "__gid_t"); +__static_renaming("____ino_t_1565", "__ino_t"); +__static_renaming("____ino64_t_1566", "__ino64_t"); +__static_renaming("____mode_t_1567", "__mode_t"); +__static_renaming("____nlink_t_1568", "__nlink_t"); +__static_renaming("____off_t_1569", "__off_t"); +__static_renaming("____off64_t_1570", "__off64_t"); +__static_renaming("____pid_t_1571", "__pid_t"); +__static_renaming("____fsid_t_1575", "__fsid_t"); +__static_renaming("____clock_t_1576", "__clock_t"); +__static_renaming("____rlim_t_1577", "__rlim_t"); +__static_renaming("____rlim64_t_1578", "__rlim64_t"); +__static_renaming("____id_t_1579", "__id_t"); +__static_renaming("____time_t_1580", "__time_t"); +__static_renaming("____useconds_t_1581", "__useconds_t"); +__static_renaming("____suseconds_t_1582", "__suseconds_t"); +__static_renaming("____daddr_t_1583", "__daddr_t"); +__static_renaming("____key_t_1584", "__key_t"); +__static_renaming("____clockid_t_1585", "__clockid_t"); +__static_renaming("____timer_t_1586", "__timer_t"); +__static_renaming("____blksize_t_1587", "__blksize_t"); +__static_renaming("____blkcnt_t_1588", "__blkcnt_t"); +__static_renaming("____blkcnt64_t_1589", "__blkcnt64_t"); +__static_renaming("____fsblkcnt_t_1590", "__fsblkcnt_t"); +__static_renaming("____fsblkcnt64_t_1591", "__fsblkcnt64_t"); +__static_renaming("____fsfilcnt_t_1592", "__fsfilcnt_t"); +__static_renaming("____fsfilcnt64_t_1593", "__fsfilcnt64_t"); +__static_renaming("____fsword_t_1594", "__fsword_t"); +__static_renaming("____ssize_t_1595", "__ssize_t"); +__static_renaming("____syscall_slong_t_1596", "__syscall_slong_t"); +__static_renaming("____syscall_ulong_t_1597", "__syscall_ulong_t"); +__static_renaming("____loff_t_1598", "__loff_t"); +__static_renaming("____qaddr_t_1600", "__qaddr_t"); +__static_renaming("____caddr_t_1601", "__caddr_t"); +__static_renaming("____intptr_t_1602", "__intptr_t"); +__static_renaming("____socklen_t_1603", "__socklen_t"); +__static_renaming("__u_char_1604", "u_char"); +__static_renaming("__u_char_1605", "u_char"); +__static_renaming("__u_char_1606", "u_char"); +__static_renaming("__u_short_1607", "u_short"); +__static_renaming("__u_short_1608", "u_short"); +__static_renaming("__u_short_1609", "u_short"); +__static_renaming("__u_int_1610", "u_int"); +__static_renaming("__u_int_1611", "u_int"); +__static_renaming("__u_int_1612", "u_int"); +__static_renaming("__u_long_1613", "u_long"); +__static_renaming("__u_long_1614", "u_long"); +__static_renaming("__u_long_1615", "u_long"); +__static_renaming("__quad_t_1616", "quad_t"); +__static_renaming("__quad_t_1617", "quad_t"); +__static_renaming("__quad_t_1618", "quad_t"); +__static_renaming("__u_quad_t_1619", "u_quad_t"); +__static_renaming("__u_quad_t_1620", "u_quad_t"); +__static_renaming("__u_quad_t_1621", "u_quad_t"); +__static_renaming("__fsid_t_1622", "fsid_t"); +__static_renaming("__fsid_t_1623", "fsid_t"); +__static_renaming("__fsid_t_1624", "fsid_t"); +__static_renaming("__loff_t_1626", "loff_t"); +__static_renaming("__loff_t_1627", "loff_t"); +__static_renaming("__loff_t_1628", "loff_t"); +__static_renaming("__loff_t_1630", "loff_t"); +__static_renaming("__loff_t_1631", "loff_t"); +__static_renaming("__loff_t_1632", "loff_t"); +__static_renaming("__ino_t_1634", "ino_t"); +__static_renaming("__ino_t_1635", "ino_t"); +__static_renaming("__ino_t_1636", "ino_t"); +__static_renaming("__ino_t_1638", "ino_t"); +__static_renaming("__ino_t_1639", "ino_t"); +__static_renaming("__ino_t_1640", "ino_t"); +__static_renaming("__dev_t_1642", "dev_t"); +__static_renaming("__dev_t_1643", "dev_t"); +__static_renaming("__dev_t_1644", "dev_t"); +__static_renaming("__gid_t_1646", "gid_t"); +__static_renaming("__gid_t_1647", "gid_t"); +__static_renaming("__gid_t_1648", "gid_t"); +__static_renaming("__gid_t_1650", "gid_t"); +__static_renaming("__gid_t_1651", "gid_t"); +__static_renaming("__gid_t_1652", "gid_t"); +__static_renaming("__mode_t_1654", "mode_t"); +__static_renaming("__mode_t_1655", "mode_t"); +__static_renaming("__mode_t_1656", "mode_t"); +__static_renaming("__nlink_t_1658", "nlink_t"); +__static_renaming("__nlink_t_1659", "nlink_t"); +__static_renaming("__nlink_t_1660", "nlink_t"); +__static_renaming("__uid_t_1662", "uid_t"); +__static_renaming("__uid_t_1663", "uid_t"); +__static_renaming("__uid_t_1664", "uid_t"); +__static_renaming("__uid_t_1666", "uid_t"); +__static_renaming("__uid_t_1667", "uid_t"); +__static_renaming("__uid_t_1668", "uid_t"); +__static_renaming("__off_t_1670", "off_t"); +__static_renaming("__off_t_1671", "off_t"); +__static_renaming("__off_t_1673", "off_t"); +__static_renaming("__off_t_1674", "off_t"); +__static_renaming("__pid_t_1676", "pid_t"); +__static_renaming("__pid_t_1677", "pid_t"); +__static_renaming("__pid_t_1678", "pid_t"); +__static_renaming("__pid_t_1680", "pid_t"); +__static_renaming("__pid_t_1681", "pid_t"); +__static_renaming("__id_t_1683", "id_t"); +__static_renaming("__id_t_1684", "id_t"); +__static_renaming("__id_t_1685", "id_t"); +__static_renaming("__ssize_t_1687", "ssize_t"); +__static_renaming("__ssize_t_1688", "ssize_t"); +__static_renaming("__daddr_t_1690", "daddr_t"); +__static_renaming("__daddr_t_1691", "daddr_t"); +__static_renaming("__daddr_t_1692", "daddr_t"); +__static_renaming("__caddr_t_1694", "caddr_t"); +__static_renaming("__caddr_t_1695", "caddr_t"); +__static_renaming("__caddr_t_1696", "caddr_t"); +__static_renaming("__key_t_1697", "key_t"); +__static_renaming("__key_t_1698", "key_t"); +__static_renaming("__key_t_1699", "key_t"); +__static_renaming("__key_t_1701", "key_t"); +__static_renaming("__key_t_1702", "key_t"); +__static_renaming("__key_t_1703", "key_t"); +__static_renaming("__clock_t_1705", "clock_t"); +__static_renaming("__clock_t_1706", "clock_t"); +__static_renaming("__clock_t_1707", "clock_t"); +__static_renaming("__time_t_1709", "time_t"); +__static_renaming("__time_t_1710", "time_t"); +__static_renaming("__time_t_1711", "time_t"); +__static_renaming("__clockid_t_1713", "clockid_t"); +__static_renaming("__clockid_t_1714", "clockid_t"); +__static_renaming("__clockid_t_1715", "clockid_t"); +__static_renaming("__timer_t_1717", "timer_t"); +__static_renaming("__timer_t_1718", "timer_t"); +__static_renaming("__timer_t_1719", "timer_t"); +__static_renaming("__ulong_1721", "ulong"); +__static_renaming("__ulong_1722", "ulong"); +__static_renaming("__ulong_1723", "ulong"); +__static_renaming("__ushort_1724", "ushort"); +__static_renaming("__uint_1725", "uint"); +__static_renaming("__int8_t_1726", "int8_t"); +__static_renaming("__int16_t_1727", "int16_t"); +__static_renaming("__int32_t_1728", "int32_t"); +__static_renaming("__int64_t_1729", "int64_t"); +__static_renaming("__u_int8_t_1730", "u_int8_t"); +__static_renaming("__u_int16_t_1731", "u_int16_t"); +__static_renaming("__u_int32_t_1732", "u_int32_t"); +__static_renaming("__u_int64_t_1733", "u_int64_t"); +__static_renaming("__register_t_1734", "register_t"); +__static_renaming("____bswap_32_1736", "__bswap_32"); +__static_renaming("____bswap_64_1740", "__bswap_64"); +__static_renaming("____bswap_64_1741", "__bswap_64"); +__static_renaming("____sig_atomic_t_1744", "__sig_atomic_t"); +__static_renaming("____sigset_t_1748", "__sigset_t"); +__static_renaming("__sigset_t_1749", "sigset_t"); +__static_renaming("__suseconds_t_1770", "suseconds_t"); +__static_renaming("__suseconds_t_1771", "suseconds_t"); +__static_renaming("__suseconds_t_1772", "suseconds_t"); +__static_renaming("____fd_mask_1774", "__fd_mask"); +__static_renaming("____fd_mask_1775", "__fd_mask"); +__static_renaming("__fd_set_1783", "fd_set"); +__static_renaming("__fd_mask_1784", "fd_mask"); +__static_renaming("__fd_mask_1785", "fd_mask"); +__static_renaming("__select_1797", "select"); +__static_renaming("__select_1798", "select"); +__static_renaming("__pselect_1813", "pselect"); +__static_renaming("__pselect_1814", "pselect"); +__static_renaming("____fdelt_chk_1818", "__fdelt_chk"); +__static_renaming("____fdelt_warn_1820", "__fdelt_warn"); +__static_renaming("__gnu_dev_major_1822", "gnu_dev_major"); +__static_renaming("__gnu_dev_major_1823", "gnu_dev_major"); +__static_renaming("__gnu_dev_minor_1825", "gnu_dev_minor"); +__static_renaming("__gnu_dev_makedev_1828", "gnu_dev_makedev"); +__static_renaming("__blksize_t_1833", "blksize_t"); +__static_renaming("__blksize_t_1834", "blksize_t"); +__static_renaming("__blksize_t_1835", "blksize_t"); +__static_renaming("__blkcnt_t_1837", "blkcnt_t"); +__static_renaming("__blkcnt_t_1838", "blkcnt_t"); +__static_renaming("__blkcnt_t_1839", "blkcnt_t"); +__static_renaming("__fsblkcnt_t_1841", "fsblkcnt_t"); +__static_renaming("__fsblkcnt_t_1842", "fsblkcnt_t"); +__static_renaming("__fsblkcnt_t_1843", "fsblkcnt_t"); +__static_renaming("__blkcnt_t_1845", "blkcnt_t"); +__static_renaming("__blkcnt_t_1846", "blkcnt_t"); +__static_renaming("__blkcnt_t_1847", "blkcnt_t"); +__static_renaming("__fsblkcnt_t_1849", "fsblkcnt_t"); +__static_renaming("__fsblkcnt_t_1850", "fsblkcnt_t"); +__static_renaming("__fsblkcnt_t_1851", "fsblkcnt_t"); +__static_renaming("__fsfilcnt_t_1853", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_1854", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_1855", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_1857", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_1858", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_1859", "fsfilcnt_t"); +__static_renaming("__pthread_t_1861", "pthread_t"); +__static_renaming("__pthread_attr_t_1865", "pthread_attr_t"); +__static_renaming("____pthread_list_t_1870", "__pthread_list_t"); +__static_renaming("____pthread_list_t_1871", "__pthread_list_t"); +__static_renaming("__pthread_mutex_t_1887", "pthread_mutex_t"); +__static_renaming("__pthread_mutexattr_t_1892", "pthread_mutexattr_t"); +__static_renaming("__rand_1893", "rand"); +__static_renaming("__srand_1895", "srand"); +__static_renaming("__rand_r_1897", "rand_r"); +__static_renaming("__drand48_1898", "drand48"); +__static_renaming("__erand48_1900", "erand48"); +__static_renaming("__lrand48_1901", "lrand48"); +__static_renaming("__nrand48_1903", "nrand48"); +__static_renaming("__mrand48_1904", "mrand48"); +__static_renaming("__jrand48_1906", "jrand48"); +__static_renaming("__srand48_1908", "srand48"); +__static_renaming("__seed48_1910", "seed48"); +__static_renaming("__lcong48_1912", "lcong48"); +__static_renaming("__malloc_1915", "malloc"); +__static_renaming("__malloc_1916", "malloc"); +__static_renaming("__malloc_1917", "malloc"); +__static_renaming("__malloc_1918", "malloc"); +__static_renaming("__calloc_1923", "calloc"); +__static_renaming("__calloc_1924", "calloc"); +__static_renaming("__calloc_1925", "calloc"); +__static_renaming("__calloc_1926", "calloc"); +__static_renaming("__realloc_1930", "realloc"); +__static_renaming("__realloc_1931", "realloc"); +__static_renaming("__realloc_1932", "realloc"); +__static_renaming("__realloc_1933", "realloc"); +__static_renaming("__free_1935", "free"); +__static_renaming("__cfree_1937", "cfree"); +__static_renaming("__alloca_1940", "alloca"); +__static_renaming("__alloca_1941", "alloca"); +__static_renaming("__valloc_1944", "valloc"); +__static_renaming("__valloc_1945", "valloc"); +__static_renaming("__valloc_1946", "valloc"); +__static_renaming("__valloc_1947", "valloc"); +__static_renaming("__posix_memalign_1953", "posix_memalign"); +__static_renaming("__posix_memalign_1954", "posix_memalign"); +__static_renaming("__posix_memalign_1955", "posix_memalign"); +__static_renaming("__posix_memalign_1956", "posix_memalign"); +__static_renaming("__aligned_alloc_1961", "aligned_alloc"); +__static_renaming("__aligned_alloc_1962", "aligned_alloc"); +__static_renaming("__aligned_alloc_1963", "aligned_alloc"); +__static_renaming("__aligned_alloc_1964", "aligned_alloc"); +__static_renaming("__aligned_alloc_1965", "aligned_alloc"); +__static_renaming("__aligned_alloc_1966", "aligned_alloc"); +__static_renaming("__aligned_alloc_1967", "aligned_alloc"); +__static_renaming("__aligned_alloc_1968", "aligned_alloc"); +__static_renaming("__abort_1969", "abort"); +__static_renaming("__atexit_1971", "atexit"); +__static_renaming("__at_quick_exit_1973", "at_quick_exit"); +__static_renaming("__on_exit_1978", "on_exit"); +__static_renaming("__exit_1980", "exit"); +__static_renaming("__exit_1981", "exit"); +__static_renaming("__quick_exit_1983", "quick_exit"); +__static_renaming("___Exit_1985", "_Exit"); +__static_renaming("__getenv_1987", "getenv"); +__static_renaming("__getenv_1988", "getenv"); +__static_renaming("__putenv_1990", "putenv"); +__static_renaming("__setenv_1994", "setenv"); +__static_renaming("__unsetenv_1996", "unsetenv"); +__static_renaming("__clearenv_1997", "clearenv"); +__static_renaming("__mktemp_1999", "mktemp"); +__static_renaming("__mkstemp_2002", "mkstemp"); +__static_renaming("__mkstemp_2003", "mkstemp"); +__static_renaming("__mkstemp_2004", "mkstemp"); +__static_renaming("__mkstemp_2005", "mkstemp"); +__static_renaming("__mkstemps_2010", "mkstemps"); +__static_renaming("__mkstemps_2011", "mkstemps"); +__static_renaming("__mkstemps_2012", "mkstemps"); +__static_renaming("__mkstemps_2013", "mkstemps"); +__static_renaming("__mkdtemp_2015", "mkdtemp"); +__static_renaming("__mkdtemp_2016", "mkdtemp"); +__static_renaming("__system_2018", "system"); +__static_renaming("__system_2019", "system"); +__static_renaming("__system_2020", "system"); +__static_renaming("__system_2021", "system"); +__static_renaming("__realpath_2024", "realpath"); +__static_renaming("__realpath_2025", "realpath"); +__static_renaming("____compar_fn_t_2026", "__compar_fn_t"); +__static_renaming("__bsearch_2037", "bsearch"); +__static_renaming("__bsearch_2038", "bsearch"); +__static_renaming("__bsearch_2041", "bsearch"); +__static_renaming("__bsearch_2042", "bsearch"); +__static_renaming("____l_2051", "__l"); +__static_renaming("____l_2052", "__l"); +__static_renaming("____u_2053", "__u"); +__static_renaming("____u_2054", "__u"); +__static_renaming("____idx_2055", "__idx"); +__static_renaming("____idx_2056", "__idx"); +__static_renaming("____p_2057", "__p"); +__static_renaming("____comparison_2058", "__comparison"); +__static_renaming("__qsort_2070", "qsort"); +__static_renaming("__qsort_2072", "qsort"); +__static_renaming("__qsort_2074", "qsort"); +__static_renaming("__qsort_2076", "qsort"); +__static_renaming("__abs_2079", "abs"); +__static_renaming("__abs_2080", "abs"); +__static_renaming("__labs_2082", "labs"); +__static_renaming("__labs_2083", "labs"); +__static_renaming("__llabs_2085", "llabs"); +__static_renaming("__llabs_2086", "llabs"); +__static_renaming("__div_2089", "div"); +__static_renaming("__div_2090", "div"); +__static_renaming("__ldiv_2093", "ldiv"); +__static_renaming("__ldiv_2095", "ldiv"); +__static_renaming("__lldiv_2099", "lldiv"); +__static_renaming("__lldiv_2101", "lldiv"); +__static_renaming("__ecvt_2107", "ecvt"); +__static_renaming("__ecvt_2108", "ecvt"); +__static_renaming("__fcvt_2113", "fcvt"); +__static_renaming("__fcvt_2114", "fcvt"); +__static_renaming("__gcvt_2118", "gcvt"); +__static_renaming("__gcvt_2119", "gcvt"); +__static_renaming("__qecvt_2124", "qecvt"); +__static_renaming("__qecvt_2125", "qecvt"); +__static_renaming("__qfcvt_2130", "qfcvt"); +__static_renaming("__qfcvt_2131", "qfcvt"); +__static_renaming("__qgcvt_2135", "qgcvt"); +__static_renaming("__qgcvt_2136", "qgcvt"); +__static_renaming("__ecvt_r_2144", "ecvt_r"); +__static_renaming("__ecvt_r_2145", "ecvt_r"); +__static_renaming("__fcvt_r_2153", "fcvt_r"); +__static_renaming("__fcvt_r_2154", "fcvt_r"); +__static_renaming("__qecvt_r_2162", "qecvt_r"); +__static_renaming("__qecvt_r_2163", "qecvt_r"); +__static_renaming("__qfcvt_r_2171", "qfcvt_r"); +__static_renaming("__qfcvt_r_2172", "qfcvt_r"); +__static_renaming("__mblen_2176", "mblen"); +__static_renaming("__mblen_2177", "mblen"); +__static_renaming("__mblen_2178", "mblen"); +__static_renaming("__mblen_2179", "mblen"); +__static_renaming("__mbtowc_2184", "mbtowc"); +__static_renaming("__mbtowc_2185", "mbtowc"); +__static_renaming("__wctomb_2188", "wctomb"); +__static_renaming("__mbstowcs_2193", "mbstowcs"); +__static_renaming("__mbstowcs_2194", "mbstowcs"); +__static_renaming("__wcstombs_2199", "wcstombs"); +__static_renaming("__wcstombs_2200", "wcstombs"); +__static_renaming("__rpmatch_2202", "rpmatch"); +__static_renaming("__rpmatch_2203", "rpmatch"); +__static_renaming("__getsubopt_2207", "getsubopt"); +__static_renaming("__getsubopt_2208", "getsubopt"); +__static_renaming("__getloadavg_2211", "getloadavg"); +__static_renaming("____realpath_chk_2217", "__realpath_chk"); +__static_renaming("____realpath_chk_2218", "__realpath_chk"); +__static_renaming("____realpath_alias_2221", "__realpath_alias"); +__static_renaming("____realpath_chk_warn_2226", "__realpath_chk_warn"); +__static_renaming("____realpath_chk_warn_2227", "__realpath_chk_warn"); +__static_renaming("____ptsname_r_chk_2237", "__ptsname_r_chk"); +__static_renaming("____ptsname_r_chk_2238", "__ptsname_r_chk"); +__static_renaming("____ptsname_r_alias_2243", "__ptsname_r_alias"); +__static_renaming("____ptsname_r_alias_2244", "__ptsname_r_alias"); +__static_renaming("____ptsname_r_chk_warn_2251", "__ptsname_r_chk_warn"); +__static_renaming("____ptsname_r_chk_warn_2252", "__ptsname_r_chk_warn"); +__static_renaming("____wctomb_chk_2263", "__wctomb_chk"); +__static_renaming("____wctomb_chk_2264", "__wctomb_chk"); +__static_renaming("____wctomb_alias_2267", "__wctomb_alias"); +__static_renaming("____mbstowcs_chk_2276", "__mbstowcs_chk"); +__static_renaming("____mbstowcs_chk_2277", "__mbstowcs_chk"); +__static_renaming("____mbstowcs_alias_2282", "__mbstowcs_alias"); +__static_renaming("____mbstowcs_alias_2283", "__mbstowcs_alias"); +__static_renaming("____mbstowcs_chk_warn_2290", "__mbstowcs_chk_warn"); +__static_renaming("____mbstowcs_chk_warn_2291", "__mbstowcs_chk_warn"); +__static_renaming("____wcstombs_chk_2302", "__wcstombs_chk"); +__static_renaming("____wcstombs_chk_2303", "__wcstombs_chk"); +__static_renaming("____wcstombs_alias_2308", "__wcstombs_alias"); +__static_renaming("____wcstombs_alias_2309", "__wcstombs_alias"); +__static_renaming("____wcstombs_chk_warn_2316", "__wcstombs_chk_warn"); +__static_renaming("____wcstombs_chk_warn_2317", "__wcstombs_chk_warn"); +__static_renaming("__c_2322", "c"); +__static_renaming("__flags_2323", "flags"); +__static_renaming("__main_2324", "main"); +__static_renaming("__main_2325", "main"); +__static_renaming("__main_2326", "main"); +__static_renaming("__main_2327", "main"); + +__static_condition_renaming("__static_condition_default_53", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_76", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_84", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_123", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_169", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_170", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_173", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_182", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_187", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_193", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_198", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_201", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_204", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_210", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_217", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_223", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_229", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_235", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_238", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_241", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_244", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_246", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_248", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_249", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_250", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_253", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_255", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_257", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_258", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_259", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_263", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_264", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_267", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_270", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_271", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_274", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_275", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_278", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_280", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); +__static_condition_renaming("__static_condition_default_282", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_284", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_286", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_288", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_290", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_293", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_296", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_299", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_311", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_313", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_315", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_317", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_331", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_333", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_337", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_341", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_345", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_347", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_355", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_357", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_363", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_365", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_367", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_369", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_373", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_375", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_380", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_382", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_386", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_388", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_393", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_395", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_402", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_408", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_412", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_417", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_419", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_431", "!(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_432", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_433", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_438", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_444", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_455", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_461", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_469", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_471", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_473", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_475", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_486", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_488", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_489", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_491", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_493", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_494", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_497", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_499", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_503", "!(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_510", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_511", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_512", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_514", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_515", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_516", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_521", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_523", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_529", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_536", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_537", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_538", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_539", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_541", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_542", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_543", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_544", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_549", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_550", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_552", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_553", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_559", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_560", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_564", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_568", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_573", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_578", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_583", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_585", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_590", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_597", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_602", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_608", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_613", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_619", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_621", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_623", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_625", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_632", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_633", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_634", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_636", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_637", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_638", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_645", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_646", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_647", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_649", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_650", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_651", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_657", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_658", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_659", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_661", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_662", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_663", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_668", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_670", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_677", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_683", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_684", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_685", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_686", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_692", "!(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_693", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_699", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_700", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_701", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_702", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_708", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_709", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_715", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_717", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_721", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_723", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_727", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_734", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_735", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_736", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_745", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_746", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_747", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_751", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_752", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_753", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_755", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_756", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_757", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_759", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_760", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_761", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_767", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_768", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_769", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_779", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_780", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_781", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_787", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_788", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_789", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_791", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_792", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_793", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_797", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_801", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_803", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_807", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_809", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_813", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_817", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_819", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_823", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_825", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_834", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_836", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_840", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_842", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_846", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_848", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_852", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_858", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_862", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_864", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_868", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_872", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_875", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_878", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_883", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_887", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_891", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_894", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_907", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_914", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_929", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_938", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_944", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_955", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_956", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_957", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_963", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_967", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_972", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_978", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_979", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_980", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_991", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_998", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1005", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1007", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1009", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1015", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1022", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1027", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1028", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1035", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1036", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1042", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1043", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1050", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1051", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1057", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1058", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1065", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1066", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1072", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1073", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1080", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1081", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1089", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_1092", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1093", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1098", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) || !(defined __need___FILE) && (defined __STRICT_ANSI__)"); +__static_condition_renaming("__static_condition_default_1099", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1100", "(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_1112", "!(defined __need___FILE) && !(defined __STRICT_ANSI__)"); +__static_condition_renaming("__static_condition_default_1113", "(defined __need___FILE) && !(defined __STRICT_ANSI__)"); +__static_condition_renaming("__static_condition_default_1318", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1319", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1324", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1325", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1330", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1331", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1341", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1342", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1347", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1348", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1367", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1368", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1371", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1376", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1377", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1436", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1443", "!(defined __STRICT_ANSI__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1448", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1449", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1599", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1625", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __u_char_defined)"); +__static_condition_renaming("__static_condition_default_1629", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __u_char_defined)"); +__static_condition_renaming("__static_condition_default_1633", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __u_char_defined)"); +__static_condition_renaming("__static_condition_default_1637", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined)"); +__static_condition_renaming("__static_condition_default_1641", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined)"); +__static_condition_renaming("__static_condition_default_1645", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_1649", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_1653", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_1657", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1661", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __nlink_t_defined)"); +__static_condition_renaming("__static_condition_default_1665", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __nlink_t_defined)"); +__static_condition_renaming("__static_condition_default_1669", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __nlink_t_defined)"); +__static_condition_renaming("__static_condition_default_1672", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1675", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1679", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && (defined __off_t_defined) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1682", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1686", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __id_t_defined)"); +__static_condition_renaming("__static_condition_default_1689", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1693", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_1700", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_1704", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_1708", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __clock_t_defined)"); +__static_condition_renaming("__static_condition_default_1712", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __time_t_defined)"); +__static_condition_renaming("__static_condition_default_1716", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __clockid_t_defined)"); +__static_condition_renaming("__static_condition_default_1720", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timer_t_defined)"); +__static_condition_renaming("__static_condition_default_1737", "!(defined __STRICT_ANSI__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1742", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1743", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1759", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_1769", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_1773", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __suseconds_t_defined)"); +__static_condition_renaming("__static_condition_default_1782", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1799", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_1800", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_1815", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_1816", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_1836", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blksize_t_defined)"); +__static_condition_renaming("__static_condition_default_1840", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined)"); +__static_condition_renaming("__static_condition_default_1844", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1848", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined)"); +__static_condition_renaming("__static_condition_default_1852", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1856", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1860", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_2035", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_2036", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_2039", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_2040", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_2059", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_2060", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_2061", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_2062", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_2071", "!(defined __need___FILE) && !(defined __USE_EXTERN_INLINES) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_2073", "(defined __need___FILE) && !(defined __USE_EXTERN_INLINES) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_2075", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_2077", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_2094", "!(defined _FORTIFY_SOURCE) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_2096", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_2100", "!(defined _FORTIFY_SOURCE) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_2102", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_2230", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_2328", "!(defined _FORTIFY_SOURCE) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_2329", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_2330", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_2331", "!(defined _FORTIFY_SOURCE) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined OS2) && (defined NEED_ENHANCED_ESCAPES) || !(defined _FORTIFY_SOURCE) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined OS2) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined OS2) && (defined NEED_ENHANCED_ESCAPES) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined OS2) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined OS2) && (defined NEED_ENHANCED_ESCAPES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined OS2) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined OS2) && (defined NEED_ENHANCED_ESCAPES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined OS2)"); +__static_condition_renaming("__static_condition_default_2332", "!(defined _FORTIFY_SOURCE) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined OS2) && !(defined NEED_ENHANCED_ESCAPES) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined OS2) && !(defined NEED_ENHANCED_ESCAPES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined OS2) && !(defined NEED_ENHANCED_ESCAPES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined OS2) && !(defined NEED_ENHANCED_ESCAPES)"); +__static_condition_renaming("__static_condition_default_2333", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_2334", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_2335", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_2336", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined OS2) && (defined NEED_ENHANCED_ESCAPES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined OS2)"); +__static_condition_renaming("__static_condition_default_2337", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined OS2) && !(defined NEED_ENHANCED_ESCAPES)"); +__static_condition_renaming("__static_condition_default_2338", "!(defined CROSS_COMPILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined)"); +__static_condition_renaming("__static_condition_default_2339", "!(defined __need___FILE) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined)"); +__static_condition_renaming("__static_condition_default_2340", "(defined __need___FILE) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined)"); +__static_condition_renaming("__static_condition_default_2341", "!(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined OS2) && (defined NEED_ENHANCED_ESCAPES) || !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined OS2)"); +__static_condition_renaming("__static_condition_default_2342", "!(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined OS2) && !(defined NEED_ENHANCED_ESCAPES)"); +__static_condition_renaming("__static_condition_default_2343", "!(defined CROSS_COMPILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) || !(defined CROSS_COMPILE) && (defined _STDLIB_H) || (defined CROSS_COMPILE)"); +__static_condition_renaming("__static_condition_default_2344", "!(defined __need___FILE) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) || !(defined __need___FILE) && !(defined CROSS_COMPILE) && (defined _STDLIB_H) || !(defined __need___FILE) && (defined CROSS_COMPILE)"); +__static_condition_renaming("__static_condition_default_2345", "(defined __need___FILE) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) || (defined __need___FILE) && !(defined CROSS_COMPILE) && (defined _STDLIB_H) || (defined __need___FILE) && (defined CROSS_COMPILE)"); +__static_condition_renaming("__static_condition_default_2346", "!(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined OS2) && (defined NEED_ENHANCED_ESCAPES) || !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined OS2) || !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && !(defined CROSS_COMPILE) && (defined _STDLIB_H) && !(defined OS2) && (defined NEED_ENHANCED_ESCAPES) || !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && !(defined CROSS_COMPILE) && (defined _STDLIB_H) && (defined OS2) || !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined CROSS_COMPILE) && (defined NEED_ENHANCED_ESCAPES)"); +__static_condition_renaming("__static_condition_default_2347", "!(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined OS2) && !(defined NEED_ENHANCED_ESCAPES) || !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && !(defined CROSS_COMPILE) && (defined _STDLIB_H) && !(defined OS2) && !(defined NEED_ENHANCED_ESCAPES) || !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined CROSS_COMPILE) && !(defined NEED_ENHANCED_ESCAPES)"); +__static_condition_renaming("__static_condition_default_2348", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && !(defined CROSS_COMPILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO)"); + +if (__static_condition_default_2348) { __static_parse_error("Unable to parse"); } }; @@ -1108,311 +1633,512 @@ typedef long int ____ssize_t_49;// L110:L172 typedef long int ____syscall_slong_t_50;// L93:L175 typedef unsigned long int ____syscall_ulong_t_51;// L94:L177 typedef ____off64_t_24 ____loff_t_52;// L181 -typedef ____quad_t_14 * (____qaddr_t_53);// L182 -typedef char * (____caddr_t_54);// L183 -typedef long int ____intptr_t_55;// L110:L186 -typedef unsigned int ____socklen_t_56;// L92:L189 -typedef struct __forward_tag_reference_57 __FILE_58;// L48 -typedef struct __forward_tag_reference_57 ____FILE_59;// L64 -union ____anonymous_tag_60_61 { -unsigned int ____wch_62;// L265 -char ____wchb_63[4];// L92 +typedef ____quad_t_14 * (____qaddr_t_54);// L182 +typedef char * (____caddr_t_55);// L183 +typedef long int ____intptr_t_56;// L110:L186 +typedef unsigned int ____socklen_t_57;// L92:L189 +typedef struct __forward_tag_reference_58 __FILE_59;// L48 +typedef struct __forward_tag_reference_58 ____FILE_60;// L64 +union ____anonymous_tag_61_62 { +unsigned int ____wch_63;// L265 +char ____wchb_64[4];// L92 }; -struct ____anonymous_tag_64_65 { -int ____count_66;// L84 -union ____anonymous_tag_60_61 ____value_67;// L85 +struct ____anonymous_tag_65_66 { +int ____count_67;// L84 +union ____anonymous_tag_61_62 ____value_68;// L85 }; -typedef struct ____anonymous_tag_64_65 ____mbstate_t_68;// L82:L94 -struct ____anonymous_tag_69_70 { -____off_t_23 ____pos_71;// L0 -____mbstate_t_68 ____state_72;// L0 +typedef struct ____anonymous_tag_65_66 ____mbstate_t_69;// L82:L94 +struct ____anonymous_tag_70_71 { +____off_t_23 ____pos_72;// L0 +____mbstate_t_69 ____state_74;// L0 }; -typedef struct ____anonymous_tag_69_70 ___G_fpos_t_75;// L21:L25 -struct ____anonymous_tag_76_77 { -____off64_t_24 ____pos_78;// L0 -____mbstate_t_68 ____state_79;// L0 +typedef struct ____anonymous_tag_70_71 ___G_fpos_t_77;// L21:L25 +struct ____anonymous_tag_78_79 { +____off64_t_24 ____pos_80;// L0 +____mbstate_t_69 ____state_82;// L0 }; -typedef struct ____anonymous_tag_76_77 ___G_fpos64_t_81;// L26:L30 -typedef __builtin_va_list ____gnuc_va_list_82;// L40 -typedef void ___IO_lock_t_84;// L150 -struct ___IO_marker_86 { -struct __forward_tag_reference_85 * (___next_87);// L0 -struct __forward_tag_reference_57 * (___sbuf_88);// L0 -int ___pos_89;// L162 +typedef struct ____anonymous_tag_78_79 ___G_fpos64_t_85;// L26:L30 +typedef __builtin_va_list ____gnuc_va_list_86;// L40 +typedef void ___IO_lock_t_88;// L150 +struct ___IO_marker_90 { +struct __forward_tag_reference_89 * (___next_91);// L0 +struct __forward_tag_reference_58 * (___sbuf_92);// L0 +int ___pos_93;// L162 }; -enum ____codecvt_result_94 { -____codecvt_ok_90, -____codecvt_partial_91, -____codecvt_error_92, -____codecvt_noconv_93, +enum ____codecvt_result_98 { +____codecvt_ok_94, +____codecvt_partial_95, +____codecvt_error_96, +____codecvt_noconv_97, }; -struct ___IO_FILE_95 { -int ___flags_96;// L242 -char * (___IO_read_ptr_97);// L247 -char * (___IO_read_end_98);// L248 -char * (___IO_read_base_99);// L249 -char * (___IO_write_base_100);// L250 -char * (___IO_write_ptr_101);// L251 -char * (___IO_write_end_102);// L252 -char * (___IO_buf_base_103);// L253 -char * (___IO_buf_end_104);// L254 -char * (___IO_save_base_105);// L256 -char * (___IO_backup_base_106);// L257 -char * (___IO_save_end_107);// L258 -struct ___IO_marker_86 * (___markers_108);// L260 -struct __forward_tag_reference_57 * (___chain_109);// L0 -int ___fileno_110;// L264 -int ___flags2_111;// L268 -____off_t_23 ___old_offset_112;// L0 -unsigned short ___cur_column_113;// L274 -signed char ___vtable_offset_114;// L275 -char ___shortbuf_115[1];// L276 -___IO_lock_t_84 * (___lock_116);// L0 +struct ___IO_FILE_99 { +int ___flags_100;// L242 +char * (___IO_read_ptr_101);// L247 +char * (___IO_read_end_102);// L248 +char * (___IO_read_base_103);// L249 +char * (___IO_write_base_104);// L250 +char * (___IO_write_ptr_105);// L251 +char * (___IO_write_end_106);// L252 +char * (___IO_buf_base_107);// L253 +char * (___IO_buf_end_108);// L254 +char * (___IO_save_base_109);// L256 +char * (___IO_backup_base_110);// L257 +char * (___IO_save_end_111);// L258 +struct ___IO_marker_90 * (___markers_112);// L260 +struct __forward_tag_reference_58 * (___chain_113);// L0 +int ___fileno_114;// L264 +int ___flags2_115;// L268 +____off_t_23 ___old_offset_116;// L0 +unsigned short ___cur_column_118;// L274 +signed char ___vtable_offset_119;// L275 +char ___shortbuf_120[1];// L276 +___IO_lock_t_88 * (___lock_121);// L0 }; -struct ___IO_FILE_119 { -int ___flags_120;// L242 -char * (___IO_read_ptr_121);// L247 -char * (___IO_read_end_122);// L248 -char * (___IO_read_base_123);// L249 -char * (___IO_write_base_124);// L250 -char * (___IO_write_ptr_125);// L251 -char * (___IO_write_end_126);// L252 -char * (___IO_buf_base_127);// L253 -char * (___IO_buf_end_128);// L254 -char * (___IO_save_base_129);// L256 -char * (___IO_backup_base_130);// L257 -char * (___IO_save_end_131);// L258 -struct ___IO_marker_86 * (___markers_132);// L260 -struct __forward_tag_reference_57 * (___chain_133);// L0 -int ___fileno_134;// L264 -int ___flags2_135;// L268 -____off_t_23 ___old_offset_136;// L0 -unsigned short ___cur_column_137;// L274 -signed char ___vtable_offset_138;// L275 -char ___shortbuf_139[1];// L276 -___IO_lock_t_84 * (___lock_140);// L0 -____off64_t_24 ___offset_142;// L0 -void * (____pad1_143);// L297 -void * (____pad2_144);// L298 -void * (____pad3_145);// L299 -void * (____pad4_146);// L300 -__size_t_1 ____pad5_147;// L0 -int ___mode_148;// L303 -char ___unused2_149[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +struct ___IO_FILE_124 { +int ___flags_125;// L242 +char * (___IO_read_ptr_126);// L247 +char * (___IO_read_end_127);// L248 +char * (___IO_read_base_128);// L249 +char * (___IO_write_base_129);// L250 +char * (___IO_write_ptr_130);// L251 +char * (___IO_write_end_131);// L252 +char * (___IO_buf_base_132);// L253 +char * (___IO_buf_end_133);// L254 +char * (___IO_save_base_134);// L256 +char * (___IO_backup_base_135);// L257 +char * (___IO_save_end_136);// L258 +struct ___IO_marker_90 * (___markers_137);// L260 +struct __forward_tag_reference_58 * (___chain_138);// L0 +int ___fileno_139;// L264 +int ___flags2_140;// L268 +____off_t_23 ___old_offset_141;// L0 +unsigned short ___cur_column_143;// L274 +signed char ___vtable_offset_144;// L275 +char ___shortbuf_145[1];// L276 +___IO_lock_t_88 * (___lock_146);// L0 +____off64_t_24 ___offset_148;// L0 +void * (____pad1_150);// L297 +void * (____pad2_151);// L298 +void * (____pad3_152);// L299 +void * (____pad4_153);// L300 +__size_t_1 ____pad5_154;// L0 +int ___mode_155;// L303 +char ___unused2_156[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -struct ___IO_FILE_complete_150 { -struct ___IO_FILE_95 ___file_151;// L286 -____off64_t_24 ___offset_153;// L0 -void * (____pad1_154);// L297 -void * (____pad2_155);// L298 -void * (____pad3_156);// L299 -void * (____pad4_157);// L300 -__size_t_1 ____pad5_158;// L0 -int ___mode_159;// L303 -char ___unused2_160[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +struct ___IO_FILE_complete_157 { +struct ___IO_FILE_99 ___file_158;// L286 +____off64_t_24 ___offset_160;// L0 +void * (____pad1_162);// L297 +void * (____pad2_163);// L298 +void * (____pad3_164);// L299 +void * (____pad4_165);// L300 +__size_t_1 ____pad5_166;// L0 +int ___mode_167;// L303 +char ___unused2_168[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -typedef struct ___IO_FILE_95 ___IO_FILE_163;// L310 -typedef struct ___IO_FILE_119 ___IO_FILE_164;// L310 -typedef ____ssize_t_49 (____io_read_fn_173) (void * (____cookie_170), char * (____buf_171), __size_t_1 ____nbytes_172);// L333 -typedef ____ssize_t_49 (____io_write_fn_177) (void * (____cookie_174), const char * (____buf_175), __size_t_1 ____n_176);// L341:L342 -typedef int (____io_seek_fn_181) (void * (____cookie_178), ____off64_t_24 * (____pos_179), int ____w_180);// L350 -typedef int (____io_close_fn_183) (void * (____cookie_182));// L353 -typedef ____gnuc_va_list_82 __va_list_248;// L79 -typedef ____off_t_23 __off_t_250;// L90 -typedef ____off64_t_24 __off_t_251;// L92 -typedef ____ssize_t_49 __ssize_t_252;// L102 -typedef ___G_fpos_t_75 __fpos_t_253;// L110 -typedef ___G_fpos64_t_81 __fpos_t_255;// L112 -extern const char * const __sys_errlist_756[];// L27 -struct ____locale_struct_1074 { -struct __forward_tag_reference_1073 * (____locales_1075[13]);// L0 -const unsigned short int * (____ctype_b_1076);// L33 -const int * (____ctype_tolower_1077);// L34 -const int * (____ctype_toupper_1078);// L35 -const char * (____names_1079[13]);// L38 +typedef struct ___IO_FILE_99 ___IO_FILE_171;// L310 +typedef struct ___IO_FILE_124 ___IO_FILE_172;// L310 +typedef ____ssize_t_49 (____io_read_fn_181) (void * (____cookie_178), char * (____buf_179), __size_t_1 ____nbytes_180);// L333 +typedef ____ssize_t_49 (____io_write_fn_186) (void * (____cookie_183), const char * (____buf_184), __size_t_1 ____n_185);// L341:L342 +typedef int (____io_seek_fn_192) (void * (____cookie_188), ____off64_t_24 * (____pos_189), int ____w_191);// L350 +typedef int (____io_close_fn_195) (void * (____cookie_194));// L353 +typedef ____gnuc_va_list_86 __va_list_279;// L79 +typedef ____off_t_23 __off_t_281;// L90 +typedef ____off64_t_24 __off_t_283;// L92 +typedef ____ssize_t_49 __ssize_t_285;// L102 +typedef ___G_fpos_t_77 __fpos_t_287;// L110 +typedef ___G_fpos64_t_85 __fpos_t_289;// L112 +extern const char * const __sys_errlist_830[];// L27 +typedef long int __ptrdiff_t_1090;// L143:L324 +typedef long unsigned int __size_t_1091;// L177:L209 +struct ____locale_struct_1171 { +struct __forward_tag_reference_1170 * (____locales_1172[13]);// L0 +const unsigned short int * (____ctype_b_1173);// L33 +const int * (____ctype_tolower_1174);// L34 +const int * (____ctype_toupper_1175);// L35 +const char * (____names_1176[13]);// L38 }; -typedef struct ____locale_struct_1074 * (____locale_t_1080);// L27:L39 -typedef ____locale_t_1080 __locale_t_1081;// L42 -typedef int __wchar_t_1235;// L243:L321 -enum ____anonymous_tag_1239_1240 { -__P_ALL_1236, -__P_PID_1237, -__P_PGID_1238, +typedef struct ____locale_struct_1171 * (____locale_t_1177);// L27:L39 +typedef ____locale_t_1177 __locale_t_1178;// L42 +typedef int __wchar_t_1378;// L243:L321 +enum ____anonymous_tag_1382_1383 { +__P_ALL_1379, +__P_PID_1380, +__P_PGID_1381, }; -typedef enum ____anonymous_tag_1239_1240 __idtype_t_1241;// L50:L55 -struct ____anonymous_tag_1247_1248 { -unsigned int ____w_termsig_1249 : 7;// L72 -unsigned int ____w_coredump_1250 : 1;// L73 -unsigned int ____w_retcode_1251 : 8;// L74 -unsigned int __anon_id_0_1252 : 16;// L75 +typedef enum ____anonymous_tag_1382_1383 __idtype_t_1384;// L50:L55 +typedef unsigned char ____u_char_1385;// L30 +typedef unsigned short int ____u_short_1386;// L31 +typedef unsigned int ____u_int_1387;// L32 +typedef unsigned long int ____u_long_1388;// L33 +typedef signed char ____int8_t_1389;// L36 +typedef unsigned char ____uint8_t_1390;// L37 +typedef signed short int ____int16_t_1391;// L38 +typedef unsigned short int ____uint16_t_1392;// L39 +typedef signed int ____int32_t_1393;// L40 +typedef unsigned int ____uint32_t_1394;// L41 +typedef signed long int ____int64_t_1395;// L43 +typedef unsigned long int ____uint64_t_1396;// L44 +typedef long int ____quad_t_1397;// L52 +typedef unsigned long int ____u_quad_t_1398;// L53 +typedef unsigned long int ____dev_t_1399;// L109:L124 +typedef unsigned int ____uid_t_1400;// L92:L125 +typedef unsigned int ____gid_t_1401;// L92:L126 +typedef unsigned long int ____ino_t_1402;// L94:L127 +typedef unsigned long int ____ino64_t_1403;// L109:L128 +typedef unsigned int ____mode_t_1404;// L92:L129 +typedef unsigned long int ____nlink_t_1405;// L94:L130 +typedef long int ____off_t_1406;// L93:L131 +typedef long int ____off64_t_1407;// L108:L132 +typedef int ____pid_t_1408;// L91:L133 +struct ____anonymous_tag_1409_1410 { +int ____val_1411[2];// L72 }; -struct ____anonymous_tag_1253_1254 { -unsigned int ____w_stopval_1255 : 8;// L87 -unsigned int ____w_stopsig_1256 : 8;// L88 -unsigned int __anon_id_1_1257 : 16;// L89 +typedef struct ____anonymous_tag_1409_1410 ____fsid_t_1412;// L72:L134 +typedef long int ____clock_t_1413;// L93:L135 +typedef unsigned long int ____rlim_t_1414;// L94:L136 +typedef unsigned long int ____rlim64_t_1415;// L109:L137 +typedef unsigned int ____id_t_1416;// L92:L138 +typedef long int ____time_t_1417;// L93:L139 +typedef unsigned int ____useconds_t_1418;// L92:L140 +typedef long int ____suseconds_t_1419;// L93:L141 +typedef int ____daddr_t_1420;// L91:L143 +typedef int ____key_t_1421;// L91:L144 +typedef int ____clockid_t_1422;// L91:L147 +typedef void * (____timer_t_1423);// L70:L150 +typedef long int ____blksize_t_1424;// L93:L153 +typedef long int ____blkcnt_t_1425;// L93:L158 +typedef long int ____blkcnt64_t_1426;// L108:L159 +typedef unsigned long int ____fsblkcnt_t_1427;// L94:L162 +typedef unsigned long int ____fsblkcnt64_t_1428;// L109:L163 +typedef unsigned long int ____fsfilcnt_t_1429;// L94:L166 +typedef unsigned long int ____fsfilcnt64_t_1430;// L109:L167 +typedef long int ____fsword_t_1431;// L93:L170 +typedef long int ____ssize_t_1432;// L110:L172 +typedef long int ____syscall_slong_t_1433;// L93:L175 +typedef unsigned long int ____syscall_ulong_t_1434;// L94:L177 +typedef ____off64_t_1407 ____loff_t_1435;// L181 +typedef ____quad_t_1397 * (____qaddr_t_1437);// L182 +typedef char * (____caddr_t_1438);// L183 +typedef long int ____intptr_t_1439;// L110:L186 +typedef unsigned int ____socklen_t_1440;// L92:L189 +struct ____anonymous_tag_1450_1451 { +unsigned int ____w_termsig_1452 : 7;// L72 +unsigned int ____w_coredump_1453 : 1;// L73 +unsigned int ____w_retcode_1454 : 8;// L74 +unsigned int __anon_id_0_1455 : 16;// L75 }; -union __wait_1258 { -int __w_status_1259;// L68 -struct ____anonymous_tag_1247_1248 ____wait_terminated_1260;// L69 -struct ____anonymous_tag_1253_1254 ____wait_stopped_1261;// L84 +struct ____anonymous_tag_1456_1457 { +unsigned int ____w_stopval_1458 : 8;// L87 +unsigned int ____w_stopsig_1459 : 8;// L88 +unsigned int __anon_id_1_1460 : 16;// L89 }; -union ____anonymous_tag_1262_1263 { -union __wait_1258 * (____uptr_1264);// L69 -int * (____iptr_1265);// L70 +union __wait_1461 { +int __w_status_1462;// L68 +struct ____anonymous_tag_1450_1451 ____wait_terminated_1463;// L69 +struct ____anonymous_tag_1456_1457 ____wait_stopped_1464;// L84 }; -typedef union ____anonymous_tag_1262_1263 ____WAIT_STATUS_1266;// L67:L71 -struct ____anonymous_tag_1267_1268 { -int __quot_1269;// L99 -int __rem_1270;// L100 +union ____anonymous_tag_1465_1466 { +union __wait_1461 * (____uptr_1467);// L69 +int * (____iptr_1468);// L70 }; -typedef struct ____anonymous_tag_1267_1268 __div_t_1271;// L97:L101 -struct ____anonymous_tag_1272_1273 { -long int __quot_1274;// L107 -long int __rem_1275;// L108 +typedef union ____anonymous_tag_1465_1466 ____WAIT_STATUS_1469;// L67:L71 +struct ____anonymous_tag_1470_1471 { +int __quot_1472;// L99 +int __rem_1473;// L100 }; -typedef struct ____anonymous_tag_1272_1273 __ldiv_t_1276;// L105:L109 -struct ____anonymous_tag_1277_1278 { -long long int __quot_1279;// L119 -long long int __rem_1280;// L120 +typedef struct ____anonymous_tag_1470_1471 __div_t_1474;// L97:L101 +struct ____anonymous_tag_1475_1476 { +long int __quot_1477;// L107 +long int __rem_1478;// L108 }; -typedef struct ____anonymous_tag_1277_1278 __lldiv_t_1281;// L117:L121 -typedef ____u_char_2 __u_char_1341;// L33 -typedef ____u_short_3 __u_short_1342;// L34 -typedef ____u_int_4 __u_int_1343;// L35 -typedef ____u_long_5 __u_long_1344;// L36 -typedef ____quad_t_14 __quad_t_1345;// L37 -typedef ____u_quad_t_15 __u_quad_t_1346;// L38 -typedef ____fsid_t_29 __fsid_t_1347;// L39 -typedef ____loff_t_52 __loff_t_1348;// L44 -typedef ____ino64_t_20 __ino_t_1349;// L50 -typedef ____ino_t_19 __ino_t_1350;// L48 -typedef ____dev_t_16 __dev_t_1351;// L60 -typedef ____gid_t_18 __gid_t_1352;// L65 -typedef ____gid_t_18 __gid_t_1353;// L65 -typedef ____mode_t_21 __mode_t_1354;// L70 -typedef ____nlink_t_22 __nlink_t_1355;// L75 -typedef ____uid_t_17 __uid_t_1356;// L80 -typedef ____uid_t_17 __uid_t_1357;// L80 -typedef ____pid_t_25 __pid_t_1358;// L98 -typedef ____id_t_33 __id_t_1359;// L104 -typedef ____daddr_t_37 __daddr_t_1360;// L115 -typedef ____caddr_t_54 __caddr_t_1361;// L116 -typedef ____key_t_38 __key_t_1362;// L122 -typedef ____key_t_38 __key_t_1363;// L122 -typedef ____clock_t_30 __clock_t_1364;// L59 -typedef ____time_t_34 __time_t_1365;// L75 -typedef ____clockid_t_39 __clockid_t_1366;// L91 -typedef ____timer_t_40 __timer_t_1367;// L103 -typedef unsigned long int __ulong_1368;// L150 -typedef unsigned long int __ulong_1369;// L150 -typedef unsigned long int __ulong_1370;// L150 -typedef unsigned short int __ushort_1371;// L151 -typedef unsigned int __uint_1372;// L152 -typedef int __int8_t_1373;// L188:L194 -typedef int __int16_t_1374;// L188:L195 -typedef int __int32_t_1375;// L188:L196 -typedef int __int64_t_1376;// L188:L197 -typedef unsigned int __u_int8_t_1377;// L190:L200 -typedef unsigned int __u_int16_t_1378;// L190:L201 -typedef unsigned int __u_int32_t_1379;// L190:L202 -typedef unsigned int __u_int64_t_1380;// L190:L203 -typedef int __register_t_1381;// L205 -typedef int ____sig_atomic_t_1387;// L22 -struct ____anonymous_tag_1388_1389 { -unsigned long int ____val_1390[( 1024 / ( 8 * sizeof(unsigned long) ) )];// L29 +typedef struct ____anonymous_tag_1475_1476 __ldiv_t_1479;// L105:L109 +struct ____anonymous_tag_1480_1481 { +long long int __quot_1482;// L119 +long long int __rem_1483;// L120 }; -typedef struct ____anonymous_tag_1388_1389 ____sigset_t_1391;// L27:L30 -typedef ____sigset_t_1391 __sigset_t_1392;// L37 -struct __timespec_1393 { -____time_t_34 __tv_sec_1394;// L0 -____syscall_slong_t_50 __tv_nsec_1395;// L0 +typedef struct ____anonymous_tag_1480_1481 __lldiv_t_1484;// L117:L121 +typedef unsigned char ____u_char_1548;// L30 +typedef unsigned short int ____u_short_1549;// L31 +typedef unsigned int ____u_int_1550;// L32 +typedef unsigned long int ____u_long_1551;// L33 +typedef signed char ____int8_t_1552;// L36 +typedef unsigned char ____uint8_t_1553;// L37 +typedef signed short int ____int16_t_1554;// L38 +typedef unsigned short int ____uint16_t_1555;// L39 +typedef signed int ____int32_t_1556;// L40 +typedef unsigned int ____uint32_t_1557;// L41 +typedef signed long int ____int64_t_1558;// L43 +typedef unsigned long int ____uint64_t_1559;// L44 +typedef long int ____quad_t_1560;// L52 +typedef unsigned long int ____u_quad_t_1561;// L53 +typedef unsigned long int ____dev_t_1562;// L109:L124 +typedef unsigned int ____uid_t_1563;// L92:L125 +typedef unsigned int ____gid_t_1564;// L92:L126 +typedef unsigned long int ____ino_t_1565;// L94:L127 +typedef unsigned long int ____ino64_t_1566;// L109:L128 +typedef unsigned int ____mode_t_1567;// L92:L129 +typedef unsigned long int ____nlink_t_1568;// L94:L130 +typedef long int ____off_t_1569;// L93:L131 +typedef long int ____off64_t_1570;// L108:L132 +typedef int ____pid_t_1571;// L91:L133 +struct ____anonymous_tag_1572_1573 { +int ____val_1574[2];// L72 }; -struct __timeval_1396 { -____time_t_34 __tv_sec_1397;// L0 -____suseconds_t_36 __tv_usec_1398;// L0 +typedef struct ____anonymous_tag_1572_1573 ____fsid_t_1575;// L72:L134 +typedef long int ____clock_t_1576;// L93:L135 +typedef unsigned long int ____rlim_t_1577;// L94:L136 +typedef unsigned long int ____rlim64_t_1578;// L109:L137 +typedef unsigned int ____id_t_1579;// L92:L138 +typedef long int ____time_t_1580;// L93:L139 +typedef unsigned int ____useconds_t_1581;// L92:L140 +typedef long int ____suseconds_t_1582;// L93:L141 +typedef int ____daddr_t_1583;// L91:L143 +typedef int ____key_t_1584;// L91:L144 +typedef int ____clockid_t_1585;// L91:L147 +typedef void * (____timer_t_1586);// L70:L150 +typedef long int ____blksize_t_1587;// L93:L153 +typedef long int ____blkcnt_t_1588;// L93:L158 +typedef long int ____blkcnt64_t_1589;// L108:L159 +typedef unsigned long int ____fsblkcnt_t_1590;// L94:L162 +typedef unsigned long int ____fsblkcnt64_t_1591;// L109:L163 +typedef unsigned long int ____fsfilcnt_t_1592;// L94:L166 +typedef unsigned long int ____fsfilcnt64_t_1593;// L109:L167 +typedef long int ____fsword_t_1594;// L93:L170 +typedef long int ____ssize_t_1595;// L110:L172 +typedef long int ____syscall_slong_t_1596;// L93:L175 +typedef unsigned long int ____syscall_ulong_t_1597;// L94:L177 +typedef ____off64_t_1570 ____loff_t_1598;// L181 +typedef ____quad_t_1560 * (____qaddr_t_1600);// L182 +typedef char * (____caddr_t_1601);// L183 +typedef long int ____intptr_t_1602;// L110:L186 +typedef unsigned int ____socklen_t_1603;// L92:L189 +typedef ____u_char_2 __u_char_1604;// L33 +typedef ____u_char_1385 __u_char_1605;// L33 +typedef ____u_char_1548 __u_char_1606;// L33 +typedef ____u_short_3 __u_short_1607;// L34 +typedef ____u_short_1386 __u_short_1608;// L34 +typedef ____u_short_1549 __u_short_1609;// L34 +typedef ____u_int_4 __u_int_1610;// L35 +typedef ____u_int_1387 __u_int_1611;// L35 +typedef ____u_int_1550 __u_int_1612;// L35 +typedef ____u_long_5 __u_long_1613;// L36 +typedef ____u_long_1388 __u_long_1614;// L36 +typedef ____u_long_1551 __u_long_1615;// L36 +typedef ____quad_t_14 __quad_t_1616;// L37 +typedef ____quad_t_1397 __quad_t_1617;// L37 +typedef ____quad_t_1560 __quad_t_1618;// L37 +typedef ____u_quad_t_15 __u_quad_t_1619;// L38 +typedef ____u_quad_t_1398 __u_quad_t_1620;// L38 +typedef ____u_quad_t_1561 __u_quad_t_1621;// L38 +typedef ____fsid_t_29 __fsid_t_1622;// L39 +typedef ____fsid_t_1412 __fsid_t_1623;// L39 +typedef ____fsid_t_1575 __fsid_t_1624;// L39 +typedef ____loff_t_52 __loff_t_1626;// L44 +typedef ____loff_t_1435 __loff_t_1627;// L44 +typedef ____loff_t_1598 __loff_t_1628;// L44 +typedef ____loff_t_52 __loff_t_1630;// L44 +typedef ____loff_t_1435 __loff_t_1631;// L44 +typedef ____loff_t_1598 __loff_t_1632;// L44 +typedef ____ino64_t_20 __ino_t_1634;// L50 +typedef ____ino64_t_1403 __ino_t_1635;// L50 +typedef ____ino64_t_1566 __ino_t_1636;// L50 +typedef ____ino_t_19 __ino_t_1638;// L48 +typedef ____ino_t_1402 __ino_t_1639;// L48 +typedef ____ino_t_1565 __ino_t_1640;// L48 +typedef ____dev_t_16 __dev_t_1642;// L60 +typedef ____dev_t_1399 __dev_t_1643;// L60 +typedef ____dev_t_1562 __dev_t_1644;// L60 +typedef ____gid_t_18 __gid_t_1646;// L65 +typedef ____gid_t_1401 __gid_t_1647;// L65 +typedef ____gid_t_1564 __gid_t_1648;// L65 +typedef ____gid_t_18 __gid_t_1650;// L65 +typedef ____gid_t_1401 __gid_t_1651;// L65 +typedef ____gid_t_1564 __gid_t_1652;// L65 +typedef ____mode_t_21 __mode_t_1654;// L70 +typedef ____mode_t_1404 __mode_t_1655;// L70 +typedef ____mode_t_1567 __mode_t_1656;// L70 +typedef ____nlink_t_22 __nlink_t_1658;// L75 +typedef ____nlink_t_1405 __nlink_t_1659;// L75 +typedef ____nlink_t_1568 __nlink_t_1660;// L75 +typedef ____uid_t_17 __uid_t_1662;// L80 +typedef ____uid_t_1400 __uid_t_1663;// L80 +typedef ____uid_t_1563 __uid_t_1664;// L80 +typedef ____uid_t_17 __uid_t_1666;// L80 +typedef ____uid_t_1400 __uid_t_1667;// L80 +typedef ____uid_t_1563 __uid_t_1668;// L80 +typedef ____off64_t_1407 __off_t_1670;// L88 +typedef ____off64_t_1570 __off_t_1671;// L88 +typedef ____off_t_1406 __off_t_1673;// L86 +typedef ____off_t_1569 __off_t_1674;// L86 +typedef ____pid_t_25 __pid_t_1676;// L98 +typedef ____pid_t_1408 __pid_t_1677;// L98 +typedef ____pid_t_1571 __pid_t_1678;// L98 +typedef ____pid_t_1408 __pid_t_1680;// L98 +typedef ____pid_t_1571 __pid_t_1681;// L98 +typedef ____id_t_33 __id_t_1683;// L104 +typedef ____id_t_1416 __id_t_1684;// L104 +typedef ____id_t_1579 __id_t_1685;// L104 +typedef ____ssize_t_1432 __ssize_t_1687;// L109 +typedef ____ssize_t_1595 __ssize_t_1688;// L109 +typedef ____daddr_t_37 __daddr_t_1690;// L115 +typedef ____daddr_t_1420 __daddr_t_1691;// L115 +typedef ____daddr_t_1583 __daddr_t_1692;// L115 +typedef ____caddr_t_55 __caddr_t_1694;// L116 +typedef ____caddr_t_1438 __caddr_t_1695;// L116 +typedef ____caddr_t_1601 __caddr_t_1696;// L116 +typedef ____key_t_38 __key_t_1697;// L122 +typedef ____key_t_1421 __key_t_1698;// L122 +typedef ____key_t_1584 __key_t_1699;// L122 +typedef ____key_t_38 __key_t_1701;// L122 +typedef ____key_t_1421 __key_t_1702;// L122 +typedef ____key_t_1584 __key_t_1703;// L122 +typedef ____clock_t_30 __clock_t_1705;// L59 +typedef ____clock_t_1413 __clock_t_1706;// L59 +typedef ____clock_t_1576 __clock_t_1707;// L59 +typedef ____time_t_34 __time_t_1709;// L75 +typedef ____time_t_1417 __time_t_1710;// L75 +typedef ____time_t_1580 __time_t_1711;// L75 +typedef ____clockid_t_39 __clockid_t_1713;// L91 +typedef ____clockid_t_1422 __clockid_t_1714;// L91 +typedef ____clockid_t_1585 __clockid_t_1715;// L91 +typedef ____timer_t_40 __timer_t_1717;// L103 +typedef ____timer_t_1423 __timer_t_1718;// L103 +typedef ____timer_t_1586 __timer_t_1719;// L103 +typedef unsigned long int __ulong_1721;// L150 +typedef unsigned long int __ulong_1722;// L150 +typedef unsigned long int __ulong_1723;// L150 +typedef unsigned short int __ushort_1724;// L151 +typedef unsigned int __uint_1725;// L152 +typedef int __int8_t_1726;// L188:L194 +typedef int __int16_t_1727;// L188:L195 +typedef int __int32_t_1728;// L188:L196 +typedef int __int64_t_1729;// L188:L197 +typedef unsigned int __u_int8_t_1730;// L190:L200 +typedef unsigned int __u_int16_t_1731;// L190:L201 +typedef unsigned int __u_int32_t_1732;// L190:L202 +typedef unsigned int __u_int64_t_1733;// L190:L203 +typedef int __register_t_1734;// L205 +typedef int ____sig_atomic_t_1744;// L22 +struct ____anonymous_tag_1745_1746 { +unsigned long int ____val_1747[( 1024 / ( 8 * sizeof(unsigned long) ) )];// L29 }; -typedef ____suseconds_t_36 __suseconds_t_1399;// L48 -typedef long int ____fd_mask_1400;// L54 -typedef long int ____fd_mask_1401;// L54 -struct ____anonymous_tag_1402_1403 { -____fd_mask_1400 ____fds_bits_1404[1024 / ( 8 * ( int ) sizeof(long) )];// L0 -____fd_mask_1401 ____fds_bits_1405[1024 / ( 8 * ( int ) sizeof(long) )];// L0 +typedef struct ____anonymous_tag_1745_1746 ____sigset_t_1748;// L27:L30 +typedef ____sigset_t_1748 __sigset_t_1749;// L37 +struct __timespec_1750 { +____time_t_34 __tv_sec_1751;// L0 +____time_t_1417 __tv_sec_1752;// L0 +____time_t_1580 __tv_sec_1753;// L0 +____syscall_slong_t_50 __tv_nsec_1755;// L0 +____syscall_slong_t_1433 __tv_nsec_1756;// L0 +____syscall_slong_t_1596 __tv_nsec_1757;// L0 }; -typedef struct ____anonymous_tag_1402_1403 __fd_set_1406;// L64:L75 -typedef ____fd_mask_1400 __fd_mask_1407;// L82 -typedef ____fd_mask_1401 __fd_mask_1408;// L82 -typedef ____blksize_t_41 __blksize_t_1444;// L228 -typedef ____blkcnt_t_42 __blkcnt_t_1445;// L235 -typedef ____fsblkcnt_t_44 __fsblkcnt_t_1446;// L239 -typedef ____blkcnt64_t_43 __blkcnt_t_1447;// L248 -typedef ____fsblkcnt64_t_45 __fsblkcnt_t_1448;// L252 -typedef ____fsfilcnt_t_46 __fsfilcnt_t_1449;// L243 -typedef ____fsfilcnt64_t_47 __fsfilcnt_t_1450;// L256 -typedef unsigned long int __pthread_t_1451;// L60 -union __pthread_attr_t_1452 { -char ____size_1453[56];// L65 -long int ____align_1454;// L66 +struct __timeval_1760 { +____time_t_34 __tv_sec_1761;// L0 +____time_t_1417 __tv_sec_1762;// L0 +____time_t_1580 __tv_sec_1763;// L0 +____suseconds_t_36 __tv_usec_1765;// L0 +____suseconds_t_1419 __tv_usec_1766;// L0 +____suseconds_t_1582 __tv_usec_1767;// L0 }; -typedef union __pthread_attr_t_1452 __pthread_attr_t_1455;// L69 -struct ____pthread_internal_list_1457 { -struct __forward_tag_reference_1456 * (____prev_1458);// L0 -struct __forward_tag_reference_1456 * (____next_1459);// L0 +typedef ____suseconds_t_36 __suseconds_t_1770;// L48 +typedef ____suseconds_t_1419 __suseconds_t_1771;// L48 +typedef ____suseconds_t_1582 __suseconds_t_1772;// L48 +typedef long int ____fd_mask_1774;// L54 +typedef long int ____fd_mask_1775;// L54 +struct ____anonymous_tag_1776_1777 { +____fd_mask_1774 ____fds_bits_1778[1024 / ( 8 * ( int ) sizeof(long) )];// L0 +____fd_mask_1775 ____fds_bits_1780[1024 / ( 8 * ( int ) sizeof(long) )];// L0 }; -typedef struct ____pthread_internal_list_1457 ____pthread_list_t_1460;// L75:L79 -typedef struct ____pthread_internal_list_1457 ____pthread_list_t_1461;// L75:L79 -struct ____pthread_mutex_s_1462 { -int ____lock_1463;// L94 -unsigned int ____count_1464;// L95 -int ____owner_1465;// L96 -unsigned int ____nusers_1466;// L98 -int ____kind_1467;// L102 -short ____spins_1468;// L104 -short ____elision_1469;// L105 -____pthread_list_t_1460 ____list_1470;// L0 -____pthread_list_t_1461 ____list_1471;// L0 +typedef struct ____anonymous_tag_1776_1777 __fd_set_1783;// L64:L75 +typedef ____fd_mask_1774 __fd_mask_1784;// L82 +typedef ____fd_mask_1775 __fd_mask_1785;// L82 +typedef ____blksize_t_41 __blksize_t_1833;// L228 +typedef ____blksize_t_1424 __blksize_t_1834;// L228 +typedef ____blksize_t_1587 __blksize_t_1835;// L228 +typedef ____blkcnt_t_42 __blkcnt_t_1837;// L235 +typedef ____blkcnt_t_1425 __blkcnt_t_1838;// L235 +typedef ____blkcnt_t_1588 __blkcnt_t_1839;// L235 +typedef ____fsblkcnt_t_44 __fsblkcnt_t_1841;// L239 +typedef ____fsblkcnt_t_1427 __fsblkcnt_t_1842;// L239 +typedef ____fsblkcnt_t_1590 __fsblkcnt_t_1843;// L239 +typedef ____blkcnt64_t_43 __blkcnt_t_1845;// L248 +typedef ____blkcnt64_t_1426 __blkcnt_t_1846;// L248 +typedef ____blkcnt64_t_1589 __blkcnt_t_1847;// L248 +typedef ____fsblkcnt64_t_45 __fsblkcnt_t_1849;// L252 +typedef ____fsblkcnt64_t_1428 __fsblkcnt_t_1850;// L252 +typedef ____fsblkcnt64_t_1591 __fsblkcnt_t_1851;// L252 +typedef ____fsfilcnt_t_46 __fsfilcnt_t_1853;// L243 +typedef ____fsfilcnt_t_1429 __fsfilcnt_t_1854;// L243 +typedef ____fsfilcnt_t_1592 __fsfilcnt_t_1855;// L243 +typedef ____fsfilcnt64_t_47 __fsfilcnt_t_1857;// L256 +typedef ____fsfilcnt64_t_1430 __fsfilcnt_t_1858;// L256 +typedef ____fsfilcnt64_t_1593 __fsfilcnt_t_1859;// L256 +typedef unsigned long int __pthread_t_1861;// L60 +union __pthread_attr_t_1862 { +char ____size_1863[56];// L65 +long int ____align_1864;// L66 }; -union ____anonymous_tag_1472_1473 { -struct ____pthread_mutex_s_1462 ____data_1474;// L92 -char ____size_1475[40];// L126 -long int ____align_1476;// L127 +typedef union __pthread_attr_t_1862 __pthread_attr_t_1865;// L69 +struct ____pthread_internal_list_1867 { +struct __forward_tag_reference_1866 * (____prev_1868);// L0 +struct __forward_tag_reference_1866 * (____next_1869);// L0 }; -typedef union ____anonymous_tag_1472_1473 __pthread_mutex_t_1477;// L90:L128 -union ____anonymous_tag_1478_1479 { -char ____size_1480[4];// L132 -int ____align_1481;// L133 +typedef struct ____pthread_internal_list_1867 ____pthread_list_t_1870;// L75:L79 +typedef struct ____pthread_internal_list_1867 ____pthread_list_t_1871;// L75:L79 +struct ____pthread_mutex_s_1872 { +int ____lock_1873;// L94 +unsigned int ____count_1874;// L95 +int ____owner_1875;// L96 +unsigned int ____nusers_1876;// L98 +int ____kind_1877;// L102 +short ____spins_1878;// L104 +short ____elision_1879;// L105 +____pthread_list_t_1870 ____list_1880;// L0 +____pthread_list_t_1871 ____list_1881;// L0 }; -typedef union ____anonymous_tag_1478_1479 __pthread_mutexattr_t_1482;// L130:L134 -typedef int (* (____compar_fn_t_1591)) (const void *, const void *);// L741 +union ____anonymous_tag_1882_1883 { +struct ____pthread_mutex_s_1872 ____data_1884;// L92 +char ____size_1885[40];// L126 +long int ____align_1886;// L127 +}; +typedef union ____anonymous_tag_1882_1883 __pthread_mutex_t_1887;// L90:L128 +union ____anonymous_tag_1888_1889 { +char ____size_1890[4];// L132 +int ____align_1891;// L133 +}; +typedef union ____anonymous_tag_1888_1889 __pthread_mutexattr_t_1892;// L130:L134 +typedef int (* (____compar_fn_t_2026)) (const void *, const void *);// L741 -struct __forward_tag_reference_57 { // generated union of struct variations +struct __forward_tag_reference_89 { // generated union of struct variations union { -struct ___IO_FILE_95 ___IO_FILE_95; -struct ___IO_FILE_119 ___IO_FILE_119; +struct ___IO_marker_90 ___IO_marker_90; }; }; -struct __forward_tag_reference_1073 { // generated union of struct variations +struct __forward_tag_reference_58 { // generated union of struct variations union { +struct ___IO_FILE_99 ___IO_FILE_99; +struct ___IO_FILE_124 ___IO_FILE_124; }; }; -struct __forward_tag_reference_85 { // generated union of struct variations +struct __forward_tag_reference_1170 { // generated union of struct variations union { -struct ___IO_marker_86 ___IO_marker_86; }; }; -struct __forward_tag_reference_1456 { // generated union of struct variations +struct __forward_tag_reference_87 { // generated union of struct variations union { }; }; -struct __forward_tag_reference_83 { // generated union of struct variations +struct __forward_tag_reference_174 { // generated union of struct variations union { }; }; -struct __forward_tag_reference_166 { // generated union of struct variations +struct __forward_tag_reference_1866 { // generated union of struct variations union { }; }; @@ -1471,225 +2197,225 @@ union { // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_57 ;// L0 +struct __forward_tag_reference_58 ;// L0 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_83 ;// L0 -struct __forward_tag_reference_83 ;// L0 -struct __forward_tag_reference_57 ;// L0 +struct __forward_tag_reference_87 ;// L0 +struct __forward_tag_reference_87 ;// L0 +struct __forward_tag_reference_58 ;// L0 // typedef moved to top of scope -struct ___IO_marker_86 ;// L156 -enum ____codecvt_result_94 ;// L176 -struct ___IO_FILE_95 ;// L241 +struct ___IO_marker_90 ;// L156 +enum ____codecvt_result_98 ;// L176 +struct ___IO_FILE_99 ;// L241 -struct ___IO_FILE_119 ;// L241 -struct ___IO_FILE_complete_150 ;// L241 +struct ___IO_FILE_124 ;// L241 +struct ___IO_FILE_complete_157 ;// L241 // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_166 ;// L0 -extern struct __forward_tag_reference_166 ___IO_2_1_stdin__167;// L315 -extern struct __forward_tag_reference_166 ___IO_2_1_stdout__168;// L316 -extern struct __forward_tag_reference_166 ___IO_2_1_stderr__169;// L317 +struct __forward_tag_reference_174 ;// L0 +extern struct __forward_tag_reference_174 ___IO_2_1_stdin__175;// L315 +extern struct __forward_tag_reference_174 ___IO_2_1_stdout__176;// L316 +extern struct __forward_tag_reference_174 ___IO_2_1_stderr__177;// L317 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern int (____underflow_184) (___IO_FILE_163 *);// L385 -extern int (____underflow_185) (___IO_FILE_164 *);// L385 -extern int (____uflow_186) (___IO_FILE_163 *);// L386 -extern int (____uflow_187) (___IO_FILE_164 *);// L386 -extern int (____overflow_188) (___IO_FILE_163 *, int );// L387 -extern int (____overflow_189) (___IO_FILE_164 *, int );// L387 -extern int (___IO_getc_193) (___IO_FILE_163 * (____fp_190));// L429 -extern int (___IO_getc_194) (___IO_FILE_164 * (____fp_191));// L429 -extern int (___IO_putc_199) (int ____c_195, ___IO_FILE_163 * (____fp_196));// L430 -extern int (___IO_putc_200) (int ____c_195, ___IO_FILE_164 * (____fp_197));// L430 -extern int (___IO_feof_204) (___IO_FILE_163 * (____fp_201));// L431 -extern int (___IO_feof_205) (___IO_FILE_164 * (____fp_202));// L431 -extern int (___IO_ferror_209) (___IO_FILE_163 * (____fp_206));// L432 -extern int (___IO_ferror_210) (___IO_FILE_164 * (____fp_207));// L432 -extern int (___IO_peekc_locked_214) (___IO_FILE_163 * (____fp_211));// L434 -extern int (___IO_peekc_locked_215) (___IO_FILE_164 * (____fp_212));// L434 -extern void (___IO_flockfile_216) (___IO_FILE_163 *);// L440 -extern void (___IO_flockfile_217) (___IO_FILE_164 *);// L440 -extern void (___IO_funlockfile_218) (___IO_FILE_163 *);// L441 -extern void (___IO_funlockfile_219) (___IO_FILE_164 *);// L441 -extern int (___IO_ftrylockfile_220) (___IO_FILE_163 *);// L442 -extern int (___IO_ftrylockfile_221) (___IO_FILE_164 *);// L442 -extern int (___IO_vfscanf_222) (___IO_FILE_163 * __restrict , const char * __restrict , ____gnuc_va_list_82 , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_224) (___IO_FILE_164 * __restrict , const char * __restrict , ____gnuc_va_list_82 , int * __restrict );// L459:L460 - - -extern int (___IO_vfprintf_231) (___IO_FILE_163 * __restrict , const char * __restrict , ____gnuc_va_list_82 );// L461:L462 -extern int (___IO_vfprintf_233) (___IO_FILE_164 * __restrict , const char * __restrict , ____gnuc_va_list_82 );// L461:L462 - -extern ____ssize_t_49 (___IO_padn_238) (___IO_FILE_163 *, int , ____ssize_t_49 );// L463 -extern ____ssize_t_49 (___IO_padn_239) (___IO_FILE_164 *, int , ____ssize_t_49 );// L463 -extern __size_t_1 (___IO_sgetn_240) (___IO_FILE_163 *, void *, __size_t_1 );// L464 -extern __size_t_1 (___IO_sgetn_241) (___IO_FILE_164 *, void *, __size_t_1 );// L464 -extern ____off64_t_24 (___IO_seekoff_242) (___IO_FILE_163 *, ____off64_t_24 , int , int );// L466 -extern ____off64_t_24 (___IO_seekoff_243) (___IO_FILE_164 *, ____off64_t_24 , int , int );// L466 -extern ____off64_t_24 (___IO_seekpos_244) (___IO_FILE_163 *, ____off64_t_24 , int );// L467 -extern ____off64_t_24 (___IO_seekpos_245) (___IO_FILE_164 *, ____off64_t_24 , int );// L467 -extern void (___IO_free_backup_area_246) (___IO_FILE_163 *);// L469 -extern void (___IO_free_backup_area_247) (___IO_FILE_164 *);// L469 +extern int (____underflow_196) (___IO_FILE_171 *);// L385 +extern int (____underflow_197) (___IO_FILE_172 *);// L385 +extern int (____uflow_199) (___IO_FILE_171 *);// L386 +extern int (____uflow_200) (___IO_FILE_172 *);// L386 +extern int (____overflow_202) (___IO_FILE_171 *, int );// L387 +extern int (____overflow_203) (___IO_FILE_172 *, int );// L387 +extern int (___IO_getc_208) (___IO_FILE_171 * (____fp_205));// L429 +extern int (___IO_getc_209) (___IO_FILE_172 * (____fp_206));// L429 +extern int (___IO_putc_215) (int ____c_211, ___IO_FILE_171 * (____fp_212));// L430 +extern int (___IO_putc_216) (int ____c_211, ___IO_FILE_172 * (____fp_213));// L430 +extern int (___IO_feof_221) (___IO_FILE_171 * (____fp_218));// L431 +extern int (___IO_feof_222) (___IO_FILE_172 * (____fp_219));// L431 +extern int (___IO_ferror_227) (___IO_FILE_171 * (____fp_224));// L432 +extern int (___IO_ferror_228) (___IO_FILE_172 * (____fp_225));// L432 +extern int (___IO_peekc_locked_233) (___IO_FILE_171 * (____fp_230));// L434 +extern int (___IO_peekc_locked_234) (___IO_FILE_172 * (____fp_231));// L434 +extern void (___IO_flockfile_236) (___IO_FILE_171 *);// L440 +extern void (___IO_flockfile_237) (___IO_FILE_172 *);// L440 +extern void (___IO_funlockfile_239) (___IO_FILE_171 *);// L441 +extern void (___IO_funlockfile_240) (___IO_FILE_172 *);// L441 +extern int (___IO_ftrylockfile_242) (___IO_FILE_171 *);// L442 +extern int (___IO_ftrylockfile_243) (___IO_FILE_172 *);// L442 +extern int (___IO_vfscanf_245) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_247) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_251) (___IO_FILE_171 * __restrict , const char * __restrict , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_252) (___IO_FILE_172 * __restrict , const char * __restrict , int * __restrict );// L459:L460 +extern int (___IO_vfprintf_254) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 +extern int (___IO_vfprintf_256) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 +extern int (___IO_vfprintf_260) ();// L461:L462 +extern ____ssize_t_49 (___IO_padn_261) (___IO_FILE_171 *, int , ____ssize_t_49 );// L463 +extern ____ssize_t_49 (___IO_padn_262) (___IO_FILE_172 *, int , ____ssize_t_49 );// L463 +extern __size_t_1 (___IO_sgetn_265) (___IO_FILE_171 *, void *, __size_t_1 );// L464 +extern __size_t_1 (___IO_sgetn_266) (___IO_FILE_172 *, void *, __size_t_1 );// L464 +extern ____off64_t_24 (___IO_seekoff_268) (___IO_FILE_171 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekoff_269) (___IO_FILE_172 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekpos_272) (___IO_FILE_171 *, ____off64_t_24 , int );// L467 +extern ____off64_t_24 (___IO_seekpos_273) (___IO_FILE_172 *, ____off64_t_24 , int );// L467 +extern void (___IO_free_backup_area_276) (___IO_FILE_171 *);// L469 +extern void (___IO_free_backup_area_277) (___IO_FILE_172 *);// L469 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern struct ___IO_FILE_95 * (__stdin_257);// L168 -extern struct ___IO_FILE_119 * (__stdin_258);// L168 -extern struct ___IO_FILE_95 * (__stdout_259);// L169 -extern struct ___IO_FILE_119 * (__stdout_260);// L169 -extern struct ___IO_FILE_95 * (__stderr_261);// L170 -extern struct ___IO_FILE_119 * (__stderr_262);// L170 -extern int (__remove_264) (const char * (____filename_263));// L178 -extern int (__rename_267) (const char * (____old_265), const char * (____new_266));// L180 -extern int (__renameat_272) (int ____oldfd_268, const char * (____old_269), int ____newfd_270, const char * (____new_271));// L185:L186 -extern __FILE_58 * ((__tmpfile_273) (void ));// L195 -extern __FILE_58 * ((__tmpfile_279) (void ));// L198 -extern __FILE_58 * ((__tmpfile_277) (void ));// L198 -extern __FILE_58 * ((__tmpfile_275) (void ));// L195 -extern char * ((__tmpnam_282) (char * (____s_281)));// L209 -extern char * ((__tmpnam_283) (char * (____s_281)));// L209 -extern char * ((__tmpnam_r_285) (char * (____s_284)));// L215 -extern char * ((__tmpnam_r_286) (char * (____s_284)));// L215 -extern char * ((__tempnam_289) (const char * (____dir_287), const char * (____pfx_288)));// L227:L228 -extern char * ((__tempnam_290) (const char * (____dir_287), const char * (____pfx_288)));// L227:L228 -extern int (__fclose_293) (__FILE_58 * (____stream_291));// L237 -extern int (__fclose_295) (__FILE_58 * (____stream_291));// L237 -extern int (__fflush_299) (__FILE_58 * (____stream_297));// L242 -extern int (__fflush_unlocked_303) (__FILE_58 * (____stream_301));// L252 -extern __FILE_58 * ((__fopen_307) (const char * __restrict ____filename_305, const char * __restrict ____modes_306));// L272:L273 -extern __FILE_58 * ((__fopen_309) (const char * __restrict ____filename_305, const char * __restrict ____modes_306));// L272:L273 -extern __FILE_58 * ((__fopen_317) (const char * __restrict ____filename_315, const char * __restrict ____modes_316));// L283:L285 -extern __FILE_58 * ((__fopen_319) (const char * __restrict ____filename_315, const char * __restrict ____modes_316));// L283:L285 -extern __FILE_58 * ((__freopen_325) (const char * __restrict ____filename_311, const char * __restrict ____modes_312, __FILE_58 * __restrict ____stream_313));// L278:L280 -extern __FILE_58 * ((__freopen_331) (const char * __restrict ____filename_321, const char * __restrict ____modes_322, __FILE_58 * __restrict ____stream_323));// L286:L289 -extern __FILE_58 * ((__freopen_329) (const char * __restrict ____filename_321, const char * __restrict ____modes_322, __FILE_58 * __restrict ____stream_323));// L286:L289 -extern __FILE_58 * ((__freopen_327) (const char * __restrict ____filename_311, const char * __restrict ____modes_312, __FILE_58 * __restrict ____stream_313));// L278:L280 -extern __FILE_58 * ((__fdopen_335) (int ____fd_333, const char * (____modes_334)));// L306 -extern __FILE_58 * ((__fdopen_337) (int ____fd_333, const char * (____modes_334)));// L306 -extern __FILE_58 * ((__fmemopen_342) (void * (____s_339), __size_t_1 ____len_340, const char * (____modes_341)));// L319:L320 -extern __FILE_58 * ((__fmemopen_344) (void * (____s_339), __size_t_1 ____len_340, const char * (____modes_341)));// L319:L320 -extern __FILE_58 * ((__open_memstream_348) (char * (* (____bufloc_346)), __size_t_1 * (____sizeloc_347)));// L325 -extern __FILE_58 * ((__open_memstream_350) (char * (* (____bufloc_346)), __size_t_1 * (____sizeloc_347)));// L325 -extern void (__setbuf_355) (__FILE_58 * __restrict ____stream_352, char * __restrict ____buf_354);// L332 -extern void (__setbuf_357) (__FILE_58 * __restrict ____stream_352, char * __restrict ____buf_354);// L332 -extern int (__setvbuf_364) (__FILE_58 * __restrict ____stream_359, char * __restrict ____buf_361, int ____modes_362, __size_t_1 ____n_363);// L336:L337 -extern void (__setbuffer_369) (__FILE_58 * __restrict ____stream_365, char * __restrict ____buf_367, __size_t_1 ____size_368);// L343:L344 -extern void (__setlinebuf_373) (__FILE_58 * (____stream_371));// L347 -extern int (__fprintf_378) (__FILE_58 * __restrict ____stream_375, const char * __restrict ____format_377, ... );// L356:L357 -extern int (__fprintf_380) (__FILE_58 * __restrict ____stream_375, const char * __restrict ____format_377, ... );// L356:L357 -extern int (__printf_383) (const char * __restrict ____format_382, ... );// L362 -extern int (__sprintf_386) (char * __restrict ____s_384, const char * __restrict ____format_385, ... );// L364:L365 -extern int (__vfprintf_392) (__FILE_58 * __restrict ____s_387, const char * __restrict ____format_389, ____gnuc_va_list_82 ____arg_390);// L371:L372 -extern int (__vprintf_399) (const char * __restrict ____format_396, ____gnuc_va_list_82 ____arg_397);// L377 -extern int (__vsprintf_405) (char * __restrict ____s_401, const char * __restrict ____format_402, ____gnuc_va_list_82 ____arg_403);// L379:L380 -extern int (__snprintf_409) (char * __restrict ____s_406, __size_t_1 ____maxlen_407, const char * __restrict ____format_408, ... );// L386:L388 -extern int (__vsnprintf_415) (char * __restrict ____s_410, __size_t_1 ____maxlen_411, const char * __restrict ____format_412, ____gnuc_va_list_82 ____arg_413);// L390:L392 -extern int (__vdprintf_420) (int ____fd_416, const char * __restrict ____fmt_417, ____gnuc_va_list_82 ____arg_418);// L412:L414 -extern int (__dprintf_424) (int ____fd_422, const char * __restrict ____fmt_423, ... );// L415:L416 -extern int (__fscanf_428) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 -extern int (__fscanf_430) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 -extern int (__fscanf_432) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 -extern int (__fscanf_434) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 -extern int (__scanf_437) (const char * __restrict ____format_436, ... );// L431 -extern int (__scanf_438) (const char * __restrict ____format_436, ... );// L431 -extern int (__sscanf_441) (const char * __restrict ____s_439, const char * __restrict ____format_440, ... );// L433:L434 - - - - - - - -extern int (__vfscanf_468) (__FILE_58 * __restrict ____s_463, const char * __restrict ____format_465, ____gnuc_va_list_82 ____arg_466);// L471:L473 -extern int (__vfscanf_472) (__FILE_58 * __restrict ____s_463, const char * __restrict ____format_465, ____gnuc_va_list_82 ____arg_466);// L471:L473 -extern int (__vscanf_479) (const char * __restrict ____format_476, ____gnuc_va_list_82 ____arg_477);// L479:L480 -extern int (__vscanf_481) (const char * __restrict ____format_476, ____gnuc_va_list_82 ____arg_477);// L479:L480 -extern int (__vsscanf_487) (const char * __restrict ____s_483, const char * __restrict ____format_484, ____gnuc_va_list_82 ____arg_485);// L483:L485 - - - - - -extern int (__fgetc_520) (__FILE_58 * (____stream_518));// L531 -extern int (__getc_523) (__FILE_58 * (____stream_521));// L532 -extern int (__getchar_524) (void );// L538 -extern int (__getc_unlocked_527) (__FILE_58 * (____stream_525));// L550 -extern int (__getchar_unlocked_529) (void );// L551 -extern int (__fgetc_unlocked_532) (__FILE_58 * (____stream_530));// L561 -extern int (__fputc_537) (int ____c_534, __FILE_58 * (____stream_535));// L573 -extern int (__fputc_539) (int ____c_534, __FILE_58 * (____stream_535));// L573 -extern int (__putc_544) (int ____c_541, __FILE_58 * (____stream_542));// L574 -extern int (__putchar_546) (int ____c_545);// L580 -extern int (__fputc_unlocked_550) (int ____c_547, __FILE_58 * (____stream_548));// L594 -extern int (__putc_unlocked_555) (int ____c_552, __FILE_58 * (____stream_553));// L602 -extern int (__putchar_unlocked_558) (int ____c_557);// L603 -extern int (__getw_561) (__FILE_58 * (____stream_559));// L610 -extern int (__putw_566) (int ____w_563, __FILE_58 * (____stream_564));// L613 -extern char * ((__fgets_572) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 -extern char * ((__fgets_574) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 -extern char * ((__fgets_576) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 -extern char * ((__fgets_578) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 -extern ____ssize_t_49 (____getdelim_585) (char * (* __restrict ____lineptr_580), __size_t_1 * __restrict ____n_581, int ____delimiter_582, __FILE_58 * __restrict ____stream_583);// L665:L667 -extern ____ssize_t_49 (____getdelim_587) (char * (* __restrict ____lineptr_580), __size_t_1 * __restrict ____n_581, int ____delimiter_582, __FILE_58 * __restrict ____stream_583);// L665:L667 -extern ____ssize_t_49 (__getdelim_594) (char * (* __restrict ____lineptr_589), __size_t_1 * __restrict ____n_590, int ____delimiter_591, __FILE_58 * __restrict ____stream_592);// L668:L670 -extern ____ssize_t_49 (__getdelim_596) (char * (* __restrict ____lineptr_589), __size_t_1 * __restrict ____n_590, int ____delimiter_591, __FILE_58 * __restrict ____stream_592);// L668:L670 -extern ____ssize_t_49 (__getline_602) (char * (* __restrict ____lineptr_598), __size_t_1 * __restrict ____n_599, __FILE_58 * __restrict ____stream_600);// L678:L680 -extern ____ssize_t_49 (__getline_604) (char * (* __restrict ____lineptr_598), __size_t_1 * __restrict ____n_599, __FILE_58 * __restrict ____stream_600);// L678:L680 -extern int (__fputs_609) (const char * __restrict ____s_606, __FILE_58 * __restrict ____stream_607);// L689 -extern int (__fputs_611) (const char * __restrict ____s_606, __FILE_58 * __restrict ____stream_607);// L689 -extern int (__puts_614) (const char * (____s_613));// L695 -extern int (__ungetc_618) (int ____c_615, __FILE_58 * (____stream_616));// L702 -extern int (__fseek_654) (__FILE_58 * (____stream_650), long int ____off_652, int ____whence_653);// L749 -extern int (__fseek_656) (__FILE_58 * (____stream_650), long int ____off_652, int ____whence_653);// L749 -extern long int (__ftell_660) (__FILE_58 * (____stream_658));// L754 -extern long int (__ftell_662) (__FILE_58 * (____stream_658));// L754 -extern void (__rewind_666) (__FILE_58 * (____stream_664));// L759 -extern int (__fseeko_671) (__FILE_58 * (____stream_667), ____off_t_23 ____off_669, int ____whence_670);// L773 -extern int (__fseeko_679) (__FILE_58 * (____stream_675), ____off64_t_24 ____off_677, int ____whence_678);// L781:L783 -extern ____off_t_23 (__ftello_683) (__FILE_58 * (____stream_673));// L778 -extern ____off_t_23 (__ftello_685) (__FILE_58 * (____stream_673));// L778 -extern int (__fgetpos_693) (__FILE_58 * __restrict ____stream_689, __fpos_t_253 * __restrict ____pos_691);// L798 -extern ____off64_t_24 (__ftello_687) (__FILE_58 * (____stream_681));// L784 -extern int (__fgetpos_705) (__FILE_58 * __restrict ____stream_701, __fpos_t_255 * __restrict ____pos_703);// L806:L807 -extern int (__fsetpos_713) (__FILE_58 * (____stream_697), const __fpos_t_253 * (____pos_699));// L803 -extern int (__fsetpos_717) (__FILE_58 * (____stream_709), const __fpos_t_255 * (____pos_711));// L808:L809 -extern void (__clearerr_723) (__FILE_58 * (____stream_721));// L826 -extern int (__feof_726) (__FILE_58 * (____stream_724));// L828 -extern int (__feof_728) (__FILE_58 * (____stream_724));// L828 -extern int (__ferror_732) (__FILE_58 * (____stream_730));// L830 -extern int (__ferror_734) (__FILE_58 * (____stream_730));// L830 -extern void (__clearerr_unlocked_738) (__FILE_58 * (____stream_736));// L835 -extern int (__feof_unlocked_742) (__FILE_58 * (____stream_740));// L836 -extern int (__feof_unlocked_744) (__FILE_58 * (____stream_740));// L836 -extern int (__ferror_unlocked_748) (__FILE_58 * (____stream_746));// L837 -extern int (__ferror_unlocked_750) (__FILE_58 * (____stream_746));// L837 -extern void (__perror_753) (const char * (____s_752));// L846 -extern void (__perror_754) (const char * (____s_752));// L846 -extern int __sys_nerr_755;// L26 - -extern int (__fileno_761) (__FILE_58 * (____stream_757));// L858 -extern int (__fileno_759) (__FILE_58 * (____stream_757));// L858 -extern int (__fileno_unlocked_767) (__FILE_58 * (____stream_763));// L863 -extern int (__fileno_unlocked_765) (__FILE_58 * (____stream_763));// L863 -extern __FILE_58 * ((__popen_771) (const char * (____command_769), const char * (____modes_770)));// L872 -extern __FILE_58 * ((__popen_773) (const char * (____command_769), const char * (____modes_770)));// L872 -extern int (__pclose_777) (__FILE_58 * (____stream_775));// L878 -extern char * ((__ctermid_780) (char * (____s_779)));// L884 -extern void (__flockfile_783) (__FILE_58 * (____stream_781));// L912 -extern int (__ftrylockfile_787) (__FILE_58 * (____stream_785));// L916 -extern int (__ftrylockfile_789) (__FILE_58 * (____stream_785));// L916 -extern void (__funlockfile_793) (__FILE_58 * (____stream_791));// L919 +extern struct ___IO_FILE_99 * (__stdin_291);// L168 +extern struct ___IO_FILE_124 * (__stdin_292);// L168 +extern struct ___IO_FILE_99 * (__stdout_294);// L169 +extern struct ___IO_FILE_124 * (__stdout_295);// L169 +extern struct ___IO_FILE_99 * (__stderr_297);// L170 +extern struct ___IO_FILE_124 * (__stderr_298);// L170 +extern int (__remove_301) (const char * (____filename_300));// L178 +extern int (__rename_304) (const char * (____old_302), const char * (____new_303));// L180 +extern int (__renameat_309) (int ____oldfd_305, const char * (____old_306), int ____newfd_307, const char * (____new_308));// L185:L186 +extern __FILE_59 * ((__tmpfile_310) (void ));// L195 +extern __FILE_59 * ((__tmpfile_316) (void ));// L198 +extern __FILE_59 * ((__tmpfile_314) (void ));// L195 +extern __FILE_59 * ((__tmpfile_312) (void ));// L198 +extern char * ((__tmpnam_319) (char * (____s_318)));// L209 +extern char * ((__tmpnam_320) (char * (____s_318)));// L209 +extern char * ((__tmpnam_r_322) (char * (____s_321)));// L215 +extern char * ((__tmpnam_r_323) (char * (____s_321)));// L215 +extern char * ((__tempnam_326) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 +extern char * ((__tempnam_327) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 +extern int (__fclose_330) (__FILE_59 * (____stream_328));// L237 +extern int (__fclose_332) (__FILE_59 * (____stream_328));// L237 +extern int (__fflush_336) (__FILE_59 * (____stream_334));// L242 +extern int (__fflush_unlocked_340) (__FILE_59 * (____stream_338));// L252 +extern __FILE_59 * ((__fopen_344) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 +extern __FILE_59 * ((__fopen_346) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 +extern __FILE_59 * ((__fopen_354) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 +extern __FILE_59 * ((__fopen_356) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 +extern __FILE_59 * ((__freopen_362) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 +extern __FILE_59 * ((__freopen_368) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 +extern __FILE_59 * ((__freopen_366) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 +extern __FILE_59 * ((__freopen_364) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 +extern __FILE_59 * ((__fdopen_372) (int ____fd_370, const char * (____modes_371)));// L306 +extern __FILE_59 * ((__fdopen_374) (int ____fd_370, const char * (____modes_371)));// L306 +extern __FILE_59 * ((__fmemopen_379) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 +extern __FILE_59 * ((__fmemopen_381) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 +extern __FILE_59 * ((__open_memstream_385) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 +extern __FILE_59 * ((__open_memstream_387) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 +extern void (__setbuf_392) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 +extern void (__setbuf_394) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 +extern int (__setvbuf_401) (__FILE_59 * __restrict ____stream_396, char * __restrict ____buf_398, int ____modes_399, __size_t_1 ____n_400);// L336:L337 +extern void (__setbuffer_407) (__FILE_59 * __restrict ____stream_403, char * __restrict ____buf_405, __size_t_1 ____size_406);// L343:L344 +extern void (__setlinebuf_411) (__FILE_59 * (____stream_409));// L347 +extern int (__fprintf_416) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 +extern int (__fprintf_418) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 +extern int (__printf_421) (const char * __restrict ____format_420, ... );// L362 +extern int (__sprintf_424) (char * __restrict ____s_422, const char * __restrict ____format_423, ... );// L364:L365 +extern int (__vfprintf_430) (__FILE_59 * __restrict ____s_425, const char * __restrict ____format_427, ____gnuc_va_list_86 ____arg_428);// L371:L372 +extern int (__vprintf_437) (const char * __restrict ____format_434, ____gnuc_va_list_86 ____arg_435);// L377 +extern int (__vsprintf_443) (char * __restrict ____s_439, const char * __restrict ____format_440, ____gnuc_va_list_86 ____arg_441);// L379:L380 +extern int (__snprintf_448) (char * __restrict ____s_445, __size_t_1 ____maxlen_446, const char * __restrict ____format_447, ... );// L386:L388 +extern int (__vsnprintf_454) (char * __restrict ____s_449, __size_t_1 ____maxlen_450, const char * __restrict ____format_451, ____gnuc_va_list_86 ____arg_452);// L390:L392 +extern int (__vdprintf_460) (int ____fd_456, const char * __restrict ____fmt_457, ____gnuc_va_list_86 ____arg_458);// L412:L414 +extern int (__dprintf_464) (int ____fd_462, const char * __restrict ____fmt_463, ... );// L415:L416 +extern int (__fscanf_468) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_470) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_472) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_474) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__scanf_477) (const char * __restrict ____format_476, ... );// L431 +extern int (__scanf_478) (const char * __restrict ____format_476, ... );// L431 +extern int (__sscanf_481) (const char * __restrict ____s_479, const char * __restrict ____format_480, ... );// L433:L434 + + + + + + + +extern int (__vfscanf_509) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 +extern int (__vfscanf_513) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 +extern int (__vscanf_520) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 +extern int (__vscanf_522) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 +extern int (__vsscanf_528) (const char * __restrict ____s_524, const char * __restrict ____format_525, ____gnuc_va_list_86 ____arg_526);// L483:L485 + + + + + +extern int (__fgetc_563) (__FILE_59 * (____stream_561));// L531 +extern int (__getc_567) (__FILE_59 * (____stream_565));// L532 +extern int (__getchar_569) (void );// L538 +extern int (__getc_unlocked_572) (__FILE_59 * (____stream_570));// L550 +extern int (__getchar_unlocked_574) (void );// L551 +extern int (__fgetc_unlocked_577) (__FILE_59 * (____stream_575));// L561 +extern int (__fputc_582) (int ____c_579, __FILE_59 * (____stream_580));// L573 +extern int (__fputc_584) (int ____c_579, __FILE_59 * (____stream_580));// L573 +extern int (__putc_589) (int ____c_586, __FILE_59 * (____stream_587));// L574 +extern int (__putchar_592) (int ____c_591);// L580 +extern int (__fputc_unlocked_596) (int ____c_593, __FILE_59 * (____stream_594));// L594 +extern int (__putc_unlocked_601) (int ____c_598, __FILE_59 * (____stream_599));// L602 +extern int (__putchar_unlocked_604) (int ____c_603);// L603 +extern int (__getw_607) (__FILE_59 * (____stream_605));// L610 +extern int (__putw_612) (int ____w_609, __FILE_59 * (____stream_610));// L613 +extern char * ((__fgets_618) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_620) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_622) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_624) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern ____ssize_t_49 (____getdelim_631) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 +extern ____ssize_t_49 (____getdelim_635) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 +extern ____ssize_t_49 (__getdelim_644) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 +extern ____ssize_t_49 (__getdelim_648) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 +extern ____ssize_t_49 (__getline_656) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 +extern ____ssize_t_49 (__getline_660) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 +extern int (__fputs_667) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 +extern int (__fputs_669) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 +extern int (__puts_672) (const char * (____s_671));// L695 +extern int (__ungetc_676) (int ____c_673, __FILE_59 * (____stream_674));// L702 +extern int (__fseek_714) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 +extern int (__fseek_716) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 +extern long int (__ftell_720) (__FILE_59 * (____stream_718));// L754 +extern long int (__ftell_722) (__FILE_59 * (____stream_718));// L754 +extern void (__rewind_726) (__FILE_59 * (____stream_724));// L759 +extern int (__fseeko_733) (__FILE_59 * (____stream_728), ____off_t_23 ____off_730, int ____whence_732);// L773 +extern int (__fseeko_744) (__FILE_59 * (____stream_739), ____off64_t_24 ____off_741, int ____whence_743);// L781:L783 +extern ____off_t_23 (__ftello_758) (__FILE_59 * (____stream_737));// L778 +extern ____off_t_23 (__ftello_750) (__FILE_59 * (____stream_737));// L778 +extern int (__fgetpos_766) (__FILE_59 * __restrict ____stream_762, __fpos_t_287 * __restrict ____pos_764);// L798 +extern ____off64_t_24 (__ftello_754) (__FILE_59 * (____stream_748));// L784 +extern int (__fgetpos_778) (__FILE_59 * __restrict ____stream_774, __fpos_t_289 * __restrict ____pos_776);// L806:L807 +extern int (__fsetpos_786) (__FILE_59 * (____stream_770), const __fpos_t_287 * (____pos_772));// L803 +extern int (__fsetpos_790) (__FILE_59 * (____stream_782), const __fpos_t_289 * (____pos_784));// L808:L809 +extern void (__clearerr_796) (__FILE_59 * (____stream_794));// L826 +extern int (__feof_800) (__FILE_59 * (____stream_798));// L828 +extern int (__feof_802) (__FILE_59 * (____stream_798));// L828 +extern int (__ferror_806) (__FILE_59 * (____stream_804));// L830 +extern int (__ferror_808) (__FILE_59 * (____stream_804));// L830 +extern void (__clearerr_unlocked_812) (__FILE_59 * (____stream_810));// L835 +extern int (__feof_unlocked_816) (__FILE_59 * (____stream_814));// L836 +extern int (__feof_unlocked_818) (__FILE_59 * (____stream_814));// L836 +extern int (__ferror_unlocked_822) (__FILE_59 * (____stream_820));// L837 +extern int (__ferror_unlocked_824) (__FILE_59 * (____stream_820));// L837 +extern void (__perror_827) (const char * (____s_826));// L846 +extern void (__perror_828) (const char * (____s_826));// L846 +extern int __sys_nerr_829;// L26 + +extern int (__fileno_835) (__FILE_59 * (____stream_831));// L858 +extern int (__fileno_833) (__FILE_59 * (____stream_831));// L858 +extern int (__fileno_unlocked_841) (__FILE_59 * (____stream_837));// L863 +extern int (__fileno_unlocked_839) (__FILE_59 * (____stream_837));// L863 +extern __FILE_59 * ((__popen_845) (const char * (____command_843), const char * (____modes_844)));// L872 +extern __FILE_59 * ((__popen_847) (const char * (____command_843), const char * (____modes_844)));// L872 +extern int (__pclose_851) (__FILE_59 * (____stream_849));// L878 +extern char * ((__ctermid_854) (char * (____s_853)));// L884 +extern void (__flockfile_857) (__FILE_59 * (____stream_855));// L912 +extern int (__ftrylockfile_861) (__FILE_59 * (____stream_859));// L916 +extern int (__ftrylockfile_863) (__FILE_59 * (____stream_859));// L916 +extern void (__funlockfile_867) (__FILE_59 * (____stream_865));// L919 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ @@ -1701,86 +2427,112 @@ extern void (__funlockfile_793) (__FILE_58 * (____stream_791));// L919 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____sprintf_chk_825) (char * __restrict ____s_821, int ____flag_822, __size_t_1 ____slen_823, const char * __restrict ____format_824, ... );// L23:L24 -extern int (____vsprintf_chk_832) (char * __restrict ____s_826, int ____flag_827, __size_t_1 ____slen_828, const char * __restrict ____format_829, ____gnuc_va_list_82 ____ap_830);// L25:L27 +extern int (____sprintf_chk_899) (char * __restrict ____s_895, int ____flag_896, __size_t_1 ____slen_897, const char * __restrict ____format_898, ... );// L23:L24 +extern int (____vsprintf_chk_906) (char * __restrict ____s_900, int ____flag_901, __size_t_1 ____slen_902, const char * __restrict ____format_903, ____gnuc_va_list_86 ____ap_904);// L25:L27 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____snprintf_chk_846) (char * __restrict ____s_841, __size_t_1 ____n_842, int ____flag_843, __size_t_1 ____slen_844, const char * __restrict ____format_845, ... );// L52:L54 -extern int (____vsnprintf_chk_854) (char * __restrict ____s_847, __size_t_1 ____n_848, int ____flag_849, __size_t_1 ____slen_850, const char * __restrict ____format_851, ____gnuc_va_list_82 ____ap_852);// L55:L57 +extern int (____snprintf_chk_920) (char * __restrict ____s_915, __size_t_1 ____n_916, int ____flag_917, __size_t_1 ____slen_918, const char * __restrict ____format_919, ... );// L52:L54 +extern int (____vsnprintf_chk_928) (char * __restrict ____s_921, __size_t_1 ____n_922, int ____flag_923, __size_t_1 ____slen_924, const char * __restrict ____format_925, ____gnuc_va_list_86 ____ap_926);// L55:L57 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____fprintf_chk_869) (__FILE_58 * __restrict ____stream_865, int ____flag_867, const char * __restrict ____format_868, ... );// L85:L86 -extern int (____printf_chk_873) (int ____flag_871, const char * __restrict ____format_872, ... );// L87 -extern int (____vfprintf_chk_880) (__FILE_58 * __restrict ____stream_874, int ____flag_876, const char * __restrict ____format_877, ____gnuc_va_list_82 ____ap_878);// L88:L89 -extern int (____vprintf_chk_888) (int ____flag_884, const char * __restrict ____format_885, ____gnuc_va_list_82 ____ap_886);// L90:L91 +extern int (____fprintf_chk_943) (__FILE_59 * __restrict ____stream_939, int ____flag_941, const char * __restrict ____format_942, ... );// L85:L86 +extern int (____printf_chk_947) (int ____flag_945, const char * __restrict ____format_946, ... );// L87 +extern int (____vfprintf_chk_954) (__FILE_59 * __restrict ____stream_948, int ____flag_950, const char * __restrict ____format_951, ____gnuc_va_list_86 ____ap_952);// L88:L89 +extern int (____vprintf_chk_962) (int ____flag_958, const char * __restrict ____format_959, ____gnuc_va_list_86 ____ap_960);// L90:L91 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____dprintf_chk_910) (int ____fd_907, int ____flag_908, const char * __restrict ____fmt_909, ... );// L131:L132 -extern int (____vdprintf_chk_916) (int ____fd_911, int ____flag_912, const char * __restrict ____fmt_913, ____gnuc_va_list_82 ____arg_914);// L133:L135 +extern int (____dprintf_chk_984) (int ____fd_981, int ____flag_982, const char * __restrict ____fmt_983, ... );// L131:L132 +extern int (____vdprintf_chk_990) (int ____fd_985, int ____flag_986, const char * __restrict ____fmt_987, ____gnuc_va_list_86 ____arg_988);// L133:L135 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern char * ((____fgets_chk_930) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 -extern char * ((____fgets_chk_932) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 -extern char * ((____fgets_chk_934) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 -extern char * ((____fgets_alias_940) (char * __restrict ____s_936, int ____n_937, __FILE_58 * __restrict ____stream_938));// L243:L245 -extern char * ((____fgets_chk_warn_947) (char * __restrict ____s_942, __size_t_1 ____size_943, int ____n_944, __FILE_58 * __restrict ____stream_945));// L246:L250 +extern char * ((____fgets_chk_1004) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_chk_1006) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_chk_1008) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_alias_1014) (char * __restrict ____s_1010, int ____n_1011, __FILE_59 * __restrict ____stream_1012));// L243:L245 +extern char * ((____fgets_chk_warn_1021) (char * __restrict ____s_1016, __size_t_1 ____size_1017, int ____n_1018, __FILE_59 * __restrict ____stream_1019));// L246:L250 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ +// typedef moved to top of scope +// typedef moved to top of scope /* no function due to type errors in the function prototype */ -extern void * ((__memmove_1026) (void * (____dest_1023), const void * (____src_1024), __size_t_1 ____n_1025));// L46:L47 -extern void * ((__memset_1035) (void * (____s_1032), int ____c_1033, __size_t_1 ____n_1034));// L62 -extern void * ((__memset_1036) (void * (____s_1032), int ____c_1033, __size_t_1 ____n_1034));// L62 -extern int (__memcmp_1040) (const void * (____s1_1037), const void * (____s2_1038), __size_t_1 ____n_1039);// L65:L66 -extern void * ((__memchr_1044) (const void * (____s_1041), int ____c_1042, __size_t_1 ____n_1043));// L92:L93 -extern char * ((__strcpy_1047) (char * __restrict ____dest_1045, const char * __restrict ____src_1046));// L125:L126 -extern char * ((__strncpy_1051) (char * __restrict ____dest_1048, const char * __restrict ____src_1049, __size_t_1 ____n_1050));// L128:L130 -extern char * ((__strcat_1054) (char * __restrict ____dest_1052, const char * __restrict ____src_1053));// L133:L134 -extern char * ((__strncat_1058) (char * __restrict ____dest_1055, const char * __restrict ____src_1056, __size_t_1 ____n_1057));// L136:L137 -extern int (__strcmp_1061) (const char * (____s1_1059), const char * (____s2_1060));// L140:L141 -extern int (__strncmp_1065) (const char * (____s1_1062), const char * (____s2_1063), __size_t_1 ____n_1064);// L143:L144 -extern int (__strcoll_1068) (const char * (____s1_1066), const char * (____s2_1067));// L147:L148 -extern __size_t_1 (__strxfrm_1072) (char * __restrict ____dest_1069, const char * __restrict ____src_1070, __size_t_1 ____n_1071);// L150:L152 -// typedef moved to top of scope -// typedef moved to top of scope -extern int (__strcoll_l_1085) (const char * (____s1_1082), const char * (____s2_1083), ____locale_t_1080 ____l_1084);// L162:L163 -extern __size_t_1 (__strxfrm_l_1090) (char * (____dest_1086), const char * (____src_1087), __size_t_1 ____n_1088, ____locale_t_1080 ____l_1089);// L165:L166 -extern char * ((__strdup_1092) (const char * (____s_1091)));// L171:L172 -extern char * ((__strndup_1095) (const char * (____string_1093), __size_t_1 ____n_1094));// L179:L180 -extern char * ((__strchr_1098) (const char * (____s_1096), int ____c_1097));// L231:L232 -extern char * ((__strchr_1099) (const char * (____s_1096), int ____c_1097));// L231:L232 -extern char * ((__strrchr_1102) (const char * (____s_1100), int ____c_1101));// L258:L259 -extern __size_t_1 (__strcspn_1105) (const char * (____s_1103), const char * (____reject_1104));// L280:L281 -extern __size_t_1 (__strspn_1108) (const char * (____s_1106), const char * (____accept_1107));// L284:L285 -extern char * ((__strpbrk_1111) (const char * (____s_1109), const char * (____accept_1110)));// L310:L311 -extern char * ((__strstr_1114) (const char * (____haystack_1112), const char * (____needle_1113)));// L337:L338 -extern char * ((__strtok_1117) (char * __restrict ____s_1115, const char * __restrict ____delim_1116));// L343:L344 -extern char * ((____strtok_r_1121) (char * __restrict ____s_1118, const char * __restrict ____delim_1119, char * (* __restrict ____save_ptr_1120)));// L349:L352 -extern char * ((__strtok_r_1125) (char * __restrict ____s_1122, const char * __restrict ____delim_1123, char * (* __restrict ____save_ptr_1124)));// L354:L356 -extern __size_t_1 (__strlen_1127) (const char * (____s_1126));// L394:L395 -extern __size_t_1 (__strlen_1128) (const char * (____s_1126));// L394:L395 -extern __size_t_1 (__strnlen_1131) (const char * (____string_1129), __size_t_1 ____maxlen_1130);// L401:L402 -extern char * ((__strerror_1133) (int ____errnum_1132));// L408 -extern char * ((__strerror_1134) (int ____errnum_1132));// L408 -extern int (__strerror_r_1138) (int ____errnum_1135, char * (____buf_1136), __size_t_1 ____buflen_1137);// L422:L424 -extern char * ((__strerror_l_1141) (int ____errnum_1139, ____locale_t_1080 ____l_1140));// L440 -extern void (____bzero_1144) (void * (____s_1142), __size_t_1 ____n_1143);// L446 -extern void (____bzero_1145) (void * (____s_1142), __size_t_1 ____n_1143);// L446 -extern void (__bcopy_1149) (const void * (____src_1146), void * (____dest_1147), __size_t_1 ____n_1148);// L450:L451 -extern void (__bzero_1152) (void * (____s_1150), __size_t_1 ____n_1151);// L454 -extern int (__bcmp_1156) (const void * (____s1_1153), const void * (____s2_1154), __size_t_1 ____n_1155);// L457:L458 -extern char * ((__index_1159) (const char * (____s_1157), int ____c_1158));// L484:L485 -extern char * ((__rindex_1162) (const char * (____s_1160), int ____c_1161));// L512:L513 -extern int (__ffs_1164) (int ____i_1163);// L518 -extern int (__strcasecmp_1167) (const char * (____s1_1165), const char * (____s2_1166));// L529:L530 -extern int (__strncasecmp_1171) (const char * (____s1_1168), const char * (____s2_1169), __size_t_1 ____n_1170);// L533:L534 -extern char * ((__strsep_1174) (char * (* __restrict ____stringp_1172), const char * __restrict ____delim_1173));// L552:L554 -extern char * ((__strsignal_1176) (int ____sig_1175));// L559 -extern char * ((____stpcpy_1179) (char * __restrict ____dest_1177, const char * __restrict ____src_1178));// L562:L563 -extern char * ((__stpcpy_1182) (char * __restrict ____dest_1180, const char * __restrict ____src_1181));// L564:L565 -extern char * ((____stpncpy_1186) (char * __restrict ____dest_1183, const char * __restrict ____src_1184, __size_t_1 ____n_1185));// L569:L571 -extern char * ((__stpncpy_1190) (char * __restrict ____dest_1187, const char * __restrict ____src_1188, __size_t_1 ____n_1189));// L572:L574 +extern void * ((__memmove_1105) (void * (____dest_1101), const void * (____src_1102), __size_t_1 ____n_1103));// L46:L47 +extern void * ((__memmove_1106) (void * (____dest_1101), const void * (____src_1102), __size_t_1091 ____n_1104));// L46:L47 +extern void * ((__memset_1118) (void * (____s_1114), int ____c_1115, __size_t_1 ____n_1116));// L62 +extern void * ((__memset_1119) (void * (____s_1114), int ____c_1115, __size_t_1091 ____n_1117));// L62 +extern void * ((__memset_1120) (void * (____s_1114), int ____c_1115, __size_t_1 ____n_1116));// L62 +extern void * ((__memset_1121) (void * (____s_1114), int ____c_1115, __size_t_1091 ____n_1117));// L62 +extern int (__memcmp_1126) (const void * (____s1_1122), const void * (____s2_1123), __size_t_1 ____n_1124);// L65:L66 +extern int (__memcmp_1127) (const void * (____s1_1122), const void * (____s2_1123), __size_t_1091 ____n_1125);// L65:L66 +extern void * ((__memchr_1132) (const void * (____s_1128), int ____c_1129, __size_t_1 ____n_1130));// L92:L93 +extern void * ((__memchr_1133) (const void * (____s_1128), int ____c_1129, __size_t_1091 ____n_1131));// L92:L93 +extern char * ((__strcpy_1136) (char * __restrict ____dest_1134, const char * __restrict ____src_1135));// L125:L126 +extern char * ((__strncpy_1141) (char * __restrict ____dest_1137, const char * __restrict ____src_1138, __size_t_1 ____n_1139));// L128:L130 +extern char * ((__strncpy_1142) (char * __restrict ____dest_1137, const char * __restrict ____src_1138, __size_t_1091 ____n_1140));// L128:L130 +extern char * ((__strcat_1145) (char * __restrict ____dest_1143, const char * __restrict ____src_1144));// L133:L134 +extern char * ((__strncat_1150) (char * __restrict ____dest_1146, const char * __restrict ____src_1147, __size_t_1 ____n_1148));// L136:L137 +extern char * ((__strncat_1151) (char * __restrict ____dest_1146, const char * __restrict ____src_1147, __size_t_1091 ____n_1149));// L136:L137 +extern int (__strcmp_1154) (const char * (____s1_1152), const char * (____s2_1153));// L140:L141 +extern int (__strncmp_1159) (const char * (____s1_1155), const char * (____s2_1156), __size_t_1 ____n_1157);// L143:L144 +extern int (__strncmp_1160) (const char * (____s1_1155), const char * (____s2_1156), __size_t_1091 ____n_1158);// L143:L144 +extern int (__strcoll_1163) (const char * (____s1_1161), const char * (____s2_1162));// L147:L148 +extern __size_t_1 (__strxfrm_1168) (char * __restrict ____dest_1164, const char * __restrict ____src_1165, __size_t_1 ____n_1166);// L150:L152 +extern __size_t_1091 (__strxfrm_1169) (char * __restrict ____dest_1164, const char * __restrict ____src_1165, __size_t_1091 ____n_1167);// L150:L152 +// typedef moved to top of scope +// typedef moved to top of scope +extern int (__strcoll_l_1182) (const char * (____s1_1179), const char * (____s2_1180), ____locale_t_1177 ____l_1181);// L162:L163 +extern __size_t_1 (__strxfrm_l_1188) (char * (____dest_1183), const char * (____src_1184), __size_t_1 ____n_1185, ____locale_t_1177 ____l_1187);// L165:L166 +extern __size_t_1091 (__strxfrm_l_1189) (char * (____dest_1183), const char * (____src_1184), __size_t_1091 ____n_1186, ____locale_t_1177 ____l_1187);// L165:L166 +extern char * ((__strdup_1191) (const char * (____s_1190)));// L171:L172 +extern char * ((__strndup_1195) (const char * (____string_1192), __size_t_1 ____n_1193));// L179:L180 +extern char * ((__strndup_1196) (const char * (____string_1192), __size_t_1091 ____n_1194));// L179:L180 +extern char * ((__strchr_1199) (const char * (____s_1197), int ____c_1198));// L231:L232 +extern char * ((__strrchr_1202) (const char * (____s_1200), int ____c_1201));// L258:L259 +extern __size_t_1 (__strcspn_1205) (const char * (____s_1203), const char * (____reject_1204));// L280:L281 +extern __size_t_1091 (__strcspn_1206) (const char * (____s_1203), const char * (____reject_1204));// L280:L281 +extern __size_t_1 (__strspn_1209) (const char * (____s_1207), const char * (____accept_1208));// L284:L285 +extern __size_t_1091 (__strspn_1210) (const char * (____s_1207), const char * (____accept_1208));// L284:L285 +extern char * ((__strpbrk_1213) (const char * (____s_1211), const char * (____accept_1212)));// L310:L311 +extern char * ((__strstr_1216) (const char * (____haystack_1214), const char * (____needle_1215)));// L337:L338 +extern char * ((__strtok_1219) (char * __restrict ____s_1217, const char * __restrict ____delim_1218));// L343:L344 +extern char * ((____strtok_r_1223) (char * __restrict ____s_1220, const char * __restrict ____delim_1221, char * (* __restrict ____save_ptr_1222)));// L349:L352 +extern char * ((__strtok_r_1227) (char * __restrict ____s_1224, const char * __restrict ____delim_1225, char * (* __restrict ____save_ptr_1226)));// L354:L356 +extern __size_t_1 (__strlen_1229) (const char * (____s_1228));// L394:L395 +extern __size_t_1091 (__strlen_1230) (const char * (____s_1228));// L394:L395 +extern __size_t_1 (__strlen_1231) (const char * (____s_1228));// L394:L395 +extern __size_t_1091 (__strlen_1232) (const char * (____s_1228));// L394:L395 +extern __size_t_1 (__strnlen_1236) (const char * (____string_1233), __size_t_1 ____maxlen_1234);// L401:L402 +extern __size_t_1091 (__strnlen_1237) (const char * (____string_1233), __size_t_1091 ____maxlen_1235);// L401:L402 +extern char * ((__strerror_1239) (int ____errnum_1238));// L408 +extern char * ((__strerror_1240) (int ____errnum_1238));// L408 +extern int (__strerror_r_1245) (int ____errnum_1241, char * (____buf_1242), __size_t_1 ____buflen_1243);// L422:L424 +extern int (__strerror_r_1246) (int ____errnum_1241, char * (____buf_1242), __size_t_1091 ____buflen_1244);// L422:L424 +extern char * ((__strerror_l_1249) (int ____errnum_1247, ____locale_t_1177 ____l_1248));// L440 +extern void (____bzero_1253) (void * (____s_1250), __size_t_1 ____n_1251);// L446 +extern void (____bzero_1254) (void * (____s_1250), __size_t_1091 ____n_1252);// L446 +extern void (____bzero_1255) (void * (____s_1250), __size_t_1 ____n_1251);// L446 +extern void (____bzero_1256) (void * (____s_1250), __size_t_1091 ____n_1252);// L446 +extern void (__bcopy_1261) (const void * (____src_1257), void * (____dest_1258), __size_t_1 ____n_1259);// L450:L451 +extern void (__bcopy_1262) (const void * (____src_1257), void * (____dest_1258), __size_t_1091 ____n_1260);// L450:L451 +extern void (__bzero_1266) (void * (____s_1263), __size_t_1 ____n_1264);// L454 +extern void (__bzero_1267) (void * (____s_1263), __size_t_1091 ____n_1265);// L454 +extern int (__bcmp_1272) (const void * (____s1_1268), const void * (____s2_1269), __size_t_1 ____n_1270);// L457:L458 +extern int (__bcmp_1273) (const void * (____s1_1268), const void * (____s2_1269), __size_t_1091 ____n_1271);// L457:L458 +extern char * ((__index_1276) (const char * (____s_1274), int ____c_1275));// L484:L485 +extern char * ((__rindex_1279) (const char * (____s_1277), int ____c_1278));// L512:L513 +extern int (__ffs_1281) (int ____i_1280);// L518 +extern int (__strcasecmp_1284) (const char * (____s1_1282), const char * (____s2_1283));// L529:L530 +extern int (__strncasecmp_1289) (const char * (____s1_1285), const char * (____s2_1286), __size_t_1 ____n_1287);// L533:L534 +extern int (__strncasecmp_1290) (const char * (____s1_1285), const char * (____s2_1286), __size_t_1091 ____n_1288);// L533:L534 +extern char * ((__strsep_1293) (char * (* __restrict ____stringp_1291), const char * __restrict ____delim_1292));// L552:L554 +extern char * ((__strsignal_1295) (int ____sig_1294));// L559 +extern char * ((____stpcpy_1298) (char * __restrict ____dest_1296, const char * __restrict ____src_1297));// L562:L563 +extern char * ((__stpcpy_1301) (char * __restrict ____dest_1299, const char * __restrict ____src_1300));// L564:L565 +extern char * ((____stpncpy_1306) (char * __restrict ____dest_1302, const char * __restrict ____src_1303, __size_t_1 ____n_1304));// L569:L571 +extern char * ((____stpncpy_1307) (char * __restrict ____dest_1302, const char * __restrict ____src_1303, __size_t_1091 ____n_1305));// L569:L571 +extern char * ((__stpncpy_1312) (char * __restrict ____dest_1308, const char * __restrict ____src_1309, __size_t_1 ____n_1310));// L572:L574 +extern char * ((__stpncpy_1313) (char * __restrict ____dest_1308, const char * __restrict ____src_1309, __size_t_1091 ____n_1311));// L572:L574 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ @@ -1788,16 +2540,86 @@ extern char * ((__stpncpy_1190) (char * __restrict ____dest_1187, const char /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern char * ((____stpncpy_chk_1219) (char * (____dest_1215), const char * (____src_1216), __size_t_1 ____n_1217, __size_t_1 ____destlen_1218));// L130:L131 -extern char * ((____stpncpy_alias_1223) (char * (____dest_1220), const char * (____src_1221), __size_t_1 ____n_1222));// L132:L133 +extern char * ((____stpncpy_chk_1355) (char * (____dest_1349), const char * (____src_1350), __size_t_1 ____n_1351, __size_t_1 ____destlen_1353));// L130:L131 +extern char * ((____stpncpy_chk_1356) (char * (____dest_1349), const char * (____src_1350), __size_t_1091 ____n_1352, __size_t_1091 ____destlen_1354));// L130:L131 +extern char * ((____stpncpy_alias_1361) (char * (____dest_1357), const char * (____src_1358), __size_t_1 ____n_1359));// L132:L133 +extern char * ((____stpncpy_alias_1362) (char * (____dest_1357), const char * (____src_1358), __size_t_1091 ____n_1360));// L132:L133 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ // typedef moved to top of scope // typedef moved to top of scope -static __inline unsigned int (____bswap_32_1243) (unsigned int ____bsx_1242) { +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +static __inline unsigned int (____bswap_32_1442) (unsigned int ____bsx_1441) { + +if (__static_condition_default_1443) { + +{ +{ + + + +__static_type_error("invalid type found in return expression"); +} +} + + +} +} +static __inline ____uint64_t_13 (____bswap_64_1446) (____uint64_t_13 ____bsx_1444) { -if (__static_condition_default_1244) { +if (__static_condition_default_1448) { { { @@ -1811,9 +2633,9 @@ __static_type_error("invalid type found in return expression"); } } -static __inline ____uint64_t_13 (____bswap_64_1246) (____uint64_t_13 ____bsx_1245) { +static __inline ____uint64_t_1396 (____bswap_64_1447) (____uint64_t_1396 ____bsx_1445) { -if (__static_condition_default_1244) { +if (__static_condition_default_1449) { { { @@ -1827,40 +2649,65 @@ __static_type_error("invalid type found in return expression"); } } -union __wait_1258 ;// L66 +union __wait_1461 ;// L66 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern __size_t_1 (____ctype_get_mb_cur_max_1282) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_1283) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_1284) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_1285) (void );// L139 -extern double (__atof_1287) (const char * (____nptr_1286));// L144:L145 -extern double (__atof_1288) (const char * (____nptr_1286));// L144:L145 -extern int (__atoi_1290) (const char * (____nptr_1289));// L147:L148 -extern int (__atoi_1291) (const char * (____nptr_1289));// L147:L148 -extern long int (__atol_1293) (const char * (____nptr_1292));// L150:L151 -extern long int (__atol_1294) (const char * (____nptr_1292));// L150:L151 -extern long long int (__atoll_1296) (const char * (____nptr_1295));// L157:L158 -extern long long int (__atoll_1297) (const char * (____nptr_1295));// L157:L158 -extern double (__strtod_1300) (const char * __restrict ____nptr_1298, char * (* __restrict ____endptr_1299));// L164:L166 -extern float (__strtof_1303) (const char * __restrict ____nptr_1301, char * (* __restrict ____endptr_1302));// L172:L173 -extern long double (__strtold_1306) (const char * __restrict ____nptr_1304, char * (* __restrict ____endptr_1305));// L175:L177 -extern long int (__strtol_1310) (const char * __restrict ____nptr_1307, char * (* __restrict ____endptr_1308), int ____base_1309);// L183:L185 -extern unsigned long int (__strtoul_1314) (const char * __restrict ____nptr_1311, char * (* __restrict ____endptr_1312), int ____base_1313);// L187:L189 -extern long long int (__strtoq_1318) (const char * __restrict ____nptr_1315, char * (* __restrict ____endptr_1316), int ____base_1317);// L195:L197 -extern unsigned long long int (__strtouq_1322) (const char * __restrict ____nptr_1319, char * (* __restrict ____endptr_1320), int ____base_1321);// L200:L202 -extern long long int (__strtoll_1326) (const char * __restrict ____nptr_1323, char * (* __restrict ____endptr_1324), int ____base_1325);// L209:L211 -extern long long int (__strtoll_1327) (const char * __restrict ____nptr_1323, char * (* __restrict ____endptr_1324), int ____base_1325);// L209:L211 -extern unsigned long long int (__strtoull_1331) (const char * __restrict ____nptr_1328, char * (* __restrict ____endptr_1329), int ____base_1330);// L214:L216 +extern __size_t_1 (____ctype_get_mb_cur_max_1485) (void );// L139 +extern __size_t_1091 (____ctype_get_mb_cur_max_1486) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_1487) (void );// L139 +extern __size_t_1091 (____ctype_get_mb_cur_max_1488) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_1489) (void );// L139 +extern __size_t_1091 (____ctype_get_mb_cur_max_1490) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_1491) (void );// L139 +extern __size_t_1091 (____ctype_get_mb_cur_max_1492) (void );// L139 +extern double (__atof_1494) (const char * (____nptr_1493));// L144:L145 +extern double (__atof_1495) (const char * (____nptr_1493));// L144:L145 +extern int (__atoi_1497) (const char * (____nptr_1496));// L147:L148 +extern int (__atoi_1498) (const char * (____nptr_1496));// L147:L148 +extern long int (__atol_1500) (const char * (____nptr_1499));// L150:L151 +extern long int (__atol_1501) (const char * (____nptr_1499));// L150:L151 +extern long long int (__atoll_1503) (const char * (____nptr_1502));// L157:L158 +extern long long int (__atoll_1504) (const char * (____nptr_1502));// L157:L158 +extern double (__strtod_1507) (const char * __restrict ____nptr_1505, char * (* __restrict ____endptr_1506));// L164:L166 +extern float (__strtof_1510) (const char * __restrict ____nptr_1508, char * (* __restrict ____endptr_1509));// L172:L173 +extern long double (__strtold_1513) (const char * __restrict ____nptr_1511, char * (* __restrict ____endptr_1512));// L175:L177 +extern long int (__strtol_1517) (const char * __restrict ____nptr_1514, char * (* __restrict ____endptr_1515), int ____base_1516);// L183:L185 +extern unsigned long int (__strtoul_1521) (const char * __restrict ____nptr_1518, char * (* __restrict ____endptr_1519), int ____base_1520);// L187:L189 +extern long long int (__strtoq_1525) (const char * __restrict ____nptr_1522, char * (* __restrict ____endptr_1523), int ____base_1524);// L195:L197 +extern unsigned long long int (__strtouq_1529) (const char * __restrict ____nptr_1526, char * (* __restrict ____endptr_1527), int ____base_1528);// L200:L202 +extern long long int (__strtoll_1533) (const char * __restrict ____nptr_1530, char * (* __restrict ____endptr_1531), int ____base_1532);// L209:L211 +extern long long int (__strtoll_1534) (const char * __restrict ____nptr_1530, char * (* __restrict ____endptr_1531), int ____base_1532);// L209:L211 +extern unsigned long long int (__strtoull_1538) (const char * __restrict ____nptr_1535, char * (* __restrict ____endptr_1536), int ____base_1537);// L214:L216 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ __extension__/* no function due to type errors in the function prototype */ -extern char * ((__l64a_1336) (long int ____n_1335));// L305 -extern char * ((__l64a_1337) (long int ____n_1335));// L305 -extern long int (__a64l_1339) (const char * (____s_1338));// L308:L309 -extern long int (__a64l_1340) (const char * (____s_1338));// L308:L309 +extern char * ((__l64a_1543) (long int ____n_1542));// L305 +extern char * ((__l64a_1544) (long int ____n_1542));// L305 +extern long int (__a64l_1546) (const char * (____s_1545));// L308:L309 +extern long int (__a64l_1547) (const char * (____s_1545));// L308:L309 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope @@ -1902,9 +2749,121 @@ extern long int (__a64l_1340) (const char * (____s_1338));// L308:L309 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -static __inline unsigned int (____bswap_32_1383) (unsigned int ____bsx_1382) { +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +static __inline unsigned int (____bswap_32_1736) (unsigned int ____bsx_1735) { + +if (__static_condition_default_1737) { + +{ +{ -if (__static_condition_default_1384) { + + +__static_type_error("invalid type found in return expression"); +} +} + + +} +} +static __inline ____uint64_t_13 (____bswap_64_1740) (____uint64_t_13 ____bsx_1738) { + +if (__static_condition_default_1742) { { { @@ -1918,9 +2877,9 @@ __static_type_error("invalid type found in return expression"); } } -static __inline ____uint64_t_13 (____bswap_64_1386) (____uint64_t_13 ____bsx_1385) { +static __inline ____uint64_t_1559 (____bswap_64_1741) (____uint64_t_1559 ____bsx_1739) { -if (__static_condition_default_1384) { +if (__static_condition_default_1743) { { { @@ -1937,24 +2896,28 @@ __static_type_error("invalid type found in return expression"); // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __timespec_1393 ;// L120 -struct __timeval_1396 ;// L30 +struct __timespec_1750 ;// L120 + +struct __timeval_1760 ;// L30 + +// typedef moved to top of scope +// typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern int (__select_1416) (int ____nfds_1409, __fd_set_1406 * __restrict ____readfds_1410, __fd_set_1406 * __restrict ____writefds_1411, __fd_set_1406 * __restrict ____exceptfds_1412, struct __timeval_1396 * __restrict ____timeout_1414);// L106:L109 -extern int (__select_1417) (int ____nfds_1409, __fd_set_1406 * __restrict ____readfds_1410, __fd_set_1406 * __restrict ____writefds_1411, __fd_set_1406 * __restrict ____exceptfds_1412, struct __forward_tag_reference_1413 * __restrict ____timeout_1415);// L106:L109 -extern int (__pselect_1426) (int ____nfds_1418, __fd_set_1406 * __restrict ____readfds_1419, __fd_set_1406 * __restrict ____writefds_1420, __fd_set_1406 * __restrict ____exceptfds_1421, const struct __timespec_1393 * __restrict ____timeout_1423, const ____sigset_t_1391 * __restrict ____sigmask_1425);// L118:L122 -extern int (__pselect_1427) (int ____nfds_1418, __fd_set_1406 * __restrict ____readfds_1419, __fd_set_1406 * __restrict ____writefds_1420, __fd_set_1406 * __restrict ____exceptfds_1421, const struct __forward_tag_reference_1422 * __restrict ____timeout_1424, const ____sigset_t_1391 * __restrict ____sigmask_1425);// L118:L122 -extern long int (____fdelt_chk_1429) (long int ____d_1428);// L24 -extern long int (____fdelt_warn_1431) (long int ____d_1430);// L25:L26 -extern unsigned int (__gnu_dev_major_1433) (unsigned long long int ____dev_1432);// L27:L28 -extern unsigned int (__gnu_dev_major_1434) (unsigned long long int ____dev_1432);// L27:L28 -extern unsigned int (__gnu_dev_minor_1436) (unsigned long long int ____dev_1435);// L30:L31 -extern unsigned long long int (__gnu_dev_makedev_1439) (unsigned int ____major_1437, unsigned int ____minor_1438);// L33:L35 +extern int (__select_1797) (int ____nfds_1786, __fd_set_1783 * __restrict ____readfds_1787, __fd_set_1783 * __restrict ____writefds_1789, __fd_set_1783 * __restrict ____exceptfds_1791, struct __timeval_1760 * __restrict ____timeout_1794);// L106:L109 +extern int (__select_1798) (int ____nfds_1786, __fd_set_1783 * __restrict ____readfds_1787, __fd_set_1783 * __restrict ____writefds_1789, __fd_set_1783 * __restrict ____exceptfds_1791, struct __forward_tag_reference_1793 * __restrict ____timeout_1796);// L106:L109 +extern int (__pselect_1813) (int ____nfds_1801, __fd_set_1783 * __restrict ____readfds_1802, __fd_set_1783 * __restrict ____writefds_1804, __fd_set_1783 * __restrict ____exceptfds_1806, const struct __timespec_1750 * __restrict ____timeout_1809, const ____sigset_t_1748 * __restrict ____sigmask_1812);// L118:L122 +extern int (__pselect_1814) (int ____nfds_1801, __fd_set_1783 * __restrict ____readfds_1802, __fd_set_1783 * __restrict ____writefds_1804, __fd_set_1783 * __restrict ____exceptfds_1806, const struct __forward_tag_reference_1808 * __restrict ____timeout_1811, const ____sigset_t_1748 * __restrict ____sigmask_1812);// L118:L122 +extern long int (____fdelt_chk_1818) (long int ____d_1817);// L24 +extern long int (____fdelt_warn_1820) (long int ____d_1819);// L25:L26 +extern unsigned int (__gnu_dev_major_1822) (unsigned long long int ____dev_1821);// L27:L28 +extern unsigned int (__gnu_dev_major_1823) (unsigned long long int ____dev_1821);// L27:L28 +extern unsigned int (__gnu_dev_minor_1825) (unsigned long long int ____dev_1824);// L30:L31 +extern unsigned long long int (__gnu_dev_makedev_1828) (unsigned int ____major_1826, unsigned int ____minor_1827);// L33:L35 __extension__/* no function due to type errors in the function prototype */ __extension__/* no function due to type errors in the function prototype */ __extension__/* no function due to type errors in the function prototype */ @@ -1966,151 +2929,205 @@ __extension__/* no function due to type errors in the function prototype */ // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -union __pthread_attr_t_1452 ;// L63 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern int (__rand_1483) (void );// L374 -extern void (__srand_1485) (unsigned int ____seed_1484);// L376 -extern int (__rand_r_1487) (unsigned int * (____seed_1486));// L381 -extern double (__drand48_1488) (void );// L389 -extern double (__erand48_1490) (unsigned short int ____xsubi_1489[3]);// L390 -extern long int (__lrand48_1491) (void );// L393 -extern long int (__nrand48_1493) (unsigned short int ____xsubi_1492[3]);// L394:L395 -extern long int (__mrand48_1494) (void );// L398 -extern long int (__jrand48_1496) (unsigned short int ____xsubi_1495[3]);// L399:L400 -extern void (__srand48_1498) (long int ____seedval_1497);// L403 -extern unsigned short int * ((__seed48_1500) (unsigned short int ____seed16v_1499[3]));// L404:L405 -extern void (__lcong48_1502) (unsigned short int ____param_1501[7]);// L406 -extern void * ((__malloc_1504) (__size_t_1 ____size_1503));// L466 -extern void * ((__malloc_1505) (__size_t_1 ____size_1503));// L466 -extern void * ((__calloc_1508) (__size_t_1 ____nmemb_1506, __size_t_1 ____size_1507));// L468:L469 -extern void * ((__calloc_1509) (__size_t_1 ____nmemb_1506, __size_t_1 ____size_1507));// L468:L469 -extern void * ((__realloc_1512) (void * (____ptr_1510), __size_t_1 ____size_1511));// L480:L481 -extern void * ((__realloc_1513) (void * (____ptr_1510), __size_t_1 ____size_1511));// L480:L481 -extern void (__free_1515) (void * (____ptr_1514));// L483 -extern void (__cfree_1517) (void * (____ptr_1516));// L488 -extern void * ((__alloca_1519) (__size_t_1 ____size_1518));// L32 -extern void * ((__valloc_1521) (__size_t_1 ____size_1520));// L498 -extern void * ((__valloc_1522) (__size_t_1 ____size_1520));// L498 -extern int (__posix_memalign_1526) (void * (* (____memptr_1523)), __size_t_1 ____alignment_1524, __size_t_1 ____size_1525);// L503:L504 -extern int (__posix_memalign_1527) (void * (* (____memptr_1523)), __size_t_1 ____alignment_1524, __size_t_1 ____size_1525);// L503:L504 -extern void * ((__aligned_alloc_1530) (__size_t_1 ____alignment_1528, __size_t_1 ____size_1529));// L509:L510 -extern void * ((__aligned_alloc_1531) (__size_t_1 ____alignment_1528, __size_t_1 ____size_1529));// L509:L510 -extern void * ((__aligned_alloc_1532) (__size_t_1 ____alignment_1528, __size_t_1 ____size_1529));// L509:L510 -extern void * ((__aligned_alloc_1533) (__size_t_1 ____alignment_1528, __size_t_1 ____size_1529));// L509:L510 -extern void (__abort_1534) (void );// L515 -extern int (__atexit_1536) (void (* (____func_1535)) (void ));// L519 -extern int (__at_quick_exit_1538) (void (* (____func_1537)) (void ));// L527 -extern int (__on_exit_1543) (void (* (____func_1541)) (int ____status_1539, void * (____arg_1540)), void * (____arg_1542));// L535:L536 -extern void (__exit_1545) (int ____status_1544);// L543 -extern void (__exit_1546) (int ____status_1544);// L543 -extern void (__quick_exit_1548) (int ____status_1547);// L549 -extern void (___Exit_1550) (int ____status_1549);// L557 -extern char * ((__getenv_1552) (const char * (____name_1551)));// L564 -extern char * ((__getenv_1553) (const char * (____name_1551)));// L564 -extern int (__putenv_1555) (char * (____string_1554));// L578 -extern int (__setenv_1559) (const char * (____name_1556), const char * (____value_1557), int ____replace_1558);// L584:L585 -extern int (__unsetenv_1561) (const char * (____name_1560));// L588 -extern int (__clearenv_1562) (void );// L595 -extern char * ((__mktemp_1564) (char * (____template_1563)));// L606 -extern int (__mkstemp_1567) (char * (____template_1565));// L619 -extern int (__mkstemp_1569) (char * (____template_1565));// L619 -extern int (__mkstemp_1568) (char * (____template_1566));// L622:L623 -extern int (__mkstemp_1570) (char * (____template_1566));// L622:L623 -extern int (__mkstemps_1575) (char * (____template_1571), int ____suffixlen_1572);// L641 -extern int (__mkstemps_1578) (char * (____template_1573), int ____suffixlen_1574);// L644:L645 -extern int (__mkstemps_1576) (char * (____template_1573), int ____suffixlen_1574);// L644:L645 -extern int (__mkstemps_1577) (char * (____template_1571), int ____suffixlen_1572);// L641 -extern char * ((__mkdtemp_1580) (char * (____template_1579)));// L662 -extern char * ((__mkdtemp_1581) (char * (____template_1579)));// L662 -extern int (__system_1583) (const char * (____command_1582));// L716 -extern int (__system_1584) (const char * (____command_1582));// L716 -extern int (__system_1585) (const char * (____command_1582));// L716 -extern int (__system_1586) (const char * (____command_1582));// L716 -extern char * ((__realpath_1589) (const char * __restrict ____name_1587, char * __restrict ____resolved_1588));// L733:L734 -extern char * ((__realpath_1590) (const char * __restrict ____name_1587, char * __restrict ____resolved_1588));// L733:L734 -// typedef moved to top of scope -extern void * ((__bsearch_1599) (const void * (____key_1592), const void * (____base_1593), __size_t_1 ____nmemb_1594, __size_t_1 ____size_1595, ____compar_fn_t_1591 ____compar_1596));// L754:L756 -extern void * ((__bsearch_1601) (const void * (____key_1592), const void * (____base_1593), __size_t_1 ____nmemb_1594, __size_t_1 ____size_1595, ____compar_fn_t_1591 ____compar_1596));// L754:L756 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +union __pthread_attr_t_1862 ;// L63 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern int (__rand_1893) (void );// L374 +extern void (__srand_1895) (unsigned int ____seed_1894);// L376 +extern int (__rand_r_1897) (unsigned int * (____seed_1896));// L381 +extern double (__drand48_1898) (void );// L389 +extern double (__erand48_1900) (unsigned short int ____xsubi_1899[3]);// L390 +extern long int (__lrand48_1901) (void );// L393 +extern long int (__nrand48_1903) (unsigned short int ____xsubi_1902[3]);// L394:L395 +extern long int (__mrand48_1904) (void );// L398 +extern long int (__jrand48_1906) (unsigned short int ____xsubi_1905[3]);// L399:L400 +extern void (__srand48_1908) (long int ____seedval_1907);// L403 +extern unsigned short int * ((__seed48_1910) (unsigned short int ____seed16v_1909[3]));// L404:L405 +extern void (__lcong48_1912) (unsigned short int ____param_1911[7]);// L406 +extern void * ((__malloc_1915) (__size_t_1 ____size_1913));// L466 +extern void * ((__malloc_1916) (__size_t_1091 ____size_1914));// L466 +extern void * ((__malloc_1917) (__size_t_1 ____size_1913));// L466 +extern void * ((__malloc_1918) (__size_t_1091 ____size_1914));// L466 +extern void * ((__calloc_1923) (__size_t_1 ____nmemb_1919, __size_t_1 ____size_1921));// L468:L469 +extern void * ((__calloc_1924) (__size_t_1091 ____nmemb_1920, __size_t_1091 ____size_1922));// L468:L469 +extern void * ((__calloc_1925) (__size_t_1 ____nmemb_1919, __size_t_1 ____size_1921));// L468:L469 +extern void * ((__calloc_1926) (__size_t_1091 ____nmemb_1920, __size_t_1091 ____size_1922));// L468:L469 +extern void * ((__realloc_1930) (void * (____ptr_1927), __size_t_1 ____size_1928));// L480:L481 +extern void * ((__realloc_1931) (void * (____ptr_1927), __size_t_1091 ____size_1929));// L480:L481 +extern void * ((__realloc_1932) (void * (____ptr_1927), __size_t_1 ____size_1928));// L480:L481 +extern void * ((__realloc_1933) (void * (____ptr_1927), __size_t_1091 ____size_1929));// L480:L481 +extern void (__free_1935) (void * (____ptr_1934));// L483 +extern void (__cfree_1937) (void * (____ptr_1936));// L488 +extern void * ((__alloca_1940) (__size_t_1 ____size_1938));// L32 +extern void * ((__alloca_1941) (__size_t_1091 ____size_1939));// L32 +extern void * ((__valloc_1944) (__size_t_1 ____size_1942));// L498 +extern void * ((__valloc_1945) (__size_t_1091 ____size_1943));// L498 +extern void * ((__valloc_1946) (__size_t_1 ____size_1942));// L498 +extern void * ((__valloc_1947) (__size_t_1091 ____size_1943));// L498 +extern int (__posix_memalign_1953) (void * (* (____memptr_1948)), __size_t_1 ____alignment_1949, __size_t_1 ____size_1951);// L503:L504 +extern int (__posix_memalign_1954) (void * (* (____memptr_1948)), __size_t_1091 ____alignment_1950, __size_t_1091 ____size_1952);// L503:L504 +extern int (__posix_memalign_1955) (void * (* (____memptr_1948)), __size_t_1 ____alignment_1949, __size_t_1 ____size_1951);// L503:L504 +extern int (__posix_memalign_1956) (void * (* (____memptr_1948)), __size_t_1091 ____alignment_1950, __size_t_1091 ____size_1952);// L503:L504 +extern void * ((__aligned_alloc_1961) (__size_t_1 ____alignment_1957, __size_t_1 ____size_1959));// L509:L510 +extern void * ((__aligned_alloc_1962) (__size_t_1091 ____alignment_1958, __size_t_1091 ____size_1960));// L509:L510 +extern void * ((__aligned_alloc_1963) (__size_t_1 ____alignment_1957, __size_t_1 ____size_1959));// L509:L510 +extern void * ((__aligned_alloc_1964) (__size_t_1091 ____alignment_1958, __size_t_1091 ____size_1960));// L509:L510 +extern void * ((__aligned_alloc_1965) (__size_t_1 ____alignment_1957, __size_t_1 ____size_1959));// L509:L510 +extern void * ((__aligned_alloc_1966) (__size_t_1091 ____alignment_1958, __size_t_1091 ____size_1960));// L509:L510 +extern void * ((__aligned_alloc_1967) (__size_t_1 ____alignment_1957, __size_t_1 ____size_1959));// L509:L510 +extern void * ((__aligned_alloc_1968) (__size_t_1091 ____alignment_1958, __size_t_1091 ____size_1960));// L509:L510 +extern void (__abort_1969) (void );// L515 +extern int (__atexit_1971) (void (* (____func_1970)) (void ));// L519 +extern int (__at_quick_exit_1973) (void (* (____func_1972)) (void ));// L527 +extern int (__on_exit_1978) (void (* (____func_1976)) (int ____status_1974, void * (____arg_1975)), void * (____arg_1977));// L535:L536 +extern void (__exit_1980) (int ____status_1979);// L543 +extern void (__exit_1981) (int ____status_1979);// L543 +extern void (__quick_exit_1983) (int ____status_1982);// L549 +extern void (___Exit_1985) (int ____status_1984);// L557 +extern char * ((__getenv_1987) (const char * (____name_1986)));// L564 +extern char * ((__getenv_1988) (const char * (____name_1986)));// L564 +extern int (__putenv_1990) (char * (____string_1989));// L578 +extern int (__setenv_1994) (const char * (____name_1991), const char * (____value_1992), int ____replace_1993);// L584:L585 +extern int (__unsetenv_1996) (const char * (____name_1995));// L588 +extern int (__clearenv_1997) (void );// L595 +extern char * ((__mktemp_1999) (char * (____template_1998)));// L606 +extern int (__mkstemp_2002) (char * (____template_2000));// L619 +extern int (__mkstemp_2004) (char * (____template_2000));// L619 +extern int (__mkstemp_2003) (char * (____template_2001));// L622:L623 +extern int (__mkstemp_2005) (char * (____template_2001));// L622:L623 +extern int (__mkstemps_2010) (char * (____template_2006), int ____suffixlen_2007);// L641 +extern int (__mkstemps_2013) (char * (____template_2008), int ____suffixlen_2009);// L644:L645 +extern int (__mkstemps_2011) (char * (____template_2008), int ____suffixlen_2009);// L644:L645 +extern int (__mkstemps_2012) (char * (____template_2006), int ____suffixlen_2007);// L641 +extern char * ((__mkdtemp_2015) (char * (____template_2014)));// L662 +extern char * ((__mkdtemp_2016) (char * (____template_2014)));// L662 +extern int (__system_2018) (const char * (____command_2017));// L716 +extern int (__system_2019) (const char * (____command_2017));// L716 +extern int (__system_2020) (const char * (____command_2017));// L716 +extern int (__system_2021) (const char * (____command_2017));// L716 +extern char * ((__realpath_2024) (const char * __restrict ____name_2022, char * __restrict ____resolved_2023));// L733:L734 +extern char * ((__realpath_2025) (const char * __restrict ____name_2022, char * __restrict ____resolved_2023));// L733:L734 +// typedef moved to top of scope +extern void * ((__bsearch_2037) (const void * (____key_2027), const void * (____base_2028), __size_t_1 ____nmemb_2029, __size_t_1 ____size_2031, ____compar_fn_t_2026 ____compar_2033));// L754:L756 +extern void * ((__bsearch_2038) (const void * (____key_2027), const void * (____base_2028), __size_t_1091 ____nmemb_2030, __size_t_1091 ____size_2032, ____compar_fn_t_2026 ____compar_2033));// L754:L756 +extern void * ((__bsearch_2041) (const void * (____key_2027), const void * (____base_2028), __size_t_1 ____nmemb_2029, __size_t_1 ____size_2031, ____compar_fn_t_2026 ____compar_2033));// L754:L756 +extern void * ((__bsearch_2042) (const void * (____key_2027), const void * (____base_2028), __size_t_1091 ____nmemb_2030, __size_t_1091 ____size_2032, ____compar_fn_t_2026 ____compar_2033));// L754:L756 /* no function due to type errors in the function prototype */ -extern void (__qsort_1620) (void * (____base_1615), __size_t_1 ____nmemb_1616, __size_t_1 ____size_1617, ____compar_fn_t_1591 ____compar_1618);// L764:L765 -extern void (__qsort_1622) (void * (____base_1615), __size_t_1 ____nmemb_1616, __size_t_1 ____size_1617, ____compar_fn_t_1591 ____compar_1618);// L764:L765 -extern int (__abs_1625) (int ____x_1624);// L774 -extern int (__abs_1626) (int ____x_1624);// L774 -extern long int (__labs_1628) (long int ____x_1627);// L775 -extern long int (__labs_1629) (long int ____x_1627);// L775 -extern long long int (__llabs_1631) (long long int ____x_1630);// L779:L780 -extern long long int (__llabs_1632) (long long int ____x_1630);// L779:L780 -extern __div_t_1271 (__div_1635) (int ____numer_1633, int ____denom_1634);// L788:L789 -extern __div_t_1271 (__div_1636) (int ____numer_1633, int ____denom_1634);// L788:L789 -extern __ldiv_t_1276 (__ldiv_1639) (long int ____numer_1637, long int ____denom_1638);// L790:L791 -extern __ldiv_t_1276 (__ldiv_1641) (long int ____numer_1637, long int ____denom_1638);// L790:L791 -extern __lldiv_t_1281 (__lldiv_1645) (long long int ____numer_1643, long long int ____denom_1644);// L796:L798 -extern __lldiv_t_1281 (__lldiv_1647) (long long int ____numer_1643, long long int ____denom_1644);// L796:L798 -extern char * ((__ecvt_1653) (double ____value_1649, int ____ndigit_1650, int * __restrict ____decpt_1651, int * __restrict ____sign_1652));// L811:L812 -extern char * ((__ecvt_1654) (double ____value_1649, int ____ndigit_1650, int * __restrict ____decpt_1651, int * __restrict ____sign_1652));// L811:L812 -extern char * ((__fcvt_1659) (double ____value_1655, int ____ndigit_1656, int * __restrict ____decpt_1657, int * __restrict ____sign_1658));// L817:L818 -extern char * ((__fcvt_1660) (double ____value_1655, int ____ndigit_1656, int * __restrict ____decpt_1657, int * __restrict ____sign_1658));// L817:L818 -extern char * ((__gcvt_1664) (double ____value_1661, int ____ndigit_1662, char * (____buf_1663)));// L823:L824 -extern char * ((__gcvt_1665) (double ____value_1661, int ____ndigit_1662, char * (____buf_1663)));// L823:L824 -extern char * ((__qecvt_1670) (long double ____value_1666, int ____ndigit_1667, int * __restrict ____decpt_1668, int * __restrict ____sign_1669));// L829:L831 -extern char * ((__qecvt_1671) (long double ____value_1666, int ____ndigit_1667, int * __restrict ____decpt_1668, int * __restrict ____sign_1669));// L829:L831 -extern char * ((__qfcvt_1676) (long double ____value_1672, int ____ndigit_1673, int * __restrict ____decpt_1674, int * __restrict ____sign_1675));// L832:L834 -extern char * ((__qfcvt_1677) (long double ____value_1672, int ____ndigit_1673, int * __restrict ____decpt_1674, int * __restrict ____sign_1675));// L832:L834 -extern char * ((__qgcvt_1681) (long double ____value_1678, int ____ndigit_1679, char * (____buf_1680)));// L835:L836 -extern char * ((__qgcvt_1682) (long double ____value_1678, int ____ndigit_1679, char * (____buf_1680)));// L835:L836 -extern int (__ecvt_r_1689) (double ____value_1683, int ____ndigit_1684, int * __restrict ____decpt_1685, int * __restrict ____sign_1686, char * __restrict ____buf_1687, __size_t_1 ____len_1688);// L841:L843 -extern int (__fcvt_r_1696) (double ____value_1690, int ____ndigit_1691, int * __restrict ____decpt_1692, int * __restrict ____sign_1693, char * __restrict ____buf_1694, __size_t_1 ____len_1695);// L844:L846 -extern int (__qecvt_r_1703) (long double ____value_1697, int ____ndigit_1698, int * __restrict ____decpt_1699, int * __restrict ____sign_1700, char * __restrict ____buf_1701, __size_t_1 ____len_1702);// L848:L851 -extern int (__qfcvt_r_1710) (long double ____value_1704, int ____ndigit_1705, int * __restrict ____decpt_1706, int * __restrict ____sign_1707, char * __restrict ____buf_1708, __size_t_1 ____len_1709);// L852:L855 -extern int (__mblen_1713) (const char * (____s_1711), __size_t_1 ____n_1712);// L862 -extern int (__mblen_1714) (const char * (____s_1711), __size_t_1 ____n_1712);// L862 -extern int (__mbtowc_1718) (__wchar_t_1235 * __restrict ____pwc_1715, const char * __restrict ____s_1716, __size_t_1 ____n_1717);// L865:L866 -extern int (__wctomb_1721) (char * (____s_1719), __wchar_t_1235 ____wchar_1720);// L869 -extern __size_t_1 (__mbstowcs_1725) (__wchar_t_1235 * __restrict ____pwcs_1722, const char * __restrict ____s_1723, __size_t_1 ____n_1724);// L873:L874 -extern __size_t_1 (__wcstombs_1729) (char * __restrict ____s_1726, const __wchar_t_1235 * __restrict ____pwcs_1727, __size_t_1 ____n_1728);// L876:L878 -extern int (__rpmatch_1732) (const char * (____response_1730));// L887 -extern int (__rpmatch_1731) (const char * (____response_1730));// L887 -extern int (__getsubopt_1737) (char * (* __restrict ____optionp_1733), char * const * __restrict ____tokens_1734, char * (* __restrict ____valuep_1735));// L898:L901 -extern int (__getsubopt_1736) (char * (* __restrict ____optionp_1733), char * const * __restrict ____tokens_1734, char * (* __restrict ____valuep_1735));// L898:L901 -extern int (__getloadavg_1740) (double ____loadavg_1738[], int ____nelem_1739);// L950:L951 +extern void (__qsort_2070) (void * (____base_2063), __size_t_1 ____nmemb_2064, __size_t_1 ____size_2066, ____compar_fn_t_2026 ____compar_2068);// L764:L765 +extern void (__qsort_2072) (void * (____base_2063), __size_t_1091 ____nmemb_2065, __size_t_1091 ____size_2067, ____compar_fn_t_2026 ____compar_2068);// L764:L765 +extern void (__qsort_2074) (void * (____base_2063), __size_t_1 ____nmemb_2064, __size_t_1 ____size_2066, ____compar_fn_t_2026 ____compar_2068);// L764:L765 +extern void (__qsort_2076) (void * (____base_2063), __size_t_1091 ____nmemb_2065, __size_t_1091 ____size_2067, ____compar_fn_t_2026 ____compar_2068);// L764:L765 +extern int (__abs_2079) (int ____x_2078);// L774 +extern int (__abs_2080) (int ____x_2078);// L774 +extern long int (__labs_2082) (long int ____x_2081);// L775 +extern long int (__labs_2083) (long int ____x_2081);// L775 +extern long long int (__llabs_2085) (long long int ____x_2084);// L779:L780 +extern long long int (__llabs_2086) (long long int ____x_2084);// L779:L780 +extern __div_t_1474 (__div_2089) (int ____numer_2087, int ____denom_2088);// L788:L789 +extern __div_t_1474 (__div_2090) (int ____numer_2087, int ____denom_2088);// L788:L789 +extern __ldiv_t_1479 (__ldiv_2093) (long int ____numer_2091, long int ____denom_2092);// L790:L791 +extern __ldiv_t_1479 (__ldiv_2095) (long int ____numer_2091, long int ____denom_2092);// L790:L791 +extern __lldiv_t_1484 (__lldiv_2099) (long long int ____numer_2097, long long int ____denom_2098);// L796:L798 +extern __lldiv_t_1484 (__lldiv_2101) (long long int ____numer_2097, long long int ____denom_2098);// L796:L798 +extern char * ((__ecvt_2107) (double ____value_2103, int ____ndigit_2104, int * __restrict ____decpt_2105, int * __restrict ____sign_2106));// L811:L812 +extern char * ((__ecvt_2108) (double ____value_2103, int ____ndigit_2104, int * __restrict ____decpt_2105, int * __restrict ____sign_2106));// L811:L812 +extern char * ((__fcvt_2113) (double ____value_2109, int ____ndigit_2110, int * __restrict ____decpt_2111, int * __restrict ____sign_2112));// L817:L818 +extern char * ((__fcvt_2114) (double ____value_2109, int ____ndigit_2110, int * __restrict ____decpt_2111, int * __restrict ____sign_2112));// L817:L818 +extern char * ((__gcvt_2118) (double ____value_2115, int ____ndigit_2116, char * (____buf_2117)));// L823:L824 +extern char * ((__gcvt_2119) (double ____value_2115, int ____ndigit_2116, char * (____buf_2117)));// L823:L824 +extern char * ((__qecvt_2124) (long double ____value_2120, int ____ndigit_2121, int * __restrict ____decpt_2122, int * __restrict ____sign_2123));// L829:L831 +extern char * ((__qecvt_2125) (long double ____value_2120, int ____ndigit_2121, int * __restrict ____decpt_2122, int * __restrict ____sign_2123));// L829:L831 +extern char * ((__qfcvt_2130) (long double ____value_2126, int ____ndigit_2127, int * __restrict ____decpt_2128, int * __restrict ____sign_2129));// L832:L834 +extern char * ((__qfcvt_2131) (long double ____value_2126, int ____ndigit_2127, int * __restrict ____decpt_2128, int * __restrict ____sign_2129));// L832:L834 +extern char * ((__qgcvt_2135) (long double ____value_2132, int ____ndigit_2133, char * (____buf_2134)));// L835:L836 +extern char * ((__qgcvt_2136) (long double ____value_2132, int ____ndigit_2133, char * (____buf_2134)));// L835:L836 +extern int (__ecvt_r_2144) (double ____value_2137, int ____ndigit_2138, int * __restrict ____decpt_2139, int * __restrict ____sign_2140, char * __restrict ____buf_2141, __size_t_1 ____len_2142);// L841:L843 +extern int (__ecvt_r_2145) (double ____value_2137, int ____ndigit_2138, int * __restrict ____decpt_2139, int * __restrict ____sign_2140, char * __restrict ____buf_2141, __size_t_1091 ____len_2143);// L841:L843 +extern int (__fcvt_r_2153) (double ____value_2146, int ____ndigit_2147, int * __restrict ____decpt_2148, int * __restrict ____sign_2149, char * __restrict ____buf_2150, __size_t_1 ____len_2151);// L844:L846 +extern int (__fcvt_r_2154) (double ____value_2146, int ____ndigit_2147, int * __restrict ____decpt_2148, int * __restrict ____sign_2149, char * __restrict ____buf_2150, __size_t_1091 ____len_2152);// L844:L846 +extern int (__qecvt_r_2162) (long double ____value_2155, int ____ndigit_2156, int * __restrict ____decpt_2157, int * __restrict ____sign_2158, char * __restrict ____buf_2159, __size_t_1 ____len_2160);// L848:L851 +extern int (__qecvt_r_2163) (long double ____value_2155, int ____ndigit_2156, int * __restrict ____decpt_2157, int * __restrict ____sign_2158, char * __restrict ____buf_2159, __size_t_1091 ____len_2161);// L848:L851 +extern int (__qfcvt_r_2171) (long double ____value_2164, int ____ndigit_2165, int * __restrict ____decpt_2166, int * __restrict ____sign_2167, char * __restrict ____buf_2168, __size_t_1 ____len_2169);// L852:L855 +extern int (__qfcvt_r_2172) (long double ____value_2164, int ____ndigit_2165, int * __restrict ____decpt_2166, int * __restrict ____sign_2167, char * __restrict ____buf_2168, __size_t_1091 ____len_2170);// L852:L855 +extern int (__mblen_2176) (const char * (____s_2173), __size_t_1 ____n_2174);// L862 +extern int (__mblen_2177) (const char * (____s_2173), __size_t_1091 ____n_2175);// L862 +extern int (__mblen_2178) (const char * (____s_2173), __size_t_1 ____n_2174);// L862 +extern int (__mblen_2179) (const char * (____s_2173), __size_t_1091 ____n_2175);// L862 +extern int (__mbtowc_2184) (__wchar_t_1378 * __restrict ____pwc_2180, const char * __restrict ____s_2181, __size_t_1 ____n_2182);// L865:L866 +extern int (__mbtowc_2185) (__wchar_t_1378 * __restrict ____pwc_2180, const char * __restrict ____s_2181, __size_t_1091 ____n_2183);// L865:L866 +extern int (__wctomb_2188) (char * (____s_2186), __wchar_t_1378 ____wchar_2187);// L869 +extern __size_t_1 (__mbstowcs_2193) (__wchar_t_1378 * __restrict ____pwcs_2189, const char * __restrict ____s_2190, __size_t_1 ____n_2191);// L873:L874 +extern __size_t_1091 (__mbstowcs_2194) (__wchar_t_1378 * __restrict ____pwcs_2189, const char * __restrict ____s_2190, __size_t_1091 ____n_2192);// L873:L874 +extern __size_t_1 (__wcstombs_2199) (char * __restrict ____s_2195, const __wchar_t_1378 * __restrict ____pwcs_2196, __size_t_1 ____n_2197);// L876:L878 +extern __size_t_1091 (__wcstombs_2200) (char * __restrict ____s_2195, const __wchar_t_1378 * __restrict ____pwcs_2196, __size_t_1091 ____n_2198);// L876:L878 +extern int (__rpmatch_2203) (const char * (____response_2201));// L887 +extern int (__rpmatch_2202) (const char * (____response_2201));// L887 +extern int (__getsubopt_2208) (char * (* __restrict ____optionp_2204), char * const * __restrict ____tokens_2205, char * (* __restrict ____valuep_2206));// L898:L901 +extern int (__getsubopt_2207) (char * (* __restrict ____optionp_2204), char * const * __restrict ____tokens_2205, char * (* __restrict ____valuep_2206));// L898:L901 +extern int (__getloadavg_2211) (double ____loadavg_2209[], int ____nelem_2210);// L950:L951 /* no function due to type errors in the function prototype */ -extern char * ((____realpath_chk_1745) (const char * __restrict ____name_1742, char * __restrict ____resolved_1743, __size_t_1 ____resolvedlen_1744));// L23:L25 -extern char * ((____realpath_alias_1748) (const char * __restrict ____name_1746, char * __restrict ____resolved_1747));// L26:L28 -extern char * ((____realpath_chk_warn_1752) (const char * __restrict ____name_1749, char * __restrict ____resolved_1750, __size_t_1 ____resolvedlen_1751));// L29:L34 +extern char * ((____realpath_chk_2217) (const char * __restrict ____name_2213, char * __restrict ____resolved_2214, __size_t_1 ____resolvedlen_2215));// L23:L25 +extern char * ((____realpath_chk_2218) (const char * __restrict ____name_2213, char * __restrict ____resolved_2214, __size_t_1091 ____resolvedlen_2216));// L23:L25 +extern char * ((____realpath_alias_2221) (const char * __restrict ____name_2219, char * __restrict ____resolved_2220));// L26:L28 +extern char * ((____realpath_chk_warn_2226) (const char * __restrict ____name_2222, char * __restrict ____resolved_2223, __size_t_1 ____resolvedlen_2224));// L29:L34 +extern char * ((____realpath_chk_warn_2227) (const char * __restrict ____name_2222, char * __restrict ____resolved_2223, __size_t_1091 ____resolvedlen_2225));// L29:L34 /* no function due to type errors in the function prototype */ -extern int (____ptsname_r_chk_1760) (int ____fd_1756, char * (____buf_1757), __size_t_1 ____buflen_1758, __size_t_1 ____nreal_1759);// L52:L53 -extern int (____ptsname_r_alias_1764) (int ____fd_1761, char * (____buf_1762), __size_t_1 ____buflen_1763);// L54:L56 -extern int (____ptsname_r_chk_warn_1769) (int ____fd_1765, char * (____buf_1766), __size_t_1 ____buflen_1767, __size_t_1 ____nreal_1768);// L57:L61 +extern int (____ptsname_r_chk_2237) (int ____fd_2231, char * (____buf_2232), __size_t_1 ____buflen_2233, __size_t_1 ____nreal_2235);// L52:L53 +extern int (____ptsname_r_chk_2238) (int ____fd_2231, char * (____buf_2232), __size_t_1091 ____buflen_2234, __size_t_1091 ____nreal_2236);// L52:L53 +extern int (____ptsname_r_alias_2243) (int ____fd_2239, char * (____buf_2240), __size_t_1 ____buflen_2241);// L54:L56 +extern int (____ptsname_r_alias_2244) (int ____fd_2239, char * (____buf_2240), __size_t_1091 ____buflen_2242);// L54:L56 +extern int (____ptsname_r_chk_warn_2251) (int ____fd_2245, char * (____buf_2246), __size_t_1 ____buflen_2247, __size_t_1 ____nreal_2249);// L57:L61 +extern int (____ptsname_r_chk_warn_2252) (int ____fd_2245, char * (____buf_2246), __size_t_1091 ____buflen_2248, __size_t_1091 ____nreal_2250);// L57:L61 /* no function due to type errors in the function prototype */ -extern int (____wctomb_chk_1777) (char * (____s_1774), __wchar_t_1235 ____wchar_1775, __size_t_1 ____buflen_1776);// L77:L78 -extern int (____wctomb_alias_1780) (char * (____s_1778), __wchar_t_1235 ____wchar_1779);// L79:L80 +extern int (____wctomb_chk_2263) (char * (____s_2259), __wchar_t_1378 ____wchar_2260, __size_t_1 ____buflen_2261);// L77:L78 +extern int (____wctomb_chk_2264) (char * (____s_2259), __wchar_t_1378 ____wchar_2260, __size_t_1091 ____buflen_2262);// L77:L78 +extern int (____wctomb_alias_2267) (char * (____s_2265), __wchar_t_1378 ____wchar_2266);// L79:L80 /* no function due to type errors in the function prototype */ -extern __size_t_1 (____mbstowcs_chk_1787) (__wchar_t_1235 * __restrict ____dst_1783, const char * __restrict ____src_1784, __size_t_1 ____len_1785, __size_t_1 ____dstlen_1786);// L98:L100 -extern __size_t_1 (____mbstowcs_alias_1791) (__wchar_t_1235 * __restrict ____dst_1788, const char * __restrict ____src_1789, __size_t_1 ____len_1790);// L101:L104 -extern __size_t_1 (____mbstowcs_chk_warn_1796) (__wchar_t_1235 * __restrict ____dst_1792, const char * __restrict ____src_1793, __size_t_1 ____len_1794, __size_t_1 ____dstlen_1795);// L105:L110 +extern __size_t_1 (____mbstowcs_chk_2276) (__wchar_t_1378 * __restrict ____dst_2270, const char * __restrict ____src_2271, __size_t_1 ____len_2272, __size_t_1 ____dstlen_2274);// L98:L100 +extern __size_t_1091 (____mbstowcs_chk_2277) (__wchar_t_1378 * __restrict ____dst_2270, const char * __restrict ____src_2271, __size_t_1091 ____len_2273, __size_t_1091 ____dstlen_2275);// L98:L100 +extern __size_t_1 (____mbstowcs_alias_2282) (__wchar_t_1378 * __restrict ____dst_2278, const char * __restrict ____src_2279, __size_t_1 ____len_2280);// L101:L104 +extern __size_t_1091 (____mbstowcs_alias_2283) (__wchar_t_1378 * __restrict ____dst_2278, const char * __restrict ____src_2279, __size_t_1091 ____len_2281);// L101:L104 +extern __size_t_1 (____mbstowcs_chk_warn_2290) (__wchar_t_1378 * __restrict ____dst_2284, const char * __restrict ____src_2285, __size_t_1 ____len_2286, __size_t_1 ____dstlen_2288);// L105:L110 +extern __size_t_1091 (____mbstowcs_chk_warn_2291) (__wchar_t_1378 * __restrict ____dst_2284, const char * __restrict ____src_2285, __size_t_1091 ____len_2287, __size_t_1091 ____dstlen_2289);// L105:L110 /* no function due to type errors in the function prototype */ -extern __size_t_1 (____wcstombs_chk_1804) (char * __restrict ____dst_1800, const __wchar_t_1235 * __restrict ____src_1801, __size_t_1 ____len_1802, __size_t_1 ____dstlen_1803);// L130:L132 -extern __size_t_1 (____wcstombs_alias_1808) (char * __restrict ____dst_1805, const __wchar_t_1235 * __restrict ____src_1806, __size_t_1 ____len_1807);// L133:L136 -extern __size_t_1 (____wcstombs_chk_warn_1813) (char * __restrict ____dst_1809, const __wchar_t_1235 * __restrict ____src_1810, __size_t_1 ____len_1811, __size_t_1 ____dstlen_1812);// L137:L141 +extern __size_t_1 (____wcstombs_chk_2302) (char * __restrict ____dst_2296, const __wchar_t_1378 * __restrict ____src_2297, __size_t_1 ____len_2298, __size_t_1 ____dstlen_2300);// L130:L132 +extern __size_t_1091 (____wcstombs_chk_2303) (char * __restrict ____dst_2296, const __wchar_t_1378 * __restrict ____src_2297, __size_t_1091 ____len_2299, __size_t_1091 ____dstlen_2301);// L130:L132 +extern __size_t_1 (____wcstombs_alias_2308) (char * __restrict ____dst_2304, const __wchar_t_1378 * __restrict ____src_2305, __size_t_1 ____len_2306);// L133:L136 +extern __size_t_1091 (____wcstombs_alias_2309) (char * __restrict ____dst_2304, const __wchar_t_1378 * __restrict ____src_2305, __size_t_1091 ____len_2307);// L133:L136 +extern __size_t_1 (____wcstombs_chk_warn_2316) (char * __restrict ____dst_2310, const __wchar_t_1378 * __restrict ____src_2311, __size_t_1 ____len_2312, __size_t_1 ____dstlen_2314);// L137:L141 +extern __size_t_1091 (____wcstombs_chk_warn_2317) (char * __restrict ____dst_2310, const __wchar_t_1378 * __restrict ____src_2311, __size_t_1091 ____len_2313, __size_t_1091 ____dstlen_2315);// L137:L141 /* no function due to type errors in the function prototype */ -int (__main_1819) (void ) { +int (__main_2324) (void ) { -if (__static_condition_default_1823) { +if (__static_condition_default_2328) { { { -unsigned __c_1817= 0;// L17 +unsigned __c_2322= 0;// L17 -unsigned char __flags_1818;// L18 +unsigned char __flags_2323;// L18 -for ( __c_1817 = 0 ; __c_1817 < 256 ; ++ __c_1817 )// L20 +for ( __c_2322 = 0 ; __c_2322 < 256 ; ++ __c_2322 )// L20 { { @@ -2118,13 +3135,18 @@ for ( __c_1817 = 0 ; __c_1817 < 256 ; ++ __c_1817 )// L20 - __flags_1818 = 0 ; // L21 -if ( __c_1817 % 20 == 0 )// L22 + __flags_2323 = 0 ; // L21 +if ( __c_2322 % 20 == 0 )// L22 { - __printf_383 ("\n ") ; // L23 +if (__static_condition_default_2329) { + __printf_421 ("\n ") ; // L23 } -if (__static_condition_default_1824) { -if ( __c_1817 && __strchr_1098 ("&;`'\"|*?~<>^()[]{}$\\\n\r%", __c_1817 ) )// L37 +if (__static_condition_default_2330) { +__static_type_error("type error") ; // L23 +} +} +if (__static_condition_default_2331) { +if ( __c_2322 && __strchr_1199 ("&;`'\"|*?~<>^()[]{}$\\\n\r%", __c_2322 ) )// L37 { { @@ -2132,13 +3154,13 @@ if ( __c_1817 && __strchr_1098 ("&;`'\"|*?~<>^()[]{}$\\\n\r%", __c_1817 ) )/ - __flags_1818 |= ( 0x01 ) ; // L4:L38 + __flags_2323 |= ( 0x01 ) ; // L4:L38 } } } } -if (__static_condition_default_1825) { -if ( __c_1817 && __strchr_1098 ("&;`'\"|*?~<>^()[]{}$\\\n", __c_1817 ) )// L37 +if (__static_condition_default_2332) { +if ( __c_2322 && __strchr_1199 ("&;`'\"|*?~<>^()[]{}$\\\n", __c_2322 ) )// L37 { { @@ -2146,7 +3168,7 @@ if ( __c_1817 && __strchr_1098 ("&;`'\"|*?~<>^()[]{}$\\\n", __c_1817 ) )// L - __flags_1818 |= ( 0x01 ) ; // L4:L42 + __flags_2323 |= ( 0x01 ) ; // L4:L42 } } } @@ -2161,20 +3183,20 @@ return 0 ;// L46 } } -int (__main_1820) (void ) { +int (__main_2325) (void ) { -if (__static_condition_default_1826) { +if (__static_condition_default_2333) { { { -unsigned __c_1817= 0;// L17 +unsigned __c_2322= 0;// L17 -unsigned char __flags_1818;// L18 +unsigned char __flags_2323;// L18 -for ( __c_1817 = 0 ; __c_1817 < 256 ; ++ __c_1817 )// L20 +for ( __c_2322 = 0 ; __c_2322 < 256 ; ++ __c_2322 )// L20 { { @@ -2182,13 +3204,18 @@ for ( __c_1817 = 0 ; __c_1817 < 256 ; ++ __c_1817 )// L20 - __flags_1818 = 0 ; // L21 -if ( __c_1817 % 20 == 0 )// L22 + __flags_2323 = 0 ; // L21 +if ( __c_2322 % 20 == 0 )// L22 { - __printf_383 ("\n ") ; // L23 +if (__static_condition_default_2334) { + __printf_421 ("\n ") ; // L23 +} +if (__static_condition_default_2335) { +__static_type_error("type error") ; // L23 } -if (__static_condition_default_1827) { -if ( __c_1817 && __strchr_1098 ("&;`'\"|*?~<>^()[]{}$\\\n\r%", __c_1817 ) )// L37 +} +if (__static_condition_default_2336) { +if ( __c_2322 && __strchr_1199 ("&;`'\"|*?~<>^()[]{}$\\\n\r%", __c_2322 ) )// L37 { { @@ -2196,13 +3223,13 @@ if ( __c_1817 && __strchr_1098 ("&;`'\"|*?~<>^()[]{}$\\\n\r%", __c_1817 ) )/ - __flags_1818 |= ( 0x01 ) ; // L4:L38 + __flags_2323 |= ( 0x01 ) ; // L4:L38 } } } } -if (__static_condition_default_1828) { -if ( __c_1817 && __strchr_1098 ("&;`'\"|*?~<>^()[]{}$\\\n", __c_1817 ) )// L37 +if (__static_condition_default_2337) { +if ( __c_2322 && __strchr_1199 ("&;`'\"|*?~<>^()[]{}$\\\n", __c_2322 ) )// L37 { { @@ -2210,7 +3237,7 @@ if ( __c_1817 && __strchr_1098 ("&;`'\"|*?~<>^()[]{}$\\\n", __c_1817 ) )// L - __flags_1818 |= ( 0x01 ) ; // L4:L42 + __flags_2323 |= ( 0x01 ) ; // L4:L42 } } } @@ -2225,34 +3252,20 @@ return 0 ;// L46 } } -int (__main_1821) (void ) { +int (__main_2326) (void ) { -if (__static_condition_default_1829) { +if (__static_condition_default_2338) { { { -unsigned __c_1817= 0;// L17 - -unsigned char __flags_1818;// L18 - -for ( __c_1817 = 0 ; __c_1817 < 256 ; ++ __c_1817 )// L20 -{ - -{ -{ - +unsigned __c_2322= 0;// L17 +unsigned char __flags_2323;// L18 - __flags_1818 = 0 ; // L21 -if ( __c_1817 % 20 == 0 )// L22 -{ - __printf_383 ("\n ") ; // L23 -} -if (__static_condition_default_1830) { -if ( __c_1817 && __strchr_1098 ("&;`'\"|*?~<>^()[]{}$\\\n\r%", __c_1817 ) )// L37 +for ( __c_2322 = 0 ; __c_2322 < 256 ; ++ __c_2322 )// L20 { { @@ -2260,27 +3273,18 @@ if ( __c_1817 && __strchr_1098 ("&;`'\"|*?~<>^()[]{}$\\\n\r%", __c_1817 ) )/ - __flags_1818 |= ( 0x01 ) ; // L4:L38 -} -} -} -} -if (__static_condition_default_1831) { -if ( __c_1817 && __strchr_1099 ("&;`'\"|*?~<>^()[]{}$\\\n\r%", __c_1817 ) )// L37 + __flags_2323 = 0 ; // L21 +if ( __c_2322 % 20 == 0 )// L22 { - -{ -{ - - - - __flags_1818 |= ( 0x01 ) ; // L4:L38 -} +if (__static_condition_default_2339) { + __printf_421 ("\n ") ; // L23 } +if (__static_condition_default_2340) { +__static_type_error("type error") ; // L23 } } -if (__static_condition_default_1832) { -if ( __c_1817 && __strchr_1098 ("&;`'\"|*?~<>^()[]{}$\\\n", __c_1817 ) )// L37 +if (__static_condition_default_2341) { +if ( __c_2322 && __strchr_1199 ("&;`'\"|*?~<>^()[]{}$\\\n\r%", __c_2322 ) )// L37 { { @@ -2288,13 +3292,13 @@ if ( __c_1817 && __strchr_1098 ("&;`'\"|*?~<>^()[]{}$\\\n", __c_1817 ) )// L - __flags_1818 |= ( 0x01 ) ; // L4:L42 + __flags_2323 |= ( 0x01 ) ; // L4:L38 } } } } -if (__static_condition_default_1833) { -if ( __c_1817 && __strchr_1099 ("&;`'\"|*?~<>^()[]{}$\\\n", __c_1817 ) )// L37 +if (__static_condition_default_2342) { +if ( __c_2322 && __strchr_1199 ("&;`'\"|*?~<>^()[]{}$\\\n", __c_2322 ) )// L37 { { @@ -2302,7 +3306,7 @@ if ( __c_1817 && __strchr_1099 ("&;`'\"|*?~<>^()[]{}$\\\n", __c_1817 ) )// L - __flags_1818 |= ( 0x01 ) ; // L4:L42 + __flags_2323 |= ( 0x01 ) ; // L4:L42 } } } @@ -2317,34 +3321,20 @@ return 0 ;// L46 } } -int (__main_1822) (void ) { +int (__main_2327) (void ) { -if (__static_condition_default_1834) { +if (__static_condition_default_2343) { { { -unsigned __c_1817= 0;// L17 - -unsigned char __flags_1818;// L18 +unsigned __c_2322= 0;// L17 -for ( __c_1817 = 0 ; __c_1817 < 256 ; ++ __c_1817 )// L20 -{ +unsigned char __flags_2323;// L18 -{ -{ - - - - __flags_1818 = 0 ; // L21 -if ( __c_1817 % 20 == 0 )// L22 -{ - __printf_383 ("\n ") ; // L23 -} -if (__static_condition_default_1835) { -if ( __c_1817 && __strchr_1098 ("&;`'\"|*?~<>^()[]{}$\\\n\r%", __c_1817 ) )// L37 +for ( __c_2322 = 0 ; __c_2322 < 256 ; ++ __c_2322 )// L20 { { @@ -2352,27 +3342,18 @@ if ( __c_1817 && __strchr_1098 ("&;`'\"|*?~<>^()[]{}$\\\n\r%", __c_1817 ) )/ - __flags_1818 |= ( 0x01 ) ; // L4:L38 -} -} -} -} -if (__static_condition_default_1836) { -if ( __c_1817 && __strchr_1099 ("&;`'\"|*?~<>^()[]{}$\\\n\r%", __c_1817 ) )// L37 -{ - + __flags_2323 = 0 ; // L21 +if ( __c_2322 % 20 == 0 )// L22 { -{ - - - - __flags_1818 |= ( 0x01 ) ; // L4:L38 -} +if (__static_condition_default_2344) { + __printf_421 ("\n ") ; // L23 } +if (__static_condition_default_2345) { +__static_type_error("type error") ; // L23 } } -if (__static_condition_default_1837) { -if ( __c_1817 && __strchr_1098 ("&;`'\"|*?~<>^()[]{}$\\\n", __c_1817 ) )// L37 +if (__static_condition_default_2346) { +if ( __c_2322 && __strchr_1199 ("&;`'\"|*?~<>^()[]{}$\\\n\r%", __c_2322 ) )// L37 { { @@ -2380,13 +3361,13 @@ if ( __c_1817 && __strchr_1098 ("&;`'\"|*?~<>^()[]{}$\\\n", __c_1817 ) )// L - __flags_1818 |= ( 0x01 ) ; // L4:L42 + __flags_2323 |= ( 0x01 ) ; // L4:L38 } } } } -if (__static_condition_default_1838) { -if ( __c_1817 && __strchr_1099 ("&;`'\"|*?~<>^()[]{}$\\\n", __c_1817 ) )// L37 +if (__static_condition_default_2347) { +if ( __c_2322 && __strchr_1199 ("&;`'\"|*?~<>^()[]{}$\\\n", __c_2322 ) )// L37 { { @@ -2394,7 +3375,7 @@ if ( __c_1817 && __strchr_1099 ("&;`'\"|*?~<>^()[]{}$\\\n", __c_1817 ) )// L - __flags_1818 |= ( 0x01 ) ; // L4:L42 + __flags_2323 |= ( 0x01 ) ; // L4:L42 } } } diff --git a/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.clangres b/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.clangres index 0539eef4..30a140cd 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.clangres @@ -1,13 +1,13 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c:2149:2: warning: Value stored to '__flags_1818' is never read [deadcode.DeadStores] - __flags_1818 |= ( 0x01 ) ; // L4:L42 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c:3171:2: warning: Value stored to '__flags_2323' is never read [deadcode.DeadStores] + __flags_2323 |= ( 0x01 ) ; // L4:L42 ^ ~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c:2213:2: warning: Value stored to '__flags_1818' is never read [deadcode.DeadStores] - __flags_1818 |= ( 0x01 ) ; // L4:L42 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c:3240:2: warning: Value stored to '__flags_2323' is never read [deadcode.DeadStores] + __flags_2323 |= ( 0x01 ) ; // L4:L42 ^ ~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c:2305:2: warning: Value stored to '__flags_1818' is never read [deadcode.DeadStores] - __flags_1818 |= ( 0x01 ) ; // L4:L42 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c:3309:2: warning: Value stored to '__flags_2323' is never read [deadcode.DeadStores] + __flags_2323 |= ( 0x01 ) ; // L4:L42 ^ ~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c:2397:2: warning: Value stored to '__flags_1818' is never read [deadcode.DeadStores] - __flags_1818 |= ( 0x01 ) ; // L4:L42 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c:3378:2: warning: Value stored to '__flags_2323' is never read [deadcode.DeadStores] + __flags_2323 |= ( 0x01 ) ; // L4:L42 ^ ~~~~~~~~ 4 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.inferres b/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.desugared.c index 1bfe5841..00d2990f 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.desugared.c @@ -7,349 +7,349 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_1365; +extern const bool __static_condition_default_1475; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_1816; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_1750; +extern const bool __static_condition_default_1775; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_834; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_1564; +extern const bool __static_condition_default_2049; extern const bool __static_condition_default_469; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_661; +extern const bool __static_condition_default_76; extern const bool __static_condition_default_623; -extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_187; -extern const bool __static_condition_default_170; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_583; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_955; +extern const bool __static_condition_default_668; extern const bool __static_condition_default_1485; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_1572; -extern const bool __static_condition_default_438; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_1564; -extern const bool __static_condition_default_1789; -extern const bool __static_condition_default_53; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_1373; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_382; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_1944; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_760; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_846; +extern const bool __static_condition_default_1568; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_1776; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_549; extern const bool __static_condition_default_1459; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_753; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_875; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_1385; -extern const bool __static_condition_default_1436; +extern const bool __static_condition_default_331; extern const bool __static_condition_default_907; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_638; -extern const bool __static_condition_default_2039; -extern const bool __static_condition_default_1345; -extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_779; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_1753; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_2044; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_244; extern const bool __static_condition_default_848; -extern const bool __static_condition_default_1776; extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_1453; -extern const bool __static_condition_default_1814; +extern const bool __static_condition_default_1349; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_1164; +extern const bool __static_condition_default_759; +extern const bool __static_condition_default_789; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_1405; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_891; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_1556; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_677; +extern const bool __static_condition_default_1432; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_1498; extern const bool __static_condition_default_553; -extern const bool __static_condition_default_887; -extern const bool __static_condition_default_780; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_2041; -extern const bool __static_condition_default_419; -extern const bool __static_condition_default_543; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_646; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_929; -extern const bool __static_condition_default_846; -extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_488; extern const bool __static_condition_default_499; -extern const bool __static_condition_default_248; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_1388; -extern const bool __static_condition_default_290; -extern const bool __static_condition_default_1516; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_2049; -extern const bool __static_condition_default_1402; -extern const bool __static_condition_default_1377; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_512; +extern const bool __static_condition_default_187; +extern const bool __static_condition_default_367; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_1385; extern const bool __static_condition_default_938; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_2048; -extern const bool __static_condition_default_559; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_1365; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_1361; +extern const bool __static_condition_default_1165; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_852; extern const bool __static_condition_default_1369; -extern const bool __static_condition_default_311; -extern const bool __static_condition_default_632; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_1568; -extern const bool __static_condition_default_747; -extern const bool __static_condition_default_76; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_1516; +extern const bool __static_condition_default_1787; +extern const bool __static_condition_default_1353; extern const bool __static_condition_default_1357; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_1791; -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_1391; -extern const bool __static_condition_default_1552; -extern const bool __static_condition_default_1785; -extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_419; +extern const bool __static_condition_default_2043; +extern const bool __static_condition_default_1388; +extern const bool __static_condition_default_2048; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_1402; extern const bool __static_condition_default_347; -extern const bool __static_condition_default_1381; -extern const bool __static_condition_default_1475; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_461; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_979; +extern const bool __static_condition_default_1341; +extern const bool __static_condition_default_761; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_963; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_1398; +extern const bool __static_condition_default_1808; extern const bool __static_condition_default_258; -extern const bool __static_condition_default_1152; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_858; -extern const bool __static_condition_default_1750; -extern const bool __static_condition_default_444; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_779; +extern const bool __static_condition_default_1944; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_290; +extern const bool __static_condition_default_512; extern const bool __static_condition_default_1428; -extern const bool __static_condition_default_2042; -extern const bool __static_condition_default_590; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_2039; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_1057; extern const bool __static_condition_default_1489; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_1420; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_955; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_1458; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_1773; +extern const bool __static_condition_default_1424; +extern const bool __static_condition_default_1572; +extern const bool __static_condition_default_365; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_1810; +extern const bool __static_condition_default_386; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_84; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_753; +extern const bool __static_condition_default_929; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_544; +extern const bool __static_condition_default_455; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_1749; extern const bool __static_condition_default_198; -extern const bool __static_condition_default_1515; -extern const bool __static_condition_default_1808; -extern const bool __static_condition_default_645; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_1341; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_559; +extern const bool __static_condition_default_1560; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_663; extern const bool __static_condition_default_801; -extern const bool __static_condition_default_536; -extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_608; +extern const bool __static_condition_default_769; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_550; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_2042; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_257; extern const bool __static_condition_default_2040; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_701; -extern const bool __static_condition_default_315; -extern const bool __static_condition_default_388; +extern const bool __static_condition_default_702; +extern const bool __static_condition_default_1785; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_1416; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_311; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_1152; +extern const bool __static_condition_default_1420; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_1791; +extern const bool __static_condition_default_670; extern const bool __static_condition_default_552; -extern const bool __static_condition_default_331; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_1361; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_842; +extern const bool __static_condition_default_1395; extern const bool __static_condition_default_494; -extern const bool __static_condition_default_564; -extern const bool __static_condition_default_602; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_204; +extern const bool __static_condition_default_1436; +extern const bool __static_condition_default_2046; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_1373; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_2045; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_1814; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_1789; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_1532; extern const bool __static_condition_default_169; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_583; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_791; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_388; +extern const bool __static_condition_default_333; extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_1576; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_957; -extern const bool __static_condition_default_2044; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_761; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_613; -extern const bool __static_condition_default_317; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_894; +extern const bool __static_condition_default_1552; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_736; extern const bool __static_condition_default_357; -extern const bool __static_condition_default_914; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_1432; -extern const bool __static_condition_default_702; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_677; -extern const bool __static_condition_default_257; +extern const bool __static_condition_default_382; +extern const bool __static_condition_default_1391; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_1315; +extern const bool __static_condition_default_1345; +extern const bool __static_condition_default_875; +extern const bool __static_condition_default_613; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_747; +extern const bool __static_condition_default_636; +extern const bool __static_condition_default_619; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_2050; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_536; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_721; +extern const bool __static_condition_default_1409; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_735; extern const bool __static_condition_default_1531; -extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_1453; +extern const bool __static_condition_default_1754; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_542; extern const bool __static_condition_default_658; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_891; -extern const bool __static_condition_default_1165; -extern const bool __static_condition_default_735; +extern const bool __static_condition_default_568; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_1089; extern const bool __static_condition_default_337; -extern const bool __static_condition_default_872; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_313; +extern const bool __static_condition_default_980; extern const bool __static_condition_default_408; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_1424; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_1353; -extern const bool __static_condition_default_693; -extern const bool __static_condition_default_1749; -extern const bool __static_condition_default_787; -extern const bool __static_condition_default_1395; -extern const bool __static_condition_default_1754; -extern const bool __static_condition_default_2046; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_1773; -extern const bool __static_condition_default_431; -extern const bool __static_condition_default_792; +extern const bool __static_condition_default_1774; extern const bool __static_condition_default_944; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_1816; -extern const bool __static_condition_default_1787; -extern const bool __static_condition_default_1405; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_2043; -extern const bool __static_condition_default_2050; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_549; -extern const bool __static_condition_default_1159; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_842; -extern const bool __static_condition_default_333; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_2045; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_380; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_204; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_1409; -extern const bool __static_condition_default_488; -extern const bool __static_condition_default_715; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_1066; extern const bool __static_condition_default_998; -extern const bool __static_condition_default_1775; -extern const bool __static_condition_default_789; -extern const bool __static_condition_default_1560; -extern const bool __static_condition_default_755; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_1532; -extern const bool __static_condition_default_568; -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_1753; -extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_803; -extern const bool __static_condition_default_402; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_963; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_685; -extern const bool __static_condition_default_840; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_1377; +extern const bool __static_condition_default_1576; +extern const bool __static_condition_default_432; extern const bool __static_condition_default_521; -extern const bool __static_condition_default_793; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_813; +extern const bool __static_condition_default_2041; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_1159; +extern const bool __static_condition_default_1381; extern const bool __static_condition_default_393; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_267; +extern const bool __static_condition_default_380; +extern const bool __static_condition_default_1515; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_489; +extern const bool __static_condition_default_541; extern const bool __static_condition_default_578; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_1810; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_1164; -extern const bool __static_condition_default_1498; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_1315; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_217; -extern const bool __static_condition_default_769; -extern const bool __static_condition_default_1416; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_386; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_412; -extern const bool __static_condition_default_1774; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_1556; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_1349; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_956; -extern const bool __static_condition_default_1398; -extern const bool __static_condition_default_1458; -extern const bool __static_condition_default_894; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_367; -extern const bool __static_condition_default_709; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_670; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_840; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); diff --git a/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.inferres b/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c index 88c90dc6..73505f74 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c @@ -7,347 +7,347 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_521; +extern const bool __static_condition_default_2049; +extern const bool __static_condition_default_568; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_2057; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_1428; +extern const bool __static_condition_default_1808; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_1165; +extern const bool __static_condition_default_1489; +extern const bool __static_condition_default_1532; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_907; +extern const bool __static_condition_default_1395; +extern const bool __static_condition_default_1785; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_1315; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_455; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_1381; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_253; extern const bool __static_condition_default_210; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_761; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_76; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_1164; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_1750; +extern const bool __static_condition_default_846; +extern const bool __static_condition_default_1388; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_2056; +extern const bool __static_condition_default_193; extern const bool __static_condition_default_1409; -extern const bool __static_condition_default_1810; -extern const bool __static_condition_default_553; +extern const bool __static_condition_default_1791; +extern const bool __static_condition_default_1391; +extern const bool __static_condition_default_2052; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_1159; +extern const bool __static_condition_default_677; +extern const bool __static_condition_default_1564; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_1753; +extern const bool __static_condition_default_550; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_1459; +extern const bool __static_condition_default_1816; +extern const bool __static_condition_default_250; extern const bool __static_condition_default_257; +extern const bool __static_condition_default_1373; +extern const bool __static_condition_default_1475; +extern const bool __static_condition_default_779; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_432; extern const bool __static_condition_default_274; -extern const bool __static_condition_default_1775; -extern const bool __static_condition_default_235; +extern const bool __static_condition_default_1776; +extern const bool __static_condition_default_1424; +extern const bool __static_condition_default_636; +extern const bool __static_condition_default_521; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_1402; +extern const bool __static_condition_default_386; extern const bool __static_condition_default_514; -extern const bool __static_condition_default_419; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_1385; -extern const bool __static_condition_default_646; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_1516; -extern const bool __static_condition_default_1315; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_1475; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_1420; -extern const bool __static_condition_default_1814; -extern const bool __static_condition_default_1373; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_1568; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_1357; -extern const bool __static_condition_default_914; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_2053; -extern const bool __static_condition_default_1428; -extern const bool __static_condition_default_388; -extern const bool __static_condition_default_1459; -extern const bool __static_condition_default_780; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_1395; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_333; +extern const bool __static_condition_default_789; extern const bool __static_condition_default_583; -extern const bool __static_condition_default_395; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_1774; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_1458; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_1341; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_1568; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_1405; +extern const bool __static_condition_default_2061; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_769; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_868; extern const bool __static_condition_default_651; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_1152; -extern const bool __static_condition_default_1498; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_1353; -extern const bool __static_condition_default_848; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_408; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_803; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_878; extern const bool __static_condition_default_1572; -extern const bool __static_condition_default_929; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_1432; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_761; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_638; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_721; +extern const bool __static_condition_default_1357; +extern const bool __static_condition_default_848; extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_357; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_347; -extern const bool __static_condition_default_549; -extern const bool __static_condition_default_813; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_1749; extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_769; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_1515; -extern const bool __static_condition_default_217; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_380; -extern const bool __static_condition_default_1773; -extern const bool __static_condition_default_1754; -extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_1750; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_461; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_431; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_980; +extern const bool __static_condition_default_544; extern const bool __static_condition_default_613; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_380; +extern const bool __static_condition_default_759; +extern const bool __static_condition_default_1089; extern const bool __static_condition_default_894; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_1532; -extern const bool __static_condition_default_393; +extern const bool __static_condition_default_1754; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_963; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_1420; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_249; extern const bool __static_condition_default_834; -extern const bool __static_condition_default_536; -extern const bool __static_condition_default_564; -extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_1560; -extern const bool __static_condition_default_842; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_2054; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_891; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_858; -extern const bool __static_condition_default_382; extern const bool __static_condition_default_956; -extern const bool __static_condition_default_907; -extern const bool __static_condition_default_2057; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_891; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_1556; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_1432; +extern const bool __static_condition_default_2053; +extern const bool __static_condition_default_367; +extern const bool __static_condition_default_929; +extern const bool __static_condition_default_2051; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_842; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_1349; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_692; extern const bool __static_condition_default_1416; -extern const bool __static_condition_default_1774; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_1753; -extern const bool __static_condition_default_1944; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_862; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_1385; +extern const bool __static_condition_default_187; extern const bool __static_condition_default_244; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_2054; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_536; extern const bool __static_condition_default_752; -extern const bool __static_condition_default_313; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_543; -extern const bool __static_condition_default_311; -extern const bool __static_condition_default_633; +extern const bool __static_condition_default_1560; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_788; extern const bool __static_condition_default_1377; -extern const bool __static_condition_default_367; -extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_559; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_872; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_693; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_753; -extern const bool __static_condition_default_386; -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_963; -extern const bool __static_condition_default_1345; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_779; -extern const bool __static_condition_default_846; +extern const bool __static_condition_default_1361; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_619; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_1789; +extern const bool __static_condition_default_753; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_419; +extern const bool __static_condition_default_1516; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_632; extern const bool __static_condition_default_955; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_645; -extern const bool __static_condition_default_957; -extern const bool __static_condition_default_2052; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_887; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_792; extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_1402; -extern const bool __static_condition_default_1369; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_1349; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_1556; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_568; -extern const bool __static_condition_default_333; +extern const bool __static_condition_default_791; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_1814; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_549; extern const bool __static_condition_default_1453; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_246; +extern const bool __static_condition_default_1498; +extern const bool __static_condition_default_608; extern const bool __static_condition_default_650; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_1164; -extern const bool __static_condition_default_1398; -extern const bool __static_condition_default_1816; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_590; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_1489; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_1531; -extern const bool __static_condition_default_1789; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_1424; -extern const bool __static_condition_default_201; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_337; +extern const bool __static_condition_default_559; extern const bool __static_condition_default_793; -extern const bool __static_condition_default_53; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_670; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_2056; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_1552; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_755; -extern const bool __static_condition_default_1405; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_1808; -extern const bool __static_condition_default_875; -extern const bool __static_condition_default_787; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_267; extern const bool __static_condition_default_488; -extern const bool __static_condition_default_1564; +extern const bool __static_condition_default_1152; +extern const bool __static_condition_default_388; +extern const bool __static_condition_default_1531; +extern const bool __static_condition_default_290; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_1775; +extern const bool __static_condition_default_311; extern const bool __static_condition_default_345; -extern const bool __static_condition_default_1388; -extern const bool __static_condition_default_1165; -extern const bool __static_condition_default_1361; -extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_1776; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_747; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_2061; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_1369; +extern const bool __static_condition_default_1773; +extern const bool __static_condition_default_813; extern const bool __static_condition_default_198; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_204; -extern const bool __static_condition_default_685; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_1785; -extern const bool __static_condition_default_1159; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_938; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_1398; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_875; +extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_1944; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_1515; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_512; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_1787; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_747; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_998; extern const bool __static_condition_default_1436; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_709; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_1353; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_2055; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_1345; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_282; extern const bool __static_condition_default_1576; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_2051; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_248; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_2049; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_315; -extern const bool __static_condition_default_677; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_1458; -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_632; -extern const bool __static_condition_default_661; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_1810; +extern const bool __static_condition_default_84; +extern const bool __static_condition_default_217; extern const bool __static_condition_default_494; -extern const bool __static_condition_default_402; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_317; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_512; -extern const bool __static_condition_default_76; -extern const bool __static_condition_default_438; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_412; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_1791; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_1485; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_701; -extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_1341; -extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_347; +extern const bool __static_condition_default_597; extern const bool __static_condition_default_1365; -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_187; -extern const bool __static_condition_default_789; -extern const bool __static_condition_default_700; +extern const bool __static_condition_default_365; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_670; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_204; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_395; extern const bool __static_condition_default_702; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_1391; -extern const bool __static_condition_default_2055; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_1787; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_290; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_1381; -extern const bool __static_condition_default_1749; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_432; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_1552; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_1485; +extern const bool __static_condition_default_382; +extern const bool __static_condition_default_489; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_246; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); diff --git a/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.inferres b/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/dbafef17dd1.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/dbafef17dd1.desugared.c index 04517007..dfe0af64 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/dbafef17dd1.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/dbafef17dd1.desugared.c @@ -7,90 +7,90 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_1048; -extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_305; -extern const bool __static_condition_default_627; -extern const bool __static_condition_default_288; extern const bool __static_condition_default_246; -extern const bool __static_condition_default_604; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_67; -extern const bool __static_condition_default_1092; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_1031; -extern const bool __static_condition_default_818; -extern const bool __static_condition_default_1038; -extern const bool __static_condition_default_308; +extern const bool __static_condition_default_394; extern const bool __static_condition_default_341; -extern const bool __static_condition_default_215; -extern const bool __static_condition_default_276; +extern const bool __static_condition_default_67; +extern const bool __static_condition_default_1037; extern const bool __static_condition_default_249; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_378; +extern const bool __static_condition_default_261; +extern const bool __static_condition_default_627; +extern const bool __static_condition_default_1047; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_243; +extern const bool __static_condition_default_604; +extern const bool __static_condition_default_621; extern const bool __static_condition_default_426; -extern const bool __static_condition_default_325; -extern const bool __static_condition_default_1097; -extern const bool __static_condition_default_1032; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_805; -extern const bool __static_condition_default_429; -extern const bool __static_condition_default_279; -extern const bool __static_condition_default_594; +extern const bool __static_condition_default_1024; +extern const bool __static_condition_default_237; +extern const bool __static_condition_default_423; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_361; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_1077; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_818; +extern const bool __static_condition_default_1082; extern const bool __static_condition_default_804; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_1037; +extern const bool __static_condition_default_1074; +extern const bool __static_condition_default_1090; extern const bool __static_condition_default_258; -extern const bool __static_condition_default_273; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_234; -extern const bool __static_condition_default_352; +extern const bool __static_condition_default_240; +extern const bool __static_condition_default_1054; +extern const bool __static_condition_default_1088; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_349; +extern const bool __static_condition_default_594; +extern const bool __static_condition_default_1025; +extern const bool __static_condition_default_806; +extern const bool __static_condition_default_276; +extern const bool __static_condition_default_1096; +extern const bool __static_condition_default_414; extern const bool __static_condition_default_417; -extern const bool __static_condition_default_361; +extern const bool __static_condition_default_1053; +extern const bool __static_condition_default_285; +extern const bool __static_condition_default_273; extern const bool __static_condition_default_432; -extern const bool __static_condition_default_1026; -extern const bool __static_condition_default_1054; -extern const bool __static_condition_default_252; -extern const bool __static_condition_default_1055; +extern const bool __static_condition_default_1030; +extern const bool __static_condition_default_325; extern const bool __static_condition_default_1095; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_1049; -extern const bool __static_condition_default_285; -extern const bool __static_condition_default_60; -extern const bool __static_condition_default_629; -extern const bool __static_condition_default_243; extern const bool __static_condition_default_255; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_1084; -extern const bool __static_condition_default_240; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_1048; +extern const bool __static_condition_default_1089; extern const bool __static_condition_default_579; -extern const bool __static_condition_default_1088; -extern const bool __static_condition_default_423; -extern const bool __static_condition_default_1074; -extern const bool __static_condition_default_394; -extern const bool __static_condition_default_420; -extern const bool __static_condition_default_1075; +extern const bool __static_condition_default_1094; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_805; +extern const bool __static_condition_default_305; +extern const bool __static_condition_default_379; +extern const bool __static_condition_default_1031; +extern const bool __static_condition_default_288; extern const bool __static_condition_default_302; extern const bool __static_condition_default_581; -extern const bool __static_condition_default_237; -extern const bool __static_condition_default_261; -extern const bool __static_condition_default_1093; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_379; -extern const bool __static_condition_default_1096; +extern const bool __static_condition_default_1087; +extern const bool __static_condition_default_308; extern const bool __static_condition_default_595; -extern const bool __static_condition_default_1078; -extern const bool __static_condition_default_349; +extern const bool __static_condition_default_60; +extern const bool __static_condition_default_378; extern const bool __static_condition_default_1083; -extern const bool __static_condition_default_414; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_1025; -extern const bool __static_condition_default_806; +extern const bool __static_condition_default_252; +extern const bool __static_condition_default_420; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_629; +extern const bool __static_condition_default_352; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_1092; +extern const bool __static_condition_default_279; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_429; +extern const bool __static_condition_default_215; +extern const bool __static_condition_default_234; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -507,60 +507,59 @@ __static_renaming("__strdup_897", "strdup"); __static_renaming("__strndup_901", "strndup"); __static_renaming("__strndup_902", "strndup"); __static_renaming("__strchr_905", "strchr"); -__static_renaming("__strchr_906", "strchr"); -__static_renaming("__strrchr_909", "strrchr"); +__static_renaming("__strrchr_908", "strrchr"); +__static_renaming("__strcspn_911", "strcspn"); __static_renaming("__strcspn_912", "strcspn"); -__static_renaming("__strcspn_913", "strcspn"); +__static_renaming("__strspn_915", "strspn"); __static_renaming("__strspn_916", "strspn"); -__static_renaming("__strspn_917", "strspn"); -__static_renaming("__strpbrk_920", "strpbrk"); -__static_renaming("__strstr_923", "strstr"); -__static_renaming("__strtok_926", "strtok"); -__static_renaming("____strtok_r_930", "__strtok_r"); -__static_renaming("__strtok_r_934", "strtok_r"); +__static_renaming("__strpbrk_919", "strpbrk"); +__static_renaming("__strstr_922", "strstr"); +__static_renaming("__strtok_925", "strtok"); +__static_renaming("____strtok_r_929", "__strtok_r"); +__static_renaming("__strtok_r_933", "strtok_r"); +__static_renaming("__strlen_935", "strlen"); __static_renaming("__strlen_936", "strlen"); __static_renaming("__strlen_937", "strlen"); __static_renaming("__strlen_938", "strlen"); -__static_renaming("__strlen_939", "strlen"); +__static_renaming("__strnlen_942", "strnlen"); __static_renaming("__strnlen_943", "strnlen"); -__static_renaming("__strnlen_944", "strnlen"); +__static_renaming("__strerror_945", "strerror"); __static_renaming("__strerror_946", "strerror"); -__static_renaming("__strerror_947", "strerror"); +__static_renaming("__strerror_r_951", "strerror_r"); __static_renaming("__strerror_r_952", "strerror_r"); -__static_renaming("__strerror_r_953", "strerror_r"); -__static_renaming("__strerror_l_956", "strerror_l"); +__static_renaming("__strerror_l_955", "strerror_l"); +__static_renaming("____bzero_959", "__bzero"); __static_renaming("____bzero_960", "__bzero"); __static_renaming("____bzero_961", "__bzero"); __static_renaming("____bzero_962", "__bzero"); -__static_renaming("____bzero_963", "__bzero"); +__static_renaming("__bcopy_967", "bcopy"); __static_renaming("__bcopy_968", "bcopy"); -__static_renaming("__bcopy_969", "bcopy"); +__static_renaming("__bzero_972", "bzero"); __static_renaming("__bzero_973", "bzero"); -__static_renaming("__bzero_974", "bzero"); +__static_renaming("__bcmp_978", "bcmp"); __static_renaming("__bcmp_979", "bcmp"); -__static_renaming("__bcmp_980", "bcmp"); -__static_renaming("__index_983", "index"); -__static_renaming("__rindex_986", "rindex"); -__static_renaming("__ffs_988", "ffs"); -__static_renaming("__strcasecmp_991", "strcasecmp"); +__static_renaming("__index_982", "index"); +__static_renaming("__rindex_985", "rindex"); +__static_renaming("__ffs_987", "ffs"); +__static_renaming("__strcasecmp_990", "strcasecmp"); +__static_renaming("__strncasecmp_995", "strncasecmp"); __static_renaming("__strncasecmp_996", "strncasecmp"); -__static_renaming("__strncasecmp_997", "strncasecmp"); -__static_renaming("__strsep_1000", "strsep"); -__static_renaming("__strsignal_1002", "strsignal"); -__static_renaming("____stpcpy_1005", "__stpcpy"); -__static_renaming("__stpcpy_1008", "stpcpy"); +__static_renaming("__strsep_999", "strsep"); +__static_renaming("__strsignal_1001", "strsignal"); +__static_renaming("____stpcpy_1004", "__stpcpy"); +__static_renaming("__stpcpy_1007", "stpcpy"); +__static_renaming("____stpncpy_1012", "__stpncpy"); __static_renaming("____stpncpy_1013", "__stpncpy"); -__static_renaming("____stpncpy_1014", "__stpncpy"); +__static_renaming("__stpncpy_1018", "stpncpy"); __static_renaming("__stpncpy_1019", "stpncpy"); -__static_renaming("__stpncpy_1020", "stpncpy"); +__static_renaming("____stpncpy_chk_1061", "__stpncpy_chk"); __static_renaming("____stpncpy_chk_1062", "__stpncpy_chk"); -__static_renaming("____stpncpy_chk_1063", "__stpncpy_chk"); +__static_renaming("____stpncpy_alias_1067", "__stpncpy_alias"); __static_renaming("____stpncpy_alias_1068", "__stpncpy_alias"); -__static_renaming("____stpncpy_alias_1069", "__stpncpy_alias"); -__static_renaming("__newuri_1085", "newuri"); +__static_renaming("__newuri_1084", "newuri"); +__static_renaming("__apply_rewrite_rule_1085", "apply_rewrite_rule"); __static_renaming("__apply_rewrite_rule_1086", "apply_rewrite_rule"); -__static_renaming("__apply_rewrite_rule_1087", "apply_rewrite_rule"); -__static_renaming("__main_1094", "main"); +__static_renaming("__main_1093", "main"); __static_condition_renaming("__static_condition_default_60", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H) && (defined _BITS_TYPESIZES_H)"); __static_condition_renaming("__static_condition_default_67", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); @@ -622,32 +621,32 @@ __static_condition_renaming("__static_condition_default_805", "!(defined _STDLIB __static_condition_renaming("__static_condition_default_806", "(defined _STDLIB_H)"); __static_condition_renaming("__static_condition_default_818", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__)"); __static_condition_renaming("__static_condition_default_819", "(defined _STDLIB_H) && !(defined __STRICT_ANSI__)"); -__static_condition_renaming("__static_condition_default_1025", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1026", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1031", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1032", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1037", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1038", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1048", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1049", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1054", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1055", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1074", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1075", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1078", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1083", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1084", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1088", "!(defined _FORTIFY_SOURCE) && !(defined HAS_APACHE_REGEX_LIB) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined HAS_APACHE_REGEX_LIB) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined HAS_APACHE_REGEX_LIB) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined HAS_APACHE_REGEX_LIB)"); -__static_condition_renaming("__static_condition_default_1089", "!(defined _FORTIFY_SOURCE) && (defined HAS_APACHE_REGEX_LIB) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined HAS_APACHE_REGEX_LIB) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined HAS_APACHE_REGEX_LIB) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined HAS_APACHE_REGEX_LIB)"); -__static_condition_renaming("__static_condition_default_1090", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && (defined HAS_APACHE_REGEX_LIB) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined HAS_APACHE_REGEX_LIB) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined HAS_APACHE_REGEX_LIB) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined HAS_APACHE_REGEX_LIB)"); -__static_condition_renaming("__static_condition_default_1091", "(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && (defined HAS_APACHE_REGEX_LIB) || (defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined HAS_APACHE_REGEX_LIB) || (defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined HAS_APACHE_REGEX_LIB) || (defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined HAS_APACHE_REGEX_LIB)"); -__static_condition_renaming("__static_condition_default_1092", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined HAS_APACHE_REGEX_LIB)"); -__static_condition_renaming("__static_condition_default_1093", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined HAS_APACHE_REGEX_LIB)"); -__static_condition_renaming("__static_condition_default_1095", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1096", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1097", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc)"); - -if (__static_condition_default_1097) { +__static_condition_renaming("__static_condition_default_1024", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1025", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1030", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1031", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1036", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1037", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1047", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1048", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1053", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1054", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1073", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1074", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1077", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1082", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1083", "(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1087", "!(defined _FORTIFY_SOURCE) && !(defined HAS_APACHE_REGEX_LIB) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined HAS_APACHE_REGEX_LIB) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined HAS_APACHE_REGEX_LIB) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined HAS_APACHE_REGEX_LIB)"); +__static_condition_renaming("__static_condition_default_1088", "!(defined _FORTIFY_SOURCE) && (defined HAS_APACHE_REGEX_LIB) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined HAS_APACHE_REGEX_LIB) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined HAS_APACHE_REGEX_LIB) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined HAS_APACHE_REGEX_LIB)"); +__static_condition_renaming("__static_condition_default_1089", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && (defined HAS_APACHE_REGEX_LIB) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined HAS_APACHE_REGEX_LIB) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined HAS_APACHE_REGEX_LIB) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined HAS_APACHE_REGEX_LIB)"); +__static_condition_renaming("__static_condition_default_1090", "(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && (defined HAS_APACHE_REGEX_LIB) || (defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined HAS_APACHE_REGEX_LIB) || (defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined HAS_APACHE_REGEX_LIB) || (defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined HAS_APACHE_REGEX_LIB)"); +__static_condition_renaming("__static_condition_default_1091", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined HAS_APACHE_REGEX_LIB)"); +__static_condition_renaming("__static_condition_default_1092", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined HAS_APACHE_REGEX_LIB)"); +__static_condition_renaming("__static_condition_default_1094", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1095", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1096", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined __need_malloc_and_calloc) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || (defined _STDLIB_H) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO)"); + +if (__static_condition_default_1096) { __static_parse_error("Unable to parse"); } }; @@ -1473,52 +1472,51 @@ extern char * ((__strdup_897) (const char * (____s_896)));// L171:L172 extern char * ((__strndup_901) (const char * (____string_898), __size_t_1 ____n_899));// L179:L180 extern char * ((__strndup_902) (const char * (____string_898), __size_t_799 ____n_900));// L179:L180 extern char * ((__strchr_905) (const char * (____s_903), int ____c_904));// L231:L232 -extern char * ((__strchr_906) (const char * (____s_903), int ____c_904));// L231:L232 -extern char * ((__strrchr_909) (const char * (____s_907), int ____c_908));// L258:L259 -extern __size_t_1 (__strcspn_912) (const char * (____s_910), const char * (____reject_911));// L280:L281 -extern __size_t_799 (__strcspn_913) (const char * (____s_910), const char * (____reject_911));// L280:L281 -extern __size_t_1 (__strspn_916) (const char * (____s_914), const char * (____accept_915));// L284:L285 -extern __size_t_799 (__strspn_917) (const char * (____s_914), const char * (____accept_915));// L284:L285 -extern char * ((__strpbrk_920) (const char * (____s_918), const char * (____accept_919)));// L310:L311 -extern char * ((__strstr_923) (const char * (____haystack_921), const char * (____needle_922)));// L337:L338 -extern char * ((__strtok_926) (char * __restrict ____s_924, const char * __restrict ____delim_925));// L343:L344 -extern char * ((____strtok_r_930) (char * __restrict ____s_927, const char * __restrict ____delim_928, char * (* __restrict ____save_ptr_929)));// L349:L352 -extern char * ((__strtok_r_934) (char * __restrict ____s_931, const char * __restrict ____delim_932, char * (* __restrict ____save_ptr_933)));// L354:L356 -extern __size_t_1 (__strlen_936) (const char * (____s_935));// L394:L395 -extern __size_t_799 (__strlen_937) (const char * (____s_935));// L394:L395 -extern __size_t_1 (__strlen_938) (const char * (____s_935));// L394:L395 -extern __size_t_799 (__strlen_939) (const char * (____s_935));// L394:L395 -extern __size_t_1 (__strnlen_943) (const char * (____string_940), __size_t_1 ____maxlen_941);// L401:L402 -extern __size_t_799 (__strnlen_944) (const char * (____string_940), __size_t_799 ____maxlen_942);// L401:L402 -extern char * ((__strerror_946) (int ____errnum_945));// L408 -extern char * ((__strerror_947) (int ____errnum_945));// L408 -extern int (__strerror_r_952) (int ____errnum_948, char * (____buf_949), __size_t_1 ____buflen_950);// L422:L424 -extern int (__strerror_r_953) (int ____errnum_948, char * (____buf_949), __size_t_799 ____buflen_951);// L422:L424 -extern char * ((__strerror_l_956) (int ____errnum_954, ____locale_t_883 ____l_955));// L440 -extern void (____bzero_960) (void * (____s_957), __size_t_1 ____n_958);// L446 -extern void (____bzero_961) (void * (____s_957), __size_t_799 ____n_959);// L446 -extern void (____bzero_962) (void * (____s_957), __size_t_1 ____n_958);// L446 -extern void (____bzero_963) (void * (____s_957), __size_t_799 ____n_959);// L446 -extern void (__bcopy_968) (const void * (____src_964), void * (____dest_965), __size_t_1 ____n_966);// L450:L451 -extern void (__bcopy_969) (const void * (____src_964), void * (____dest_965), __size_t_799 ____n_967);// L450:L451 -extern void (__bzero_973) (void * (____s_970), __size_t_1 ____n_971);// L454 -extern void (__bzero_974) (void * (____s_970), __size_t_799 ____n_972);// L454 -extern int (__bcmp_979) (const void * (____s1_975), const void * (____s2_976), __size_t_1 ____n_977);// L457:L458 -extern int (__bcmp_980) (const void * (____s1_975), const void * (____s2_976), __size_t_799 ____n_978);// L457:L458 -extern char * ((__index_983) (const char * (____s_981), int ____c_982));// L484:L485 -extern char * ((__rindex_986) (const char * (____s_984), int ____c_985));// L512:L513 -extern int (__ffs_988) (int ____i_987);// L518 -extern int (__strcasecmp_991) (const char * (____s1_989), const char * (____s2_990));// L529:L530 -extern int (__strncasecmp_996) (const char * (____s1_992), const char * (____s2_993), __size_t_1 ____n_994);// L533:L534 -extern int (__strncasecmp_997) (const char * (____s1_992), const char * (____s2_993), __size_t_799 ____n_995);// L533:L534 -extern char * ((__strsep_1000) (char * (* __restrict ____stringp_998), const char * __restrict ____delim_999));// L552:L554 -extern char * ((__strsignal_1002) (int ____sig_1001));// L559 -extern char * ((____stpcpy_1005) (char * __restrict ____dest_1003, const char * __restrict ____src_1004));// L562:L563 -extern char * ((__stpcpy_1008) (char * __restrict ____dest_1006, const char * __restrict ____src_1007));// L564:L565 -extern char * ((____stpncpy_1013) (char * __restrict ____dest_1009, const char * __restrict ____src_1010, __size_t_1 ____n_1011));// L569:L571 -extern char * ((____stpncpy_1014) (char * __restrict ____dest_1009, const char * __restrict ____src_1010, __size_t_799 ____n_1012));// L569:L571 -extern char * ((__stpncpy_1019) (char * __restrict ____dest_1015, const char * __restrict ____src_1016, __size_t_1 ____n_1017));// L572:L574 -extern char * ((__stpncpy_1020) (char * __restrict ____dest_1015, const char * __restrict ____src_1016, __size_t_799 ____n_1018));// L572:L574 +extern char * ((__strrchr_908) (const char * (____s_906), int ____c_907));// L258:L259 +extern __size_t_1 (__strcspn_911) (const char * (____s_909), const char * (____reject_910));// L280:L281 +extern __size_t_799 (__strcspn_912) (const char * (____s_909), const char * (____reject_910));// L280:L281 +extern __size_t_1 (__strspn_915) (const char * (____s_913), const char * (____accept_914));// L284:L285 +extern __size_t_799 (__strspn_916) (const char * (____s_913), const char * (____accept_914));// L284:L285 +extern char * ((__strpbrk_919) (const char * (____s_917), const char * (____accept_918)));// L310:L311 +extern char * ((__strstr_922) (const char * (____haystack_920), const char * (____needle_921)));// L337:L338 +extern char * ((__strtok_925) (char * __restrict ____s_923, const char * __restrict ____delim_924));// L343:L344 +extern char * ((____strtok_r_929) (char * __restrict ____s_926, const char * __restrict ____delim_927, char * (* __restrict ____save_ptr_928)));// L349:L352 +extern char * ((__strtok_r_933) (char * __restrict ____s_930, const char * __restrict ____delim_931, char * (* __restrict ____save_ptr_932)));// L354:L356 +extern __size_t_1 (__strlen_935) (const char * (____s_934));// L394:L395 +extern __size_t_799 (__strlen_936) (const char * (____s_934));// L394:L395 +extern __size_t_1 (__strlen_937) (const char * (____s_934));// L394:L395 +extern __size_t_799 (__strlen_938) (const char * (____s_934));// L394:L395 +extern __size_t_1 (__strnlen_942) (const char * (____string_939), __size_t_1 ____maxlen_940);// L401:L402 +extern __size_t_799 (__strnlen_943) (const char * (____string_939), __size_t_799 ____maxlen_941);// L401:L402 +extern char * ((__strerror_945) (int ____errnum_944));// L408 +extern char * ((__strerror_946) (int ____errnum_944));// L408 +extern int (__strerror_r_951) (int ____errnum_947, char * (____buf_948), __size_t_1 ____buflen_949);// L422:L424 +extern int (__strerror_r_952) (int ____errnum_947, char * (____buf_948), __size_t_799 ____buflen_950);// L422:L424 +extern char * ((__strerror_l_955) (int ____errnum_953, ____locale_t_883 ____l_954));// L440 +extern void (____bzero_959) (void * (____s_956), __size_t_1 ____n_957);// L446 +extern void (____bzero_960) (void * (____s_956), __size_t_799 ____n_958);// L446 +extern void (____bzero_961) (void * (____s_956), __size_t_1 ____n_957);// L446 +extern void (____bzero_962) (void * (____s_956), __size_t_799 ____n_958);// L446 +extern void (__bcopy_967) (const void * (____src_963), void * (____dest_964), __size_t_1 ____n_965);// L450:L451 +extern void (__bcopy_968) (const void * (____src_963), void * (____dest_964), __size_t_799 ____n_966);// L450:L451 +extern void (__bzero_972) (void * (____s_969), __size_t_1 ____n_970);// L454 +extern void (__bzero_973) (void * (____s_969), __size_t_799 ____n_971);// L454 +extern int (__bcmp_978) (const void * (____s1_974), const void * (____s2_975), __size_t_1 ____n_976);// L457:L458 +extern int (__bcmp_979) (const void * (____s1_974), const void * (____s2_975), __size_t_799 ____n_977);// L457:L458 +extern char * ((__index_982) (const char * (____s_980), int ____c_981));// L484:L485 +extern char * ((__rindex_985) (const char * (____s_983), int ____c_984));// L512:L513 +extern int (__ffs_987) (int ____i_986);// L518 +extern int (__strcasecmp_990) (const char * (____s1_988), const char * (____s2_989));// L529:L530 +extern int (__strncasecmp_995) (const char * (____s1_991), const char * (____s2_992), __size_t_1 ____n_993);// L533:L534 +extern int (__strncasecmp_996) (const char * (____s1_991), const char * (____s2_992), __size_t_799 ____n_994);// L533:L534 +extern char * ((__strsep_999) (char * (* __restrict ____stringp_997), const char * __restrict ____delim_998));// L552:L554 +extern char * ((__strsignal_1001) (int ____sig_1000));// L559 +extern char * ((____stpcpy_1004) (char * __restrict ____dest_1002, const char * __restrict ____src_1003));// L562:L563 +extern char * ((__stpcpy_1007) (char * __restrict ____dest_1005, const char * __restrict ____src_1006));// L564:L565 +extern char * ((____stpncpy_1012) (char * __restrict ____dest_1008, const char * __restrict ____src_1009, __size_t_1 ____n_1010));// L569:L571 +extern char * ((____stpncpy_1013) (char * __restrict ____dest_1008, const char * __restrict ____src_1009, __size_t_799 ____n_1011));// L569:L571 +extern char * ((__stpncpy_1018) (char * __restrict ____dest_1014, const char * __restrict ____src_1015, __size_t_1 ____n_1016));// L572:L574 +extern char * ((__stpncpy_1019) (char * __restrict ____dest_1014, const char * __restrict ____src_1015, __size_t_799 ____n_1017));// L572:L574 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ @@ -1526,24 +1524,24 @@ extern char * ((__stpncpy_1020) (char * __restrict ____dest_1015, const char /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern char * ((____stpncpy_chk_1062) (char * (____dest_1056), const char * (____src_1057), __size_t_1 ____n_1058, __size_t_1 ____destlen_1060));// L130:L131 -extern char * ((____stpncpy_chk_1063) (char * (____dest_1056), const char * (____src_1057), __size_t_799 ____n_1059, __size_t_799 ____destlen_1061));// L130:L131 -extern char * ((____stpncpy_alias_1068) (char * (____dest_1064), const char * (____src_1065), __size_t_1 ____n_1066));// L132:L133 -extern char * ((____stpncpy_alias_1069) (char * (____dest_1064), const char * (____src_1065), __size_t_799 ____n_1067));// L132:L133 +extern char * ((____stpncpy_chk_1061) (char * (____dest_1055), const char * (____src_1056), __size_t_1 ____n_1057, __size_t_1 ____destlen_1059));// L130:L131 +extern char * ((____stpncpy_chk_1062) (char * (____dest_1055), const char * (____src_1056), __size_t_799 ____n_1058, __size_t_799 ____destlen_1060));// L130:L131 +extern char * ((____stpncpy_alias_1067) (char * (____dest_1063), const char * (____src_1064), __size_t_1 ____n_1065));// L132:L133 +extern char * ((____stpncpy_alias_1068) (char * (____dest_1063), const char * (____src_1064), __size_t_799 ____n_1066));// L132:L133 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -void (__apply_rewrite_rule_1086) () { +void (__apply_rewrite_rule_1085) () { { -if (__static_condition_default_1088) { +if (__static_condition_default_1087) { { { -char __newuri_1085[20];// L8 +char __newuri_1084[20];// L8 } } @@ -1551,22 +1549,22 @@ char __newuri_1085[20];// L8 } -if (__static_condition_default_1089) { +if (__static_condition_default_1088) { { { -char __newuri_1085[20];// L8 +char __newuri_1084[20];// L8 -if (__static_condition_default_1090) { - __strncpy_847 ( __newuri_1085 ,"pregsub()",sizeof(( __newuri_1085 )) - 1) ; // L11 +if (__static_condition_default_1089) { + __strncpy_847 ( __newuri_1084 ,"pregsub()",sizeof(( __newuri_1084 )) - 1) ; // L11 } -if (__static_condition_default_1091) { - __strncpy_848 ( __newuri_1085 ,"pregsub()",sizeof(( __newuri_1085 )) - 1) ; // L11 +if (__static_condition_default_1090) { + __strncpy_848 ( __newuri_1084 ,"pregsub()",sizeof(( __newuri_1084 )) - 1) ; // L11 } - __newuri_1085 [ sizeof(( __newuri_1085 - 1 )) ] = '\0' ; // L12 + __newuri_1084 [ sizeof(( __newuri_1084 - 1 )) ] = '\0' ; // L12 } } @@ -1574,17 +1572,17 @@ if (__static_condition_default_1091) { } }} -void (__apply_rewrite_rule_1087) () { +void (__apply_rewrite_rule_1086) () { { -if (__static_condition_default_1092) { +if (__static_condition_default_1091) { { { -char __newuri_1085[20];// L8 +char __newuri_1084[20];// L8 } } @@ -1592,17 +1590,17 @@ char __newuri_1085[20];// L8 } -if (__static_condition_default_1093) { +if (__static_condition_default_1092) { { { -char __newuri_1085[20];// L8 +char __newuri_1084[20];// L8 __static_type_error("type error") ; // L11 - __newuri_1085 [ sizeof(( __newuri_1085 - 1 )) ] = '\0' ; // L12 + __newuri_1084 [ sizeof(( __newuri_1084 - 1 )) ] = '\0' ; // L12 } } @@ -1610,19 +1608,19 @@ __static_type_error("type error") ; // L11 } }} -int (__main_1094) (void ) { +int (__main_1093) (void ) { { { +if (__static_condition_default_1094) { + __apply_rewrite_rule_1085 ( ) ; // L20 +} if (__static_condition_default_1095) { __apply_rewrite_rule_1086 ( ) ; // L20 } -if (__static_condition_default_1096) { - __apply_rewrite_rule_1087 ( ) ; // L20 -} return 0 ;// L21 } } diff --git a/fonda/cpp_testsuite/varBugs/APACHE/dbafef17dd1.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/dbafef17dd1.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/dbafef17dd1.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/dbafef17dd1.inferres b/fonda/cpp_testsuite/varBugs/APACHE/dbafef17dd1.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/dbafef17dd1.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/test.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/test.desugared.c index b14430d1..12e3e87c 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/test.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/test.desugared.c @@ -7,16 +7,40 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); +extern const bool __static_condition_default_4; +extern const bool __static_condition_default_3; void __static_initializer_default() { __static_renaming("__z_0", "z"); __static_renaming("__main_1", "main"); +__static_renaming("__main_2", "main"); +__static_condition_renaming("__static_condition_default_3", "!(defined XX) && !(defined YY) && !(defined ZZ) || !(defined XX) && (defined YY) || (defined XX)"); +__static_condition_renaming("__static_condition_default_4", "!(defined XX) && !(defined YY) && (defined ZZ)"); }; int __z_0;// L6 int (__main_1) () { +if (__static_condition_default_3) { + +{ +{ + + + +__static_type_error("type error") ; // L13 +return 0 ;// L14 +} +} + + +} +} +int (__main_2) () { + +if (__static_condition_default_4) { + { { @@ -29,4 +53,5 @@ return 0 ;// L14 } +} diff --git a/fonda/cpp_testsuite/varBugs/APACHE/test.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/test.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/test.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/test.inferres b/fonda/cpp_testsuite/varBugs/APACHE/test.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX-0301ffab3d9.report b/fonda/cpp_testsuite/varBugs/BUSYBOX-0301ffab3d9.report index d23a8c41..85928c1d 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX-0301ffab3d9.report +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX-0301ffab3d9.report @@ -3,4 +3,12 @@ Macros: EXT2FS_ENABLE_SWAPFS [-UEXT2FS_ENABLE_SWAPFS ] Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.desugared.c:51:2: warning: Value stored to '__gdp_0' is never read [deadcode.DeadStores] + __gdp_0 = "group_desc" ; // L7 + ^ ~~~~~~~~~~~~ +1 warning generated. +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX-061fd0a353e.report b/fonda/cpp_testsuite/varBugs/BUSYBOX-061fd0a353e.report index f4a5ee8d..a94546ef 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX-061fd0a353e.report +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX-061fd0a353e.report @@ -3,19 +3,48 @@ Macros: CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF [-UCONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF -UCONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF ] -64 :: Line:16 +clang :: 82 :: Line:16 Value stored to 'p' is never read [deadcode.DeadStores] [-DCONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF=1 -UCONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF ] [-UCONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF -DCONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF=1 ] -65 :: Line:16 +clang :: 83 :: Line:16 Value stored to 'p' is never read [deadcode.DeadStores] -66 :: Line:27 +clang :: 84 :: Line:27 Branch condition evaluates to a garbage value [core.uninitialized.Branch] +infer :: 85 :: Line:27 + Uninitialized Value [-DCONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF=1 -DCONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF=1 ] -67 :: Line:16 +clang :: 86 :: Line:16 Value stored to 'p' is never read [deadcode.DeadStores] -68 :: Line:20 +clang :: 87 :: Line:20 Branch condition evaluates to a garbage value [core.uninitialized.Branch] -69 :: Line:27 +clang :: 88 :: Line:27 Branch condition evaluates to a garbage value [core.uninitialized.Branch] -File Failed +infer :: 89 :: Line:20 + Uninitialized Value +infer :: 90 :: Line:27 + Uninitialized Value +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.c:3062:2: warning: Value stored to '__p_2040' is never read [deadcode.DeadStores] + __p_2040 = * __argv_2037 ++ , -- __argc_2036 ; // L16 + ^ ~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.c:3229:2: warning: Value stored to '__p_2040' is never read [deadcode.DeadStores] + __p_2040 = * __argv_2037 ++ , -- __argc_2036 ; // L16 + ^ ~~~~~~~~~~~~~~~~~~ +2 warnings generated. +Desugared Infer Results: + + No issues found +Matches: + 82 has a match! + 83 has a match! + 86 has a match! +Unmatched ids: + 84 + 87 + 88 +Matches: +Unmatched ids: + 85 + 89 + 90 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX-192c35f6eb2.report b/fonda/cpp_testsuite/varBugs/BUSYBOX-192c35f6eb2.report index 4477a804..e6a978a9 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX-192c35f6eb2.report +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX-192c35f6eb2.report @@ -3,4 +3,8 @@ Macros: CONFIG_FEATURE_REMOTE_LOG [-UCONFIG_FEATURE_REMOTE_LOG ] Desugared Clang Results: +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX-199501f2a00.report b/fonda/cpp_testsuite/varBugs/BUSYBOX-199501f2a00.report index 9ce53de1..2d66a05d 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX-199501f2a00.report +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX-199501f2a00.report @@ -2,16 +2,17 @@ BUSYBOX 199501f2a00.c Macros: ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS [-UENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS ] -103 :: Line:21 +clang :: 182 :: Line:21 Null pointer passed to 2nd parameter expecting 'nonnull' [core.NonNullParamChecker] Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.c:1543:2: warning: Value stored to '__dt_1258' is never read [deadcode.DeadStores] - __dt_1258 = "-i" ; // L10 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.c:3282:2: warning: Value stored to '__dt_2390' is never read [deadcode.DeadStores] + __dt_2390 = "-i" ; // L10 ^ ~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.c:1557:2: warning: Value stored to '__dt_1258' is never read [deadcode.DeadStores] - __dt_1258 = "-i" ; // L10 - ^ ~~~~ -2 warnings generated. +1 warning generated. +Desugared Infer Results: + + No issues found Matches: Unmatched ids: - 103 + 182 +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX-1b487ea8a69.report b/fonda/cpp_testsuite/varBugs/BUSYBOX-1b487ea8a69.report index e89b6081..92a40beb 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX-1b487ea8a69.report +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX-1b487ea8a69.report @@ -4,8 +4,10 @@ Macros: ENABLE_FEATURE_STAT_FORMAT [-UENABLE_SELINUX -UENABLE_FEATURE_STAT_FORMAT ] [-DENABLE_SELINUX=1 -UENABLE_FEATURE_STAT_FORMAT ] -57 :: Line:14 +clang :: 68 :: Line:14 Dereference of null pointer (loaded from variable 'scontext') [core.NullDereference] +infer :: 69 :: Line:14 + Null Dereference [-UENABLE_SELINUX -DENABLE_FEATURE_STAT_FORMAT=1 ] [-DENABLE_SELINUX=1 -DENABLE_FEATURE_STAT_FORMAT=1 ] Desugared Clang Results: @@ -16,7 +18,13 @@ Desugared Clang Results: __printf_421 (" %lc\n",* __scontext_2038 ) ; // L14 ^~~~~~~~~~~~~~~~~~ 2 warnings generated. +Desugared Infer Results: + + No issues found Matches: - 57 has a match! + 68 has a match! Unmatched ids: None! +Matches: +Unmatched ids: + 69 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX-2631486f1bf.report b/fonda/cpp_testsuite/varBugs/BUSYBOX-2631486f1bf.report index c26a2b98..cf0e3ade 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX-2631486f1bf.report +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX-2631486f1bf.report @@ -3,40 +3,93 @@ Macros: CONFIG_FEATURE_LS_RECURSIVE CONFIG_FEATURE_LS_SORTFILES [-UCONFIG_FEATURE_LS_RECURSIVE -UCONFIG_FEATURE_LS_SORTFILES ] -72 :: Line:67 +clang :: 110 :: Line:67 Assigned value is garbage or undefined [core.uninitialized.Assign] +infer :: 111 :: Line:66 + Null Dereference +infer :: 112 :: Line:67 + Uninitialized Value [-DCONFIG_FEATURE_LS_RECURSIVE=1 -UCONFIG_FEATURE_LS_SORTFILES ] -73 :: Line:67 +clang :: 113 :: Line:67 Assigned value is garbage or undefined [core.uninitialized.Assign] +infer :: 114 :: Line:66 + Null Dereference +infer :: 115 :: Line:67 + Uninitialized Value [-UCONFIG_FEATURE_LS_RECURSIVE -DCONFIG_FEATURE_LS_SORTFILES=1 ] -74 :: Line:67 +clang :: 116 :: Line:67 Assigned value is garbage or undefined [core.uninitialized.Assign] +infer :: 117 :: Line:66 + Null Dereference +infer :: 118 :: Line:67 + Uninitialized Value [-DCONFIG_FEATURE_LS_RECURSIVE=1 -DCONFIG_FEATURE_LS_SORTFILES=1 ] -75 :: Line:67 +clang :: 119 :: Line:67 Assigned value is garbage or undefined [core.uninitialized.Assign] +infer :: 120 :: Line:66 + Null Dereference +infer :: 121 :: Line:67 + Uninitialized Value Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1250:42: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_963', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_986)' [unix.MallocSizeof] - __curr_979 = ( struct __dnode_963 * ) malloc (sizeof(typeof(__sizeofStandin_986))) ; // L65 - ~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1253:42: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_963', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_986)' [unix.MallocSizeof] - __curr_979 = ( struct __dnode_963 * ) malloc (sizeof(typeof(__sizeofStandin_986))) ; // L65 - ~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1256:27: warning: Access to field '__val_964' results in a dereference of an undefined pointer value (loaded from variable '__curr_979') [core.NullDereference] - __curr_979 -> __val_964 = rand( ) % 10 ; // L66 - ~~~~~~~~~~ ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1259:27: warning: Access to field '__val_964' results in a dereference of an undefined pointer value (loaded from variable '__curr_979') [core.NullDereference] - __curr_979 -> __val_964 = rand( ) % 10 ; // L66 - ~~~~~~~~~~ ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1261:28: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] - __curr_979 -> __next_965 = __head_980 ; // L67 - ^ ~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1261:28: warning: Access to field '__next_965' results in a dereference of an undefined pointer value (loaded from variable '__curr_979') [core.NullDereference] - __curr_979 -> __next_965 = __head_980 ; // L67 - ~~~~~~~~~~ ^ -6 warnings generated. +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3171:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] + __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 + ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3174:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] + __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 + ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3177:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] + __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 + ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3180:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] + __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 + ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3186:29: warning: Access to field '__val_2038' results in a dereference of an undefined pointer value (loaded from variable '__curr_2072') [core.NullDereference] + __curr_2072 -> __val_2038 = rand( ) % 10 ; // L66 + ~~~~~~~~~~~ ^ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3191:30: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] + __curr_2072 -> __next_2039 = __head_2073 ; // L67 + ^ ~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3191:30: warning: Access to field '__next_2039' results in a dereference of an undefined pointer value (loaded from variable '__curr_2072') [core.NullDereference] + __curr_2072 -> __next_2039 = __head_2073 ; // L67 + ~~~~~~~~~~~ ^ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3255:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] + __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 + ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3258:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] + __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 + ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3261:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] + __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 + ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3264:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] + __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 + ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3270:29: warning: Access to field '__val_2038' results in a dereference of an undefined pointer value (loaded from variable '__curr_2072') [core.NullDereference] + __curr_2072 -> __val_2038 = rand( ) % 10 ; // L66 + ~~~~~~~~~~~ ^ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3275:30: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] + __curr_2072 -> __next_2039 = __head_2073 ; // L67 + ^ ~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3275:30: warning: Access to field '__next_2039' results in a dereference of an undefined pointer value (loaded from variable '__curr_2072') [core.NullDereference] + __curr_2072 -> __next_2039 = __head_2073 ; // L67 + ~~~~~~~~~~~ ^ +14 warnings generated. +Desugared Infer Results: + + No issues found Matches: Unmatched ids: - 72 - 73 - 74 - 75 + 110 + 113 + 116 + 119 +Matches: +Unmatched ids: + 111 + 112 + 114 + 115 + 117 + 118 + 120 + 121 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX-5275b1e49f6.report b/fonda/cpp_testsuite/varBugs/BUSYBOX-5275b1e49f6.report index 88935232..5e146fb6 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX-5275b1e49f6.report +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX-5275b1e49f6.report @@ -3,47 +3,48 @@ Macros: CONFIG_FEATURE_INSMOD_VERSION_CHECKING [-UCONFIG_FEATURE_INSMOD_VERSION_CHECKING ] Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1135:2: warning: Value stored to '__m_has_modinfo_967' is never read [deadcode.DeadStores] - __m_has_modinfo_967 = 0 ; // L16 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1141:2: warning: Value stored to '__m_has_modinfo_967' is never read [deadcode.DeadStores] - __m_has_modinfo_967 = 1 ; // L18 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1149:2: warning: Value stored to '__m_has_modinfo_967' is never read [deadcode.DeadStores] - __m_has_modinfo_967 = 0 ; // L16 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1155:2: warning: Value stored to '__m_has_modinfo_967' is never read [deadcode.DeadStores] - __m_has_modinfo_967 = 1 ; // L18 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1159:2: warning: Value stored to '__k_crcs_970' is never read [deadcode.DeadStores] - __k_crcs_970 = 0 ; // L21 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1170:2: warning: Value stored to '__k_crcs_970' is never read [deadcode.DeadStores] - __k_crcs_970 = __someInt_969 ; // L25 - ^ ~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1204:2: warning: Value stored to '__k_crcs_970' is never read [deadcode.DeadStores] - __k_crcs_970 = __someInt_969 ; // L25 - ^ ~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1265:2: warning: Value stored to '__m_has_modinfo_967' is never read [deadcode.DeadStores] - __m_has_modinfo_967 = 0 ; // L16 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1271:2: warning: Value stored to '__m_has_modinfo_967' is never read [deadcode.DeadStores] - __m_has_modinfo_967 = 1 ; // L18 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1279:2: warning: Value stored to '__m_has_modinfo_967' is never read [deadcode.DeadStores] - __m_has_modinfo_967 = 0 ; // L16 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1285:2: warning: Value stored to '__m_has_modinfo_967' is never read [deadcode.DeadStores] - __m_has_modinfo_967 = 1 ; // L18 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1289:2: warning: Value stored to '__k_crcs_970' is never read [deadcode.DeadStores] - __k_crcs_970 = 0 ; // L21 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1300:2: warning: Value stored to '__k_crcs_970' is never read [deadcode.DeadStores] - __k_crcs_970 = __someInt_969 ; // L25 - ^ ~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1334:2: warning: Value stored to '__k_crcs_970' is never read [deadcode.DeadStores] - __k_crcs_970 = __someInt_969 ; // L25 - ^ ~~~~~~~~~~~~~ -14 warnings generated. +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:2928:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] + __m_has_modinfo_2040 = 0 ; // L16 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:2934:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] + __m_has_modinfo_2040 = 1 ; // L18 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:2942:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] + __m_has_modinfo_2040 = 0 ; // L16 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:2948:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] + __m_has_modinfo_2040 = 1 ; // L18 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:2953:2: warning: Value stored to '__k_crcs_2043' is never read [deadcode.DeadStores] + __k_crcs_2043 = 0 ; // L21 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3004:2: warning: Value stored to '__k_crcs_2043' is never read [deadcode.DeadStores] + __k_crcs_2043 = __someInt_2042 ; // L25 + ^ ~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3068:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] + __m_has_modinfo_2040 = 0 ; // L16 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3074:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] + __m_has_modinfo_2040 = 1 ; // L18 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3082:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] + __m_has_modinfo_2040 = 0 ; // L16 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3088:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] + __m_has_modinfo_2040 = 1 ; // L18 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3093:2: warning: Value stored to '__k_crcs_2043' is never read [deadcode.DeadStores] + __k_crcs_2043 = 0 ; // L21 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3144:2: warning: Value stored to '__k_crcs_2043' is never read [deadcode.DeadStores] + __k_crcs_2043 = __someInt_2042 ; // L25 + ^ ~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3208:2: warning: Value stored to '__k_crcs_2043' is never read [deadcode.DeadStores] + __k_crcs_2043 = 0 ; // L21 + ^ ~ +13 warnings generated. +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX-5cd6461b6fb.report b/fonda/cpp_testsuite/varBugs/BUSYBOX-5cd6461b6fb.report index 8e4e3d2a..be0c17b3 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX-5cd6461b6fb.report +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX-5cd6461b6fb.report @@ -13,4 +13,8 @@ Macros: [-DCONFIG_FEATURE_HTTPD_CGI=1 -DCONFIG_LFS=1 -DCONFIG_FEATURE_HTTPD_BASIC_AUTH=1 ] [-UCONFIG_FEATURE_HTTPD_CGI -UCONFIG_LFS -UCONFIG_FEATURE_HTTPD_BASIC_AUTH ] Desugared Clang Results: +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX-b273d665181.report b/fonda/cpp_testsuite/varBugs/BUSYBOX-b273d665181.report index e27c98ff..e2c7ebce 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX-b273d665181.report +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX-b273d665181.report @@ -4,8 +4,10 @@ Macros: BB_FEATURE_LS_USERNAME [-UBB_FEATURE_LS_FILETYPES -UBB_FEATURE_LS_USERNAME ] [-DBB_FEATURE_LS_FILETYPES=1 -UBB_FEATURE_LS_USERNAME ] -60 :: Line:16 +clang :: 74 :: Line:16 2nd function call argument is an uninitialized value [core.CallAndMessage] +infer :: 75 :: Line:16 + Uninitialized Value [-UBB_FEATURE_LS_FILETYPES -DBB_FEATURE_LS_USERNAME=1 ] [-DBB_FEATURE_LS_FILETYPES=1 -DBB_FEATURE_LS_USERNAME=1 ] Desugared Clang Results: @@ -25,7 +27,13 @@ Desugared Clang Results: __info_2036 = 0 ; // L11 ^ ~ 5 warnings generated. +Desugared Infer Results: + + No issues found Matches: - 60 has a match! + 74 has a match! Unmatched ids: None! +Matches: +Unmatched ids: + 75 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX-b62bd7b261b.report b/fonda/cpp_testsuite/varBugs/BUSYBOX-b62bd7b261b.report index 835370db..b11b5d64 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX-b62bd7b261b.report +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX-b62bd7b261b.report @@ -7,61 +7,75 @@ Macros: [-DENABLE_FEATURE_MDEV_CONF=1 -UENABLE_FEATURE_MDEV_RENAME -UENABLE_FEATURE_MDEV_RENAME_REGEXP ] [-UENABLE_FEATURE_MDEV_CONF -DENABLE_FEATURE_MDEV_RENAME=1 -UENABLE_FEATURE_MDEV_RENAME_REGEXP ] [-DENABLE_FEATURE_MDEV_CONF=1 -DENABLE_FEATURE_MDEV_RENAME=1 -UENABLE_FEATURE_MDEV_RENAME_REGEXP ] -89 :: Line:14 +clang :: 149 :: Line:14 Value stored to 'a' during its initialization is never read [deadcode.DeadStores] -90 :: Line:16 +clang :: 150 :: Line:16 Value stored to 'val' is never read [deadcode.DeadStores] [-UENABLE_FEATURE_MDEV_CONF -UENABLE_FEATURE_MDEV_RENAME -DENABLE_FEATURE_MDEV_RENAME_REGEXP=1 ] [-DENABLE_FEATURE_MDEV_CONF=1 -UENABLE_FEATURE_MDEV_RENAME -DENABLE_FEATURE_MDEV_RENAME_REGEXP=1 ] [-UENABLE_FEATURE_MDEV_CONF -DENABLE_FEATURE_MDEV_RENAME=1 -DENABLE_FEATURE_MDEV_RENAME_REGEXP=1 ] [-DENABLE_FEATURE_MDEV_CONF=1 -DENABLE_FEATURE_MDEV_RENAME=1 -DENABLE_FEATURE_MDEV_RENAME_REGEXP=1 ] -91 :: Line:16 +clang :: 151 :: Line:16 Value stored to 'val' is never read [deadcode.DeadStores] -92 :: Line:24 +clang :: 152 :: Line:24 Dereference of undefined pointer value (loaded from variable 'p') [core.NullDereference] +infer :: 153 :: Line:24 + Uninitialized Value [-UENABLE_FEATURE_MDEV_CONF -UENABLE_FEATURE_MDEV_RENAME -UENABLE_FEATURE_MDEV_RENAME_REGEXP ] Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1451:1: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] -char * (__a_1261)= __val_1258 ;// L14 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3212:1: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] +char * (__a_2393)= __val_2390 ;// L14 ^~~~~~~~~~~~~~~~~ ~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1451:10: warning: Value stored to '__a_1261' during its initialization is never read [deadcode.DeadStores] -char * (__a_1261)= __val_1258 ;// L14 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3212:10: warning: Value stored to '__a_2393' during its initialization is never read [deadcode.DeadStores] +char * (__a_2393)= __val_2390 ;// L14 ^~~~~~~~ ~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1457:2: warning: Value stored to '__val_1258' is never read [deadcode.DeadStores] - __val_1258 = ( __s_1259 && __s_1259 [ 1 ] ) ? __s_1259 + 1 : ( ( void * ) 0 ) ; // L16:L395 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3218:2: warning: Value stored to '__val_2390' is never read [deadcode.DeadStores] + __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1457:19: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] - __val_1258 = ( __s_1259 && __s_1259 [ 1 ] ) ? __s_1259 + 1 : ( ( void * ) 0 ) ; // L16:L395 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3218:19: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] + __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 ^~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1482:2: warning: Value stored to '__val_1258' is never read [deadcode.DeadStores] - __val_1258 = ( __s_1259 && __s_1259 [ 1 ] ) ? __s_1259 + 1 : ( ( void * ) 0 ) ; // L16:L395 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3245:2: warning: Value stored to '__val_2390' is never read [deadcode.DeadStores] + __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1494:14: warning: Dereference of undefined pointer value (loaded from variable '__p_1260') [core.NullDereference] -* __p_1260 = * __s_1259 ; // L24 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3245:19: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] + __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 + ^~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3257:14: warning: Dereference of undefined pointer value (loaded from variable '__p_2392') [core.NullDereference] +* __p_2392 = * __s_2391 ; // L24 ~~~~~~~~ ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1556:1: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] -char * (__a_1261)= __val_1258 ;// L14 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3307:1: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] +char * (__a_2393)= __val_2390 ;// L14 ^~~~~~~~~~~~~~~~~ ~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1556:10: warning: Value stored to '__a_1261' during its initialization is never read [deadcode.DeadStores] -char * (__a_1261)= __val_1258 ;// L14 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3307:10: warning: Value stored to '__a_2393' during its initialization is never read [deadcode.DeadStores] +char * (__a_2393)= __val_2390 ;// L14 ^~~~~~~~ ~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1562:2: warning: Value stored to '__val_1258' is never read [deadcode.DeadStores] - __val_1258 = ( __s_1259 && __s_1259 [ 1 ] ) ? __s_1259 + 1 : ( ( void * ) 0 ) ; // L16:L395 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3313:2: warning: Value stored to '__val_2390' is never read [deadcode.DeadStores] + __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1562:19: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] - __val_1258 = ( __s_1259 && __s_1259 [ 1 ] ) ? __s_1259 + 1 : ( ( void * ) 0 ) ; // L16:L395 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3313:19: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] + __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 ^~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1587:2: warning: Value stored to '__val_1258' is never read [deadcode.DeadStores] - __val_1258 = ( __s_1259 && __s_1259 [ 1 ] ) ? __s_1259 + 1 : ( ( void * ) 0 ) ; // L16:L395 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3340:2: warning: Value stored to '__val_2390' is never read [deadcode.DeadStores] + __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1599:14: warning: Dereference of undefined pointer value (loaded from variable '__p_1260') [core.NullDereference] -* __p_1260 = * __s_1259 ; // L24 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3340:19: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] + __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 + ^~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3352:14: warning: Dereference of undefined pointer value (loaded from variable '__p_2392') [core.NullDereference] +* __p_2392 = * __s_2391 ; // L24 ~~~~~~~~ ^ -12 warnings generated. +14 warnings generated. +Desugared Infer Results: + + No issues found Matches: - 89 has a match! - 90 has a match! - 91 has a match! - 92 has a match! + 149 has a match! + 150 has a match! + 151 has a match! + 152 has a match! Unmatched ids: None! +Matches: +Unmatched ids: + 153 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX-b7ebc61b54f.report b/fonda/cpp_testsuite/varBugs/BUSYBOX-b7ebc61b54f.report index a06e7128..1aae24f1 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX-b7ebc61b54f.report +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX-b7ebc61b54f.report @@ -3,4 +3,8 @@ Macros: CONFIG_FEATURE_LS_TIMESTAMPS [-UCONFIG_FEATURE_LS_TIMESTAMPS ] Desugared Clang Results: +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX-bc0ffc0e971.report b/fonda/cpp_testsuite/varBugs/BUSYBOX-bc0ffc0e971.report index 5b09be82..b99323f4 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX-bc0ffc0e971.report +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX-bc0ffc0e971.report @@ -2,55 +2,93 @@ BUSYBOX bc0ffc0e971.c Macros: ENABLE_FEATURE_CLEAN_UP [-UENABLE_FEATURE_CLEAN_UP ] -81 :: Line:46 +clang :: 138 :: Line:46 Potential leak of memory pointed to by 'clist' [unix.Malloc] +infer :: 139 :: Line:40 + Memory Leak +infer :: 140 :: Line:40 + Null Dereference Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2184:1: warning: Attempt to free released memory [unix.Malloc] -free ( __ch_1826 -> __ifname_1822) ; // L15 -^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2257:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_1823', which is incompatible with sizeof operand type 'struct (unnamed struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2238:1)' [unix.MallocSizeof] - __ch_1848 = malloc (sizeof(__sizeofStandin_1852)) ; // L29 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3380:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_2394', which is incompatible with sizeof operand type 'struct (unnamed struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3337:1)' [unix.MallocSizeof] + __ch_2419 = malloc (sizeof(__sizeofStandin_2423)) ; // L29 ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2260:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_1823', which is incompatible with sizeof operand type 'struct (unnamed struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2238:1)' [unix.MallocSizeof] - __ch_1848 = malloc (sizeof(__sizeofStandin_1852)) ; // L29 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3383:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_2394', which is incompatible with sizeof operand type 'struct (unnamed struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3337:1)' [unix.MallocSizeof] + __ch_2419 = malloc (sizeof(__sizeofStandin_2423)) ; // L29 ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2262:30: warning: Access to field '__ifname_1822' results in a dereference of an undefined pointer value (loaded from variable '__ch_1848') [core.NullDereference] - __ch_1848 -> __ifname_1822 = __ifname_1847 ; // L30 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3385:5: warning: Potential leak of memory pointed to by '__ch_2419' [unix.Malloc] +if (__static_condition_default_2438) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3388:30: warning: Access to field '__ifname_2393' results in a dereference of an undefined pointer value (loaded from variable '__ch_2419') [core.NullDereference] + __ch_2419 -> __ifname_2393 = __ifname_2418 ; // L30 ~~~~~~~~~ ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2262:33: warning: Potential leak of memory pointed to by '__ch_1848' [unix.Malloc] - __ch_1848 -> __ifname_1822 = __ifname_1847 ; // L30 - ^~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2297:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_1824', which is incompatible with sizeof operand type 'struct (unnamed struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2279:1)' [unix.MallocSizeof] - __ch_1849 = malloc (sizeof(__sizeofStandin_1855)) ; // L29 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3447:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_2395', which is incompatible with sizeof operand type 'struct (unnamed struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3405:1)' [unix.MallocSizeof] + __ch_2420 = malloc (sizeof(__sizeofStandin_2426)) ; // L29 ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2300:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_1824', which is incompatible with sizeof operand type 'struct (unnamed struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2279:1)' [unix.MallocSizeof] - __ch_1849 = malloc (sizeof(__sizeofStandin_1855)) ; // L29 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3450:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_2395', which is incompatible with sizeof operand type 'struct (unnamed struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3405:1)' [unix.MallocSizeof] + __ch_2420 = malloc (sizeof(__sizeofStandin_2426)) ; // L29 ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2302:30: warning: Access to field '__ifname_1822' results in a dereference of an undefined pointer value (loaded from variable '__ch_1849') [core.NullDereference] - __ch_1849 -> __ifname_1822 = __ifname_1847 ; // L30 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3452:5: warning: Potential leak of memory pointed to by '__ch_2420' [unix.Malloc] +if (__static_condition_default_2448) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3455:30: warning: Access to field '__ifname_2393' results in a dereference of an undefined pointer value (loaded from variable '__ch_2420') [core.NullDereference] + __ch_2420 -> __ifname_2393 = __ifname_2418 ; // L30 ~~~~~~~~~ ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2302:33: warning: Potential leak of memory pointed to by '__ch_1849' [unix.Malloc] - __ch_1849 -> __ifname_1822 = __ifname_1847 ; // L30 - ^~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2333:39: warning: Potential leak of memory pointed to by '__ch_1872' [unix.Malloc] -for ( __ch_1872 = __clist_1870 ; __ch_1872 ; __ch_1872 = __ch_1872 -> __next_1821 )// L43 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3486:39: warning: Potential leak of memory pointed to by '__ch_2453' [unix.Malloc] +for ( __ch_2453 = __clist_2451 ; __ch_2453 ; __ch_2453 = __ch_2453 -> __next_2392 )// L43 ^~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2333:67: warning: Use of memory after it is freed [unix.Malloc] -for ( __ch_1872 = __clist_1870 ; __ch_1872 ; __ch_1872 = __ch_1872 -> __next_1821 )// L43 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3486:67: warning: Use of memory after it is freed [unix.Malloc] +for ( __ch_2453 = __clist_2451 ; __ch_2453 ; __ch_2453 = __ch_2453 -> __next_2392 )// L43 ^~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2338:5: warning: Potential leak of memory pointed to by '__clist_1870' [unix.Malloc] -if (__static_condition_default_1876) { +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3491:5: warning: Potential leak of memory pointed to by '__clist_2451' [unix.Malloc] +if (__static_condition_default_2457) { ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2339:39: warning: Potential leak of memory pointed to by '__ch_1873' [unix.Malloc] -for ( __ch_1873 = __clist_1871 ; __ch_1873 ; __ch_1873 = __ch_1873 -> __next_1821 )// L43 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3492:39: warning: Potential leak of memory pointed to by '__ch_2454' [unix.Malloc] +for ( __ch_2454 = __clist_2452 ; __ch_2454 ; __ch_2454 = __ch_2454 -> __next_2392 )// L43 ^~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2339:67: warning: Use of memory after it is freed [unix.Malloc] -for ( __ch_1873 = __clist_1871 ; __ch_1873 ; __ch_1873 = __ch_1873 -> __next_1821 )// L43 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3492:67: warning: Use of memory after it is freed [unix.Malloc] +for ( __ch_2454 = __clist_2452 ; __ch_2454 ; __ch_2454 = __ch_2454 -> __next_2392 )// L43 ^~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2344:5: warning: Potential leak of memory pointed to by '__clist_1871' [unix.Malloc] -if (__static_condition_default_1877) { +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3497:5: warning: Potential leak of memory pointed to by '__clist_2452' [unix.Malloc] +if (__static_condition_default_2458) { ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -15 warnings generated. +14 warnings generated. +Desugared Infer Results: + +BUSYBOX/bc0ffc0e971.desugared.c:3382: error: Memory Leak + Memory dynamically allocated by `malloc` on line 3380 is not freed after the last access at line 3382, column 5. + 3380. __ch_2419 = malloc (sizeof(__sizeofStandin_2423)) ; // L29 + 3381. } + 3382. if (__static_condition_default_2437) { + ^ + 3383. __ch_2419 = malloc (sizeof(__sizeofStandin_2423)) ; // L29 + 3384. } + +BUSYBOX/bc0ffc0e971.desugared.c:3449: error: Memory Leak + Memory dynamically allocated by `malloc` on line 3447 is not freed after the last access at line 3449, column 5. + 3447. __ch_2420 = malloc (sizeof(__sizeofStandin_2426)) ; // L29 + 3448. } + 3449. if (__static_condition_default_2447) { + ^ + 3450. __ch_2420 = malloc (sizeof(__sizeofStandin_2426)) ; // L29 + 3451. } + +BUSYBOX/bc0ffc0e971.desugared.c:3491: error: Memory Leak + Memory dynamically allocated by `malloc`, indirectly via call to `__prepend_new_eth_table_2428()` on line 3483 is not freed after the last access at line 3491, column 5. + 3489. } + 3490. } + 3491. if (__static_condition_default_2457) { + ^ + 3492. for ( __ch_2454 = __clist_2452 ; __ch_2454 ; __ch_2454 = __ch_2454 -> __next_2392 )// L43 + 3493. { + + +Found 3 issues + Issue Type(ISSUED_TYPE_ID): # + Memory Leak(MEMORY_LEAK_C): 3 +Matches: +Unmatched ids: + 138 Matches: Unmatched ids: - 81 + 139 + 140 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX-cc3f20b9bdf.report b/fonda/cpp_testsuite/varBugs/BUSYBOX-cc3f20b9bdf.report index 3053fbbb..46978898 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX-cc3f20b9bdf.report +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX-cc3f20b9bdf.report @@ -1,4 +1,8 @@ BUSYBOX cc3f20b9bdf.c Macros: Desugared Clang Results: +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX-cf1f2ace391.report b/fonda/cpp_testsuite/varBugs/BUSYBOX-cf1f2ace391.report index 75b2ca80..6d1ae59c 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX-cf1f2ace391.report +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX-cf1f2ace391.report @@ -3,4 +3,8 @@ Macros: ENABLE_DEBUG_INIT [-UENABLE_DEBUG_INIT ] Desugared Clang Results: +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX-df7b6577c6a.report b/fonda/cpp_testsuite/varBugs/BUSYBOX-df7b6577c6a.report index f0700e65..566b672e 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX-df7b6577c6a.report +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX-df7b6577c6a.report @@ -3,4 +3,8 @@ Macros: ENABLE_DESKTOP [-UENABLE_DESKTOP ] Desugared Clang Results: +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX-ebee301c8b0.report b/fonda/cpp_testsuite/varBugs/BUSYBOX-ebee301c8b0.report index 809d00e1..7bdd313a 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX-ebee301c8b0.report +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX-ebee301c8b0.report @@ -10,4 +10,8 @@ Desugared Clang Results: __copySubFile_2038 ( __src_2042 , __dst_2043 ) ; // L18 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2 warnings generated. +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX-eef2317b9f5.report b/fonda/cpp_testsuite/varBugs/BUSYBOX-eef2317b9f5.report index 26d1f155..fcee66f5 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX-eef2317b9f5.report +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX-eef2317b9f5.report @@ -2,8 +2,63 @@ BUSYBOX eef2317b9f5.c Macros: CONFIG_FEATURE_CLEAN_UP [-UCONFIG_FEATURE_CLEAN_UP ] -70 :: Line:26 +clang :: 95 :: Line:26 Value stored to 'buf' is never read [deadcode.DeadStores] -71 :: Line:34 +clang :: 96 :: Line:34 Potential leak of memory pointed to by 'buf' [unix.Malloc] -File Failed +infer :: 97 :: Line:26 + Memory Leak +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c:1686:5: warning: Potential leak of memory pointed to by '__buf_964' [unix.Malloc] +if (__static_condition_default_972) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c:1692:7: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] +if ( __buf_964 )// L30 + ^~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c:1703:5: warning: Potential leak of memory pointed to by '__buf_964' [unix.Malloc] +if (__static_condition_default_974) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c:1749:2: warning: Value stored to '__buf_964' is never read [deadcode.DeadStores] + __buf_964 = malloc ( __bufsize_965 ) ; // L26 + ^ ~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c:1752:2: warning: Value stored to '__buf_964' is never read [deadcode.DeadStores] + __buf_964 = malloc ( __bufsize_965 ) ; // L26 + ^ ~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c:1754:5: warning: Potential leak of memory pointed to by '__buf_964' [unix.Malloc] +if (__static_condition_default_978) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c:1754:5: warning: Potential leak of memory pointed to by '__buf_964' [unix.Malloc] +if (__static_condition_default_978) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +7 warnings generated. +Desugared Infer Results: + +BUSYBOX/eef2317b9f5.desugared.c:1749: error: Memory Leak + Memory dynamically allocated by `malloc` on line 1749 is not freed after the last access at line 1749, column 2. + 1747. } + 1748. if (__static_condition_default_976) { + 1749. __buf_964 = malloc ( __bufsize_965 ) ; // L26 + ^ + 1750. } + 1751. if (__static_condition_default_977) { + +BUSYBOX/eef2317b9f5.desugared.c:1752: error: Memory Leak + Memory dynamically allocated by `malloc` on line 1752 is not freed after the last access at line 1752, column 2. + 1750. } + 1751. if (__static_condition_default_977) { + 1752. __buf_964 = malloc ( __bufsize_965 ) ; // L26 + ^ + 1753. } + 1754. if (__static_condition_default_978) { + + +Found 2 issues + Issue Type(ISSUED_TYPE_ID): # + Memory Leak(MEMORY_LEAK_C): 2 +Matches: + 95 has a match! +Unmatched ids: + 96 +Matches: +Unmatched ids: + 97 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.desugared.c index a438511f..77a03ca5 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.desugared.c @@ -7,16 +7,39 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); +extern const bool __static_condition_default_4; +extern const bool __static_condition_default_3; void __static_initializer_default() { __static_renaming("__gdp_0", "gdp"); -__static_renaming("__ext2fs_open2_1", "ext2fs_open2"); -__static_renaming("__ext2fs_open_2", "ext2fs_open"); -__static_renaming("__main_5", "main"); +__static_renaming("__j_1", "j"); +__static_renaming("__ext2fs_open2_2", "ext2fs_open2"); +__static_renaming("__ext2fs_open_5", "ext2fs_open"); +__static_renaming("__main_8", "main"); +__static_condition_renaming("__static_condition_default_3", "!(defined EXT2FS_ENABLE_SWAPFS)"); +__static_condition_renaming("__static_condition_default_4", "(defined EXT2FS_ENABLE_SWAPFS)"); }; -void (__ext2fs_open2_1) (void ) { +void (__ext2fs_open2_2) (void ) { + +{ +if (__static_condition_default_3) { + +{ +{ + + + +char * (__gdp_0);// L4 + +} +} + + +} + +if (__static_condition_default_4) { { { @@ -25,32 +48,49 @@ void (__ext2fs_open2_1) (void ) { char * (__gdp_0);// L4 + __gdp_0 = "group_desc" ; // L7 +{ int __j_1= 0;// L8 + for ( ; __j_1 < 10 ; __j_1 ++ ) // L8 +{ + +{ +{ + + + +__static_type_error("type error : no valid expression"); // L10 +} +} +} +} } } } -void (__ext2fs_open_2) (void ) { + +}} +void (__ext2fs_open_5) (void ) { { { - __ext2fs_open2_1 ( ) ; // L17 + __ext2fs_open2_2 ( ) ; // L17 } } } -int (__main_5) (int __argc_3, char * (* (__argv_4))) { +int (__main_8) (int __argc_6, char * (* (__argv_7))) { { { - __ext2fs_open_2 ( ) ; // L22 + __ext2fs_open_5 ( ) ; // L22 return 0 ;// L23 } } diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.desugared.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.desugared.clangres index e69de29b..91e72a3b 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.desugared.clangres @@ -0,0 +1,4 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.desugared.c:51:2: warning: Value stored to '__gdp_0' is never read [deadcode.DeadStores] + __gdp_0 = "group_desc" ; // L7 + ^ ~~~~~~~~~~~~ +1 warning generated. diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.c index e69de29b..c8f1e48e 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.c @@ -0,0 +1,3404 @@ +#include + +extern void __static_parse_error(char *msg); +extern void __static_type_error(char *msg); +extern void __static_renaming(char *renaming, char *original); +extern void __static_condition_renaming(char *expression, char *renaming); + +void __static_initializer_default(); + +extern const bool __static_condition_default_568; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_1428; +extern const bool __static_condition_default_1808; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_1165; +extern const bool __static_condition_default_1489; +extern const bool __static_condition_default_1532; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_907; +extern const bool __static_condition_default_1395; +extern const bool __static_condition_default_1785; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_1315; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_455; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_1381; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_2065; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_761; +extern const bool __static_condition_default_2064; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_76; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_2068; +extern const bool __static_condition_default_1164; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_1750; +extern const bool __static_condition_default_846; +extern const bool __static_condition_default_1388; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_2077; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_1409; +extern const bool __static_condition_default_2050; +extern const bool __static_condition_default_1791; +extern const bool __static_condition_default_1391; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_1159; +extern const bool __static_condition_default_677; +extern const bool __static_condition_default_1564; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_1753; +extern const bool __static_condition_default_550; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_1459; +extern const bool __static_condition_default_1816; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_1373; +extern const bool __static_condition_default_1475; +extern const bool __static_condition_default_2078; +extern const bool __static_condition_default_779; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_1776; +extern const bool __static_condition_default_2067; +extern const bool __static_condition_default_1424; +extern const bool __static_condition_default_636; +extern const bool __static_condition_default_521; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_1402; +extern const bool __static_condition_default_386; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_333; +extern const bool __static_condition_default_789; +extern const bool __static_condition_default_583; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_1774; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_1458; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_1341; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_1568; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_2074; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_2060; +extern const bool __static_condition_default_1405; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_769; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_1572; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_721; +extern const bool __static_condition_default_1357; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_1749; +extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_544; +extern const bool __static_condition_default_613; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_380; +extern const bool __static_condition_default_759; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_2076; +extern const bool __static_condition_default_2063; +extern const bool __static_condition_default_894; +extern const bool __static_condition_default_1754; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_963; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_1420; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_2048; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_834; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_891; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_1556; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_2045; +extern const bool __static_condition_default_1432; +extern const bool __static_condition_default_367; +extern const bool __static_condition_default_929; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_842; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_1349; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_1416; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_2075; +extern const bool __static_condition_default_1385; +extern const bool __static_condition_default_187; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_2071; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_2079; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_2049; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_536; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_1560; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_1377; +extern const bool __static_condition_default_2070; +extern const bool __static_condition_default_1361; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_2047; +extern const bool __static_condition_default_619; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_1789; +extern const bool __static_condition_default_2073; +extern const bool __static_condition_default_753; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_419; +extern const bool __static_condition_default_2062; +extern const bool __static_condition_default_1516; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_955; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_2039; +extern const bool __static_condition_default_791; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_1814; +extern const bool __static_condition_default_2055; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_549; +extern const bool __static_condition_default_1453; +extern const bool __static_condition_default_1498; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_2054; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_2056; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_337; +extern const bool __static_condition_default_559; +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_2051; +extern const bool __static_condition_default_488; +extern const bool __static_condition_default_1152; +extern const bool __static_condition_default_2057; +extern const bool __static_condition_default_388; +extern const bool __static_condition_default_1531; +extern const bool __static_condition_default_290; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_2061; +extern const bool __static_condition_default_1775; +extern const bool __static_condition_default_311; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_1369; +extern const bool __static_condition_default_1773; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_2046; +extern const bool __static_condition_default_1398; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_875; +extern const bool __static_condition_default_2052; +extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_1944; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_2058; +extern const bool __static_condition_default_1515; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_512; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_1787; +extern const bool __static_condition_default_2080; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_747; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_1436; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_1353; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_1345; +extern const bool __static_condition_default_2059; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_1576; +extern const bool __static_condition_default_2066; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_1810; +extern const bool __static_condition_default_84; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_347; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_1365; +extern const bool __static_condition_default_365; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_670; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_204; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_702; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_1552; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_2053; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_1485; +extern const bool __static_condition_default_2069; +extern const bool __static_condition_default_2072; +extern const bool __static_condition_default_382; +extern const bool __static_condition_default_489; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_246; +void __static_initializer_default() { +__static_renaming("__ptrdiff_t_0", "ptrdiff_t"); +__static_renaming("__size_t_1", "size_t"); +__static_renaming("____u_char_2", "__u_char"); +__static_renaming("____u_short_3", "__u_short"); +__static_renaming("____u_int_4", "__u_int"); +__static_renaming("____u_long_5", "__u_long"); +__static_renaming("____int8_t_6", "__int8_t"); +__static_renaming("____uint8_t_7", "__uint8_t"); +__static_renaming("____int16_t_8", "__int16_t"); +__static_renaming("____uint16_t_9", "__uint16_t"); +__static_renaming("____int32_t_10", "__int32_t"); +__static_renaming("____uint32_t_11", "__uint32_t"); +__static_renaming("____int64_t_12", "__int64_t"); +__static_renaming("____uint64_t_13", "__uint64_t"); +__static_renaming("____quad_t_14", "__quad_t"); +__static_renaming("____u_quad_t_15", "__u_quad_t"); +__static_renaming("____dev_t_16", "__dev_t"); +__static_renaming("____uid_t_17", "__uid_t"); +__static_renaming("____gid_t_18", "__gid_t"); +__static_renaming("____ino_t_19", "__ino_t"); +__static_renaming("____ino64_t_20", "__ino64_t"); +__static_renaming("____mode_t_21", "__mode_t"); +__static_renaming("____nlink_t_22", "__nlink_t"); +__static_renaming("____off_t_23", "__off_t"); +__static_renaming("____off64_t_24", "__off64_t"); +__static_renaming("____pid_t_25", "__pid_t"); +__static_renaming("____fsid_t_29", "__fsid_t"); +__static_renaming("____clock_t_30", "__clock_t"); +__static_renaming("____rlim_t_31", "__rlim_t"); +__static_renaming("____rlim64_t_32", "__rlim64_t"); +__static_renaming("____id_t_33", "__id_t"); +__static_renaming("____time_t_34", "__time_t"); +__static_renaming("____useconds_t_35", "__useconds_t"); +__static_renaming("____suseconds_t_36", "__suseconds_t"); +__static_renaming("____daddr_t_37", "__daddr_t"); +__static_renaming("____key_t_38", "__key_t"); +__static_renaming("____clockid_t_39", "__clockid_t"); +__static_renaming("____timer_t_40", "__timer_t"); +__static_renaming("____blksize_t_41", "__blksize_t"); +__static_renaming("____blkcnt_t_42", "__blkcnt_t"); +__static_renaming("____blkcnt64_t_43", "__blkcnt64_t"); +__static_renaming("____fsblkcnt_t_44", "__fsblkcnt_t"); +__static_renaming("____fsblkcnt64_t_45", "__fsblkcnt64_t"); +__static_renaming("____fsfilcnt_t_46", "__fsfilcnt_t"); +__static_renaming("____fsfilcnt64_t_47", "__fsfilcnt64_t"); +__static_renaming("____fsword_t_48", "__fsword_t"); +__static_renaming("____ssize_t_49", "__ssize_t"); +__static_renaming("____syscall_slong_t_50", "__syscall_slong_t"); +__static_renaming("____syscall_ulong_t_51", "__syscall_ulong_t"); +__static_renaming("____loff_t_52", "__loff_t"); +__static_renaming("____qaddr_t_54", "__qaddr_t"); +__static_renaming("____caddr_t_55", "__caddr_t"); +__static_renaming("____intptr_t_56", "__intptr_t"); +__static_renaming("____socklen_t_57", "__socklen_t"); +__static_renaming("__FILE_59", "FILE"); +__static_renaming("____FILE_60", "__FILE"); +__static_renaming("____mbstate_t_69", "__mbstate_t"); +__static_renaming("___G_fpos_t_77", "_G_fpos_t"); +__static_renaming("___G_fpos64_t_85", "_G_fpos64_t"); +__static_renaming("____gnuc_va_list_86", "__gnuc_va_list"); +__static_renaming("___IO_lock_t_88", "_IO_lock_t"); +__static_renaming("___IO_FILE_171", "_IO_FILE"); +__static_renaming("___IO_FILE_172", "_IO_FILE"); +__static_renaming("___IO_2_1_stdin__175", "_IO_2_1_stdin_"); +__static_renaming("___IO_2_1_stdout__176", "_IO_2_1_stdout_"); +__static_renaming("___IO_2_1_stderr__177", "_IO_2_1_stderr_"); +__static_renaming("____io_read_fn_181", "__io_read_fn"); +__static_renaming("____io_write_fn_186", "__io_write_fn"); +__static_renaming("____io_seek_fn_192", "__io_seek_fn"); +__static_renaming("____io_close_fn_195", "__io_close_fn"); +__static_renaming("____underflow_196", "__underflow"); +__static_renaming("____underflow_197", "__underflow"); +__static_renaming("____uflow_199", "__uflow"); +__static_renaming("____uflow_200", "__uflow"); +__static_renaming("____overflow_202", "__overflow"); +__static_renaming("____overflow_203", "__overflow"); +__static_renaming("___IO_getc_208", "_IO_getc"); +__static_renaming("___IO_getc_209", "_IO_getc"); +__static_renaming("___IO_putc_215", "_IO_putc"); +__static_renaming("___IO_putc_216", "_IO_putc"); +__static_renaming("___IO_feof_221", "_IO_feof"); +__static_renaming("___IO_feof_222", "_IO_feof"); +__static_renaming("___IO_ferror_227", "_IO_ferror"); +__static_renaming("___IO_ferror_228", "_IO_ferror"); +__static_renaming("___IO_peekc_locked_233", "_IO_peekc_locked"); +__static_renaming("___IO_peekc_locked_234", "_IO_peekc_locked"); +__static_renaming("___IO_flockfile_236", "_IO_flockfile"); +__static_renaming("___IO_flockfile_237", "_IO_flockfile"); +__static_renaming("___IO_funlockfile_239", "_IO_funlockfile"); +__static_renaming("___IO_funlockfile_240", "_IO_funlockfile"); +__static_renaming("___IO_ftrylockfile_242", "_IO_ftrylockfile"); +__static_renaming("___IO_ftrylockfile_243", "_IO_ftrylockfile"); +__static_renaming("___IO_vfscanf_245", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_247", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_251", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_252", "_IO_vfscanf"); +__static_renaming("___IO_vfprintf_254", "_IO_vfprintf"); +__static_renaming("___IO_vfprintf_256", "_IO_vfprintf"); +__static_renaming("___IO_vfprintf_260", "_IO_vfprintf"); +__static_renaming("___IO_padn_261", "_IO_padn"); +__static_renaming("___IO_padn_262", "_IO_padn"); +__static_renaming("___IO_sgetn_265", "_IO_sgetn"); +__static_renaming("___IO_sgetn_266", "_IO_sgetn"); +__static_renaming("___IO_seekoff_268", "_IO_seekoff"); +__static_renaming("___IO_seekoff_269", "_IO_seekoff"); +__static_renaming("___IO_seekpos_272", "_IO_seekpos"); +__static_renaming("___IO_seekpos_273", "_IO_seekpos"); +__static_renaming("___IO_free_backup_area_276", "_IO_free_backup_area"); +__static_renaming("___IO_free_backup_area_277", "_IO_free_backup_area"); +__static_renaming("__va_list_279", "va_list"); +__static_renaming("__off_t_281", "off_t"); +__static_renaming("__off_t_283", "off_t"); +__static_renaming("__ssize_t_285", "ssize_t"); +__static_renaming("__fpos_t_287", "fpos_t"); +__static_renaming("__fpos_t_289", "fpos_t"); +__static_renaming("__stdin_291", "stdin"); +__static_renaming("__stdin_292", "stdin"); +__static_renaming("__stdout_294", "stdout"); +__static_renaming("__stdout_295", "stdout"); +__static_renaming("__stderr_297", "stderr"); +__static_renaming("__stderr_298", "stderr"); +__static_renaming("__remove_301", "remove"); +__static_renaming("__rename_304", "rename"); +__static_renaming("__renameat_309", "renameat"); +__static_renaming("__tmpfile_310", "tmpfile"); +__static_renaming("__tmpfile_312", "tmpfile"); +__static_renaming("__tmpfile_314", "tmpfile"); +__static_renaming("__tmpfile_316", "tmpfile"); +__static_renaming("__tmpnam_319", "tmpnam"); +__static_renaming("__tmpnam_320", "tmpnam"); +__static_renaming("__tmpnam_r_322", "tmpnam_r"); +__static_renaming("__tmpnam_r_323", "tmpnam_r"); +__static_renaming("__tempnam_326", "tempnam"); +__static_renaming("__tempnam_327", "tempnam"); +__static_renaming("__fclose_330", "fclose"); +__static_renaming("__fclose_332", "fclose"); +__static_renaming("__fflush_336", "fflush"); +__static_renaming("__fflush_unlocked_340", "fflush_unlocked"); +__static_renaming("__fopen_344", "fopen"); +__static_renaming("__fopen_346", "fopen"); +__static_renaming("__fopen_354", "fopen"); +__static_renaming("__fopen_356", "fopen"); +__static_renaming("__freopen_362", "freopen"); +__static_renaming("__freopen_364", "freopen"); +__static_renaming("__freopen_366", "freopen"); +__static_renaming("__freopen_368", "freopen"); +__static_renaming("__fdopen_372", "fdopen"); +__static_renaming("__fdopen_374", "fdopen"); +__static_renaming("__fmemopen_379", "fmemopen"); +__static_renaming("__fmemopen_381", "fmemopen"); +__static_renaming("__open_memstream_385", "open_memstream"); +__static_renaming("__open_memstream_387", "open_memstream"); +__static_renaming("__setbuf_392", "setbuf"); +__static_renaming("__setbuf_394", "setbuf"); +__static_renaming("__setvbuf_401", "setvbuf"); +__static_renaming("__setbuffer_407", "setbuffer"); +__static_renaming("__setlinebuf_411", "setlinebuf"); +__static_renaming("__fprintf_416", "fprintf"); +__static_renaming("__fprintf_418", "fprintf"); +__static_renaming("__printf_421", "printf"); +__static_renaming("__sprintf_424", "sprintf"); +__static_renaming("__vfprintf_430", "vfprintf"); +__static_renaming("__vprintf_437", "vprintf"); +__static_renaming("__vsprintf_443", "vsprintf"); +__static_renaming("__snprintf_448", "snprintf"); +__static_renaming("__vsnprintf_454", "vsnprintf"); +__static_renaming("__vdprintf_460", "vdprintf"); +__static_renaming("__dprintf_464", "dprintf"); +__static_renaming("__fscanf_468", "fscanf"); +__static_renaming("__fscanf_470", "fscanf"); +__static_renaming("__fscanf_472", "fscanf"); +__static_renaming("__fscanf_474", "fscanf"); +__static_renaming("__scanf_477", "scanf"); +__static_renaming("__scanf_478", "scanf"); +__static_renaming("__sscanf_481", "sscanf"); +__static_renaming("__vfscanf_509", "vfscanf"); +__static_renaming("__vfscanf_513", "vfscanf"); +__static_renaming("__vscanf_520", "vscanf"); +__static_renaming("__vscanf_522", "vscanf"); +__static_renaming("__vsscanf_528", "vsscanf"); +__static_renaming("__fgetc_563", "fgetc"); +__static_renaming("__getc_567", "getc"); +__static_renaming("__getchar_569", "getchar"); +__static_renaming("__getc_unlocked_572", "getc_unlocked"); +__static_renaming("__getchar_unlocked_574", "getchar_unlocked"); +__static_renaming("__fgetc_unlocked_577", "fgetc_unlocked"); +__static_renaming("__fputc_582", "fputc"); +__static_renaming("__fputc_584", "fputc"); +__static_renaming("__putc_589", "putc"); +__static_renaming("__putchar_592", "putchar"); +__static_renaming("__fputc_unlocked_596", "fputc_unlocked"); +__static_renaming("__putc_unlocked_601", "putc_unlocked"); +__static_renaming("__putchar_unlocked_604", "putchar_unlocked"); +__static_renaming("__getw_607", "getw"); +__static_renaming("__putw_612", "putw"); +__static_renaming("__fgets_618", "fgets"); +__static_renaming("__fgets_620", "fgets"); +__static_renaming("__fgets_622", "fgets"); +__static_renaming("__fgets_624", "fgets"); +__static_renaming("____getdelim_631", "__getdelim"); +__static_renaming("____getdelim_635", "__getdelim"); +__static_renaming("__getdelim_644", "getdelim"); +__static_renaming("__getdelim_648", "getdelim"); +__static_renaming("__getline_656", "getline"); +__static_renaming("__getline_660", "getline"); +__static_renaming("__fputs_667", "fputs"); +__static_renaming("__fputs_669", "fputs"); +__static_renaming("__puts_672", "puts"); +__static_renaming("__ungetc_676", "ungetc"); +__static_renaming("__fseek_714", "fseek"); +__static_renaming("__fseek_716", "fseek"); +__static_renaming("__ftell_720", "ftell"); +__static_renaming("__ftell_722", "ftell"); +__static_renaming("__rewind_726", "rewind"); +__static_renaming("__fseeko_733", "fseeko"); +__static_renaming("__fseeko_744", "fseeko"); +__static_renaming("__ftello_750", "ftello"); +__static_renaming("__ftello_754", "ftello"); +__static_renaming("__ftello_758", "ftello"); +__static_renaming("__fgetpos_766", "fgetpos"); +__static_renaming("__fgetpos_778", "fgetpos"); +__static_renaming("__fsetpos_786", "fsetpos"); +__static_renaming("__fsetpos_790", "fsetpos"); +__static_renaming("__clearerr_796", "clearerr"); +__static_renaming("__feof_800", "feof"); +__static_renaming("__feof_802", "feof"); +__static_renaming("__ferror_806", "ferror"); +__static_renaming("__ferror_808", "ferror"); +__static_renaming("__clearerr_unlocked_812", "clearerr_unlocked"); +__static_renaming("__feof_unlocked_816", "feof_unlocked"); +__static_renaming("__feof_unlocked_818", "feof_unlocked"); +__static_renaming("__ferror_unlocked_822", "ferror_unlocked"); +__static_renaming("__ferror_unlocked_824", "ferror_unlocked"); +__static_renaming("__perror_827", "perror"); +__static_renaming("__perror_828", "perror"); +__static_renaming("__sys_nerr_829", "sys_nerr"); +__static_renaming("__sys_errlist_830", "sys_errlist"); +__static_renaming("__fileno_833", "fileno"); +__static_renaming("__fileno_835", "fileno"); +__static_renaming("__fileno_unlocked_839", "fileno_unlocked"); +__static_renaming("__fileno_unlocked_841", "fileno_unlocked"); +__static_renaming("__popen_845", "popen"); +__static_renaming("__popen_847", "popen"); +__static_renaming("__pclose_851", "pclose"); +__static_renaming("__ctermid_854", "ctermid"); +__static_renaming("__flockfile_857", "flockfile"); +__static_renaming("__ftrylockfile_861", "ftrylockfile"); +__static_renaming("__ftrylockfile_863", "ftrylockfile"); +__static_renaming("__funlockfile_867", "funlockfile"); +__static_renaming("____sprintf_chk_899", "__sprintf_chk"); +__static_renaming("____vsprintf_chk_906", "__vsprintf_chk"); +__static_renaming("____snprintf_chk_920", "__snprintf_chk"); +__static_renaming("____vsnprintf_chk_928", "__vsnprintf_chk"); +__static_renaming("____fprintf_chk_943", "__fprintf_chk"); +__static_renaming("____printf_chk_947", "__printf_chk"); +__static_renaming("____vfprintf_chk_954", "__vfprintf_chk"); +__static_renaming("____vprintf_chk_962", "__vprintf_chk"); +__static_renaming("____dprintf_chk_984", "__dprintf_chk"); +__static_renaming("____vdprintf_chk_990", "__vdprintf_chk"); +__static_renaming("____fgets_chk_1004", "__fgets_chk"); +__static_renaming("____fgets_chk_1006", "__fgets_chk"); +__static_renaming("____fgets_chk_1008", "__fgets_chk"); +__static_renaming("____fgets_alias_1014", "__fgets_alias"); +__static_renaming("____fgets_chk_warn_1021", "__fgets_chk_warn"); +__static_renaming("____cnt_1087", "__cnt"); +__static_renaming("____cptr_1088", "__cptr"); +__static_renaming("__ptrdiff_t_1092", "ptrdiff_t"); +__static_renaming("__size_t_1093", "size_t"); +__static_renaming("__wchar_t_1094", "wchar_t"); +__static_renaming("__idtype_t_1100", "idtype_t"); +__static_renaming("____u_char_1101", "__u_char"); +__static_renaming("____u_short_1102", "__u_short"); +__static_renaming("____u_int_1103", "__u_int"); +__static_renaming("____u_long_1104", "__u_long"); +__static_renaming("____int8_t_1105", "__int8_t"); +__static_renaming("____uint8_t_1106", "__uint8_t"); +__static_renaming("____int16_t_1107", "__int16_t"); +__static_renaming("____uint16_t_1108", "__uint16_t"); +__static_renaming("____int32_t_1109", "__int32_t"); +__static_renaming("____uint32_t_1110", "__uint32_t"); +__static_renaming("____int64_t_1111", "__int64_t"); +__static_renaming("____uint64_t_1112", "__uint64_t"); +__static_renaming("____quad_t_1113", "__quad_t"); +__static_renaming("____u_quad_t_1114", "__u_quad_t"); +__static_renaming("____dev_t_1115", "__dev_t"); +__static_renaming("____uid_t_1116", "__uid_t"); +__static_renaming("____gid_t_1117", "__gid_t"); +__static_renaming("____ino_t_1118", "__ino_t"); +__static_renaming("____ino64_t_1119", "__ino64_t"); +__static_renaming("____mode_t_1120", "__mode_t"); +__static_renaming("____nlink_t_1121", "__nlink_t"); +__static_renaming("____off_t_1122", "__off_t"); +__static_renaming("____off64_t_1123", "__off64_t"); +__static_renaming("____pid_t_1124", "__pid_t"); +__static_renaming("____fsid_t_1128", "__fsid_t"); +__static_renaming("____clock_t_1129", "__clock_t"); +__static_renaming("____rlim_t_1130", "__rlim_t"); +__static_renaming("____rlim64_t_1131", "__rlim64_t"); +__static_renaming("____id_t_1132", "__id_t"); +__static_renaming("____time_t_1133", "__time_t"); +__static_renaming("____useconds_t_1134", "__useconds_t"); +__static_renaming("____suseconds_t_1135", "__suseconds_t"); +__static_renaming("____daddr_t_1136", "__daddr_t"); +__static_renaming("____key_t_1137", "__key_t"); +__static_renaming("____clockid_t_1138", "__clockid_t"); +__static_renaming("____timer_t_1139", "__timer_t"); +__static_renaming("____blksize_t_1140", "__blksize_t"); +__static_renaming("____blkcnt_t_1141", "__blkcnt_t"); +__static_renaming("____blkcnt64_t_1142", "__blkcnt64_t"); +__static_renaming("____fsblkcnt_t_1143", "__fsblkcnt_t"); +__static_renaming("____fsblkcnt64_t_1144", "__fsblkcnt64_t"); +__static_renaming("____fsfilcnt_t_1145", "__fsfilcnt_t"); +__static_renaming("____fsfilcnt64_t_1146", "__fsfilcnt64_t"); +__static_renaming("____fsword_t_1147", "__fsword_t"); +__static_renaming("____ssize_t_1148", "__ssize_t"); +__static_renaming("____syscall_slong_t_1149", "__syscall_slong_t"); +__static_renaming("____syscall_ulong_t_1150", "__syscall_ulong_t"); +__static_renaming("____loff_t_1151", "__loff_t"); +__static_renaming("____qaddr_t_1153", "__qaddr_t"); +__static_renaming("____caddr_t_1154", "__caddr_t"); +__static_renaming("____intptr_t_1155", "__intptr_t"); +__static_renaming("____socklen_t_1156", "__socklen_t"); +__static_renaming("____bswap_32_1158", "__bswap_32"); +__static_renaming("____bswap_64_1162", "__bswap_64"); +__static_renaming("____bswap_64_1163", "__bswap_64"); +__static_renaming("____WAIT_STATUS_1185", "__WAIT_STATUS"); +__static_renaming("__div_t_1190", "div_t"); +__static_renaming("__ldiv_t_1195", "ldiv_t"); +__static_renaming("__lldiv_t_1200", "lldiv_t"); +__static_renaming("____ctype_get_mb_cur_max_1201", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1202", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1203", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1204", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1205", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1206", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1207", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1208", "__ctype_get_mb_cur_max"); +__static_renaming("__atof_1210", "atof"); +__static_renaming("__atof_1211", "atof"); +__static_renaming("__atoi_1213", "atoi"); +__static_renaming("__atoi_1214", "atoi"); +__static_renaming("__atol_1216", "atol"); +__static_renaming("__atol_1217", "atol"); +__static_renaming("__atoll_1219", "atoll"); +__static_renaming("__atoll_1220", "atoll"); +__static_renaming("__strtod_1223", "strtod"); +__static_renaming("__strtof_1226", "strtof"); +__static_renaming("__strtold_1229", "strtold"); +__static_renaming("__strtol_1233", "strtol"); +__static_renaming("__strtoul_1237", "strtoul"); +__static_renaming("__strtoq_1241", "strtoq"); +__static_renaming("__strtouq_1245", "strtouq"); +__static_renaming("__strtoll_1249", "strtoll"); +__static_renaming("__strtoll_1250", "strtoll"); +__static_renaming("__strtoull_1254", "strtoull"); +__static_renaming("__l64a_1259", "l64a"); +__static_renaming("__l64a_1260", "l64a"); +__static_renaming("__a64l_1262", "a64l"); +__static_renaming("__a64l_1263", "a64l"); +__static_renaming("____u_char_1264", "__u_char"); +__static_renaming("____u_short_1265", "__u_short"); +__static_renaming("____u_int_1266", "__u_int"); +__static_renaming("____u_long_1267", "__u_long"); +__static_renaming("____int8_t_1268", "__int8_t"); +__static_renaming("____uint8_t_1269", "__uint8_t"); +__static_renaming("____int16_t_1270", "__int16_t"); +__static_renaming("____uint16_t_1271", "__uint16_t"); +__static_renaming("____int32_t_1272", "__int32_t"); +__static_renaming("____uint32_t_1273", "__uint32_t"); +__static_renaming("____int64_t_1274", "__int64_t"); +__static_renaming("____uint64_t_1275", "__uint64_t"); +__static_renaming("____quad_t_1276", "__quad_t"); +__static_renaming("____u_quad_t_1277", "__u_quad_t"); +__static_renaming("____dev_t_1278", "__dev_t"); +__static_renaming("____uid_t_1279", "__uid_t"); +__static_renaming("____gid_t_1280", "__gid_t"); +__static_renaming("____ino_t_1281", "__ino_t"); +__static_renaming("____ino64_t_1282", "__ino64_t"); +__static_renaming("____mode_t_1283", "__mode_t"); +__static_renaming("____nlink_t_1284", "__nlink_t"); +__static_renaming("____off_t_1285", "__off_t"); +__static_renaming("____off64_t_1286", "__off64_t"); +__static_renaming("____pid_t_1287", "__pid_t"); +__static_renaming("____fsid_t_1291", "__fsid_t"); +__static_renaming("____clock_t_1292", "__clock_t"); +__static_renaming("____rlim_t_1293", "__rlim_t"); +__static_renaming("____rlim64_t_1294", "__rlim64_t"); +__static_renaming("____id_t_1295", "__id_t"); +__static_renaming("____time_t_1296", "__time_t"); +__static_renaming("____useconds_t_1297", "__useconds_t"); +__static_renaming("____suseconds_t_1298", "__suseconds_t"); +__static_renaming("____daddr_t_1299", "__daddr_t"); +__static_renaming("____key_t_1300", "__key_t"); +__static_renaming("____clockid_t_1301", "__clockid_t"); +__static_renaming("____timer_t_1302", "__timer_t"); +__static_renaming("____blksize_t_1303", "__blksize_t"); +__static_renaming("____blkcnt_t_1304", "__blkcnt_t"); +__static_renaming("____blkcnt64_t_1305", "__blkcnt64_t"); +__static_renaming("____fsblkcnt_t_1306", "__fsblkcnt_t"); +__static_renaming("____fsblkcnt64_t_1307", "__fsblkcnt64_t"); +__static_renaming("____fsfilcnt_t_1308", "__fsfilcnt_t"); +__static_renaming("____fsfilcnt64_t_1309", "__fsfilcnt64_t"); +__static_renaming("____fsword_t_1310", "__fsword_t"); +__static_renaming("____ssize_t_1311", "__ssize_t"); +__static_renaming("____syscall_slong_t_1312", "__syscall_slong_t"); +__static_renaming("____syscall_ulong_t_1313", "__syscall_ulong_t"); +__static_renaming("____loff_t_1314", "__loff_t"); +__static_renaming("____qaddr_t_1316", "__qaddr_t"); +__static_renaming("____caddr_t_1317", "__caddr_t"); +__static_renaming("____intptr_t_1318", "__intptr_t"); +__static_renaming("____socklen_t_1319", "__socklen_t"); +__static_renaming("__u_char_1320", "u_char"); +__static_renaming("__u_char_1321", "u_char"); +__static_renaming("__u_char_1322", "u_char"); +__static_renaming("__u_short_1323", "u_short"); +__static_renaming("__u_short_1324", "u_short"); +__static_renaming("__u_short_1325", "u_short"); +__static_renaming("__u_int_1326", "u_int"); +__static_renaming("__u_int_1327", "u_int"); +__static_renaming("__u_int_1328", "u_int"); +__static_renaming("__u_long_1329", "u_long"); +__static_renaming("__u_long_1330", "u_long"); +__static_renaming("__u_long_1331", "u_long"); +__static_renaming("__quad_t_1332", "quad_t"); +__static_renaming("__quad_t_1333", "quad_t"); +__static_renaming("__quad_t_1334", "quad_t"); +__static_renaming("__u_quad_t_1335", "u_quad_t"); +__static_renaming("__u_quad_t_1336", "u_quad_t"); +__static_renaming("__u_quad_t_1337", "u_quad_t"); +__static_renaming("__fsid_t_1338", "fsid_t"); +__static_renaming("__fsid_t_1339", "fsid_t"); +__static_renaming("__fsid_t_1340", "fsid_t"); +__static_renaming("__loff_t_1342", "loff_t"); +__static_renaming("__loff_t_1343", "loff_t"); +__static_renaming("__loff_t_1344", "loff_t"); +__static_renaming("__loff_t_1346", "loff_t"); +__static_renaming("__loff_t_1347", "loff_t"); +__static_renaming("__loff_t_1348", "loff_t"); +__static_renaming("__ino_t_1350", "ino_t"); +__static_renaming("__ino_t_1351", "ino_t"); +__static_renaming("__ino_t_1352", "ino_t"); +__static_renaming("__ino_t_1354", "ino_t"); +__static_renaming("__ino_t_1355", "ino_t"); +__static_renaming("__ino_t_1356", "ino_t"); +__static_renaming("__dev_t_1358", "dev_t"); +__static_renaming("__dev_t_1359", "dev_t"); +__static_renaming("__dev_t_1360", "dev_t"); +__static_renaming("__gid_t_1362", "gid_t"); +__static_renaming("__gid_t_1363", "gid_t"); +__static_renaming("__gid_t_1364", "gid_t"); +__static_renaming("__gid_t_1366", "gid_t"); +__static_renaming("__gid_t_1367", "gid_t"); +__static_renaming("__gid_t_1368", "gid_t"); +__static_renaming("__mode_t_1370", "mode_t"); +__static_renaming("__mode_t_1371", "mode_t"); +__static_renaming("__mode_t_1372", "mode_t"); +__static_renaming("__nlink_t_1374", "nlink_t"); +__static_renaming("__nlink_t_1375", "nlink_t"); +__static_renaming("__nlink_t_1376", "nlink_t"); +__static_renaming("__uid_t_1378", "uid_t"); +__static_renaming("__uid_t_1379", "uid_t"); +__static_renaming("__uid_t_1380", "uid_t"); +__static_renaming("__uid_t_1382", "uid_t"); +__static_renaming("__uid_t_1383", "uid_t"); +__static_renaming("__uid_t_1384", "uid_t"); +__static_renaming("__off_t_1386", "off_t"); +__static_renaming("__off_t_1387", "off_t"); +__static_renaming("__off_t_1389", "off_t"); +__static_renaming("__off_t_1390", "off_t"); +__static_renaming("__pid_t_1392", "pid_t"); +__static_renaming("__pid_t_1393", "pid_t"); +__static_renaming("__pid_t_1394", "pid_t"); +__static_renaming("__pid_t_1396", "pid_t"); +__static_renaming("__pid_t_1397", "pid_t"); +__static_renaming("__id_t_1399", "id_t"); +__static_renaming("__id_t_1400", "id_t"); +__static_renaming("__id_t_1401", "id_t"); +__static_renaming("__ssize_t_1403", "ssize_t"); +__static_renaming("__ssize_t_1404", "ssize_t"); +__static_renaming("__daddr_t_1406", "daddr_t"); +__static_renaming("__daddr_t_1407", "daddr_t"); +__static_renaming("__daddr_t_1408", "daddr_t"); +__static_renaming("__caddr_t_1410", "caddr_t"); +__static_renaming("__caddr_t_1411", "caddr_t"); +__static_renaming("__caddr_t_1412", "caddr_t"); +__static_renaming("__key_t_1413", "key_t"); +__static_renaming("__key_t_1414", "key_t"); +__static_renaming("__key_t_1415", "key_t"); +__static_renaming("__key_t_1417", "key_t"); +__static_renaming("__key_t_1418", "key_t"); +__static_renaming("__key_t_1419", "key_t"); +__static_renaming("__clock_t_1421", "clock_t"); +__static_renaming("__clock_t_1422", "clock_t"); +__static_renaming("__clock_t_1423", "clock_t"); +__static_renaming("__time_t_1425", "time_t"); +__static_renaming("__time_t_1426", "time_t"); +__static_renaming("__time_t_1427", "time_t"); +__static_renaming("__clockid_t_1429", "clockid_t"); +__static_renaming("__clockid_t_1430", "clockid_t"); +__static_renaming("__clockid_t_1431", "clockid_t"); +__static_renaming("__timer_t_1433", "timer_t"); +__static_renaming("__timer_t_1434", "timer_t"); +__static_renaming("__timer_t_1435", "timer_t"); +__static_renaming("__ulong_1437", "ulong"); +__static_renaming("__ulong_1438", "ulong"); +__static_renaming("__ulong_1439", "ulong"); +__static_renaming("__ushort_1440", "ushort"); +__static_renaming("__uint_1441", "uint"); +__static_renaming("__int8_t_1442", "int8_t"); +__static_renaming("__int16_t_1443", "int16_t"); +__static_renaming("__int32_t_1444", "int32_t"); +__static_renaming("__int64_t_1445", "int64_t"); +__static_renaming("__u_int8_t_1446", "u_int8_t"); +__static_renaming("__u_int16_t_1447", "u_int16_t"); +__static_renaming("__u_int32_t_1448", "u_int32_t"); +__static_renaming("__u_int64_t_1449", "u_int64_t"); +__static_renaming("__register_t_1450", "register_t"); +__static_renaming("____bswap_32_1452", "__bswap_32"); +__static_renaming("____bswap_64_1456", "__bswap_64"); +__static_renaming("____bswap_64_1457", "__bswap_64"); +__static_renaming("____sig_atomic_t_1460", "__sig_atomic_t"); +__static_renaming("____sigset_t_1464", "__sigset_t"); +__static_renaming("__sigset_t_1465", "sigset_t"); +__static_renaming("__suseconds_t_1486", "suseconds_t"); +__static_renaming("__suseconds_t_1487", "suseconds_t"); +__static_renaming("__suseconds_t_1488", "suseconds_t"); +__static_renaming("____fd_mask_1490", "__fd_mask"); +__static_renaming("____fd_mask_1491", "__fd_mask"); +__static_renaming("__fd_set_1499", "fd_set"); +__static_renaming("__fd_mask_1500", "fd_mask"); +__static_renaming("__fd_mask_1501", "fd_mask"); +__static_renaming("__select_1513", "select"); +__static_renaming("__select_1514", "select"); +__static_renaming("__pselect_1529", "pselect"); +__static_renaming("__pselect_1530", "pselect"); +__static_renaming("____fdelt_chk_1534", "__fdelt_chk"); +__static_renaming("____fdelt_warn_1536", "__fdelt_warn"); +__static_renaming("__gnu_dev_major_1538", "gnu_dev_major"); +__static_renaming("__gnu_dev_major_1539", "gnu_dev_major"); +__static_renaming("__gnu_dev_minor_1541", "gnu_dev_minor"); +__static_renaming("__gnu_dev_makedev_1544", "gnu_dev_makedev"); +__static_renaming("__blksize_t_1549", "blksize_t"); +__static_renaming("__blksize_t_1550", "blksize_t"); +__static_renaming("__blksize_t_1551", "blksize_t"); +__static_renaming("__blkcnt_t_1553", "blkcnt_t"); +__static_renaming("__blkcnt_t_1554", "blkcnt_t"); +__static_renaming("__blkcnt_t_1555", "blkcnt_t"); +__static_renaming("__fsblkcnt_t_1557", "fsblkcnt_t"); +__static_renaming("__fsblkcnt_t_1558", "fsblkcnt_t"); +__static_renaming("__fsblkcnt_t_1559", "fsblkcnt_t"); +__static_renaming("__blkcnt_t_1561", "blkcnt_t"); +__static_renaming("__blkcnt_t_1562", "blkcnt_t"); +__static_renaming("__blkcnt_t_1563", "blkcnt_t"); +__static_renaming("__fsblkcnt_t_1565", "fsblkcnt_t"); +__static_renaming("__fsblkcnt_t_1566", "fsblkcnt_t"); +__static_renaming("__fsblkcnt_t_1567", "fsblkcnt_t"); +__static_renaming("__fsfilcnt_t_1569", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_1570", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_1571", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_1573", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_1574", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_1575", "fsfilcnt_t"); +__static_renaming("__pthread_t_1577", "pthread_t"); +__static_renaming("__pthread_attr_t_1581", "pthread_attr_t"); +__static_renaming("____pthread_list_t_1586", "__pthread_list_t"); +__static_renaming("____pthread_list_t_1587", "__pthread_list_t"); +__static_renaming("__pthread_mutex_t_1603", "pthread_mutex_t"); +__static_renaming("__pthread_mutexattr_t_1608", "pthread_mutexattr_t"); +__static_renaming("__rand_1609", "rand"); +__static_renaming("__srand_1611", "srand"); +__static_renaming("__rand_r_1613", "rand_r"); +__static_renaming("__drand48_1614", "drand48"); +__static_renaming("__erand48_1616", "erand48"); +__static_renaming("__lrand48_1617", "lrand48"); +__static_renaming("__nrand48_1619", "nrand48"); +__static_renaming("__mrand48_1620", "mrand48"); +__static_renaming("__jrand48_1622", "jrand48"); +__static_renaming("__srand48_1624", "srand48"); +__static_renaming("__seed48_1626", "seed48"); +__static_renaming("__lcong48_1628", "lcong48"); +__static_renaming("__malloc_1631", "malloc"); +__static_renaming("__malloc_1632", "malloc"); +__static_renaming("__malloc_1633", "malloc"); +__static_renaming("__malloc_1634", "malloc"); +__static_renaming("__calloc_1639", "calloc"); +__static_renaming("__calloc_1640", "calloc"); +__static_renaming("__calloc_1641", "calloc"); +__static_renaming("__calloc_1642", "calloc"); +__static_renaming("__realloc_1646", "realloc"); +__static_renaming("__realloc_1647", "realloc"); +__static_renaming("__free_1649", "free"); +__static_renaming("__cfree_1651", "cfree"); +__static_renaming("__alloca_1654", "alloca"); +__static_renaming("__alloca_1655", "alloca"); +__static_renaming("__valloc_1658", "valloc"); +__static_renaming("__valloc_1659", "valloc"); +__static_renaming("__valloc_1660", "valloc"); +__static_renaming("__valloc_1661", "valloc"); +__static_renaming("__posix_memalign_1667", "posix_memalign"); +__static_renaming("__posix_memalign_1668", "posix_memalign"); +__static_renaming("__posix_memalign_1669", "posix_memalign"); +__static_renaming("__posix_memalign_1670", "posix_memalign"); +__static_renaming("__aligned_alloc_1675", "aligned_alloc"); +__static_renaming("__aligned_alloc_1676", "aligned_alloc"); +__static_renaming("__aligned_alloc_1677", "aligned_alloc"); +__static_renaming("__aligned_alloc_1678", "aligned_alloc"); +__static_renaming("__aligned_alloc_1679", "aligned_alloc"); +__static_renaming("__aligned_alloc_1680", "aligned_alloc"); +__static_renaming("__aligned_alloc_1681", "aligned_alloc"); +__static_renaming("__aligned_alloc_1682", "aligned_alloc"); +__static_renaming("__abort_1683", "abort"); +__static_renaming("__atexit_1685", "atexit"); +__static_renaming("__at_quick_exit_1687", "at_quick_exit"); +__static_renaming("__on_exit_1692", "on_exit"); +__static_renaming("__exit_1694", "exit"); +__static_renaming("__exit_1695", "exit"); +__static_renaming("__quick_exit_1697", "quick_exit"); +__static_renaming("___Exit_1699", "_Exit"); +__static_renaming("__getenv_1701", "getenv"); +__static_renaming("__getenv_1702", "getenv"); +__static_renaming("__putenv_1704", "putenv"); +__static_renaming("__setenv_1708", "setenv"); +__static_renaming("__unsetenv_1710", "unsetenv"); +__static_renaming("__clearenv_1711", "clearenv"); +__static_renaming("__mktemp_1713", "mktemp"); +__static_renaming("__mkstemp_1716", "mkstemp"); +__static_renaming("__mkstemp_1717", "mkstemp"); +__static_renaming("__mkstemp_1718", "mkstemp"); +__static_renaming("__mkstemp_1719", "mkstemp"); +__static_renaming("__mkstemps_1724", "mkstemps"); +__static_renaming("__mkstemps_1725", "mkstemps"); +__static_renaming("__mkstemps_1726", "mkstemps"); +__static_renaming("__mkstemps_1727", "mkstemps"); +__static_renaming("__mkdtemp_1729", "mkdtemp"); +__static_renaming("__mkdtemp_1730", "mkdtemp"); +__static_renaming("__system_1732", "system"); +__static_renaming("__system_1733", "system"); +__static_renaming("__system_1734", "system"); +__static_renaming("__system_1735", "system"); +__static_renaming("__realpath_1738", "realpath"); +__static_renaming("__realpath_1739", "realpath"); +__static_renaming("____compar_fn_t_1740", "__compar_fn_t"); +__static_renaming("__bsearch_1751", "bsearch"); +__static_renaming("__bsearch_1752", "bsearch"); +__static_renaming("__bsearch_1755", "bsearch"); +__static_renaming("__bsearch_1756", "bsearch"); +__static_renaming("____l_1765", "__l"); +__static_renaming("____l_1766", "__l"); +__static_renaming("____u_1767", "__u"); +__static_renaming("____u_1768", "__u"); +__static_renaming("____idx_1769", "__idx"); +__static_renaming("____idx_1770", "__idx"); +__static_renaming("____p_1771", "__p"); +__static_renaming("____comparison_1772", "__comparison"); +__static_renaming("__qsort_1784", "qsort"); +__static_renaming("__qsort_1786", "qsort"); +__static_renaming("__qsort_1788", "qsort"); +__static_renaming("__qsort_1790", "qsort"); +__static_renaming("__abs_1793", "abs"); +__static_renaming("__abs_1794", "abs"); +__static_renaming("__labs_1796", "labs"); +__static_renaming("__labs_1797", "labs"); +__static_renaming("__llabs_1799", "llabs"); +__static_renaming("__llabs_1800", "llabs"); +__static_renaming("__div_1803", "div"); +__static_renaming("__div_1804", "div"); +__static_renaming("__ldiv_1807", "ldiv"); +__static_renaming("__ldiv_1809", "ldiv"); +__static_renaming("__lldiv_1813", "lldiv"); +__static_renaming("__lldiv_1815", "lldiv"); +__static_renaming("__ecvt_1821", "ecvt"); +__static_renaming("__ecvt_1822", "ecvt"); +__static_renaming("__fcvt_1827", "fcvt"); +__static_renaming("__fcvt_1828", "fcvt"); +__static_renaming("__gcvt_1832", "gcvt"); +__static_renaming("__gcvt_1833", "gcvt"); +__static_renaming("__qecvt_1838", "qecvt"); +__static_renaming("__qecvt_1839", "qecvt"); +__static_renaming("__qfcvt_1844", "qfcvt"); +__static_renaming("__qfcvt_1845", "qfcvt"); +__static_renaming("__qgcvt_1849", "qgcvt"); +__static_renaming("__qgcvt_1850", "qgcvt"); +__static_renaming("__ecvt_r_1858", "ecvt_r"); +__static_renaming("__ecvt_r_1859", "ecvt_r"); +__static_renaming("__fcvt_r_1867", "fcvt_r"); +__static_renaming("__fcvt_r_1868", "fcvt_r"); +__static_renaming("__qecvt_r_1876", "qecvt_r"); +__static_renaming("__qecvt_r_1877", "qecvt_r"); +__static_renaming("__qfcvt_r_1885", "qfcvt_r"); +__static_renaming("__qfcvt_r_1886", "qfcvt_r"); +__static_renaming("__mblen_1890", "mblen"); +__static_renaming("__mblen_1891", "mblen"); +__static_renaming("__mblen_1892", "mblen"); +__static_renaming("__mblen_1893", "mblen"); +__static_renaming("__mbtowc_1898", "mbtowc"); +__static_renaming("__mbtowc_1899", "mbtowc"); +__static_renaming("__wctomb_1902", "wctomb"); +__static_renaming("__mbstowcs_1907", "mbstowcs"); +__static_renaming("__mbstowcs_1908", "mbstowcs"); +__static_renaming("__wcstombs_1913", "wcstombs"); +__static_renaming("__wcstombs_1914", "wcstombs"); +__static_renaming("__rpmatch_1916", "rpmatch"); +__static_renaming("__rpmatch_1917", "rpmatch"); +__static_renaming("__getsubopt_1921", "getsubopt"); +__static_renaming("__getsubopt_1922", "getsubopt"); +__static_renaming("__getloadavg_1925", "getloadavg"); +__static_renaming("____realpath_chk_1931", "__realpath_chk"); +__static_renaming("____realpath_chk_1932", "__realpath_chk"); +__static_renaming("____realpath_alias_1935", "__realpath_alias"); +__static_renaming("____realpath_chk_warn_1940", "__realpath_chk_warn"); +__static_renaming("____realpath_chk_warn_1941", "__realpath_chk_warn"); +__static_renaming("____ptsname_r_chk_1951", "__ptsname_r_chk"); +__static_renaming("____ptsname_r_chk_1952", "__ptsname_r_chk"); +__static_renaming("____ptsname_r_alias_1957", "__ptsname_r_alias"); +__static_renaming("____ptsname_r_alias_1958", "__ptsname_r_alias"); +__static_renaming("____ptsname_r_chk_warn_1965", "__ptsname_r_chk_warn"); +__static_renaming("____ptsname_r_chk_warn_1966", "__ptsname_r_chk_warn"); +__static_renaming("____wctomb_chk_1977", "__wctomb_chk"); +__static_renaming("____wctomb_chk_1978", "__wctomb_chk"); +__static_renaming("____wctomb_alias_1981", "__wctomb_alias"); +__static_renaming("____mbstowcs_chk_1990", "__mbstowcs_chk"); +__static_renaming("____mbstowcs_chk_1991", "__mbstowcs_chk"); +__static_renaming("____mbstowcs_alias_1996", "__mbstowcs_alias"); +__static_renaming("____mbstowcs_alias_1997", "__mbstowcs_alias"); +__static_renaming("____mbstowcs_chk_warn_2004", "__mbstowcs_chk_warn"); +__static_renaming("____mbstowcs_chk_warn_2005", "__mbstowcs_chk_warn"); +__static_renaming("____wcstombs_chk_2016", "__wcstombs_chk"); +__static_renaming("____wcstombs_chk_2017", "__wcstombs_chk"); +__static_renaming("____wcstombs_alias_2022", "__wcstombs_alias"); +__static_renaming("____wcstombs_alias_2023", "__wcstombs_alias"); +__static_renaming("____wcstombs_chk_warn_2030", "__wcstombs_chk_warn"); +__static_renaming("____wcstombs_chk_warn_2031", "__wcstombs_chk_warn"); +__static_renaming("__r_2038", "r"); +__static_renaming("__p_2040", "p"); +__static_renaming("__c_2041", "c"); +__static_renaming("__main_2042", "main"); +__static_renaming("__main_2043", "main"); +__static_renaming("__main_2044", "main"); + +__static_condition_renaming("__static_condition_default_53", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_76", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_84", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_123", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_169", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_170", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_173", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_182", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_187", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_193", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_198", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_201", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_204", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_210", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_217", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_223", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_229", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_235", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_238", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_241", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_244", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_246", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_248", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_249", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_250", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_253", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_255", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_257", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_258", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_259", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_263", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_264", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_267", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_270", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_271", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_274", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_275", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_278", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_280", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); +__static_condition_renaming("__static_condition_default_282", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_284", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_286", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_288", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_290", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_293", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_296", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_299", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_311", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_313", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_315", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_317", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_331", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_333", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_337", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_341", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_345", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_347", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_355", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_357", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_363", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_365", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_367", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_369", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_373", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_375", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_380", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_382", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_386", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_388", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_393", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_395", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_402", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_408", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_412", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_417", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_419", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_431", "!(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_432", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_433", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_438", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_444", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_455", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_461", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_469", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_471", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_473", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_475", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_486", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_488", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_489", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_491", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_493", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_494", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_497", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_499", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_503", "!(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_510", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_511", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_512", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_514", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_515", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_516", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_521", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_523", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_529", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_536", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_537", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_538", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_539", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_541", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_542", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_543", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_544", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_549", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_550", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_552", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_553", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_559", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_560", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_564", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_568", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_573", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_578", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_583", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_585", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_590", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_597", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_602", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_608", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_613", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_619", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_621", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_623", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_625", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_632", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_633", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_634", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_636", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_637", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_638", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_645", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_646", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_647", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_649", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_650", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_651", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_657", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_658", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_659", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_661", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_662", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_663", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_668", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_670", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_677", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_683", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_684", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_685", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_686", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_692", "!(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_693", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_699", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_700", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_701", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_702", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_708", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_709", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_715", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_717", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_721", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_723", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_727", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_734", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_735", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_736", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_745", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_746", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_747", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_751", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_752", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_753", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_755", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_756", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_757", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_759", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_760", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_761", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_767", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_768", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_769", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_779", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_780", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_781", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_787", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_788", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_789", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_791", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_792", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_793", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_797", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_801", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_803", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_807", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_809", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_813", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_817", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_819", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_823", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_825", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_834", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_836", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_840", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_842", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_846", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_848", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_852", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_858", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_862", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_864", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_868", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_872", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_875", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_878", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_883", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_887", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_891", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_894", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_907", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_914", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_929", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_938", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_944", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_955", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_956", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_957", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_963", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_967", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_972", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_978", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_979", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_980", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_991", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_998", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1005", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1007", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1009", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1015", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1022", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1027", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1028", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1035", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1036", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1042", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1043", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1050", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1051", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1057", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1058", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1065", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1066", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1072", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1073", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1080", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1081", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1089", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_1090", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1091", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1152", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1159", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1164", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1165", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1315", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1341", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __u_char_defined)"); +__static_condition_renaming("__static_condition_default_1345", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __u_char_defined)"); +__static_condition_renaming("__static_condition_default_1349", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __u_char_defined)"); +__static_condition_renaming("__static_condition_default_1353", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined)"); +__static_condition_renaming("__static_condition_default_1357", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined)"); +__static_condition_renaming("__static_condition_default_1361", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_1365", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_1369", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_1373", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1377", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __nlink_t_defined)"); +__static_condition_renaming("__static_condition_default_1381", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __nlink_t_defined)"); +__static_condition_renaming("__static_condition_default_1385", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __nlink_t_defined)"); +__static_condition_renaming("__static_condition_default_1388", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1391", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1395", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && (defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1398", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1402", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __id_t_defined)"); +__static_condition_renaming("__static_condition_default_1405", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1409", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_1416", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_1420", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_1424", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __clock_t_defined)"); +__static_condition_renaming("__static_condition_default_1428", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __time_t_defined)"); +__static_condition_renaming("__static_condition_default_1432", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __clockid_t_defined)"); +__static_condition_renaming("__static_condition_default_1436", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timer_t_defined)"); +__static_condition_renaming("__static_condition_default_1453", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1458", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1459", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1475", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_1485", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_1489", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __suseconds_t_defined)"); +__static_condition_renaming("__static_condition_default_1498", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1515", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_1516", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_1531", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_1532", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_1552", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blksize_t_defined)"); +__static_condition_renaming("__static_condition_default_1556", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined)"); +__static_condition_renaming("__static_condition_default_1560", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1564", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined)"); +__static_condition_renaming("__static_condition_default_1568", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1572", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1576", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1749", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1750", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1753", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1754", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1773", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1774", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1775", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1776", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1785", "!(defined __need___FILE) && !(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1787", "(defined __need___FILE) && !(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1789", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1791", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1808", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1810", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1814", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1816", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1944", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_2039", "!(defined __STRICT_ANSI__) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined __STRICT_ANSI__) && (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2045", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_2046", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && !(defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && !(defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && !(defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && !(defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); +__static_condition_renaming("__static_condition_default_2047", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && !(defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && !(defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && !(defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && !(defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); +__static_condition_renaming("__static_condition_default_2048", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); +__static_condition_renaming("__static_condition_default_2049", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); +__static_condition_renaming("__static_condition_default_2050", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); +__static_condition_renaming("__static_condition_default_2051", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); +__static_condition_renaming("__static_condition_default_2052", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); +__static_condition_renaming("__static_condition_default_2053", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); +__static_condition_renaming("__static_condition_default_2054", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); +__static_condition_renaming("__static_condition_default_2055", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); +__static_condition_renaming("__static_condition_default_2056", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && !(defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && !(defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && !(defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && !(defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); +__static_condition_renaming("__static_condition_default_2057", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && !(defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && !(defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && !(defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && !(defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); +__static_condition_renaming("__static_condition_default_2058", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_2059", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && !(defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); +__static_condition_renaming("__static_condition_default_2060", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && !(defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); +__static_condition_renaming("__static_condition_default_2061", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); +__static_condition_renaming("__static_condition_default_2062", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); +__static_condition_renaming("__static_condition_default_2063", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); +__static_condition_renaming("__static_condition_default_2064", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); +__static_condition_renaming("__static_condition_default_2065", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); +__static_condition_renaming("__static_condition_default_2066", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); +__static_condition_renaming("__static_condition_default_2067", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); +__static_condition_renaming("__static_condition_default_2068", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); +__static_condition_renaming("__static_condition_default_2069", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && !(defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); +__static_condition_renaming("__static_condition_default_2070", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && !(defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); +__static_condition_renaming("__static_condition_default_2071", "!(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2072", "!(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && !(defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined _STDLIB_H) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && !(defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); +__static_condition_renaming("__static_condition_default_2073", "!(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined _STDLIB_H) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); +__static_condition_renaming("__static_condition_default_2074", "!(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); +__static_condition_renaming("__static_condition_default_2075", "(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); +__static_condition_renaming("__static_condition_default_2076", "!(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined _STDLIB_H) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); +__static_condition_renaming("__static_condition_default_2077", "!(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); +__static_condition_renaming("__static_condition_default_2078", "(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && (defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); +__static_condition_renaming("__static_condition_default_2079", "!(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && !(defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF) || (defined _STDLIB_H) && (defined CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF) && !(defined CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF)"); +__static_condition_renaming("__static_condition_default_2080", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); + +if (__static_condition_default_2080) { +__static_parse_error("Unable to parse"); +} +}; +typedef long int __ptrdiff_t_0;// L143:L324 +typedef long unsigned int __size_t_1;// L177:L209 +typedef unsigned char ____u_char_2;// L30 +typedef unsigned short int ____u_short_3;// L31 +typedef unsigned int ____u_int_4;// L32 +typedef unsigned long int ____u_long_5;// L33 +typedef signed char ____int8_t_6;// L36 +typedef unsigned char ____uint8_t_7;// L37 +typedef signed short int ____int16_t_8;// L38 +typedef unsigned short int ____uint16_t_9;// L39 +typedef signed int ____int32_t_10;// L40 +typedef unsigned int ____uint32_t_11;// L41 +typedef signed long int ____int64_t_12;// L43 +typedef unsigned long int ____uint64_t_13;// L44 +typedef long int ____quad_t_14;// L52 +typedef unsigned long int ____u_quad_t_15;// L53 +typedef unsigned long int ____dev_t_16;// L109:L124 +typedef unsigned int ____uid_t_17;// L92:L125 +typedef unsigned int ____gid_t_18;// L92:L126 +typedef unsigned long int ____ino_t_19;// L94:L127 +typedef unsigned long int ____ino64_t_20;// L109:L128 +typedef unsigned int ____mode_t_21;// L92:L129 +typedef unsigned long int ____nlink_t_22;// L94:L130 +typedef long int ____off_t_23;// L93:L131 +typedef long int ____off64_t_24;// L108:L132 +typedef int ____pid_t_25;// L91:L133 +struct ____anonymous_tag_26_27 { +int ____val_28[2];// L72 +}; +typedef struct ____anonymous_tag_26_27 ____fsid_t_29;// L72:L134 +typedef long int ____clock_t_30;// L93:L135 +typedef unsigned long int ____rlim_t_31;// L94:L136 +typedef unsigned long int ____rlim64_t_32;// L109:L137 +typedef unsigned int ____id_t_33;// L92:L138 +typedef long int ____time_t_34;// L93:L139 +typedef unsigned int ____useconds_t_35;// L92:L140 +typedef long int ____suseconds_t_36;// L93:L141 +typedef int ____daddr_t_37;// L91:L143 +typedef int ____key_t_38;// L91:L144 +typedef int ____clockid_t_39;// L91:L147 +typedef void * (____timer_t_40);// L70:L150 +typedef long int ____blksize_t_41;// L93:L153 +typedef long int ____blkcnt_t_42;// L93:L158 +typedef long int ____blkcnt64_t_43;// L108:L159 +typedef unsigned long int ____fsblkcnt_t_44;// L94:L162 +typedef unsigned long int ____fsblkcnt64_t_45;// L109:L163 +typedef unsigned long int ____fsfilcnt_t_46;// L94:L166 +typedef unsigned long int ____fsfilcnt64_t_47;// L109:L167 +typedef long int ____fsword_t_48;// L93:L170 +typedef long int ____ssize_t_49;// L110:L172 +typedef long int ____syscall_slong_t_50;// L93:L175 +typedef unsigned long int ____syscall_ulong_t_51;// L94:L177 +typedef ____off64_t_24 ____loff_t_52;// L181 +typedef ____quad_t_14 * (____qaddr_t_54);// L182 +typedef char * (____caddr_t_55);// L183 +typedef long int ____intptr_t_56;// L110:L186 +typedef unsigned int ____socklen_t_57;// L92:L189 +typedef struct __forward_tag_reference_58 __FILE_59;// L48 +typedef struct __forward_tag_reference_58 ____FILE_60;// L64 +union ____anonymous_tag_61_62 { +unsigned int ____wch_63;// L265 +char ____wchb_64[4];// L92 +}; +struct ____anonymous_tag_65_66 { +int ____count_67;// L84 +union ____anonymous_tag_61_62 ____value_68;// L85 +}; +typedef struct ____anonymous_tag_65_66 ____mbstate_t_69;// L82:L94 +struct ____anonymous_tag_70_71 { +____off_t_23 ____pos_72;// L0 +____mbstate_t_69 ____state_74;// L0 +}; +typedef struct ____anonymous_tag_70_71 ___G_fpos_t_77;// L21:L25 +struct ____anonymous_tag_78_79 { +____off64_t_24 ____pos_80;// L0 +____mbstate_t_69 ____state_82;// L0 +}; +typedef struct ____anonymous_tag_78_79 ___G_fpos64_t_85;// L26:L30 +typedef __builtin_va_list ____gnuc_va_list_86;// L40 +typedef void ___IO_lock_t_88;// L150 +struct ___IO_marker_90 { +struct __forward_tag_reference_89 * (___next_91);// L0 +struct __forward_tag_reference_58 * (___sbuf_92);// L0 +int ___pos_93;// L162 +}; +enum ____codecvt_result_98 { +____codecvt_ok_94, +____codecvt_partial_95, +____codecvt_error_96, +____codecvt_noconv_97, +}; +struct ___IO_FILE_99 { +int ___flags_100;// L242 +char * (___IO_read_ptr_101);// L247 +char * (___IO_read_end_102);// L248 +char * (___IO_read_base_103);// L249 +char * (___IO_write_base_104);// L250 +char * (___IO_write_ptr_105);// L251 +char * (___IO_write_end_106);// L252 +char * (___IO_buf_base_107);// L253 +char * (___IO_buf_end_108);// L254 +char * (___IO_save_base_109);// L256 +char * (___IO_backup_base_110);// L257 +char * (___IO_save_end_111);// L258 +struct ___IO_marker_90 * (___markers_112);// L260 +struct __forward_tag_reference_58 * (___chain_113);// L0 +int ___fileno_114;// L264 +int ___flags2_115;// L268 +____off_t_23 ___old_offset_116;// L0 +unsigned short ___cur_column_118;// L274 +signed char ___vtable_offset_119;// L275 +char ___shortbuf_120[1];// L276 +___IO_lock_t_88 * (___lock_121);// L0 +}; +struct ___IO_FILE_124 { +int ___flags_125;// L242 +char * (___IO_read_ptr_126);// L247 +char * (___IO_read_end_127);// L248 +char * (___IO_read_base_128);// L249 +char * (___IO_write_base_129);// L250 +char * (___IO_write_ptr_130);// L251 +char * (___IO_write_end_131);// L252 +char * (___IO_buf_base_132);// L253 +char * (___IO_buf_end_133);// L254 +char * (___IO_save_base_134);// L256 +char * (___IO_backup_base_135);// L257 +char * (___IO_save_end_136);// L258 +struct ___IO_marker_90 * (___markers_137);// L260 +struct __forward_tag_reference_58 * (___chain_138);// L0 +int ___fileno_139;// L264 +int ___flags2_140;// L268 +____off_t_23 ___old_offset_141;// L0 +unsigned short ___cur_column_143;// L274 +signed char ___vtable_offset_144;// L275 +char ___shortbuf_145[1];// L276 +___IO_lock_t_88 * (___lock_146);// L0 +____off64_t_24 ___offset_148;// L0 +void * (____pad1_150);// L297 +void * (____pad2_151);// L298 +void * (____pad3_152);// L299 +void * (____pad4_153);// L300 +__size_t_1 ____pad5_154;// L0 +int ___mode_155;// L303 +char ___unused2_156[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +}; +struct ___IO_FILE_complete_157 { +struct ___IO_FILE_99 ___file_158;// L286 +____off64_t_24 ___offset_160;// L0 +void * (____pad1_162);// L297 +void * (____pad2_163);// L298 +void * (____pad3_164);// L299 +void * (____pad4_165);// L300 +__size_t_1 ____pad5_166;// L0 +int ___mode_167;// L303 +char ___unused2_168[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +}; +typedef struct ___IO_FILE_99 ___IO_FILE_171;// L310 +typedef struct ___IO_FILE_124 ___IO_FILE_172;// L310 +typedef ____ssize_t_49 (____io_read_fn_181) (void * (____cookie_178), char * (____buf_179), __size_t_1 ____nbytes_180);// L333 +typedef ____ssize_t_49 (____io_write_fn_186) (void * (____cookie_183), const char * (____buf_184), __size_t_1 ____n_185);// L341:L342 +typedef int (____io_seek_fn_192) (void * (____cookie_188), ____off64_t_24 * (____pos_189), int ____w_191);// L350 +typedef int (____io_close_fn_195) (void * (____cookie_194));// L353 +typedef ____gnuc_va_list_86 __va_list_279;// L79 +typedef ____off_t_23 __off_t_281;// L90 +typedef ____off64_t_24 __off_t_283;// L92 +typedef ____ssize_t_49 __ssize_t_285;// L102 +typedef ___G_fpos_t_77 __fpos_t_287;// L110 +typedef ___G_fpos64_t_85 __fpos_t_289;// L112 +extern const char * const __sys_errlist_830[];// L27 +typedef long int __ptrdiff_t_1092;// L143:L324 +typedef long unsigned int __size_t_1093;// L177:L209 +typedef int __wchar_t_1094;// L243:L321 +enum ____anonymous_tag_1098_1099 { +__P_ALL_1095, +__P_PID_1096, +__P_PGID_1097, +}; +typedef enum ____anonymous_tag_1098_1099 __idtype_t_1100;// L50:L55 +typedef unsigned char ____u_char_1101;// L30 +typedef unsigned short int ____u_short_1102;// L31 +typedef unsigned int ____u_int_1103;// L32 +typedef unsigned long int ____u_long_1104;// L33 +typedef signed char ____int8_t_1105;// L36 +typedef unsigned char ____uint8_t_1106;// L37 +typedef signed short int ____int16_t_1107;// L38 +typedef unsigned short int ____uint16_t_1108;// L39 +typedef signed int ____int32_t_1109;// L40 +typedef unsigned int ____uint32_t_1110;// L41 +typedef signed long int ____int64_t_1111;// L43 +typedef unsigned long int ____uint64_t_1112;// L44 +typedef long int ____quad_t_1113;// L52 +typedef unsigned long int ____u_quad_t_1114;// L53 +typedef unsigned long int ____dev_t_1115;// L109:L124 +typedef unsigned int ____uid_t_1116;// L92:L125 +typedef unsigned int ____gid_t_1117;// L92:L126 +typedef unsigned long int ____ino_t_1118;// L94:L127 +typedef unsigned long int ____ino64_t_1119;// L109:L128 +typedef unsigned int ____mode_t_1120;// L92:L129 +typedef unsigned long int ____nlink_t_1121;// L94:L130 +typedef long int ____off_t_1122;// L93:L131 +typedef long int ____off64_t_1123;// L108:L132 +typedef int ____pid_t_1124;// L91:L133 +struct ____anonymous_tag_1125_1126 { +int ____val_1127[2];// L72 +}; +typedef struct ____anonymous_tag_1125_1126 ____fsid_t_1128;// L72:L134 +typedef long int ____clock_t_1129;// L93:L135 +typedef unsigned long int ____rlim_t_1130;// L94:L136 +typedef unsigned long int ____rlim64_t_1131;// L109:L137 +typedef unsigned int ____id_t_1132;// L92:L138 +typedef long int ____time_t_1133;// L93:L139 +typedef unsigned int ____useconds_t_1134;// L92:L140 +typedef long int ____suseconds_t_1135;// L93:L141 +typedef int ____daddr_t_1136;// L91:L143 +typedef int ____key_t_1137;// L91:L144 +typedef int ____clockid_t_1138;// L91:L147 +typedef void * (____timer_t_1139);// L70:L150 +typedef long int ____blksize_t_1140;// L93:L153 +typedef long int ____blkcnt_t_1141;// L93:L158 +typedef long int ____blkcnt64_t_1142;// L108:L159 +typedef unsigned long int ____fsblkcnt_t_1143;// L94:L162 +typedef unsigned long int ____fsblkcnt64_t_1144;// L109:L163 +typedef unsigned long int ____fsfilcnt_t_1145;// L94:L166 +typedef unsigned long int ____fsfilcnt64_t_1146;// L109:L167 +typedef long int ____fsword_t_1147;// L93:L170 +typedef long int ____ssize_t_1148;// L110:L172 +typedef long int ____syscall_slong_t_1149;// L93:L175 +typedef unsigned long int ____syscall_ulong_t_1150;// L94:L177 +typedef ____off64_t_1123 ____loff_t_1151;// L181 +typedef ____quad_t_1113 * (____qaddr_t_1153);// L182 +typedef char * (____caddr_t_1154);// L183 +typedef long int ____intptr_t_1155;// L110:L186 +typedef unsigned int ____socklen_t_1156;// L92:L189 +struct ____anonymous_tag_1166_1167 { +unsigned int ____w_termsig_1168 : 7;// L72 +unsigned int ____w_coredump_1169 : 1;// L73 +unsigned int ____w_retcode_1170 : 8;// L74 +unsigned int __anon_id_0_1171 : 16;// L75 +}; +struct ____anonymous_tag_1172_1173 { +unsigned int ____w_stopval_1174 : 8;// L87 +unsigned int ____w_stopsig_1175 : 8;// L88 +unsigned int __anon_id_1_1176 : 16;// L89 +}; +union __wait_1177 { +int __w_status_1178;// L68 +struct ____anonymous_tag_1166_1167 ____wait_terminated_1179;// L69 +struct ____anonymous_tag_1172_1173 ____wait_stopped_1180;// L84 +}; +union ____anonymous_tag_1181_1182 { +union __wait_1177 * (____uptr_1183);// L69 +int * (____iptr_1184);// L70 +}; +typedef union ____anonymous_tag_1181_1182 ____WAIT_STATUS_1185;// L67:L71 +struct ____anonymous_tag_1186_1187 { +int __quot_1188;// L99 +int __rem_1189;// L100 +}; +typedef struct ____anonymous_tag_1186_1187 __div_t_1190;// L97:L101 +struct ____anonymous_tag_1191_1192 { +long int __quot_1193;// L107 +long int __rem_1194;// L108 +}; +typedef struct ____anonymous_tag_1191_1192 __ldiv_t_1195;// L105:L109 +struct ____anonymous_tag_1196_1197 { +long long int __quot_1198;// L119 +long long int __rem_1199;// L120 +}; +typedef struct ____anonymous_tag_1196_1197 __lldiv_t_1200;// L117:L121 +typedef unsigned char ____u_char_1264;// L30 +typedef unsigned short int ____u_short_1265;// L31 +typedef unsigned int ____u_int_1266;// L32 +typedef unsigned long int ____u_long_1267;// L33 +typedef signed char ____int8_t_1268;// L36 +typedef unsigned char ____uint8_t_1269;// L37 +typedef signed short int ____int16_t_1270;// L38 +typedef unsigned short int ____uint16_t_1271;// L39 +typedef signed int ____int32_t_1272;// L40 +typedef unsigned int ____uint32_t_1273;// L41 +typedef signed long int ____int64_t_1274;// L43 +typedef unsigned long int ____uint64_t_1275;// L44 +typedef long int ____quad_t_1276;// L52 +typedef unsigned long int ____u_quad_t_1277;// L53 +typedef unsigned long int ____dev_t_1278;// L109:L124 +typedef unsigned int ____uid_t_1279;// L92:L125 +typedef unsigned int ____gid_t_1280;// L92:L126 +typedef unsigned long int ____ino_t_1281;// L94:L127 +typedef unsigned long int ____ino64_t_1282;// L109:L128 +typedef unsigned int ____mode_t_1283;// L92:L129 +typedef unsigned long int ____nlink_t_1284;// L94:L130 +typedef long int ____off_t_1285;// L93:L131 +typedef long int ____off64_t_1286;// L108:L132 +typedef int ____pid_t_1287;// L91:L133 +struct ____anonymous_tag_1288_1289 { +int ____val_1290[2];// L72 +}; +typedef struct ____anonymous_tag_1288_1289 ____fsid_t_1291;// L72:L134 +typedef long int ____clock_t_1292;// L93:L135 +typedef unsigned long int ____rlim_t_1293;// L94:L136 +typedef unsigned long int ____rlim64_t_1294;// L109:L137 +typedef unsigned int ____id_t_1295;// L92:L138 +typedef long int ____time_t_1296;// L93:L139 +typedef unsigned int ____useconds_t_1297;// L92:L140 +typedef long int ____suseconds_t_1298;// L93:L141 +typedef int ____daddr_t_1299;// L91:L143 +typedef int ____key_t_1300;// L91:L144 +typedef int ____clockid_t_1301;// L91:L147 +typedef void * (____timer_t_1302);// L70:L150 +typedef long int ____blksize_t_1303;// L93:L153 +typedef long int ____blkcnt_t_1304;// L93:L158 +typedef long int ____blkcnt64_t_1305;// L108:L159 +typedef unsigned long int ____fsblkcnt_t_1306;// L94:L162 +typedef unsigned long int ____fsblkcnt64_t_1307;// L109:L163 +typedef unsigned long int ____fsfilcnt_t_1308;// L94:L166 +typedef unsigned long int ____fsfilcnt64_t_1309;// L109:L167 +typedef long int ____fsword_t_1310;// L93:L170 +typedef long int ____ssize_t_1311;// L110:L172 +typedef long int ____syscall_slong_t_1312;// L93:L175 +typedef unsigned long int ____syscall_ulong_t_1313;// L94:L177 +typedef ____off64_t_1286 ____loff_t_1314;// L181 +typedef ____quad_t_1276 * (____qaddr_t_1316);// L182 +typedef char * (____caddr_t_1317);// L183 +typedef long int ____intptr_t_1318;// L110:L186 +typedef unsigned int ____socklen_t_1319;// L92:L189 +typedef ____u_char_2 __u_char_1320;// L33 +typedef ____u_char_1101 __u_char_1321;// L33 +typedef ____u_char_1264 __u_char_1322;// L33 +typedef ____u_short_3 __u_short_1323;// L34 +typedef ____u_short_1102 __u_short_1324;// L34 +typedef ____u_short_1265 __u_short_1325;// L34 +typedef ____u_int_4 __u_int_1326;// L35 +typedef ____u_int_1103 __u_int_1327;// L35 +typedef ____u_int_1266 __u_int_1328;// L35 +typedef ____u_long_5 __u_long_1329;// L36 +typedef ____u_long_1104 __u_long_1330;// L36 +typedef ____u_long_1267 __u_long_1331;// L36 +typedef ____quad_t_14 __quad_t_1332;// L37 +typedef ____quad_t_1113 __quad_t_1333;// L37 +typedef ____quad_t_1276 __quad_t_1334;// L37 +typedef ____u_quad_t_15 __u_quad_t_1335;// L38 +typedef ____u_quad_t_1114 __u_quad_t_1336;// L38 +typedef ____u_quad_t_1277 __u_quad_t_1337;// L38 +typedef ____fsid_t_29 __fsid_t_1338;// L39 +typedef ____fsid_t_1128 __fsid_t_1339;// L39 +typedef ____fsid_t_1291 __fsid_t_1340;// L39 +typedef ____loff_t_52 __loff_t_1342;// L44 +typedef ____loff_t_1151 __loff_t_1343;// L44 +typedef ____loff_t_1314 __loff_t_1344;// L44 +typedef ____loff_t_52 __loff_t_1346;// L44 +typedef ____loff_t_1151 __loff_t_1347;// L44 +typedef ____loff_t_1314 __loff_t_1348;// L44 +typedef ____ino64_t_20 __ino_t_1350;// L50 +typedef ____ino64_t_1119 __ino_t_1351;// L50 +typedef ____ino64_t_1282 __ino_t_1352;// L50 +typedef ____ino_t_19 __ino_t_1354;// L48 +typedef ____ino_t_1118 __ino_t_1355;// L48 +typedef ____ino_t_1281 __ino_t_1356;// L48 +typedef ____dev_t_16 __dev_t_1358;// L60 +typedef ____dev_t_1115 __dev_t_1359;// L60 +typedef ____dev_t_1278 __dev_t_1360;// L60 +typedef ____gid_t_18 __gid_t_1362;// L65 +typedef ____gid_t_1117 __gid_t_1363;// L65 +typedef ____gid_t_1280 __gid_t_1364;// L65 +typedef ____gid_t_18 __gid_t_1366;// L65 +typedef ____gid_t_1117 __gid_t_1367;// L65 +typedef ____gid_t_1280 __gid_t_1368;// L65 +typedef ____mode_t_21 __mode_t_1370;// L70 +typedef ____mode_t_1120 __mode_t_1371;// L70 +typedef ____mode_t_1283 __mode_t_1372;// L70 +typedef ____nlink_t_22 __nlink_t_1374;// L75 +typedef ____nlink_t_1121 __nlink_t_1375;// L75 +typedef ____nlink_t_1284 __nlink_t_1376;// L75 +typedef ____uid_t_17 __uid_t_1378;// L80 +typedef ____uid_t_1116 __uid_t_1379;// L80 +typedef ____uid_t_1279 __uid_t_1380;// L80 +typedef ____uid_t_17 __uid_t_1382;// L80 +typedef ____uid_t_1116 __uid_t_1383;// L80 +typedef ____uid_t_1279 __uid_t_1384;// L80 +typedef ____off64_t_1123 __off_t_1386;// L88 +typedef ____off64_t_1286 __off_t_1387;// L88 +typedef ____off_t_1122 __off_t_1389;// L86 +typedef ____off_t_1285 __off_t_1390;// L86 +typedef ____pid_t_25 __pid_t_1392;// L98 +typedef ____pid_t_1124 __pid_t_1393;// L98 +typedef ____pid_t_1287 __pid_t_1394;// L98 +typedef ____pid_t_1124 __pid_t_1396;// L98 +typedef ____pid_t_1287 __pid_t_1397;// L98 +typedef ____id_t_33 __id_t_1399;// L104 +typedef ____id_t_1132 __id_t_1400;// L104 +typedef ____id_t_1295 __id_t_1401;// L104 +typedef ____ssize_t_1148 __ssize_t_1403;// L109 +typedef ____ssize_t_1311 __ssize_t_1404;// L109 +typedef ____daddr_t_37 __daddr_t_1406;// L115 +typedef ____daddr_t_1136 __daddr_t_1407;// L115 +typedef ____daddr_t_1299 __daddr_t_1408;// L115 +typedef ____caddr_t_55 __caddr_t_1410;// L116 +typedef ____caddr_t_1154 __caddr_t_1411;// L116 +typedef ____caddr_t_1317 __caddr_t_1412;// L116 +typedef ____key_t_38 __key_t_1413;// L122 +typedef ____key_t_1137 __key_t_1414;// L122 +typedef ____key_t_1300 __key_t_1415;// L122 +typedef ____key_t_38 __key_t_1417;// L122 +typedef ____key_t_1137 __key_t_1418;// L122 +typedef ____key_t_1300 __key_t_1419;// L122 +typedef ____clock_t_30 __clock_t_1421;// L59 +typedef ____clock_t_1129 __clock_t_1422;// L59 +typedef ____clock_t_1292 __clock_t_1423;// L59 +typedef ____time_t_34 __time_t_1425;// L75 +typedef ____time_t_1133 __time_t_1426;// L75 +typedef ____time_t_1296 __time_t_1427;// L75 +typedef ____clockid_t_39 __clockid_t_1429;// L91 +typedef ____clockid_t_1138 __clockid_t_1430;// L91 +typedef ____clockid_t_1301 __clockid_t_1431;// L91 +typedef ____timer_t_40 __timer_t_1433;// L103 +typedef ____timer_t_1139 __timer_t_1434;// L103 +typedef ____timer_t_1302 __timer_t_1435;// L103 +typedef unsigned long int __ulong_1437;// L150 +typedef unsigned long int __ulong_1438;// L150 +typedef unsigned long int __ulong_1439;// L150 +typedef unsigned short int __ushort_1440;// L151 +typedef unsigned int __uint_1441;// L152 +typedef int __int8_t_1442;// L188:L194 +typedef int __int16_t_1443;// L188:L195 +typedef int __int32_t_1444;// L188:L196 +typedef int __int64_t_1445;// L188:L197 +typedef unsigned int __u_int8_t_1446;// L190:L200 +typedef unsigned int __u_int16_t_1447;// L190:L201 +typedef unsigned int __u_int32_t_1448;// L190:L202 +typedef unsigned int __u_int64_t_1449;// L190:L203 +typedef int __register_t_1450;// L205 +typedef int ____sig_atomic_t_1460;// L22 +struct ____anonymous_tag_1461_1462 { +unsigned long int ____val_1463[( 1024 / ( 8 * sizeof(unsigned long) ) )];// L29 +}; +typedef struct ____anonymous_tag_1461_1462 ____sigset_t_1464;// L27:L30 +typedef ____sigset_t_1464 __sigset_t_1465;// L37 +struct __timespec_1466 { +____time_t_34 __tv_sec_1467;// L0 +____time_t_1133 __tv_sec_1468;// L0 +____time_t_1296 __tv_sec_1469;// L0 +____syscall_slong_t_50 __tv_nsec_1471;// L0 +____syscall_slong_t_1149 __tv_nsec_1472;// L0 +____syscall_slong_t_1312 __tv_nsec_1473;// L0 +}; +struct __timeval_1476 { +____time_t_34 __tv_sec_1477;// L0 +____time_t_1133 __tv_sec_1478;// L0 +____time_t_1296 __tv_sec_1479;// L0 +____suseconds_t_36 __tv_usec_1481;// L0 +____suseconds_t_1135 __tv_usec_1482;// L0 +____suseconds_t_1298 __tv_usec_1483;// L0 +}; +typedef ____suseconds_t_36 __suseconds_t_1486;// L48 +typedef ____suseconds_t_1135 __suseconds_t_1487;// L48 +typedef ____suseconds_t_1298 __suseconds_t_1488;// L48 +typedef long int ____fd_mask_1490;// L54 +typedef long int ____fd_mask_1491;// L54 +struct ____anonymous_tag_1492_1493 { +____fd_mask_1490 ____fds_bits_1494[1024 / ( 8 * ( int ) sizeof(long) )];// L0 +____fd_mask_1491 ____fds_bits_1496[1024 / ( 8 * ( int ) sizeof(long) )];// L0 +}; +typedef struct ____anonymous_tag_1492_1493 __fd_set_1499;// L64:L75 +typedef ____fd_mask_1490 __fd_mask_1500;// L82 +typedef ____fd_mask_1491 __fd_mask_1501;// L82 +typedef ____blksize_t_41 __blksize_t_1549;// L228 +typedef ____blksize_t_1140 __blksize_t_1550;// L228 +typedef ____blksize_t_1303 __blksize_t_1551;// L228 +typedef ____blkcnt_t_42 __blkcnt_t_1553;// L235 +typedef ____blkcnt_t_1141 __blkcnt_t_1554;// L235 +typedef ____blkcnt_t_1304 __blkcnt_t_1555;// L235 +typedef ____fsblkcnt_t_44 __fsblkcnt_t_1557;// L239 +typedef ____fsblkcnt_t_1143 __fsblkcnt_t_1558;// L239 +typedef ____fsblkcnt_t_1306 __fsblkcnt_t_1559;// L239 +typedef ____blkcnt64_t_43 __blkcnt_t_1561;// L248 +typedef ____blkcnt64_t_1142 __blkcnt_t_1562;// L248 +typedef ____blkcnt64_t_1305 __blkcnt_t_1563;// L248 +typedef ____fsblkcnt64_t_45 __fsblkcnt_t_1565;// L252 +typedef ____fsblkcnt64_t_1144 __fsblkcnt_t_1566;// L252 +typedef ____fsblkcnt64_t_1307 __fsblkcnt_t_1567;// L252 +typedef ____fsfilcnt_t_46 __fsfilcnt_t_1569;// L243 +typedef ____fsfilcnt_t_1145 __fsfilcnt_t_1570;// L243 +typedef ____fsfilcnt_t_1308 __fsfilcnt_t_1571;// L243 +typedef ____fsfilcnt64_t_47 __fsfilcnt_t_1573;// L256 +typedef ____fsfilcnt64_t_1146 __fsfilcnt_t_1574;// L256 +typedef ____fsfilcnt64_t_1309 __fsfilcnt_t_1575;// L256 +typedef unsigned long int __pthread_t_1577;// L60 +union __pthread_attr_t_1578 { +char ____size_1579[56];// L65 +long int ____align_1580;// L66 +}; +typedef union __pthread_attr_t_1578 __pthread_attr_t_1581;// L69 +struct ____pthread_internal_list_1583 { +struct __forward_tag_reference_1582 * (____prev_1584);// L0 +struct __forward_tag_reference_1582 * (____next_1585);// L0 +}; +typedef struct ____pthread_internal_list_1583 ____pthread_list_t_1586;// L75:L79 +typedef struct ____pthread_internal_list_1583 ____pthread_list_t_1587;// L75:L79 +struct ____pthread_mutex_s_1588 { +int ____lock_1589;// L94 +unsigned int ____count_1590;// L95 +int ____owner_1591;// L96 +unsigned int ____nusers_1592;// L98 +int ____kind_1593;// L102 +short ____spins_1594;// L104 +short ____elision_1595;// L105 +____pthread_list_t_1586 ____list_1596;// L0 +____pthread_list_t_1587 ____list_1597;// L0 +}; +union ____anonymous_tag_1598_1599 { +struct ____pthread_mutex_s_1588 ____data_1600;// L92 +char ____size_1601[40];// L126 +long int ____align_1602;// L127 +}; +typedef union ____anonymous_tag_1598_1599 __pthread_mutex_t_1603;// L90:L128 +union ____anonymous_tag_1604_1605 { +char ____size_1606[4];// L132 +int ____align_1607;// L133 +}; +typedef union ____anonymous_tag_1604_1605 __pthread_mutexattr_t_1608;// L130:L134 +typedef int (* (____compar_fn_t_1740)) (const void *, const void *);// L741 + +struct __forward_tag_reference_89 { // generated union of struct variations +union { +struct ___IO_marker_90 ___IO_marker_90; +}; +}; + +struct __forward_tag_reference_1582 { // generated union of struct variations +union { +}; +}; + +struct __forward_tag_reference_58 { // generated union of struct variations +union { +struct ___IO_FILE_99 ___IO_FILE_99; +struct ___IO_FILE_124 ___IO_FILE_124; +}; +}; + +struct __forward_tag_reference_87 { // generated union of struct variations +union { +}; +}; + +struct __forward_tag_reference_174 { // generated union of struct variations +union { +}; +}; + +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +struct __forward_tag_reference_58 ;// L0 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +struct __forward_tag_reference_87 ;// L0 +struct __forward_tag_reference_87 ;// L0 +struct __forward_tag_reference_58 ;// L0 +// typedef moved to top of scope +struct ___IO_marker_90 ;// L156 +enum ____codecvt_result_98 ;// L176 +struct ___IO_FILE_99 ;// L241 + +struct ___IO_FILE_124 ;// L241 +struct ___IO_FILE_complete_157 ;// L241 + +// typedef moved to top of scope +// typedef moved to top of scope +struct __forward_tag_reference_174 ;// L0 +extern struct __forward_tag_reference_174 ___IO_2_1_stdin__175;// L315 +extern struct __forward_tag_reference_174 ___IO_2_1_stdout__176;// L316 +extern struct __forward_tag_reference_174 ___IO_2_1_stderr__177;// L317 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern int (____underflow_196) (___IO_FILE_171 *);// L385 +extern int (____underflow_197) (___IO_FILE_172 *);// L385 +extern int (____uflow_199) (___IO_FILE_171 *);// L386 +extern int (____uflow_200) (___IO_FILE_172 *);// L386 +extern int (____overflow_202) (___IO_FILE_171 *, int );// L387 +extern int (____overflow_203) (___IO_FILE_172 *, int );// L387 +extern int (___IO_getc_208) (___IO_FILE_171 * (____fp_205));// L429 +extern int (___IO_getc_209) (___IO_FILE_172 * (____fp_206));// L429 +extern int (___IO_putc_215) (int ____c_211, ___IO_FILE_171 * (____fp_212));// L430 +extern int (___IO_putc_216) (int ____c_211, ___IO_FILE_172 * (____fp_213));// L430 +extern int (___IO_feof_221) (___IO_FILE_171 * (____fp_218));// L431 +extern int (___IO_feof_222) (___IO_FILE_172 * (____fp_219));// L431 +extern int (___IO_ferror_227) (___IO_FILE_171 * (____fp_224));// L432 +extern int (___IO_ferror_228) (___IO_FILE_172 * (____fp_225));// L432 +extern int (___IO_peekc_locked_233) (___IO_FILE_171 * (____fp_230));// L434 +extern int (___IO_peekc_locked_234) (___IO_FILE_172 * (____fp_231));// L434 +extern void (___IO_flockfile_236) (___IO_FILE_171 *);// L440 +extern void (___IO_flockfile_237) (___IO_FILE_172 *);// L440 +extern void (___IO_funlockfile_239) (___IO_FILE_171 *);// L441 +extern void (___IO_funlockfile_240) (___IO_FILE_172 *);// L441 +extern int (___IO_ftrylockfile_242) (___IO_FILE_171 *);// L442 +extern int (___IO_ftrylockfile_243) (___IO_FILE_172 *);// L442 +extern int (___IO_vfscanf_245) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_247) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_251) (___IO_FILE_171 * __restrict , const char * __restrict , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_252) (___IO_FILE_172 * __restrict , const char * __restrict , int * __restrict );// L459:L460 +extern int (___IO_vfprintf_254) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 +extern int (___IO_vfprintf_256) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 +extern int (___IO_vfprintf_260) ();// L461:L462 +extern ____ssize_t_49 (___IO_padn_261) (___IO_FILE_171 *, int , ____ssize_t_49 );// L463 +extern ____ssize_t_49 (___IO_padn_262) (___IO_FILE_172 *, int , ____ssize_t_49 );// L463 +extern __size_t_1 (___IO_sgetn_265) (___IO_FILE_171 *, void *, __size_t_1 );// L464 +extern __size_t_1 (___IO_sgetn_266) (___IO_FILE_172 *, void *, __size_t_1 );// L464 +extern ____off64_t_24 (___IO_seekoff_268) (___IO_FILE_171 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekoff_269) (___IO_FILE_172 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekpos_272) (___IO_FILE_171 *, ____off64_t_24 , int );// L467 +extern ____off64_t_24 (___IO_seekpos_273) (___IO_FILE_172 *, ____off64_t_24 , int );// L467 +extern void (___IO_free_backup_area_276) (___IO_FILE_171 *);// L469 +extern void (___IO_free_backup_area_277) (___IO_FILE_172 *);// L469 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern struct ___IO_FILE_99 * (__stdin_291);// L168 +extern struct ___IO_FILE_124 * (__stdin_292);// L168 +extern struct ___IO_FILE_99 * (__stdout_294);// L169 +extern struct ___IO_FILE_124 * (__stdout_295);// L169 +extern struct ___IO_FILE_99 * (__stderr_297);// L170 +extern struct ___IO_FILE_124 * (__stderr_298);// L170 +extern int (__remove_301) (const char * (____filename_300));// L178 +extern int (__rename_304) (const char * (____old_302), const char * (____new_303));// L180 +extern int (__renameat_309) (int ____oldfd_305, const char * (____old_306), int ____newfd_307, const char * (____new_308));// L185:L186 +extern __FILE_59 * ((__tmpfile_310) (void ));// L195 +extern __FILE_59 * ((__tmpfile_316) (void ));// L198 +extern __FILE_59 * ((__tmpfile_314) (void ));// L195 +extern __FILE_59 * ((__tmpfile_312) (void ));// L198 +extern char * ((__tmpnam_319) (char * (____s_318)));// L209 +extern char * ((__tmpnam_320) (char * (____s_318)));// L209 +extern char * ((__tmpnam_r_322) (char * (____s_321)));// L215 +extern char * ((__tmpnam_r_323) (char * (____s_321)));// L215 +extern char * ((__tempnam_326) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 +extern char * ((__tempnam_327) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 +extern int (__fclose_330) (__FILE_59 * (____stream_328));// L237 +extern int (__fclose_332) (__FILE_59 * (____stream_328));// L237 +extern int (__fflush_336) (__FILE_59 * (____stream_334));// L242 +extern int (__fflush_unlocked_340) (__FILE_59 * (____stream_338));// L252 +extern __FILE_59 * ((__fopen_344) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 +extern __FILE_59 * ((__fopen_346) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 +extern __FILE_59 * ((__fopen_354) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 +extern __FILE_59 * ((__fopen_356) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 +extern __FILE_59 * ((__freopen_362) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 +extern __FILE_59 * ((__freopen_368) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 +extern __FILE_59 * ((__freopen_366) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 +extern __FILE_59 * ((__freopen_364) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 +extern __FILE_59 * ((__fdopen_372) (int ____fd_370, const char * (____modes_371)));// L306 +extern __FILE_59 * ((__fdopen_374) (int ____fd_370, const char * (____modes_371)));// L306 +extern __FILE_59 * ((__fmemopen_379) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 +extern __FILE_59 * ((__fmemopen_381) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 +extern __FILE_59 * ((__open_memstream_385) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 +extern __FILE_59 * ((__open_memstream_387) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 +extern void (__setbuf_392) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 +extern void (__setbuf_394) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 +extern int (__setvbuf_401) (__FILE_59 * __restrict ____stream_396, char * __restrict ____buf_398, int ____modes_399, __size_t_1 ____n_400);// L336:L337 +extern void (__setbuffer_407) (__FILE_59 * __restrict ____stream_403, char * __restrict ____buf_405, __size_t_1 ____size_406);// L343:L344 +extern void (__setlinebuf_411) (__FILE_59 * (____stream_409));// L347 +extern int (__fprintf_416) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 +extern int (__fprintf_418) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 +extern int (__printf_421) (const char * __restrict ____format_420, ... );// L362 +extern int (__sprintf_424) (char * __restrict ____s_422, const char * __restrict ____format_423, ... );// L364:L365 +extern int (__vfprintf_430) (__FILE_59 * __restrict ____s_425, const char * __restrict ____format_427, ____gnuc_va_list_86 ____arg_428);// L371:L372 +extern int (__vprintf_437) (const char * __restrict ____format_434, ____gnuc_va_list_86 ____arg_435);// L377 +extern int (__vsprintf_443) (char * __restrict ____s_439, const char * __restrict ____format_440, ____gnuc_va_list_86 ____arg_441);// L379:L380 +extern int (__snprintf_448) (char * __restrict ____s_445, __size_t_1 ____maxlen_446, const char * __restrict ____format_447, ... );// L386:L388 +extern int (__vsnprintf_454) (char * __restrict ____s_449, __size_t_1 ____maxlen_450, const char * __restrict ____format_451, ____gnuc_va_list_86 ____arg_452);// L390:L392 +extern int (__vdprintf_460) (int ____fd_456, const char * __restrict ____fmt_457, ____gnuc_va_list_86 ____arg_458);// L412:L414 +extern int (__dprintf_464) (int ____fd_462, const char * __restrict ____fmt_463, ... );// L415:L416 +extern int (__fscanf_468) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_470) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_472) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_474) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__scanf_477) (const char * __restrict ____format_476, ... );// L431 +extern int (__scanf_478) (const char * __restrict ____format_476, ... );// L431 +extern int (__sscanf_481) (const char * __restrict ____s_479, const char * __restrict ____format_480, ... );// L433:L434 + + + + + + + +extern int (__vfscanf_509) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 +extern int (__vfscanf_513) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 +extern int (__vscanf_520) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 +extern int (__vscanf_522) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 +extern int (__vsscanf_528) (const char * __restrict ____s_524, const char * __restrict ____format_525, ____gnuc_va_list_86 ____arg_526);// L483:L485 + + + + + +extern int (__fgetc_563) (__FILE_59 * (____stream_561));// L531 +extern int (__getc_567) (__FILE_59 * (____stream_565));// L532 +extern int (__getchar_569) (void );// L538 +extern int (__getc_unlocked_572) (__FILE_59 * (____stream_570));// L550 +extern int (__getchar_unlocked_574) (void );// L551 +extern int (__fgetc_unlocked_577) (__FILE_59 * (____stream_575));// L561 +extern int (__fputc_582) (int ____c_579, __FILE_59 * (____stream_580));// L573 +extern int (__fputc_584) (int ____c_579, __FILE_59 * (____stream_580));// L573 +extern int (__putc_589) (int ____c_586, __FILE_59 * (____stream_587));// L574 +extern int (__putchar_592) (int ____c_591);// L580 +extern int (__fputc_unlocked_596) (int ____c_593, __FILE_59 * (____stream_594));// L594 +extern int (__putc_unlocked_601) (int ____c_598, __FILE_59 * (____stream_599));// L602 +extern int (__putchar_unlocked_604) (int ____c_603);// L603 +extern int (__getw_607) (__FILE_59 * (____stream_605));// L610 +extern int (__putw_612) (int ____w_609, __FILE_59 * (____stream_610));// L613 +extern char * ((__fgets_618) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_620) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_622) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_624) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern ____ssize_t_49 (____getdelim_631) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 +extern ____ssize_t_49 (____getdelim_635) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 +extern ____ssize_t_49 (__getdelim_644) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 +extern ____ssize_t_49 (__getdelim_648) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 +extern ____ssize_t_49 (__getline_656) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 +extern ____ssize_t_49 (__getline_660) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 +extern int (__fputs_667) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 +extern int (__fputs_669) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 +extern int (__puts_672) (const char * (____s_671));// L695 +extern int (__ungetc_676) (int ____c_673, __FILE_59 * (____stream_674));// L702 +extern int (__fseek_714) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 +extern int (__fseek_716) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 +extern long int (__ftell_720) (__FILE_59 * (____stream_718));// L754 +extern long int (__ftell_722) (__FILE_59 * (____stream_718));// L754 +extern void (__rewind_726) (__FILE_59 * (____stream_724));// L759 +extern int (__fseeko_733) (__FILE_59 * (____stream_728), ____off_t_23 ____off_730, int ____whence_732);// L773 +extern int (__fseeko_744) (__FILE_59 * (____stream_739), ____off64_t_24 ____off_741, int ____whence_743);// L781:L783 +extern ____off_t_23 (__ftello_758) (__FILE_59 * (____stream_737));// L778 +extern ____off_t_23 (__ftello_750) (__FILE_59 * (____stream_737));// L778 +extern int (__fgetpos_766) (__FILE_59 * __restrict ____stream_762, __fpos_t_287 * __restrict ____pos_764);// L798 +extern ____off64_t_24 (__ftello_754) (__FILE_59 * (____stream_748));// L784 +extern int (__fgetpos_778) (__FILE_59 * __restrict ____stream_774, __fpos_t_289 * __restrict ____pos_776);// L806:L807 +extern int (__fsetpos_786) (__FILE_59 * (____stream_770), const __fpos_t_287 * (____pos_772));// L803 +extern int (__fsetpos_790) (__FILE_59 * (____stream_782), const __fpos_t_289 * (____pos_784));// L808:L809 +extern void (__clearerr_796) (__FILE_59 * (____stream_794));// L826 +extern int (__feof_800) (__FILE_59 * (____stream_798));// L828 +extern int (__feof_802) (__FILE_59 * (____stream_798));// L828 +extern int (__ferror_806) (__FILE_59 * (____stream_804));// L830 +extern int (__ferror_808) (__FILE_59 * (____stream_804));// L830 +extern void (__clearerr_unlocked_812) (__FILE_59 * (____stream_810));// L835 +extern int (__feof_unlocked_816) (__FILE_59 * (____stream_814));// L836 +extern int (__feof_unlocked_818) (__FILE_59 * (____stream_814));// L836 +extern int (__ferror_unlocked_822) (__FILE_59 * (____stream_820));// L837 +extern int (__ferror_unlocked_824) (__FILE_59 * (____stream_820));// L837 +extern void (__perror_827) (const char * (____s_826));// L846 +extern void (__perror_828) (const char * (____s_826));// L846 +extern int __sys_nerr_829;// L26 + +extern int (__fileno_835) (__FILE_59 * (____stream_831));// L858 +extern int (__fileno_833) (__FILE_59 * (____stream_831));// L858 +extern int (__fileno_unlocked_841) (__FILE_59 * (____stream_837));// L863 +extern int (__fileno_unlocked_839) (__FILE_59 * (____stream_837));// L863 +extern __FILE_59 * ((__popen_845) (const char * (____command_843), const char * (____modes_844)));// L872 +extern __FILE_59 * ((__popen_847) (const char * (____command_843), const char * (____modes_844)));// L872 +extern int (__pclose_851) (__FILE_59 * (____stream_849));// L878 +extern char * ((__ctermid_854) (char * (____s_853)));// L884 +extern void (__flockfile_857) (__FILE_59 * (____stream_855));// L912 +extern int (__ftrylockfile_861) (__FILE_59 * (____stream_859));// L916 +extern int (__ftrylockfile_863) (__FILE_59 * (____stream_859));// L916 +extern void (__funlockfile_867) (__FILE_59 * (____stream_865));// L919 +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +extern int (____sprintf_chk_899) (char * __restrict ____s_895, int ____flag_896, __size_t_1 ____slen_897, const char * __restrict ____format_898, ... );// L23:L24 +extern int (____vsprintf_chk_906) (char * __restrict ____s_900, int ____flag_901, __size_t_1 ____slen_902, const char * __restrict ____format_903, ____gnuc_va_list_86 ____ap_904);// L25:L27 +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +extern int (____snprintf_chk_920) (char * __restrict ____s_915, __size_t_1 ____n_916, int ____flag_917, __size_t_1 ____slen_918, const char * __restrict ____format_919, ... );// L52:L54 +extern int (____vsnprintf_chk_928) (char * __restrict ____s_921, __size_t_1 ____n_922, int ____flag_923, __size_t_1 ____slen_924, const char * __restrict ____format_925, ____gnuc_va_list_86 ____ap_926);// L55:L57 +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +extern int (____fprintf_chk_943) (__FILE_59 * __restrict ____stream_939, int ____flag_941, const char * __restrict ____format_942, ... );// L85:L86 +extern int (____printf_chk_947) (int ____flag_945, const char * __restrict ____format_946, ... );// L87 +extern int (____vfprintf_chk_954) (__FILE_59 * __restrict ____stream_948, int ____flag_950, const char * __restrict ____format_951, ____gnuc_va_list_86 ____ap_952);// L88:L89 +extern int (____vprintf_chk_962) (int ____flag_958, const char * __restrict ____format_959, ____gnuc_va_list_86 ____ap_960);// L90:L91 +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +extern int (____dprintf_chk_984) (int ____fd_981, int ____flag_982, const char * __restrict ____fmt_983, ... );// L131:L132 +extern int (____vdprintf_chk_990) (int ____fd_985, int ____flag_986, const char * __restrict ____fmt_987, ____gnuc_va_list_86 ____arg_988);// L133:L135 +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +extern char * ((____fgets_chk_1004) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_chk_1006) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_chk_1008) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_alias_1014) (char * __restrict ____s_1010, int ____n_1011, __FILE_59 * __restrict ____stream_1012));// L243:L245 +extern char * ((____fgets_chk_warn_1021) (char * __restrict ____s_1016, __size_t_1 ____size_1017, int ____n_1018, __FILE_59 * __restrict ____stream_1019));// L246:L250 +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +static __inline unsigned int (____bswap_32_1158) (unsigned int ____bsx_1157) { + +if (__static_condition_default_1159) { + +{ +{ + + + +__static_type_error("invalid type found in return expression"); +} +} + + +} +} +static __inline ____uint64_t_13 (____bswap_64_1162) (____uint64_t_13 ____bsx_1160) { + +if (__static_condition_default_1164) { + +{ +{ + + + +__static_type_error("invalid type found in return expression"); +} +} + + +} +} +static __inline ____uint64_t_1112 (____bswap_64_1163) (____uint64_t_1112 ____bsx_1161) { + +if (__static_condition_default_1165) { + +{ +{ + + + +__static_type_error("invalid type found in return expression"); +} +} + + +} +} +union __wait_1177 ;// L66 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern __size_t_1 (____ctype_get_mb_cur_max_1201) (void );// L139 +extern __size_t_1093 (____ctype_get_mb_cur_max_1202) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_1203) (void );// L139 +extern __size_t_1093 (____ctype_get_mb_cur_max_1204) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_1205) (void );// L139 +extern __size_t_1093 (____ctype_get_mb_cur_max_1206) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_1207) (void );// L139 +extern __size_t_1093 (____ctype_get_mb_cur_max_1208) (void );// L139 +extern double (__atof_1210) (const char * (____nptr_1209));// L144:L145 +extern double (__atof_1211) (const char * (____nptr_1209));// L144:L145 +extern int (__atoi_1213) (const char * (____nptr_1212));// L147:L148 +extern int (__atoi_1214) (const char * (____nptr_1212));// L147:L148 +extern long int (__atol_1216) (const char * (____nptr_1215));// L150:L151 +extern long int (__atol_1217) (const char * (____nptr_1215));// L150:L151 +extern long long int (__atoll_1219) (const char * (____nptr_1218));// L157:L158 +extern long long int (__atoll_1220) (const char * (____nptr_1218));// L157:L158 +extern double (__strtod_1223) (const char * __restrict ____nptr_1221, char * (* __restrict ____endptr_1222));// L164:L166 +extern float (__strtof_1226) (const char * __restrict ____nptr_1224, char * (* __restrict ____endptr_1225));// L172:L173 +extern long double (__strtold_1229) (const char * __restrict ____nptr_1227, char * (* __restrict ____endptr_1228));// L175:L177 +extern long int (__strtol_1233) (const char * __restrict ____nptr_1230, char * (* __restrict ____endptr_1231), int ____base_1232);// L183:L185 +extern unsigned long int (__strtoul_1237) (const char * __restrict ____nptr_1234, char * (* __restrict ____endptr_1235), int ____base_1236);// L187:L189 +extern long long int (__strtoq_1241) (const char * __restrict ____nptr_1238, char * (* __restrict ____endptr_1239), int ____base_1240);// L195:L197 +extern unsigned long long int (__strtouq_1245) (const char * __restrict ____nptr_1242, char * (* __restrict ____endptr_1243), int ____base_1244);// L200:L202 +extern long long int (__strtoll_1249) (const char * __restrict ____nptr_1246, char * (* __restrict ____endptr_1247), int ____base_1248);// L209:L211 +extern long long int (__strtoll_1250) (const char * __restrict ____nptr_1246, char * (* __restrict ____endptr_1247), int ____base_1248);// L209:L211 +extern unsigned long long int (__strtoull_1254) (const char * __restrict ____nptr_1251, char * (* __restrict ____endptr_1252), int ____base_1253);// L214:L216 +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +__extension__/* no function due to type errors in the function prototype */ +extern char * ((__l64a_1259) (long int ____n_1258));// L305 +extern char * ((__l64a_1260) (long int ____n_1258));// L305 +extern long int (__a64l_1262) (const char * (____s_1261));// L308:L309 +extern long int (__a64l_1263) (const char * (____s_1261));// L308:L309 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +static __inline unsigned int (____bswap_32_1452) (unsigned int ____bsx_1451) { + +if (__static_condition_default_1453) { + +{ +{ + + + +__static_type_error("invalid type found in return expression"); +} +} + + +} +} +static __inline ____uint64_t_13 (____bswap_64_1456) (____uint64_t_13 ____bsx_1454) { + +if (__static_condition_default_1458) { + +{ +{ + + + +__static_type_error("invalid type found in return expression"); +} +} + + +} +} +static __inline ____uint64_t_1275 (____bswap_64_1457) (____uint64_t_1275 ____bsx_1455) { + +if (__static_condition_default_1459) { + +{ +{ + + + +__static_type_error("invalid type found in return expression"); +} +} + + +} +} +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +struct __timespec_1466 ;// L120 + +struct __timeval_1476 ;// L30 + +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern int (__select_1513) (int ____nfds_1502, __fd_set_1499 * __restrict ____readfds_1503, __fd_set_1499 * __restrict ____writefds_1505, __fd_set_1499 * __restrict ____exceptfds_1507, struct __timeval_1476 * __restrict ____timeout_1510);// L106:L109 +extern int (__select_1514) (int ____nfds_1502, __fd_set_1499 * __restrict ____readfds_1503, __fd_set_1499 * __restrict ____writefds_1505, __fd_set_1499 * __restrict ____exceptfds_1507, struct __forward_tag_reference_1509 * __restrict ____timeout_1512);// L106:L109 +extern int (__pselect_1529) (int ____nfds_1517, __fd_set_1499 * __restrict ____readfds_1518, __fd_set_1499 * __restrict ____writefds_1520, __fd_set_1499 * __restrict ____exceptfds_1522, const struct __timespec_1466 * __restrict ____timeout_1525, const ____sigset_t_1464 * __restrict ____sigmask_1528);// L118:L122 +extern int (__pselect_1530) (int ____nfds_1517, __fd_set_1499 * __restrict ____readfds_1518, __fd_set_1499 * __restrict ____writefds_1520, __fd_set_1499 * __restrict ____exceptfds_1522, const struct __forward_tag_reference_1524 * __restrict ____timeout_1527, const ____sigset_t_1464 * __restrict ____sigmask_1528);// L118:L122 +extern long int (____fdelt_chk_1534) (long int ____d_1533);// L24 +extern long int (____fdelt_warn_1536) (long int ____d_1535);// L25:L26 +extern unsigned int (__gnu_dev_major_1538) (unsigned long long int ____dev_1537);// L27:L28 +extern unsigned int (__gnu_dev_major_1539) (unsigned long long int ____dev_1537);// L27:L28 +extern unsigned int (__gnu_dev_minor_1541) (unsigned long long int ____dev_1540);// L30:L31 +extern unsigned long long int (__gnu_dev_makedev_1544) (unsigned int ____major_1542, unsigned int ____minor_1543);// L33:L35 +__extension__/* no function due to type errors in the function prototype */ +__extension__/* no function due to type errors in the function prototype */ +__extension__/* no function due to type errors in the function prototype */ +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +union __pthread_attr_t_1578 ;// L63 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern int (__rand_1609) (void );// L374 +extern void (__srand_1611) (unsigned int ____seed_1610);// L376 +extern int (__rand_r_1613) (unsigned int * (____seed_1612));// L381 +extern double (__drand48_1614) (void );// L389 +extern double (__erand48_1616) (unsigned short int ____xsubi_1615[3]);// L390 +extern long int (__lrand48_1617) (void );// L393 +extern long int (__nrand48_1619) (unsigned short int ____xsubi_1618[3]);// L394:L395 +extern long int (__mrand48_1620) (void );// L398 +extern long int (__jrand48_1622) (unsigned short int ____xsubi_1621[3]);// L399:L400 +extern void (__srand48_1624) (long int ____seedval_1623);// L403 +extern unsigned short int * ((__seed48_1626) (unsigned short int ____seed16v_1625[3]));// L404:L405 +extern void (__lcong48_1628) (unsigned short int ____param_1627[7]);// L406 +extern void * ((__malloc_1631) (__size_t_1 ____size_1629));// L466 +extern void * ((__malloc_1632) (__size_t_1093 ____size_1630));// L466 +extern void * ((__malloc_1633) (__size_t_1 ____size_1629));// L466 +extern void * ((__malloc_1634) (__size_t_1093 ____size_1630));// L466 +extern void * ((__calloc_1639) (__size_t_1 ____nmemb_1635, __size_t_1 ____size_1637));// L468:L469 +extern void * ((__calloc_1640) (__size_t_1093 ____nmemb_1636, __size_t_1093 ____size_1638));// L468:L469 +extern void * ((__calloc_1641) (__size_t_1 ____nmemb_1635, __size_t_1 ____size_1637));// L468:L469 +extern void * ((__calloc_1642) (__size_t_1093 ____nmemb_1636, __size_t_1093 ____size_1638));// L468:L469 +extern void * ((__realloc_1646) (void * (____ptr_1643), __size_t_1 ____size_1644));// L480:L481 +extern void * ((__realloc_1647) (void * (____ptr_1643), __size_t_1093 ____size_1645));// L480:L481 +extern void (__free_1649) (void * (____ptr_1648));// L483 +extern void (__cfree_1651) (void * (____ptr_1650));// L488 +extern void * ((__alloca_1654) (__size_t_1 ____size_1652));// L32 +extern void * ((__alloca_1655) (__size_t_1093 ____size_1653));// L32 +extern void * ((__valloc_1658) (__size_t_1 ____size_1656));// L498 +extern void * ((__valloc_1659) (__size_t_1093 ____size_1657));// L498 +extern void * ((__valloc_1660) (__size_t_1 ____size_1656));// L498 +extern void * ((__valloc_1661) (__size_t_1093 ____size_1657));// L498 +extern int (__posix_memalign_1667) (void * (* (____memptr_1662)), __size_t_1 ____alignment_1663, __size_t_1 ____size_1665);// L503:L504 +extern int (__posix_memalign_1668) (void * (* (____memptr_1662)), __size_t_1093 ____alignment_1664, __size_t_1093 ____size_1666);// L503:L504 +extern int (__posix_memalign_1669) (void * (* (____memptr_1662)), __size_t_1 ____alignment_1663, __size_t_1 ____size_1665);// L503:L504 +extern int (__posix_memalign_1670) (void * (* (____memptr_1662)), __size_t_1093 ____alignment_1664, __size_t_1093 ____size_1666);// L503:L504 +extern void * ((__aligned_alloc_1675) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 +extern void * ((__aligned_alloc_1676) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 +extern void * ((__aligned_alloc_1677) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 +extern void * ((__aligned_alloc_1678) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 +extern void * ((__aligned_alloc_1679) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 +extern void * ((__aligned_alloc_1680) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 +extern void * ((__aligned_alloc_1681) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 +extern void * ((__aligned_alloc_1682) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 +extern void (__abort_1683) (void );// L515 +extern int (__atexit_1685) (void (* (____func_1684)) (void ));// L519 +extern int (__at_quick_exit_1687) (void (* (____func_1686)) (void ));// L527 +extern int (__on_exit_1692) (void (* (____func_1690)) (int ____status_1688, void * (____arg_1689)), void * (____arg_1691));// L535:L536 +extern void (__exit_1694) (int ____status_1693);// L543 +extern void (__exit_1695) (int ____status_1693);// L543 +extern void (__quick_exit_1697) (int ____status_1696);// L549 +extern void (___Exit_1699) (int ____status_1698);// L557 +extern char * ((__getenv_1701) (const char * (____name_1700)));// L564 +extern char * ((__getenv_1702) (const char * (____name_1700)));// L564 +extern int (__putenv_1704) (char * (____string_1703));// L578 +extern int (__setenv_1708) (const char * (____name_1705), const char * (____value_1706), int ____replace_1707);// L584:L585 +extern int (__unsetenv_1710) (const char * (____name_1709));// L588 +extern int (__clearenv_1711) (void );// L595 +extern char * ((__mktemp_1713) (char * (____template_1712)));// L606 +extern int (__mkstemp_1716) (char * (____template_1714));// L619 +extern int (__mkstemp_1718) (char * (____template_1714));// L619 +extern int (__mkstemp_1717) (char * (____template_1715));// L622:L623 +extern int (__mkstemp_1719) (char * (____template_1715));// L622:L623 +extern int (__mkstemps_1724) (char * (____template_1720), int ____suffixlen_1721);// L641 +extern int (__mkstemps_1725) (char * (____template_1722), int ____suffixlen_1723);// L644:L645 +extern int (__mkstemps_1726) (char * (____template_1720), int ____suffixlen_1721);// L641 +extern int (__mkstemps_1727) (char * (____template_1722), int ____suffixlen_1723);// L644:L645 +extern char * ((__mkdtemp_1729) (char * (____template_1728)));// L662 +extern char * ((__mkdtemp_1730) (char * (____template_1728)));// L662 +extern int (__system_1732) (const char * (____command_1731));// L716 +extern int (__system_1733) (const char * (____command_1731));// L716 +extern int (__system_1734) (const char * (____command_1731));// L716 +extern int (__system_1735) (const char * (____command_1731));// L716 +extern char * ((__realpath_1738) (const char * __restrict ____name_1736, char * __restrict ____resolved_1737));// L733:L734 +extern char * ((__realpath_1739) (const char * __restrict ____name_1736, char * __restrict ____resolved_1737));// L733:L734 +// typedef moved to top of scope +extern void * ((__bsearch_1751) (const void * (____key_1741), const void * (____base_1742), __size_t_1 ____nmemb_1743, __size_t_1 ____size_1745, ____compar_fn_t_1740 ____compar_1747));// L754:L756 +extern void * ((__bsearch_1752) (const void * (____key_1741), const void * (____base_1742), __size_t_1093 ____nmemb_1744, __size_t_1093 ____size_1746, ____compar_fn_t_1740 ____compar_1747));// L754:L756 +extern void * ((__bsearch_1755) (const void * (____key_1741), const void * (____base_1742), __size_t_1 ____nmemb_1743, __size_t_1 ____size_1745, ____compar_fn_t_1740 ____compar_1747));// L754:L756 +extern void * ((__bsearch_1756) (const void * (____key_1741), const void * (____base_1742), __size_t_1093 ____nmemb_1744, __size_t_1093 ____size_1746, ____compar_fn_t_1740 ____compar_1747));// L754:L756 +/* no function due to type errors in the function prototype */ +extern void (__qsort_1784) (void * (____base_1777), __size_t_1 ____nmemb_1778, __size_t_1 ____size_1780, ____compar_fn_t_1740 ____compar_1782);// L764:L765 +extern void (__qsort_1786) (void * (____base_1777), __size_t_1093 ____nmemb_1779, __size_t_1093 ____size_1781, ____compar_fn_t_1740 ____compar_1782);// L764:L765 +extern void (__qsort_1788) (void * (____base_1777), __size_t_1 ____nmemb_1778, __size_t_1 ____size_1780, ____compar_fn_t_1740 ____compar_1782);// L764:L765 +extern void (__qsort_1790) (void * (____base_1777), __size_t_1093 ____nmemb_1779, __size_t_1093 ____size_1781, ____compar_fn_t_1740 ____compar_1782);// L764:L765 +extern int (__abs_1793) (int ____x_1792);// L774 +extern int (__abs_1794) (int ____x_1792);// L774 +extern long int (__labs_1796) (long int ____x_1795);// L775 +extern long int (__labs_1797) (long int ____x_1795);// L775 +extern long long int (__llabs_1799) (long long int ____x_1798);// L779:L780 +extern long long int (__llabs_1800) (long long int ____x_1798);// L779:L780 +extern __div_t_1190 (__div_1803) (int ____numer_1801, int ____denom_1802);// L788:L789 +extern __div_t_1190 (__div_1804) (int ____numer_1801, int ____denom_1802);// L788:L789 +extern __ldiv_t_1195 (__ldiv_1807) (long int ____numer_1805, long int ____denom_1806);// L790:L791 +extern __ldiv_t_1195 (__ldiv_1809) (long int ____numer_1805, long int ____denom_1806);// L790:L791 +extern __lldiv_t_1200 (__lldiv_1813) (long long int ____numer_1811, long long int ____denom_1812);// L796:L798 +extern __lldiv_t_1200 (__lldiv_1815) (long long int ____numer_1811, long long int ____denom_1812);// L796:L798 +extern char * ((__ecvt_1821) (double ____value_1817, int ____ndigit_1818, int * __restrict ____decpt_1819, int * __restrict ____sign_1820));// L811:L812 +extern char * ((__ecvt_1822) (double ____value_1817, int ____ndigit_1818, int * __restrict ____decpt_1819, int * __restrict ____sign_1820));// L811:L812 +extern char * ((__fcvt_1827) (double ____value_1823, int ____ndigit_1824, int * __restrict ____decpt_1825, int * __restrict ____sign_1826));// L817:L818 +extern char * ((__fcvt_1828) (double ____value_1823, int ____ndigit_1824, int * __restrict ____decpt_1825, int * __restrict ____sign_1826));// L817:L818 +extern char * ((__gcvt_1832) (double ____value_1829, int ____ndigit_1830, char * (____buf_1831)));// L823:L824 +extern char * ((__gcvt_1833) (double ____value_1829, int ____ndigit_1830, char * (____buf_1831)));// L823:L824 +extern char * ((__qecvt_1838) (long double ____value_1834, int ____ndigit_1835, int * __restrict ____decpt_1836, int * __restrict ____sign_1837));// L829:L831 +extern char * ((__qecvt_1839) (long double ____value_1834, int ____ndigit_1835, int * __restrict ____decpt_1836, int * __restrict ____sign_1837));// L829:L831 +extern char * ((__qfcvt_1844) (long double ____value_1840, int ____ndigit_1841, int * __restrict ____decpt_1842, int * __restrict ____sign_1843));// L832:L834 +extern char * ((__qfcvt_1845) (long double ____value_1840, int ____ndigit_1841, int * __restrict ____decpt_1842, int * __restrict ____sign_1843));// L832:L834 +extern char * ((__qgcvt_1849) (long double ____value_1846, int ____ndigit_1847, char * (____buf_1848)));// L835:L836 +extern char * ((__qgcvt_1850) (long double ____value_1846, int ____ndigit_1847, char * (____buf_1848)));// L835:L836 +extern int (__ecvt_r_1858) (double ____value_1851, int ____ndigit_1852, int * __restrict ____decpt_1853, int * __restrict ____sign_1854, char * __restrict ____buf_1855, __size_t_1 ____len_1856);// L841:L843 +extern int (__ecvt_r_1859) (double ____value_1851, int ____ndigit_1852, int * __restrict ____decpt_1853, int * __restrict ____sign_1854, char * __restrict ____buf_1855, __size_t_1093 ____len_1857);// L841:L843 +extern int (__fcvt_r_1867) (double ____value_1860, int ____ndigit_1861, int * __restrict ____decpt_1862, int * __restrict ____sign_1863, char * __restrict ____buf_1864, __size_t_1 ____len_1865);// L844:L846 +extern int (__fcvt_r_1868) (double ____value_1860, int ____ndigit_1861, int * __restrict ____decpt_1862, int * __restrict ____sign_1863, char * __restrict ____buf_1864, __size_t_1093 ____len_1866);// L844:L846 +extern int (__qecvt_r_1876) (long double ____value_1869, int ____ndigit_1870, int * __restrict ____decpt_1871, int * __restrict ____sign_1872, char * __restrict ____buf_1873, __size_t_1 ____len_1874);// L848:L851 +extern int (__qecvt_r_1877) (long double ____value_1869, int ____ndigit_1870, int * __restrict ____decpt_1871, int * __restrict ____sign_1872, char * __restrict ____buf_1873, __size_t_1093 ____len_1875);// L848:L851 +extern int (__qfcvt_r_1885) (long double ____value_1878, int ____ndigit_1879, int * __restrict ____decpt_1880, int * __restrict ____sign_1881, char * __restrict ____buf_1882, __size_t_1 ____len_1883);// L852:L855 +extern int (__qfcvt_r_1886) (long double ____value_1878, int ____ndigit_1879, int * __restrict ____decpt_1880, int * __restrict ____sign_1881, char * __restrict ____buf_1882, __size_t_1093 ____len_1884);// L852:L855 +extern int (__mblen_1890) (const char * (____s_1887), __size_t_1 ____n_1888);// L862 +extern int (__mblen_1891) (const char * (____s_1887), __size_t_1093 ____n_1889);// L862 +extern int (__mblen_1892) (const char * (____s_1887), __size_t_1 ____n_1888);// L862 +extern int (__mblen_1893) (const char * (____s_1887), __size_t_1093 ____n_1889);// L862 +extern int (__mbtowc_1898) (__wchar_t_1094 * __restrict ____pwc_1894, const char * __restrict ____s_1895, __size_t_1 ____n_1896);// L865:L866 +extern int (__mbtowc_1899) (__wchar_t_1094 * __restrict ____pwc_1894, const char * __restrict ____s_1895, __size_t_1093 ____n_1897);// L865:L866 +extern int (__wctomb_1902) (char * (____s_1900), __wchar_t_1094 ____wchar_1901);// L869 +extern __size_t_1 (__mbstowcs_1907) (__wchar_t_1094 * __restrict ____pwcs_1903, const char * __restrict ____s_1904, __size_t_1 ____n_1905);// L873:L874 +extern __size_t_1093 (__mbstowcs_1908) (__wchar_t_1094 * __restrict ____pwcs_1903, const char * __restrict ____s_1904, __size_t_1093 ____n_1906);// L873:L874 +extern __size_t_1 (__wcstombs_1913) (char * __restrict ____s_1909, const __wchar_t_1094 * __restrict ____pwcs_1910, __size_t_1 ____n_1911);// L876:L878 +extern __size_t_1093 (__wcstombs_1914) (char * __restrict ____s_1909, const __wchar_t_1094 * __restrict ____pwcs_1910, __size_t_1093 ____n_1912);// L876:L878 +extern int (__rpmatch_1917) (const char * (____response_1915));// L887 +extern int (__rpmatch_1916) (const char * (____response_1915));// L887 +extern int (__getsubopt_1922) (char * (* __restrict ____optionp_1918), char * const * __restrict ____tokens_1919, char * (* __restrict ____valuep_1920));// L898:L901 +extern int (__getsubopt_1921) (char * (* __restrict ____optionp_1918), char * const * __restrict ____tokens_1919, char * (* __restrict ____valuep_1920));// L898:L901 +extern int (__getloadavg_1925) (double ____loadavg_1923[], int ____nelem_1924);// L950:L951 +/* no function due to type errors in the function prototype */ +extern char * ((____realpath_chk_1931) (const char * __restrict ____name_1927, char * __restrict ____resolved_1928, __size_t_1 ____resolvedlen_1929));// L23:L25 +extern char * ((____realpath_chk_1932) (const char * __restrict ____name_1927, char * __restrict ____resolved_1928, __size_t_1093 ____resolvedlen_1930));// L23:L25 +extern char * ((____realpath_alias_1935) (const char * __restrict ____name_1933, char * __restrict ____resolved_1934));// L26:L28 +extern char * ((____realpath_chk_warn_1940) (const char * __restrict ____name_1936, char * __restrict ____resolved_1937, __size_t_1 ____resolvedlen_1938));// L29:L34 +extern char * ((____realpath_chk_warn_1941) (const char * __restrict ____name_1936, char * __restrict ____resolved_1937, __size_t_1093 ____resolvedlen_1939));// L29:L34 +/* no function due to type errors in the function prototype */ +extern int (____ptsname_r_chk_1951) (int ____fd_1945, char * (____buf_1946), __size_t_1 ____buflen_1947, __size_t_1 ____nreal_1949);// L52:L53 +extern int (____ptsname_r_chk_1952) (int ____fd_1945, char * (____buf_1946), __size_t_1093 ____buflen_1948, __size_t_1093 ____nreal_1950);// L52:L53 +extern int (____ptsname_r_alias_1957) (int ____fd_1953, char * (____buf_1954), __size_t_1 ____buflen_1955);// L54:L56 +extern int (____ptsname_r_alias_1958) (int ____fd_1953, char * (____buf_1954), __size_t_1093 ____buflen_1956);// L54:L56 +extern int (____ptsname_r_chk_warn_1965) (int ____fd_1959, char * (____buf_1960), __size_t_1 ____buflen_1961, __size_t_1 ____nreal_1963);// L57:L61 +extern int (____ptsname_r_chk_warn_1966) (int ____fd_1959, char * (____buf_1960), __size_t_1093 ____buflen_1962, __size_t_1093 ____nreal_1964);// L57:L61 +/* no function due to type errors in the function prototype */ +extern int (____wctomb_chk_1977) (char * (____s_1973), __wchar_t_1094 ____wchar_1974, __size_t_1 ____buflen_1975);// L77:L78 +extern int (____wctomb_chk_1978) (char * (____s_1973), __wchar_t_1094 ____wchar_1974, __size_t_1093 ____buflen_1976);// L77:L78 +extern int (____wctomb_alias_1981) (char * (____s_1979), __wchar_t_1094 ____wchar_1980);// L79:L80 +/* no function due to type errors in the function prototype */ +extern __size_t_1 (____mbstowcs_chk_1990) (__wchar_t_1094 * __restrict ____dst_1984, const char * __restrict ____src_1985, __size_t_1 ____len_1986, __size_t_1 ____dstlen_1988);// L98:L100 +extern __size_t_1093 (____mbstowcs_chk_1991) (__wchar_t_1094 * __restrict ____dst_1984, const char * __restrict ____src_1985, __size_t_1093 ____len_1987, __size_t_1093 ____dstlen_1989);// L98:L100 +extern __size_t_1 (____mbstowcs_alias_1996) (__wchar_t_1094 * __restrict ____dst_1992, const char * __restrict ____src_1993, __size_t_1 ____len_1994);// L101:L104 +extern __size_t_1093 (____mbstowcs_alias_1997) (__wchar_t_1094 * __restrict ____dst_1992, const char * __restrict ____src_1993, __size_t_1093 ____len_1995);// L101:L104 +extern __size_t_1 (____mbstowcs_chk_warn_2004) (__wchar_t_1094 * __restrict ____dst_1998, const char * __restrict ____src_1999, __size_t_1 ____len_2000, __size_t_1 ____dstlen_2002);// L105:L110 +extern __size_t_1093 (____mbstowcs_chk_warn_2005) (__wchar_t_1094 * __restrict ____dst_1998, const char * __restrict ____src_1999, __size_t_1093 ____len_2001, __size_t_1093 ____dstlen_2003);// L105:L110 +/* no function due to type errors in the function prototype */ +extern __size_t_1 (____wcstombs_chk_2016) (char * __restrict ____dst_2010, const __wchar_t_1094 * __restrict ____src_2011, __size_t_1 ____len_2012, __size_t_1 ____dstlen_2014);// L130:L132 +extern __size_t_1093 (____wcstombs_chk_2017) (char * __restrict ____dst_2010, const __wchar_t_1094 * __restrict ____src_2011, __size_t_1093 ____len_2013, __size_t_1093 ____dstlen_2015);// L130:L132 +extern __size_t_1 (____wcstombs_alias_2022) (char * __restrict ____dst_2018, const __wchar_t_1094 * __restrict ____src_2019, __size_t_1 ____len_2020);// L133:L136 +extern __size_t_1093 (____wcstombs_alias_2023) (char * __restrict ____dst_2018, const __wchar_t_1094 * __restrict ____src_2019, __size_t_1093 ____len_2021);// L133:L136 +extern __size_t_1 (____wcstombs_chk_warn_2030) (char * __restrict ____dst_2024, const __wchar_t_1094 * __restrict ____src_2025, __size_t_1 ____len_2026, __size_t_1 ____dstlen_2028);// L137:L141 +extern __size_t_1093 (____wcstombs_chk_warn_2031) (char * __restrict ____dst_2024, const __wchar_t_1094 * __restrict ____src_2025, __size_t_1093 ____len_2027, __size_t_1093 ____dstlen_2029);// L137:L141 +/* no function due to type errors in the function prototype */ +int (__main_2042) (int __argc_2036, char * (* (__argv_2037))) { + +if (__static_condition_default_2045) { + +{ +{ + + + +int __r_2038= rand( ) % 2;// L6 + +char * (__p_2040);// L7 + +char __c_2041;// L8 + +__static_type_error("type error : no valid expression"); // L10 +if (__static_condition_default_2046) { +switch ( __c_2041 )// L12 +{ +case 'W' : +{ + + + +if (__static_condition_default_2047) { +if ( __r_2038 )// L15 +{ + __p_2040 = * __argv_2037 ++ , -- __argc_2036 ; // L16 +} +} +break ; // L17 +} +} +} +if (__static_condition_default_2048) { +switch ( __c_2041 )// L12 +{ +case 'W' : +{ + + + +if (__static_condition_default_2049) { +if ( __r_2038 )// L15 +{ + __p_2040 = * __argv_2037 ++ , -- __argc_2036 ; // L16 +} +} +break ; // L17 +} +case 'U' : +{ + + + +if ( ! __p_2040 )// L20 +{ + +{ +goto expected_hwif_error_0; +} +} +break ; // L22 +} +case 'R' : +{ + + + +if ( ! __p_2040 )// L27 +{ + +{ +goto expected_hwif_error_0; +} +} + +expected_hwif_error_0: +{ +if (__static_condition_default_2050) { + __printf_421 ("expected hwif value") ; // L32 +} +if (__static_condition_default_2051) { +__static_type_error("type error") ; // L32 +} +} +} +} +} +if (__static_condition_default_2052) { +switch ( __c_2041 )// L12 +{ +case 'W' : +{ + + + +if (__static_condition_default_2053) { +if ( __r_2038 )// L15 +{ + __p_2040 = * __argv_2037 ++ , -- __argc_2036 ; // L16 +} +} +break ; // L17 +} +case 'R' : +{ + + + +if ( ! __p_2040 )// L27 +{ + +{ +goto expected_hwif_error_1; +} +} + +expected_hwif_error_1: +{ +if (__static_condition_default_2054) { + __printf_421 ("expected hwif value") ; // L32 +} +if (__static_condition_default_2055) { +__static_type_error("type error") ; // L32 +} +} +} +} +} +if (__static_condition_default_2056) { +switch ( __c_2041 )// L12 +{ +case 'W' : +{ + + + +if (__static_condition_default_2057) { +if ( __r_2038 )// L15 +{ + __p_2040 = * __argv_2037 ++ , -- __argc_2036 ; // L16 +} +} +break ; // L17 +} +case 'U' : +{ + + + +if ( ! __p_2040 )// L20 +{ + +__static_type_error("invalid goto label"); +} +break ; // L22 +} +} +} +return 0 ;// L36 +} +} + + +} +} +int (__main_2043) (int __argc_2036, char * (* (__argv_2037))) { + +if (__static_condition_default_2058) { + +{ +{ + + + +int __r_2038= rand( ) % 2;// L6 + +char * (__p_2040);// L7 + +char __c_2041;// L8 + +__static_type_error("type error : no valid expression"); // L10 +if (__static_condition_default_2059) { +switch ( __c_2041 )// L12 +{ +case 'W' : +{ + + + +if (__static_condition_default_2060) { +if ( __r_2038 )// L15 +{ + __p_2040 = * __argv_2037 ++ , -- __argc_2036 ; // L16 +} +} +break ; // L17 +} +} +} +if (__static_condition_default_2061) { +switch ( __c_2041 )// L12 +{ +case 'W' : +{ + + + +if (__static_condition_default_2062) { +if ( __r_2038 )// L15 +{ + __p_2040 = * __argv_2037 ++ , -- __argc_2036 ; // L16 +} +} +break ; // L17 +} +case 'U' : +{ + + + +if ( ! __p_2040 )// L20 +{ + +{ +goto expected_hwif_error_2; +} +} +break ; // L22 +} +case 'R' : +{ + + + +if ( ! __p_2040 )// L27 +{ + +{ +goto expected_hwif_error_2; +} +} + +expected_hwif_error_2: +{ +if (__static_condition_default_2063) { + __printf_421 ("expected hwif value") ; // L32 +} +if (__static_condition_default_2064) { +__static_type_error("type error") ; // L32 +} +} +} +} +} +if (__static_condition_default_2065) { +switch ( __c_2041 )// L12 +{ +case 'W' : +{ + + + +if (__static_condition_default_2066) { +if ( __r_2038 )// L15 +{ + __p_2040 = * __argv_2037 ++ , -- __argc_2036 ; // L16 +} +} +break ; // L17 +} +case 'R' : +{ + + + +if ( ! __p_2040 )// L27 +{ + +{ +goto expected_hwif_error_3; +} +} + +expected_hwif_error_3: +{ +if (__static_condition_default_2067) { + __printf_421 ("expected hwif value") ; // L32 +} +if (__static_condition_default_2068) { +__static_type_error("type error") ; // L32 +} +} +} +} +} +if (__static_condition_default_2069) { +switch ( __c_2041 )// L12 +{ +case 'W' : +{ + + + +if (__static_condition_default_2070) { +if ( __r_2038 )// L15 +{ + __p_2040 = * __argv_2037 ++ , -- __argc_2036 ; // L16 +} +} +break ; // L17 +} +case 'U' : +{ + + + +if ( ! __p_2040 )// L20 +{ + +__static_type_error("invalid goto label"); +} +break ; // L22 +} +} +} +return 0 ;// L36 +} +} + + +} +} +int (__main_2044) (int __argc_2036, char * (* (__argv_2037))) { + +if (__static_condition_default_2071) { + +{ +{ + + + +if (__static_condition_default_2039) { +__static_type_error("invalid declaration of r under this presence condition"); +} + +char * (__p_2040);// L7 + +char __c_2041;// L8 + +__static_type_error("type error : no valid expression"); // L10 +if (__static_condition_default_2072) { +switch ( __c_2041 )// L12 +{ +case 'W' : +{ + + + +__static_type_error("invalid type found in if statement"); +break ; // L17 +} +} +} +if (__static_condition_default_2073) { +switch ( __c_2041 )// L12 +{ +case 'W' : +{ + + + +__static_type_error("invalid type found in if statement"); +break ; // L17 +} +case 'U' : +{ + + + +if ( ! __p_2040 )// L20 +{ + +{ +goto expected_hwif_error_4; +} +} +break ; // L22 +} +case 'R' : +{ + + + +if ( ! __p_2040 )// L27 +{ + +{ +goto expected_hwif_error_4; +} +} + +expected_hwif_error_4: +{ +if (__static_condition_default_2074) { + __printf_421 ("expected hwif value") ; // L32 +} +if (__static_condition_default_2075) { +__static_type_error("type error") ; // L32 +} +} +} +} +} +if (__static_condition_default_2076) { +switch ( __c_2041 )// L12 +{ +case 'W' : +{ + + + +__static_type_error("invalid type found in if statement"); +break ; // L17 +} +case 'R' : +{ + + + +if ( ! __p_2040 )// L27 +{ + +{ +goto expected_hwif_error_5; +} +} + +expected_hwif_error_5: +{ +if (__static_condition_default_2077) { + __printf_421 ("expected hwif value") ; // L32 +} +if (__static_condition_default_2078) { +__static_type_error("type error") ; // L32 +} +} +} +} +} +if (__static_condition_default_2079) { +switch ( __c_2041 )// L12 +{ +case 'W' : +{ + + + +__static_type_error("invalid type found in if statement"); +break ; // L17 +} +case 'U' : +{ + + + +if ( ! __p_2040 )// L20 +{ + +__static_type_error("invalid goto label"); +} +break ; // L22 +} +} +} +return 0 ;// L36 +} +} + + +} +} + diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.clangres index e69de29b..7c7bab72 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.clangres @@ -0,0 +1,7 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.c:3062:2: warning: Value stored to '__p_2040' is never read [deadcode.DeadStores] + __p_2040 = * __argv_2037 ++ , -- __argc_2036 ; // L16 + ^ ~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.c:3229:2: warning: Value stored to '__p_2040' is never read [deadcode.DeadStores] + __p_2040 = * __argv_2037 ++ , -- __argc_2036 ; // L16 + ^ ~~~~~~~~~~~~~~~~~~ +2 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.inferres new file mode 100644 index 00000000..9b7f27f1 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.inferres @@ -0,0 +1,23 @@ + +BUSYBOX/061fd0a353e.c:20: error: Uninitialized Value + `p` is read without initialization. + 18. #ifdef CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF + 19. case 'U': + 20. if(!p) + ^ + 21. goto expected_hwif_error; //ERROR + 22. break; + +BUSYBOX/061fd0a353e.c:27: error: Uninitialized Value + `p` is read without initialization. + 25. #ifdef CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF + 26. case 'R': + 27. if(!p) + ^ + 28. goto expected_hwif_error; + 29. + + +Found 2 issues + Issue Type(ISSUED_TYPE_ID): # + Uninitialized Value(PULSE_UNINITIALIZED_VALUE): 2 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/192c35f6eb2.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/192c35f6eb2.desugared.c index 289e620b..dbf1f740 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/192c35f6eb2.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/192c35f6eb2.desugared.c @@ -7,308 +7,308 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_380; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_1378; -extern const bool __static_condition_default_317; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_543; -extern const bool __static_condition_default_693; -extern const bool __static_condition_default_1395; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_559; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_187; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_1372; -extern const bool __static_condition_default_779; -extern const bool __static_condition_default_408; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_419; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_488; +extern const bool __static_condition_default_1391; +extern const bool __static_condition_default_819; extern const bool __static_condition_default_963; -extern const bool __static_condition_default_1402; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_538; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_380; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_1368; extern const bool __static_condition_default_709; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_702; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_621; +extern const bool __static_condition_default_583; extern const bool __static_condition_default_568; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_872; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_955; -extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_887; -extern const bool __static_condition_default_357; -extern const bool __static_condition_default_803; -extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_1377; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_929; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_412; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_204; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_956; -extern const bool __static_condition_default_1397; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_891; -extern const bool __static_condition_default_747; -extern const bool __static_condition_default_241; extern const bool __static_condition_default_290; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_1392; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_789; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_1319; +extern const bool __static_condition_default_1347; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_1394; +extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_753; +extern const bool __static_condition_default_1112; extern const bool __static_condition_default_76; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_1325; +extern const bool __static_condition_default_337; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_1342; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_657; extern const bool __static_condition_default_560; -extern const bool __static_condition_default_253; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_791; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_1348; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_1392; extern const bool __static_condition_default_417; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_438; -extern const bool __static_condition_default_1387; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_313; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_701; -extern const bool __static_condition_default_753; -extern const bool __static_condition_default_1385; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_473; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_1390; +extern const bool __static_condition_default_1384; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_1377; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_84; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_779; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_1099; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_721; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_1383; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_768; extern const bool __static_condition_default_991; -extern const bool __static_condition_default_1325; -extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_685; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_333; +extern const bool __static_condition_default_668; extern const bool __static_condition_default_1100; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_1388; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_1349; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_431; extern const bool __static_condition_default_760; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_1391; -extern const bool __static_condition_default_564; -extern const bool __static_condition_default_677; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_769; +extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_891; +extern const bool __static_condition_default_386; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_1330; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_544; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_759; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_512; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_1092; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_883; extern const bool __static_condition_default_755; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_1332; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_852; +extern const bool __static_condition_default_907; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_550; +extern const bool __static_condition_default_929; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_1367; +extern const bool __static_condition_default_388; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_187; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_1401; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_1393; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_955; +extern const bool __static_condition_default_1388; +extern const bool __static_condition_default_536; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_455; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_894; extern const bool __static_condition_default_670; -extern const bool __static_condition_default_382; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_590; -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_1368; -extern const bool __static_condition_default_613; -extern const bool __static_condition_default_649; +extern const bool __static_condition_default_367; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_1093; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_1098; +extern const bool __static_condition_default_683; extern const bool __static_condition_default_715; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_787; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_402; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_382; +extern const bool __static_condition_default_846; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_1331; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_1072; extern const bool __static_condition_default_625; -extern const bool __static_condition_default_957; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_388; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_645; -extern const bool __static_condition_default_756; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_1341; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_702; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_241; extern const bool __static_condition_default_809; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_1343; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_1342; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_515; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_1318; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_769; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_559; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_677; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_834; +extern const bool __static_condition_default_1396; +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_1389; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_658; extern const bool __static_condition_default_365; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_521; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_1397; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_1376; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_311; +extern const bool __static_condition_default_375; extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_793; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_204; +extern const bool __static_condition_default_1113; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_521; extern const bool __static_condition_default_781; -extern const bool __static_condition_default_1348; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_1389; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_1331; -extern const bool __static_condition_default_536; -extern const bool __static_condition_default_842; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_271; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_408; extern const bool __static_condition_default_780; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_1080; extern const bool __static_condition_default_347; -extern const bool __static_condition_default_488; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_761; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_1092; -extern const bool __static_condition_default_1369; -extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_638; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_894; -extern const bool __static_condition_default_759; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_590; extern const bool __static_condition_default_848; -extern const bool __static_condition_default_53; -extern const bool __static_condition_default_1112; -extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_461; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_613; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_1371; +extern const bool __static_condition_default_621; extern const bool __static_condition_default_1386; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_1098; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_858; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_1384; -extern const bool __static_condition_default_1394; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_264; extern const bool __static_condition_default_549; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_315; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_1393; -extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_311; -extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_386; -extern const bool __static_condition_default_512; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_333; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_198; -extern const bool __static_condition_default_583; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_489; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_747; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_1324; +extern const bool __static_condition_default_1385; +extern const bool __static_condition_default_842; extern const bool __static_condition_default_636; -extern const bool __static_condition_default_907; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_263; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_807; extern const bool __static_condition_default_875; -extern const bool __static_condition_default_646; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_1113; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_1319; -extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_217; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_282; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_761; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_1387; +extern const bool __static_condition_default_767; extern const bool __static_condition_default_632; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_1326; -extern const bool __static_condition_default_393; -extern const bool __static_condition_default_789; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_248; -extern const bool __static_condition_default_367; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_444; +extern const bool __static_condition_default_619; extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_914; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_1320; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_419; -extern const bool __static_condition_default_1390; -extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_1099; -extern const bool __static_condition_default_1093; -extern const bool __static_condition_default_846; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_1398; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_735; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_1005; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -609,62 +609,61 @@ __static_renaming("__strdup_1191", "strdup"); __static_renaming("__strndup_1195", "strndup"); __static_renaming("__strndup_1196", "strndup"); __static_renaming("__strchr_1199", "strchr"); -__static_renaming("__strchr_1200", "strchr"); -__static_renaming("__strrchr_1203", "strrchr"); +__static_renaming("__strrchr_1202", "strrchr"); +__static_renaming("__strcspn_1205", "strcspn"); __static_renaming("__strcspn_1206", "strcspn"); -__static_renaming("__strcspn_1207", "strcspn"); +__static_renaming("__strspn_1209", "strspn"); __static_renaming("__strspn_1210", "strspn"); -__static_renaming("__strspn_1211", "strspn"); -__static_renaming("__strpbrk_1214", "strpbrk"); -__static_renaming("__strstr_1217", "strstr"); -__static_renaming("__strtok_1220", "strtok"); -__static_renaming("____strtok_r_1224", "__strtok_r"); -__static_renaming("__strtok_r_1228", "strtok_r"); +__static_renaming("__strpbrk_1213", "strpbrk"); +__static_renaming("__strstr_1216", "strstr"); +__static_renaming("__strtok_1219", "strtok"); +__static_renaming("____strtok_r_1223", "__strtok_r"); +__static_renaming("__strtok_r_1227", "strtok_r"); +__static_renaming("__strlen_1229", "strlen"); __static_renaming("__strlen_1230", "strlen"); __static_renaming("__strlen_1231", "strlen"); __static_renaming("__strlen_1232", "strlen"); -__static_renaming("__strlen_1233", "strlen"); +__static_renaming("__strnlen_1236", "strnlen"); __static_renaming("__strnlen_1237", "strnlen"); -__static_renaming("__strnlen_1238", "strnlen"); +__static_renaming("__strerror_1239", "strerror"); __static_renaming("__strerror_1240", "strerror"); -__static_renaming("__strerror_1241", "strerror"); +__static_renaming("__strerror_r_1245", "strerror_r"); __static_renaming("__strerror_r_1246", "strerror_r"); -__static_renaming("__strerror_r_1247", "strerror_r"); -__static_renaming("__strerror_l_1250", "strerror_l"); +__static_renaming("__strerror_l_1249", "strerror_l"); +__static_renaming("____bzero_1253", "__bzero"); __static_renaming("____bzero_1254", "__bzero"); __static_renaming("____bzero_1255", "__bzero"); __static_renaming("____bzero_1256", "__bzero"); -__static_renaming("____bzero_1257", "__bzero"); +__static_renaming("__bcopy_1261", "bcopy"); __static_renaming("__bcopy_1262", "bcopy"); -__static_renaming("__bcopy_1263", "bcopy"); +__static_renaming("__bzero_1266", "bzero"); __static_renaming("__bzero_1267", "bzero"); -__static_renaming("__bzero_1268", "bzero"); +__static_renaming("__bcmp_1272", "bcmp"); __static_renaming("__bcmp_1273", "bcmp"); -__static_renaming("__bcmp_1274", "bcmp"); -__static_renaming("__index_1277", "index"); -__static_renaming("__rindex_1280", "rindex"); -__static_renaming("__ffs_1282", "ffs"); -__static_renaming("__strcasecmp_1285", "strcasecmp"); +__static_renaming("__index_1276", "index"); +__static_renaming("__rindex_1279", "rindex"); +__static_renaming("__ffs_1281", "ffs"); +__static_renaming("__strcasecmp_1284", "strcasecmp"); +__static_renaming("__strncasecmp_1289", "strncasecmp"); __static_renaming("__strncasecmp_1290", "strncasecmp"); -__static_renaming("__strncasecmp_1291", "strncasecmp"); -__static_renaming("__strsep_1294", "strsep"); -__static_renaming("__strsignal_1296", "strsignal"); -__static_renaming("____stpcpy_1299", "__stpcpy"); -__static_renaming("__stpcpy_1302", "stpcpy"); +__static_renaming("__strsep_1293", "strsep"); +__static_renaming("__strsignal_1295", "strsignal"); +__static_renaming("____stpcpy_1298", "__stpcpy"); +__static_renaming("__stpcpy_1301", "stpcpy"); +__static_renaming("____stpncpy_1306", "__stpncpy"); __static_renaming("____stpncpy_1307", "__stpncpy"); -__static_renaming("____stpncpy_1308", "__stpncpy"); +__static_renaming("__stpncpy_1312", "stpncpy"); __static_renaming("__stpncpy_1313", "stpncpy"); -__static_renaming("__stpncpy_1314", "stpncpy"); +__static_renaming("____stpncpy_chk_1355", "__stpncpy_chk"); __static_renaming("____stpncpy_chk_1356", "__stpncpy_chk"); -__static_renaming("____stpncpy_chk_1357", "__stpncpy_chk"); +__static_renaming("____stpncpy_alias_1361", "__stpncpy_alias"); __static_renaming("____stpncpy_alias_1362", "__stpncpy_alias"); -__static_renaming("____stpncpy_alias_1363", "__stpncpy_alias"); -__static_renaming("__line_1380", "line"); -__static_renaming("__remotefd_1381", "remotefd"); +__static_renaming("__line_1379", "line"); +__static_renaming("__remotefd_1380", "remotefd"); +__static_renaming("__logMessage_1381", "logMessage"); __static_renaming("__logMessage_1382", "logMessage"); -__static_renaming("__logMessage_1383", "logMessage"); -__static_renaming("__doSyslogd_1396", "doSyslogd"); -__static_renaming("__main_1401", "main"); +__static_renaming("__doSyslogd_1395", "doSyslogd"); +__static_renaming("__main_1400", "main"); __static_condition_renaming("__static_condition_default_53", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); __static_condition_renaming("__static_condition_default_76", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); @@ -938,38 +937,38 @@ __static_condition_renaming("__static_condition_default_1099", "!(defined __need __static_condition_renaming("__static_condition_default_1100", "(defined __need___FILE)"); __static_condition_renaming("__static_condition_default_1112", "!(defined __need___FILE) && !(defined __STRICT_ANSI__)"); __static_condition_renaming("__static_condition_default_1113", "(defined __need___FILE) && !(defined __STRICT_ANSI__)"); -__static_condition_renaming("__static_condition_default_1319", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1320", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1325", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1326", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1331", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1332", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1342", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1343", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1348", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1349", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1368", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1369", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1372", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1377", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1378", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1384", "!(defined _FORTIFY_SOURCE) && !(defined CONFIG_FEATURE_REMOTE_LOG) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined CONFIG_FEATURE_REMOTE_LOG) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined CONFIG_FEATURE_REMOTE_LOG) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined CONFIG_FEATURE_REMOTE_LOG)"); -__static_condition_renaming("__static_condition_default_1385", "!(defined _FORTIFY_SOURCE) && (defined CONFIG_FEATURE_REMOTE_LOG) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined CONFIG_FEATURE_REMOTE_LOG) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined CONFIG_FEATURE_REMOTE_LOG) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined CONFIG_FEATURE_REMOTE_LOG)"); -__static_condition_renaming("__static_condition_default_1386", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined CONFIG_FEATURE_REMOTE_LOG) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined CONFIG_FEATURE_REMOTE_LOG) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined CONFIG_FEATURE_REMOTE_LOG) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined CONFIG_FEATURE_REMOTE_LOG)"); -__static_condition_renaming("__static_condition_default_1387", "(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined CONFIG_FEATURE_REMOTE_LOG) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined CONFIG_FEATURE_REMOTE_LOG) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined CONFIG_FEATURE_REMOTE_LOG) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined CONFIG_FEATURE_REMOTE_LOG)"); -__static_condition_renaming("__static_condition_default_1388", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined CONFIG_FEATURE_REMOTE_LOG) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined CONFIG_FEATURE_REMOTE_LOG) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined CONFIG_FEATURE_REMOTE_LOG) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined CONFIG_FEATURE_REMOTE_LOG)"); -__static_condition_renaming("__static_condition_default_1389", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined CONFIG_FEATURE_REMOTE_LOG) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined CONFIG_FEATURE_REMOTE_LOG) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined CONFIG_FEATURE_REMOTE_LOG) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined CONFIG_FEATURE_REMOTE_LOG)"); -__static_condition_renaming("__static_condition_default_1390", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined CONFIG_FEATURE_REMOTE_LOG) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined CONFIG_FEATURE_REMOTE_LOG) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined CONFIG_FEATURE_REMOTE_LOG) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined CONFIG_FEATURE_REMOTE_LOG)"); -__static_condition_renaming("__static_condition_default_1391", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined CONFIG_FEATURE_REMOTE_LOG) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined CONFIG_FEATURE_REMOTE_LOG) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined CONFIG_FEATURE_REMOTE_LOG) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined CONFIG_FEATURE_REMOTE_LOG)"); -__static_condition_renaming("__static_condition_default_1392", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined CONFIG_FEATURE_REMOTE_LOG)"); -__static_condition_renaming("__static_condition_default_1393", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined CONFIG_FEATURE_REMOTE_LOG)"); -__static_condition_renaming("__static_condition_default_1394", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined CONFIG_FEATURE_REMOTE_LOG)"); -__static_condition_renaming("__static_condition_default_1395", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined CONFIG_FEATURE_REMOTE_LOG)"); -__static_condition_renaming("__static_condition_default_1397", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1398", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1402", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); - -if (__static_condition_default_1402) { +__static_condition_renaming("__static_condition_default_1318", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1319", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1324", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1325", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1330", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1331", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1341", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1342", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1347", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1348", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1367", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1368", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1371", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1376", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1377", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1383", "!(defined _FORTIFY_SOURCE) && !(defined CONFIG_FEATURE_REMOTE_LOG) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined CONFIG_FEATURE_REMOTE_LOG) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined CONFIG_FEATURE_REMOTE_LOG) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined CONFIG_FEATURE_REMOTE_LOG)"); +__static_condition_renaming("__static_condition_default_1384", "!(defined _FORTIFY_SOURCE) && (defined CONFIG_FEATURE_REMOTE_LOG) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined CONFIG_FEATURE_REMOTE_LOG) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined CONFIG_FEATURE_REMOTE_LOG) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined CONFIG_FEATURE_REMOTE_LOG)"); +__static_condition_renaming("__static_condition_default_1385", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined CONFIG_FEATURE_REMOTE_LOG) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined CONFIG_FEATURE_REMOTE_LOG) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined CONFIG_FEATURE_REMOTE_LOG) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined CONFIG_FEATURE_REMOTE_LOG)"); +__static_condition_renaming("__static_condition_default_1386", "(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined CONFIG_FEATURE_REMOTE_LOG) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined CONFIG_FEATURE_REMOTE_LOG) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined CONFIG_FEATURE_REMOTE_LOG) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined CONFIG_FEATURE_REMOTE_LOG)"); +__static_condition_renaming("__static_condition_default_1387", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined CONFIG_FEATURE_REMOTE_LOG) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined CONFIG_FEATURE_REMOTE_LOG) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined CONFIG_FEATURE_REMOTE_LOG) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined CONFIG_FEATURE_REMOTE_LOG)"); +__static_condition_renaming("__static_condition_default_1388", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined CONFIG_FEATURE_REMOTE_LOG) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined CONFIG_FEATURE_REMOTE_LOG) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined CONFIG_FEATURE_REMOTE_LOG) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined CONFIG_FEATURE_REMOTE_LOG)"); +__static_condition_renaming("__static_condition_default_1389", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined CONFIG_FEATURE_REMOTE_LOG) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined CONFIG_FEATURE_REMOTE_LOG) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined CONFIG_FEATURE_REMOTE_LOG) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined CONFIG_FEATURE_REMOTE_LOG)"); +__static_condition_renaming("__static_condition_default_1390", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined CONFIG_FEATURE_REMOTE_LOG) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined CONFIG_FEATURE_REMOTE_LOG) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined CONFIG_FEATURE_REMOTE_LOG) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined CONFIG_FEATURE_REMOTE_LOG)"); +__static_condition_renaming("__static_condition_default_1391", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined CONFIG_FEATURE_REMOTE_LOG)"); +__static_condition_renaming("__static_condition_default_1392", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined CONFIG_FEATURE_REMOTE_LOG)"); +__static_condition_renaming("__static_condition_default_1393", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined CONFIG_FEATURE_REMOTE_LOG)"); +__static_condition_renaming("__static_condition_default_1394", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined CONFIG_FEATURE_REMOTE_LOG)"); +__static_condition_renaming("__static_condition_default_1396", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1397", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1401", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) || (defined __need___FILE) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO)"); + +if (__static_condition_default_1401) { __static_parse_error("Unable to parse"); } }; @@ -1527,52 +1526,51 @@ extern char * ((__strdup_1191) (const char * (____s_1190)));// L171:L172 extern char * ((__strndup_1195) (const char * (____string_1192), __size_t_1 ____n_1193));// L179:L180 extern char * ((__strndup_1196) (const char * (____string_1192), __size_t_1091 ____n_1194));// L179:L180 extern char * ((__strchr_1199) (const char * (____s_1197), int ____c_1198));// L231:L232 -extern char * ((__strchr_1200) (const char * (____s_1197), int ____c_1198));// L231:L232 -extern char * ((__strrchr_1203) (const char * (____s_1201), int ____c_1202));// L258:L259 -extern __size_t_1 (__strcspn_1206) (const char * (____s_1204), const char * (____reject_1205));// L280:L281 -extern __size_t_1091 (__strcspn_1207) (const char * (____s_1204), const char * (____reject_1205));// L280:L281 -extern __size_t_1 (__strspn_1210) (const char * (____s_1208), const char * (____accept_1209));// L284:L285 -extern __size_t_1091 (__strspn_1211) (const char * (____s_1208), const char * (____accept_1209));// L284:L285 -extern char * ((__strpbrk_1214) (const char * (____s_1212), const char * (____accept_1213)));// L310:L311 -extern char * ((__strstr_1217) (const char * (____haystack_1215), const char * (____needle_1216)));// L337:L338 -extern char * ((__strtok_1220) (char * __restrict ____s_1218, const char * __restrict ____delim_1219));// L343:L344 -extern char * ((____strtok_r_1224) (char * __restrict ____s_1221, const char * __restrict ____delim_1222, char * (* __restrict ____save_ptr_1223)));// L349:L352 -extern char * ((__strtok_r_1228) (char * __restrict ____s_1225, const char * __restrict ____delim_1226, char * (* __restrict ____save_ptr_1227)));// L354:L356 -extern __size_t_1 (__strlen_1230) (const char * (____s_1229));// L394:L395 -extern __size_t_1091 (__strlen_1231) (const char * (____s_1229));// L394:L395 -extern __size_t_1 (__strlen_1232) (const char * (____s_1229));// L394:L395 -extern __size_t_1091 (__strlen_1233) (const char * (____s_1229));// L394:L395 -extern __size_t_1 (__strnlen_1237) (const char * (____string_1234), __size_t_1 ____maxlen_1235);// L401:L402 -extern __size_t_1091 (__strnlen_1238) (const char * (____string_1234), __size_t_1091 ____maxlen_1236);// L401:L402 -extern char * ((__strerror_1240) (int ____errnum_1239));// L408 -extern char * ((__strerror_1241) (int ____errnum_1239));// L408 -extern int (__strerror_r_1246) (int ____errnum_1242, char * (____buf_1243), __size_t_1 ____buflen_1244);// L422:L424 -extern int (__strerror_r_1247) (int ____errnum_1242, char * (____buf_1243), __size_t_1091 ____buflen_1245);// L422:L424 -extern char * ((__strerror_l_1250) (int ____errnum_1248, ____locale_t_1177 ____l_1249));// L440 -extern void (____bzero_1254) (void * (____s_1251), __size_t_1 ____n_1252);// L446 -extern void (____bzero_1255) (void * (____s_1251), __size_t_1091 ____n_1253);// L446 -extern void (____bzero_1256) (void * (____s_1251), __size_t_1 ____n_1252);// L446 -extern void (____bzero_1257) (void * (____s_1251), __size_t_1091 ____n_1253);// L446 -extern void (__bcopy_1262) (const void * (____src_1258), void * (____dest_1259), __size_t_1 ____n_1260);// L450:L451 -extern void (__bcopy_1263) (const void * (____src_1258), void * (____dest_1259), __size_t_1091 ____n_1261);// L450:L451 -extern void (__bzero_1267) (void * (____s_1264), __size_t_1 ____n_1265);// L454 -extern void (__bzero_1268) (void * (____s_1264), __size_t_1091 ____n_1266);// L454 -extern int (__bcmp_1273) (const void * (____s1_1269), const void * (____s2_1270), __size_t_1 ____n_1271);// L457:L458 -extern int (__bcmp_1274) (const void * (____s1_1269), const void * (____s2_1270), __size_t_1091 ____n_1272);// L457:L458 -extern char * ((__index_1277) (const char * (____s_1275), int ____c_1276));// L484:L485 -extern char * ((__rindex_1280) (const char * (____s_1278), int ____c_1279));// L512:L513 -extern int (__ffs_1282) (int ____i_1281);// L518 -extern int (__strcasecmp_1285) (const char * (____s1_1283), const char * (____s2_1284));// L529:L530 -extern int (__strncasecmp_1290) (const char * (____s1_1286), const char * (____s2_1287), __size_t_1 ____n_1288);// L533:L534 -extern int (__strncasecmp_1291) (const char * (____s1_1286), const char * (____s2_1287), __size_t_1091 ____n_1289);// L533:L534 -extern char * ((__strsep_1294) (char * (* __restrict ____stringp_1292), const char * __restrict ____delim_1293));// L552:L554 -extern char * ((__strsignal_1296) (int ____sig_1295));// L559 -extern char * ((____stpcpy_1299) (char * __restrict ____dest_1297, const char * __restrict ____src_1298));// L562:L563 -extern char * ((__stpcpy_1302) (char * __restrict ____dest_1300, const char * __restrict ____src_1301));// L564:L565 -extern char * ((____stpncpy_1307) (char * __restrict ____dest_1303, const char * __restrict ____src_1304, __size_t_1 ____n_1305));// L569:L571 -extern char * ((____stpncpy_1308) (char * __restrict ____dest_1303, const char * __restrict ____src_1304, __size_t_1091 ____n_1306));// L569:L571 -extern char * ((__stpncpy_1313) (char * __restrict ____dest_1309, const char * __restrict ____src_1310, __size_t_1 ____n_1311));// L572:L574 -extern char * ((__stpncpy_1314) (char * __restrict ____dest_1309, const char * __restrict ____src_1310, __size_t_1091 ____n_1312));// L572:L574 +extern char * ((__strrchr_1202) (const char * (____s_1200), int ____c_1201));// L258:L259 +extern __size_t_1 (__strcspn_1205) (const char * (____s_1203), const char * (____reject_1204));// L280:L281 +extern __size_t_1091 (__strcspn_1206) (const char * (____s_1203), const char * (____reject_1204));// L280:L281 +extern __size_t_1 (__strspn_1209) (const char * (____s_1207), const char * (____accept_1208));// L284:L285 +extern __size_t_1091 (__strspn_1210) (const char * (____s_1207), const char * (____accept_1208));// L284:L285 +extern char * ((__strpbrk_1213) (const char * (____s_1211), const char * (____accept_1212)));// L310:L311 +extern char * ((__strstr_1216) (const char * (____haystack_1214), const char * (____needle_1215)));// L337:L338 +extern char * ((__strtok_1219) (char * __restrict ____s_1217, const char * __restrict ____delim_1218));// L343:L344 +extern char * ((____strtok_r_1223) (char * __restrict ____s_1220, const char * __restrict ____delim_1221, char * (* __restrict ____save_ptr_1222)));// L349:L352 +extern char * ((__strtok_r_1227) (char * __restrict ____s_1224, const char * __restrict ____delim_1225, char * (* __restrict ____save_ptr_1226)));// L354:L356 +extern __size_t_1 (__strlen_1229) (const char * (____s_1228));// L394:L395 +extern __size_t_1091 (__strlen_1230) (const char * (____s_1228));// L394:L395 +extern __size_t_1 (__strlen_1231) (const char * (____s_1228));// L394:L395 +extern __size_t_1091 (__strlen_1232) (const char * (____s_1228));// L394:L395 +extern __size_t_1 (__strnlen_1236) (const char * (____string_1233), __size_t_1 ____maxlen_1234);// L401:L402 +extern __size_t_1091 (__strnlen_1237) (const char * (____string_1233), __size_t_1091 ____maxlen_1235);// L401:L402 +extern char * ((__strerror_1239) (int ____errnum_1238));// L408 +extern char * ((__strerror_1240) (int ____errnum_1238));// L408 +extern int (__strerror_r_1245) (int ____errnum_1241, char * (____buf_1242), __size_t_1 ____buflen_1243);// L422:L424 +extern int (__strerror_r_1246) (int ____errnum_1241, char * (____buf_1242), __size_t_1091 ____buflen_1244);// L422:L424 +extern char * ((__strerror_l_1249) (int ____errnum_1247, ____locale_t_1177 ____l_1248));// L440 +extern void (____bzero_1253) (void * (____s_1250), __size_t_1 ____n_1251);// L446 +extern void (____bzero_1254) (void * (____s_1250), __size_t_1091 ____n_1252);// L446 +extern void (____bzero_1255) (void * (____s_1250), __size_t_1 ____n_1251);// L446 +extern void (____bzero_1256) (void * (____s_1250), __size_t_1091 ____n_1252);// L446 +extern void (__bcopy_1261) (const void * (____src_1257), void * (____dest_1258), __size_t_1 ____n_1259);// L450:L451 +extern void (__bcopy_1262) (const void * (____src_1257), void * (____dest_1258), __size_t_1091 ____n_1260);// L450:L451 +extern void (__bzero_1266) (void * (____s_1263), __size_t_1 ____n_1264);// L454 +extern void (__bzero_1267) (void * (____s_1263), __size_t_1091 ____n_1265);// L454 +extern int (__bcmp_1272) (const void * (____s1_1268), const void * (____s2_1269), __size_t_1 ____n_1270);// L457:L458 +extern int (__bcmp_1273) (const void * (____s1_1268), const void * (____s2_1269), __size_t_1091 ____n_1271);// L457:L458 +extern char * ((__index_1276) (const char * (____s_1274), int ____c_1275));// L484:L485 +extern char * ((__rindex_1279) (const char * (____s_1277), int ____c_1278));// L512:L513 +extern int (__ffs_1281) (int ____i_1280);// L518 +extern int (__strcasecmp_1284) (const char * (____s1_1282), const char * (____s2_1283));// L529:L530 +extern int (__strncasecmp_1289) (const char * (____s1_1285), const char * (____s2_1286), __size_t_1 ____n_1287);// L533:L534 +extern int (__strncasecmp_1290) (const char * (____s1_1285), const char * (____s2_1286), __size_t_1091 ____n_1288);// L533:L534 +extern char * ((__strsep_1293) (char * (* __restrict ____stringp_1291), const char * __restrict ____delim_1292));// L552:L554 +extern char * ((__strsignal_1295) (int ____sig_1294));// L559 +extern char * ((____stpcpy_1298) (char * __restrict ____dest_1296, const char * __restrict ____src_1297));// L562:L563 +extern char * ((__stpcpy_1301) (char * __restrict ____dest_1299, const char * __restrict ____src_1300));// L564:L565 +extern char * ((____stpncpy_1306) (char * __restrict ____dest_1302, const char * __restrict ____src_1303, __size_t_1 ____n_1304));// L569:L571 +extern char * ((____stpncpy_1307) (char * __restrict ____dest_1302, const char * __restrict ____src_1303, __size_t_1091 ____n_1305));// L569:L571 +extern char * ((__stpncpy_1312) (char * __restrict ____dest_1308, const char * __restrict ____src_1309, __size_t_1 ____n_1310));// L572:L574 +extern char * ((__stpncpy_1313) (char * __restrict ____dest_1308, const char * __restrict ____src_1309, __size_t_1091 ____n_1311));// L572:L574 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ @@ -1580,24 +1578,24 @@ extern char * ((__stpncpy_1314) (char * __restrict ____dest_1309, const char /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern char * ((____stpncpy_chk_1356) (char * (____dest_1350), const char * (____src_1351), __size_t_1 ____n_1352, __size_t_1 ____destlen_1354));// L130:L131 -extern char * ((____stpncpy_chk_1357) (char * (____dest_1350), const char * (____src_1351), __size_t_1091 ____n_1353, __size_t_1091 ____destlen_1355));// L130:L131 -extern char * ((____stpncpy_alias_1362) (char * (____dest_1358), const char * (____src_1359), __size_t_1 ____n_1360));// L132:L133 -extern char * ((____stpncpy_alias_1363) (char * (____dest_1358), const char * (____src_1359), __size_t_1091 ____n_1361));// L132:L133 +extern char * ((____stpncpy_chk_1355) (char * (____dest_1349), const char * (____src_1350), __size_t_1 ____n_1351, __size_t_1 ____destlen_1353));// L130:L131 +extern char * ((____stpncpy_chk_1356) (char * (____dest_1349), const char * (____src_1350), __size_t_1091 ____n_1352, __size_t_1091 ____destlen_1354));// L130:L131 +extern char * ((____stpncpy_alias_1361) (char * (____dest_1357), const char * (____src_1358), __size_t_1 ____n_1359));// L132:L133 +extern char * ((____stpncpy_alias_1362) (char * (____dest_1357), const char * (____src_1358), __size_t_1091 ____n_1360));// L132:L133 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -void (__logMessage_1382) (char * (__msg_1379)) { +void (__logMessage_1381) (char * (__msg_1378)) { { -if (__static_condition_default_1384) { +if (__static_condition_default_1383) { { { -static char __line_1380[512];// L6 +static char __line_1379[512];// L6 } } @@ -1605,18 +1603,18 @@ static char __line_1380[512];// L6 } -if (__static_condition_default_1385) { +if (__static_condition_default_1384) { { { -static char __line_1380[512];// L6 +static char __line_1379[512];// L6 -int __remotefd_1381= 1;// L9 +int __remotefd_1380= 1;// L9 -if ( __remotefd_1381 )// L11 +if ( __remotefd_1380 )// L11 { { @@ -1624,22 +1622,22 @@ if ( __remotefd_1381 )// L11 +if (__static_condition_default_1385) { + __memset_1118 (& __line_1379 ,0,sizeof(( __line_1379 ))) ; // L12 +} if (__static_condition_default_1386) { - __memset_1118 (& __line_1380 ,0,sizeof(( __line_1380 ))) ; // L12 + __memset_1119 (& __line_1379 ,0,sizeof(( __line_1379 ))) ; // L12 } if (__static_condition_default_1387) { - __memset_1119 (& __line_1380 ,0,sizeof(( __line_1380 ))) ; // L12 + __memset_1120 (& __line_1379 ,0,sizeof(( __line_1379 ))) ; // L12 } if (__static_condition_default_1388) { - __memset_1120 (& __line_1380 ,0,sizeof(( __line_1380 ))) ; // L12 + __memset_1121 (& __line_1379 ,0,sizeof(( __line_1379 ))) ; // L12 } if (__static_condition_default_1389) { - __memset_1121 (& __line_1380 ,0,sizeof(( __line_1380 ))) ; // L12 + __printf_421 ( __line_1379 ,sizeof(( __line_1379 )),"<%s>", __msg_1378 ) ; // L13 } if (__static_condition_default_1390) { - __printf_421 ( __line_1380 ,sizeof(( __line_1380 )),"<%s>", __msg_1379 ) ; // L13 -} -if (__static_condition_default_1391) { __static_type_error("type error") ; // L13 } } @@ -1652,17 +1650,17 @@ __static_type_error("type error") ; // L13 } }} -void (__logMessage_1383) (char * (__msg_1379)) { +void (__logMessage_1382) (char * (__msg_1378)) { { -if (__static_condition_default_1392) { +if (__static_condition_default_1391) { { { -static char __line_1380[512];// L6 +static char __line_1379[512];// L6 } } @@ -1670,18 +1668,18 @@ static char __line_1380[512];// L6 } -if (__static_condition_default_1393) { +if (__static_condition_default_1392) { { { -static char __line_1380[512];// L6 +static char __line_1379[512];// L6 -int __remotefd_1381= 1;// L9 +int __remotefd_1380= 1;// L9 -if ( __remotefd_1381 )// L11 +if ( __remotefd_1380 )// L11 { { @@ -1690,10 +1688,10 @@ if ( __remotefd_1381 )// L11 __static_type_error("type error") ; // L12 -if (__static_condition_default_1394) { - __printf_421 ( __line_1380 ,sizeof(( __line_1380 )),"<%s>", __msg_1379 ) ; // L13 +if (__static_condition_default_1393) { + __printf_421 ( __line_1379 ,sizeof(( __line_1379 )),"<%s>", __msg_1378 ) ; // L13 } -if (__static_condition_default_1395) { +if (__static_condition_default_1394) { __static_type_error("type error") ; // L13 } } @@ -1706,32 +1704,32 @@ __static_type_error("type error") ; // L13 } }} -void (__doSyslogd_1396) (void ) { +void (__doSyslogd_1395) (void ) { { { +if (__static_condition_default_1396) { + __logMessage_1381 ("syslogd started") ; // L20 +} if (__static_condition_default_1397) { __logMessage_1382 ("syslogd started") ; // L20 } -if (__static_condition_default_1398) { - __logMessage_1383 ("syslogd started") ; // L20 -} } } } -int (__main_1401) (int __argc_1399, char * (* (__argv_1400))) { +int (__main_1400) (int __argc_1398, char * (* (__argv_1399))) { { { - __doSyslogd_1396 ( ) ; // L25 + __doSyslogd_1395 ( ) ; // L25 return 0 ;// L26 } } diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/192c35f6eb2.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/192c35f6eb2.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/192c35f6eb2.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/192c35f6eb2.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/192c35f6eb2.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/192c35f6eb2.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.c index 2f45a882..15c994e1 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.c @@ -7,218 +7,382 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_577; +extern const bool __static_condition_default_455; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_2321; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_1753; +extern const bool __static_condition_default_512; +extern const bool __static_condition_default_204; +extern const bool __static_condition_default_2411; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_791; +extern const bool __static_condition_default_1381; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_1405; +extern const bool __static_condition_default_2342; +extern const bool __static_condition_default_2329; +extern const bool __static_condition_default_2405; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_550; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_1357; +extern const bool __static_condition_default_76; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_1944; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_1315; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_1361; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_388; +extern const bool __static_condition_default_2381; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_1556; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_753; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_1015; extern const bool __static_condition_default_248; -extern const bool __static_condition_default_726; -extern const bool __static_condition_default_343; -extern const bool __static_condition_default_518; +extern const bool __static_condition_default_894; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_2322; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_677; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_721; +extern const bool __static_condition_default_2396; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_559; +extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_789; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_2389; +extern const bool __static_condition_default_1774; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_1789; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_1353; +extern const bool __static_condition_default_2395; +extern const bool __static_condition_default_1515; +extern const bool __static_condition_default_1432; +extern const bool __static_condition_default_1776; +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_1152; +extern const bool __static_condition_default_963; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_670; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_1531; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_1349; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_419; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_2400; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_1785; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_2314; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_2046; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_2349; +extern const bool __static_condition_default_544; +extern const bool __static_condition_default_1750; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_1754; +extern const bool __static_condition_default_2312; extern const bool __static_condition_default_235; -extern const bool __static_condition_default_300; -extern const bool __static_condition_default_1104; +extern const bool __static_condition_default_53; extern const bool __static_condition_default_244; -extern const bool __static_condition_default_434; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_1222; -extern const bool __static_condition_default_890; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_758; -extern const bool __static_condition_default_1212; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_1262; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_531; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_741; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_551; -extern const bool __static_condition_default_923; -extern const bool __static_condition_default_748; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_319; -extern const bool __static_condition_default_1248; -extern const bool __static_condition_default_315; -extern const bool __static_condition_default_632; -extern const bool __static_condition_default_707; -extern const bool __static_condition_default_415; -extern const bool __static_condition_default_1102; -extern const bool __static_condition_default_1213; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_339; -extern const bool __static_condition_default_439; -extern const bool __static_condition_default_1257; +extern const bool __static_condition_default_1424; +extern const bool __static_condition_default_1385; extern const bool __static_condition_default_280; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_1101; -extern const bool __static_condition_default_348; -extern const bool __static_condition_default_1264; -extern const bool __static_condition_default_681; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_1206; -extern const bool __static_condition_default_440; -extern const bool __static_condition_default_1265; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_2328; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_2330; +extern const bool __static_condition_default_2343; +extern const bool __static_condition_default_2350; +extern const bool __static_condition_default_1475; +extern const bool __static_condition_default_1791; +extern const bool __static_condition_default_521; +extern const bool __static_condition_default_1459; +extern const bool __static_condition_default_2376; +extern const bool __static_condition_default_1007; extern const bool __static_condition_default_170; -extern const bool __static_condition_default_396; -extern const bool __static_condition_default_1267; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_492; -extern const bool __static_condition_default_498; -extern const bool __static_condition_default_583; -extern const bool __static_condition_default_605; -extern const bool __static_condition_default_911; -extern const bool __static_condition_default_1277; -extern const bool __static_condition_default_285; -extern const bool __static_condition_default_588; -extern const bool __static_condition_default_1272; -extern const bool __static_condition_default_1273; -extern const bool __static_condition_default_1271; -extern const bool __static_condition_default_912; -extern const bool __static_condition_default_436; -extern const bool __static_condition_default_76; -extern const bool __static_condition_default_1278; -extern const bool __static_condition_default_217; -extern const bool __static_condition_default_427; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_1269; -extern const bool __static_condition_default_271; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_333; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_1572; +extern const bool __static_condition_default_2397; extern const bool __static_condition_default_201; -extern const bool __static_condition_default_589; -extern const bool __static_condition_default_302; -extern const bool __static_condition_default_304; -extern const bool __static_condition_default_298; -extern const bool __static_condition_default_675; -extern const bool __static_condition_default_593; -extern const bool __static_condition_default_921; -extern const bool __static_condition_default_329; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_749; -extern const bool __static_condition_default_603; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_952; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_1251; -extern const bool __static_condition_default_713; -extern const bool __static_condition_default_733; -extern const bool __static_condition_default_453; -extern const bool __static_condition_default_374; -extern const bool __static_condition_default_673; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_484; -extern const bool __static_condition_default_503; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_1808; +extern const bool __static_condition_default_1164; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_568; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_1568; +extern const bool __static_condition_default_1377; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_2387; +extern const bool __static_condition_default_2404; +extern const bool __static_condition_default_432; extern const bool __static_condition_default_355; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_927; -extern const bool __static_condition_default_1270; -extern const bool __static_condition_default_465; -extern const bool __static_condition_default_1266; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_674; -extern const bool __static_condition_default_925; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_1516; extern const bool __static_condition_default_84; -extern const bool __static_condition_default_385; -extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_1227; -extern const bool __static_condition_default_886; -extern const bool __static_condition_default_697; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_533; -extern const bool __static_condition_default_1268; -extern const bool __static_condition_default_321; -extern const bool __static_condition_default_1263; -extern const bool __static_condition_default_1103; +extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_583; extern const bool __static_condition_default_625; -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_1228; -extern const bool __static_condition_default_690; -extern const bool __static_condition_default_360; -extern const bool __static_condition_default_599; -extern const bool __static_condition_default_534; -extern const bool __static_condition_default_740; -extern const bool __static_condition_default_461; -extern const bool __static_condition_default_696; -extern const bool __static_condition_default_466; -extern const bool __static_condition_default_525; -extern const bool __static_condition_default_910; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_460; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_53; -extern const bool __static_condition_default_418; -extern const bool __static_condition_default_445; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_462; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_198; +extern const bool __static_condition_default_2063; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_747; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_523; extern const bool __static_condition_default_187; -extern const bool __static_condition_default_467; -extern const bool __static_condition_default_476; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_779; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_2394; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_613; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_1345; extern const bool __static_condition_default_541; -extern const bool __static_condition_default_540; -extern const bool __static_condition_default_587; -extern const bool __static_condition_default_513; -extern const bool __static_condition_default_423; -extern const bool __static_condition_default_1247; -extern const bool __static_condition_default_950; -extern const bool __static_condition_default_311; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_564; -extern const bool __static_condition_default_1256; -extern const bool __static_condition_default_611; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_468; -extern const bool __static_condition_default_889; -extern const bool __static_condition_default_1207; -extern const bool __static_condition_default_563; -extern const bool __static_condition_default_259; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_1560; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_2399; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_1485; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_1773; +extern const bool __static_condition_default_979; extern const bool __static_condition_default_331; -extern const bool __static_condition_default_414; -extern const bool __static_condition_default_720; -extern const bool __static_condition_default_1279; -extern const bool __static_condition_default_565; -extern const bool __static_condition_default_725; -extern const bool __static_condition_default_1218; -extern const bool __static_condition_default_401; -extern const bool __static_condition_default_557; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_1749; +extern const bool __static_condition_default_2410; +extern const bool __static_condition_default_549; +extern const bool __static_condition_default_290; +extern const bool __static_condition_default_2378; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_1564; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_929; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_702; +extern const bool __static_condition_default_590; extern const bool __static_condition_default_438; -extern const bool __static_condition_default_584; -extern const bool __static_condition_default_885; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_204; -extern const bool __static_condition_default_532; -extern const bool __static_condition_default_447; -extern const bool __static_condition_default_909; -extern const bool __static_condition_default_685; -extern const bool __static_condition_default_946; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_474; -extern const bool __static_condition_default_379; -extern const bool __static_condition_default_435; -extern const bool __static_condition_default_656; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_842; +extern const bool __static_condition_default_2351; +extern const bool __static_condition_default_1409; +extern const bool __static_condition_default_1816; +extern const bool __static_condition_default_2401; +extern const bool __static_condition_default_536; +extern const bool __static_condition_default_761; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_1369; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_769; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_1373; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_1810; +extern const bool __static_condition_default_365; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_636; +extern const bool __static_condition_default_1532; +extern const bool __static_condition_default_1552; +extern const bool __static_condition_default_2398; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_2044; +extern const bool __static_condition_default_2045; +extern const bool __static_condition_default_1428; +extern const bool __static_condition_default_539; extern const bool __static_condition_default_193; -extern const bool __static_condition_default_421; -extern const bool __static_condition_default_291; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_698; -extern const bool __static_condition_default_372; -extern const bool __static_condition_default_483; -extern const bool __static_condition_default_576; -extern const bool __static_condition_default_705; -extern const bool __static_condition_default_477; -extern const bool __static_condition_default_575; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_1388; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_380; +extern const bool __static_condition_default_1576; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_1395; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_846; +extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_891; +extern const bool __static_condition_default_1398; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_907; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_1489; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_367; +extern const bool __static_condition_default_2047; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_2064; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_1402; +extern const bool __static_condition_default_382; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_875; +extern const bool __static_condition_default_1453; +extern const bool __static_condition_default_759; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_2320; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_1814; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_834; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_1365; +extern const bool __static_condition_default_1775; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_955; +extern const bool __static_condition_default_2043; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_311; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_2388; +extern const bool __static_condition_default_1436; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_386; +extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_1391; +extern const bool __static_condition_default_1416; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_1165; +extern const bool __static_condition_default_1341; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_2377; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_347; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_2402; +extern const bool __static_condition_default_2062; +extern const bool __static_condition_default_2409; +extern const bool __static_condition_default_2403; +extern const bool __static_condition_default_489; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_1159; +extern const bool __static_condition_default_619; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_1420; +extern const bool __static_condition_default_488; extern const bool __static_condition_default_553; -extern const bool __static_condition_default_1219; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_547; extern const bool __static_condition_default_337; -extern const bool __static_condition_default_403; -extern const bool __static_condition_default_488; -extern const bool __static_condition_default_463; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_1458; +extern const bool __static_condition_default_1787; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_2313; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_1498; +extern const bool __static_condition_default_473; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -329,261 +493,743 @@ __static_renaming("___IO_seekpos_272", "_IO_seekpos"); __static_renaming("___IO_seekpos_273", "_IO_seekpos"); __static_renaming("___IO_free_backup_area_276", "_IO_free_backup_area"); __static_renaming("___IO_free_backup_area_277", "_IO_free_backup_area"); -__static_renaming("__fpos_t_279", "fpos_t"); -__static_renaming("__fpos_t_281", "fpos_t"); -__static_renaming("__stdin_283", "stdin"); -__static_renaming("__stdin_284", "stdin"); -__static_renaming("__stdout_286", "stdout"); -__static_renaming("__stdout_287", "stdout"); -__static_renaming("__stderr_289", "stderr"); -__static_renaming("__stderr_290", "stderr"); -__static_renaming("__remove_293", "remove"); -__static_renaming("__rename_296", "rename"); -__static_renaming("__tmpfile_297", "tmpfile"); -__static_renaming("__tmpfile_299", "tmpfile"); -__static_renaming("__tmpfile_301", "tmpfile"); -__static_renaming("__tmpfile_303", "tmpfile"); -__static_renaming("__tmpnam_306", "tmpnam"); -__static_renaming("__tmpnam_307", "tmpnam"); -__static_renaming("__fclose_310", "fclose"); -__static_renaming("__fflush_314", "fflush"); -__static_renaming("__fopen_318", "fopen"); -__static_renaming("__fopen_320", "fopen"); -__static_renaming("__fopen_328", "fopen"); -__static_renaming("__fopen_330", "fopen"); -__static_renaming("__freopen_336", "freopen"); -__static_renaming("__freopen_338", "freopen"); -__static_renaming("__freopen_340", "freopen"); -__static_renaming("__freopen_342", "freopen"); -__static_renaming("__setbuf_347", "setbuf"); -__static_renaming("__setvbuf_354", "setvbuf"); -__static_renaming("__fprintf_359", "fprintf"); -__static_renaming("__printf_362", "printf"); -__static_renaming("__sprintf_365", "sprintf"); -__static_renaming("__vfprintf_371", "vfprintf"); -__static_renaming("__vprintf_378", "vprintf"); -__static_renaming("__vsprintf_384", "vsprintf"); -__static_renaming("__snprintf_389", "snprintf"); -__static_renaming("__vsnprintf_395", "vsnprintf"); -__static_renaming("__fscanf_400", "fscanf"); -__static_renaming("__fscanf_402", "fscanf"); -__static_renaming("__scanf_405", "scanf"); -__static_renaming("__scanf_406", "scanf"); -__static_renaming("__sscanf_409", "sscanf"); -__static_renaming("__vfscanf_433", "vfscanf"); -__static_renaming("__vfscanf_437", "vfscanf"); -__static_renaming("__vscanf_444", "vscanf"); -__static_renaming("__vscanf_446", "vscanf"); -__static_renaming("__vsscanf_452", "vsscanf"); -__static_renaming("__fgetc_487", "fgetc"); -__static_renaming("__getc_491", "getc"); -__static_renaming("__getchar_493", "getchar"); -__static_renaming("__fputc_497", "fputc"); -__static_renaming("__putc_502", "putc"); -__static_renaming("__putchar_505", "putchar"); -__static_renaming("__fgets_510", "fgets"); -__static_renaming("__fgets_512", "fgets"); -__static_renaming("__fputs_517", "fputs"); -__static_renaming("__puts_520", "puts"); -__static_renaming("__ungetc_524", "ungetc"); -__static_renaming("__fseek_546", "fseek"); -__static_renaming("__ftell_550", "ftell"); -__static_renaming("__ftell_552", "ftell"); -__static_renaming("__rewind_556", "rewind"); -__static_renaming("__fgetpos_562", "fgetpos"); -__static_renaming("__fgetpos_574", "fgetpos"); -__static_renaming("__fsetpos_582", "fsetpos"); -__static_renaming("__fsetpos_586", "fsetpos"); -__static_renaming("__clearerr_592", "clearerr"); -__static_renaming("__feof_596", "feof"); -__static_renaming("__feof_598", "feof"); -__static_renaming("__ferror_602", "ferror"); -__static_renaming("__ferror_604", "ferror"); -__static_renaming("__perror_607", "perror"); -__static_renaming("____sprintf_chk_617", "__sprintf_chk"); -__static_renaming("____vsprintf_chk_624", "__vsprintf_chk"); -__static_renaming("____snprintf_chk_638", "__snprintf_chk"); -__static_renaming("____vsnprintf_chk_646", "__vsnprintf_chk"); -__static_renaming("____fprintf_chk_661", "__fprintf_chk"); -__static_renaming("____printf_chk_665", "__printf_chk"); -__static_renaming("____vfprintf_chk_672", "__vfprintf_chk"); -__static_renaming("____vprintf_chk_680", "__vprintf_chk"); -__static_renaming("____fgets_chk_704", "__fgets_chk"); -__static_renaming("____fgets_chk_706", "__fgets_chk"); -__static_renaming("____fgets_alias_712", "__fgets_alias"); -__static_renaming("____fgets_chk_warn_719", "__fgets_chk_warn"); -__static_renaming("__ptrdiff_t_755", "ptrdiff_t"); -__static_renaming("__size_t_756", "size_t"); -__static_renaming("__wchar_t_759", "wchar_t"); -__static_renaming("__wchar_t_760", "wchar_t"); -__static_renaming("__div_t_765", "div_t"); -__static_renaming("__ldiv_t_770", "ldiv_t"); -__static_renaming("__lldiv_t_775", "lldiv_t"); -__static_renaming("____ctype_get_mb_cur_max_776", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_777", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_778", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_779", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_780", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_781", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_782", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_783", "__ctype_get_mb_cur_max"); -__static_renaming("__atof_785", "atof"); -__static_renaming("__atof_786", "atof"); -__static_renaming("__atoi_788", "atoi"); -__static_renaming("__atoi_789", "atoi"); -__static_renaming("__atol_791", "atol"); -__static_renaming("__atol_792", "atol"); -__static_renaming("__atoll_794", "atoll"); -__static_renaming("__atoll_795", "atoll"); -__static_renaming("__strtod_798", "strtod"); -__static_renaming("__strtof_801", "strtof"); -__static_renaming("__strtold_804", "strtold"); -__static_renaming("__strtol_808", "strtol"); -__static_renaming("__strtoul_812", "strtoul"); -__static_renaming("__strtoll_816", "strtoll"); -__static_renaming("__strtoull_820", "strtoull"); -__static_renaming("__rand_824", "rand"); -__static_renaming("__rand_825", "rand"); -__static_renaming("__srand_827", "srand"); -__static_renaming("__malloc_830", "malloc"); -__static_renaming("__malloc_831", "malloc"); -__static_renaming("__malloc_832", "malloc"); -__static_renaming("__malloc_833", "malloc"); -__static_renaming("__calloc_838", "calloc"); -__static_renaming("__calloc_839", "calloc"); -__static_renaming("__calloc_840", "calloc"); -__static_renaming("__calloc_841", "calloc"); -__static_renaming("__realloc_845", "realloc"); -__static_renaming("__realloc_846", "realloc"); -__static_renaming("__realloc_847", "realloc"); -__static_renaming("__realloc_848", "realloc"); -__static_renaming("__free_850", "free"); -__static_renaming("__aligned_alloc_855", "aligned_alloc"); -__static_renaming("__aligned_alloc_856", "aligned_alloc"); -__static_renaming("__aligned_alloc_857", "aligned_alloc"); -__static_renaming("__aligned_alloc_858", "aligned_alloc"); -__static_renaming("__abort_859", "abort"); -__static_renaming("__atexit_861", "atexit"); -__static_renaming("__at_quick_exit_863", "at_quick_exit"); -__static_renaming("__exit_865", "exit"); -__static_renaming("__quick_exit_867", "quick_exit"); -__static_renaming("___Exit_869", "_Exit"); -__static_renaming("__getenv_871", "getenv"); -__static_renaming("__getenv_872", "getenv"); -__static_renaming("__system_874", "system"); -__static_renaming("__system_875", "system"); -__static_renaming("____compar_fn_t_876", "__compar_fn_t"); -__static_renaming("__bsearch_887", "bsearch"); -__static_renaming("__bsearch_888", "bsearch"); -__static_renaming("__bsearch_891", "bsearch"); -__static_renaming("__bsearch_892", "bsearch"); -__static_renaming("____l_901", "__l"); -__static_renaming("____l_902", "__l"); -__static_renaming("____u_903", "__u"); -__static_renaming("____u_904", "__u"); -__static_renaming("____idx_905", "__idx"); -__static_renaming("____idx_906", "__idx"); -__static_renaming("____p_907", "__p"); -__static_renaming("____comparison_908", "__comparison"); -__static_renaming("__qsort_920", "qsort"); -__static_renaming("__qsort_922", "qsort"); -__static_renaming("__qsort_924", "qsort"); -__static_renaming("__qsort_926", "qsort"); -__static_renaming("__abs_929", "abs"); -__static_renaming("__abs_930", "abs"); -__static_renaming("__labs_932", "labs"); -__static_renaming("__labs_933", "labs"); -__static_renaming("__llabs_935", "llabs"); -__static_renaming("__llabs_936", "llabs"); -__static_renaming("__div_939", "div"); -__static_renaming("__div_940", "div"); -__static_renaming("__ldiv_943", "ldiv"); -__static_renaming("__ldiv_945", "ldiv"); -__static_renaming("__lldiv_949", "lldiv"); -__static_renaming("__lldiv_951", "lldiv"); -__static_renaming("__mblen_956", "mblen"); -__static_renaming("__mblen_957", "mblen"); -__static_renaming("__mbtowc_963", "mbtowc"); -__static_renaming("__mbtowc_964", "mbtowc"); -__static_renaming("__mbtowc_965", "mbtowc"); -__static_renaming("__wctomb_969", "wctomb"); -__static_renaming("__wctomb_970", "wctomb"); -__static_renaming("__mbstowcs_976", "mbstowcs"); -__static_renaming("__mbstowcs_977", "mbstowcs"); -__static_renaming("__mbstowcs_978", "mbstowcs"); -__static_renaming("__wcstombs_984", "wcstombs"); -__static_renaming("__wcstombs_985", "wcstombs"); -__static_renaming("__wcstombs_986", "wcstombs"); -__static_renaming("____realpath_chk_992", "__realpath_chk"); -__static_renaming("____realpath_chk_993", "__realpath_chk"); -__static_renaming("____realpath_alias_996", "__realpath_alias"); -__static_renaming("____realpath_chk_warn_1001", "__realpath_chk_warn"); -__static_renaming("____realpath_chk_warn_1002", "__realpath_chk_warn"); -__static_renaming("____ptsname_r_chk_1012", "__ptsname_r_chk"); -__static_renaming("____ptsname_r_chk_1013", "__ptsname_r_chk"); -__static_renaming("____ptsname_r_alias_1018", "__ptsname_r_alias"); -__static_renaming("____ptsname_r_alias_1019", "__ptsname_r_alias"); -__static_renaming("____ptsname_r_chk_warn_1026", "__ptsname_r_chk_warn"); -__static_renaming("____ptsname_r_chk_warn_1027", "__ptsname_r_chk_warn"); -__static_renaming("____wctomb_chk_1038", "__wctomb_chk"); -__static_renaming("____wctomb_chk_1039", "__wctomb_chk"); -__static_renaming("____wctomb_alias_1042", "__wctomb_alias"); -__static_renaming("____mbstowcs_chk_1051", "__mbstowcs_chk"); -__static_renaming("____mbstowcs_chk_1052", "__mbstowcs_chk"); -__static_renaming("____mbstowcs_alias_1057", "__mbstowcs_alias"); -__static_renaming("____mbstowcs_alias_1058", "__mbstowcs_alias"); -__static_renaming("____mbstowcs_chk_warn_1065", "__mbstowcs_chk_warn"); -__static_renaming("____mbstowcs_chk_warn_1066", "__mbstowcs_chk_warn"); -__static_renaming("____wcstombs_chk_1077", "__wcstombs_chk"); -__static_renaming("____wcstombs_chk_1078", "__wcstombs_chk"); -__static_renaming("____wcstombs_alias_1083", "__wcstombs_alias"); -__static_renaming("____wcstombs_alias_1084", "__wcstombs_alias"); -__static_renaming("____wcstombs_chk_warn_1091", "__wcstombs_chk_warn"); -__static_renaming("____wcstombs_chk_warn_1092", "__wcstombs_chk_warn"); -__static_renaming("__memmove_1109", "memmove"); -__static_renaming("__memmove_1110", "memmove"); -__static_renaming("__memset_1115", "memset"); -__static_renaming("__memset_1116", "memset"); -__static_renaming("__memcmp_1121", "memcmp"); -__static_renaming("__memcmp_1122", "memcmp"); -__static_renaming("__memchr_1127", "memchr"); -__static_renaming("__memchr_1128", "memchr"); -__static_renaming("__strcpy_1131", "strcpy"); -__static_renaming("__strncpy_1136", "strncpy"); -__static_renaming("__strncpy_1137", "strncpy"); -__static_renaming("__strcat_1140", "strcat"); -__static_renaming("__strncat_1145", "strncat"); -__static_renaming("__strncat_1146", "strncat"); -__static_renaming("__strcmp_1149", "strcmp"); -__static_renaming("__strncmp_1154", "strncmp"); -__static_renaming("__strncmp_1155", "strncmp"); -__static_renaming("__strcoll_1158", "strcoll"); -__static_renaming("__strxfrm_1163", "strxfrm"); -__static_renaming("__strxfrm_1164", "strxfrm"); -__static_renaming("__strchr_1167", "strchr"); -__static_renaming("__strrchr_1170", "strrchr"); -__static_renaming("__strcspn_1173", "strcspn"); -__static_renaming("__strcspn_1174", "strcspn"); -__static_renaming("__strspn_1177", "strspn"); -__static_renaming("__strspn_1178", "strspn"); -__static_renaming("__strpbrk_1181", "strpbrk"); -__static_renaming("__strstr_1184", "strstr"); -__static_renaming("__strtok_1187", "strtok"); -__static_renaming("____strtok_r_1191", "__strtok_r"); -__static_renaming("__strlen_1193", "strlen"); -__static_renaming("__strlen_1194", "strlen"); -__static_renaming("__strerror_1196", "strerror"); -__static_renaming("____bzero_1200", "__bzero"); -__static_renaming("____bzero_1201", "__bzero"); -__static_renaming("____stpncpy_chk_1235", "__stpncpy_chk"); -__static_renaming("____stpncpy_chk_1236", "__stpncpy_chk"); -__static_renaming("____stpncpy_alias_1241", "__stpncpy_alias"); -__static_renaming("____stpncpy_alias_1242", "__stpncpy_alias"); -__static_renaming("__dt_1258", "dt"); -__static_renaming("__buf_1259", "buf"); -__static_renaming("__build_dep_1260", "build_dep"); -__static_renaming("__build_dep_1261", "build_dep"); -__static_renaming("__main_1276", "main"); +__static_renaming("__va_list_279", "va_list"); +__static_renaming("__off_t_281", "off_t"); +__static_renaming("__off_t_283", "off_t"); +__static_renaming("__ssize_t_285", "ssize_t"); +__static_renaming("__fpos_t_287", "fpos_t"); +__static_renaming("__fpos_t_289", "fpos_t"); +__static_renaming("__stdin_291", "stdin"); +__static_renaming("__stdin_292", "stdin"); +__static_renaming("__stdout_294", "stdout"); +__static_renaming("__stdout_295", "stdout"); +__static_renaming("__stderr_297", "stderr"); +__static_renaming("__stderr_298", "stderr"); +__static_renaming("__remove_301", "remove"); +__static_renaming("__rename_304", "rename"); +__static_renaming("__renameat_309", "renameat"); +__static_renaming("__tmpfile_310", "tmpfile"); +__static_renaming("__tmpfile_312", "tmpfile"); +__static_renaming("__tmpfile_314", "tmpfile"); +__static_renaming("__tmpfile_316", "tmpfile"); +__static_renaming("__tmpnam_319", "tmpnam"); +__static_renaming("__tmpnam_320", "tmpnam"); +__static_renaming("__tmpnam_r_322", "tmpnam_r"); +__static_renaming("__tmpnam_r_323", "tmpnam_r"); +__static_renaming("__tempnam_326", "tempnam"); +__static_renaming("__tempnam_327", "tempnam"); +__static_renaming("__fclose_330", "fclose"); +__static_renaming("__fclose_332", "fclose"); +__static_renaming("__fflush_336", "fflush"); +__static_renaming("__fflush_unlocked_340", "fflush_unlocked"); +__static_renaming("__fopen_344", "fopen"); +__static_renaming("__fopen_346", "fopen"); +__static_renaming("__fopen_354", "fopen"); +__static_renaming("__fopen_356", "fopen"); +__static_renaming("__freopen_362", "freopen"); +__static_renaming("__freopen_364", "freopen"); +__static_renaming("__freopen_366", "freopen"); +__static_renaming("__freopen_368", "freopen"); +__static_renaming("__fdopen_372", "fdopen"); +__static_renaming("__fdopen_374", "fdopen"); +__static_renaming("__fmemopen_379", "fmemopen"); +__static_renaming("__fmemopen_381", "fmemopen"); +__static_renaming("__open_memstream_385", "open_memstream"); +__static_renaming("__open_memstream_387", "open_memstream"); +__static_renaming("__setbuf_392", "setbuf"); +__static_renaming("__setbuf_394", "setbuf"); +__static_renaming("__setvbuf_401", "setvbuf"); +__static_renaming("__setbuffer_407", "setbuffer"); +__static_renaming("__setlinebuf_411", "setlinebuf"); +__static_renaming("__fprintf_416", "fprintf"); +__static_renaming("__fprintf_418", "fprintf"); +__static_renaming("__printf_421", "printf"); +__static_renaming("__sprintf_424", "sprintf"); +__static_renaming("__vfprintf_430", "vfprintf"); +__static_renaming("__vprintf_437", "vprintf"); +__static_renaming("__vsprintf_443", "vsprintf"); +__static_renaming("__snprintf_448", "snprintf"); +__static_renaming("__vsnprintf_454", "vsnprintf"); +__static_renaming("__vdprintf_460", "vdprintf"); +__static_renaming("__dprintf_464", "dprintf"); +__static_renaming("__fscanf_468", "fscanf"); +__static_renaming("__fscanf_470", "fscanf"); +__static_renaming("__fscanf_472", "fscanf"); +__static_renaming("__fscanf_474", "fscanf"); +__static_renaming("__scanf_477", "scanf"); +__static_renaming("__scanf_478", "scanf"); +__static_renaming("__sscanf_481", "sscanf"); +__static_renaming("__vfscanf_509", "vfscanf"); +__static_renaming("__vfscanf_513", "vfscanf"); +__static_renaming("__vscanf_520", "vscanf"); +__static_renaming("__vscanf_522", "vscanf"); +__static_renaming("__vsscanf_528", "vsscanf"); +__static_renaming("__fgetc_563", "fgetc"); +__static_renaming("__getc_567", "getc"); +__static_renaming("__getchar_569", "getchar"); +__static_renaming("__getc_unlocked_572", "getc_unlocked"); +__static_renaming("__getchar_unlocked_574", "getchar_unlocked"); +__static_renaming("__fgetc_unlocked_577", "fgetc_unlocked"); +__static_renaming("__fputc_582", "fputc"); +__static_renaming("__fputc_584", "fputc"); +__static_renaming("__putc_589", "putc"); +__static_renaming("__putchar_592", "putchar"); +__static_renaming("__fputc_unlocked_596", "fputc_unlocked"); +__static_renaming("__putc_unlocked_601", "putc_unlocked"); +__static_renaming("__putchar_unlocked_604", "putchar_unlocked"); +__static_renaming("__getw_607", "getw"); +__static_renaming("__putw_612", "putw"); +__static_renaming("__fgets_618", "fgets"); +__static_renaming("__fgets_620", "fgets"); +__static_renaming("__fgets_622", "fgets"); +__static_renaming("__fgets_624", "fgets"); +__static_renaming("____getdelim_631", "__getdelim"); +__static_renaming("____getdelim_635", "__getdelim"); +__static_renaming("__getdelim_644", "getdelim"); +__static_renaming("__getdelim_648", "getdelim"); +__static_renaming("__getline_656", "getline"); +__static_renaming("__getline_660", "getline"); +__static_renaming("__fputs_667", "fputs"); +__static_renaming("__fputs_669", "fputs"); +__static_renaming("__puts_672", "puts"); +__static_renaming("__ungetc_676", "ungetc"); +__static_renaming("__fseek_714", "fseek"); +__static_renaming("__fseek_716", "fseek"); +__static_renaming("__ftell_720", "ftell"); +__static_renaming("__ftell_722", "ftell"); +__static_renaming("__rewind_726", "rewind"); +__static_renaming("__fseeko_733", "fseeko"); +__static_renaming("__fseeko_744", "fseeko"); +__static_renaming("__ftello_750", "ftello"); +__static_renaming("__ftello_754", "ftello"); +__static_renaming("__ftello_758", "ftello"); +__static_renaming("__fgetpos_766", "fgetpos"); +__static_renaming("__fgetpos_778", "fgetpos"); +__static_renaming("__fsetpos_786", "fsetpos"); +__static_renaming("__fsetpos_790", "fsetpos"); +__static_renaming("__clearerr_796", "clearerr"); +__static_renaming("__feof_800", "feof"); +__static_renaming("__feof_802", "feof"); +__static_renaming("__ferror_806", "ferror"); +__static_renaming("__ferror_808", "ferror"); +__static_renaming("__clearerr_unlocked_812", "clearerr_unlocked"); +__static_renaming("__feof_unlocked_816", "feof_unlocked"); +__static_renaming("__feof_unlocked_818", "feof_unlocked"); +__static_renaming("__ferror_unlocked_822", "ferror_unlocked"); +__static_renaming("__ferror_unlocked_824", "ferror_unlocked"); +__static_renaming("__perror_827", "perror"); +__static_renaming("__perror_828", "perror"); +__static_renaming("__sys_nerr_829", "sys_nerr"); +__static_renaming("__sys_errlist_830", "sys_errlist"); +__static_renaming("__fileno_833", "fileno"); +__static_renaming("__fileno_835", "fileno"); +__static_renaming("__fileno_unlocked_839", "fileno_unlocked"); +__static_renaming("__fileno_unlocked_841", "fileno_unlocked"); +__static_renaming("__popen_845", "popen"); +__static_renaming("__popen_847", "popen"); +__static_renaming("__pclose_851", "pclose"); +__static_renaming("__ctermid_854", "ctermid"); +__static_renaming("__flockfile_857", "flockfile"); +__static_renaming("__ftrylockfile_861", "ftrylockfile"); +__static_renaming("__ftrylockfile_863", "ftrylockfile"); +__static_renaming("__funlockfile_867", "funlockfile"); +__static_renaming("____sprintf_chk_899", "__sprintf_chk"); +__static_renaming("____vsprintf_chk_906", "__vsprintf_chk"); +__static_renaming("____snprintf_chk_920", "__snprintf_chk"); +__static_renaming("____vsnprintf_chk_928", "__vsnprintf_chk"); +__static_renaming("____fprintf_chk_943", "__fprintf_chk"); +__static_renaming("____printf_chk_947", "__printf_chk"); +__static_renaming("____vfprintf_chk_954", "__vfprintf_chk"); +__static_renaming("____vprintf_chk_962", "__vprintf_chk"); +__static_renaming("____dprintf_chk_984", "__dprintf_chk"); +__static_renaming("____vdprintf_chk_990", "__vdprintf_chk"); +__static_renaming("____fgets_chk_1004", "__fgets_chk"); +__static_renaming("____fgets_chk_1006", "__fgets_chk"); +__static_renaming("____fgets_chk_1008", "__fgets_chk"); +__static_renaming("____fgets_alias_1014", "__fgets_alias"); +__static_renaming("____fgets_chk_warn_1021", "__fgets_chk_warn"); +__static_renaming("____cnt_1087", "__cnt"); +__static_renaming("____cptr_1088", "__cptr"); +__static_renaming("__ptrdiff_t_1092", "ptrdiff_t"); +__static_renaming("__size_t_1093", "size_t"); +__static_renaming("__wchar_t_1094", "wchar_t"); +__static_renaming("__idtype_t_1100", "idtype_t"); +__static_renaming("____u_char_1101", "__u_char"); +__static_renaming("____u_short_1102", "__u_short"); +__static_renaming("____u_int_1103", "__u_int"); +__static_renaming("____u_long_1104", "__u_long"); +__static_renaming("____int8_t_1105", "__int8_t"); +__static_renaming("____uint8_t_1106", "__uint8_t"); +__static_renaming("____int16_t_1107", "__int16_t"); +__static_renaming("____uint16_t_1108", "__uint16_t"); +__static_renaming("____int32_t_1109", "__int32_t"); +__static_renaming("____uint32_t_1110", "__uint32_t"); +__static_renaming("____int64_t_1111", "__int64_t"); +__static_renaming("____uint64_t_1112", "__uint64_t"); +__static_renaming("____quad_t_1113", "__quad_t"); +__static_renaming("____u_quad_t_1114", "__u_quad_t"); +__static_renaming("____dev_t_1115", "__dev_t"); +__static_renaming("____uid_t_1116", "__uid_t"); +__static_renaming("____gid_t_1117", "__gid_t"); +__static_renaming("____ino_t_1118", "__ino_t"); +__static_renaming("____ino64_t_1119", "__ino64_t"); +__static_renaming("____mode_t_1120", "__mode_t"); +__static_renaming("____nlink_t_1121", "__nlink_t"); +__static_renaming("____off_t_1122", "__off_t"); +__static_renaming("____off64_t_1123", "__off64_t"); +__static_renaming("____pid_t_1124", "__pid_t"); +__static_renaming("____fsid_t_1128", "__fsid_t"); +__static_renaming("____clock_t_1129", "__clock_t"); +__static_renaming("____rlim_t_1130", "__rlim_t"); +__static_renaming("____rlim64_t_1131", "__rlim64_t"); +__static_renaming("____id_t_1132", "__id_t"); +__static_renaming("____time_t_1133", "__time_t"); +__static_renaming("____useconds_t_1134", "__useconds_t"); +__static_renaming("____suseconds_t_1135", "__suseconds_t"); +__static_renaming("____daddr_t_1136", "__daddr_t"); +__static_renaming("____key_t_1137", "__key_t"); +__static_renaming("____clockid_t_1138", "__clockid_t"); +__static_renaming("____timer_t_1139", "__timer_t"); +__static_renaming("____blksize_t_1140", "__blksize_t"); +__static_renaming("____blkcnt_t_1141", "__blkcnt_t"); +__static_renaming("____blkcnt64_t_1142", "__blkcnt64_t"); +__static_renaming("____fsblkcnt_t_1143", "__fsblkcnt_t"); +__static_renaming("____fsblkcnt64_t_1144", "__fsblkcnt64_t"); +__static_renaming("____fsfilcnt_t_1145", "__fsfilcnt_t"); +__static_renaming("____fsfilcnt64_t_1146", "__fsfilcnt64_t"); +__static_renaming("____fsword_t_1147", "__fsword_t"); +__static_renaming("____ssize_t_1148", "__ssize_t"); +__static_renaming("____syscall_slong_t_1149", "__syscall_slong_t"); +__static_renaming("____syscall_ulong_t_1150", "__syscall_ulong_t"); +__static_renaming("____loff_t_1151", "__loff_t"); +__static_renaming("____qaddr_t_1153", "__qaddr_t"); +__static_renaming("____caddr_t_1154", "__caddr_t"); +__static_renaming("____intptr_t_1155", "__intptr_t"); +__static_renaming("____socklen_t_1156", "__socklen_t"); +__static_renaming("____bswap_32_1158", "__bswap_32"); +__static_renaming("____bswap_64_1162", "__bswap_64"); +__static_renaming("____bswap_64_1163", "__bswap_64"); +__static_renaming("____WAIT_STATUS_1185", "__WAIT_STATUS"); +__static_renaming("__div_t_1190", "div_t"); +__static_renaming("__ldiv_t_1195", "ldiv_t"); +__static_renaming("__lldiv_t_1200", "lldiv_t"); +__static_renaming("____ctype_get_mb_cur_max_1201", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1202", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1203", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1204", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1205", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1206", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1207", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1208", "__ctype_get_mb_cur_max"); +__static_renaming("__atof_1210", "atof"); +__static_renaming("__atof_1211", "atof"); +__static_renaming("__atoi_1213", "atoi"); +__static_renaming("__atoi_1214", "atoi"); +__static_renaming("__atol_1216", "atol"); +__static_renaming("__atol_1217", "atol"); +__static_renaming("__atoll_1219", "atoll"); +__static_renaming("__atoll_1220", "atoll"); +__static_renaming("__strtod_1223", "strtod"); +__static_renaming("__strtof_1226", "strtof"); +__static_renaming("__strtold_1229", "strtold"); +__static_renaming("__strtol_1233", "strtol"); +__static_renaming("__strtoul_1237", "strtoul"); +__static_renaming("__strtoq_1241", "strtoq"); +__static_renaming("__strtouq_1245", "strtouq"); +__static_renaming("__strtoll_1249", "strtoll"); +__static_renaming("__strtoll_1250", "strtoll"); +__static_renaming("__strtoull_1254", "strtoull"); +__static_renaming("__l64a_1259", "l64a"); +__static_renaming("__l64a_1260", "l64a"); +__static_renaming("__a64l_1262", "a64l"); +__static_renaming("__a64l_1263", "a64l"); +__static_renaming("____u_char_1264", "__u_char"); +__static_renaming("____u_short_1265", "__u_short"); +__static_renaming("____u_int_1266", "__u_int"); +__static_renaming("____u_long_1267", "__u_long"); +__static_renaming("____int8_t_1268", "__int8_t"); +__static_renaming("____uint8_t_1269", "__uint8_t"); +__static_renaming("____int16_t_1270", "__int16_t"); +__static_renaming("____uint16_t_1271", "__uint16_t"); +__static_renaming("____int32_t_1272", "__int32_t"); +__static_renaming("____uint32_t_1273", "__uint32_t"); +__static_renaming("____int64_t_1274", "__int64_t"); +__static_renaming("____uint64_t_1275", "__uint64_t"); +__static_renaming("____quad_t_1276", "__quad_t"); +__static_renaming("____u_quad_t_1277", "__u_quad_t"); +__static_renaming("____dev_t_1278", "__dev_t"); +__static_renaming("____uid_t_1279", "__uid_t"); +__static_renaming("____gid_t_1280", "__gid_t"); +__static_renaming("____ino_t_1281", "__ino_t"); +__static_renaming("____ino64_t_1282", "__ino64_t"); +__static_renaming("____mode_t_1283", "__mode_t"); +__static_renaming("____nlink_t_1284", "__nlink_t"); +__static_renaming("____off_t_1285", "__off_t"); +__static_renaming("____off64_t_1286", "__off64_t"); +__static_renaming("____pid_t_1287", "__pid_t"); +__static_renaming("____fsid_t_1291", "__fsid_t"); +__static_renaming("____clock_t_1292", "__clock_t"); +__static_renaming("____rlim_t_1293", "__rlim_t"); +__static_renaming("____rlim64_t_1294", "__rlim64_t"); +__static_renaming("____id_t_1295", "__id_t"); +__static_renaming("____time_t_1296", "__time_t"); +__static_renaming("____useconds_t_1297", "__useconds_t"); +__static_renaming("____suseconds_t_1298", "__suseconds_t"); +__static_renaming("____daddr_t_1299", "__daddr_t"); +__static_renaming("____key_t_1300", "__key_t"); +__static_renaming("____clockid_t_1301", "__clockid_t"); +__static_renaming("____timer_t_1302", "__timer_t"); +__static_renaming("____blksize_t_1303", "__blksize_t"); +__static_renaming("____blkcnt_t_1304", "__blkcnt_t"); +__static_renaming("____blkcnt64_t_1305", "__blkcnt64_t"); +__static_renaming("____fsblkcnt_t_1306", "__fsblkcnt_t"); +__static_renaming("____fsblkcnt64_t_1307", "__fsblkcnt64_t"); +__static_renaming("____fsfilcnt_t_1308", "__fsfilcnt_t"); +__static_renaming("____fsfilcnt64_t_1309", "__fsfilcnt64_t"); +__static_renaming("____fsword_t_1310", "__fsword_t"); +__static_renaming("____ssize_t_1311", "__ssize_t"); +__static_renaming("____syscall_slong_t_1312", "__syscall_slong_t"); +__static_renaming("____syscall_ulong_t_1313", "__syscall_ulong_t"); +__static_renaming("____loff_t_1314", "__loff_t"); +__static_renaming("____qaddr_t_1316", "__qaddr_t"); +__static_renaming("____caddr_t_1317", "__caddr_t"); +__static_renaming("____intptr_t_1318", "__intptr_t"); +__static_renaming("____socklen_t_1319", "__socklen_t"); +__static_renaming("__u_char_1320", "u_char"); +__static_renaming("__u_char_1321", "u_char"); +__static_renaming("__u_char_1322", "u_char"); +__static_renaming("__u_short_1323", "u_short"); +__static_renaming("__u_short_1324", "u_short"); +__static_renaming("__u_short_1325", "u_short"); +__static_renaming("__u_int_1326", "u_int"); +__static_renaming("__u_int_1327", "u_int"); +__static_renaming("__u_int_1328", "u_int"); +__static_renaming("__u_long_1329", "u_long"); +__static_renaming("__u_long_1330", "u_long"); +__static_renaming("__u_long_1331", "u_long"); +__static_renaming("__quad_t_1332", "quad_t"); +__static_renaming("__quad_t_1333", "quad_t"); +__static_renaming("__quad_t_1334", "quad_t"); +__static_renaming("__u_quad_t_1335", "u_quad_t"); +__static_renaming("__u_quad_t_1336", "u_quad_t"); +__static_renaming("__u_quad_t_1337", "u_quad_t"); +__static_renaming("__fsid_t_1338", "fsid_t"); +__static_renaming("__fsid_t_1339", "fsid_t"); +__static_renaming("__fsid_t_1340", "fsid_t"); +__static_renaming("__loff_t_1342", "loff_t"); +__static_renaming("__loff_t_1343", "loff_t"); +__static_renaming("__loff_t_1344", "loff_t"); +__static_renaming("__loff_t_1346", "loff_t"); +__static_renaming("__loff_t_1347", "loff_t"); +__static_renaming("__loff_t_1348", "loff_t"); +__static_renaming("__ino_t_1350", "ino_t"); +__static_renaming("__ino_t_1351", "ino_t"); +__static_renaming("__ino_t_1352", "ino_t"); +__static_renaming("__ino_t_1354", "ino_t"); +__static_renaming("__ino_t_1355", "ino_t"); +__static_renaming("__ino_t_1356", "ino_t"); +__static_renaming("__dev_t_1358", "dev_t"); +__static_renaming("__dev_t_1359", "dev_t"); +__static_renaming("__dev_t_1360", "dev_t"); +__static_renaming("__gid_t_1362", "gid_t"); +__static_renaming("__gid_t_1363", "gid_t"); +__static_renaming("__gid_t_1364", "gid_t"); +__static_renaming("__gid_t_1366", "gid_t"); +__static_renaming("__gid_t_1367", "gid_t"); +__static_renaming("__gid_t_1368", "gid_t"); +__static_renaming("__mode_t_1370", "mode_t"); +__static_renaming("__mode_t_1371", "mode_t"); +__static_renaming("__mode_t_1372", "mode_t"); +__static_renaming("__nlink_t_1374", "nlink_t"); +__static_renaming("__nlink_t_1375", "nlink_t"); +__static_renaming("__nlink_t_1376", "nlink_t"); +__static_renaming("__uid_t_1378", "uid_t"); +__static_renaming("__uid_t_1379", "uid_t"); +__static_renaming("__uid_t_1380", "uid_t"); +__static_renaming("__uid_t_1382", "uid_t"); +__static_renaming("__uid_t_1383", "uid_t"); +__static_renaming("__uid_t_1384", "uid_t"); +__static_renaming("__off_t_1386", "off_t"); +__static_renaming("__off_t_1387", "off_t"); +__static_renaming("__off_t_1389", "off_t"); +__static_renaming("__off_t_1390", "off_t"); +__static_renaming("__pid_t_1392", "pid_t"); +__static_renaming("__pid_t_1393", "pid_t"); +__static_renaming("__pid_t_1394", "pid_t"); +__static_renaming("__pid_t_1396", "pid_t"); +__static_renaming("__pid_t_1397", "pid_t"); +__static_renaming("__id_t_1399", "id_t"); +__static_renaming("__id_t_1400", "id_t"); +__static_renaming("__id_t_1401", "id_t"); +__static_renaming("__ssize_t_1403", "ssize_t"); +__static_renaming("__ssize_t_1404", "ssize_t"); +__static_renaming("__daddr_t_1406", "daddr_t"); +__static_renaming("__daddr_t_1407", "daddr_t"); +__static_renaming("__daddr_t_1408", "daddr_t"); +__static_renaming("__caddr_t_1410", "caddr_t"); +__static_renaming("__caddr_t_1411", "caddr_t"); +__static_renaming("__caddr_t_1412", "caddr_t"); +__static_renaming("__key_t_1413", "key_t"); +__static_renaming("__key_t_1414", "key_t"); +__static_renaming("__key_t_1415", "key_t"); +__static_renaming("__key_t_1417", "key_t"); +__static_renaming("__key_t_1418", "key_t"); +__static_renaming("__key_t_1419", "key_t"); +__static_renaming("__clock_t_1421", "clock_t"); +__static_renaming("__clock_t_1422", "clock_t"); +__static_renaming("__clock_t_1423", "clock_t"); +__static_renaming("__time_t_1425", "time_t"); +__static_renaming("__time_t_1426", "time_t"); +__static_renaming("__time_t_1427", "time_t"); +__static_renaming("__clockid_t_1429", "clockid_t"); +__static_renaming("__clockid_t_1430", "clockid_t"); +__static_renaming("__clockid_t_1431", "clockid_t"); +__static_renaming("__timer_t_1433", "timer_t"); +__static_renaming("__timer_t_1434", "timer_t"); +__static_renaming("__timer_t_1435", "timer_t"); +__static_renaming("__ulong_1437", "ulong"); +__static_renaming("__ulong_1438", "ulong"); +__static_renaming("__ulong_1439", "ulong"); +__static_renaming("__ushort_1440", "ushort"); +__static_renaming("__uint_1441", "uint"); +__static_renaming("__int8_t_1442", "int8_t"); +__static_renaming("__int16_t_1443", "int16_t"); +__static_renaming("__int32_t_1444", "int32_t"); +__static_renaming("__int64_t_1445", "int64_t"); +__static_renaming("__u_int8_t_1446", "u_int8_t"); +__static_renaming("__u_int16_t_1447", "u_int16_t"); +__static_renaming("__u_int32_t_1448", "u_int32_t"); +__static_renaming("__u_int64_t_1449", "u_int64_t"); +__static_renaming("__register_t_1450", "register_t"); +__static_renaming("____bswap_32_1452", "__bswap_32"); +__static_renaming("____bswap_64_1456", "__bswap_64"); +__static_renaming("____bswap_64_1457", "__bswap_64"); +__static_renaming("____sig_atomic_t_1460", "__sig_atomic_t"); +__static_renaming("____sigset_t_1464", "__sigset_t"); +__static_renaming("__sigset_t_1465", "sigset_t"); +__static_renaming("__suseconds_t_1486", "suseconds_t"); +__static_renaming("__suseconds_t_1487", "suseconds_t"); +__static_renaming("__suseconds_t_1488", "suseconds_t"); +__static_renaming("____fd_mask_1490", "__fd_mask"); +__static_renaming("____fd_mask_1491", "__fd_mask"); +__static_renaming("__fd_set_1499", "fd_set"); +__static_renaming("__fd_mask_1500", "fd_mask"); +__static_renaming("__fd_mask_1501", "fd_mask"); +__static_renaming("__select_1513", "select"); +__static_renaming("__select_1514", "select"); +__static_renaming("__pselect_1529", "pselect"); +__static_renaming("__pselect_1530", "pselect"); +__static_renaming("____fdelt_chk_1534", "__fdelt_chk"); +__static_renaming("____fdelt_warn_1536", "__fdelt_warn"); +__static_renaming("__gnu_dev_major_1538", "gnu_dev_major"); +__static_renaming("__gnu_dev_major_1539", "gnu_dev_major"); +__static_renaming("__gnu_dev_minor_1541", "gnu_dev_minor"); +__static_renaming("__gnu_dev_makedev_1544", "gnu_dev_makedev"); +__static_renaming("__blksize_t_1549", "blksize_t"); +__static_renaming("__blksize_t_1550", "blksize_t"); +__static_renaming("__blksize_t_1551", "blksize_t"); +__static_renaming("__blkcnt_t_1553", "blkcnt_t"); +__static_renaming("__blkcnt_t_1554", "blkcnt_t"); +__static_renaming("__blkcnt_t_1555", "blkcnt_t"); +__static_renaming("__fsblkcnt_t_1557", "fsblkcnt_t"); +__static_renaming("__fsblkcnt_t_1558", "fsblkcnt_t"); +__static_renaming("__fsblkcnt_t_1559", "fsblkcnt_t"); +__static_renaming("__blkcnt_t_1561", "blkcnt_t"); +__static_renaming("__blkcnt_t_1562", "blkcnt_t"); +__static_renaming("__blkcnt_t_1563", "blkcnt_t"); +__static_renaming("__fsblkcnt_t_1565", "fsblkcnt_t"); +__static_renaming("__fsblkcnt_t_1566", "fsblkcnt_t"); +__static_renaming("__fsblkcnt_t_1567", "fsblkcnt_t"); +__static_renaming("__fsfilcnt_t_1569", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_1570", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_1571", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_1573", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_1574", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_1575", "fsfilcnt_t"); +__static_renaming("__pthread_t_1577", "pthread_t"); +__static_renaming("__pthread_attr_t_1581", "pthread_attr_t"); +__static_renaming("____pthread_list_t_1586", "__pthread_list_t"); +__static_renaming("____pthread_list_t_1587", "__pthread_list_t"); +__static_renaming("__pthread_mutex_t_1603", "pthread_mutex_t"); +__static_renaming("__pthread_mutexattr_t_1608", "pthread_mutexattr_t"); +__static_renaming("__rand_1609", "rand"); +__static_renaming("__srand_1611", "srand"); +__static_renaming("__rand_r_1613", "rand_r"); +__static_renaming("__drand48_1614", "drand48"); +__static_renaming("__erand48_1616", "erand48"); +__static_renaming("__lrand48_1617", "lrand48"); +__static_renaming("__nrand48_1619", "nrand48"); +__static_renaming("__mrand48_1620", "mrand48"); +__static_renaming("__jrand48_1622", "jrand48"); +__static_renaming("__srand48_1624", "srand48"); +__static_renaming("__seed48_1626", "seed48"); +__static_renaming("__lcong48_1628", "lcong48"); +__static_renaming("__malloc_1631", "malloc"); +__static_renaming("__malloc_1632", "malloc"); +__static_renaming("__malloc_1633", "malloc"); +__static_renaming("__malloc_1634", "malloc"); +__static_renaming("__calloc_1639", "calloc"); +__static_renaming("__calloc_1640", "calloc"); +__static_renaming("__calloc_1641", "calloc"); +__static_renaming("__calloc_1642", "calloc"); +__static_renaming("__realloc_1646", "realloc"); +__static_renaming("__realloc_1647", "realloc"); +__static_renaming("__free_1649", "free"); +__static_renaming("__cfree_1651", "cfree"); +__static_renaming("__alloca_1654", "alloca"); +__static_renaming("__alloca_1655", "alloca"); +__static_renaming("__valloc_1658", "valloc"); +__static_renaming("__valloc_1659", "valloc"); +__static_renaming("__valloc_1660", "valloc"); +__static_renaming("__valloc_1661", "valloc"); +__static_renaming("__posix_memalign_1667", "posix_memalign"); +__static_renaming("__posix_memalign_1668", "posix_memalign"); +__static_renaming("__posix_memalign_1669", "posix_memalign"); +__static_renaming("__posix_memalign_1670", "posix_memalign"); +__static_renaming("__aligned_alloc_1675", "aligned_alloc"); +__static_renaming("__aligned_alloc_1676", "aligned_alloc"); +__static_renaming("__aligned_alloc_1677", "aligned_alloc"); +__static_renaming("__aligned_alloc_1678", "aligned_alloc"); +__static_renaming("__aligned_alloc_1679", "aligned_alloc"); +__static_renaming("__aligned_alloc_1680", "aligned_alloc"); +__static_renaming("__aligned_alloc_1681", "aligned_alloc"); +__static_renaming("__aligned_alloc_1682", "aligned_alloc"); +__static_renaming("__abort_1683", "abort"); +__static_renaming("__atexit_1685", "atexit"); +__static_renaming("__at_quick_exit_1687", "at_quick_exit"); +__static_renaming("__on_exit_1692", "on_exit"); +__static_renaming("__exit_1694", "exit"); +__static_renaming("__exit_1695", "exit"); +__static_renaming("__quick_exit_1697", "quick_exit"); +__static_renaming("___Exit_1699", "_Exit"); +__static_renaming("__getenv_1701", "getenv"); +__static_renaming("__getenv_1702", "getenv"); +__static_renaming("__putenv_1704", "putenv"); +__static_renaming("__setenv_1708", "setenv"); +__static_renaming("__unsetenv_1710", "unsetenv"); +__static_renaming("__clearenv_1711", "clearenv"); +__static_renaming("__mktemp_1713", "mktemp"); +__static_renaming("__mkstemp_1716", "mkstemp"); +__static_renaming("__mkstemp_1717", "mkstemp"); +__static_renaming("__mkstemp_1718", "mkstemp"); +__static_renaming("__mkstemp_1719", "mkstemp"); +__static_renaming("__mkstemps_1724", "mkstemps"); +__static_renaming("__mkstemps_1725", "mkstemps"); +__static_renaming("__mkstemps_1726", "mkstemps"); +__static_renaming("__mkstemps_1727", "mkstemps"); +__static_renaming("__mkdtemp_1729", "mkdtemp"); +__static_renaming("__mkdtemp_1730", "mkdtemp"); +__static_renaming("__system_1732", "system"); +__static_renaming("__system_1733", "system"); +__static_renaming("__system_1734", "system"); +__static_renaming("__system_1735", "system"); +__static_renaming("__realpath_1738", "realpath"); +__static_renaming("__realpath_1739", "realpath"); +__static_renaming("____compar_fn_t_1740", "__compar_fn_t"); +__static_renaming("__bsearch_1751", "bsearch"); +__static_renaming("__bsearch_1752", "bsearch"); +__static_renaming("__bsearch_1755", "bsearch"); +__static_renaming("__bsearch_1756", "bsearch"); +__static_renaming("____l_1765", "__l"); +__static_renaming("____l_1766", "__l"); +__static_renaming("____u_1767", "__u"); +__static_renaming("____u_1768", "__u"); +__static_renaming("____idx_1769", "__idx"); +__static_renaming("____idx_1770", "__idx"); +__static_renaming("____p_1771", "__p"); +__static_renaming("____comparison_1772", "__comparison"); +__static_renaming("__qsort_1784", "qsort"); +__static_renaming("__qsort_1786", "qsort"); +__static_renaming("__qsort_1788", "qsort"); +__static_renaming("__qsort_1790", "qsort"); +__static_renaming("__abs_1793", "abs"); +__static_renaming("__abs_1794", "abs"); +__static_renaming("__labs_1796", "labs"); +__static_renaming("__labs_1797", "labs"); +__static_renaming("__llabs_1799", "llabs"); +__static_renaming("__llabs_1800", "llabs"); +__static_renaming("__div_1803", "div"); +__static_renaming("__div_1804", "div"); +__static_renaming("__ldiv_1807", "ldiv"); +__static_renaming("__ldiv_1809", "ldiv"); +__static_renaming("__lldiv_1813", "lldiv"); +__static_renaming("__lldiv_1815", "lldiv"); +__static_renaming("__ecvt_1821", "ecvt"); +__static_renaming("__ecvt_1822", "ecvt"); +__static_renaming("__fcvt_1827", "fcvt"); +__static_renaming("__fcvt_1828", "fcvt"); +__static_renaming("__gcvt_1832", "gcvt"); +__static_renaming("__gcvt_1833", "gcvt"); +__static_renaming("__qecvt_1838", "qecvt"); +__static_renaming("__qecvt_1839", "qecvt"); +__static_renaming("__qfcvt_1844", "qfcvt"); +__static_renaming("__qfcvt_1845", "qfcvt"); +__static_renaming("__qgcvt_1849", "qgcvt"); +__static_renaming("__qgcvt_1850", "qgcvt"); +__static_renaming("__ecvt_r_1858", "ecvt_r"); +__static_renaming("__ecvt_r_1859", "ecvt_r"); +__static_renaming("__fcvt_r_1867", "fcvt_r"); +__static_renaming("__fcvt_r_1868", "fcvt_r"); +__static_renaming("__qecvt_r_1876", "qecvt_r"); +__static_renaming("__qecvt_r_1877", "qecvt_r"); +__static_renaming("__qfcvt_r_1885", "qfcvt_r"); +__static_renaming("__qfcvt_r_1886", "qfcvt_r"); +__static_renaming("__mblen_1890", "mblen"); +__static_renaming("__mblen_1891", "mblen"); +__static_renaming("__mblen_1892", "mblen"); +__static_renaming("__mblen_1893", "mblen"); +__static_renaming("__mbtowc_1898", "mbtowc"); +__static_renaming("__mbtowc_1899", "mbtowc"); +__static_renaming("__wctomb_1902", "wctomb"); +__static_renaming("__mbstowcs_1907", "mbstowcs"); +__static_renaming("__mbstowcs_1908", "mbstowcs"); +__static_renaming("__wcstombs_1913", "wcstombs"); +__static_renaming("__wcstombs_1914", "wcstombs"); +__static_renaming("__rpmatch_1916", "rpmatch"); +__static_renaming("__rpmatch_1917", "rpmatch"); +__static_renaming("__getsubopt_1921", "getsubopt"); +__static_renaming("__getsubopt_1922", "getsubopt"); +__static_renaming("__getloadavg_1925", "getloadavg"); +__static_renaming("____realpath_chk_1931", "__realpath_chk"); +__static_renaming("____realpath_chk_1932", "__realpath_chk"); +__static_renaming("____realpath_alias_1935", "__realpath_alias"); +__static_renaming("____realpath_chk_warn_1940", "__realpath_chk_warn"); +__static_renaming("____realpath_chk_warn_1941", "__realpath_chk_warn"); +__static_renaming("____ptsname_r_chk_1951", "__ptsname_r_chk"); +__static_renaming("____ptsname_r_chk_1952", "__ptsname_r_chk"); +__static_renaming("____ptsname_r_alias_1957", "__ptsname_r_alias"); +__static_renaming("____ptsname_r_alias_1958", "__ptsname_r_alias"); +__static_renaming("____ptsname_r_chk_warn_1965", "__ptsname_r_chk_warn"); +__static_renaming("____ptsname_r_chk_warn_1966", "__ptsname_r_chk_warn"); +__static_renaming("____wctomb_chk_1977", "__wctomb_chk"); +__static_renaming("____wctomb_chk_1978", "__wctomb_chk"); +__static_renaming("____wctomb_alias_1981", "__wctomb_alias"); +__static_renaming("____mbstowcs_chk_1990", "__mbstowcs_chk"); +__static_renaming("____mbstowcs_chk_1991", "__mbstowcs_chk"); +__static_renaming("____mbstowcs_alias_1996", "__mbstowcs_alias"); +__static_renaming("____mbstowcs_alias_1997", "__mbstowcs_alias"); +__static_renaming("____mbstowcs_chk_warn_2004", "__mbstowcs_chk_warn"); +__static_renaming("____mbstowcs_chk_warn_2005", "__mbstowcs_chk_warn"); +__static_renaming("____wcstombs_chk_2016", "__wcstombs_chk"); +__static_renaming("____wcstombs_chk_2017", "__wcstombs_chk"); +__static_renaming("____wcstombs_alias_2022", "__wcstombs_alias"); +__static_renaming("____wcstombs_alias_2023", "__wcstombs_alias"); +__static_renaming("____wcstombs_chk_warn_2030", "__wcstombs_chk_warn"); +__static_renaming("____wcstombs_chk_warn_2031", "__wcstombs_chk_warn"); +__static_renaming("__ptrdiff_t_2036", "ptrdiff_t"); +__static_renaming("__size_t_2037", "size_t"); +__static_renaming("__memmove_2053", "memmove"); +__static_renaming("__memmove_2054", "memmove"); +__static_renaming("__memmove_2055", "memmove"); +__static_renaming("__memset_2070", "memset"); +__static_renaming("__memset_2071", "memset"); +__static_renaming("__memset_2072", "memset"); +__static_renaming("__memset_2073", "memset"); +__static_renaming("__memset_2074", "memset"); +__static_renaming("__memset_2075", "memset"); +__static_renaming("__memcmp_2081", "memcmp"); +__static_renaming("__memcmp_2082", "memcmp"); +__static_renaming("__memcmp_2083", "memcmp"); +__static_renaming("__memchr_2089", "memchr"); +__static_renaming("__memchr_2090", "memchr"); +__static_renaming("__memchr_2091", "memchr"); +__static_renaming("__strcpy_2094", "strcpy"); +__static_renaming("__strncpy_2100", "strncpy"); +__static_renaming("__strncpy_2101", "strncpy"); +__static_renaming("__strncpy_2102", "strncpy"); +__static_renaming("__strcat_2105", "strcat"); +__static_renaming("__strncat_2111", "strncat"); +__static_renaming("__strncat_2112", "strncat"); +__static_renaming("__strncat_2113", "strncat"); +__static_renaming("__strcmp_2116", "strcmp"); +__static_renaming("__strncmp_2122", "strncmp"); +__static_renaming("__strncmp_2123", "strncmp"); +__static_renaming("__strncmp_2124", "strncmp"); +__static_renaming("__strcoll_2127", "strcoll"); +__static_renaming("__strxfrm_2133", "strxfrm"); +__static_renaming("__strxfrm_2134", "strxfrm"); +__static_renaming("__strxfrm_2135", "strxfrm"); +__static_renaming("____locale_t_2143", "__locale_t"); +__static_renaming("__locale_t_2144", "locale_t"); +__static_renaming("__strcoll_l_2148", "strcoll_l"); +__static_renaming("__strxfrm_l_2155", "strxfrm_l"); +__static_renaming("__strxfrm_l_2156", "strxfrm_l"); +__static_renaming("__strxfrm_l_2157", "strxfrm_l"); +__static_renaming("__strdup_2159", "strdup"); +__static_renaming("__strndup_2164", "strndup"); +__static_renaming("__strndup_2165", "strndup"); +__static_renaming("__strndup_2166", "strndup"); +__static_renaming("__strchr_2169", "strchr"); +__static_renaming("__strrchr_2172", "strrchr"); +__static_renaming("__strcspn_2175", "strcspn"); +__static_renaming("__strcspn_2176", "strcspn"); +__static_renaming("__strcspn_2177", "strcspn"); +__static_renaming("__strspn_2180", "strspn"); +__static_renaming("__strspn_2181", "strspn"); +__static_renaming("__strspn_2182", "strspn"); +__static_renaming("__strpbrk_2185", "strpbrk"); +__static_renaming("__strstr_2188", "strstr"); +__static_renaming("__strtok_2191", "strtok"); +__static_renaming("____strtok_r_2195", "__strtok_r"); +__static_renaming("__strtok_r_2199", "strtok_r"); +__static_renaming("__strlen_2201", "strlen"); +__static_renaming("__strlen_2202", "strlen"); +__static_renaming("__strlen_2203", "strlen"); +__static_renaming("__strlen_2204", "strlen"); +__static_renaming("__strlen_2205", "strlen"); +__static_renaming("__strlen_2206", "strlen"); +__static_renaming("__strnlen_2211", "strnlen"); +__static_renaming("__strnlen_2212", "strnlen"); +__static_renaming("__strnlen_2213", "strnlen"); +__static_renaming("__strerror_2215", "strerror"); +__static_renaming("__strerror_2216", "strerror"); +__static_renaming("__strerror_r_2222", "strerror_r"); +__static_renaming("__strerror_r_2223", "strerror_r"); +__static_renaming("__strerror_r_2224", "strerror_r"); +__static_renaming("__strerror_l_2227", "strerror_l"); +__static_renaming("____bzero_2232", "__bzero"); +__static_renaming("____bzero_2233", "__bzero"); +__static_renaming("____bzero_2234", "__bzero"); +__static_renaming("____bzero_2235", "__bzero"); +__static_renaming("____bzero_2236", "__bzero"); +__static_renaming("____bzero_2237", "__bzero"); +__static_renaming("__bcopy_2243", "bcopy"); +__static_renaming("__bcopy_2244", "bcopy"); +__static_renaming("__bcopy_2245", "bcopy"); +__static_renaming("__bzero_2250", "bzero"); +__static_renaming("__bzero_2251", "bzero"); +__static_renaming("__bzero_2252", "bzero"); +__static_renaming("__bcmp_2258", "bcmp"); +__static_renaming("__bcmp_2259", "bcmp"); +__static_renaming("__bcmp_2260", "bcmp"); +__static_renaming("__index_2263", "index"); +__static_renaming("__rindex_2266", "rindex"); +__static_renaming("__ffs_2268", "ffs"); +__static_renaming("__strcasecmp_2271", "strcasecmp"); +__static_renaming("__strncasecmp_2277", "strncasecmp"); +__static_renaming("__strncasecmp_2278", "strncasecmp"); +__static_renaming("__strncasecmp_2279", "strncasecmp"); +__static_renaming("__strsep_2282", "strsep"); +__static_renaming("__strsignal_2284", "strsignal"); +__static_renaming("____stpcpy_2287", "__stpcpy"); +__static_renaming("__stpcpy_2290", "stpcpy"); +__static_renaming("____stpncpy_2296", "__stpncpy"); +__static_renaming("____stpncpy_2297", "__stpncpy"); +__static_renaming("____stpncpy_2298", "__stpncpy"); +__static_renaming("__stpncpy_2304", "stpncpy"); +__static_renaming("__stpncpy_2305", "stpncpy"); +__static_renaming("__stpncpy_2306", "stpncpy"); +__static_renaming("____stpncpy_chk_2360", "__stpncpy_chk"); +__static_renaming("____stpncpy_chk_2361", "__stpncpy_chk"); +__static_renaming("____stpncpy_chk_2362", "__stpncpy_chk"); +__static_renaming("____stpncpy_alias_2368", "__stpncpy_alias"); +__static_renaming("____stpncpy_alias_2369", "__stpncpy_alias"); +__static_renaming("____stpncpy_alias_2370", "__stpncpy_alias"); +__static_renaming("__dt_2390", "dt"); +__static_renaming("__buf_2391", "buf"); +__static_renaming("__build_dep_2392", "build_dep"); +__static_renaming("__build_dep_2393", "build_dep"); +__static_renaming("__main_2408", "main"); __static_condition_renaming("__static_condition_default_53", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); __static_condition_renaming("__static_condition_default_76", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); @@ -623,182 +1269,346 @@ __static_condition_renaming("__static_condition_default_271", "!(defined __need_ __static_condition_renaming("__static_condition_default_274", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); __static_condition_renaming("__static_condition_default_275", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); __static_condition_renaming("__static_condition_default_278", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_280", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_282", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_285", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_288", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_291", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_298", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_300", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_302", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_304", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_311", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_315", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_319", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_321", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_329", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_331", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_337", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_339", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_341", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_343", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_348", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_355", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_360", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_372", "!(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_373", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_374", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_379", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_385", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_396", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_401", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_403", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_414", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_415", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_417", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_418", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_421", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_423", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_427", "!(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_434", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_435", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_436", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_438", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_439", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_440", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_445", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_447", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_453", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_460", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_461", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_462", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_463", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_465", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_466", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_467", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_468", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_473", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_474", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_476", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_477", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_483", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_484", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_488", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_492", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_498", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_503", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_511", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_513", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_518", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_525", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_531", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_532", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_533", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_534", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_540", "!(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_541", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_547", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_551", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_553", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_557", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_563", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_564", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_565", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_575", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_576", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_577", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_583", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_584", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_585", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_587", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_588", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_589", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_593", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_597", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_599", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_603", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_605", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_611", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_625", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_632", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_647", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_656", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_662", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_673", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_674", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_675", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_681", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_685", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_690", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_696", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_697", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_698", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_705", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_707", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_713", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_720", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_725", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_726", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_733", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_734", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_740", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_741", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_748", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_749", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_757", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_758", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_885", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_886", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_889", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_890", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_909", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_910", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_911", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_912", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_921", "!(defined __need___FILE) && !(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_923", "(defined __need___FILE) && !(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_925", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_927", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_944", "!(defined _FORTIFY_SOURCE) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_946", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_950", "!(defined _FORTIFY_SOURCE) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_952", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1005", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1101", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1102", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1103", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1104", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1206", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1207", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1212", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1213", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1218", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1219", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1222", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1227", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1228", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1247", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1248", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1251", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1256", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1257", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1262", "!(defined _FORTIFY_SOURCE) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS)"); -__static_condition_renaming("__static_condition_default_1263", "!(defined _FORTIFY_SOURCE) && !(defined __USE_EXTERN_INLINES) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __USE_EXTERN_INLINES) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __USE_EXTERN_INLINES) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __USE_EXTERN_INLINES) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS)"); -__static_condition_renaming("__static_condition_default_1264", "!(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS)"); -__static_condition_renaming("__static_condition_default_1265", "!(defined _FORTIFY_SOURCE) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS)"); -__static_condition_renaming("__static_condition_default_1266", "!(defined _FORTIFY_SOURCE) && !(defined __USE_EXTERN_INLINES) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __USE_EXTERN_INLINES) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __USE_EXTERN_INLINES) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __USE_EXTERN_INLINES) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS)"); -__static_condition_renaming("__static_condition_default_1267", "!(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS)"); -__static_condition_renaming("__static_condition_default_1268", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS)"); -__static_condition_renaming("__static_condition_default_1269", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __USE_EXTERN_INLINES) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS)"); -__static_condition_renaming("__static_condition_default_1270", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS)"); -__static_condition_renaming("__static_condition_default_1271", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS)"); -__static_condition_renaming("__static_condition_default_1272", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __USE_EXTERN_INLINES) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS)"); -__static_condition_renaming("__static_condition_default_1273", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS)"); -__static_condition_renaming("__static_condition_default_1277", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1278", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1279", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); - -if (__static_condition_default_1279) { +__static_condition_renaming("__static_condition_default_280", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); +__static_condition_renaming("__static_condition_default_282", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_284", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_286", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_288", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_290", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_293", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_296", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_299", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_311", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_313", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_315", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_317", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_331", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_333", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_337", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_341", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_345", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_347", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_355", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_357", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_363", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_365", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_367", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_369", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_373", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_375", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_380", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_382", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_386", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_388", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_393", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_395", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_402", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_408", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_412", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_417", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_419", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_431", "!(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_432", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_433", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_438", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_444", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_455", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_461", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_469", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_471", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_473", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_475", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_486", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_488", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_489", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_491", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_493", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_494", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_497", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_499", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_503", "!(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_510", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_511", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_512", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_514", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_515", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_516", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_521", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_523", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_529", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_536", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_537", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_538", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_539", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_541", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_542", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_543", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_544", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_549", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_550", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_552", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_553", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_559", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_560", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_564", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_568", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_573", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_578", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_583", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_585", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_590", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_597", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_602", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_608", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_613", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_619", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_621", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_623", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_625", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_632", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_633", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_634", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_636", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_637", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_638", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_645", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_646", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_647", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_649", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_650", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_651", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_657", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_658", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_659", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_661", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_662", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_663", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_668", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_670", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_677", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_683", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_684", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_685", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_686", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_692", "!(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_693", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_699", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_700", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_701", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_702", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_708", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_709", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_715", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_717", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_721", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_723", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_727", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_734", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_735", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_736", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_745", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_746", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_747", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_751", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_752", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_753", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_755", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_756", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_757", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_759", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_760", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_761", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_767", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_768", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_769", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_779", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_780", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_781", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_787", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_788", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_789", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_791", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_792", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_793", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_797", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_801", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_803", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_807", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_809", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_813", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_817", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_819", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_823", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_825", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_834", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_836", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_840", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_842", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_846", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_848", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_852", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_858", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_862", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_864", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_868", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_872", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_875", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_878", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_883", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_887", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_891", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_894", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_907", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_914", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_929", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_938", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_944", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_955", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_956", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_957", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_963", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_967", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_972", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_978", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_979", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_980", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_991", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_998", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1005", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1007", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1009", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1015", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1022", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1027", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1028", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1035", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1036", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1042", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1043", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1050", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1051", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1057", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1058", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1065", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1066", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1072", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1073", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1080", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1081", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1089", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_1090", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1091", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1152", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1159", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1164", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1165", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1315", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1341", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __u_char_defined)"); +__static_condition_renaming("__static_condition_default_1345", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __u_char_defined)"); +__static_condition_renaming("__static_condition_default_1349", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __u_char_defined)"); +__static_condition_renaming("__static_condition_default_1353", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined)"); +__static_condition_renaming("__static_condition_default_1357", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined)"); +__static_condition_renaming("__static_condition_default_1361", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_1365", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_1369", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_1373", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1377", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __nlink_t_defined)"); +__static_condition_renaming("__static_condition_default_1381", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __nlink_t_defined)"); +__static_condition_renaming("__static_condition_default_1385", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __nlink_t_defined)"); +__static_condition_renaming("__static_condition_default_1388", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1391", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1395", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && (defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1398", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1402", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __id_t_defined)"); +__static_condition_renaming("__static_condition_default_1405", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1409", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_1416", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_1420", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_1424", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __clock_t_defined)"); +__static_condition_renaming("__static_condition_default_1428", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __time_t_defined)"); +__static_condition_renaming("__static_condition_default_1432", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __clockid_t_defined)"); +__static_condition_renaming("__static_condition_default_1436", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timer_t_defined)"); +__static_condition_renaming("__static_condition_default_1453", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1458", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1459", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1475", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_1485", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_1489", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __suseconds_t_defined)"); +__static_condition_renaming("__static_condition_default_1498", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1515", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_1516", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_1531", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_1532", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_1552", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blksize_t_defined)"); +__static_condition_renaming("__static_condition_default_1556", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined)"); +__static_condition_renaming("__static_condition_default_1560", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1564", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined)"); +__static_condition_renaming("__static_condition_default_1568", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1572", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1576", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1749", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1750", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1753", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1754", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1773", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1774", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1775", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1776", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1785", "!(defined __need___FILE) && !(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1787", "(defined __need___FILE) && !(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1789", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1791", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1808", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1810", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1814", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1816", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1944", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_2043", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_2044", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_2045", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _STDLIB_H) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDLIB_H) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDLIB_H) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDLIB_H) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2046", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2047", "(defined __need___FILE) && (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2062", "!(defined __need___FILE) && !(defined __STRICT_ANSI__)"); +__static_condition_renaming("__static_condition_default_2063", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2064", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2312", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2313", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2314", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2320", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2321", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2322", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2328", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2329", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2330", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2342", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2343", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2349", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2350", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2351", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2376", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2377", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2378", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2381", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2387", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2388", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2389", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2394", "!(defined _FORTIFY_SOURCE) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS)"); +__static_condition_renaming("__static_condition_default_2395", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS)"); +__static_condition_renaming("__static_condition_default_2396", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDLIB_H) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDLIB_H) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDLIB_H) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDLIB_H) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS)"); +__static_condition_renaming("__static_condition_default_2397", "!(defined _FORTIFY_SOURCE) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS)"); +__static_condition_renaming("__static_condition_default_2398", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS)"); +__static_condition_renaming("__static_condition_default_2399", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDLIB_H) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDLIB_H) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDLIB_H) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDLIB_H) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS)"); +__static_condition_renaming("__static_condition_default_2400", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS)"); +__static_condition_renaming("__static_condition_default_2401", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS)"); +__static_condition_renaming("__static_condition_default_2402", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H) && !(defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS)"); +__static_condition_renaming("__static_condition_default_2403", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS)"); +__static_condition_renaming("__static_condition_default_2404", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS)"); +__static_condition_renaming("__static_condition_default_2405", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H) && (defined ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS)"); +__static_condition_renaming("__static_condition_default_2409", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2410", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2411", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && (defined _STDLIB_H) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && (defined _STDLIB_H) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO)"); + +if (__static_condition_default_2411) { __static_parse_error("Unable to parse"); } }; @@ -964,28 +1774,375 @@ typedef ____ssize_t_49 (____io_read_fn_181) (void * (____cookie_178), char * typedef ____ssize_t_49 (____io_write_fn_186) (void * (____cookie_183), const char * (____buf_184), __size_t_1 ____n_185);// L341:L342 typedef int (____io_seek_fn_192) (void * (____cookie_188), ____off64_t_24 * (____pos_189), int ____w_191);// L350 typedef int (____io_close_fn_195) (void * (____cookie_194));// L353 -typedef ___G_fpos_t_77 __fpos_t_279;// L110 -typedef ___G_fpos64_t_85 __fpos_t_281;// L112 -typedef long int __ptrdiff_t_755;// L143:L324 -typedef long unsigned int __size_t_756;// L177:L209 -typedef int __wchar_t_759;// L243:L321 -typedef int __wchar_t_760;// L243:L321 -struct ____anonymous_tag_761_762 { -int __quot_763;// L99 -int __rem_764;// L100 +typedef ____gnuc_va_list_86 __va_list_279;// L79 +typedef ____off_t_23 __off_t_281;// L90 +typedef ____off64_t_24 __off_t_283;// L92 +typedef ____ssize_t_49 __ssize_t_285;// L102 +typedef ___G_fpos_t_77 __fpos_t_287;// L110 +typedef ___G_fpos64_t_85 __fpos_t_289;// L112 +extern const char * const __sys_errlist_830[];// L27 +typedef long int __ptrdiff_t_1092;// L143:L324 +typedef long unsigned int __size_t_1093;// L177:L209 +typedef int __wchar_t_1094;// L243:L321 +enum ____anonymous_tag_1098_1099 { +__P_ALL_1095, +__P_PID_1096, +__P_PGID_1097, +}; +typedef enum ____anonymous_tag_1098_1099 __idtype_t_1100;// L50:L55 +typedef unsigned char ____u_char_1101;// L30 +typedef unsigned short int ____u_short_1102;// L31 +typedef unsigned int ____u_int_1103;// L32 +typedef unsigned long int ____u_long_1104;// L33 +typedef signed char ____int8_t_1105;// L36 +typedef unsigned char ____uint8_t_1106;// L37 +typedef signed short int ____int16_t_1107;// L38 +typedef unsigned short int ____uint16_t_1108;// L39 +typedef signed int ____int32_t_1109;// L40 +typedef unsigned int ____uint32_t_1110;// L41 +typedef signed long int ____int64_t_1111;// L43 +typedef unsigned long int ____uint64_t_1112;// L44 +typedef long int ____quad_t_1113;// L52 +typedef unsigned long int ____u_quad_t_1114;// L53 +typedef unsigned long int ____dev_t_1115;// L109:L124 +typedef unsigned int ____uid_t_1116;// L92:L125 +typedef unsigned int ____gid_t_1117;// L92:L126 +typedef unsigned long int ____ino_t_1118;// L94:L127 +typedef unsigned long int ____ino64_t_1119;// L109:L128 +typedef unsigned int ____mode_t_1120;// L92:L129 +typedef unsigned long int ____nlink_t_1121;// L94:L130 +typedef long int ____off_t_1122;// L93:L131 +typedef long int ____off64_t_1123;// L108:L132 +typedef int ____pid_t_1124;// L91:L133 +struct ____anonymous_tag_1125_1126 { +int ____val_1127[2];// L72 +}; +typedef struct ____anonymous_tag_1125_1126 ____fsid_t_1128;// L72:L134 +typedef long int ____clock_t_1129;// L93:L135 +typedef unsigned long int ____rlim_t_1130;// L94:L136 +typedef unsigned long int ____rlim64_t_1131;// L109:L137 +typedef unsigned int ____id_t_1132;// L92:L138 +typedef long int ____time_t_1133;// L93:L139 +typedef unsigned int ____useconds_t_1134;// L92:L140 +typedef long int ____suseconds_t_1135;// L93:L141 +typedef int ____daddr_t_1136;// L91:L143 +typedef int ____key_t_1137;// L91:L144 +typedef int ____clockid_t_1138;// L91:L147 +typedef void * (____timer_t_1139);// L70:L150 +typedef long int ____blksize_t_1140;// L93:L153 +typedef long int ____blkcnt_t_1141;// L93:L158 +typedef long int ____blkcnt64_t_1142;// L108:L159 +typedef unsigned long int ____fsblkcnt_t_1143;// L94:L162 +typedef unsigned long int ____fsblkcnt64_t_1144;// L109:L163 +typedef unsigned long int ____fsfilcnt_t_1145;// L94:L166 +typedef unsigned long int ____fsfilcnt64_t_1146;// L109:L167 +typedef long int ____fsword_t_1147;// L93:L170 +typedef long int ____ssize_t_1148;// L110:L172 +typedef long int ____syscall_slong_t_1149;// L93:L175 +typedef unsigned long int ____syscall_ulong_t_1150;// L94:L177 +typedef ____off64_t_1123 ____loff_t_1151;// L181 +typedef ____quad_t_1113 * (____qaddr_t_1153);// L182 +typedef char * (____caddr_t_1154);// L183 +typedef long int ____intptr_t_1155;// L110:L186 +typedef unsigned int ____socklen_t_1156;// L92:L189 +struct ____anonymous_tag_1166_1167 { +unsigned int ____w_termsig_1168 : 7;// L72 +unsigned int ____w_coredump_1169 : 1;// L73 +unsigned int ____w_retcode_1170 : 8;// L74 +unsigned int __anon_id_0_1171 : 16;// L75 +}; +struct ____anonymous_tag_1172_1173 { +unsigned int ____w_stopval_1174 : 8;// L87 +unsigned int ____w_stopsig_1175 : 8;// L88 +unsigned int __anon_id_1_1176 : 16;// L89 +}; +union __wait_1177 { +int __w_status_1178;// L68 +struct ____anonymous_tag_1166_1167 ____wait_terminated_1179;// L69 +struct ____anonymous_tag_1172_1173 ____wait_stopped_1180;// L84 }; -typedef struct ____anonymous_tag_761_762 __div_t_765;// L97:L101 -struct ____anonymous_tag_766_767 { -long int __quot_768;// L107 -long int __rem_769;// L108 +union ____anonymous_tag_1181_1182 { +union __wait_1177 * (____uptr_1183);// L69 +int * (____iptr_1184);// L70 }; -typedef struct ____anonymous_tag_766_767 __ldiv_t_770;// L105:L109 -struct ____anonymous_tag_771_772 { -long long int __quot_773;// L119 -long long int __rem_774;// L120 +typedef union ____anonymous_tag_1181_1182 ____WAIT_STATUS_1185;// L67:L71 +struct ____anonymous_tag_1186_1187 { +int __quot_1188;// L99 +int __rem_1189;// L100 }; -typedef struct ____anonymous_tag_771_772 __lldiv_t_775;// L117:L121 -typedef int (* (____compar_fn_t_876)) (const void *, const void *);// L741 +typedef struct ____anonymous_tag_1186_1187 __div_t_1190;// L97:L101 +struct ____anonymous_tag_1191_1192 { +long int __quot_1193;// L107 +long int __rem_1194;// L108 +}; +typedef struct ____anonymous_tag_1191_1192 __ldiv_t_1195;// L105:L109 +struct ____anonymous_tag_1196_1197 { +long long int __quot_1198;// L119 +long long int __rem_1199;// L120 +}; +typedef struct ____anonymous_tag_1196_1197 __lldiv_t_1200;// L117:L121 +typedef unsigned char ____u_char_1264;// L30 +typedef unsigned short int ____u_short_1265;// L31 +typedef unsigned int ____u_int_1266;// L32 +typedef unsigned long int ____u_long_1267;// L33 +typedef signed char ____int8_t_1268;// L36 +typedef unsigned char ____uint8_t_1269;// L37 +typedef signed short int ____int16_t_1270;// L38 +typedef unsigned short int ____uint16_t_1271;// L39 +typedef signed int ____int32_t_1272;// L40 +typedef unsigned int ____uint32_t_1273;// L41 +typedef signed long int ____int64_t_1274;// L43 +typedef unsigned long int ____uint64_t_1275;// L44 +typedef long int ____quad_t_1276;// L52 +typedef unsigned long int ____u_quad_t_1277;// L53 +typedef unsigned long int ____dev_t_1278;// L109:L124 +typedef unsigned int ____uid_t_1279;// L92:L125 +typedef unsigned int ____gid_t_1280;// L92:L126 +typedef unsigned long int ____ino_t_1281;// L94:L127 +typedef unsigned long int ____ino64_t_1282;// L109:L128 +typedef unsigned int ____mode_t_1283;// L92:L129 +typedef unsigned long int ____nlink_t_1284;// L94:L130 +typedef long int ____off_t_1285;// L93:L131 +typedef long int ____off64_t_1286;// L108:L132 +typedef int ____pid_t_1287;// L91:L133 +struct ____anonymous_tag_1288_1289 { +int ____val_1290[2];// L72 +}; +typedef struct ____anonymous_tag_1288_1289 ____fsid_t_1291;// L72:L134 +typedef long int ____clock_t_1292;// L93:L135 +typedef unsigned long int ____rlim_t_1293;// L94:L136 +typedef unsigned long int ____rlim64_t_1294;// L109:L137 +typedef unsigned int ____id_t_1295;// L92:L138 +typedef long int ____time_t_1296;// L93:L139 +typedef unsigned int ____useconds_t_1297;// L92:L140 +typedef long int ____suseconds_t_1298;// L93:L141 +typedef int ____daddr_t_1299;// L91:L143 +typedef int ____key_t_1300;// L91:L144 +typedef int ____clockid_t_1301;// L91:L147 +typedef void * (____timer_t_1302);// L70:L150 +typedef long int ____blksize_t_1303;// L93:L153 +typedef long int ____blkcnt_t_1304;// L93:L158 +typedef long int ____blkcnt64_t_1305;// L108:L159 +typedef unsigned long int ____fsblkcnt_t_1306;// L94:L162 +typedef unsigned long int ____fsblkcnt64_t_1307;// L109:L163 +typedef unsigned long int ____fsfilcnt_t_1308;// L94:L166 +typedef unsigned long int ____fsfilcnt64_t_1309;// L109:L167 +typedef long int ____fsword_t_1310;// L93:L170 +typedef long int ____ssize_t_1311;// L110:L172 +typedef long int ____syscall_slong_t_1312;// L93:L175 +typedef unsigned long int ____syscall_ulong_t_1313;// L94:L177 +typedef ____off64_t_1286 ____loff_t_1314;// L181 +typedef ____quad_t_1276 * (____qaddr_t_1316);// L182 +typedef char * (____caddr_t_1317);// L183 +typedef long int ____intptr_t_1318;// L110:L186 +typedef unsigned int ____socklen_t_1319;// L92:L189 +typedef ____u_char_2 __u_char_1320;// L33 +typedef ____u_char_1101 __u_char_1321;// L33 +typedef ____u_char_1264 __u_char_1322;// L33 +typedef ____u_short_3 __u_short_1323;// L34 +typedef ____u_short_1102 __u_short_1324;// L34 +typedef ____u_short_1265 __u_short_1325;// L34 +typedef ____u_int_4 __u_int_1326;// L35 +typedef ____u_int_1103 __u_int_1327;// L35 +typedef ____u_int_1266 __u_int_1328;// L35 +typedef ____u_long_5 __u_long_1329;// L36 +typedef ____u_long_1104 __u_long_1330;// L36 +typedef ____u_long_1267 __u_long_1331;// L36 +typedef ____quad_t_14 __quad_t_1332;// L37 +typedef ____quad_t_1113 __quad_t_1333;// L37 +typedef ____quad_t_1276 __quad_t_1334;// L37 +typedef ____u_quad_t_15 __u_quad_t_1335;// L38 +typedef ____u_quad_t_1114 __u_quad_t_1336;// L38 +typedef ____u_quad_t_1277 __u_quad_t_1337;// L38 +typedef ____fsid_t_29 __fsid_t_1338;// L39 +typedef ____fsid_t_1128 __fsid_t_1339;// L39 +typedef ____fsid_t_1291 __fsid_t_1340;// L39 +typedef ____loff_t_52 __loff_t_1342;// L44 +typedef ____loff_t_1151 __loff_t_1343;// L44 +typedef ____loff_t_1314 __loff_t_1344;// L44 +typedef ____loff_t_52 __loff_t_1346;// L44 +typedef ____loff_t_1151 __loff_t_1347;// L44 +typedef ____loff_t_1314 __loff_t_1348;// L44 +typedef ____ino64_t_20 __ino_t_1350;// L50 +typedef ____ino64_t_1119 __ino_t_1351;// L50 +typedef ____ino64_t_1282 __ino_t_1352;// L50 +typedef ____ino_t_19 __ino_t_1354;// L48 +typedef ____ino_t_1118 __ino_t_1355;// L48 +typedef ____ino_t_1281 __ino_t_1356;// L48 +typedef ____dev_t_16 __dev_t_1358;// L60 +typedef ____dev_t_1115 __dev_t_1359;// L60 +typedef ____dev_t_1278 __dev_t_1360;// L60 +typedef ____gid_t_18 __gid_t_1362;// L65 +typedef ____gid_t_1117 __gid_t_1363;// L65 +typedef ____gid_t_1280 __gid_t_1364;// L65 +typedef ____gid_t_18 __gid_t_1366;// L65 +typedef ____gid_t_1117 __gid_t_1367;// L65 +typedef ____gid_t_1280 __gid_t_1368;// L65 +typedef ____mode_t_21 __mode_t_1370;// L70 +typedef ____mode_t_1120 __mode_t_1371;// L70 +typedef ____mode_t_1283 __mode_t_1372;// L70 +typedef ____nlink_t_22 __nlink_t_1374;// L75 +typedef ____nlink_t_1121 __nlink_t_1375;// L75 +typedef ____nlink_t_1284 __nlink_t_1376;// L75 +typedef ____uid_t_17 __uid_t_1378;// L80 +typedef ____uid_t_1116 __uid_t_1379;// L80 +typedef ____uid_t_1279 __uid_t_1380;// L80 +typedef ____uid_t_17 __uid_t_1382;// L80 +typedef ____uid_t_1116 __uid_t_1383;// L80 +typedef ____uid_t_1279 __uid_t_1384;// L80 +typedef ____off64_t_1123 __off_t_1386;// L88 +typedef ____off64_t_1286 __off_t_1387;// L88 +typedef ____off_t_1122 __off_t_1389;// L86 +typedef ____off_t_1285 __off_t_1390;// L86 +typedef ____pid_t_25 __pid_t_1392;// L98 +typedef ____pid_t_1124 __pid_t_1393;// L98 +typedef ____pid_t_1287 __pid_t_1394;// L98 +typedef ____pid_t_1124 __pid_t_1396;// L98 +typedef ____pid_t_1287 __pid_t_1397;// L98 +typedef ____id_t_33 __id_t_1399;// L104 +typedef ____id_t_1132 __id_t_1400;// L104 +typedef ____id_t_1295 __id_t_1401;// L104 +typedef ____ssize_t_1148 __ssize_t_1403;// L109 +typedef ____ssize_t_1311 __ssize_t_1404;// L109 +typedef ____daddr_t_37 __daddr_t_1406;// L115 +typedef ____daddr_t_1136 __daddr_t_1407;// L115 +typedef ____daddr_t_1299 __daddr_t_1408;// L115 +typedef ____caddr_t_55 __caddr_t_1410;// L116 +typedef ____caddr_t_1154 __caddr_t_1411;// L116 +typedef ____caddr_t_1317 __caddr_t_1412;// L116 +typedef ____key_t_38 __key_t_1413;// L122 +typedef ____key_t_1137 __key_t_1414;// L122 +typedef ____key_t_1300 __key_t_1415;// L122 +typedef ____key_t_38 __key_t_1417;// L122 +typedef ____key_t_1137 __key_t_1418;// L122 +typedef ____key_t_1300 __key_t_1419;// L122 +typedef ____clock_t_30 __clock_t_1421;// L59 +typedef ____clock_t_1129 __clock_t_1422;// L59 +typedef ____clock_t_1292 __clock_t_1423;// L59 +typedef ____time_t_34 __time_t_1425;// L75 +typedef ____time_t_1133 __time_t_1426;// L75 +typedef ____time_t_1296 __time_t_1427;// L75 +typedef ____clockid_t_39 __clockid_t_1429;// L91 +typedef ____clockid_t_1138 __clockid_t_1430;// L91 +typedef ____clockid_t_1301 __clockid_t_1431;// L91 +typedef ____timer_t_40 __timer_t_1433;// L103 +typedef ____timer_t_1139 __timer_t_1434;// L103 +typedef ____timer_t_1302 __timer_t_1435;// L103 +typedef unsigned long int __ulong_1437;// L150 +typedef unsigned long int __ulong_1438;// L150 +typedef unsigned long int __ulong_1439;// L150 +typedef unsigned short int __ushort_1440;// L151 +typedef unsigned int __uint_1441;// L152 +typedef int __int8_t_1442;// L188:L194 +typedef int __int16_t_1443;// L188:L195 +typedef int __int32_t_1444;// L188:L196 +typedef int __int64_t_1445;// L188:L197 +typedef unsigned int __u_int8_t_1446;// L190:L200 +typedef unsigned int __u_int16_t_1447;// L190:L201 +typedef unsigned int __u_int32_t_1448;// L190:L202 +typedef unsigned int __u_int64_t_1449;// L190:L203 +typedef int __register_t_1450;// L205 +typedef int ____sig_atomic_t_1460;// L22 +struct ____anonymous_tag_1461_1462 { +unsigned long int ____val_1463[( 1024 / ( 8 * sizeof(unsigned long) ) )];// L29 +}; +typedef struct ____anonymous_tag_1461_1462 ____sigset_t_1464;// L27:L30 +typedef ____sigset_t_1464 __sigset_t_1465;// L37 +struct __timespec_1466 { +____time_t_34 __tv_sec_1467;// L0 +____time_t_1133 __tv_sec_1468;// L0 +____time_t_1296 __tv_sec_1469;// L0 +____syscall_slong_t_50 __tv_nsec_1471;// L0 +____syscall_slong_t_1149 __tv_nsec_1472;// L0 +____syscall_slong_t_1312 __tv_nsec_1473;// L0 +}; +struct __timeval_1476 { +____time_t_34 __tv_sec_1477;// L0 +____time_t_1133 __tv_sec_1478;// L0 +____time_t_1296 __tv_sec_1479;// L0 +____suseconds_t_36 __tv_usec_1481;// L0 +____suseconds_t_1135 __tv_usec_1482;// L0 +____suseconds_t_1298 __tv_usec_1483;// L0 +}; +typedef ____suseconds_t_36 __suseconds_t_1486;// L48 +typedef ____suseconds_t_1135 __suseconds_t_1487;// L48 +typedef ____suseconds_t_1298 __suseconds_t_1488;// L48 +typedef long int ____fd_mask_1490;// L54 +typedef long int ____fd_mask_1491;// L54 +struct ____anonymous_tag_1492_1493 { +____fd_mask_1490 ____fds_bits_1494[1024 / ( 8 * ( int ) sizeof(long) )];// L0 +____fd_mask_1491 ____fds_bits_1496[1024 / ( 8 * ( int ) sizeof(long) )];// L0 +}; +typedef struct ____anonymous_tag_1492_1493 __fd_set_1499;// L64:L75 +typedef ____fd_mask_1490 __fd_mask_1500;// L82 +typedef ____fd_mask_1491 __fd_mask_1501;// L82 +typedef ____blksize_t_41 __blksize_t_1549;// L228 +typedef ____blksize_t_1140 __blksize_t_1550;// L228 +typedef ____blksize_t_1303 __blksize_t_1551;// L228 +typedef ____blkcnt_t_42 __blkcnt_t_1553;// L235 +typedef ____blkcnt_t_1141 __blkcnt_t_1554;// L235 +typedef ____blkcnt_t_1304 __blkcnt_t_1555;// L235 +typedef ____fsblkcnt_t_44 __fsblkcnt_t_1557;// L239 +typedef ____fsblkcnt_t_1143 __fsblkcnt_t_1558;// L239 +typedef ____fsblkcnt_t_1306 __fsblkcnt_t_1559;// L239 +typedef ____blkcnt64_t_43 __blkcnt_t_1561;// L248 +typedef ____blkcnt64_t_1142 __blkcnt_t_1562;// L248 +typedef ____blkcnt64_t_1305 __blkcnt_t_1563;// L248 +typedef ____fsblkcnt64_t_45 __fsblkcnt_t_1565;// L252 +typedef ____fsblkcnt64_t_1144 __fsblkcnt_t_1566;// L252 +typedef ____fsblkcnt64_t_1307 __fsblkcnt_t_1567;// L252 +typedef ____fsfilcnt_t_46 __fsfilcnt_t_1569;// L243 +typedef ____fsfilcnt_t_1145 __fsfilcnt_t_1570;// L243 +typedef ____fsfilcnt_t_1308 __fsfilcnt_t_1571;// L243 +typedef ____fsfilcnt64_t_47 __fsfilcnt_t_1573;// L256 +typedef ____fsfilcnt64_t_1146 __fsfilcnt_t_1574;// L256 +typedef ____fsfilcnt64_t_1309 __fsfilcnt_t_1575;// L256 +typedef unsigned long int __pthread_t_1577;// L60 +union __pthread_attr_t_1578 { +char ____size_1579[56];// L65 +long int ____align_1580;// L66 +}; +typedef union __pthread_attr_t_1578 __pthread_attr_t_1581;// L69 +struct ____pthread_internal_list_1583 { +struct __forward_tag_reference_1582 * (____prev_1584);// L0 +struct __forward_tag_reference_1582 * (____next_1585);// L0 +}; +typedef struct ____pthread_internal_list_1583 ____pthread_list_t_1586;// L75:L79 +typedef struct ____pthread_internal_list_1583 ____pthread_list_t_1587;// L75:L79 +struct ____pthread_mutex_s_1588 { +int ____lock_1589;// L94 +unsigned int ____count_1590;// L95 +int ____owner_1591;// L96 +unsigned int ____nusers_1592;// L98 +int ____kind_1593;// L102 +short ____spins_1594;// L104 +short ____elision_1595;// L105 +____pthread_list_t_1586 ____list_1596;// L0 +____pthread_list_t_1587 ____list_1597;// L0 +}; +union ____anonymous_tag_1598_1599 { +struct ____pthread_mutex_s_1588 ____data_1600;// L92 +char ____size_1601[40];// L126 +long int ____align_1602;// L127 +}; +typedef union ____anonymous_tag_1598_1599 __pthread_mutex_t_1603;// L90:L128 +union ____anonymous_tag_1604_1605 { +char ____size_1606[4];// L132 +int ____align_1607;// L133 +}; +typedef union ____anonymous_tag_1604_1605 __pthread_mutexattr_t_1608;// L130:L134 +typedef int (* (____compar_fn_t_1740)) (const void *, const void *);// L741 +typedef long int __ptrdiff_t_2036;// L143:L324 +typedef long unsigned int __size_t_2037;// L177:L209 +struct ____locale_struct_2137 { +struct __forward_tag_reference_2136 * (____locales_2138[13]);// L0 +const unsigned short int * (____ctype_b_2139);// L33 +const int * (____ctype_tolower_2140);// L34 +const int * (____ctype_toupper_2141);// L35 +const char * (____names_2142[13]);// L38 +}; +typedef struct ____locale_struct_2137 * (____locale_t_2143);// L27:L39 +typedef ____locale_t_2143 __locale_t_2144;// L42 struct __forward_tag_reference_89 { // generated union of struct variations union { @@ -993,6 +2150,11 @@ struct ___IO_marker_90 ___IO_marker_90; }; }; +struct __forward_tag_reference_1582 { // generated union of struct variations +union { +}; +}; + struct __forward_tag_reference_58 { // generated union of struct variations union { struct ___IO_FILE_99 ___IO_FILE_99; @@ -1000,6 +2162,11 @@ struct ___IO_FILE_124 ___IO_FILE_124; }; }; +struct __forward_tag_reference_2136 { // generated union of struct variations +union { +}; +}; + struct __forward_tag_reference_87 { // generated union of struct variations union { }; @@ -1133,375 +2300,895 @@ extern void (___IO_free_backup_area_276) (___IO_FILE_171 *);// L469 extern void (___IO_free_backup_area_277) (___IO_FILE_172 *);// L469 // typedef moved to top of scope // typedef moved to top of scope -extern struct ___IO_FILE_99 * (__stdin_283);// L168 -extern struct ___IO_FILE_124 * (__stdin_284);// L168 -extern struct ___IO_FILE_99 * (__stdout_286);// L169 -extern struct ___IO_FILE_124 * (__stdout_287);// L169 -extern struct ___IO_FILE_99 * (__stderr_289);// L170 -extern struct ___IO_FILE_124 * (__stderr_290);// L170 -extern int (__remove_293) (const char * (____filename_292));// L178 -extern int (__rename_296) (const char * (____old_294), const char * (____new_295));// L180 -extern __FILE_59 * ((__tmpfile_297) (void ));// L195 -extern __FILE_59 * ((__tmpfile_303) (void ));// L198 -extern __FILE_59 * ((__tmpfile_301) (void ));// L195 -extern __FILE_59 * ((__tmpfile_299) (void ));// L198 -extern char * ((__tmpnam_306) (char * (____s_305)));// L209 -extern char * ((__tmpnam_307) (char * (____s_305)));// L209 -extern int (__fclose_310) (__FILE_59 * (____stream_308));// L237 -extern int (__fflush_314) (__FILE_59 * (____stream_312));// L242 -extern __FILE_59 * ((__fopen_318) (const char * __restrict ____filename_316, const char * __restrict ____modes_317));// L272:L273 -extern __FILE_59 * ((__fopen_320) (const char * __restrict ____filename_316, const char * __restrict ____modes_317));// L272:L273 -extern __FILE_59 * ((__fopen_328) (const char * __restrict ____filename_326, const char * __restrict ____modes_327));// L283:L285 -extern __FILE_59 * ((__fopen_330) (const char * __restrict ____filename_326, const char * __restrict ____modes_327));// L283:L285 -extern __FILE_59 * ((__freopen_336) (const char * __restrict ____filename_322, const char * __restrict ____modes_323, __FILE_59 * __restrict ____stream_324));// L278:L280 -extern __FILE_59 * ((__freopen_342) (const char * __restrict ____filename_332, const char * __restrict ____modes_333, __FILE_59 * __restrict ____stream_334));// L286:L289 -extern __FILE_59 * ((__freopen_340) (const char * __restrict ____filename_322, const char * __restrict ____modes_323, __FILE_59 * __restrict ____stream_324));// L278:L280 -extern __FILE_59 * ((__freopen_338) (const char * __restrict ____filename_332, const char * __restrict ____modes_333, __FILE_59 * __restrict ____stream_334));// L286:L289 -extern void (__setbuf_347) (__FILE_59 * __restrict ____stream_344, char * __restrict ____buf_346);// L332 -extern int (__setvbuf_354) (__FILE_59 * __restrict ____stream_349, char * __restrict ____buf_351, int ____modes_352, __size_t_1 ____n_353);// L336:L337 -extern int (__fprintf_359) (__FILE_59 * __restrict ____stream_356, const char * __restrict ____format_358, ... );// L356:L357 -extern int (__printf_362) (const char * __restrict ____format_361, ... );// L362 -extern int (__sprintf_365) (char * __restrict ____s_363, const char * __restrict ____format_364, ... );// L364:L365 -extern int (__vfprintf_371) (__FILE_59 * __restrict ____s_366, const char * __restrict ____format_368, ____gnuc_va_list_86 ____arg_369);// L371:L372 -extern int (__vprintf_378) (const char * __restrict ____format_375, ____gnuc_va_list_86 ____arg_376);// L377 -extern int (__vsprintf_384) (char * __restrict ____s_380, const char * __restrict ____format_381, ____gnuc_va_list_86 ____arg_382);// L379:L380 -extern int (__snprintf_389) (char * __restrict ____s_386, __size_t_1 ____maxlen_387, const char * __restrict ____format_388, ... );// L386:L388 -extern int (__vsnprintf_395) (char * __restrict ____s_390, __size_t_1 ____maxlen_391, const char * __restrict ____format_392, ____gnuc_va_list_86 ____arg_393);// L390:L392 -extern int (__fscanf_400) (__FILE_59 * __restrict ____stream_397, const char * __restrict ____format_399, ... );// L425:L426 -extern int (__fscanf_402) (__FILE_59 * __restrict ____stream_397, const char * __restrict ____format_399, ... );// L425:L426 -extern int (__scanf_405) (const char * __restrict ____format_404, ... );// L431 -extern int (__scanf_406) (const char * __restrict ____format_404, ... );// L431 -extern int (__sscanf_409) (const char * __restrict ____s_407, const char * __restrict ____format_408, ... );// L433:L434 - - - - - -extern int (__vfscanf_433) (__FILE_59 * __restrict ____s_428, const char * __restrict ____format_430, ____gnuc_va_list_86 ____arg_431);// L471:L473 -extern int (__vfscanf_437) (__FILE_59 * __restrict ____s_428, const char * __restrict ____format_430, ____gnuc_va_list_86 ____arg_431);// L471:L473 -extern int (__vscanf_444) (const char * __restrict ____format_441, ____gnuc_va_list_86 ____arg_442);// L479:L480 -extern int (__vscanf_446) (const char * __restrict ____format_441, ____gnuc_va_list_86 ____arg_442);// L479:L480 -extern int (__vsscanf_452) (const char * __restrict ____s_448, const char * __restrict ____format_449, ____gnuc_va_list_86 ____arg_450);// L483:L485 - - - - - -extern int (__fgetc_487) (__FILE_59 * (____stream_485));// L531 -extern int (__getc_491) (__FILE_59 * (____stream_489));// L532 -extern int (__getchar_493) (void );// L538 -extern int (__fputc_497) (int ____c_494, __FILE_59 * (____stream_495));// L573 -extern int (__putc_502) (int ____c_499, __FILE_59 * (____stream_500));// L574 -extern int (__putchar_505) (int ____c_504);// L580 -extern char * ((__fgets_510) (char * __restrict ____s_506, int ____n_507, __FILE_59 * __restrict ____stream_508));// L622:L623 -extern char * ((__fgets_512) (char * __restrict ____s_506, int ____n_507, __FILE_59 * __restrict ____stream_508));// L622:L623 -extern int (__fputs_517) (const char * __restrict ____s_514, __FILE_59 * __restrict ____stream_515);// L689 -extern int (__puts_520) (const char * (____s_519));// L695 -extern int (__ungetc_524) (int ____c_521, __FILE_59 * (____stream_522));// L702 -extern int (__fseek_546) (__FILE_59 * (____stream_542), long int ____off_544, int ____whence_545);// L749 -extern long int (__ftell_550) (__FILE_59 * (____stream_548));// L754 -extern long int (__ftell_552) (__FILE_59 * (____stream_548));// L754 -extern void (__rewind_556) (__FILE_59 * (____stream_554));// L759 -extern int (__fgetpos_562) (__FILE_59 * __restrict ____stream_558, __fpos_t_279 * __restrict ____pos_560);// L798 -extern int (__fgetpos_574) (__FILE_59 * __restrict ____stream_570, __fpos_t_281 * __restrict ____pos_572);// L806:L807 -extern int (__fsetpos_582) (__FILE_59 * (____stream_566), const __fpos_t_279 * (____pos_568));// L803 -extern int (__fsetpos_586) (__FILE_59 * (____stream_578), const __fpos_t_281 * (____pos_580));// L808:L809 -extern void (__clearerr_592) (__FILE_59 * (____stream_590));// L826 -extern int (__feof_596) (__FILE_59 * (____stream_594));// L828 -extern int (__feof_598) (__FILE_59 * (____stream_594));// L828 -extern int (__ferror_602) (__FILE_59 * (____stream_600));// L830 -extern int (__ferror_604) (__FILE_59 * (____stream_600));// L830 -extern void (__perror_607) (const char * (____s_606));// L846 -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -extern int (____sprintf_chk_617) (char * __restrict ____s_613, int ____flag_614, __size_t_1 ____slen_615, const char * __restrict ____format_616, ... );// L23:L24 -extern int (____vsprintf_chk_624) (char * __restrict ____s_618, int ____flag_619, __size_t_1 ____slen_620, const char * __restrict ____format_621, ____gnuc_va_list_86 ____ap_622);// L25:L27 -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -extern int (____snprintf_chk_638) (char * __restrict ____s_633, __size_t_1 ____n_634, int ____flag_635, __size_t_1 ____slen_636, const char * __restrict ____format_637, ... );// L52:L54 -extern int (____vsnprintf_chk_646) (char * __restrict ____s_639, __size_t_1 ____n_640, int ____flag_641, __size_t_1 ____slen_642, const char * __restrict ____format_643, ____gnuc_va_list_86 ____ap_644);// L55:L57 -/* no function due to type errors in the function prototype */ +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern struct ___IO_FILE_99 * (__stdin_291);// L168 +extern struct ___IO_FILE_124 * (__stdin_292);// L168 +extern struct ___IO_FILE_99 * (__stdout_294);// L169 +extern struct ___IO_FILE_124 * (__stdout_295);// L169 +extern struct ___IO_FILE_99 * (__stderr_297);// L170 +extern struct ___IO_FILE_124 * (__stderr_298);// L170 +extern int (__remove_301) (const char * (____filename_300));// L178 +extern int (__rename_304) (const char * (____old_302), const char * (____new_303));// L180 +extern int (__renameat_309) (int ____oldfd_305, const char * (____old_306), int ____newfd_307, const char * (____new_308));// L185:L186 +extern __FILE_59 * ((__tmpfile_310) (void ));// L195 +extern __FILE_59 * ((__tmpfile_316) (void ));// L198 +extern __FILE_59 * ((__tmpfile_314) (void ));// L195 +extern __FILE_59 * ((__tmpfile_312) (void ));// L198 +extern char * ((__tmpnam_319) (char * (____s_318)));// L209 +extern char * ((__tmpnam_320) (char * (____s_318)));// L209 +extern char * ((__tmpnam_r_322) (char * (____s_321)));// L215 +extern char * ((__tmpnam_r_323) (char * (____s_321)));// L215 +extern char * ((__tempnam_326) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 +extern char * ((__tempnam_327) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 +extern int (__fclose_330) (__FILE_59 * (____stream_328));// L237 +extern int (__fclose_332) (__FILE_59 * (____stream_328));// L237 +extern int (__fflush_336) (__FILE_59 * (____stream_334));// L242 +extern int (__fflush_unlocked_340) (__FILE_59 * (____stream_338));// L252 +extern __FILE_59 * ((__fopen_344) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 +extern __FILE_59 * ((__fopen_346) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 +extern __FILE_59 * ((__fopen_354) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 +extern __FILE_59 * ((__fopen_356) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 +extern __FILE_59 * ((__freopen_362) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 +extern __FILE_59 * ((__freopen_368) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 +extern __FILE_59 * ((__freopen_366) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 +extern __FILE_59 * ((__freopen_364) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 +extern __FILE_59 * ((__fdopen_372) (int ____fd_370, const char * (____modes_371)));// L306 +extern __FILE_59 * ((__fdopen_374) (int ____fd_370, const char * (____modes_371)));// L306 +extern __FILE_59 * ((__fmemopen_379) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 +extern __FILE_59 * ((__fmemopen_381) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 +extern __FILE_59 * ((__open_memstream_385) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 +extern __FILE_59 * ((__open_memstream_387) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 +extern void (__setbuf_392) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 +extern void (__setbuf_394) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 +extern int (__setvbuf_401) (__FILE_59 * __restrict ____stream_396, char * __restrict ____buf_398, int ____modes_399, __size_t_1 ____n_400);// L336:L337 +extern void (__setbuffer_407) (__FILE_59 * __restrict ____stream_403, char * __restrict ____buf_405, __size_t_1 ____size_406);// L343:L344 +extern void (__setlinebuf_411) (__FILE_59 * (____stream_409));// L347 +extern int (__fprintf_416) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 +extern int (__fprintf_418) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 +extern int (__printf_421) (const char * __restrict ____format_420, ... );// L362 +extern int (__sprintf_424) (char * __restrict ____s_422, const char * __restrict ____format_423, ... );// L364:L365 +extern int (__vfprintf_430) (__FILE_59 * __restrict ____s_425, const char * __restrict ____format_427, ____gnuc_va_list_86 ____arg_428);// L371:L372 +extern int (__vprintf_437) (const char * __restrict ____format_434, ____gnuc_va_list_86 ____arg_435);// L377 +extern int (__vsprintf_443) (char * __restrict ____s_439, const char * __restrict ____format_440, ____gnuc_va_list_86 ____arg_441);// L379:L380 +extern int (__snprintf_448) (char * __restrict ____s_445, __size_t_1 ____maxlen_446, const char * __restrict ____format_447, ... );// L386:L388 +extern int (__vsnprintf_454) (char * __restrict ____s_449, __size_t_1 ____maxlen_450, const char * __restrict ____format_451, ____gnuc_va_list_86 ____arg_452);// L390:L392 +extern int (__vdprintf_460) (int ____fd_456, const char * __restrict ____fmt_457, ____gnuc_va_list_86 ____arg_458);// L412:L414 +extern int (__dprintf_464) (int ____fd_462, const char * __restrict ____fmt_463, ... );// L415:L416 +extern int (__fscanf_468) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_470) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_472) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_474) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__scanf_477) (const char * __restrict ____format_476, ... );// L431 +extern int (__scanf_478) (const char * __restrict ____format_476, ... );// L431 +extern int (__sscanf_481) (const char * __restrict ____s_479, const char * __restrict ____format_480, ... );// L433:L434 + + + + + + + +extern int (__vfscanf_509) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 +extern int (__vfscanf_513) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 +extern int (__vscanf_520) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 +extern int (__vscanf_522) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 +extern int (__vsscanf_528) (const char * __restrict ____s_524, const char * __restrict ____format_525, ____gnuc_va_list_86 ____arg_526);// L483:L485 + + + + + +extern int (__fgetc_563) (__FILE_59 * (____stream_561));// L531 +extern int (__getc_567) (__FILE_59 * (____stream_565));// L532 +extern int (__getchar_569) (void );// L538 +extern int (__getc_unlocked_572) (__FILE_59 * (____stream_570));// L550 +extern int (__getchar_unlocked_574) (void );// L551 +extern int (__fgetc_unlocked_577) (__FILE_59 * (____stream_575));// L561 +extern int (__fputc_582) (int ____c_579, __FILE_59 * (____stream_580));// L573 +extern int (__fputc_584) (int ____c_579, __FILE_59 * (____stream_580));// L573 +extern int (__putc_589) (int ____c_586, __FILE_59 * (____stream_587));// L574 +extern int (__putchar_592) (int ____c_591);// L580 +extern int (__fputc_unlocked_596) (int ____c_593, __FILE_59 * (____stream_594));// L594 +extern int (__putc_unlocked_601) (int ____c_598, __FILE_59 * (____stream_599));// L602 +extern int (__putchar_unlocked_604) (int ____c_603);// L603 +extern int (__getw_607) (__FILE_59 * (____stream_605));// L610 +extern int (__putw_612) (int ____w_609, __FILE_59 * (____stream_610));// L613 +extern char * ((__fgets_618) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_620) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_622) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_624) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern ____ssize_t_49 (____getdelim_631) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 +extern ____ssize_t_49 (____getdelim_635) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 +extern ____ssize_t_49 (__getdelim_644) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 +extern ____ssize_t_49 (__getdelim_648) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 +extern ____ssize_t_49 (__getline_656) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 +extern ____ssize_t_49 (__getline_660) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 +extern int (__fputs_667) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 +extern int (__fputs_669) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 +extern int (__puts_672) (const char * (____s_671));// L695 +extern int (__ungetc_676) (int ____c_673, __FILE_59 * (____stream_674));// L702 +extern int (__fseek_714) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 +extern int (__fseek_716) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 +extern long int (__ftell_720) (__FILE_59 * (____stream_718));// L754 +extern long int (__ftell_722) (__FILE_59 * (____stream_718));// L754 +extern void (__rewind_726) (__FILE_59 * (____stream_724));// L759 +extern int (__fseeko_733) (__FILE_59 * (____stream_728), ____off_t_23 ____off_730, int ____whence_732);// L773 +extern int (__fseeko_744) (__FILE_59 * (____stream_739), ____off64_t_24 ____off_741, int ____whence_743);// L781:L783 +extern ____off_t_23 (__ftello_758) (__FILE_59 * (____stream_737));// L778 +extern ____off_t_23 (__ftello_750) (__FILE_59 * (____stream_737));// L778 +extern int (__fgetpos_766) (__FILE_59 * __restrict ____stream_762, __fpos_t_287 * __restrict ____pos_764);// L798 +extern ____off64_t_24 (__ftello_754) (__FILE_59 * (____stream_748));// L784 +extern int (__fgetpos_778) (__FILE_59 * __restrict ____stream_774, __fpos_t_289 * __restrict ____pos_776);// L806:L807 +extern int (__fsetpos_786) (__FILE_59 * (____stream_770), const __fpos_t_287 * (____pos_772));// L803 +extern int (__fsetpos_790) (__FILE_59 * (____stream_782), const __fpos_t_289 * (____pos_784));// L808:L809 +extern void (__clearerr_796) (__FILE_59 * (____stream_794));// L826 +extern int (__feof_800) (__FILE_59 * (____stream_798));// L828 +extern int (__feof_802) (__FILE_59 * (____stream_798));// L828 +extern int (__ferror_806) (__FILE_59 * (____stream_804));// L830 +extern int (__ferror_808) (__FILE_59 * (____stream_804));// L830 +extern void (__clearerr_unlocked_812) (__FILE_59 * (____stream_810));// L835 +extern int (__feof_unlocked_816) (__FILE_59 * (____stream_814));// L836 +extern int (__feof_unlocked_818) (__FILE_59 * (____stream_814));// L836 +extern int (__ferror_unlocked_822) (__FILE_59 * (____stream_820));// L837 +extern int (__ferror_unlocked_824) (__FILE_59 * (____stream_820));// L837 +extern void (__perror_827) (const char * (____s_826));// L846 +extern void (__perror_828) (const char * (____s_826));// L846 +extern int __sys_nerr_829;// L26 + +extern int (__fileno_835) (__FILE_59 * (____stream_831));// L858 +extern int (__fileno_833) (__FILE_59 * (____stream_831));// L858 +extern int (__fileno_unlocked_841) (__FILE_59 * (____stream_837));// L863 +extern int (__fileno_unlocked_839) (__FILE_59 * (____stream_837));// L863 +extern __FILE_59 * ((__popen_845) (const char * (____command_843), const char * (____modes_844)));// L872 +extern __FILE_59 * ((__popen_847) (const char * (____command_843), const char * (____modes_844)));// L872 +extern int (__pclose_851) (__FILE_59 * (____stream_849));// L878 +extern char * ((__ctermid_854) (char * (____s_853)));// L884 +extern void (__flockfile_857) (__FILE_59 * (____stream_855));// L912 +extern int (__ftrylockfile_861) (__FILE_59 * (____stream_859));// L916 +extern int (__ftrylockfile_863) (__FILE_59 * (____stream_859));// L916 +extern void (__funlockfile_867) (__FILE_59 * (____stream_865));// L919 /* no function due to type errors in the function prototype */ -extern int (____fprintf_chk_661) (__FILE_59 * __restrict ____stream_657, int ____flag_659, const char * __restrict ____format_660, ... );// L85:L86 -extern int (____printf_chk_665) (int ____flag_663, const char * __restrict ____format_664, ... );// L87 -extern int (____vfprintf_chk_672) (__FILE_59 * __restrict ____stream_666, int ____flag_668, const char * __restrict ____format_669, ____gnuc_va_list_86 ____ap_670);// L88:L89 -extern int (____vprintf_chk_680) (int ____flag_676, const char * __restrict ____format_677, ____gnuc_va_list_86 ____ap_678);// L90:L91 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern char * ((____fgets_chk_704) (char * __restrict ____s_699, __size_t_1 ____size_700, int ____n_701, __FILE_59 * __restrict ____stream_702));// L241:L242 -extern char * ((____fgets_chk_706) (char * __restrict ____s_699, __size_t_1 ____size_700, int ____n_701, __FILE_59 * __restrict ____stream_702));// L241:L242 -extern char * ((____fgets_alias_712) (char * __restrict ____s_708, int ____n_709, __FILE_59 * __restrict ____stream_710));// L243:L245 -extern char * ((____fgets_chk_warn_719) (char * __restrict ____s_714, __size_t_1 ____size_715, int ____n_716, __FILE_59 * __restrict ____stream_717));// L246:L250 /* no function due to type errors in the function prototype */ -// typedef moved to top of scope -// typedef moved to top of scope /* no function due to type errors in the function prototype */ -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern __size_t_1 (____ctype_get_mb_cur_max_776) (void );// L139 -extern __size_t_756 (____ctype_get_mb_cur_max_777) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_778) (void );// L139 -extern __size_t_756 (____ctype_get_mb_cur_max_779) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_780) (void );// L139 -extern __size_t_756 (____ctype_get_mb_cur_max_781) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_782) (void );// L139 -extern __size_t_756 (____ctype_get_mb_cur_max_783) (void );// L139 -extern double (__atof_785) (const char * (____nptr_784));// L144:L145 -extern double (__atof_786) (const char * (____nptr_784));// L144:L145 -extern int (__atoi_788) (const char * (____nptr_787));// L147:L148 -extern int (__atoi_789) (const char * (____nptr_787));// L147:L148 -extern long int (__atol_791) (const char * (____nptr_790));// L150:L151 -extern long int (__atol_792) (const char * (____nptr_790));// L150:L151 -extern long long int (__atoll_794) (const char * (____nptr_793));// L157:L158 -extern long long int (__atoll_795) (const char * (____nptr_793));// L157:L158 -extern double (__strtod_798) (const char * __restrict ____nptr_796, char * (* __restrict ____endptr_797));// L164:L166 -extern float (__strtof_801) (const char * __restrict ____nptr_799, char * (* __restrict ____endptr_800));// L172:L173 -extern long double (__strtold_804) (const char * __restrict ____nptr_802, char * (* __restrict ____endptr_803));// L175:L177 -extern long int (__strtol_808) (const char * __restrict ____nptr_805, char * (* __restrict ____endptr_806), int ____base_807);// L183:L185 -extern unsigned long int (__strtoul_812) (const char * __restrict ____nptr_809, char * (* __restrict ____endptr_810), int ____base_811);// L187:L189 -extern long long int (__strtoll_816) (const char * __restrict ____nptr_813, char * (* __restrict ____endptr_814), int ____base_815);// L209:L211 -extern unsigned long long int (__strtoull_820) (const char * __restrict ____nptr_817, char * (* __restrict ____endptr_818), int ____base_819);// L214:L216 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -__extension__/* no function due to type errors in the function prototype */ -extern int (__rand_824) (void );// L374 -extern int (__rand_825) (void );// L374 -extern void (__srand_827) (unsigned int ____seed_826);// L376 -extern void * ((__malloc_830) (__size_t_1 ____size_828));// L466 -extern void * ((__malloc_831) (__size_t_756 ____size_829));// L466 -extern void * ((__malloc_832) (__size_t_1 ____size_828));// L466 -extern void * ((__malloc_833) (__size_t_756 ____size_829));// L466 -extern void * ((__calloc_838) (__size_t_1 ____nmemb_834, __size_t_1 ____size_836));// L468:L469 -extern void * ((__calloc_839) (__size_t_756 ____nmemb_835, __size_t_756 ____size_837));// L468:L469 -extern void * ((__calloc_840) (__size_t_1 ____nmemb_834, __size_t_1 ____size_836));// L468:L469 -extern void * ((__calloc_841) (__size_t_756 ____nmemb_835, __size_t_756 ____size_837));// L468:L469 -extern void * ((__realloc_845) (void * (____ptr_842), __size_t_1 ____size_843));// L480:L481 -extern void * ((__realloc_846) (void * (____ptr_842), __size_t_756 ____size_844));// L480:L481 -extern void * ((__realloc_847) (void * (____ptr_842), __size_t_1 ____size_843));// L480:L481 -extern void * ((__realloc_848) (void * (____ptr_842), __size_t_756 ____size_844));// L480:L481 -extern void (__free_850) (void * (____ptr_849));// L483 -extern void * ((__aligned_alloc_855) (__size_t_1 ____alignment_851, __size_t_1 ____size_853));// L509:L510 -extern void * ((__aligned_alloc_856) (__size_t_756 ____alignment_852, __size_t_756 ____size_854));// L509:L510 -extern void * ((__aligned_alloc_857) (__size_t_1 ____alignment_851, __size_t_1 ____size_853));// L509:L510 -extern void * ((__aligned_alloc_858) (__size_t_756 ____alignment_852, __size_t_756 ____size_854));// L509:L510 -extern void (__abort_859) (void );// L515 -extern int (__atexit_861) (void (* (____func_860)) (void ));// L519 -extern int (__at_quick_exit_863) (void (* (____func_862)) (void ));// L527 -extern void (__exit_865) (int ____status_864);// L543 -extern void (__quick_exit_867) (int ____status_866);// L549 -extern void (___Exit_869) (int ____status_868);// L557 -extern char * ((__getenv_871) (const char * (____name_870)));// L564 -extern char * ((__getenv_872) (const char * (____name_870)));// L564 -extern int (__system_874) (const char * (____command_873));// L716 -extern int (__system_875) (const char * (____command_873));// L716 -// typedef moved to top of scope -extern void * ((__bsearch_887) (const void * (____key_877), const void * (____base_878), __size_t_1 ____nmemb_879, __size_t_1 ____size_881, ____compar_fn_t_876 ____compar_883));// L754:L756 -extern void * ((__bsearch_888) (const void * (____key_877), const void * (____base_878), __size_t_756 ____nmemb_880, __size_t_756 ____size_882, ____compar_fn_t_876 ____compar_883));// L754:L756 -extern void * ((__bsearch_891) (const void * (____key_877), const void * (____base_878), __size_t_1 ____nmemb_879, __size_t_1 ____size_881, ____compar_fn_t_876 ____compar_883));// L754:L756 -extern void * ((__bsearch_892) (const void * (____key_877), const void * (____base_878), __size_t_756 ____nmemb_880, __size_t_756 ____size_882, ____compar_fn_t_876 ____compar_883));// L754:L756 /* no function due to type errors in the function prototype */ -extern void (__qsort_920) (void * (____base_913), __size_t_1 ____nmemb_914, __size_t_1 ____size_916, ____compar_fn_t_876 ____compar_918);// L764:L765 -extern void (__qsort_922) (void * (____base_913), __size_t_756 ____nmemb_915, __size_t_756 ____size_917, ____compar_fn_t_876 ____compar_918);// L764:L765 -extern void (__qsort_924) (void * (____base_913), __size_t_1 ____nmemb_914, __size_t_1 ____size_916, ____compar_fn_t_876 ____compar_918);// L764:L765 -extern void (__qsort_926) (void * (____base_913), __size_t_756 ____nmemb_915, __size_t_756 ____size_917, ____compar_fn_t_876 ____compar_918);// L764:L765 -extern int (__abs_929) (int ____x_928);// L774 -extern int (__abs_930) (int ____x_928);// L774 -extern long int (__labs_932) (long int ____x_931);// L775 -extern long int (__labs_933) (long int ____x_931);// L775 -extern long long int (__llabs_935) (long long int ____x_934);// L779:L780 -extern long long int (__llabs_936) (long long int ____x_934);// L779:L780 -extern __div_t_765 (__div_939) (int ____numer_937, int ____denom_938);// L788:L789 -extern __div_t_765 (__div_940) (int ____numer_937, int ____denom_938);// L788:L789 -extern __ldiv_t_770 (__ldiv_943) (long int ____numer_941, long int ____denom_942);// L790:L791 -extern __ldiv_t_770 (__ldiv_945) (long int ____numer_941, long int ____denom_942);// L790:L791 -extern __lldiv_t_775 (__lldiv_949) (long long int ____numer_947, long long int ____denom_948);// L796:L798 -extern __lldiv_t_775 (__lldiv_951) (long long int ____numer_947, long long int ____denom_948);// L796:L798 -extern int (__mblen_956) (const char * (____s_953), __size_t_1 ____n_954);// L862 -extern int (__mblen_957) (const char * (____s_953), __size_t_756 ____n_955);// L862 -extern int (__mbtowc_963) (__wchar_t_759 * __restrict ____pwc_958, const char * __restrict ____s_960, __size_t_1 ____n_961);// L865:L866 -extern int (__mbtowc_964) (__wchar_t_760 * __restrict ____pwc_959, const char * __restrict ____s_960, __size_t_1 ____n_961);// L865:L866 -extern int (__mbtowc_965) (__wchar_t_760 * __restrict ____pwc_959, const char * __restrict ____s_960, __size_t_756 ____n_962);// L865:L866 -extern int (__wctomb_969) (char * (____s_966), __wchar_t_759 ____wchar_967);// L869 -extern int (__wctomb_970) (char * (____s_966), __wchar_t_760 ____wchar_968);// L869 -extern __size_t_1 (__mbstowcs_976) (__wchar_t_759 * __restrict ____pwcs_971, const char * __restrict ____s_973, __size_t_1 ____n_974);// L873:L874 -extern __size_t_1 (__mbstowcs_977) (__wchar_t_760 * __restrict ____pwcs_972, const char * __restrict ____s_973, __size_t_1 ____n_974);// L873:L874 -extern __size_t_756 (__mbstowcs_978) (__wchar_t_760 * __restrict ____pwcs_972, const char * __restrict ____s_973, __size_t_756 ____n_975);// L873:L874 -extern __size_t_1 (__wcstombs_984) (char * __restrict ____s_979, const __wchar_t_759 * __restrict ____pwcs_980, __size_t_1 ____n_982);// L876:L878 -extern __size_t_1 (__wcstombs_985) (char * __restrict ____s_979, const __wchar_t_760 * __restrict ____pwcs_981, __size_t_1 ____n_982);// L876:L878 -extern __size_t_756 (__wcstombs_986) (char * __restrict ____s_979, const __wchar_t_760 * __restrict ____pwcs_981, __size_t_756 ____n_983);// L876:L878 /* no function due to type errors in the function prototype */ -extern char * ((____realpath_chk_992) (const char * __restrict ____name_988, char * __restrict ____resolved_989, __size_t_1 ____resolvedlen_990));// L23:L25 -extern char * ((____realpath_chk_993) (const char * __restrict ____name_988, char * __restrict ____resolved_989, __size_t_756 ____resolvedlen_991));// L23:L25 -extern char * ((____realpath_alias_996) (const char * __restrict ____name_994, char * __restrict ____resolved_995));// L26:L28 -extern char * ((____realpath_chk_warn_1001) (const char * __restrict ____name_997, char * __restrict ____resolved_998, __size_t_1 ____resolvedlen_999));// L29:L34 -extern char * ((____realpath_chk_warn_1002) (const char * __restrict ____name_997, char * __restrict ____resolved_998, __size_t_756 ____resolvedlen_1000));// L29:L34 +extern int (____sprintf_chk_899) (char * __restrict ____s_895, int ____flag_896, __size_t_1 ____slen_897, const char * __restrict ____format_898, ... );// L23:L24 +extern int (____vsprintf_chk_906) (char * __restrict ____s_900, int ____flag_901, __size_t_1 ____slen_902, const char * __restrict ____format_903, ____gnuc_va_list_86 ____ap_904);// L25:L27 /* no function due to type errors in the function prototype */ -extern int (____ptsname_r_chk_1012) (int ____fd_1006, char * (____buf_1007), __size_t_1 ____buflen_1008, __size_t_1 ____nreal_1010);// L52:L53 -extern int (____ptsname_r_chk_1013) (int ____fd_1006, char * (____buf_1007), __size_t_756 ____buflen_1009, __size_t_756 ____nreal_1011);// L52:L53 -extern int (____ptsname_r_alias_1018) (int ____fd_1014, char * (____buf_1015), __size_t_1 ____buflen_1016);// L54:L56 -extern int (____ptsname_r_alias_1019) (int ____fd_1014, char * (____buf_1015), __size_t_756 ____buflen_1017);// L54:L56 -extern int (____ptsname_r_chk_warn_1026) (int ____fd_1020, char * (____buf_1021), __size_t_1 ____buflen_1022, __size_t_1 ____nreal_1024);// L57:L61 -extern int (____ptsname_r_chk_warn_1027) (int ____fd_1020, char * (____buf_1021), __size_t_756 ____buflen_1023, __size_t_756 ____nreal_1025);// L57:L61 /* no function due to type errors in the function prototype */ -extern int (____wctomb_chk_1038) (char * (____s_1034), __wchar_t_760 ____wchar_1035, __size_t_1 ____buflen_1036);// L77:L78 -extern int (____wctomb_chk_1039) (char * (____s_1034), __wchar_t_760 ____wchar_1035, __size_t_756 ____buflen_1037);// L77:L78 -extern int (____wctomb_alias_1042) (char * (____s_1040), __wchar_t_760 ____wchar_1041);// L79:L80 +extern int (____snprintf_chk_920) (char * __restrict ____s_915, __size_t_1 ____n_916, int ____flag_917, __size_t_1 ____slen_918, const char * __restrict ____format_919, ... );// L52:L54 +extern int (____vsnprintf_chk_928) (char * __restrict ____s_921, __size_t_1 ____n_922, int ____flag_923, __size_t_1 ____slen_924, const char * __restrict ____format_925, ____gnuc_va_list_86 ____ap_926);// L55:L57 /* no function due to type errors in the function prototype */ -extern __size_t_1 (____mbstowcs_chk_1051) (__wchar_t_760 * __restrict ____dst_1045, const char * __restrict ____src_1046, __size_t_1 ____len_1047, __size_t_1 ____dstlen_1049);// L98:L100 -extern __size_t_756 (____mbstowcs_chk_1052) (__wchar_t_760 * __restrict ____dst_1045, const char * __restrict ____src_1046, __size_t_756 ____len_1048, __size_t_756 ____dstlen_1050);// L98:L100 -extern __size_t_1 (____mbstowcs_alias_1057) (__wchar_t_760 * __restrict ____dst_1053, const char * __restrict ____src_1054, __size_t_1 ____len_1055);// L101:L104 -extern __size_t_756 (____mbstowcs_alias_1058) (__wchar_t_760 * __restrict ____dst_1053, const char * __restrict ____src_1054, __size_t_756 ____len_1056);// L101:L104 -extern __size_t_1 (____mbstowcs_chk_warn_1065) (__wchar_t_760 * __restrict ____dst_1059, const char * __restrict ____src_1060, __size_t_1 ____len_1061, __size_t_1 ____dstlen_1063);// L105:L110 -extern __size_t_756 (____mbstowcs_chk_warn_1066) (__wchar_t_760 * __restrict ____dst_1059, const char * __restrict ____src_1060, __size_t_756 ____len_1062, __size_t_756 ____dstlen_1064);// L105:L110 /* no function due to type errors in the function prototype */ -extern __size_t_1 (____wcstombs_chk_1077) (char * __restrict ____dst_1071, const __wchar_t_760 * __restrict ____src_1072, __size_t_1 ____len_1073, __size_t_1 ____dstlen_1075);// L130:L132 -extern __size_t_756 (____wcstombs_chk_1078) (char * __restrict ____dst_1071, const __wchar_t_760 * __restrict ____src_1072, __size_t_756 ____len_1074, __size_t_756 ____dstlen_1076);// L130:L132 -extern __size_t_1 (____wcstombs_alias_1083) (char * __restrict ____dst_1079, const __wchar_t_760 * __restrict ____src_1080, __size_t_1 ____len_1081);// L133:L136 -extern __size_t_756 (____wcstombs_alias_1084) (char * __restrict ____dst_1079, const __wchar_t_760 * __restrict ____src_1080, __size_t_756 ____len_1082);// L133:L136 -extern __size_t_1 (____wcstombs_chk_warn_1091) (char * __restrict ____dst_1085, const __wchar_t_760 * __restrict ____src_1086, __size_t_1 ____len_1087, __size_t_1 ____dstlen_1089);// L137:L141 -extern __size_t_756 (____wcstombs_chk_warn_1092) (char * __restrict ____dst_1085, const __wchar_t_760 * __restrict ____src_1086, __size_t_756 ____len_1088, __size_t_756 ____dstlen_1090);// L137:L141 +extern int (____fprintf_chk_943) (__FILE_59 * __restrict ____stream_939, int ____flag_941, const char * __restrict ____format_942, ... );// L85:L86 +extern int (____printf_chk_947) (int ____flag_945, const char * __restrict ____format_946, ... );// L87 +extern int (____vfprintf_chk_954) (__FILE_59 * __restrict ____stream_948, int ____flag_950, const char * __restrict ____format_951, ____gnuc_va_list_86 ____ap_952);// L88:L89 +extern int (____vprintf_chk_962) (int ____flag_958, const char * __restrict ____format_959, ____gnuc_va_list_86 ____ap_960);// L90:L91 /* no function due to type errors in the function prototype */ -extern void * ((__memmove_1109) (void * (____dest_1105), const void * (____src_1106), __size_t_1 ____n_1107));// L46:L47 -extern void * ((__memmove_1110) (void * (____dest_1105), const void * (____src_1106), __size_t_756 ____n_1108));// L46:L47 -extern void * ((__memset_1115) (void * (____s_1111), int ____c_1112, __size_t_1 ____n_1113));// L62 -extern void * ((__memset_1116) (void * (____s_1111), int ____c_1112, __size_t_756 ____n_1114));// L62 -extern int (__memcmp_1121) (const void * (____s1_1117), const void * (____s2_1118), __size_t_1 ____n_1119);// L65:L66 -extern int (__memcmp_1122) (const void * (____s1_1117), const void * (____s2_1118), __size_t_756 ____n_1120);// L65:L66 -extern void * ((__memchr_1127) (const void * (____s_1123), int ____c_1124, __size_t_1 ____n_1125));// L92:L93 -extern void * ((__memchr_1128) (const void * (____s_1123), int ____c_1124, __size_t_756 ____n_1126));// L92:L93 -extern char * ((__strcpy_1131) (char * __restrict ____dest_1129, const char * __restrict ____src_1130));// L125:L126 -extern char * ((__strncpy_1136) (char * __restrict ____dest_1132, const char * __restrict ____src_1133, __size_t_1 ____n_1134));// L128:L130 -extern char * ((__strncpy_1137) (char * __restrict ____dest_1132, const char * __restrict ____src_1133, __size_t_756 ____n_1135));// L128:L130 -extern char * ((__strcat_1140) (char * __restrict ____dest_1138, const char * __restrict ____src_1139));// L133:L134 -extern char * ((__strncat_1145) (char * __restrict ____dest_1141, const char * __restrict ____src_1142, __size_t_1 ____n_1143));// L136:L137 -extern char * ((__strncat_1146) (char * __restrict ____dest_1141, const char * __restrict ____src_1142, __size_t_756 ____n_1144));// L136:L137 -extern int (__strcmp_1149) (const char * (____s1_1147), const char * (____s2_1148));// L140:L141 -extern int (__strncmp_1154) (const char * (____s1_1150), const char * (____s2_1151), __size_t_1 ____n_1152);// L143:L144 -extern int (__strncmp_1155) (const char * (____s1_1150), const char * (____s2_1151), __size_t_756 ____n_1153);// L143:L144 -extern int (__strcoll_1158) (const char * (____s1_1156), const char * (____s2_1157));// L147:L148 -extern __size_t_1 (__strxfrm_1163) (char * __restrict ____dest_1159, const char * __restrict ____src_1160, __size_t_1 ____n_1161);// L150:L152 -extern __size_t_756 (__strxfrm_1164) (char * __restrict ____dest_1159, const char * __restrict ____src_1160, __size_t_756 ____n_1162);// L150:L152 -extern char * ((__strchr_1167) (const char * (____s_1165), int ____c_1166));// L231:L232 -extern char * ((__strrchr_1170) (const char * (____s_1168), int ____c_1169));// L258:L259 -extern __size_t_1 (__strcspn_1173) (const char * (____s_1171), const char * (____reject_1172));// L280:L281 -extern __size_t_756 (__strcspn_1174) (const char * (____s_1171), const char * (____reject_1172));// L280:L281 -extern __size_t_1 (__strspn_1177) (const char * (____s_1175), const char * (____accept_1176));// L284:L285 -extern __size_t_756 (__strspn_1178) (const char * (____s_1175), const char * (____accept_1176));// L284:L285 -extern char * ((__strpbrk_1181) (const char * (____s_1179), const char * (____accept_1180)));// L310:L311 -extern char * ((__strstr_1184) (const char * (____haystack_1182), const char * (____needle_1183)));// L337:L338 -extern char * ((__strtok_1187) (char * __restrict ____s_1185, const char * __restrict ____delim_1186));// L343:L344 -extern char * ((____strtok_r_1191) (char * __restrict ____s_1188, const char * __restrict ____delim_1189, char * (* __restrict ____save_ptr_1190)));// L349:L352 -extern __size_t_1 (__strlen_1193) (const char * (____s_1192));// L394:L395 -extern __size_t_756 (__strlen_1194) (const char * (____s_1192));// L394:L395 -extern char * ((__strerror_1196) (int ____errnum_1195));// L408 -extern void (____bzero_1200) (void * (____s_1197), __size_t_1 ____n_1198);// L446 -extern void (____bzero_1201) (void * (____s_1197), __size_t_756 ____n_1199);// L446 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ +extern int (____dprintf_chk_984) (int ____fd_981, int ____flag_982, const char * __restrict ____fmt_983, ... );// L131:L132 +extern int (____vdprintf_chk_990) (int ____fd_985, int ____flag_986, const char * __restrict ____fmt_987, ____gnuc_va_list_86 ____arg_988);// L133:L135 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern char * ((____stpncpy_chk_1235) (char * (____dest_1229), const char * (____src_1230), __size_t_1 ____n_1231, __size_t_1 ____destlen_1233));// L130:L131 -extern char * ((____stpncpy_chk_1236) (char * (____dest_1229), const char * (____src_1230), __size_t_756 ____n_1232, __size_t_756 ____destlen_1234));// L130:L131 -extern char * ((____stpncpy_alias_1241) (char * (____dest_1237), const char * (____src_1238), __size_t_1 ____n_1239));// L132:L133 -extern char * ((____stpncpy_alias_1242) (char * (____dest_1237), const char * (____src_1238), __size_t_756 ____n_1240));// L132:L133 +extern char * ((____fgets_chk_1004) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_chk_1006) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_chk_1008) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_alias_1014) (char * __restrict ____s_1010, int ____n_1011, __FILE_59 * __restrict ____stream_1012));// L243:L245 +extern char * ((____fgets_chk_warn_1021) (char * __restrict ____s_1016, __size_t_1 ____size_1017, int ____n_1018, __FILE_59 * __restrict ____stream_1019));// L246:L250 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -void (__build_dep_1260) (void ) { +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +static __inline unsigned int (____bswap_32_1158) (unsigned int ____bsx_1157) { -{ -if (__static_condition_default_1262) { +if (__static_condition_default_1159) { { { -char * (__dt_1258)= ( ( void * ) 0 );// L7 +__static_type_error("invalid type found in return expression"); +} +} + -if (__static_condition_default_1263) { -if ( rand( ) % 2 )// L9 -{ +} +} +static __inline ____uint64_t_13 (____bswap_64_1162) (____uint64_t_13 ____bsx_1160) { + +if (__static_condition_default_1164) { { { - __dt_1258 = "-i" ; // L10 +__static_type_error("invalid type found in return expression"); } } + + } } -if (__static_condition_default_1264) { -if ( rand( ) % 2 )// L9 -{ +static __inline ____uint64_t_1112 (____bswap_64_1163) (____uint64_t_1112 ____bsx_1161) { + +if (__static_condition_default_1165) { { { - __dt_1258 = "-i" ; // L10 +__static_type_error("invalid type found in return expression"); } } + + } } -char __buf_1259[50];// L18 +union __wait_1177 ;// L66 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern __size_t_1 (____ctype_get_mb_cur_max_1201) (void );// L139 +extern __size_t_1093 (____ctype_get_mb_cur_max_1202) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_1203) (void );// L139 +extern __size_t_1093 (____ctype_get_mb_cur_max_1204) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_1205) (void );// L139 +extern __size_t_1093 (____ctype_get_mb_cur_max_1206) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_1207) (void );// L139 +extern __size_t_1093 (____ctype_get_mb_cur_max_1208) (void );// L139 +extern double (__atof_1210) (const char * (____nptr_1209));// L144:L145 +extern double (__atof_1211) (const char * (____nptr_1209));// L144:L145 +extern int (__atoi_1213) (const char * (____nptr_1212));// L147:L148 +extern int (__atoi_1214) (const char * (____nptr_1212));// L147:L148 +extern long int (__atol_1216) (const char * (____nptr_1215));// L150:L151 +extern long int (__atol_1217) (const char * (____nptr_1215));// L150:L151 +extern long long int (__atoll_1219) (const char * (____nptr_1218));// L157:L158 +extern long long int (__atoll_1220) (const char * (____nptr_1218));// L157:L158 +extern double (__strtod_1223) (const char * __restrict ____nptr_1221, char * (* __restrict ____endptr_1222));// L164:L166 +extern float (__strtof_1226) (const char * __restrict ____nptr_1224, char * (* __restrict ____endptr_1225));// L172:L173 +extern long double (__strtold_1229) (const char * __restrict ____nptr_1227, char * (* __restrict ____endptr_1228));// L175:L177 +extern long int (__strtol_1233) (const char * __restrict ____nptr_1230, char * (* __restrict ____endptr_1231), int ____base_1232);// L183:L185 +extern unsigned long int (__strtoul_1237) (const char * __restrict ____nptr_1234, char * (* __restrict ____endptr_1235), int ____base_1236);// L187:L189 +extern long long int (__strtoq_1241) (const char * __restrict ____nptr_1238, char * (* __restrict ____endptr_1239), int ____base_1240);// L195:L197 +extern unsigned long long int (__strtouq_1245) (const char * __restrict ____nptr_1242, char * (* __restrict ____endptr_1243), int ____base_1244);// L200:L202 +extern long long int (__strtoll_1249) (const char * __restrict ____nptr_1246, char * (* __restrict ____endptr_1247), int ____base_1248);// L209:L211 +extern long long int (__strtoll_1250) (const char * __restrict ____nptr_1246, char * (* __restrict ____endptr_1247), int ____base_1248);// L209:L211 +extern unsigned long long int (__strtoull_1254) (const char * __restrict ____nptr_1251, char * (* __restrict ____endptr_1252), int ____base_1253);// L214:L216 +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +__extension__/* no function due to type errors in the function prototype */ +extern char * ((__l64a_1259) (long int ____n_1258));// L305 +extern char * ((__l64a_1260) (long int ____n_1258));// L305 +extern long int (__a64l_1262) (const char * (____s_1261));// L308:L309 +extern long int (__a64l_1263) (const char * (____s_1261));// L308:L309 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +static __inline unsigned int (____bswap_32_1452) (unsigned int ____bsx_1451) { + +if (__static_condition_default_1453) { + +{ +{ + - __strcpy_1131 ( __buf_1259 ,"module option(s): ") ; // L19 - __strcat_1140 ( __buf_1259 , __dt_1258 ) ; // L21 + +__static_type_error("invalid type found in return expression"); } } } +} +static __inline ____uint64_t_13 (____bswap_64_1456) (____uint64_t_13 ____bsx_1454) { -if (__static_condition_default_1265) { +if (__static_condition_default_1458) { { { -char * (__dt_1258)= ( ( void * ) 0 );// L7 +__static_type_error("invalid type found in return expression"); +} +} -if (__static_condition_default_1266) { -if ( rand( ) % 2 )// L9 -{ + +} +} +static __inline ____uint64_t_1275 (____bswap_64_1457) (____uint64_t_1275 ____bsx_1455) { + +if (__static_condition_default_1459) { { { - __dt_1258 = "-i" ; // L10 +__static_type_error("invalid type found in return expression"); } } + + } } -if (__static_condition_default_1267) { -if ( rand( ) % 2 )// L9 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +struct __timespec_1466 ;// L120 + +struct __timeval_1476 ;// L30 + +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern int (__select_1513) (int ____nfds_1502, __fd_set_1499 * __restrict ____readfds_1503, __fd_set_1499 * __restrict ____writefds_1505, __fd_set_1499 * __restrict ____exceptfds_1507, struct __timeval_1476 * __restrict ____timeout_1510);// L106:L109 +extern int (__select_1514) (int ____nfds_1502, __fd_set_1499 * __restrict ____readfds_1503, __fd_set_1499 * __restrict ____writefds_1505, __fd_set_1499 * __restrict ____exceptfds_1507, struct __forward_tag_reference_1509 * __restrict ____timeout_1512);// L106:L109 +extern int (__pselect_1529) (int ____nfds_1517, __fd_set_1499 * __restrict ____readfds_1518, __fd_set_1499 * __restrict ____writefds_1520, __fd_set_1499 * __restrict ____exceptfds_1522, const struct __timespec_1466 * __restrict ____timeout_1525, const ____sigset_t_1464 * __restrict ____sigmask_1528);// L118:L122 +extern int (__pselect_1530) (int ____nfds_1517, __fd_set_1499 * __restrict ____readfds_1518, __fd_set_1499 * __restrict ____writefds_1520, __fd_set_1499 * __restrict ____exceptfds_1522, const struct __forward_tag_reference_1524 * __restrict ____timeout_1527, const ____sigset_t_1464 * __restrict ____sigmask_1528);// L118:L122 +extern long int (____fdelt_chk_1534) (long int ____d_1533);// L24 +extern long int (____fdelt_warn_1536) (long int ____d_1535);// L25:L26 +extern unsigned int (__gnu_dev_major_1538) (unsigned long long int ____dev_1537);// L27:L28 +extern unsigned int (__gnu_dev_major_1539) (unsigned long long int ____dev_1537);// L27:L28 +extern unsigned int (__gnu_dev_minor_1541) (unsigned long long int ____dev_1540);// L30:L31 +extern unsigned long long int (__gnu_dev_makedev_1544) (unsigned int ____major_1542, unsigned int ____minor_1543);// L33:L35 +__extension__/* no function due to type errors in the function prototype */ +__extension__/* no function due to type errors in the function prototype */ +__extension__/* no function due to type errors in the function prototype */ +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +union __pthread_attr_t_1578 ;// L63 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern int (__rand_1609) (void );// L374 +extern void (__srand_1611) (unsigned int ____seed_1610);// L376 +extern int (__rand_r_1613) (unsigned int * (____seed_1612));// L381 +extern double (__drand48_1614) (void );// L389 +extern double (__erand48_1616) (unsigned short int ____xsubi_1615[3]);// L390 +extern long int (__lrand48_1617) (void );// L393 +extern long int (__nrand48_1619) (unsigned short int ____xsubi_1618[3]);// L394:L395 +extern long int (__mrand48_1620) (void );// L398 +extern long int (__jrand48_1622) (unsigned short int ____xsubi_1621[3]);// L399:L400 +extern void (__srand48_1624) (long int ____seedval_1623);// L403 +extern unsigned short int * ((__seed48_1626) (unsigned short int ____seed16v_1625[3]));// L404:L405 +extern void (__lcong48_1628) (unsigned short int ____param_1627[7]);// L406 +extern void * ((__malloc_1631) (__size_t_1 ____size_1629));// L466 +extern void * ((__malloc_1632) (__size_t_1093 ____size_1630));// L466 +extern void * ((__malloc_1633) (__size_t_1 ____size_1629));// L466 +extern void * ((__malloc_1634) (__size_t_1093 ____size_1630));// L466 +extern void * ((__calloc_1639) (__size_t_1 ____nmemb_1635, __size_t_1 ____size_1637));// L468:L469 +extern void * ((__calloc_1640) (__size_t_1093 ____nmemb_1636, __size_t_1093 ____size_1638));// L468:L469 +extern void * ((__calloc_1641) (__size_t_1 ____nmemb_1635, __size_t_1 ____size_1637));// L468:L469 +extern void * ((__calloc_1642) (__size_t_1093 ____nmemb_1636, __size_t_1093 ____size_1638));// L468:L469 +extern void * ((__realloc_1646) (void * (____ptr_1643), __size_t_1 ____size_1644));// L480:L481 +extern void * ((__realloc_1647) (void * (____ptr_1643), __size_t_1093 ____size_1645));// L480:L481 +extern void (__free_1649) (void * (____ptr_1648));// L483 +extern void (__cfree_1651) (void * (____ptr_1650));// L488 +extern void * ((__alloca_1654) (__size_t_1 ____size_1652));// L32 +extern void * ((__alloca_1655) (__size_t_1093 ____size_1653));// L32 +extern void * ((__valloc_1658) (__size_t_1 ____size_1656));// L498 +extern void * ((__valloc_1659) (__size_t_1093 ____size_1657));// L498 +extern void * ((__valloc_1660) (__size_t_1 ____size_1656));// L498 +extern void * ((__valloc_1661) (__size_t_1093 ____size_1657));// L498 +extern int (__posix_memalign_1667) (void * (* (____memptr_1662)), __size_t_1 ____alignment_1663, __size_t_1 ____size_1665);// L503:L504 +extern int (__posix_memalign_1668) (void * (* (____memptr_1662)), __size_t_1093 ____alignment_1664, __size_t_1093 ____size_1666);// L503:L504 +extern int (__posix_memalign_1669) (void * (* (____memptr_1662)), __size_t_1 ____alignment_1663, __size_t_1 ____size_1665);// L503:L504 +extern int (__posix_memalign_1670) (void * (* (____memptr_1662)), __size_t_1093 ____alignment_1664, __size_t_1093 ____size_1666);// L503:L504 +extern void * ((__aligned_alloc_1675) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 +extern void * ((__aligned_alloc_1676) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 +extern void * ((__aligned_alloc_1677) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 +extern void * ((__aligned_alloc_1678) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 +extern void * ((__aligned_alloc_1679) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 +extern void * ((__aligned_alloc_1680) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 +extern void * ((__aligned_alloc_1681) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 +extern void * ((__aligned_alloc_1682) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 +extern void (__abort_1683) (void );// L515 +extern int (__atexit_1685) (void (* (____func_1684)) (void ));// L519 +extern int (__at_quick_exit_1687) (void (* (____func_1686)) (void ));// L527 +extern int (__on_exit_1692) (void (* (____func_1690)) (int ____status_1688, void * (____arg_1689)), void * (____arg_1691));// L535:L536 +extern void (__exit_1694) (int ____status_1693);// L543 +extern void (__exit_1695) (int ____status_1693);// L543 +extern void (__quick_exit_1697) (int ____status_1696);// L549 +extern void (___Exit_1699) (int ____status_1698);// L557 +extern char * ((__getenv_1701) (const char * (____name_1700)));// L564 +extern char * ((__getenv_1702) (const char * (____name_1700)));// L564 +extern int (__putenv_1704) (char * (____string_1703));// L578 +extern int (__setenv_1708) (const char * (____name_1705), const char * (____value_1706), int ____replace_1707);// L584:L585 +extern int (__unsetenv_1710) (const char * (____name_1709));// L588 +extern int (__clearenv_1711) (void );// L595 +extern char * ((__mktemp_1713) (char * (____template_1712)));// L606 +extern int (__mkstemp_1716) (char * (____template_1714));// L619 +extern int (__mkstemp_1718) (char * (____template_1714));// L619 +extern int (__mkstemp_1717) (char * (____template_1715));// L622:L623 +extern int (__mkstemp_1719) (char * (____template_1715));// L622:L623 +extern int (__mkstemps_1724) (char * (____template_1720), int ____suffixlen_1721);// L641 +extern int (__mkstemps_1725) (char * (____template_1722), int ____suffixlen_1723);// L644:L645 +extern int (__mkstemps_1726) (char * (____template_1720), int ____suffixlen_1721);// L641 +extern int (__mkstemps_1727) (char * (____template_1722), int ____suffixlen_1723);// L644:L645 +extern char * ((__mkdtemp_1729) (char * (____template_1728)));// L662 +extern char * ((__mkdtemp_1730) (char * (____template_1728)));// L662 +extern int (__system_1732) (const char * (____command_1731));// L716 +extern int (__system_1733) (const char * (____command_1731));// L716 +extern int (__system_1734) (const char * (____command_1731));// L716 +extern int (__system_1735) (const char * (____command_1731));// L716 +extern char * ((__realpath_1738) (const char * __restrict ____name_1736, char * __restrict ____resolved_1737));// L733:L734 +extern char * ((__realpath_1739) (const char * __restrict ____name_1736, char * __restrict ____resolved_1737));// L733:L734 +// typedef moved to top of scope +extern void * ((__bsearch_1751) (const void * (____key_1741), const void * (____base_1742), __size_t_1 ____nmemb_1743, __size_t_1 ____size_1745, ____compar_fn_t_1740 ____compar_1747));// L754:L756 +extern void * ((__bsearch_1752) (const void * (____key_1741), const void * (____base_1742), __size_t_1093 ____nmemb_1744, __size_t_1093 ____size_1746, ____compar_fn_t_1740 ____compar_1747));// L754:L756 +extern void * ((__bsearch_1755) (const void * (____key_1741), const void * (____base_1742), __size_t_1 ____nmemb_1743, __size_t_1 ____size_1745, ____compar_fn_t_1740 ____compar_1747));// L754:L756 +extern void * ((__bsearch_1756) (const void * (____key_1741), const void * (____base_1742), __size_t_1093 ____nmemb_1744, __size_t_1093 ____size_1746, ____compar_fn_t_1740 ____compar_1747));// L754:L756 +/* no function due to type errors in the function prototype */ +extern void (__qsort_1784) (void * (____base_1777), __size_t_1 ____nmemb_1778, __size_t_1 ____size_1780, ____compar_fn_t_1740 ____compar_1782);// L764:L765 +extern void (__qsort_1786) (void * (____base_1777), __size_t_1093 ____nmemb_1779, __size_t_1093 ____size_1781, ____compar_fn_t_1740 ____compar_1782);// L764:L765 +extern void (__qsort_1788) (void * (____base_1777), __size_t_1 ____nmemb_1778, __size_t_1 ____size_1780, ____compar_fn_t_1740 ____compar_1782);// L764:L765 +extern void (__qsort_1790) (void * (____base_1777), __size_t_1093 ____nmemb_1779, __size_t_1093 ____size_1781, ____compar_fn_t_1740 ____compar_1782);// L764:L765 +extern int (__abs_1793) (int ____x_1792);// L774 +extern int (__abs_1794) (int ____x_1792);// L774 +extern long int (__labs_1796) (long int ____x_1795);// L775 +extern long int (__labs_1797) (long int ____x_1795);// L775 +extern long long int (__llabs_1799) (long long int ____x_1798);// L779:L780 +extern long long int (__llabs_1800) (long long int ____x_1798);// L779:L780 +extern __div_t_1190 (__div_1803) (int ____numer_1801, int ____denom_1802);// L788:L789 +extern __div_t_1190 (__div_1804) (int ____numer_1801, int ____denom_1802);// L788:L789 +extern __ldiv_t_1195 (__ldiv_1807) (long int ____numer_1805, long int ____denom_1806);// L790:L791 +extern __ldiv_t_1195 (__ldiv_1809) (long int ____numer_1805, long int ____denom_1806);// L790:L791 +extern __lldiv_t_1200 (__lldiv_1813) (long long int ____numer_1811, long long int ____denom_1812);// L796:L798 +extern __lldiv_t_1200 (__lldiv_1815) (long long int ____numer_1811, long long int ____denom_1812);// L796:L798 +extern char * ((__ecvt_1821) (double ____value_1817, int ____ndigit_1818, int * __restrict ____decpt_1819, int * __restrict ____sign_1820));// L811:L812 +extern char * ((__ecvt_1822) (double ____value_1817, int ____ndigit_1818, int * __restrict ____decpt_1819, int * __restrict ____sign_1820));// L811:L812 +extern char * ((__fcvt_1827) (double ____value_1823, int ____ndigit_1824, int * __restrict ____decpt_1825, int * __restrict ____sign_1826));// L817:L818 +extern char * ((__fcvt_1828) (double ____value_1823, int ____ndigit_1824, int * __restrict ____decpt_1825, int * __restrict ____sign_1826));// L817:L818 +extern char * ((__gcvt_1832) (double ____value_1829, int ____ndigit_1830, char * (____buf_1831)));// L823:L824 +extern char * ((__gcvt_1833) (double ____value_1829, int ____ndigit_1830, char * (____buf_1831)));// L823:L824 +extern char * ((__qecvt_1838) (long double ____value_1834, int ____ndigit_1835, int * __restrict ____decpt_1836, int * __restrict ____sign_1837));// L829:L831 +extern char * ((__qecvt_1839) (long double ____value_1834, int ____ndigit_1835, int * __restrict ____decpt_1836, int * __restrict ____sign_1837));// L829:L831 +extern char * ((__qfcvt_1844) (long double ____value_1840, int ____ndigit_1841, int * __restrict ____decpt_1842, int * __restrict ____sign_1843));// L832:L834 +extern char * ((__qfcvt_1845) (long double ____value_1840, int ____ndigit_1841, int * __restrict ____decpt_1842, int * __restrict ____sign_1843));// L832:L834 +extern char * ((__qgcvt_1849) (long double ____value_1846, int ____ndigit_1847, char * (____buf_1848)));// L835:L836 +extern char * ((__qgcvt_1850) (long double ____value_1846, int ____ndigit_1847, char * (____buf_1848)));// L835:L836 +extern int (__ecvt_r_1858) (double ____value_1851, int ____ndigit_1852, int * __restrict ____decpt_1853, int * __restrict ____sign_1854, char * __restrict ____buf_1855, __size_t_1 ____len_1856);// L841:L843 +extern int (__ecvt_r_1859) (double ____value_1851, int ____ndigit_1852, int * __restrict ____decpt_1853, int * __restrict ____sign_1854, char * __restrict ____buf_1855, __size_t_1093 ____len_1857);// L841:L843 +extern int (__fcvt_r_1867) (double ____value_1860, int ____ndigit_1861, int * __restrict ____decpt_1862, int * __restrict ____sign_1863, char * __restrict ____buf_1864, __size_t_1 ____len_1865);// L844:L846 +extern int (__fcvt_r_1868) (double ____value_1860, int ____ndigit_1861, int * __restrict ____decpt_1862, int * __restrict ____sign_1863, char * __restrict ____buf_1864, __size_t_1093 ____len_1866);// L844:L846 +extern int (__qecvt_r_1876) (long double ____value_1869, int ____ndigit_1870, int * __restrict ____decpt_1871, int * __restrict ____sign_1872, char * __restrict ____buf_1873, __size_t_1 ____len_1874);// L848:L851 +extern int (__qecvt_r_1877) (long double ____value_1869, int ____ndigit_1870, int * __restrict ____decpt_1871, int * __restrict ____sign_1872, char * __restrict ____buf_1873, __size_t_1093 ____len_1875);// L848:L851 +extern int (__qfcvt_r_1885) (long double ____value_1878, int ____ndigit_1879, int * __restrict ____decpt_1880, int * __restrict ____sign_1881, char * __restrict ____buf_1882, __size_t_1 ____len_1883);// L852:L855 +extern int (__qfcvt_r_1886) (long double ____value_1878, int ____ndigit_1879, int * __restrict ____decpt_1880, int * __restrict ____sign_1881, char * __restrict ____buf_1882, __size_t_1093 ____len_1884);// L852:L855 +extern int (__mblen_1890) (const char * (____s_1887), __size_t_1 ____n_1888);// L862 +extern int (__mblen_1891) (const char * (____s_1887), __size_t_1093 ____n_1889);// L862 +extern int (__mblen_1892) (const char * (____s_1887), __size_t_1 ____n_1888);// L862 +extern int (__mblen_1893) (const char * (____s_1887), __size_t_1093 ____n_1889);// L862 +extern int (__mbtowc_1898) (__wchar_t_1094 * __restrict ____pwc_1894, const char * __restrict ____s_1895, __size_t_1 ____n_1896);// L865:L866 +extern int (__mbtowc_1899) (__wchar_t_1094 * __restrict ____pwc_1894, const char * __restrict ____s_1895, __size_t_1093 ____n_1897);// L865:L866 +extern int (__wctomb_1902) (char * (____s_1900), __wchar_t_1094 ____wchar_1901);// L869 +extern __size_t_1 (__mbstowcs_1907) (__wchar_t_1094 * __restrict ____pwcs_1903, const char * __restrict ____s_1904, __size_t_1 ____n_1905);// L873:L874 +extern __size_t_1093 (__mbstowcs_1908) (__wchar_t_1094 * __restrict ____pwcs_1903, const char * __restrict ____s_1904, __size_t_1093 ____n_1906);// L873:L874 +extern __size_t_1 (__wcstombs_1913) (char * __restrict ____s_1909, const __wchar_t_1094 * __restrict ____pwcs_1910, __size_t_1 ____n_1911);// L876:L878 +extern __size_t_1093 (__wcstombs_1914) (char * __restrict ____s_1909, const __wchar_t_1094 * __restrict ____pwcs_1910, __size_t_1093 ____n_1912);// L876:L878 +extern int (__rpmatch_1917) (const char * (____response_1915));// L887 +extern int (__rpmatch_1916) (const char * (____response_1915));// L887 +extern int (__getsubopt_1922) (char * (* __restrict ____optionp_1918), char * const * __restrict ____tokens_1919, char * (* __restrict ____valuep_1920));// L898:L901 +extern int (__getsubopt_1921) (char * (* __restrict ____optionp_1918), char * const * __restrict ____tokens_1919, char * (* __restrict ____valuep_1920));// L898:L901 +extern int (__getloadavg_1925) (double ____loadavg_1923[], int ____nelem_1924);// L950:L951 +/* no function due to type errors in the function prototype */ +extern char * ((____realpath_chk_1931) (const char * __restrict ____name_1927, char * __restrict ____resolved_1928, __size_t_1 ____resolvedlen_1929));// L23:L25 +extern char * ((____realpath_chk_1932) (const char * __restrict ____name_1927, char * __restrict ____resolved_1928, __size_t_1093 ____resolvedlen_1930));// L23:L25 +extern char * ((____realpath_alias_1935) (const char * __restrict ____name_1933, char * __restrict ____resolved_1934));// L26:L28 +extern char * ((____realpath_chk_warn_1940) (const char * __restrict ____name_1936, char * __restrict ____resolved_1937, __size_t_1 ____resolvedlen_1938));// L29:L34 +extern char * ((____realpath_chk_warn_1941) (const char * __restrict ____name_1936, char * __restrict ____resolved_1937, __size_t_1093 ____resolvedlen_1939));// L29:L34 +/* no function due to type errors in the function prototype */ +extern int (____ptsname_r_chk_1951) (int ____fd_1945, char * (____buf_1946), __size_t_1 ____buflen_1947, __size_t_1 ____nreal_1949);// L52:L53 +extern int (____ptsname_r_chk_1952) (int ____fd_1945, char * (____buf_1946), __size_t_1093 ____buflen_1948, __size_t_1093 ____nreal_1950);// L52:L53 +extern int (____ptsname_r_alias_1957) (int ____fd_1953, char * (____buf_1954), __size_t_1 ____buflen_1955);// L54:L56 +extern int (____ptsname_r_alias_1958) (int ____fd_1953, char * (____buf_1954), __size_t_1093 ____buflen_1956);// L54:L56 +extern int (____ptsname_r_chk_warn_1965) (int ____fd_1959, char * (____buf_1960), __size_t_1 ____buflen_1961, __size_t_1 ____nreal_1963);// L57:L61 +extern int (____ptsname_r_chk_warn_1966) (int ____fd_1959, char * (____buf_1960), __size_t_1093 ____buflen_1962, __size_t_1093 ____nreal_1964);// L57:L61 +/* no function due to type errors in the function prototype */ +extern int (____wctomb_chk_1977) (char * (____s_1973), __wchar_t_1094 ____wchar_1974, __size_t_1 ____buflen_1975);// L77:L78 +extern int (____wctomb_chk_1978) (char * (____s_1973), __wchar_t_1094 ____wchar_1974, __size_t_1093 ____buflen_1976);// L77:L78 +extern int (____wctomb_alias_1981) (char * (____s_1979), __wchar_t_1094 ____wchar_1980);// L79:L80 +/* no function due to type errors in the function prototype */ +extern __size_t_1 (____mbstowcs_chk_1990) (__wchar_t_1094 * __restrict ____dst_1984, const char * __restrict ____src_1985, __size_t_1 ____len_1986, __size_t_1 ____dstlen_1988);// L98:L100 +extern __size_t_1093 (____mbstowcs_chk_1991) (__wchar_t_1094 * __restrict ____dst_1984, const char * __restrict ____src_1985, __size_t_1093 ____len_1987, __size_t_1093 ____dstlen_1989);// L98:L100 +extern __size_t_1 (____mbstowcs_alias_1996) (__wchar_t_1094 * __restrict ____dst_1992, const char * __restrict ____src_1993, __size_t_1 ____len_1994);// L101:L104 +extern __size_t_1093 (____mbstowcs_alias_1997) (__wchar_t_1094 * __restrict ____dst_1992, const char * __restrict ____src_1993, __size_t_1093 ____len_1995);// L101:L104 +extern __size_t_1 (____mbstowcs_chk_warn_2004) (__wchar_t_1094 * __restrict ____dst_1998, const char * __restrict ____src_1999, __size_t_1 ____len_2000, __size_t_1 ____dstlen_2002);// L105:L110 +extern __size_t_1093 (____mbstowcs_chk_warn_2005) (__wchar_t_1094 * __restrict ____dst_1998, const char * __restrict ____src_1999, __size_t_1093 ____len_2001, __size_t_1093 ____dstlen_2003);// L105:L110 +/* no function due to type errors in the function prototype */ +extern __size_t_1 (____wcstombs_chk_2016) (char * __restrict ____dst_2010, const __wchar_t_1094 * __restrict ____src_2011, __size_t_1 ____len_2012, __size_t_1 ____dstlen_2014);// L130:L132 +extern __size_t_1093 (____wcstombs_chk_2017) (char * __restrict ____dst_2010, const __wchar_t_1094 * __restrict ____src_2011, __size_t_1093 ____len_2013, __size_t_1093 ____dstlen_2015);// L130:L132 +extern __size_t_1 (____wcstombs_alias_2022) (char * __restrict ____dst_2018, const __wchar_t_1094 * __restrict ____src_2019, __size_t_1 ____len_2020);// L133:L136 +extern __size_t_1093 (____wcstombs_alias_2023) (char * __restrict ____dst_2018, const __wchar_t_1094 * __restrict ____src_2019, __size_t_1093 ____len_2021);// L133:L136 +extern __size_t_1 (____wcstombs_chk_warn_2030) (char * __restrict ____dst_2024, const __wchar_t_1094 * __restrict ____src_2025, __size_t_1 ____len_2026, __size_t_1 ____dstlen_2028);// L137:L141 +extern __size_t_1093 (____wcstombs_chk_warn_2031) (char * __restrict ____dst_2024, const __wchar_t_1094 * __restrict ____src_2025, __size_t_1093 ____len_2027, __size_t_1093 ____dstlen_2029);// L137:L141 +// typedef moved to top of scope +// typedef moved to top of scope +/* no function due to type errors in the function prototype */ +extern void * ((__memmove_2053) (void * (____dest_2048), const void * (____src_2049), __size_t_1 ____n_2050));// L46:L47 +extern void * ((__memmove_2054) (void * (____dest_2048), const void * (____src_2049), __size_t_1093 ____n_2051));// L46:L47 +extern void * ((__memmove_2055) (void * (____dest_2048), const void * (____src_2049), __size_t_2037 ____n_2052));// L46:L47 +extern void * ((__memset_2070) (void * (____s_2065), int ____c_2066, __size_t_1 ____n_2067));// L62 +extern void * ((__memset_2071) (void * (____s_2065), int ____c_2066, __size_t_1093 ____n_2068));// L62 +extern void * ((__memset_2072) (void * (____s_2065), int ____c_2066, __size_t_2037 ____n_2069));// L62 +extern void * ((__memset_2073) (void * (____s_2065), int ____c_2066, __size_t_1 ____n_2067));// L62 +extern void * ((__memset_2074) (void * (____s_2065), int ____c_2066, __size_t_1093 ____n_2068));// L62 +extern void * ((__memset_2075) (void * (____s_2065), int ____c_2066, __size_t_2037 ____n_2069));// L62 +extern int (__memcmp_2081) (const void * (____s1_2076), const void * (____s2_2077), __size_t_1 ____n_2078);// L65:L66 +extern int (__memcmp_2082) (const void * (____s1_2076), const void * (____s2_2077), __size_t_1093 ____n_2079);// L65:L66 +extern int (__memcmp_2083) (const void * (____s1_2076), const void * (____s2_2077), __size_t_2037 ____n_2080);// L65:L66 +extern void * ((__memchr_2089) (const void * (____s_2084), int ____c_2085, __size_t_1 ____n_2086));// L92:L93 +extern void * ((__memchr_2090) (const void * (____s_2084), int ____c_2085, __size_t_1093 ____n_2087));// L92:L93 +extern void * ((__memchr_2091) (const void * (____s_2084), int ____c_2085, __size_t_2037 ____n_2088));// L92:L93 +extern char * ((__strcpy_2094) (char * __restrict ____dest_2092, const char * __restrict ____src_2093));// L125:L126 +extern char * ((__strncpy_2100) (char * __restrict ____dest_2095, const char * __restrict ____src_2096, __size_t_1 ____n_2097));// L128:L130 +extern char * ((__strncpy_2101) (char * __restrict ____dest_2095, const char * __restrict ____src_2096, __size_t_1093 ____n_2098));// L128:L130 +extern char * ((__strncpy_2102) (char * __restrict ____dest_2095, const char * __restrict ____src_2096, __size_t_2037 ____n_2099));// L128:L130 +extern char * ((__strcat_2105) (char * __restrict ____dest_2103, const char * __restrict ____src_2104));// L133:L134 +extern char * ((__strncat_2111) (char * __restrict ____dest_2106, const char * __restrict ____src_2107, __size_t_1 ____n_2108));// L136:L137 +extern char * ((__strncat_2112) (char * __restrict ____dest_2106, const char * __restrict ____src_2107, __size_t_1093 ____n_2109));// L136:L137 +extern char * ((__strncat_2113) (char * __restrict ____dest_2106, const char * __restrict ____src_2107, __size_t_2037 ____n_2110));// L136:L137 +extern int (__strcmp_2116) (const char * (____s1_2114), const char * (____s2_2115));// L140:L141 +extern int (__strncmp_2122) (const char * (____s1_2117), const char * (____s2_2118), __size_t_1 ____n_2119);// L143:L144 +extern int (__strncmp_2123) (const char * (____s1_2117), const char * (____s2_2118), __size_t_1093 ____n_2120);// L143:L144 +extern int (__strncmp_2124) (const char * (____s1_2117), const char * (____s2_2118), __size_t_2037 ____n_2121);// L143:L144 +extern int (__strcoll_2127) (const char * (____s1_2125), const char * (____s2_2126));// L147:L148 +extern __size_t_1 (__strxfrm_2133) (char * __restrict ____dest_2128, const char * __restrict ____src_2129, __size_t_1 ____n_2130);// L150:L152 +extern __size_t_1093 (__strxfrm_2134) (char * __restrict ____dest_2128, const char * __restrict ____src_2129, __size_t_1093 ____n_2131);// L150:L152 +extern __size_t_2037 (__strxfrm_2135) (char * __restrict ____dest_2128, const char * __restrict ____src_2129, __size_t_2037 ____n_2132);// L150:L152 +// typedef moved to top of scope +// typedef moved to top of scope +extern int (__strcoll_l_2148) (const char * (____s1_2145), const char * (____s2_2146), ____locale_t_2143 ____l_2147);// L162:L163 +extern __size_t_1 (__strxfrm_l_2155) (char * (____dest_2149), const char * (____src_2150), __size_t_1 ____n_2151, ____locale_t_2143 ____l_2154);// L165:L166 +extern __size_t_1093 (__strxfrm_l_2156) (char * (____dest_2149), const char * (____src_2150), __size_t_1093 ____n_2152, ____locale_t_2143 ____l_2154);// L165:L166 +extern __size_t_2037 (__strxfrm_l_2157) (char * (____dest_2149), const char * (____src_2150), __size_t_2037 ____n_2153, ____locale_t_2143 ____l_2154);// L165:L166 +extern char * ((__strdup_2159) (const char * (____s_2158)));// L171:L172 +extern char * ((__strndup_2164) (const char * (____string_2160), __size_t_1 ____n_2161));// L179:L180 +extern char * ((__strndup_2165) (const char * (____string_2160), __size_t_1093 ____n_2162));// L179:L180 +extern char * ((__strndup_2166) (const char * (____string_2160), __size_t_2037 ____n_2163));// L179:L180 +extern char * ((__strchr_2169) (const char * (____s_2167), int ____c_2168));// L231:L232 +extern char * ((__strrchr_2172) (const char * (____s_2170), int ____c_2171));// L258:L259 +extern __size_t_1 (__strcspn_2175) (const char * (____s_2173), const char * (____reject_2174));// L280:L281 +extern __size_t_1093 (__strcspn_2176) (const char * (____s_2173), const char * (____reject_2174));// L280:L281 +extern __size_t_2037 (__strcspn_2177) (const char * (____s_2173), const char * (____reject_2174));// L280:L281 +extern __size_t_1 (__strspn_2180) (const char * (____s_2178), const char * (____accept_2179));// L284:L285 +extern __size_t_1093 (__strspn_2181) (const char * (____s_2178), const char * (____accept_2179));// L284:L285 +extern __size_t_2037 (__strspn_2182) (const char * (____s_2178), const char * (____accept_2179));// L284:L285 +extern char * ((__strpbrk_2185) (const char * (____s_2183), const char * (____accept_2184)));// L310:L311 +extern char * ((__strstr_2188) (const char * (____haystack_2186), const char * (____needle_2187)));// L337:L338 +extern char * ((__strtok_2191) (char * __restrict ____s_2189, const char * __restrict ____delim_2190));// L343:L344 +extern char * ((____strtok_r_2195) (char * __restrict ____s_2192, const char * __restrict ____delim_2193, char * (* __restrict ____save_ptr_2194)));// L349:L352 +extern char * ((__strtok_r_2199) (char * __restrict ____s_2196, const char * __restrict ____delim_2197, char * (* __restrict ____save_ptr_2198)));// L354:L356 +extern __size_t_1 (__strlen_2201) (const char * (____s_2200));// L394:L395 +extern __size_t_1093 (__strlen_2202) (const char * (____s_2200));// L394:L395 +extern __size_t_2037 (__strlen_2203) (const char * (____s_2200));// L394:L395 +extern __size_t_1 (__strlen_2204) (const char * (____s_2200));// L394:L395 +extern __size_t_1093 (__strlen_2205) (const char * (____s_2200));// L394:L395 +extern __size_t_2037 (__strlen_2206) (const char * (____s_2200));// L394:L395 +extern __size_t_1 (__strnlen_2211) (const char * (____string_2207), __size_t_1 ____maxlen_2208);// L401:L402 +extern __size_t_1093 (__strnlen_2212) (const char * (____string_2207), __size_t_1093 ____maxlen_2209);// L401:L402 +extern __size_t_2037 (__strnlen_2213) (const char * (____string_2207), __size_t_2037 ____maxlen_2210);// L401:L402 +extern char * ((__strerror_2215) (int ____errnum_2214));// L408 +extern char * ((__strerror_2216) (int ____errnum_2214));// L408 +extern int (__strerror_r_2222) (int ____errnum_2217, char * (____buf_2218), __size_t_1 ____buflen_2219);// L422:L424 +extern int (__strerror_r_2223) (int ____errnum_2217, char * (____buf_2218), __size_t_1093 ____buflen_2220);// L422:L424 +extern int (__strerror_r_2224) (int ____errnum_2217, char * (____buf_2218), __size_t_2037 ____buflen_2221);// L422:L424 +extern char * ((__strerror_l_2227) (int ____errnum_2225, ____locale_t_2143 ____l_2226));// L440 +extern void (____bzero_2232) (void * (____s_2228), __size_t_1 ____n_2229);// L446 +extern void (____bzero_2233) (void * (____s_2228), __size_t_1093 ____n_2230);// L446 +extern void (____bzero_2234) (void * (____s_2228), __size_t_2037 ____n_2231);// L446 +extern void (____bzero_2235) (void * (____s_2228), __size_t_1 ____n_2229);// L446 +extern void (____bzero_2236) (void * (____s_2228), __size_t_1093 ____n_2230);// L446 +extern void (____bzero_2237) (void * (____s_2228), __size_t_2037 ____n_2231);// L446 +extern void (__bcopy_2243) (const void * (____src_2238), void * (____dest_2239), __size_t_1 ____n_2240);// L450:L451 +extern void (__bcopy_2244) (const void * (____src_2238), void * (____dest_2239), __size_t_1093 ____n_2241);// L450:L451 +extern void (__bcopy_2245) (const void * (____src_2238), void * (____dest_2239), __size_t_2037 ____n_2242);// L450:L451 +extern void (__bzero_2250) (void * (____s_2246), __size_t_1 ____n_2247);// L454 +extern void (__bzero_2251) (void * (____s_2246), __size_t_1093 ____n_2248);// L454 +extern void (__bzero_2252) (void * (____s_2246), __size_t_2037 ____n_2249);// L454 +extern int (__bcmp_2258) (const void * (____s1_2253), const void * (____s2_2254), __size_t_1 ____n_2255);// L457:L458 +extern int (__bcmp_2259) (const void * (____s1_2253), const void * (____s2_2254), __size_t_1093 ____n_2256);// L457:L458 +extern int (__bcmp_2260) (const void * (____s1_2253), const void * (____s2_2254), __size_t_2037 ____n_2257);// L457:L458 +extern char * ((__index_2263) (const char * (____s_2261), int ____c_2262));// L484:L485 +extern char * ((__rindex_2266) (const char * (____s_2264), int ____c_2265));// L512:L513 +extern int (__ffs_2268) (int ____i_2267);// L518 +extern int (__strcasecmp_2271) (const char * (____s1_2269), const char * (____s2_2270));// L529:L530 +extern int (__strncasecmp_2277) (const char * (____s1_2272), const char * (____s2_2273), __size_t_1 ____n_2274);// L533:L534 +extern int (__strncasecmp_2278) (const char * (____s1_2272), const char * (____s2_2273), __size_t_1093 ____n_2275);// L533:L534 +extern int (__strncasecmp_2279) (const char * (____s1_2272), const char * (____s2_2273), __size_t_2037 ____n_2276);// L533:L534 +extern char * ((__strsep_2282) (char * (* __restrict ____stringp_2280), const char * __restrict ____delim_2281));// L552:L554 +extern char * ((__strsignal_2284) (int ____sig_2283));// L559 +extern char * ((____stpcpy_2287) (char * __restrict ____dest_2285, const char * __restrict ____src_2286));// L562:L563 +extern char * ((__stpcpy_2290) (char * __restrict ____dest_2288, const char * __restrict ____src_2289));// L564:L565 +extern char * ((____stpncpy_2296) (char * __restrict ____dest_2291, const char * __restrict ____src_2292, __size_t_1 ____n_2293));// L569:L571 +extern char * ((____stpncpy_2297) (char * __restrict ____dest_2291, const char * __restrict ____src_2292, __size_t_1093 ____n_2294));// L569:L571 +extern char * ((____stpncpy_2298) (char * __restrict ____dest_2291, const char * __restrict ____src_2292, __size_t_2037 ____n_2295));// L569:L571 +extern char * ((__stpncpy_2304) (char * __restrict ____dest_2299, const char * __restrict ____src_2300, __size_t_1 ____n_2301));// L572:L574 +extern char * ((__stpncpy_2305) (char * __restrict ____dest_2299, const char * __restrict ____src_2300, __size_t_1093 ____n_2302));// L572:L574 +extern char * ((__stpncpy_2306) (char * __restrict ____dest_2299, const char * __restrict ____src_2300, __size_t_2037 ____n_2303));// L572:L574 +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +extern char * ((____stpncpy_chk_2360) (char * (____dest_2352), const char * (____src_2353), __size_t_1 ____n_2354, __size_t_1 ____destlen_2357));// L130:L131 +extern char * ((____stpncpy_chk_2361) (char * (____dest_2352), const char * (____src_2353), __size_t_1093 ____n_2355, __size_t_1093 ____destlen_2358));// L130:L131 +extern char * ((____stpncpy_chk_2362) (char * (____dest_2352), const char * (____src_2353), __size_t_2037 ____n_2356, __size_t_2037 ____destlen_2359));// L130:L131 +extern char * ((____stpncpy_alias_2368) (char * (____dest_2363), const char * (____src_2364), __size_t_1 ____n_2365));// L132:L133 +extern char * ((____stpncpy_alias_2369) (char * (____dest_2363), const char * (____src_2364), __size_t_1093 ____n_2366));// L132:L133 +extern char * ((____stpncpy_alias_2370) (char * (____dest_2363), const char * (____src_2364), __size_t_2037 ____n_2367));// L132:L133 +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +void (__build_dep_2392) (void ) { + { +if (__static_condition_default_2394) { { { - __dt_1258 = "-i" ; // L10 -} -} -} -} -if ( __dt_1258 )// L14 +char * (__dt_2390)= ( ( void * ) 0 );// L7 + +if (__static_condition_default_2395) { +if ( rand( ) % 2 )// L9 { { @@ -1509,29 +3196,34 @@ if ( __dt_1258 )// L14 + __dt_2390 = "-i" ; // L10 } } } } +if (__static_condition_default_2396) { +__static_type_error("invalid type found in if statement"); } +char __buf_2391[50];// L18 - + __strcpy_2094 ( __buf_2391 ,"module option(s): ") ; // L19 + __strcat_2105 ( __buf_2391 , __dt_2390 ) ; // L21 +} } -}} -void (__build_dep_1261) (void ) { -{ -if (__static_condition_default_1268) { +} + +if (__static_condition_default_2397) { { { -char * (__dt_1258)= ( ( void * ) 0 );// L7 +char * (__dt_2390)= ( ( void * ) 0 );// L7 -if (__static_condition_default_1269) { +if (__static_condition_default_2398) { if ( rand( ) % 2 )// L9 { @@ -1540,13 +3232,15 @@ if ( rand( ) % 2 )// L9 - __dt_1258 = "-i" ; // L10 + __dt_2390 = "-i" ; // L10 } } } } -if (__static_condition_default_1270) { -if ( rand( ) % 2 )// L9 +if (__static_condition_default_2399) { +__static_type_error("invalid type found in if statement"); +} +if ( __dt_2390 )// L14 { { @@ -1554,31 +3248,29 @@ if ( rand( ) % 2 )// L9 - __dt_1258 = "-i" ; // L10 } } } } -char __buf_1259[50];// L18 - -__static_type_error("type error") ; // L19 -__static_type_error("type error") ; // L21 -} } } -if (__static_condition_default_1271) { +}} +void (__build_dep_2393) (void ) { + +{ +if (__static_condition_default_2400) { { { -char * (__dt_1258)= ( ( void * ) 0 );// L7 +char * (__dt_2390)= ( ( void * ) 0 );// L7 -if (__static_condition_default_1272) { +if (__static_condition_default_2401) { if ( rand( ) % 2 )// L9 { @@ -1587,12 +3279,34 @@ if ( rand( ) % 2 )// L9 - __dt_1258 = "-i" ; // L10 + __dt_2390 = "-i" ; // L10 +} } } } +if (__static_condition_default_2402) { +__static_type_error("invalid type found in if statement"); } -if (__static_condition_default_1273) { +char __buf_2391[50];// L18 + +__static_type_error("type error") ; // L19 +__static_type_error("type error") ; // L21 +} +} + + +} + +if (__static_condition_default_2403) { + +{ +{ + + + +char * (__dt_2390)= ( ( void * ) 0 );// L7 + +if (__static_condition_default_2404) { if ( rand( ) % 2 )// L9 { @@ -1601,12 +3315,15 @@ if ( rand( ) % 2 )// L9 - __dt_1258 = "-i" ; // L10 + __dt_2390 = "-i" ; // L10 +} } } } +if (__static_condition_default_2405) { +__static_type_error("invalid type found in if statement"); } -if ( __dt_1258 )// L14 +if ( __dt_2390 )// L14 { { @@ -1624,18 +3341,18 @@ if ( __dt_1258 )// L14 } }} -int (__main_1276) (int __argc_1274, char * (* (__argv_1275))) { +int (__main_2408) (int __argc_2406, char * (* (__argv_2407))) { { { -if (__static_condition_default_1277) { - __build_dep_1260 ( ) ; // L27 +if (__static_condition_default_2409) { + __build_dep_2392 ( ) ; // L27 } -if (__static_condition_default_1278) { - __build_dep_1261 ( ) ; // L27 +if (__static_condition_default_2410) { + __build_dep_2393 ( ) ; // L27 } return 0 ;// L28 } diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.clangres index e40d1223..6e329efe 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.clangres @@ -1,7 +1,4 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.c:1543:2: warning: Value stored to '__dt_1258' is never read [deadcode.DeadStores] - __dt_1258 = "-i" ; // L10 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.c:3282:2: warning: Value stored to '__dt_2390' is never read [deadcode.DeadStores] + __dt_2390 = "-i" ; // L10 ^ ~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.c:1557:2: warning: Value stored to '__dt_1258' is never read [deadcode.DeadStores] - __dt_1258 = "-i" ; // L10 - ^ ~~~~ -2 warnings generated. +1 warning generated. diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.c index efea7997..5d997ca9 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.c @@ -7,368 +7,368 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_521; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_1409; -extern const bool __static_condition_default_1810; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_1775; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_419; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_1385; -extern const bool __static_condition_default_646; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_1516; -extern const bool __static_condition_default_1315; +extern const bool __static_condition_default_568; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_1428; +extern const bool __static_condition_default_1808; extern const bool __static_condition_default_433; -extern const bool __static_condition_default_1475; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_1420; -extern const bool __static_condition_default_1814; -extern const bool __static_condition_default_1373; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_1568; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_170; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_1165; +extern const bool __static_condition_default_1489; +extern const bool __static_condition_default_1532; extern const bool __static_condition_default_241; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_1357; -extern const bool __static_condition_default_914; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_2049; -extern const bool __static_condition_default_1428; -extern const bool __static_condition_default_388; -extern const bool __static_condition_default_1459; -extern const bool __static_condition_default_780; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_852; +extern const bool __static_condition_default_907; extern const bool __static_condition_default_1395; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_583; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_2043; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_1152; -extern const bool __static_condition_default_1498; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_1353; -extern const bool __static_condition_default_848; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_408; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_803; -extern const bool __static_condition_default_1572; -extern const bool __static_condition_default_929; +extern const bool __static_condition_default_1785; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_647; extern const bool __static_condition_default_823; -extern const bool __static_condition_default_1432; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_365; +extern const bool __static_condition_default_2053; +extern const bool __static_condition_default_1315; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_455; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_2070; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_1381; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_2048; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_259; extern const bool __static_condition_default_761; -extern const bool __static_condition_default_585; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_473; extern const bool __static_condition_default_638; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_2042; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_357; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_347; -extern const bool __static_condition_default_549; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_769; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_1515; -extern const bool __static_condition_default_217; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_380; -extern const bool __static_condition_default_1773; -extern const bool __static_condition_default_1754; -extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_76; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_1164; +extern const bool __static_condition_default_709; extern const bool __static_condition_default_1750; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_461; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_2061; -extern const bool __static_condition_default_431; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_613; -extern const bool __static_condition_default_894; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_1532; -extern const bool __static_condition_default_393; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_536; -extern const bool __static_condition_default_564; -extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_1560; -extern const bool __static_condition_default_842; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_891; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_858; -extern const bool __static_condition_default_382; -extern const bool __static_condition_default_956; -extern const bool __static_condition_default_2060; -extern const bool __static_condition_default_907; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_1416; -extern const bool __static_condition_default_1774; -extern const bool __static_condition_default_2065; +extern const bool __static_condition_default_846; +extern const bool __static_condition_default_1388; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_1028; extern const bool __static_condition_default_469; -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_1753; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_1409; +extern const bool __static_condition_default_1791; +extern const bool __static_condition_default_1391; extern const bool __static_condition_default_2073; -extern const bool __static_condition_default_1944; extern const bool __static_condition_default_286; -extern const bool __static_condition_default_619; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_2066; +extern const bool __static_condition_default_1159; +extern const bool __static_condition_default_677; +extern const bool __static_condition_default_1564; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_1753; extern const bool __static_condition_default_550; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_2037; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_313; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_543; -extern const bool __static_condition_default_2055; -extern const bool __static_condition_default_311; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_1377; -extern const bool __static_condition_default_367; -extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_559; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_872; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_693; +extern const bool __static_condition_default_979; extern const bool __static_condition_default_275; -extern const bool __static_condition_default_753; -extern const bool __static_condition_default_386; -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_963; -extern const bool __static_condition_default_1345; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_723; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_1459; +extern const bool __static_condition_default_1816; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_1373; +extern const bool __static_condition_default_1475; extern const bool __static_condition_default_779; -extern const bool __static_condition_default_846; -extern const bool __static_condition_default_955; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_645; -extern const bool __static_condition_default_957; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_887; -extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_2058; -extern const bool __static_condition_default_1402; -extern const bool __static_condition_default_1369; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_1349; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_1556; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_2046; -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_568; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_1776; extern const bool __static_condition_default_2057; -extern const bool __static_condition_default_333; -extern const bool __static_condition_default_1453; -extern const bool __static_condition_default_2066; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_2050; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_1164; -extern const bool __static_condition_default_2063; -extern const bool __static_condition_default_1398; -extern const bool __static_condition_default_1816; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_590; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_1489; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_1531; -extern const bool __static_condition_default_1789; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_2051; +extern const bool __static_condition_default_2064; extern const bool __static_condition_default_1424; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_793; -extern const bool __static_condition_default_2062; +extern const bool __static_condition_default_636; +extern const bool __static_condition_default_521; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_1402; +extern const bool __static_condition_default_2049; +extern const bool __static_condition_default_386; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_333; +extern const bool __static_condition_default_789; +extern const bool __static_condition_default_583; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_1774; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_1458; extern const bool __static_condition_default_53; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_2059; -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_499; extern const bool __static_condition_default_621; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_670; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_1552; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_755; -extern const bool __static_condition_default_1405; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_1808; -extern const bool __static_condition_default_875; +extern const bool __static_condition_default_1341; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_1568; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_169; extern const bool __static_condition_default_787; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_2054; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_488; -extern const bool __static_condition_default_1564; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_1388; -extern const bool __static_condition_default_1165; -extern const bool __static_condition_default_1361; -extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_1776; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_747; +extern const bool __static_condition_default_2046; +extern const bool __static_condition_default_2050; +extern const bool __static_condition_default_1405; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_769; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_2060; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_651; extern const bool __static_condition_default_503; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_198; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_2064; -extern const bool __static_condition_default_204; -extern const bool __static_condition_default_2053; -extern const bool __static_condition_default_685; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_1572; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_721; +extern const bool __static_condition_default_1357; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_1749; +extern const bool __static_condition_default_1090; extern const bool __static_condition_default_544; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_1785; -extern const bool __static_condition_default_1159; -extern const bool __static_condition_default_2071; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_817; +extern const bool __static_condition_default_613; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_2061; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_380; +extern const bool __static_condition_default_759; extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_299; +extern const bool __static_condition_default_894; +extern const bool __static_condition_default_1754; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_963; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_2051; +extern const bool __static_condition_default_1420; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_2054; +extern const bool __static_condition_default_834; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_891; +extern const bool __static_condition_default_2047; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_2044; +extern const bool __static_condition_default_1556; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_1432; +extern const bool __static_condition_default_367; +extern const bool __static_condition_default_929; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_842; extern const bool __static_condition_default_938; -extern const bool __static_condition_default_1436; -extern const bool __static_condition_default_684; +extern const bool __static_condition_default_1349; extern const bool __static_condition_default_238; -extern const bool __static_condition_default_709; -extern const bool __static_condition_default_1576; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_2044; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_1416; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_1385; +extern const bool __static_condition_default_187; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_258; extern const bool __static_condition_default_699; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_248; -extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_475; extern const bool __static_condition_default_736; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_315; -extern const bool __static_condition_default_2072; -extern const bool __static_condition_default_677; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_1458; -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_632; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_537; extern const bool __static_condition_default_661; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_402; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_317; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_512; -extern const bool __static_condition_default_76; -extern const bool __static_condition_default_2056; -extern const bool __static_condition_default_438; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_412; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_259; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_536; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_1560; extern const bool __static_condition_default_486; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_1791; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_1485; -extern const bool __static_condition_default_2052; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_1377; +extern const bool __static_condition_default_1361; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_619; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_2059; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_1789; +extern const bool __static_condition_default_2065; +extern const bool __static_condition_default_753; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_419; +extern const bool __static_condition_default_1516; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_2071; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_2063; +extern const bool __static_condition_default_2072; +extern const bool __static_condition_default_955; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_791; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_1814; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_1057; extern const bool __static_condition_default_649; -extern const bool __static_condition_default_701; -extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_1341; -extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_1365; -extern const bool __static_condition_default_2048; +extern const bool __static_condition_default_549; +extern const bool __static_condition_default_1453; +extern const bool __static_condition_default_1498; +extern const bool __static_condition_default_2058; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_337; +extern const bool __static_condition_default_559; +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_488; +extern const bool __static_condition_default_1152; +extern const bool __static_condition_default_388; +extern const bool __static_condition_default_2042; +extern const bool __static_condition_default_1531; +extern const bool __static_condition_default_290; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_1775; +extern const bool __static_condition_default_311; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_1369; +extern const bool __static_condition_default_1773; +extern const bool __static_condition_default_813; extern const bool __static_condition_default_2045; -extern const bool __static_condition_default_2047; -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_187; -extern const bool __static_condition_default_789; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_702; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_1398; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_875; +extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_1944; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_1515; +extern const bool __static_condition_default_264; extern const bool __static_condition_default_280; -extern const bool __static_condition_default_1391; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_2070; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_512; +extern const bool __static_condition_default_223; extern const bool __static_condition_default_1787; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_290; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_1381; -extern const bool __static_condition_default_1749; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_432; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_747; +extern const bool __static_condition_default_2056; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_1436; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_1353; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_1345; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_2062; +extern const bool __static_condition_default_2037; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_1576; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_2055; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_1810; +extern const bool __static_condition_default_84; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_347; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_1365; +extern const bool __static_condition_default_365; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_670; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_204; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_702; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_1552; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_2043; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_1485; +extern const bool __static_condition_default_382; +extern const bool __static_condition_default_489; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_2052; +extern const bool __static_condition_default_246; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c index 3f9d3063..7d238321 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c @@ -7,144 +7,379 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_643; -extern const bool __static_condition_default_824; -extern const bool __static_condition_default_512; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_483; -extern const bool __static_condition_default_680; -extern const bool __static_condition_default_335; -extern const bool __static_condition_default_423; -extern const bool __static_condition_default_525; -extern const bool __static_condition_default_374; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_622; -extern const bool __static_condition_default_859; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_687; -extern const bool __static_condition_default_484; -extern const bool __static_condition_default_667; -extern const bool __static_condition_default_251; -extern const bool __static_condition_default_383; -extern const bool __static_condition_default_419; -extern const bool __static_condition_default_645; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_294; -extern const bool __static_condition_default_579; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_398; -extern const bool __static_condition_default_466; +extern const bool __static_condition_default_568; +extern const bool __static_condition_default_2055; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_1428; +extern const bool __static_condition_default_1808; +extern const bool __static_condition_default_433; extern const bool __static_condition_default_393; -extern const bool __static_condition_default_234; -extern const bool __static_condition_default_535; -extern const bool __static_condition_default_513; -extern const bool __static_condition_default_703; -extern const bool __static_condition_default_853; -extern const bool __static_condition_default_832; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_688; -extern const bool __static_condition_default_546; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_628; -extern const bool __static_condition_default_227; -extern const bool __static_condition_default_441; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_702; -extern const bool __static_condition_default_162; -extern const bool __static_condition_default_336; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_857; -extern const bool __static_condition_default_558; -extern const bool __static_condition_default_74; -extern const bool __static_condition_default_696; -extern const bool __static_condition_default_306; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_500; -extern const bool __static_condition_default_404; -extern const bool __static_condition_default_406; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_976; -extern const bool __static_condition_default_654; extern const bool __static_condition_default_991; -extern const bool __static_condition_default_652; +extern const bool __static_condition_default_1165; +extern const bool __static_condition_default_1489; +extern const bool __static_condition_default_1532; +extern const bool __static_condition_default_2069; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_2092; +extern const bool __static_condition_default_907; +extern const bool __static_condition_default_1395; +extern const bool __static_condition_default_1785; +extern const bool __static_condition_default_2100; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_1315; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_2086; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_455; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_2098; +extern const bool __static_condition_default_1381; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_2059; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_761; +extern const bool __static_condition_default_2104; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_76; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_2102; +extern const bool __static_condition_default_1164; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_1750; +extern const bool __static_condition_default_846; +extern const bool __static_condition_default_1388; +extern const bool __static_condition_default_2090; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_2095; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_1409; +extern const bool __static_condition_default_1791; +extern const bool __static_condition_default_2056; +extern const bool __static_condition_default_1391; +extern const bool __static_condition_default_2097; +extern const bool __static_condition_default_2067; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_1159; +extern const bool __static_condition_default_677; +extern const bool __static_condition_default_1564; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_1753; +extern const bool __static_condition_default_550; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_2060; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_1459; +extern const bool __static_condition_default_1816; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_1373; +extern const bool __static_condition_default_1475; +extern const bool __static_condition_default_779; +extern const bool __static_condition_default_2044; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_1776; +extern const bool __static_condition_default_2101; +extern const bool __static_condition_default_1424; +extern const bool __static_condition_default_2087; +extern const bool __static_condition_default_636; +extern const bool __static_condition_default_521; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_1402; +extern const bool __static_condition_default_386; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_333; +extern const bool __static_condition_default_789; +extern const bool __static_condition_default_583; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_1774; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_1458; +extern const bool __static_condition_default_53; extern const bool __static_condition_default_621; -extern const bool __static_condition_default_236; -extern const bool __static_condition_default_434; -extern const bool __static_condition_default_165; -extern const bool __static_condition_default_377; -extern const bool __static_condition_default_990; -extern const bool __static_condition_default_994; +extern const bool __static_condition_default_1341; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_2050; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_1568; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_1405; +extern const bool __static_condition_default_2068; +extern const bool __static_condition_default_2105; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_769; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_1572; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_721; +extern const bool __static_condition_default_1357; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_1749; +extern const bool __static_condition_default_1090; extern const bool __static_condition_default_544; -extern const bool __static_condition_default_464; -extern const bool __static_condition_default_594; -extern const bool __static_condition_default_223; +extern const bool __static_condition_default_613; +extern const bool __static_condition_default_662; extern const bool __static_condition_default_431; -extern const bool __static_condition_default_609; -extern const bool __static_condition_default_308; -extern const bool __static_condition_default_118; -extern const bool __static_condition_default_361; -extern const bool __static_condition_default_230; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_532; -extern const bool __static_condition_default_161; -extern const bool __static_condition_default_632; -extern const bool __static_condition_default_681; -extern const bool __static_condition_default_811; -extern const bool __static_condition_default_695; -extern const bool __static_condition_default_397; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_900; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_2057; +extern const bool __static_condition_default_380; +extern const bool __static_condition_default_759; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_2091; +extern const bool __static_condition_default_894; +extern const bool __static_condition_default_1754; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_963; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_1420; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_249; extern const bool __static_condition_default_834; -extern const bool __static_condition_default_378; -extern const bool __static_condition_default_232; -extern const bool __static_condition_default_644; -extern const bool __static_condition_default_226; -extern const bool __static_condition_default_394; -extern const bool __static_condition_default_421; -extern const bool __static_condition_default_533; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_891; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_2099; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_2106; +extern const bool __static_condition_default_1556; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_1432; +extern const bool __static_condition_default_367; +extern const bool __static_condition_default_929; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_842; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_2058; +extern const bool __static_condition_default_1349; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_1416; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_2088; +extern const bool __static_condition_default_1385; +extern const bool __static_condition_default_187; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_288; extern const bool __static_condition_default_536; -extern const bool __static_condition_default_975; -extern const bool __static_condition_default_435; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_989; -extern const bool __static_condition_default_225; -extern const bool __static_condition_default_268; -extern const bool __static_condition_default_418; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_1560; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_1377; +extern const bool __static_condition_default_1361; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_619; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_1789; +extern const bool __static_condition_default_753; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_419; +extern const bool __static_condition_default_1516; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_2084; +extern const bool __static_condition_default_955; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_791; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_1814; +extern const bool __static_condition_default_2045; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_549; +extern const bool __static_condition_default_1453; +extern const bool __static_condition_default_1498; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_337; +extern const bool __static_condition_default_559; +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_488; +extern const bool __static_condition_default_1152; +extern const bool __static_condition_default_2085; +extern const bool __static_condition_default_388; +extern const bool __static_condition_default_1531; +extern const bool __static_condition_default_290; extern const bool __static_condition_default_284; -extern const bool __static_condition_default_399; -extern const bool __static_condition_default_524; -extern const bool __static_condition_default_420; -extern const bool __static_condition_default_277; -extern const bool __static_condition_default_304; -extern const bool __static_condition_default_482; -extern const bool __static_condition_default_851; -extern const bool __static_condition_default_424; -extern const bool __static_condition_default_603; -extern const bool __static_condition_default_485; -extern const bool __static_condition_default_531; -extern const bool __static_condition_default_620; -extern const bool __static_condition_default_672; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_993; -extern const bool __static_condition_default_502; -extern const bool __static_condition_default_572; -extern const bool __static_condition_default_660; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_673; -extern const bool __static_condition_default_988; -extern const bool __static_condition_default_426; +extern const bool __static_condition_default_2046; +extern const bool __static_condition_default_1775; +extern const bool __static_condition_default_311; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_2082; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_1369; +extern const bool __static_condition_default_1773; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_1398; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_875; +extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_1944; +extern const bool __static_condition_default_2094; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_1515; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_512; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_1787; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_2096; +extern const bool __static_condition_default_747; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_1436; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_1353; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_1345; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_2093; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_2083; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_2047; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_1576; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_2048; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_2049; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_1810; +extern const bool __static_condition_default_84; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_347; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_1365; +extern const bool __static_condition_default_365; +extern const bool __static_condition_default_2089; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_670; extern const bool __static_condition_default_637; -extern const bool __static_condition_default_995; -extern const bool __static_condition_default_992; -extern const bool __static_condition_default_302; -extern const bool __static_condition_default_266; -extern const bool __static_condition_default_970; -extern const bool __static_condition_default_381; -extern const bool __static_condition_default_334; -extern const bool __static_condition_default_425; +extern const bool __static_condition_default_204; +extern const bool __static_condition_default_2103; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_702; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_1552; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_1485; +extern const bool __static_condition_default_382; +extern const bool __static_condition_default_489; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_246; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -196,388 +431,1081 @@ __static_renaming("____ssize_t_49", "__ssize_t"); __static_renaming("____syscall_slong_t_50", "__syscall_slong_t"); __static_renaming("____syscall_ulong_t_51", "__syscall_ulong_t"); __static_renaming("____loff_t_52", "__loff_t"); -__static_renaming("____qaddr_t_53", "__qaddr_t"); -__static_renaming("____caddr_t_54", "__caddr_t"); -__static_renaming("____intptr_t_55", "__intptr_t"); -__static_renaming("____socklen_t_56", "__socklen_t"); -__static_renaming("__FILE_58", "FILE"); -__static_renaming("____FILE_59", "__FILE"); -__static_renaming("____mbstate_t_68", "__mbstate_t"); -__static_renaming("___G_fpos_t_75", "_G_fpos_t"); -__static_renaming("___G_fpos64_t_81", "_G_fpos64_t"); -__static_renaming("____gnuc_va_list_82", "__gnuc_va_list"); -__static_renaming("___IO_lock_t_84", "_IO_lock_t"); -__static_renaming("___IO_FILE_163", "_IO_FILE"); -__static_renaming("___IO_FILE_164", "_IO_FILE"); -__static_renaming("___IO_2_1_stdin__167", "_IO_2_1_stdin_"); -__static_renaming("___IO_2_1_stdout__168", "_IO_2_1_stdout_"); -__static_renaming("___IO_2_1_stderr__169", "_IO_2_1_stderr_"); -__static_renaming("____io_read_fn_173", "__io_read_fn"); -__static_renaming("____io_write_fn_177", "__io_write_fn"); -__static_renaming("____io_seek_fn_181", "__io_seek_fn"); -__static_renaming("____io_close_fn_183", "__io_close_fn"); -__static_renaming("____underflow_184", "__underflow"); -__static_renaming("____underflow_185", "__underflow"); -__static_renaming("____uflow_186", "__uflow"); -__static_renaming("____uflow_187", "__uflow"); -__static_renaming("____overflow_188", "__overflow"); -__static_renaming("____overflow_189", "__overflow"); -__static_renaming("___IO_getc_193", "_IO_getc"); -__static_renaming("___IO_getc_194", "_IO_getc"); -__static_renaming("___IO_putc_199", "_IO_putc"); -__static_renaming("___IO_putc_200", "_IO_putc"); -__static_renaming("___IO_feof_204", "_IO_feof"); -__static_renaming("___IO_feof_205", "_IO_feof"); -__static_renaming("___IO_ferror_209", "_IO_ferror"); -__static_renaming("___IO_ferror_210", "_IO_ferror"); -__static_renaming("___IO_peekc_locked_214", "_IO_peekc_locked"); -__static_renaming("___IO_peekc_locked_215", "_IO_peekc_locked"); -__static_renaming("___IO_flockfile_216", "_IO_flockfile"); -__static_renaming("___IO_flockfile_217", "_IO_flockfile"); -__static_renaming("___IO_funlockfile_218", "_IO_funlockfile"); -__static_renaming("___IO_funlockfile_219", "_IO_funlockfile"); -__static_renaming("___IO_ftrylockfile_220", "_IO_ftrylockfile"); -__static_renaming("___IO_ftrylockfile_221", "_IO_ftrylockfile"); -__static_renaming("___IO_vfscanf_222", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_224", "_IO_vfscanf"); -__static_renaming("___IO_vfprintf_231", "_IO_vfprintf"); -__static_renaming("___IO_vfprintf_233", "_IO_vfprintf"); -__static_renaming("___IO_padn_238", "_IO_padn"); -__static_renaming("___IO_padn_239", "_IO_padn"); -__static_renaming("___IO_sgetn_240", "_IO_sgetn"); -__static_renaming("___IO_sgetn_241", "_IO_sgetn"); -__static_renaming("___IO_seekoff_242", "_IO_seekoff"); -__static_renaming("___IO_seekoff_243", "_IO_seekoff"); -__static_renaming("___IO_seekpos_244", "_IO_seekpos"); -__static_renaming("___IO_seekpos_245", "_IO_seekpos"); -__static_renaming("___IO_free_backup_area_246", "_IO_free_backup_area"); -__static_renaming("___IO_free_backup_area_247", "_IO_free_backup_area"); -__static_renaming("__fpos_t_248", "fpos_t"); -__static_renaming("__fpos_t_250", "fpos_t"); -__static_renaming("__stdin_252", "stdin"); -__static_renaming("__stdin_253", "stdin"); -__static_renaming("__stdout_254", "stdout"); -__static_renaming("__stdout_255", "stdout"); -__static_renaming("__stderr_256", "stderr"); -__static_renaming("__stderr_257", "stderr"); -__static_renaming("__remove_259", "remove"); -__static_renaming("__rename_262", "rename"); -__static_renaming("__tmpfile_263", "tmpfile"); -__static_renaming("__tmpfile_265", "tmpfile"); -__static_renaming("__tmpfile_267", "tmpfile"); -__static_renaming("__tmpfile_269", "tmpfile"); -__static_renaming("__tmpnam_272", "tmpnam"); -__static_renaming("__tmpnam_273", "tmpnam"); -__static_renaming("__fclose_276", "fclose"); -__static_renaming("__fflush_280", "fflush"); -__static_renaming("__fopen_283", "fopen"); -__static_renaming("__fopen_285", "fopen"); -__static_renaming("__fopen_293", "fopen"); -__static_renaming("__fopen_295", "fopen"); -__static_renaming("__freopen_301", "freopen"); -__static_renaming("__freopen_303", "freopen"); -__static_renaming("__freopen_305", "freopen"); -__static_renaming("__freopen_307", "freopen"); -__static_renaming("__setbuf_312", "setbuf"); -__static_renaming("__setvbuf_318", "setvbuf"); -__static_renaming("__fprintf_322", "fprintf"); -__static_renaming("__printf_324", "printf"); -__static_renaming("__sprintf_327", "sprintf"); -__static_renaming("__vfprintf_333", "vfprintf"); -__static_renaming("__vprintf_340", "vprintf"); -__static_renaming("__vsprintf_346", "vsprintf"); -__static_renaming("__snprintf_350", "snprintf"); -__static_renaming("__vsnprintf_356", "vsnprintf"); -__static_renaming("__fscanf_360", "fscanf"); -__static_renaming("__fscanf_362", "fscanf"); -__static_renaming("__scanf_365", "scanf"); -__static_renaming("__scanf_366", "scanf"); -__static_renaming("__sscanf_369", "sscanf"); -__static_renaming("__vfscanf_392", "vfscanf"); -__static_renaming("__vfscanf_396", "vfscanf"); -__static_renaming("__vscanf_403", "vscanf"); -__static_renaming("__vscanf_405", "vscanf"); -__static_renaming("__vsscanf_411", "vsscanf"); -__static_renaming("__fgetc_444", "fgetc"); -__static_renaming("__getc_447", "getc"); -__static_renaming("__getchar_448", "getchar"); -__static_renaming("__fputc_452", "fputc"); -__static_renaming("__putc_456", "putc"); -__static_renaming("__putchar_458", "putchar"); -__static_renaming("__fgets_463", "fgets"); -__static_renaming("__fgets_465", "fgets"); -__static_renaming("__fputs_470", "fputs"); -__static_renaming("__puts_472", "puts"); -__static_renaming("__ungetc_476", "ungetc"); -__static_renaming("__fseek_496", "fseek"); -__static_renaming("__ftell_499", "ftell"); -__static_renaming("__ftell_501", "ftell"); -__static_renaming("__rewind_505", "rewind"); -__static_renaming("__fgetpos_510", "fgetpos"); -__static_renaming("__fgetpos_522", "fgetpos"); -__static_renaming("__fsetpos_530", "fsetpos"); -__static_renaming("__fsetpos_534", "fsetpos"); -__static_renaming("__clearerr_540", "clearerr"); -__static_renaming("__feof_543", "feof"); -__static_renaming("__feof_545", "feof"); -__static_renaming("__ferror_549", "ferror"); -__static_renaming("__ferror_551", "ferror"); -__static_renaming("__perror_554", "perror"); -__static_renaming("____sprintf_chk_564", "__sprintf_chk"); -__static_renaming("____vsprintf_chk_571", "__vsprintf_chk"); -__static_renaming("____snprintf_chk_585", "__snprintf_chk"); -__static_renaming("____vsnprintf_chk_593", "__vsnprintf_chk"); -__static_renaming("____fprintf_chk_608", "__fprintf_chk"); -__static_renaming("____printf_chk_612", "__printf_chk"); -__static_renaming("____vfprintf_chk_619", "__vfprintf_chk"); -__static_renaming("____vprintf_chk_627", "__vprintf_chk"); -__static_renaming("____fgets_chk_651", "__fgets_chk"); -__static_renaming("____fgets_chk_653", "__fgets_chk"); -__static_renaming("____fgets_alias_659", "__fgets_alias"); -__static_renaming("____fgets_chk_warn_666", "__fgets_chk_warn"); -__static_renaming("__wchar_t_704", "wchar_t"); -__static_renaming("__wchar_t_705", "wchar_t"); -__static_renaming("__div_t_710", "div_t"); -__static_renaming("__ldiv_t_715", "ldiv_t"); -__static_renaming("__lldiv_t_720", "lldiv_t"); -__static_renaming("____ctype_get_mb_cur_max_721", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_722", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_723", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_724", "__ctype_get_mb_cur_max"); -__static_renaming("__atof_726", "atof"); -__static_renaming("__atof_727", "atof"); -__static_renaming("__atoi_729", "atoi"); -__static_renaming("__atoi_730", "atoi"); -__static_renaming("__atol_732", "atol"); -__static_renaming("__atol_733", "atol"); -__static_renaming("__atoll_735", "atoll"); -__static_renaming("__atoll_736", "atoll"); -__static_renaming("__strtod_739", "strtod"); -__static_renaming("__strtof_742", "strtof"); -__static_renaming("__strtold_745", "strtold"); -__static_renaming("__strtol_749", "strtol"); -__static_renaming("__strtoul_753", "strtoul"); -__static_renaming("__strtoll_757", "strtoll"); -__static_renaming("__strtoull_761", "strtoull"); -__static_renaming("__rand_765", "rand"); -__static_renaming("__rand_766", "rand"); -__static_renaming("__srand_768", "srand"); -__static_renaming("__malloc_770", "malloc"); -__static_renaming("__malloc_771", "malloc"); -__static_renaming("__calloc_774", "calloc"); -__static_renaming("__calloc_775", "calloc"); -__static_renaming("__realloc_778", "realloc"); -__static_renaming("__free_780", "free"); -__static_renaming("__aligned_alloc_783", "aligned_alloc"); -__static_renaming("__aligned_alloc_784", "aligned_alloc"); -__static_renaming("__abort_785", "abort"); -__static_renaming("__atexit_787", "atexit"); -__static_renaming("__at_quick_exit_789", "at_quick_exit"); -__static_renaming("__exit_791", "exit"); -__static_renaming("__quick_exit_793", "quick_exit"); -__static_renaming("___Exit_795", "_Exit"); -__static_renaming("__getenv_797", "getenv"); -__static_renaming("__getenv_798", "getenv"); -__static_renaming("__system_800", "system"); -__static_renaming("__system_801", "system"); -__static_renaming("____compar_fn_t_802", "__compar_fn_t"); -__static_renaming("__bsearch_810", "bsearch"); -__static_renaming("__bsearch_812", "bsearch"); -__static_renaming("____l_819", "__l"); -__static_renaming("____u_820", "__u"); -__static_renaming("____idx_821", "__idx"); -__static_renaming("____p_822", "__p"); -__static_renaming("____comparison_823", "__comparison"); -__static_renaming("__qsort_831", "qsort"); -__static_renaming("__qsort_833", "qsort"); -__static_renaming("__abs_836", "abs"); -__static_renaming("__abs_837", "abs"); -__static_renaming("__labs_839", "labs"); -__static_renaming("__labs_840", "labs"); -__static_renaming("__llabs_842", "llabs"); -__static_renaming("__llabs_843", "llabs"); -__static_renaming("__div_846", "div"); -__static_renaming("__div_847", "div"); -__static_renaming("__ldiv_850", "ldiv"); -__static_renaming("__ldiv_852", "ldiv"); -__static_renaming("__lldiv_856", "lldiv"); -__static_renaming("__lldiv_858", "lldiv"); -__static_renaming("__mblen_862", "mblen"); -__static_renaming("__mbtowc_867", "mbtowc"); -__static_renaming("__mbtowc_868", "mbtowc"); -__static_renaming("__wctomb_872", "wctomb"); -__static_renaming("__wctomb_873", "wctomb"); -__static_renaming("__mbstowcs_878", "mbstowcs"); -__static_renaming("__mbstowcs_879", "mbstowcs"); -__static_renaming("__wcstombs_884", "wcstombs"); -__static_renaming("__wcstombs_885", "wcstombs"); -__static_renaming("____realpath_chk_890", "__realpath_chk"); -__static_renaming("____realpath_alias_893", "__realpath_alias"); -__static_renaming("____realpath_chk_warn_897", "__realpath_chk_warn"); -__static_renaming("____ptsname_r_chk_905", "__ptsname_r_chk"); -__static_renaming("____ptsname_r_alias_909", "__ptsname_r_alias"); -__static_renaming("____ptsname_r_chk_warn_914", "__ptsname_r_chk_warn"); -__static_renaming("____wctomb_chk_922", "__wctomb_chk"); -__static_renaming("____wctomb_alias_925", "__wctomb_alias"); -__static_renaming("____mbstowcs_chk_932", "__mbstowcs_chk"); -__static_renaming("____mbstowcs_alias_936", "__mbstowcs_alias"); -__static_renaming("____mbstowcs_chk_warn_941", "__mbstowcs_chk_warn"); -__static_renaming("____wcstombs_chk_949", "__wcstombs_chk"); -__static_renaming("____wcstombs_alias_953", "__wcstombs_alias"); -__static_renaming("____wcstombs_chk_warn_958", "__wcstombs_chk_warn"); -__static_renaming("__cur_967", "cur"); -__static_renaming("__next_968", "next"); -__static_renaming("__dfree_969", "dfree"); -__static_renaming("__i_972", "i"); -__static_renaming("__showdirs_973", "showdirs"); -__static_renaming("__showdirs_974", "showdirs"); -__static_renaming("__curr_979", "curr"); -__static_renaming("__head_980", "head"); -__static_renaming("__size_981", "size"); -__static_renaming("__arr_982", "arr"); -__static_renaming("__i_983", "i"); -__static_renaming("__main_987", "main"); - -__static_condition_renaming("__static_condition_default_74", "(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_118", "(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_161", "(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_162", "(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_165", "(defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_223", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_225", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_226", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_227", "(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_230", "(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_232", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_234", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_235", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_236", "(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_249", "!(defined _FILE_OFFSET_BITS) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_251", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_264", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_266", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_268", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_270", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_277", "(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_284", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_286", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_294", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_296", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_302", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_304", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_306", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_308", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_334", "!(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_335", "(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_336", "(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_341", "!(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_361", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_363", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_374", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_375", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_377", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_378", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_381", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_383", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_393", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_394", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_395", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_397", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_398", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_399", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_404", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_406", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_418", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_419", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_420", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_421", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_423", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_424", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_425", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_426", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_431", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_432", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_434", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_435", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_441", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_464", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_466", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_482", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_483", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_484", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_485", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_491", "!(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_500", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_502", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_511", "!(defined _FILE_OFFSET_BITS) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_512", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_513", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_523", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_524", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_525", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_531", "!(defined _FILE_OFFSET_BITS) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_532", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_533", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_535", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_536", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_537", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_544", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_546", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_550", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_552", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_558", "!(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_572", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_579", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_594", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_603", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_609", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_620", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_621", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_622", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_628", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_632", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_637", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_643", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_644", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_645", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_652", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_654", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_660", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_667", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_672", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_673", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_680", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_681", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_687", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_688", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_695", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_696", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_702", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_703", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_809", "!(defined _FORTIFY_SOURCE) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_811", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_824", "(defined __USE_EXTERN_INLINES) && !(defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_825", "(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_832", "!(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_834", "(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_851", "!(defined _FORTIFY_SOURCE) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_853", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_857", "!(defined _FORTIFY_SOURCE) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_859", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_900", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_970", "(defined CONFIG_FEATURE_LS_RECURSIVE)"); -__static_condition_renaming("__static_condition_default_975", "!(defined CONFIG_FEATURE_LS_RECURSIVE)"); -__static_condition_renaming("__static_condition_default_976", "(defined CONFIG_FEATURE_LS_RECURSIVE)"); -__static_condition_renaming("__static_condition_default_988", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_989", "!(defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_990", "(defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_991", "!(defined __USE_EXTERN_INLINES) && !(defined CONFIG_FEATURE_LS_RECURSIVE)"); -__static_condition_renaming("__static_condition_default_992", "!(defined __USE_EXTERN_INLINES) && (defined CONFIG_FEATURE_LS_RECURSIVE)"); -__static_condition_renaming("__static_condition_default_993", "(defined __USE_EXTERN_INLINES) && !(defined CONFIG_FEATURE_LS_RECURSIVE)"); -__static_condition_renaming("__static_condition_default_994", "(defined __USE_EXTERN_INLINES) && (defined CONFIG_FEATURE_LS_RECURSIVE)"); -__static_condition_renaming("__static_condition_default_995", "(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); - -if (__static_condition_default_995) { +__static_renaming("____qaddr_t_54", "__qaddr_t"); +__static_renaming("____caddr_t_55", "__caddr_t"); +__static_renaming("____intptr_t_56", "__intptr_t"); +__static_renaming("____socklen_t_57", "__socklen_t"); +__static_renaming("__FILE_59", "FILE"); +__static_renaming("____FILE_60", "__FILE"); +__static_renaming("____mbstate_t_69", "__mbstate_t"); +__static_renaming("___G_fpos_t_77", "_G_fpos_t"); +__static_renaming("___G_fpos64_t_85", "_G_fpos64_t"); +__static_renaming("____gnuc_va_list_86", "__gnuc_va_list"); +__static_renaming("___IO_lock_t_88", "_IO_lock_t"); +__static_renaming("___IO_FILE_171", "_IO_FILE"); +__static_renaming("___IO_FILE_172", "_IO_FILE"); +__static_renaming("___IO_2_1_stdin__175", "_IO_2_1_stdin_"); +__static_renaming("___IO_2_1_stdout__176", "_IO_2_1_stdout_"); +__static_renaming("___IO_2_1_stderr__177", "_IO_2_1_stderr_"); +__static_renaming("____io_read_fn_181", "__io_read_fn"); +__static_renaming("____io_write_fn_186", "__io_write_fn"); +__static_renaming("____io_seek_fn_192", "__io_seek_fn"); +__static_renaming("____io_close_fn_195", "__io_close_fn"); +__static_renaming("____underflow_196", "__underflow"); +__static_renaming("____underflow_197", "__underflow"); +__static_renaming("____uflow_199", "__uflow"); +__static_renaming("____uflow_200", "__uflow"); +__static_renaming("____overflow_202", "__overflow"); +__static_renaming("____overflow_203", "__overflow"); +__static_renaming("___IO_getc_208", "_IO_getc"); +__static_renaming("___IO_getc_209", "_IO_getc"); +__static_renaming("___IO_putc_215", "_IO_putc"); +__static_renaming("___IO_putc_216", "_IO_putc"); +__static_renaming("___IO_feof_221", "_IO_feof"); +__static_renaming("___IO_feof_222", "_IO_feof"); +__static_renaming("___IO_ferror_227", "_IO_ferror"); +__static_renaming("___IO_ferror_228", "_IO_ferror"); +__static_renaming("___IO_peekc_locked_233", "_IO_peekc_locked"); +__static_renaming("___IO_peekc_locked_234", "_IO_peekc_locked"); +__static_renaming("___IO_flockfile_236", "_IO_flockfile"); +__static_renaming("___IO_flockfile_237", "_IO_flockfile"); +__static_renaming("___IO_funlockfile_239", "_IO_funlockfile"); +__static_renaming("___IO_funlockfile_240", "_IO_funlockfile"); +__static_renaming("___IO_ftrylockfile_242", "_IO_ftrylockfile"); +__static_renaming("___IO_ftrylockfile_243", "_IO_ftrylockfile"); +__static_renaming("___IO_vfscanf_245", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_247", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_251", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_252", "_IO_vfscanf"); +__static_renaming("___IO_vfprintf_254", "_IO_vfprintf"); +__static_renaming("___IO_vfprintf_256", "_IO_vfprintf"); +__static_renaming("___IO_vfprintf_260", "_IO_vfprintf"); +__static_renaming("___IO_padn_261", "_IO_padn"); +__static_renaming("___IO_padn_262", "_IO_padn"); +__static_renaming("___IO_sgetn_265", "_IO_sgetn"); +__static_renaming("___IO_sgetn_266", "_IO_sgetn"); +__static_renaming("___IO_seekoff_268", "_IO_seekoff"); +__static_renaming("___IO_seekoff_269", "_IO_seekoff"); +__static_renaming("___IO_seekpos_272", "_IO_seekpos"); +__static_renaming("___IO_seekpos_273", "_IO_seekpos"); +__static_renaming("___IO_free_backup_area_276", "_IO_free_backup_area"); +__static_renaming("___IO_free_backup_area_277", "_IO_free_backup_area"); +__static_renaming("__va_list_279", "va_list"); +__static_renaming("__off_t_281", "off_t"); +__static_renaming("__off_t_283", "off_t"); +__static_renaming("__ssize_t_285", "ssize_t"); +__static_renaming("__fpos_t_287", "fpos_t"); +__static_renaming("__fpos_t_289", "fpos_t"); +__static_renaming("__stdin_291", "stdin"); +__static_renaming("__stdin_292", "stdin"); +__static_renaming("__stdout_294", "stdout"); +__static_renaming("__stdout_295", "stdout"); +__static_renaming("__stderr_297", "stderr"); +__static_renaming("__stderr_298", "stderr"); +__static_renaming("__remove_301", "remove"); +__static_renaming("__rename_304", "rename"); +__static_renaming("__renameat_309", "renameat"); +__static_renaming("__tmpfile_310", "tmpfile"); +__static_renaming("__tmpfile_312", "tmpfile"); +__static_renaming("__tmpfile_314", "tmpfile"); +__static_renaming("__tmpfile_316", "tmpfile"); +__static_renaming("__tmpnam_319", "tmpnam"); +__static_renaming("__tmpnam_320", "tmpnam"); +__static_renaming("__tmpnam_r_322", "tmpnam_r"); +__static_renaming("__tmpnam_r_323", "tmpnam_r"); +__static_renaming("__tempnam_326", "tempnam"); +__static_renaming("__tempnam_327", "tempnam"); +__static_renaming("__fclose_330", "fclose"); +__static_renaming("__fclose_332", "fclose"); +__static_renaming("__fflush_336", "fflush"); +__static_renaming("__fflush_unlocked_340", "fflush_unlocked"); +__static_renaming("__fopen_344", "fopen"); +__static_renaming("__fopen_346", "fopen"); +__static_renaming("__fopen_354", "fopen"); +__static_renaming("__fopen_356", "fopen"); +__static_renaming("__freopen_362", "freopen"); +__static_renaming("__freopen_364", "freopen"); +__static_renaming("__freopen_366", "freopen"); +__static_renaming("__freopen_368", "freopen"); +__static_renaming("__fdopen_372", "fdopen"); +__static_renaming("__fdopen_374", "fdopen"); +__static_renaming("__fmemopen_379", "fmemopen"); +__static_renaming("__fmemopen_381", "fmemopen"); +__static_renaming("__open_memstream_385", "open_memstream"); +__static_renaming("__open_memstream_387", "open_memstream"); +__static_renaming("__setbuf_392", "setbuf"); +__static_renaming("__setbuf_394", "setbuf"); +__static_renaming("__setvbuf_401", "setvbuf"); +__static_renaming("__setbuffer_407", "setbuffer"); +__static_renaming("__setlinebuf_411", "setlinebuf"); +__static_renaming("__fprintf_416", "fprintf"); +__static_renaming("__fprintf_418", "fprintf"); +__static_renaming("__printf_421", "printf"); +__static_renaming("__sprintf_424", "sprintf"); +__static_renaming("__vfprintf_430", "vfprintf"); +__static_renaming("__vprintf_437", "vprintf"); +__static_renaming("__vsprintf_443", "vsprintf"); +__static_renaming("__snprintf_448", "snprintf"); +__static_renaming("__vsnprintf_454", "vsnprintf"); +__static_renaming("__vdprintf_460", "vdprintf"); +__static_renaming("__dprintf_464", "dprintf"); +__static_renaming("__fscanf_468", "fscanf"); +__static_renaming("__fscanf_470", "fscanf"); +__static_renaming("__fscanf_472", "fscanf"); +__static_renaming("__fscanf_474", "fscanf"); +__static_renaming("__scanf_477", "scanf"); +__static_renaming("__scanf_478", "scanf"); +__static_renaming("__sscanf_481", "sscanf"); +__static_renaming("__vfscanf_509", "vfscanf"); +__static_renaming("__vfscanf_513", "vfscanf"); +__static_renaming("__vscanf_520", "vscanf"); +__static_renaming("__vscanf_522", "vscanf"); +__static_renaming("__vsscanf_528", "vsscanf"); +__static_renaming("__fgetc_563", "fgetc"); +__static_renaming("__getc_567", "getc"); +__static_renaming("__getchar_569", "getchar"); +__static_renaming("__getc_unlocked_572", "getc_unlocked"); +__static_renaming("__getchar_unlocked_574", "getchar_unlocked"); +__static_renaming("__fgetc_unlocked_577", "fgetc_unlocked"); +__static_renaming("__fputc_582", "fputc"); +__static_renaming("__fputc_584", "fputc"); +__static_renaming("__putc_589", "putc"); +__static_renaming("__putchar_592", "putchar"); +__static_renaming("__fputc_unlocked_596", "fputc_unlocked"); +__static_renaming("__putc_unlocked_601", "putc_unlocked"); +__static_renaming("__putchar_unlocked_604", "putchar_unlocked"); +__static_renaming("__getw_607", "getw"); +__static_renaming("__putw_612", "putw"); +__static_renaming("__fgets_618", "fgets"); +__static_renaming("__fgets_620", "fgets"); +__static_renaming("__fgets_622", "fgets"); +__static_renaming("__fgets_624", "fgets"); +__static_renaming("____getdelim_631", "__getdelim"); +__static_renaming("____getdelim_635", "__getdelim"); +__static_renaming("__getdelim_644", "getdelim"); +__static_renaming("__getdelim_648", "getdelim"); +__static_renaming("__getline_656", "getline"); +__static_renaming("__getline_660", "getline"); +__static_renaming("__fputs_667", "fputs"); +__static_renaming("__fputs_669", "fputs"); +__static_renaming("__puts_672", "puts"); +__static_renaming("__ungetc_676", "ungetc"); +__static_renaming("__fseek_714", "fseek"); +__static_renaming("__fseek_716", "fseek"); +__static_renaming("__ftell_720", "ftell"); +__static_renaming("__ftell_722", "ftell"); +__static_renaming("__rewind_726", "rewind"); +__static_renaming("__fseeko_733", "fseeko"); +__static_renaming("__fseeko_744", "fseeko"); +__static_renaming("__ftello_750", "ftello"); +__static_renaming("__ftello_754", "ftello"); +__static_renaming("__ftello_758", "ftello"); +__static_renaming("__fgetpos_766", "fgetpos"); +__static_renaming("__fgetpos_778", "fgetpos"); +__static_renaming("__fsetpos_786", "fsetpos"); +__static_renaming("__fsetpos_790", "fsetpos"); +__static_renaming("__clearerr_796", "clearerr"); +__static_renaming("__feof_800", "feof"); +__static_renaming("__feof_802", "feof"); +__static_renaming("__ferror_806", "ferror"); +__static_renaming("__ferror_808", "ferror"); +__static_renaming("__clearerr_unlocked_812", "clearerr_unlocked"); +__static_renaming("__feof_unlocked_816", "feof_unlocked"); +__static_renaming("__feof_unlocked_818", "feof_unlocked"); +__static_renaming("__ferror_unlocked_822", "ferror_unlocked"); +__static_renaming("__ferror_unlocked_824", "ferror_unlocked"); +__static_renaming("__perror_827", "perror"); +__static_renaming("__perror_828", "perror"); +__static_renaming("__sys_nerr_829", "sys_nerr"); +__static_renaming("__sys_errlist_830", "sys_errlist"); +__static_renaming("__fileno_833", "fileno"); +__static_renaming("__fileno_835", "fileno"); +__static_renaming("__fileno_unlocked_839", "fileno_unlocked"); +__static_renaming("__fileno_unlocked_841", "fileno_unlocked"); +__static_renaming("__popen_845", "popen"); +__static_renaming("__popen_847", "popen"); +__static_renaming("__pclose_851", "pclose"); +__static_renaming("__ctermid_854", "ctermid"); +__static_renaming("__flockfile_857", "flockfile"); +__static_renaming("__ftrylockfile_861", "ftrylockfile"); +__static_renaming("__ftrylockfile_863", "ftrylockfile"); +__static_renaming("__funlockfile_867", "funlockfile"); +__static_renaming("____sprintf_chk_899", "__sprintf_chk"); +__static_renaming("____vsprintf_chk_906", "__vsprintf_chk"); +__static_renaming("____snprintf_chk_920", "__snprintf_chk"); +__static_renaming("____vsnprintf_chk_928", "__vsnprintf_chk"); +__static_renaming("____fprintf_chk_943", "__fprintf_chk"); +__static_renaming("____printf_chk_947", "__printf_chk"); +__static_renaming("____vfprintf_chk_954", "__vfprintf_chk"); +__static_renaming("____vprintf_chk_962", "__vprintf_chk"); +__static_renaming("____dprintf_chk_984", "__dprintf_chk"); +__static_renaming("____vdprintf_chk_990", "__vdprintf_chk"); +__static_renaming("____fgets_chk_1004", "__fgets_chk"); +__static_renaming("____fgets_chk_1006", "__fgets_chk"); +__static_renaming("____fgets_chk_1008", "__fgets_chk"); +__static_renaming("____fgets_alias_1014", "__fgets_alias"); +__static_renaming("____fgets_chk_warn_1021", "__fgets_chk_warn"); +__static_renaming("____cnt_1087", "__cnt"); +__static_renaming("____cptr_1088", "__cptr"); +__static_renaming("__ptrdiff_t_1092", "ptrdiff_t"); +__static_renaming("__size_t_1093", "size_t"); +__static_renaming("__wchar_t_1094", "wchar_t"); +__static_renaming("__idtype_t_1100", "idtype_t"); +__static_renaming("____u_char_1101", "__u_char"); +__static_renaming("____u_short_1102", "__u_short"); +__static_renaming("____u_int_1103", "__u_int"); +__static_renaming("____u_long_1104", "__u_long"); +__static_renaming("____int8_t_1105", "__int8_t"); +__static_renaming("____uint8_t_1106", "__uint8_t"); +__static_renaming("____int16_t_1107", "__int16_t"); +__static_renaming("____uint16_t_1108", "__uint16_t"); +__static_renaming("____int32_t_1109", "__int32_t"); +__static_renaming("____uint32_t_1110", "__uint32_t"); +__static_renaming("____int64_t_1111", "__int64_t"); +__static_renaming("____uint64_t_1112", "__uint64_t"); +__static_renaming("____quad_t_1113", "__quad_t"); +__static_renaming("____u_quad_t_1114", "__u_quad_t"); +__static_renaming("____dev_t_1115", "__dev_t"); +__static_renaming("____uid_t_1116", "__uid_t"); +__static_renaming("____gid_t_1117", "__gid_t"); +__static_renaming("____ino_t_1118", "__ino_t"); +__static_renaming("____ino64_t_1119", "__ino64_t"); +__static_renaming("____mode_t_1120", "__mode_t"); +__static_renaming("____nlink_t_1121", "__nlink_t"); +__static_renaming("____off_t_1122", "__off_t"); +__static_renaming("____off64_t_1123", "__off64_t"); +__static_renaming("____pid_t_1124", "__pid_t"); +__static_renaming("____fsid_t_1128", "__fsid_t"); +__static_renaming("____clock_t_1129", "__clock_t"); +__static_renaming("____rlim_t_1130", "__rlim_t"); +__static_renaming("____rlim64_t_1131", "__rlim64_t"); +__static_renaming("____id_t_1132", "__id_t"); +__static_renaming("____time_t_1133", "__time_t"); +__static_renaming("____useconds_t_1134", "__useconds_t"); +__static_renaming("____suseconds_t_1135", "__suseconds_t"); +__static_renaming("____daddr_t_1136", "__daddr_t"); +__static_renaming("____key_t_1137", "__key_t"); +__static_renaming("____clockid_t_1138", "__clockid_t"); +__static_renaming("____timer_t_1139", "__timer_t"); +__static_renaming("____blksize_t_1140", "__blksize_t"); +__static_renaming("____blkcnt_t_1141", "__blkcnt_t"); +__static_renaming("____blkcnt64_t_1142", "__blkcnt64_t"); +__static_renaming("____fsblkcnt_t_1143", "__fsblkcnt_t"); +__static_renaming("____fsblkcnt64_t_1144", "__fsblkcnt64_t"); +__static_renaming("____fsfilcnt_t_1145", "__fsfilcnt_t"); +__static_renaming("____fsfilcnt64_t_1146", "__fsfilcnt64_t"); +__static_renaming("____fsword_t_1147", "__fsword_t"); +__static_renaming("____ssize_t_1148", "__ssize_t"); +__static_renaming("____syscall_slong_t_1149", "__syscall_slong_t"); +__static_renaming("____syscall_ulong_t_1150", "__syscall_ulong_t"); +__static_renaming("____loff_t_1151", "__loff_t"); +__static_renaming("____qaddr_t_1153", "__qaddr_t"); +__static_renaming("____caddr_t_1154", "__caddr_t"); +__static_renaming("____intptr_t_1155", "__intptr_t"); +__static_renaming("____socklen_t_1156", "__socklen_t"); +__static_renaming("____bswap_32_1158", "__bswap_32"); +__static_renaming("____bswap_64_1162", "__bswap_64"); +__static_renaming("____bswap_64_1163", "__bswap_64"); +__static_renaming("____WAIT_STATUS_1185", "__WAIT_STATUS"); +__static_renaming("__div_t_1190", "div_t"); +__static_renaming("__ldiv_t_1195", "ldiv_t"); +__static_renaming("__lldiv_t_1200", "lldiv_t"); +__static_renaming("____ctype_get_mb_cur_max_1201", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1202", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1203", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1204", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1205", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1206", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1207", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1208", "__ctype_get_mb_cur_max"); +__static_renaming("__atof_1210", "atof"); +__static_renaming("__atof_1211", "atof"); +__static_renaming("__atoi_1213", "atoi"); +__static_renaming("__atoi_1214", "atoi"); +__static_renaming("__atol_1216", "atol"); +__static_renaming("__atol_1217", "atol"); +__static_renaming("__atoll_1219", "atoll"); +__static_renaming("__atoll_1220", "atoll"); +__static_renaming("__strtod_1223", "strtod"); +__static_renaming("__strtof_1226", "strtof"); +__static_renaming("__strtold_1229", "strtold"); +__static_renaming("__strtol_1233", "strtol"); +__static_renaming("__strtoul_1237", "strtoul"); +__static_renaming("__strtoq_1241", "strtoq"); +__static_renaming("__strtouq_1245", "strtouq"); +__static_renaming("__strtoll_1249", "strtoll"); +__static_renaming("__strtoll_1250", "strtoll"); +__static_renaming("__strtoull_1254", "strtoull"); +__static_renaming("__l64a_1259", "l64a"); +__static_renaming("__l64a_1260", "l64a"); +__static_renaming("__a64l_1262", "a64l"); +__static_renaming("__a64l_1263", "a64l"); +__static_renaming("____u_char_1264", "__u_char"); +__static_renaming("____u_short_1265", "__u_short"); +__static_renaming("____u_int_1266", "__u_int"); +__static_renaming("____u_long_1267", "__u_long"); +__static_renaming("____int8_t_1268", "__int8_t"); +__static_renaming("____uint8_t_1269", "__uint8_t"); +__static_renaming("____int16_t_1270", "__int16_t"); +__static_renaming("____uint16_t_1271", "__uint16_t"); +__static_renaming("____int32_t_1272", "__int32_t"); +__static_renaming("____uint32_t_1273", "__uint32_t"); +__static_renaming("____int64_t_1274", "__int64_t"); +__static_renaming("____uint64_t_1275", "__uint64_t"); +__static_renaming("____quad_t_1276", "__quad_t"); +__static_renaming("____u_quad_t_1277", "__u_quad_t"); +__static_renaming("____dev_t_1278", "__dev_t"); +__static_renaming("____uid_t_1279", "__uid_t"); +__static_renaming("____gid_t_1280", "__gid_t"); +__static_renaming("____ino_t_1281", "__ino_t"); +__static_renaming("____ino64_t_1282", "__ino64_t"); +__static_renaming("____mode_t_1283", "__mode_t"); +__static_renaming("____nlink_t_1284", "__nlink_t"); +__static_renaming("____off_t_1285", "__off_t"); +__static_renaming("____off64_t_1286", "__off64_t"); +__static_renaming("____pid_t_1287", "__pid_t"); +__static_renaming("____fsid_t_1291", "__fsid_t"); +__static_renaming("____clock_t_1292", "__clock_t"); +__static_renaming("____rlim_t_1293", "__rlim_t"); +__static_renaming("____rlim64_t_1294", "__rlim64_t"); +__static_renaming("____id_t_1295", "__id_t"); +__static_renaming("____time_t_1296", "__time_t"); +__static_renaming("____useconds_t_1297", "__useconds_t"); +__static_renaming("____suseconds_t_1298", "__suseconds_t"); +__static_renaming("____daddr_t_1299", "__daddr_t"); +__static_renaming("____key_t_1300", "__key_t"); +__static_renaming("____clockid_t_1301", "__clockid_t"); +__static_renaming("____timer_t_1302", "__timer_t"); +__static_renaming("____blksize_t_1303", "__blksize_t"); +__static_renaming("____blkcnt_t_1304", "__blkcnt_t"); +__static_renaming("____blkcnt64_t_1305", "__blkcnt64_t"); +__static_renaming("____fsblkcnt_t_1306", "__fsblkcnt_t"); +__static_renaming("____fsblkcnt64_t_1307", "__fsblkcnt64_t"); +__static_renaming("____fsfilcnt_t_1308", "__fsfilcnt_t"); +__static_renaming("____fsfilcnt64_t_1309", "__fsfilcnt64_t"); +__static_renaming("____fsword_t_1310", "__fsword_t"); +__static_renaming("____ssize_t_1311", "__ssize_t"); +__static_renaming("____syscall_slong_t_1312", "__syscall_slong_t"); +__static_renaming("____syscall_ulong_t_1313", "__syscall_ulong_t"); +__static_renaming("____loff_t_1314", "__loff_t"); +__static_renaming("____qaddr_t_1316", "__qaddr_t"); +__static_renaming("____caddr_t_1317", "__caddr_t"); +__static_renaming("____intptr_t_1318", "__intptr_t"); +__static_renaming("____socklen_t_1319", "__socklen_t"); +__static_renaming("__u_char_1320", "u_char"); +__static_renaming("__u_char_1321", "u_char"); +__static_renaming("__u_char_1322", "u_char"); +__static_renaming("__u_short_1323", "u_short"); +__static_renaming("__u_short_1324", "u_short"); +__static_renaming("__u_short_1325", "u_short"); +__static_renaming("__u_int_1326", "u_int"); +__static_renaming("__u_int_1327", "u_int"); +__static_renaming("__u_int_1328", "u_int"); +__static_renaming("__u_long_1329", "u_long"); +__static_renaming("__u_long_1330", "u_long"); +__static_renaming("__u_long_1331", "u_long"); +__static_renaming("__quad_t_1332", "quad_t"); +__static_renaming("__quad_t_1333", "quad_t"); +__static_renaming("__quad_t_1334", "quad_t"); +__static_renaming("__u_quad_t_1335", "u_quad_t"); +__static_renaming("__u_quad_t_1336", "u_quad_t"); +__static_renaming("__u_quad_t_1337", "u_quad_t"); +__static_renaming("__fsid_t_1338", "fsid_t"); +__static_renaming("__fsid_t_1339", "fsid_t"); +__static_renaming("__fsid_t_1340", "fsid_t"); +__static_renaming("__loff_t_1342", "loff_t"); +__static_renaming("__loff_t_1343", "loff_t"); +__static_renaming("__loff_t_1344", "loff_t"); +__static_renaming("__loff_t_1346", "loff_t"); +__static_renaming("__loff_t_1347", "loff_t"); +__static_renaming("__loff_t_1348", "loff_t"); +__static_renaming("__ino_t_1350", "ino_t"); +__static_renaming("__ino_t_1351", "ino_t"); +__static_renaming("__ino_t_1352", "ino_t"); +__static_renaming("__ino_t_1354", "ino_t"); +__static_renaming("__ino_t_1355", "ino_t"); +__static_renaming("__ino_t_1356", "ino_t"); +__static_renaming("__dev_t_1358", "dev_t"); +__static_renaming("__dev_t_1359", "dev_t"); +__static_renaming("__dev_t_1360", "dev_t"); +__static_renaming("__gid_t_1362", "gid_t"); +__static_renaming("__gid_t_1363", "gid_t"); +__static_renaming("__gid_t_1364", "gid_t"); +__static_renaming("__gid_t_1366", "gid_t"); +__static_renaming("__gid_t_1367", "gid_t"); +__static_renaming("__gid_t_1368", "gid_t"); +__static_renaming("__mode_t_1370", "mode_t"); +__static_renaming("__mode_t_1371", "mode_t"); +__static_renaming("__mode_t_1372", "mode_t"); +__static_renaming("__nlink_t_1374", "nlink_t"); +__static_renaming("__nlink_t_1375", "nlink_t"); +__static_renaming("__nlink_t_1376", "nlink_t"); +__static_renaming("__uid_t_1378", "uid_t"); +__static_renaming("__uid_t_1379", "uid_t"); +__static_renaming("__uid_t_1380", "uid_t"); +__static_renaming("__uid_t_1382", "uid_t"); +__static_renaming("__uid_t_1383", "uid_t"); +__static_renaming("__uid_t_1384", "uid_t"); +__static_renaming("__off_t_1386", "off_t"); +__static_renaming("__off_t_1387", "off_t"); +__static_renaming("__off_t_1389", "off_t"); +__static_renaming("__off_t_1390", "off_t"); +__static_renaming("__pid_t_1392", "pid_t"); +__static_renaming("__pid_t_1393", "pid_t"); +__static_renaming("__pid_t_1394", "pid_t"); +__static_renaming("__pid_t_1396", "pid_t"); +__static_renaming("__pid_t_1397", "pid_t"); +__static_renaming("__id_t_1399", "id_t"); +__static_renaming("__id_t_1400", "id_t"); +__static_renaming("__id_t_1401", "id_t"); +__static_renaming("__ssize_t_1403", "ssize_t"); +__static_renaming("__ssize_t_1404", "ssize_t"); +__static_renaming("__daddr_t_1406", "daddr_t"); +__static_renaming("__daddr_t_1407", "daddr_t"); +__static_renaming("__daddr_t_1408", "daddr_t"); +__static_renaming("__caddr_t_1410", "caddr_t"); +__static_renaming("__caddr_t_1411", "caddr_t"); +__static_renaming("__caddr_t_1412", "caddr_t"); +__static_renaming("__key_t_1413", "key_t"); +__static_renaming("__key_t_1414", "key_t"); +__static_renaming("__key_t_1415", "key_t"); +__static_renaming("__key_t_1417", "key_t"); +__static_renaming("__key_t_1418", "key_t"); +__static_renaming("__key_t_1419", "key_t"); +__static_renaming("__clock_t_1421", "clock_t"); +__static_renaming("__clock_t_1422", "clock_t"); +__static_renaming("__clock_t_1423", "clock_t"); +__static_renaming("__time_t_1425", "time_t"); +__static_renaming("__time_t_1426", "time_t"); +__static_renaming("__time_t_1427", "time_t"); +__static_renaming("__clockid_t_1429", "clockid_t"); +__static_renaming("__clockid_t_1430", "clockid_t"); +__static_renaming("__clockid_t_1431", "clockid_t"); +__static_renaming("__timer_t_1433", "timer_t"); +__static_renaming("__timer_t_1434", "timer_t"); +__static_renaming("__timer_t_1435", "timer_t"); +__static_renaming("__ulong_1437", "ulong"); +__static_renaming("__ulong_1438", "ulong"); +__static_renaming("__ulong_1439", "ulong"); +__static_renaming("__ushort_1440", "ushort"); +__static_renaming("__uint_1441", "uint"); +__static_renaming("__int8_t_1442", "int8_t"); +__static_renaming("__int16_t_1443", "int16_t"); +__static_renaming("__int32_t_1444", "int32_t"); +__static_renaming("__int64_t_1445", "int64_t"); +__static_renaming("__u_int8_t_1446", "u_int8_t"); +__static_renaming("__u_int16_t_1447", "u_int16_t"); +__static_renaming("__u_int32_t_1448", "u_int32_t"); +__static_renaming("__u_int64_t_1449", "u_int64_t"); +__static_renaming("__register_t_1450", "register_t"); +__static_renaming("____bswap_32_1452", "__bswap_32"); +__static_renaming("____bswap_64_1456", "__bswap_64"); +__static_renaming("____bswap_64_1457", "__bswap_64"); +__static_renaming("____sig_atomic_t_1460", "__sig_atomic_t"); +__static_renaming("____sigset_t_1464", "__sigset_t"); +__static_renaming("__sigset_t_1465", "sigset_t"); +__static_renaming("__suseconds_t_1486", "suseconds_t"); +__static_renaming("__suseconds_t_1487", "suseconds_t"); +__static_renaming("__suseconds_t_1488", "suseconds_t"); +__static_renaming("____fd_mask_1490", "__fd_mask"); +__static_renaming("____fd_mask_1491", "__fd_mask"); +__static_renaming("__fd_set_1499", "fd_set"); +__static_renaming("__fd_mask_1500", "fd_mask"); +__static_renaming("__fd_mask_1501", "fd_mask"); +__static_renaming("__select_1513", "select"); +__static_renaming("__select_1514", "select"); +__static_renaming("__pselect_1529", "pselect"); +__static_renaming("__pselect_1530", "pselect"); +__static_renaming("____fdelt_chk_1534", "__fdelt_chk"); +__static_renaming("____fdelt_warn_1536", "__fdelt_warn"); +__static_renaming("__gnu_dev_major_1538", "gnu_dev_major"); +__static_renaming("__gnu_dev_major_1539", "gnu_dev_major"); +__static_renaming("__gnu_dev_minor_1541", "gnu_dev_minor"); +__static_renaming("__gnu_dev_makedev_1544", "gnu_dev_makedev"); +__static_renaming("__blksize_t_1549", "blksize_t"); +__static_renaming("__blksize_t_1550", "blksize_t"); +__static_renaming("__blksize_t_1551", "blksize_t"); +__static_renaming("__blkcnt_t_1553", "blkcnt_t"); +__static_renaming("__blkcnt_t_1554", "blkcnt_t"); +__static_renaming("__blkcnt_t_1555", "blkcnt_t"); +__static_renaming("__fsblkcnt_t_1557", "fsblkcnt_t"); +__static_renaming("__fsblkcnt_t_1558", "fsblkcnt_t"); +__static_renaming("__fsblkcnt_t_1559", "fsblkcnt_t"); +__static_renaming("__blkcnt_t_1561", "blkcnt_t"); +__static_renaming("__blkcnt_t_1562", "blkcnt_t"); +__static_renaming("__blkcnt_t_1563", "blkcnt_t"); +__static_renaming("__fsblkcnt_t_1565", "fsblkcnt_t"); +__static_renaming("__fsblkcnt_t_1566", "fsblkcnt_t"); +__static_renaming("__fsblkcnt_t_1567", "fsblkcnt_t"); +__static_renaming("__fsfilcnt_t_1569", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_1570", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_1571", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_1573", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_1574", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_1575", "fsfilcnt_t"); +__static_renaming("__pthread_t_1577", "pthread_t"); +__static_renaming("__pthread_attr_t_1581", "pthread_attr_t"); +__static_renaming("____pthread_list_t_1586", "__pthread_list_t"); +__static_renaming("____pthread_list_t_1587", "__pthread_list_t"); +__static_renaming("__pthread_mutex_t_1603", "pthread_mutex_t"); +__static_renaming("__pthread_mutexattr_t_1608", "pthread_mutexattr_t"); +__static_renaming("__rand_1609", "rand"); +__static_renaming("__srand_1611", "srand"); +__static_renaming("__rand_r_1613", "rand_r"); +__static_renaming("__drand48_1614", "drand48"); +__static_renaming("__erand48_1616", "erand48"); +__static_renaming("__lrand48_1617", "lrand48"); +__static_renaming("__nrand48_1619", "nrand48"); +__static_renaming("__mrand48_1620", "mrand48"); +__static_renaming("__jrand48_1622", "jrand48"); +__static_renaming("__srand48_1624", "srand48"); +__static_renaming("__seed48_1626", "seed48"); +__static_renaming("__lcong48_1628", "lcong48"); +__static_renaming("__malloc_1631", "malloc"); +__static_renaming("__malloc_1632", "malloc"); +__static_renaming("__malloc_1633", "malloc"); +__static_renaming("__malloc_1634", "malloc"); +__static_renaming("__calloc_1639", "calloc"); +__static_renaming("__calloc_1640", "calloc"); +__static_renaming("__calloc_1641", "calloc"); +__static_renaming("__calloc_1642", "calloc"); +__static_renaming("__realloc_1646", "realloc"); +__static_renaming("__realloc_1647", "realloc"); +__static_renaming("__free_1649", "free"); +__static_renaming("__cfree_1651", "cfree"); +__static_renaming("__alloca_1654", "alloca"); +__static_renaming("__alloca_1655", "alloca"); +__static_renaming("__valloc_1658", "valloc"); +__static_renaming("__valloc_1659", "valloc"); +__static_renaming("__valloc_1660", "valloc"); +__static_renaming("__valloc_1661", "valloc"); +__static_renaming("__posix_memalign_1667", "posix_memalign"); +__static_renaming("__posix_memalign_1668", "posix_memalign"); +__static_renaming("__posix_memalign_1669", "posix_memalign"); +__static_renaming("__posix_memalign_1670", "posix_memalign"); +__static_renaming("__aligned_alloc_1675", "aligned_alloc"); +__static_renaming("__aligned_alloc_1676", "aligned_alloc"); +__static_renaming("__aligned_alloc_1677", "aligned_alloc"); +__static_renaming("__aligned_alloc_1678", "aligned_alloc"); +__static_renaming("__aligned_alloc_1679", "aligned_alloc"); +__static_renaming("__aligned_alloc_1680", "aligned_alloc"); +__static_renaming("__aligned_alloc_1681", "aligned_alloc"); +__static_renaming("__aligned_alloc_1682", "aligned_alloc"); +__static_renaming("__abort_1683", "abort"); +__static_renaming("__atexit_1685", "atexit"); +__static_renaming("__at_quick_exit_1687", "at_quick_exit"); +__static_renaming("__on_exit_1692", "on_exit"); +__static_renaming("__exit_1694", "exit"); +__static_renaming("__exit_1695", "exit"); +__static_renaming("__quick_exit_1697", "quick_exit"); +__static_renaming("___Exit_1699", "_Exit"); +__static_renaming("__getenv_1701", "getenv"); +__static_renaming("__getenv_1702", "getenv"); +__static_renaming("__putenv_1704", "putenv"); +__static_renaming("__setenv_1708", "setenv"); +__static_renaming("__unsetenv_1710", "unsetenv"); +__static_renaming("__clearenv_1711", "clearenv"); +__static_renaming("__mktemp_1713", "mktemp"); +__static_renaming("__mkstemp_1716", "mkstemp"); +__static_renaming("__mkstemp_1717", "mkstemp"); +__static_renaming("__mkstemp_1718", "mkstemp"); +__static_renaming("__mkstemp_1719", "mkstemp"); +__static_renaming("__mkstemps_1724", "mkstemps"); +__static_renaming("__mkstemps_1725", "mkstemps"); +__static_renaming("__mkstemps_1726", "mkstemps"); +__static_renaming("__mkstemps_1727", "mkstemps"); +__static_renaming("__mkdtemp_1729", "mkdtemp"); +__static_renaming("__mkdtemp_1730", "mkdtemp"); +__static_renaming("__system_1732", "system"); +__static_renaming("__system_1733", "system"); +__static_renaming("__system_1734", "system"); +__static_renaming("__system_1735", "system"); +__static_renaming("__realpath_1738", "realpath"); +__static_renaming("__realpath_1739", "realpath"); +__static_renaming("____compar_fn_t_1740", "__compar_fn_t"); +__static_renaming("__bsearch_1751", "bsearch"); +__static_renaming("__bsearch_1752", "bsearch"); +__static_renaming("__bsearch_1755", "bsearch"); +__static_renaming("__bsearch_1756", "bsearch"); +__static_renaming("____l_1765", "__l"); +__static_renaming("____l_1766", "__l"); +__static_renaming("____u_1767", "__u"); +__static_renaming("____u_1768", "__u"); +__static_renaming("____idx_1769", "__idx"); +__static_renaming("____idx_1770", "__idx"); +__static_renaming("____p_1771", "__p"); +__static_renaming("____comparison_1772", "__comparison"); +__static_renaming("__qsort_1784", "qsort"); +__static_renaming("__qsort_1786", "qsort"); +__static_renaming("__qsort_1788", "qsort"); +__static_renaming("__qsort_1790", "qsort"); +__static_renaming("__abs_1793", "abs"); +__static_renaming("__abs_1794", "abs"); +__static_renaming("__labs_1796", "labs"); +__static_renaming("__labs_1797", "labs"); +__static_renaming("__llabs_1799", "llabs"); +__static_renaming("__llabs_1800", "llabs"); +__static_renaming("__div_1803", "div"); +__static_renaming("__div_1804", "div"); +__static_renaming("__ldiv_1807", "ldiv"); +__static_renaming("__ldiv_1809", "ldiv"); +__static_renaming("__lldiv_1813", "lldiv"); +__static_renaming("__lldiv_1815", "lldiv"); +__static_renaming("__ecvt_1821", "ecvt"); +__static_renaming("__ecvt_1822", "ecvt"); +__static_renaming("__fcvt_1827", "fcvt"); +__static_renaming("__fcvt_1828", "fcvt"); +__static_renaming("__gcvt_1832", "gcvt"); +__static_renaming("__gcvt_1833", "gcvt"); +__static_renaming("__qecvt_1838", "qecvt"); +__static_renaming("__qecvt_1839", "qecvt"); +__static_renaming("__qfcvt_1844", "qfcvt"); +__static_renaming("__qfcvt_1845", "qfcvt"); +__static_renaming("__qgcvt_1849", "qgcvt"); +__static_renaming("__qgcvt_1850", "qgcvt"); +__static_renaming("__ecvt_r_1858", "ecvt_r"); +__static_renaming("__ecvt_r_1859", "ecvt_r"); +__static_renaming("__fcvt_r_1867", "fcvt_r"); +__static_renaming("__fcvt_r_1868", "fcvt_r"); +__static_renaming("__qecvt_r_1876", "qecvt_r"); +__static_renaming("__qecvt_r_1877", "qecvt_r"); +__static_renaming("__qfcvt_r_1885", "qfcvt_r"); +__static_renaming("__qfcvt_r_1886", "qfcvt_r"); +__static_renaming("__mblen_1890", "mblen"); +__static_renaming("__mblen_1891", "mblen"); +__static_renaming("__mblen_1892", "mblen"); +__static_renaming("__mblen_1893", "mblen"); +__static_renaming("__mbtowc_1898", "mbtowc"); +__static_renaming("__mbtowc_1899", "mbtowc"); +__static_renaming("__wctomb_1902", "wctomb"); +__static_renaming("__mbstowcs_1907", "mbstowcs"); +__static_renaming("__mbstowcs_1908", "mbstowcs"); +__static_renaming("__wcstombs_1913", "wcstombs"); +__static_renaming("__wcstombs_1914", "wcstombs"); +__static_renaming("__rpmatch_1916", "rpmatch"); +__static_renaming("__rpmatch_1917", "rpmatch"); +__static_renaming("__getsubopt_1921", "getsubopt"); +__static_renaming("__getsubopt_1922", "getsubopt"); +__static_renaming("__getloadavg_1925", "getloadavg"); +__static_renaming("____realpath_chk_1931", "__realpath_chk"); +__static_renaming("____realpath_chk_1932", "__realpath_chk"); +__static_renaming("____realpath_alias_1935", "__realpath_alias"); +__static_renaming("____realpath_chk_warn_1940", "__realpath_chk_warn"); +__static_renaming("____realpath_chk_warn_1941", "__realpath_chk_warn"); +__static_renaming("____ptsname_r_chk_1951", "__ptsname_r_chk"); +__static_renaming("____ptsname_r_chk_1952", "__ptsname_r_chk"); +__static_renaming("____ptsname_r_alias_1957", "__ptsname_r_alias"); +__static_renaming("____ptsname_r_alias_1958", "__ptsname_r_alias"); +__static_renaming("____ptsname_r_chk_warn_1965", "__ptsname_r_chk_warn"); +__static_renaming("____ptsname_r_chk_warn_1966", "__ptsname_r_chk_warn"); +__static_renaming("____wctomb_chk_1977", "__wctomb_chk"); +__static_renaming("____wctomb_chk_1978", "__wctomb_chk"); +__static_renaming("____wctomb_alias_1981", "__wctomb_alias"); +__static_renaming("____mbstowcs_chk_1990", "__mbstowcs_chk"); +__static_renaming("____mbstowcs_chk_1991", "__mbstowcs_chk"); +__static_renaming("____mbstowcs_alias_1996", "__mbstowcs_alias"); +__static_renaming("____mbstowcs_alias_1997", "__mbstowcs_alias"); +__static_renaming("____mbstowcs_chk_warn_2004", "__mbstowcs_chk_warn"); +__static_renaming("____mbstowcs_chk_warn_2005", "__mbstowcs_chk_warn"); +__static_renaming("____wcstombs_chk_2016", "__wcstombs_chk"); +__static_renaming("____wcstombs_chk_2017", "__wcstombs_chk"); +__static_renaming("____wcstombs_alias_2022", "__wcstombs_alias"); +__static_renaming("____wcstombs_alias_2023", "__wcstombs_alias"); +__static_renaming("____wcstombs_chk_warn_2030", "__wcstombs_chk_warn"); +__static_renaming("____wcstombs_chk_warn_2031", "__wcstombs_chk_warn"); +__static_renaming("__cur_2041", "cur"); +__static_renaming("__next_2042", "next"); +__static_renaming("__dfree_2043", "dfree"); +__static_renaming("__i_2052", "i"); +__static_renaming("__showdirs_2053", "showdirs"); +__static_renaming("__showdirs_2054", "showdirs"); +__static_renaming("__temp_2063", "temp"); +__static_renaming("__i_2064", "i"); +__static_renaming("__j_2065", "j"); +__static_renaming("__sort_2066", "sort"); +__static_renaming("__curr_2072", "curr"); +__static_renaming("__head_2073", "head"); +__static_renaming("__size_2074", "size"); +__static_renaming("__arr_2075", "arr"); +__static_renaming("__i_2076", "i"); +__static_renaming("__main_2080", "main"); +__static_renaming("__main_2081", "main"); + +__static_condition_renaming("__static_condition_default_53", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_76", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_84", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_123", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_169", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_170", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_173", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_182", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_187", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_193", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_198", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_201", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_204", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_210", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_217", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_223", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_229", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_235", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_238", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_241", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_244", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_246", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_248", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_249", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_250", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_253", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_255", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_257", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_258", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_259", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_263", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_264", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_267", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_270", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_271", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_274", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_275", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_278", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_280", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); +__static_condition_renaming("__static_condition_default_282", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_284", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_286", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_288", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_290", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_293", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_296", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_299", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_311", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_313", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_315", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_317", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_331", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_333", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_337", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_341", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_345", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_347", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_355", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_357", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_363", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_365", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_367", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_369", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_373", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_375", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_380", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_382", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_386", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_388", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_393", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_395", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_402", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_408", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_412", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_417", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_419", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_431", "!(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_432", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_433", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_438", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_444", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_455", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_461", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_469", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_471", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_473", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_475", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_486", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_488", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_489", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_491", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_493", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_494", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_497", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_499", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_503", "!(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_510", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_511", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_512", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_514", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_515", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_516", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_521", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_523", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_529", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_536", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_537", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_538", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_539", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_541", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_542", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_543", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_544", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_549", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_550", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_552", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_553", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_559", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_560", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_564", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_568", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_573", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_578", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_583", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_585", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_590", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_597", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_602", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_608", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_613", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_619", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_621", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_623", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_625", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_632", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_633", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_634", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_636", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_637", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_638", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_645", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_646", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_647", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_649", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_650", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_651", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_657", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_658", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_659", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_661", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_662", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_663", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_668", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_670", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_677", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_683", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_684", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_685", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_686", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_692", "!(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_693", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_699", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_700", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_701", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_702", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_708", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_709", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_715", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_717", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_721", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_723", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_727", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_734", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_735", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_736", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_745", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_746", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_747", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_751", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_752", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_753", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_755", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_756", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_757", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_759", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_760", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_761", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_767", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_768", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_769", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_779", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_780", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_781", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_787", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_788", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_789", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_791", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_792", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_793", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_797", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_801", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_803", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_807", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_809", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_813", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_817", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_819", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_823", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_825", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_834", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_836", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_840", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_842", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_846", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_848", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_852", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_858", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_862", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_864", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_868", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_872", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_875", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_878", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_883", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_887", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_891", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_894", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_907", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_914", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_929", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_938", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_944", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_955", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_956", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_957", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_963", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_967", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_972", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_978", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_979", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_980", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_991", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_998", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1005", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1007", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1009", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1015", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1022", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1027", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1028", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1035", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1036", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1042", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1043", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1050", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1051", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1057", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1058", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1065", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1066", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1072", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1073", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1080", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1081", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1089", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_1090", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1091", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1152", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1159", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1164", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1165", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1315", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1341", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __u_char_defined)"); +__static_condition_renaming("__static_condition_default_1345", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __u_char_defined)"); +__static_condition_renaming("__static_condition_default_1349", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __u_char_defined)"); +__static_condition_renaming("__static_condition_default_1353", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined)"); +__static_condition_renaming("__static_condition_default_1357", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined)"); +__static_condition_renaming("__static_condition_default_1361", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_1365", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_1369", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_1373", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1377", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __nlink_t_defined)"); +__static_condition_renaming("__static_condition_default_1381", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __nlink_t_defined)"); +__static_condition_renaming("__static_condition_default_1385", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __nlink_t_defined)"); +__static_condition_renaming("__static_condition_default_1388", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1391", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1395", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && (defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1398", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1402", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __id_t_defined)"); +__static_condition_renaming("__static_condition_default_1405", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1409", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_1416", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_1420", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_1424", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __clock_t_defined)"); +__static_condition_renaming("__static_condition_default_1428", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __time_t_defined)"); +__static_condition_renaming("__static_condition_default_1432", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __clockid_t_defined)"); +__static_condition_renaming("__static_condition_default_1436", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timer_t_defined)"); +__static_condition_renaming("__static_condition_default_1453", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1458", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1459", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1475", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_1485", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_1489", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __suseconds_t_defined)"); +__static_condition_renaming("__static_condition_default_1498", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1515", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_1516", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_1531", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_1532", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_1552", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blksize_t_defined)"); +__static_condition_renaming("__static_condition_default_1556", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined)"); +__static_condition_renaming("__static_condition_default_1560", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1564", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined)"); +__static_condition_renaming("__static_condition_default_1568", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1572", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1576", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1749", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1750", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1753", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1754", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1773", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1774", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1775", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1776", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1785", "!(defined __need___FILE) && !(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1787", "(defined __need___FILE) && !(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1789", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1791", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1808", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1810", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1814", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1816", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1944", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_2044", "(defined CONFIG_FEATURE_LS_RECURSIVE)"); +__static_condition_renaming("__static_condition_default_2045", "!(defined __need___FILE) && (defined CONFIG_FEATURE_LS_RECURSIVE) || (defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_RECURSIVE)"); +__static_condition_renaming("__static_condition_default_2046", "(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_RECURSIVE) || (defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_FEATURE_LS_RECURSIVE)"); +__static_condition_renaming("__static_condition_default_2047", "!(defined __need___FILE) && (defined CONFIG_FEATURE_LS_RECURSIVE) || (defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_RECURSIVE)"); +__static_condition_renaming("__static_condition_default_2048", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_RECURSIVE)"); +__static_condition_renaming("__static_condition_default_2049", "!(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_RECURSIVE) || !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_FEATURE_LS_RECURSIVE)"); +__static_condition_renaming("__static_condition_default_2050", "(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_RECURSIVE) || (defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_FEATURE_LS_RECURSIVE)"); +__static_condition_renaming("__static_condition_default_2055", "!(defined CONFIG_FEATURE_LS_RECURSIVE)"); +__static_condition_renaming("__static_condition_default_2056", "!(defined __need___FILE) && !(defined CONFIG_FEATURE_LS_RECURSIVE)"); +__static_condition_renaming("__static_condition_default_2057", "(defined __need___FILE) && !(defined CONFIG_FEATURE_LS_RECURSIVE)"); +__static_condition_renaming("__static_condition_default_2058", "(defined CONFIG_FEATURE_LS_RECURSIVE)"); +__static_condition_renaming("__static_condition_default_2059", "!(defined __need___FILE) && (defined CONFIG_FEATURE_LS_RECURSIVE)"); +__static_condition_renaming("__static_condition_default_2060", "(defined __need___FILE) && (defined CONFIG_FEATURE_LS_RECURSIVE)"); +__static_condition_renaming("__static_condition_default_2067", "(defined CONFIG_FEATURE_LS_SORTFILES)"); +__static_condition_renaming("__static_condition_default_2068", "!(defined __need___FILE) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES)"); +__static_condition_renaming("__static_condition_default_2069", "(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_FEATURE_LS_SORTFILES)"); +__static_condition_renaming("__static_condition_default_2082", "!(defined CONFIG_FEATURE_LS_SORTFILES)"); +__static_condition_renaming("__static_condition_default_2083", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES)"); +__static_condition_renaming("__static_condition_default_2084", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES)"); +__static_condition_renaming("__static_condition_default_2085", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES)"); +__static_condition_renaming("__static_condition_default_2086", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES)"); +__static_condition_renaming("__static_condition_default_2087", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __STRICT_ANSI__) && (defined _STDLIB_H) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __STRICT_ANSI__) && (defined _STDLIB_H) && !(defined CONFIG_FEATURE_LS_SORTFILES)"); +__static_condition_renaming("__static_condition_default_2088", "(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_SORTFILES)"); +__static_condition_renaming("__static_condition_default_2089", "!(defined __STRICT_ANSI__) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __STRICT_ANSI__) && (defined _STDLIB_H) && !(defined CONFIG_FEATURE_LS_SORTFILES)"); +__static_condition_renaming("__static_condition_default_2090", "(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_SORTFILES)"); +__static_condition_renaming("__static_condition_default_2091", "(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_RECURSIVE) && !(defined CONFIG_FEATURE_LS_SORTFILES)"); +__static_condition_renaming("__static_condition_default_2092", "(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_RECURSIVE) && !(defined CONFIG_FEATURE_LS_SORTFILES)"); +__static_condition_renaming("__static_condition_default_2093", "!(defined __STRICT_ANSI__) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_SORTFILES) || (defined __STRICT_ANSI__) && (defined _STDLIB_H) && !(defined CONFIG_FEATURE_LS_SORTFILES)"); +__static_condition_renaming("__static_condition_default_2094", "(defined CONFIG_FEATURE_LS_SORTFILES)"); +__static_condition_renaming("__static_condition_default_2095", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES)"); +__static_condition_renaming("__static_condition_default_2096", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES)"); +__static_condition_renaming("__static_condition_default_2097", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES)"); +__static_condition_renaming("__static_condition_default_2098", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES)"); +__static_condition_renaming("__static_condition_default_2099", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || !(defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined CONFIG_FEATURE_LS_SORTFILES)"); +__static_condition_renaming("__static_condition_default_2100", "(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES)"); +__static_condition_renaming("__static_condition_default_2101", "!(defined __STRICT_ANSI__) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined CONFIG_FEATURE_LS_SORTFILES)"); +__static_condition_renaming("__static_condition_default_2102", "(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES)"); +__static_condition_renaming("__static_condition_default_2103", "(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_RECURSIVE) && (defined CONFIG_FEATURE_LS_SORTFILES)"); +__static_condition_renaming("__static_condition_default_2104", "(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_RECURSIVE) && (defined CONFIG_FEATURE_LS_SORTFILES)"); +__static_condition_renaming("__static_condition_default_2105", "!(defined __STRICT_ANSI__) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_SORTFILES) || (defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined CONFIG_FEATURE_LS_SORTFILES)"); +__static_condition_renaming("__static_condition_default_2106", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); + +if (__static_condition_default_2106) { __static_parse_error("Unable to parse"); } }; @@ -634,165 +1562,508 @@ typedef long int ____ssize_t_49;// L110:L172 typedef long int ____syscall_slong_t_50;// L93:L175 typedef unsigned long int ____syscall_ulong_t_51;// L94:L177 typedef ____off64_t_24 ____loff_t_52;// L181 -typedef ____quad_t_14 * (____qaddr_t_53);// L182 -typedef char * (____caddr_t_54);// L183 -typedef long int ____intptr_t_55;// L110:L186 -typedef unsigned int ____socklen_t_56;// L92:L189 -typedef struct __forward_tag_reference_57 __FILE_58;// L48 -typedef struct __forward_tag_reference_57 ____FILE_59;// L64 -union ____anonymous_tag_60_61 { -unsigned int ____wch_62;// L265 -char ____wchb_63[4];// L92 +typedef ____quad_t_14 * (____qaddr_t_54);// L182 +typedef char * (____caddr_t_55);// L183 +typedef long int ____intptr_t_56;// L110:L186 +typedef unsigned int ____socklen_t_57;// L92:L189 +typedef struct __forward_tag_reference_58 __FILE_59;// L48 +typedef struct __forward_tag_reference_58 ____FILE_60;// L64 +union ____anonymous_tag_61_62 { +unsigned int ____wch_63;// L265 +char ____wchb_64[4];// L92 +}; +struct ____anonymous_tag_65_66 { +int ____count_67;// L84 +union ____anonymous_tag_61_62 ____value_68;// L85 +}; +typedef struct ____anonymous_tag_65_66 ____mbstate_t_69;// L82:L94 +struct ____anonymous_tag_70_71 { +____off_t_23 ____pos_72;// L0 +____mbstate_t_69 ____state_74;// L0 +}; +typedef struct ____anonymous_tag_70_71 ___G_fpos_t_77;// L21:L25 +struct ____anonymous_tag_78_79 { +____off64_t_24 ____pos_80;// L0 +____mbstate_t_69 ____state_82;// L0 +}; +typedef struct ____anonymous_tag_78_79 ___G_fpos64_t_85;// L26:L30 +typedef __builtin_va_list ____gnuc_va_list_86;// L40 +typedef void ___IO_lock_t_88;// L150 +struct ___IO_marker_90 { +struct __forward_tag_reference_89 * (___next_91);// L0 +struct __forward_tag_reference_58 * (___sbuf_92);// L0 +int ___pos_93;// L162 +}; +enum ____codecvt_result_98 { +____codecvt_ok_94, +____codecvt_partial_95, +____codecvt_error_96, +____codecvt_noconv_97, +}; +struct ___IO_FILE_99 { +int ___flags_100;// L242 +char * (___IO_read_ptr_101);// L247 +char * (___IO_read_end_102);// L248 +char * (___IO_read_base_103);// L249 +char * (___IO_write_base_104);// L250 +char * (___IO_write_ptr_105);// L251 +char * (___IO_write_end_106);// L252 +char * (___IO_buf_base_107);// L253 +char * (___IO_buf_end_108);// L254 +char * (___IO_save_base_109);// L256 +char * (___IO_backup_base_110);// L257 +char * (___IO_save_end_111);// L258 +struct ___IO_marker_90 * (___markers_112);// L260 +struct __forward_tag_reference_58 * (___chain_113);// L0 +int ___fileno_114;// L264 +int ___flags2_115;// L268 +____off_t_23 ___old_offset_116;// L0 +unsigned short ___cur_column_118;// L274 +signed char ___vtable_offset_119;// L275 +char ___shortbuf_120[1];// L276 +___IO_lock_t_88 * (___lock_121);// L0 +}; +struct ___IO_FILE_124 { +int ___flags_125;// L242 +char * (___IO_read_ptr_126);// L247 +char * (___IO_read_end_127);// L248 +char * (___IO_read_base_128);// L249 +char * (___IO_write_base_129);// L250 +char * (___IO_write_ptr_130);// L251 +char * (___IO_write_end_131);// L252 +char * (___IO_buf_base_132);// L253 +char * (___IO_buf_end_133);// L254 +char * (___IO_save_base_134);// L256 +char * (___IO_backup_base_135);// L257 +char * (___IO_save_end_136);// L258 +struct ___IO_marker_90 * (___markers_137);// L260 +struct __forward_tag_reference_58 * (___chain_138);// L0 +int ___fileno_139;// L264 +int ___flags2_140;// L268 +____off_t_23 ___old_offset_141;// L0 +unsigned short ___cur_column_143;// L274 +signed char ___vtable_offset_144;// L275 +char ___shortbuf_145[1];// L276 +___IO_lock_t_88 * (___lock_146);// L0 +____off64_t_24 ___offset_148;// L0 +void * (____pad1_150);// L297 +void * (____pad2_151);// L298 +void * (____pad3_152);// L299 +void * (____pad4_153);// L300 +__size_t_1 ____pad5_154;// L0 +int ___mode_155;// L303 +char ___unused2_156[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +}; +struct ___IO_FILE_complete_157 { +struct ___IO_FILE_99 ___file_158;// L286 +____off64_t_24 ___offset_160;// L0 +void * (____pad1_162);// L297 +void * (____pad2_163);// L298 +void * (____pad3_164);// L299 +void * (____pad4_165);// L300 +__size_t_1 ____pad5_166;// L0 +int ___mode_167;// L303 +char ___unused2_168[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +}; +typedef struct ___IO_FILE_99 ___IO_FILE_171;// L310 +typedef struct ___IO_FILE_124 ___IO_FILE_172;// L310 +typedef ____ssize_t_49 (____io_read_fn_181) (void * (____cookie_178), char * (____buf_179), __size_t_1 ____nbytes_180);// L333 +typedef ____ssize_t_49 (____io_write_fn_186) (void * (____cookie_183), const char * (____buf_184), __size_t_1 ____n_185);// L341:L342 +typedef int (____io_seek_fn_192) (void * (____cookie_188), ____off64_t_24 * (____pos_189), int ____w_191);// L350 +typedef int (____io_close_fn_195) (void * (____cookie_194));// L353 +typedef ____gnuc_va_list_86 __va_list_279;// L79 +typedef ____off_t_23 __off_t_281;// L90 +typedef ____off64_t_24 __off_t_283;// L92 +typedef ____ssize_t_49 __ssize_t_285;// L102 +typedef ___G_fpos_t_77 __fpos_t_287;// L110 +typedef ___G_fpos64_t_85 __fpos_t_289;// L112 +extern const char * const __sys_errlist_830[];// L27 +typedef long int __ptrdiff_t_1092;// L143:L324 +typedef long unsigned int __size_t_1093;// L177:L209 +typedef int __wchar_t_1094;// L243:L321 +enum ____anonymous_tag_1098_1099 { +__P_ALL_1095, +__P_PID_1096, +__P_PGID_1097, +}; +typedef enum ____anonymous_tag_1098_1099 __idtype_t_1100;// L50:L55 +typedef unsigned char ____u_char_1101;// L30 +typedef unsigned short int ____u_short_1102;// L31 +typedef unsigned int ____u_int_1103;// L32 +typedef unsigned long int ____u_long_1104;// L33 +typedef signed char ____int8_t_1105;// L36 +typedef unsigned char ____uint8_t_1106;// L37 +typedef signed short int ____int16_t_1107;// L38 +typedef unsigned short int ____uint16_t_1108;// L39 +typedef signed int ____int32_t_1109;// L40 +typedef unsigned int ____uint32_t_1110;// L41 +typedef signed long int ____int64_t_1111;// L43 +typedef unsigned long int ____uint64_t_1112;// L44 +typedef long int ____quad_t_1113;// L52 +typedef unsigned long int ____u_quad_t_1114;// L53 +typedef unsigned long int ____dev_t_1115;// L109:L124 +typedef unsigned int ____uid_t_1116;// L92:L125 +typedef unsigned int ____gid_t_1117;// L92:L126 +typedef unsigned long int ____ino_t_1118;// L94:L127 +typedef unsigned long int ____ino64_t_1119;// L109:L128 +typedef unsigned int ____mode_t_1120;// L92:L129 +typedef unsigned long int ____nlink_t_1121;// L94:L130 +typedef long int ____off_t_1122;// L93:L131 +typedef long int ____off64_t_1123;// L108:L132 +typedef int ____pid_t_1124;// L91:L133 +struct ____anonymous_tag_1125_1126 { +int ____val_1127[2];// L72 +}; +typedef struct ____anonymous_tag_1125_1126 ____fsid_t_1128;// L72:L134 +typedef long int ____clock_t_1129;// L93:L135 +typedef unsigned long int ____rlim_t_1130;// L94:L136 +typedef unsigned long int ____rlim64_t_1131;// L109:L137 +typedef unsigned int ____id_t_1132;// L92:L138 +typedef long int ____time_t_1133;// L93:L139 +typedef unsigned int ____useconds_t_1134;// L92:L140 +typedef long int ____suseconds_t_1135;// L93:L141 +typedef int ____daddr_t_1136;// L91:L143 +typedef int ____key_t_1137;// L91:L144 +typedef int ____clockid_t_1138;// L91:L147 +typedef void * (____timer_t_1139);// L70:L150 +typedef long int ____blksize_t_1140;// L93:L153 +typedef long int ____blkcnt_t_1141;// L93:L158 +typedef long int ____blkcnt64_t_1142;// L108:L159 +typedef unsigned long int ____fsblkcnt_t_1143;// L94:L162 +typedef unsigned long int ____fsblkcnt64_t_1144;// L109:L163 +typedef unsigned long int ____fsfilcnt_t_1145;// L94:L166 +typedef unsigned long int ____fsfilcnt64_t_1146;// L109:L167 +typedef long int ____fsword_t_1147;// L93:L170 +typedef long int ____ssize_t_1148;// L110:L172 +typedef long int ____syscall_slong_t_1149;// L93:L175 +typedef unsigned long int ____syscall_ulong_t_1150;// L94:L177 +typedef ____off64_t_1123 ____loff_t_1151;// L181 +typedef ____quad_t_1113 * (____qaddr_t_1153);// L182 +typedef char * (____caddr_t_1154);// L183 +typedef long int ____intptr_t_1155;// L110:L186 +typedef unsigned int ____socklen_t_1156;// L92:L189 +struct ____anonymous_tag_1166_1167 { +unsigned int ____w_termsig_1168 : 7;// L72 +unsigned int ____w_coredump_1169 : 1;// L73 +unsigned int ____w_retcode_1170 : 8;// L74 +unsigned int __anon_id_0_1171 : 16;// L75 +}; +struct ____anonymous_tag_1172_1173 { +unsigned int ____w_stopval_1174 : 8;// L87 +unsigned int ____w_stopsig_1175 : 8;// L88 +unsigned int __anon_id_1_1176 : 16;// L89 +}; +union __wait_1177 { +int __w_status_1178;// L68 +struct ____anonymous_tag_1166_1167 ____wait_terminated_1179;// L69 +struct ____anonymous_tag_1172_1173 ____wait_stopped_1180;// L84 +}; +union ____anonymous_tag_1181_1182 { +union __wait_1177 * (____uptr_1183);// L69 +int * (____iptr_1184);// L70 }; -struct ____anonymous_tag_64_65 { -int ____count_66;// L84 -union ____anonymous_tag_60_61 ____value_67;// L85 +typedef union ____anonymous_tag_1181_1182 ____WAIT_STATUS_1185;// L67:L71 +struct ____anonymous_tag_1186_1187 { +int __quot_1188;// L99 +int __rem_1189;// L100 }; -typedef struct ____anonymous_tag_64_65 ____mbstate_t_68;// L82:L94 -struct ____anonymous_tag_69_70 { -____off_t_23 ____pos_71;// L0 -____mbstate_t_68 ____state_72;// L0 +typedef struct ____anonymous_tag_1186_1187 __div_t_1190;// L97:L101 +struct ____anonymous_tag_1191_1192 { +long int __quot_1193;// L107 +long int __rem_1194;// L108 }; -typedef struct ____anonymous_tag_69_70 ___G_fpos_t_75;// L21:L25 -struct ____anonymous_tag_76_77 { -____off64_t_24 ____pos_78;// L0 -____mbstate_t_68 ____state_79;// L0 +typedef struct ____anonymous_tag_1191_1192 __ldiv_t_1195;// L105:L109 +struct ____anonymous_tag_1196_1197 { +long long int __quot_1198;// L119 +long long int __rem_1199;// L120 }; -typedef struct ____anonymous_tag_76_77 ___G_fpos64_t_81;// L26:L30 -typedef __builtin_va_list ____gnuc_va_list_82;// L40 -typedef void ___IO_lock_t_84;// L150 -struct ___IO_marker_86 { -struct __forward_tag_reference_85 * (___next_87);// L0 -struct __forward_tag_reference_57 * (___sbuf_88);// L0 -int ___pos_89;// L162 +typedef struct ____anonymous_tag_1196_1197 __lldiv_t_1200;// L117:L121 +typedef unsigned char ____u_char_1264;// L30 +typedef unsigned short int ____u_short_1265;// L31 +typedef unsigned int ____u_int_1266;// L32 +typedef unsigned long int ____u_long_1267;// L33 +typedef signed char ____int8_t_1268;// L36 +typedef unsigned char ____uint8_t_1269;// L37 +typedef signed short int ____int16_t_1270;// L38 +typedef unsigned short int ____uint16_t_1271;// L39 +typedef signed int ____int32_t_1272;// L40 +typedef unsigned int ____uint32_t_1273;// L41 +typedef signed long int ____int64_t_1274;// L43 +typedef unsigned long int ____uint64_t_1275;// L44 +typedef long int ____quad_t_1276;// L52 +typedef unsigned long int ____u_quad_t_1277;// L53 +typedef unsigned long int ____dev_t_1278;// L109:L124 +typedef unsigned int ____uid_t_1279;// L92:L125 +typedef unsigned int ____gid_t_1280;// L92:L126 +typedef unsigned long int ____ino_t_1281;// L94:L127 +typedef unsigned long int ____ino64_t_1282;// L109:L128 +typedef unsigned int ____mode_t_1283;// L92:L129 +typedef unsigned long int ____nlink_t_1284;// L94:L130 +typedef long int ____off_t_1285;// L93:L131 +typedef long int ____off64_t_1286;// L108:L132 +typedef int ____pid_t_1287;// L91:L133 +struct ____anonymous_tag_1288_1289 { +int ____val_1290[2];// L72 }; -enum ____codecvt_result_94 { -____codecvt_ok_90, -____codecvt_partial_91, -____codecvt_error_92, -____codecvt_noconv_93, +typedef struct ____anonymous_tag_1288_1289 ____fsid_t_1291;// L72:L134 +typedef long int ____clock_t_1292;// L93:L135 +typedef unsigned long int ____rlim_t_1293;// L94:L136 +typedef unsigned long int ____rlim64_t_1294;// L109:L137 +typedef unsigned int ____id_t_1295;// L92:L138 +typedef long int ____time_t_1296;// L93:L139 +typedef unsigned int ____useconds_t_1297;// L92:L140 +typedef long int ____suseconds_t_1298;// L93:L141 +typedef int ____daddr_t_1299;// L91:L143 +typedef int ____key_t_1300;// L91:L144 +typedef int ____clockid_t_1301;// L91:L147 +typedef void * (____timer_t_1302);// L70:L150 +typedef long int ____blksize_t_1303;// L93:L153 +typedef long int ____blkcnt_t_1304;// L93:L158 +typedef long int ____blkcnt64_t_1305;// L108:L159 +typedef unsigned long int ____fsblkcnt_t_1306;// L94:L162 +typedef unsigned long int ____fsblkcnt64_t_1307;// L109:L163 +typedef unsigned long int ____fsfilcnt_t_1308;// L94:L166 +typedef unsigned long int ____fsfilcnt64_t_1309;// L109:L167 +typedef long int ____fsword_t_1310;// L93:L170 +typedef long int ____ssize_t_1311;// L110:L172 +typedef long int ____syscall_slong_t_1312;// L93:L175 +typedef unsigned long int ____syscall_ulong_t_1313;// L94:L177 +typedef ____off64_t_1286 ____loff_t_1314;// L181 +typedef ____quad_t_1276 * (____qaddr_t_1316);// L182 +typedef char * (____caddr_t_1317);// L183 +typedef long int ____intptr_t_1318;// L110:L186 +typedef unsigned int ____socklen_t_1319;// L92:L189 +typedef ____u_char_2 __u_char_1320;// L33 +typedef ____u_char_1101 __u_char_1321;// L33 +typedef ____u_char_1264 __u_char_1322;// L33 +typedef ____u_short_3 __u_short_1323;// L34 +typedef ____u_short_1102 __u_short_1324;// L34 +typedef ____u_short_1265 __u_short_1325;// L34 +typedef ____u_int_4 __u_int_1326;// L35 +typedef ____u_int_1103 __u_int_1327;// L35 +typedef ____u_int_1266 __u_int_1328;// L35 +typedef ____u_long_5 __u_long_1329;// L36 +typedef ____u_long_1104 __u_long_1330;// L36 +typedef ____u_long_1267 __u_long_1331;// L36 +typedef ____quad_t_14 __quad_t_1332;// L37 +typedef ____quad_t_1113 __quad_t_1333;// L37 +typedef ____quad_t_1276 __quad_t_1334;// L37 +typedef ____u_quad_t_15 __u_quad_t_1335;// L38 +typedef ____u_quad_t_1114 __u_quad_t_1336;// L38 +typedef ____u_quad_t_1277 __u_quad_t_1337;// L38 +typedef ____fsid_t_29 __fsid_t_1338;// L39 +typedef ____fsid_t_1128 __fsid_t_1339;// L39 +typedef ____fsid_t_1291 __fsid_t_1340;// L39 +typedef ____loff_t_52 __loff_t_1342;// L44 +typedef ____loff_t_1151 __loff_t_1343;// L44 +typedef ____loff_t_1314 __loff_t_1344;// L44 +typedef ____loff_t_52 __loff_t_1346;// L44 +typedef ____loff_t_1151 __loff_t_1347;// L44 +typedef ____loff_t_1314 __loff_t_1348;// L44 +typedef ____ino64_t_20 __ino_t_1350;// L50 +typedef ____ino64_t_1119 __ino_t_1351;// L50 +typedef ____ino64_t_1282 __ino_t_1352;// L50 +typedef ____ino_t_19 __ino_t_1354;// L48 +typedef ____ino_t_1118 __ino_t_1355;// L48 +typedef ____ino_t_1281 __ino_t_1356;// L48 +typedef ____dev_t_16 __dev_t_1358;// L60 +typedef ____dev_t_1115 __dev_t_1359;// L60 +typedef ____dev_t_1278 __dev_t_1360;// L60 +typedef ____gid_t_18 __gid_t_1362;// L65 +typedef ____gid_t_1117 __gid_t_1363;// L65 +typedef ____gid_t_1280 __gid_t_1364;// L65 +typedef ____gid_t_18 __gid_t_1366;// L65 +typedef ____gid_t_1117 __gid_t_1367;// L65 +typedef ____gid_t_1280 __gid_t_1368;// L65 +typedef ____mode_t_21 __mode_t_1370;// L70 +typedef ____mode_t_1120 __mode_t_1371;// L70 +typedef ____mode_t_1283 __mode_t_1372;// L70 +typedef ____nlink_t_22 __nlink_t_1374;// L75 +typedef ____nlink_t_1121 __nlink_t_1375;// L75 +typedef ____nlink_t_1284 __nlink_t_1376;// L75 +typedef ____uid_t_17 __uid_t_1378;// L80 +typedef ____uid_t_1116 __uid_t_1379;// L80 +typedef ____uid_t_1279 __uid_t_1380;// L80 +typedef ____uid_t_17 __uid_t_1382;// L80 +typedef ____uid_t_1116 __uid_t_1383;// L80 +typedef ____uid_t_1279 __uid_t_1384;// L80 +typedef ____off64_t_1123 __off_t_1386;// L88 +typedef ____off64_t_1286 __off_t_1387;// L88 +typedef ____off_t_1122 __off_t_1389;// L86 +typedef ____off_t_1285 __off_t_1390;// L86 +typedef ____pid_t_25 __pid_t_1392;// L98 +typedef ____pid_t_1124 __pid_t_1393;// L98 +typedef ____pid_t_1287 __pid_t_1394;// L98 +typedef ____pid_t_1124 __pid_t_1396;// L98 +typedef ____pid_t_1287 __pid_t_1397;// L98 +typedef ____id_t_33 __id_t_1399;// L104 +typedef ____id_t_1132 __id_t_1400;// L104 +typedef ____id_t_1295 __id_t_1401;// L104 +typedef ____ssize_t_1148 __ssize_t_1403;// L109 +typedef ____ssize_t_1311 __ssize_t_1404;// L109 +typedef ____daddr_t_37 __daddr_t_1406;// L115 +typedef ____daddr_t_1136 __daddr_t_1407;// L115 +typedef ____daddr_t_1299 __daddr_t_1408;// L115 +typedef ____caddr_t_55 __caddr_t_1410;// L116 +typedef ____caddr_t_1154 __caddr_t_1411;// L116 +typedef ____caddr_t_1317 __caddr_t_1412;// L116 +typedef ____key_t_38 __key_t_1413;// L122 +typedef ____key_t_1137 __key_t_1414;// L122 +typedef ____key_t_1300 __key_t_1415;// L122 +typedef ____key_t_38 __key_t_1417;// L122 +typedef ____key_t_1137 __key_t_1418;// L122 +typedef ____key_t_1300 __key_t_1419;// L122 +typedef ____clock_t_30 __clock_t_1421;// L59 +typedef ____clock_t_1129 __clock_t_1422;// L59 +typedef ____clock_t_1292 __clock_t_1423;// L59 +typedef ____time_t_34 __time_t_1425;// L75 +typedef ____time_t_1133 __time_t_1426;// L75 +typedef ____time_t_1296 __time_t_1427;// L75 +typedef ____clockid_t_39 __clockid_t_1429;// L91 +typedef ____clockid_t_1138 __clockid_t_1430;// L91 +typedef ____clockid_t_1301 __clockid_t_1431;// L91 +typedef ____timer_t_40 __timer_t_1433;// L103 +typedef ____timer_t_1139 __timer_t_1434;// L103 +typedef ____timer_t_1302 __timer_t_1435;// L103 +typedef unsigned long int __ulong_1437;// L150 +typedef unsigned long int __ulong_1438;// L150 +typedef unsigned long int __ulong_1439;// L150 +typedef unsigned short int __ushort_1440;// L151 +typedef unsigned int __uint_1441;// L152 +typedef int __int8_t_1442;// L188:L194 +typedef int __int16_t_1443;// L188:L195 +typedef int __int32_t_1444;// L188:L196 +typedef int __int64_t_1445;// L188:L197 +typedef unsigned int __u_int8_t_1446;// L190:L200 +typedef unsigned int __u_int16_t_1447;// L190:L201 +typedef unsigned int __u_int32_t_1448;// L190:L202 +typedef unsigned int __u_int64_t_1449;// L190:L203 +typedef int __register_t_1450;// L205 +typedef int ____sig_atomic_t_1460;// L22 +struct ____anonymous_tag_1461_1462 { +unsigned long int ____val_1463[( 1024 / ( 8 * sizeof(unsigned long) ) )];// L29 }; -struct ___IO_FILE_95 { -int ___flags_96;// L242 -char * (___IO_read_ptr_97);// L247 -char * (___IO_read_end_98);// L248 -char * (___IO_read_base_99);// L249 -char * (___IO_write_base_100);// L250 -char * (___IO_write_ptr_101);// L251 -char * (___IO_write_end_102);// L252 -char * (___IO_buf_base_103);// L253 -char * (___IO_buf_end_104);// L254 -char * (___IO_save_base_105);// L256 -char * (___IO_backup_base_106);// L257 -char * (___IO_save_end_107);// L258 -struct ___IO_marker_86 * (___markers_108);// L260 -struct __forward_tag_reference_57 * (___chain_109);// L0 -int ___fileno_110;// L264 -int ___flags2_111;// L268 -____off_t_23 ___old_offset_112;// L0 -unsigned short ___cur_column_113;// L274 -signed char ___vtable_offset_114;// L275 -char ___shortbuf_115[1];// L276 -___IO_lock_t_84 * (___lock_116);// L0 +typedef struct ____anonymous_tag_1461_1462 ____sigset_t_1464;// L27:L30 +typedef ____sigset_t_1464 __sigset_t_1465;// L37 +struct __timespec_1466 { +____time_t_34 __tv_sec_1467;// L0 +____time_t_1133 __tv_sec_1468;// L0 +____time_t_1296 __tv_sec_1469;// L0 +____syscall_slong_t_50 __tv_nsec_1471;// L0 +____syscall_slong_t_1149 __tv_nsec_1472;// L0 +____syscall_slong_t_1312 __tv_nsec_1473;// L0 }; -struct ___IO_FILE_119 { -int ___flags_120;// L242 -char * (___IO_read_ptr_121);// L247 -char * (___IO_read_end_122);// L248 -char * (___IO_read_base_123);// L249 -char * (___IO_write_base_124);// L250 -char * (___IO_write_ptr_125);// L251 -char * (___IO_write_end_126);// L252 -char * (___IO_buf_base_127);// L253 -char * (___IO_buf_end_128);// L254 -char * (___IO_save_base_129);// L256 -char * (___IO_backup_base_130);// L257 -char * (___IO_save_end_131);// L258 -struct ___IO_marker_86 * (___markers_132);// L260 -struct __forward_tag_reference_57 * (___chain_133);// L0 -int ___fileno_134;// L264 -int ___flags2_135;// L268 -____off_t_23 ___old_offset_136;// L0 -unsigned short ___cur_column_137;// L274 -signed char ___vtable_offset_138;// L275 -char ___shortbuf_139[1];// L276 -___IO_lock_t_84 * (___lock_140);// L0 -____off64_t_24 ___offset_142;// L0 -void * (____pad1_143);// L297 -void * (____pad2_144);// L298 -void * (____pad3_145);// L299 -void * (____pad4_146);// L300 -__size_t_1 ____pad5_147;// L0 -int ___mode_148;// L303 -char ___unused2_149[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +struct __timeval_1476 { +____time_t_34 __tv_sec_1477;// L0 +____time_t_1133 __tv_sec_1478;// L0 +____time_t_1296 __tv_sec_1479;// L0 +____suseconds_t_36 __tv_usec_1481;// L0 +____suseconds_t_1135 __tv_usec_1482;// L0 +____suseconds_t_1298 __tv_usec_1483;// L0 }; -struct ___IO_FILE_complete_150 { -struct ___IO_FILE_95 ___file_151;// L286 -____off64_t_24 ___offset_153;// L0 -void * (____pad1_154);// L297 -void * (____pad2_155);// L298 -void * (____pad3_156);// L299 -void * (____pad4_157);// L300 -__size_t_1 ____pad5_158;// L0 -int ___mode_159;// L303 -char ___unused2_160[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +typedef ____suseconds_t_36 __suseconds_t_1486;// L48 +typedef ____suseconds_t_1135 __suseconds_t_1487;// L48 +typedef ____suseconds_t_1298 __suseconds_t_1488;// L48 +typedef long int ____fd_mask_1490;// L54 +typedef long int ____fd_mask_1491;// L54 +struct ____anonymous_tag_1492_1493 { +____fd_mask_1490 ____fds_bits_1494[1024 / ( 8 * ( int ) sizeof(long) )];// L0 +____fd_mask_1491 ____fds_bits_1496[1024 / ( 8 * ( int ) sizeof(long) )];// L0 }; -typedef struct ___IO_FILE_95 ___IO_FILE_163;// L310 -typedef struct ___IO_FILE_119 ___IO_FILE_164;// L310 -typedef ____ssize_t_49 (____io_read_fn_173) (void * (____cookie_170), char * (____buf_171), __size_t_1 ____nbytes_172);// L333 -typedef ____ssize_t_49 (____io_write_fn_177) (void * (____cookie_174), const char * (____buf_175), __size_t_1 ____n_176);// L341:L342 -typedef int (____io_seek_fn_181) (void * (____cookie_178), ____off64_t_24 * (____pos_179), int ____w_180);// L350 -typedef int (____io_close_fn_183) (void * (____cookie_182));// L353 -typedef ___G_fpos_t_75 __fpos_t_248;// L110 -typedef ___G_fpos64_t_81 __fpos_t_250;// L112 -typedef int __wchar_t_704;// L243:L321 -typedef int __wchar_t_705;// L243:L321 -struct ____anonymous_tag_706_707 { -int __quot_708;// L99 -int __rem_709;// L100 +typedef struct ____anonymous_tag_1492_1493 __fd_set_1499;// L64:L75 +typedef ____fd_mask_1490 __fd_mask_1500;// L82 +typedef ____fd_mask_1491 __fd_mask_1501;// L82 +typedef ____blksize_t_41 __blksize_t_1549;// L228 +typedef ____blksize_t_1140 __blksize_t_1550;// L228 +typedef ____blksize_t_1303 __blksize_t_1551;// L228 +typedef ____blkcnt_t_42 __blkcnt_t_1553;// L235 +typedef ____blkcnt_t_1141 __blkcnt_t_1554;// L235 +typedef ____blkcnt_t_1304 __blkcnt_t_1555;// L235 +typedef ____fsblkcnt_t_44 __fsblkcnt_t_1557;// L239 +typedef ____fsblkcnt_t_1143 __fsblkcnt_t_1558;// L239 +typedef ____fsblkcnt_t_1306 __fsblkcnt_t_1559;// L239 +typedef ____blkcnt64_t_43 __blkcnt_t_1561;// L248 +typedef ____blkcnt64_t_1142 __blkcnt_t_1562;// L248 +typedef ____blkcnt64_t_1305 __blkcnt_t_1563;// L248 +typedef ____fsblkcnt64_t_45 __fsblkcnt_t_1565;// L252 +typedef ____fsblkcnt64_t_1144 __fsblkcnt_t_1566;// L252 +typedef ____fsblkcnt64_t_1307 __fsblkcnt_t_1567;// L252 +typedef ____fsfilcnt_t_46 __fsfilcnt_t_1569;// L243 +typedef ____fsfilcnt_t_1145 __fsfilcnt_t_1570;// L243 +typedef ____fsfilcnt_t_1308 __fsfilcnt_t_1571;// L243 +typedef ____fsfilcnt64_t_47 __fsfilcnt_t_1573;// L256 +typedef ____fsfilcnt64_t_1146 __fsfilcnt_t_1574;// L256 +typedef ____fsfilcnt64_t_1309 __fsfilcnt_t_1575;// L256 +typedef unsigned long int __pthread_t_1577;// L60 +union __pthread_attr_t_1578 { +char ____size_1579[56];// L65 +long int ____align_1580;// L66 }; -typedef struct ____anonymous_tag_706_707 __div_t_710;// L97:L101 -struct ____anonymous_tag_711_712 { -long int __quot_713;// L107 -long int __rem_714;// L108 +typedef union __pthread_attr_t_1578 __pthread_attr_t_1581;// L69 +struct ____pthread_internal_list_1583 { +struct __forward_tag_reference_1582 * (____prev_1584);// L0 +struct __forward_tag_reference_1582 * (____next_1585);// L0 }; -typedef struct ____anonymous_tag_711_712 __ldiv_t_715;// L105:L109 -struct ____anonymous_tag_716_717 { -long long int __quot_718;// L119 -long long int __rem_719;// L120 +typedef struct ____pthread_internal_list_1583 ____pthread_list_t_1586;// L75:L79 +typedef struct ____pthread_internal_list_1583 ____pthread_list_t_1587;// L75:L79 +struct ____pthread_mutex_s_1588 { +int ____lock_1589;// L94 +unsigned int ____count_1590;// L95 +int ____owner_1591;// L96 +unsigned int ____nusers_1592;// L98 +int ____kind_1593;// L102 +short ____spins_1594;// L104 +short ____elision_1595;// L105 +____pthread_list_t_1586 ____list_1596;// L0 +____pthread_list_t_1587 ____list_1597;// L0 +}; +union ____anonymous_tag_1598_1599 { +struct ____pthread_mutex_s_1588 ____data_1600;// L92 +char ____size_1601[40];// L126 +long int ____align_1602;// L127 +}; +typedef union ____anonymous_tag_1598_1599 __pthread_mutex_t_1603;// L90:L128 +union ____anonymous_tag_1604_1605 { +char ____size_1606[4];// L132 +int ____align_1607;// L133 +}; +typedef union ____anonymous_tag_1604_1605 __pthread_mutexattr_t_1608;// L130:L134 +typedef int (* (____compar_fn_t_1740)) (const void *, const void *);// L741 +struct __dnode_2037 { +int __val_2038;// L5 +struct __forward_tag_reference_2036 * (__next_2039);// L0 +}; + +struct __forward_tag_reference_89 { // generated union of struct variations +union { +struct ___IO_marker_90 ___IO_marker_90; }; -typedef struct ____anonymous_tag_716_717 __lldiv_t_720;// L117:L121 -typedef int (* (____compar_fn_t_802)) (const void *, const void *);// L741 -struct __dnode_963 { -int __val_964;// L5 -struct __forward_tag_reference_962 * (__next_965);// L0 }; -struct __forward_tag_reference_962 { // generated union of struct variations +struct __forward_tag_reference_1582 { // generated union of struct variations union { -struct __dnode_963 __dnode_963; }; }; -struct __forward_tag_reference_57 { // generated union of struct variations +struct __forward_tag_reference_58 { // generated union of struct variations union { -struct ___IO_FILE_95 ___IO_FILE_95; -struct ___IO_FILE_119 ___IO_FILE_119; +struct ___IO_FILE_99 ___IO_FILE_99; +struct ___IO_FILE_124 ___IO_FILE_124; }; }; -struct __forward_tag_reference_85 { // generated union of struct variations +struct __forward_tag_reference_2036 { // generated union of struct variations union { -struct ___IO_marker_86 ___IO_marker_86; +struct __dnode_2037 __dnode_2037; }; }; -struct __forward_tag_reference_83 { // generated union of struct variations +struct __forward_tag_reference_87 { // generated union of struct variations union { }; }; -struct __forward_tag_reference_166 { // generated union of struct variations +struct __forward_tag_reference_174 { // generated union of struct variations union { }; }; @@ -851,462 +2122,1191 @@ union { // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_57 ;// L0 +struct __forward_tag_reference_58 ;// L0 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_83 ;// L0 -struct __forward_tag_reference_83 ;// L0 -struct __forward_tag_reference_57 ;// L0 +struct __forward_tag_reference_87 ;// L0 +struct __forward_tag_reference_87 ;// L0 +struct __forward_tag_reference_58 ;// L0 // typedef moved to top of scope -struct ___IO_marker_86 ;// L156 -enum ____codecvt_result_94 ;// L176 -struct ___IO_FILE_95 ;// L241 +struct ___IO_marker_90 ;// L156 +enum ____codecvt_result_98 ;// L176 +struct ___IO_FILE_99 ;// L241 -struct ___IO_FILE_119 ;// L241 -struct ___IO_FILE_complete_150 ;// L241 +struct ___IO_FILE_124 ;// L241 +struct ___IO_FILE_complete_157 ;// L241 // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_166 ;// L0 -extern struct __forward_tag_reference_166 ___IO_2_1_stdin__167;// L315 -extern struct __forward_tag_reference_166 ___IO_2_1_stdout__168;// L316 -extern struct __forward_tag_reference_166 ___IO_2_1_stderr__169;// L317 +struct __forward_tag_reference_174 ;// L0 +extern struct __forward_tag_reference_174 ___IO_2_1_stdin__175;// L315 +extern struct __forward_tag_reference_174 ___IO_2_1_stdout__176;// L316 +extern struct __forward_tag_reference_174 ___IO_2_1_stderr__177;// L317 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern int (____underflow_184) (___IO_FILE_163 *);// L385 -extern int (____underflow_185) (___IO_FILE_164 *);// L385 -extern int (____uflow_186) (___IO_FILE_163 *);// L386 -extern int (____uflow_187) (___IO_FILE_164 *);// L386 -extern int (____overflow_188) (___IO_FILE_163 *, int );// L387 -extern int (____overflow_189) (___IO_FILE_164 *, int );// L387 -extern int (___IO_getc_193) (___IO_FILE_163 * (____fp_190));// L429 -extern int (___IO_getc_194) (___IO_FILE_164 * (____fp_191));// L429 -extern int (___IO_putc_199) (int ____c_195, ___IO_FILE_163 * (____fp_196));// L430 -extern int (___IO_putc_200) (int ____c_195, ___IO_FILE_164 * (____fp_197));// L430 -extern int (___IO_feof_204) (___IO_FILE_163 * (____fp_201));// L431 -extern int (___IO_feof_205) (___IO_FILE_164 * (____fp_202));// L431 -extern int (___IO_ferror_209) (___IO_FILE_163 * (____fp_206));// L432 -extern int (___IO_ferror_210) (___IO_FILE_164 * (____fp_207));// L432 -extern int (___IO_peekc_locked_214) (___IO_FILE_163 * (____fp_211));// L434 -extern int (___IO_peekc_locked_215) (___IO_FILE_164 * (____fp_212));// L434 -extern void (___IO_flockfile_216) (___IO_FILE_163 *);// L440 -extern void (___IO_flockfile_217) (___IO_FILE_164 *);// L440 -extern void (___IO_funlockfile_218) (___IO_FILE_163 *);// L441 -extern void (___IO_funlockfile_219) (___IO_FILE_164 *);// L441 -extern int (___IO_ftrylockfile_220) (___IO_FILE_163 *);// L442 -extern int (___IO_ftrylockfile_221) (___IO_FILE_164 *);// L442 -extern int (___IO_vfscanf_222) (___IO_FILE_163 * __restrict , const char * __restrict , ____gnuc_va_list_82 , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_224) (___IO_FILE_164 * __restrict , const char * __restrict , ____gnuc_va_list_82 , int * __restrict );// L459:L460 - - -extern int (___IO_vfprintf_231) (___IO_FILE_163 * __restrict , const char * __restrict , ____gnuc_va_list_82 );// L461:L462 -extern int (___IO_vfprintf_233) (___IO_FILE_164 * __restrict , const char * __restrict , ____gnuc_va_list_82 );// L461:L462 - -extern ____ssize_t_49 (___IO_padn_238) (___IO_FILE_163 *, int , ____ssize_t_49 );// L463 -extern ____ssize_t_49 (___IO_padn_239) (___IO_FILE_164 *, int , ____ssize_t_49 );// L463 -extern __size_t_1 (___IO_sgetn_240) (___IO_FILE_163 *, void *, __size_t_1 );// L464 -extern __size_t_1 (___IO_sgetn_241) (___IO_FILE_164 *, void *, __size_t_1 );// L464 -extern ____off64_t_24 (___IO_seekoff_242) (___IO_FILE_163 *, ____off64_t_24 , int , int );// L466 -extern ____off64_t_24 (___IO_seekoff_243) (___IO_FILE_164 *, ____off64_t_24 , int , int );// L466 -extern ____off64_t_24 (___IO_seekpos_244) (___IO_FILE_163 *, ____off64_t_24 , int );// L467 -extern ____off64_t_24 (___IO_seekpos_245) (___IO_FILE_164 *, ____off64_t_24 , int );// L467 -extern void (___IO_free_backup_area_246) (___IO_FILE_163 *);// L469 -extern void (___IO_free_backup_area_247) (___IO_FILE_164 *);// L469 +extern int (____underflow_196) (___IO_FILE_171 *);// L385 +extern int (____underflow_197) (___IO_FILE_172 *);// L385 +extern int (____uflow_199) (___IO_FILE_171 *);// L386 +extern int (____uflow_200) (___IO_FILE_172 *);// L386 +extern int (____overflow_202) (___IO_FILE_171 *, int );// L387 +extern int (____overflow_203) (___IO_FILE_172 *, int );// L387 +extern int (___IO_getc_208) (___IO_FILE_171 * (____fp_205));// L429 +extern int (___IO_getc_209) (___IO_FILE_172 * (____fp_206));// L429 +extern int (___IO_putc_215) (int ____c_211, ___IO_FILE_171 * (____fp_212));// L430 +extern int (___IO_putc_216) (int ____c_211, ___IO_FILE_172 * (____fp_213));// L430 +extern int (___IO_feof_221) (___IO_FILE_171 * (____fp_218));// L431 +extern int (___IO_feof_222) (___IO_FILE_172 * (____fp_219));// L431 +extern int (___IO_ferror_227) (___IO_FILE_171 * (____fp_224));// L432 +extern int (___IO_ferror_228) (___IO_FILE_172 * (____fp_225));// L432 +extern int (___IO_peekc_locked_233) (___IO_FILE_171 * (____fp_230));// L434 +extern int (___IO_peekc_locked_234) (___IO_FILE_172 * (____fp_231));// L434 +extern void (___IO_flockfile_236) (___IO_FILE_171 *);// L440 +extern void (___IO_flockfile_237) (___IO_FILE_172 *);// L440 +extern void (___IO_funlockfile_239) (___IO_FILE_171 *);// L441 +extern void (___IO_funlockfile_240) (___IO_FILE_172 *);// L441 +extern int (___IO_ftrylockfile_242) (___IO_FILE_171 *);// L442 +extern int (___IO_ftrylockfile_243) (___IO_FILE_172 *);// L442 +extern int (___IO_vfscanf_245) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_247) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_251) (___IO_FILE_171 * __restrict , const char * __restrict , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_252) (___IO_FILE_172 * __restrict , const char * __restrict , int * __restrict );// L459:L460 +extern int (___IO_vfprintf_254) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 +extern int (___IO_vfprintf_256) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 +extern int (___IO_vfprintf_260) ();// L461:L462 +extern ____ssize_t_49 (___IO_padn_261) (___IO_FILE_171 *, int , ____ssize_t_49 );// L463 +extern ____ssize_t_49 (___IO_padn_262) (___IO_FILE_172 *, int , ____ssize_t_49 );// L463 +extern __size_t_1 (___IO_sgetn_265) (___IO_FILE_171 *, void *, __size_t_1 );// L464 +extern __size_t_1 (___IO_sgetn_266) (___IO_FILE_172 *, void *, __size_t_1 );// L464 +extern ____off64_t_24 (___IO_seekoff_268) (___IO_FILE_171 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekoff_269) (___IO_FILE_172 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekpos_272) (___IO_FILE_171 *, ____off64_t_24 , int );// L467 +extern ____off64_t_24 (___IO_seekpos_273) (___IO_FILE_172 *, ____off64_t_24 , int );// L467 +extern void (___IO_free_backup_area_276) (___IO_FILE_171 *);// L469 +extern void (___IO_free_backup_area_277) (___IO_FILE_172 *);// L469 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern struct ___IO_FILE_95 * (__stdin_252);// L168 -extern struct ___IO_FILE_119 * (__stdin_253);// L168 -extern struct ___IO_FILE_95 * (__stdout_254);// L169 -extern struct ___IO_FILE_119 * (__stdout_255);// L169 -extern struct ___IO_FILE_95 * (__stderr_256);// L170 -extern struct ___IO_FILE_119 * (__stderr_257);// L170 -extern int (__remove_259) (const char * (____filename_258));// L178 -extern int (__rename_262) (const char * (____old_260), const char * (____new_261));// L180 -extern __FILE_58 * ((__tmpfile_263) (void ));// L195 -extern __FILE_58 * ((__tmpfile_269) (void ));// L198 -extern __FILE_58 * ((__tmpfile_267) (void ));// L198 -extern __FILE_58 * ((__tmpfile_265) (void ));// L195 -extern char * ((__tmpnam_272) (char * (____s_271)));// L209 -extern char * ((__tmpnam_273) (char * (____s_271)));// L209 -extern int (__fclose_276) (__FILE_58 * (____stream_274));// L237 -extern int (__fflush_280) (__FILE_58 * (____stream_278));// L242 -extern __FILE_58 * ((__fopen_283) (const char * __restrict ____filename_281, const char * __restrict ____modes_282));// L272:L273 -extern __FILE_58 * ((__fopen_285) (const char * __restrict ____filename_281, const char * __restrict ____modes_282));// L272:L273 -extern __FILE_58 * ((__fopen_293) (const char * __restrict ____filename_291, const char * __restrict ____modes_292));// L283:L285 -extern __FILE_58 * ((__fopen_295) (const char * __restrict ____filename_291, const char * __restrict ____modes_292));// L283:L285 -extern __FILE_58 * ((__freopen_301) (const char * __restrict ____filename_287, const char * __restrict ____modes_288, __FILE_58 * __restrict ____stream_289));// L278:L280 -extern __FILE_58 * ((__freopen_307) (const char * __restrict ____filename_297, const char * __restrict ____modes_298, __FILE_58 * __restrict ____stream_299));// L286:L289 -extern __FILE_58 * ((__freopen_305) (const char * __restrict ____filename_297, const char * __restrict ____modes_298, __FILE_58 * __restrict ____stream_299));// L286:L289 -extern __FILE_58 * ((__freopen_303) (const char * __restrict ____filename_287, const char * __restrict ____modes_288, __FILE_58 * __restrict ____stream_289));// L278:L280 -extern void (__setbuf_312) (__FILE_58 * __restrict ____stream_309, char * __restrict ____buf_311);// L332 -extern int (__setvbuf_318) (__FILE_58 * __restrict ____stream_313, char * __restrict ____buf_315, int ____modes_316, __size_t_1 ____n_317);// L336:L337 -extern int (__fprintf_322) (__FILE_58 * __restrict ____stream_319, const char * __restrict ____format_321, ... );// L356:L357 -extern int (__printf_324) (const char * __restrict ____format_323, ... );// L362 -extern int (__sprintf_327) (char * __restrict ____s_325, const char * __restrict ____format_326, ... );// L364:L365 -extern int (__vfprintf_333) (__FILE_58 * __restrict ____s_328, const char * __restrict ____format_330, ____gnuc_va_list_82 ____arg_331);// L371:L372 -extern int (__vprintf_340) (const char * __restrict ____format_337, ____gnuc_va_list_82 ____arg_338);// L377 -extern int (__vsprintf_346) (char * __restrict ____s_342, const char * __restrict ____format_343, ____gnuc_va_list_82 ____arg_344);// L379:L380 -extern int (__snprintf_350) (char * __restrict ____s_347, __size_t_1 ____maxlen_348, const char * __restrict ____format_349, ... );// L386:L388 -extern int (__vsnprintf_356) (char * __restrict ____s_351, __size_t_1 ____maxlen_352, const char * __restrict ____format_353, ____gnuc_va_list_82 ____arg_354);// L390:L392 -extern int (__fscanf_360) (__FILE_58 * __restrict ____stream_357, const char * __restrict ____format_359, ... );// L425:L426 -extern int (__fscanf_362) (__FILE_58 * __restrict ____stream_357, const char * __restrict ____format_359, ... );// L425:L426 -extern int (__scanf_365) (const char * __restrict ____format_364, ... );// L431 -extern int (__scanf_366) (const char * __restrict ____format_364, ... );// L431 -extern int (__sscanf_369) (const char * __restrict ____s_367, const char * __restrict ____format_368, ... );// L433:L434 - - - - - -extern int (__vfscanf_392) (__FILE_58 * __restrict ____s_387, const char * __restrict ____format_389, ____gnuc_va_list_82 ____arg_390);// L471:L473 -extern int (__vfscanf_396) (__FILE_58 * __restrict ____s_387, const char * __restrict ____format_389, ____gnuc_va_list_82 ____arg_390);// L471:L473 -extern int (__vscanf_403) (const char * __restrict ____format_400, ____gnuc_va_list_82 ____arg_401);// L479:L480 -extern int (__vscanf_405) (const char * __restrict ____format_400, ____gnuc_va_list_82 ____arg_401);// L479:L480 -extern int (__vsscanf_411) (const char * __restrict ____s_407, const char * __restrict ____format_408, ____gnuc_va_list_82 ____arg_409);// L483:L485 - - - - - -extern int (__fgetc_444) (__FILE_58 * (____stream_442));// L531 -extern int (__getc_447) (__FILE_58 * (____stream_445));// L532 -extern int (__getchar_448) (void );// L538 -extern int (__fputc_452) (int ____c_449, __FILE_58 * (____stream_450));// L573 -extern int (__putc_456) (int ____c_453, __FILE_58 * (____stream_454));// L574 -extern int (__putchar_458) (int ____c_457);// L580 -extern char * ((__fgets_463) (char * __restrict ____s_459, int ____n_460, __FILE_58 * __restrict ____stream_461));// L622:L623 -extern char * ((__fgets_465) (char * __restrict ____s_459, int ____n_460, __FILE_58 * __restrict ____stream_461));// L622:L623 -extern int (__fputs_470) (const char * __restrict ____s_467, __FILE_58 * __restrict ____stream_468);// L689 -extern int (__puts_472) (const char * (____s_471));// L695 -extern int (__ungetc_476) (int ____c_473, __FILE_58 * (____stream_474));// L702 -extern int (__fseek_496) (__FILE_58 * (____stream_492), long int ____off_494, int ____whence_495);// L749 -extern long int (__ftell_499) (__FILE_58 * (____stream_497));// L754 -extern long int (__ftell_501) (__FILE_58 * (____stream_497));// L754 -extern void (__rewind_505) (__FILE_58 * (____stream_503));// L759 -extern int (__fgetpos_510) (__FILE_58 * __restrict ____stream_506, __fpos_t_248 * __restrict ____pos_508);// L798 -extern int (__fgetpos_522) (__FILE_58 * __restrict ____stream_518, __fpos_t_250 * __restrict ____pos_520);// L806:L807 -extern int (__fsetpos_530) (__FILE_58 * (____stream_514), const __fpos_t_248 * (____pos_516));// L803 -extern int (__fsetpos_534) (__FILE_58 * (____stream_526), const __fpos_t_250 * (____pos_528));// L808:L809 -extern void (__clearerr_540) (__FILE_58 * (____stream_538));// L826 -extern int (__feof_543) (__FILE_58 * (____stream_541));// L828 -extern int (__feof_545) (__FILE_58 * (____stream_541));// L828 -extern int (__ferror_549) (__FILE_58 * (____stream_547));// L830 -extern int (__ferror_551) (__FILE_58 * (____stream_547));// L830 -extern void (__perror_554) (const char * (____s_553));// L846 +// typedef moved to top of scope +extern struct ___IO_FILE_99 * (__stdin_291);// L168 +extern struct ___IO_FILE_124 * (__stdin_292);// L168 +extern struct ___IO_FILE_99 * (__stdout_294);// L169 +extern struct ___IO_FILE_124 * (__stdout_295);// L169 +extern struct ___IO_FILE_99 * (__stderr_297);// L170 +extern struct ___IO_FILE_124 * (__stderr_298);// L170 +extern int (__remove_301) (const char * (____filename_300));// L178 +extern int (__rename_304) (const char * (____old_302), const char * (____new_303));// L180 +extern int (__renameat_309) (int ____oldfd_305, const char * (____old_306), int ____newfd_307, const char * (____new_308));// L185:L186 +extern __FILE_59 * ((__tmpfile_310) (void ));// L195 +extern __FILE_59 * ((__tmpfile_316) (void ));// L198 +extern __FILE_59 * ((__tmpfile_314) (void ));// L195 +extern __FILE_59 * ((__tmpfile_312) (void ));// L198 +extern char * ((__tmpnam_319) (char * (____s_318)));// L209 +extern char * ((__tmpnam_320) (char * (____s_318)));// L209 +extern char * ((__tmpnam_r_322) (char * (____s_321)));// L215 +extern char * ((__tmpnam_r_323) (char * (____s_321)));// L215 +extern char * ((__tempnam_326) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 +extern char * ((__tempnam_327) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 +extern int (__fclose_330) (__FILE_59 * (____stream_328));// L237 +extern int (__fclose_332) (__FILE_59 * (____stream_328));// L237 +extern int (__fflush_336) (__FILE_59 * (____stream_334));// L242 +extern int (__fflush_unlocked_340) (__FILE_59 * (____stream_338));// L252 +extern __FILE_59 * ((__fopen_344) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 +extern __FILE_59 * ((__fopen_346) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 +extern __FILE_59 * ((__fopen_354) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 +extern __FILE_59 * ((__fopen_356) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 +extern __FILE_59 * ((__freopen_362) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 +extern __FILE_59 * ((__freopen_368) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 +extern __FILE_59 * ((__freopen_366) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 +extern __FILE_59 * ((__freopen_364) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 +extern __FILE_59 * ((__fdopen_372) (int ____fd_370, const char * (____modes_371)));// L306 +extern __FILE_59 * ((__fdopen_374) (int ____fd_370, const char * (____modes_371)));// L306 +extern __FILE_59 * ((__fmemopen_379) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 +extern __FILE_59 * ((__fmemopen_381) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 +extern __FILE_59 * ((__open_memstream_385) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 +extern __FILE_59 * ((__open_memstream_387) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 +extern void (__setbuf_392) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 +extern void (__setbuf_394) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 +extern int (__setvbuf_401) (__FILE_59 * __restrict ____stream_396, char * __restrict ____buf_398, int ____modes_399, __size_t_1 ____n_400);// L336:L337 +extern void (__setbuffer_407) (__FILE_59 * __restrict ____stream_403, char * __restrict ____buf_405, __size_t_1 ____size_406);// L343:L344 +extern void (__setlinebuf_411) (__FILE_59 * (____stream_409));// L347 +extern int (__fprintf_416) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 +extern int (__fprintf_418) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 +extern int (__printf_421) (const char * __restrict ____format_420, ... );// L362 +extern int (__sprintf_424) (char * __restrict ____s_422, const char * __restrict ____format_423, ... );// L364:L365 +extern int (__vfprintf_430) (__FILE_59 * __restrict ____s_425, const char * __restrict ____format_427, ____gnuc_va_list_86 ____arg_428);// L371:L372 +extern int (__vprintf_437) (const char * __restrict ____format_434, ____gnuc_va_list_86 ____arg_435);// L377 +extern int (__vsprintf_443) (char * __restrict ____s_439, const char * __restrict ____format_440, ____gnuc_va_list_86 ____arg_441);// L379:L380 +extern int (__snprintf_448) (char * __restrict ____s_445, __size_t_1 ____maxlen_446, const char * __restrict ____format_447, ... );// L386:L388 +extern int (__vsnprintf_454) (char * __restrict ____s_449, __size_t_1 ____maxlen_450, const char * __restrict ____format_451, ____gnuc_va_list_86 ____arg_452);// L390:L392 +extern int (__vdprintf_460) (int ____fd_456, const char * __restrict ____fmt_457, ____gnuc_va_list_86 ____arg_458);// L412:L414 +extern int (__dprintf_464) (int ____fd_462, const char * __restrict ____fmt_463, ... );// L415:L416 +extern int (__fscanf_468) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_470) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_472) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_474) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__scanf_477) (const char * __restrict ____format_476, ... );// L431 +extern int (__scanf_478) (const char * __restrict ____format_476, ... );// L431 +extern int (__sscanf_481) (const char * __restrict ____s_479, const char * __restrict ____format_480, ... );// L433:L434 + + + + + + + +extern int (__vfscanf_509) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 +extern int (__vfscanf_513) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 +extern int (__vscanf_520) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 +extern int (__vscanf_522) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 +extern int (__vsscanf_528) (const char * __restrict ____s_524, const char * __restrict ____format_525, ____gnuc_va_list_86 ____arg_526);// L483:L485 + + + + + +extern int (__fgetc_563) (__FILE_59 * (____stream_561));// L531 +extern int (__getc_567) (__FILE_59 * (____stream_565));// L532 +extern int (__getchar_569) (void );// L538 +extern int (__getc_unlocked_572) (__FILE_59 * (____stream_570));// L550 +extern int (__getchar_unlocked_574) (void );// L551 +extern int (__fgetc_unlocked_577) (__FILE_59 * (____stream_575));// L561 +extern int (__fputc_582) (int ____c_579, __FILE_59 * (____stream_580));// L573 +extern int (__fputc_584) (int ____c_579, __FILE_59 * (____stream_580));// L573 +extern int (__putc_589) (int ____c_586, __FILE_59 * (____stream_587));// L574 +extern int (__putchar_592) (int ____c_591);// L580 +extern int (__fputc_unlocked_596) (int ____c_593, __FILE_59 * (____stream_594));// L594 +extern int (__putc_unlocked_601) (int ____c_598, __FILE_59 * (____stream_599));// L602 +extern int (__putchar_unlocked_604) (int ____c_603);// L603 +extern int (__getw_607) (__FILE_59 * (____stream_605));// L610 +extern int (__putw_612) (int ____w_609, __FILE_59 * (____stream_610));// L613 +extern char * ((__fgets_618) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_620) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_622) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_624) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern ____ssize_t_49 (____getdelim_631) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 +extern ____ssize_t_49 (____getdelim_635) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 +extern ____ssize_t_49 (__getdelim_644) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 +extern ____ssize_t_49 (__getdelim_648) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 +extern ____ssize_t_49 (__getline_656) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 +extern ____ssize_t_49 (__getline_660) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 +extern int (__fputs_667) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 +extern int (__fputs_669) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 +extern int (__puts_672) (const char * (____s_671));// L695 +extern int (__ungetc_676) (int ____c_673, __FILE_59 * (____stream_674));// L702 +extern int (__fseek_714) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 +extern int (__fseek_716) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 +extern long int (__ftell_720) (__FILE_59 * (____stream_718));// L754 +extern long int (__ftell_722) (__FILE_59 * (____stream_718));// L754 +extern void (__rewind_726) (__FILE_59 * (____stream_724));// L759 +extern int (__fseeko_733) (__FILE_59 * (____stream_728), ____off_t_23 ____off_730, int ____whence_732);// L773 +extern int (__fseeko_744) (__FILE_59 * (____stream_739), ____off64_t_24 ____off_741, int ____whence_743);// L781:L783 +extern ____off_t_23 (__ftello_758) (__FILE_59 * (____stream_737));// L778 +extern ____off_t_23 (__ftello_750) (__FILE_59 * (____stream_737));// L778 +extern int (__fgetpos_766) (__FILE_59 * __restrict ____stream_762, __fpos_t_287 * __restrict ____pos_764);// L798 +extern ____off64_t_24 (__ftello_754) (__FILE_59 * (____stream_748));// L784 +extern int (__fgetpos_778) (__FILE_59 * __restrict ____stream_774, __fpos_t_289 * __restrict ____pos_776);// L806:L807 +extern int (__fsetpos_786) (__FILE_59 * (____stream_770), const __fpos_t_287 * (____pos_772));// L803 +extern int (__fsetpos_790) (__FILE_59 * (____stream_782), const __fpos_t_289 * (____pos_784));// L808:L809 +extern void (__clearerr_796) (__FILE_59 * (____stream_794));// L826 +extern int (__feof_800) (__FILE_59 * (____stream_798));// L828 +extern int (__feof_802) (__FILE_59 * (____stream_798));// L828 +extern int (__ferror_806) (__FILE_59 * (____stream_804));// L830 +extern int (__ferror_808) (__FILE_59 * (____stream_804));// L830 +extern void (__clearerr_unlocked_812) (__FILE_59 * (____stream_810));// L835 +extern int (__feof_unlocked_816) (__FILE_59 * (____stream_814));// L836 +extern int (__feof_unlocked_818) (__FILE_59 * (____stream_814));// L836 +extern int (__ferror_unlocked_822) (__FILE_59 * (____stream_820));// L837 +extern int (__ferror_unlocked_824) (__FILE_59 * (____stream_820));// L837 +extern void (__perror_827) (const char * (____s_826));// L846 +extern void (__perror_828) (const char * (____s_826));// L846 +extern int __sys_nerr_829;// L26 + +extern int (__fileno_835) (__FILE_59 * (____stream_831));// L858 +extern int (__fileno_833) (__FILE_59 * (____stream_831));// L858 +extern int (__fileno_unlocked_841) (__FILE_59 * (____stream_837));// L863 +extern int (__fileno_unlocked_839) (__FILE_59 * (____stream_837));// L863 +extern __FILE_59 * ((__popen_845) (const char * (____command_843), const char * (____modes_844)));// L872 +extern __FILE_59 * ((__popen_847) (const char * (____command_843), const char * (____modes_844)));// L872 +extern int (__pclose_851) (__FILE_59 * (____stream_849));// L878 +extern char * ((__ctermid_854) (char * (____s_853)));// L884 +extern void (__flockfile_857) (__FILE_59 * (____stream_855));// L912 +extern int (__ftrylockfile_861) (__FILE_59 * (____stream_859));// L916 +extern int (__ftrylockfile_863) (__FILE_59 * (____stream_859));// L916 +extern void (__funlockfile_867) (__FILE_59 * (____stream_865));// L919 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____sprintf_chk_564) (char * __restrict ____s_560, int ____flag_561, __size_t_1 ____slen_562, const char * __restrict ____format_563, ... );// L23:L24 -extern int (____vsprintf_chk_571) (char * __restrict ____s_565, int ____flag_566, __size_t_1 ____slen_567, const char * __restrict ____format_568, ____gnuc_va_list_82 ____ap_569);// L25:L27 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____snprintf_chk_585) (char * __restrict ____s_580, __size_t_1 ____n_581, int ____flag_582, __size_t_1 ____slen_583, const char * __restrict ____format_584, ... );// L52:L54 -extern int (____vsnprintf_chk_593) (char * __restrict ____s_586, __size_t_1 ____n_587, int ____flag_588, __size_t_1 ____slen_589, const char * __restrict ____format_590, ____gnuc_va_list_82 ____ap_591);// L55:L57 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____fprintf_chk_608) (__FILE_58 * __restrict ____stream_604, int ____flag_606, const char * __restrict ____format_607, ... );// L85:L86 -extern int (____printf_chk_612) (int ____flag_610, const char * __restrict ____format_611, ... );// L87 -extern int (____vfprintf_chk_619) (__FILE_58 * __restrict ____stream_613, int ____flag_615, const char * __restrict ____format_616, ____gnuc_va_list_82 ____ap_617);// L88:L89 -extern int (____vprintf_chk_627) (int ____flag_623, const char * __restrict ____format_624, ____gnuc_va_list_82 ____ap_625);// L90:L91 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern char * ((____fgets_chk_651) (char * __restrict ____s_646, __size_t_1 ____size_647, int ____n_648, __FILE_58 * __restrict ____stream_649));// L241:L242 -extern char * ((____fgets_chk_653) (char * __restrict ____s_646, __size_t_1 ____size_647, int ____n_648, __FILE_58 * __restrict ____stream_649));// L241:L242 -extern char * ((____fgets_alias_659) (char * __restrict ____s_655, int ____n_656, __FILE_58 * __restrict ____stream_657));// L243:L245 -extern char * ((____fgets_chk_warn_666) (char * __restrict ____s_661, __size_t_1 ____size_662, int ____n_663, __FILE_58 * __restrict ____stream_664));// L246:L250 +extern int (____sprintf_chk_899) (char * __restrict ____s_895, int ____flag_896, __size_t_1 ____slen_897, const char * __restrict ____format_898, ... );// L23:L24 +extern int (____vsprintf_chk_906) (char * __restrict ____s_900, int ____flag_901, __size_t_1 ____slen_902, const char * __restrict ____format_903, ____gnuc_va_list_86 ____ap_904);// L25:L27 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern __size_t_1 (____ctype_get_mb_cur_max_721) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_722) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_723) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_724) (void );// L139 -extern double (__atof_726) (const char * (____nptr_725));// L144:L145 -extern double (__atof_727) (const char * (____nptr_725));// L144:L145 -extern int (__atoi_729) (const char * (____nptr_728));// L147:L148 -extern int (__atoi_730) (const char * (____nptr_728));// L147:L148 -extern long int (__atol_732) (const char * (____nptr_731));// L150:L151 -extern long int (__atol_733) (const char * (____nptr_731));// L150:L151 -extern long long int (__atoll_735) (const char * (____nptr_734));// L157:L158 -extern long long int (__atoll_736) (const char * (____nptr_734));// L157:L158 -extern double (__strtod_739) (const char * __restrict ____nptr_737, char * (* __restrict ____endptr_738));// L164:L166 -extern float (__strtof_742) (const char * __restrict ____nptr_740, char * (* __restrict ____endptr_741));// L172:L173 -extern long double (__strtold_745) (const char * __restrict ____nptr_743, char * (* __restrict ____endptr_744));// L175:L177 -extern long int (__strtol_749) (const char * __restrict ____nptr_746, char * (* __restrict ____endptr_747), int ____base_748);// L183:L185 -extern unsigned long int (__strtoul_753) (const char * __restrict ____nptr_750, char * (* __restrict ____endptr_751), int ____base_752);// L187:L189 -extern long long int (__strtoll_757) (const char * __restrict ____nptr_754, char * (* __restrict ____endptr_755), int ____base_756);// L209:L211 -extern unsigned long long int (__strtoull_761) (const char * __restrict ____nptr_758, char * (* __restrict ____endptr_759), int ____base_760);// L214:L216 +extern int (____snprintf_chk_920) (char * __restrict ____s_915, __size_t_1 ____n_916, int ____flag_917, __size_t_1 ____slen_918, const char * __restrict ____format_919, ... );// L52:L54 +extern int (____vsnprintf_chk_928) (char * __restrict ____s_921, __size_t_1 ____n_922, int ____flag_923, __size_t_1 ____slen_924, const char * __restrict ____format_925, ____gnuc_va_list_86 ____ap_926);// L55:L57 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -__extension__/* no function due to type errors in the function prototype */ -extern int (__rand_765) (void );// L374 -extern int (__rand_766) (void );// L374 -extern void (__srand_768) (unsigned int ____seed_767);// L376 -extern void * ((__malloc_770) (__size_t_1 ____size_769));// L466 -extern void * ((__malloc_771) (__size_t_1 ____size_769));// L466 -extern void * ((__calloc_774) (__size_t_1 ____nmemb_772, __size_t_1 ____size_773));// L468:L469 -extern void * ((__calloc_775) (__size_t_1 ____nmemb_772, __size_t_1 ____size_773));// L468:L469 -extern void * ((__realloc_778) (void * (____ptr_776), __size_t_1 ____size_777));// L480:L481 -extern void (__free_780) (void * (____ptr_779));// L483 -extern void * ((__aligned_alloc_783) (__size_t_1 ____alignment_781, __size_t_1 ____size_782));// L509:L510 -extern void * ((__aligned_alloc_784) (__size_t_1 ____alignment_781, __size_t_1 ____size_782));// L509:L510 -extern void (__abort_785) (void );// L515 -extern int (__atexit_787) (void (* (____func_786)) (void ));// L519 -extern int (__at_quick_exit_789) (void (* (____func_788)) (void ));// L527 -extern void (__exit_791) (int ____status_790);// L543 -extern void (__quick_exit_793) (int ____status_792);// L549 -extern void (___Exit_795) (int ____status_794);// L557 -extern char * ((__getenv_797) (const char * (____name_796)));// L564 -extern char * ((__getenv_798) (const char * (____name_796)));// L564 -extern int (__system_800) (const char * (____command_799));// L716 -extern int (__system_801) (const char * (____command_799));// L716 -// typedef moved to top of scope -extern void * ((__bsearch_810) (const void * (____key_803), const void * (____base_804), __size_t_1 ____nmemb_805, __size_t_1 ____size_806, ____compar_fn_t_802 ____compar_807));// L754:L756 -extern void * ((__bsearch_812) (const void * (____key_803), const void * (____base_804), __size_t_1 ____nmemb_805, __size_t_1 ____size_806, ____compar_fn_t_802 ____compar_807));// L754:L756 +extern int (____fprintf_chk_943) (__FILE_59 * __restrict ____stream_939, int ____flag_941, const char * __restrict ____format_942, ... );// L85:L86 +extern int (____printf_chk_947) (int ____flag_945, const char * __restrict ____format_946, ... );// L87 +extern int (____vfprintf_chk_954) (__FILE_59 * __restrict ____stream_948, int ____flag_950, const char * __restrict ____format_951, ____gnuc_va_list_86 ____ap_952);// L88:L89 +extern int (____vprintf_chk_962) (int ____flag_958, const char * __restrict ____format_959, ____gnuc_va_list_86 ____ap_960);// L90:L91 /* no function due to type errors in the function prototype */ -extern void (__qsort_831) (void * (____base_826), __size_t_1 ____nmemb_827, __size_t_1 ____size_828, ____compar_fn_t_802 ____compar_829);// L764:L765 -extern void (__qsort_833) (void * (____base_826), __size_t_1 ____nmemb_827, __size_t_1 ____size_828, ____compar_fn_t_802 ____compar_829);// L764:L765 -extern int (__abs_836) (int ____x_835);// L774 -extern int (__abs_837) (int ____x_835);// L774 -extern long int (__labs_839) (long int ____x_838);// L775 -extern long int (__labs_840) (long int ____x_838);// L775 -extern long long int (__llabs_842) (long long int ____x_841);// L779:L780 -extern long long int (__llabs_843) (long long int ____x_841);// L779:L780 -extern __div_t_710 (__div_846) (int ____numer_844, int ____denom_845);// L788:L789 -extern __div_t_710 (__div_847) (int ____numer_844, int ____denom_845);// L788:L789 -extern __ldiv_t_715 (__ldiv_850) (long int ____numer_848, long int ____denom_849);// L790:L791 -extern __ldiv_t_715 (__ldiv_852) (long int ____numer_848, long int ____denom_849);// L790:L791 -extern __lldiv_t_720 (__lldiv_856) (long long int ____numer_854, long long int ____denom_855);// L796:L798 -extern __lldiv_t_720 (__lldiv_858) (long long int ____numer_854, long long int ____denom_855);// L796:L798 -extern int (__mblen_862) (const char * (____s_860), __size_t_1 ____n_861);// L862 -extern int (__mbtowc_867) (__wchar_t_704 * __restrict ____pwc_863, const char * __restrict ____s_865, __size_t_1 ____n_866);// L865:L866 -extern int (__mbtowc_868) (__wchar_t_705 * __restrict ____pwc_864, const char * __restrict ____s_865, __size_t_1 ____n_866);// L865:L866 -extern int (__wctomb_872) (char * (____s_869), __wchar_t_704 ____wchar_870);// L869 -extern int (__wctomb_873) (char * (____s_869), __wchar_t_705 ____wchar_871);// L869 -extern __size_t_1 (__mbstowcs_878) (__wchar_t_704 * __restrict ____pwcs_874, const char * __restrict ____s_876, __size_t_1 ____n_877);// L873:L874 -extern __size_t_1 (__mbstowcs_879) (__wchar_t_705 * __restrict ____pwcs_875, const char * __restrict ____s_876, __size_t_1 ____n_877);// L873:L874 -extern __size_t_1 (__wcstombs_884) (char * __restrict ____s_880, const __wchar_t_704 * __restrict ____pwcs_881, __size_t_1 ____n_883);// L876:L878 -extern __size_t_1 (__wcstombs_885) (char * __restrict ____s_880, const __wchar_t_705 * __restrict ____pwcs_882, __size_t_1 ____n_883);// L876:L878 /* no function due to type errors in the function prototype */ -extern char * ((____realpath_chk_890) (const char * __restrict ____name_887, char * __restrict ____resolved_888, __size_t_1 ____resolvedlen_889));// L23:L25 -extern char * ((____realpath_alias_893) (const char * __restrict ____name_891, char * __restrict ____resolved_892));// L26:L28 -extern char * ((____realpath_chk_warn_897) (const char * __restrict ____name_894, char * __restrict ____resolved_895, __size_t_1 ____resolvedlen_896));// L29:L34 /* no function due to type errors in the function prototype */ -extern int (____ptsname_r_chk_905) (int ____fd_901, char * (____buf_902), __size_t_1 ____buflen_903, __size_t_1 ____nreal_904);// L52:L53 -extern int (____ptsname_r_alias_909) (int ____fd_906, char * (____buf_907), __size_t_1 ____buflen_908);// L54:L56 -extern int (____ptsname_r_chk_warn_914) (int ____fd_910, char * (____buf_911), __size_t_1 ____buflen_912, __size_t_1 ____nreal_913);// L57:L61 /* no function due to type errors in the function prototype */ -extern int (____wctomb_chk_922) (char * (____s_919), __wchar_t_705 ____wchar_920, __size_t_1 ____buflen_921);// L77:L78 -extern int (____wctomb_alias_925) (char * (____s_923), __wchar_t_705 ____wchar_924);// L79:L80 +extern int (____dprintf_chk_984) (int ____fd_981, int ____flag_982, const char * __restrict ____fmt_983, ... );// L131:L132 +extern int (____vdprintf_chk_990) (int ____fd_985, int ____flag_986, const char * __restrict ____fmt_987, ____gnuc_va_list_86 ____arg_988);// L133:L135 /* no function due to type errors in the function prototype */ -extern __size_t_1 (____mbstowcs_chk_932) (__wchar_t_705 * __restrict ____dst_928, const char * __restrict ____src_929, __size_t_1 ____len_930, __size_t_1 ____dstlen_931);// L98:L100 -extern __size_t_1 (____mbstowcs_alias_936) (__wchar_t_705 * __restrict ____dst_933, const char * __restrict ____src_934, __size_t_1 ____len_935);// L101:L104 -extern __size_t_1 (____mbstowcs_chk_warn_941) (__wchar_t_705 * __restrict ____dst_937, const char * __restrict ____src_938, __size_t_1 ____len_939, __size_t_1 ____dstlen_940);// L105:L110 /* no function due to type errors in the function prototype */ -extern __size_t_1 (____wcstombs_chk_949) (char * __restrict ____dst_945, const __wchar_t_705 * __restrict ____src_946, __size_t_1 ____len_947, __size_t_1 ____dstlen_948);// L130:L132 -extern __size_t_1 (____wcstombs_alias_953) (char * __restrict ____dst_950, const __wchar_t_705 * __restrict ____src_951, __size_t_1 ____len_952);// L133:L136 -extern __size_t_1 (____wcstombs_chk_warn_958) (char * __restrict ____dst_954, const __wchar_t_705 * __restrict ____src_955, __size_t_1 ____len_956, __size_t_1 ____dstlen_957);// L137:L141 +extern char * ((____fgets_chk_1004) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_chk_1006) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_chk_1008) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_alias_1014) (char * __restrict ____s_1010, int ____n_1011, __FILE_59 * __restrict ____stream_1012));// L243:L245 +extern char * ((____fgets_chk_warn_1021) (char * __restrict ____s_1016, __size_t_1 ____size_1017, int ____n_1018, __FILE_59 * __restrict ____stream_1019));// L246:L250 /* no function due to type errors in the function prototype */ -struct __dnode_963 ;// L4 -void (__dfree_969) (struct __dnode_963 * (* (__arr_966))) { - -if (__static_condition_default_970) { - -{ -{ - - - -struct __dnode_963 * (__cur_967);// L12 - -struct __dnode_963 * (__next_968);// L12 +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +static __inline unsigned int (____bswap_32_1158) (unsigned int ____bsx_1157) { -if ( __arr_966 == ( ( void * ) 0 ) )// L14 -{ -return ;// L15 -} - __cur_967 = __arr_966 [ 0 ] ; // L17 -while ( __cur_967 != ( ( void * ) 0 ) )// L18 -{ +if (__static_condition_default_1159) { { { - __next_968 = __cur_967 -> __next_965 ; // L19 -free ( __cur_967 ) ; // L20 - __cur_967 = __next_968 ; // L21 -} -} -} +__static_type_error("invalid type found in return expression"); } } } } -void (__showdirs_973) (struct __dnode_963 * (* (__arr_971))) { - -{ -if (__static_condition_default_975) { - -{ -{ - +static __inline ____uint64_t_13 (____bswap_64_1162) (____uint64_t_13 ____bsx_1160) { - -{ int __i_972= 0;// L28 - for ( ; __i_972 < 5 ; ++ __i_972 ) // L28 -{ +if (__static_condition_default_1164) { { { - __printf_324 ("\n%d", __arr_971 [ __i_972 ] -> __val_964) ; // L29 -} -} -} -} +__static_type_error("invalid type found in return expression"); } } } - -}} -void (__showdirs_974) (struct __dnode_963 * (* (__arr_971))) { - -{ -if (__static_condition_default_976) { - -{ -{ - - - -{ int __i_972= 0;// L28 - for ( ; __i_972 < 5 ; ++ __i_972 ) // L28 -{ - -{ -{ - - - - __printf_324 ("\n%d", __arr_971 [ __i_972 ] -> __val_964) ; // L29 -} -} -} -} - __dfree_969 ( __arr_971 ) ; // L33 -} -} - - } +static __inline ____uint64_t_1112 (____bswap_64_1163) (____uint64_t_1112 ____bsx_1161) { -}} -int (__main_987) (int __argc_977, char * (* (__argv_978))) { - -{ -{ - - - -struct __dnode_963 * (__curr_979);// L60 - -struct __dnode_963 * (__head_980);// L60 - -const int __size_981= 5;// L61 - -struct __dnode_963 * (__arr_982[ __size_981 ]);// L62 - -{ int __i_983= 0;// L64 - for ( ; __i_983 < __size_981 ; __i_983 ++ ) // L64 -{ - -{ -{ - -struct { typeof( int ) __tmp_984; typeof( struct __forward_tag_reference_962 *) __tmp_985; }__sizeofStandin_986; - - -if (__static_condition_default_381) { - __curr_979 = ( struct __dnode_963 * ) malloc (sizeof(typeof(__sizeofStandin_986))) ; // L65 -} -if (__static_condition_default_988) { - __curr_979 = ( struct __dnode_963 * ) malloc (sizeof(typeof(__sizeofStandin_986))) ; // L65 -} -if (__static_condition_default_989) { - __curr_979 -> __val_964 = rand( ) % 10 ; // L66 -} -if (__static_condition_default_990) { - __curr_979 -> __val_964 = rand( ) % 10 ; // L66 -} - __curr_979 -> __next_965 = __head_980 ; // L67 - __head_980 = __curr_979 ; // L68 - __arr_982 [ ( __size_981 - 1 ) - __i_983 ] = __curr_979 ; // L69 -} -} -} -} -if (__static_condition_default_989) { -if ( rand( ) % 2 )// L72 -{ +if (__static_condition_default_1165) { { { -if (__static_condition_default_991) { - __showdirs_973 ( __arr_982 ) ; // L76 -} -if (__static_condition_default_992) { - __showdirs_974 ( __arr_982 ) ; // L76 -} -} +__static_type_error("invalid type found in return expression"); } } -} -if (__static_condition_default_990) { -if ( rand( ) % 2 )// L72 -{ - -{ -{ - -if (__static_condition_default_993) { - __showdirs_973 ( __arr_982 ) ; // L76 -} -if (__static_condition_default_994) { - __showdirs_974 ( __arr_982 ) ; // L76 } } -} -} -} -return 0 ;// L78 -} -} - - +union __wait_1177 ;// L66 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern __size_t_1 (____ctype_get_mb_cur_max_1201) (void );// L139 +extern __size_t_1093 (____ctype_get_mb_cur_max_1202) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_1203) (void );// L139 +extern __size_t_1093 (____ctype_get_mb_cur_max_1204) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_1205) (void );// L139 +extern __size_t_1093 (____ctype_get_mb_cur_max_1206) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_1207) (void );// L139 +extern __size_t_1093 (____ctype_get_mb_cur_max_1208) (void );// L139 +extern double (__atof_1210) (const char * (____nptr_1209));// L144:L145 +extern double (__atof_1211) (const char * (____nptr_1209));// L144:L145 +extern int (__atoi_1213) (const char * (____nptr_1212));// L147:L148 +extern int (__atoi_1214) (const char * (____nptr_1212));// L147:L148 +extern long int (__atol_1216) (const char * (____nptr_1215));// L150:L151 +extern long int (__atol_1217) (const char * (____nptr_1215));// L150:L151 +extern long long int (__atoll_1219) (const char * (____nptr_1218));// L157:L158 +extern long long int (__atoll_1220) (const char * (____nptr_1218));// L157:L158 +extern double (__strtod_1223) (const char * __restrict ____nptr_1221, char * (* __restrict ____endptr_1222));// L164:L166 +extern float (__strtof_1226) (const char * __restrict ____nptr_1224, char * (* __restrict ____endptr_1225));// L172:L173 +extern long double (__strtold_1229) (const char * __restrict ____nptr_1227, char * (* __restrict ____endptr_1228));// L175:L177 +extern long int (__strtol_1233) (const char * __restrict ____nptr_1230, char * (* __restrict ____endptr_1231), int ____base_1232);// L183:L185 +extern unsigned long int (__strtoul_1237) (const char * __restrict ____nptr_1234, char * (* __restrict ____endptr_1235), int ____base_1236);// L187:L189 +extern long long int (__strtoq_1241) (const char * __restrict ____nptr_1238, char * (* __restrict ____endptr_1239), int ____base_1240);// L195:L197 +extern unsigned long long int (__strtouq_1245) (const char * __restrict ____nptr_1242, char * (* __restrict ____endptr_1243), int ____base_1244);// L200:L202 +extern long long int (__strtoll_1249) (const char * __restrict ____nptr_1246, char * (* __restrict ____endptr_1247), int ____base_1248);// L209:L211 +extern long long int (__strtoll_1250) (const char * __restrict ____nptr_1246, char * (* __restrict ____endptr_1247), int ____base_1248);// L209:L211 +extern unsigned long long int (__strtoull_1254) (const char * __restrict ____nptr_1251, char * (* __restrict ____endptr_1252), int ____base_1253);// L214:L216 +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +__extension__/* no function due to type errors in the function prototype */ +extern char * ((__l64a_1259) (long int ____n_1258));// L305 +extern char * ((__l64a_1260) (long int ____n_1258));// L305 +extern long int (__a64l_1262) (const char * (____s_1261));// L308:L309 +extern long int (__a64l_1263) (const char * (____s_1261));// L308:L309 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +static __inline unsigned int (____bswap_32_1452) (unsigned int ____bsx_1451) { + +if (__static_condition_default_1453) { + +{ +{ + + + +__static_type_error("invalid type found in return expression"); +} +} + + +} +} +static __inline ____uint64_t_13 (____bswap_64_1456) (____uint64_t_13 ____bsx_1454) { + +if (__static_condition_default_1458) { + +{ +{ + + + +__static_type_error("invalid type found in return expression"); +} +} + + +} +} +static __inline ____uint64_t_1275 (____bswap_64_1457) (____uint64_t_1275 ____bsx_1455) { + +if (__static_condition_default_1459) { + +{ +{ + + + +__static_type_error("invalid type found in return expression"); +} +} + + +} +} +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +struct __timespec_1466 ;// L120 + +struct __timeval_1476 ;// L30 + +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern int (__select_1513) (int ____nfds_1502, __fd_set_1499 * __restrict ____readfds_1503, __fd_set_1499 * __restrict ____writefds_1505, __fd_set_1499 * __restrict ____exceptfds_1507, struct __timeval_1476 * __restrict ____timeout_1510);// L106:L109 +extern int (__select_1514) (int ____nfds_1502, __fd_set_1499 * __restrict ____readfds_1503, __fd_set_1499 * __restrict ____writefds_1505, __fd_set_1499 * __restrict ____exceptfds_1507, struct __forward_tag_reference_1509 * __restrict ____timeout_1512);// L106:L109 +extern int (__pselect_1529) (int ____nfds_1517, __fd_set_1499 * __restrict ____readfds_1518, __fd_set_1499 * __restrict ____writefds_1520, __fd_set_1499 * __restrict ____exceptfds_1522, const struct __timespec_1466 * __restrict ____timeout_1525, const ____sigset_t_1464 * __restrict ____sigmask_1528);// L118:L122 +extern int (__pselect_1530) (int ____nfds_1517, __fd_set_1499 * __restrict ____readfds_1518, __fd_set_1499 * __restrict ____writefds_1520, __fd_set_1499 * __restrict ____exceptfds_1522, const struct __forward_tag_reference_1524 * __restrict ____timeout_1527, const ____sigset_t_1464 * __restrict ____sigmask_1528);// L118:L122 +extern long int (____fdelt_chk_1534) (long int ____d_1533);// L24 +extern long int (____fdelt_warn_1536) (long int ____d_1535);// L25:L26 +extern unsigned int (__gnu_dev_major_1538) (unsigned long long int ____dev_1537);// L27:L28 +extern unsigned int (__gnu_dev_major_1539) (unsigned long long int ____dev_1537);// L27:L28 +extern unsigned int (__gnu_dev_minor_1541) (unsigned long long int ____dev_1540);// L30:L31 +extern unsigned long long int (__gnu_dev_makedev_1544) (unsigned int ____major_1542, unsigned int ____minor_1543);// L33:L35 +__extension__/* no function due to type errors in the function prototype */ +__extension__/* no function due to type errors in the function prototype */ +__extension__/* no function due to type errors in the function prototype */ +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +union __pthread_attr_t_1578 ;// L63 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern int (__rand_1609) (void );// L374 +extern void (__srand_1611) (unsigned int ____seed_1610);// L376 +extern int (__rand_r_1613) (unsigned int * (____seed_1612));// L381 +extern double (__drand48_1614) (void );// L389 +extern double (__erand48_1616) (unsigned short int ____xsubi_1615[3]);// L390 +extern long int (__lrand48_1617) (void );// L393 +extern long int (__nrand48_1619) (unsigned short int ____xsubi_1618[3]);// L394:L395 +extern long int (__mrand48_1620) (void );// L398 +extern long int (__jrand48_1622) (unsigned short int ____xsubi_1621[3]);// L399:L400 +extern void (__srand48_1624) (long int ____seedval_1623);// L403 +extern unsigned short int * ((__seed48_1626) (unsigned short int ____seed16v_1625[3]));// L404:L405 +extern void (__lcong48_1628) (unsigned short int ____param_1627[7]);// L406 +extern void * ((__malloc_1631) (__size_t_1 ____size_1629));// L466 +extern void * ((__malloc_1632) (__size_t_1093 ____size_1630));// L466 +extern void * ((__malloc_1633) (__size_t_1 ____size_1629));// L466 +extern void * ((__malloc_1634) (__size_t_1093 ____size_1630));// L466 +extern void * ((__calloc_1639) (__size_t_1 ____nmemb_1635, __size_t_1 ____size_1637));// L468:L469 +extern void * ((__calloc_1640) (__size_t_1093 ____nmemb_1636, __size_t_1093 ____size_1638));// L468:L469 +extern void * ((__calloc_1641) (__size_t_1 ____nmemb_1635, __size_t_1 ____size_1637));// L468:L469 +extern void * ((__calloc_1642) (__size_t_1093 ____nmemb_1636, __size_t_1093 ____size_1638));// L468:L469 +extern void * ((__realloc_1646) (void * (____ptr_1643), __size_t_1 ____size_1644));// L480:L481 +extern void * ((__realloc_1647) (void * (____ptr_1643), __size_t_1093 ____size_1645));// L480:L481 +extern void (__free_1649) (void * (____ptr_1648));// L483 +extern void (__cfree_1651) (void * (____ptr_1650));// L488 +extern void * ((__alloca_1654) (__size_t_1 ____size_1652));// L32 +extern void * ((__alloca_1655) (__size_t_1093 ____size_1653));// L32 +extern void * ((__valloc_1658) (__size_t_1 ____size_1656));// L498 +extern void * ((__valloc_1659) (__size_t_1093 ____size_1657));// L498 +extern void * ((__valloc_1660) (__size_t_1 ____size_1656));// L498 +extern void * ((__valloc_1661) (__size_t_1093 ____size_1657));// L498 +extern int (__posix_memalign_1667) (void * (* (____memptr_1662)), __size_t_1 ____alignment_1663, __size_t_1 ____size_1665);// L503:L504 +extern int (__posix_memalign_1668) (void * (* (____memptr_1662)), __size_t_1093 ____alignment_1664, __size_t_1093 ____size_1666);// L503:L504 +extern int (__posix_memalign_1669) (void * (* (____memptr_1662)), __size_t_1 ____alignment_1663, __size_t_1 ____size_1665);// L503:L504 +extern int (__posix_memalign_1670) (void * (* (____memptr_1662)), __size_t_1093 ____alignment_1664, __size_t_1093 ____size_1666);// L503:L504 +extern void * ((__aligned_alloc_1675) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 +extern void * ((__aligned_alloc_1676) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 +extern void * ((__aligned_alloc_1677) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 +extern void * ((__aligned_alloc_1678) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 +extern void * ((__aligned_alloc_1679) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 +extern void * ((__aligned_alloc_1680) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 +extern void * ((__aligned_alloc_1681) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 +extern void * ((__aligned_alloc_1682) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 +extern void (__abort_1683) (void );// L515 +extern int (__atexit_1685) (void (* (____func_1684)) (void ));// L519 +extern int (__at_quick_exit_1687) (void (* (____func_1686)) (void ));// L527 +extern int (__on_exit_1692) (void (* (____func_1690)) (int ____status_1688, void * (____arg_1689)), void * (____arg_1691));// L535:L536 +extern void (__exit_1694) (int ____status_1693);// L543 +extern void (__exit_1695) (int ____status_1693);// L543 +extern void (__quick_exit_1697) (int ____status_1696);// L549 +extern void (___Exit_1699) (int ____status_1698);// L557 +extern char * ((__getenv_1701) (const char * (____name_1700)));// L564 +extern char * ((__getenv_1702) (const char * (____name_1700)));// L564 +extern int (__putenv_1704) (char * (____string_1703));// L578 +extern int (__setenv_1708) (const char * (____name_1705), const char * (____value_1706), int ____replace_1707);// L584:L585 +extern int (__unsetenv_1710) (const char * (____name_1709));// L588 +extern int (__clearenv_1711) (void );// L595 +extern char * ((__mktemp_1713) (char * (____template_1712)));// L606 +extern int (__mkstemp_1716) (char * (____template_1714));// L619 +extern int (__mkstemp_1718) (char * (____template_1714));// L619 +extern int (__mkstemp_1717) (char * (____template_1715));// L622:L623 +extern int (__mkstemp_1719) (char * (____template_1715));// L622:L623 +extern int (__mkstemps_1724) (char * (____template_1720), int ____suffixlen_1721);// L641 +extern int (__mkstemps_1725) (char * (____template_1722), int ____suffixlen_1723);// L644:L645 +extern int (__mkstemps_1726) (char * (____template_1720), int ____suffixlen_1721);// L641 +extern int (__mkstemps_1727) (char * (____template_1722), int ____suffixlen_1723);// L644:L645 +extern char * ((__mkdtemp_1729) (char * (____template_1728)));// L662 +extern char * ((__mkdtemp_1730) (char * (____template_1728)));// L662 +extern int (__system_1732) (const char * (____command_1731));// L716 +extern int (__system_1733) (const char * (____command_1731));// L716 +extern int (__system_1734) (const char * (____command_1731));// L716 +extern int (__system_1735) (const char * (____command_1731));// L716 +extern char * ((__realpath_1738) (const char * __restrict ____name_1736, char * __restrict ____resolved_1737));// L733:L734 +extern char * ((__realpath_1739) (const char * __restrict ____name_1736, char * __restrict ____resolved_1737));// L733:L734 +// typedef moved to top of scope +extern void * ((__bsearch_1751) (const void * (____key_1741), const void * (____base_1742), __size_t_1 ____nmemb_1743, __size_t_1 ____size_1745, ____compar_fn_t_1740 ____compar_1747));// L754:L756 +extern void * ((__bsearch_1752) (const void * (____key_1741), const void * (____base_1742), __size_t_1093 ____nmemb_1744, __size_t_1093 ____size_1746, ____compar_fn_t_1740 ____compar_1747));// L754:L756 +extern void * ((__bsearch_1755) (const void * (____key_1741), const void * (____base_1742), __size_t_1 ____nmemb_1743, __size_t_1 ____size_1745, ____compar_fn_t_1740 ____compar_1747));// L754:L756 +extern void * ((__bsearch_1756) (const void * (____key_1741), const void * (____base_1742), __size_t_1093 ____nmemb_1744, __size_t_1093 ____size_1746, ____compar_fn_t_1740 ____compar_1747));// L754:L756 +/* no function due to type errors in the function prototype */ +extern void (__qsort_1784) (void * (____base_1777), __size_t_1 ____nmemb_1778, __size_t_1 ____size_1780, ____compar_fn_t_1740 ____compar_1782);// L764:L765 +extern void (__qsort_1786) (void * (____base_1777), __size_t_1093 ____nmemb_1779, __size_t_1093 ____size_1781, ____compar_fn_t_1740 ____compar_1782);// L764:L765 +extern void (__qsort_1788) (void * (____base_1777), __size_t_1 ____nmemb_1778, __size_t_1 ____size_1780, ____compar_fn_t_1740 ____compar_1782);// L764:L765 +extern void (__qsort_1790) (void * (____base_1777), __size_t_1093 ____nmemb_1779, __size_t_1093 ____size_1781, ____compar_fn_t_1740 ____compar_1782);// L764:L765 +extern int (__abs_1793) (int ____x_1792);// L774 +extern int (__abs_1794) (int ____x_1792);// L774 +extern long int (__labs_1796) (long int ____x_1795);// L775 +extern long int (__labs_1797) (long int ____x_1795);// L775 +extern long long int (__llabs_1799) (long long int ____x_1798);// L779:L780 +extern long long int (__llabs_1800) (long long int ____x_1798);// L779:L780 +extern __div_t_1190 (__div_1803) (int ____numer_1801, int ____denom_1802);// L788:L789 +extern __div_t_1190 (__div_1804) (int ____numer_1801, int ____denom_1802);// L788:L789 +extern __ldiv_t_1195 (__ldiv_1807) (long int ____numer_1805, long int ____denom_1806);// L790:L791 +extern __ldiv_t_1195 (__ldiv_1809) (long int ____numer_1805, long int ____denom_1806);// L790:L791 +extern __lldiv_t_1200 (__lldiv_1813) (long long int ____numer_1811, long long int ____denom_1812);// L796:L798 +extern __lldiv_t_1200 (__lldiv_1815) (long long int ____numer_1811, long long int ____denom_1812);// L796:L798 +extern char * ((__ecvt_1821) (double ____value_1817, int ____ndigit_1818, int * __restrict ____decpt_1819, int * __restrict ____sign_1820));// L811:L812 +extern char * ((__ecvt_1822) (double ____value_1817, int ____ndigit_1818, int * __restrict ____decpt_1819, int * __restrict ____sign_1820));// L811:L812 +extern char * ((__fcvt_1827) (double ____value_1823, int ____ndigit_1824, int * __restrict ____decpt_1825, int * __restrict ____sign_1826));// L817:L818 +extern char * ((__fcvt_1828) (double ____value_1823, int ____ndigit_1824, int * __restrict ____decpt_1825, int * __restrict ____sign_1826));// L817:L818 +extern char * ((__gcvt_1832) (double ____value_1829, int ____ndigit_1830, char * (____buf_1831)));// L823:L824 +extern char * ((__gcvt_1833) (double ____value_1829, int ____ndigit_1830, char * (____buf_1831)));// L823:L824 +extern char * ((__qecvt_1838) (long double ____value_1834, int ____ndigit_1835, int * __restrict ____decpt_1836, int * __restrict ____sign_1837));// L829:L831 +extern char * ((__qecvt_1839) (long double ____value_1834, int ____ndigit_1835, int * __restrict ____decpt_1836, int * __restrict ____sign_1837));// L829:L831 +extern char * ((__qfcvt_1844) (long double ____value_1840, int ____ndigit_1841, int * __restrict ____decpt_1842, int * __restrict ____sign_1843));// L832:L834 +extern char * ((__qfcvt_1845) (long double ____value_1840, int ____ndigit_1841, int * __restrict ____decpt_1842, int * __restrict ____sign_1843));// L832:L834 +extern char * ((__qgcvt_1849) (long double ____value_1846, int ____ndigit_1847, char * (____buf_1848)));// L835:L836 +extern char * ((__qgcvt_1850) (long double ____value_1846, int ____ndigit_1847, char * (____buf_1848)));// L835:L836 +extern int (__ecvt_r_1858) (double ____value_1851, int ____ndigit_1852, int * __restrict ____decpt_1853, int * __restrict ____sign_1854, char * __restrict ____buf_1855, __size_t_1 ____len_1856);// L841:L843 +extern int (__ecvt_r_1859) (double ____value_1851, int ____ndigit_1852, int * __restrict ____decpt_1853, int * __restrict ____sign_1854, char * __restrict ____buf_1855, __size_t_1093 ____len_1857);// L841:L843 +extern int (__fcvt_r_1867) (double ____value_1860, int ____ndigit_1861, int * __restrict ____decpt_1862, int * __restrict ____sign_1863, char * __restrict ____buf_1864, __size_t_1 ____len_1865);// L844:L846 +extern int (__fcvt_r_1868) (double ____value_1860, int ____ndigit_1861, int * __restrict ____decpt_1862, int * __restrict ____sign_1863, char * __restrict ____buf_1864, __size_t_1093 ____len_1866);// L844:L846 +extern int (__qecvt_r_1876) (long double ____value_1869, int ____ndigit_1870, int * __restrict ____decpt_1871, int * __restrict ____sign_1872, char * __restrict ____buf_1873, __size_t_1 ____len_1874);// L848:L851 +extern int (__qecvt_r_1877) (long double ____value_1869, int ____ndigit_1870, int * __restrict ____decpt_1871, int * __restrict ____sign_1872, char * __restrict ____buf_1873, __size_t_1093 ____len_1875);// L848:L851 +extern int (__qfcvt_r_1885) (long double ____value_1878, int ____ndigit_1879, int * __restrict ____decpt_1880, int * __restrict ____sign_1881, char * __restrict ____buf_1882, __size_t_1 ____len_1883);// L852:L855 +extern int (__qfcvt_r_1886) (long double ____value_1878, int ____ndigit_1879, int * __restrict ____decpt_1880, int * __restrict ____sign_1881, char * __restrict ____buf_1882, __size_t_1093 ____len_1884);// L852:L855 +extern int (__mblen_1890) (const char * (____s_1887), __size_t_1 ____n_1888);// L862 +extern int (__mblen_1891) (const char * (____s_1887), __size_t_1093 ____n_1889);// L862 +extern int (__mblen_1892) (const char * (____s_1887), __size_t_1 ____n_1888);// L862 +extern int (__mblen_1893) (const char * (____s_1887), __size_t_1093 ____n_1889);// L862 +extern int (__mbtowc_1898) (__wchar_t_1094 * __restrict ____pwc_1894, const char * __restrict ____s_1895, __size_t_1 ____n_1896);// L865:L866 +extern int (__mbtowc_1899) (__wchar_t_1094 * __restrict ____pwc_1894, const char * __restrict ____s_1895, __size_t_1093 ____n_1897);// L865:L866 +extern int (__wctomb_1902) (char * (____s_1900), __wchar_t_1094 ____wchar_1901);// L869 +extern __size_t_1 (__mbstowcs_1907) (__wchar_t_1094 * __restrict ____pwcs_1903, const char * __restrict ____s_1904, __size_t_1 ____n_1905);// L873:L874 +extern __size_t_1093 (__mbstowcs_1908) (__wchar_t_1094 * __restrict ____pwcs_1903, const char * __restrict ____s_1904, __size_t_1093 ____n_1906);// L873:L874 +extern __size_t_1 (__wcstombs_1913) (char * __restrict ____s_1909, const __wchar_t_1094 * __restrict ____pwcs_1910, __size_t_1 ____n_1911);// L876:L878 +extern __size_t_1093 (__wcstombs_1914) (char * __restrict ____s_1909, const __wchar_t_1094 * __restrict ____pwcs_1910, __size_t_1093 ____n_1912);// L876:L878 +extern int (__rpmatch_1917) (const char * (____response_1915));// L887 +extern int (__rpmatch_1916) (const char * (____response_1915));// L887 +extern int (__getsubopt_1922) (char * (* __restrict ____optionp_1918), char * const * __restrict ____tokens_1919, char * (* __restrict ____valuep_1920));// L898:L901 +extern int (__getsubopt_1921) (char * (* __restrict ____optionp_1918), char * const * __restrict ____tokens_1919, char * (* __restrict ____valuep_1920));// L898:L901 +extern int (__getloadavg_1925) (double ____loadavg_1923[], int ____nelem_1924);// L950:L951 +/* no function due to type errors in the function prototype */ +extern char * ((____realpath_chk_1931) (const char * __restrict ____name_1927, char * __restrict ____resolved_1928, __size_t_1 ____resolvedlen_1929));// L23:L25 +extern char * ((____realpath_chk_1932) (const char * __restrict ____name_1927, char * __restrict ____resolved_1928, __size_t_1093 ____resolvedlen_1930));// L23:L25 +extern char * ((____realpath_alias_1935) (const char * __restrict ____name_1933, char * __restrict ____resolved_1934));// L26:L28 +extern char * ((____realpath_chk_warn_1940) (const char * __restrict ____name_1936, char * __restrict ____resolved_1937, __size_t_1 ____resolvedlen_1938));// L29:L34 +extern char * ((____realpath_chk_warn_1941) (const char * __restrict ____name_1936, char * __restrict ____resolved_1937, __size_t_1093 ____resolvedlen_1939));// L29:L34 +/* no function due to type errors in the function prototype */ +extern int (____ptsname_r_chk_1951) (int ____fd_1945, char * (____buf_1946), __size_t_1 ____buflen_1947, __size_t_1 ____nreal_1949);// L52:L53 +extern int (____ptsname_r_chk_1952) (int ____fd_1945, char * (____buf_1946), __size_t_1093 ____buflen_1948, __size_t_1093 ____nreal_1950);// L52:L53 +extern int (____ptsname_r_alias_1957) (int ____fd_1953, char * (____buf_1954), __size_t_1 ____buflen_1955);// L54:L56 +extern int (____ptsname_r_alias_1958) (int ____fd_1953, char * (____buf_1954), __size_t_1093 ____buflen_1956);// L54:L56 +extern int (____ptsname_r_chk_warn_1965) (int ____fd_1959, char * (____buf_1960), __size_t_1 ____buflen_1961, __size_t_1 ____nreal_1963);// L57:L61 +extern int (____ptsname_r_chk_warn_1966) (int ____fd_1959, char * (____buf_1960), __size_t_1093 ____buflen_1962, __size_t_1093 ____nreal_1964);// L57:L61 +/* no function due to type errors in the function prototype */ +extern int (____wctomb_chk_1977) (char * (____s_1973), __wchar_t_1094 ____wchar_1974, __size_t_1 ____buflen_1975);// L77:L78 +extern int (____wctomb_chk_1978) (char * (____s_1973), __wchar_t_1094 ____wchar_1974, __size_t_1093 ____buflen_1976);// L77:L78 +extern int (____wctomb_alias_1981) (char * (____s_1979), __wchar_t_1094 ____wchar_1980);// L79:L80 +/* no function due to type errors in the function prototype */ +extern __size_t_1 (____mbstowcs_chk_1990) (__wchar_t_1094 * __restrict ____dst_1984, const char * __restrict ____src_1985, __size_t_1 ____len_1986, __size_t_1 ____dstlen_1988);// L98:L100 +extern __size_t_1093 (____mbstowcs_chk_1991) (__wchar_t_1094 * __restrict ____dst_1984, const char * __restrict ____src_1985, __size_t_1093 ____len_1987, __size_t_1093 ____dstlen_1989);// L98:L100 +extern __size_t_1 (____mbstowcs_alias_1996) (__wchar_t_1094 * __restrict ____dst_1992, const char * __restrict ____src_1993, __size_t_1 ____len_1994);// L101:L104 +extern __size_t_1093 (____mbstowcs_alias_1997) (__wchar_t_1094 * __restrict ____dst_1992, const char * __restrict ____src_1993, __size_t_1093 ____len_1995);// L101:L104 +extern __size_t_1 (____mbstowcs_chk_warn_2004) (__wchar_t_1094 * __restrict ____dst_1998, const char * __restrict ____src_1999, __size_t_1 ____len_2000, __size_t_1 ____dstlen_2002);// L105:L110 +extern __size_t_1093 (____mbstowcs_chk_warn_2005) (__wchar_t_1094 * __restrict ____dst_1998, const char * __restrict ____src_1999, __size_t_1093 ____len_2001, __size_t_1093 ____dstlen_2003);// L105:L110 +/* no function due to type errors in the function prototype */ +extern __size_t_1 (____wcstombs_chk_2016) (char * __restrict ____dst_2010, const __wchar_t_1094 * __restrict ____src_2011, __size_t_1 ____len_2012, __size_t_1 ____dstlen_2014);// L130:L132 +extern __size_t_1093 (____wcstombs_chk_2017) (char * __restrict ____dst_2010, const __wchar_t_1094 * __restrict ____src_2011, __size_t_1093 ____len_2013, __size_t_1093 ____dstlen_2015);// L130:L132 +extern __size_t_1 (____wcstombs_alias_2022) (char * __restrict ____dst_2018, const __wchar_t_1094 * __restrict ____src_2019, __size_t_1 ____len_2020);// L133:L136 +extern __size_t_1093 (____wcstombs_alias_2023) (char * __restrict ____dst_2018, const __wchar_t_1094 * __restrict ____src_2019, __size_t_1093 ____len_2021);// L133:L136 +extern __size_t_1 (____wcstombs_chk_warn_2030) (char * __restrict ____dst_2024, const __wchar_t_1094 * __restrict ____src_2025, __size_t_1 ____len_2026, __size_t_1 ____dstlen_2028);// L137:L141 +extern __size_t_1093 (____wcstombs_chk_warn_2031) (char * __restrict ____dst_2024, const __wchar_t_1094 * __restrict ____src_2025, __size_t_1093 ____len_2027, __size_t_1093 ____dstlen_2029);// L137:L141 +/* no function due to type errors in the function prototype */ +struct __dnode_2037 ;// L4 +void (__dfree_2043) (struct __dnode_2037 * (* (__arr_2040))) { + +if (__static_condition_default_2044) { + +{ +{ + + + +struct __dnode_2037 * (__cur_2041);// L12 + +struct __dnode_2037 * (__next_2042);// L12 + +if (__static_condition_default_2045) { +if ( __arr_2040 == ( ( void * ) 0 ) )// L14 +{ +return ;// L15 +} +} +if (__static_condition_default_2046) { +__static_type_error("invalid type found in if statement"); +} + __cur_2041 = __arr_2040 [ 0 ] ; // L17 +if (__static_condition_default_2047) { +while ( __cur_2041 != ( ( void * ) 0 ) )// L18 +{ + +{ +{ + + + + __next_2042 = __cur_2041 -> __next_2039 ; // L19 +if (__static_condition_default_2048) { +free ( __cur_2041 ) ; // L20 +} +if (__static_condition_default_2049) { +__static_type_error("type error") ; // L20 +} + __cur_2041 = __next_2042 ; // L21 +} +} +} +} +if (__static_condition_default_2050) { +__static_type_error("invalid type found in while statement"); +} +} +} + + +} +} +void (__showdirs_2053) (struct __dnode_2037 * (* (__arr_2051))) { + +{ +if (__static_condition_default_2055) { + +{ +{ + + + +{ int __i_2052= 0;// L28 + for ( ; __i_2052 < 5 ; ++ __i_2052 ) // L28 +{ + +{ +{ + + + +if (__static_condition_default_2056) { + __printf_421 ("\n%d", __arr_2051 [ __i_2052 ] -> __val_2038) ; // L29 +} +if (__static_condition_default_2057) { +__static_type_error("type error") ; // L29 +} +} +} +} +} +} +} + + +} + +}} +void (__showdirs_2054) (struct __dnode_2037 * (* (__arr_2051))) { + +{ +if (__static_condition_default_2058) { + +{ +{ + + + +{ int __i_2052= 0;// L28 + for ( ; __i_2052 < 5 ; ++ __i_2052 ) // L28 +{ + +{ +{ + + + +if (__static_condition_default_2059) { + __printf_421 ("\n%d", __arr_2051 [ __i_2052 ] -> __val_2038) ; // L29 +} +if (__static_condition_default_2060) { +__static_type_error("type error") ; // L29 +} +} +} +} +} + __dfree_2043 ( __arr_2051 ) ; // L33 +} +} + + +} + +}} +void (__sort_2066) (int * (* (__arr_2061)), int __size_2062) { + +if (__static_condition_default_2067) { + +{ +{ + + + +int * (* (__temp_2063));// L40 + +int __i_2064;// L41 + +int __j_2065;// L41 + +if (__static_condition_default_2068) { +if ( __arr_2061 == ( ( void * ) 0 ) || __size_2062 < 1 )// L43 +{ +return ;// L44 +} +} +if (__static_condition_default_2069) { +__static_type_error("invalid type found in if statement"); +} +for ( __i_2064 = 0 ; __i_2064 < __size_2062 ; __i_2064 ++ )// L46 +{ + +{ +{ + + + +for ( __j_2065 = __i_2064 ; __j_2065 < __size_2062 ; __j_2065 ++ )// L47 +{ + +{ +{ + + + +if ( * __arr_2061 [ __i_2064 ] > * __arr_2061 [ __j_2065 ] )// L48 +{ + +{ +{ + + + + __temp_2063 = * __arr_2061 [ __i_2064 ] ; // L49 +* __arr_2061 [ __i_2064 ] = * __arr_2061 [ __j_2065 ] ; // L50 +* __arr_2061 [ __j_2065 ] = __temp_2063 ; // L51 +} +} +} +} +} +} +} +} +} +} +} + + +} +} +int (__main_2080) (int __argc_2070, char * (* (__argv_2071))) { + +if (__static_condition_default_2082) { + +{ +{ + + + +struct __dnode_2037 * (__curr_2072);// L60 + +struct __dnode_2037 * (__head_2073);// L60 + +const int __size_2074= 5;// L61 + +struct __dnode_2037 * (__arr_2075[ __size_2074 ]);// L62 + +{ int __i_2076= 0;// L64 + for ( ; __i_2076 < __size_2074 ; __i_2076 ++ ) // L64 +{ + +{ +{ + +struct { typeof( int ) __tmp_2077; typeof( struct __forward_tag_reference_2036 *) __tmp_2078; }__sizeofStandin_2079; + + +if (__static_condition_default_2083) { + __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 +} +if (__static_condition_default_2084) { + __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 +} +if (__static_condition_default_2085) { + __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 +} +if (__static_condition_default_2086) { + __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 +} +if (__static_condition_default_2087) { +__static_type_error("type error") ; // L65 +} +if (__static_condition_default_2088) { + __curr_2072 -> __val_2038 = rand( ) % 10 ; // L66 +} +if (__static_condition_default_2089) { +__static_type_error("type error") ; // L66 +} + __curr_2072 -> __next_2039 = __head_2073 ; // L67 + __head_2073 = __curr_2072 ; // L68 + __arr_2075 [ ( __size_2074 - 1 ) - __i_2076 ] = __curr_2072 ; // L69 +} +} +} +} +if (__static_condition_default_2090) { +if ( rand( ) % 2 )// L72 +{ + +{ +{ + + + +if (__static_condition_default_2091) { + __showdirs_2053 ( __arr_2075 ) ; // L76 +} +if (__static_condition_default_2092) { + __showdirs_2054 ( __arr_2075 ) ; // L76 +} +} +} +} +} +if (__static_condition_default_2093) { +__static_type_error("invalid type found in if statement"); +} +return 0 ;// L78 +} +} + + +} +} +int (__main_2081) (int __argc_2070, char * (* (__argv_2071))) { + +if (__static_condition_default_2094) { + +{ +{ + + + +struct __dnode_2037 * (__curr_2072);// L60 + +struct __dnode_2037 * (__head_2073);// L60 + +const int __size_2074= 5;// L61 + +struct __dnode_2037 * (__arr_2075[ __size_2074 ]);// L62 + +{ int __i_2076= 0;// L64 + for ( ; __i_2076 < __size_2074 ; __i_2076 ++ ) // L64 +{ + +{ +{ + +struct { typeof( int ) __tmp_2077; typeof( struct __forward_tag_reference_2036 *) __tmp_2078; }__sizeofStandin_2079; + + +if (__static_condition_default_2095) { + __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 +} +if (__static_condition_default_2096) { + __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 +} +if (__static_condition_default_2097) { + __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 +} +if (__static_condition_default_2098) { + __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 +} +if (__static_condition_default_2099) { +__static_type_error("type error") ; // L65 +} +if (__static_condition_default_2100) { + __curr_2072 -> __val_2038 = rand( ) % 10 ; // L66 +} +if (__static_condition_default_2101) { +__static_type_error("type error") ; // L66 +} + __curr_2072 -> __next_2039 = __head_2073 ; // L67 + __head_2073 = __curr_2072 ; // L68 + __arr_2075 [ ( __size_2074 - 1 ) - __i_2076 ] = __curr_2072 ; // L69 +} +} +} +} +if (__static_condition_default_2102) { +if ( rand( ) % 2 )// L72 +{ + +{ +{ + + + +__static_type_error("type error : no valid expression"); // L74 +if (__static_condition_default_2103) { + __showdirs_2053 ( __arr_2075 ) ; // L76 +} +if (__static_condition_default_2104) { + __showdirs_2054 ( __arr_2075 ) ; // L76 +} +} +} +} +} +if (__static_condition_default_2105) { +__static_type_error("invalid type found in if statement"); +} +return 0 ;// L78 +} +} + + +} } diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.clangres index 34ba5287..adc6a0b2 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.clangres @@ -1,19 +1,43 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1250:42: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_963', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_986)' [unix.MallocSizeof] - __curr_979 = ( struct __dnode_963 * ) malloc (sizeof(typeof(__sizeofStandin_986))) ; // L65 - ~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1253:42: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_963', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_986)' [unix.MallocSizeof] - __curr_979 = ( struct __dnode_963 * ) malloc (sizeof(typeof(__sizeofStandin_986))) ; // L65 - ~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1256:27: warning: Access to field '__val_964' results in a dereference of an undefined pointer value (loaded from variable '__curr_979') [core.NullDereference] - __curr_979 -> __val_964 = rand( ) % 10 ; // L66 - ~~~~~~~~~~ ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1259:27: warning: Access to field '__val_964' results in a dereference of an undefined pointer value (loaded from variable '__curr_979') [core.NullDereference] - __curr_979 -> __val_964 = rand( ) % 10 ; // L66 - ~~~~~~~~~~ ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1261:28: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] - __curr_979 -> __next_965 = __head_980 ; // L67 - ^ ~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1261:28: warning: Access to field '__next_965' results in a dereference of an undefined pointer value (loaded from variable '__curr_979') [core.NullDereference] - __curr_979 -> __next_965 = __head_980 ; // L67 - ~~~~~~~~~~ ^ -6 warnings generated. +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3171:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] + __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 + ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3174:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] + __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 + ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3177:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] + __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 + ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3180:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] + __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 + ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3186:29: warning: Access to field '__val_2038' results in a dereference of an undefined pointer value (loaded from variable '__curr_2072') [core.NullDereference] + __curr_2072 -> __val_2038 = rand( ) % 10 ; // L66 + ~~~~~~~~~~~ ^ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3191:30: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] + __curr_2072 -> __next_2039 = __head_2073 ; // L67 + ^ ~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3191:30: warning: Access to field '__next_2039' results in a dereference of an undefined pointer value (loaded from variable '__curr_2072') [core.NullDereference] + __curr_2072 -> __next_2039 = __head_2073 ; // L67 + ~~~~~~~~~~~ ^ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3255:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] + __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 + ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3258:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] + __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 + ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3261:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] + __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 + ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3264:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] + __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 + ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3270:29: warning: Access to field '__val_2038' results in a dereference of an undefined pointer value (loaded from variable '__curr_2072') [core.NullDereference] + __curr_2072 -> __val_2038 = rand( ) % 10 ; // L66 + ~~~~~~~~~~~ ^ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3275:30: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] + __curr_2072 -> __next_2039 = __head_2073 ; // L67 + ^ ~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3275:30: warning: Access to field '__next_2039' results in a dereference of an undefined pointer value (loaded from variable '__curr_2072') [core.NullDereference] + __curr_2072 -> __next_2039 = __head_2073 ; // L67 + ~~~~~~~~~~~ ^ +14 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.inferres new file mode 100644 index 00000000..e1332c24 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.inferres @@ -0,0 +1,24 @@ + +BUSYBOX/2631486f1bf.c:66: error: Null Dereference + `curr` could be null (last assigned on line 64) and is dereferenced. + 64. for (int i = 0; i < size; i++) { + 65. curr = (struct dnode *) malloc(sizeof(struct dnode)); + 66. curr->val = rand() % 10; + ^ + 67. curr->next = head; + 68. head = curr; + +BUSYBOX/2631486f1bf.c:67: error: Uninitialized Value + `head` is read without initialization. + 65. curr = (struct dnode *) malloc(sizeof(struct dnode)); + 66. curr->val = rand() % 10; + 67. curr->next = head; + ^ + 68. head = curr; + 69. arr[(size-1)-i] = curr; + + +Found 2 issues + Issue Type(ISSUED_TYPE_ID): # + Uninitialized Value(PULSE_UNINITIALIZED_VALUE): 1 + Null Dereference(NULLPTR_DEREFERENCE): 1 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c index c9dc3b2f..025be544 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c @@ -7,144 +7,366 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_512; -extern const bool __static_condition_default_609; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_558; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_483; -extern const bool __static_condition_default_654; -extern const bool __static_condition_default_335; -extern const bool __static_condition_default_423; -extern const bool __static_condition_default_525; -extern const bool __static_condition_default_688; -extern const bool __static_condition_default_374; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_681; +extern const bool __static_condition_default_2065; +extern const bool __static_condition_default_568; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_1428; +extern const bool __static_condition_default_1808; +extern const bool __static_condition_default_2055; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_2064; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_1165; +extern const bool __static_condition_default_1489; +extern const bool __static_condition_default_1532; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_2069; +extern const bool __static_condition_default_2068; +extern const bool __static_condition_default_907; +extern const bool __static_condition_default_1395; +extern const bool __static_condition_default_1785; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_1315; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_455; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_1381; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_761; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_76; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_2050; +extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_1164; +extern const bool __static_condition_default_2067; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_1750; +extern const bool __static_condition_default_846; +extern const bool __static_condition_default_1388; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_2070; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_1409; +extern const bool __static_condition_default_1791; +extern const bool __static_condition_default_1391; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_2051; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_1159; +extern const bool __static_condition_default_677; +extern const bool __static_condition_default_1564; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_1753; extern const bool __static_condition_default_550; -extern const bool __static_condition_default_858; -extern const bool __static_condition_default_660; -extern const bool __static_condition_default_652; -extern const bool __static_condition_default_484; -extern const bool __static_condition_default_251; -extern const bool __static_condition_default_383; -extern const bool __static_condition_default_419; extern const bool __static_condition_default_979; -extern const bool __static_condition_default_572; -extern const bool __static_condition_default_294; -extern const bool __static_condition_default_976; -extern const bool __static_condition_default_695; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_398; -extern const bool __static_condition_default_466; -extern const bool __static_condition_default_393; -extern const bool __static_condition_default_644; -extern const bool __static_condition_default_234; -extern const bool __static_condition_default_535; -extern const bool __static_condition_default_513; -extern const bool __static_condition_default_672; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_546; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_227; -extern const bool __static_condition_default_441; -extern const bool __static_condition_default_667; -extern const bool __static_condition_default_854; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_1459; +extern const bool __static_condition_default_1816; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_1373; +extern const bool __static_condition_default_1475; +extern const bool __static_condition_default_779; +extern const bool __static_condition_default_229; extern const bool __static_condition_default_432; -extern const bool __static_condition_default_162; -extern const bool __static_condition_default_336; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_901; -extern const bool __static_condition_default_74; -extern const bool __static_condition_default_594; -extern const bool __static_condition_default_306; -extern const bool __static_condition_default_982; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_703; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_579; -extern const bool __static_condition_default_500; -extern const bool __static_condition_default_404; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_406; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_1776; +extern const bool __static_condition_default_1424; +extern const bool __static_condition_default_636; +extern const bool __static_condition_default_2066; +extern const bool __static_condition_default_521; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_1402; +extern const bool __static_condition_default_386; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_333; +extern const bool __static_condition_default_789; +extern const bool __static_condition_default_583; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_1774; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_1458; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_1341; +extern const bool __static_condition_default_2048; +extern const bool __static_condition_default_538; extern const bool __static_condition_default_296; -extern const bool __static_condition_default_983; -extern const bool __static_condition_default_833; -extern const bool __static_condition_default_632; -extern const bool __static_condition_default_236; -extern const bool __static_condition_default_434; -extern const bool __static_condition_default_165; -extern const bool __static_condition_default_377; -extern const bool __static_condition_default_826; +extern const bool __static_condition_default_1568; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_1405; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_769; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_1572; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_721; +extern const bool __static_condition_default_1357; +extern const bool __static_condition_default_2059; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_1749; +extern const bool __static_condition_default_1090; extern const bool __static_condition_default_544; -extern const bool __static_condition_default_464; -extern const bool __static_condition_default_223; +extern const bool __static_condition_default_613; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_2049; extern const bool __static_condition_default_431; -extern const bool __static_condition_default_628; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_308; -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_118; -extern const bool __static_condition_default_361; -extern const bool __static_condition_default_230; -extern const bool __static_condition_default_975; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_835; -extern const bool __static_condition_default_532; -extern const bool __static_condition_default_702; -extern const bool __static_condition_default_161; -extern const bool __static_condition_default_673; -extern const bool __static_condition_default_977; -extern const bool __static_condition_default_810; -extern const bool __static_condition_default_397; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_378; -extern const bool __static_condition_default_232; -extern const bool __static_condition_default_226; -extern const bool __static_condition_default_394; -extern const bool __static_condition_default_421; -extern const bool __static_condition_default_533; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_380; +extern const bool __static_condition_default_759; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_2062; +extern const bool __static_condition_default_894; +extern const bool __static_condition_default_1754; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_963; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_1420; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_834; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_891; +extern const bool __static_condition_default_2056; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_1556; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_1432; +extern const bool __static_condition_default_367; +extern const bool __static_condition_default_929; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_842; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_1349; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_1416; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_1385; +extern const bool __static_condition_default_187; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_2072; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_288; extern const bool __static_condition_default_536; -extern const bool __static_condition_default_435; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_643; -extern const bool __static_condition_default_225; -extern const bool __static_condition_default_268; -extern const bool __static_condition_default_418; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_1560; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_1377; +extern const bool __static_condition_default_2060; +extern const bool __static_condition_default_1361; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_619; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_1789; +extern const bool __static_condition_default_753; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_419; +extern const bool __static_condition_default_2063; +extern const bool __static_condition_default_1516; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_2047; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_955; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_2039; +extern const bool __static_condition_default_791; +extern const bool __static_condition_default_2054; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_1814; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_549; +extern const bool __static_condition_default_1453; +extern const bool __static_condition_default_1498; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_2073; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_337; +extern const bool __static_condition_default_2053; +extern const bool __static_condition_default_559; +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_488; +extern const bool __static_condition_default_1152; +extern const bool __static_condition_default_388; +extern const bool __static_condition_default_1531; +extern const bool __static_condition_default_290; extern const bool __static_condition_default_284; -extern const bool __static_condition_default_622; -extern const bool __static_condition_default_399; -extern const bool __static_condition_default_524; -extern const bool __static_condition_default_420; -extern const bool __static_condition_default_277; -extern const bool __static_condition_default_304; -extern const bool __static_condition_default_482; -extern const bool __static_condition_default_981; -extern const bool __static_condition_default_424; -extern const bool __static_condition_default_620; -extern const bool __static_condition_default_485; -extern const bool __static_condition_default_531; -extern const bool __static_condition_default_363; +extern const bool __static_condition_default_1775; +extern const bool __static_condition_default_2071; +extern const bool __static_condition_default_311; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_1369; +extern const bool __static_condition_default_1773; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_2061; +extern const bool __static_condition_default_1398; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_875; +extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_1944; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_2057; +extern const bool __static_condition_default_1515; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_512; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_1787; +extern const bool __static_condition_default_2058; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_747; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_1436; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_1353; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_1345; +extern const bool __static_condition_default_2052; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_1576; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_1810; +extern const bool __static_condition_default_84; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_347; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_1365; +extern const bool __static_condition_default_365; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_670; extern const bool __static_condition_default_637; -extern const bool __static_condition_default_860; -extern const bool __static_condition_default_502; -extern const bool __static_condition_default_603; -extern const bool __static_condition_default_645; -extern const bool __static_condition_default_974; -extern const bool __static_condition_default_812; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_680; -extern const bool __static_condition_default_696; -extern const bool __static_condition_default_426; -extern const bool __static_condition_default_302; -extern const bool __static_condition_default_266; -extern const bool __static_condition_default_973; -extern const bool __static_condition_default_381; -extern const bool __static_condition_default_334; -extern const bool __static_condition_default_687; -extern const bool __static_condition_default_425; +extern const bool __static_condition_default_204; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_702; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_1552; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_1485; +extern const bool __static_condition_default_382; +extern const bool __static_condition_default_489; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_246; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -196,385 +418,1059 @@ __static_renaming("____ssize_t_49", "__ssize_t"); __static_renaming("____syscall_slong_t_50", "__syscall_slong_t"); __static_renaming("____syscall_ulong_t_51", "__syscall_ulong_t"); __static_renaming("____loff_t_52", "__loff_t"); -__static_renaming("____qaddr_t_53", "__qaddr_t"); -__static_renaming("____caddr_t_54", "__caddr_t"); -__static_renaming("____intptr_t_55", "__intptr_t"); -__static_renaming("____socklen_t_56", "__socklen_t"); -__static_renaming("__FILE_58", "FILE"); -__static_renaming("____FILE_59", "__FILE"); -__static_renaming("____mbstate_t_68", "__mbstate_t"); -__static_renaming("___G_fpos_t_75", "_G_fpos_t"); -__static_renaming("___G_fpos64_t_81", "_G_fpos64_t"); -__static_renaming("____gnuc_va_list_82", "__gnuc_va_list"); -__static_renaming("___IO_lock_t_84", "_IO_lock_t"); -__static_renaming("___IO_FILE_163", "_IO_FILE"); -__static_renaming("___IO_FILE_164", "_IO_FILE"); -__static_renaming("___IO_2_1_stdin__167", "_IO_2_1_stdin_"); -__static_renaming("___IO_2_1_stdout__168", "_IO_2_1_stdout_"); -__static_renaming("___IO_2_1_stderr__169", "_IO_2_1_stderr_"); -__static_renaming("____io_read_fn_173", "__io_read_fn"); -__static_renaming("____io_write_fn_177", "__io_write_fn"); -__static_renaming("____io_seek_fn_181", "__io_seek_fn"); -__static_renaming("____io_close_fn_183", "__io_close_fn"); -__static_renaming("____underflow_184", "__underflow"); -__static_renaming("____underflow_185", "__underflow"); -__static_renaming("____uflow_186", "__uflow"); -__static_renaming("____uflow_187", "__uflow"); -__static_renaming("____overflow_188", "__overflow"); -__static_renaming("____overflow_189", "__overflow"); -__static_renaming("___IO_getc_193", "_IO_getc"); -__static_renaming("___IO_getc_194", "_IO_getc"); -__static_renaming("___IO_putc_199", "_IO_putc"); -__static_renaming("___IO_putc_200", "_IO_putc"); -__static_renaming("___IO_feof_204", "_IO_feof"); -__static_renaming("___IO_feof_205", "_IO_feof"); -__static_renaming("___IO_ferror_209", "_IO_ferror"); -__static_renaming("___IO_ferror_210", "_IO_ferror"); -__static_renaming("___IO_peekc_locked_214", "_IO_peekc_locked"); -__static_renaming("___IO_peekc_locked_215", "_IO_peekc_locked"); -__static_renaming("___IO_flockfile_216", "_IO_flockfile"); -__static_renaming("___IO_flockfile_217", "_IO_flockfile"); -__static_renaming("___IO_funlockfile_218", "_IO_funlockfile"); -__static_renaming("___IO_funlockfile_219", "_IO_funlockfile"); -__static_renaming("___IO_ftrylockfile_220", "_IO_ftrylockfile"); -__static_renaming("___IO_ftrylockfile_221", "_IO_ftrylockfile"); -__static_renaming("___IO_vfscanf_222", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_224", "_IO_vfscanf"); -__static_renaming("___IO_vfprintf_231", "_IO_vfprintf"); -__static_renaming("___IO_vfprintf_233", "_IO_vfprintf"); -__static_renaming("___IO_padn_238", "_IO_padn"); -__static_renaming("___IO_padn_239", "_IO_padn"); -__static_renaming("___IO_sgetn_240", "_IO_sgetn"); -__static_renaming("___IO_sgetn_241", "_IO_sgetn"); -__static_renaming("___IO_seekoff_242", "_IO_seekoff"); -__static_renaming("___IO_seekoff_243", "_IO_seekoff"); -__static_renaming("___IO_seekpos_244", "_IO_seekpos"); -__static_renaming("___IO_seekpos_245", "_IO_seekpos"); -__static_renaming("___IO_free_backup_area_246", "_IO_free_backup_area"); -__static_renaming("___IO_free_backup_area_247", "_IO_free_backup_area"); -__static_renaming("__fpos_t_248", "fpos_t"); -__static_renaming("__fpos_t_250", "fpos_t"); -__static_renaming("__stdin_252", "stdin"); -__static_renaming("__stdin_253", "stdin"); -__static_renaming("__stdout_254", "stdout"); -__static_renaming("__stdout_255", "stdout"); -__static_renaming("__stderr_256", "stderr"); -__static_renaming("__stderr_257", "stderr"); -__static_renaming("__remove_259", "remove"); -__static_renaming("__rename_262", "rename"); -__static_renaming("__tmpfile_263", "tmpfile"); -__static_renaming("__tmpfile_265", "tmpfile"); -__static_renaming("__tmpfile_267", "tmpfile"); -__static_renaming("__tmpfile_269", "tmpfile"); -__static_renaming("__tmpnam_272", "tmpnam"); -__static_renaming("__tmpnam_273", "tmpnam"); -__static_renaming("__fclose_276", "fclose"); -__static_renaming("__fflush_280", "fflush"); -__static_renaming("__fopen_283", "fopen"); -__static_renaming("__fopen_285", "fopen"); -__static_renaming("__fopen_293", "fopen"); -__static_renaming("__fopen_295", "fopen"); -__static_renaming("__freopen_301", "freopen"); -__static_renaming("__freopen_303", "freopen"); -__static_renaming("__freopen_305", "freopen"); -__static_renaming("__freopen_307", "freopen"); -__static_renaming("__setbuf_312", "setbuf"); -__static_renaming("__setvbuf_318", "setvbuf"); -__static_renaming("__fprintf_322", "fprintf"); -__static_renaming("__printf_324", "printf"); -__static_renaming("__sprintf_327", "sprintf"); -__static_renaming("__vfprintf_333", "vfprintf"); -__static_renaming("__vprintf_340", "vprintf"); -__static_renaming("__vsprintf_346", "vsprintf"); -__static_renaming("__snprintf_350", "snprintf"); -__static_renaming("__vsnprintf_356", "vsnprintf"); -__static_renaming("__fscanf_360", "fscanf"); -__static_renaming("__fscanf_362", "fscanf"); -__static_renaming("__scanf_365", "scanf"); -__static_renaming("__scanf_366", "scanf"); -__static_renaming("__sscanf_369", "sscanf"); -__static_renaming("__vfscanf_392", "vfscanf"); -__static_renaming("__vfscanf_396", "vfscanf"); -__static_renaming("__vscanf_403", "vscanf"); -__static_renaming("__vscanf_405", "vscanf"); -__static_renaming("__vsscanf_411", "vsscanf"); -__static_renaming("__fgetc_444", "fgetc"); -__static_renaming("__getc_447", "getc"); -__static_renaming("__getchar_448", "getchar"); -__static_renaming("__fputc_452", "fputc"); -__static_renaming("__putc_456", "putc"); -__static_renaming("__putchar_458", "putchar"); -__static_renaming("__fgets_463", "fgets"); -__static_renaming("__fgets_465", "fgets"); -__static_renaming("__fputs_470", "fputs"); -__static_renaming("__puts_472", "puts"); -__static_renaming("__ungetc_476", "ungetc"); -__static_renaming("__fseek_496", "fseek"); -__static_renaming("__ftell_499", "ftell"); -__static_renaming("__ftell_501", "ftell"); -__static_renaming("__rewind_505", "rewind"); -__static_renaming("__fgetpos_510", "fgetpos"); -__static_renaming("__fgetpos_522", "fgetpos"); -__static_renaming("__fsetpos_530", "fsetpos"); -__static_renaming("__fsetpos_534", "fsetpos"); -__static_renaming("__clearerr_540", "clearerr"); -__static_renaming("__feof_543", "feof"); -__static_renaming("__feof_545", "feof"); -__static_renaming("__ferror_549", "ferror"); -__static_renaming("__ferror_551", "ferror"); -__static_renaming("__perror_554", "perror"); -__static_renaming("____sprintf_chk_564", "__sprintf_chk"); -__static_renaming("____vsprintf_chk_571", "__vsprintf_chk"); -__static_renaming("____snprintf_chk_585", "__snprintf_chk"); -__static_renaming("____vsnprintf_chk_593", "__vsnprintf_chk"); -__static_renaming("____fprintf_chk_608", "__fprintf_chk"); -__static_renaming("____printf_chk_612", "__printf_chk"); -__static_renaming("____vfprintf_chk_619", "__vfprintf_chk"); -__static_renaming("____vprintf_chk_627", "__vprintf_chk"); -__static_renaming("____fgets_chk_651", "__fgets_chk"); -__static_renaming("____fgets_chk_653", "__fgets_chk"); -__static_renaming("____fgets_alias_659", "__fgets_alias"); -__static_renaming("____fgets_chk_warn_666", "__fgets_chk_warn"); -__static_renaming("__wchar_t_704", "wchar_t"); -__static_renaming("__wchar_t_705", "wchar_t"); -__static_renaming("__div_t_710", "div_t"); -__static_renaming("__ldiv_t_715", "ldiv_t"); -__static_renaming("__lldiv_t_720", "lldiv_t"); -__static_renaming("____ctype_get_mb_cur_max_721", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_722", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_723", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_724", "__ctype_get_mb_cur_max"); -__static_renaming("__atof_726", "atof"); -__static_renaming("__atof_727", "atof"); -__static_renaming("__atoi_729", "atoi"); -__static_renaming("__atoi_730", "atoi"); -__static_renaming("__atol_732", "atol"); -__static_renaming("__atol_733", "atol"); -__static_renaming("__atoll_735", "atoll"); -__static_renaming("__atoll_736", "atoll"); -__static_renaming("__strtod_739", "strtod"); -__static_renaming("__strtof_742", "strtof"); -__static_renaming("__strtold_745", "strtold"); -__static_renaming("__strtol_749", "strtol"); -__static_renaming("__strtoul_753", "strtoul"); -__static_renaming("__strtoll_757", "strtoll"); -__static_renaming("__strtoull_761", "strtoull"); -__static_renaming("__rand_765", "rand"); -__static_renaming("__rand_766", "rand"); -__static_renaming("__srand_768", "srand"); -__static_renaming("__malloc_770", "malloc"); -__static_renaming("__malloc_771", "malloc"); -__static_renaming("__calloc_774", "calloc"); -__static_renaming("__calloc_775", "calloc"); -__static_renaming("__realloc_778", "realloc"); -__static_renaming("__realloc_779", "realloc"); -__static_renaming("__free_781", "free"); -__static_renaming("__aligned_alloc_784", "aligned_alloc"); -__static_renaming("__aligned_alloc_785", "aligned_alloc"); -__static_renaming("__abort_786", "abort"); -__static_renaming("__atexit_788", "atexit"); -__static_renaming("__at_quick_exit_790", "at_quick_exit"); -__static_renaming("__exit_792", "exit"); -__static_renaming("__quick_exit_794", "quick_exit"); -__static_renaming("___Exit_796", "_Exit"); -__static_renaming("__getenv_798", "getenv"); -__static_renaming("__getenv_799", "getenv"); -__static_renaming("__system_801", "system"); -__static_renaming("__system_802", "system"); -__static_renaming("____compar_fn_t_803", "__compar_fn_t"); -__static_renaming("__bsearch_811", "bsearch"); -__static_renaming("__bsearch_813", "bsearch"); -__static_renaming("____l_820", "__l"); -__static_renaming("____u_821", "__u"); -__static_renaming("____idx_822", "__idx"); -__static_renaming("____p_823", "__p"); -__static_renaming("____comparison_824", "__comparison"); -__static_renaming("__qsort_832", "qsort"); -__static_renaming("__qsort_834", "qsort"); -__static_renaming("__abs_837", "abs"); -__static_renaming("__abs_838", "abs"); -__static_renaming("__labs_840", "labs"); -__static_renaming("__labs_841", "labs"); -__static_renaming("__llabs_843", "llabs"); -__static_renaming("__llabs_844", "llabs"); -__static_renaming("__div_847", "div"); -__static_renaming("__div_848", "div"); -__static_renaming("__ldiv_851", "ldiv"); -__static_renaming("__ldiv_853", "ldiv"); -__static_renaming("__lldiv_857", "lldiv"); -__static_renaming("__lldiv_859", "lldiv"); -__static_renaming("__mblen_863", "mblen"); -__static_renaming("__mbtowc_868", "mbtowc"); -__static_renaming("__mbtowc_869", "mbtowc"); -__static_renaming("__wctomb_873", "wctomb"); -__static_renaming("__wctomb_874", "wctomb"); -__static_renaming("__mbstowcs_879", "mbstowcs"); -__static_renaming("__mbstowcs_880", "mbstowcs"); -__static_renaming("__wcstombs_885", "wcstombs"); -__static_renaming("__wcstombs_886", "wcstombs"); -__static_renaming("____realpath_chk_891", "__realpath_chk"); -__static_renaming("____realpath_alias_894", "__realpath_alias"); -__static_renaming("____realpath_chk_warn_898", "__realpath_chk_warn"); -__static_renaming("____ptsname_r_chk_906", "__ptsname_r_chk"); -__static_renaming("____ptsname_r_alias_910", "__ptsname_r_alias"); -__static_renaming("____ptsname_r_chk_warn_915", "__ptsname_r_chk_warn"); -__static_renaming("____wctomb_chk_923", "__wctomb_chk"); -__static_renaming("____wctomb_alias_926", "__wctomb_alias"); -__static_renaming("____mbstowcs_chk_933", "__mbstowcs_chk"); -__static_renaming("____mbstowcs_alias_937", "__mbstowcs_alias"); -__static_renaming("____mbstowcs_chk_warn_942", "__mbstowcs_chk_warn"); -__static_renaming("____wcstombs_chk_950", "__wcstombs_chk"); -__static_renaming("____wcstombs_alias_954", "__wcstombs_alias"); -__static_renaming("____wcstombs_chk_warn_959", "__wcstombs_chk_warn"); -__static_renaming("__r_965", "r"); -__static_renaming("__r_966", "r"); -__static_renaming("__m_has_modinfo_967", "m_has_modinfo"); -__static_renaming("__exit_status_968", "exit_status"); -__static_renaming("__someInt_969", "someInt"); -__static_renaming("__k_crcs_970", "k_crcs"); -__static_renaming("__main_971", "main"); -__static_renaming("__main_972", "main"); - -__static_condition_renaming("__static_condition_default_74", "(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_118", "(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_161", "(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_162", "(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_165", "(defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_223", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_225", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_226", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_227", "(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_230", "(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_232", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_234", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_235", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_236", "(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_249", "!(defined _FILE_OFFSET_BITS) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_251", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_264", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_266", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_268", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_270", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_277", "(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_284", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_286", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_294", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_296", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_302", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_304", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_306", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_308", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_334", "!(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_335", "(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_336", "(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_341", "!(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_361", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_363", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_374", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_375", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_377", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_378", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_381", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_383", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_393", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_394", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_395", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_397", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_398", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_399", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_404", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_406", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_418", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_419", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_420", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_421", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_423", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_424", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_425", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_426", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_431", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_432", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_434", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_435", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_441", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_464", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_466", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_482", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_483", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_484", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_485", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_491", "!(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_500", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_502", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_511", "!(defined _FILE_OFFSET_BITS) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_512", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_513", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_523", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_524", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_525", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_531", "!(defined _FILE_OFFSET_BITS) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_532", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_533", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_535", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_536", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_537", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_544", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_546", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_550", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_552", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_558", "!(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_572", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_579", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_594", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_603", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_609", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_620", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_621", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_622", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_628", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_632", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_637", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_643", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_644", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_645", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_652", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_654", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_660", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_667", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_672", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_673", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_680", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_681", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_687", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_688", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_695", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_696", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_702", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_703", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_810", "!(defined _FORTIFY_SOURCE) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_812", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_825", "(defined __USE_EXTERN_INLINES) && !(defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_826", "(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_833", "!(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_835", "(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_852", "!(defined _FORTIFY_SOURCE) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_854", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_858", "!(defined _FORTIFY_SOURCE) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_860", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_901", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_973", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_974", "!(defined _FORTIFY_SOURCE) && !(defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_975", "!(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_976", "!(defined _FORTIFY_SOURCE) && !(defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_977", "!(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_978", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_979", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_980", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_981", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_982", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_983", "(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); - -if (__static_condition_default_983) { +__static_renaming("____qaddr_t_54", "__qaddr_t"); +__static_renaming("____caddr_t_55", "__caddr_t"); +__static_renaming("____intptr_t_56", "__intptr_t"); +__static_renaming("____socklen_t_57", "__socklen_t"); +__static_renaming("__FILE_59", "FILE"); +__static_renaming("____FILE_60", "__FILE"); +__static_renaming("____mbstate_t_69", "__mbstate_t"); +__static_renaming("___G_fpos_t_77", "_G_fpos_t"); +__static_renaming("___G_fpos64_t_85", "_G_fpos64_t"); +__static_renaming("____gnuc_va_list_86", "__gnuc_va_list"); +__static_renaming("___IO_lock_t_88", "_IO_lock_t"); +__static_renaming("___IO_FILE_171", "_IO_FILE"); +__static_renaming("___IO_FILE_172", "_IO_FILE"); +__static_renaming("___IO_2_1_stdin__175", "_IO_2_1_stdin_"); +__static_renaming("___IO_2_1_stdout__176", "_IO_2_1_stdout_"); +__static_renaming("___IO_2_1_stderr__177", "_IO_2_1_stderr_"); +__static_renaming("____io_read_fn_181", "__io_read_fn"); +__static_renaming("____io_write_fn_186", "__io_write_fn"); +__static_renaming("____io_seek_fn_192", "__io_seek_fn"); +__static_renaming("____io_close_fn_195", "__io_close_fn"); +__static_renaming("____underflow_196", "__underflow"); +__static_renaming("____underflow_197", "__underflow"); +__static_renaming("____uflow_199", "__uflow"); +__static_renaming("____uflow_200", "__uflow"); +__static_renaming("____overflow_202", "__overflow"); +__static_renaming("____overflow_203", "__overflow"); +__static_renaming("___IO_getc_208", "_IO_getc"); +__static_renaming("___IO_getc_209", "_IO_getc"); +__static_renaming("___IO_putc_215", "_IO_putc"); +__static_renaming("___IO_putc_216", "_IO_putc"); +__static_renaming("___IO_feof_221", "_IO_feof"); +__static_renaming("___IO_feof_222", "_IO_feof"); +__static_renaming("___IO_ferror_227", "_IO_ferror"); +__static_renaming("___IO_ferror_228", "_IO_ferror"); +__static_renaming("___IO_peekc_locked_233", "_IO_peekc_locked"); +__static_renaming("___IO_peekc_locked_234", "_IO_peekc_locked"); +__static_renaming("___IO_flockfile_236", "_IO_flockfile"); +__static_renaming("___IO_flockfile_237", "_IO_flockfile"); +__static_renaming("___IO_funlockfile_239", "_IO_funlockfile"); +__static_renaming("___IO_funlockfile_240", "_IO_funlockfile"); +__static_renaming("___IO_ftrylockfile_242", "_IO_ftrylockfile"); +__static_renaming("___IO_ftrylockfile_243", "_IO_ftrylockfile"); +__static_renaming("___IO_vfscanf_245", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_247", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_251", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_252", "_IO_vfscanf"); +__static_renaming("___IO_vfprintf_254", "_IO_vfprintf"); +__static_renaming("___IO_vfprintf_256", "_IO_vfprintf"); +__static_renaming("___IO_vfprintf_260", "_IO_vfprintf"); +__static_renaming("___IO_padn_261", "_IO_padn"); +__static_renaming("___IO_padn_262", "_IO_padn"); +__static_renaming("___IO_sgetn_265", "_IO_sgetn"); +__static_renaming("___IO_sgetn_266", "_IO_sgetn"); +__static_renaming("___IO_seekoff_268", "_IO_seekoff"); +__static_renaming("___IO_seekoff_269", "_IO_seekoff"); +__static_renaming("___IO_seekpos_272", "_IO_seekpos"); +__static_renaming("___IO_seekpos_273", "_IO_seekpos"); +__static_renaming("___IO_free_backup_area_276", "_IO_free_backup_area"); +__static_renaming("___IO_free_backup_area_277", "_IO_free_backup_area"); +__static_renaming("__va_list_279", "va_list"); +__static_renaming("__off_t_281", "off_t"); +__static_renaming("__off_t_283", "off_t"); +__static_renaming("__ssize_t_285", "ssize_t"); +__static_renaming("__fpos_t_287", "fpos_t"); +__static_renaming("__fpos_t_289", "fpos_t"); +__static_renaming("__stdin_291", "stdin"); +__static_renaming("__stdin_292", "stdin"); +__static_renaming("__stdout_294", "stdout"); +__static_renaming("__stdout_295", "stdout"); +__static_renaming("__stderr_297", "stderr"); +__static_renaming("__stderr_298", "stderr"); +__static_renaming("__remove_301", "remove"); +__static_renaming("__rename_304", "rename"); +__static_renaming("__renameat_309", "renameat"); +__static_renaming("__tmpfile_310", "tmpfile"); +__static_renaming("__tmpfile_312", "tmpfile"); +__static_renaming("__tmpfile_314", "tmpfile"); +__static_renaming("__tmpfile_316", "tmpfile"); +__static_renaming("__tmpnam_319", "tmpnam"); +__static_renaming("__tmpnam_320", "tmpnam"); +__static_renaming("__tmpnam_r_322", "tmpnam_r"); +__static_renaming("__tmpnam_r_323", "tmpnam_r"); +__static_renaming("__tempnam_326", "tempnam"); +__static_renaming("__tempnam_327", "tempnam"); +__static_renaming("__fclose_330", "fclose"); +__static_renaming("__fclose_332", "fclose"); +__static_renaming("__fflush_336", "fflush"); +__static_renaming("__fflush_unlocked_340", "fflush_unlocked"); +__static_renaming("__fopen_344", "fopen"); +__static_renaming("__fopen_346", "fopen"); +__static_renaming("__fopen_354", "fopen"); +__static_renaming("__fopen_356", "fopen"); +__static_renaming("__freopen_362", "freopen"); +__static_renaming("__freopen_364", "freopen"); +__static_renaming("__freopen_366", "freopen"); +__static_renaming("__freopen_368", "freopen"); +__static_renaming("__fdopen_372", "fdopen"); +__static_renaming("__fdopen_374", "fdopen"); +__static_renaming("__fmemopen_379", "fmemopen"); +__static_renaming("__fmemopen_381", "fmemopen"); +__static_renaming("__open_memstream_385", "open_memstream"); +__static_renaming("__open_memstream_387", "open_memstream"); +__static_renaming("__setbuf_392", "setbuf"); +__static_renaming("__setbuf_394", "setbuf"); +__static_renaming("__setvbuf_401", "setvbuf"); +__static_renaming("__setbuffer_407", "setbuffer"); +__static_renaming("__setlinebuf_411", "setlinebuf"); +__static_renaming("__fprintf_416", "fprintf"); +__static_renaming("__fprintf_418", "fprintf"); +__static_renaming("__printf_421", "printf"); +__static_renaming("__sprintf_424", "sprintf"); +__static_renaming("__vfprintf_430", "vfprintf"); +__static_renaming("__vprintf_437", "vprintf"); +__static_renaming("__vsprintf_443", "vsprintf"); +__static_renaming("__snprintf_448", "snprintf"); +__static_renaming("__vsnprintf_454", "vsnprintf"); +__static_renaming("__vdprintf_460", "vdprintf"); +__static_renaming("__dprintf_464", "dprintf"); +__static_renaming("__fscanf_468", "fscanf"); +__static_renaming("__fscanf_470", "fscanf"); +__static_renaming("__fscanf_472", "fscanf"); +__static_renaming("__fscanf_474", "fscanf"); +__static_renaming("__scanf_477", "scanf"); +__static_renaming("__scanf_478", "scanf"); +__static_renaming("__sscanf_481", "sscanf"); +__static_renaming("__vfscanf_509", "vfscanf"); +__static_renaming("__vfscanf_513", "vfscanf"); +__static_renaming("__vscanf_520", "vscanf"); +__static_renaming("__vscanf_522", "vscanf"); +__static_renaming("__vsscanf_528", "vsscanf"); +__static_renaming("__fgetc_563", "fgetc"); +__static_renaming("__getc_567", "getc"); +__static_renaming("__getchar_569", "getchar"); +__static_renaming("__getc_unlocked_572", "getc_unlocked"); +__static_renaming("__getchar_unlocked_574", "getchar_unlocked"); +__static_renaming("__fgetc_unlocked_577", "fgetc_unlocked"); +__static_renaming("__fputc_582", "fputc"); +__static_renaming("__fputc_584", "fputc"); +__static_renaming("__putc_589", "putc"); +__static_renaming("__putchar_592", "putchar"); +__static_renaming("__fputc_unlocked_596", "fputc_unlocked"); +__static_renaming("__putc_unlocked_601", "putc_unlocked"); +__static_renaming("__putchar_unlocked_604", "putchar_unlocked"); +__static_renaming("__getw_607", "getw"); +__static_renaming("__putw_612", "putw"); +__static_renaming("__fgets_618", "fgets"); +__static_renaming("__fgets_620", "fgets"); +__static_renaming("__fgets_622", "fgets"); +__static_renaming("__fgets_624", "fgets"); +__static_renaming("____getdelim_631", "__getdelim"); +__static_renaming("____getdelim_635", "__getdelim"); +__static_renaming("__getdelim_644", "getdelim"); +__static_renaming("__getdelim_648", "getdelim"); +__static_renaming("__getline_656", "getline"); +__static_renaming("__getline_660", "getline"); +__static_renaming("__fputs_667", "fputs"); +__static_renaming("__fputs_669", "fputs"); +__static_renaming("__puts_672", "puts"); +__static_renaming("__ungetc_676", "ungetc"); +__static_renaming("__fseek_714", "fseek"); +__static_renaming("__fseek_716", "fseek"); +__static_renaming("__ftell_720", "ftell"); +__static_renaming("__ftell_722", "ftell"); +__static_renaming("__rewind_726", "rewind"); +__static_renaming("__fseeko_733", "fseeko"); +__static_renaming("__fseeko_744", "fseeko"); +__static_renaming("__ftello_750", "ftello"); +__static_renaming("__ftello_754", "ftello"); +__static_renaming("__ftello_758", "ftello"); +__static_renaming("__fgetpos_766", "fgetpos"); +__static_renaming("__fgetpos_778", "fgetpos"); +__static_renaming("__fsetpos_786", "fsetpos"); +__static_renaming("__fsetpos_790", "fsetpos"); +__static_renaming("__clearerr_796", "clearerr"); +__static_renaming("__feof_800", "feof"); +__static_renaming("__feof_802", "feof"); +__static_renaming("__ferror_806", "ferror"); +__static_renaming("__ferror_808", "ferror"); +__static_renaming("__clearerr_unlocked_812", "clearerr_unlocked"); +__static_renaming("__feof_unlocked_816", "feof_unlocked"); +__static_renaming("__feof_unlocked_818", "feof_unlocked"); +__static_renaming("__ferror_unlocked_822", "ferror_unlocked"); +__static_renaming("__ferror_unlocked_824", "ferror_unlocked"); +__static_renaming("__perror_827", "perror"); +__static_renaming("__perror_828", "perror"); +__static_renaming("__sys_nerr_829", "sys_nerr"); +__static_renaming("__sys_errlist_830", "sys_errlist"); +__static_renaming("__fileno_833", "fileno"); +__static_renaming("__fileno_835", "fileno"); +__static_renaming("__fileno_unlocked_839", "fileno_unlocked"); +__static_renaming("__fileno_unlocked_841", "fileno_unlocked"); +__static_renaming("__popen_845", "popen"); +__static_renaming("__popen_847", "popen"); +__static_renaming("__pclose_851", "pclose"); +__static_renaming("__ctermid_854", "ctermid"); +__static_renaming("__flockfile_857", "flockfile"); +__static_renaming("__ftrylockfile_861", "ftrylockfile"); +__static_renaming("__ftrylockfile_863", "ftrylockfile"); +__static_renaming("__funlockfile_867", "funlockfile"); +__static_renaming("____sprintf_chk_899", "__sprintf_chk"); +__static_renaming("____vsprintf_chk_906", "__vsprintf_chk"); +__static_renaming("____snprintf_chk_920", "__snprintf_chk"); +__static_renaming("____vsnprintf_chk_928", "__vsnprintf_chk"); +__static_renaming("____fprintf_chk_943", "__fprintf_chk"); +__static_renaming("____printf_chk_947", "__printf_chk"); +__static_renaming("____vfprintf_chk_954", "__vfprintf_chk"); +__static_renaming("____vprintf_chk_962", "__vprintf_chk"); +__static_renaming("____dprintf_chk_984", "__dprintf_chk"); +__static_renaming("____vdprintf_chk_990", "__vdprintf_chk"); +__static_renaming("____fgets_chk_1004", "__fgets_chk"); +__static_renaming("____fgets_chk_1006", "__fgets_chk"); +__static_renaming("____fgets_chk_1008", "__fgets_chk"); +__static_renaming("____fgets_alias_1014", "__fgets_alias"); +__static_renaming("____fgets_chk_warn_1021", "__fgets_chk_warn"); +__static_renaming("____cnt_1087", "__cnt"); +__static_renaming("____cptr_1088", "__cptr"); +__static_renaming("__ptrdiff_t_1092", "ptrdiff_t"); +__static_renaming("__size_t_1093", "size_t"); +__static_renaming("__wchar_t_1094", "wchar_t"); +__static_renaming("__idtype_t_1100", "idtype_t"); +__static_renaming("____u_char_1101", "__u_char"); +__static_renaming("____u_short_1102", "__u_short"); +__static_renaming("____u_int_1103", "__u_int"); +__static_renaming("____u_long_1104", "__u_long"); +__static_renaming("____int8_t_1105", "__int8_t"); +__static_renaming("____uint8_t_1106", "__uint8_t"); +__static_renaming("____int16_t_1107", "__int16_t"); +__static_renaming("____uint16_t_1108", "__uint16_t"); +__static_renaming("____int32_t_1109", "__int32_t"); +__static_renaming("____uint32_t_1110", "__uint32_t"); +__static_renaming("____int64_t_1111", "__int64_t"); +__static_renaming("____uint64_t_1112", "__uint64_t"); +__static_renaming("____quad_t_1113", "__quad_t"); +__static_renaming("____u_quad_t_1114", "__u_quad_t"); +__static_renaming("____dev_t_1115", "__dev_t"); +__static_renaming("____uid_t_1116", "__uid_t"); +__static_renaming("____gid_t_1117", "__gid_t"); +__static_renaming("____ino_t_1118", "__ino_t"); +__static_renaming("____ino64_t_1119", "__ino64_t"); +__static_renaming("____mode_t_1120", "__mode_t"); +__static_renaming("____nlink_t_1121", "__nlink_t"); +__static_renaming("____off_t_1122", "__off_t"); +__static_renaming("____off64_t_1123", "__off64_t"); +__static_renaming("____pid_t_1124", "__pid_t"); +__static_renaming("____fsid_t_1128", "__fsid_t"); +__static_renaming("____clock_t_1129", "__clock_t"); +__static_renaming("____rlim_t_1130", "__rlim_t"); +__static_renaming("____rlim64_t_1131", "__rlim64_t"); +__static_renaming("____id_t_1132", "__id_t"); +__static_renaming("____time_t_1133", "__time_t"); +__static_renaming("____useconds_t_1134", "__useconds_t"); +__static_renaming("____suseconds_t_1135", "__suseconds_t"); +__static_renaming("____daddr_t_1136", "__daddr_t"); +__static_renaming("____key_t_1137", "__key_t"); +__static_renaming("____clockid_t_1138", "__clockid_t"); +__static_renaming("____timer_t_1139", "__timer_t"); +__static_renaming("____blksize_t_1140", "__blksize_t"); +__static_renaming("____blkcnt_t_1141", "__blkcnt_t"); +__static_renaming("____blkcnt64_t_1142", "__blkcnt64_t"); +__static_renaming("____fsblkcnt_t_1143", "__fsblkcnt_t"); +__static_renaming("____fsblkcnt64_t_1144", "__fsblkcnt64_t"); +__static_renaming("____fsfilcnt_t_1145", "__fsfilcnt_t"); +__static_renaming("____fsfilcnt64_t_1146", "__fsfilcnt64_t"); +__static_renaming("____fsword_t_1147", "__fsword_t"); +__static_renaming("____ssize_t_1148", "__ssize_t"); +__static_renaming("____syscall_slong_t_1149", "__syscall_slong_t"); +__static_renaming("____syscall_ulong_t_1150", "__syscall_ulong_t"); +__static_renaming("____loff_t_1151", "__loff_t"); +__static_renaming("____qaddr_t_1153", "__qaddr_t"); +__static_renaming("____caddr_t_1154", "__caddr_t"); +__static_renaming("____intptr_t_1155", "__intptr_t"); +__static_renaming("____socklen_t_1156", "__socklen_t"); +__static_renaming("____bswap_32_1158", "__bswap_32"); +__static_renaming("____bswap_64_1162", "__bswap_64"); +__static_renaming("____bswap_64_1163", "__bswap_64"); +__static_renaming("____WAIT_STATUS_1185", "__WAIT_STATUS"); +__static_renaming("__div_t_1190", "div_t"); +__static_renaming("__ldiv_t_1195", "ldiv_t"); +__static_renaming("__lldiv_t_1200", "lldiv_t"); +__static_renaming("____ctype_get_mb_cur_max_1201", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1202", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1203", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1204", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1205", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1206", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1207", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1208", "__ctype_get_mb_cur_max"); +__static_renaming("__atof_1210", "atof"); +__static_renaming("__atof_1211", "atof"); +__static_renaming("__atoi_1213", "atoi"); +__static_renaming("__atoi_1214", "atoi"); +__static_renaming("__atol_1216", "atol"); +__static_renaming("__atol_1217", "atol"); +__static_renaming("__atoll_1219", "atoll"); +__static_renaming("__atoll_1220", "atoll"); +__static_renaming("__strtod_1223", "strtod"); +__static_renaming("__strtof_1226", "strtof"); +__static_renaming("__strtold_1229", "strtold"); +__static_renaming("__strtol_1233", "strtol"); +__static_renaming("__strtoul_1237", "strtoul"); +__static_renaming("__strtoq_1241", "strtoq"); +__static_renaming("__strtouq_1245", "strtouq"); +__static_renaming("__strtoll_1249", "strtoll"); +__static_renaming("__strtoll_1250", "strtoll"); +__static_renaming("__strtoull_1254", "strtoull"); +__static_renaming("__l64a_1259", "l64a"); +__static_renaming("__l64a_1260", "l64a"); +__static_renaming("__a64l_1262", "a64l"); +__static_renaming("__a64l_1263", "a64l"); +__static_renaming("____u_char_1264", "__u_char"); +__static_renaming("____u_short_1265", "__u_short"); +__static_renaming("____u_int_1266", "__u_int"); +__static_renaming("____u_long_1267", "__u_long"); +__static_renaming("____int8_t_1268", "__int8_t"); +__static_renaming("____uint8_t_1269", "__uint8_t"); +__static_renaming("____int16_t_1270", "__int16_t"); +__static_renaming("____uint16_t_1271", "__uint16_t"); +__static_renaming("____int32_t_1272", "__int32_t"); +__static_renaming("____uint32_t_1273", "__uint32_t"); +__static_renaming("____int64_t_1274", "__int64_t"); +__static_renaming("____uint64_t_1275", "__uint64_t"); +__static_renaming("____quad_t_1276", "__quad_t"); +__static_renaming("____u_quad_t_1277", "__u_quad_t"); +__static_renaming("____dev_t_1278", "__dev_t"); +__static_renaming("____uid_t_1279", "__uid_t"); +__static_renaming("____gid_t_1280", "__gid_t"); +__static_renaming("____ino_t_1281", "__ino_t"); +__static_renaming("____ino64_t_1282", "__ino64_t"); +__static_renaming("____mode_t_1283", "__mode_t"); +__static_renaming("____nlink_t_1284", "__nlink_t"); +__static_renaming("____off_t_1285", "__off_t"); +__static_renaming("____off64_t_1286", "__off64_t"); +__static_renaming("____pid_t_1287", "__pid_t"); +__static_renaming("____fsid_t_1291", "__fsid_t"); +__static_renaming("____clock_t_1292", "__clock_t"); +__static_renaming("____rlim_t_1293", "__rlim_t"); +__static_renaming("____rlim64_t_1294", "__rlim64_t"); +__static_renaming("____id_t_1295", "__id_t"); +__static_renaming("____time_t_1296", "__time_t"); +__static_renaming("____useconds_t_1297", "__useconds_t"); +__static_renaming("____suseconds_t_1298", "__suseconds_t"); +__static_renaming("____daddr_t_1299", "__daddr_t"); +__static_renaming("____key_t_1300", "__key_t"); +__static_renaming("____clockid_t_1301", "__clockid_t"); +__static_renaming("____timer_t_1302", "__timer_t"); +__static_renaming("____blksize_t_1303", "__blksize_t"); +__static_renaming("____blkcnt_t_1304", "__blkcnt_t"); +__static_renaming("____blkcnt64_t_1305", "__blkcnt64_t"); +__static_renaming("____fsblkcnt_t_1306", "__fsblkcnt_t"); +__static_renaming("____fsblkcnt64_t_1307", "__fsblkcnt64_t"); +__static_renaming("____fsfilcnt_t_1308", "__fsfilcnt_t"); +__static_renaming("____fsfilcnt64_t_1309", "__fsfilcnt64_t"); +__static_renaming("____fsword_t_1310", "__fsword_t"); +__static_renaming("____ssize_t_1311", "__ssize_t"); +__static_renaming("____syscall_slong_t_1312", "__syscall_slong_t"); +__static_renaming("____syscall_ulong_t_1313", "__syscall_ulong_t"); +__static_renaming("____loff_t_1314", "__loff_t"); +__static_renaming("____qaddr_t_1316", "__qaddr_t"); +__static_renaming("____caddr_t_1317", "__caddr_t"); +__static_renaming("____intptr_t_1318", "__intptr_t"); +__static_renaming("____socklen_t_1319", "__socklen_t"); +__static_renaming("__u_char_1320", "u_char"); +__static_renaming("__u_char_1321", "u_char"); +__static_renaming("__u_char_1322", "u_char"); +__static_renaming("__u_short_1323", "u_short"); +__static_renaming("__u_short_1324", "u_short"); +__static_renaming("__u_short_1325", "u_short"); +__static_renaming("__u_int_1326", "u_int"); +__static_renaming("__u_int_1327", "u_int"); +__static_renaming("__u_int_1328", "u_int"); +__static_renaming("__u_long_1329", "u_long"); +__static_renaming("__u_long_1330", "u_long"); +__static_renaming("__u_long_1331", "u_long"); +__static_renaming("__quad_t_1332", "quad_t"); +__static_renaming("__quad_t_1333", "quad_t"); +__static_renaming("__quad_t_1334", "quad_t"); +__static_renaming("__u_quad_t_1335", "u_quad_t"); +__static_renaming("__u_quad_t_1336", "u_quad_t"); +__static_renaming("__u_quad_t_1337", "u_quad_t"); +__static_renaming("__fsid_t_1338", "fsid_t"); +__static_renaming("__fsid_t_1339", "fsid_t"); +__static_renaming("__fsid_t_1340", "fsid_t"); +__static_renaming("__loff_t_1342", "loff_t"); +__static_renaming("__loff_t_1343", "loff_t"); +__static_renaming("__loff_t_1344", "loff_t"); +__static_renaming("__loff_t_1346", "loff_t"); +__static_renaming("__loff_t_1347", "loff_t"); +__static_renaming("__loff_t_1348", "loff_t"); +__static_renaming("__ino_t_1350", "ino_t"); +__static_renaming("__ino_t_1351", "ino_t"); +__static_renaming("__ino_t_1352", "ino_t"); +__static_renaming("__ino_t_1354", "ino_t"); +__static_renaming("__ino_t_1355", "ino_t"); +__static_renaming("__ino_t_1356", "ino_t"); +__static_renaming("__dev_t_1358", "dev_t"); +__static_renaming("__dev_t_1359", "dev_t"); +__static_renaming("__dev_t_1360", "dev_t"); +__static_renaming("__gid_t_1362", "gid_t"); +__static_renaming("__gid_t_1363", "gid_t"); +__static_renaming("__gid_t_1364", "gid_t"); +__static_renaming("__gid_t_1366", "gid_t"); +__static_renaming("__gid_t_1367", "gid_t"); +__static_renaming("__gid_t_1368", "gid_t"); +__static_renaming("__mode_t_1370", "mode_t"); +__static_renaming("__mode_t_1371", "mode_t"); +__static_renaming("__mode_t_1372", "mode_t"); +__static_renaming("__nlink_t_1374", "nlink_t"); +__static_renaming("__nlink_t_1375", "nlink_t"); +__static_renaming("__nlink_t_1376", "nlink_t"); +__static_renaming("__uid_t_1378", "uid_t"); +__static_renaming("__uid_t_1379", "uid_t"); +__static_renaming("__uid_t_1380", "uid_t"); +__static_renaming("__uid_t_1382", "uid_t"); +__static_renaming("__uid_t_1383", "uid_t"); +__static_renaming("__uid_t_1384", "uid_t"); +__static_renaming("__off_t_1386", "off_t"); +__static_renaming("__off_t_1387", "off_t"); +__static_renaming("__off_t_1389", "off_t"); +__static_renaming("__off_t_1390", "off_t"); +__static_renaming("__pid_t_1392", "pid_t"); +__static_renaming("__pid_t_1393", "pid_t"); +__static_renaming("__pid_t_1394", "pid_t"); +__static_renaming("__pid_t_1396", "pid_t"); +__static_renaming("__pid_t_1397", "pid_t"); +__static_renaming("__id_t_1399", "id_t"); +__static_renaming("__id_t_1400", "id_t"); +__static_renaming("__id_t_1401", "id_t"); +__static_renaming("__ssize_t_1403", "ssize_t"); +__static_renaming("__ssize_t_1404", "ssize_t"); +__static_renaming("__daddr_t_1406", "daddr_t"); +__static_renaming("__daddr_t_1407", "daddr_t"); +__static_renaming("__daddr_t_1408", "daddr_t"); +__static_renaming("__caddr_t_1410", "caddr_t"); +__static_renaming("__caddr_t_1411", "caddr_t"); +__static_renaming("__caddr_t_1412", "caddr_t"); +__static_renaming("__key_t_1413", "key_t"); +__static_renaming("__key_t_1414", "key_t"); +__static_renaming("__key_t_1415", "key_t"); +__static_renaming("__key_t_1417", "key_t"); +__static_renaming("__key_t_1418", "key_t"); +__static_renaming("__key_t_1419", "key_t"); +__static_renaming("__clock_t_1421", "clock_t"); +__static_renaming("__clock_t_1422", "clock_t"); +__static_renaming("__clock_t_1423", "clock_t"); +__static_renaming("__time_t_1425", "time_t"); +__static_renaming("__time_t_1426", "time_t"); +__static_renaming("__time_t_1427", "time_t"); +__static_renaming("__clockid_t_1429", "clockid_t"); +__static_renaming("__clockid_t_1430", "clockid_t"); +__static_renaming("__clockid_t_1431", "clockid_t"); +__static_renaming("__timer_t_1433", "timer_t"); +__static_renaming("__timer_t_1434", "timer_t"); +__static_renaming("__timer_t_1435", "timer_t"); +__static_renaming("__ulong_1437", "ulong"); +__static_renaming("__ulong_1438", "ulong"); +__static_renaming("__ulong_1439", "ulong"); +__static_renaming("__ushort_1440", "ushort"); +__static_renaming("__uint_1441", "uint"); +__static_renaming("__int8_t_1442", "int8_t"); +__static_renaming("__int16_t_1443", "int16_t"); +__static_renaming("__int32_t_1444", "int32_t"); +__static_renaming("__int64_t_1445", "int64_t"); +__static_renaming("__u_int8_t_1446", "u_int8_t"); +__static_renaming("__u_int16_t_1447", "u_int16_t"); +__static_renaming("__u_int32_t_1448", "u_int32_t"); +__static_renaming("__u_int64_t_1449", "u_int64_t"); +__static_renaming("__register_t_1450", "register_t"); +__static_renaming("____bswap_32_1452", "__bswap_32"); +__static_renaming("____bswap_64_1456", "__bswap_64"); +__static_renaming("____bswap_64_1457", "__bswap_64"); +__static_renaming("____sig_atomic_t_1460", "__sig_atomic_t"); +__static_renaming("____sigset_t_1464", "__sigset_t"); +__static_renaming("__sigset_t_1465", "sigset_t"); +__static_renaming("__suseconds_t_1486", "suseconds_t"); +__static_renaming("__suseconds_t_1487", "suseconds_t"); +__static_renaming("__suseconds_t_1488", "suseconds_t"); +__static_renaming("____fd_mask_1490", "__fd_mask"); +__static_renaming("____fd_mask_1491", "__fd_mask"); +__static_renaming("__fd_set_1499", "fd_set"); +__static_renaming("__fd_mask_1500", "fd_mask"); +__static_renaming("__fd_mask_1501", "fd_mask"); +__static_renaming("__select_1513", "select"); +__static_renaming("__select_1514", "select"); +__static_renaming("__pselect_1529", "pselect"); +__static_renaming("__pselect_1530", "pselect"); +__static_renaming("____fdelt_chk_1534", "__fdelt_chk"); +__static_renaming("____fdelt_warn_1536", "__fdelt_warn"); +__static_renaming("__gnu_dev_major_1538", "gnu_dev_major"); +__static_renaming("__gnu_dev_major_1539", "gnu_dev_major"); +__static_renaming("__gnu_dev_minor_1541", "gnu_dev_minor"); +__static_renaming("__gnu_dev_makedev_1544", "gnu_dev_makedev"); +__static_renaming("__blksize_t_1549", "blksize_t"); +__static_renaming("__blksize_t_1550", "blksize_t"); +__static_renaming("__blksize_t_1551", "blksize_t"); +__static_renaming("__blkcnt_t_1553", "blkcnt_t"); +__static_renaming("__blkcnt_t_1554", "blkcnt_t"); +__static_renaming("__blkcnt_t_1555", "blkcnt_t"); +__static_renaming("__fsblkcnt_t_1557", "fsblkcnt_t"); +__static_renaming("__fsblkcnt_t_1558", "fsblkcnt_t"); +__static_renaming("__fsblkcnt_t_1559", "fsblkcnt_t"); +__static_renaming("__blkcnt_t_1561", "blkcnt_t"); +__static_renaming("__blkcnt_t_1562", "blkcnt_t"); +__static_renaming("__blkcnt_t_1563", "blkcnt_t"); +__static_renaming("__fsblkcnt_t_1565", "fsblkcnt_t"); +__static_renaming("__fsblkcnt_t_1566", "fsblkcnt_t"); +__static_renaming("__fsblkcnt_t_1567", "fsblkcnt_t"); +__static_renaming("__fsfilcnt_t_1569", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_1570", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_1571", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_1573", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_1574", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_1575", "fsfilcnt_t"); +__static_renaming("__pthread_t_1577", "pthread_t"); +__static_renaming("__pthread_attr_t_1581", "pthread_attr_t"); +__static_renaming("____pthread_list_t_1586", "__pthread_list_t"); +__static_renaming("____pthread_list_t_1587", "__pthread_list_t"); +__static_renaming("__pthread_mutex_t_1603", "pthread_mutex_t"); +__static_renaming("__pthread_mutexattr_t_1608", "pthread_mutexattr_t"); +__static_renaming("__rand_1609", "rand"); +__static_renaming("__srand_1611", "srand"); +__static_renaming("__rand_r_1613", "rand_r"); +__static_renaming("__drand48_1614", "drand48"); +__static_renaming("__erand48_1616", "erand48"); +__static_renaming("__lrand48_1617", "lrand48"); +__static_renaming("__nrand48_1619", "nrand48"); +__static_renaming("__mrand48_1620", "mrand48"); +__static_renaming("__jrand48_1622", "jrand48"); +__static_renaming("__srand48_1624", "srand48"); +__static_renaming("__seed48_1626", "seed48"); +__static_renaming("__lcong48_1628", "lcong48"); +__static_renaming("__malloc_1631", "malloc"); +__static_renaming("__malloc_1632", "malloc"); +__static_renaming("__malloc_1633", "malloc"); +__static_renaming("__malloc_1634", "malloc"); +__static_renaming("__calloc_1639", "calloc"); +__static_renaming("__calloc_1640", "calloc"); +__static_renaming("__calloc_1641", "calloc"); +__static_renaming("__calloc_1642", "calloc"); +__static_renaming("__realloc_1646", "realloc"); +__static_renaming("__realloc_1647", "realloc"); +__static_renaming("__free_1649", "free"); +__static_renaming("__cfree_1651", "cfree"); +__static_renaming("__alloca_1654", "alloca"); +__static_renaming("__alloca_1655", "alloca"); +__static_renaming("__valloc_1658", "valloc"); +__static_renaming("__valloc_1659", "valloc"); +__static_renaming("__valloc_1660", "valloc"); +__static_renaming("__valloc_1661", "valloc"); +__static_renaming("__posix_memalign_1667", "posix_memalign"); +__static_renaming("__posix_memalign_1668", "posix_memalign"); +__static_renaming("__posix_memalign_1669", "posix_memalign"); +__static_renaming("__posix_memalign_1670", "posix_memalign"); +__static_renaming("__aligned_alloc_1675", "aligned_alloc"); +__static_renaming("__aligned_alloc_1676", "aligned_alloc"); +__static_renaming("__aligned_alloc_1677", "aligned_alloc"); +__static_renaming("__aligned_alloc_1678", "aligned_alloc"); +__static_renaming("__aligned_alloc_1679", "aligned_alloc"); +__static_renaming("__aligned_alloc_1680", "aligned_alloc"); +__static_renaming("__aligned_alloc_1681", "aligned_alloc"); +__static_renaming("__aligned_alloc_1682", "aligned_alloc"); +__static_renaming("__abort_1683", "abort"); +__static_renaming("__atexit_1685", "atexit"); +__static_renaming("__at_quick_exit_1687", "at_quick_exit"); +__static_renaming("__on_exit_1692", "on_exit"); +__static_renaming("__exit_1694", "exit"); +__static_renaming("__exit_1695", "exit"); +__static_renaming("__quick_exit_1697", "quick_exit"); +__static_renaming("___Exit_1699", "_Exit"); +__static_renaming("__getenv_1701", "getenv"); +__static_renaming("__getenv_1702", "getenv"); +__static_renaming("__putenv_1704", "putenv"); +__static_renaming("__setenv_1708", "setenv"); +__static_renaming("__unsetenv_1710", "unsetenv"); +__static_renaming("__clearenv_1711", "clearenv"); +__static_renaming("__mktemp_1713", "mktemp"); +__static_renaming("__mkstemp_1716", "mkstemp"); +__static_renaming("__mkstemp_1717", "mkstemp"); +__static_renaming("__mkstemp_1718", "mkstemp"); +__static_renaming("__mkstemp_1719", "mkstemp"); +__static_renaming("__mkstemps_1724", "mkstemps"); +__static_renaming("__mkstemps_1725", "mkstemps"); +__static_renaming("__mkstemps_1726", "mkstemps"); +__static_renaming("__mkstemps_1727", "mkstemps"); +__static_renaming("__mkdtemp_1729", "mkdtemp"); +__static_renaming("__mkdtemp_1730", "mkdtemp"); +__static_renaming("__system_1732", "system"); +__static_renaming("__system_1733", "system"); +__static_renaming("__system_1734", "system"); +__static_renaming("__system_1735", "system"); +__static_renaming("__realpath_1738", "realpath"); +__static_renaming("__realpath_1739", "realpath"); +__static_renaming("____compar_fn_t_1740", "__compar_fn_t"); +__static_renaming("__bsearch_1751", "bsearch"); +__static_renaming("__bsearch_1752", "bsearch"); +__static_renaming("__bsearch_1755", "bsearch"); +__static_renaming("__bsearch_1756", "bsearch"); +__static_renaming("____l_1765", "__l"); +__static_renaming("____l_1766", "__l"); +__static_renaming("____u_1767", "__u"); +__static_renaming("____u_1768", "__u"); +__static_renaming("____idx_1769", "__idx"); +__static_renaming("____idx_1770", "__idx"); +__static_renaming("____p_1771", "__p"); +__static_renaming("____comparison_1772", "__comparison"); +__static_renaming("__qsort_1784", "qsort"); +__static_renaming("__qsort_1786", "qsort"); +__static_renaming("__qsort_1788", "qsort"); +__static_renaming("__qsort_1790", "qsort"); +__static_renaming("__abs_1793", "abs"); +__static_renaming("__abs_1794", "abs"); +__static_renaming("__labs_1796", "labs"); +__static_renaming("__labs_1797", "labs"); +__static_renaming("__llabs_1799", "llabs"); +__static_renaming("__llabs_1800", "llabs"); +__static_renaming("__div_1803", "div"); +__static_renaming("__div_1804", "div"); +__static_renaming("__ldiv_1807", "ldiv"); +__static_renaming("__ldiv_1809", "ldiv"); +__static_renaming("__lldiv_1813", "lldiv"); +__static_renaming("__lldiv_1815", "lldiv"); +__static_renaming("__ecvt_1821", "ecvt"); +__static_renaming("__ecvt_1822", "ecvt"); +__static_renaming("__fcvt_1827", "fcvt"); +__static_renaming("__fcvt_1828", "fcvt"); +__static_renaming("__gcvt_1832", "gcvt"); +__static_renaming("__gcvt_1833", "gcvt"); +__static_renaming("__qecvt_1838", "qecvt"); +__static_renaming("__qecvt_1839", "qecvt"); +__static_renaming("__qfcvt_1844", "qfcvt"); +__static_renaming("__qfcvt_1845", "qfcvt"); +__static_renaming("__qgcvt_1849", "qgcvt"); +__static_renaming("__qgcvt_1850", "qgcvt"); +__static_renaming("__ecvt_r_1858", "ecvt_r"); +__static_renaming("__ecvt_r_1859", "ecvt_r"); +__static_renaming("__fcvt_r_1867", "fcvt_r"); +__static_renaming("__fcvt_r_1868", "fcvt_r"); +__static_renaming("__qecvt_r_1876", "qecvt_r"); +__static_renaming("__qecvt_r_1877", "qecvt_r"); +__static_renaming("__qfcvt_r_1885", "qfcvt_r"); +__static_renaming("__qfcvt_r_1886", "qfcvt_r"); +__static_renaming("__mblen_1890", "mblen"); +__static_renaming("__mblen_1891", "mblen"); +__static_renaming("__mblen_1892", "mblen"); +__static_renaming("__mblen_1893", "mblen"); +__static_renaming("__mbtowc_1898", "mbtowc"); +__static_renaming("__mbtowc_1899", "mbtowc"); +__static_renaming("__wctomb_1902", "wctomb"); +__static_renaming("__mbstowcs_1907", "mbstowcs"); +__static_renaming("__mbstowcs_1908", "mbstowcs"); +__static_renaming("__wcstombs_1913", "wcstombs"); +__static_renaming("__wcstombs_1914", "wcstombs"); +__static_renaming("__rpmatch_1916", "rpmatch"); +__static_renaming("__rpmatch_1917", "rpmatch"); +__static_renaming("__getsubopt_1921", "getsubopt"); +__static_renaming("__getsubopt_1922", "getsubopt"); +__static_renaming("__getloadavg_1925", "getloadavg"); +__static_renaming("____realpath_chk_1931", "__realpath_chk"); +__static_renaming("____realpath_chk_1932", "__realpath_chk"); +__static_renaming("____realpath_alias_1935", "__realpath_alias"); +__static_renaming("____realpath_chk_warn_1940", "__realpath_chk_warn"); +__static_renaming("____realpath_chk_warn_1941", "__realpath_chk_warn"); +__static_renaming("____ptsname_r_chk_1951", "__ptsname_r_chk"); +__static_renaming("____ptsname_r_chk_1952", "__ptsname_r_chk"); +__static_renaming("____ptsname_r_alias_1957", "__ptsname_r_alias"); +__static_renaming("____ptsname_r_alias_1958", "__ptsname_r_alias"); +__static_renaming("____ptsname_r_chk_warn_1965", "__ptsname_r_chk_warn"); +__static_renaming("____ptsname_r_chk_warn_1966", "__ptsname_r_chk_warn"); +__static_renaming("____wctomb_chk_1977", "__wctomb_chk"); +__static_renaming("____wctomb_chk_1978", "__wctomb_chk"); +__static_renaming("____wctomb_alias_1981", "__wctomb_alias"); +__static_renaming("____mbstowcs_chk_1990", "__mbstowcs_chk"); +__static_renaming("____mbstowcs_chk_1991", "__mbstowcs_chk"); +__static_renaming("____mbstowcs_alias_1996", "__mbstowcs_alias"); +__static_renaming("____mbstowcs_alias_1997", "__mbstowcs_alias"); +__static_renaming("____mbstowcs_chk_warn_2004", "__mbstowcs_chk_warn"); +__static_renaming("____mbstowcs_chk_warn_2005", "__mbstowcs_chk_warn"); +__static_renaming("____wcstombs_chk_2016", "__wcstombs_chk"); +__static_renaming("____wcstombs_chk_2017", "__wcstombs_chk"); +__static_renaming("____wcstombs_alias_2022", "__wcstombs_alias"); +__static_renaming("____wcstombs_alias_2023", "__wcstombs_alias"); +__static_renaming("____wcstombs_chk_warn_2030", "__wcstombs_chk_warn"); +__static_renaming("____wcstombs_chk_warn_2031", "__wcstombs_chk_warn"); +__static_renaming("__r_2038", "r"); +__static_renaming("__m_has_modinfo_2040", "m_has_modinfo"); +__static_renaming("__exit_status_2041", "exit_status"); +__static_renaming("__someInt_2042", "someInt"); +__static_renaming("__k_crcs_2043", "k_crcs"); +__static_renaming("__main_2044", "main"); +__static_renaming("__main_2045", "main"); +__static_renaming("__main_2046", "main"); + +__static_condition_renaming("__static_condition_default_53", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_76", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_84", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_123", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_169", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_170", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_173", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_182", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_187", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_193", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_198", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_201", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_204", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_210", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_217", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_223", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_229", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_235", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_238", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_241", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_244", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_246", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_248", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_249", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_250", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_253", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_255", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_257", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_258", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_259", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_263", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_264", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_267", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_270", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_271", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_274", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_275", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_278", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_280", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); +__static_condition_renaming("__static_condition_default_282", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_284", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_286", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_288", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_290", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_293", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_296", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_299", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_311", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_313", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_315", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_317", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_331", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_333", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_337", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_341", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_345", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_347", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_355", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_357", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_363", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_365", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_367", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_369", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_373", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_375", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_380", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_382", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_386", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_388", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_393", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_395", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_402", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_408", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_412", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_417", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_419", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_431", "!(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_432", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_433", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_438", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_444", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_455", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_461", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_469", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_471", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_473", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_475", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_486", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_488", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_489", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_491", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_493", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_494", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_497", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_499", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_503", "!(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_510", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_511", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_512", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_514", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_515", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_516", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_521", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_523", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_529", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_536", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_537", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_538", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_539", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_541", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_542", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_543", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_544", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_549", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_550", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_552", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_553", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_559", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_560", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_564", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_568", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_573", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_578", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_583", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_585", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_590", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_597", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_602", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_608", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_613", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_619", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_621", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_623", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_625", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_632", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_633", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_634", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_636", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_637", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_638", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_645", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_646", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_647", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_649", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_650", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_651", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_657", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_658", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_659", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_661", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_662", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_663", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_668", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_670", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_677", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_683", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_684", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_685", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_686", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_692", "!(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_693", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_699", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_700", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_701", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_702", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_708", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_709", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_715", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_717", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_721", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_723", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_727", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_734", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_735", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_736", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_745", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_746", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_747", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_751", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_752", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_753", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_755", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_756", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_757", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_759", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_760", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_761", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_767", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_768", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_769", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_779", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_780", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_781", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_787", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_788", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_789", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_791", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_792", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_793", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_797", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_801", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_803", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_807", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_809", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_813", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_817", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_819", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_823", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_825", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_834", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_836", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_840", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_842", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_846", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_848", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_852", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_858", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_862", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_864", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_868", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_872", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_875", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_878", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_883", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_887", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_891", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_894", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_907", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_914", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_929", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_938", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_944", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_955", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_956", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_957", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_963", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_967", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_972", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_978", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_979", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_980", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_991", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_998", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1005", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1007", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1009", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1015", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1022", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1027", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1028", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1035", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1036", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1042", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1043", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1050", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1051", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1057", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1058", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1065", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1066", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1072", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1073", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1080", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1081", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1089", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_1090", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1091", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1152", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1159", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1164", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1165", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1315", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1341", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __u_char_defined)"); +__static_condition_renaming("__static_condition_default_1345", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __u_char_defined)"); +__static_condition_renaming("__static_condition_default_1349", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __u_char_defined)"); +__static_condition_renaming("__static_condition_default_1353", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined)"); +__static_condition_renaming("__static_condition_default_1357", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined)"); +__static_condition_renaming("__static_condition_default_1361", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_1365", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_1369", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_1373", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1377", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __nlink_t_defined)"); +__static_condition_renaming("__static_condition_default_1381", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __nlink_t_defined)"); +__static_condition_renaming("__static_condition_default_1385", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __nlink_t_defined)"); +__static_condition_renaming("__static_condition_default_1388", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1391", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1395", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && (defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1398", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1402", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __id_t_defined)"); +__static_condition_renaming("__static_condition_default_1405", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1409", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_1416", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_1420", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_1424", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __clock_t_defined)"); +__static_condition_renaming("__static_condition_default_1428", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __time_t_defined)"); +__static_condition_renaming("__static_condition_default_1432", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __clockid_t_defined)"); +__static_condition_renaming("__static_condition_default_1436", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timer_t_defined)"); +__static_condition_renaming("__static_condition_default_1453", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1458", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1459", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1475", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_1485", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_1489", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __suseconds_t_defined)"); +__static_condition_renaming("__static_condition_default_1498", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1515", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_1516", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_1531", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_1532", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_1552", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blksize_t_defined)"); +__static_condition_renaming("__static_condition_default_1556", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined)"); +__static_condition_renaming("__static_condition_default_1560", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1564", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined)"); +__static_condition_renaming("__static_condition_default_1568", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1572", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1576", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1749", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1750", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1753", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1754", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1773", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1774", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1775", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1776", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1785", "!(defined __need___FILE) && !(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1787", "(defined __need___FILE) && !(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1789", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1791", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1808", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1810", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1814", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1816", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1944", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_2039", "!(defined __STRICT_ANSI__) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined __STRICT_ANSI__) && (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2047", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_2048", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING)"); +__static_condition_renaming("__static_condition_default_2049", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING)"); +__static_condition_renaming("__static_condition_default_2050", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING)"); +__static_condition_renaming("__static_condition_default_2051", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING)"); +__static_condition_renaming("__static_condition_default_2052", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING)"); +__static_condition_renaming("__static_condition_default_2053", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING)"); +__static_condition_renaming("__static_condition_default_2054", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING)"); +__static_condition_renaming("__static_condition_default_2055", "(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING)"); +__static_condition_renaming("__static_condition_default_2056", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING)"); +__static_condition_renaming("__static_condition_default_2057", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING)"); +__static_condition_renaming("__static_condition_default_2058", "(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING)"); +__static_condition_renaming("__static_condition_default_2059", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_2060", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING)"); +__static_condition_renaming("__static_condition_default_2061", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING)"); +__static_condition_renaming("__static_condition_default_2062", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING)"); +__static_condition_renaming("__static_condition_default_2063", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING)"); +__static_condition_renaming("__static_condition_default_2064", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING)"); +__static_condition_renaming("__static_condition_default_2065", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING)"); +__static_condition_renaming("__static_condition_default_2066", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING)"); +__static_condition_renaming("__static_condition_default_2067", "(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING)"); +__static_condition_renaming("__static_condition_default_2068", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING)"); +__static_condition_renaming("__static_condition_default_2069", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING)"); +__static_condition_renaming("__static_condition_default_2070", "(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING)"); +__static_condition_renaming("__static_condition_default_2071", "!(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2072", "!(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING) || (defined _STDLIB_H) && (defined CONFIG_FEATURE_INSMOD_VERSION_CHECKING)"); +__static_condition_renaming("__static_condition_default_2073", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); + +if (__static_condition_default_2073) { __static_parse_error("Unable to parse"); } }; @@ -631,155 +1527,498 @@ typedef long int ____ssize_t_49;// L110:L172 typedef long int ____syscall_slong_t_50;// L93:L175 typedef unsigned long int ____syscall_ulong_t_51;// L94:L177 typedef ____off64_t_24 ____loff_t_52;// L181 -typedef ____quad_t_14 * (____qaddr_t_53);// L182 -typedef char * (____caddr_t_54);// L183 -typedef long int ____intptr_t_55;// L110:L186 -typedef unsigned int ____socklen_t_56;// L92:L189 -typedef struct __forward_tag_reference_57 __FILE_58;// L48 -typedef struct __forward_tag_reference_57 ____FILE_59;// L64 -union ____anonymous_tag_60_61 { -unsigned int ____wch_62;// L265 -char ____wchb_63[4];// L92 +typedef ____quad_t_14 * (____qaddr_t_54);// L182 +typedef char * (____caddr_t_55);// L183 +typedef long int ____intptr_t_56;// L110:L186 +typedef unsigned int ____socklen_t_57;// L92:L189 +typedef struct __forward_tag_reference_58 __FILE_59;// L48 +typedef struct __forward_tag_reference_58 ____FILE_60;// L64 +union ____anonymous_tag_61_62 { +unsigned int ____wch_63;// L265 +char ____wchb_64[4];// L92 +}; +struct ____anonymous_tag_65_66 { +int ____count_67;// L84 +union ____anonymous_tag_61_62 ____value_68;// L85 +}; +typedef struct ____anonymous_tag_65_66 ____mbstate_t_69;// L82:L94 +struct ____anonymous_tag_70_71 { +____off_t_23 ____pos_72;// L0 +____mbstate_t_69 ____state_74;// L0 +}; +typedef struct ____anonymous_tag_70_71 ___G_fpos_t_77;// L21:L25 +struct ____anonymous_tag_78_79 { +____off64_t_24 ____pos_80;// L0 +____mbstate_t_69 ____state_82;// L0 +}; +typedef struct ____anonymous_tag_78_79 ___G_fpos64_t_85;// L26:L30 +typedef __builtin_va_list ____gnuc_va_list_86;// L40 +typedef void ___IO_lock_t_88;// L150 +struct ___IO_marker_90 { +struct __forward_tag_reference_89 * (___next_91);// L0 +struct __forward_tag_reference_58 * (___sbuf_92);// L0 +int ___pos_93;// L162 }; -struct ____anonymous_tag_64_65 { -int ____count_66;// L84 -union ____anonymous_tag_60_61 ____value_67;// L85 +enum ____codecvt_result_98 { +____codecvt_ok_94, +____codecvt_partial_95, +____codecvt_error_96, +____codecvt_noconv_97, }; -typedef struct ____anonymous_tag_64_65 ____mbstate_t_68;// L82:L94 -struct ____anonymous_tag_69_70 { -____off_t_23 ____pos_71;// L0 -____mbstate_t_68 ____state_72;// L0 +struct ___IO_FILE_99 { +int ___flags_100;// L242 +char * (___IO_read_ptr_101);// L247 +char * (___IO_read_end_102);// L248 +char * (___IO_read_base_103);// L249 +char * (___IO_write_base_104);// L250 +char * (___IO_write_ptr_105);// L251 +char * (___IO_write_end_106);// L252 +char * (___IO_buf_base_107);// L253 +char * (___IO_buf_end_108);// L254 +char * (___IO_save_base_109);// L256 +char * (___IO_backup_base_110);// L257 +char * (___IO_save_end_111);// L258 +struct ___IO_marker_90 * (___markers_112);// L260 +struct __forward_tag_reference_58 * (___chain_113);// L0 +int ___fileno_114;// L264 +int ___flags2_115;// L268 +____off_t_23 ___old_offset_116;// L0 +unsigned short ___cur_column_118;// L274 +signed char ___vtable_offset_119;// L275 +char ___shortbuf_120[1];// L276 +___IO_lock_t_88 * (___lock_121);// L0 }; -typedef struct ____anonymous_tag_69_70 ___G_fpos_t_75;// L21:L25 -struct ____anonymous_tag_76_77 { -____off64_t_24 ____pos_78;// L0 -____mbstate_t_68 ____state_79;// L0 +struct ___IO_FILE_124 { +int ___flags_125;// L242 +char * (___IO_read_ptr_126);// L247 +char * (___IO_read_end_127);// L248 +char * (___IO_read_base_128);// L249 +char * (___IO_write_base_129);// L250 +char * (___IO_write_ptr_130);// L251 +char * (___IO_write_end_131);// L252 +char * (___IO_buf_base_132);// L253 +char * (___IO_buf_end_133);// L254 +char * (___IO_save_base_134);// L256 +char * (___IO_backup_base_135);// L257 +char * (___IO_save_end_136);// L258 +struct ___IO_marker_90 * (___markers_137);// L260 +struct __forward_tag_reference_58 * (___chain_138);// L0 +int ___fileno_139;// L264 +int ___flags2_140;// L268 +____off_t_23 ___old_offset_141;// L0 +unsigned short ___cur_column_143;// L274 +signed char ___vtable_offset_144;// L275 +char ___shortbuf_145[1];// L276 +___IO_lock_t_88 * (___lock_146);// L0 +____off64_t_24 ___offset_148;// L0 +void * (____pad1_150);// L297 +void * (____pad2_151);// L298 +void * (____pad3_152);// L299 +void * (____pad4_153);// L300 +__size_t_1 ____pad5_154;// L0 +int ___mode_155;// L303 +char ___unused2_156[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -typedef struct ____anonymous_tag_76_77 ___G_fpos64_t_81;// L26:L30 -typedef __builtin_va_list ____gnuc_va_list_82;// L40 -typedef void ___IO_lock_t_84;// L150 -struct ___IO_marker_86 { -struct __forward_tag_reference_85 * (___next_87);// L0 -struct __forward_tag_reference_57 * (___sbuf_88);// L0 -int ___pos_89;// L162 +struct ___IO_FILE_complete_157 { +struct ___IO_FILE_99 ___file_158;// L286 +____off64_t_24 ___offset_160;// L0 +void * (____pad1_162);// L297 +void * (____pad2_163);// L298 +void * (____pad3_164);// L299 +void * (____pad4_165);// L300 +__size_t_1 ____pad5_166;// L0 +int ___mode_167;// L303 +char ___unused2_168[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -enum ____codecvt_result_94 { -____codecvt_ok_90, -____codecvt_partial_91, -____codecvt_error_92, -____codecvt_noconv_93, +typedef struct ___IO_FILE_99 ___IO_FILE_171;// L310 +typedef struct ___IO_FILE_124 ___IO_FILE_172;// L310 +typedef ____ssize_t_49 (____io_read_fn_181) (void * (____cookie_178), char * (____buf_179), __size_t_1 ____nbytes_180);// L333 +typedef ____ssize_t_49 (____io_write_fn_186) (void * (____cookie_183), const char * (____buf_184), __size_t_1 ____n_185);// L341:L342 +typedef int (____io_seek_fn_192) (void * (____cookie_188), ____off64_t_24 * (____pos_189), int ____w_191);// L350 +typedef int (____io_close_fn_195) (void * (____cookie_194));// L353 +typedef ____gnuc_va_list_86 __va_list_279;// L79 +typedef ____off_t_23 __off_t_281;// L90 +typedef ____off64_t_24 __off_t_283;// L92 +typedef ____ssize_t_49 __ssize_t_285;// L102 +typedef ___G_fpos_t_77 __fpos_t_287;// L110 +typedef ___G_fpos64_t_85 __fpos_t_289;// L112 +extern const char * const __sys_errlist_830[];// L27 +typedef long int __ptrdiff_t_1092;// L143:L324 +typedef long unsigned int __size_t_1093;// L177:L209 +typedef int __wchar_t_1094;// L243:L321 +enum ____anonymous_tag_1098_1099 { +__P_ALL_1095, +__P_PID_1096, +__P_PGID_1097, }; -struct ___IO_FILE_95 { -int ___flags_96;// L242 -char * (___IO_read_ptr_97);// L247 -char * (___IO_read_end_98);// L248 -char * (___IO_read_base_99);// L249 -char * (___IO_write_base_100);// L250 -char * (___IO_write_ptr_101);// L251 -char * (___IO_write_end_102);// L252 -char * (___IO_buf_base_103);// L253 -char * (___IO_buf_end_104);// L254 -char * (___IO_save_base_105);// L256 -char * (___IO_backup_base_106);// L257 -char * (___IO_save_end_107);// L258 -struct ___IO_marker_86 * (___markers_108);// L260 -struct __forward_tag_reference_57 * (___chain_109);// L0 -int ___fileno_110;// L264 -int ___flags2_111;// L268 -____off_t_23 ___old_offset_112;// L0 -unsigned short ___cur_column_113;// L274 -signed char ___vtable_offset_114;// L275 -char ___shortbuf_115[1];// L276 -___IO_lock_t_84 * (___lock_116);// L0 +typedef enum ____anonymous_tag_1098_1099 __idtype_t_1100;// L50:L55 +typedef unsigned char ____u_char_1101;// L30 +typedef unsigned short int ____u_short_1102;// L31 +typedef unsigned int ____u_int_1103;// L32 +typedef unsigned long int ____u_long_1104;// L33 +typedef signed char ____int8_t_1105;// L36 +typedef unsigned char ____uint8_t_1106;// L37 +typedef signed short int ____int16_t_1107;// L38 +typedef unsigned short int ____uint16_t_1108;// L39 +typedef signed int ____int32_t_1109;// L40 +typedef unsigned int ____uint32_t_1110;// L41 +typedef signed long int ____int64_t_1111;// L43 +typedef unsigned long int ____uint64_t_1112;// L44 +typedef long int ____quad_t_1113;// L52 +typedef unsigned long int ____u_quad_t_1114;// L53 +typedef unsigned long int ____dev_t_1115;// L109:L124 +typedef unsigned int ____uid_t_1116;// L92:L125 +typedef unsigned int ____gid_t_1117;// L92:L126 +typedef unsigned long int ____ino_t_1118;// L94:L127 +typedef unsigned long int ____ino64_t_1119;// L109:L128 +typedef unsigned int ____mode_t_1120;// L92:L129 +typedef unsigned long int ____nlink_t_1121;// L94:L130 +typedef long int ____off_t_1122;// L93:L131 +typedef long int ____off64_t_1123;// L108:L132 +typedef int ____pid_t_1124;// L91:L133 +struct ____anonymous_tag_1125_1126 { +int ____val_1127[2];// L72 }; -struct ___IO_FILE_119 { -int ___flags_120;// L242 -char * (___IO_read_ptr_121);// L247 -char * (___IO_read_end_122);// L248 -char * (___IO_read_base_123);// L249 -char * (___IO_write_base_124);// L250 -char * (___IO_write_ptr_125);// L251 -char * (___IO_write_end_126);// L252 -char * (___IO_buf_base_127);// L253 -char * (___IO_buf_end_128);// L254 -char * (___IO_save_base_129);// L256 -char * (___IO_backup_base_130);// L257 -char * (___IO_save_end_131);// L258 -struct ___IO_marker_86 * (___markers_132);// L260 -struct __forward_tag_reference_57 * (___chain_133);// L0 -int ___fileno_134;// L264 -int ___flags2_135;// L268 -____off_t_23 ___old_offset_136;// L0 -unsigned short ___cur_column_137;// L274 -signed char ___vtable_offset_138;// L275 -char ___shortbuf_139[1];// L276 -___IO_lock_t_84 * (___lock_140);// L0 -____off64_t_24 ___offset_142;// L0 -void * (____pad1_143);// L297 -void * (____pad2_144);// L298 -void * (____pad3_145);// L299 -void * (____pad4_146);// L300 -__size_t_1 ____pad5_147;// L0 -int ___mode_148;// L303 -char ___unused2_149[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +typedef struct ____anonymous_tag_1125_1126 ____fsid_t_1128;// L72:L134 +typedef long int ____clock_t_1129;// L93:L135 +typedef unsigned long int ____rlim_t_1130;// L94:L136 +typedef unsigned long int ____rlim64_t_1131;// L109:L137 +typedef unsigned int ____id_t_1132;// L92:L138 +typedef long int ____time_t_1133;// L93:L139 +typedef unsigned int ____useconds_t_1134;// L92:L140 +typedef long int ____suseconds_t_1135;// L93:L141 +typedef int ____daddr_t_1136;// L91:L143 +typedef int ____key_t_1137;// L91:L144 +typedef int ____clockid_t_1138;// L91:L147 +typedef void * (____timer_t_1139);// L70:L150 +typedef long int ____blksize_t_1140;// L93:L153 +typedef long int ____blkcnt_t_1141;// L93:L158 +typedef long int ____blkcnt64_t_1142;// L108:L159 +typedef unsigned long int ____fsblkcnt_t_1143;// L94:L162 +typedef unsigned long int ____fsblkcnt64_t_1144;// L109:L163 +typedef unsigned long int ____fsfilcnt_t_1145;// L94:L166 +typedef unsigned long int ____fsfilcnt64_t_1146;// L109:L167 +typedef long int ____fsword_t_1147;// L93:L170 +typedef long int ____ssize_t_1148;// L110:L172 +typedef long int ____syscall_slong_t_1149;// L93:L175 +typedef unsigned long int ____syscall_ulong_t_1150;// L94:L177 +typedef ____off64_t_1123 ____loff_t_1151;// L181 +typedef ____quad_t_1113 * (____qaddr_t_1153);// L182 +typedef char * (____caddr_t_1154);// L183 +typedef long int ____intptr_t_1155;// L110:L186 +typedef unsigned int ____socklen_t_1156;// L92:L189 +struct ____anonymous_tag_1166_1167 { +unsigned int ____w_termsig_1168 : 7;// L72 +unsigned int ____w_coredump_1169 : 1;// L73 +unsigned int ____w_retcode_1170 : 8;// L74 +unsigned int __anon_id_0_1171 : 16;// L75 }; -struct ___IO_FILE_complete_150 { -struct ___IO_FILE_95 ___file_151;// L286 -____off64_t_24 ___offset_153;// L0 -void * (____pad1_154);// L297 -void * (____pad2_155);// L298 -void * (____pad3_156);// L299 -void * (____pad4_157);// L300 -__size_t_1 ____pad5_158;// L0 -int ___mode_159;// L303 -char ___unused2_160[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +struct ____anonymous_tag_1172_1173 { +unsigned int ____w_stopval_1174 : 8;// L87 +unsigned int ____w_stopsig_1175 : 8;// L88 +unsigned int __anon_id_1_1176 : 16;// L89 }; -typedef struct ___IO_FILE_95 ___IO_FILE_163;// L310 -typedef struct ___IO_FILE_119 ___IO_FILE_164;// L310 -typedef ____ssize_t_49 (____io_read_fn_173) (void * (____cookie_170), char * (____buf_171), __size_t_1 ____nbytes_172);// L333 -typedef ____ssize_t_49 (____io_write_fn_177) (void * (____cookie_174), const char * (____buf_175), __size_t_1 ____n_176);// L341:L342 -typedef int (____io_seek_fn_181) (void * (____cookie_178), ____off64_t_24 * (____pos_179), int ____w_180);// L350 -typedef int (____io_close_fn_183) (void * (____cookie_182));// L353 -typedef ___G_fpos_t_75 __fpos_t_248;// L110 -typedef ___G_fpos64_t_81 __fpos_t_250;// L112 -typedef int __wchar_t_704;// L243:L321 -typedef int __wchar_t_705;// L243:L321 -struct ____anonymous_tag_706_707 { -int __quot_708;// L99 -int __rem_709;// L100 +union __wait_1177 { +int __w_status_1178;// L68 +struct ____anonymous_tag_1166_1167 ____wait_terminated_1179;// L69 +struct ____anonymous_tag_1172_1173 ____wait_stopped_1180;// L84 }; -typedef struct ____anonymous_tag_706_707 __div_t_710;// L97:L101 -struct ____anonymous_tag_711_712 { -long int __quot_713;// L107 -long int __rem_714;// L108 +union ____anonymous_tag_1181_1182 { +union __wait_1177 * (____uptr_1183);// L69 +int * (____iptr_1184);// L70 }; -typedef struct ____anonymous_tag_711_712 __ldiv_t_715;// L105:L109 -struct ____anonymous_tag_716_717 { -long long int __quot_718;// L119 -long long int __rem_719;// L120 +typedef union ____anonymous_tag_1181_1182 ____WAIT_STATUS_1185;// L67:L71 +struct ____anonymous_tag_1186_1187 { +int __quot_1188;// L99 +int __rem_1189;// L100 }; -typedef struct ____anonymous_tag_716_717 __lldiv_t_720;// L117:L121 -typedef int (* (____compar_fn_t_803)) (const void *, const void *);// L741 +typedef struct ____anonymous_tag_1186_1187 __div_t_1190;// L97:L101 +struct ____anonymous_tag_1191_1192 { +long int __quot_1193;// L107 +long int __rem_1194;// L108 +}; +typedef struct ____anonymous_tag_1191_1192 __ldiv_t_1195;// L105:L109 +struct ____anonymous_tag_1196_1197 { +long long int __quot_1198;// L119 +long long int __rem_1199;// L120 +}; +typedef struct ____anonymous_tag_1196_1197 __lldiv_t_1200;// L117:L121 +typedef unsigned char ____u_char_1264;// L30 +typedef unsigned short int ____u_short_1265;// L31 +typedef unsigned int ____u_int_1266;// L32 +typedef unsigned long int ____u_long_1267;// L33 +typedef signed char ____int8_t_1268;// L36 +typedef unsigned char ____uint8_t_1269;// L37 +typedef signed short int ____int16_t_1270;// L38 +typedef unsigned short int ____uint16_t_1271;// L39 +typedef signed int ____int32_t_1272;// L40 +typedef unsigned int ____uint32_t_1273;// L41 +typedef signed long int ____int64_t_1274;// L43 +typedef unsigned long int ____uint64_t_1275;// L44 +typedef long int ____quad_t_1276;// L52 +typedef unsigned long int ____u_quad_t_1277;// L53 +typedef unsigned long int ____dev_t_1278;// L109:L124 +typedef unsigned int ____uid_t_1279;// L92:L125 +typedef unsigned int ____gid_t_1280;// L92:L126 +typedef unsigned long int ____ino_t_1281;// L94:L127 +typedef unsigned long int ____ino64_t_1282;// L109:L128 +typedef unsigned int ____mode_t_1283;// L92:L129 +typedef unsigned long int ____nlink_t_1284;// L94:L130 +typedef long int ____off_t_1285;// L93:L131 +typedef long int ____off64_t_1286;// L108:L132 +typedef int ____pid_t_1287;// L91:L133 +struct ____anonymous_tag_1288_1289 { +int ____val_1290[2];// L72 +}; +typedef struct ____anonymous_tag_1288_1289 ____fsid_t_1291;// L72:L134 +typedef long int ____clock_t_1292;// L93:L135 +typedef unsigned long int ____rlim_t_1293;// L94:L136 +typedef unsigned long int ____rlim64_t_1294;// L109:L137 +typedef unsigned int ____id_t_1295;// L92:L138 +typedef long int ____time_t_1296;// L93:L139 +typedef unsigned int ____useconds_t_1297;// L92:L140 +typedef long int ____suseconds_t_1298;// L93:L141 +typedef int ____daddr_t_1299;// L91:L143 +typedef int ____key_t_1300;// L91:L144 +typedef int ____clockid_t_1301;// L91:L147 +typedef void * (____timer_t_1302);// L70:L150 +typedef long int ____blksize_t_1303;// L93:L153 +typedef long int ____blkcnt_t_1304;// L93:L158 +typedef long int ____blkcnt64_t_1305;// L108:L159 +typedef unsigned long int ____fsblkcnt_t_1306;// L94:L162 +typedef unsigned long int ____fsblkcnt64_t_1307;// L109:L163 +typedef unsigned long int ____fsfilcnt_t_1308;// L94:L166 +typedef unsigned long int ____fsfilcnt64_t_1309;// L109:L167 +typedef long int ____fsword_t_1310;// L93:L170 +typedef long int ____ssize_t_1311;// L110:L172 +typedef long int ____syscall_slong_t_1312;// L93:L175 +typedef unsigned long int ____syscall_ulong_t_1313;// L94:L177 +typedef ____off64_t_1286 ____loff_t_1314;// L181 +typedef ____quad_t_1276 * (____qaddr_t_1316);// L182 +typedef char * (____caddr_t_1317);// L183 +typedef long int ____intptr_t_1318;// L110:L186 +typedef unsigned int ____socklen_t_1319;// L92:L189 +typedef ____u_char_2 __u_char_1320;// L33 +typedef ____u_char_1101 __u_char_1321;// L33 +typedef ____u_char_1264 __u_char_1322;// L33 +typedef ____u_short_3 __u_short_1323;// L34 +typedef ____u_short_1102 __u_short_1324;// L34 +typedef ____u_short_1265 __u_short_1325;// L34 +typedef ____u_int_4 __u_int_1326;// L35 +typedef ____u_int_1103 __u_int_1327;// L35 +typedef ____u_int_1266 __u_int_1328;// L35 +typedef ____u_long_5 __u_long_1329;// L36 +typedef ____u_long_1104 __u_long_1330;// L36 +typedef ____u_long_1267 __u_long_1331;// L36 +typedef ____quad_t_14 __quad_t_1332;// L37 +typedef ____quad_t_1113 __quad_t_1333;// L37 +typedef ____quad_t_1276 __quad_t_1334;// L37 +typedef ____u_quad_t_15 __u_quad_t_1335;// L38 +typedef ____u_quad_t_1114 __u_quad_t_1336;// L38 +typedef ____u_quad_t_1277 __u_quad_t_1337;// L38 +typedef ____fsid_t_29 __fsid_t_1338;// L39 +typedef ____fsid_t_1128 __fsid_t_1339;// L39 +typedef ____fsid_t_1291 __fsid_t_1340;// L39 +typedef ____loff_t_52 __loff_t_1342;// L44 +typedef ____loff_t_1151 __loff_t_1343;// L44 +typedef ____loff_t_1314 __loff_t_1344;// L44 +typedef ____loff_t_52 __loff_t_1346;// L44 +typedef ____loff_t_1151 __loff_t_1347;// L44 +typedef ____loff_t_1314 __loff_t_1348;// L44 +typedef ____ino64_t_20 __ino_t_1350;// L50 +typedef ____ino64_t_1119 __ino_t_1351;// L50 +typedef ____ino64_t_1282 __ino_t_1352;// L50 +typedef ____ino_t_19 __ino_t_1354;// L48 +typedef ____ino_t_1118 __ino_t_1355;// L48 +typedef ____ino_t_1281 __ino_t_1356;// L48 +typedef ____dev_t_16 __dev_t_1358;// L60 +typedef ____dev_t_1115 __dev_t_1359;// L60 +typedef ____dev_t_1278 __dev_t_1360;// L60 +typedef ____gid_t_18 __gid_t_1362;// L65 +typedef ____gid_t_1117 __gid_t_1363;// L65 +typedef ____gid_t_1280 __gid_t_1364;// L65 +typedef ____gid_t_18 __gid_t_1366;// L65 +typedef ____gid_t_1117 __gid_t_1367;// L65 +typedef ____gid_t_1280 __gid_t_1368;// L65 +typedef ____mode_t_21 __mode_t_1370;// L70 +typedef ____mode_t_1120 __mode_t_1371;// L70 +typedef ____mode_t_1283 __mode_t_1372;// L70 +typedef ____nlink_t_22 __nlink_t_1374;// L75 +typedef ____nlink_t_1121 __nlink_t_1375;// L75 +typedef ____nlink_t_1284 __nlink_t_1376;// L75 +typedef ____uid_t_17 __uid_t_1378;// L80 +typedef ____uid_t_1116 __uid_t_1379;// L80 +typedef ____uid_t_1279 __uid_t_1380;// L80 +typedef ____uid_t_17 __uid_t_1382;// L80 +typedef ____uid_t_1116 __uid_t_1383;// L80 +typedef ____uid_t_1279 __uid_t_1384;// L80 +typedef ____off64_t_1123 __off_t_1386;// L88 +typedef ____off64_t_1286 __off_t_1387;// L88 +typedef ____off_t_1122 __off_t_1389;// L86 +typedef ____off_t_1285 __off_t_1390;// L86 +typedef ____pid_t_25 __pid_t_1392;// L98 +typedef ____pid_t_1124 __pid_t_1393;// L98 +typedef ____pid_t_1287 __pid_t_1394;// L98 +typedef ____pid_t_1124 __pid_t_1396;// L98 +typedef ____pid_t_1287 __pid_t_1397;// L98 +typedef ____id_t_33 __id_t_1399;// L104 +typedef ____id_t_1132 __id_t_1400;// L104 +typedef ____id_t_1295 __id_t_1401;// L104 +typedef ____ssize_t_1148 __ssize_t_1403;// L109 +typedef ____ssize_t_1311 __ssize_t_1404;// L109 +typedef ____daddr_t_37 __daddr_t_1406;// L115 +typedef ____daddr_t_1136 __daddr_t_1407;// L115 +typedef ____daddr_t_1299 __daddr_t_1408;// L115 +typedef ____caddr_t_55 __caddr_t_1410;// L116 +typedef ____caddr_t_1154 __caddr_t_1411;// L116 +typedef ____caddr_t_1317 __caddr_t_1412;// L116 +typedef ____key_t_38 __key_t_1413;// L122 +typedef ____key_t_1137 __key_t_1414;// L122 +typedef ____key_t_1300 __key_t_1415;// L122 +typedef ____key_t_38 __key_t_1417;// L122 +typedef ____key_t_1137 __key_t_1418;// L122 +typedef ____key_t_1300 __key_t_1419;// L122 +typedef ____clock_t_30 __clock_t_1421;// L59 +typedef ____clock_t_1129 __clock_t_1422;// L59 +typedef ____clock_t_1292 __clock_t_1423;// L59 +typedef ____time_t_34 __time_t_1425;// L75 +typedef ____time_t_1133 __time_t_1426;// L75 +typedef ____time_t_1296 __time_t_1427;// L75 +typedef ____clockid_t_39 __clockid_t_1429;// L91 +typedef ____clockid_t_1138 __clockid_t_1430;// L91 +typedef ____clockid_t_1301 __clockid_t_1431;// L91 +typedef ____timer_t_40 __timer_t_1433;// L103 +typedef ____timer_t_1139 __timer_t_1434;// L103 +typedef ____timer_t_1302 __timer_t_1435;// L103 +typedef unsigned long int __ulong_1437;// L150 +typedef unsigned long int __ulong_1438;// L150 +typedef unsigned long int __ulong_1439;// L150 +typedef unsigned short int __ushort_1440;// L151 +typedef unsigned int __uint_1441;// L152 +typedef int __int8_t_1442;// L188:L194 +typedef int __int16_t_1443;// L188:L195 +typedef int __int32_t_1444;// L188:L196 +typedef int __int64_t_1445;// L188:L197 +typedef unsigned int __u_int8_t_1446;// L190:L200 +typedef unsigned int __u_int16_t_1447;// L190:L201 +typedef unsigned int __u_int32_t_1448;// L190:L202 +typedef unsigned int __u_int64_t_1449;// L190:L203 +typedef int __register_t_1450;// L205 +typedef int ____sig_atomic_t_1460;// L22 +struct ____anonymous_tag_1461_1462 { +unsigned long int ____val_1463[( 1024 / ( 8 * sizeof(unsigned long) ) )];// L29 +}; +typedef struct ____anonymous_tag_1461_1462 ____sigset_t_1464;// L27:L30 +typedef ____sigset_t_1464 __sigset_t_1465;// L37 +struct __timespec_1466 { +____time_t_34 __tv_sec_1467;// L0 +____time_t_1133 __tv_sec_1468;// L0 +____time_t_1296 __tv_sec_1469;// L0 +____syscall_slong_t_50 __tv_nsec_1471;// L0 +____syscall_slong_t_1149 __tv_nsec_1472;// L0 +____syscall_slong_t_1312 __tv_nsec_1473;// L0 +}; +struct __timeval_1476 { +____time_t_34 __tv_sec_1477;// L0 +____time_t_1133 __tv_sec_1478;// L0 +____time_t_1296 __tv_sec_1479;// L0 +____suseconds_t_36 __tv_usec_1481;// L0 +____suseconds_t_1135 __tv_usec_1482;// L0 +____suseconds_t_1298 __tv_usec_1483;// L0 +}; +typedef ____suseconds_t_36 __suseconds_t_1486;// L48 +typedef ____suseconds_t_1135 __suseconds_t_1487;// L48 +typedef ____suseconds_t_1298 __suseconds_t_1488;// L48 +typedef long int ____fd_mask_1490;// L54 +typedef long int ____fd_mask_1491;// L54 +struct ____anonymous_tag_1492_1493 { +____fd_mask_1490 ____fds_bits_1494[1024 / ( 8 * ( int ) sizeof(long) )];// L0 +____fd_mask_1491 ____fds_bits_1496[1024 / ( 8 * ( int ) sizeof(long) )];// L0 +}; +typedef struct ____anonymous_tag_1492_1493 __fd_set_1499;// L64:L75 +typedef ____fd_mask_1490 __fd_mask_1500;// L82 +typedef ____fd_mask_1491 __fd_mask_1501;// L82 +typedef ____blksize_t_41 __blksize_t_1549;// L228 +typedef ____blksize_t_1140 __blksize_t_1550;// L228 +typedef ____blksize_t_1303 __blksize_t_1551;// L228 +typedef ____blkcnt_t_42 __blkcnt_t_1553;// L235 +typedef ____blkcnt_t_1141 __blkcnt_t_1554;// L235 +typedef ____blkcnt_t_1304 __blkcnt_t_1555;// L235 +typedef ____fsblkcnt_t_44 __fsblkcnt_t_1557;// L239 +typedef ____fsblkcnt_t_1143 __fsblkcnt_t_1558;// L239 +typedef ____fsblkcnt_t_1306 __fsblkcnt_t_1559;// L239 +typedef ____blkcnt64_t_43 __blkcnt_t_1561;// L248 +typedef ____blkcnt64_t_1142 __blkcnt_t_1562;// L248 +typedef ____blkcnt64_t_1305 __blkcnt_t_1563;// L248 +typedef ____fsblkcnt64_t_45 __fsblkcnt_t_1565;// L252 +typedef ____fsblkcnt64_t_1144 __fsblkcnt_t_1566;// L252 +typedef ____fsblkcnt64_t_1307 __fsblkcnt_t_1567;// L252 +typedef ____fsfilcnt_t_46 __fsfilcnt_t_1569;// L243 +typedef ____fsfilcnt_t_1145 __fsfilcnt_t_1570;// L243 +typedef ____fsfilcnt_t_1308 __fsfilcnt_t_1571;// L243 +typedef ____fsfilcnt64_t_47 __fsfilcnt_t_1573;// L256 +typedef ____fsfilcnt64_t_1146 __fsfilcnt_t_1574;// L256 +typedef ____fsfilcnt64_t_1309 __fsfilcnt_t_1575;// L256 +typedef unsigned long int __pthread_t_1577;// L60 +union __pthread_attr_t_1578 { +char ____size_1579[56];// L65 +long int ____align_1580;// L66 +}; +typedef union __pthread_attr_t_1578 __pthread_attr_t_1581;// L69 +struct ____pthread_internal_list_1583 { +struct __forward_tag_reference_1582 * (____prev_1584);// L0 +struct __forward_tag_reference_1582 * (____next_1585);// L0 +}; +typedef struct ____pthread_internal_list_1583 ____pthread_list_t_1586;// L75:L79 +typedef struct ____pthread_internal_list_1583 ____pthread_list_t_1587;// L75:L79 +struct ____pthread_mutex_s_1588 { +int ____lock_1589;// L94 +unsigned int ____count_1590;// L95 +int ____owner_1591;// L96 +unsigned int ____nusers_1592;// L98 +int ____kind_1593;// L102 +short ____spins_1594;// L104 +short ____elision_1595;// L105 +____pthread_list_t_1586 ____list_1596;// L0 +____pthread_list_t_1587 ____list_1597;// L0 +}; +union ____anonymous_tag_1598_1599 { +struct ____pthread_mutex_s_1588 ____data_1600;// L92 +char ____size_1601[40];// L126 +long int ____align_1602;// L127 +}; +typedef union ____anonymous_tag_1598_1599 __pthread_mutex_t_1603;// L90:L128 +union ____anonymous_tag_1604_1605 { +char ____size_1606[4];// L132 +int ____align_1607;// L133 +}; +typedef union ____anonymous_tag_1604_1605 __pthread_mutexattr_t_1608;// L130:L134 +typedef int (* (____compar_fn_t_1740)) (const void *, const void *);// L741 -struct __forward_tag_reference_57 { // generated union of struct variations +struct __forward_tag_reference_89 { // generated union of struct variations union { -struct ___IO_FILE_95 ___IO_FILE_95; -struct ___IO_FILE_119 ___IO_FILE_119; +struct ___IO_marker_90 ___IO_marker_90; }; }; -struct __forward_tag_reference_85 { // generated union of struct variations +struct __forward_tag_reference_1582 { // generated union of struct variations union { -struct ___IO_marker_86 ___IO_marker_86; }; }; -struct __forward_tag_reference_83 { // generated union of struct variations +struct __forward_tag_reference_58 { // generated union of struct variations union { +struct ___IO_FILE_99 ___IO_FILE_99; +struct ___IO_FILE_124 ___IO_FILE_124; }; }; -struct __forward_tag_reference_166 { // generated union of struct variations +struct __forward_tag_reference_87 { // generated union of struct variations +union { +}; +}; + +struct __forward_tag_reference_174 { // generated union of struct variations union { }; }; @@ -838,350 +2077,911 @@ union { // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_57 ;// L0 +struct __forward_tag_reference_58 ;// L0 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_83 ;// L0 -struct __forward_tag_reference_83 ;// L0 -struct __forward_tag_reference_57 ;// L0 +struct __forward_tag_reference_87 ;// L0 +struct __forward_tag_reference_87 ;// L0 +struct __forward_tag_reference_58 ;// L0 // typedef moved to top of scope -struct ___IO_marker_86 ;// L156 -enum ____codecvt_result_94 ;// L176 -struct ___IO_FILE_95 ;// L241 +struct ___IO_marker_90 ;// L156 +enum ____codecvt_result_98 ;// L176 +struct ___IO_FILE_99 ;// L241 -struct ___IO_FILE_119 ;// L241 -struct ___IO_FILE_complete_150 ;// L241 +struct ___IO_FILE_124 ;// L241 +struct ___IO_FILE_complete_157 ;// L241 // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_166 ;// L0 -extern struct __forward_tag_reference_166 ___IO_2_1_stdin__167;// L315 -extern struct __forward_tag_reference_166 ___IO_2_1_stdout__168;// L316 -extern struct __forward_tag_reference_166 ___IO_2_1_stderr__169;// L317 +struct __forward_tag_reference_174 ;// L0 +extern struct __forward_tag_reference_174 ___IO_2_1_stdin__175;// L315 +extern struct __forward_tag_reference_174 ___IO_2_1_stdout__176;// L316 +extern struct __forward_tag_reference_174 ___IO_2_1_stderr__177;// L317 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern int (____underflow_184) (___IO_FILE_163 *);// L385 -extern int (____underflow_185) (___IO_FILE_164 *);// L385 -extern int (____uflow_186) (___IO_FILE_163 *);// L386 -extern int (____uflow_187) (___IO_FILE_164 *);// L386 -extern int (____overflow_188) (___IO_FILE_163 *, int );// L387 -extern int (____overflow_189) (___IO_FILE_164 *, int );// L387 -extern int (___IO_getc_193) (___IO_FILE_163 * (____fp_190));// L429 -extern int (___IO_getc_194) (___IO_FILE_164 * (____fp_191));// L429 -extern int (___IO_putc_199) (int ____c_195, ___IO_FILE_163 * (____fp_196));// L430 -extern int (___IO_putc_200) (int ____c_195, ___IO_FILE_164 * (____fp_197));// L430 -extern int (___IO_feof_204) (___IO_FILE_163 * (____fp_201));// L431 -extern int (___IO_feof_205) (___IO_FILE_164 * (____fp_202));// L431 -extern int (___IO_ferror_209) (___IO_FILE_163 * (____fp_206));// L432 -extern int (___IO_ferror_210) (___IO_FILE_164 * (____fp_207));// L432 -extern int (___IO_peekc_locked_214) (___IO_FILE_163 * (____fp_211));// L434 -extern int (___IO_peekc_locked_215) (___IO_FILE_164 * (____fp_212));// L434 -extern void (___IO_flockfile_216) (___IO_FILE_163 *);// L440 -extern void (___IO_flockfile_217) (___IO_FILE_164 *);// L440 -extern void (___IO_funlockfile_218) (___IO_FILE_163 *);// L441 -extern void (___IO_funlockfile_219) (___IO_FILE_164 *);// L441 -extern int (___IO_ftrylockfile_220) (___IO_FILE_163 *);// L442 -extern int (___IO_ftrylockfile_221) (___IO_FILE_164 *);// L442 -extern int (___IO_vfscanf_222) (___IO_FILE_163 * __restrict , const char * __restrict , ____gnuc_va_list_82 , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_224) (___IO_FILE_164 * __restrict , const char * __restrict , ____gnuc_va_list_82 , int * __restrict );// L459:L460 - - -extern int (___IO_vfprintf_231) (___IO_FILE_163 * __restrict , const char * __restrict , ____gnuc_va_list_82 );// L461:L462 -extern int (___IO_vfprintf_233) (___IO_FILE_164 * __restrict , const char * __restrict , ____gnuc_va_list_82 );// L461:L462 - -extern ____ssize_t_49 (___IO_padn_238) (___IO_FILE_163 *, int , ____ssize_t_49 );// L463 -extern ____ssize_t_49 (___IO_padn_239) (___IO_FILE_164 *, int , ____ssize_t_49 );// L463 -extern __size_t_1 (___IO_sgetn_240) (___IO_FILE_163 *, void *, __size_t_1 );// L464 -extern __size_t_1 (___IO_sgetn_241) (___IO_FILE_164 *, void *, __size_t_1 );// L464 -extern ____off64_t_24 (___IO_seekoff_242) (___IO_FILE_163 *, ____off64_t_24 , int , int );// L466 -extern ____off64_t_24 (___IO_seekoff_243) (___IO_FILE_164 *, ____off64_t_24 , int , int );// L466 -extern ____off64_t_24 (___IO_seekpos_244) (___IO_FILE_163 *, ____off64_t_24 , int );// L467 -extern ____off64_t_24 (___IO_seekpos_245) (___IO_FILE_164 *, ____off64_t_24 , int );// L467 -extern void (___IO_free_backup_area_246) (___IO_FILE_163 *);// L469 -extern void (___IO_free_backup_area_247) (___IO_FILE_164 *);// L469 +extern int (____underflow_196) (___IO_FILE_171 *);// L385 +extern int (____underflow_197) (___IO_FILE_172 *);// L385 +extern int (____uflow_199) (___IO_FILE_171 *);// L386 +extern int (____uflow_200) (___IO_FILE_172 *);// L386 +extern int (____overflow_202) (___IO_FILE_171 *, int );// L387 +extern int (____overflow_203) (___IO_FILE_172 *, int );// L387 +extern int (___IO_getc_208) (___IO_FILE_171 * (____fp_205));// L429 +extern int (___IO_getc_209) (___IO_FILE_172 * (____fp_206));// L429 +extern int (___IO_putc_215) (int ____c_211, ___IO_FILE_171 * (____fp_212));// L430 +extern int (___IO_putc_216) (int ____c_211, ___IO_FILE_172 * (____fp_213));// L430 +extern int (___IO_feof_221) (___IO_FILE_171 * (____fp_218));// L431 +extern int (___IO_feof_222) (___IO_FILE_172 * (____fp_219));// L431 +extern int (___IO_ferror_227) (___IO_FILE_171 * (____fp_224));// L432 +extern int (___IO_ferror_228) (___IO_FILE_172 * (____fp_225));// L432 +extern int (___IO_peekc_locked_233) (___IO_FILE_171 * (____fp_230));// L434 +extern int (___IO_peekc_locked_234) (___IO_FILE_172 * (____fp_231));// L434 +extern void (___IO_flockfile_236) (___IO_FILE_171 *);// L440 +extern void (___IO_flockfile_237) (___IO_FILE_172 *);// L440 +extern void (___IO_funlockfile_239) (___IO_FILE_171 *);// L441 +extern void (___IO_funlockfile_240) (___IO_FILE_172 *);// L441 +extern int (___IO_ftrylockfile_242) (___IO_FILE_171 *);// L442 +extern int (___IO_ftrylockfile_243) (___IO_FILE_172 *);// L442 +extern int (___IO_vfscanf_245) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_247) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_251) (___IO_FILE_171 * __restrict , const char * __restrict , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_252) (___IO_FILE_172 * __restrict , const char * __restrict , int * __restrict );// L459:L460 +extern int (___IO_vfprintf_254) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 +extern int (___IO_vfprintf_256) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 +extern int (___IO_vfprintf_260) ();// L461:L462 +extern ____ssize_t_49 (___IO_padn_261) (___IO_FILE_171 *, int , ____ssize_t_49 );// L463 +extern ____ssize_t_49 (___IO_padn_262) (___IO_FILE_172 *, int , ____ssize_t_49 );// L463 +extern __size_t_1 (___IO_sgetn_265) (___IO_FILE_171 *, void *, __size_t_1 );// L464 +extern __size_t_1 (___IO_sgetn_266) (___IO_FILE_172 *, void *, __size_t_1 );// L464 +extern ____off64_t_24 (___IO_seekoff_268) (___IO_FILE_171 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekoff_269) (___IO_FILE_172 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekpos_272) (___IO_FILE_171 *, ____off64_t_24 , int );// L467 +extern ____off64_t_24 (___IO_seekpos_273) (___IO_FILE_172 *, ____off64_t_24 , int );// L467 +extern void (___IO_free_backup_area_276) (___IO_FILE_171 *);// L469 +extern void (___IO_free_backup_area_277) (___IO_FILE_172 *);// L469 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern struct ___IO_FILE_95 * (__stdin_252);// L168 -extern struct ___IO_FILE_119 * (__stdin_253);// L168 -extern struct ___IO_FILE_95 * (__stdout_254);// L169 -extern struct ___IO_FILE_119 * (__stdout_255);// L169 -extern struct ___IO_FILE_95 * (__stderr_256);// L170 -extern struct ___IO_FILE_119 * (__stderr_257);// L170 -extern int (__remove_259) (const char * (____filename_258));// L178 -extern int (__rename_262) (const char * (____old_260), const char * (____new_261));// L180 -extern __FILE_58 * ((__tmpfile_263) (void ));// L195 -extern __FILE_58 * ((__tmpfile_269) (void ));// L198 -extern __FILE_58 * ((__tmpfile_267) (void ));// L198 -extern __FILE_58 * ((__tmpfile_265) (void ));// L195 -extern char * ((__tmpnam_272) (char * (____s_271)));// L209 -extern char * ((__tmpnam_273) (char * (____s_271)));// L209 -extern int (__fclose_276) (__FILE_58 * (____stream_274));// L237 -extern int (__fflush_280) (__FILE_58 * (____stream_278));// L242 -extern __FILE_58 * ((__fopen_283) (const char * __restrict ____filename_281, const char * __restrict ____modes_282));// L272:L273 -extern __FILE_58 * ((__fopen_285) (const char * __restrict ____filename_281, const char * __restrict ____modes_282));// L272:L273 -extern __FILE_58 * ((__fopen_293) (const char * __restrict ____filename_291, const char * __restrict ____modes_292));// L283:L285 -extern __FILE_58 * ((__fopen_295) (const char * __restrict ____filename_291, const char * __restrict ____modes_292));// L283:L285 -extern __FILE_58 * ((__freopen_301) (const char * __restrict ____filename_287, const char * __restrict ____modes_288, __FILE_58 * __restrict ____stream_289));// L278:L280 -extern __FILE_58 * ((__freopen_307) (const char * __restrict ____filename_297, const char * __restrict ____modes_298, __FILE_58 * __restrict ____stream_299));// L286:L289 -extern __FILE_58 * ((__freopen_305) (const char * __restrict ____filename_297, const char * __restrict ____modes_298, __FILE_58 * __restrict ____stream_299));// L286:L289 -extern __FILE_58 * ((__freopen_303) (const char * __restrict ____filename_287, const char * __restrict ____modes_288, __FILE_58 * __restrict ____stream_289));// L278:L280 -extern void (__setbuf_312) (__FILE_58 * __restrict ____stream_309, char * __restrict ____buf_311);// L332 -extern int (__setvbuf_318) (__FILE_58 * __restrict ____stream_313, char * __restrict ____buf_315, int ____modes_316, __size_t_1 ____n_317);// L336:L337 -extern int (__fprintf_322) (__FILE_58 * __restrict ____stream_319, const char * __restrict ____format_321, ... );// L356:L357 -extern int (__printf_324) (const char * __restrict ____format_323, ... );// L362 -extern int (__sprintf_327) (char * __restrict ____s_325, const char * __restrict ____format_326, ... );// L364:L365 -extern int (__vfprintf_333) (__FILE_58 * __restrict ____s_328, const char * __restrict ____format_330, ____gnuc_va_list_82 ____arg_331);// L371:L372 -extern int (__vprintf_340) (const char * __restrict ____format_337, ____gnuc_va_list_82 ____arg_338);// L377 -extern int (__vsprintf_346) (char * __restrict ____s_342, const char * __restrict ____format_343, ____gnuc_va_list_82 ____arg_344);// L379:L380 -extern int (__snprintf_350) (char * __restrict ____s_347, __size_t_1 ____maxlen_348, const char * __restrict ____format_349, ... );// L386:L388 -extern int (__vsnprintf_356) (char * __restrict ____s_351, __size_t_1 ____maxlen_352, const char * __restrict ____format_353, ____gnuc_va_list_82 ____arg_354);// L390:L392 -extern int (__fscanf_360) (__FILE_58 * __restrict ____stream_357, const char * __restrict ____format_359, ... );// L425:L426 -extern int (__fscanf_362) (__FILE_58 * __restrict ____stream_357, const char * __restrict ____format_359, ... );// L425:L426 -extern int (__scanf_365) (const char * __restrict ____format_364, ... );// L431 -extern int (__scanf_366) (const char * __restrict ____format_364, ... );// L431 -extern int (__sscanf_369) (const char * __restrict ____s_367, const char * __restrict ____format_368, ... );// L433:L434 - - - - - -extern int (__vfscanf_392) (__FILE_58 * __restrict ____s_387, const char * __restrict ____format_389, ____gnuc_va_list_82 ____arg_390);// L471:L473 -extern int (__vfscanf_396) (__FILE_58 * __restrict ____s_387, const char * __restrict ____format_389, ____gnuc_va_list_82 ____arg_390);// L471:L473 -extern int (__vscanf_403) (const char * __restrict ____format_400, ____gnuc_va_list_82 ____arg_401);// L479:L480 -extern int (__vscanf_405) (const char * __restrict ____format_400, ____gnuc_va_list_82 ____arg_401);// L479:L480 -extern int (__vsscanf_411) (const char * __restrict ____s_407, const char * __restrict ____format_408, ____gnuc_va_list_82 ____arg_409);// L483:L485 - - - - - -extern int (__fgetc_444) (__FILE_58 * (____stream_442));// L531 -extern int (__getc_447) (__FILE_58 * (____stream_445));// L532 -extern int (__getchar_448) (void );// L538 -extern int (__fputc_452) (int ____c_449, __FILE_58 * (____stream_450));// L573 -extern int (__putc_456) (int ____c_453, __FILE_58 * (____stream_454));// L574 -extern int (__putchar_458) (int ____c_457);// L580 -extern char * ((__fgets_463) (char * __restrict ____s_459, int ____n_460, __FILE_58 * __restrict ____stream_461));// L622:L623 -extern char * ((__fgets_465) (char * __restrict ____s_459, int ____n_460, __FILE_58 * __restrict ____stream_461));// L622:L623 -extern int (__fputs_470) (const char * __restrict ____s_467, __FILE_58 * __restrict ____stream_468);// L689 -extern int (__puts_472) (const char * (____s_471));// L695 -extern int (__ungetc_476) (int ____c_473, __FILE_58 * (____stream_474));// L702 -extern int (__fseek_496) (__FILE_58 * (____stream_492), long int ____off_494, int ____whence_495);// L749 -extern long int (__ftell_499) (__FILE_58 * (____stream_497));// L754 -extern long int (__ftell_501) (__FILE_58 * (____stream_497));// L754 -extern void (__rewind_505) (__FILE_58 * (____stream_503));// L759 -extern int (__fgetpos_510) (__FILE_58 * __restrict ____stream_506, __fpos_t_248 * __restrict ____pos_508);// L798 -extern int (__fgetpos_522) (__FILE_58 * __restrict ____stream_518, __fpos_t_250 * __restrict ____pos_520);// L806:L807 -extern int (__fsetpos_530) (__FILE_58 * (____stream_514), const __fpos_t_248 * (____pos_516));// L803 -extern int (__fsetpos_534) (__FILE_58 * (____stream_526), const __fpos_t_250 * (____pos_528));// L808:L809 -extern void (__clearerr_540) (__FILE_58 * (____stream_538));// L826 -extern int (__feof_543) (__FILE_58 * (____stream_541));// L828 -extern int (__feof_545) (__FILE_58 * (____stream_541));// L828 -extern int (__ferror_549) (__FILE_58 * (____stream_547));// L830 -extern int (__ferror_551) (__FILE_58 * (____stream_547));// L830 -extern void (__perror_554) (const char * (____s_553));// L846 +// typedef moved to top of scope +extern struct ___IO_FILE_99 * (__stdin_291);// L168 +extern struct ___IO_FILE_124 * (__stdin_292);// L168 +extern struct ___IO_FILE_99 * (__stdout_294);// L169 +extern struct ___IO_FILE_124 * (__stdout_295);// L169 +extern struct ___IO_FILE_99 * (__stderr_297);// L170 +extern struct ___IO_FILE_124 * (__stderr_298);// L170 +extern int (__remove_301) (const char * (____filename_300));// L178 +extern int (__rename_304) (const char * (____old_302), const char * (____new_303));// L180 +extern int (__renameat_309) (int ____oldfd_305, const char * (____old_306), int ____newfd_307, const char * (____new_308));// L185:L186 +extern __FILE_59 * ((__tmpfile_310) (void ));// L195 +extern __FILE_59 * ((__tmpfile_316) (void ));// L198 +extern __FILE_59 * ((__tmpfile_314) (void ));// L195 +extern __FILE_59 * ((__tmpfile_312) (void ));// L198 +extern char * ((__tmpnam_319) (char * (____s_318)));// L209 +extern char * ((__tmpnam_320) (char * (____s_318)));// L209 +extern char * ((__tmpnam_r_322) (char * (____s_321)));// L215 +extern char * ((__tmpnam_r_323) (char * (____s_321)));// L215 +extern char * ((__tempnam_326) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 +extern char * ((__tempnam_327) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 +extern int (__fclose_330) (__FILE_59 * (____stream_328));// L237 +extern int (__fclose_332) (__FILE_59 * (____stream_328));// L237 +extern int (__fflush_336) (__FILE_59 * (____stream_334));// L242 +extern int (__fflush_unlocked_340) (__FILE_59 * (____stream_338));// L252 +extern __FILE_59 * ((__fopen_344) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 +extern __FILE_59 * ((__fopen_346) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 +extern __FILE_59 * ((__fopen_354) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 +extern __FILE_59 * ((__fopen_356) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 +extern __FILE_59 * ((__freopen_362) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 +extern __FILE_59 * ((__freopen_368) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 +extern __FILE_59 * ((__freopen_366) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 +extern __FILE_59 * ((__freopen_364) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 +extern __FILE_59 * ((__fdopen_372) (int ____fd_370, const char * (____modes_371)));// L306 +extern __FILE_59 * ((__fdopen_374) (int ____fd_370, const char * (____modes_371)));// L306 +extern __FILE_59 * ((__fmemopen_379) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 +extern __FILE_59 * ((__fmemopen_381) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 +extern __FILE_59 * ((__open_memstream_385) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 +extern __FILE_59 * ((__open_memstream_387) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 +extern void (__setbuf_392) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 +extern void (__setbuf_394) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 +extern int (__setvbuf_401) (__FILE_59 * __restrict ____stream_396, char * __restrict ____buf_398, int ____modes_399, __size_t_1 ____n_400);// L336:L337 +extern void (__setbuffer_407) (__FILE_59 * __restrict ____stream_403, char * __restrict ____buf_405, __size_t_1 ____size_406);// L343:L344 +extern void (__setlinebuf_411) (__FILE_59 * (____stream_409));// L347 +extern int (__fprintf_416) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 +extern int (__fprintf_418) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 +extern int (__printf_421) (const char * __restrict ____format_420, ... );// L362 +extern int (__sprintf_424) (char * __restrict ____s_422, const char * __restrict ____format_423, ... );// L364:L365 +extern int (__vfprintf_430) (__FILE_59 * __restrict ____s_425, const char * __restrict ____format_427, ____gnuc_va_list_86 ____arg_428);// L371:L372 +extern int (__vprintf_437) (const char * __restrict ____format_434, ____gnuc_va_list_86 ____arg_435);// L377 +extern int (__vsprintf_443) (char * __restrict ____s_439, const char * __restrict ____format_440, ____gnuc_va_list_86 ____arg_441);// L379:L380 +extern int (__snprintf_448) (char * __restrict ____s_445, __size_t_1 ____maxlen_446, const char * __restrict ____format_447, ... );// L386:L388 +extern int (__vsnprintf_454) (char * __restrict ____s_449, __size_t_1 ____maxlen_450, const char * __restrict ____format_451, ____gnuc_va_list_86 ____arg_452);// L390:L392 +extern int (__vdprintf_460) (int ____fd_456, const char * __restrict ____fmt_457, ____gnuc_va_list_86 ____arg_458);// L412:L414 +extern int (__dprintf_464) (int ____fd_462, const char * __restrict ____fmt_463, ... );// L415:L416 +extern int (__fscanf_468) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_470) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_472) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_474) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__scanf_477) (const char * __restrict ____format_476, ... );// L431 +extern int (__scanf_478) (const char * __restrict ____format_476, ... );// L431 +extern int (__sscanf_481) (const char * __restrict ____s_479, const char * __restrict ____format_480, ... );// L433:L434 + + + + + + + +extern int (__vfscanf_509) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 +extern int (__vfscanf_513) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 +extern int (__vscanf_520) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 +extern int (__vscanf_522) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 +extern int (__vsscanf_528) (const char * __restrict ____s_524, const char * __restrict ____format_525, ____gnuc_va_list_86 ____arg_526);// L483:L485 + + + + + +extern int (__fgetc_563) (__FILE_59 * (____stream_561));// L531 +extern int (__getc_567) (__FILE_59 * (____stream_565));// L532 +extern int (__getchar_569) (void );// L538 +extern int (__getc_unlocked_572) (__FILE_59 * (____stream_570));// L550 +extern int (__getchar_unlocked_574) (void );// L551 +extern int (__fgetc_unlocked_577) (__FILE_59 * (____stream_575));// L561 +extern int (__fputc_582) (int ____c_579, __FILE_59 * (____stream_580));// L573 +extern int (__fputc_584) (int ____c_579, __FILE_59 * (____stream_580));// L573 +extern int (__putc_589) (int ____c_586, __FILE_59 * (____stream_587));// L574 +extern int (__putchar_592) (int ____c_591);// L580 +extern int (__fputc_unlocked_596) (int ____c_593, __FILE_59 * (____stream_594));// L594 +extern int (__putc_unlocked_601) (int ____c_598, __FILE_59 * (____stream_599));// L602 +extern int (__putchar_unlocked_604) (int ____c_603);// L603 +extern int (__getw_607) (__FILE_59 * (____stream_605));// L610 +extern int (__putw_612) (int ____w_609, __FILE_59 * (____stream_610));// L613 +extern char * ((__fgets_618) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_620) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_622) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_624) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern ____ssize_t_49 (____getdelim_631) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 +extern ____ssize_t_49 (____getdelim_635) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 +extern ____ssize_t_49 (__getdelim_644) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 +extern ____ssize_t_49 (__getdelim_648) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 +extern ____ssize_t_49 (__getline_656) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 +extern ____ssize_t_49 (__getline_660) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 +extern int (__fputs_667) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 +extern int (__fputs_669) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 +extern int (__puts_672) (const char * (____s_671));// L695 +extern int (__ungetc_676) (int ____c_673, __FILE_59 * (____stream_674));// L702 +extern int (__fseek_714) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 +extern int (__fseek_716) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 +extern long int (__ftell_720) (__FILE_59 * (____stream_718));// L754 +extern long int (__ftell_722) (__FILE_59 * (____stream_718));// L754 +extern void (__rewind_726) (__FILE_59 * (____stream_724));// L759 +extern int (__fseeko_733) (__FILE_59 * (____stream_728), ____off_t_23 ____off_730, int ____whence_732);// L773 +extern int (__fseeko_744) (__FILE_59 * (____stream_739), ____off64_t_24 ____off_741, int ____whence_743);// L781:L783 +extern ____off_t_23 (__ftello_758) (__FILE_59 * (____stream_737));// L778 +extern ____off_t_23 (__ftello_750) (__FILE_59 * (____stream_737));// L778 +extern int (__fgetpos_766) (__FILE_59 * __restrict ____stream_762, __fpos_t_287 * __restrict ____pos_764);// L798 +extern ____off64_t_24 (__ftello_754) (__FILE_59 * (____stream_748));// L784 +extern int (__fgetpos_778) (__FILE_59 * __restrict ____stream_774, __fpos_t_289 * __restrict ____pos_776);// L806:L807 +extern int (__fsetpos_786) (__FILE_59 * (____stream_770), const __fpos_t_287 * (____pos_772));// L803 +extern int (__fsetpos_790) (__FILE_59 * (____stream_782), const __fpos_t_289 * (____pos_784));// L808:L809 +extern void (__clearerr_796) (__FILE_59 * (____stream_794));// L826 +extern int (__feof_800) (__FILE_59 * (____stream_798));// L828 +extern int (__feof_802) (__FILE_59 * (____stream_798));// L828 +extern int (__ferror_806) (__FILE_59 * (____stream_804));// L830 +extern int (__ferror_808) (__FILE_59 * (____stream_804));// L830 +extern void (__clearerr_unlocked_812) (__FILE_59 * (____stream_810));// L835 +extern int (__feof_unlocked_816) (__FILE_59 * (____stream_814));// L836 +extern int (__feof_unlocked_818) (__FILE_59 * (____stream_814));// L836 +extern int (__ferror_unlocked_822) (__FILE_59 * (____stream_820));// L837 +extern int (__ferror_unlocked_824) (__FILE_59 * (____stream_820));// L837 +extern void (__perror_827) (const char * (____s_826));// L846 +extern void (__perror_828) (const char * (____s_826));// L846 +extern int __sys_nerr_829;// L26 + +extern int (__fileno_835) (__FILE_59 * (____stream_831));// L858 +extern int (__fileno_833) (__FILE_59 * (____stream_831));// L858 +extern int (__fileno_unlocked_841) (__FILE_59 * (____stream_837));// L863 +extern int (__fileno_unlocked_839) (__FILE_59 * (____stream_837));// L863 +extern __FILE_59 * ((__popen_845) (const char * (____command_843), const char * (____modes_844)));// L872 +extern __FILE_59 * ((__popen_847) (const char * (____command_843), const char * (____modes_844)));// L872 +extern int (__pclose_851) (__FILE_59 * (____stream_849));// L878 +extern char * ((__ctermid_854) (char * (____s_853)));// L884 +extern void (__flockfile_857) (__FILE_59 * (____stream_855));// L912 +extern int (__ftrylockfile_861) (__FILE_59 * (____stream_859));// L916 +extern int (__ftrylockfile_863) (__FILE_59 * (____stream_859));// L916 +extern void (__funlockfile_867) (__FILE_59 * (____stream_865));// L919 +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____sprintf_chk_564) (char * __restrict ____s_560, int ____flag_561, __size_t_1 ____slen_562, const char * __restrict ____format_563, ... );// L23:L24 -extern int (____vsprintf_chk_571) (char * __restrict ____s_565, int ____flag_566, __size_t_1 ____slen_567, const char * __restrict ____format_568, ____gnuc_va_list_82 ____ap_569);// L25:L27 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____snprintf_chk_585) (char * __restrict ____s_580, __size_t_1 ____n_581, int ____flag_582, __size_t_1 ____slen_583, const char * __restrict ____format_584, ... );// L52:L54 -extern int (____vsnprintf_chk_593) (char * __restrict ____s_586, __size_t_1 ____n_587, int ____flag_588, __size_t_1 ____slen_589, const char * __restrict ____format_590, ____gnuc_va_list_82 ____ap_591);// L55:L57 +extern int (____sprintf_chk_899) (char * __restrict ____s_895, int ____flag_896, __size_t_1 ____slen_897, const char * __restrict ____format_898, ... );// L23:L24 +extern int (____vsprintf_chk_906) (char * __restrict ____s_900, int ____flag_901, __size_t_1 ____slen_902, const char * __restrict ____format_903, ____gnuc_va_list_86 ____ap_904);// L25:L27 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____fprintf_chk_608) (__FILE_58 * __restrict ____stream_604, int ____flag_606, const char * __restrict ____format_607, ... );// L85:L86 -extern int (____printf_chk_612) (int ____flag_610, const char * __restrict ____format_611, ... );// L87 -extern int (____vfprintf_chk_619) (__FILE_58 * __restrict ____stream_613, int ____flag_615, const char * __restrict ____format_616, ____gnuc_va_list_82 ____ap_617);// L88:L89 -extern int (____vprintf_chk_627) (int ____flag_623, const char * __restrict ____format_624, ____gnuc_va_list_82 ____ap_625);// L90:L91 +extern int (____snprintf_chk_920) (char * __restrict ____s_915, __size_t_1 ____n_916, int ____flag_917, __size_t_1 ____slen_918, const char * __restrict ____format_919, ... );// L52:L54 +extern int (____vsnprintf_chk_928) (char * __restrict ____s_921, __size_t_1 ____n_922, int ____flag_923, __size_t_1 ____slen_924, const char * __restrict ____format_925, ____gnuc_va_list_86 ____ap_926);// L55:L57 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ +extern int (____fprintf_chk_943) (__FILE_59 * __restrict ____stream_939, int ____flag_941, const char * __restrict ____format_942, ... );// L85:L86 +extern int (____printf_chk_947) (int ____flag_945, const char * __restrict ____format_946, ... );// L87 +extern int (____vfprintf_chk_954) (__FILE_59 * __restrict ____stream_948, int ____flag_950, const char * __restrict ____format_951, ____gnuc_va_list_86 ____ap_952);// L88:L89 +extern int (____vprintf_chk_962) (int ____flag_958, const char * __restrict ____format_959, ____gnuc_va_list_86 ____ap_960);// L90:L91 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern char * ((____fgets_chk_651) (char * __restrict ____s_646, __size_t_1 ____size_647, int ____n_648, __FILE_58 * __restrict ____stream_649));// L241:L242 -extern char * ((____fgets_chk_653) (char * __restrict ____s_646, __size_t_1 ____size_647, int ____n_648, __FILE_58 * __restrict ____stream_649));// L241:L242 -extern char * ((____fgets_alias_659) (char * __restrict ____s_655, int ____n_656, __FILE_58 * __restrict ____stream_657));// L243:L245 -extern char * ((____fgets_chk_warn_666) (char * __restrict ____s_661, __size_t_1 ____size_662, int ____n_663, __FILE_58 * __restrict ____stream_664));// L246:L250 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ +extern int (____dprintf_chk_984) (int ____fd_981, int ____flag_982, const char * __restrict ____fmt_983, ... );// L131:L132 +extern int (____vdprintf_chk_990) (int ____fd_985, int ____flag_986, const char * __restrict ____fmt_987, ____gnuc_va_list_86 ____arg_988);// L133:L135 +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +extern char * ((____fgets_chk_1004) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_chk_1006) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_chk_1008) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_alias_1014) (char * __restrict ____s_1010, int ____n_1011, __FILE_59 * __restrict ____stream_1012));// L243:L245 +extern char * ((____fgets_chk_warn_1021) (char * __restrict ____s_1016, __size_t_1 ____size_1017, int ____n_1018, __FILE_59 * __restrict ____stream_1019));// L246:L250 +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern __size_t_1 (____ctype_get_mb_cur_max_721) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_722) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_723) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_724) (void );// L139 -extern double (__atof_726) (const char * (____nptr_725));// L144:L145 -extern double (__atof_727) (const char * (____nptr_725));// L144:L145 -extern int (__atoi_729) (const char * (____nptr_728));// L147:L148 -extern int (__atoi_730) (const char * (____nptr_728));// L147:L148 -extern long int (__atol_732) (const char * (____nptr_731));// L150:L151 -extern long int (__atol_733) (const char * (____nptr_731));// L150:L151 -extern long long int (__atoll_735) (const char * (____nptr_734));// L157:L158 -extern long long int (__atoll_736) (const char * (____nptr_734));// L157:L158 -extern double (__strtod_739) (const char * __restrict ____nptr_737, char * (* __restrict ____endptr_738));// L164:L166 -extern float (__strtof_742) (const char * __restrict ____nptr_740, char * (* __restrict ____endptr_741));// L172:L173 -extern long double (__strtold_745) (const char * __restrict ____nptr_743, char * (* __restrict ____endptr_744));// L175:L177 -extern long int (__strtol_749) (const char * __restrict ____nptr_746, char * (* __restrict ____endptr_747), int ____base_748);// L183:L185 -extern unsigned long int (__strtoul_753) (const char * __restrict ____nptr_750, char * (* __restrict ____endptr_751), int ____base_752);// L187:L189 -extern long long int (__strtoll_757) (const char * __restrict ____nptr_754, char * (* __restrict ____endptr_755), int ____base_756);// L209:L211 -extern unsigned long long int (__strtoull_761) (const char * __restrict ____nptr_758, char * (* __restrict ____endptr_759), int ____base_760);// L214:L216 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +static __inline unsigned int (____bswap_32_1158) (unsigned int ____bsx_1157) { + +if (__static_condition_default_1159) { + +{ +{ + + + +__static_type_error("invalid type found in return expression"); +} +} + + +} +} +static __inline ____uint64_t_13 (____bswap_64_1162) (____uint64_t_13 ____bsx_1160) { + +if (__static_condition_default_1164) { + +{ +{ + + + +__static_type_error("invalid type found in return expression"); +} +} + + +} +} +static __inline ____uint64_t_1112 (____bswap_64_1163) (____uint64_t_1112 ____bsx_1161) { + +if (__static_condition_default_1165) { + +{ +{ + + + +__static_type_error("invalid type found in return expression"); +} +} + + +} +} +union __wait_1177 ;// L66 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern __size_t_1 (____ctype_get_mb_cur_max_1201) (void );// L139 +extern __size_t_1093 (____ctype_get_mb_cur_max_1202) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_1203) (void );// L139 +extern __size_t_1093 (____ctype_get_mb_cur_max_1204) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_1205) (void );// L139 +extern __size_t_1093 (____ctype_get_mb_cur_max_1206) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_1207) (void );// L139 +extern __size_t_1093 (____ctype_get_mb_cur_max_1208) (void );// L139 +extern double (__atof_1210) (const char * (____nptr_1209));// L144:L145 +extern double (__atof_1211) (const char * (____nptr_1209));// L144:L145 +extern int (__atoi_1213) (const char * (____nptr_1212));// L147:L148 +extern int (__atoi_1214) (const char * (____nptr_1212));// L147:L148 +extern long int (__atol_1216) (const char * (____nptr_1215));// L150:L151 +extern long int (__atol_1217) (const char * (____nptr_1215));// L150:L151 +extern long long int (__atoll_1219) (const char * (____nptr_1218));// L157:L158 +extern long long int (__atoll_1220) (const char * (____nptr_1218));// L157:L158 +extern double (__strtod_1223) (const char * __restrict ____nptr_1221, char * (* __restrict ____endptr_1222));// L164:L166 +extern float (__strtof_1226) (const char * __restrict ____nptr_1224, char * (* __restrict ____endptr_1225));// L172:L173 +extern long double (__strtold_1229) (const char * __restrict ____nptr_1227, char * (* __restrict ____endptr_1228));// L175:L177 +extern long int (__strtol_1233) (const char * __restrict ____nptr_1230, char * (* __restrict ____endptr_1231), int ____base_1232);// L183:L185 +extern unsigned long int (__strtoul_1237) (const char * __restrict ____nptr_1234, char * (* __restrict ____endptr_1235), int ____base_1236);// L187:L189 +extern long long int (__strtoq_1241) (const char * __restrict ____nptr_1238, char * (* __restrict ____endptr_1239), int ____base_1240);// L195:L197 +extern unsigned long long int (__strtouq_1245) (const char * __restrict ____nptr_1242, char * (* __restrict ____endptr_1243), int ____base_1244);// L200:L202 +extern long long int (__strtoll_1249) (const char * __restrict ____nptr_1246, char * (* __restrict ____endptr_1247), int ____base_1248);// L209:L211 +extern long long int (__strtoll_1250) (const char * __restrict ____nptr_1246, char * (* __restrict ____endptr_1247), int ____base_1248);// L209:L211 +extern unsigned long long int (__strtoull_1254) (const char * __restrict ____nptr_1251, char * (* __restrict ____endptr_1252), int ____base_1253);// L214:L216 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ __extension__/* no function due to type errors in the function prototype */ -extern int (__rand_765) (void );// L374 -extern int (__rand_766) (void );// L374 -extern void (__srand_768) (unsigned int ____seed_767);// L376 -extern void * ((__malloc_770) (__size_t_1 ____size_769));// L466 -extern void * ((__malloc_771) (__size_t_1 ____size_769));// L466 -extern void * ((__calloc_774) (__size_t_1 ____nmemb_772, __size_t_1 ____size_773));// L468:L469 -extern void * ((__calloc_775) (__size_t_1 ____nmemb_772, __size_t_1 ____size_773));// L468:L469 -extern void * ((__realloc_778) (void * (____ptr_776), __size_t_1 ____size_777));// L480:L481 -extern void * ((__realloc_779) (void * (____ptr_776), __size_t_1 ____size_777));// L480:L481 -extern void (__free_781) (void * (____ptr_780));// L483 -extern void * ((__aligned_alloc_784) (__size_t_1 ____alignment_782, __size_t_1 ____size_783));// L509:L510 -extern void * ((__aligned_alloc_785) (__size_t_1 ____alignment_782, __size_t_1 ____size_783));// L509:L510 -extern void (__abort_786) (void );// L515 -extern int (__atexit_788) (void (* (____func_787)) (void ));// L519 -extern int (__at_quick_exit_790) (void (* (____func_789)) (void ));// L527 -extern void (__exit_792) (int ____status_791);// L543 -extern void (__quick_exit_794) (int ____status_793);// L549 -extern void (___Exit_796) (int ____status_795);// L557 -extern char * ((__getenv_798) (const char * (____name_797)));// L564 -extern char * ((__getenv_799) (const char * (____name_797)));// L564 -extern int (__system_801) (const char * (____command_800));// L716 -extern int (__system_802) (const char * (____command_800));// L716 -// typedef moved to top of scope -extern void * ((__bsearch_811) (const void * (____key_804), const void * (____base_805), __size_t_1 ____nmemb_806, __size_t_1 ____size_807, ____compar_fn_t_803 ____compar_808));// L754:L756 -extern void * ((__bsearch_813) (const void * (____key_804), const void * (____base_805), __size_t_1 ____nmemb_806, __size_t_1 ____size_807, ____compar_fn_t_803 ____compar_808));// L754:L756 +extern char * ((__l64a_1259) (long int ____n_1258));// L305 +extern char * ((__l64a_1260) (long int ____n_1258));// L305 +extern long int (__a64l_1262) (const char * (____s_1261));// L308:L309 +extern long int (__a64l_1263) (const char * (____s_1261));// L308:L309 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +static __inline unsigned int (____bswap_32_1452) (unsigned int ____bsx_1451) { + +if (__static_condition_default_1453) { + +{ +{ + + + +__static_type_error("invalid type found in return expression"); +} +} + + +} +} +static __inline ____uint64_t_13 (____bswap_64_1456) (____uint64_t_13 ____bsx_1454) { + +if (__static_condition_default_1458) { + +{ +{ + + + +__static_type_error("invalid type found in return expression"); +} +} + + +} +} +static __inline ____uint64_t_1275 (____bswap_64_1457) (____uint64_t_1275 ____bsx_1455) { + +if (__static_condition_default_1459) { + +{ +{ + + + +__static_type_error("invalid type found in return expression"); +} +} + + +} +} +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +struct __timespec_1466 ;// L120 + +struct __timeval_1476 ;// L30 + +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern int (__select_1513) (int ____nfds_1502, __fd_set_1499 * __restrict ____readfds_1503, __fd_set_1499 * __restrict ____writefds_1505, __fd_set_1499 * __restrict ____exceptfds_1507, struct __timeval_1476 * __restrict ____timeout_1510);// L106:L109 +extern int (__select_1514) (int ____nfds_1502, __fd_set_1499 * __restrict ____readfds_1503, __fd_set_1499 * __restrict ____writefds_1505, __fd_set_1499 * __restrict ____exceptfds_1507, struct __forward_tag_reference_1509 * __restrict ____timeout_1512);// L106:L109 +extern int (__pselect_1529) (int ____nfds_1517, __fd_set_1499 * __restrict ____readfds_1518, __fd_set_1499 * __restrict ____writefds_1520, __fd_set_1499 * __restrict ____exceptfds_1522, const struct __timespec_1466 * __restrict ____timeout_1525, const ____sigset_t_1464 * __restrict ____sigmask_1528);// L118:L122 +extern int (__pselect_1530) (int ____nfds_1517, __fd_set_1499 * __restrict ____readfds_1518, __fd_set_1499 * __restrict ____writefds_1520, __fd_set_1499 * __restrict ____exceptfds_1522, const struct __forward_tag_reference_1524 * __restrict ____timeout_1527, const ____sigset_t_1464 * __restrict ____sigmask_1528);// L118:L122 +extern long int (____fdelt_chk_1534) (long int ____d_1533);// L24 +extern long int (____fdelt_warn_1536) (long int ____d_1535);// L25:L26 +extern unsigned int (__gnu_dev_major_1538) (unsigned long long int ____dev_1537);// L27:L28 +extern unsigned int (__gnu_dev_major_1539) (unsigned long long int ____dev_1537);// L27:L28 +extern unsigned int (__gnu_dev_minor_1541) (unsigned long long int ____dev_1540);// L30:L31 +extern unsigned long long int (__gnu_dev_makedev_1544) (unsigned int ____major_1542, unsigned int ____minor_1543);// L33:L35 +__extension__/* no function due to type errors in the function prototype */ +__extension__/* no function due to type errors in the function prototype */ +__extension__/* no function due to type errors in the function prototype */ +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +union __pthread_attr_t_1578 ;// L63 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern int (__rand_1609) (void );// L374 +extern void (__srand_1611) (unsigned int ____seed_1610);// L376 +extern int (__rand_r_1613) (unsigned int * (____seed_1612));// L381 +extern double (__drand48_1614) (void );// L389 +extern double (__erand48_1616) (unsigned short int ____xsubi_1615[3]);// L390 +extern long int (__lrand48_1617) (void );// L393 +extern long int (__nrand48_1619) (unsigned short int ____xsubi_1618[3]);// L394:L395 +extern long int (__mrand48_1620) (void );// L398 +extern long int (__jrand48_1622) (unsigned short int ____xsubi_1621[3]);// L399:L400 +extern void (__srand48_1624) (long int ____seedval_1623);// L403 +extern unsigned short int * ((__seed48_1626) (unsigned short int ____seed16v_1625[3]));// L404:L405 +extern void (__lcong48_1628) (unsigned short int ____param_1627[7]);// L406 +extern void * ((__malloc_1631) (__size_t_1 ____size_1629));// L466 +extern void * ((__malloc_1632) (__size_t_1093 ____size_1630));// L466 +extern void * ((__malloc_1633) (__size_t_1 ____size_1629));// L466 +extern void * ((__malloc_1634) (__size_t_1093 ____size_1630));// L466 +extern void * ((__calloc_1639) (__size_t_1 ____nmemb_1635, __size_t_1 ____size_1637));// L468:L469 +extern void * ((__calloc_1640) (__size_t_1093 ____nmemb_1636, __size_t_1093 ____size_1638));// L468:L469 +extern void * ((__calloc_1641) (__size_t_1 ____nmemb_1635, __size_t_1 ____size_1637));// L468:L469 +extern void * ((__calloc_1642) (__size_t_1093 ____nmemb_1636, __size_t_1093 ____size_1638));// L468:L469 +extern void * ((__realloc_1646) (void * (____ptr_1643), __size_t_1 ____size_1644));// L480:L481 +extern void * ((__realloc_1647) (void * (____ptr_1643), __size_t_1093 ____size_1645));// L480:L481 +extern void (__free_1649) (void * (____ptr_1648));// L483 +extern void (__cfree_1651) (void * (____ptr_1650));// L488 +extern void * ((__alloca_1654) (__size_t_1 ____size_1652));// L32 +extern void * ((__alloca_1655) (__size_t_1093 ____size_1653));// L32 +extern void * ((__valloc_1658) (__size_t_1 ____size_1656));// L498 +extern void * ((__valloc_1659) (__size_t_1093 ____size_1657));// L498 +extern void * ((__valloc_1660) (__size_t_1 ____size_1656));// L498 +extern void * ((__valloc_1661) (__size_t_1093 ____size_1657));// L498 +extern int (__posix_memalign_1667) (void * (* (____memptr_1662)), __size_t_1 ____alignment_1663, __size_t_1 ____size_1665);// L503:L504 +extern int (__posix_memalign_1668) (void * (* (____memptr_1662)), __size_t_1093 ____alignment_1664, __size_t_1093 ____size_1666);// L503:L504 +extern int (__posix_memalign_1669) (void * (* (____memptr_1662)), __size_t_1 ____alignment_1663, __size_t_1 ____size_1665);// L503:L504 +extern int (__posix_memalign_1670) (void * (* (____memptr_1662)), __size_t_1093 ____alignment_1664, __size_t_1093 ____size_1666);// L503:L504 +extern void * ((__aligned_alloc_1675) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 +extern void * ((__aligned_alloc_1676) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 +extern void * ((__aligned_alloc_1677) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 +extern void * ((__aligned_alloc_1678) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 +extern void * ((__aligned_alloc_1679) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 +extern void * ((__aligned_alloc_1680) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 +extern void * ((__aligned_alloc_1681) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 +extern void * ((__aligned_alloc_1682) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 +extern void (__abort_1683) (void );// L515 +extern int (__atexit_1685) (void (* (____func_1684)) (void ));// L519 +extern int (__at_quick_exit_1687) (void (* (____func_1686)) (void ));// L527 +extern int (__on_exit_1692) (void (* (____func_1690)) (int ____status_1688, void * (____arg_1689)), void * (____arg_1691));// L535:L536 +extern void (__exit_1694) (int ____status_1693);// L543 +extern void (__exit_1695) (int ____status_1693);// L543 +extern void (__quick_exit_1697) (int ____status_1696);// L549 +extern void (___Exit_1699) (int ____status_1698);// L557 +extern char * ((__getenv_1701) (const char * (____name_1700)));// L564 +extern char * ((__getenv_1702) (const char * (____name_1700)));// L564 +extern int (__putenv_1704) (char * (____string_1703));// L578 +extern int (__setenv_1708) (const char * (____name_1705), const char * (____value_1706), int ____replace_1707);// L584:L585 +extern int (__unsetenv_1710) (const char * (____name_1709));// L588 +extern int (__clearenv_1711) (void );// L595 +extern char * ((__mktemp_1713) (char * (____template_1712)));// L606 +extern int (__mkstemp_1716) (char * (____template_1714));// L619 +extern int (__mkstemp_1718) (char * (____template_1714));// L619 +extern int (__mkstemp_1717) (char * (____template_1715));// L622:L623 +extern int (__mkstemp_1719) (char * (____template_1715));// L622:L623 +extern int (__mkstemps_1724) (char * (____template_1720), int ____suffixlen_1721);// L641 +extern int (__mkstemps_1725) (char * (____template_1722), int ____suffixlen_1723);// L644:L645 +extern int (__mkstemps_1726) (char * (____template_1720), int ____suffixlen_1721);// L641 +extern int (__mkstemps_1727) (char * (____template_1722), int ____suffixlen_1723);// L644:L645 +extern char * ((__mkdtemp_1729) (char * (____template_1728)));// L662 +extern char * ((__mkdtemp_1730) (char * (____template_1728)));// L662 +extern int (__system_1732) (const char * (____command_1731));// L716 +extern int (__system_1733) (const char * (____command_1731));// L716 +extern int (__system_1734) (const char * (____command_1731));// L716 +extern int (__system_1735) (const char * (____command_1731));// L716 +extern char * ((__realpath_1738) (const char * __restrict ____name_1736, char * __restrict ____resolved_1737));// L733:L734 +extern char * ((__realpath_1739) (const char * __restrict ____name_1736, char * __restrict ____resolved_1737));// L733:L734 +// typedef moved to top of scope +extern void * ((__bsearch_1751) (const void * (____key_1741), const void * (____base_1742), __size_t_1 ____nmemb_1743, __size_t_1 ____size_1745, ____compar_fn_t_1740 ____compar_1747));// L754:L756 +extern void * ((__bsearch_1752) (const void * (____key_1741), const void * (____base_1742), __size_t_1093 ____nmemb_1744, __size_t_1093 ____size_1746, ____compar_fn_t_1740 ____compar_1747));// L754:L756 +extern void * ((__bsearch_1755) (const void * (____key_1741), const void * (____base_1742), __size_t_1 ____nmemb_1743, __size_t_1 ____size_1745, ____compar_fn_t_1740 ____compar_1747));// L754:L756 +extern void * ((__bsearch_1756) (const void * (____key_1741), const void * (____base_1742), __size_t_1093 ____nmemb_1744, __size_t_1093 ____size_1746, ____compar_fn_t_1740 ____compar_1747));// L754:L756 /* no function due to type errors in the function prototype */ -extern void (__qsort_832) (void * (____base_827), __size_t_1 ____nmemb_828, __size_t_1 ____size_829, ____compar_fn_t_803 ____compar_830);// L764:L765 -extern void (__qsort_834) (void * (____base_827), __size_t_1 ____nmemb_828, __size_t_1 ____size_829, ____compar_fn_t_803 ____compar_830);// L764:L765 -extern int (__abs_837) (int ____x_836);// L774 -extern int (__abs_838) (int ____x_836);// L774 -extern long int (__labs_840) (long int ____x_839);// L775 -extern long int (__labs_841) (long int ____x_839);// L775 -extern long long int (__llabs_843) (long long int ____x_842);// L779:L780 -extern long long int (__llabs_844) (long long int ____x_842);// L779:L780 -extern __div_t_710 (__div_847) (int ____numer_845, int ____denom_846);// L788:L789 -extern __div_t_710 (__div_848) (int ____numer_845, int ____denom_846);// L788:L789 -extern __ldiv_t_715 (__ldiv_851) (long int ____numer_849, long int ____denom_850);// L790:L791 -extern __ldiv_t_715 (__ldiv_853) (long int ____numer_849, long int ____denom_850);// L790:L791 -extern __lldiv_t_720 (__lldiv_857) (long long int ____numer_855, long long int ____denom_856);// L796:L798 -extern __lldiv_t_720 (__lldiv_859) (long long int ____numer_855, long long int ____denom_856);// L796:L798 -extern int (__mblen_863) (const char * (____s_861), __size_t_1 ____n_862);// L862 -extern int (__mbtowc_868) (__wchar_t_704 * __restrict ____pwc_864, const char * __restrict ____s_866, __size_t_1 ____n_867);// L865:L866 -extern int (__mbtowc_869) (__wchar_t_705 * __restrict ____pwc_865, const char * __restrict ____s_866, __size_t_1 ____n_867);// L865:L866 -extern int (__wctomb_873) (char * (____s_870), __wchar_t_704 ____wchar_871);// L869 -extern int (__wctomb_874) (char * (____s_870), __wchar_t_705 ____wchar_872);// L869 -extern __size_t_1 (__mbstowcs_879) (__wchar_t_704 * __restrict ____pwcs_875, const char * __restrict ____s_877, __size_t_1 ____n_878);// L873:L874 -extern __size_t_1 (__mbstowcs_880) (__wchar_t_705 * __restrict ____pwcs_876, const char * __restrict ____s_877, __size_t_1 ____n_878);// L873:L874 -extern __size_t_1 (__wcstombs_885) (char * __restrict ____s_881, const __wchar_t_704 * __restrict ____pwcs_882, __size_t_1 ____n_884);// L876:L878 -extern __size_t_1 (__wcstombs_886) (char * __restrict ____s_881, const __wchar_t_705 * __restrict ____pwcs_883, __size_t_1 ____n_884);// L876:L878 +extern void (__qsort_1784) (void * (____base_1777), __size_t_1 ____nmemb_1778, __size_t_1 ____size_1780, ____compar_fn_t_1740 ____compar_1782);// L764:L765 +extern void (__qsort_1786) (void * (____base_1777), __size_t_1093 ____nmemb_1779, __size_t_1093 ____size_1781, ____compar_fn_t_1740 ____compar_1782);// L764:L765 +extern void (__qsort_1788) (void * (____base_1777), __size_t_1 ____nmemb_1778, __size_t_1 ____size_1780, ____compar_fn_t_1740 ____compar_1782);// L764:L765 +extern void (__qsort_1790) (void * (____base_1777), __size_t_1093 ____nmemb_1779, __size_t_1093 ____size_1781, ____compar_fn_t_1740 ____compar_1782);// L764:L765 +extern int (__abs_1793) (int ____x_1792);// L774 +extern int (__abs_1794) (int ____x_1792);// L774 +extern long int (__labs_1796) (long int ____x_1795);// L775 +extern long int (__labs_1797) (long int ____x_1795);// L775 +extern long long int (__llabs_1799) (long long int ____x_1798);// L779:L780 +extern long long int (__llabs_1800) (long long int ____x_1798);// L779:L780 +extern __div_t_1190 (__div_1803) (int ____numer_1801, int ____denom_1802);// L788:L789 +extern __div_t_1190 (__div_1804) (int ____numer_1801, int ____denom_1802);// L788:L789 +extern __ldiv_t_1195 (__ldiv_1807) (long int ____numer_1805, long int ____denom_1806);// L790:L791 +extern __ldiv_t_1195 (__ldiv_1809) (long int ____numer_1805, long int ____denom_1806);// L790:L791 +extern __lldiv_t_1200 (__lldiv_1813) (long long int ____numer_1811, long long int ____denom_1812);// L796:L798 +extern __lldiv_t_1200 (__lldiv_1815) (long long int ____numer_1811, long long int ____denom_1812);// L796:L798 +extern char * ((__ecvt_1821) (double ____value_1817, int ____ndigit_1818, int * __restrict ____decpt_1819, int * __restrict ____sign_1820));// L811:L812 +extern char * ((__ecvt_1822) (double ____value_1817, int ____ndigit_1818, int * __restrict ____decpt_1819, int * __restrict ____sign_1820));// L811:L812 +extern char * ((__fcvt_1827) (double ____value_1823, int ____ndigit_1824, int * __restrict ____decpt_1825, int * __restrict ____sign_1826));// L817:L818 +extern char * ((__fcvt_1828) (double ____value_1823, int ____ndigit_1824, int * __restrict ____decpt_1825, int * __restrict ____sign_1826));// L817:L818 +extern char * ((__gcvt_1832) (double ____value_1829, int ____ndigit_1830, char * (____buf_1831)));// L823:L824 +extern char * ((__gcvt_1833) (double ____value_1829, int ____ndigit_1830, char * (____buf_1831)));// L823:L824 +extern char * ((__qecvt_1838) (long double ____value_1834, int ____ndigit_1835, int * __restrict ____decpt_1836, int * __restrict ____sign_1837));// L829:L831 +extern char * ((__qecvt_1839) (long double ____value_1834, int ____ndigit_1835, int * __restrict ____decpt_1836, int * __restrict ____sign_1837));// L829:L831 +extern char * ((__qfcvt_1844) (long double ____value_1840, int ____ndigit_1841, int * __restrict ____decpt_1842, int * __restrict ____sign_1843));// L832:L834 +extern char * ((__qfcvt_1845) (long double ____value_1840, int ____ndigit_1841, int * __restrict ____decpt_1842, int * __restrict ____sign_1843));// L832:L834 +extern char * ((__qgcvt_1849) (long double ____value_1846, int ____ndigit_1847, char * (____buf_1848)));// L835:L836 +extern char * ((__qgcvt_1850) (long double ____value_1846, int ____ndigit_1847, char * (____buf_1848)));// L835:L836 +extern int (__ecvt_r_1858) (double ____value_1851, int ____ndigit_1852, int * __restrict ____decpt_1853, int * __restrict ____sign_1854, char * __restrict ____buf_1855, __size_t_1 ____len_1856);// L841:L843 +extern int (__ecvt_r_1859) (double ____value_1851, int ____ndigit_1852, int * __restrict ____decpt_1853, int * __restrict ____sign_1854, char * __restrict ____buf_1855, __size_t_1093 ____len_1857);// L841:L843 +extern int (__fcvt_r_1867) (double ____value_1860, int ____ndigit_1861, int * __restrict ____decpt_1862, int * __restrict ____sign_1863, char * __restrict ____buf_1864, __size_t_1 ____len_1865);// L844:L846 +extern int (__fcvt_r_1868) (double ____value_1860, int ____ndigit_1861, int * __restrict ____decpt_1862, int * __restrict ____sign_1863, char * __restrict ____buf_1864, __size_t_1093 ____len_1866);// L844:L846 +extern int (__qecvt_r_1876) (long double ____value_1869, int ____ndigit_1870, int * __restrict ____decpt_1871, int * __restrict ____sign_1872, char * __restrict ____buf_1873, __size_t_1 ____len_1874);// L848:L851 +extern int (__qecvt_r_1877) (long double ____value_1869, int ____ndigit_1870, int * __restrict ____decpt_1871, int * __restrict ____sign_1872, char * __restrict ____buf_1873, __size_t_1093 ____len_1875);// L848:L851 +extern int (__qfcvt_r_1885) (long double ____value_1878, int ____ndigit_1879, int * __restrict ____decpt_1880, int * __restrict ____sign_1881, char * __restrict ____buf_1882, __size_t_1 ____len_1883);// L852:L855 +extern int (__qfcvt_r_1886) (long double ____value_1878, int ____ndigit_1879, int * __restrict ____decpt_1880, int * __restrict ____sign_1881, char * __restrict ____buf_1882, __size_t_1093 ____len_1884);// L852:L855 +extern int (__mblen_1890) (const char * (____s_1887), __size_t_1 ____n_1888);// L862 +extern int (__mblen_1891) (const char * (____s_1887), __size_t_1093 ____n_1889);// L862 +extern int (__mblen_1892) (const char * (____s_1887), __size_t_1 ____n_1888);// L862 +extern int (__mblen_1893) (const char * (____s_1887), __size_t_1093 ____n_1889);// L862 +extern int (__mbtowc_1898) (__wchar_t_1094 * __restrict ____pwc_1894, const char * __restrict ____s_1895, __size_t_1 ____n_1896);// L865:L866 +extern int (__mbtowc_1899) (__wchar_t_1094 * __restrict ____pwc_1894, const char * __restrict ____s_1895, __size_t_1093 ____n_1897);// L865:L866 +extern int (__wctomb_1902) (char * (____s_1900), __wchar_t_1094 ____wchar_1901);// L869 +extern __size_t_1 (__mbstowcs_1907) (__wchar_t_1094 * __restrict ____pwcs_1903, const char * __restrict ____s_1904, __size_t_1 ____n_1905);// L873:L874 +extern __size_t_1093 (__mbstowcs_1908) (__wchar_t_1094 * __restrict ____pwcs_1903, const char * __restrict ____s_1904, __size_t_1093 ____n_1906);// L873:L874 +extern __size_t_1 (__wcstombs_1913) (char * __restrict ____s_1909, const __wchar_t_1094 * __restrict ____pwcs_1910, __size_t_1 ____n_1911);// L876:L878 +extern __size_t_1093 (__wcstombs_1914) (char * __restrict ____s_1909, const __wchar_t_1094 * __restrict ____pwcs_1910, __size_t_1093 ____n_1912);// L876:L878 +extern int (__rpmatch_1917) (const char * (____response_1915));// L887 +extern int (__rpmatch_1916) (const char * (____response_1915));// L887 +extern int (__getsubopt_1922) (char * (* __restrict ____optionp_1918), char * const * __restrict ____tokens_1919, char * (* __restrict ____valuep_1920));// L898:L901 +extern int (__getsubopt_1921) (char * (* __restrict ____optionp_1918), char * const * __restrict ____tokens_1919, char * (* __restrict ____valuep_1920));// L898:L901 +extern int (__getloadavg_1925) (double ____loadavg_1923[], int ____nelem_1924);// L950:L951 /* no function due to type errors in the function prototype */ -extern char * ((____realpath_chk_891) (const char * __restrict ____name_888, char * __restrict ____resolved_889, __size_t_1 ____resolvedlen_890));// L23:L25 -extern char * ((____realpath_alias_894) (const char * __restrict ____name_892, char * __restrict ____resolved_893));// L26:L28 -extern char * ((____realpath_chk_warn_898) (const char * __restrict ____name_895, char * __restrict ____resolved_896, __size_t_1 ____resolvedlen_897));// L29:L34 +extern char * ((____realpath_chk_1931) (const char * __restrict ____name_1927, char * __restrict ____resolved_1928, __size_t_1 ____resolvedlen_1929));// L23:L25 +extern char * ((____realpath_chk_1932) (const char * __restrict ____name_1927, char * __restrict ____resolved_1928, __size_t_1093 ____resolvedlen_1930));// L23:L25 +extern char * ((____realpath_alias_1935) (const char * __restrict ____name_1933, char * __restrict ____resolved_1934));// L26:L28 +extern char * ((____realpath_chk_warn_1940) (const char * __restrict ____name_1936, char * __restrict ____resolved_1937, __size_t_1 ____resolvedlen_1938));// L29:L34 +extern char * ((____realpath_chk_warn_1941) (const char * __restrict ____name_1936, char * __restrict ____resolved_1937, __size_t_1093 ____resolvedlen_1939));// L29:L34 /* no function due to type errors in the function prototype */ -extern int (____ptsname_r_chk_906) (int ____fd_902, char * (____buf_903), __size_t_1 ____buflen_904, __size_t_1 ____nreal_905);// L52:L53 -extern int (____ptsname_r_alias_910) (int ____fd_907, char * (____buf_908), __size_t_1 ____buflen_909);// L54:L56 -extern int (____ptsname_r_chk_warn_915) (int ____fd_911, char * (____buf_912), __size_t_1 ____buflen_913, __size_t_1 ____nreal_914);// L57:L61 +extern int (____ptsname_r_chk_1951) (int ____fd_1945, char * (____buf_1946), __size_t_1 ____buflen_1947, __size_t_1 ____nreal_1949);// L52:L53 +extern int (____ptsname_r_chk_1952) (int ____fd_1945, char * (____buf_1946), __size_t_1093 ____buflen_1948, __size_t_1093 ____nreal_1950);// L52:L53 +extern int (____ptsname_r_alias_1957) (int ____fd_1953, char * (____buf_1954), __size_t_1 ____buflen_1955);// L54:L56 +extern int (____ptsname_r_alias_1958) (int ____fd_1953, char * (____buf_1954), __size_t_1093 ____buflen_1956);// L54:L56 +extern int (____ptsname_r_chk_warn_1965) (int ____fd_1959, char * (____buf_1960), __size_t_1 ____buflen_1961, __size_t_1 ____nreal_1963);// L57:L61 +extern int (____ptsname_r_chk_warn_1966) (int ____fd_1959, char * (____buf_1960), __size_t_1093 ____buflen_1962, __size_t_1093 ____nreal_1964);// L57:L61 /* no function due to type errors in the function prototype */ -extern int (____wctomb_chk_923) (char * (____s_920), __wchar_t_705 ____wchar_921, __size_t_1 ____buflen_922);// L77:L78 -extern int (____wctomb_alias_926) (char * (____s_924), __wchar_t_705 ____wchar_925);// L79:L80 +extern int (____wctomb_chk_1977) (char * (____s_1973), __wchar_t_1094 ____wchar_1974, __size_t_1 ____buflen_1975);// L77:L78 +extern int (____wctomb_chk_1978) (char * (____s_1973), __wchar_t_1094 ____wchar_1974, __size_t_1093 ____buflen_1976);// L77:L78 +extern int (____wctomb_alias_1981) (char * (____s_1979), __wchar_t_1094 ____wchar_1980);// L79:L80 /* no function due to type errors in the function prototype */ -extern __size_t_1 (____mbstowcs_chk_933) (__wchar_t_705 * __restrict ____dst_929, const char * __restrict ____src_930, __size_t_1 ____len_931, __size_t_1 ____dstlen_932);// L98:L100 -extern __size_t_1 (____mbstowcs_alias_937) (__wchar_t_705 * __restrict ____dst_934, const char * __restrict ____src_935, __size_t_1 ____len_936);// L101:L104 -extern __size_t_1 (____mbstowcs_chk_warn_942) (__wchar_t_705 * __restrict ____dst_938, const char * __restrict ____src_939, __size_t_1 ____len_940, __size_t_1 ____dstlen_941);// L105:L110 +extern __size_t_1 (____mbstowcs_chk_1990) (__wchar_t_1094 * __restrict ____dst_1984, const char * __restrict ____src_1985, __size_t_1 ____len_1986, __size_t_1 ____dstlen_1988);// L98:L100 +extern __size_t_1093 (____mbstowcs_chk_1991) (__wchar_t_1094 * __restrict ____dst_1984, const char * __restrict ____src_1985, __size_t_1093 ____len_1987, __size_t_1093 ____dstlen_1989);// L98:L100 +extern __size_t_1 (____mbstowcs_alias_1996) (__wchar_t_1094 * __restrict ____dst_1992, const char * __restrict ____src_1993, __size_t_1 ____len_1994);// L101:L104 +extern __size_t_1093 (____mbstowcs_alias_1997) (__wchar_t_1094 * __restrict ____dst_1992, const char * __restrict ____src_1993, __size_t_1093 ____len_1995);// L101:L104 +extern __size_t_1 (____mbstowcs_chk_warn_2004) (__wchar_t_1094 * __restrict ____dst_1998, const char * __restrict ____src_1999, __size_t_1 ____len_2000, __size_t_1 ____dstlen_2002);// L105:L110 +extern __size_t_1093 (____mbstowcs_chk_warn_2005) (__wchar_t_1094 * __restrict ____dst_1998, const char * __restrict ____src_1999, __size_t_1093 ____len_2001, __size_t_1093 ____dstlen_2003);// L105:L110 /* no function due to type errors in the function prototype */ -extern __size_t_1 (____wcstombs_chk_950) (char * __restrict ____dst_946, const __wchar_t_705 * __restrict ____src_947, __size_t_1 ____len_948, __size_t_1 ____dstlen_949);// L130:L132 -extern __size_t_1 (____wcstombs_alias_954) (char * __restrict ____dst_951, const __wchar_t_705 * __restrict ____src_952, __size_t_1 ____len_953);// L133:L136 -extern __size_t_1 (____wcstombs_chk_warn_959) (char * __restrict ____dst_955, const __wchar_t_705 * __restrict ____src_956, __size_t_1 ____len_957, __size_t_1 ____dstlen_958);// L137:L141 +extern __size_t_1 (____wcstombs_chk_2016) (char * __restrict ____dst_2010, const __wchar_t_1094 * __restrict ____src_2011, __size_t_1 ____len_2012, __size_t_1 ____dstlen_2014);// L130:L132 +extern __size_t_1093 (____wcstombs_chk_2017) (char * __restrict ____dst_2010, const __wchar_t_1094 * __restrict ____src_2011, __size_t_1093 ____len_2013, __size_t_1093 ____dstlen_2015);// L130:L132 +extern __size_t_1 (____wcstombs_alias_2022) (char * __restrict ____dst_2018, const __wchar_t_1094 * __restrict ____src_2019, __size_t_1 ____len_2020);// L133:L136 +extern __size_t_1093 (____wcstombs_alias_2023) (char * __restrict ____dst_2018, const __wchar_t_1094 * __restrict ____src_2019, __size_t_1093 ____len_2021);// L133:L136 +extern __size_t_1 (____wcstombs_chk_warn_2030) (char * __restrict ____dst_2024, const __wchar_t_1094 * __restrict ____src_2025, __size_t_1 ____len_2026, __size_t_1 ____dstlen_2028);// L137:L141 +extern __size_t_1093 (____wcstombs_chk_warn_2031) (char * __restrict ____dst_2024, const __wchar_t_1094 * __restrict ____src_2025, __size_t_1093 ____len_2027, __size_t_1093 ____dstlen_2029);// L137:L141 /* no function due to type errors in the function prototype */ -int (__main_971) (int __argc_963, char * (* (__argv_964))) { +int (__main_2044) (int __argc_2036, char * (* (__argv_2037))) { -if (__static_condition_default_973) { +if (__static_condition_default_2047) { { { -int __r_965= rand( ) % 2;// L6 - -int __r_966= rand( ) % 2;// L6 +int __r_2038= rand( ) % 2;// L6 -int __m_has_modinfo_967;// L7 +int __m_has_modinfo_2040;// L7 -int __exit_status_968= - 1;// L8 +int __exit_status_2041= - 1;// L8 -int __someInt_969= 1;// L9 +int __someInt_2042= 1;// L9 -int __k_crcs_970;// L12 +int __k_crcs_2043;// L12 -if (__static_condition_default_974) { -if ( __r_965 )// L15 +if (__static_condition_default_2048) { +if ( __r_2038 )// L15 { -if (__static_condition_default_974) { - __m_has_modinfo_967 = 0 ; // L16 +if (__static_condition_default_2049) { + __m_has_modinfo_2040 = 0 ; // L16 } } else { -if (__static_condition_default_974) { - __m_has_modinfo_967 = 1 ; // L18 +if (__static_condition_default_2048) { + __m_has_modinfo_2040 = 1 ; // L18 } } } -if (__static_condition_default_975) { -if ( __r_966 )// L15 +if (__static_condition_default_2050) { +if ( __r_2038 )// L15 { -if (__static_condition_default_975) { - __m_has_modinfo_967 = 0 ; // L16 +if (__static_condition_default_2051) { + __m_has_modinfo_2040 = 0 ; // L16 } } else { -if (__static_condition_default_975) { - __m_has_modinfo_967 = 1 ; // L18 +if (__static_condition_default_2050) { + __m_has_modinfo_2040 = 1 ; // L18 } } } - __k_crcs_970 = 0 ; // L21 -if (__static_condition_default_976) { -if ( __r_965 )// L24 +if (__static_condition_default_2052) { + __k_crcs_2043 = 0 ; // L21 +} +if (__static_condition_default_2053) { +if ( __r_2038 )// L24 { -if (__static_condition_default_976) { +if (__static_condition_default_2053) { { { - __k_crcs_970 = __someInt_969 ; // L25 +__static_type_error("type error") ; // L25 } } } } else { -if (__static_condition_default_976) { +if (__static_condition_default_2053) { { { - __printf_324 ("Not configured to support old kernels") ; // L27 +if (__static_condition_default_2054) { + __printf_421 ("Not configured to support old kernels") ; // L27 +} +if (__static_condition_default_2055) { +__static_type_error("type error") ; // L27 +} { goto out_0; @@ -1191,31 +2991,36 @@ goto out_0; } } } -if (__static_condition_default_977) { -if ( __r_966 )// L24 +if (__static_condition_default_2056) { +if ( __r_2038 )// L24 { -if (__static_condition_default_977) { +if (__static_condition_default_2056) { { { - __k_crcs_970 = __someInt_969 ; // L25 + __k_crcs_2043 = __someInt_2042 ; // L25 } } } } else { -if (__static_condition_default_977) { +if (__static_condition_default_2056) { { { - __printf_324 ("Not configured to support old kernels") ; // L27 +if (__static_condition_default_2057) { + __printf_421 ("Not configured to support old kernels") ; // L27 +} +if (__static_condition_default_2058) { +__static_type_error("type error") ; // L27 +} { goto out_0; @@ -1228,7 +3033,7 @@ goto out_0; out_0: { -return ( __exit_status_968 ) ;// L32 +return ( __exit_status_2041 ) ;// L32 } return 0 ;// L34 } @@ -1237,81 +3042,86 @@ return 0 ;// L34 } } -int (__main_972) (int __argc_963, char * (* (__argv_964))) { +int (__main_2045) (int __argc_2036, char * (* (__argv_2037))) { -if (__static_condition_default_978) { +if (__static_condition_default_2059) { { { -int __r_965= rand( ) % 2;// L6 - -int __r_966= rand( ) % 2;// L6 +int __r_2038= rand( ) % 2;// L6 -int __m_has_modinfo_967;// L7 +int __m_has_modinfo_2040;// L7 -int __exit_status_968= - 1;// L8 +int __exit_status_2041= - 1;// L8 -int __someInt_969= 1;// L9 +int __someInt_2042= 1;// L9 -int __k_crcs_970;// L12 +int __k_crcs_2043;// L12 -if (__static_condition_default_979) { -if ( __r_965 )// L15 +if (__static_condition_default_2060) { +if ( __r_2038 )// L15 { -if (__static_condition_default_979) { - __m_has_modinfo_967 = 0 ; // L16 +if (__static_condition_default_2061) { + __m_has_modinfo_2040 = 0 ; // L16 } } else { -if (__static_condition_default_979) { - __m_has_modinfo_967 = 1 ; // L18 +if (__static_condition_default_2060) { + __m_has_modinfo_2040 = 1 ; // L18 } } } -if (__static_condition_default_980) { -if ( __r_966 )// L15 +if (__static_condition_default_2062) { +if ( __r_2038 )// L15 { -if (__static_condition_default_980) { - __m_has_modinfo_967 = 0 ; // L16 +if (__static_condition_default_2063) { + __m_has_modinfo_2040 = 0 ; // L16 } } else { -if (__static_condition_default_980) { - __m_has_modinfo_967 = 1 ; // L18 +if (__static_condition_default_2062) { + __m_has_modinfo_2040 = 1 ; // L18 +} } } +if (__static_condition_default_2064) { + __k_crcs_2043 = 0 ; // L21 } - __k_crcs_970 = 0 ; // L21 -if (__static_condition_default_981) { -if ( __r_965 )// L24 +if (__static_condition_default_2065) { +if ( __r_2038 )// L24 { -if (__static_condition_default_981) { +if (__static_condition_default_2065) { { { - __k_crcs_970 = __someInt_969 ; // L25 +__static_type_error("type error") ; // L25 } } } } else { -if (__static_condition_default_981) { +if (__static_condition_default_2065) { { { - __printf_324 ("Not configured to support old kernels") ; // L27 +if (__static_condition_default_2066) { + __printf_421 ("Not configured to support old kernels") ; // L27 +} +if (__static_condition_default_2067) { +__static_type_error("type error") ; // L27 +} { goto out_1; @@ -1321,31 +3131,36 @@ goto out_1; } } } -if (__static_condition_default_982) { -if ( __r_966 )// L24 +if (__static_condition_default_2068) { +if ( __r_2038 )// L24 { -if (__static_condition_default_982) { +if (__static_condition_default_2068) { { { - __k_crcs_970 = __someInt_969 ; // L25 + __k_crcs_2043 = __someInt_2042 ; // L25 } } } } else { -if (__static_condition_default_982) { +if (__static_condition_default_2068) { { { - __printf_324 ("Not configured to support old kernels") ; // L27 +if (__static_condition_default_2069) { + __printf_421 ("Not configured to support old kernels") ; // L27 +} +if (__static_condition_default_2070) { +__static_type_error("type error") ; // L27 +} { goto out_1; @@ -1358,7 +3173,45 @@ goto out_1; out_1: { -return ( __exit_status_968 ) ;// L32 +return ( __exit_status_2041 ) ;// L32 +} +return 0 ;// L34 +} +} + + +} +} +int (__main_2046) (int __argc_2036, char * (* (__argv_2037))) { + +if (__static_condition_default_2071) { + +{ +{ + + + +if (__static_condition_default_2039) { +__static_type_error("invalid declaration of r under this presence condition"); +} + +int __m_has_modinfo_2040;// L7 + +int __exit_status_2041= - 1;// L8 + +int __someInt_2042= 1;// L9 + +int __k_crcs_2043;// L12 + +__static_type_error("invalid type found in ifelse statement"); +if (__static_condition_default_2072) { + __k_crcs_2043 = 0 ; // L21 +} +__static_type_error("invalid type found in ifelse statement"); + +out_2: +{ +return ( __exit_status_2041 ) ;// L32 } return 0 ;// L34 } diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.clangres index 227bb2fb..8ce4d68c 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.clangres @@ -1,43 +1,40 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1135:2: warning: Value stored to '__m_has_modinfo_967' is never read [deadcode.DeadStores] - __m_has_modinfo_967 = 0 ; // L16 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1141:2: warning: Value stored to '__m_has_modinfo_967' is never read [deadcode.DeadStores] - __m_has_modinfo_967 = 1 ; // L18 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1149:2: warning: Value stored to '__m_has_modinfo_967' is never read [deadcode.DeadStores] - __m_has_modinfo_967 = 0 ; // L16 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1155:2: warning: Value stored to '__m_has_modinfo_967' is never read [deadcode.DeadStores] - __m_has_modinfo_967 = 1 ; // L18 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1159:2: warning: Value stored to '__k_crcs_970' is never read [deadcode.DeadStores] - __k_crcs_970 = 0 ; // L21 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1170:2: warning: Value stored to '__k_crcs_970' is never read [deadcode.DeadStores] - __k_crcs_970 = __someInt_969 ; // L25 - ^ ~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1204:2: warning: Value stored to '__k_crcs_970' is never read [deadcode.DeadStores] - __k_crcs_970 = __someInt_969 ; // L25 - ^ ~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1265:2: warning: Value stored to '__m_has_modinfo_967' is never read [deadcode.DeadStores] - __m_has_modinfo_967 = 0 ; // L16 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1271:2: warning: Value stored to '__m_has_modinfo_967' is never read [deadcode.DeadStores] - __m_has_modinfo_967 = 1 ; // L18 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1279:2: warning: Value stored to '__m_has_modinfo_967' is never read [deadcode.DeadStores] - __m_has_modinfo_967 = 0 ; // L16 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1285:2: warning: Value stored to '__m_has_modinfo_967' is never read [deadcode.DeadStores] - __m_has_modinfo_967 = 1 ; // L18 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1289:2: warning: Value stored to '__k_crcs_970' is never read [deadcode.DeadStores] - __k_crcs_970 = 0 ; // L21 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1300:2: warning: Value stored to '__k_crcs_970' is never read [deadcode.DeadStores] - __k_crcs_970 = __someInt_969 ; // L25 - ^ ~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1334:2: warning: Value stored to '__k_crcs_970' is never read [deadcode.DeadStores] - __k_crcs_970 = __someInt_969 ; // L25 - ^ ~~~~~~~~~~~~~ -14 warnings generated. +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:2928:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] + __m_has_modinfo_2040 = 0 ; // L16 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:2934:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] + __m_has_modinfo_2040 = 1 ; // L18 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:2942:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] + __m_has_modinfo_2040 = 0 ; // L16 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:2948:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] + __m_has_modinfo_2040 = 1 ; // L18 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:2953:2: warning: Value stored to '__k_crcs_2043' is never read [deadcode.DeadStores] + __k_crcs_2043 = 0 ; // L21 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3004:2: warning: Value stored to '__k_crcs_2043' is never read [deadcode.DeadStores] + __k_crcs_2043 = __someInt_2042 ; // L25 + ^ ~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3068:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] + __m_has_modinfo_2040 = 0 ; // L16 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3074:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] + __m_has_modinfo_2040 = 1 ; // L18 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3082:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] + __m_has_modinfo_2040 = 0 ; // L16 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3088:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] + __m_has_modinfo_2040 = 1 ; // L18 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3093:2: warning: Value stored to '__k_crcs_2043' is never read [deadcode.DeadStores] + __k_crcs_2043 = 0 ; // L21 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3144:2: warning: Value stored to '__k_crcs_2043' is never read [deadcode.DeadStores] + __k_crcs_2043 = __someInt_2042 ; // L25 + ^ ~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3208:2: warning: Value stored to '__k_crcs_2043' is never read [deadcode.DeadStores] + __k_crcs_2043 = 0 ; // L21 + ^ ~ +13 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/5cd6461b6fb.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/5cd6461b6fb.desugared.c index b3e69275..c6ab6a83 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/5cd6461b6fb.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/5cd6461b6fb.desugared.c @@ -7,238 +7,357 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_567; +extern const bool __static_condition_default_846; +extern const bool __static_condition_default_1428; extern const bool __static_condition_default_274; -extern const bool __static_condition_default_1396; -extern const bool __static_condition_default_502; -extern const bool __static_condition_default_579; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_983; -extern const bool __static_condition_default_743; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_612; -extern const bool __static_condition_default_232; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_358; -extern const bool __static_condition_default_326; -extern const bool __static_condition_default_474; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_294; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_917; -extern const bool __static_condition_default_429; -extern const bool __static_condition_default_451; -extern const bool __static_condition_default_533; -extern const bool __static_condition_default_1611; -extern const bool __static_condition_default_935; -extern const bool __static_condition_default_1616; -extern const bool __static_condition_default_496; -extern const bool __static_condition_default_648; -extern const bool __static_condition_default_459; -extern const bool __static_condition_default_804; -extern const bool __static_condition_default_435; -extern const bool __static_condition_default_1625; -extern const bool __static_condition_default_1618; -extern const bool __static_condition_default_1431; -extern const bool __static_condition_default_1607; -extern const bool __static_condition_default_446; -extern const bool __static_condition_default_457; -extern const bool __static_condition_default_349; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_1622; -extern const bool __static_condition_default_330; -extern const bool __static_condition_default_304; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_672; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_833; -extern const bool __static_condition_default_976; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_586; +extern const bool __static_condition_default_489; +extern const bool __static_condition_default_1373; +extern const bool __static_condition_default_1750; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_963; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_834; +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_2062; +extern const bool __static_condition_default_417; extern const bool __static_condition_default_991; -extern const bool __static_condition_default_1608; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_694; -extern const bool __static_condition_default_642; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_1619; -extern const bool __static_condition_default_1630; -extern const bool __static_condition_default_332; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_507; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_379; -extern const bool __static_condition_default_595; -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_1404; -extern const bool __static_condition_default_421; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_855; -extern const bool __static_condition_default_1167; -extern const bool __static_condition_default_729; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_696; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_820; -extern const bool __static_condition_default_1397; -extern const bool __static_condition_default_276; -extern const bool __static_condition_default_639; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_338; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_739; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_2044; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_170; extern const bool __static_condition_default_538; -extern const bool __static_condition_default_556; +extern const bool __static_condition_default_290; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_187; +extern const bool __static_condition_default_1489; +extern const bool __static_condition_default_2056; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_1065; extern const bool __static_condition_default_473; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_482; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_454; +extern const bool __static_condition_default_789; +extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_791; +extern const bool __static_condition_default_747; +extern const bool __static_condition_default_836; extern const bool __static_condition_default_817; -extern const bool __static_condition_default_431; -extern const bool __static_condition_default_508; -extern const bool __static_condition_default_162; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_453; -extern const bool __static_condition_default_118; -extern const bool __static_condition_default_720; -extern const bool __static_condition_default_762; -extern const bool __static_condition_default_517; -extern const bool __static_condition_default_968; -extern const bool __static_condition_default_999; -extern const bool __static_condition_default_500; -extern const bool __static_condition_default_706; -extern const bool __static_condition_default_400; -extern const bool __static_condition_default_624; -extern const bool __static_condition_default_641; -extern const bool __static_condition_default_1609; -extern const bool __static_condition_default_1017; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_356; -extern const bool __static_condition_default_719; -extern const bool __static_condition_default_733; -extern const bool __static_condition_default_984; -extern const bool __static_condition_default_226; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_774; +extern const bool __static_condition_default_1576; +extern const bool __static_condition_default_536; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_549; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_1391; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_2047; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_1345; +extern const bool __static_condition_default_76; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_544; +extern const bool __static_condition_default_1532; +extern const bool __static_condition_default_1420; +extern const bool __static_condition_default_337; +extern const bool __static_condition_default_1349; +extern const bool __static_condition_default_891; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_382; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_1531; +extern const bool __static_condition_default_311; +extern const bool __static_condition_default_636; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_1754; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_907; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_367; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_333; extern const bool __static_condition_default_708; -extern const bool __static_condition_default_318; -extern const bool __static_condition_default_603; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_1388; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_1361; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_1568; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_1424; +extern const bool __static_condition_default_2052; +extern const bool __static_condition_default_779; +extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_1785; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_1416; +extern const bool __static_condition_default_1365; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_204; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_875; +extern const bool __static_condition_default_1944; extern const bool __static_condition_default_727; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_882; -extern const bool __static_condition_default_351; -extern const bool __static_condition_default_370; -extern const bool __static_condition_default_881; -extern const bool __static_condition_default_992; -extern const bool __static_condition_default_336; -extern const bool __static_condition_default_749; -extern const bool __static_condition_default_1383; -extern const bool __static_condition_default_501; -extern const bool __static_condition_default_310; -extern const bool __static_condition_default_540; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_480; -extern const bool __static_condition_default_577; -extern const bool __static_condition_default_948; -extern const bool __static_condition_default_448; -extern const bool __static_condition_default_227; -extern const bool __static_condition_default_551; -extern const bool __static_condition_default_718; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_998; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_550; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_510; extern const bool __static_condition_default_813; -extern const bool __static_condition_default_236; -extern const bool __static_condition_default_889; -extern const bool __static_condition_default_962; -extern const bool __static_condition_default_225; -extern const bool __static_condition_default_495; -extern const bool __static_condition_default_1624; -extern const bool __static_condition_default_790; -extern const bool __static_condition_default_575; -extern const bool __static_condition_default_798; -extern const bool __static_condition_default_328; -extern const bool __static_condition_default_766; -extern const bool __static_condition_default_716; -extern const bool __static_condition_default_470; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_714; -extern const bool __static_condition_default_1538; -extern const bool __static_condition_default_1610; -extern const bool __static_condition_default_954; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_761; +extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_1402; +extern const bool __static_condition_default_84; +extern const bool __static_condition_default_1816; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_2063; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_1405; +extern const bool __static_condition_default_2058; +extern const bool __static_condition_default_955; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_2043; +extern const bool __static_condition_default_613; +extern const bool __static_condition_default_455; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_1341; +extern const bool __static_condition_default_568; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_1475; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_347; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_1791; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_1774; +extern const bool __static_condition_default_1515; +extern const bool __static_condition_default_753; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_1749; +extern const bool __static_condition_default_1353; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_1398; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_2060; +extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_493; extern const bool __static_condition_default_883; -extern const bool __static_condition_default_904; -extern const bool __static_condition_default_1406; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_688; -extern const bool __static_condition_default_343; -extern const bool __static_condition_default_1606; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_381; -extern const bool __static_condition_default_695; +extern const bool __static_condition_default_488; +extern const bool __static_condition_default_842; +extern const bool __static_condition_default_2045; +extern const bool __static_condition_default_894; +extern const bool __static_condition_default_2054; +extern const bool __static_condition_default_559; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_365; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_2049; +extern const bool __static_condition_default_1409; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_1432; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_1381; +extern const bool __static_condition_default_1773; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_1787; +extern const bool __static_condition_default_388; +extern const bool __static_condition_default_1436; +extern const bool __static_condition_default_583; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_1152; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_2057; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_2059; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_1165; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_1369; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_619; +extern const bool __static_condition_default_1357; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_2061; +extern const bool __static_condition_default_670; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_1159; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_521; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_1498; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_1810; +extern const bool __static_condition_default_677; extern const bool __static_condition_default_597; -extern const bool __static_condition_default_1620; -extern const bool __static_condition_default_300; -extern const bool __static_condition_default_562; -extern const bool __static_condition_default_640; -extern const bool __static_condition_default_374; -extern const bool __static_condition_default_707; -extern const bool __static_condition_default_528; -extern const bool __static_condition_default_961; -extern const bool __static_condition_default_1429; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_969; -extern const bool __static_condition_default_870; -extern const bool __static_condition_default_931; -extern const bool __static_condition_default_74; -extern const bool __static_condition_default_394; -extern const bool __static_condition_default_627; -extern const bool __static_condition_default_778; -extern const bool __static_condition_default_254; -extern const bool __static_condition_default_1016; -extern const bool __static_condition_default_588; -extern const bool __static_condition_default_320; -extern const bool __static_condition_default_680; -extern const bool __static_condition_default_1006; -extern const bool __static_condition_default_1425; -extern const bool __static_condition_default_1614; -extern const bool __static_condition_default_953; +extern const bool __static_condition_default_419; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_1775; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_1395; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_1377; +extern const bool __static_condition_default_1485; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_1753; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_1453; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_1560; +extern const bool __static_condition_default_386; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_769; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_1552; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_2042; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_929; +extern const bool __static_condition_default_1091; extern const bool __static_condition_default_395; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_898; -extern const bool __static_condition_default_906; -extern const bool __static_condition_default_772; -extern const bool __static_condition_default_610; -extern const bool __static_condition_default_234; -extern const bool __static_condition_default_230; -extern const bool __static_condition_default_308; -extern const bool __static_condition_default_1621; -extern const bool __static_condition_default_794; -extern const bool __static_condition_default_893; -extern const bool __static_condition_default_626; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_449; -extern const bool __static_condition_default_605; -extern const bool __static_condition_default_784; -extern const bool __static_condition_default_1381; -extern const bool __static_condition_default_933; -extern const bool __static_condition_default_905; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_165; -extern const bool __static_condition_default_924; -extern const bool __static_condition_default_977; -extern const bool __static_condition_default_655; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_941; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_1315; +extern const bool __static_condition_default_1385; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_1516; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_2046; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_759; +extern const bool __static_condition_default_1458; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_1459; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_702; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_1789; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_1572; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_1808; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_2048; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_1556; extern const bool __static_condition_default_393; -extern const bool __static_condition_default_1423; -extern const bool __static_condition_default_256; -extern const bool __static_condition_default_161; -extern const bool __static_condition_default_1623; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_512; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_721; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_1564; +extern const bool __static_condition_default_2068; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_1814; +extern const bool __static_condition_default_1776; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_380; +extern const bool __static_condition_default_1164; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -290,696 +409,1052 @@ __static_renaming("____ssize_t_49", "__ssize_t"); __static_renaming("____syscall_slong_t_50", "__syscall_slong_t"); __static_renaming("____syscall_ulong_t_51", "__syscall_ulong_t"); __static_renaming("____loff_t_52", "__loff_t"); -__static_renaming("____qaddr_t_53", "__qaddr_t"); -__static_renaming("____caddr_t_54", "__caddr_t"); -__static_renaming("____intptr_t_55", "__intptr_t"); -__static_renaming("____socklen_t_56", "__socklen_t"); -__static_renaming("__FILE_58", "FILE"); -__static_renaming("____FILE_59", "__FILE"); -__static_renaming("____mbstate_t_68", "__mbstate_t"); -__static_renaming("___G_fpos_t_75", "_G_fpos_t"); -__static_renaming("___G_fpos64_t_81", "_G_fpos64_t"); -__static_renaming("____gnuc_va_list_82", "__gnuc_va_list"); -__static_renaming("___IO_lock_t_84", "_IO_lock_t"); -__static_renaming("___IO_FILE_163", "_IO_FILE"); -__static_renaming("___IO_FILE_164", "_IO_FILE"); -__static_renaming("___IO_2_1_stdin__167", "_IO_2_1_stdin_"); -__static_renaming("___IO_2_1_stdout__168", "_IO_2_1_stdout_"); -__static_renaming("___IO_2_1_stderr__169", "_IO_2_1_stderr_"); -__static_renaming("____io_read_fn_173", "__io_read_fn"); -__static_renaming("____io_write_fn_177", "__io_write_fn"); -__static_renaming("____io_seek_fn_181", "__io_seek_fn"); -__static_renaming("____io_close_fn_183", "__io_close_fn"); -__static_renaming("____underflow_184", "__underflow"); -__static_renaming("____underflow_185", "__underflow"); -__static_renaming("____uflow_186", "__uflow"); -__static_renaming("____uflow_187", "__uflow"); -__static_renaming("____overflow_188", "__overflow"); -__static_renaming("____overflow_189", "__overflow"); -__static_renaming("___IO_getc_193", "_IO_getc"); -__static_renaming("___IO_getc_194", "_IO_getc"); -__static_renaming("___IO_putc_199", "_IO_putc"); -__static_renaming("___IO_putc_200", "_IO_putc"); -__static_renaming("___IO_feof_204", "_IO_feof"); -__static_renaming("___IO_feof_205", "_IO_feof"); -__static_renaming("___IO_ferror_209", "_IO_ferror"); -__static_renaming("___IO_ferror_210", "_IO_ferror"); -__static_renaming("___IO_peekc_locked_214", "_IO_peekc_locked"); -__static_renaming("___IO_peekc_locked_215", "_IO_peekc_locked"); -__static_renaming("___IO_flockfile_216", "_IO_flockfile"); -__static_renaming("___IO_flockfile_217", "_IO_flockfile"); -__static_renaming("___IO_funlockfile_218", "_IO_funlockfile"); -__static_renaming("___IO_funlockfile_219", "_IO_funlockfile"); -__static_renaming("___IO_ftrylockfile_220", "_IO_ftrylockfile"); -__static_renaming("___IO_ftrylockfile_221", "_IO_ftrylockfile"); -__static_renaming("___IO_vfscanf_222", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_224", "_IO_vfscanf"); -__static_renaming("___IO_vfprintf_231", "_IO_vfprintf"); -__static_renaming("___IO_vfprintf_233", "_IO_vfprintf"); -__static_renaming("___IO_padn_238", "_IO_padn"); -__static_renaming("___IO_padn_239", "_IO_padn"); -__static_renaming("___IO_sgetn_240", "_IO_sgetn"); -__static_renaming("___IO_sgetn_241", "_IO_sgetn"); -__static_renaming("___IO_seekoff_242", "_IO_seekoff"); -__static_renaming("___IO_seekoff_243", "_IO_seekoff"); -__static_renaming("___IO_seekpos_244", "_IO_seekpos"); -__static_renaming("___IO_seekpos_245", "_IO_seekpos"); -__static_renaming("___IO_free_backup_area_246", "_IO_free_backup_area"); -__static_renaming("___IO_free_backup_area_247", "_IO_free_backup_area"); -__static_renaming("__va_list_248", "va_list"); -__static_renaming("__off_t_250", "off_t"); -__static_renaming("__off_t_251", "off_t"); -__static_renaming("__ssize_t_252", "ssize_t"); -__static_renaming("__fpos_t_253", "fpos_t"); -__static_renaming("__fpos_t_255", "fpos_t"); -__static_renaming("__stdin_257", "stdin"); -__static_renaming("__stdin_258", "stdin"); -__static_renaming("__stdout_259", "stdout"); -__static_renaming("__stdout_260", "stdout"); -__static_renaming("__stderr_261", "stderr"); -__static_renaming("__stderr_262", "stderr"); -__static_renaming("__remove_264", "remove"); -__static_renaming("__rename_267", "rename"); -__static_renaming("__renameat_272", "renameat"); -__static_renaming("__tmpfile_273", "tmpfile"); -__static_renaming("__tmpfile_275", "tmpfile"); -__static_renaming("__tmpfile_277", "tmpfile"); -__static_renaming("__tmpfile_279", "tmpfile"); -__static_renaming("__tmpnam_282", "tmpnam"); -__static_renaming("__tmpnam_283", "tmpnam"); -__static_renaming("__tmpnam_r_285", "tmpnam_r"); -__static_renaming("__tmpnam_r_286", "tmpnam_r"); -__static_renaming("__tempnam_289", "tempnam"); -__static_renaming("__tempnam_290", "tempnam"); -__static_renaming("__fclose_293", "fclose"); -__static_renaming("__fclose_295", "fclose"); -__static_renaming("__fflush_299", "fflush"); -__static_renaming("__fflush_unlocked_303", "fflush_unlocked"); -__static_renaming("__fopen_307", "fopen"); -__static_renaming("__fopen_309", "fopen"); -__static_renaming("__fopen_317", "fopen"); -__static_renaming("__fopen_319", "fopen"); -__static_renaming("__freopen_325", "freopen"); -__static_renaming("__freopen_327", "freopen"); -__static_renaming("__freopen_329", "freopen"); -__static_renaming("__freopen_331", "freopen"); -__static_renaming("__fdopen_335", "fdopen"); -__static_renaming("__fdopen_337", "fdopen"); -__static_renaming("__fmemopen_342", "fmemopen"); -__static_renaming("__fmemopen_344", "fmemopen"); -__static_renaming("__open_memstream_348", "open_memstream"); -__static_renaming("__open_memstream_350", "open_memstream"); -__static_renaming("__setbuf_355", "setbuf"); -__static_renaming("__setbuf_357", "setbuf"); -__static_renaming("__setvbuf_364", "setvbuf"); -__static_renaming("__setbuffer_369", "setbuffer"); -__static_renaming("__setlinebuf_373", "setlinebuf"); -__static_renaming("__fprintf_378", "fprintf"); -__static_renaming("__fprintf_380", "fprintf"); -__static_renaming("__printf_383", "printf"); -__static_renaming("__sprintf_386", "sprintf"); -__static_renaming("__vfprintf_392", "vfprintf"); -__static_renaming("__vprintf_399", "vprintf"); -__static_renaming("__vsprintf_405", "vsprintf"); -__static_renaming("__snprintf_409", "snprintf"); -__static_renaming("__vsnprintf_415", "vsnprintf"); -__static_renaming("__vdprintf_420", "vdprintf"); -__static_renaming("__dprintf_424", "dprintf"); -__static_renaming("__fscanf_428", "fscanf"); -__static_renaming("__fscanf_430", "fscanf"); -__static_renaming("__fscanf_432", "fscanf"); -__static_renaming("__fscanf_434", "fscanf"); -__static_renaming("__scanf_437", "scanf"); -__static_renaming("__scanf_438", "scanf"); -__static_renaming("__sscanf_441", "sscanf"); -__static_renaming("__vfscanf_468", "vfscanf"); -__static_renaming("__vfscanf_472", "vfscanf"); -__static_renaming("__vscanf_479", "vscanf"); -__static_renaming("__vscanf_481", "vscanf"); -__static_renaming("__vsscanf_487", "vsscanf"); -__static_renaming("__fgetc_520", "fgetc"); -__static_renaming("__getc_523", "getc"); -__static_renaming("__getchar_524", "getchar"); -__static_renaming("__getc_unlocked_527", "getc_unlocked"); -__static_renaming("__getchar_unlocked_529", "getchar_unlocked"); -__static_renaming("__fgetc_unlocked_532", "fgetc_unlocked"); -__static_renaming("__fputc_537", "fputc"); -__static_renaming("__fputc_539", "fputc"); -__static_renaming("__putc_544", "putc"); -__static_renaming("__putchar_546", "putchar"); -__static_renaming("__fputc_unlocked_550", "fputc_unlocked"); -__static_renaming("__putc_unlocked_555", "putc_unlocked"); -__static_renaming("__putchar_unlocked_558", "putchar_unlocked"); -__static_renaming("__getw_561", "getw"); -__static_renaming("__putw_566", "putw"); -__static_renaming("__fgets_572", "fgets"); -__static_renaming("__fgets_574", "fgets"); -__static_renaming("__fgets_576", "fgets"); -__static_renaming("__fgets_578", "fgets"); -__static_renaming("____getdelim_585", "__getdelim"); -__static_renaming("____getdelim_587", "__getdelim"); -__static_renaming("__getdelim_594", "getdelim"); -__static_renaming("__getdelim_596", "getdelim"); -__static_renaming("__getline_602", "getline"); -__static_renaming("__getline_604", "getline"); -__static_renaming("__fputs_609", "fputs"); -__static_renaming("__fputs_611", "fputs"); -__static_renaming("__puts_614", "puts"); -__static_renaming("__ungetc_618", "ungetc"); -__static_renaming("__fseek_654", "fseek"); -__static_renaming("__fseek_656", "fseek"); -__static_renaming("__ftell_660", "ftell"); -__static_renaming("__ftell_662", "ftell"); -__static_renaming("__rewind_666", "rewind"); -__static_renaming("__fseeko_671", "fseeko"); -__static_renaming("__fseeko_679", "fseeko"); -__static_renaming("__ftello_683", "ftello"); -__static_renaming("__ftello_685", "ftello"); -__static_renaming("__ftello_687", "ftello"); -__static_renaming("__fgetpos_693", "fgetpos"); -__static_renaming("__fgetpos_705", "fgetpos"); -__static_renaming("__fsetpos_713", "fsetpos"); -__static_renaming("__fsetpos_717", "fsetpos"); -__static_renaming("__clearerr_723", "clearerr"); -__static_renaming("__feof_726", "feof"); -__static_renaming("__feof_728", "feof"); -__static_renaming("__ferror_732", "ferror"); -__static_renaming("__ferror_734", "ferror"); -__static_renaming("__clearerr_unlocked_738", "clearerr_unlocked"); -__static_renaming("__feof_unlocked_742", "feof_unlocked"); -__static_renaming("__feof_unlocked_744", "feof_unlocked"); -__static_renaming("__ferror_unlocked_748", "ferror_unlocked"); -__static_renaming("__ferror_unlocked_750", "ferror_unlocked"); -__static_renaming("__perror_753", "perror"); -__static_renaming("__perror_754", "perror"); -__static_renaming("__sys_nerr_755", "sys_nerr"); -__static_renaming("__sys_errlist_756", "sys_errlist"); -__static_renaming("__fileno_759", "fileno"); -__static_renaming("__fileno_761", "fileno"); -__static_renaming("__fileno_unlocked_765", "fileno_unlocked"); -__static_renaming("__fileno_unlocked_767", "fileno_unlocked"); -__static_renaming("__popen_771", "popen"); -__static_renaming("__popen_773", "popen"); -__static_renaming("__pclose_777", "pclose"); -__static_renaming("__ctermid_780", "ctermid"); -__static_renaming("__flockfile_783", "flockfile"); -__static_renaming("__ftrylockfile_787", "ftrylockfile"); -__static_renaming("__ftrylockfile_789", "ftrylockfile"); -__static_renaming("__funlockfile_793", "funlockfile"); -__static_renaming("____sprintf_chk_825", "__sprintf_chk"); -__static_renaming("____vsprintf_chk_832", "__vsprintf_chk"); -__static_renaming("____snprintf_chk_846", "__snprintf_chk"); -__static_renaming("____vsnprintf_chk_854", "__vsnprintf_chk"); -__static_renaming("____fprintf_chk_869", "__fprintf_chk"); -__static_renaming("____printf_chk_873", "__printf_chk"); -__static_renaming("____vfprintf_chk_880", "__vfprintf_chk"); -__static_renaming("____vprintf_chk_888", "__vprintf_chk"); -__static_renaming("____dprintf_chk_910", "__dprintf_chk"); -__static_renaming("____vdprintf_chk_916", "__vdprintf_chk"); -__static_renaming("____fgets_chk_930", "__fgets_chk"); -__static_renaming("____fgets_chk_932", "__fgets_chk"); -__static_renaming("____fgets_chk_934", "__fgets_chk"); -__static_renaming("____fgets_alias_940", "__fgets_alias"); -__static_renaming("____fgets_chk_warn_947", "__fgets_chk_warn"); -__static_renaming("____cnt_1013", "__cnt"); -__static_renaming("____cptr_1014", "__cptr"); -__static_renaming("__wchar_t_1018", "wchar_t"); -__static_renaming("__idtype_t_1024", "idtype_t"); -__static_renaming("____bswap_32_1026", "__bswap_32"); -__static_renaming("____bswap_64_1029", "__bswap_64"); -__static_renaming("____WAIT_STATUS_1049", "__WAIT_STATUS"); -__static_renaming("__div_t_1054", "div_t"); -__static_renaming("__ldiv_t_1059", "ldiv_t"); -__static_renaming("__lldiv_t_1064", "lldiv_t"); -__static_renaming("____ctype_get_mb_cur_max_1065", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1066", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1067", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1068", "__ctype_get_mb_cur_max"); -__static_renaming("__atof_1070", "atof"); -__static_renaming("__atof_1071", "atof"); -__static_renaming("__atoi_1073", "atoi"); -__static_renaming("__atoi_1074", "atoi"); -__static_renaming("__atol_1076", "atol"); -__static_renaming("__atol_1077", "atol"); -__static_renaming("__atoll_1079", "atoll"); -__static_renaming("__atoll_1080", "atoll"); -__static_renaming("__strtod_1083", "strtod"); -__static_renaming("__strtof_1086", "strtof"); -__static_renaming("__strtold_1089", "strtold"); -__static_renaming("__strtol_1093", "strtol"); -__static_renaming("__strtoul_1097", "strtoul"); -__static_renaming("__strtoq_1101", "strtoq"); -__static_renaming("__strtouq_1105", "strtouq"); -__static_renaming("__strtoll_1109", "strtoll"); -__static_renaming("__strtoll_1110", "strtoll"); -__static_renaming("__strtoull_1114", "strtoull"); -__static_renaming("__l64a_1119", "l64a"); -__static_renaming("__l64a_1120", "l64a"); -__static_renaming("__a64l_1122", "a64l"); -__static_renaming("__a64l_1123", "a64l"); -__static_renaming("__u_char_1124", "u_char"); -__static_renaming("__u_short_1125", "u_short"); -__static_renaming("__u_int_1126", "u_int"); -__static_renaming("__u_long_1127", "u_long"); -__static_renaming("__quad_t_1128", "quad_t"); -__static_renaming("__u_quad_t_1129", "u_quad_t"); -__static_renaming("__fsid_t_1130", "fsid_t"); -__static_renaming("__loff_t_1131", "loff_t"); -__static_renaming("__ino_t_1132", "ino_t"); -__static_renaming("__ino_t_1133", "ino_t"); -__static_renaming("__dev_t_1134", "dev_t"); -__static_renaming("__gid_t_1135", "gid_t"); -__static_renaming("__gid_t_1136", "gid_t"); -__static_renaming("__mode_t_1137", "mode_t"); -__static_renaming("__nlink_t_1138", "nlink_t"); -__static_renaming("__uid_t_1139", "uid_t"); -__static_renaming("__uid_t_1140", "uid_t"); -__static_renaming("__pid_t_1141", "pid_t"); -__static_renaming("__id_t_1142", "id_t"); -__static_renaming("__daddr_t_1143", "daddr_t"); -__static_renaming("__caddr_t_1144", "caddr_t"); -__static_renaming("__key_t_1145", "key_t"); -__static_renaming("__key_t_1146", "key_t"); -__static_renaming("__clock_t_1147", "clock_t"); -__static_renaming("__time_t_1148", "time_t"); -__static_renaming("__clockid_t_1149", "clockid_t"); -__static_renaming("__timer_t_1150", "timer_t"); -__static_renaming("__ulong_1151", "ulong"); -__static_renaming("__ulong_1152", "ulong"); -__static_renaming("__ulong_1153", "ulong"); -__static_renaming("__ushort_1154", "ushort"); -__static_renaming("__uint_1155", "uint"); -__static_renaming("__int8_t_1156", "int8_t"); -__static_renaming("__int16_t_1157", "int16_t"); -__static_renaming("__int32_t_1158", "int32_t"); -__static_renaming("__int64_t_1159", "int64_t"); -__static_renaming("__u_int8_t_1160", "u_int8_t"); -__static_renaming("__u_int16_t_1161", "u_int16_t"); -__static_renaming("__u_int32_t_1162", "u_int32_t"); -__static_renaming("__u_int64_t_1163", "u_int64_t"); -__static_renaming("__register_t_1164", "register_t"); -__static_renaming("____bswap_32_1166", "__bswap_32"); -__static_renaming("____bswap_64_1169", "__bswap_64"); -__static_renaming("____sig_atomic_t_1170", "__sig_atomic_t"); -__static_renaming("____sigset_t_1174", "__sigset_t"); -__static_renaming("__sigset_t_1175", "sigset_t"); -__static_renaming("__suseconds_t_1182", "suseconds_t"); -__static_renaming("____fd_mask_1183", "__fd_mask"); -__static_renaming("____fd_mask_1184", "__fd_mask"); -__static_renaming("__fd_set_1189", "fd_set"); -__static_renaming("__fd_mask_1190", "fd_mask"); -__static_renaming("__fd_mask_1191", "fd_mask"); -__static_renaming("__select_1199", "select"); -__static_renaming("__select_1200", "select"); -__static_renaming("__pselect_1209", "pselect"); -__static_renaming("__pselect_1210", "pselect"); -__static_renaming("____fdelt_chk_1212", "__fdelt_chk"); -__static_renaming("____fdelt_warn_1214", "__fdelt_warn"); -__static_renaming("__gnu_dev_major_1216", "gnu_dev_major"); -__static_renaming("__gnu_dev_major_1217", "gnu_dev_major"); -__static_renaming("__gnu_dev_minor_1219", "gnu_dev_minor"); -__static_renaming("__gnu_dev_makedev_1222", "gnu_dev_makedev"); -__static_renaming("__blksize_t_1227", "blksize_t"); -__static_renaming("__blkcnt_t_1228", "blkcnt_t"); -__static_renaming("__fsblkcnt_t_1229", "fsblkcnt_t"); -__static_renaming("__blkcnt_t_1230", "blkcnt_t"); -__static_renaming("__fsblkcnt_t_1231", "fsblkcnt_t"); -__static_renaming("__fsfilcnt_t_1232", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_1233", "fsfilcnt_t"); -__static_renaming("__pthread_t_1234", "pthread_t"); -__static_renaming("__pthread_attr_t_1238", "pthread_attr_t"); -__static_renaming("____pthread_list_t_1243", "__pthread_list_t"); -__static_renaming("____pthread_list_t_1244", "__pthread_list_t"); -__static_renaming("__pthread_mutex_t_1260", "pthread_mutex_t"); -__static_renaming("__pthread_mutexattr_t_1265", "pthread_mutexattr_t"); -__static_renaming("__rand_1266", "rand"); -__static_renaming("__srand_1268", "srand"); -__static_renaming("__rand_r_1270", "rand_r"); -__static_renaming("__drand48_1271", "drand48"); -__static_renaming("__erand48_1273", "erand48"); -__static_renaming("__lrand48_1274", "lrand48"); -__static_renaming("__nrand48_1276", "nrand48"); -__static_renaming("__mrand48_1277", "mrand48"); -__static_renaming("__jrand48_1279", "jrand48"); -__static_renaming("__srand48_1281", "srand48"); -__static_renaming("__seed48_1283", "seed48"); -__static_renaming("__lcong48_1285", "lcong48"); -__static_renaming("__malloc_1287", "malloc"); -__static_renaming("__malloc_1288", "malloc"); -__static_renaming("__calloc_1291", "calloc"); -__static_renaming("__calloc_1292", "calloc"); -__static_renaming("__realloc_1295", "realloc"); -__static_renaming("__realloc_1296", "realloc"); -__static_renaming("__free_1298", "free"); -__static_renaming("__cfree_1300", "cfree"); -__static_renaming("__alloca_1302", "alloca"); -__static_renaming("__valloc_1304", "valloc"); -__static_renaming("__valloc_1305", "valloc"); -__static_renaming("__posix_memalign_1309", "posix_memalign"); -__static_renaming("__posix_memalign_1310", "posix_memalign"); -__static_renaming("__aligned_alloc_1313", "aligned_alloc"); -__static_renaming("__aligned_alloc_1314", "aligned_alloc"); -__static_renaming("__aligned_alloc_1315", "aligned_alloc"); -__static_renaming("__aligned_alloc_1316", "aligned_alloc"); -__static_renaming("__abort_1317", "abort"); -__static_renaming("__atexit_1319", "atexit"); -__static_renaming("__at_quick_exit_1321", "at_quick_exit"); -__static_renaming("__on_exit_1326", "on_exit"); -__static_renaming("__exit_1328", "exit"); -__static_renaming("__exit_1329", "exit"); -__static_renaming("__quick_exit_1331", "quick_exit"); -__static_renaming("___Exit_1333", "_Exit"); -__static_renaming("__getenv_1335", "getenv"); -__static_renaming("__getenv_1336", "getenv"); -__static_renaming("__putenv_1338", "putenv"); -__static_renaming("__setenv_1342", "setenv"); -__static_renaming("__unsetenv_1344", "unsetenv"); -__static_renaming("__clearenv_1345", "clearenv"); -__static_renaming("__mktemp_1347", "mktemp"); -__static_renaming("__mkstemp_1350", "mkstemp"); -__static_renaming("__mkstemp_1351", "mkstemp"); -__static_renaming("__mkstemp_1352", "mkstemp"); -__static_renaming("__mkstemp_1353", "mkstemp"); -__static_renaming("__mkstemps_1358", "mkstemps"); -__static_renaming("__mkstemps_1359", "mkstemps"); -__static_renaming("__mkstemps_1360", "mkstemps"); -__static_renaming("__mkstemps_1361", "mkstemps"); -__static_renaming("__mkdtemp_1363", "mkdtemp"); -__static_renaming("__mkdtemp_1364", "mkdtemp"); -__static_renaming("__system_1366", "system"); -__static_renaming("__system_1367", "system"); -__static_renaming("__system_1368", "system"); -__static_renaming("__system_1369", "system"); -__static_renaming("__realpath_1372", "realpath"); -__static_renaming("__realpath_1373", "realpath"); -__static_renaming("____compar_fn_t_1374", "__compar_fn_t"); -__static_renaming("__bsearch_1382", "bsearch"); -__static_renaming("__bsearch_1384", "bsearch"); -__static_renaming("____l_1391", "__l"); -__static_renaming("____u_1392", "__u"); -__static_renaming("____idx_1393", "__idx"); -__static_renaming("____p_1394", "__p"); -__static_renaming("____comparison_1395", "__comparison"); -__static_renaming("__qsort_1403", "qsort"); -__static_renaming("__qsort_1405", "qsort"); -__static_renaming("__abs_1408", "abs"); -__static_renaming("__abs_1409", "abs"); -__static_renaming("__labs_1411", "labs"); -__static_renaming("__labs_1412", "labs"); -__static_renaming("__llabs_1414", "llabs"); -__static_renaming("__llabs_1415", "llabs"); -__static_renaming("__div_1418", "div"); -__static_renaming("__div_1419", "div"); -__static_renaming("__ldiv_1422", "ldiv"); -__static_renaming("__ldiv_1424", "ldiv"); -__static_renaming("__lldiv_1428", "lldiv"); -__static_renaming("__lldiv_1430", "lldiv"); -__static_renaming("__ecvt_1436", "ecvt"); -__static_renaming("__ecvt_1437", "ecvt"); -__static_renaming("__fcvt_1442", "fcvt"); -__static_renaming("__fcvt_1443", "fcvt"); -__static_renaming("__gcvt_1447", "gcvt"); -__static_renaming("__gcvt_1448", "gcvt"); -__static_renaming("__qecvt_1453", "qecvt"); -__static_renaming("__qecvt_1454", "qecvt"); -__static_renaming("__qfcvt_1459", "qfcvt"); -__static_renaming("__qfcvt_1460", "qfcvt"); -__static_renaming("__qgcvt_1464", "qgcvt"); -__static_renaming("__qgcvt_1465", "qgcvt"); -__static_renaming("__ecvt_r_1472", "ecvt_r"); -__static_renaming("__fcvt_r_1479", "fcvt_r"); -__static_renaming("__qecvt_r_1486", "qecvt_r"); -__static_renaming("__qfcvt_r_1493", "qfcvt_r"); -__static_renaming("__mblen_1496", "mblen"); -__static_renaming("__mblen_1497", "mblen"); -__static_renaming("__mbtowc_1501", "mbtowc"); -__static_renaming("__wctomb_1504", "wctomb"); -__static_renaming("__mbstowcs_1508", "mbstowcs"); -__static_renaming("__wcstombs_1512", "wcstombs"); -__static_renaming("__rpmatch_1514", "rpmatch"); -__static_renaming("__rpmatch_1515", "rpmatch"); -__static_renaming("__getsubopt_1519", "getsubopt"); -__static_renaming("__getsubopt_1520", "getsubopt"); -__static_renaming("__getloadavg_1523", "getloadavg"); -__static_renaming("____realpath_chk_1528", "__realpath_chk"); -__static_renaming("____realpath_alias_1531", "__realpath_alias"); -__static_renaming("____realpath_chk_warn_1535", "__realpath_chk_warn"); -__static_renaming("____ptsname_r_chk_1543", "__ptsname_r_chk"); -__static_renaming("____ptsname_r_alias_1547", "__ptsname_r_alias"); -__static_renaming("____ptsname_r_chk_warn_1552", "__ptsname_r_chk_warn"); -__static_renaming("____wctomb_chk_1560", "__wctomb_chk"); -__static_renaming("____wctomb_alias_1563", "__wctomb_alias"); -__static_renaming("____mbstowcs_chk_1570", "__mbstowcs_chk"); -__static_renaming("____mbstowcs_alias_1574", "__mbstowcs_alias"); -__static_renaming("____mbstowcs_chk_warn_1579", "__mbstowcs_chk_warn"); -__static_renaming("____wcstombs_chk_1587", "__wcstombs_chk"); -__static_renaming("____wcstombs_alias_1591", "__wcstombs_alias"); -__static_renaming("____wcstombs_chk_warn_1596", "__wcstombs_chk_warn"); -__static_renaming("__request_GET_1600", "request_GET"); -__static_renaming("__total_1602", "total"); -__static_renaming("__total_1603", "total"); -__static_renaming("__sendHeaders_1604", "sendHeaders"); -__static_renaming("__sendHeaders_1605", "sendHeaders"); -__static_renaming("__random_1613", "random"); -__static_renaming("__http_unauthorized_1615", "http_unauthorized"); -__static_renaming("__handleIncoming_1617", "handleIncoming"); -__static_renaming("__request_1628", "request"); -__static_renaming("__main_1629", "main"); - -__static_condition_renaming("__static_condition_default_74", "(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_118", "(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_161", "(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_162", "(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_165", "(defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_223", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_225", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_226", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_227", "(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_230", "(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_232", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_234", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_235", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_236", "(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_249", "!(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); -__static_condition_renaming("__static_condition_default_254", "!(defined _FILE_OFFSET_BITS) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_256", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_274", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_276", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_278", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_280", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_294", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_296", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_300", "(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_304", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_308", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_310", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_318", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_320", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_326", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_328", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_330", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_332", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_336", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_338", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_343", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_345", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_349", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_351", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_356", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_358", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_370", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_374", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_379", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_381", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_393", "!(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_394", "(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_395", "(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_400", "!(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_421", "!(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_429", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_431", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_433", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_435", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_446", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_448", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_449", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_451", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_453", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_454", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_457", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_459", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_469", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_470", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_471", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_473", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_474", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_475", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_480", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_482", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_494", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_495", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_496", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_497", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_499", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_500", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_501", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_502", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_507", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_508", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_510", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_511", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_517", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_528", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_533", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_538", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_540", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_551", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_556", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_562", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_567", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_573", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_575", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_577", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_579", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_586", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_588", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_595", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_597", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_603", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_605", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_610", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_612", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_624", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_625", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_626", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_627", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_633", "!(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_639", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_640", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_641", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_642", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_648", "!(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_649", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_655", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_657", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_661", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_663", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_672", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_680", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_684", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_686", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_688", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_694", "!(defined _FILE_OFFSET_BITS) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_695", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_696", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_706", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_707", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_708", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_714", "!(defined _FILE_OFFSET_BITS) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_715", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_716", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_718", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_719", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_720", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_727", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_729", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_733", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_735", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_739", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_743", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_745", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_749", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_751", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_760", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_762", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_766", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_768", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_772", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_774", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_778", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_784", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_788", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_790", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_794", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_798", "!(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_801", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_804", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_809", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_813", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_817", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_820", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_833", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_840", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_855", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_864", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_870", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_881", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_882", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_883", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_889", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_893", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_898", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_904", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_905", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_906", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_917", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_924", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_931", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_933", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_935", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_941", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_948", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_953", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_954", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_961", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_962", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_968", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_969", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_976", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_977", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_983", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_984", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_991", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_992", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_998", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_999", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1006", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1007", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1015", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_1016", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1017", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1027", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1167", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1381", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1383", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1396", "(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1397", "(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1404", "!(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1406", "(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1423", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1425", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1429", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1431", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1538", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1606", "!(defined CONFIG_FEATURE_HTTPD_CGI)"); -__static_condition_renaming("__static_condition_default_1607", "!(defined CONFIG_FEATURE_HTTPD_CGI) && (defined CONFIG_LFS)"); -__static_condition_renaming("__static_condition_default_1608", "!(defined CONFIG_FEATURE_HTTPD_CGI) && !(defined CONFIG_LFS)"); -__static_condition_renaming("__static_condition_default_1609", "(defined CONFIG_FEATURE_HTTPD_CGI)"); -__static_condition_renaming("__static_condition_default_1610", "(defined CONFIG_FEATURE_HTTPD_CGI) && (defined CONFIG_LFS)"); -__static_condition_renaming("__static_condition_default_1611", "(defined CONFIG_FEATURE_HTTPD_CGI) && !(defined CONFIG_LFS)"); -__static_condition_renaming("__static_condition_default_1614", "!(defined __STRICT_ANSI__) && (defined CONFIG_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined CONFIG_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_1616", "!(defined __STRICT_ANSI__) && (defined CONFIG_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined CONFIG_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_1618", "!(defined CONFIG_FEATURE_HTTPD_CGI)"); -__static_condition_renaming("__static_condition_default_1619", "(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HTTPD_CGI) && (defined CONFIG_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_1620", "!(defined __STRICT_ANSI__) && !(defined CONFIG_FEATURE_HTTPD_CGI) && (defined CONFIG_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HTTPD_CGI) && (defined CONFIG_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _STDLIB_H) && !(defined CONFIG_FEATURE_HTTPD_CGI) && (defined CONFIG_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_1621", "(defined CONFIG_FEATURE_HTTPD_CGI)"); -__static_condition_renaming("__static_condition_default_1622", "(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HTTPD_CGI) && (defined CONFIG_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_1623", "!(defined __STRICT_ANSI__) && (defined CONFIG_FEATURE_HTTPD_CGI) && (defined CONFIG_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HTTPD_CGI) && (defined CONFIG_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined CONFIG_FEATURE_HTTPD_CGI) && (defined CONFIG_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_1624", "(defined CONFIG_FEATURE_HTTPD_CGI) && !(defined CONFIG_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_1625", "(defined CONFIG_FEATURE_HTTPD_CGI) && (defined CONFIG_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_1630", "!(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); - -if (__static_condition_default_1630) { +__static_renaming("____qaddr_t_54", "__qaddr_t"); +__static_renaming("____caddr_t_55", "__caddr_t"); +__static_renaming("____intptr_t_56", "__intptr_t"); +__static_renaming("____socklen_t_57", "__socklen_t"); +__static_renaming("__FILE_59", "FILE"); +__static_renaming("____FILE_60", "__FILE"); +__static_renaming("____mbstate_t_69", "__mbstate_t"); +__static_renaming("___G_fpos_t_77", "_G_fpos_t"); +__static_renaming("___G_fpos64_t_85", "_G_fpos64_t"); +__static_renaming("____gnuc_va_list_86", "__gnuc_va_list"); +__static_renaming("___IO_lock_t_88", "_IO_lock_t"); +__static_renaming("___IO_FILE_171", "_IO_FILE"); +__static_renaming("___IO_FILE_172", "_IO_FILE"); +__static_renaming("___IO_2_1_stdin__175", "_IO_2_1_stdin_"); +__static_renaming("___IO_2_1_stdout__176", "_IO_2_1_stdout_"); +__static_renaming("___IO_2_1_stderr__177", "_IO_2_1_stderr_"); +__static_renaming("____io_read_fn_181", "__io_read_fn"); +__static_renaming("____io_write_fn_186", "__io_write_fn"); +__static_renaming("____io_seek_fn_192", "__io_seek_fn"); +__static_renaming("____io_close_fn_195", "__io_close_fn"); +__static_renaming("____underflow_196", "__underflow"); +__static_renaming("____underflow_197", "__underflow"); +__static_renaming("____uflow_199", "__uflow"); +__static_renaming("____uflow_200", "__uflow"); +__static_renaming("____overflow_202", "__overflow"); +__static_renaming("____overflow_203", "__overflow"); +__static_renaming("___IO_getc_208", "_IO_getc"); +__static_renaming("___IO_getc_209", "_IO_getc"); +__static_renaming("___IO_putc_215", "_IO_putc"); +__static_renaming("___IO_putc_216", "_IO_putc"); +__static_renaming("___IO_feof_221", "_IO_feof"); +__static_renaming("___IO_feof_222", "_IO_feof"); +__static_renaming("___IO_ferror_227", "_IO_ferror"); +__static_renaming("___IO_ferror_228", "_IO_ferror"); +__static_renaming("___IO_peekc_locked_233", "_IO_peekc_locked"); +__static_renaming("___IO_peekc_locked_234", "_IO_peekc_locked"); +__static_renaming("___IO_flockfile_236", "_IO_flockfile"); +__static_renaming("___IO_flockfile_237", "_IO_flockfile"); +__static_renaming("___IO_funlockfile_239", "_IO_funlockfile"); +__static_renaming("___IO_funlockfile_240", "_IO_funlockfile"); +__static_renaming("___IO_ftrylockfile_242", "_IO_ftrylockfile"); +__static_renaming("___IO_ftrylockfile_243", "_IO_ftrylockfile"); +__static_renaming("___IO_vfscanf_245", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_247", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_251", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_252", "_IO_vfscanf"); +__static_renaming("___IO_vfprintf_254", "_IO_vfprintf"); +__static_renaming("___IO_vfprintf_256", "_IO_vfprintf"); +__static_renaming("___IO_vfprintf_260", "_IO_vfprintf"); +__static_renaming("___IO_padn_261", "_IO_padn"); +__static_renaming("___IO_padn_262", "_IO_padn"); +__static_renaming("___IO_sgetn_265", "_IO_sgetn"); +__static_renaming("___IO_sgetn_266", "_IO_sgetn"); +__static_renaming("___IO_seekoff_268", "_IO_seekoff"); +__static_renaming("___IO_seekoff_269", "_IO_seekoff"); +__static_renaming("___IO_seekpos_272", "_IO_seekpos"); +__static_renaming("___IO_seekpos_273", "_IO_seekpos"); +__static_renaming("___IO_free_backup_area_276", "_IO_free_backup_area"); +__static_renaming("___IO_free_backup_area_277", "_IO_free_backup_area"); +__static_renaming("__va_list_279", "va_list"); +__static_renaming("__off_t_281", "off_t"); +__static_renaming("__off_t_283", "off_t"); +__static_renaming("__ssize_t_285", "ssize_t"); +__static_renaming("__fpos_t_287", "fpos_t"); +__static_renaming("__fpos_t_289", "fpos_t"); +__static_renaming("__stdin_291", "stdin"); +__static_renaming("__stdin_292", "stdin"); +__static_renaming("__stdout_294", "stdout"); +__static_renaming("__stdout_295", "stdout"); +__static_renaming("__stderr_297", "stderr"); +__static_renaming("__stderr_298", "stderr"); +__static_renaming("__remove_301", "remove"); +__static_renaming("__rename_304", "rename"); +__static_renaming("__renameat_309", "renameat"); +__static_renaming("__tmpfile_310", "tmpfile"); +__static_renaming("__tmpfile_312", "tmpfile"); +__static_renaming("__tmpfile_314", "tmpfile"); +__static_renaming("__tmpfile_316", "tmpfile"); +__static_renaming("__tmpnam_319", "tmpnam"); +__static_renaming("__tmpnam_320", "tmpnam"); +__static_renaming("__tmpnam_r_322", "tmpnam_r"); +__static_renaming("__tmpnam_r_323", "tmpnam_r"); +__static_renaming("__tempnam_326", "tempnam"); +__static_renaming("__tempnam_327", "tempnam"); +__static_renaming("__fclose_330", "fclose"); +__static_renaming("__fclose_332", "fclose"); +__static_renaming("__fflush_336", "fflush"); +__static_renaming("__fflush_unlocked_340", "fflush_unlocked"); +__static_renaming("__fopen_344", "fopen"); +__static_renaming("__fopen_346", "fopen"); +__static_renaming("__fopen_354", "fopen"); +__static_renaming("__fopen_356", "fopen"); +__static_renaming("__freopen_362", "freopen"); +__static_renaming("__freopen_364", "freopen"); +__static_renaming("__freopen_366", "freopen"); +__static_renaming("__freopen_368", "freopen"); +__static_renaming("__fdopen_372", "fdopen"); +__static_renaming("__fdopen_374", "fdopen"); +__static_renaming("__fmemopen_379", "fmemopen"); +__static_renaming("__fmemopen_381", "fmemopen"); +__static_renaming("__open_memstream_385", "open_memstream"); +__static_renaming("__open_memstream_387", "open_memstream"); +__static_renaming("__setbuf_392", "setbuf"); +__static_renaming("__setbuf_394", "setbuf"); +__static_renaming("__setvbuf_401", "setvbuf"); +__static_renaming("__setbuffer_407", "setbuffer"); +__static_renaming("__setlinebuf_411", "setlinebuf"); +__static_renaming("__fprintf_416", "fprintf"); +__static_renaming("__fprintf_418", "fprintf"); +__static_renaming("__printf_421", "printf"); +__static_renaming("__sprintf_424", "sprintf"); +__static_renaming("__vfprintf_430", "vfprintf"); +__static_renaming("__vprintf_437", "vprintf"); +__static_renaming("__vsprintf_443", "vsprintf"); +__static_renaming("__snprintf_448", "snprintf"); +__static_renaming("__vsnprintf_454", "vsnprintf"); +__static_renaming("__vdprintf_460", "vdprintf"); +__static_renaming("__dprintf_464", "dprintf"); +__static_renaming("__fscanf_468", "fscanf"); +__static_renaming("__fscanf_470", "fscanf"); +__static_renaming("__fscanf_472", "fscanf"); +__static_renaming("__fscanf_474", "fscanf"); +__static_renaming("__scanf_477", "scanf"); +__static_renaming("__scanf_478", "scanf"); +__static_renaming("__sscanf_481", "sscanf"); +__static_renaming("__vfscanf_509", "vfscanf"); +__static_renaming("__vfscanf_513", "vfscanf"); +__static_renaming("__vscanf_520", "vscanf"); +__static_renaming("__vscanf_522", "vscanf"); +__static_renaming("__vsscanf_528", "vsscanf"); +__static_renaming("__fgetc_563", "fgetc"); +__static_renaming("__getc_567", "getc"); +__static_renaming("__getchar_569", "getchar"); +__static_renaming("__getc_unlocked_572", "getc_unlocked"); +__static_renaming("__getchar_unlocked_574", "getchar_unlocked"); +__static_renaming("__fgetc_unlocked_577", "fgetc_unlocked"); +__static_renaming("__fputc_582", "fputc"); +__static_renaming("__fputc_584", "fputc"); +__static_renaming("__putc_589", "putc"); +__static_renaming("__putchar_592", "putchar"); +__static_renaming("__fputc_unlocked_596", "fputc_unlocked"); +__static_renaming("__putc_unlocked_601", "putc_unlocked"); +__static_renaming("__putchar_unlocked_604", "putchar_unlocked"); +__static_renaming("__getw_607", "getw"); +__static_renaming("__putw_612", "putw"); +__static_renaming("__fgets_618", "fgets"); +__static_renaming("__fgets_620", "fgets"); +__static_renaming("__fgets_622", "fgets"); +__static_renaming("__fgets_624", "fgets"); +__static_renaming("____getdelim_631", "__getdelim"); +__static_renaming("____getdelim_635", "__getdelim"); +__static_renaming("__getdelim_644", "getdelim"); +__static_renaming("__getdelim_648", "getdelim"); +__static_renaming("__getline_656", "getline"); +__static_renaming("__getline_660", "getline"); +__static_renaming("__fputs_667", "fputs"); +__static_renaming("__fputs_669", "fputs"); +__static_renaming("__puts_672", "puts"); +__static_renaming("__ungetc_676", "ungetc"); +__static_renaming("__fseek_714", "fseek"); +__static_renaming("__fseek_716", "fseek"); +__static_renaming("__ftell_720", "ftell"); +__static_renaming("__ftell_722", "ftell"); +__static_renaming("__rewind_726", "rewind"); +__static_renaming("__fseeko_733", "fseeko"); +__static_renaming("__fseeko_744", "fseeko"); +__static_renaming("__ftello_750", "ftello"); +__static_renaming("__ftello_754", "ftello"); +__static_renaming("__ftello_758", "ftello"); +__static_renaming("__fgetpos_766", "fgetpos"); +__static_renaming("__fgetpos_778", "fgetpos"); +__static_renaming("__fsetpos_786", "fsetpos"); +__static_renaming("__fsetpos_790", "fsetpos"); +__static_renaming("__clearerr_796", "clearerr"); +__static_renaming("__feof_800", "feof"); +__static_renaming("__feof_802", "feof"); +__static_renaming("__ferror_806", "ferror"); +__static_renaming("__ferror_808", "ferror"); +__static_renaming("__clearerr_unlocked_812", "clearerr_unlocked"); +__static_renaming("__feof_unlocked_816", "feof_unlocked"); +__static_renaming("__feof_unlocked_818", "feof_unlocked"); +__static_renaming("__ferror_unlocked_822", "ferror_unlocked"); +__static_renaming("__ferror_unlocked_824", "ferror_unlocked"); +__static_renaming("__perror_827", "perror"); +__static_renaming("__perror_828", "perror"); +__static_renaming("__sys_nerr_829", "sys_nerr"); +__static_renaming("__sys_errlist_830", "sys_errlist"); +__static_renaming("__fileno_833", "fileno"); +__static_renaming("__fileno_835", "fileno"); +__static_renaming("__fileno_unlocked_839", "fileno_unlocked"); +__static_renaming("__fileno_unlocked_841", "fileno_unlocked"); +__static_renaming("__popen_845", "popen"); +__static_renaming("__popen_847", "popen"); +__static_renaming("__pclose_851", "pclose"); +__static_renaming("__ctermid_854", "ctermid"); +__static_renaming("__flockfile_857", "flockfile"); +__static_renaming("__ftrylockfile_861", "ftrylockfile"); +__static_renaming("__ftrylockfile_863", "ftrylockfile"); +__static_renaming("__funlockfile_867", "funlockfile"); +__static_renaming("____sprintf_chk_899", "__sprintf_chk"); +__static_renaming("____vsprintf_chk_906", "__vsprintf_chk"); +__static_renaming("____snprintf_chk_920", "__snprintf_chk"); +__static_renaming("____vsnprintf_chk_928", "__vsnprintf_chk"); +__static_renaming("____fprintf_chk_943", "__fprintf_chk"); +__static_renaming("____printf_chk_947", "__printf_chk"); +__static_renaming("____vfprintf_chk_954", "__vfprintf_chk"); +__static_renaming("____vprintf_chk_962", "__vprintf_chk"); +__static_renaming("____dprintf_chk_984", "__dprintf_chk"); +__static_renaming("____vdprintf_chk_990", "__vdprintf_chk"); +__static_renaming("____fgets_chk_1004", "__fgets_chk"); +__static_renaming("____fgets_chk_1006", "__fgets_chk"); +__static_renaming("____fgets_chk_1008", "__fgets_chk"); +__static_renaming("____fgets_alias_1014", "__fgets_alias"); +__static_renaming("____fgets_chk_warn_1021", "__fgets_chk_warn"); +__static_renaming("____cnt_1087", "__cnt"); +__static_renaming("____cptr_1088", "__cptr"); +__static_renaming("__ptrdiff_t_1092", "ptrdiff_t"); +__static_renaming("__size_t_1093", "size_t"); +__static_renaming("__wchar_t_1094", "wchar_t"); +__static_renaming("__idtype_t_1100", "idtype_t"); +__static_renaming("____u_char_1101", "__u_char"); +__static_renaming("____u_short_1102", "__u_short"); +__static_renaming("____u_int_1103", "__u_int"); +__static_renaming("____u_long_1104", "__u_long"); +__static_renaming("____int8_t_1105", "__int8_t"); +__static_renaming("____uint8_t_1106", "__uint8_t"); +__static_renaming("____int16_t_1107", "__int16_t"); +__static_renaming("____uint16_t_1108", "__uint16_t"); +__static_renaming("____int32_t_1109", "__int32_t"); +__static_renaming("____uint32_t_1110", "__uint32_t"); +__static_renaming("____int64_t_1111", "__int64_t"); +__static_renaming("____uint64_t_1112", "__uint64_t"); +__static_renaming("____quad_t_1113", "__quad_t"); +__static_renaming("____u_quad_t_1114", "__u_quad_t"); +__static_renaming("____dev_t_1115", "__dev_t"); +__static_renaming("____uid_t_1116", "__uid_t"); +__static_renaming("____gid_t_1117", "__gid_t"); +__static_renaming("____ino_t_1118", "__ino_t"); +__static_renaming("____ino64_t_1119", "__ino64_t"); +__static_renaming("____mode_t_1120", "__mode_t"); +__static_renaming("____nlink_t_1121", "__nlink_t"); +__static_renaming("____off_t_1122", "__off_t"); +__static_renaming("____off64_t_1123", "__off64_t"); +__static_renaming("____pid_t_1124", "__pid_t"); +__static_renaming("____fsid_t_1128", "__fsid_t"); +__static_renaming("____clock_t_1129", "__clock_t"); +__static_renaming("____rlim_t_1130", "__rlim_t"); +__static_renaming("____rlim64_t_1131", "__rlim64_t"); +__static_renaming("____id_t_1132", "__id_t"); +__static_renaming("____time_t_1133", "__time_t"); +__static_renaming("____useconds_t_1134", "__useconds_t"); +__static_renaming("____suseconds_t_1135", "__suseconds_t"); +__static_renaming("____daddr_t_1136", "__daddr_t"); +__static_renaming("____key_t_1137", "__key_t"); +__static_renaming("____clockid_t_1138", "__clockid_t"); +__static_renaming("____timer_t_1139", "__timer_t"); +__static_renaming("____blksize_t_1140", "__blksize_t"); +__static_renaming("____blkcnt_t_1141", "__blkcnt_t"); +__static_renaming("____blkcnt64_t_1142", "__blkcnt64_t"); +__static_renaming("____fsblkcnt_t_1143", "__fsblkcnt_t"); +__static_renaming("____fsblkcnt64_t_1144", "__fsblkcnt64_t"); +__static_renaming("____fsfilcnt_t_1145", "__fsfilcnt_t"); +__static_renaming("____fsfilcnt64_t_1146", "__fsfilcnt64_t"); +__static_renaming("____fsword_t_1147", "__fsword_t"); +__static_renaming("____ssize_t_1148", "__ssize_t"); +__static_renaming("____syscall_slong_t_1149", "__syscall_slong_t"); +__static_renaming("____syscall_ulong_t_1150", "__syscall_ulong_t"); +__static_renaming("____loff_t_1151", "__loff_t"); +__static_renaming("____qaddr_t_1153", "__qaddr_t"); +__static_renaming("____caddr_t_1154", "__caddr_t"); +__static_renaming("____intptr_t_1155", "__intptr_t"); +__static_renaming("____socklen_t_1156", "__socklen_t"); +__static_renaming("____bswap_32_1158", "__bswap_32"); +__static_renaming("____bswap_64_1162", "__bswap_64"); +__static_renaming("____bswap_64_1163", "__bswap_64"); +__static_renaming("____WAIT_STATUS_1185", "__WAIT_STATUS"); +__static_renaming("__div_t_1190", "div_t"); +__static_renaming("__ldiv_t_1195", "ldiv_t"); +__static_renaming("__lldiv_t_1200", "lldiv_t"); +__static_renaming("____ctype_get_mb_cur_max_1201", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1202", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1203", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1204", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1205", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1206", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1207", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1208", "__ctype_get_mb_cur_max"); +__static_renaming("__atof_1210", "atof"); +__static_renaming("__atof_1211", "atof"); +__static_renaming("__atoi_1213", "atoi"); +__static_renaming("__atoi_1214", "atoi"); +__static_renaming("__atol_1216", "atol"); +__static_renaming("__atol_1217", "atol"); +__static_renaming("__atoll_1219", "atoll"); +__static_renaming("__atoll_1220", "atoll"); +__static_renaming("__strtod_1223", "strtod"); +__static_renaming("__strtof_1226", "strtof"); +__static_renaming("__strtold_1229", "strtold"); +__static_renaming("__strtol_1233", "strtol"); +__static_renaming("__strtoul_1237", "strtoul"); +__static_renaming("__strtoq_1241", "strtoq"); +__static_renaming("__strtouq_1245", "strtouq"); +__static_renaming("__strtoll_1249", "strtoll"); +__static_renaming("__strtoll_1250", "strtoll"); +__static_renaming("__strtoull_1254", "strtoull"); +__static_renaming("__l64a_1259", "l64a"); +__static_renaming("__l64a_1260", "l64a"); +__static_renaming("__a64l_1262", "a64l"); +__static_renaming("__a64l_1263", "a64l"); +__static_renaming("____u_char_1264", "__u_char"); +__static_renaming("____u_short_1265", "__u_short"); +__static_renaming("____u_int_1266", "__u_int"); +__static_renaming("____u_long_1267", "__u_long"); +__static_renaming("____int8_t_1268", "__int8_t"); +__static_renaming("____uint8_t_1269", "__uint8_t"); +__static_renaming("____int16_t_1270", "__int16_t"); +__static_renaming("____uint16_t_1271", "__uint16_t"); +__static_renaming("____int32_t_1272", "__int32_t"); +__static_renaming("____uint32_t_1273", "__uint32_t"); +__static_renaming("____int64_t_1274", "__int64_t"); +__static_renaming("____uint64_t_1275", "__uint64_t"); +__static_renaming("____quad_t_1276", "__quad_t"); +__static_renaming("____u_quad_t_1277", "__u_quad_t"); +__static_renaming("____dev_t_1278", "__dev_t"); +__static_renaming("____uid_t_1279", "__uid_t"); +__static_renaming("____gid_t_1280", "__gid_t"); +__static_renaming("____ino_t_1281", "__ino_t"); +__static_renaming("____ino64_t_1282", "__ino64_t"); +__static_renaming("____mode_t_1283", "__mode_t"); +__static_renaming("____nlink_t_1284", "__nlink_t"); +__static_renaming("____off_t_1285", "__off_t"); +__static_renaming("____off64_t_1286", "__off64_t"); +__static_renaming("____pid_t_1287", "__pid_t"); +__static_renaming("____fsid_t_1291", "__fsid_t"); +__static_renaming("____clock_t_1292", "__clock_t"); +__static_renaming("____rlim_t_1293", "__rlim_t"); +__static_renaming("____rlim64_t_1294", "__rlim64_t"); +__static_renaming("____id_t_1295", "__id_t"); +__static_renaming("____time_t_1296", "__time_t"); +__static_renaming("____useconds_t_1297", "__useconds_t"); +__static_renaming("____suseconds_t_1298", "__suseconds_t"); +__static_renaming("____daddr_t_1299", "__daddr_t"); +__static_renaming("____key_t_1300", "__key_t"); +__static_renaming("____clockid_t_1301", "__clockid_t"); +__static_renaming("____timer_t_1302", "__timer_t"); +__static_renaming("____blksize_t_1303", "__blksize_t"); +__static_renaming("____blkcnt_t_1304", "__blkcnt_t"); +__static_renaming("____blkcnt64_t_1305", "__blkcnt64_t"); +__static_renaming("____fsblkcnt_t_1306", "__fsblkcnt_t"); +__static_renaming("____fsblkcnt64_t_1307", "__fsblkcnt64_t"); +__static_renaming("____fsfilcnt_t_1308", "__fsfilcnt_t"); +__static_renaming("____fsfilcnt64_t_1309", "__fsfilcnt64_t"); +__static_renaming("____fsword_t_1310", "__fsword_t"); +__static_renaming("____ssize_t_1311", "__ssize_t"); +__static_renaming("____syscall_slong_t_1312", "__syscall_slong_t"); +__static_renaming("____syscall_ulong_t_1313", "__syscall_ulong_t"); +__static_renaming("____loff_t_1314", "__loff_t"); +__static_renaming("____qaddr_t_1316", "__qaddr_t"); +__static_renaming("____caddr_t_1317", "__caddr_t"); +__static_renaming("____intptr_t_1318", "__intptr_t"); +__static_renaming("____socklen_t_1319", "__socklen_t"); +__static_renaming("__u_char_1320", "u_char"); +__static_renaming("__u_char_1321", "u_char"); +__static_renaming("__u_char_1322", "u_char"); +__static_renaming("__u_short_1323", "u_short"); +__static_renaming("__u_short_1324", "u_short"); +__static_renaming("__u_short_1325", "u_short"); +__static_renaming("__u_int_1326", "u_int"); +__static_renaming("__u_int_1327", "u_int"); +__static_renaming("__u_int_1328", "u_int"); +__static_renaming("__u_long_1329", "u_long"); +__static_renaming("__u_long_1330", "u_long"); +__static_renaming("__u_long_1331", "u_long"); +__static_renaming("__quad_t_1332", "quad_t"); +__static_renaming("__quad_t_1333", "quad_t"); +__static_renaming("__quad_t_1334", "quad_t"); +__static_renaming("__u_quad_t_1335", "u_quad_t"); +__static_renaming("__u_quad_t_1336", "u_quad_t"); +__static_renaming("__u_quad_t_1337", "u_quad_t"); +__static_renaming("__fsid_t_1338", "fsid_t"); +__static_renaming("__fsid_t_1339", "fsid_t"); +__static_renaming("__fsid_t_1340", "fsid_t"); +__static_renaming("__loff_t_1342", "loff_t"); +__static_renaming("__loff_t_1343", "loff_t"); +__static_renaming("__loff_t_1344", "loff_t"); +__static_renaming("__loff_t_1346", "loff_t"); +__static_renaming("__loff_t_1347", "loff_t"); +__static_renaming("__loff_t_1348", "loff_t"); +__static_renaming("__ino_t_1350", "ino_t"); +__static_renaming("__ino_t_1351", "ino_t"); +__static_renaming("__ino_t_1352", "ino_t"); +__static_renaming("__ino_t_1354", "ino_t"); +__static_renaming("__ino_t_1355", "ino_t"); +__static_renaming("__ino_t_1356", "ino_t"); +__static_renaming("__dev_t_1358", "dev_t"); +__static_renaming("__dev_t_1359", "dev_t"); +__static_renaming("__dev_t_1360", "dev_t"); +__static_renaming("__gid_t_1362", "gid_t"); +__static_renaming("__gid_t_1363", "gid_t"); +__static_renaming("__gid_t_1364", "gid_t"); +__static_renaming("__gid_t_1366", "gid_t"); +__static_renaming("__gid_t_1367", "gid_t"); +__static_renaming("__gid_t_1368", "gid_t"); +__static_renaming("__mode_t_1370", "mode_t"); +__static_renaming("__mode_t_1371", "mode_t"); +__static_renaming("__mode_t_1372", "mode_t"); +__static_renaming("__nlink_t_1374", "nlink_t"); +__static_renaming("__nlink_t_1375", "nlink_t"); +__static_renaming("__nlink_t_1376", "nlink_t"); +__static_renaming("__uid_t_1378", "uid_t"); +__static_renaming("__uid_t_1379", "uid_t"); +__static_renaming("__uid_t_1380", "uid_t"); +__static_renaming("__uid_t_1382", "uid_t"); +__static_renaming("__uid_t_1383", "uid_t"); +__static_renaming("__uid_t_1384", "uid_t"); +__static_renaming("__off_t_1386", "off_t"); +__static_renaming("__off_t_1387", "off_t"); +__static_renaming("__off_t_1389", "off_t"); +__static_renaming("__off_t_1390", "off_t"); +__static_renaming("__pid_t_1392", "pid_t"); +__static_renaming("__pid_t_1393", "pid_t"); +__static_renaming("__pid_t_1394", "pid_t"); +__static_renaming("__pid_t_1396", "pid_t"); +__static_renaming("__pid_t_1397", "pid_t"); +__static_renaming("__id_t_1399", "id_t"); +__static_renaming("__id_t_1400", "id_t"); +__static_renaming("__id_t_1401", "id_t"); +__static_renaming("__ssize_t_1403", "ssize_t"); +__static_renaming("__ssize_t_1404", "ssize_t"); +__static_renaming("__daddr_t_1406", "daddr_t"); +__static_renaming("__daddr_t_1407", "daddr_t"); +__static_renaming("__daddr_t_1408", "daddr_t"); +__static_renaming("__caddr_t_1410", "caddr_t"); +__static_renaming("__caddr_t_1411", "caddr_t"); +__static_renaming("__caddr_t_1412", "caddr_t"); +__static_renaming("__key_t_1413", "key_t"); +__static_renaming("__key_t_1414", "key_t"); +__static_renaming("__key_t_1415", "key_t"); +__static_renaming("__key_t_1417", "key_t"); +__static_renaming("__key_t_1418", "key_t"); +__static_renaming("__key_t_1419", "key_t"); +__static_renaming("__clock_t_1421", "clock_t"); +__static_renaming("__clock_t_1422", "clock_t"); +__static_renaming("__clock_t_1423", "clock_t"); +__static_renaming("__time_t_1425", "time_t"); +__static_renaming("__time_t_1426", "time_t"); +__static_renaming("__time_t_1427", "time_t"); +__static_renaming("__clockid_t_1429", "clockid_t"); +__static_renaming("__clockid_t_1430", "clockid_t"); +__static_renaming("__clockid_t_1431", "clockid_t"); +__static_renaming("__timer_t_1433", "timer_t"); +__static_renaming("__timer_t_1434", "timer_t"); +__static_renaming("__timer_t_1435", "timer_t"); +__static_renaming("__ulong_1437", "ulong"); +__static_renaming("__ulong_1438", "ulong"); +__static_renaming("__ulong_1439", "ulong"); +__static_renaming("__ushort_1440", "ushort"); +__static_renaming("__uint_1441", "uint"); +__static_renaming("__int8_t_1442", "int8_t"); +__static_renaming("__int16_t_1443", "int16_t"); +__static_renaming("__int32_t_1444", "int32_t"); +__static_renaming("__int64_t_1445", "int64_t"); +__static_renaming("__u_int8_t_1446", "u_int8_t"); +__static_renaming("__u_int16_t_1447", "u_int16_t"); +__static_renaming("__u_int32_t_1448", "u_int32_t"); +__static_renaming("__u_int64_t_1449", "u_int64_t"); +__static_renaming("__register_t_1450", "register_t"); +__static_renaming("____bswap_32_1452", "__bswap_32"); +__static_renaming("____bswap_64_1456", "__bswap_64"); +__static_renaming("____bswap_64_1457", "__bswap_64"); +__static_renaming("____sig_atomic_t_1460", "__sig_atomic_t"); +__static_renaming("____sigset_t_1464", "__sigset_t"); +__static_renaming("__sigset_t_1465", "sigset_t"); +__static_renaming("__suseconds_t_1486", "suseconds_t"); +__static_renaming("__suseconds_t_1487", "suseconds_t"); +__static_renaming("__suseconds_t_1488", "suseconds_t"); +__static_renaming("____fd_mask_1490", "__fd_mask"); +__static_renaming("____fd_mask_1491", "__fd_mask"); +__static_renaming("__fd_set_1499", "fd_set"); +__static_renaming("__fd_mask_1500", "fd_mask"); +__static_renaming("__fd_mask_1501", "fd_mask"); +__static_renaming("__select_1513", "select"); +__static_renaming("__select_1514", "select"); +__static_renaming("__pselect_1529", "pselect"); +__static_renaming("__pselect_1530", "pselect"); +__static_renaming("____fdelt_chk_1534", "__fdelt_chk"); +__static_renaming("____fdelt_warn_1536", "__fdelt_warn"); +__static_renaming("__gnu_dev_major_1538", "gnu_dev_major"); +__static_renaming("__gnu_dev_major_1539", "gnu_dev_major"); +__static_renaming("__gnu_dev_minor_1541", "gnu_dev_minor"); +__static_renaming("__gnu_dev_makedev_1544", "gnu_dev_makedev"); +__static_renaming("__blksize_t_1549", "blksize_t"); +__static_renaming("__blksize_t_1550", "blksize_t"); +__static_renaming("__blksize_t_1551", "blksize_t"); +__static_renaming("__blkcnt_t_1553", "blkcnt_t"); +__static_renaming("__blkcnt_t_1554", "blkcnt_t"); +__static_renaming("__blkcnt_t_1555", "blkcnt_t"); +__static_renaming("__fsblkcnt_t_1557", "fsblkcnt_t"); +__static_renaming("__fsblkcnt_t_1558", "fsblkcnt_t"); +__static_renaming("__fsblkcnt_t_1559", "fsblkcnt_t"); +__static_renaming("__blkcnt_t_1561", "blkcnt_t"); +__static_renaming("__blkcnt_t_1562", "blkcnt_t"); +__static_renaming("__blkcnt_t_1563", "blkcnt_t"); +__static_renaming("__fsblkcnt_t_1565", "fsblkcnt_t"); +__static_renaming("__fsblkcnt_t_1566", "fsblkcnt_t"); +__static_renaming("__fsblkcnt_t_1567", "fsblkcnt_t"); +__static_renaming("__fsfilcnt_t_1569", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_1570", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_1571", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_1573", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_1574", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_1575", "fsfilcnt_t"); +__static_renaming("__pthread_t_1577", "pthread_t"); +__static_renaming("__pthread_attr_t_1581", "pthread_attr_t"); +__static_renaming("____pthread_list_t_1586", "__pthread_list_t"); +__static_renaming("____pthread_list_t_1587", "__pthread_list_t"); +__static_renaming("__pthread_mutex_t_1603", "pthread_mutex_t"); +__static_renaming("__pthread_mutexattr_t_1608", "pthread_mutexattr_t"); +__static_renaming("__rand_1609", "rand"); +__static_renaming("__srand_1611", "srand"); +__static_renaming("__rand_r_1613", "rand_r"); +__static_renaming("__drand48_1614", "drand48"); +__static_renaming("__erand48_1616", "erand48"); +__static_renaming("__lrand48_1617", "lrand48"); +__static_renaming("__nrand48_1619", "nrand48"); +__static_renaming("__mrand48_1620", "mrand48"); +__static_renaming("__jrand48_1622", "jrand48"); +__static_renaming("__srand48_1624", "srand48"); +__static_renaming("__seed48_1626", "seed48"); +__static_renaming("__lcong48_1628", "lcong48"); +__static_renaming("__malloc_1631", "malloc"); +__static_renaming("__malloc_1632", "malloc"); +__static_renaming("__malloc_1633", "malloc"); +__static_renaming("__malloc_1634", "malloc"); +__static_renaming("__calloc_1639", "calloc"); +__static_renaming("__calloc_1640", "calloc"); +__static_renaming("__calloc_1641", "calloc"); +__static_renaming("__calloc_1642", "calloc"); +__static_renaming("__realloc_1646", "realloc"); +__static_renaming("__realloc_1647", "realloc"); +__static_renaming("__free_1649", "free"); +__static_renaming("__cfree_1651", "cfree"); +__static_renaming("__alloca_1654", "alloca"); +__static_renaming("__alloca_1655", "alloca"); +__static_renaming("__valloc_1658", "valloc"); +__static_renaming("__valloc_1659", "valloc"); +__static_renaming("__valloc_1660", "valloc"); +__static_renaming("__valloc_1661", "valloc"); +__static_renaming("__posix_memalign_1667", "posix_memalign"); +__static_renaming("__posix_memalign_1668", "posix_memalign"); +__static_renaming("__posix_memalign_1669", "posix_memalign"); +__static_renaming("__posix_memalign_1670", "posix_memalign"); +__static_renaming("__aligned_alloc_1675", "aligned_alloc"); +__static_renaming("__aligned_alloc_1676", "aligned_alloc"); +__static_renaming("__aligned_alloc_1677", "aligned_alloc"); +__static_renaming("__aligned_alloc_1678", "aligned_alloc"); +__static_renaming("__aligned_alloc_1679", "aligned_alloc"); +__static_renaming("__aligned_alloc_1680", "aligned_alloc"); +__static_renaming("__aligned_alloc_1681", "aligned_alloc"); +__static_renaming("__aligned_alloc_1682", "aligned_alloc"); +__static_renaming("__abort_1683", "abort"); +__static_renaming("__atexit_1685", "atexit"); +__static_renaming("__at_quick_exit_1687", "at_quick_exit"); +__static_renaming("__on_exit_1692", "on_exit"); +__static_renaming("__exit_1694", "exit"); +__static_renaming("__exit_1695", "exit"); +__static_renaming("__quick_exit_1697", "quick_exit"); +__static_renaming("___Exit_1699", "_Exit"); +__static_renaming("__getenv_1701", "getenv"); +__static_renaming("__getenv_1702", "getenv"); +__static_renaming("__putenv_1704", "putenv"); +__static_renaming("__setenv_1708", "setenv"); +__static_renaming("__unsetenv_1710", "unsetenv"); +__static_renaming("__clearenv_1711", "clearenv"); +__static_renaming("__mktemp_1713", "mktemp"); +__static_renaming("__mkstemp_1716", "mkstemp"); +__static_renaming("__mkstemp_1717", "mkstemp"); +__static_renaming("__mkstemp_1718", "mkstemp"); +__static_renaming("__mkstemp_1719", "mkstemp"); +__static_renaming("__mkstemps_1724", "mkstemps"); +__static_renaming("__mkstemps_1725", "mkstemps"); +__static_renaming("__mkstemps_1726", "mkstemps"); +__static_renaming("__mkstemps_1727", "mkstemps"); +__static_renaming("__mkdtemp_1729", "mkdtemp"); +__static_renaming("__mkdtemp_1730", "mkdtemp"); +__static_renaming("__system_1732", "system"); +__static_renaming("__system_1733", "system"); +__static_renaming("__system_1734", "system"); +__static_renaming("__system_1735", "system"); +__static_renaming("__realpath_1738", "realpath"); +__static_renaming("__realpath_1739", "realpath"); +__static_renaming("____compar_fn_t_1740", "__compar_fn_t"); +__static_renaming("__bsearch_1751", "bsearch"); +__static_renaming("__bsearch_1752", "bsearch"); +__static_renaming("__bsearch_1755", "bsearch"); +__static_renaming("__bsearch_1756", "bsearch"); +__static_renaming("____l_1765", "__l"); +__static_renaming("____l_1766", "__l"); +__static_renaming("____u_1767", "__u"); +__static_renaming("____u_1768", "__u"); +__static_renaming("____idx_1769", "__idx"); +__static_renaming("____idx_1770", "__idx"); +__static_renaming("____p_1771", "__p"); +__static_renaming("____comparison_1772", "__comparison"); +__static_renaming("__qsort_1784", "qsort"); +__static_renaming("__qsort_1786", "qsort"); +__static_renaming("__qsort_1788", "qsort"); +__static_renaming("__qsort_1790", "qsort"); +__static_renaming("__abs_1793", "abs"); +__static_renaming("__abs_1794", "abs"); +__static_renaming("__labs_1796", "labs"); +__static_renaming("__labs_1797", "labs"); +__static_renaming("__llabs_1799", "llabs"); +__static_renaming("__llabs_1800", "llabs"); +__static_renaming("__div_1803", "div"); +__static_renaming("__div_1804", "div"); +__static_renaming("__ldiv_1807", "ldiv"); +__static_renaming("__ldiv_1809", "ldiv"); +__static_renaming("__lldiv_1813", "lldiv"); +__static_renaming("__lldiv_1815", "lldiv"); +__static_renaming("__ecvt_1821", "ecvt"); +__static_renaming("__ecvt_1822", "ecvt"); +__static_renaming("__fcvt_1827", "fcvt"); +__static_renaming("__fcvt_1828", "fcvt"); +__static_renaming("__gcvt_1832", "gcvt"); +__static_renaming("__gcvt_1833", "gcvt"); +__static_renaming("__qecvt_1838", "qecvt"); +__static_renaming("__qecvt_1839", "qecvt"); +__static_renaming("__qfcvt_1844", "qfcvt"); +__static_renaming("__qfcvt_1845", "qfcvt"); +__static_renaming("__qgcvt_1849", "qgcvt"); +__static_renaming("__qgcvt_1850", "qgcvt"); +__static_renaming("__ecvt_r_1858", "ecvt_r"); +__static_renaming("__ecvt_r_1859", "ecvt_r"); +__static_renaming("__fcvt_r_1867", "fcvt_r"); +__static_renaming("__fcvt_r_1868", "fcvt_r"); +__static_renaming("__qecvt_r_1876", "qecvt_r"); +__static_renaming("__qecvt_r_1877", "qecvt_r"); +__static_renaming("__qfcvt_r_1885", "qfcvt_r"); +__static_renaming("__qfcvt_r_1886", "qfcvt_r"); +__static_renaming("__mblen_1890", "mblen"); +__static_renaming("__mblen_1891", "mblen"); +__static_renaming("__mblen_1892", "mblen"); +__static_renaming("__mblen_1893", "mblen"); +__static_renaming("__mbtowc_1898", "mbtowc"); +__static_renaming("__mbtowc_1899", "mbtowc"); +__static_renaming("__wctomb_1902", "wctomb"); +__static_renaming("__mbstowcs_1907", "mbstowcs"); +__static_renaming("__mbstowcs_1908", "mbstowcs"); +__static_renaming("__wcstombs_1913", "wcstombs"); +__static_renaming("__wcstombs_1914", "wcstombs"); +__static_renaming("__rpmatch_1916", "rpmatch"); +__static_renaming("__rpmatch_1917", "rpmatch"); +__static_renaming("__getsubopt_1921", "getsubopt"); +__static_renaming("__getsubopt_1922", "getsubopt"); +__static_renaming("__getloadavg_1925", "getloadavg"); +__static_renaming("____realpath_chk_1931", "__realpath_chk"); +__static_renaming("____realpath_chk_1932", "__realpath_chk"); +__static_renaming("____realpath_alias_1935", "__realpath_alias"); +__static_renaming("____realpath_chk_warn_1940", "__realpath_chk_warn"); +__static_renaming("____realpath_chk_warn_1941", "__realpath_chk_warn"); +__static_renaming("____ptsname_r_chk_1951", "__ptsname_r_chk"); +__static_renaming("____ptsname_r_chk_1952", "__ptsname_r_chk"); +__static_renaming("____ptsname_r_alias_1957", "__ptsname_r_alias"); +__static_renaming("____ptsname_r_alias_1958", "__ptsname_r_alias"); +__static_renaming("____ptsname_r_chk_warn_1965", "__ptsname_r_chk_warn"); +__static_renaming("____ptsname_r_chk_warn_1966", "__ptsname_r_chk_warn"); +__static_renaming("____wctomb_chk_1977", "__wctomb_chk"); +__static_renaming("____wctomb_chk_1978", "__wctomb_chk"); +__static_renaming("____wctomb_alias_1981", "__wctomb_alias"); +__static_renaming("____mbstowcs_chk_1990", "__mbstowcs_chk"); +__static_renaming("____mbstowcs_chk_1991", "__mbstowcs_chk"); +__static_renaming("____mbstowcs_alias_1996", "__mbstowcs_alias"); +__static_renaming("____mbstowcs_alias_1997", "__mbstowcs_alias"); +__static_renaming("____mbstowcs_chk_warn_2004", "__mbstowcs_chk_warn"); +__static_renaming("____mbstowcs_chk_warn_2005", "__mbstowcs_chk_warn"); +__static_renaming("____wcstombs_chk_2016", "__wcstombs_chk"); +__static_renaming("____wcstombs_chk_2017", "__wcstombs_chk"); +__static_renaming("____wcstombs_alias_2022", "__wcstombs_alias"); +__static_renaming("____wcstombs_alias_2023", "__wcstombs_alias"); +__static_renaming("____wcstombs_chk_warn_2030", "__wcstombs_chk_warn"); +__static_renaming("____wcstombs_chk_warn_2031", "__wcstombs_chk_warn"); +__static_renaming("__request_GET_2036", "request_GET"); +__static_renaming("__total_2038", "total"); +__static_renaming("__total_2039", "total"); +__static_renaming("__sendHeaders_2040", "sendHeaders"); +__static_renaming("__sendHeaders_2041", "sendHeaders"); +__static_renaming("__random_2051", "random"); +__static_renaming("__http_unauthorized_2053", "http_unauthorized"); +__static_renaming("__handleIncoming_2055", "handleIncoming"); +__static_renaming("__request_2066", "request"); +__static_renaming("__main_2067", "main"); + +__static_condition_renaming("__static_condition_default_53", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_76", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_84", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_123", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_169", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_170", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_173", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_182", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_187", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_193", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_198", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_201", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_204", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_210", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_217", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_223", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_229", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_235", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_238", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_241", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_244", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_246", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_248", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_249", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_250", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_253", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_255", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_257", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_258", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_259", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_263", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_264", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_267", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_270", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_271", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_274", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_275", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_278", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_280", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); +__static_condition_renaming("__static_condition_default_282", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_284", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_286", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_288", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_290", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_293", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_296", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_299", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_311", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_313", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_315", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_317", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_331", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_333", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_337", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_341", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_345", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_347", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_355", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_357", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_363", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_365", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_367", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_369", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_373", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_375", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_380", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_382", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_386", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_388", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_393", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_395", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_402", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_408", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_412", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_417", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_419", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_431", "!(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_432", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_433", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_438", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_444", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_455", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_461", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_469", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_471", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_473", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_475", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_486", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_488", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_489", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_491", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_493", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_494", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_497", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_499", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_503", "!(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_510", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_511", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_512", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_514", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_515", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_516", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_521", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_523", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_529", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_536", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_537", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_538", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_539", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_541", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_542", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_543", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_544", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_549", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_550", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_552", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_553", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_559", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_560", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_564", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_568", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_573", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_578", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_583", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_585", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_590", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_597", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_602", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_608", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_613", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_619", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_621", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_623", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_625", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_632", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_633", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_634", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_636", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_637", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_638", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_645", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_646", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_647", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_649", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_650", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_651", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_657", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_658", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_659", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_661", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_662", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_663", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_668", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_670", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_677", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_683", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_684", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_685", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_686", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_692", "!(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_693", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_699", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_700", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_701", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_702", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_708", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_709", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_715", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_717", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_721", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_723", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_727", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_734", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_735", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_736", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_745", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_746", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_747", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_751", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_752", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_753", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_755", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_756", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_757", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_759", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_760", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_761", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_767", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_768", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_769", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_779", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_780", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_781", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_787", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_788", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_789", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_791", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_792", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_793", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_797", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_801", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_803", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_807", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_809", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_813", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_817", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_819", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_823", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_825", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_834", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_836", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_840", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_842", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_846", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_848", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_852", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_858", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_862", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_864", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_868", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_872", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_875", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_878", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_883", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_887", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_891", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_894", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_907", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_914", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_929", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_938", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_944", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_955", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_956", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_957", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_963", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_967", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_972", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_978", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_979", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_980", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_991", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_998", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1005", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1007", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1009", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1015", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1022", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1027", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1028", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1035", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1036", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1042", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1043", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1050", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1051", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1057", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1058", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1065", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1066", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1072", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1073", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1080", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1081", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1089", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_1090", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1091", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1152", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1159", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1164", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1165", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1315", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1341", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __u_char_defined)"); +__static_condition_renaming("__static_condition_default_1345", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __u_char_defined)"); +__static_condition_renaming("__static_condition_default_1349", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __u_char_defined)"); +__static_condition_renaming("__static_condition_default_1353", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined)"); +__static_condition_renaming("__static_condition_default_1357", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined)"); +__static_condition_renaming("__static_condition_default_1361", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_1365", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_1369", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_1373", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1377", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __nlink_t_defined)"); +__static_condition_renaming("__static_condition_default_1381", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __nlink_t_defined)"); +__static_condition_renaming("__static_condition_default_1385", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __nlink_t_defined)"); +__static_condition_renaming("__static_condition_default_1388", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1391", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1395", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && (defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1398", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1402", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __id_t_defined)"); +__static_condition_renaming("__static_condition_default_1405", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1409", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_1416", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_1420", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_1424", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __clock_t_defined)"); +__static_condition_renaming("__static_condition_default_1428", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __time_t_defined)"); +__static_condition_renaming("__static_condition_default_1432", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __clockid_t_defined)"); +__static_condition_renaming("__static_condition_default_1436", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timer_t_defined)"); +__static_condition_renaming("__static_condition_default_1453", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1458", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1459", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1475", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_1485", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_1489", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __suseconds_t_defined)"); +__static_condition_renaming("__static_condition_default_1498", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1515", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_1516", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_1531", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_1532", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_1552", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blksize_t_defined)"); +__static_condition_renaming("__static_condition_default_1556", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined)"); +__static_condition_renaming("__static_condition_default_1560", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1564", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined)"); +__static_condition_renaming("__static_condition_default_1568", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1572", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1576", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1749", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1750", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1753", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1754", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1773", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1774", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1775", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1776", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1785", "!(defined __need___FILE) && !(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1787", "(defined __need___FILE) && !(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1789", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1791", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1808", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1810", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1814", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1816", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1944", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_2042", "!(defined CONFIG_FEATURE_HTTPD_CGI)"); +__static_condition_renaming("__static_condition_default_2043", "!(defined __need___FILE) && !(defined CONFIG_FEATURE_HTTPD_CGI) && (defined CONFIG_LFS)"); +__static_condition_renaming("__static_condition_default_2044", "!(defined __need___FILE) && !(defined CONFIG_FEATURE_HTTPD_CGI) && !(defined CONFIG_LFS)"); +__static_condition_renaming("__static_condition_default_2045", "(defined __need___FILE) && !(defined CONFIG_FEATURE_HTTPD_CGI)"); +__static_condition_renaming("__static_condition_default_2046", "(defined CONFIG_FEATURE_HTTPD_CGI)"); +__static_condition_renaming("__static_condition_default_2047", "!(defined __need___FILE) && (defined CONFIG_FEATURE_HTTPD_CGI) && (defined CONFIG_LFS)"); +__static_condition_renaming("__static_condition_default_2048", "!(defined __need___FILE) && (defined CONFIG_FEATURE_HTTPD_CGI) && !(defined CONFIG_LFS)"); +__static_condition_renaming("__static_condition_default_2049", "(defined __need___FILE) && (defined CONFIG_FEATURE_HTTPD_CGI)"); +__static_condition_renaming("__static_condition_default_2052", "!(defined __STRICT_ANSI__) && (defined CONFIG_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined CONFIG_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_2054", "!(defined __STRICT_ANSI__) && (defined CONFIG_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined CONFIG_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_2056", "!(defined CONFIG_FEATURE_HTTPD_CGI)"); +__static_condition_renaming("__static_condition_default_2057", "(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HTTPD_CGI) && (defined CONFIG_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_2058", "!(defined __STRICT_ANSI__) && !(defined CONFIG_FEATURE_HTTPD_CGI) && (defined CONFIG_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_HTTPD_CGI) && (defined CONFIG_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _STDLIB_H) && !(defined CONFIG_FEATURE_HTTPD_CGI) && (defined CONFIG_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_2059", "(defined CONFIG_FEATURE_HTTPD_CGI)"); +__static_condition_renaming("__static_condition_default_2060", "(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HTTPD_CGI) && (defined CONFIG_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_2061", "!(defined __STRICT_ANSI__) && (defined CONFIG_FEATURE_HTTPD_CGI) && (defined CONFIG_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_HTTPD_CGI) && (defined CONFIG_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined CONFIG_FEATURE_HTTPD_CGI) && (defined CONFIG_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_2062", "(defined CONFIG_FEATURE_HTTPD_CGI) && !(defined CONFIG_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_2063", "(defined CONFIG_FEATURE_HTTPD_CGI) && (defined CONFIG_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_2068", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); + +if (__static_condition_default_2068) { __static_parse_error("Unable to parse"); } }; @@ -1036,298 +1511,499 @@ typedef long int ____ssize_t_49;// L110:L172 typedef long int ____syscall_slong_t_50;// L93:L175 typedef unsigned long int ____syscall_ulong_t_51;// L94:L177 typedef ____off64_t_24 ____loff_t_52;// L181 -typedef ____quad_t_14 * (____qaddr_t_53);// L182 -typedef char * (____caddr_t_54);// L183 -typedef long int ____intptr_t_55;// L110:L186 -typedef unsigned int ____socklen_t_56;// L92:L189 -typedef struct __forward_tag_reference_57 __FILE_58;// L48 -typedef struct __forward_tag_reference_57 ____FILE_59;// L64 -union ____anonymous_tag_60_61 { -unsigned int ____wch_62;// L265 -char ____wchb_63[4];// L92 +typedef ____quad_t_14 * (____qaddr_t_54);// L182 +typedef char * (____caddr_t_55);// L183 +typedef long int ____intptr_t_56;// L110:L186 +typedef unsigned int ____socklen_t_57;// L92:L189 +typedef struct __forward_tag_reference_58 __FILE_59;// L48 +typedef struct __forward_tag_reference_58 ____FILE_60;// L64 +union ____anonymous_tag_61_62 { +unsigned int ____wch_63;// L265 +char ____wchb_64[4];// L92 }; -struct ____anonymous_tag_64_65 { -int ____count_66;// L84 -union ____anonymous_tag_60_61 ____value_67;// L85 +struct ____anonymous_tag_65_66 { +int ____count_67;// L84 +union ____anonymous_tag_61_62 ____value_68;// L85 }; -typedef struct ____anonymous_tag_64_65 ____mbstate_t_68;// L82:L94 -struct ____anonymous_tag_69_70 { -____off_t_23 ____pos_71;// L0 -____mbstate_t_68 ____state_72;// L0 +typedef struct ____anonymous_tag_65_66 ____mbstate_t_69;// L82:L94 +struct ____anonymous_tag_70_71 { +____off_t_23 ____pos_72;// L0 +____mbstate_t_69 ____state_74;// L0 }; -typedef struct ____anonymous_tag_69_70 ___G_fpos_t_75;// L21:L25 -struct ____anonymous_tag_76_77 { -____off64_t_24 ____pos_78;// L0 -____mbstate_t_68 ____state_79;// L0 +typedef struct ____anonymous_tag_70_71 ___G_fpos_t_77;// L21:L25 +struct ____anonymous_tag_78_79 { +____off64_t_24 ____pos_80;// L0 +____mbstate_t_69 ____state_82;// L0 }; -typedef struct ____anonymous_tag_76_77 ___G_fpos64_t_81;// L26:L30 -typedef __builtin_va_list ____gnuc_va_list_82;// L40 -typedef void ___IO_lock_t_84;// L150 -struct ___IO_marker_86 { -struct __forward_tag_reference_85 * (___next_87);// L0 -struct __forward_tag_reference_57 * (___sbuf_88);// L0 -int ___pos_89;// L162 +typedef struct ____anonymous_tag_78_79 ___G_fpos64_t_85;// L26:L30 +typedef __builtin_va_list ____gnuc_va_list_86;// L40 +typedef void ___IO_lock_t_88;// L150 +struct ___IO_marker_90 { +struct __forward_tag_reference_89 * (___next_91);// L0 +struct __forward_tag_reference_58 * (___sbuf_92);// L0 +int ___pos_93;// L162 }; -enum ____codecvt_result_94 { -____codecvt_ok_90, -____codecvt_partial_91, -____codecvt_error_92, -____codecvt_noconv_93, +enum ____codecvt_result_98 { +____codecvt_ok_94, +____codecvt_partial_95, +____codecvt_error_96, +____codecvt_noconv_97, }; -struct ___IO_FILE_95 { -int ___flags_96;// L242 -char * (___IO_read_ptr_97);// L247 -char * (___IO_read_end_98);// L248 -char * (___IO_read_base_99);// L249 -char * (___IO_write_base_100);// L250 -char * (___IO_write_ptr_101);// L251 -char * (___IO_write_end_102);// L252 -char * (___IO_buf_base_103);// L253 -char * (___IO_buf_end_104);// L254 -char * (___IO_save_base_105);// L256 -char * (___IO_backup_base_106);// L257 -char * (___IO_save_end_107);// L258 -struct ___IO_marker_86 * (___markers_108);// L260 -struct __forward_tag_reference_57 * (___chain_109);// L0 -int ___fileno_110;// L264 -int ___flags2_111;// L268 -____off_t_23 ___old_offset_112;// L0 -unsigned short ___cur_column_113;// L274 -signed char ___vtable_offset_114;// L275 -char ___shortbuf_115[1];// L276 -___IO_lock_t_84 * (___lock_116);// L0 +struct ___IO_FILE_99 { +int ___flags_100;// L242 +char * (___IO_read_ptr_101);// L247 +char * (___IO_read_end_102);// L248 +char * (___IO_read_base_103);// L249 +char * (___IO_write_base_104);// L250 +char * (___IO_write_ptr_105);// L251 +char * (___IO_write_end_106);// L252 +char * (___IO_buf_base_107);// L253 +char * (___IO_buf_end_108);// L254 +char * (___IO_save_base_109);// L256 +char * (___IO_backup_base_110);// L257 +char * (___IO_save_end_111);// L258 +struct ___IO_marker_90 * (___markers_112);// L260 +struct __forward_tag_reference_58 * (___chain_113);// L0 +int ___fileno_114;// L264 +int ___flags2_115;// L268 +____off_t_23 ___old_offset_116;// L0 +unsigned short ___cur_column_118;// L274 +signed char ___vtable_offset_119;// L275 +char ___shortbuf_120[1];// L276 +___IO_lock_t_88 * (___lock_121);// L0 }; -struct ___IO_FILE_119 { -int ___flags_120;// L242 -char * (___IO_read_ptr_121);// L247 -char * (___IO_read_end_122);// L248 -char * (___IO_read_base_123);// L249 -char * (___IO_write_base_124);// L250 -char * (___IO_write_ptr_125);// L251 -char * (___IO_write_end_126);// L252 -char * (___IO_buf_base_127);// L253 -char * (___IO_buf_end_128);// L254 -char * (___IO_save_base_129);// L256 -char * (___IO_backup_base_130);// L257 -char * (___IO_save_end_131);// L258 -struct ___IO_marker_86 * (___markers_132);// L260 -struct __forward_tag_reference_57 * (___chain_133);// L0 -int ___fileno_134;// L264 -int ___flags2_135;// L268 -____off_t_23 ___old_offset_136;// L0 -unsigned short ___cur_column_137;// L274 -signed char ___vtable_offset_138;// L275 -char ___shortbuf_139[1];// L276 -___IO_lock_t_84 * (___lock_140);// L0 -____off64_t_24 ___offset_142;// L0 -void * (____pad1_143);// L297 -void * (____pad2_144);// L298 -void * (____pad3_145);// L299 -void * (____pad4_146);// L300 -__size_t_1 ____pad5_147;// L0 -int ___mode_148;// L303 -char ___unused2_149[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +struct ___IO_FILE_124 { +int ___flags_125;// L242 +char * (___IO_read_ptr_126);// L247 +char * (___IO_read_end_127);// L248 +char * (___IO_read_base_128);// L249 +char * (___IO_write_base_129);// L250 +char * (___IO_write_ptr_130);// L251 +char * (___IO_write_end_131);// L252 +char * (___IO_buf_base_132);// L253 +char * (___IO_buf_end_133);// L254 +char * (___IO_save_base_134);// L256 +char * (___IO_backup_base_135);// L257 +char * (___IO_save_end_136);// L258 +struct ___IO_marker_90 * (___markers_137);// L260 +struct __forward_tag_reference_58 * (___chain_138);// L0 +int ___fileno_139;// L264 +int ___flags2_140;// L268 +____off_t_23 ___old_offset_141;// L0 +unsigned short ___cur_column_143;// L274 +signed char ___vtable_offset_144;// L275 +char ___shortbuf_145[1];// L276 +___IO_lock_t_88 * (___lock_146);// L0 +____off64_t_24 ___offset_148;// L0 +void * (____pad1_150);// L297 +void * (____pad2_151);// L298 +void * (____pad3_152);// L299 +void * (____pad4_153);// L300 +__size_t_1 ____pad5_154;// L0 +int ___mode_155;// L303 +char ___unused2_156[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -struct ___IO_FILE_complete_150 { -struct ___IO_FILE_95 ___file_151;// L286 -____off64_t_24 ___offset_153;// L0 -void * (____pad1_154);// L297 -void * (____pad2_155);// L298 -void * (____pad3_156);// L299 -void * (____pad4_157);// L300 -__size_t_1 ____pad5_158;// L0 -int ___mode_159;// L303 -char ___unused2_160[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +struct ___IO_FILE_complete_157 { +struct ___IO_FILE_99 ___file_158;// L286 +____off64_t_24 ___offset_160;// L0 +void * (____pad1_162);// L297 +void * (____pad2_163);// L298 +void * (____pad3_164);// L299 +void * (____pad4_165);// L300 +__size_t_1 ____pad5_166;// L0 +int ___mode_167;// L303 +char ___unused2_168[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -typedef struct ___IO_FILE_95 ___IO_FILE_163;// L310 -typedef struct ___IO_FILE_119 ___IO_FILE_164;// L310 -typedef ____ssize_t_49 (____io_read_fn_173) (void * (____cookie_170), char * (____buf_171), __size_t_1 ____nbytes_172);// L333 -typedef ____ssize_t_49 (____io_write_fn_177) (void * (____cookie_174), const char * (____buf_175), __size_t_1 ____n_176);// L341:L342 -typedef int (____io_seek_fn_181) (void * (____cookie_178), ____off64_t_24 * (____pos_179), int ____w_180);// L350 -typedef int (____io_close_fn_183) (void * (____cookie_182));// L353 -typedef ____gnuc_va_list_82 __va_list_248;// L79 -typedef ____off_t_23 __off_t_250;// L90 -typedef ____off64_t_24 __off_t_251;// L92 -typedef ____ssize_t_49 __ssize_t_252;// L102 -typedef ___G_fpos_t_75 __fpos_t_253;// L110 -typedef ___G_fpos64_t_81 __fpos_t_255;// L112 -extern const char * const __sys_errlist_756[];// L27 -typedef int __wchar_t_1018;// L243:L321 -enum ____anonymous_tag_1022_1023 { -__P_ALL_1019, -__P_PID_1020, -__P_PGID_1021, +typedef struct ___IO_FILE_99 ___IO_FILE_171;// L310 +typedef struct ___IO_FILE_124 ___IO_FILE_172;// L310 +typedef ____ssize_t_49 (____io_read_fn_181) (void * (____cookie_178), char * (____buf_179), __size_t_1 ____nbytes_180);// L333 +typedef ____ssize_t_49 (____io_write_fn_186) (void * (____cookie_183), const char * (____buf_184), __size_t_1 ____n_185);// L341:L342 +typedef int (____io_seek_fn_192) (void * (____cookie_188), ____off64_t_24 * (____pos_189), int ____w_191);// L350 +typedef int (____io_close_fn_195) (void * (____cookie_194));// L353 +typedef ____gnuc_va_list_86 __va_list_279;// L79 +typedef ____off_t_23 __off_t_281;// L90 +typedef ____off64_t_24 __off_t_283;// L92 +typedef ____ssize_t_49 __ssize_t_285;// L102 +typedef ___G_fpos_t_77 __fpos_t_287;// L110 +typedef ___G_fpos64_t_85 __fpos_t_289;// L112 +extern const char * const __sys_errlist_830[];// L27 +typedef long int __ptrdiff_t_1092;// L143:L324 +typedef long unsigned int __size_t_1093;// L177:L209 +typedef int __wchar_t_1094;// L243:L321 +enum ____anonymous_tag_1098_1099 { +__P_ALL_1095, +__P_PID_1096, +__P_PGID_1097, }; -typedef enum ____anonymous_tag_1022_1023 __idtype_t_1024;// L50:L55 -struct ____anonymous_tag_1030_1031 { -unsigned int ____w_termsig_1032 : 7;// L72 -unsigned int ____w_coredump_1033 : 1;// L73 -unsigned int ____w_retcode_1034 : 8;// L74 -unsigned int __anon_id_0_1035 : 16;// L75 +typedef enum ____anonymous_tag_1098_1099 __idtype_t_1100;// L50:L55 +typedef unsigned char ____u_char_1101;// L30 +typedef unsigned short int ____u_short_1102;// L31 +typedef unsigned int ____u_int_1103;// L32 +typedef unsigned long int ____u_long_1104;// L33 +typedef signed char ____int8_t_1105;// L36 +typedef unsigned char ____uint8_t_1106;// L37 +typedef signed short int ____int16_t_1107;// L38 +typedef unsigned short int ____uint16_t_1108;// L39 +typedef signed int ____int32_t_1109;// L40 +typedef unsigned int ____uint32_t_1110;// L41 +typedef signed long int ____int64_t_1111;// L43 +typedef unsigned long int ____uint64_t_1112;// L44 +typedef long int ____quad_t_1113;// L52 +typedef unsigned long int ____u_quad_t_1114;// L53 +typedef unsigned long int ____dev_t_1115;// L109:L124 +typedef unsigned int ____uid_t_1116;// L92:L125 +typedef unsigned int ____gid_t_1117;// L92:L126 +typedef unsigned long int ____ino_t_1118;// L94:L127 +typedef unsigned long int ____ino64_t_1119;// L109:L128 +typedef unsigned int ____mode_t_1120;// L92:L129 +typedef unsigned long int ____nlink_t_1121;// L94:L130 +typedef long int ____off_t_1122;// L93:L131 +typedef long int ____off64_t_1123;// L108:L132 +typedef int ____pid_t_1124;// L91:L133 +struct ____anonymous_tag_1125_1126 { +int ____val_1127[2];// L72 }; -struct ____anonymous_tag_1036_1037 { -unsigned int ____w_stopval_1038 : 8;// L87 -unsigned int ____w_stopsig_1039 : 8;// L88 -unsigned int __anon_id_1_1040 : 16;// L89 +typedef struct ____anonymous_tag_1125_1126 ____fsid_t_1128;// L72:L134 +typedef long int ____clock_t_1129;// L93:L135 +typedef unsigned long int ____rlim_t_1130;// L94:L136 +typedef unsigned long int ____rlim64_t_1131;// L109:L137 +typedef unsigned int ____id_t_1132;// L92:L138 +typedef long int ____time_t_1133;// L93:L139 +typedef unsigned int ____useconds_t_1134;// L92:L140 +typedef long int ____suseconds_t_1135;// L93:L141 +typedef int ____daddr_t_1136;// L91:L143 +typedef int ____key_t_1137;// L91:L144 +typedef int ____clockid_t_1138;// L91:L147 +typedef void * (____timer_t_1139);// L70:L150 +typedef long int ____blksize_t_1140;// L93:L153 +typedef long int ____blkcnt_t_1141;// L93:L158 +typedef long int ____blkcnt64_t_1142;// L108:L159 +typedef unsigned long int ____fsblkcnt_t_1143;// L94:L162 +typedef unsigned long int ____fsblkcnt64_t_1144;// L109:L163 +typedef unsigned long int ____fsfilcnt_t_1145;// L94:L166 +typedef unsigned long int ____fsfilcnt64_t_1146;// L109:L167 +typedef long int ____fsword_t_1147;// L93:L170 +typedef long int ____ssize_t_1148;// L110:L172 +typedef long int ____syscall_slong_t_1149;// L93:L175 +typedef unsigned long int ____syscall_ulong_t_1150;// L94:L177 +typedef ____off64_t_1123 ____loff_t_1151;// L181 +typedef ____quad_t_1113 * (____qaddr_t_1153);// L182 +typedef char * (____caddr_t_1154);// L183 +typedef long int ____intptr_t_1155;// L110:L186 +typedef unsigned int ____socklen_t_1156;// L92:L189 +struct ____anonymous_tag_1166_1167 { +unsigned int ____w_termsig_1168 : 7;// L72 +unsigned int ____w_coredump_1169 : 1;// L73 +unsigned int ____w_retcode_1170 : 8;// L74 +unsigned int __anon_id_0_1171 : 16;// L75 }; -union __wait_1041 { -int __w_status_1042;// L68 -struct ____anonymous_tag_1030_1031 ____wait_terminated_1043;// L69 -struct ____anonymous_tag_1036_1037 ____wait_stopped_1044;// L84 +struct ____anonymous_tag_1172_1173 { +unsigned int ____w_stopval_1174 : 8;// L87 +unsigned int ____w_stopsig_1175 : 8;// L88 +unsigned int __anon_id_1_1176 : 16;// L89 }; -union ____anonymous_tag_1045_1046 { -union __wait_1041 * (____uptr_1047);// L69 -int * (____iptr_1048);// L70 +union __wait_1177 { +int __w_status_1178;// L68 +struct ____anonymous_tag_1166_1167 ____wait_terminated_1179;// L69 +struct ____anonymous_tag_1172_1173 ____wait_stopped_1180;// L84 }; -typedef union ____anonymous_tag_1045_1046 ____WAIT_STATUS_1049;// L67:L71 -struct ____anonymous_tag_1050_1051 { -int __quot_1052;// L99 -int __rem_1053;// L100 +union ____anonymous_tag_1181_1182 { +union __wait_1177 * (____uptr_1183);// L69 +int * (____iptr_1184);// L70 }; -typedef struct ____anonymous_tag_1050_1051 __div_t_1054;// L97:L101 -struct ____anonymous_tag_1055_1056 { -long int __quot_1057;// L107 -long int __rem_1058;// L108 +typedef union ____anonymous_tag_1181_1182 ____WAIT_STATUS_1185;// L67:L71 +struct ____anonymous_tag_1186_1187 { +int __quot_1188;// L99 +int __rem_1189;// L100 }; -typedef struct ____anonymous_tag_1055_1056 __ldiv_t_1059;// L105:L109 -struct ____anonymous_tag_1060_1061 { -long long int __quot_1062;// L119 -long long int __rem_1063;// L120 +typedef struct ____anonymous_tag_1186_1187 __div_t_1190;// L97:L101 +struct ____anonymous_tag_1191_1192 { +long int __quot_1193;// L107 +long int __rem_1194;// L108 }; -typedef struct ____anonymous_tag_1060_1061 __lldiv_t_1064;// L117:L121 -typedef ____u_char_2 __u_char_1124;// L33 -typedef ____u_short_3 __u_short_1125;// L34 -typedef ____u_int_4 __u_int_1126;// L35 -typedef ____u_long_5 __u_long_1127;// L36 -typedef ____quad_t_14 __quad_t_1128;// L37 -typedef ____u_quad_t_15 __u_quad_t_1129;// L38 -typedef ____fsid_t_29 __fsid_t_1130;// L39 -typedef ____loff_t_52 __loff_t_1131;// L44 -typedef ____ino64_t_20 __ino_t_1132;// L50 -typedef ____ino_t_19 __ino_t_1133;// L48 -typedef ____dev_t_16 __dev_t_1134;// L60 -typedef ____gid_t_18 __gid_t_1135;// L65 -typedef ____gid_t_18 __gid_t_1136;// L65 -typedef ____mode_t_21 __mode_t_1137;// L70 -typedef ____nlink_t_22 __nlink_t_1138;// L75 -typedef ____uid_t_17 __uid_t_1139;// L80 -typedef ____uid_t_17 __uid_t_1140;// L80 -typedef ____pid_t_25 __pid_t_1141;// L98 -typedef ____id_t_33 __id_t_1142;// L104 -typedef ____daddr_t_37 __daddr_t_1143;// L115 -typedef ____caddr_t_54 __caddr_t_1144;// L116 -typedef ____key_t_38 __key_t_1145;// L122 -typedef ____key_t_38 __key_t_1146;// L122 -typedef ____clock_t_30 __clock_t_1147;// L59 -typedef ____time_t_34 __time_t_1148;// L75 -typedef ____clockid_t_39 __clockid_t_1149;// L91 -typedef ____timer_t_40 __timer_t_1150;// L103 -typedef unsigned long int __ulong_1151;// L150 -typedef unsigned long int __ulong_1152;// L150 -typedef unsigned long int __ulong_1153;// L150 -typedef unsigned short int __ushort_1154;// L151 -typedef unsigned int __uint_1155;// L152 -typedef int __int8_t_1156;// L188:L194 -typedef int __int16_t_1157;// L188:L195 -typedef int __int32_t_1158;// L188:L196 -typedef int __int64_t_1159;// L188:L197 -typedef unsigned int __u_int8_t_1160;// L190:L200 -typedef unsigned int __u_int16_t_1161;// L190:L201 -typedef unsigned int __u_int32_t_1162;// L190:L202 -typedef unsigned int __u_int64_t_1163;// L190:L203 -typedef int __register_t_1164;// L205 -typedef int ____sig_atomic_t_1170;// L22 -struct ____anonymous_tag_1171_1172 { -unsigned long int ____val_1173[( 1024 / ( 8 * sizeof(unsigned long) ) )];// L29 +typedef struct ____anonymous_tag_1191_1192 __ldiv_t_1195;// L105:L109 +struct ____anonymous_tag_1196_1197 { +long long int __quot_1198;// L119 +long long int __rem_1199;// L120 }; -typedef struct ____anonymous_tag_1171_1172 ____sigset_t_1174;// L27:L30 -typedef ____sigset_t_1174 __sigset_t_1175;// L37 -struct __timespec_1176 { -____time_t_34 __tv_sec_1177;// L0 -____syscall_slong_t_50 __tv_nsec_1178;// L0 +typedef struct ____anonymous_tag_1196_1197 __lldiv_t_1200;// L117:L121 +typedef unsigned char ____u_char_1264;// L30 +typedef unsigned short int ____u_short_1265;// L31 +typedef unsigned int ____u_int_1266;// L32 +typedef unsigned long int ____u_long_1267;// L33 +typedef signed char ____int8_t_1268;// L36 +typedef unsigned char ____uint8_t_1269;// L37 +typedef signed short int ____int16_t_1270;// L38 +typedef unsigned short int ____uint16_t_1271;// L39 +typedef signed int ____int32_t_1272;// L40 +typedef unsigned int ____uint32_t_1273;// L41 +typedef signed long int ____int64_t_1274;// L43 +typedef unsigned long int ____uint64_t_1275;// L44 +typedef long int ____quad_t_1276;// L52 +typedef unsigned long int ____u_quad_t_1277;// L53 +typedef unsigned long int ____dev_t_1278;// L109:L124 +typedef unsigned int ____uid_t_1279;// L92:L125 +typedef unsigned int ____gid_t_1280;// L92:L126 +typedef unsigned long int ____ino_t_1281;// L94:L127 +typedef unsigned long int ____ino64_t_1282;// L109:L128 +typedef unsigned int ____mode_t_1283;// L92:L129 +typedef unsigned long int ____nlink_t_1284;// L94:L130 +typedef long int ____off_t_1285;// L93:L131 +typedef long int ____off64_t_1286;// L108:L132 +typedef int ____pid_t_1287;// L91:L133 +struct ____anonymous_tag_1288_1289 { +int ____val_1290[2];// L72 }; -struct __timeval_1179 { -____time_t_34 __tv_sec_1180;// L0 -____suseconds_t_36 __tv_usec_1181;// L0 +typedef struct ____anonymous_tag_1288_1289 ____fsid_t_1291;// L72:L134 +typedef long int ____clock_t_1292;// L93:L135 +typedef unsigned long int ____rlim_t_1293;// L94:L136 +typedef unsigned long int ____rlim64_t_1294;// L109:L137 +typedef unsigned int ____id_t_1295;// L92:L138 +typedef long int ____time_t_1296;// L93:L139 +typedef unsigned int ____useconds_t_1297;// L92:L140 +typedef long int ____suseconds_t_1298;// L93:L141 +typedef int ____daddr_t_1299;// L91:L143 +typedef int ____key_t_1300;// L91:L144 +typedef int ____clockid_t_1301;// L91:L147 +typedef void * (____timer_t_1302);// L70:L150 +typedef long int ____blksize_t_1303;// L93:L153 +typedef long int ____blkcnt_t_1304;// L93:L158 +typedef long int ____blkcnt64_t_1305;// L108:L159 +typedef unsigned long int ____fsblkcnt_t_1306;// L94:L162 +typedef unsigned long int ____fsblkcnt64_t_1307;// L109:L163 +typedef unsigned long int ____fsfilcnt_t_1308;// L94:L166 +typedef unsigned long int ____fsfilcnt64_t_1309;// L109:L167 +typedef long int ____fsword_t_1310;// L93:L170 +typedef long int ____ssize_t_1311;// L110:L172 +typedef long int ____syscall_slong_t_1312;// L93:L175 +typedef unsigned long int ____syscall_ulong_t_1313;// L94:L177 +typedef ____off64_t_1286 ____loff_t_1314;// L181 +typedef ____quad_t_1276 * (____qaddr_t_1316);// L182 +typedef char * (____caddr_t_1317);// L183 +typedef long int ____intptr_t_1318;// L110:L186 +typedef unsigned int ____socklen_t_1319;// L92:L189 +typedef ____u_char_2 __u_char_1320;// L33 +typedef ____u_char_1101 __u_char_1321;// L33 +typedef ____u_char_1264 __u_char_1322;// L33 +typedef ____u_short_3 __u_short_1323;// L34 +typedef ____u_short_1102 __u_short_1324;// L34 +typedef ____u_short_1265 __u_short_1325;// L34 +typedef ____u_int_4 __u_int_1326;// L35 +typedef ____u_int_1103 __u_int_1327;// L35 +typedef ____u_int_1266 __u_int_1328;// L35 +typedef ____u_long_5 __u_long_1329;// L36 +typedef ____u_long_1104 __u_long_1330;// L36 +typedef ____u_long_1267 __u_long_1331;// L36 +typedef ____quad_t_14 __quad_t_1332;// L37 +typedef ____quad_t_1113 __quad_t_1333;// L37 +typedef ____quad_t_1276 __quad_t_1334;// L37 +typedef ____u_quad_t_15 __u_quad_t_1335;// L38 +typedef ____u_quad_t_1114 __u_quad_t_1336;// L38 +typedef ____u_quad_t_1277 __u_quad_t_1337;// L38 +typedef ____fsid_t_29 __fsid_t_1338;// L39 +typedef ____fsid_t_1128 __fsid_t_1339;// L39 +typedef ____fsid_t_1291 __fsid_t_1340;// L39 +typedef ____loff_t_52 __loff_t_1342;// L44 +typedef ____loff_t_1151 __loff_t_1343;// L44 +typedef ____loff_t_1314 __loff_t_1344;// L44 +typedef ____loff_t_52 __loff_t_1346;// L44 +typedef ____loff_t_1151 __loff_t_1347;// L44 +typedef ____loff_t_1314 __loff_t_1348;// L44 +typedef ____ino64_t_20 __ino_t_1350;// L50 +typedef ____ino64_t_1119 __ino_t_1351;// L50 +typedef ____ino64_t_1282 __ino_t_1352;// L50 +typedef ____ino_t_19 __ino_t_1354;// L48 +typedef ____ino_t_1118 __ino_t_1355;// L48 +typedef ____ino_t_1281 __ino_t_1356;// L48 +typedef ____dev_t_16 __dev_t_1358;// L60 +typedef ____dev_t_1115 __dev_t_1359;// L60 +typedef ____dev_t_1278 __dev_t_1360;// L60 +typedef ____gid_t_18 __gid_t_1362;// L65 +typedef ____gid_t_1117 __gid_t_1363;// L65 +typedef ____gid_t_1280 __gid_t_1364;// L65 +typedef ____gid_t_18 __gid_t_1366;// L65 +typedef ____gid_t_1117 __gid_t_1367;// L65 +typedef ____gid_t_1280 __gid_t_1368;// L65 +typedef ____mode_t_21 __mode_t_1370;// L70 +typedef ____mode_t_1120 __mode_t_1371;// L70 +typedef ____mode_t_1283 __mode_t_1372;// L70 +typedef ____nlink_t_22 __nlink_t_1374;// L75 +typedef ____nlink_t_1121 __nlink_t_1375;// L75 +typedef ____nlink_t_1284 __nlink_t_1376;// L75 +typedef ____uid_t_17 __uid_t_1378;// L80 +typedef ____uid_t_1116 __uid_t_1379;// L80 +typedef ____uid_t_1279 __uid_t_1380;// L80 +typedef ____uid_t_17 __uid_t_1382;// L80 +typedef ____uid_t_1116 __uid_t_1383;// L80 +typedef ____uid_t_1279 __uid_t_1384;// L80 +typedef ____off64_t_1123 __off_t_1386;// L88 +typedef ____off64_t_1286 __off_t_1387;// L88 +typedef ____off_t_1122 __off_t_1389;// L86 +typedef ____off_t_1285 __off_t_1390;// L86 +typedef ____pid_t_25 __pid_t_1392;// L98 +typedef ____pid_t_1124 __pid_t_1393;// L98 +typedef ____pid_t_1287 __pid_t_1394;// L98 +typedef ____pid_t_1124 __pid_t_1396;// L98 +typedef ____pid_t_1287 __pid_t_1397;// L98 +typedef ____id_t_33 __id_t_1399;// L104 +typedef ____id_t_1132 __id_t_1400;// L104 +typedef ____id_t_1295 __id_t_1401;// L104 +typedef ____ssize_t_1148 __ssize_t_1403;// L109 +typedef ____ssize_t_1311 __ssize_t_1404;// L109 +typedef ____daddr_t_37 __daddr_t_1406;// L115 +typedef ____daddr_t_1136 __daddr_t_1407;// L115 +typedef ____daddr_t_1299 __daddr_t_1408;// L115 +typedef ____caddr_t_55 __caddr_t_1410;// L116 +typedef ____caddr_t_1154 __caddr_t_1411;// L116 +typedef ____caddr_t_1317 __caddr_t_1412;// L116 +typedef ____key_t_38 __key_t_1413;// L122 +typedef ____key_t_1137 __key_t_1414;// L122 +typedef ____key_t_1300 __key_t_1415;// L122 +typedef ____key_t_38 __key_t_1417;// L122 +typedef ____key_t_1137 __key_t_1418;// L122 +typedef ____key_t_1300 __key_t_1419;// L122 +typedef ____clock_t_30 __clock_t_1421;// L59 +typedef ____clock_t_1129 __clock_t_1422;// L59 +typedef ____clock_t_1292 __clock_t_1423;// L59 +typedef ____time_t_34 __time_t_1425;// L75 +typedef ____time_t_1133 __time_t_1426;// L75 +typedef ____time_t_1296 __time_t_1427;// L75 +typedef ____clockid_t_39 __clockid_t_1429;// L91 +typedef ____clockid_t_1138 __clockid_t_1430;// L91 +typedef ____clockid_t_1301 __clockid_t_1431;// L91 +typedef ____timer_t_40 __timer_t_1433;// L103 +typedef ____timer_t_1139 __timer_t_1434;// L103 +typedef ____timer_t_1302 __timer_t_1435;// L103 +typedef unsigned long int __ulong_1437;// L150 +typedef unsigned long int __ulong_1438;// L150 +typedef unsigned long int __ulong_1439;// L150 +typedef unsigned short int __ushort_1440;// L151 +typedef unsigned int __uint_1441;// L152 +typedef int __int8_t_1442;// L188:L194 +typedef int __int16_t_1443;// L188:L195 +typedef int __int32_t_1444;// L188:L196 +typedef int __int64_t_1445;// L188:L197 +typedef unsigned int __u_int8_t_1446;// L190:L200 +typedef unsigned int __u_int16_t_1447;// L190:L201 +typedef unsigned int __u_int32_t_1448;// L190:L202 +typedef unsigned int __u_int64_t_1449;// L190:L203 +typedef int __register_t_1450;// L205 +typedef int ____sig_atomic_t_1460;// L22 +struct ____anonymous_tag_1461_1462 { +unsigned long int ____val_1463[( 1024 / ( 8 * sizeof(unsigned long) ) )];// L29 }; -typedef ____suseconds_t_36 __suseconds_t_1182;// L48 -typedef long int ____fd_mask_1183;// L54 -typedef long int ____fd_mask_1184;// L54 -struct ____anonymous_tag_1185_1186 { -____fd_mask_1183 ____fds_bits_1187[1024 / ( 8 * ( int ) sizeof(long) )];// L0 -____fd_mask_1184 ____fds_bits_1188[1024 / ( 8 * ( int ) sizeof(long) )];// L0 +typedef struct ____anonymous_tag_1461_1462 ____sigset_t_1464;// L27:L30 +typedef ____sigset_t_1464 __sigset_t_1465;// L37 +struct __timespec_1466 { +____time_t_34 __tv_sec_1467;// L0 +____time_t_1133 __tv_sec_1468;// L0 +____time_t_1296 __tv_sec_1469;// L0 +____syscall_slong_t_50 __tv_nsec_1471;// L0 +____syscall_slong_t_1149 __tv_nsec_1472;// L0 +____syscall_slong_t_1312 __tv_nsec_1473;// L0 }; -typedef struct ____anonymous_tag_1185_1186 __fd_set_1189;// L64:L75 -typedef ____fd_mask_1183 __fd_mask_1190;// L82 -typedef ____fd_mask_1184 __fd_mask_1191;// L82 -typedef ____blksize_t_41 __blksize_t_1227;// L228 -typedef ____blkcnt_t_42 __blkcnt_t_1228;// L235 -typedef ____fsblkcnt_t_44 __fsblkcnt_t_1229;// L239 -typedef ____blkcnt64_t_43 __blkcnt_t_1230;// L248 -typedef ____fsblkcnt64_t_45 __fsblkcnt_t_1231;// L252 -typedef ____fsfilcnt_t_46 __fsfilcnt_t_1232;// L243 -typedef ____fsfilcnt64_t_47 __fsfilcnt_t_1233;// L256 -typedef unsigned long int __pthread_t_1234;// L60 -union __pthread_attr_t_1235 { -char ____size_1236[56];// L65 -long int ____align_1237;// L66 +struct __timeval_1476 { +____time_t_34 __tv_sec_1477;// L0 +____time_t_1133 __tv_sec_1478;// L0 +____time_t_1296 __tv_sec_1479;// L0 +____suseconds_t_36 __tv_usec_1481;// L0 +____suseconds_t_1135 __tv_usec_1482;// L0 +____suseconds_t_1298 __tv_usec_1483;// L0 }; -typedef union __pthread_attr_t_1235 __pthread_attr_t_1238;// L69 -struct ____pthread_internal_list_1240 { -struct __forward_tag_reference_1239 * (____prev_1241);// L0 -struct __forward_tag_reference_1239 * (____next_1242);// L0 +typedef ____suseconds_t_36 __suseconds_t_1486;// L48 +typedef ____suseconds_t_1135 __suseconds_t_1487;// L48 +typedef ____suseconds_t_1298 __suseconds_t_1488;// L48 +typedef long int ____fd_mask_1490;// L54 +typedef long int ____fd_mask_1491;// L54 +struct ____anonymous_tag_1492_1493 { +____fd_mask_1490 ____fds_bits_1494[1024 / ( 8 * ( int ) sizeof(long) )];// L0 +____fd_mask_1491 ____fds_bits_1496[1024 / ( 8 * ( int ) sizeof(long) )];// L0 }; -typedef struct ____pthread_internal_list_1240 ____pthread_list_t_1243;// L75:L79 -typedef struct ____pthread_internal_list_1240 ____pthread_list_t_1244;// L75:L79 -struct ____pthread_mutex_s_1245 { -int ____lock_1246;// L94 -unsigned int ____count_1247;// L95 -int ____owner_1248;// L96 -unsigned int ____nusers_1249;// L98 -int ____kind_1250;// L102 -short ____spins_1251;// L104 -short ____elision_1252;// L105 -____pthread_list_t_1243 ____list_1253;// L0 -____pthread_list_t_1244 ____list_1254;// L0 +typedef struct ____anonymous_tag_1492_1493 __fd_set_1499;// L64:L75 +typedef ____fd_mask_1490 __fd_mask_1500;// L82 +typedef ____fd_mask_1491 __fd_mask_1501;// L82 +typedef ____blksize_t_41 __blksize_t_1549;// L228 +typedef ____blksize_t_1140 __blksize_t_1550;// L228 +typedef ____blksize_t_1303 __blksize_t_1551;// L228 +typedef ____blkcnt_t_42 __blkcnt_t_1553;// L235 +typedef ____blkcnt_t_1141 __blkcnt_t_1554;// L235 +typedef ____blkcnt_t_1304 __blkcnt_t_1555;// L235 +typedef ____fsblkcnt_t_44 __fsblkcnt_t_1557;// L239 +typedef ____fsblkcnt_t_1143 __fsblkcnt_t_1558;// L239 +typedef ____fsblkcnt_t_1306 __fsblkcnt_t_1559;// L239 +typedef ____blkcnt64_t_43 __blkcnt_t_1561;// L248 +typedef ____blkcnt64_t_1142 __blkcnt_t_1562;// L248 +typedef ____blkcnt64_t_1305 __blkcnt_t_1563;// L248 +typedef ____fsblkcnt64_t_45 __fsblkcnt_t_1565;// L252 +typedef ____fsblkcnt64_t_1144 __fsblkcnt_t_1566;// L252 +typedef ____fsblkcnt64_t_1307 __fsblkcnt_t_1567;// L252 +typedef ____fsfilcnt_t_46 __fsfilcnt_t_1569;// L243 +typedef ____fsfilcnt_t_1145 __fsfilcnt_t_1570;// L243 +typedef ____fsfilcnt_t_1308 __fsfilcnt_t_1571;// L243 +typedef ____fsfilcnt64_t_47 __fsfilcnt_t_1573;// L256 +typedef ____fsfilcnt64_t_1146 __fsfilcnt_t_1574;// L256 +typedef ____fsfilcnt64_t_1309 __fsfilcnt_t_1575;// L256 +typedef unsigned long int __pthread_t_1577;// L60 +union __pthread_attr_t_1578 { +char ____size_1579[56];// L65 +long int ____align_1580;// L66 }; -union ____anonymous_tag_1255_1256 { -struct ____pthread_mutex_s_1245 ____data_1257;// L92 -char ____size_1258[40];// L126 -long int ____align_1259;// L127 +typedef union __pthread_attr_t_1578 __pthread_attr_t_1581;// L69 +struct ____pthread_internal_list_1583 { +struct __forward_tag_reference_1582 * (____prev_1584);// L0 +struct __forward_tag_reference_1582 * (____next_1585);// L0 }; -typedef union ____anonymous_tag_1255_1256 __pthread_mutex_t_1260;// L90:L128 -union ____anonymous_tag_1261_1262 { -char ____size_1263[4];// L132 -int ____align_1264;// L133 +typedef struct ____pthread_internal_list_1583 ____pthread_list_t_1586;// L75:L79 +typedef struct ____pthread_internal_list_1583 ____pthread_list_t_1587;// L75:L79 +struct ____pthread_mutex_s_1588 { +int ____lock_1589;// L94 +unsigned int ____count_1590;// L95 +int ____owner_1591;// L96 +unsigned int ____nusers_1592;// L98 +int ____kind_1593;// L102 +short ____spins_1594;// L104 +short ____elision_1595;// L105 +____pthread_list_t_1586 ____list_1596;// L0 +____pthread_list_t_1587 ____list_1597;// L0 }; -typedef union ____anonymous_tag_1261_1262 __pthread_mutexattr_t_1265;// L130:L134 -typedef int (* (____compar_fn_t_1374)) (const void *, const void *);// L741 -static const char __request_GET_1600[]= "GET";// L10 +union ____anonymous_tag_1598_1599 { +struct ____pthread_mutex_s_1588 ____data_1600;// L92 +char ____size_1601[40];// L126 +long int ____align_1602;// L127 +}; +typedef union ____anonymous_tag_1598_1599 __pthread_mutex_t_1603;// L90:L128 +union ____anonymous_tag_1604_1605 { +char ____size_1606[4];// L132 +int ____align_1607;// L133 +}; +typedef union ____anonymous_tag_1604_1605 __pthread_mutexattr_t_1608;// L130:L134 +typedef int (* (____compar_fn_t_1740)) (const void *, const void *);// L741 +static const char __request_GET_2036[]= "GET";// L10 -struct __forward_tag_reference_57 { // generated union of struct variations +struct __forward_tag_reference_89 { // generated union of struct variations union { -struct ___IO_FILE_95 ___IO_FILE_95; -struct ___IO_FILE_119 ___IO_FILE_119; +struct ___IO_marker_90 ___IO_marker_90; }; }; -struct __forward_tag_reference_85 { // generated union of struct variations +struct __forward_tag_reference_1582 { // generated union of struct variations union { -struct ___IO_marker_86 ___IO_marker_86; }; }; -struct __forward_tag_reference_1239 { // generated union of struct variations +struct __forward_tag_reference_58 { // generated union of struct variations union { +struct ___IO_FILE_99 ___IO_FILE_99; +struct ___IO_FILE_124 ___IO_FILE_124; }; }; -struct __forward_tag_reference_83 { // generated union of struct variations +struct __forward_tag_reference_87 { // generated union of struct variations union { }; }; -struct __forward_tag_reference_166 { // generated union of struct variations +struct __forward_tag_reference_174 { // generated union of struct variations union { }; }; @@ -1386,225 +2062,225 @@ union { // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_57 ;// L0 +struct __forward_tag_reference_58 ;// L0 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_83 ;// L0 -struct __forward_tag_reference_83 ;// L0 -struct __forward_tag_reference_57 ;// L0 +struct __forward_tag_reference_87 ;// L0 +struct __forward_tag_reference_87 ;// L0 +struct __forward_tag_reference_58 ;// L0 // typedef moved to top of scope -struct ___IO_marker_86 ;// L156 -enum ____codecvt_result_94 ;// L176 -struct ___IO_FILE_95 ;// L241 +struct ___IO_marker_90 ;// L156 +enum ____codecvt_result_98 ;// L176 +struct ___IO_FILE_99 ;// L241 -struct ___IO_FILE_119 ;// L241 -struct ___IO_FILE_complete_150 ;// L241 +struct ___IO_FILE_124 ;// L241 +struct ___IO_FILE_complete_157 ;// L241 // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_166 ;// L0 -extern struct __forward_tag_reference_166 ___IO_2_1_stdin__167;// L315 -extern struct __forward_tag_reference_166 ___IO_2_1_stdout__168;// L316 -extern struct __forward_tag_reference_166 ___IO_2_1_stderr__169;// L317 +struct __forward_tag_reference_174 ;// L0 +extern struct __forward_tag_reference_174 ___IO_2_1_stdin__175;// L315 +extern struct __forward_tag_reference_174 ___IO_2_1_stdout__176;// L316 +extern struct __forward_tag_reference_174 ___IO_2_1_stderr__177;// L317 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern int (____underflow_184) (___IO_FILE_163 *);// L385 -extern int (____underflow_185) (___IO_FILE_164 *);// L385 -extern int (____uflow_186) (___IO_FILE_163 *);// L386 -extern int (____uflow_187) (___IO_FILE_164 *);// L386 -extern int (____overflow_188) (___IO_FILE_163 *, int );// L387 -extern int (____overflow_189) (___IO_FILE_164 *, int );// L387 -extern int (___IO_getc_193) (___IO_FILE_163 * (____fp_190));// L429 -extern int (___IO_getc_194) (___IO_FILE_164 * (____fp_191));// L429 -extern int (___IO_putc_199) (int ____c_195, ___IO_FILE_163 * (____fp_196));// L430 -extern int (___IO_putc_200) (int ____c_195, ___IO_FILE_164 * (____fp_197));// L430 -extern int (___IO_feof_204) (___IO_FILE_163 * (____fp_201));// L431 -extern int (___IO_feof_205) (___IO_FILE_164 * (____fp_202));// L431 -extern int (___IO_ferror_209) (___IO_FILE_163 * (____fp_206));// L432 -extern int (___IO_ferror_210) (___IO_FILE_164 * (____fp_207));// L432 -extern int (___IO_peekc_locked_214) (___IO_FILE_163 * (____fp_211));// L434 -extern int (___IO_peekc_locked_215) (___IO_FILE_164 * (____fp_212));// L434 -extern void (___IO_flockfile_216) (___IO_FILE_163 *);// L440 -extern void (___IO_flockfile_217) (___IO_FILE_164 *);// L440 -extern void (___IO_funlockfile_218) (___IO_FILE_163 *);// L441 -extern void (___IO_funlockfile_219) (___IO_FILE_164 *);// L441 -extern int (___IO_ftrylockfile_220) (___IO_FILE_163 *);// L442 -extern int (___IO_ftrylockfile_221) (___IO_FILE_164 *);// L442 -extern int (___IO_vfscanf_222) (___IO_FILE_163 * __restrict , const char * __restrict , ____gnuc_va_list_82 , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_224) (___IO_FILE_164 * __restrict , const char * __restrict , ____gnuc_va_list_82 , int * __restrict );// L459:L460 - - -extern int (___IO_vfprintf_231) (___IO_FILE_163 * __restrict , const char * __restrict , ____gnuc_va_list_82 );// L461:L462 -extern int (___IO_vfprintf_233) (___IO_FILE_164 * __restrict , const char * __restrict , ____gnuc_va_list_82 );// L461:L462 - -extern ____ssize_t_49 (___IO_padn_238) (___IO_FILE_163 *, int , ____ssize_t_49 );// L463 -extern ____ssize_t_49 (___IO_padn_239) (___IO_FILE_164 *, int , ____ssize_t_49 );// L463 -extern __size_t_1 (___IO_sgetn_240) (___IO_FILE_163 *, void *, __size_t_1 );// L464 -extern __size_t_1 (___IO_sgetn_241) (___IO_FILE_164 *, void *, __size_t_1 );// L464 -extern ____off64_t_24 (___IO_seekoff_242) (___IO_FILE_163 *, ____off64_t_24 , int , int );// L466 -extern ____off64_t_24 (___IO_seekoff_243) (___IO_FILE_164 *, ____off64_t_24 , int , int );// L466 -extern ____off64_t_24 (___IO_seekpos_244) (___IO_FILE_163 *, ____off64_t_24 , int );// L467 -extern ____off64_t_24 (___IO_seekpos_245) (___IO_FILE_164 *, ____off64_t_24 , int );// L467 -extern void (___IO_free_backup_area_246) (___IO_FILE_163 *);// L469 -extern void (___IO_free_backup_area_247) (___IO_FILE_164 *);// L469 +extern int (____underflow_196) (___IO_FILE_171 *);// L385 +extern int (____underflow_197) (___IO_FILE_172 *);// L385 +extern int (____uflow_199) (___IO_FILE_171 *);// L386 +extern int (____uflow_200) (___IO_FILE_172 *);// L386 +extern int (____overflow_202) (___IO_FILE_171 *, int );// L387 +extern int (____overflow_203) (___IO_FILE_172 *, int );// L387 +extern int (___IO_getc_208) (___IO_FILE_171 * (____fp_205));// L429 +extern int (___IO_getc_209) (___IO_FILE_172 * (____fp_206));// L429 +extern int (___IO_putc_215) (int ____c_211, ___IO_FILE_171 * (____fp_212));// L430 +extern int (___IO_putc_216) (int ____c_211, ___IO_FILE_172 * (____fp_213));// L430 +extern int (___IO_feof_221) (___IO_FILE_171 * (____fp_218));// L431 +extern int (___IO_feof_222) (___IO_FILE_172 * (____fp_219));// L431 +extern int (___IO_ferror_227) (___IO_FILE_171 * (____fp_224));// L432 +extern int (___IO_ferror_228) (___IO_FILE_172 * (____fp_225));// L432 +extern int (___IO_peekc_locked_233) (___IO_FILE_171 * (____fp_230));// L434 +extern int (___IO_peekc_locked_234) (___IO_FILE_172 * (____fp_231));// L434 +extern void (___IO_flockfile_236) (___IO_FILE_171 *);// L440 +extern void (___IO_flockfile_237) (___IO_FILE_172 *);// L440 +extern void (___IO_funlockfile_239) (___IO_FILE_171 *);// L441 +extern void (___IO_funlockfile_240) (___IO_FILE_172 *);// L441 +extern int (___IO_ftrylockfile_242) (___IO_FILE_171 *);// L442 +extern int (___IO_ftrylockfile_243) (___IO_FILE_172 *);// L442 +extern int (___IO_vfscanf_245) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_247) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_251) (___IO_FILE_171 * __restrict , const char * __restrict , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_252) (___IO_FILE_172 * __restrict , const char * __restrict , int * __restrict );// L459:L460 +extern int (___IO_vfprintf_254) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 +extern int (___IO_vfprintf_256) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 +extern int (___IO_vfprintf_260) ();// L461:L462 +extern ____ssize_t_49 (___IO_padn_261) (___IO_FILE_171 *, int , ____ssize_t_49 );// L463 +extern ____ssize_t_49 (___IO_padn_262) (___IO_FILE_172 *, int , ____ssize_t_49 );// L463 +extern __size_t_1 (___IO_sgetn_265) (___IO_FILE_171 *, void *, __size_t_1 );// L464 +extern __size_t_1 (___IO_sgetn_266) (___IO_FILE_172 *, void *, __size_t_1 );// L464 +extern ____off64_t_24 (___IO_seekoff_268) (___IO_FILE_171 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekoff_269) (___IO_FILE_172 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekpos_272) (___IO_FILE_171 *, ____off64_t_24 , int );// L467 +extern ____off64_t_24 (___IO_seekpos_273) (___IO_FILE_172 *, ____off64_t_24 , int );// L467 +extern void (___IO_free_backup_area_276) (___IO_FILE_171 *);// L469 +extern void (___IO_free_backup_area_277) (___IO_FILE_172 *);// L469 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern struct ___IO_FILE_95 * (__stdin_257);// L168 -extern struct ___IO_FILE_119 * (__stdin_258);// L168 -extern struct ___IO_FILE_95 * (__stdout_259);// L169 -extern struct ___IO_FILE_119 * (__stdout_260);// L169 -extern struct ___IO_FILE_95 * (__stderr_261);// L170 -extern struct ___IO_FILE_119 * (__stderr_262);// L170 -extern int (__remove_264) (const char * (____filename_263));// L178 -extern int (__rename_267) (const char * (____old_265), const char * (____new_266));// L180 -extern int (__renameat_272) (int ____oldfd_268, const char * (____old_269), int ____newfd_270, const char * (____new_271));// L185:L186 -extern __FILE_58 * ((__tmpfile_273) (void ));// L195 -extern __FILE_58 * ((__tmpfile_279) (void ));// L198 -extern __FILE_58 * ((__tmpfile_277) (void ));// L198 -extern __FILE_58 * ((__tmpfile_275) (void ));// L195 -extern char * ((__tmpnam_282) (char * (____s_281)));// L209 -extern char * ((__tmpnam_283) (char * (____s_281)));// L209 -extern char * ((__tmpnam_r_285) (char * (____s_284)));// L215 -extern char * ((__tmpnam_r_286) (char * (____s_284)));// L215 -extern char * ((__tempnam_289) (const char * (____dir_287), const char * (____pfx_288)));// L227:L228 -extern char * ((__tempnam_290) (const char * (____dir_287), const char * (____pfx_288)));// L227:L228 -extern int (__fclose_293) (__FILE_58 * (____stream_291));// L237 -extern int (__fclose_295) (__FILE_58 * (____stream_291));// L237 -extern int (__fflush_299) (__FILE_58 * (____stream_297));// L242 -extern int (__fflush_unlocked_303) (__FILE_58 * (____stream_301));// L252 -extern __FILE_58 * ((__fopen_307) (const char * __restrict ____filename_305, const char * __restrict ____modes_306));// L272:L273 -extern __FILE_58 * ((__fopen_309) (const char * __restrict ____filename_305, const char * __restrict ____modes_306));// L272:L273 -extern __FILE_58 * ((__fopen_317) (const char * __restrict ____filename_315, const char * __restrict ____modes_316));// L283:L285 -extern __FILE_58 * ((__fopen_319) (const char * __restrict ____filename_315, const char * __restrict ____modes_316));// L283:L285 -extern __FILE_58 * ((__freopen_325) (const char * __restrict ____filename_311, const char * __restrict ____modes_312, __FILE_58 * __restrict ____stream_313));// L278:L280 -extern __FILE_58 * ((__freopen_331) (const char * __restrict ____filename_321, const char * __restrict ____modes_322, __FILE_58 * __restrict ____stream_323));// L286:L289 -extern __FILE_58 * ((__freopen_329) (const char * __restrict ____filename_321, const char * __restrict ____modes_322, __FILE_58 * __restrict ____stream_323));// L286:L289 -extern __FILE_58 * ((__freopen_327) (const char * __restrict ____filename_311, const char * __restrict ____modes_312, __FILE_58 * __restrict ____stream_313));// L278:L280 -extern __FILE_58 * ((__fdopen_335) (int ____fd_333, const char * (____modes_334)));// L306 -extern __FILE_58 * ((__fdopen_337) (int ____fd_333, const char * (____modes_334)));// L306 -extern __FILE_58 * ((__fmemopen_342) (void * (____s_339), __size_t_1 ____len_340, const char * (____modes_341)));// L319:L320 -extern __FILE_58 * ((__fmemopen_344) (void * (____s_339), __size_t_1 ____len_340, const char * (____modes_341)));// L319:L320 -extern __FILE_58 * ((__open_memstream_348) (char * (* (____bufloc_346)), __size_t_1 * (____sizeloc_347)));// L325 -extern __FILE_58 * ((__open_memstream_350) (char * (* (____bufloc_346)), __size_t_1 * (____sizeloc_347)));// L325 -extern void (__setbuf_355) (__FILE_58 * __restrict ____stream_352, char * __restrict ____buf_354);// L332 -extern void (__setbuf_357) (__FILE_58 * __restrict ____stream_352, char * __restrict ____buf_354);// L332 -extern int (__setvbuf_364) (__FILE_58 * __restrict ____stream_359, char * __restrict ____buf_361, int ____modes_362, __size_t_1 ____n_363);// L336:L337 -extern void (__setbuffer_369) (__FILE_58 * __restrict ____stream_365, char * __restrict ____buf_367, __size_t_1 ____size_368);// L343:L344 -extern void (__setlinebuf_373) (__FILE_58 * (____stream_371));// L347 -extern int (__fprintf_378) (__FILE_58 * __restrict ____stream_375, const char * __restrict ____format_377, ... );// L356:L357 -extern int (__fprintf_380) (__FILE_58 * __restrict ____stream_375, const char * __restrict ____format_377, ... );// L356:L357 -extern int (__printf_383) (const char * __restrict ____format_382, ... );// L362 -extern int (__sprintf_386) (char * __restrict ____s_384, const char * __restrict ____format_385, ... );// L364:L365 -extern int (__vfprintf_392) (__FILE_58 * __restrict ____s_387, const char * __restrict ____format_389, ____gnuc_va_list_82 ____arg_390);// L371:L372 -extern int (__vprintf_399) (const char * __restrict ____format_396, ____gnuc_va_list_82 ____arg_397);// L377 -extern int (__vsprintf_405) (char * __restrict ____s_401, const char * __restrict ____format_402, ____gnuc_va_list_82 ____arg_403);// L379:L380 -extern int (__snprintf_409) (char * __restrict ____s_406, __size_t_1 ____maxlen_407, const char * __restrict ____format_408, ... );// L386:L388 -extern int (__vsnprintf_415) (char * __restrict ____s_410, __size_t_1 ____maxlen_411, const char * __restrict ____format_412, ____gnuc_va_list_82 ____arg_413);// L390:L392 -extern int (__vdprintf_420) (int ____fd_416, const char * __restrict ____fmt_417, ____gnuc_va_list_82 ____arg_418);// L412:L414 -extern int (__dprintf_424) (int ____fd_422, const char * __restrict ____fmt_423, ... );// L415:L416 -extern int (__fscanf_428) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 -extern int (__fscanf_430) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 -extern int (__fscanf_432) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 -extern int (__fscanf_434) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 -extern int (__scanf_437) (const char * __restrict ____format_436, ... );// L431 -extern int (__scanf_438) (const char * __restrict ____format_436, ... );// L431 -extern int (__sscanf_441) (const char * __restrict ____s_439, const char * __restrict ____format_440, ... );// L433:L434 - - - - - - - -extern int (__vfscanf_468) (__FILE_58 * __restrict ____s_463, const char * __restrict ____format_465, ____gnuc_va_list_82 ____arg_466);// L471:L473 -extern int (__vfscanf_472) (__FILE_58 * __restrict ____s_463, const char * __restrict ____format_465, ____gnuc_va_list_82 ____arg_466);// L471:L473 -extern int (__vscanf_479) (const char * __restrict ____format_476, ____gnuc_va_list_82 ____arg_477);// L479:L480 -extern int (__vscanf_481) (const char * __restrict ____format_476, ____gnuc_va_list_82 ____arg_477);// L479:L480 -extern int (__vsscanf_487) (const char * __restrict ____s_483, const char * __restrict ____format_484, ____gnuc_va_list_82 ____arg_485);// L483:L485 - - - - - -extern int (__fgetc_520) (__FILE_58 * (____stream_518));// L531 -extern int (__getc_523) (__FILE_58 * (____stream_521));// L532 -extern int (__getchar_524) (void );// L538 -extern int (__getc_unlocked_527) (__FILE_58 * (____stream_525));// L550 -extern int (__getchar_unlocked_529) (void );// L551 -extern int (__fgetc_unlocked_532) (__FILE_58 * (____stream_530));// L561 -extern int (__fputc_537) (int ____c_534, __FILE_58 * (____stream_535));// L573 -extern int (__fputc_539) (int ____c_534, __FILE_58 * (____stream_535));// L573 -extern int (__putc_544) (int ____c_541, __FILE_58 * (____stream_542));// L574 -extern int (__putchar_546) (int ____c_545);// L580 -extern int (__fputc_unlocked_550) (int ____c_547, __FILE_58 * (____stream_548));// L594 -extern int (__putc_unlocked_555) (int ____c_552, __FILE_58 * (____stream_553));// L602 -extern int (__putchar_unlocked_558) (int ____c_557);// L603 -extern int (__getw_561) (__FILE_58 * (____stream_559));// L610 -extern int (__putw_566) (int ____w_563, __FILE_58 * (____stream_564));// L613 -extern char * ((__fgets_572) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 -extern char * ((__fgets_574) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 -extern char * ((__fgets_576) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 -extern char * ((__fgets_578) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 -extern ____ssize_t_49 (____getdelim_585) (char * (* __restrict ____lineptr_580), __size_t_1 * __restrict ____n_581, int ____delimiter_582, __FILE_58 * __restrict ____stream_583);// L665:L667 -extern ____ssize_t_49 (____getdelim_587) (char * (* __restrict ____lineptr_580), __size_t_1 * __restrict ____n_581, int ____delimiter_582, __FILE_58 * __restrict ____stream_583);// L665:L667 -extern ____ssize_t_49 (__getdelim_594) (char * (* __restrict ____lineptr_589), __size_t_1 * __restrict ____n_590, int ____delimiter_591, __FILE_58 * __restrict ____stream_592);// L668:L670 -extern ____ssize_t_49 (__getdelim_596) (char * (* __restrict ____lineptr_589), __size_t_1 * __restrict ____n_590, int ____delimiter_591, __FILE_58 * __restrict ____stream_592);// L668:L670 -extern ____ssize_t_49 (__getline_602) (char * (* __restrict ____lineptr_598), __size_t_1 * __restrict ____n_599, __FILE_58 * __restrict ____stream_600);// L678:L680 -extern ____ssize_t_49 (__getline_604) (char * (* __restrict ____lineptr_598), __size_t_1 * __restrict ____n_599, __FILE_58 * __restrict ____stream_600);// L678:L680 -extern int (__fputs_609) (const char * __restrict ____s_606, __FILE_58 * __restrict ____stream_607);// L689 -extern int (__fputs_611) (const char * __restrict ____s_606, __FILE_58 * __restrict ____stream_607);// L689 -extern int (__puts_614) (const char * (____s_613));// L695 -extern int (__ungetc_618) (int ____c_615, __FILE_58 * (____stream_616));// L702 -extern int (__fseek_654) (__FILE_58 * (____stream_650), long int ____off_652, int ____whence_653);// L749 -extern int (__fseek_656) (__FILE_58 * (____stream_650), long int ____off_652, int ____whence_653);// L749 -extern long int (__ftell_660) (__FILE_58 * (____stream_658));// L754 -extern long int (__ftell_662) (__FILE_58 * (____stream_658));// L754 -extern void (__rewind_666) (__FILE_58 * (____stream_664));// L759 -extern int (__fseeko_671) (__FILE_58 * (____stream_667), ____off_t_23 ____off_669, int ____whence_670);// L773 -extern int (__fseeko_679) (__FILE_58 * (____stream_675), ____off64_t_24 ____off_677, int ____whence_678);// L781:L783 -extern ____off_t_23 (__ftello_683) (__FILE_58 * (____stream_673));// L778 -extern ____off_t_23 (__ftello_685) (__FILE_58 * (____stream_673));// L778 -extern int (__fgetpos_693) (__FILE_58 * __restrict ____stream_689, __fpos_t_253 * __restrict ____pos_691);// L798 -extern ____off64_t_24 (__ftello_687) (__FILE_58 * (____stream_681));// L784 -extern int (__fgetpos_705) (__FILE_58 * __restrict ____stream_701, __fpos_t_255 * __restrict ____pos_703);// L806:L807 -extern int (__fsetpos_713) (__FILE_58 * (____stream_697), const __fpos_t_253 * (____pos_699));// L803 -extern int (__fsetpos_717) (__FILE_58 * (____stream_709), const __fpos_t_255 * (____pos_711));// L808:L809 -extern void (__clearerr_723) (__FILE_58 * (____stream_721));// L826 -extern int (__feof_726) (__FILE_58 * (____stream_724));// L828 -extern int (__feof_728) (__FILE_58 * (____stream_724));// L828 -extern int (__ferror_732) (__FILE_58 * (____stream_730));// L830 -extern int (__ferror_734) (__FILE_58 * (____stream_730));// L830 -extern void (__clearerr_unlocked_738) (__FILE_58 * (____stream_736));// L835 -extern int (__feof_unlocked_742) (__FILE_58 * (____stream_740));// L836 -extern int (__feof_unlocked_744) (__FILE_58 * (____stream_740));// L836 -extern int (__ferror_unlocked_748) (__FILE_58 * (____stream_746));// L837 -extern int (__ferror_unlocked_750) (__FILE_58 * (____stream_746));// L837 -extern void (__perror_753) (const char * (____s_752));// L846 -extern void (__perror_754) (const char * (____s_752));// L846 -extern int __sys_nerr_755;// L26 - -extern int (__fileno_761) (__FILE_58 * (____stream_757));// L858 -extern int (__fileno_759) (__FILE_58 * (____stream_757));// L858 -extern int (__fileno_unlocked_767) (__FILE_58 * (____stream_763));// L863 -extern int (__fileno_unlocked_765) (__FILE_58 * (____stream_763));// L863 -extern __FILE_58 * ((__popen_771) (const char * (____command_769), const char * (____modes_770)));// L872 -extern __FILE_58 * ((__popen_773) (const char * (____command_769), const char * (____modes_770)));// L872 -extern int (__pclose_777) (__FILE_58 * (____stream_775));// L878 -extern char * ((__ctermid_780) (char * (____s_779)));// L884 -extern void (__flockfile_783) (__FILE_58 * (____stream_781));// L912 -extern int (__ftrylockfile_787) (__FILE_58 * (____stream_785));// L916 -extern int (__ftrylockfile_789) (__FILE_58 * (____stream_785));// L916 -extern void (__funlockfile_793) (__FILE_58 * (____stream_791));// L919 +extern struct ___IO_FILE_99 * (__stdin_291);// L168 +extern struct ___IO_FILE_124 * (__stdin_292);// L168 +extern struct ___IO_FILE_99 * (__stdout_294);// L169 +extern struct ___IO_FILE_124 * (__stdout_295);// L169 +extern struct ___IO_FILE_99 * (__stderr_297);// L170 +extern struct ___IO_FILE_124 * (__stderr_298);// L170 +extern int (__remove_301) (const char * (____filename_300));// L178 +extern int (__rename_304) (const char * (____old_302), const char * (____new_303));// L180 +extern int (__renameat_309) (int ____oldfd_305, const char * (____old_306), int ____newfd_307, const char * (____new_308));// L185:L186 +extern __FILE_59 * ((__tmpfile_310) (void ));// L195 +extern __FILE_59 * ((__tmpfile_316) (void ));// L198 +extern __FILE_59 * ((__tmpfile_314) (void ));// L195 +extern __FILE_59 * ((__tmpfile_312) (void ));// L198 +extern char * ((__tmpnam_319) (char * (____s_318)));// L209 +extern char * ((__tmpnam_320) (char * (____s_318)));// L209 +extern char * ((__tmpnam_r_322) (char * (____s_321)));// L215 +extern char * ((__tmpnam_r_323) (char * (____s_321)));// L215 +extern char * ((__tempnam_326) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 +extern char * ((__tempnam_327) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 +extern int (__fclose_330) (__FILE_59 * (____stream_328));// L237 +extern int (__fclose_332) (__FILE_59 * (____stream_328));// L237 +extern int (__fflush_336) (__FILE_59 * (____stream_334));// L242 +extern int (__fflush_unlocked_340) (__FILE_59 * (____stream_338));// L252 +extern __FILE_59 * ((__fopen_344) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 +extern __FILE_59 * ((__fopen_346) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 +extern __FILE_59 * ((__fopen_354) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 +extern __FILE_59 * ((__fopen_356) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 +extern __FILE_59 * ((__freopen_362) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 +extern __FILE_59 * ((__freopen_368) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 +extern __FILE_59 * ((__freopen_366) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 +extern __FILE_59 * ((__freopen_364) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 +extern __FILE_59 * ((__fdopen_372) (int ____fd_370, const char * (____modes_371)));// L306 +extern __FILE_59 * ((__fdopen_374) (int ____fd_370, const char * (____modes_371)));// L306 +extern __FILE_59 * ((__fmemopen_379) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 +extern __FILE_59 * ((__fmemopen_381) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 +extern __FILE_59 * ((__open_memstream_385) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 +extern __FILE_59 * ((__open_memstream_387) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 +extern void (__setbuf_392) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 +extern void (__setbuf_394) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 +extern int (__setvbuf_401) (__FILE_59 * __restrict ____stream_396, char * __restrict ____buf_398, int ____modes_399, __size_t_1 ____n_400);// L336:L337 +extern void (__setbuffer_407) (__FILE_59 * __restrict ____stream_403, char * __restrict ____buf_405, __size_t_1 ____size_406);// L343:L344 +extern void (__setlinebuf_411) (__FILE_59 * (____stream_409));// L347 +extern int (__fprintf_416) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 +extern int (__fprintf_418) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 +extern int (__printf_421) (const char * __restrict ____format_420, ... );// L362 +extern int (__sprintf_424) (char * __restrict ____s_422, const char * __restrict ____format_423, ... );// L364:L365 +extern int (__vfprintf_430) (__FILE_59 * __restrict ____s_425, const char * __restrict ____format_427, ____gnuc_va_list_86 ____arg_428);// L371:L372 +extern int (__vprintf_437) (const char * __restrict ____format_434, ____gnuc_va_list_86 ____arg_435);// L377 +extern int (__vsprintf_443) (char * __restrict ____s_439, const char * __restrict ____format_440, ____gnuc_va_list_86 ____arg_441);// L379:L380 +extern int (__snprintf_448) (char * __restrict ____s_445, __size_t_1 ____maxlen_446, const char * __restrict ____format_447, ... );// L386:L388 +extern int (__vsnprintf_454) (char * __restrict ____s_449, __size_t_1 ____maxlen_450, const char * __restrict ____format_451, ____gnuc_va_list_86 ____arg_452);// L390:L392 +extern int (__vdprintf_460) (int ____fd_456, const char * __restrict ____fmt_457, ____gnuc_va_list_86 ____arg_458);// L412:L414 +extern int (__dprintf_464) (int ____fd_462, const char * __restrict ____fmt_463, ... );// L415:L416 +extern int (__fscanf_468) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_470) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_472) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_474) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__scanf_477) (const char * __restrict ____format_476, ... );// L431 +extern int (__scanf_478) (const char * __restrict ____format_476, ... );// L431 +extern int (__sscanf_481) (const char * __restrict ____s_479, const char * __restrict ____format_480, ... );// L433:L434 + + + + + + + +extern int (__vfscanf_509) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 +extern int (__vfscanf_513) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 +extern int (__vscanf_520) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 +extern int (__vscanf_522) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 +extern int (__vsscanf_528) (const char * __restrict ____s_524, const char * __restrict ____format_525, ____gnuc_va_list_86 ____arg_526);// L483:L485 + + + + + +extern int (__fgetc_563) (__FILE_59 * (____stream_561));// L531 +extern int (__getc_567) (__FILE_59 * (____stream_565));// L532 +extern int (__getchar_569) (void );// L538 +extern int (__getc_unlocked_572) (__FILE_59 * (____stream_570));// L550 +extern int (__getchar_unlocked_574) (void );// L551 +extern int (__fgetc_unlocked_577) (__FILE_59 * (____stream_575));// L561 +extern int (__fputc_582) (int ____c_579, __FILE_59 * (____stream_580));// L573 +extern int (__fputc_584) (int ____c_579, __FILE_59 * (____stream_580));// L573 +extern int (__putc_589) (int ____c_586, __FILE_59 * (____stream_587));// L574 +extern int (__putchar_592) (int ____c_591);// L580 +extern int (__fputc_unlocked_596) (int ____c_593, __FILE_59 * (____stream_594));// L594 +extern int (__putc_unlocked_601) (int ____c_598, __FILE_59 * (____stream_599));// L602 +extern int (__putchar_unlocked_604) (int ____c_603);// L603 +extern int (__getw_607) (__FILE_59 * (____stream_605));// L610 +extern int (__putw_612) (int ____w_609, __FILE_59 * (____stream_610));// L613 +extern char * ((__fgets_618) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_620) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_622) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_624) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern ____ssize_t_49 (____getdelim_631) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 +extern ____ssize_t_49 (____getdelim_635) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 +extern ____ssize_t_49 (__getdelim_644) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 +extern ____ssize_t_49 (__getdelim_648) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 +extern ____ssize_t_49 (__getline_656) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 +extern ____ssize_t_49 (__getline_660) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 +extern int (__fputs_667) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 +extern int (__fputs_669) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 +extern int (__puts_672) (const char * (____s_671));// L695 +extern int (__ungetc_676) (int ____c_673, __FILE_59 * (____stream_674));// L702 +extern int (__fseek_714) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 +extern int (__fseek_716) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 +extern long int (__ftell_720) (__FILE_59 * (____stream_718));// L754 +extern long int (__ftell_722) (__FILE_59 * (____stream_718));// L754 +extern void (__rewind_726) (__FILE_59 * (____stream_724));// L759 +extern int (__fseeko_733) (__FILE_59 * (____stream_728), ____off_t_23 ____off_730, int ____whence_732);// L773 +extern int (__fseeko_744) (__FILE_59 * (____stream_739), ____off64_t_24 ____off_741, int ____whence_743);// L781:L783 +extern ____off_t_23 (__ftello_758) (__FILE_59 * (____stream_737));// L778 +extern ____off_t_23 (__ftello_750) (__FILE_59 * (____stream_737));// L778 +extern int (__fgetpos_766) (__FILE_59 * __restrict ____stream_762, __fpos_t_287 * __restrict ____pos_764);// L798 +extern ____off64_t_24 (__ftello_754) (__FILE_59 * (____stream_748));// L784 +extern int (__fgetpos_778) (__FILE_59 * __restrict ____stream_774, __fpos_t_289 * __restrict ____pos_776);// L806:L807 +extern int (__fsetpos_786) (__FILE_59 * (____stream_770), const __fpos_t_287 * (____pos_772));// L803 +extern int (__fsetpos_790) (__FILE_59 * (____stream_782), const __fpos_t_289 * (____pos_784));// L808:L809 +extern void (__clearerr_796) (__FILE_59 * (____stream_794));// L826 +extern int (__feof_800) (__FILE_59 * (____stream_798));// L828 +extern int (__feof_802) (__FILE_59 * (____stream_798));// L828 +extern int (__ferror_806) (__FILE_59 * (____stream_804));// L830 +extern int (__ferror_808) (__FILE_59 * (____stream_804));// L830 +extern void (__clearerr_unlocked_812) (__FILE_59 * (____stream_810));// L835 +extern int (__feof_unlocked_816) (__FILE_59 * (____stream_814));// L836 +extern int (__feof_unlocked_818) (__FILE_59 * (____stream_814));// L836 +extern int (__ferror_unlocked_822) (__FILE_59 * (____stream_820));// L837 +extern int (__ferror_unlocked_824) (__FILE_59 * (____stream_820));// L837 +extern void (__perror_827) (const char * (____s_826));// L846 +extern void (__perror_828) (const char * (____s_826));// L846 +extern int __sys_nerr_829;// L26 + +extern int (__fileno_835) (__FILE_59 * (____stream_831));// L858 +extern int (__fileno_833) (__FILE_59 * (____stream_831));// L858 +extern int (__fileno_unlocked_841) (__FILE_59 * (____stream_837));// L863 +extern int (__fileno_unlocked_839) (__FILE_59 * (____stream_837));// L863 +extern __FILE_59 * ((__popen_845) (const char * (____command_843), const char * (____modes_844)));// L872 +extern __FILE_59 * ((__popen_847) (const char * (____command_843), const char * (____modes_844)));// L872 +extern int (__pclose_851) (__FILE_59 * (____stream_849));// L878 +extern char * ((__ctermid_854) (char * (____s_853)));// L884 +extern void (__flockfile_857) (__FILE_59 * (____stream_855));// L912 +extern int (__ftrylockfile_861) (__FILE_59 * (____stream_859));// L916 +extern int (__ftrylockfile_863) (__FILE_59 * (____stream_859));// L916 +extern void (__funlockfile_867) (__FILE_59 * (____stream_865));// L919 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ @@ -1616,39 +2292,93 @@ extern void (__funlockfile_793) (__FILE_58 * (____stream_791));// L919 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____sprintf_chk_825) (char * __restrict ____s_821, int ____flag_822, __size_t_1 ____slen_823, const char * __restrict ____format_824, ... );// L23:L24 -extern int (____vsprintf_chk_832) (char * __restrict ____s_826, int ____flag_827, __size_t_1 ____slen_828, const char * __restrict ____format_829, ____gnuc_va_list_82 ____ap_830);// L25:L27 +extern int (____sprintf_chk_899) (char * __restrict ____s_895, int ____flag_896, __size_t_1 ____slen_897, const char * __restrict ____format_898, ... );// L23:L24 +extern int (____vsprintf_chk_906) (char * __restrict ____s_900, int ____flag_901, __size_t_1 ____slen_902, const char * __restrict ____format_903, ____gnuc_va_list_86 ____ap_904);// L25:L27 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____snprintf_chk_846) (char * __restrict ____s_841, __size_t_1 ____n_842, int ____flag_843, __size_t_1 ____slen_844, const char * __restrict ____format_845, ... );// L52:L54 -extern int (____vsnprintf_chk_854) (char * __restrict ____s_847, __size_t_1 ____n_848, int ____flag_849, __size_t_1 ____slen_850, const char * __restrict ____format_851, ____gnuc_va_list_82 ____ap_852);// L55:L57 +extern int (____snprintf_chk_920) (char * __restrict ____s_915, __size_t_1 ____n_916, int ____flag_917, __size_t_1 ____slen_918, const char * __restrict ____format_919, ... );// L52:L54 +extern int (____vsnprintf_chk_928) (char * __restrict ____s_921, __size_t_1 ____n_922, int ____flag_923, __size_t_1 ____slen_924, const char * __restrict ____format_925, ____gnuc_va_list_86 ____ap_926);// L55:L57 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____fprintf_chk_869) (__FILE_58 * __restrict ____stream_865, int ____flag_867, const char * __restrict ____format_868, ... );// L85:L86 -extern int (____printf_chk_873) (int ____flag_871, const char * __restrict ____format_872, ... );// L87 -extern int (____vfprintf_chk_880) (__FILE_58 * __restrict ____stream_874, int ____flag_876, const char * __restrict ____format_877, ____gnuc_va_list_82 ____ap_878);// L88:L89 -extern int (____vprintf_chk_888) (int ____flag_884, const char * __restrict ____format_885, ____gnuc_va_list_82 ____ap_886);// L90:L91 +extern int (____fprintf_chk_943) (__FILE_59 * __restrict ____stream_939, int ____flag_941, const char * __restrict ____format_942, ... );// L85:L86 +extern int (____printf_chk_947) (int ____flag_945, const char * __restrict ____format_946, ... );// L87 +extern int (____vfprintf_chk_954) (__FILE_59 * __restrict ____stream_948, int ____flag_950, const char * __restrict ____format_951, ____gnuc_va_list_86 ____ap_952);// L88:L89 +extern int (____vprintf_chk_962) (int ____flag_958, const char * __restrict ____format_959, ____gnuc_va_list_86 ____ap_960);// L90:L91 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____dprintf_chk_910) (int ____fd_907, int ____flag_908, const char * __restrict ____fmt_909, ... );// L131:L132 -extern int (____vdprintf_chk_916) (int ____fd_911, int ____flag_912, const char * __restrict ____fmt_913, ____gnuc_va_list_82 ____arg_914);// L133:L135 +extern int (____dprintf_chk_984) (int ____fd_981, int ____flag_982, const char * __restrict ____fmt_983, ... );// L131:L132 +extern int (____vdprintf_chk_990) (int ____fd_985, int ____flag_986, const char * __restrict ____fmt_987, ____gnuc_va_list_86 ____arg_988);// L133:L135 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern char * ((____fgets_chk_930) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 -extern char * ((____fgets_chk_932) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 -extern char * ((____fgets_chk_934) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 -extern char * ((____fgets_alias_940) (char * __restrict ____s_936, int ____n_937, __FILE_58 * __restrict ____stream_938));// L243:L245 -extern char * ((____fgets_chk_warn_947) (char * __restrict ____s_942, __size_t_1 ____size_943, int ____n_944, __FILE_58 * __restrict ____stream_945));// L246:L250 +extern char * ((____fgets_chk_1004) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_chk_1006) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_chk_1008) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_alias_1014) (char * __restrict ____s_1010, int ____n_1011, __FILE_59 * __restrict ____stream_1012));// L243:L245 +extern char * ((____fgets_chk_warn_1021) (char * __restrict ____s_1016, __size_t_1 ____size_1017, int ____n_1018, __FILE_59 * __restrict ____stream_1019));// L246:L250 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ // typedef moved to top of scope // typedef moved to top of scope -static __inline unsigned int (____bswap_32_1026) (unsigned int ____bsx_1025) { +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +static __inline unsigned int (____bswap_32_1158) (unsigned int ____bsx_1157) { -if (__static_condition_default_1027) { +if (__static_condition_default_1159) { { { @@ -1662,9 +2392,9 @@ __static_type_error("invalid type found in return expression"); } } -static __inline ____uint64_t_13 (____bswap_64_1029) (____uint64_t_13 ____bsx_1028) { +static __inline ____uint64_t_13 (____bswap_64_1162) (____uint64_t_13 ____bsx_1160) { -if (__static_condition_default_1027) { +if (__static_condition_default_1164) { { { @@ -1678,40 +2408,138 @@ __static_type_error("invalid type found in return expression"); } } -union __wait_1041 ;// L66 +static __inline ____uint64_t_1112 (____bswap_64_1163) (____uint64_t_1112 ____bsx_1161) { + +if (__static_condition_default_1165) { + +{ +{ + + + +__static_type_error("invalid type found in return expression"); +} +} + + +} +} +union __wait_1177 ;// L66 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern __size_t_1 (____ctype_get_mb_cur_max_1201) (void );// L139 +extern __size_t_1093 (____ctype_get_mb_cur_max_1202) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_1203) (void );// L139 +extern __size_t_1093 (____ctype_get_mb_cur_max_1204) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_1205) (void );// L139 +extern __size_t_1093 (____ctype_get_mb_cur_max_1206) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_1207) (void );// L139 +extern __size_t_1093 (____ctype_get_mb_cur_max_1208) (void );// L139 +extern double (__atof_1210) (const char * (____nptr_1209));// L144:L145 +extern double (__atof_1211) (const char * (____nptr_1209));// L144:L145 +extern int (__atoi_1213) (const char * (____nptr_1212));// L147:L148 +extern int (__atoi_1214) (const char * (____nptr_1212));// L147:L148 +extern long int (__atol_1216) (const char * (____nptr_1215));// L150:L151 +extern long int (__atol_1217) (const char * (____nptr_1215));// L150:L151 +extern long long int (__atoll_1219) (const char * (____nptr_1218));// L157:L158 +extern long long int (__atoll_1220) (const char * (____nptr_1218));// L157:L158 +extern double (__strtod_1223) (const char * __restrict ____nptr_1221, char * (* __restrict ____endptr_1222));// L164:L166 +extern float (__strtof_1226) (const char * __restrict ____nptr_1224, char * (* __restrict ____endptr_1225));// L172:L173 +extern long double (__strtold_1229) (const char * __restrict ____nptr_1227, char * (* __restrict ____endptr_1228));// L175:L177 +extern long int (__strtol_1233) (const char * __restrict ____nptr_1230, char * (* __restrict ____endptr_1231), int ____base_1232);// L183:L185 +extern unsigned long int (__strtoul_1237) (const char * __restrict ____nptr_1234, char * (* __restrict ____endptr_1235), int ____base_1236);// L187:L189 +extern long long int (__strtoq_1241) (const char * __restrict ____nptr_1238, char * (* __restrict ____endptr_1239), int ____base_1240);// L195:L197 +extern unsigned long long int (__strtouq_1245) (const char * __restrict ____nptr_1242, char * (* __restrict ____endptr_1243), int ____base_1244);// L200:L202 +extern long long int (__strtoll_1249) (const char * __restrict ____nptr_1246, char * (* __restrict ____endptr_1247), int ____base_1248);// L209:L211 +extern long long int (__strtoll_1250) (const char * __restrict ____nptr_1246, char * (* __restrict ____endptr_1247), int ____base_1248);// L209:L211 +extern unsigned long long int (__strtoull_1254) (const char * __restrict ____nptr_1251, char * (* __restrict ____endptr_1252), int ____base_1253);// L214:L216 +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +__extension__/* no function due to type errors in the function prototype */ +extern char * ((__l64a_1259) (long int ____n_1258));// L305 +extern char * ((__l64a_1260) (long int ____n_1258));// L305 +extern long int (__a64l_1262) (const char * (____s_1261));// L308:L309 +extern long int (__a64l_1263) (const char * (____s_1261));// L308:L309 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern __size_t_1 (____ctype_get_mb_cur_max_1065) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_1066) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_1067) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_1068) (void );// L139 -extern double (__atof_1070) (const char * (____nptr_1069));// L144:L145 -extern double (__atof_1071) (const char * (____nptr_1069));// L144:L145 -extern int (__atoi_1073) (const char * (____nptr_1072));// L147:L148 -extern int (__atoi_1074) (const char * (____nptr_1072));// L147:L148 -extern long int (__atol_1076) (const char * (____nptr_1075));// L150:L151 -extern long int (__atol_1077) (const char * (____nptr_1075));// L150:L151 -extern long long int (__atoll_1079) (const char * (____nptr_1078));// L157:L158 -extern long long int (__atoll_1080) (const char * (____nptr_1078));// L157:L158 -extern double (__strtod_1083) (const char * __restrict ____nptr_1081, char * (* __restrict ____endptr_1082));// L164:L166 -extern float (__strtof_1086) (const char * __restrict ____nptr_1084, char * (* __restrict ____endptr_1085));// L172:L173 -extern long double (__strtold_1089) (const char * __restrict ____nptr_1087, char * (* __restrict ____endptr_1088));// L175:L177 -extern long int (__strtol_1093) (const char * __restrict ____nptr_1090, char * (* __restrict ____endptr_1091), int ____base_1092);// L183:L185 -extern unsigned long int (__strtoul_1097) (const char * __restrict ____nptr_1094, char * (* __restrict ____endptr_1095), int ____base_1096);// L187:L189 -extern long long int (__strtoq_1101) (const char * __restrict ____nptr_1098, char * (* __restrict ____endptr_1099), int ____base_1100);// L195:L197 -extern unsigned long long int (__strtouq_1105) (const char * __restrict ____nptr_1102, char * (* __restrict ____endptr_1103), int ____base_1104);// L200:L202 -extern long long int (__strtoll_1109) (const char * __restrict ____nptr_1106, char * (* __restrict ____endptr_1107), int ____base_1108);// L209:L211 -extern long long int (__strtoll_1110) (const char * __restrict ____nptr_1106, char * (* __restrict ____endptr_1107), int ____base_1108);// L209:L211 -extern unsigned long long int (__strtoull_1114) (const char * __restrict ____nptr_1111, char * (* __restrict ____endptr_1112), int ____base_1113);// L214:L216 -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -__extension__/* no function due to type errors in the function prototype */ -extern char * ((__l64a_1119) (long int ____n_1118));// L305 -extern char * ((__l64a_1120) (long int ____n_1118));// L305 -extern long int (__a64l_1122) (const char * (____s_1121));// L308:L309 -extern long int (__a64l_1123) (const char * (____s_1121));// L308:L309 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope @@ -1753,9 +2581,48 @@ extern long int (__a64l_1123) (const char * (____s_1121));// L308:L309 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -static __inline unsigned int (____bswap_32_1166) (unsigned int ____bsx_1165) { +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +static __inline unsigned int (____bswap_32_1452) (unsigned int ____bsx_1451) { -if (__static_condition_default_1167) { +if (__static_condition_default_1453) { { { @@ -1769,9 +2636,9 @@ __static_type_error("invalid type found in return expression"); } } -static __inline ____uint64_t_13 (____bswap_64_1169) (____uint64_t_13 ____bsx_1168) { +static __inline ____uint64_t_13 (____bswap_64_1456) (____uint64_t_13 ____bsx_1454) { -if (__static_condition_default_1167) { +if (__static_condition_default_1458) { { { @@ -1785,27 +2652,47 @@ __static_type_error("invalid type found in return expression"); } } +static __inline ____uint64_t_1275 (____bswap_64_1457) (____uint64_t_1275 ____bsx_1455) { + +if (__static_condition_default_1459) { + +{ +{ + + + +__static_type_error("invalid type found in return expression"); +} +} + + +} +} +// typedef moved to top of scope +// typedef moved to top of scope // typedef moved to top of scope +struct __timespec_1466 ;// L120 + +struct __timeval_1476 ;// L30 + // typedef moved to top of scope // typedef moved to top of scope -struct __timespec_1176 ;// L120 -struct __timeval_1179 ;// L30 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern int (__select_1199) (int ____nfds_1192, __fd_set_1189 * __restrict ____readfds_1193, __fd_set_1189 * __restrict ____writefds_1194, __fd_set_1189 * __restrict ____exceptfds_1195, struct __timeval_1179 * __restrict ____timeout_1197);// L106:L109 -extern int (__select_1200) (int ____nfds_1192, __fd_set_1189 * __restrict ____readfds_1193, __fd_set_1189 * __restrict ____writefds_1194, __fd_set_1189 * __restrict ____exceptfds_1195, struct __forward_tag_reference_1196 * __restrict ____timeout_1198);// L106:L109 -extern int (__pselect_1209) (int ____nfds_1201, __fd_set_1189 * __restrict ____readfds_1202, __fd_set_1189 * __restrict ____writefds_1203, __fd_set_1189 * __restrict ____exceptfds_1204, const struct __timespec_1176 * __restrict ____timeout_1206, const ____sigset_t_1174 * __restrict ____sigmask_1208);// L118:L122 -extern int (__pselect_1210) (int ____nfds_1201, __fd_set_1189 * __restrict ____readfds_1202, __fd_set_1189 * __restrict ____writefds_1203, __fd_set_1189 * __restrict ____exceptfds_1204, const struct __forward_tag_reference_1205 * __restrict ____timeout_1207, const ____sigset_t_1174 * __restrict ____sigmask_1208);// L118:L122 -extern long int (____fdelt_chk_1212) (long int ____d_1211);// L24 -extern long int (____fdelt_warn_1214) (long int ____d_1213);// L25:L26 -extern unsigned int (__gnu_dev_major_1216) (unsigned long long int ____dev_1215);// L27:L28 -extern unsigned int (__gnu_dev_major_1217) (unsigned long long int ____dev_1215);// L27:L28 -extern unsigned int (__gnu_dev_minor_1219) (unsigned long long int ____dev_1218);// L30:L31 -extern unsigned long long int (__gnu_dev_makedev_1222) (unsigned int ____major_1220, unsigned int ____minor_1221);// L33:L35 +extern int (__select_1513) (int ____nfds_1502, __fd_set_1499 * __restrict ____readfds_1503, __fd_set_1499 * __restrict ____writefds_1505, __fd_set_1499 * __restrict ____exceptfds_1507, struct __timeval_1476 * __restrict ____timeout_1510);// L106:L109 +extern int (__select_1514) (int ____nfds_1502, __fd_set_1499 * __restrict ____readfds_1503, __fd_set_1499 * __restrict ____writefds_1505, __fd_set_1499 * __restrict ____exceptfds_1507, struct __forward_tag_reference_1509 * __restrict ____timeout_1512);// L106:L109 +extern int (__pselect_1529) (int ____nfds_1517, __fd_set_1499 * __restrict ____readfds_1518, __fd_set_1499 * __restrict ____writefds_1520, __fd_set_1499 * __restrict ____exceptfds_1522, const struct __timespec_1466 * __restrict ____timeout_1525, const ____sigset_t_1464 * __restrict ____sigmask_1528);// L118:L122 +extern int (__pselect_1530) (int ____nfds_1517, __fd_set_1499 * __restrict ____readfds_1518, __fd_set_1499 * __restrict ____writefds_1520, __fd_set_1499 * __restrict ____exceptfds_1522, const struct __forward_tag_reference_1524 * __restrict ____timeout_1527, const ____sigset_t_1464 * __restrict ____sigmask_1528);// L118:L122 +extern long int (____fdelt_chk_1534) (long int ____d_1533);// L24 +extern long int (____fdelt_warn_1536) (long int ____d_1535);// L25:L26 +extern unsigned int (__gnu_dev_major_1538) (unsigned long long int ____dev_1537);// L27:L28 +extern unsigned int (__gnu_dev_major_1539) (unsigned long long int ____dev_1537);// L27:L28 +extern unsigned int (__gnu_dev_minor_1541) (unsigned long long int ____dev_1540);// L30:L31 +extern unsigned long long int (__gnu_dev_makedev_1544) (unsigned int ____major_1542, unsigned int ____minor_1543);// L33:L35 __extension__/* no function due to type errors in the function prototype */ __extension__/* no function due to type errors in the function prototype */ __extension__/* no function due to type errors in the function prototype */ @@ -1817,156 +2704,211 @@ __extension__/* no function due to type errors in the function prototype */ // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -union __pthread_attr_t_1235 ;// L63 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern int (__rand_1266) (void );// L374 -extern void (__srand_1268) (unsigned int ____seed_1267);// L376 -extern int (__rand_r_1270) (unsigned int * (____seed_1269));// L381 -extern double (__drand48_1271) (void );// L389 -extern double (__erand48_1273) (unsigned short int ____xsubi_1272[3]);// L390 -extern long int (__lrand48_1274) (void );// L393 -extern long int (__nrand48_1276) (unsigned short int ____xsubi_1275[3]);// L394:L395 -extern long int (__mrand48_1277) (void );// L398 -extern long int (__jrand48_1279) (unsigned short int ____xsubi_1278[3]);// L399:L400 -extern void (__srand48_1281) (long int ____seedval_1280);// L403 -extern unsigned short int * ((__seed48_1283) (unsigned short int ____seed16v_1282[3]));// L404:L405 -extern void (__lcong48_1285) (unsigned short int ____param_1284[7]);// L406 -extern void * ((__malloc_1287) (__size_t_1 ____size_1286));// L466 -extern void * ((__malloc_1288) (__size_t_1 ____size_1286));// L466 -extern void * ((__calloc_1291) (__size_t_1 ____nmemb_1289, __size_t_1 ____size_1290));// L468:L469 -extern void * ((__calloc_1292) (__size_t_1 ____nmemb_1289, __size_t_1 ____size_1290));// L468:L469 -extern void * ((__realloc_1295) (void * (____ptr_1293), __size_t_1 ____size_1294));// L480:L481 -extern void * ((__realloc_1296) (void * (____ptr_1293), __size_t_1 ____size_1294));// L480:L481 -extern void (__free_1298) (void * (____ptr_1297));// L483 -extern void (__cfree_1300) (void * (____ptr_1299));// L488 -extern void * ((__alloca_1302) (__size_t_1 ____size_1301));// L32 -extern void * ((__valloc_1304) (__size_t_1 ____size_1303));// L498 -extern void * ((__valloc_1305) (__size_t_1 ____size_1303));// L498 -extern int (__posix_memalign_1309) (void * (* (____memptr_1306)), __size_t_1 ____alignment_1307, __size_t_1 ____size_1308);// L503:L504 -extern int (__posix_memalign_1310) (void * (* (____memptr_1306)), __size_t_1 ____alignment_1307, __size_t_1 ____size_1308);// L503:L504 -extern void * ((__aligned_alloc_1313) (__size_t_1 ____alignment_1311, __size_t_1 ____size_1312));// L509:L510 -extern void * ((__aligned_alloc_1314) (__size_t_1 ____alignment_1311, __size_t_1 ____size_1312));// L509:L510 -extern void * ((__aligned_alloc_1315) (__size_t_1 ____alignment_1311, __size_t_1 ____size_1312));// L509:L510 -extern void * ((__aligned_alloc_1316) (__size_t_1 ____alignment_1311, __size_t_1 ____size_1312));// L509:L510 -extern void (__abort_1317) (void );// L515 -extern int (__atexit_1319) (void (* (____func_1318)) (void ));// L519 -extern int (__at_quick_exit_1321) (void (* (____func_1320)) (void ));// L527 -extern int (__on_exit_1326) (void (* (____func_1324)) (int ____status_1322, void * (____arg_1323)), void * (____arg_1325));// L535:L536 -extern void (__exit_1328) (int ____status_1327);// L543 -extern void (__exit_1329) (int ____status_1327);// L543 -extern void (__quick_exit_1331) (int ____status_1330);// L549 -extern void (___Exit_1333) (int ____status_1332);// L557 -extern char * ((__getenv_1335) (const char * (____name_1334)));// L564 -extern char * ((__getenv_1336) (const char * (____name_1334)));// L564 -extern int (__putenv_1338) (char * (____string_1337));// L578 -extern int (__setenv_1342) (const char * (____name_1339), const char * (____value_1340), int ____replace_1341);// L584:L585 -extern int (__unsetenv_1344) (const char * (____name_1343));// L588 -extern int (__clearenv_1345) (void );// L595 -extern char * ((__mktemp_1347) (char * (____template_1346)));// L606 -extern int (__mkstemp_1350) (char * (____template_1348));// L619 -extern int (__mkstemp_1352) (char * (____template_1348));// L619 -extern int (__mkstemp_1351) (char * (____template_1349));// L622:L623 -extern int (__mkstemp_1353) (char * (____template_1349));// L622:L623 -extern int (__mkstemps_1358) (char * (____template_1354), int ____suffixlen_1355);// L641 -extern int (__mkstemps_1359) (char * (____template_1356), int ____suffixlen_1357);// L644:L645 -extern int (__mkstemps_1360) (char * (____template_1354), int ____suffixlen_1355);// L641 -extern int (__mkstemps_1361) (char * (____template_1356), int ____suffixlen_1357);// L644:L645 -extern char * ((__mkdtemp_1363) (char * (____template_1362)));// L662 -extern char * ((__mkdtemp_1364) (char * (____template_1362)));// L662 -extern int (__system_1366) (const char * (____command_1365));// L716 -extern int (__system_1367) (const char * (____command_1365));// L716 -extern int (__system_1368) (const char * (____command_1365));// L716 -extern int (__system_1369) (const char * (____command_1365));// L716 -extern char * ((__realpath_1372) (const char * __restrict ____name_1370, char * __restrict ____resolved_1371));// L733:L734 -extern char * ((__realpath_1373) (const char * __restrict ____name_1370, char * __restrict ____resolved_1371));// L733:L734 -// typedef moved to top of scope -extern void * ((__bsearch_1382) (const void * (____key_1375), const void * (____base_1376), __size_t_1 ____nmemb_1377, __size_t_1 ____size_1378, ____compar_fn_t_1374 ____compar_1379));// L754:L756 -extern void * ((__bsearch_1384) (const void * (____key_1375), const void * (____base_1376), __size_t_1 ____nmemb_1377, __size_t_1 ____size_1378, ____compar_fn_t_1374 ____compar_1379));// L754:L756 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +union __pthread_attr_t_1578 ;// L63 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern int (__rand_1609) (void );// L374 +extern void (__srand_1611) (unsigned int ____seed_1610);// L376 +extern int (__rand_r_1613) (unsigned int * (____seed_1612));// L381 +extern double (__drand48_1614) (void );// L389 +extern double (__erand48_1616) (unsigned short int ____xsubi_1615[3]);// L390 +extern long int (__lrand48_1617) (void );// L393 +extern long int (__nrand48_1619) (unsigned short int ____xsubi_1618[3]);// L394:L395 +extern long int (__mrand48_1620) (void );// L398 +extern long int (__jrand48_1622) (unsigned short int ____xsubi_1621[3]);// L399:L400 +extern void (__srand48_1624) (long int ____seedval_1623);// L403 +extern unsigned short int * ((__seed48_1626) (unsigned short int ____seed16v_1625[3]));// L404:L405 +extern void (__lcong48_1628) (unsigned short int ____param_1627[7]);// L406 +extern void * ((__malloc_1631) (__size_t_1 ____size_1629));// L466 +extern void * ((__malloc_1632) (__size_t_1093 ____size_1630));// L466 +extern void * ((__malloc_1633) (__size_t_1 ____size_1629));// L466 +extern void * ((__malloc_1634) (__size_t_1093 ____size_1630));// L466 +extern void * ((__calloc_1639) (__size_t_1 ____nmemb_1635, __size_t_1 ____size_1637));// L468:L469 +extern void * ((__calloc_1640) (__size_t_1093 ____nmemb_1636, __size_t_1093 ____size_1638));// L468:L469 +extern void * ((__calloc_1641) (__size_t_1 ____nmemb_1635, __size_t_1 ____size_1637));// L468:L469 +extern void * ((__calloc_1642) (__size_t_1093 ____nmemb_1636, __size_t_1093 ____size_1638));// L468:L469 +extern void * ((__realloc_1646) (void * (____ptr_1643), __size_t_1 ____size_1644));// L480:L481 +extern void * ((__realloc_1647) (void * (____ptr_1643), __size_t_1093 ____size_1645));// L480:L481 +extern void (__free_1649) (void * (____ptr_1648));// L483 +extern void (__cfree_1651) (void * (____ptr_1650));// L488 +extern void * ((__alloca_1654) (__size_t_1 ____size_1652));// L32 +extern void * ((__alloca_1655) (__size_t_1093 ____size_1653));// L32 +extern void * ((__valloc_1658) (__size_t_1 ____size_1656));// L498 +extern void * ((__valloc_1659) (__size_t_1093 ____size_1657));// L498 +extern void * ((__valloc_1660) (__size_t_1 ____size_1656));// L498 +extern void * ((__valloc_1661) (__size_t_1093 ____size_1657));// L498 +extern int (__posix_memalign_1667) (void * (* (____memptr_1662)), __size_t_1 ____alignment_1663, __size_t_1 ____size_1665);// L503:L504 +extern int (__posix_memalign_1668) (void * (* (____memptr_1662)), __size_t_1093 ____alignment_1664, __size_t_1093 ____size_1666);// L503:L504 +extern int (__posix_memalign_1669) (void * (* (____memptr_1662)), __size_t_1 ____alignment_1663, __size_t_1 ____size_1665);// L503:L504 +extern int (__posix_memalign_1670) (void * (* (____memptr_1662)), __size_t_1093 ____alignment_1664, __size_t_1093 ____size_1666);// L503:L504 +extern void * ((__aligned_alloc_1675) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 +extern void * ((__aligned_alloc_1676) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 +extern void * ((__aligned_alloc_1677) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 +extern void * ((__aligned_alloc_1678) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 +extern void * ((__aligned_alloc_1679) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 +extern void * ((__aligned_alloc_1680) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 +extern void * ((__aligned_alloc_1681) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 +extern void * ((__aligned_alloc_1682) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 +extern void (__abort_1683) (void );// L515 +extern int (__atexit_1685) (void (* (____func_1684)) (void ));// L519 +extern int (__at_quick_exit_1687) (void (* (____func_1686)) (void ));// L527 +extern int (__on_exit_1692) (void (* (____func_1690)) (int ____status_1688, void * (____arg_1689)), void * (____arg_1691));// L535:L536 +extern void (__exit_1694) (int ____status_1693);// L543 +extern void (__exit_1695) (int ____status_1693);// L543 +extern void (__quick_exit_1697) (int ____status_1696);// L549 +extern void (___Exit_1699) (int ____status_1698);// L557 +extern char * ((__getenv_1701) (const char * (____name_1700)));// L564 +extern char * ((__getenv_1702) (const char * (____name_1700)));// L564 +extern int (__putenv_1704) (char * (____string_1703));// L578 +extern int (__setenv_1708) (const char * (____name_1705), const char * (____value_1706), int ____replace_1707);// L584:L585 +extern int (__unsetenv_1710) (const char * (____name_1709));// L588 +extern int (__clearenv_1711) (void );// L595 +extern char * ((__mktemp_1713) (char * (____template_1712)));// L606 +extern int (__mkstemp_1716) (char * (____template_1714));// L619 +extern int (__mkstemp_1718) (char * (____template_1714));// L619 +extern int (__mkstemp_1717) (char * (____template_1715));// L622:L623 +extern int (__mkstemp_1719) (char * (____template_1715));// L622:L623 +extern int (__mkstemps_1724) (char * (____template_1720), int ____suffixlen_1721);// L641 +extern int (__mkstemps_1725) (char * (____template_1722), int ____suffixlen_1723);// L644:L645 +extern int (__mkstemps_1726) (char * (____template_1720), int ____suffixlen_1721);// L641 +extern int (__mkstemps_1727) (char * (____template_1722), int ____suffixlen_1723);// L644:L645 +extern char * ((__mkdtemp_1729) (char * (____template_1728)));// L662 +extern char * ((__mkdtemp_1730) (char * (____template_1728)));// L662 +extern int (__system_1732) (const char * (____command_1731));// L716 +extern int (__system_1733) (const char * (____command_1731));// L716 +extern int (__system_1734) (const char * (____command_1731));// L716 +extern int (__system_1735) (const char * (____command_1731));// L716 +extern char * ((__realpath_1738) (const char * __restrict ____name_1736, char * __restrict ____resolved_1737));// L733:L734 +extern char * ((__realpath_1739) (const char * __restrict ____name_1736, char * __restrict ____resolved_1737));// L733:L734 +// typedef moved to top of scope +extern void * ((__bsearch_1751) (const void * (____key_1741), const void * (____base_1742), __size_t_1 ____nmemb_1743, __size_t_1 ____size_1745, ____compar_fn_t_1740 ____compar_1747));// L754:L756 +extern void * ((__bsearch_1752) (const void * (____key_1741), const void * (____base_1742), __size_t_1093 ____nmemb_1744, __size_t_1093 ____size_1746, ____compar_fn_t_1740 ____compar_1747));// L754:L756 +extern void * ((__bsearch_1755) (const void * (____key_1741), const void * (____base_1742), __size_t_1 ____nmemb_1743, __size_t_1 ____size_1745, ____compar_fn_t_1740 ____compar_1747));// L754:L756 +extern void * ((__bsearch_1756) (const void * (____key_1741), const void * (____base_1742), __size_t_1093 ____nmemb_1744, __size_t_1093 ____size_1746, ____compar_fn_t_1740 ____compar_1747));// L754:L756 /* no function due to type errors in the function prototype */ -extern void (__qsort_1403) (void * (____base_1398), __size_t_1 ____nmemb_1399, __size_t_1 ____size_1400, ____compar_fn_t_1374 ____compar_1401);// L764:L765 -extern void (__qsort_1405) (void * (____base_1398), __size_t_1 ____nmemb_1399, __size_t_1 ____size_1400, ____compar_fn_t_1374 ____compar_1401);// L764:L765 -extern int (__abs_1408) (int ____x_1407);// L774 -extern int (__abs_1409) (int ____x_1407);// L774 -extern long int (__labs_1411) (long int ____x_1410);// L775 -extern long int (__labs_1412) (long int ____x_1410);// L775 -extern long long int (__llabs_1414) (long long int ____x_1413);// L779:L780 -extern long long int (__llabs_1415) (long long int ____x_1413);// L779:L780 -extern __div_t_1054 (__div_1418) (int ____numer_1416, int ____denom_1417);// L788:L789 -extern __div_t_1054 (__div_1419) (int ____numer_1416, int ____denom_1417);// L788:L789 -extern __ldiv_t_1059 (__ldiv_1422) (long int ____numer_1420, long int ____denom_1421);// L790:L791 -extern __ldiv_t_1059 (__ldiv_1424) (long int ____numer_1420, long int ____denom_1421);// L790:L791 -extern __lldiv_t_1064 (__lldiv_1428) (long long int ____numer_1426, long long int ____denom_1427);// L796:L798 -extern __lldiv_t_1064 (__lldiv_1430) (long long int ____numer_1426, long long int ____denom_1427);// L796:L798 -extern char * ((__ecvt_1436) (double ____value_1432, int ____ndigit_1433, int * __restrict ____decpt_1434, int * __restrict ____sign_1435));// L811:L812 -extern char * ((__ecvt_1437) (double ____value_1432, int ____ndigit_1433, int * __restrict ____decpt_1434, int * __restrict ____sign_1435));// L811:L812 -extern char * ((__fcvt_1442) (double ____value_1438, int ____ndigit_1439, int * __restrict ____decpt_1440, int * __restrict ____sign_1441));// L817:L818 -extern char * ((__fcvt_1443) (double ____value_1438, int ____ndigit_1439, int * __restrict ____decpt_1440, int * __restrict ____sign_1441));// L817:L818 -extern char * ((__gcvt_1447) (double ____value_1444, int ____ndigit_1445, char * (____buf_1446)));// L823:L824 -extern char * ((__gcvt_1448) (double ____value_1444, int ____ndigit_1445, char * (____buf_1446)));// L823:L824 -extern char * ((__qecvt_1453) (long double ____value_1449, int ____ndigit_1450, int * __restrict ____decpt_1451, int * __restrict ____sign_1452));// L829:L831 -extern char * ((__qecvt_1454) (long double ____value_1449, int ____ndigit_1450, int * __restrict ____decpt_1451, int * __restrict ____sign_1452));// L829:L831 -extern char * ((__qfcvt_1459) (long double ____value_1455, int ____ndigit_1456, int * __restrict ____decpt_1457, int * __restrict ____sign_1458));// L832:L834 -extern char * ((__qfcvt_1460) (long double ____value_1455, int ____ndigit_1456, int * __restrict ____decpt_1457, int * __restrict ____sign_1458));// L832:L834 -extern char * ((__qgcvt_1464) (long double ____value_1461, int ____ndigit_1462, char * (____buf_1463)));// L835:L836 -extern char * ((__qgcvt_1465) (long double ____value_1461, int ____ndigit_1462, char * (____buf_1463)));// L835:L836 -extern int (__ecvt_r_1472) (double ____value_1466, int ____ndigit_1467, int * __restrict ____decpt_1468, int * __restrict ____sign_1469, char * __restrict ____buf_1470, __size_t_1 ____len_1471);// L841:L843 -extern int (__fcvt_r_1479) (double ____value_1473, int ____ndigit_1474, int * __restrict ____decpt_1475, int * __restrict ____sign_1476, char * __restrict ____buf_1477, __size_t_1 ____len_1478);// L844:L846 -extern int (__qecvt_r_1486) (long double ____value_1480, int ____ndigit_1481, int * __restrict ____decpt_1482, int * __restrict ____sign_1483, char * __restrict ____buf_1484, __size_t_1 ____len_1485);// L848:L851 -extern int (__qfcvt_r_1493) (long double ____value_1487, int ____ndigit_1488, int * __restrict ____decpt_1489, int * __restrict ____sign_1490, char * __restrict ____buf_1491, __size_t_1 ____len_1492);// L852:L855 -extern int (__mblen_1496) (const char * (____s_1494), __size_t_1 ____n_1495);// L862 -extern int (__mblen_1497) (const char * (____s_1494), __size_t_1 ____n_1495);// L862 -extern int (__mbtowc_1501) (__wchar_t_1018 * __restrict ____pwc_1498, const char * __restrict ____s_1499, __size_t_1 ____n_1500);// L865:L866 -extern int (__wctomb_1504) (char * (____s_1502), __wchar_t_1018 ____wchar_1503);// L869 -extern __size_t_1 (__mbstowcs_1508) (__wchar_t_1018 * __restrict ____pwcs_1505, const char * __restrict ____s_1506, __size_t_1 ____n_1507);// L873:L874 -extern __size_t_1 (__wcstombs_1512) (char * __restrict ____s_1509, const __wchar_t_1018 * __restrict ____pwcs_1510, __size_t_1 ____n_1511);// L876:L878 -extern int (__rpmatch_1515) (const char * (____response_1513));// L887 -extern int (__rpmatch_1514) (const char * (____response_1513));// L887 -extern int (__getsubopt_1520) (char * (* __restrict ____optionp_1516), char * const * __restrict ____tokens_1517, char * (* __restrict ____valuep_1518));// L898:L901 -extern int (__getsubopt_1519) (char * (* __restrict ____optionp_1516), char * const * __restrict ____tokens_1517, char * (* __restrict ____valuep_1518));// L898:L901 -extern int (__getloadavg_1523) (double ____loadavg_1521[], int ____nelem_1522);// L950:L951 +extern void (__qsort_1784) (void * (____base_1777), __size_t_1 ____nmemb_1778, __size_t_1 ____size_1780, ____compar_fn_t_1740 ____compar_1782);// L764:L765 +extern void (__qsort_1786) (void * (____base_1777), __size_t_1093 ____nmemb_1779, __size_t_1093 ____size_1781, ____compar_fn_t_1740 ____compar_1782);// L764:L765 +extern void (__qsort_1788) (void * (____base_1777), __size_t_1 ____nmemb_1778, __size_t_1 ____size_1780, ____compar_fn_t_1740 ____compar_1782);// L764:L765 +extern void (__qsort_1790) (void * (____base_1777), __size_t_1093 ____nmemb_1779, __size_t_1093 ____size_1781, ____compar_fn_t_1740 ____compar_1782);// L764:L765 +extern int (__abs_1793) (int ____x_1792);// L774 +extern int (__abs_1794) (int ____x_1792);// L774 +extern long int (__labs_1796) (long int ____x_1795);// L775 +extern long int (__labs_1797) (long int ____x_1795);// L775 +extern long long int (__llabs_1799) (long long int ____x_1798);// L779:L780 +extern long long int (__llabs_1800) (long long int ____x_1798);// L779:L780 +extern __div_t_1190 (__div_1803) (int ____numer_1801, int ____denom_1802);// L788:L789 +extern __div_t_1190 (__div_1804) (int ____numer_1801, int ____denom_1802);// L788:L789 +extern __ldiv_t_1195 (__ldiv_1807) (long int ____numer_1805, long int ____denom_1806);// L790:L791 +extern __ldiv_t_1195 (__ldiv_1809) (long int ____numer_1805, long int ____denom_1806);// L790:L791 +extern __lldiv_t_1200 (__lldiv_1813) (long long int ____numer_1811, long long int ____denom_1812);// L796:L798 +extern __lldiv_t_1200 (__lldiv_1815) (long long int ____numer_1811, long long int ____denom_1812);// L796:L798 +extern char * ((__ecvt_1821) (double ____value_1817, int ____ndigit_1818, int * __restrict ____decpt_1819, int * __restrict ____sign_1820));// L811:L812 +extern char * ((__ecvt_1822) (double ____value_1817, int ____ndigit_1818, int * __restrict ____decpt_1819, int * __restrict ____sign_1820));// L811:L812 +extern char * ((__fcvt_1827) (double ____value_1823, int ____ndigit_1824, int * __restrict ____decpt_1825, int * __restrict ____sign_1826));// L817:L818 +extern char * ((__fcvt_1828) (double ____value_1823, int ____ndigit_1824, int * __restrict ____decpt_1825, int * __restrict ____sign_1826));// L817:L818 +extern char * ((__gcvt_1832) (double ____value_1829, int ____ndigit_1830, char * (____buf_1831)));// L823:L824 +extern char * ((__gcvt_1833) (double ____value_1829, int ____ndigit_1830, char * (____buf_1831)));// L823:L824 +extern char * ((__qecvt_1838) (long double ____value_1834, int ____ndigit_1835, int * __restrict ____decpt_1836, int * __restrict ____sign_1837));// L829:L831 +extern char * ((__qecvt_1839) (long double ____value_1834, int ____ndigit_1835, int * __restrict ____decpt_1836, int * __restrict ____sign_1837));// L829:L831 +extern char * ((__qfcvt_1844) (long double ____value_1840, int ____ndigit_1841, int * __restrict ____decpt_1842, int * __restrict ____sign_1843));// L832:L834 +extern char * ((__qfcvt_1845) (long double ____value_1840, int ____ndigit_1841, int * __restrict ____decpt_1842, int * __restrict ____sign_1843));// L832:L834 +extern char * ((__qgcvt_1849) (long double ____value_1846, int ____ndigit_1847, char * (____buf_1848)));// L835:L836 +extern char * ((__qgcvt_1850) (long double ____value_1846, int ____ndigit_1847, char * (____buf_1848)));// L835:L836 +extern int (__ecvt_r_1858) (double ____value_1851, int ____ndigit_1852, int * __restrict ____decpt_1853, int * __restrict ____sign_1854, char * __restrict ____buf_1855, __size_t_1 ____len_1856);// L841:L843 +extern int (__ecvt_r_1859) (double ____value_1851, int ____ndigit_1852, int * __restrict ____decpt_1853, int * __restrict ____sign_1854, char * __restrict ____buf_1855, __size_t_1093 ____len_1857);// L841:L843 +extern int (__fcvt_r_1867) (double ____value_1860, int ____ndigit_1861, int * __restrict ____decpt_1862, int * __restrict ____sign_1863, char * __restrict ____buf_1864, __size_t_1 ____len_1865);// L844:L846 +extern int (__fcvt_r_1868) (double ____value_1860, int ____ndigit_1861, int * __restrict ____decpt_1862, int * __restrict ____sign_1863, char * __restrict ____buf_1864, __size_t_1093 ____len_1866);// L844:L846 +extern int (__qecvt_r_1876) (long double ____value_1869, int ____ndigit_1870, int * __restrict ____decpt_1871, int * __restrict ____sign_1872, char * __restrict ____buf_1873, __size_t_1 ____len_1874);// L848:L851 +extern int (__qecvt_r_1877) (long double ____value_1869, int ____ndigit_1870, int * __restrict ____decpt_1871, int * __restrict ____sign_1872, char * __restrict ____buf_1873, __size_t_1093 ____len_1875);// L848:L851 +extern int (__qfcvt_r_1885) (long double ____value_1878, int ____ndigit_1879, int * __restrict ____decpt_1880, int * __restrict ____sign_1881, char * __restrict ____buf_1882, __size_t_1 ____len_1883);// L852:L855 +extern int (__qfcvt_r_1886) (long double ____value_1878, int ____ndigit_1879, int * __restrict ____decpt_1880, int * __restrict ____sign_1881, char * __restrict ____buf_1882, __size_t_1093 ____len_1884);// L852:L855 +extern int (__mblen_1890) (const char * (____s_1887), __size_t_1 ____n_1888);// L862 +extern int (__mblen_1891) (const char * (____s_1887), __size_t_1093 ____n_1889);// L862 +extern int (__mblen_1892) (const char * (____s_1887), __size_t_1 ____n_1888);// L862 +extern int (__mblen_1893) (const char * (____s_1887), __size_t_1093 ____n_1889);// L862 +extern int (__mbtowc_1898) (__wchar_t_1094 * __restrict ____pwc_1894, const char * __restrict ____s_1895, __size_t_1 ____n_1896);// L865:L866 +extern int (__mbtowc_1899) (__wchar_t_1094 * __restrict ____pwc_1894, const char * __restrict ____s_1895, __size_t_1093 ____n_1897);// L865:L866 +extern int (__wctomb_1902) (char * (____s_1900), __wchar_t_1094 ____wchar_1901);// L869 +extern __size_t_1 (__mbstowcs_1907) (__wchar_t_1094 * __restrict ____pwcs_1903, const char * __restrict ____s_1904, __size_t_1 ____n_1905);// L873:L874 +extern __size_t_1093 (__mbstowcs_1908) (__wchar_t_1094 * __restrict ____pwcs_1903, const char * __restrict ____s_1904, __size_t_1093 ____n_1906);// L873:L874 +extern __size_t_1 (__wcstombs_1913) (char * __restrict ____s_1909, const __wchar_t_1094 * __restrict ____pwcs_1910, __size_t_1 ____n_1911);// L876:L878 +extern __size_t_1093 (__wcstombs_1914) (char * __restrict ____s_1909, const __wchar_t_1094 * __restrict ____pwcs_1910, __size_t_1093 ____n_1912);// L876:L878 +extern int (__rpmatch_1917) (const char * (____response_1915));// L887 +extern int (__rpmatch_1916) (const char * (____response_1915));// L887 +extern int (__getsubopt_1922) (char * (* __restrict ____optionp_1918), char * const * __restrict ____tokens_1919, char * (* __restrict ____valuep_1920));// L898:L901 +extern int (__getsubopt_1921) (char * (* __restrict ____optionp_1918), char * const * __restrict ____tokens_1919, char * (* __restrict ____valuep_1920));// L898:L901 +extern int (__getloadavg_1925) (double ____loadavg_1923[], int ____nelem_1924);// L950:L951 /* no function due to type errors in the function prototype */ -extern char * ((____realpath_chk_1528) (const char * __restrict ____name_1525, char * __restrict ____resolved_1526, __size_t_1 ____resolvedlen_1527));// L23:L25 -extern char * ((____realpath_alias_1531) (const char * __restrict ____name_1529, char * __restrict ____resolved_1530));// L26:L28 -extern char * ((____realpath_chk_warn_1535) (const char * __restrict ____name_1532, char * __restrict ____resolved_1533, __size_t_1 ____resolvedlen_1534));// L29:L34 +extern char * ((____realpath_chk_1931) (const char * __restrict ____name_1927, char * __restrict ____resolved_1928, __size_t_1 ____resolvedlen_1929));// L23:L25 +extern char * ((____realpath_chk_1932) (const char * __restrict ____name_1927, char * __restrict ____resolved_1928, __size_t_1093 ____resolvedlen_1930));// L23:L25 +extern char * ((____realpath_alias_1935) (const char * __restrict ____name_1933, char * __restrict ____resolved_1934));// L26:L28 +extern char * ((____realpath_chk_warn_1940) (const char * __restrict ____name_1936, char * __restrict ____resolved_1937, __size_t_1 ____resolvedlen_1938));// L29:L34 +extern char * ((____realpath_chk_warn_1941) (const char * __restrict ____name_1936, char * __restrict ____resolved_1937, __size_t_1093 ____resolvedlen_1939));// L29:L34 /* no function due to type errors in the function prototype */ -extern int (____ptsname_r_chk_1543) (int ____fd_1539, char * (____buf_1540), __size_t_1 ____buflen_1541, __size_t_1 ____nreal_1542);// L52:L53 -extern int (____ptsname_r_alias_1547) (int ____fd_1544, char * (____buf_1545), __size_t_1 ____buflen_1546);// L54:L56 -extern int (____ptsname_r_chk_warn_1552) (int ____fd_1548, char * (____buf_1549), __size_t_1 ____buflen_1550, __size_t_1 ____nreal_1551);// L57:L61 +extern int (____ptsname_r_chk_1951) (int ____fd_1945, char * (____buf_1946), __size_t_1 ____buflen_1947, __size_t_1 ____nreal_1949);// L52:L53 +extern int (____ptsname_r_chk_1952) (int ____fd_1945, char * (____buf_1946), __size_t_1093 ____buflen_1948, __size_t_1093 ____nreal_1950);// L52:L53 +extern int (____ptsname_r_alias_1957) (int ____fd_1953, char * (____buf_1954), __size_t_1 ____buflen_1955);// L54:L56 +extern int (____ptsname_r_alias_1958) (int ____fd_1953, char * (____buf_1954), __size_t_1093 ____buflen_1956);// L54:L56 +extern int (____ptsname_r_chk_warn_1965) (int ____fd_1959, char * (____buf_1960), __size_t_1 ____buflen_1961, __size_t_1 ____nreal_1963);// L57:L61 +extern int (____ptsname_r_chk_warn_1966) (int ____fd_1959, char * (____buf_1960), __size_t_1093 ____buflen_1962, __size_t_1093 ____nreal_1964);// L57:L61 /* no function due to type errors in the function prototype */ -extern int (____wctomb_chk_1560) (char * (____s_1557), __wchar_t_1018 ____wchar_1558, __size_t_1 ____buflen_1559);// L77:L78 -extern int (____wctomb_alias_1563) (char * (____s_1561), __wchar_t_1018 ____wchar_1562);// L79:L80 +extern int (____wctomb_chk_1977) (char * (____s_1973), __wchar_t_1094 ____wchar_1974, __size_t_1 ____buflen_1975);// L77:L78 +extern int (____wctomb_chk_1978) (char * (____s_1973), __wchar_t_1094 ____wchar_1974, __size_t_1093 ____buflen_1976);// L77:L78 +extern int (____wctomb_alias_1981) (char * (____s_1979), __wchar_t_1094 ____wchar_1980);// L79:L80 /* no function due to type errors in the function prototype */ -extern __size_t_1 (____mbstowcs_chk_1570) (__wchar_t_1018 * __restrict ____dst_1566, const char * __restrict ____src_1567, __size_t_1 ____len_1568, __size_t_1 ____dstlen_1569);// L98:L100 -extern __size_t_1 (____mbstowcs_alias_1574) (__wchar_t_1018 * __restrict ____dst_1571, const char * __restrict ____src_1572, __size_t_1 ____len_1573);// L101:L104 -extern __size_t_1 (____mbstowcs_chk_warn_1579) (__wchar_t_1018 * __restrict ____dst_1575, const char * __restrict ____src_1576, __size_t_1 ____len_1577, __size_t_1 ____dstlen_1578);// L105:L110 +extern __size_t_1 (____mbstowcs_chk_1990) (__wchar_t_1094 * __restrict ____dst_1984, const char * __restrict ____src_1985, __size_t_1 ____len_1986, __size_t_1 ____dstlen_1988);// L98:L100 +extern __size_t_1093 (____mbstowcs_chk_1991) (__wchar_t_1094 * __restrict ____dst_1984, const char * __restrict ____src_1985, __size_t_1093 ____len_1987, __size_t_1093 ____dstlen_1989);// L98:L100 +extern __size_t_1 (____mbstowcs_alias_1996) (__wchar_t_1094 * __restrict ____dst_1992, const char * __restrict ____src_1993, __size_t_1 ____len_1994);// L101:L104 +extern __size_t_1093 (____mbstowcs_alias_1997) (__wchar_t_1094 * __restrict ____dst_1992, const char * __restrict ____src_1993, __size_t_1093 ____len_1995);// L101:L104 +extern __size_t_1 (____mbstowcs_chk_warn_2004) (__wchar_t_1094 * __restrict ____dst_1998, const char * __restrict ____src_1999, __size_t_1 ____len_2000, __size_t_1 ____dstlen_2002);// L105:L110 +extern __size_t_1093 (____mbstowcs_chk_warn_2005) (__wchar_t_1094 * __restrict ____dst_1998, const char * __restrict ____src_1999, __size_t_1093 ____len_2001, __size_t_1093 ____dstlen_2003);// L105:L110 /* no function due to type errors in the function prototype */ -extern __size_t_1 (____wcstombs_chk_1587) (char * __restrict ____dst_1583, const __wchar_t_1018 * __restrict ____src_1584, __size_t_1 ____len_1585, __size_t_1 ____dstlen_1586);// L130:L132 -extern __size_t_1 (____wcstombs_alias_1591) (char * __restrict ____dst_1588, const __wchar_t_1018 * __restrict ____src_1589, __size_t_1 ____len_1590);// L133:L136 -extern __size_t_1 (____wcstombs_chk_warn_1596) (char * __restrict ____dst_1592, const __wchar_t_1018 * __restrict ____src_1593, __size_t_1 ____len_1594, __size_t_1 ____dstlen_1595);// L137:L141 +extern __size_t_1 (____wcstombs_chk_2016) (char * __restrict ____dst_2010, const __wchar_t_1094 * __restrict ____src_2011, __size_t_1 ____len_2012, __size_t_1 ____dstlen_2014);// L130:L132 +extern __size_t_1093 (____wcstombs_chk_2017) (char * __restrict ____dst_2010, const __wchar_t_1094 * __restrict ____src_2011, __size_t_1093 ____len_2013, __size_t_1093 ____dstlen_2015);// L130:L132 +extern __size_t_1 (____wcstombs_alias_2022) (char * __restrict ____dst_2018, const __wchar_t_1094 * __restrict ____src_2019, __size_t_1 ____len_2020);// L133:L136 +extern __size_t_1093 (____wcstombs_alias_2023) (char * __restrict ____dst_2018, const __wchar_t_1094 * __restrict ____src_2019, __size_t_1093 ____len_2021);// L133:L136 +extern __size_t_1 (____wcstombs_chk_warn_2030) (char * __restrict ____dst_2024, const __wchar_t_1094 * __restrict ____src_2025, __size_t_1 ____len_2026, __size_t_1 ____dstlen_2028);// L137:L141 +extern __size_t_1093 (____wcstombs_chk_warn_2031) (char * __restrict ____dst_2024, const __wchar_t_1094 * __restrict ____src_2025, __size_t_1093 ____len_2027, __size_t_1093 ____dstlen_2029);// L137:L141 /* no function due to type errors in the function prototype */ -void (__sendHeaders_1604) (int __responseNum_1601) { +void (__sendHeaders_2040) (int __responseNum_2037) { -if (__static_condition_default_1606) { +if (__static_condition_default_2042) { { { -long long __total_1602= 10LL;// L16 +long long __total_2038= 10LL;// L16 -long __total_1603= 10L;// L18 +long __total_2039= 10L;// L18 -if (__static_condition_default_1607) { - __printf_383 ("%ld\r\n", __total_1602 ) ; // L21 +if (__static_condition_default_2043) { + __printf_421 ("%ld\r\n", __total_2038 ) ; // L21 } -if (__static_condition_default_1608) { - __printf_383 ("%ld\r\n", __total_1603 ) ; // L21 +if (__static_condition_default_2044) { + __printf_421 ("%ld\r\n", __total_2039 ) ; // L21 +} +if (__static_condition_default_2045) { +__static_type_error("type error") ; // L21 } } } @@ -1974,24 +2916,27 @@ if (__static_condition_default_1608) { } } -void (__sendHeaders_1605) (int __responseNum_1601) { +void (__sendHeaders_2041) (int __responseNum_2037) { -if (__static_condition_default_1609) { +if (__static_condition_default_2046) { { { -long long __total_1602= 10LL;// L16 +long long __total_2038= 10LL;// L16 -long __total_1603= 10L;// L18 +long __total_2039= 10L;// L18 -if (__static_condition_default_1610) { - __printf_383 ("%ld\r\n", __total_1602 ) ; // L21 +if (__static_condition_default_2047) { + __printf_421 ("%ld\r\n", __total_2038 ) ; // L21 +} +if (__static_condition_default_2048) { + __printf_421 ("%ld\r\n", __total_2039 ) ; // L21 } -if (__static_condition_default_1611) { - __printf_383 ("%ld\r\n", __total_1603 ) ; // L21 +if (__static_condition_default_2049) { +__static_type_error("type error") ; // L21 } } } @@ -1999,30 +2944,30 @@ if (__static_condition_default_1611) { } } -void (__handleIncoming_1617) (const char * (__request_1612)) { +void (__handleIncoming_2055) (const char * (__request_2050)) { { -if (__static_condition_default_1618) { +if (__static_condition_default_2056) { { { -int __random_1613= rand( ) % 2;// L27 +int __random_2051= rand( ) % 2;// L27 -if (__static_condition_default_1614) { +if (__static_condition_default_2052) { __static_type_error("invalid declaration of random under this presence condition"); } -int __http_unauthorized_1615= __random_1613 ;// L28 +int __http_unauthorized_2053= __random_2051 ;// L28 -if (__static_condition_default_1616) { +if (__static_condition_default_2054) { __static_type_error("invalid declaration of http_unauthorized under this presence condition"); } -if (__static_condition_default_1619) { -if ( __http_unauthorized_1615 )// L30 +if (__static_condition_default_2057) { +if ( __http_unauthorized_2053 )// L30 { { @@ -2030,12 +2975,12 @@ if ( __http_unauthorized_1615 )// L30 - __sendHeaders_1604 (401) ; // L31 + __sendHeaders_2040 (401) ; // L31 } } } } -if (__static_condition_default_1620) { +if (__static_condition_default_2058) { __static_type_error("invalid type found in if statement"); } } @@ -2044,27 +2989,27 @@ __static_type_error("invalid type found in if statement"); } -if (__static_condition_default_1621) { +if (__static_condition_default_2059) { { { -int __random_1613= rand( ) % 2;// L27 +int __random_2051= rand( ) % 2;// L27 -if (__static_condition_default_1614) { +if (__static_condition_default_2052) { __static_type_error("invalid declaration of random under this presence condition"); } -int __http_unauthorized_1615= __random_1613 ;// L28 +int __http_unauthorized_2053= __random_2051 ;// L28 -if (__static_condition_default_1616) { +if (__static_condition_default_2054) { __static_type_error("invalid declaration of http_unauthorized under this presence condition"); } -if (__static_condition_default_1622) { -if ( __http_unauthorized_1615 )// L30 +if (__static_condition_default_2060) { +if ( __http_unauthorized_2053 )// L30 { { @@ -2072,16 +3017,16 @@ if ( __http_unauthorized_1615 )// L30 - __sendHeaders_1605 (401) ; // L31 + __sendHeaders_2041 (401) ; // L31 } } } } -if (__static_condition_default_1623) { +if (__static_condition_default_2061) { __static_type_error("invalid type found in if statement"); } -if (__static_condition_default_1624) { -if ( __request_1612 != __request_GET_1600 )// L36 +if (__static_condition_default_2062) { +if ( __request_2050 != __request_GET_2036 )// L36 { { @@ -2089,13 +3034,13 @@ if ( __request_1612 != __request_GET_1600 )// L36 - __sendHeaders_1605 (501) ; // L37 + __sendHeaders_2041 (501) ; // L37 } } } } -if (__static_condition_default_1625) { -if ( __request_1612 != __request_GET_1600 )// L36 +if (__static_condition_default_2063) { +if ( __request_2050 != __request_GET_2036 )// L36 { { @@ -2103,7 +3048,7 @@ if ( __request_1612 != __request_GET_1600 )// L36 - __sendHeaders_1605 (501) ; // L37 + __sendHeaders_2041 (501) ; // L37 } } } @@ -2115,16 +3060,16 @@ if ( __request_1612 != __request_GET_1600 )// L36 } }} -int (__main_1629) (int __argc_1626, char * (* (__argv_1627))) { +int (__main_2067) (int __argc_2064, char * (* (__argv_2065))) { { { -const char __request_1628[]= "POST";// L44 +const char __request_2066[]= "POST";// L44 - __handleIncoming_1617 ( __request_1628 ) ; // L45 + __handleIncoming_2055 ( __request_2066 ) ; // L45 return 0 ;// L46 } } diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/5cd6461b6fb.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/5cd6461b6fb.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/5cd6461b6fb.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/5cd6461b6fb.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/5cd6461b6fb.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/5cd6461b6fb.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c index 6e45f400..ba58e3a8 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c @@ -7,301 +7,427 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_1017; -extern const bool __static_condition_default_1834; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_774; -extern const bool __static_condition_default_451; -extern const bool __static_condition_default_1847; -extern const bool __static_condition_default_1842; -extern const bool __static_condition_default_320; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_343; -extern const bool __static_condition_default_1917; -extern const bool __static_condition_default_300; -extern const bool __static_condition_default_1899; -extern const bool __static_condition_default_496; -extern const bool __static_condition_default_579; -extern const bool __static_condition_default_766; -extern const bool __static_condition_default_495; -extern const bool __static_condition_default_882; -extern const bool __static_condition_default_1893; -extern const bool __static_condition_default_1407; -extern const bool __static_condition_default_961; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_254; -extern const bool __static_condition_default_470; -extern const bool __static_condition_default_983; -extern const bool __static_condition_default_304; -extern const bool __static_condition_default_1430; -extern const bool __static_condition_default_1895; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_1384; -extern const bool __static_condition_default_517; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_1848; -extern const bool __static_condition_default_448; -extern const bool __static_condition_default_118; -extern const bool __static_condition_default_898; -extern const bool __static_condition_default_1896; -extern const bool __static_condition_default_641; -extern const bool __static_condition_default_833; -extern const bool __static_condition_default_1167; -extern const bool __static_condition_default_459; -extern const bool __static_condition_default_234; -extern const bool __static_condition_default_1868; +extern const bool __static_condition_default_455; +extern const bool __static_condition_default_1753; +extern const bool __static_condition_default_512; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_2459; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_791; +extern const bool __static_condition_default_1381; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_1405; +extern const bool __static_condition_default_2388; +extern const bool __static_condition_default_2377; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_2406; +extern const bool __static_condition_default_2415; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_1315; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_2424; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_2387; +extern const bool __static_condition_default_388; +extern const bool __static_condition_default_1556; +extern const bool __static_condition_default_753; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_2064; +extern const bool __static_condition_default_2423; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_677; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_2381; +extern const bool __static_condition_default_721; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_559; +extern const bool __static_condition_default_789; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_1774; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_1789; extern const bool __static_condition_default_1432; -extern const bool __static_condition_default_1874; -extern const bool __static_condition_default_1606; -extern const bool __static_condition_default_421; -extern const bool __static_condition_default_551; -extern const bool __static_condition_default_501; -extern const bool __static_condition_default_1835; -extern const bool __static_condition_default_308; -extern const bool __static_condition_default_889; -extern const bool __static_condition_default_1844; -extern const bool __static_condition_default_1892; -extern const bool __static_condition_default_718; -extern const bool __static_condition_default_680; -extern const bool __static_condition_default_379; -extern const bool __static_condition_default_1818; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_393; -extern const bool __static_condition_default_457; -extern const bool __static_condition_default_318; -extern const bool __static_condition_default_696; -extern const bool __static_condition_default_332; -extern const bool __static_condition_default_1902; -extern const bool __static_condition_default_256; -extern const bool __static_condition_default_1871; -extern const bool __static_condition_default_429; -extern const bool __static_condition_default_374; -extern const bool __static_condition_default_507; -extern const bool __static_condition_default_567; -extern const bool __static_condition_default_941; -extern const bool __static_condition_default_707; -extern const bool __static_condition_default_400; -extern const bool __static_condition_default_1890; -extern const bool __static_condition_default_1904; -extern const bool __static_condition_default_935; -extern const bool __static_condition_default_1852; -extern const bool __static_condition_default_500; -extern const bool __static_condition_default_739; -extern const bool __static_condition_default_639; -extern const bool __static_condition_default_798; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_790; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_1908; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_1006; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_1877; -extern const bool __static_condition_default_232; -extern const bool __static_condition_default_370; -extern const bool __static_condition_default_1845; -extern const bool __static_condition_default_1426; -extern const bool __static_condition_default_326; -extern const bool __static_condition_default_508; -extern const bool __static_condition_default_1860; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_1905; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_1850; -extern const bool __static_condition_default_627; -extern const bool __static_condition_default_533; -extern const bool __static_condition_default_161; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_772; -extern const bool __static_condition_default_226; -extern const bool __static_condition_default_794; -extern const bool __static_condition_default_642; -extern const bool __static_condition_default_648; -extern const bool __static_condition_default_820; -extern const bool __static_condition_default_1778; -extern const bool __static_condition_default_1872; -extern const bool __static_condition_default_1856; -extern const bool __static_condition_default_1859; -extern const bool __static_condition_default_603; +extern const bool __static_condition_default_1152; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_670; extern const bool __static_condition_default_751; -extern const bool __static_condition_default_294; -extern const bool __static_condition_default_870; -extern const bool __static_condition_default_330; -extern const bool __static_condition_default_165; -extern const bool __static_condition_default_482; -extern const bool __static_condition_default_716; -extern const bool __static_condition_default_992; -extern const bool __static_condition_default_976; -extern const bool __static_condition_default_1405; -extern const bool __static_condition_default_381; -extern const bool __static_condition_default_1398; -extern const bool __static_condition_default_969; -extern const bool __static_condition_default_540; -extern const bool __static_condition_default_968; -extern const bool __static_condition_default_227; -extern const bool __static_condition_default_310; -extern const bool __static_condition_default_577; -extern const bool __static_condition_default_1785; -extern const bool __static_condition_default_349; -extern const bool __static_condition_default_225; -extern const bool __static_condition_default_502; -extern const bool __static_condition_default_1836; -extern const bool __static_condition_default_1910; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_1838; -extern const bool __static_condition_default_1604; -extern const bool __static_condition_default_595; -extern const bool __static_condition_default_948; -extern const bool __static_condition_default_1864; -extern const bool __static_condition_default_1798; -extern const bool __static_condition_default_1863; -extern const bool __static_condition_default_336; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_588; -extern const bool __static_condition_default_358; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_1907; -extern const bool __static_condition_default_236; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_881; -extern const bool __static_condition_default_1382; -extern const bool __static_condition_default_1851; -extern const bool __static_condition_default_556; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_586; -extern const bool __static_condition_default_729; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_1906; -extern const bool __static_condition_default_1900; -extern const bool __static_condition_default_906; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_328; -extern const bool __static_condition_default_610; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_1849; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_688; -extern const bool __static_condition_default_1846; -extern const bool __static_condition_default_1903; -extern const bool __static_condition_default_661; +extern const bool __static_condition_default_1349; +extern const bool __static_condition_default_2449; +extern const bool __static_condition_default_2412; extern const bool __static_condition_default_475; -extern const bool __static_condition_default_1869; -extern const bool __static_condition_default_933; -extern const bool __static_condition_default_1811; -extern const bool __static_condition_default_1866; -extern const bool __static_condition_default_1898; -extern const bool __static_condition_default_905; -extern const bool __static_condition_default_1861; -extern const bool __static_condition_default_528; -extern const bool __static_condition_default_1916; -extern const bool __static_condition_default_74; -extern const bool __static_condition_default_706; -extern const bool __static_condition_default_1605; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_446; -extern const bool __static_condition_default_962; -extern const bool __static_condition_default_672; -extern const bool __static_condition_default_453; -extern const bool __static_condition_default_719; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_1837; -extern const bool __static_condition_default_977; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_1875; -extern const bool __static_condition_default_1901; -extern const bool __static_condition_default_931; -extern const bool __static_condition_default_1858; -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_893; -extern const bool __static_condition_default_1897; -extern const bool __static_condition_default_1839; -extern const bool __static_condition_default_435; -extern const bool __static_condition_default_749; -extern const bool __static_condition_default_954; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_917; -extern const bool __static_condition_default_1615; -extern const bool __static_condition_default_575; -extern const bool __static_condition_default_1867; -extern const bool __static_condition_default_162; -extern const bool __static_condition_default_474; -extern const bool __static_condition_default_605; -extern const bool __static_condition_default_626; -extern const bool __static_condition_default_1854; -extern const bool __static_condition_default_394; -extern const bool __static_condition_default_694; -extern const bool __static_condition_default_953; -extern const bool __static_condition_default_1841; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_431; -extern const bool __static_condition_default_449; -extern const bool __static_condition_default_1862; -extern const bool __static_condition_default_338; -extern const bool __static_condition_default_351; -extern const bool __static_condition_default_695; -extern const bool __static_condition_default_714; +extern const bool __static_condition_default_1785; +extern const bool __static_condition_default_2343; extern const bool __static_condition_default_813; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_1539; -extern const bool __static_condition_default_612; -extern const bool __static_condition_default_1891; -extern const bool __static_condition_default_778; -extern const bool __static_condition_default_784; -extern const bool __static_condition_default_276; -extern const bool __static_condition_default_720; -extern const bool __static_condition_default_1865; -extern const bool __static_condition_default_640; -extern const bool __static_condition_default_1876; -extern const bool __static_condition_default_562; -extern const bool __static_condition_default_1793; -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_804; -extern const bool __static_condition_default_1855; -extern const bool __static_condition_default_855; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_1873; -extern const bool __static_condition_default_1915; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_1870; -extern const bool __static_condition_default_624; -extern const bool __static_condition_default_1397; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_1754; extern const bool __static_condition_default_1424; -extern const bool __static_condition_default_1889; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_1475; +extern const bool __static_condition_default_521; +extern const bool __static_condition_default_1459; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_2450; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_1164; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_568; +extern const bool __static_condition_default_2431; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_2419; +extern const bool __static_condition_default_2350; extern const bool __static_condition_default_840; -extern const bool __static_condition_default_1794; +extern const bool __static_condition_default_84; +extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_2470; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_2462; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_2469; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_2461; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_2455; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_1345; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_1560; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_1485; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_1749; +extern const bool __static_condition_default_2467; +extern const bool __static_condition_default_549; +extern const bool __static_condition_default_2457; +extern const bool __static_condition_default_2407; extern const bool __static_condition_default_511; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_1016; -extern const bool __static_condition_default_480; -extern const bool __static_condition_default_984; -extern const bool __static_condition_default_1857; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_1564; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_2463; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_702; +extern const bool __static_condition_default_438; extern const bool __static_condition_default_760; -extern const bool __static_condition_default_1840; -extern const bool __static_condition_default_1843; -extern const bool __static_condition_default_743; +extern const bool __static_condition_default_536; +extern const bool __static_condition_default_2466; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_1369; +extern const bool __static_condition_default_2047; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_769; +extern const bool __static_condition_default_2432; +extern const bool __static_condition_default_2465; +extern const bool __static_condition_default_2446; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_636; +extern const bool __static_condition_default_1532; +extern const bool __static_condition_default_1552; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_1388; +extern const bool __static_condition_default_2328; +extern const bool __static_condition_default_2389; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_2426; +extern const bool __static_condition_default_2043; +extern const bool __static_condition_default_846; +extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_891; +extern const bool __static_condition_default_2458; +extern const bool __static_condition_default_2417; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_907; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_1489; +extern const bool __static_condition_default_2413; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_2322; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_1402; +extern const bool __static_condition_default_382; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_1453; +extern const bool __static_condition_default_759; +extern const bool __static_condition_default_803; extern const bool __static_condition_default_1814; -extern const bool __static_condition_default_904; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_1775; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_955; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_2448; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_2451; +extern const bool __static_condition_default_311; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_2396; +extern const bool __static_condition_default_2314; +extern const bool __static_condition_default_1391; +extern const bool __static_condition_default_1416; +extern const bool __static_condition_default_2330; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_2351; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_2425; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_619; +extern const bool __static_condition_default_1420; +extern const bool __static_condition_default_488; +extern const bool __static_condition_default_337; +extern const bool __static_condition_default_1458; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_1498; +extern const bool __static_condition_default_255; extern const bool __static_condition_default_715; -extern const bool __static_condition_default_1894; -extern const bool __static_condition_default_733; -extern const bool __static_condition_default_924; -extern const bool __static_condition_default_1853; +extern const bool __static_condition_default_2434; +extern const bool __static_condition_default_204; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_2045; +extern const bool __static_condition_default_550; +extern const bool __static_condition_default_1357; +extern const bool __static_condition_default_2430; +extern const bool __static_condition_default_76; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_1944; +extern const bool __static_condition_default_2378; +extern const bool __static_condition_default_2342; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_2479; +extern const bool __static_condition_default_1361; +extern const bool __static_condition_default_2478; +extern const bool __static_condition_default_2454; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_2416; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_894; +extern const bool __static_condition_default_2349; +extern const bool __static_condition_default_2427; +extern const bool __static_condition_default_2312; +extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_2313; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_1353; +extern const bool __static_condition_default_1515; +extern const bool __static_condition_default_1776; +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_963; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_1531; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_419; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_2062; +extern const bool __static_condition_default_544; +extern const bool __static_condition_default_1750; +extern const bool __static_condition_default_2472; +extern const bool __static_condition_default_2428; +extern const bool __static_condition_default_2410; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_2329; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_2464; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_2411; +extern const bool __static_condition_default_1385; +extern const bool __static_condition_default_2063; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_1791; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_333; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_1572; +extern const bool __static_condition_default_2452; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_2429; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_1808; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_1568; +extern const bool __static_condition_default_2401; +extern const bool __static_condition_default_1377; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_1516; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_583; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_747; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_187; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_779; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_2422; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_613; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_2433; +extern const bool __static_condition_default_1773; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_290; +extern const bool __static_condition_default_2046; extern const bool __static_condition_default_278; -extern const bool __static_condition_default_356; -extern const bool __static_condition_default_762; -extern const bool __static_condition_default_230; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_999; -extern const bool __static_condition_default_454; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_655; +extern const bool __static_condition_default_2468; +extern const bool __static_condition_default_2414; +extern const bool __static_condition_default_929; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_2445; +extern const bool __static_condition_default_2408; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_2456; +extern const bool __static_condition_default_842; +extern const bool __static_condition_default_1409; +extern const bool __static_condition_default_1816; +extern const bool __static_condition_default_761; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_1373; +extern const bool __static_condition_default_2320; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_1810; +extern const bool __static_condition_default_2420; +extern const bool __static_condition_default_365; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_1428; +extern const bool __static_condition_default_2418; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_2460; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_380; +extern const bool __static_condition_default_1576; +extern const bool __static_condition_default_1395; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_2477; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_1398; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_367; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_875; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_834; +extern const bool __static_condition_default_1365; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_2376; +extern const bool __static_condition_default_1436; +extern const bool __static_condition_default_386; +extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_1165; +extern const bool __static_condition_default_2044; +extern const bool __static_condition_default_1341; +extern const bool __static_condition_default_2409; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_347; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_489; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_1159; +extern const bool __static_condition_default_2421; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_1787; +extern const bool __static_condition_default_2453; +extern const bool __static_condition_default_2321; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_473; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -353,831 +479,1247 @@ __static_renaming("____ssize_t_49", "__ssize_t"); __static_renaming("____syscall_slong_t_50", "__syscall_slong_t"); __static_renaming("____syscall_ulong_t_51", "__syscall_ulong_t"); __static_renaming("____loff_t_52", "__loff_t"); -__static_renaming("____qaddr_t_53", "__qaddr_t"); -__static_renaming("____caddr_t_54", "__caddr_t"); -__static_renaming("____intptr_t_55", "__intptr_t"); -__static_renaming("____socklen_t_56", "__socklen_t"); -__static_renaming("__FILE_58", "FILE"); -__static_renaming("____FILE_59", "__FILE"); -__static_renaming("____mbstate_t_68", "__mbstate_t"); -__static_renaming("___G_fpos_t_75", "_G_fpos_t"); -__static_renaming("___G_fpos64_t_81", "_G_fpos64_t"); -__static_renaming("____gnuc_va_list_82", "__gnuc_va_list"); -__static_renaming("___IO_lock_t_84", "_IO_lock_t"); -__static_renaming("___IO_FILE_163", "_IO_FILE"); -__static_renaming("___IO_FILE_164", "_IO_FILE"); -__static_renaming("___IO_2_1_stdin__167", "_IO_2_1_stdin_"); -__static_renaming("___IO_2_1_stdout__168", "_IO_2_1_stdout_"); -__static_renaming("___IO_2_1_stderr__169", "_IO_2_1_stderr_"); -__static_renaming("____io_read_fn_173", "__io_read_fn"); -__static_renaming("____io_write_fn_177", "__io_write_fn"); -__static_renaming("____io_seek_fn_181", "__io_seek_fn"); -__static_renaming("____io_close_fn_183", "__io_close_fn"); -__static_renaming("____underflow_184", "__underflow"); -__static_renaming("____underflow_185", "__underflow"); -__static_renaming("____uflow_186", "__uflow"); -__static_renaming("____uflow_187", "__uflow"); -__static_renaming("____overflow_188", "__overflow"); -__static_renaming("____overflow_189", "__overflow"); -__static_renaming("___IO_getc_193", "_IO_getc"); -__static_renaming("___IO_getc_194", "_IO_getc"); -__static_renaming("___IO_putc_199", "_IO_putc"); -__static_renaming("___IO_putc_200", "_IO_putc"); -__static_renaming("___IO_feof_204", "_IO_feof"); -__static_renaming("___IO_feof_205", "_IO_feof"); -__static_renaming("___IO_ferror_209", "_IO_ferror"); -__static_renaming("___IO_ferror_210", "_IO_ferror"); -__static_renaming("___IO_peekc_locked_214", "_IO_peekc_locked"); -__static_renaming("___IO_peekc_locked_215", "_IO_peekc_locked"); -__static_renaming("___IO_flockfile_216", "_IO_flockfile"); -__static_renaming("___IO_flockfile_217", "_IO_flockfile"); -__static_renaming("___IO_funlockfile_218", "_IO_funlockfile"); -__static_renaming("___IO_funlockfile_219", "_IO_funlockfile"); -__static_renaming("___IO_ftrylockfile_220", "_IO_ftrylockfile"); -__static_renaming("___IO_ftrylockfile_221", "_IO_ftrylockfile"); -__static_renaming("___IO_vfscanf_222", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_224", "_IO_vfscanf"); -__static_renaming("___IO_vfprintf_231", "_IO_vfprintf"); -__static_renaming("___IO_vfprintf_233", "_IO_vfprintf"); -__static_renaming("___IO_padn_238", "_IO_padn"); -__static_renaming("___IO_padn_239", "_IO_padn"); -__static_renaming("___IO_sgetn_240", "_IO_sgetn"); -__static_renaming("___IO_sgetn_241", "_IO_sgetn"); -__static_renaming("___IO_seekoff_242", "_IO_seekoff"); -__static_renaming("___IO_seekoff_243", "_IO_seekoff"); -__static_renaming("___IO_seekpos_244", "_IO_seekpos"); -__static_renaming("___IO_seekpos_245", "_IO_seekpos"); -__static_renaming("___IO_free_backup_area_246", "_IO_free_backup_area"); -__static_renaming("___IO_free_backup_area_247", "_IO_free_backup_area"); -__static_renaming("__va_list_248", "va_list"); -__static_renaming("__off_t_250", "off_t"); -__static_renaming("__off_t_251", "off_t"); -__static_renaming("__ssize_t_252", "ssize_t"); -__static_renaming("__fpos_t_253", "fpos_t"); -__static_renaming("__fpos_t_255", "fpos_t"); -__static_renaming("__stdin_257", "stdin"); -__static_renaming("__stdin_258", "stdin"); -__static_renaming("__stdout_259", "stdout"); -__static_renaming("__stdout_260", "stdout"); -__static_renaming("__stderr_261", "stderr"); -__static_renaming("__stderr_262", "stderr"); -__static_renaming("__remove_264", "remove"); -__static_renaming("__rename_267", "rename"); -__static_renaming("__renameat_272", "renameat"); -__static_renaming("__tmpfile_273", "tmpfile"); -__static_renaming("__tmpfile_275", "tmpfile"); -__static_renaming("__tmpfile_277", "tmpfile"); -__static_renaming("__tmpfile_279", "tmpfile"); -__static_renaming("__tmpnam_282", "tmpnam"); -__static_renaming("__tmpnam_283", "tmpnam"); -__static_renaming("__tmpnam_r_285", "tmpnam_r"); -__static_renaming("__tmpnam_r_286", "tmpnam_r"); -__static_renaming("__tempnam_289", "tempnam"); -__static_renaming("__tempnam_290", "tempnam"); -__static_renaming("__fclose_293", "fclose"); -__static_renaming("__fclose_295", "fclose"); -__static_renaming("__fflush_299", "fflush"); -__static_renaming("__fflush_unlocked_303", "fflush_unlocked"); -__static_renaming("__fopen_307", "fopen"); -__static_renaming("__fopen_309", "fopen"); -__static_renaming("__fopen_317", "fopen"); -__static_renaming("__fopen_319", "fopen"); -__static_renaming("__freopen_325", "freopen"); -__static_renaming("__freopen_327", "freopen"); -__static_renaming("__freopen_329", "freopen"); -__static_renaming("__freopen_331", "freopen"); -__static_renaming("__fdopen_335", "fdopen"); -__static_renaming("__fdopen_337", "fdopen"); -__static_renaming("__fmemopen_342", "fmemopen"); -__static_renaming("__fmemopen_344", "fmemopen"); -__static_renaming("__open_memstream_348", "open_memstream"); -__static_renaming("__open_memstream_350", "open_memstream"); -__static_renaming("__setbuf_355", "setbuf"); -__static_renaming("__setbuf_357", "setbuf"); -__static_renaming("__setvbuf_364", "setvbuf"); -__static_renaming("__setbuffer_369", "setbuffer"); -__static_renaming("__setlinebuf_373", "setlinebuf"); -__static_renaming("__fprintf_378", "fprintf"); -__static_renaming("__fprintf_380", "fprintf"); -__static_renaming("__printf_383", "printf"); -__static_renaming("__sprintf_386", "sprintf"); -__static_renaming("__vfprintf_392", "vfprintf"); -__static_renaming("__vprintf_399", "vprintf"); -__static_renaming("__vsprintf_405", "vsprintf"); -__static_renaming("__snprintf_409", "snprintf"); -__static_renaming("__vsnprintf_415", "vsnprintf"); -__static_renaming("__vdprintf_420", "vdprintf"); -__static_renaming("__dprintf_424", "dprintf"); -__static_renaming("__fscanf_428", "fscanf"); -__static_renaming("__fscanf_430", "fscanf"); -__static_renaming("__fscanf_432", "fscanf"); -__static_renaming("__fscanf_434", "fscanf"); -__static_renaming("__scanf_437", "scanf"); -__static_renaming("__scanf_438", "scanf"); -__static_renaming("__sscanf_441", "sscanf"); -__static_renaming("__vfscanf_468", "vfscanf"); -__static_renaming("__vfscanf_472", "vfscanf"); -__static_renaming("__vscanf_479", "vscanf"); -__static_renaming("__vscanf_481", "vscanf"); -__static_renaming("__vsscanf_487", "vsscanf"); -__static_renaming("__fgetc_520", "fgetc"); -__static_renaming("__getc_523", "getc"); -__static_renaming("__getchar_524", "getchar"); -__static_renaming("__getc_unlocked_527", "getc_unlocked"); -__static_renaming("__getchar_unlocked_529", "getchar_unlocked"); -__static_renaming("__fgetc_unlocked_532", "fgetc_unlocked"); -__static_renaming("__fputc_537", "fputc"); -__static_renaming("__fputc_539", "fputc"); -__static_renaming("__putc_544", "putc"); -__static_renaming("__putchar_546", "putchar"); -__static_renaming("__fputc_unlocked_550", "fputc_unlocked"); -__static_renaming("__putc_unlocked_555", "putc_unlocked"); -__static_renaming("__putchar_unlocked_558", "putchar_unlocked"); -__static_renaming("__getw_561", "getw"); -__static_renaming("__putw_566", "putw"); -__static_renaming("__fgets_572", "fgets"); -__static_renaming("__fgets_574", "fgets"); -__static_renaming("__fgets_576", "fgets"); -__static_renaming("__fgets_578", "fgets"); -__static_renaming("____getdelim_585", "__getdelim"); -__static_renaming("____getdelim_587", "__getdelim"); -__static_renaming("__getdelim_594", "getdelim"); -__static_renaming("__getdelim_596", "getdelim"); -__static_renaming("__getline_602", "getline"); -__static_renaming("__getline_604", "getline"); -__static_renaming("__fputs_609", "fputs"); -__static_renaming("__fputs_611", "fputs"); -__static_renaming("__puts_614", "puts"); -__static_renaming("__ungetc_618", "ungetc"); -__static_renaming("__fseek_654", "fseek"); -__static_renaming("__fseek_656", "fseek"); -__static_renaming("__ftell_660", "ftell"); -__static_renaming("__ftell_662", "ftell"); -__static_renaming("__rewind_666", "rewind"); -__static_renaming("__fseeko_671", "fseeko"); -__static_renaming("__fseeko_679", "fseeko"); -__static_renaming("__ftello_683", "ftello"); -__static_renaming("__ftello_685", "ftello"); -__static_renaming("__ftello_687", "ftello"); -__static_renaming("__fgetpos_693", "fgetpos"); -__static_renaming("__fgetpos_705", "fgetpos"); -__static_renaming("__fsetpos_713", "fsetpos"); -__static_renaming("__fsetpos_717", "fsetpos"); -__static_renaming("__clearerr_723", "clearerr"); -__static_renaming("__feof_726", "feof"); -__static_renaming("__feof_728", "feof"); -__static_renaming("__ferror_732", "ferror"); -__static_renaming("__ferror_734", "ferror"); -__static_renaming("__clearerr_unlocked_738", "clearerr_unlocked"); -__static_renaming("__feof_unlocked_742", "feof_unlocked"); -__static_renaming("__feof_unlocked_744", "feof_unlocked"); -__static_renaming("__ferror_unlocked_748", "ferror_unlocked"); -__static_renaming("__ferror_unlocked_750", "ferror_unlocked"); -__static_renaming("__perror_753", "perror"); -__static_renaming("__perror_754", "perror"); -__static_renaming("__sys_nerr_755", "sys_nerr"); -__static_renaming("__sys_errlist_756", "sys_errlist"); -__static_renaming("__fileno_759", "fileno"); -__static_renaming("__fileno_761", "fileno"); -__static_renaming("__fileno_unlocked_765", "fileno_unlocked"); -__static_renaming("__fileno_unlocked_767", "fileno_unlocked"); -__static_renaming("__popen_771", "popen"); -__static_renaming("__popen_773", "popen"); -__static_renaming("__pclose_777", "pclose"); -__static_renaming("__ctermid_780", "ctermid"); -__static_renaming("__flockfile_783", "flockfile"); -__static_renaming("__ftrylockfile_787", "ftrylockfile"); -__static_renaming("__ftrylockfile_789", "ftrylockfile"); -__static_renaming("__funlockfile_793", "funlockfile"); -__static_renaming("____sprintf_chk_825", "__sprintf_chk"); -__static_renaming("____vsprintf_chk_832", "__vsprintf_chk"); -__static_renaming("____snprintf_chk_846", "__snprintf_chk"); -__static_renaming("____vsnprintf_chk_854", "__vsnprintf_chk"); -__static_renaming("____fprintf_chk_869", "__fprintf_chk"); -__static_renaming("____printf_chk_873", "__printf_chk"); -__static_renaming("____vfprintf_chk_880", "__vfprintf_chk"); -__static_renaming("____vprintf_chk_888", "__vprintf_chk"); -__static_renaming("____dprintf_chk_910", "__dprintf_chk"); -__static_renaming("____vdprintf_chk_916", "__vdprintf_chk"); -__static_renaming("____fgets_chk_930", "__fgets_chk"); -__static_renaming("____fgets_chk_932", "__fgets_chk"); -__static_renaming("____fgets_chk_934", "__fgets_chk"); -__static_renaming("____fgets_alias_940", "__fgets_alias"); -__static_renaming("____fgets_chk_warn_947", "__fgets_chk_warn"); -__static_renaming("____cnt_1013", "__cnt"); -__static_renaming("____cptr_1014", "__cptr"); -__static_renaming("__wchar_t_1018", "wchar_t"); -__static_renaming("__idtype_t_1024", "idtype_t"); -__static_renaming("____bswap_32_1026", "__bswap_32"); -__static_renaming("____bswap_64_1029", "__bswap_64"); -__static_renaming("____WAIT_STATUS_1049", "__WAIT_STATUS"); -__static_renaming("__div_t_1054", "div_t"); -__static_renaming("__ldiv_t_1059", "ldiv_t"); -__static_renaming("__lldiv_t_1064", "lldiv_t"); -__static_renaming("____ctype_get_mb_cur_max_1065", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1066", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1067", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1068", "__ctype_get_mb_cur_max"); -__static_renaming("__atof_1070", "atof"); -__static_renaming("__atof_1071", "atof"); -__static_renaming("__atoi_1073", "atoi"); -__static_renaming("__atoi_1074", "atoi"); -__static_renaming("__atol_1076", "atol"); -__static_renaming("__atol_1077", "atol"); -__static_renaming("__atoll_1079", "atoll"); -__static_renaming("__atoll_1080", "atoll"); -__static_renaming("__strtod_1083", "strtod"); -__static_renaming("__strtof_1086", "strtof"); -__static_renaming("__strtold_1089", "strtold"); -__static_renaming("__strtol_1093", "strtol"); -__static_renaming("__strtoul_1097", "strtoul"); -__static_renaming("__strtoq_1101", "strtoq"); -__static_renaming("__strtouq_1105", "strtouq"); -__static_renaming("__strtoll_1109", "strtoll"); -__static_renaming("__strtoll_1110", "strtoll"); -__static_renaming("__strtoull_1114", "strtoull"); -__static_renaming("__l64a_1119", "l64a"); -__static_renaming("__l64a_1120", "l64a"); -__static_renaming("__a64l_1122", "a64l"); -__static_renaming("__a64l_1123", "a64l"); -__static_renaming("__u_char_1124", "u_char"); -__static_renaming("__u_short_1125", "u_short"); -__static_renaming("__u_int_1126", "u_int"); -__static_renaming("__u_long_1127", "u_long"); -__static_renaming("__quad_t_1128", "quad_t"); -__static_renaming("__u_quad_t_1129", "u_quad_t"); -__static_renaming("__fsid_t_1130", "fsid_t"); -__static_renaming("__loff_t_1131", "loff_t"); -__static_renaming("__ino_t_1132", "ino_t"); -__static_renaming("__ino_t_1133", "ino_t"); -__static_renaming("__dev_t_1134", "dev_t"); -__static_renaming("__gid_t_1135", "gid_t"); -__static_renaming("__gid_t_1136", "gid_t"); -__static_renaming("__mode_t_1137", "mode_t"); -__static_renaming("__nlink_t_1138", "nlink_t"); -__static_renaming("__uid_t_1139", "uid_t"); -__static_renaming("__uid_t_1140", "uid_t"); -__static_renaming("__pid_t_1141", "pid_t"); -__static_renaming("__id_t_1142", "id_t"); -__static_renaming("__daddr_t_1143", "daddr_t"); -__static_renaming("__caddr_t_1144", "caddr_t"); -__static_renaming("__key_t_1145", "key_t"); -__static_renaming("__key_t_1146", "key_t"); -__static_renaming("__clock_t_1147", "clock_t"); -__static_renaming("__time_t_1148", "time_t"); -__static_renaming("__clockid_t_1149", "clockid_t"); -__static_renaming("__timer_t_1150", "timer_t"); -__static_renaming("__ulong_1151", "ulong"); -__static_renaming("__ulong_1152", "ulong"); -__static_renaming("__ulong_1153", "ulong"); -__static_renaming("__ushort_1154", "ushort"); -__static_renaming("__uint_1155", "uint"); -__static_renaming("__int8_t_1156", "int8_t"); -__static_renaming("__int16_t_1157", "int16_t"); -__static_renaming("__int32_t_1158", "int32_t"); -__static_renaming("__int64_t_1159", "int64_t"); -__static_renaming("__u_int8_t_1160", "u_int8_t"); -__static_renaming("__u_int16_t_1161", "u_int16_t"); -__static_renaming("__u_int32_t_1162", "u_int32_t"); -__static_renaming("__u_int64_t_1163", "u_int64_t"); -__static_renaming("__register_t_1164", "register_t"); -__static_renaming("____bswap_32_1166", "__bswap_32"); -__static_renaming("____bswap_64_1169", "__bswap_64"); -__static_renaming("____sig_atomic_t_1170", "__sig_atomic_t"); -__static_renaming("____sigset_t_1174", "__sigset_t"); -__static_renaming("__sigset_t_1175", "sigset_t"); -__static_renaming("__suseconds_t_1182", "suseconds_t"); -__static_renaming("____fd_mask_1183", "__fd_mask"); -__static_renaming("____fd_mask_1184", "__fd_mask"); -__static_renaming("__fd_set_1189", "fd_set"); -__static_renaming("__fd_mask_1190", "fd_mask"); -__static_renaming("__fd_mask_1191", "fd_mask"); -__static_renaming("__select_1199", "select"); -__static_renaming("__select_1200", "select"); -__static_renaming("__pselect_1209", "pselect"); -__static_renaming("__pselect_1210", "pselect"); -__static_renaming("____fdelt_chk_1212", "__fdelt_chk"); -__static_renaming("____fdelt_warn_1214", "__fdelt_warn"); -__static_renaming("__gnu_dev_major_1216", "gnu_dev_major"); -__static_renaming("__gnu_dev_major_1217", "gnu_dev_major"); -__static_renaming("__gnu_dev_minor_1219", "gnu_dev_minor"); -__static_renaming("__gnu_dev_makedev_1222", "gnu_dev_makedev"); -__static_renaming("__blksize_t_1227", "blksize_t"); -__static_renaming("__blkcnt_t_1228", "blkcnt_t"); -__static_renaming("__fsblkcnt_t_1229", "fsblkcnt_t"); -__static_renaming("__blkcnt_t_1230", "blkcnt_t"); -__static_renaming("__fsblkcnt_t_1231", "fsblkcnt_t"); -__static_renaming("__fsfilcnt_t_1232", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_1233", "fsfilcnt_t"); -__static_renaming("__pthread_t_1234", "pthread_t"); -__static_renaming("__pthread_attr_t_1238", "pthread_attr_t"); -__static_renaming("____pthread_list_t_1243", "__pthread_list_t"); -__static_renaming("____pthread_list_t_1244", "__pthread_list_t"); -__static_renaming("__pthread_mutex_t_1260", "pthread_mutex_t"); -__static_renaming("__pthread_mutexattr_t_1265", "pthread_mutexattr_t"); -__static_renaming("__rand_1266", "rand"); -__static_renaming("__srand_1268", "srand"); -__static_renaming("__rand_r_1270", "rand_r"); -__static_renaming("__drand48_1271", "drand48"); -__static_renaming("__erand48_1273", "erand48"); -__static_renaming("__lrand48_1274", "lrand48"); -__static_renaming("__nrand48_1276", "nrand48"); -__static_renaming("__mrand48_1277", "mrand48"); -__static_renaming("__jrand48_1279", "jrand48"); -__static_renaming("__srand48_1281", "srand48"); -__static_renaming("__seed48_1283", "seed48"); -__static_renaming("__lcong48_1285", "lcong48"); -__static_renaming("__malloc_1287", "malloc"); -__static_renaming("__malloc_1288", "malloc"); -__static_renaming("__malloc_1289", "malloc"); -__static_renaming("__malloc_1290", "malloc"); -__static_renaming("__calloc_1293", "calloc"); -__static_renaming("__calloc_1294", "calloc"); -__static_renaming("__realloc_1297", "realloc"); -__static_renaming("__free_1299", "free"); -__static_renaming("__cfree_1301", "cfree"); -__static_renaming("__alloca_1303", "alloca"); -__static_renaming("__valloc_1305", "valloc"); -__static_renaming("__valloc_1306", "valloc"); -__static_renaming("__posix_memalign_1310", "posix_memalign"); -__static_renaming("__posix_memalign_1311", "posix_memalign"); -__static_renaming("__aligned_alloc_1314", "aligned_alloc"); -__static_renaming("__aligned_alloc_1315", "aligned_alloc"); -__static_renaming("__aligned_alloc_1316", "aligned_alloc"); -__static_renaming("__aligned_alloc_1317", "aligned_alloc"); -__static_renaming("__abort_1318", "abort"); -__static_renaming("__atexit_1320", "atexit"); -__static_renaming("__at_quick_exit_1322", "at_quick_exit"); -__static_renaming("__on_exit_1327", "on_exit"); -__static_renaming("__exit_1329", "exit"); -__static_renaming("__exit_1330", "exit"); -__static_renaming("__quick_exit_1332", "quick_exit"); -__static_renaming("___Exit_1334", "_Exit"); -__static_renaming("__getenv_1336", "getenv"); -__static_renaming("__getenv_1337", "getenv"); -__static_renaming("__putenv_1339", "putenv"); -__static_renaming("__setenv_1343", "setenv"); -__static_renaming("__unsetenv_1345", "unsetenv"); -__static_renaming("__clearenv_1346", "clearenv"); -__static_renaming("__mktemp_1348", "mktemp"); -__static_renaming("__mkstemp_1351", "mkstemp"); -__static_renaming("__mkstemp_1352", "mkstemp"); -__static_renaming("__mkstemp_1353", "mkstemp"); -__static_renaming("__mkstemp_1354", "mkstemp"); -__static_renaming("__mkstemps_1359", "mkstemps"); -__static_renaming("__mkstemps_1360", "mkstemps"); -__static_renaming("__mkstemps_1361", "mkstemps"); -__static_renaming("__mkstemps_1362", "mkstemps"); -__static_renaming("__mkdtemp_1364", "mkdtemp"); -__static_renaming("__mkdtemp_1365", "mkdtemp"); -__static_renaming("__system_1367", "system"); -__static_renaming("__system_1368", "system"); -__static_renaming("__system_1369", "system"); -__static_renaming("__system_1370", "system"); -__static_renaming("__realpath_1373", "realpath"); -__static_renaming("__realpath_1374", "realpath"); -__static_renaming("____compar_fn_t_1375", "__compar_fn_t"); -__static_renaming("__bsearch_1383", "bsearch"); -__static_renaming("__bsearch_1385", "bsearch"); -__static_renaming("____l_1392", "__l"); -__static_renaming("____u_1393", "__u"); -__static_renaming("____idx_1394", "__idx"); -__static_renaming("____p_1395", "__p"); -__static_renaming("____comparison_1396", "__comparison"); -__static_renaming("__qsort_1404", "qsort"); -__static_renaming("__qsort_1406", "qsort"); -__static_renaming("__abs_1409", "abs"); -__static_renaming("__abs_1410", "abs"); -__static_renaming("__labs_1412", "labs"); -__static_renaming("__labs_1413", "labs"); -__static_renaming("__llabs_1415", "llabs"); -__static_renaming("__llabs_1416", "llabs"); -__static_renaming("__div_1419", "div"); -__static_renaming("__div_1420", "div"); -__static_renaming("__ldiv_1423", "ldiv"); -__static_renaming("__ldiv_1425", "ldiv"); -__static_renaming("__lldiv_1429", "lldiv"); -__static_renaming("__lldiv_1431", "lldiv"); -__static_renaming("__ecvt_1437", "ecvt"); -__static_renaming("__ecvt_1438", "ecvt"); -__static_renaming("__fcvt_1443", "fcvt"); -__static_renaming("__fcvt_1444", "fcvt"); -__static_renaming("__gcvt_1448", "gcvt"); -__static_renaming("__gcvt_1449", "gcvt"); -__static_renaming("__qecvt_1454", "qecvt"); -__static_renaming("__qecvt_1455", "qecvt"); -__static_renaming("__qfcvt_1460", "qfcvt"); -__static_renaming("__qfcvt_1461", "qfcvt"); -__static_renaming("__qgcvt_1465", "qgcvt"); -__static_renaming("__qgcvt_1466", "qgcvt"); -__static_renaming("__ecvt_r_1473", "ecvt_r"); -__static_renaming("__fcvt_r_1480", "fcvt_r"); -__static_renaming("__qecvt_r_1487", "qecvt_r"); -__static_renaming("__qfcvt_r_1494", "qfcvt_r"); -__static_renaming("__mblen_1497", "mblen"); -__static_renaming("__mblen_1498", "mblen"); -__static_renaming("__mbtowc_1502", "mbtowc"); -__static_renaming("__wctomb_1505", "wctomb"); -__static_renaming("__mbstowcs_1509", "mbstowcs"); -__static_renaming("__wcstombs_1513", "wcstombs"); -__static_renaming("__rpmatch_1515", "rpmatch"); -__static_renaming("__rpmatch_1516", "rpmatch"); -__static_renaming("__getsubopt_1520", "getsubopt"); -__static_renaming("__getsubopt_1521", "getsubopt"); -__static_renaming("__getloadavg_1524", "getloadavg"); -__static_renaming("____realpath_chk_1529", "__realpath_chk"); -__static_renaming("____realpath_alias_1532", "__realpath_alias"); -__static_renaming("____realpath_chk_warn_1536", "__realpath_chk_warn"); -__static_renaming("____ptsname_r_chk_1544", "__ptsname_r_chk"); -__static_renaming("____ptsname_r_alias_1548", "__ptsname_r_alias"); -__static_renaming("____ptsname_r_chk_warn_1553", "__ptsname_r_chk_warn"); -__static_renaming("____wctomb_chk_1561", "__wctomb_chk"); -__static_renaming("____wctomb_alias_1564", "__wctomb_alias"); -__static_renaming("____mbstowcs_chk_1571", "__mbstowcs_chk"); -__static_renaming("____mbstowcs_alias_1575", "__mbstowcs_alias"); -__static_renaming("____mbstowcs_chk_warn_1580", "__mbstowcs_chk_warn"); -__static_renaming("____wcstombs_chk_1588", "__wcstombs_chk"); -__static_renaming("____wcstombs_alias_1592", "__wcstombs_alias"); -__static_renaming("____wcstombs_chk_warn_1597", "__wcstombs_chk_warn"); -__static_renaming("__memmove_1610", "memmove"); -__static_renaming("__memset_1619", "memset"); -__static_renaming("__memset_1620", "memset"); -__static_renaming("__memcmp_1624", "memcmp"); -__static_renaming("__memchr_1628", "memchr"); -__static_renaming("__strcpy_1631", "strcpy"); -__static_renaming("__strncpy_1635", "strncpy"); -__static_renaming("__strcat_1638", "strcat"); -__static_renaming("__strncat_1642", "strncat"); -__static_renaming("__strcmp_1645", "strcmp"); -__static_renaming("__strncmp_1649", "strncmp"); -__static_renaming("__strcoll_1652", "strcoll"); -__static_renaming("__strxfrm_1656", "strxfrm"); -__static_renaming("____locale_t_1664", "__locale_t"); -__static_renaming("__locale_t_1665", "locale_t"); -__static_renaming("__strcoll_l_1669", "strcoll_l"); -__static_renaming("__strxfrm_l_1674", "strxfrm_l"); -__static_renaming("__strdup_1676", "strdup"); -__static_renaming("__strndup_1679", "strndup"); -__static_renaming("__strchr_1682", "strchr"); -__static_renaming("__strchr_1683", "strchr"); -__static_renaming("__strrchr_1686", "strrchr"); -__static_renaming("__strcspn_1689", "strcspn"); -__static_renaming("__strspn_1692", "strspn"); -__static_renaming("__strpbrk_1695", "strpbrk"); -__static_renaming("__strstr_1698", "strstr"); -__static_renaming("__strtok_1701", "strtok"); -__static_renaming("____strtok_r_1705", "__strtok_r"); -__static_renaming("__strtok_r_1709", "strtok_r"); -__static_renaming("__strlen_1711", "strlen"); -__static_renaming("__strlen_1712", "strlen"); -__static_renaming("__strnlen_1715", "strnlen"); -__static_renaming("__strerror_1717", "strerror"); -__static_renaming("__strerror_1718", "strerror"); -__static_renaming("__strerror_r_1722", "strerror_r"); -__static_renaming("__strerror_l_1725", "strerror_l"); -__static_renaming("____bzero_1728", "__bzero"); -__static_renaming("____bzero_1729", "__bzero"); -__static_renaming("__bcopy_1733", "bcopy"); -__static_renaming("__bzero_1736", "bzero"); -__static_renaming("__bcmp_1740", "bcmp"); -__static_renaming("__index_1743", "index"); -__static_renaming("__rindex_1746", "rindex"); -__static_renaming("__ffs_1748", "ffs"); -__static_renaming("__strcasecmp_1751", "strcasecmp"); -__static_renaming("__strncasecmp_1755", "strncasecmp"); -__static_renaming("__strsep_1758", "strsep"); -__static_renaming("__strsignal_1760", "strsignal"); -__static_renaming("____stpcpy_1763", "__stpcpy"); -__static_renaming("__stpcpy_1766", "stpcpy"); -__static_renaming("____stpncpy_1770", "__stpncpy"); -__static_renaming("__stpncpy_1774", "stpncpy"); -__static_renaming("____stpncpy_chk_1803", "__stpncpy_chk"); -__static_renaming("____stpncpy_alias_1807", "__stpncpy_alias"); -__static_renaming("__content_gzip_1819", "content_gzip"); -__static_renaming("__content_gzip_1820", "content_gzip"); -__static_renaming("__authorized_1821", "authorized"); -__static_renaming("__iobuf_1822", "iobuf"); -__static_renaming("__iobuf_1823", "iobuf"); -__static_renaming("__iobuf_1824", "iobuf"); -__static_renaming("__iobuf_1825", "iobuf"); -__static_renaming("__iobuf_1826", "iobuf"); -__static_renaming("__iobuf_1827", "iobuf"); -__static_renaming("__iobuf_1828", "iobuf"); -__static_renaming("__iobuf_1829", "iobuf"); -__static_renaming("__mime_type_1831", "mime_type"); -__static_renaming("__len_1832", "len"); -__static_renaming("__send_headers_1833", "send_headers"); -__static_renaming("__send_headers_and_exit_1879", "send_headers_and_exit"); -__static_renaming("__s_1880", "s"); -__static_renaming("__s_1881", "s"); -__static_renaming("__s_1882", "s"); -__static_renaming("__s_1883", "s"); -__static_renaming("__s_1884", "s"); -__static_renaming("__s_1885", "s"); -__static_renaming("__s_1886", "s"); -__static_renaming("__s_1887", "s"); -__static_renaming("__handle_incoming_and_exit_1888", "handle_incoming_and_exit"); -__static_renaming("__mini_httpd_1909", "mini_httpd"); -__static_renaming("__main_1913", "main"); -__static_renaming("__main_1914", "main"); - -__static_condition_renaming("__static_condition_default_74", "(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_118", "(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_161", "(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_162", "(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_165", "(defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_223", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_225", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_226", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_227", "(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_230", "(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_232", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_234", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_235", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_236", "(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_249", "!(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); -__static_condition_renaming("__static_condition_default_254", "!(defined _FILE_OFFSET_BITS) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_256", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_274", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_276", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_278", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_280", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_294", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_296", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_300", "(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_304", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_308", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_310", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_318", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_320", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_326", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_328", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_330", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_332", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_336", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_338", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_343", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_345", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_349", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_351", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_356", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_358", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_370", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_374", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_379", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_381", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_393", "!(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_394", "(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_395", "(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_400", "!(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_421", "!(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_429", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_431", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_433", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_435", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_446", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_448", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_449", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_451", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_453", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_454", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_457", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_459", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_469", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_470", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_471", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_473", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_474", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_475", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_480", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_482", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_494", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_495", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_496", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_497", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_499", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_500", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_501", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_502", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_507", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_508", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_510", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_511", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_517", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_528", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_533", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_538", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_540", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_551", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_556", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_562", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_567", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_573", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_575", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_577", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_579", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_586", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_588", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_595", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_597", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_603", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_605", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_610", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_612", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_624", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_625", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_626", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_627", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_633", "!(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_639", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_640", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_641", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_642", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_648", "!(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_649", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_655", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_657", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_661", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_663", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_672", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_680", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_684", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_686", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_688", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_694", "!(defined _FILE_OFFSET_BITS) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_695", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_696", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_706", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_707", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_708", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_714", "!(defined _FILE_OFFSET_BITS) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_715", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_716", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_718", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_719", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_720", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_727", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_729", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_733", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_735", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_739", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_743", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_745", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_749", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_751", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_760", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_762", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_766", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_768", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_772", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_774", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_778", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_784", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_788", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_790", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_794", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_798", "!(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_801", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_804", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_809", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_813", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_817", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_820", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_833", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_840", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_855", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_864", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_870", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_881", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_882", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_883", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_889", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_893", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_898", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_904", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_905", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_906", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_917", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_924", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_931", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_933", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_935", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_941", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_948", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_953", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_954", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_961", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_962", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_968", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_969", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_976", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_977", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_983", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_984", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_991", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_992", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_998", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_999", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1006", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1007", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1015", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_1016", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1017", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1027", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1167", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1382", "!(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1384", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1397", "(defined __USE_EXTERN_INLINES) && !(defined __need_malloc_and_calloc) && !(defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1398", "(defined __USE_EXTERN_INLINES) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1405", "!(defined __USE_EXTERN_INLINES) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1407", "(defined __USE_EXTERN_INLINES) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1424", "!(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1426", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1430", "!(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1432", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1539", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1604", "!(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1605", "(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1606", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1615", "!(defined __STRICT_ANSI__)"); -__static_condition_renaming("__static_condition_default_1778", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1785", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1793", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1794", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1798", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1811", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1814", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1818", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1834", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH"); -__static_condition_renaming("__static_condition_default_1835", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH"); -__static_condition_renaming("__static_condition_default_1836", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH"); -__static_condition_renaming("__static_condition_default_1837", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH"); -__static_condition_renaming("__static_condition_default_1838", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH"); -__static_condition_renaming("__static_condition_default_1839", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH"); -__static_condition_renaming("__static_condition_default_1840", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH"); -__static_condition_renaming("__static_condition_default_1841", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH"); -__static_condition_renaming("__static_condition_default_1842", "(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_1843", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_1844", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_1845", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_1846", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_1847", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_1848", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_1849", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_1850", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_1851", "!(defined _FORTIFY_SOURCE) && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_1852", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_1853", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_1854", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_1855", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_1856", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_1857", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_1858", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_1859", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_1860", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_1861", "!(defined _FORTIFY_SOURCE) && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_1862", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_1863", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_1864", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_1865", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_1866", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_1867", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_1868", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_1869", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_1870", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_1871", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH"); -__static_condition_renaming("__static_condition_default_1872", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH"); -__static_condition_renaming("__static_condition_default_1873", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH"); -__static_condition_renaming("__static_condition_default_1874", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH"); -__static_condition_renaming("__static_condition_default_1875", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH"); -__static_condition_renaming("__static_condition_default_1876", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH"); -__static_condition_renaming("__static_condition_default_1877", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH"); -__static_condition_renaming("__static_condition_default_1889", "!(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_1890", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_1891", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_1892", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_1893", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_1894", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_1895", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_1896", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_1897", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_1898", "(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_1899", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_1900", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_1901", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_1902", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_1903", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_1904", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_1905", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_1906", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_1907", "ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_1908", "!ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); -__static_condition_renaming("__static_condition_default_1910", "(defined BB_MMU)"); -__static_condition_renaming("__static_condition_default_1915", "!(defined BB_MMU)"); -__static_condition_renaming("__static_condition_default_1916", "(defined BB_MMU)"); -__static_condition_renaming("__static_condition_default_1917", "!(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined __need_malloc_and_calloc) || (defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); - -if (__static_condition_default_1917) { +__static_renaming("____qaddr_t_54", "__qaddr_t"); +__static_renaming("____caddr_t_55", "__caddr_t"); +__static_renaming("____intptr_t_56", "__intptr_t"); +__static_renaming("____socklen_t_57", "__socklen_t"); +__static_renaming("__FILE_59", "FILE"); +__static_renaming("____FILE_60", "__FILE"); +__static_renaming("____mbstate_t_69", "__mbstate_t"); +__static_renaming("___G_fpos_t_77", "_G_fpos_t"); +__static_renaming("___G_fpos64_t_85", "_G_fpos64_t"); +__static_renaming("____gnuc_va_list_86", "__gnuc_va_list"); +__static_renaming("___IO_lock_t_88", "_IO_lock_t"); +__static_renaming("___IO_FILE_171", "_IO_FILE"); +__static_renaming("___IO_FILE_172", "_IO_FILE"); +__static_renaming("___IO_2_1_stdin__175", "_IO_2_1_stdin_"); +__static_renaming("___IO_2_1_stdout__176", "_IO_2_1_stdout_"); +__static_renaming("___IO_2_1_stderr__177", "_IO_2_1_stderr_"); +__static_renaming("____io_read_fn_181", "__io_read_fn"); +__static_renaming("____io_write_fn_186", "__io_write_fn"); +__static_renaming("____io_seek_fn_192", "__io_seek_fn"); +__static_renaming("____io_close_fn_195", "__io_close_fn"); +__static_renaming("____underflow_196", "__underflow"); +__static_renaming("____underflow_197", "__underflow"); +__static_renaming("____uflow_199", "__uflow"); +__static_renaming("____uflow_200", "__uflow"); +__static_renaming("____overflow_202", "__overflow"); +__static_renaming("____overflow_203", "__overflow"); +__static_renaming("___IO_getc_208", "_IO_getc"); +__static_renaming("___IO_getc_209", "_IO_getc"); +__static_renaming("___IO_putc_215", "_IO_putc"); +__static_renaming("___IO_putc_216", "_IO_putc"); +__static_renaming("___IO_feof_221", "_IO_feof"); +__static_renaming("___IO_feof_222", "_IO_feof"); +__static_renaming("___IO_ferror_227", "_IO_ferror"); +__static_renaming("___IO_ferror_228", "_IO_ferror"); +__static_renaming("___IO_peekc_locked_233", "_IO_peekc_locked"); +__static_renaming("___IO_peekc_locked_234", "_IO_peekc_locked"); +__static_renaming("___IO_flockfile_236", "_IO_flockfile"); +__static_renaming("___IO_flockfile_237", "_IO_flockfile"); +__static_renaming("___IO_funlockfile_239", "_IO_funlockfile"); +__static_renaming("___IO_funlockfile_240", "_IO_funlockfile"); +__static_renaming("___IO_ftrylockfile_242", "_IO_ftrylockfile"); +__static_renaming("___IO_ftrylockfile_243", "_IO_ftrylockfile"); +__static_renaming("___IO_vfscanf_245", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_247", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_251", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_252", "_IO_vfscanf"); +__static_renaming("___IO_vfprintf_254", "_IO_vfprintf"); +__static_renaming("___IO_vfprintf_256", "_IO_vfprintf"); +__static_renaming("___IO_vfprintf_260", "_IO_vfprintf"); +__static_renaming("___IO_padn_261", "_IO_padn"); +__static_renaming("___IO_padn_262", "_IO_padn"); +__static_renaming("___IO_sgetn_265", "_IO_sgetn"); +__static_renaming("___IO_sgetn_266", "_IO_sgetn"); +__static_renaming("___IO_seekoff_268", "_IO_seekoff"); +__static_renaming("___IO_seekoff_269", "_IO_seekoff"); +__static_renaming("___IO_seekpos_272", "_IO_seekpos"); +__static_renaming("___IO_seekpos_273", "_IO_seekpos"); +__static_renaming("___IO_free_backup_area_276", "_IO_free_backup_area"); +__static_renaming("___IO_free_backup_area_277", "_IO_free_backup_area"); +__static_renaming("__va_list_279", "va_list"); +__static_renaming("__off_t_281", "off_t"); +__static_renaming("__off_t_283", "off_t"); +__static_renaming("__ssize_t_285", "ssize_t"); +__static_renaming("__fpos_t_287", "fpos_t"); +__static_renaming("__fpos_t_289", "fpos_t"); +__static_renaming("__stdin_291", "stdin"); +__static_renaming("__stdin_292", "stdin"); +__static_renaming("__stdout_294", "stdout"); +__static_renaming("__stdout_295", "stdout"); +__static_renaming("__stderr_297", "stderr"); +__static_renaming("__stderr_298", "stderr"); +__static_renaming("__remove_301", "remove"); +__static_renaming("__rename_304", "rename"); +__static_renaming("__renameat_309", "renameat"); +__static_renaming("__tmpfile_310", "tmpfile"); +__static_renaming("__tmpfile_312", "tmpfile"); +__static_renaming("__tmpfile_314", "tmpfile"); +__static_renaming("__tmpfile_316", "tmpfile"); +__static_renaming("__tmpnam_319", "tmpnam"); +__static_renaming("__tmpnam_320", "tmpnam"); +__static_renaming("__tmpnam_r_322", "tmpnam_r"); +__static_renaming("__tmpnam_r_323", "tmpnam_r"); +__static_renaming("__tempnam_326", "tempnam"); +__static_renaming("__tempnam_327", "tempnam"); +__static_renaming("__fclose_330", "fclose"); +__static_renaming("__fclose_332", "fclose"); +__static_renaming("__fflush_336", "fflush"); +__static_renaming("__fflush_unlocked_340", "fflush_unlocked"); +__static_renaming("__fopen_344", "fopen"); +__static_renaming("__fopen_346", "fopen"); +__static_renaming("__fopen_354", "fopen"); +__static_renaming("__fopen_356", "fopen"); +__static_renaming("__freopen_362", "freopen"); +__static_renaming("__freopen_364", "freopen"); +__static_renaming("__freopen_366", "freopen"); +__static_renaming("__freopen_368", "freopen"); +__static_renaming("__fdopen_372", "fdopen"); +__static_renaming("__fdopen_374", "fdopen"); +__static_renaming("__fmemopen_379", "fmemopen"); +__static_renaming("__fmemopen_381", "fmemopen"); +__static_renaming("__open_memstream_385", "open_memstream"); +__static_renaming("__open_memstream_387", "open_memstream"); +__static_renaming("__setbuf_392", "setbuf"); +__static_renaming("__setbuf_394", "setbuf"); +__static_renaming("__setvbuf_401", "setvbuf"); +__static_renaming("__setbuffer_407", "setbuffer"); +__static_renaming("__setlinebuf_411", "setlinebuf"); +__static_renaming("__fprintf_416", "fprintf"); +__static_renaming("__fprintf_418", "fprintf"); +__static_renaming("__printf_421", "printf"); +__static_renaming("__sprintf_424", "sprintf"); +__static_renaming("__vfprintf_430", "vfprintf"); +__static_renaming("__vprintf_437", "vprintf"); +__static_renaming("__vsprintf_443", "vsprintf"); +__static_renaming("__snprintf_448", "snprintf"); +__static_renaming("__vsnprintf_454", "vsnprintf"); +__static_renaming("__vdprintf_460", "vdprintf"); +__static_renaming("__dprintf_464", "dprintf"); +__static_renaming("__fscanf_468", "fscanf"); +__static_renaming("__fscanf_470", "fscanf"); +__static_renaming("__fscanf_472", "fscanf"); +__static_renaming("__fscanf_474", "fscanf"); +__static_renaming("__scanf_477", "scanf"); +__static_renaming("__scanf_478", "scanf"); +__static_renaming("__sscanf_481", "sscanf"); +__static_renaming("__vfscanf_509", "vfscanf"); +__static_renaming("__vfscanf_513", "vfscanf"); +__static_renaming("__vscanf_520", "vscanf"); +__static_renaming("__vscanf_522", "vscanf"); +__static_renaming("__vsscanf_528", "vsscanf"); +__static_renaming("__fgetc_563", "fgetc"); +__static_renaming("__getc_567", "getc"); +__static_renaming("__getchar_569", "getchar"); +__static_renaming("__getc_unlocked_572", "getc_unlocked"); +__static_renaming("__getchar_unlocked_574", "getchar_unlocked"); +__static_renaming("__fgetc_unlocked_577", "fgetc_unlocked"); +__static_renaming("__fputc_582", "fputc"); +__static_renaming("__fputc_584", "fputc"); +__static_renaming("__putc_589", "putc"); +__static_renaming("__putchar_592", "putchar"); +__static_renaming("__fputc_unlocked_596", "fputc_unlocked"); +__static_renaming("__putc_unlocked_601", "putc_unlocked"); +__static_renaming("__putchar_unlocked_604", "putchar_unlocked"); +__static_renaming("__getw_607", "getw"); +__static_renaming("__putw_612", "putw"); +__static_renaming("__fgets_618", "fgets"); +__static_renaming("__fgets_620", "fgets"); +__static_renaming("__fgets_622", "fgets"); +__static_renaming("__fgets_624", "fgets"); +__static_renaming("____getdelim_631", "__getdelim"); +__static_renaming("____getdelim_635", "__getdelim"); +__static_renaming("__getdelim_644", "getdelim"); +__static_renaming("__getdelim_648", "getdelim"); +__static_renaming("__getline_656", "getline"); +__static_renaming("__getline_660", "getline"); +__static_renaming("__fputs_667", "fputs"); +__static_renaming("__fputs_669", "fputs"); +__static_renaming("__puts_672", "puts"); +__static_renaming("__ungetc_676", "ungetc"); +__static_renaming("__fseek_714", "fseek"); +__static_renaming("__fseek_716", "fseek"); +__static_renaming("__ftell_720", "ftell"); +__static_renaming("__ftell_722", "ftell"); +__static_renaming("__rewind_726", "rewind"); +__static_renaming("__fseeko_733", "fseeko"); +__static_renaming("__fseeko_744", "fseeko"); +__static_renaming("__ftello_750", "ftello"); +__static_renaming("__ftello_754", "ftello"); +__static_renaming("__ftello_758", "ftello"); +__static_renaming("__fgetpos_766", "fgetpos"); +__static_renaming("__fgetpos_778", "fgetpos"); +__static_renaming("__fsetpos_786", "fsetpos"); +__static_renaming("__fsetpos_790", "fsetpos"); +__static_renaming("__clearerr_796", "clearerr"); +__static_renaming("__feof_800", "feof"); +__static_renaming("__feof_802", "feof"); +__static_renaming("__ferror_806", "ferror"); +__static_renaming("__ferror_808", "ferror"); +__static_renaming("__clearerr_unlocked_812", "clearerr_unlocked"); +__static_renaming("__feof_unlocked_816", "feof_unlocked"); +__static_renaming("__feof_unlocked_818", "feof_unlocked"); +__static_renaming("__ferror_unlocked_822", "ferror_unlocked"); +__static_renaming("__ferror_unlocked_824", "ferror_unlocked"); +__static_renaming("__perror_827", "perror"); +__static_renaming("__perror_828", "perror"); +__static_renaming("__sys_nerr_829", "sys_nerr"); +__static_renaming("__sys_errlist_830", "sys_errlist"); +__static_renaming("__fileno_833", "fileno"); +__static_renaming("__fileno_835", "fileno"); +__static_renaming("__fileno_unlocked_839", "fileno_unlocked"); +__static_renaming("__fileno_unlocked_841", "fileno_unlocked"); +__static_renaming("__popen_845", "popen"); +__static_renaming("__popen_847", "popen"); +__static_renaming("__pclose_851", "pclose"); +__static_renaming("__ctermid_854", "ctermid"); +__static_renaming("__flockfile_857", "flockfile"); +__static_renaming("__ftrylockfile_861", "ftrylockfile"); +__static_renaming("__ftrylockfile_863", "ftrylockfile"); +__static_renaming("__funlockfile_867", "funlockfile"); +__static_renaming("____sprintf_chk_899", "__sprintf_chk"); +__static_renaming("____vsprintf_chk_906", "__vsprintf_chk"); +__static_renaming("____snprintf_chk_920", "__snprintf_chk"); +__static_renaming("____vsnprintf_chk_928", "__vsnprintf_chk"); +__static_renaming("____fprintf_chk_943", "__fprintf_chk"); +__static_renaming("____printf_chk_947", "__printf_chk"); +__static_renaming("____vfprintf_chk_954", "__vfprintf_chk"); +__static_renaming("____vprintf_chk_962", "__vprintf_chk"); +__static_renaming("____dprintf_chk_984", "__dprintf_chk"); +__static_renaming("____vdprintf_chk_990", "__vdprintf_chk"); +__static_renaming("____fgets_chk_1004", "__fgets_chk"); +__static_renaming("____fgets_chk_1006", "__fgets_chk"); +__static_renaming("____fgets_chk_1008", "__fgets_chk"); +__static_renaming("____fgets_alias_1014", "__fgets_alias"); +__static_renaming("____fgets_chk_warn_1021", "__fgets_chk_warn"); +__static_renaming("____cnt_1087", "__cnt"); +__static_renaming("____cptr_1088", "__cptr"); +__static_renaming("__ptrdiff_t_1092", "ptrdiff_t"); +__static_renaming("__size_t_1093", "size_t"); +__static_renaming("__wchar_t_1094", "wchar_t"); +__static_renaming("__idtype_t_1100", "idtype_t"); +__static_renaming("____u_char_1101", "__u_char"); +__static_renaming("____u_short_1102", "__u_short"); +__static_renaming("____u_int_1103", "__u_int"); +__static_renaming("____u_long_1104", "__u_long"); +__static_renaming("____int8_t_1105", "__int8_t"); +__static_renaming("____uint8_t_1106", "__uint8_t"); +__static_renaming("____int16_t_1107", "__int16_t"); +__static_renaming("____uint16_t_1108", "__uint16_t"); +__static_renaming("____int32_t_1109", "__int32_t"); +__static_renaming("____uint32_t_1110", "__uint32_t"); +__static_renaming("____int64_t_1111", "__int64_t"); +__static_renaming("____uint64_t_1112", "__uint64_t"); +__static_renaming("____quad_t_1113", "__quad_t"); +__static_renaming("____u_quad_t_1114", "__u_quad_t"); +__static_renaming("____dev_t_1115", "__dev_t"); +__static_renaming("____uid_t_1116", "__uid_t"); +__static_renaming("____gid_t_1117", "__gid_t"); +__static_renaming("____ino_t_1118", "__ino_t"); +__static_renaming("____ino64_t_1119", "__ino64_t"); +__static_renaming("____mode_t_1120", "__mode_t"); +__static_renaming("____nlink_t_1121", "__nlink_t"); +__static_renaming("____off_t_1122", "__off_t"); +__static_renaming("____off64_t_1123", "__off64_t"); +__static_renaming("____pid_t_1124", "__pid_t"); +__static_renaming("____fsid_t_1128", "__fsid_t"); +__static_renaming("____clock_t_1129", "__clock_t"); +__static_renaming("____rlim_t_1130", "__rlim_t"); +__static_renaming("____rlim64_t_1131", "__rlim64_t"); +__static_renaming("____id_t_1132", "__id_t"); +__static_renaming("____time_t_1133", "__time_t"); +__static_renaming("____useconds_t_1134", "__useconds_t"); +__static_renaming("____suseconds_t_1135", "__suseconds_t"); +__static_renaming("____daddr_t_1136", "__daddr_t"); +__static_renaming("____key_t_1137", "__key_t"); +__static_renaming("____clockid_t_1138", "__clockid_t"); +__static_renaming("____timer_t_1139", "__timer_t"); +__static_renaming("____blksize_t_1140", "__blksize_t"); +__static_renaming("____blkcnt_t_1141", "__blkcnt_t"); +__static_renaming("____blkcnt64_t_1142", "__blkcnt64_t"); +__static_renaming("____fsblkcnt_t_1143", "__fsblkcnt_t"); +__static_renaming("____fsblkcnt64_t_1144", "__fsblkcnt64_t"); +__static_renaming("____fsfilcnt_t_1145", "__fsfilcnt_t"); +__static_renaming("____fsfilcnt64_t_1146", "__fsfilcnt64_t"); +__static_renaming("____fsword_t_1147", "__fsword_t"); +__static_renaming("____ssize_t_1148", "__ssize_t"); +__static_renaming("____syscall_slong_t_1149", "__syscall_slong_t"); +__static_renaming("____syscall_ulong_t_1150", "__syscall_ulong_t"); +__static_renaming("____loff_t_1151", "__loff_t"); +__static_renaming("____qaddr_t_1153", "__qaddr_t"); +__static_renaming("____caddr_t_1154", "__caddr_t"); +__static_renaming("____intptr_t_1155", "__intptr_t"); +__static_renaming("____socklen_t_1156", "__socklen_t"); +__static_renaming("____bswap_32_1158", "__bswap_32"); +__static_renaming("____bswap_64_1162", "__bswap_64"); +__static_renaming("____bswap_64_1163", "__bswap_64"); +__static_renaming("____WAIT_STATUS_1185", "__WAIT_STATUS"); +__static_renaming("__div_t_1190", "div_t"); +__static_renaming("__ldiv_t_1195", "ldiv_t"); +__static_renaming("__lldiv_t_1200", "lldiv_t"); +__static_renaming("____ctype_get_mb_cur_max_1201", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1202", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1203", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1204", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1205", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1206", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1207", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1208", "__ctype_get_mb_cur_max"); +__static_renaming("__atof_1210", "atof"); +__static_renaming("__atof_1211", "atof"); +__static_renaming("__atoi_1213", "atoi"); +__static_renaming("__atoi_1214", "atoi"); +__static_renaming("__atol_1216", "atol"); +__static_renaming("__atol_1217", "atol"); +__static_renaming("__atoll_1219", "atoll"); +__static_renaming("__atoll_1220", "atoll"); +__static_renaming("__strtod_1223", "strtod"); +__static_renaming("__strtof_1226", "strtof"); +__static_renaming("__strtold_1229", "strtold"); +__static_renaming("__strtol_1233", "strtol"); +__static_renaming("__strtoul_1237", "strtoul"); +__static_renaming("__strtoq_1241", "strtoq"); +__static_renaming("__strtouq_1245", "strtouq"); +__static_renaming("__strtoll_1249", "strtoll"); +__static_renaming("__strtoll_1250", "strtoll"); +__static_renaming("__strtoull_1254", "strtoull"); +__static_renaming("__l64a_1259", "l64a"); +__static_renaming("__l64a_1260", "l64a"); +__static_renaming("__a64l_1262", "a64l"); +__static_renaming("__a64l_1263", "a64l"); +__static_renaming("____u_char_1264", "__u_char"); +__static_renaming("____u_short_1265", "__u_short"); +__static_renaming("____u_int_1266", "__u_int"); +__static_renaming("____u_long_1267", "__u_long"); +__static_renaming("____int8_t_1268", "__int8_t"); +__static_renaming("____uint8_t_1269", "__uint8_t"); +__static_renaming("____int16_t_1270", "__int16_t"); +__static_renaming("____uint16_t_1271", "__uint16_t"); +__static_renaming("____int32_t_1272", "__int32_t"); +__static_renaming("____uint32_t_1273", "__uint32_t"); +__static_renaming("____int64_t_1274", "__int64_t"); +__static_renaming("____uint64_t_1275", "__uint64_t"); +__static_renaming("____quad_t_1276", "__quad_t"); +__static_renaming("____u_quad_t_1277", "__u_quad_t"); +__static_renaming("____dev_t_1278", "__dev_t"); +__static_renaming("____uid_t_1279", "__uid_t"); +__static_renaming("____gid_t_1280", "__gid_t"); +__static_renaming("____ino_t_1281", "__ino_t"); +__static_renaming("____ino64_t_1282", "__ino64_t"); +__static_renaming("____mode_t_1283", "__mode_t"); +__static_renaming("____nlink_t_1284", "__nlink_t"); +__static_renaming("____off_t_1285", "__off_t"); +__static_renaming("____off64_t_1286", "__off64_t"); +__static_renaming("____pid_t_1287", "__pid_t"); +__static_renaming("____fsid_t_1291", "__fsid_t"); +__static_renaming("____clock_t_1292", "__clock_t"); +__static_renaming("____rlim_t_1293", "__rlim_t"); +__static_renaming("____rlim64_t_1294", "__rlim64_t"); +__static_renaming("____id_t_1295", "__id_t"); +__static_renaming("____time_t_1296", "__time_t"); +__static_renaming("____useconds_t_1297", "__useconds_t"); +__static_renaming("____suseconds_t_1298", "__suseconds_t"); +__static_renaming("____daddr_t_1299", "__daddr_t"); +__static_renaming("____key_t_1300", "__key_t"); +__static_renaming("____clockid_t_1301", "__clockid_t"); +__static_renaming("____timer_t_1302", "__timer_t"); +__static_renaming("____blksize_t_1303", "__blksize_t"); +__static_renaming("____blkcnt_t_1304", "__blkcnt_t"); +__static_renaming("____blkcnt64_t_1305", "__blkcnt64_t"); +__static_renaming("____fsblkcnt_t_1306", "__fsblkcnt_t"); +__static_renaming("____fsblkcnt64_t_1307", "__fsblkcnt64_t"); +__static_renaming("____fsfilcnt_t_1308", "__fsfilcnt_t"); +__static_renaming("____fsfilcnt64_t_1309", "__fsfilcnt64_t"); +__static_renaming("____fsword_t_1310", "__fsword_t"); +__static_renaming("____ssize_t_1311", "__ssize_t"); +__static_renaming("____syscall_slong_t_1312", "__syscall_slong_t"); +__static_renaming("____syscall_ulong_t_1313", "__syscall_ulong_t"); +__static_renaming("____loff_t_1314", "__loff_t"); +__static_renaming("____qaddr_t_1316", "__qaddr_t"); +__static_renaming("____caddr_t_1317", "__caddr_t"); +__static_renaming("____intptr_t_1318", "__intptr_t"); +__static_renaming("____socklen_t_1319", "__socklen_t"); +__static_renaming("__u_char_1320", "u_char"); +__static_renaming("__u_char_1321", "u_char"); +__static_renaming("__u_char_1322", "u_char"); +__static_renaming("__u_short_1323", "u_short"); +__static_renaming("__u_short_1324", "u_short"); +__static_renaming("__u_short_1325", "u_short"); +__static_renaming("__u_int_1326", "u_int"); +__static_renaming("__u_int_1327", "u_int"); +__static_renaming("__u_int_1328", "u_int"); +__static_renaming("__u_long_1329", "u_long"); +__static_renaming("__u_long_1330", "u_long"); +__static_renaming("__u_long_1331", "u_long"); +__static_renaming("__quad_t_1332", "quad_t"); +__static_renaming("__quad_t_1333", "quad_t"); +__static_renaming("__quad_t_1334", "quad_t"); +__static_renaming("__u_quad_t_1335", "u_quad_t"); +__static_renaming("__u_quad_t_1336", "u_quad_t"); +__static_renaming("__u_quad_t_1337", "u_quad_t"); +__static_renaming("__fsid_t_1338", "fsid_t"); +__static_renaming("__fsid_t_1339", "fsid_t"); +__static_renaming("__fsid_t_1340", "fsid_t"); +__static_renaming("__loff_t_1342", "loff_t"); +__static_renaming("__loff_t_1343", "loff_t"); +__static_renaming("__loff_t_1344", "loff_t"); +__static_renaming("__loff_t_1346", "loff_t"); +__static_renaming("__loff_t_1347", "loff_t"); +__static_renaming("__loff_t_1348", "loff_t"); +__static_renaming("__ino_t_1350", "ino_t"); +__static_renaming("__ino_t_1351", "ino_t"); +__static_renaming("__ino_t_1352", "ino_t"); +__static_renaming("__ino_t_1354", "ino_t"); +__static_renaming("__ino_t_1355", "ino_t"); +__static_renaming("__ino_t_1356", "ino_t"); +__static_renaming("__dev_t_1358", "dev_t"); +__static_renaming("__dev_t_1359", "dev_t"); +__static_renaming("__dev_t_1360", "dev_t"); +__static_renaming("__gid_t_1362", "gid_t"); +__static_renaming("__gid_t_1363", "gid_t"); +__static_renaming("__gid_t_1364", "gid_t"); +__static_renaming("__gid_t_1366", "gid_t"); +__static_renaming("__gid_t_1367", "gid_t"); +__static_renaming("__gid_t_1368", "gid_t"); +__static_renaming("__mode_t_1370", "mode_t"); +__static_renaming("__mode_t_1371", "mode_t"); +__static_renaming("__mode_t_1372", "mode_t"); +__static_renaming("__nlink_t_1374", "nlink_t"); +__static_renaming("__nlink_t_1375", "nlink_t"); +__static_renaming("__nlink_t_1376", "nlink_t"); +__static_renaming("__uid_t_1378", "uid_t"); +__static_renaming("__uid_t_1379", "uid_t"); +__static_renaming("__uid_t_1380", "uid_t"); +__static_renaming("__uid_t_1382", "uid_t"); +__static_renaming("__uid_t_1383", "uid_t"); +__static_renaming("__uid_t_1384", "uid_t"); +__static_renaming("__off_t_1386", "off_t"); +__static_renaming("__off_t_1387", "off_t"); +__static_renaming("__off_t_1389", "off_t"); +__static_renaming("__off_t_1390", "off_t"); +__static_renaming("__pid_t_1392", "pid_t"); +__static_renaming("__pid_t_1393", "pid_t"); +__static_renaming("__pid_t_1394", "pid_t"); +__static_renaming("__pid_t_1396", "pid_t"); +__static_renaming("__pid_t_1397", "pid_t"); +__static_renaming("__id_t_1399", "id_t"); +__static_renaming("__id_t_1400", "id_t"); +__static_renaming("__id_t_1401", "id_t"); +__static_renaming("__ssize_t_1403", "ssize_t"); +__static_renaming("__ssize_t_1404", "ssize_t"); +__static_renaming("__daddr_t_1406", "daddr_t"); +__static_renaming("__daddr_t_1407", "daddr_t"); +__static_renaming("__daddr_t_1408", "daddr_t"); +__static_renaming("__caddr_t_1410", "caddr_t"); +__static_renaming("__caddr_t_1411", "caddr_t"); +__static_renaming("__caddr_t_1412", "caddr_t"); +__static_renaming("__key_t_1413", "key_t"); +__static_renaming("__key_t_1414", "key_t"); +__static_renaming("__key_t_1415", "key_t"); +__static_renaming("__key_t_1417", "key_t"); +__static_renaming("__key_t_1418", "key_t"); +__static_renaming("__key_t_1419", "key_t"); +__static_renaming("__clock_t_1421", "clock_t"); +__static_renaming("__clock_t_1422", "clock_t"); +__static_renaming("__clock_t_1423", "clock_t"); +__static_renaming("__time_t_1425", "time_t"); +__static_renaming("__time_t_1426", "time_t"); +__static_renaming("__time_t_1427", "time_t"); +__static_renaming("__clockid_t_1429", "clockid_t"); +__static_renaming("__clockid_t_1430", "clockid_t"); +__static_renaming("__clockid_t_1431", "clockid_t"); +__static_renaming("__timer_t_1433", "timer_t"); +__static_renaming("__timer_t_1434", "timer_t"); +__static_renaming("__timer_t_1435", "timer_t"); +__static_renaming("__ulong_1437", "ulong"); +__static_renaming("__ulong_1438", "ulong"); +__static_renaming("__ulong_1439", "ulong"); +__static_renaming("__ushort_1440", "ushort"); +__static_renaming("__uint_1441", "uint"); +__static_renaming("__int8_t_1442", "int8_t"); +__static_renaming("__int16_t_1443", "int16_t"); +__static_renaming("__int32_t_1444", "int32_t"); +__static_renaming("__int64_t_1445", "int64_t"); +__static_renaming("__u_int8_t_1446", "u_int8_t"); +__static_renaming("__u_int16_t_1447", "u_int16_t"); +__static_renaming("__u_int32_t_1448", "u_int32_t"); +__static_renaming("__u_int64_t_1449", "u_int64_t"); +__static_renaming("__register_t_1450", "register_t"); +__static_renaming("____bswap_32_1452", "__bswap_32"); +__static_renaming("____bswap_64_1456", "__bswap_64"); +__static_renaming("____bswap_64_1457", "__bswap_64"); +__static_renaming("____sig_atomic_t_1460", "__sig_atomic_t"); +__static_renaming("____sigset_t_1464", "__sigset_t"); +__static_renaming("__sigset_t_1465", "sigset_t"); +__static_renaming("__suseconds_t_1486", "suseconds_t"); +__static_renaming("__suseconds_t_1487", "suseconds_t"); +__static_renaming("__suseconds_t_1488", "suseconds_t"); +__static_renaming("____fd_mask_1490", "__fd_mask"); +__static_renaming("____fd_mask_1491", "__fd_mask"); +__static_renaming("__fd_set_1499", "fd_set"); +__static_renaming("__fd_mask_1500", "fd_mask"); +__static_renaming("__fd_mask_1501", "fd_mask"); +__static_renaming("__select_1513", "select"); +__static_renaming("__select_1514", "select"); +__static_renaming("__pselect_1529", "pselect"); +__static_renaming("__pselect_1530", "pselect"); +__static_renaming("____fdelt_chk_1534", "__fdelt_chk"); +__static_renaming("____fdelt_warn_1536", "__fdelt_warn"); +__static_renaming("__gnu_dev_major_1538", "gnu_dev_major"); +__static_renaming("__gnu_dev_major_1539", "gnu_dev_major"); +__static_renaming("__gnu_dev_minor_1541", "gnu_dev_minor"); +__static_renaming("__gnu_dev_makedev_1544", "gnu_dev_makedev"); +__static_renaming("__blksize_t_1549", "blksize_t"); +__static_renaming("__blksize_t_1550", "blksize_t"); +__static_renaming("__blksize_t_1551", "blksize_t"); +__static_renaming("__blkcnt_t_1553", "blkcnt_t"); +__static_renaming("__blkcnt_t_1554", "blkcnt_t"); +__static_renaming("__blkcnt_t_1555", "blkcnt_t"); +__static_renaming("__fsblkcnt_t_1557", "fsblkcnt_t"); +__static_renaming("__fsblkcnt_t_1558", "fsblkcnt_t"); +__static_renaming("__fsblkcnt_t_1559", "fsblkcnt_t"); +__static_renaming("__blkcnt_t_1561", "blkcnt_t"); +__static_renaming("__blkcnt_t_1562", "blkcnt_t"); +__static_renaming("__blkcnt_t_1563", "blkcnt_t"); +__static_renaming("__fsblkcnt_t_1565", "fsblkcnt_t"); +__static_renaming("__fsblkcnt_t_1566", "fsblkcnt_t"); +__static_renaming("__fsblkcnt_t_1567", "fsblkcnt_t"); +__static_renaming("__fsfilcnt_t_1569", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_1570", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_1571", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_1573", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_1574", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_1575", "fsfilcnt_t"); +__static_renaming("__pthread_t_1577", "pthread_t"); +__static_renaming("__pthread_attr_t_1581", "pthread_attr_t"); +__static_renaming("____pthread_list_t_1586", "__pthread_list_t"); +__static_renaming("____pthread_list_t_1587", "__pthread_list_t"); +__static_renaming("__pthread_mutex_t_1603", "pthread_mutex_t"); +__static_renaming("__pthread_mutexattr_t_1608", "pthread_mutexattr_t"); +__static_renaming("__rand_1609", "rand"); +__static_renaming("__srand_1611", "srand"); +__static_renaming("__rand_r_1613", "rand_r"); +__static_renaming("__drand48_1614", "drand48"); +__static_renaming("__erand48_1616", "erand48"); +__static_renaming("__lrand48_1617", "lrand48"); +__static_renaming("__nrand48_1619", "nrand48"); +__static_renaming("__mrand48_1620", "mrand48"); +__static_renaming("__jrand48_1622", "jrand48"); +__static_renaming("__srand48_1624", "srand48"); +__static_renaming("__seed48_1626", "seed48"); +__static_renaming("__lcong48_1628", "lcong48"); +__static_renaming("__malloc_1631", "malloc"); +__static_renaming("__malloc_1632", "malloc"); +__static_renaming("__malloc_1633", "malloc"); +__static_renaming("__malloc_1634", "malloc"); +__static_renaming("__calloc_1639", "calloc"); +__static_renaming("__calloc_1640", "calloc"); +__static_renaming("__calloc_1641", "calloc"); +__static_renaming("__calloc_1642", "calloc"); +__static_renaming("__realloc_1646", "realloc"); +__static_renaming("__realloc_1647", "realloc"); +__static_renaming("__free_1649", "free"); +__static_renaming("__cfree_1651", "cfree"); +__static_renaming("__alloca_1654", "alloca"); +__static_renaming("__alloca_1655", "alloca"); +__static_renaming("__valloc_1658", "valloc"); +__static_renaming("__valloc_1659", "valloc"); +__static_renaming("__valloc_1660", "valloc"); +__static_renaming("__valloc_1661", "valloc"); +__static_renaming("__posix_memalign_1667", "posix_memalign"); +__static_renaming("__posix_memalign_1668", "posix_memalign"); +__static_renaming("__posix_memalign_1669", "posix_memalign"); +__static_renaming("__posix_memalign_1670", "posix_memalign"); +__static_renaming("__aligned_alloc_1675", "aligned_alloc"); +__static_renaming("__aligned_alloc_1676", "aligned_alloc"); +__static_renaming("__aligned_alloc_1677", "aligned_alloc"); +__static_renaming("__aligned_alloc_1678", "aligned_alloc"); +__static_renaming("__aligned_alloc_1679", "aligned_alloc"); +__static_renaming("__aligned_alloc_1680", "aligned_alloc"); +__static_renaming("__aligned_alloc_1681", "aligned_alloc"); +__static_renaming("__aligned_alloc_1682", "aligned_alloc"); +__static_renaming("__abort_1683", "abort"); +__static_renaming("__atexit_1685", "atexit"); +__static_renaming("__at_quick_exit_1687", "at_quick_exit"); +__static_renaming("__on_exit_1692", "on_exit"); +__static_renaming("__exit_1694", "exit"); +__static_renaming("__exit_1695", "exit"); +__static_renaming("__quick_exit_1697", "quick_exit"); +__static_renaming("___Exit_1699", "_Exit"); +__static_renaming("__getenv_1701", "getenv"); +__static_renaming("__getenv_1702", "getenv"); +__static_renaming("__putenv_1704", "putenv"); +__static_renaming("__setenv_1708", "setenv"); +__static_renaming("__unsetenv_1710", "unsetenv"); +__static_renaming("__clearenv_1711", "clearenv"); +__static_renaming("__mktemp_1713", "mktemp"); +__static_renaming("__mkstemp_1716", "mkstemp"); +__static_renaming("__mkstemp_1717", "mkstemp"); +__static_renaming("__mkstemp_1718", "mkstemp"); +__static_renaming("__mkstemp_1719", "mkstemp"); +__static_renaming("__mkstemps_1724", "mkstemps"); +__static_renaming("__mkstemps_1725", "mkstemps"); +__static_renaming("__mkstemps_1726", "mkstemps"); +__static_renaming("__mkstemps_1727", "mkstemps"); +__static_renaming("__mkdtemp_1729", "mkdtemp"); +__static_renaming("__mkdtemp_1730", "mkdtemp"); +__static_renaming("__system_1732", "system"); +__static_renaming("__system_1733", "system"); +__static_renaming("__system_1734", "system"); +__static_renaming("__system_1735", "system"); +__static_renaming("__realpath_1738", "realpath"); +__static_renaming("__realpath_1739", "realpath"); +__static_renaming("____compar_fn_t_1740", "__compar_fn_t"); +__static_renaming("__bsearch_1751", "bsearch"); +__static_renaming("__bsearch_1752", "bsearch"); +__static_renaming("__bsearch_1755", "bsearch"); +__static_renaming("__bsearch_1756", "bsearch"); +__static_renaming("____l_1765", "__l"); +__static_renaming("____l_1766", "__l"); +__static_renaming("____u_1767", "__u"); +__static_renaming("____u_1768", "__u"); +__static_renaming("____idx_1769", "__idx"); +__static_renaming("____idx_1770", "__idx"); +__static_renaming("____p_1771", "__p"); +__static_renaming("____comparison_1772", "__comparison"); +__static_renaming("__qsort_1784", "qsort"); +__static_renaming("__qsort_1786", "qsort"); +__static_renaming("__qsort_1788", "qsort"); +__static_renaming("__qsort_1790", "qsort"); +__static_renaming("__abs_1793", "abs"); +__static_renaming("__abs_1794", "abs"); +__static_renaming("__labs_1796", "labs"); +__static_renaming("__labs_1797", "labs"); +__static_renaming("__llabs_1799", "llabs"); +__static_renaming("__llabs_1800", "llabs"); +__static_renaming("__div_1803", "div"); +__static_renaming("__div_1804", "div"); +__static_renaming("__ldiv_1807", "ldiv"); +__static_renaming("__ldiv_1809", "ldiv"); +__static_renaming("__lldiv_1813", "lldiv"); +__static_renaming("__lldiv_1815", "lldiv"); +__static_renaming("__ecvt_1821", "ecvt"); +__static_renaming("__ecvt_1822", "ecvt"); +__static_renaming("__fcvt_1827", "fcvt"); +__static_renaming("__fcvt_1828", "fcvt"); +__static_renaming("__gcvt_1832", "gcvt"); +__static_renaming("__gcvt_1833", "gcvt"); +__static_renaming("__qecvt_1838", "qecvt"); +__static_renaming("__qecvt_1839", "qecvt"); +__static_renaming("__qfcvt_1844", "qfcvt"); +__static_renaming("__qfcvt_1845", "qfcvt"); +__static_renaming("__qgcvt_1849", "qgcvt"); +__static_renaming("__qgcvt_1850", "qgcvt"); +__static_renaming("__ecvt_r_1858", "ecvt_r"); +__static_renaming("__ecvt_r_1859", "ecvt_r"); +__static_renaming("__fcvt_r_1867", "fcvt_r"); +__static_renaming("__fcvt_r_1868", "fcvt_r"); +__static_renaming("__qecvt_r_1876", "qecvt_r"); +__static_renaming("__qecvt_r_1877", "qecvt_r"); +__static_renaming("__qfcvt_r_1885", "qfcvt_r"); +__static_renaming("__qfcvt_r_1886", "qfcvt_r"); +__static_renaming("__mblen_1890", "mblen"); +__static_renaming("__mblen_1891", "mblen"); +__static_renaming("__mblen_1892", "mblen"); +__static_renaming("__mblen_1893", "mblen"); +__static_renaming("__mbtowc_1898", "mbtowc"); +__static_renaming("__mbtowc_1899", "mbtowc"); +__static_renaming("__wctomb_1902", "wctomb"); +__static_renaming("__mbstowcs_1907", "mbstowcs"); +__static_renaming("__mbstowcs_1908", "mbstowcs"); +__static_renaming("__wcstombs_1913", "wcstombs"); +__static_renaming("__wcstombs_1914", "wcstombs"); +__static_renaming("__rpmatch_1916", "rpmatch"); +__static_renaming("__rpmatch_1917", "rpmatch"); +__static_renaming("__getsubopt_1921", "getsubopt"); +__static_renaming("__getsubopt_1922", "getsubopt"); +__static_renaming("__getloadavg_1925", "getloadavg"); +__static_renaming("____realpath_chk_1931", "__realpath_chk"); +__static_renaming("____realpath_chk_1932", "__realpath_chk"); +__static_renaming("____realpath_alias_1935", "__realpath_alias"); +__static_renaming("____realpath_chk_warn_1940", "__realpath_chk_warn"); +__static_renaming("____realpath_chk_warn_1941", "__realpath_chk_warn"); +__static_renaming("____ptsname_r_chk_1951", "__ptsname_r_chk"); +__static_renaming("____ptsname_r_chk_1952", "__ptsname_r_chk"); +__static_renaming("____ptsname_r_alias_1957", "__ptsname_r_alias"); +__static_renaming("____ptsname_r_alias_1958", "__ptsname_r_alias"); +__static_renaming("____ptsname_r_chk_warn_1965", "__ptsname_r_chk_warn"); +__static_renaming("____ptsname_r_chk_warn_1966", "__ptsname_r_chk_warn"); +__static_renaming("____wctomb_chk_1977", "__wctomb_chk"); +__static_renaming("____wctomb_chk_1978", "__wctomb_chk"); +__static_renaming("____wctomb_alias_1981", "__wctomb_alias"); +__static_renaming("____mbstowcs_chk_1990", "__mbstowcs_chk"); +__static_renaming("____mbstowcs_chk_1991", "__mbstowcs_chk"); +__static_renaming("____mbstowcs_alias_1996", "__mbstowcs_alias"); +__static_renaming("____mbstowcs_alias_1997", "__mbstowcs_alias"); +__static_renaming("____mbstowcs_chk_warn_2004", "__mbstowcs_chk_warn"); +__static_renaming("____mbstowcs_chk_warn_2005", "__mbstowcs_chk_warn"); +__static_renaming("____wcstombs_chk_2016", "__wcstombs_chk"); +__static_renaming("____wcstombs_chk_2017", "__wcstombs_chk"); +__static_renaming("____wcstombs_alias_2022", "__wcstombs_alias"); +__static_renaming("____wcstombs_alias_2023", "__wcstombs_alias"); +__static_renaming("____wcstombs_chk_warn_2030", "__wcstombs_chk_warn"); +__static_renaming("____wcstombs_chk_warn_2031", "__wcstombs_chk_warn"); +__static_renaming("__ptrdiff_t_2036", "ptrdiff_t"); +__static_renaming("__size_t_2037", "size_t"); +__static_renaming("__memmove_2053", "memmove"); +__static_renaming("__memmove_2054", "memmove"); +__static_renaming("__memmove_2055", "memmove"); +__static_renaming("__memset_2070", "memset"); +__static_renaming("__memset_2071", "memset"); +__static_renaming("__memset_2072", "memset"); +__static_renaming("__memset_2073", "memset"); +__static_renaming("__memset_2074", "memset"); +__static_renaming("__memset_2075", "memset"); +__static_renaming("__memcmp_2081", "memcmp"); +__static_renaming("__memcmp_2082", "memcmp"); +__static_renaming("__memcmp_2083", "memcmp"); +__static_renaming("__memchr_2089", "memchr"); +__static_renaming("__memchr_2090", "memchr"); +__static_renaming("__memchr_2091", "memchr"); +__static_renaming("__strcpy_2094", "strcpy"); +__static_renaming("__strncpy_2100", "strncpy"); +__static_renaming("__strncpy_2101", "strncpy"); +__static_renaming("__strncpy_2102", "strncpy"); +__static_renaming("__strcat_2105", "strcat"); +__static_renaming("__strncat_2111", "strncat"); +__static_renaming("__strncat_2112", "strncat"); +__static_renaming("__strncat_2113", "strncat"); +__static_renaming("__strcmp_2116", "strcmp"); +__static_renaming("__strncmp_2122", "strncmp"); +__static_renaming("__strncmp_2123", "strncmp"); +__static_renaming("__strncmp_2124", "strncmp"); +__static_renaming("__strcoll_2127", "strcoll"); +__static_renaming("__strxfrm_2133", "strxfrm"); +__static_renaming("__strxfrm_2134", "strxfrm"); +__static_renaming("__strxfrm_2135", "strxfrm"); +__static_renaming("____locale_t_2143", "__locale_t"); +__static_renaming("__locale_t_2144", "locale_t"); +__static_renaming("__strcoll_l_2148", "strcoll_l"); +__static_renaming("__strxfrm_l_2155", "strxfrm_l"); +__static_renaming("__strxfrm_l_2156", "strxfrm_l"); +__static_renaming("__strxfrm_l_2157", "strxfrm_l"); +__static_renaming("__strdup_2159", "strdup"); +__static_renaming("__strndup_2164", "strndup"); +__static_renaming("__strndup_2165", "strndup"); +__static_renaming("__strndup_2166", "strndup"); +__static_renaming("__strchr_2169", "strchr"); +__static_renaming("__strrchr_2172", "strrchr"); +__static_renaming("__strcspn_2175", "strcspn"); +__static_renaming("__strcspn_2176", "strcspn"); +__static_renaming("__strcspn_2177", "strcspn"); +__static_renaming("__strspn_2180", "strspn"); +__static_renaming("__strspn_2181", "strspn"); +__static_renaming("__strspn_2182", "strspn"); +__static_renaming("__strpbrk_2185", "strpbrk"); +__static_renaming("__strstr_2188", "strstr"); +__static_renaming("__strtok_2191", "strtok"); +__static_renaming("____strtok_r_2195", "__strtok_r"); +__static_renaming("__strtok_r_2199", "strtok_r"); +__static_renaming("__strlen_2201", "strlen"); +__static_renaming("__strlen_2202", "strlen"); +__static_renaming("__strlen_2203", "strlen"); +__static_renaming("__strlen_2204", "strlen"); +__static_renaming("__strlen_2205", "strlen"); +__static_renaming("__strlen_2206", "strlen"); +__static_renaming("__strnlen_2211", "strnlen"); +__static_renaming("__strnlen_2212", "strnlen"); +__static_renaming("__strnlen_2213", "strnlen"); +__static_renaming("__strerror_2215", "strerror"); +__static_renaming("__strerror_2216", "strerror"); +__static_renaming("__strerror_r_2222", "strerror_r"); +__static_renaming("__strerror_r_2223", "strerror_r"); +__static_renaming("__strerror_r_2224", "strerror_r"); +__static_renaming("__strerror_l_2227", "strerror_l"); +__static_renaming("____bzero_2232", "__bzero"); +__static_renaming("____bzero_2233", "__bzero"); +__static_renaming("____bzero_2234", "__bzero"); +__static_renaming("____bzero_2235", "__bzero"); +__static_renaming("____bzero_2236", "__bzero"); +__static_renaming("____bzero_2237", "__bzero"); +__static_renaming("__bcopy_2243", "bcopy"); +__static_renaming("__bcopy_2244", "bcopy"); +__static_renaming("__bcopy_2245", "bcopy"); +__static_renaming("__bzero_2250", "bzero"); +__static_renaming("__bzero_2251", "bzero"); +__static_renaming("__bzero_2252", "bzero"); +__static_renaming("__bcmp_2258", "bcmp"); +__static_renaming("__bcmp_2259", "bcmp"); +__static_renaming("__bcmp_2260", "bcmp"); +__static_renaming("__index_2263", "index"); +__static_renaming("__rindex_2266", "rindex"); +__static_renaming("__ffs_2268", "ffs"); +__static_renaming("__strcasecmp_2271", "strcasecmp"); +__static_renaming("__strncasecmp_2277", "strncasecmp"); +__static_renaming("__strncasecmp_2278", "strncasecmp"); +__static_renaming("__strncasecmp_2279", "strncasecmp"); +__static_renaming("__strsep_2282", "strsep"); +__static_renaming("__strsignal_2284", "strsignal"); +__static_renaming("____stpcpy_2287", "__stpcpy"); +__static_renaming("__stpcpy_2290", "stpcpy"); +__static_renaming("____stpncpy_2296", "__stpncpy"); +__static_renaming("____stpncpy_2297", "__stpncpy"); +__static_renaming("____stpncpy_2298", "__stpncpy"); +__static_renaming("__stpncpy_2304", "stpncpy"); +__static_renaming("__stpncpy_2305", "stpncpy"); +__static_renaming("__stpncpy_2306", "stpncpy"); +__static_renaming("____stpncpy_chk_2360", "__stpncpy_chk"); +__static_renaming("____stpncpy_chk_2361", "__stpncpy_chk"); +__static_renaming("____stpncpy_chk_2362", "__stpncpy_chk"); +__static_renaming("____stpncpy_alias_2368", "__stpncpy_alias"); +__static_renaming("____stpncpy_alias_2369", "__stpncpy_alias"); +__static_renaming("____stpncpy_alias_2370", "__stpncpy_alias"); +__static_renaming("__content_gzip_2390", "content_gzip"); +__static_renaming("__authorized_2391", "authorized"); +__static_renaming("__iobuf_2392", "iobuf"); +__static_renaming("__iobuf_2393", "iobuf"); +__static_renaming("__iobuf_2394", "iobuf"); +__static_renaming("__iobuf_2395", "iobuf"); +__static_renaming("__iobuf_2397", "iobuf"); +__static_renaming("__iobuf_2398", "iobuf"); +__static_renaming("__iobuf_2399", "iobuf"); +__static_renaming("__iobuf_2400", "iobuf"); +__static_renaming("__mime_type_2403", "mime_type"); +__static_renaming("__len_2404", "len"); +__static_renaming("__send_headers_2405", "send_headers"); +__static_renaming("__send_headers_and_exit_2436", "send_headers_and_exit"); +__static_renaming("__s_2437", "s"); +__static_renaming("__s_2438", "s"); +__static_renaming("__s_2439", "s"); +__static_renaming("__s_2440", "s"); +__static_renaming("__s_2441", "s"); +__static_renaming("__s_2442", "s"); +__static_renaming("__s_2443", "s"); +__static_renaming("__s_2444", "s"); +__static_renaming("__handle_incoming_and_exit_2447", "handle_incoming_and_exit"); +__static_renaming("__mini_httpd_2471", "mini_httpd"); +__static_renaming("__main_2475", "main"); +__static_renaming("__main_2476", "main"); + +__static_condition_renaming("__static_condition_default_53", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_76", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_84", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_123", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_169", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_170", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_173", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_182", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_187", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_193", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_198", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_201", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_204", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_210", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_217", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_223", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_229", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_235", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_238", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_241", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_244", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_246", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_248", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_249", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_250", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_253", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_255", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_257", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_258", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_259", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_263", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_264", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_267", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_270", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_271", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_274", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_275", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_278", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_280", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); +__static_condition_renaming("__static_condition_default_282", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_284", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_286", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_288", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_290", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_293", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_296", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_299", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_311", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_313", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_315", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_317", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_331", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_333", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_337", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_341", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_345", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_347", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_355", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_357", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_363", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_365", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_367", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_369", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_373", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_375", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_380", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_382", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_386", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_388", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_393", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_395", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_402", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_408", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_412", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_417", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_419", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_431", "!(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_432", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_433", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_438", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_444", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_455", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_461", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_469", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_471", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_473", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_475", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_486", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_488", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_489", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_491", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_493", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_494", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_497", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_499", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_503", "!(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_510", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_511", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_512", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_514", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_515", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_516", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_521", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_523", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_529", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_536", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_537", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_538", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_539", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_541", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_542", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_543", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_544", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_549", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_550", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_552", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_553", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_559", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_560", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_564", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_568", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_573", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_578", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_583", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_585", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_590", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_597", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_602", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_608", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_613", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_619", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_621", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_623", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_625", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_632", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_633", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_634", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_636", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_637", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_638", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_645", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_646", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_647", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_649", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_650", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_651", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_657", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_658", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_659", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_661", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_662", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_663", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_668", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_670", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_677", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_683", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_684", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_685", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_686", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_692", "!(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_693", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_699", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_700", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_701", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_702", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_708", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_709", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_715", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_717", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_721", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_723", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_727", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_734", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_735", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_736", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_745", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_746", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_747", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_751", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_752", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_753", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_755", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_756", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_757", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_759", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_760", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_761", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_767", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_768", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_769", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_779", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_780", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_781", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_787", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_788", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_789", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_791", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_792", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_793", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_797", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_801", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_803", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_807", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_809", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_813", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_817", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_819", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_823", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_825", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_834", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_836", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_840", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_842", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_846", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_848", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_852", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_858", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_862", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_864", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_868", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_872", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_875", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_878", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_883", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_887", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_891", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_894", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_907", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_914", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_929", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_938", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_944", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_955", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_956", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_957", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_963", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_967", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_972", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_978", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_979", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_980", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_991", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_998", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1005", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1007", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1009", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1015", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1022", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1027", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1028", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1035", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1036", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1042", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1043", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1050", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1051", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1057", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1058", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1065", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1066", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1072", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1073", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1080", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1081", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1089", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_1090", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1091", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1152", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1159", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1164", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1165", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1315", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1341", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __u_char_defined)"); +__static_condition_renaming("__static_condition_default_1345", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __u_char_defined)"); +__static_condition_renaming("__static_condition_default_1349", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __u_char_defined)"); +__static_condition_renaming("__static_condition_default_1353", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined)"); +__static_condition_renaming("__static_condition_default_1357", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined)"); +__static_condition_renaming("__static_condition_default_1361", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_1365", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_1369", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_1373", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1377", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __nlink_t_defined)"); +__static_condition_renaming("__static_condition_default_1381", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __nlink_t_defined)"); +__static_condition_renaming("__static_condition_default_1385", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __nlink_t_defined)"); +__static_condition_renaming("__static_condition_default_1388", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1391", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1395", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && (defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1398", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1402", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __id_t_defined)"); +__static_condition_renaming("__static_condition_default_1405", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1409", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_1416", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_1420", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_1424", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __clock_t_defined)"); +__static_condition_renaming("__static_condition_default_1428", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __time_t_defined)"); +__static_condition_renaming("__static_condition_default_1432", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __clockid_t_defined)"); +__static_condition_renaming("__static_condition_default_1436", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timer_t_defined)"); +__static_condition_renaming("__static_condition_default_1453", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1458", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1459", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1475", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_1485", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_1489", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __suseconds_t_defined)"); +__static_condition_renaming("__static_condition_default_1498", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1515", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_1516", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_1531", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_1532", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_1552", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blksize_t_defined)"); +__static_condition_renaming("__static_condition_default_1556", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined)"); +__static_condition_renaming("__static_condition_default_1560", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1564", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined)"); +__static_condition_renaming("__static_condition_default_1568", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1572", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1576", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1749", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1750", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1753", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1754", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1773", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1774", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1775", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1776", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1785", "!(defined __need___FILE) && !(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1787", "(defined __need___FILE) && !(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1789", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1791", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1808", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1810", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1814", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1816", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1944", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_2043", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_2044", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_2045", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _STDLIB_H) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDLIB_H) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDLIB_H) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDLIB_H) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2046", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2047", "(defined __need___FILE) && (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2062", "!(defined __need___FILE) && !(defined __STRICT_ANSI__)"); +__static_condition_renaming("__static_condition_default_2063", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2064", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2312", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2313", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2314", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2320", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2321", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2322", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2328", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2329", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2330", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2342", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2343", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2349", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2350", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2351", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2376", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2377", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2378", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2381", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2387", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2388", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2389", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2396", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __STRICT_ANSI__) && (defined _STDLIB_H) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && (defined _STDLIB_H) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH"); +__static_condition_renaming("__static_condition_default_2401", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __STRICT_ANSI__) && (defined _STDLIB_H) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || (defined __STRICT_ANSI__) && (defined _STDLIB_H) && ENABLE_FEATURE_HTTPD_BASIC_AUTH"); +__static_condition_renaming("__static_condition_default_2406", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH"); +__static_condition_renaming("__static_condition_default_2407", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH"); +__static_condition_renaming("__static_condition_default_2408", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH"); +__static_condition_renaming("__static_condition_default_2409", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH"); +__static_condition_renaming("__static_condition_default_2410", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _STDLIB_H) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _STDLIB_H) || (defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_2411", "(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_2412", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_2413", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_2414", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_2415", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_2416", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_2417", "(defined ENABLE_FEATURE_HTTPD_GZIP) && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_2418", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_2419", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_2420", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_2421", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_2422", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_2423", "(defined ENABLE_FEATURE_HTTPD_GZIP) && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_2424", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_2425", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_2426", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_2427", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_2428", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined ENABLE_FEATURE_HTTPD_GZIP) && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined ENABLE_FEATURE_HTTPD_GZIP) && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && (defined ENABLE_FEATURE_HTTPD_GZIP) && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_2429", "!(defined ENABLE_FEATURE_HTTPD_GZIP)"); +__static_condition_renaming("__static_condition_default_2430", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH"); +__static_condition_renaming("__static_condition_default_2431", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH"); +__static_condition_renaming("__static_condition_default_2432", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH"); +__static_condition_renaming("__static_condition_default_2433", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && ENABLE_FEATURE_HTTPD_BASIC_AUTH"); +__static_condition_renaming("__static_condition_default_2434", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _STDLIB_H) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _STDLIB_H) || (defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_2445", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) || !(defined __STRICT_ANSI__) && (defined _STDLIB_H) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) || (defined __STRICT_ANSI__) && (defined _STDLIB_H) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP)"); +__static_condition_renaming("__static_condition_default_2446", "(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP)"); +__static_condition_renaming("__static_condition_default_2448", "!(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_2449", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_2450", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_2451", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_2452", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_2453", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_2454", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_2455", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_2456", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_2457", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_2458", "(defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_2459", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_2460", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_2461", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_2462", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && !ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_2463", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_2464", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_2465", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_2466", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_2467", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || !(defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined ENABLE_FEATURE_HTTPD_GZIP) && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_HTTPD_GZIP) && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined ENABLE_FEATURE_HTTPD_GZIP) && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH) || (defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined ENABLE_FEATURE_HTTPD_GZIP) && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_2468", "(defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_2469", "!(defined ENABLE_FEATURE_HTTPD_GZIP) && ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_2470", "!ENABLE_FEATURE_HTTPD_BASIC_AUTH && (defined ENABLE_FEATURE_HTTPD_BASIC_AUTH)"); +__static_condition_renaming("__static_condition_default_2472", "(defined BB_MMU)"); +__static_condition_renaming("__static_condition_default_2477", "!(defined BB_MMU)"); +__static_condition_renaming("__static_condition_default_2478", "(defined BB_MMU)"); +__static_condition_renaming("__static_condition_default_2479", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && (defined _STDLIB_H) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && (defined _STDLIB_H) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO)"); + +if (__static_condition_default_2479) { __static_parse_error("Unable to parse"); } }; @@ -1234,311 +1776,514 @@ typedef long int ____ssize_t_49;// L110:L172 typedef long int ____syscall_slong_t_50;// L93:L175 typedef unsigned long int ____syscall_ulong_t_51;// L94:L177 typedef ____off64_t_24 ____loff_t_52;// L181 -typedef ____quad_t_14 * (____qaddr_t_53);// L182 -typedef char * (____caddr_t_54);// L183 -typedef long int ____intptr_t_55;// L110:L186 -typedef unsigned int ____socklen_t_56;// L92:L189 -typedef struct __forward_tag_reference_57 __FILE_58;// L48 -typedef struct __forward_tag_reference_57 ____FILE_59;// L64 -union ____anonymous_tag_60_61 { -unsigned int ____wch_62;// L265 -char ____wchb_63[4];// L92 +typedef ____quad_t_14 * (____qaddr_t_54);// L182 +typedef char * (____caddr_t_55);// L183 +typedef long int ____intptr_t_56;// L110:L186 +typedef unsigned int ____socklen_t_57;// L92:L189 +typedef struct __forward_tag_reference_58 __FILE_59;// L48 +typedef struct __forward_tag_reference_58 ____FILE_60;// L64 +union ____anonymous_tag_61_62 { +unsigned int ____wch_63;// L265 +char ____wchb_64[4];// L92 }; -struct ____anonymous_tag_64_65 { -int ____count_66;// L84 -union ____anonymous_tag_60_61 ____value_67;// L85 +struct ____anonymous_tag_65_66 { +int ____count_67;// L84 +union ____anonymous_tag_61_62 ____value_68;// L85 }; -typedef struct ____anonymous_tag_64_65 ____mbstate_t_68;// L82:L94 -struct ____anonymous_tag_69_70 { -____off_t_23 ____pos_71;// L0 -____mbstate_t_68 ____state_72;// L0 +typedef struct ____anonymous_tag_65_66 ____mbstate_t_69;// L82:L94 +struct ____anonymous_tag_70_71 { +____off_t_23 ____pos_72;// L0 +____mbstate_t_69 ____state_74;// L0 }; -typedef struct ____anonymous_tag_69_70 ___G_fpos_t_75;// L21:L25 -struct ____anonymous_tag_76_77 { -____off64_t_24 ____pos_78;// L0 -____mbstate_t_68 ____state_79;// L0 +typedef struct ____anonymous_tag_70_71 ___G_fpos_t_77;// L21:L25 +struct ____anonymous_tag_78_79 { +____off64_t_24 ____pos_80;// L0 +____mbstate_t_69 ____state_82;// L0 }; -typedef struct ____anonymous_tag_76_77 ___G_fpos64_t_81;// L26:L30 -typedef __builtin_va_list ____gnuc_va_list_82;// L40 -typedef void ___IO_lock_t_84;// L150 -struct ___IO_marker_86 { -struct __forward_tag_reference_85 * (___next_87);// L0 -struct __forward_tag_reference_57 * (___sbuf_88);// L0 -int ___pos_89;// L162 +typedef struct ____anonymous_tag_78_79 ___G_fpos64_t_85;// L26:L30 +typedef __builtin_va_list ____gnuc_va_list_86;// L40 +typedef void ___IO_lock_t_88;// L150 +struct ___IO_marker_90 { +struct __forward_tag_reference_89 * (___next_91);// L0 +struct __forward_tag_reference_58 * (___sbuf_92);// L0 +int ___pos_93;// L162 }; -enum ____codecvt_result_94 { -____codecvt_ok_90, -____codecvt_partial_91, -____codecvt_error_92, -____codecvt_noconv_93, +enum ____codecvt_result_98 { +____codecvt_ok_94, +____codecvt_partial_95, +____codecvt_error_96, +____codecvt_noconv_97, }; -struct ___IO_FILE_95 { -int ___flags_96;// L242 -char * (___IO_read_ptr_97);// L247 -char * (___IO_read_end_98);// L248 -char * (___IO_read_base_99);// L249 -char * (___IO_write_base_100);// L250 -char * (___IO_write_ptr_101);// L251 -char * (___IO_write_end_102);// L252 -char * (___IO_buf_base_103);// L253 -char * (___IO_buf_end_104);// L254 -char * (___IO_save_base_105);// L256 -char * (___IO_backup_base_106);// L257 -char * (___IO_save_end_107);// L258 -struct ___IO_marker_86 * (___markers_108);// L260 -struct __forward_tag_reference_57 * (___chain_109);// L0 -int ___fileno_110;// L264 -int ___flags2_111;// L268 -____off_t_23 ___old_offset_112;// L0 -unsigned short ___cur_column_113;// L274 -signed char ___vtable_offset_114;// L275 -char ___shortbuf_115[1];// L276 -___IO_lock_t_84 * (___lock_116);// L0 +struct ___IO_FILE_99 { +int ___flags_100;// L242 +char * (___IO_read_ptr_101);// L247 +char * (___IO_read_end_102);// L248 +char * (___IO_read_base_103);// L249 +char * (___IO_write_base_104);// L250 +char * (___IO_write_ptr_105);// L251 +char * (___IO_write_end_106);// L252 +char * (___IO_buf_base_107);// L253 +char * (___IO_buf_end_108);// L254 +char * (___IO_save_base_109);// L256 +char * (___IO_backup_base_110);// L257 +char * (___IO_save_end_111);// L258 +struct ___IO_marker_90 * (___markers_112);// L260 +struct __forward_tag_reference_58 * (___chain_113);// L0 +int ___fileno_114;// L264 +int ___flags2_115;// L268 +____off_t_23 ___old_offset_116;// L0 +unsigned short ___cur_column_118;// L274 +signed char ___vtable_offset_119;// L275 +char ___shortbuf_120[1];// L276 +___IO_lock_t_88 * (___lock_121);// L0 }; -struct ___IO_FILE_119 { -int ___flags_120;// L242 -char * (___IO_read_ptr_121);// L247 -char * (___IO_read_end_122);// L248 -char * (___IO_read_base_123);// L249 -char * (___IO_write_base_124);// L250 -char * (___IO_write_ptr_125);// L251 -char * (___IO_write_end_126);// L252 -char * (___IO_buf_base_127);// L253 -char * (___IO_buf_end_128);// L254 -char * (___IO_save_base_129);// L256 -char * (___IO_backup_base_130);// L257 -char * (___IO_save_end_131);// L258 -struct ___IO_marker_86 * (___markers_132);// L260 -struct __forward_tag_reference_57 * (___chain_133);// L0 -int ___fileno_134;// L264 -int ___flags2_135;// L268 -____off_t_23 ___old_offset_136;// L0 -unsigned short ___cur_column_137;// L274 -signed char ___vtable_offset_138;// L275 -char ___shortbuf_139[1];// L276 -___IO_lock_t_84 * (___lock_140);// L0 -____off64_t_24 ___offset_142;// L0 -void * (____pad1_143);// L297 -void * (____pad2_144);// L298 -void * (____pad3_145);// L299 -void * (____pad4_146);// L300 -__size_t_1 ____pad5_147;// L0 -int ___mode_148;// L303 -char ___unused2_149[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +struct ___IO_FILE_124 { +int ___flags_125;// L242 +char * (___IO_read_ptr_126);// L247 +char * (___IO_read_end_127);// L248 +char * (___IO_read_base_128);// L249 +char * (___IO_write_base_129);// L250 +char * (___IO_write_ptr_130);// L251 +char * (___IO_write_end_131);// L252 +char * (___IO_buf_base_132);// L253 +char * (___IO_buf_end_133);// L254 +char * (___IO_save_base_134);// L256 +char * (___IO_backup_base_135);// L257 +char * (___IO_save_end_136);// L258 +struct ___IO_marker_90 * (___markers_137);// L260 +struct __forward_tag_reference_58 * (___chain_138);// L0 +int ___fileno_139;// L264 +int ___flags2_140;// L268 +____off_t_23 ___old_offset_141;// L0 +unsigned short ___cur_column_143;// L274 +signed char ___vtable_offset_144;// L275 +char ___shortbuf_145[1];// L276 +___IO_lock_t_88 * (___lock_146);// L0 +____off64_t_24 ___offset_148;// L0 +void * (____pad1_150);// L297 +void * (____pad2_151);// L298 +void * (____pad3_152);// L299 +void * (____pad4_153);// L300 +__size_t_1 ____pad5_154;// L0 +int ___mode_155;// L303 +char ___unused2_156[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -struct ___IO_FILE_complete_150 { -struct ___IO_FILE_95 ___file_151;// L286 -____off64_t_24 ___offset_153;// L0 -void * (____pad1_154);// L297 -void * (____pad2_155);// L298 -void * (____pad3_156);// L299 -void * (____pad4_157);// L300 -__size_t_1 ____pad5_158;// L0 -int ___mode_159;// L303 -char ___unused2_160[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +struct ___IO_FILE_complete_157 { +struct ___IO_FILE_99 ___file_158;// L286 +____off64_t_24 ___offset_160;// L0 +void * (____pad1_162);// L297 +void * (____pad2_163);// L298 +void * (____pad3_164);// L299 +void * (____pad4_165);// L300 +__size_t_1 ____pad5_166;// L0 +int ___mode_167;// L303 +char ___unused2_168[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -typedef struct ___IO_FILE_95 ___IO_FILE_163;// L310 -typedef struct ___IO_FILE_119 ___IO_FILE_164;// L310 -typedef ____ssize_t_49 (____io_read_fn_173) (void * (____cookie_170), char * (____buf_171), __size_t_1 ____nbytes_172);// L333 -typedef ____ssize_t_49 (____io_write_fn_177) (void * (____cookie_174), const char * (____buf_175), __size_t_1 ____n_176);// L341:L342 -typedef int (____io_seek_fn_181) (void * (____cookie_178), ____off64_t_24 * (____pos_179), int ____w_180);// L350 -typedef int (____io_close_fn_183) (void * (____cookie_182));// L353 -typedef ____gnuc_va_list_82 __va_list_248;// L79 -typedef ____off_t_23 __off_t_250;// L90 -typedef ____off64_t_24 __off_t_251;// L92 -typedef ____ssize_t_49 __ssize_t_252;// L102 -typedef ___G_fpos_t_75 __fpos_t_253;// L110 -typedef ___G_fpos64_t_81 __fpos_t_255;// L112 -extern const char * const __sys_errlist_756[];// L27 -typedef int __wchar_t_1018;// L243:L321 -enum ____anonymous_tag_1022_1023 { -__P_ALL_1019, -__P_PID_1020, -__P_PGID_1021, +typedef struct ___IO_FILE_99 ___IO_FILE_171;// L310 +typedef struct ___IO_FILE_124 ___IO_FILE_172;// L310 +typedef ____ssize_t_49 (____io_read_fn_181) (void * (____cookie_178), char * (____buf_179), __size_t_1 ____nbytes_180);// L333 +typedef ____ssize_t_49 (____io_write_fn_186) (void * (____cookie_183), const char * (____buf_184), __size_t_1 ____n_185);// L341:L342 +typedef int (____io_seek_fn_192) (void * (____cookie_188), ____off64_t_24 * (____pos_189), int ____w_191);// L350 +typedef int (____io_close_fn_195) (void * (____cookie_194));// L353 +typedef ____gnuc_va_list_86 __va_list_279;// L79 +typedef ____off_t_23 __off_t_281;// L90 +typedef ____off64_t_24 __off_t_283;// L92 +typedef ____ssize_t_49 __ssize_t_285;// L102 +typedef ___G_fpos_t_77 __fpos_t_287;// L110 +typedef ___G_fpos64_t_85 __fpos_t_289;// L112 +extern const char * const __sys_errlist_830[];// L27 +typedef long int __ptrdiff_t_1092;// L143:L324 +typedef long unsigned int __size_t_1093;// L177:L209 +typedef int __wchar_t_1094;// L243:L321 +enum ____anonymous_tag_1098_1099 { +__P_ALL_1095, +__P_PID_1096, +__P_PGID_1097, }; -typedef enum ____anonymous_tag_1022_1023 __idtype_t_1024;// L50:L55 -struct ____anonymous_tag_1030_1031 { -unsigned int ____w_termsig_1032 : 7;// L72 -unsigned int ____w_coredump_1033 : 1;// L73 -unsigned int ____w_retcode_1034 : 8;// L74 -unsigned int __anon_id_0_1035 : 16;// L75 +typedef enum ____anonymous_tag_1098_1099 __idtype_t_1100;// L50:L55 +typedef unsigned char ____u_char_1101;// L30 +typedef unsigned short int ____u_short_1102;// L31 +typedef unsigned int ____u_int_1103;// L32 +typedef unsigned long int ____u_long_1104;// L33 +typedef signed char ____int8_t_1105;// L36 +typedef unsigned char ____uint8_t_1106;// L37 +typedef signed short int ____int16_t_1107;// L38 +typedef unsigned short int ____uint16_t_1108;// L39 +typedef signed int ____int32_t_1109;// L40 +typedef unsigned int ____uint32_t_1110;// L41 +typedef signed long int ____int64_t_1111;// L43 +typedef unsigned long int ____uint64_t_1112;// L44 +typedef long int ____quad_t_1113;// L52 +typedef unsigned long int ____u_quad_t_1114;// L53 +typedef unsigned long int ____dev_t_1115;// L109:L124 +typedef unsigned int ____uid_t_1116;// L92:L125 +typedef unsigned int ____gid_t_1117;// L92:L126 +typedef unsigned long int ____ino_t_1118;// L94:L127 +typedef unsigned long int ____ino64_t_1119;// L109:L128 +typedef unsigned int ____mode_t_1120;// L92:L129 +typedef unsigned long int ____nlink_t_1121;// L94:L130 +typedef long int ____off_t_1122;// L93:L131 +typedef long int ____off64_t_1123;// L108:L132 +typedef int ____pid_t_1124;// L91:L133 +struct ____anonymous_tag_1125_1126 { +int ____val_1127[2];// L72 }; -struct ____anonymous_tag_1036_1037 { -unsigned int ____w_stopval_1038 : 8;// L87 -unsigned int ____w_stopsig_1039 : 8;// L88 -unsigned int __anon_id_1_1040 : 16;// L89 +typedef struct ____anonymous_tag_1125_1126 ____fsid_t_1128;// L72:L134 +typedef long int ____clock_t_1129;// L93:L135 +typedef unsigned long int ____rlim_t_1130;// L94:L136 +typedef unsigned long int ____rlim64_t_1131;// L109:L137 +typedef unsigned int ____id_t_1132;// L92:L138 +typedef long int ____time_t_1133;// L93:L139 +typedef unsigned int ____useconds_t_1134;// L92:L140 +typedef long int ____suseconds_t_1135;// L93:L141 +typedef int ____daddr_t_1136;// L91:L143 +typedef int ____key_t_1137;// L91:L144 +typedef int ____clockid_t_1138;// L91:L147 +typedef void * (____timer_t_1139);// L70:L150 +typedef long int ____blksize_t_1140;// L93:L153 +typedef long int ____blkcnt_t_1141;// L93:L158 +typedef long int ____blkcnt64_t_1142;// L108:L159 +typedef unsigned long int ____fsblkcnt_t_1143;// L94:L162 +typedef unsigned long int ____fsblkcnt64_t_1144;// L109:L163 +typedef unsigned long int ____fsfilcnt_t_1145;// L94:L166 +typedef unsigned long int ____fsfilcnt64_t_1146;// L109:L167 +typedef long int ____fsword_t_1147;// L93:L170 +typedef long int ____ssize_t_1148;// L110:L172 +typedef long int ____syscall_slong_t_1149;// L93:L175 +typedef unsigned long int ____syscall_ulong_t_1150;// L94:L177 +typedef ____off64_t_1123 ____loff_t_1151;// L181 +typedef ____quad_t_1113 * (____qaddr_t_1153);// L182 +typedef char * (____caddr_t_1154);// L183 +typedef long int ____intptr_t_1155;// L110:L186 +typedef unsigned int ____socklen_t_1156;// L92:L189 +struct ____anonymous_tag_1166_1167 { +unsigned int ____w_termsig_1168 : 7;// L72 +unsigned int ____w_coredump_1169 : 1;// L73 +unsigned int ____w_retcode_1170 : 8;// L74 +unsigned int __anon_id_0_1171 : 16;// L75 }; -union __wait_1041 { -int __w_status_1042;// L68 -struct ____anonymous_tag_1030_1031 ____wait_terminated_1043;// L69 -struct ____anonymous_tag_1036_1037 ____wait_stopped_1044;// L84 +struct ____anonymous_tag_1172_1173 { +unsigned int ____w_stopval_1174 : 8;// L87 +unsigned int ____w_stopsig_1175 : 8;// L88 +unsigned int __anon_id_1_1176 : 16;// L89 }; -union ____anonymous_tag_1045_1046 { -union __wait_1041 * (____uptr_1047);// L69 -int * (____iptr_1048);// L70 +union __wait_1177 { +int __w_status_1178;// L68 +struct ____anonymous_tag_1166_1167 ____wait_terminated_1179;// L69 +struct ____anonymous_tag_1172_1173 ____wait_stopped_1180;// L84 }; -typedef union ____anonymous_tag_1045_1046 ____WAIT_STATUS_1049;// L67:L71 -struct ____anonymous_tag_1050_1051 { -int __quot_1052;// L99 -int __rem_1053;// L100 +union ____anonymous_tag_1181_1182 { +union __wait_1177 * (____uptr_1183);// L69 +int * (____iptr_1184);// L70 }; -typedef struct ____anonymous_tag_1050_1051 __div_t_1054;// L97:L101 -struct ____anonymous_tag_1055_1056 { -long int __quot_1057;// L107 -long int __rem_1058;// L108 +typedef union ____anonymous_tag_1181_1182 ____WAIT_STATUS_1185;// L67:L71 +struct ____anonymous_tag_1186_1187 { +int __quot_1188;// L99 +int __rem_1189;// L100 }; -typedef struct ____anonymous_tag_1055_1056 __ldiv_t_1059;// L105:L109 -struct ____anonymous_tag_1060_1061 { -long long int __quot_1062;// L119 -long long int __rem_1063;// L120 +typedef struct ____anonymous_tag_1186_1187 __div_t_1190;// L97:L101 +struct ____anonymous_tag_1191_1192 { +long int __quot_1193;// L107 +long int __rem_1194;// L108 }; -typedef struct ____anonymous_tag_1060_1061 __lldiv_t_1064;// L117:L121 -typedef ____u_char_2 __u_char_1124;// L33 -typedef ____u_short_3 __u_short_1125;// L34 -typedef ____u_int_4 __u_int_1126;// L35 -typedef ____u_long_5 __u_long_1127;// L36 -typedef ____quad_t_14 __quad_t_1128;// L37 -typedef ____u_quad_t_15 __u_quad_t_1129;// L38 -typedef ____fsid_t_29 __fsid_t_1130;// L39 -typedef ____loff_t_52 __loff_t_1131;// L44 -typedef ____ino_t_19 __ino_t_1132;// L48 -typedef ____ino64_t_20 __ino_t_1133;// L50 -typedef ____dev_t_16 __dev_t_1134;// L60 -typedef ____gid_t_18 __gid_t_1135;// L65 -typedef ____gid_t_18 __gid_t_1136;// L65 -typedef ____mode_t_21 __mode_t_1137;// L70 -typedef ____nlink_t_22 __nlink_t_1138;// L75 -typedef ____uid_t_17 __uid_t_1139;// L80 -typedef ____uid_t_17 __uid_t_1140;// L80 -typedef ____pid_t_25 __pid_t_1141;// L98 -typedef ____id_t_33 __id_t_1142;// L104 -typedef ____daddr_t_37 __daddr_t_1143;// L115 -typedef ____caddr_t_54 __caddr_t_1144;// L116 -typedef ____key_t_38 __key_t_1145;// L122 -typedef ____key_t_38 __key_t_1146;// L122 -typedef ____clock_t_30 __clock_t_1147;// L59 -typedef ____time_t_34 __time_t_1148;// L75 -typedef ____clockid_t_39 __clockid_t_1149;// L91 -typedef ____timer_t_40 __timer_t_1150;// L103 -typedef unsigned long int __ulong_1151;// L150 -typedef unsigned long int __ulong_1152;// L150 -typedef unsigned long int __ulong_1153;// L150 -typedef unsigned short int __ushort_1154;// L151 -typedef unsigned int __uint_1155;// L152 -typedef int __int8_t_1156;// L188:L194 -typedef int __int16_t_1157;// L188:L195 -typedef int __int32_t_1158;// L188:L196 -typedef int __int64_t_1159;// L188:L197 -typedef unsigned int __u_int8_t_1160;// L190:L200 -typedef unsigned int __u_int16_t_1161;// L190:L201 -typedef unsigned int __u_int32_t_1162;// L190:L202 -typedef unsigned int __u_int64_t_1163;// L190:L203 -typedef int __register_t_1164;// L205 -typedef int ____sig_atomic_t_1170;// L22 -struct ____anonymous_tag_1171_1172 { -unsigned long int ____val_1173[( 1024 / ( 8 * sizeof(unsigned long) ) )];// L29 +typedef struct ____anonymous_tag_1191_1192 __ldiv_t_1195;// L105:L109 +struct ____anonymous_tag_1196_1197 { +long long int __quot_1198;// L119 +long long int __rem_1199;// L120 }; -typedef struct ____anonymous_tag_1171_1172 ____sigset_t_1174;// L27:L30 -typedef ____sigset_t_1174 __sigset_t_1175;// L37 -struct __timespec_1176 { -____time_t_34 __tv_sec_1177;// L0 -____syscall_slong_t_50 __tv_nsec_1178;// L0 +typedef struct ____anonymous_tag_1196_1197 __lldiv_t_1200;// L117:L121 +typedef unsigned char ____u_char_1264;// L30 +typedef unsigned short int ____u_short_1265;// L31 +typedef unsigned int ____u_int_1266;// L32 +typedef unsigned long int ____u_long_1267;// L33 +typedef signed char ____int8_t_1268;// L36 +typedef unsigned char ____uint8_t_1269;// L37 +typedef signed short int ____int16_t_1270;// L38 +typedef unsigned short int ____uint16_t_1271;// L39 +typedef signed int ____int32_t_1272;// L40 +typedef unsigned int ____uint32_t_1273;// L41 +typedef signed long int ____int64_t_1274;// L43 +typedef unsigned long int ____uint64_t_1275;// L44 +typedef long int ____quad_t_1276;// L52 +typedef unsigned long int ____u_quad_t_1277;// L53 +typedef unsigned long int ____dev_t_1278;// L109:L124 +typedef unsigned int ____uid_t_1279;// L92:L125 +typedef unsigned int ____gid_t_1280;// L92:L126 +typedef unsigned long int ____ino_t_1281;// L94:L127 +typedef unsigned long int ____ino64_t_1282;// L109:L128 +typedef unsigned int ____mode_t_1283;// L92:L129 +typedef unsigned long int ____nlink_t_1284;// L94:L130 +typedef long int ____off_t_1285;// L93:L131 +typedef long int ____off64_t_1286;// L108:L132 +typedef int ____pid_t_1287;// L91:L133 +struct ____anonymous_tag_1288_1289 { +int ____val_1290[2];// L72 }; -struct __timeval_1179 { -____time_t_34 __tv_sec_1180;// L0 -____suseconds_t_36 __tv_usec_1181;// L0 +typedef struct ____anonymous_tag_1288_1289 ____fsid_t_1291;// L72:L134 +typedef long int ____clock_t_1292;// L93:L135 +typedef unsigned long int ____rlim_t_1293;// L94:L136 +typedef unsigned long int ____rlim64_t_1294;// L109:L137 +typedef unsigned int ____id_t_1295;// L92:L138 +typedef long int ____time_t_1296;// L93:L139 +typedef unsigned int ____useconds_t_1297;// L92:L140 +typedef long int ____suseconds_t_1298;// L93:L141 +typedef int ____daddr_t_1299;// L91:L143 +typedef int ____key_t_1300;// L91:L144 +typedef int ____clockid_t_1301;// L91:L147 +typedef void * (____timer_t_1302);// L70:L150 +typedef long int ____blksize_t_1303;// L93:L153 +typedef long int ____blkcnt_t_1304;// L93:L158 +typedef long int ____blkcnt64_t_1305;// L108:L159 +typedef unsigned long int ____fsblkcnt_t_1306;// L94:L162 +typedef unsigned long int ____fsblkcnt64_t_1307;// L109:L163 +typedef unsigned long int ____fsfilcnt_t_1308;// L94:L166 +typedef unsigned long int ____fsfilcnt64_t_1309;// L109:L167 +typedef long int ____fsword_t_1310;// L93:L170 +typedef long int ____ssize_t_1311;// L110:L172 +typedef long int ____syscall_slong_t_1312;// L93:L175 +typedef unsigned long int ____syscall_ulong_t_1313;// L94:L177 +typedef ____off64_t_1286 ____loff_t_1314;// L181 +typedef ____quad_t_1276 * (____qaddr_t_1316);// L182 +typedef char * (____caddr_t_1317);// L183 +typedef long int ____intptr_t_1318;// L110:L186 +typedef unsigned int ____socklen_t_1319;// L92:L189 +typedef ____u_char_2 __u_char_1320;// L33 +typedef ____u_char_1101 __u_char_1321;// L33 +typedef ____u_char_1264 __u_char_1322;// L33 +typedef ____u_short_3 __u_short_1323;// L34 +typedef ____u_short_1102 __u_short_1324;// L34 +typedef ____u_short_1265 __u_short_1325;// L34 +typedef ____u_int_4 __u_int_1326;// L35 +typedef ____u_int_1103 __u_int_1327;// L35 +typedef ____u_int_1266 __u_int_1328;// L35 +typedef ____u_long_5 __u_long_1329;// L36 +typedef ____u_long_1104 __u_long_1330;// L36 +typedef ____u_long_1267 __u_long_1331;// L36 +typedef ____quad_t_14 __quad_t_1332;// L37 +typedef ____quad_t_1113 __quad_t_1333;// L37 +typedef ____quad_t_1276 __quad_t_1334;// L37 +typedef ____u_quad_t_15 __u_quad_t_1335;// L38 +typedef ____u_quad_t_1114 __u_quad_t_1336;// L38 +typedef ____u_quad_t_1277 __u_quad_t_1337;// L38 +typedef ____fsid_t_29 __fsid_t_1338;// L39 +typedef ____fsid_t_1128 __fsid_t_1339;// L39 +typedef ____fsid_t_1291 __fsid_t_1340;// L39 +typedef ____loff_t_52 __loff_t_1342;// L44 +typedef ____loff_t_1151 __loff_t_1343;// L44 +typedef ____loff_t_1314 __loff_t_1344;// L44 +typedef ____loff_t_52 __loff_t_1346;// L44 +typedef ____loff_t_1151 __loff_t_1347;// L44 +typedef ____loff_t_1314 __loff_t_1348;// L44 +typedef ____ino64_t_20 __ino_t_1350;// L50 +typedef ____ino64_t_1119 __ino_t_1351;// L50 +typedef ____ino64_t_1282 __ino_t_1352;// L50 +typedef ____ino_t_19 __ino_t_1354;// L48 +typedef ____ino_t_1118 __ino_t_1355;// L48 +typedef ____ino_t_1281 __ino_t_1356;// L48 +typedef ____dev_t_16 __dev_t_1358;// L60 +typedef ____dev_t_1115 __dev_t_1359;// L60 +typedef ____dev_t_1278 __dev_t_1360;// L60 +typedef ____gid_t_18 __gid_t_1362;// L65 +typedef ____gid_t_1117 __gid_t_1363;// L65 +typedef ____gid_t_1280 __gid_t_1364;// L65 +typedef ____gid_t_18 __gid_t_1366;// L65 +typedef ____gid_t_1117 __gid_t_1367;// L65 +typedef ____gid_t_1280 __gid_t_1368;// L65 +typedef ____mode_t_21 __mode_t_1370;// L70 +typedef ____mode_t_1120 __mode_t_1371;// L70 +typedef ____mode_t_1283 __mode_t_1372;// L70 +typedef ____nlink_t_22 __nlink_t_1374;// L75 +typedef ____nlink_t_1121 __nlink_t_1375;// L75 +typedef ____nlink_t_1284 __nlink_t_1376;// L75 +typedef ____uid_t_17 __uid_t_1378;// L80 +typedef ____uid_t_1116 __uid_t_1379;// L80 +typedef ____uid_t_1279 __uid_t_1380;// L80 +typedef ____uid_t_17 __uid_t_1382;// L80 +typedef ____uid_t_1116 __uid_t_1383;// L80 +typedef ____uid_t_1279 __uid_t_1384;// L80 +typedef ____off64_t_1123 __off_t_1386;// L88 +typedef ____off64_t_1286 __off_t_1387;// L88 +typedef ____off_t_1122 __off_t_1389;// L86 +typedef ____off_t_1285 __off_t_1390;// L86 +typedef ____pid_t_25 __pid_t_1392;// L98 +typedef ____pid_t_1124 __pid_t_1393;// L98 +typedef ____pid_t_1287 __pid_t_1394;// L98 +typedef ____pid_t_1124 __pid_t_1396;// L98 +typedef ____pid_t_1287 __pid_t_1397;// L98 +typedef ____id_t_33 __id_t_1399;// L104 +typedef ____id_t_1132 __id_t_1400;// L104 +typedef ____id_t_1295 __id_t_1401;// L104 +typedef ____ssize_t_1148 __ssize_t_1403;// L109 +typedef ____ssize_t_1311 __ssize_t_1404;// L109 +typedef ____daddr_t_37 __daddr_t_1406;// L115 +typedef ____daddr_t_1136 __daddr_t_1407;// L115 +typedef ____daddr_t_1299 __daddr_t_1408;// L115 +typedef ____caddr_t_55 __caddr_t_1410;// L116 +typedef ____caddr_t_1154 __caddr_t_1411;// L116 +typedef ____caddr_t_1317 __caddr_t_1412;// L116 +typedef ____key_t_38 __key_t_1413;// L122 +typedef ____key_t_1137 __key_t_1414;// L122 +typedef ____key_t_1300 __key_t_1415;// L122 +typedef ____key_t_38 __key_t_1417;// L122 +typedef ____key_t_1137 __key_t_1418;// L122 +typedef ____key_t_1300 __key_t_1419;// L122 +typedef ____clock_t_30 __clock_t_1421;// L59 +typedef ____clock_t_1129 __clock_t_1422;// L59 +typedef ____clock_t_1292 __clock_t_1423;// L59 +typedef ____time_t_34 __time_t_1425;// L75 +typedef ____time_t_1133 __time_t_1426;// L75 +typedef ____time_t_1296 __time_t_1427;// L75 +typedef ____clockid_t_39 __clockid_t_1429;// L91 +typedef ____clockid_t_1138 __clockid_t_1430;// L91 +typedef ____clockid_t_1301 __clockid_t_1431;// L91 +typedef ____timer_t_40 __timer_t_1433;// L103 +typedef ____timer_t_1139 __timer_t_1434;// L103 +typedef ____timer_t_1302 __timer_t_1435;// L103 +typedef unsigned long int __ulong_1437;// L150 +typedef unsigned long int __ulong_1438;// L150 +typedef unsigned long int __ulong_1439;// L150 +typedef unsigned short int __ushort_1440;// L151 +typedef unsigned int __uint_1441;// L152 +typedef int __int8_t_1442;// L188:L194 +typedef int __int16_t_1443;// L188:L195 +typedef int __int32_t_1444;// L188:L196 +typedef int __int64_t_1445;// L188:L197 +typedef unsigned int __u_int8_t_1446;// L190:L200 +typedef unsigned int __u_int16_t_1447;// L190:L201 +typedef unsigned int __u_int32_t_1448;// L190:L202 +typedef unsigned int __u_int64_t_1449;// L190:L203 +typedef int __register_t_1450;// L205 +typedef int ____sig_atomic_t_1460;// L22 +struct ____anonymous_tag_1461_1462 { +unsigned long int ____val_1463[( 1024 / ( 8 * sizeof(unsigned long) ) )];// L29 }; -typedef ____suseconds_t_36 __suseconds_t_1182;// L48 -typedef long int ____fd_mask_1183;// L54 -typedef long int ____fd_mask_1184;// L54 -struct ____anonymous_tag_1185_1186 { -____fd_mask_1183 ____fds_bits_1187[1024 / ( 8 * ( int ) sizeof(long) )];// L0 -____fd_mask_1184 ____fds_bits_1188[1024 / ( 8 * ( int ) sizeof(long) )];// L0 +typedef struct ____anonymous_tag_1461_1462 ____sigset_t_1464;// L27:L30 +typedef ____sigset_t_1464 __sigset_t_1465;// L37 +struct __timespec_1466 { +____time_t_34 __tv_sec_1467;// L0 +____time_t_1133 __tv_sec_1468;// L0 +____time_t_1296 __tv_sec_1469;// L0 +____syscall_slong_t_50 __tv_nsec_1471;// L0 +____syscall_slong_t_1149 __tv_nsec_1472;// L0 +____syscall_slong_t_1312 __tv_nsec_1473;// L0 }; -typedef struct ____anonymous_tag_1185_1186 __fd_set_1189;// L64:L75 -typedef ____fd_mask_1183 __fd_mask_1190;// L82 -typedef ____fd_mask_1184 __fd_mask_1191;// L82 -typedef ____blksize_t_41 __blksize_t_1227;// L228 -typedef ____blkcnt_t_42 __blkcnt_t_1228;// L235 -typedef ____fsblkcnt_t_44 __fsblkcnt_t_1229;// L239 -typedef ____blkcnt64_t_43 __blkcnt_t_1230;// L248 -typedef ____fsblkcnt64_t_45 __fsblkcnt_t_1231;// L252 -typedef ____fsfilcnt_t_46 __fsfilcnt_t_1232;// L243 -typedef ____fsfilcnt64_t_47 __fsfilcnt_t_1233;// L256 -typedef unsigned long int __pthread_t_1234;// L60 -union __pthread_attr_t_1235 { -char ____size_1236[56];// L65 -long int ____align_1237;// L66 +struct __timeval_1476 { +____time_t_34 __tv_sec_1477;// L0 +____time_t_1133 __tv_sec_1478;// L0 +____time_t_1296 __tv_sec_1479;// L0 +____suseconds_t_36 __tv_usec_1481;// L0 +____suseconds_t_1135 __tv_usec_1482;// L0 +____suseconds_t_1298 __tv_usec_1483;// L0 }; -typedef union __pthread_attr_t_1235 __pthread_attr_t_1238;// L69 -struct ____pthread_internal_list_1240 { -struct __forward_tag_reference_1239 * (____prev_1241);// L0 -struct __forward_tag_reference_1239 * (____next_1242);// L0 +typedef ____suseconds_t_36 __suseconds_t_1486;// L48 +typedef ____suseconds_t_1135 __suseconds_t_1487;// L48 +typedef ____suseconds_t_1298 __suseconds_t_1488;// L48 +typedef long int ____fd_mask_1490;// L54 +typedef long int ____fd_mask_1491;// L54 +struct ____anonymous_tag_1492_1493 { +____fd_mask_1490 ____fds_bits_1494[1024 / ( 8 * ( int ) sizeof(long) )];// L0 +____fd_mask_1491 ____fds_bits_1496[1024 / ( 8 * ( int ) sizeof(long) )];// L0 }; -typedef struct ____pthread_internal_list_1240 ____pthread_list_t_1243;// L75:L79 -typedef struct ____pthread_internal_list_1240 ____pthread_list_t_1244;// L75:L79 -struct ____pthread_mutex_s_1245 { -int ____lock_1246;// L94 -unsigned int ____count_1247;// L95 -int ____owner_1248;// L96 -unsigned int ____nusers_1249;// L98 -int ____kind_1250;// L102 -short ____spins_1251;// L104 -short ____elision_1252;// L105 -____pthread_list_t_1243 ____list_1253;// L0 -____pthread_list_t_1244 ____list_1254;// L0 +typedef struct ____anonymous_tag_1492_1493 __fd_set_1499;// L64:L75 +typedef ____fd_mask_1490 __fd_mask_1500;// L82 +typedef ____fd_mask_1491 __fd_mask_1501;// L82 +typedef ____blksize_t_41 __blksize_t_1549;// L228 +typedef ____blksize_t_1140 __blksize_t_1550;// L228 +typedef ____blksize_t_1303 __blksize_t_1551;// L228 +typedef ____blkcnt_t_42 __blkcnt_t_1553;// L235 +typedef ____blkcnt_t_1141 __blkcnt_t_1554;// L235 +typedef ____blkcnt_t_1304 __blkcnt_t_1555;// L235 +typedef ____fsblkcnt_t_44 __fsblkcnt_t_1557;// L239 +typedef ____fsblkcnt_t_1143 __fsblkcnt_t_1558;// L239 +typedef ____fsblkcnt_t_1306 __fsblkcnt_t_1559;// L239 +typedef ____blkcnt64_t_43 __blkcnt_t_1561;// L248 +typedef ____blkcnt64_t_1142 __blkcnt_t_1562;// L248 +typedef ____blkcnt64_t_1305 __blkcnt_t_1563;// L248 +typedef ____fsblkcnt64_t_45 __fsblkcnt_t_1565;// L252 +typedef ____fsblkcnt64_t_1144 __fsblkcnt_t_1566;// L252 +typedef ____fsblkcnt64_t_1307 __fsblkcnt_t_1567;// L252 +typedef ____fsfilcnt_t_46 __fsfilcnt_t_1569;// L243 +typedef ____fsfilcnt_t_1145 __fsfilcnt_t_1570;// L243 +typedef ____fsfilcnt_t_1308 __fsfilcnt_t_1571;// L243 +typedef ____fsfilcnt64_t_47 __fsfilcnt_t_1573;// L256 +typedef ____fsfilcnt64_t_1146 __fsfilcnt_t_1574;// L256 +typedef ____fsfilcnt64_t_1309 __fsfilcnt_t_1575;// L256 +typedef unsigned long int __pthread_t_1577;// L60 +union __pthread_attr_t_1578 { +char ____size_1579[56];// L65 +long int ____align_1580;// L66 }; -union ____anonymous_tag_1255_1256 { -struct ____pthread_mutex_s_1245 ____data_1257;// L92 -char ____size_1258[40];// L126 -long int ____align_1259;// L127 +typedef union __pthread_attr_t_1578 __pthread_attr_t_1581;// L69 +struct ____pthread_internal_list_1583 { +struct __forward_tag_reference_1582 * (____prev_1584);// L0 +struct __forward_tag_reference_1582 * (____next_1585);// L0 }; -typedef union ____anonymous_tag_1255_1256 __pthread_mutex_t_1260;// L90:L128 -union ____anonymous_tag_1261_1262 { -char ____size_1263[4];// L132 -int ____align_1264;// L133 +typedef struct ____pthread_internal_list_1583 ____pthread_list_t_1586;// L75:L79 +typedef struct ____pthread_internal_list_1583 ____pthread_list_t_1587;// L75:L79 +struct ____pthread_mutex_s_1588 { +int ____lock_1589;// L94 +unsigned int ____count_1590;// L95 +int ____owner_1591;// L96 +unsigned int ____nusers_1592;// L98 +int ____kind_1593;// L102 +short ____spins_1594;// L104 +short ____elision_1595;// L105 +____pthread_list_t_1586 ____list_1596;// L0 +____pthread_list_t_1587 ____list_1597;// L0 }; -typedef union ____anonymous_tag_1261_1262 __pthread_mutexattr_t_1265;// L130:L134 -typedef int (* (____compar_fn_t_1375)) (const void *, const void *);// L741 -struct ____locale_struct_1658 { -struct __forward_tag_reference_1657 * (____locales_1659[13]);// L0 -const unsigned short int * (____ctype_b_1660);// L33 -const int * (____ctype_tolower_1661);// L34 -const int * (____ctype_toupper_1662);// L35 -const char * (____names_1663[13]);// L38 +union ____anonymous_tag_1598_1599 { +struct ____pthread_mutex_s_1588 ____data_1600;// L92 +char ____size_1601[40];// L126 +long int ____align_1602;// L127 }; -typedef struct ____locale_struct_1658 * (____locale_t_1664);// L27:L39 -typedef ____locale_t_1664 __locale_t_1665;// L42 +typedef union ____anonymous_tag_1598_1599 __pthread_mutex_t_1603;// L90:L128 +union ____anonymous_tag_1604_1605 { +char ____size_1606[4];// L132 +int ____align_1607;// L133 +}; +typedef union ____anonymous_tag_1604_1605 __pthread_mutexattr_t_1608;// L130:L134 +typedef int (* (____compar_fn_t_1740)) (const void *, const void *);// L741 +typedef long int __ptrdiff_t_2036;// L143:L324 +typedef long unsigned int __size_t_2037;// L177:L209 +struct ____locale_struct_2137 { +struct __forward_tag_reference_2136 * (____locales_2138[13]);// L0 +const unsigned short int * (____ctype_b_2139);// L33 +const int * (____ctype_tolower_2140);// L34 +const int * (____ctype_toupper_2141);// L35 +const char * (____names_2142[13]);// L38 +}; +typedef struct ____locale_struct_2137 * (____locale_t_2143);// L27:L39 +typedef ____locale_t_2143 __locale_t_2144;// L42 -struct __forward_tag_reference_57 { // generated union of struct variations +struct __forward_tag_reference_89 { // generated union of struct variations union { -struct ___IO_FILE_95 ___IO_FILE_95; -struct ___IO_FILE_119 ___IO_FILE_119; +struct ___IO_marker_90 ___IO_marker_90; }; }; -struct __forward_tag_reference_85 { // generated union of struct variations +struct __forward_tag_reference_1582 { // generated union of struct variations union { -struct ___IO_marker_86 ___IO_marker_86; }; }; -struct __forward_tag_reference_1239 { // generated union of struct variations +struct __forward_tag_reference_58 { // generated union of struct variations union { +struct ___IO_FILE_99 ___IO_FILE_99; +struct ___IO_FILE_124 ___IO_FILE_124; }; }; -struct __forward_tag_reference_83 { // generated union of struct variations +struct __forward_tag_reference_2136 { // generated union of struct variations union { }; }; -struct __forward_tag_reference_1657 { // generated union of struct variations +struct __forward_tag_reference_87 { // generated union of struct variations union { }; }; -struct __forward_tag_reference_166 { // generated union of struct variations +struct __forward_tag_reference_174 { // generated union of struct variations union { }; }; @@ -1597,225 +2342,225 @@ union { // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_57 ;// L0 +struct __forward_tag_reference_58 ;// L0 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_83 ;// L0 -struct __forward_tag_reference_83 ;// L0 -struct __forward_tag_reference_57 ;// L0 +struct __forward_tag_reference_87 ;// L0 +struct __forward_tag_reference_87 ;// L0 +struct __forward_tag_reference_58 ;// L0 // typedef moved to top of scope -struct ___IO_marker_86 ;// L156 -enum ____codecvt_result_94 ;// L176 -struct ___IO_FILE_95 ;// L241 +struct ___IO_marker_90 ;// L156 +enum ____codecvt_result_98 ;// L176 +struct ___IO_FILE_99 ;// L241 -struct ___IO_FILE_119 ;// L241 -struct ___IO_FILE_complete_150 ;// L241 +struct ___IO_FILE_124 ;// L241 +struct ___IO_FILE_complete_157 ;// L241 // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_166 ;// L0 -extern struct __forward_tag_reference_166 ___IO_2_1_stdin__167;// L315 -extern struct __forward_tag_reference_166 ___IO_2_1_stdout__168;// L316 -extern struct __forward_tag_reference_166 ___IO_2_1_stderr__169;// L317 +struct __forward_tag_reference_174 ;// L0 +extern struct __forward_tag_reference_174 ___IO_2_1_stdin__175;// L315 +extern struct __forward_tag_reference_174 ___IO_2_1_stdout__176;// L316 +extern struct __forward_tag_reference_174 ___IO_2_1_stderr__177;// L317 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern int (____underflow_184) (___IO_FILE_163 *);// L385 -extern int (____underflow_185) (___IO_FILE_164 *);// L385 -extern int (____uflow_186) (___IO_FILE_163 *);// L386 -extern int (____uflow_187) (___IO_FILE_164 *);// L386 -extern int (____overflow_188) (___IO_FILE_163 *, int );// L387 -extern int (____overflow_189) (___IO_FILE_164 *, int );// L387 -extern int (___IO_getc_193) (___IO_FILE_163 * (____fp_190));// L429 -extern int (___IO_getc_194) (___IO_FILE_164 * (____fp_191));// L429 -extern int (___IO_putc_199) (int ____c_195, ___IO_FILE_163 * (____fp_196));// L430 -extern int (___IO_putc_200) (int ____c_195, ___IO_FILE_164 * (____fp_197));// L430 -extern int (___IO_feof_204) (___IO_FILE_163 * (____fp_201));// L431 -extern int (___IO_feof_205) (___IO_FILE_164 * (____fp_202));// L431 -extern int (___IO_ferror_209) (___IO_FILE_163 * (____fp_206));// L432 -extern int (___IO_ferror_210) (___IO_FILE_164 * (____fp_207));// L432 -extern int (___IO_peekc_locked_214) (___IO_FILE_163 * (____fp_211));// L434 -extern int (___IO_peekc_locked_215) (___IO_FILE_164 * (____fp_212));// L434 -extern void (___IO_flockfile_216) (___IO_FILE_163 *);// L440 -extern void (___IO_flockfile_217) (___IO_FILE_164 *);// L440 -extern void (___IO_funlockfile_218) (___IO_FILE_163 *);// L441 -extern void (___IO_funlockfile_219) (___IO_FILE_164 *);// L441 -extern int (___IO_ftrylockfile_220) (___IO_FILE_163 *);// L442 -extern int (___IO_ftrylockfile_221) (___IO_FILE_164 *);// L442 -extern int (___IO_vfscanf_222) (___IO_FILE_163 * __restrict , const char * __restrict , ____gnuc_va_list_82 , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_224) (___IO_FILE_164 * __restrict , const char * __restrict , ____gnuc_va_list_82 , int * __restrict );// L459:L460 - - -extern int (___IO_vfprintf_231) (___IO_FILE_163 * __restrict , const char * __restrict , ____gnuc_va_list_82 );// L461:L462 -extern int (___IO_vfprintf_233) (___IO_FILE_164 * __restrict , const char * __restrict , ____gnuc_va_list_82 );// L461:L462 - -extern ____ssize_t_49 (___IO_padn_238) (___IO_FILE_163 *, int , ____ssize_t_49 );// L463 -extern ____ssize_t_49 (___IO_padn_239) (___IO_FILE_164 *, int , ____ssize_t_49 );// L463 -extern __size_t_1 (___IO_sgetn_240) (___IO_FILE_163 *, void *, __size_t_1 );// L464 -extern __size_t_1 (___IO_sgetn_241) (___IO_FILE_164 *, void *, __size_t_1 );// L464 -extern ____off64_t_24 (___IO_seekoff_242) (___IO_FILE_163 *, ____off64_t_24 , int , int );// L466 -extern ____off64_t_24 (___IO_seekoff_243) (___IO_FILE_164 *, ____off64_t_24 , int , int );// L466 -extern ____off64_t_24 (___IO_seekpos_244) (___IO_FILE_163 *, ____off64_t_24 , int );// L467 -extern ____off64_t_24 (___IO_seekpos_245) (___IO_FILE_164 *, ____off64_t_24 , int );// L467 -extern void (___IO_free_backup_area_246) (___IO_FILE_163 *);// L469 -extern void (___IO_free_backup_area_247) (___IO_FILE_164 *);// L469 +extern int (____underflow_196) (___IO_FILE_171 *);// L385 +extern int (____underflow_197) (___IO_FILE_172 *);// L385 +extern int (____uflow_199) (___IO_FILE_171 *);// L386 +extern int (____uflow_200) (___IO_FILE_172 *);// L386 +extern int (____overflow_202) (___IO_FILE_171 *, int );// L387 +extern int (____overflow_203) (___IO_FILE_172 *, int );// L387 +extern int (___IO_getc_208) (___IO_FILE_171 * (____fp_205));// L429 +extern int (___IO_getc_209) (___IO_FILE_172 * (____fp_206));// L429 +extern int (___IO_putc_215) (int ____c_211, ___IO_FILE_171 * (____fp_212));// L430 +extern int (___IO_putc_216) (int ____c_211, ___IO_FILE_172 * (____fp_213));// L430 +extern int (___IO_feof_221) (___IO_FILE_171 * (____fp_218));// L431 +extern int (___IO_feof_222) (___IO_FILE_172 * (____fp_219));// L431 +extern int (___IO_ferror_227) (___IO_FILE_171 * (____fp_224));// L432 +extern int (___IO_ferror_228) (___IO_FILE_172 * (____fp_225));// L432 +extern int (___IO_peekc_locked_233) (___IO_FILE_171 * (____fp_230));// L434 +extern int (___IO_peekc_locked_234) (___IO_FILE_172 * (____fp_231));// L434 +extern void (___IO_flockfile_236) (___IO_FILE_171 *);// L440 +extern void (___IO_flockfile_237) (___IO_FILE_172 *);// L440 +extern void (___IO_funlockfile_239) (___IO_FILE_171 *);// L441 +extern void (___IO_funlockfile_240) (___IO_FILE_172 *);// L441 +extern int (___IO_ftrylockfile_242) (___IO_FILE_171 *);// L442 +extern int (___IO_ftrylockfile_243) (___IO_FILE_172 *);// L442 +extern int (___IO_vfscanf_245) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_247) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_251) (___IO_FILE_171 * __restrict , const char * __restrict , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_252) (___IO_FILE_172 * __restrict , const char * __restrict , int * __restrict );// L459:L460 +extern int (___IO_vfprintf_254) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 +extern int (___IO_vfprintf_256) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 +extern int (___IO_vfprintf_260) ();// L461:L462 +extern ____ssize_t_49 (___IO_padn_261) (___IO_FILE_171 *, int , ____ssize_t_49 );// L463 +extern ____ssize_t_49 (___IO_padn_262) (___IO_FILE_172 *, int , ____ssize_t_49 );// L463 +extern __size_t_1 (___IO_sgetn_265) (___IO_FILE_171 *, void *, __size_t_1 );// L464 +extern __size_t_1 (___IO_sgetn_266) (___IO_FILE_172 *, void *, __size_t_1 );// L464 +extern ____off64_t_24 (___IO_seekoff_268) (___IO_FILE_171 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekoff_269) (___IO_FILE_172 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekpos_272) (___IO_FILE_171 *, ____off64_t_24 , int );// L467 +extern ____off64_t_24 (___IO_seekpos_273) (___IO_FILE_172 *, ____off64_t_24 , int );// L467 +extern void (___IO_free_backup_area_276) (___IO_FILE_171 *);// L469 +extern void (___IO_free_backup_area_277) (___IO_FILE_172 *);// L469 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern struct ___IO_FILE_95 * (__stdin_257);// L168 -extern struct ___IO_FILE_119 * (__stdin_258);// L168 -extern struct ___IO_FILE_95 * (__stdout_259);// L169 -extern struct ___IO_FILE_119 * (__stdout_260);// L169 -extern struct ___IO_FILE_95 * (__stderr_261);// L170 -extern struct ___IO_FILE_119 * (__stderr_262);// L170 -extern int (__remove_264) (const char * (____filename_263));// L178 -extern int (__rename_267) (const char * (____old_265), const char * (____new_266));// L180 -extern int (__renameat_272) (int ____oldfd_268, const char * (____old_269), int ____newfd_270, const char * (____new_271));// L185:L186 -extern __FILE_58 * ((__tmpfile_273) (void ));// L195 -extern __FILE_58 * ((__tmpfile_279) (void ));// L198 -extern __FILE_58 * ((__tmpfile_277) (void ));// L198 -extern __FILE_58 * ((__tmpfile_275) (void ));// L195 -extern char * ((__tmpnam_282) (char * (____s_281)));// L209 -extern char * ((__tmpnam_283) (char * (____s_281)));// L209 -extern char * ((__tmpnam_r_285) (char * (____s_284)));// L215 -extern char * ((__tmpnam_r_286) (char * (____s_284)));// L215 -extern char * ((__tempnam_289) (const char * (____dir_287), const char * (____pfx_288)));// L227:L228 -extern char * ((__tempnam_290) (const char * (____dir_287), const char * (____pfx_288)));// L227:L228 -extern int (__fclose_293) (__FILE_58 * (____stream_291));// L237 -extern int (__fclose_295) (__FILE_58 * (____stream_291));// L237 -extern int (__fflush_299) (__FILE_58 * (____stream_297));// L242 -extern int (__fflush_unlocked_303) (__FILE_58 * (____stream_301));// L252 -extern __FILE_58 * ((__fopen_307) (const char * __restrict ____filename_305, const char * __restrict ____modes_306));// L272:L273 -extern __FILE_58 * ((__fopen_309) (const char * __restrict ____filename_305, const char * __restrict ____modes_306));// L272:L273 -extern __FILE_58 * ((__fopen_317) (const char * __restrict ____filename_315, const char * __restrict ____modes_316));// L283:L285 -extern __FILE_58 * ((__fopen_319) (const char * __restrict ____filename_315, const char * __restrict ____modes_316));// L283:L285 -extern __FILE_58 * ((__freopen_325) (const char * __restrict ____filename_311, const char * __restrict ____modes_312, __FILE_58 * __restrict ____stream_313));// L278:L280 -extern __FILE_58 * ((__freopen_331) (const char * __restrict ____filename_321, const char * __restrict ____modes_322, __FILE_58 * __restrict ____stream_323));// L286:L289 -extern __FILE_58 * ((__freopen_329) (const char * __restrict ____filename_321, const char * __restrict ____modes_322, __FILE_58 * __restrict ____stream_323));// L286:L289 -extern __FILE_58 * ((__freopen_327) (const char * __restrict ____filename_311, const char * __restrict ____modes_312, __FILE_58 * __restrict ____stream_313));// L278:L280 -extern __FILE_58 * ((__fdopen_335) (int ____fd_333, const char * (____modes_334)));// L306 -extern __FILE_58 * ((__fdopen_337) (int ____fd_333, const char * (____modes_334)));// L306 -extern __FILE_58 * ((__fmemopen_342) (void * (____s_339), __size_t_1 ____len_340, const char * (____modes_341)));// L319:L320 -extern __FILE_58 * ((__fmemopen_344) (void * (____s_339), __size_t_1 ____len_340, const char * (____modes_341)));// L319:L320 -extern __FILE_58 * ((__open_memstream_348) (char * (* (____bufloc_346)), __size_t_1 * (____sizeloc_347)));// L325 -extern __FILE_58 * ((__open_memstream_350) (char * (* (____bufloc_346)), __size_t_1 * (____sizeloc_347)));// L325 -extern void (__setbuf_355) (__FILE_58 * __restrict ____stream_352, char * __restrict ____buf_354);// L332 -extern void (__setbuf_357) (__FILE_58 * __restrict ____stream_352, char * __restrict ____buf_354);// L332 -extern int (__setvbuf_364) (__FILE_58 * __restrict ____stream_359, char * __restrict ____buf_361, int ____modes_362, __size_t_1 ____n_363);// L336:L337 -extern void (__setbuffer_369) (__FILE_58 * __restrict ____stream_365, char * __restrict ____buf_367, __size_t_1 ____size_368);// L343:L344 -extern void (__setlinebuf_373) (__FILE_58 * (____stream_371));// L347 -extern int (__fprintf_378) (__FILE_58 * __restrict ____stream_375, const char * __restrict ____format_377, ... );// L356:L357 -extern int (__fprintf_380) (__FILE_58 * __restrict ____stream_375, const char * __restrict ____format_377, ... );// L356:L357 -extern int (__printf_383) (const char * __restrict ____format_382, ... );// L362 -extern int (__sprintf_386) (char * __restrict ____s_384, const char * __restrict ____format_385, ... );// L364:L365 -extern int (__vfprintf_392) (__FILE_58 * __restrict ____s_387, const char * __restrict ____format_389, ____gnuc_va_list_82 ____arg_390);// L371:L372 -extern int (__vprintf_399) (const char * __restrict ____format_396, ____gnuc_va_list_82 ____arg_397);// L377 -extern int (__vsprintf_405) (char * __restrict ____s_401, const char * __restrict ____format_402, ____gnuc_va_list_82 ____arg_403);// L379:L380 -extern int (__snprintf_409) (char * __restrict ____s_406, __size_t_1 ____maxlen_407, const char * __restrict ____format_408, ... );// L386:L388 -extern int (__vsnprintf_415) (char * __restrict ____s_410, __size_t_1 ____maxlen_411, const char * __restrict ____format_412, ____gnuc_va_list_82 ____arg_413);// L390:L392 -extern int (__vdprintf_420) (int ____fd_416, const char * __restrict ____fmt_417, ____gnuc_va_list_82 ____arg_418);// L412:L414 -extern int (__dprintf_424) (int ____fd_422, const char * __restrict ____fmt_423, ... );// L415:L416 -extern int (__fscanf_428) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 -extern int (__fscanf_430) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 -extern int (__fscanf_432) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 -extern int (__fscanf_434) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 -extern int (__scanf_437) (const char * __restrict ____format_436, ... );// L431 -extern int (__scanf_438) (const char * __restrict ____format_436, ... );// L431 -extern int (__sscanf_441) (const char * __restrict ____s_439, const char * __restrict ____format_440, ... );// L433:L434 - - - - - - - -extern int (__vfscanf_468) (__FILE_58 * __restrict ____s_463, const char * __restrict ____format_465, ____gnuc_va_list_82 ____arg_466);// L471:L473 -extern int (__vfscanf_472) (__FILE_58 * __restrict ____s_463, const char * __restrict ____format_465, ____gnuc_va_list_82 ____arg_466);// L471:L473 -extern int (__vscanf_479) (const char * __restrict ____format_476, ____gnuc_va_list_82 ____arg_477);// L479:L480 -extern int (__vscanf_481) (const char * __restrict ____format_476, ____gnuc_va_list_82 ____arg_477);// L479:L480 -extern int (__vsscanf_487) (const char * __restrict ____s_483, const char * __restrict ____format_484, ____gnuc_va_list_82 ____arg_485);// L483:L485 - - - - - -extern int (__fgetc_520) (__FILE_58 * (____stream_518));// L531 -extern int (__getc_523) (__FILE_58 * (____stream_521));// L532 -extern int (__getchar_524) (void );// L538 -extern int (__getc_unlocked_527) (__FILE_58 * (____stream_525));// L550 -extern int (__getchar_unlocked_529) (void );// L551 -extern int (__fgetc_unlocked_532) (__FILE_58 * (____stream_530));// L561 -extern int (__fputc_537) (int ____c_534, __FILE_58 * (____stream_535));// L573 -extern int (__fputc_539) (int ____c_534, __FILE_58 * (____stream_535));// L573 -extern int (__putc_544) (int ____c_541, __FILE_58 * (____stream_542));// L574 -extern int (__putchar_546) (int ____c_545);// L580 -extern int (__fputc_unlocked_550) (int ____c_547, __FILE_58 * (____stream_548));// L594 -extern int (__putc_unlocked_555) (int ____c_552, __FILE_58 * (____stream_553));// L602 -extern int (__putchar_unlocked_558) (int ____c_557);// L603 -extern int (__getw_561) (__FILE_58 * (____stream_559));// L610 -extern int (__putw_566) (int ____w_563, __FILE_58 * (____stream_564));// L613 -extern char * ((__fgets_572) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 -extern char * ((__fgets_574) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 -extern char * ((__fgets_576) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 -extern char * ((__fgets_578) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 -extern ____ssize_t_49 (____getdelim_585) (char * (* __restrict ____lineptr_580), __size_t_1 * __restrict ____n_581, int ____delimiter_582, __FILE_58 * __restrict ____stream_583);// L665:L667 -extern ____ssize_t_49 (____getdelim_587) (char * (* __restrict ____lineptr_580), __size_t_1 * __restrict ____n_581, int ____delimiter_582, __FILE_58 * __restrict ____stream_583);// L665:L667 -extern ____ssize_t_49 (__getdelim_594) (char * (* __restrict ____lineptr_589), __size_t_1 * __restrict ____n_590, int ____delimiter_591, __FILE_58 * __restrict ____stream_592);// L668:L670 -extern ____ssize_t_49 (__getdelim_596) (char * (* __restrict ____lineptr_589), __size_t_1 * __restrict ____n_590, int ____delimiter_591, __FILE_58 * __restrict ____stream_592);// L668:L670 -extern ____ssize_t_49 (__getline_602) (char * (* __restrict ____lineptr_598), __size_t_1 * __restrict ____n_599, __FILE_58 * __restrict ____stream_600);// L678:L680 -extern ____ssize_t_49 (__getline_604) (char * (* __restrict ____lineptr_598), __size_t_1 * __restrict ____n_599, __FILE_58 * __restrict ____stream_600);// L678:L680 -extern int (__fputs_609) (const char * __restrict ____s_606, __FILE_58 * __restrict ____stream_607);// L689 -extern int (__fputs_611) (const char * __restrict ____s_606, __FILE_58 * __restrict ____stream_607);// L689 -extern int (__puts_614) (const char * (____s_613));// L695 -extern int (__ungetc_618) (int ____c_615, __FILE_58 * (____stream_616));// L702 -extern int (__fseek_654) (__FILE_58 * (____stream_650), long int ____off_652, int ____whence_653);// L749 -extern int (__fseek_656) (__FILE_58 * (____stream_650), long int ____off_652, int ____whence_653);// L749 -extern long int (__ftell_660) (__FILE_58 * (____stream_658));// L754 -extern long int (__ftell_662) (__FILE_58 * (____stream_658));// L754 -extern void (__rewind_666) (__FILE_58 * (____stream_664));// L759 -extern int (__fseeko_671) (__FILE_58 * (____stream_667), ____off_t_23 ____off_669, int ____whence_670);// L773 -extern int (__fseeko_679) (__FILE_58 * (____stream_675), ____off64_t_24 ____off_677, int ____whence_678);// L781:L783 -extern ____off_t_23 (__ftello_683) (__FILE_58 * (____stream_673));// L778 -extern ____off_t_23 (__ftello_685) (__FILE_58 * (____stream_673));// L778 -extern int (__fgetpos_693) (__FILE_58 * __restrict ____stream_689, __fpos_t_253 * __restrict ____pos_691);// L798 -extern ____off64_t_24 (__ftello_687) (__FILE_58 * (____stream_681));// L784 -extern int (__fgetpos_705) (__FILE_58 * __restrict ____stream_701, __fpos_t_255 * __restrict ____pos_703);// L806:L807 -extern int (__fsetpos_713) (__FILE_58 * (____stream_697), const __fpos_t_253 * (____pos_699));// L803 -extern int (__fsetpos_717) (__FILE_58 * (____stream_709), const __fpos_t_255 * (____pos_711));// L808:L809 -extern void (__clearerr_723) (__FILE_58 * (____stream_721));// L826 -extern int (__feof_726) (__FILE_58 * (____stream_724));// L828 -extern int (__feof_728) (__FILE_58 * (____stream_724));// L828 -extern int (__ferror_732) (__FILE_58 * (____stream_730));// L830 -extern int (__ferror_734) (__FILE_58 * (____stream_730));// L830 -extern void (__clearerr_unlocked_738) (__FILE_58 * (____stream_736));// L835 -extern int (__feof_unlocked_742) (__FILE_58 * (____stream_740));// L836 -extern int (__feof_unlocked_744) (__FILE_58 * (____stream_740));// L836 -extern int (__ferror_unlocked_748) (__FILE_58 * (____stream_746));// L837 -extern int (__ferror_unlocked_750) (__FILE_58 * (____stream_746));// L837 -extern void (__perror_753) (const char * (____s_752));// L846 -extern void (__perror_754) (const char * (____s_752));// L846 -extern int __sys_nerr_755;// L26 - -extern int (__fileno_761) (__FILE_58 * (____stream_757));// L858 -extern int (__fileno_759) (__FILE_58 * (____stream_757));// L858 -extern int (__fileno_unlocked_767) (__FILE_58 * (____stream_763));// L863 -extern int (__fileno_unlocked_765) (__FILE_58 * (____stream_763));// L863 -extern __FILE_58 * ((__popen_771) (const char * (____command_769), const char * (____modes_770)));// L872 -extern __FILE_58 * ((__popen_773) (const char * (____command_769), const char * (____modes_770)));// L872 -extern int (__pclose_777) (__FILE_58 * (____stream_775));// L878 -extern char * ((__ctermid_780) (char * (____s_779)));// L884 -extern void (__flockfile_783) (__FILE_58 * (____stream_781));// L912 -extern int (__ftrylockfile_787) (__FILE_58 * (____stream_785));// L916 -extern int (__ftrylockfile_789) (__FILE_58 * (____stream_785));// L916 -extern void (__funlockfile_793) (__FILE_58 * (____stream_791));// L919 +extern struct ___IO_FILE_99 * (__stdin_291);// L168 +extern struct ___IO_FILE_124 * (__stdin_292);// L168 +extern struct ___IO_FILE_99 * (__stdout_294);// L169 +extern struct ___IO_FILE_124 * (__stdout_295);// L169 +extern struct ___IO_FILE_99 * (__stderr_297);// L170 +extern struct ___IO_FILE_124 * (__stderr_298);// L170 +extern int (__remove_301) (const char * (____filename_300));// L178 +extern int (__rename_304) (const char * (____old_302), const char * (____new_303));// L180 +extern int (__renameat_309) (int ____oldfd_305, const char * (____old_306), int ____newfd_307, const char * (____new_308));// L185:L186 +extern __FILE_59 * ((__tmpfile_310) (void ));// L195 +extern __FILE_59 * ((__tmpfile_316) (void ));// L198 +extern __FILE_59 * ((__tmpfile_314) (void ));// L195 +extern __FILE_59 * ((__tmpfile_312) (void ));// L198 +extern char * ((__tmpnam_319) (char * (____s_318)));// L209 +extern char * ((__tmpnam_320) (char * (____s_318)));// L209 +extern char * ((__tmpnam_r_322) (char * (____s_321)));// L215 +extern char * ((__tmpnam_r_323) (char * (____s_321)));// L215 +extern char * ((__tempnam_326) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 +extern char * ((__tempnam_327) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 +extern int (__fclose_330) (__FILE_59 * (____stream_328));// L237 +extern int (__fclose_332) (__FILE_59 * (____stream_328));// L237 +extern int (__fflush_336) (__FILE_59 * (____stream_334));// L242 +extern int (__fflush_unlocked_340) (__FILE_59 * (____stream_338));// L252 +extern __FILE_59 * ((__fopen_344) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 +extern __FILE_59 * ((__fopen_346) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 +extern __FILE_59 * ((__fopen_354) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 +extern __FILE_59 * ((__fopen_356) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 +extern __FILE_59 * ((__freopen_362) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 +extern __FILE_59 * ((__freopen_368) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 +extern __FILE_59 * ((__freopen_366) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 +extern __FILE_59 * ((__freopen_364) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 +extern __FILE_59 * ((__fdopen_372) (int ____fd_370, const char * (____modes_371)));// L306 +extern __FILE_59 * ((__fdopen_374) (int ____fd_370, const char * (____modes_371)));// L306 +extern __FILE_59 * ((__fmemopen_379) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 +extern __FILE_59 * ((__fmemopen_381) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 +extern __FILE_59 * ((__open_memstream_385) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 +extern __FILE_59 * ((__open_memstream_387) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 +extern void (__setbuf_392) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 +extern void (__setbuf_394) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 +extern int (__setvbuf_401) (__FILE_59 * __restrict ____stream_396, char * __restrict ____buf_398, int ____modes_399, __size_t_1 ____n_400);// L336:L337 +extern void (__setbuffer_407) (__FILE_59 * __restrict ____stream_403, char * __restrict ____buf_405, __size_t_1 ____size_406);// L343:L344 +extern void (__setlinebuf_411) (__FILE_59 * (____stream_409));// L347 +extern int (__fprintf_416) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 +extern int (__fprintf_418) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 +extern int (__printf_421) (const char * __restrict ____format_420, ... );// L362 +extern int (__sprintf_424) (char * __restrict ____s_422, const char * __restrict ____format_423, ... );// L364:L365 +extern int (__vfprintf_430) (__FILE_59 * __restrict ____s_425, const char * __restrict ____format_427, ____gnuc_va_list_86 ____arg_428);// L371:L372 +extern int (__vprintf_437) (const char * __restrict ____format_434, ____gnuc_va_list_86 ____arg_435);// L377 +extern int (__vsprintf_443) (char * __restrict ____s_439, const char * __restrict ____format_440, ____gnuc_va_list_86 ____arg_441);// L379:L380 +extern int (__snprintf_448) (char * __restrict ____s_445, __size_t_1 ____maxlen_446, const char * __restrict ____format_447, ... );// L386:L388 +extern int (__vsnprintf_454) (char * __restrict ____s_449, __size_t_1 ____maxlen_450, const char * __restrict ____format_451, ____gnuc_va_list_86 ____arg_452);// L390:L392 +extern int (__vdprintf_460) (int ____fd_456, const char * __restrict ____fmt_457, ____gnuc_va_list_86 ____arg_458);// L412:L414 +extern int (__dprintf_464) (int ____fd_462, const char * __restrict ____fmt_463, ... );// L415:L416 +extern int (__fscanf_468) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_470) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_472) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_474) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__scanf_477) (const char * __restrict ____format_476, ... );// L431 +extern int (__scanf_478) (const char * __restrict ____format_476, ... );// L431 +extern int (__sscanf_481) (const char * __restrict ____s_479, const char * __restrict ____format_480, ... );// L433:L434 + + + + + + + +extern int (__vfscanf_509) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 +extern int (__vfscanf_513) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 +extern int (__vscanf_520) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 +extern int (__vscanf_522) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 +extern int (__vsscanf_528) (const char * __restrict ____s_524, const char * __restrict ____format_525, ____gnuc_va_list_86 ____arg_526);// L483:L485 + + + + + +extern int (__fgetc_563) (__FILE_59 * (____stream_561));// L531 +extern int (__getc_567) (__FILE_59 * (____stream_565));// L532 +extern int (__getchar_569) (void );// L538 +extern int (__getc_unlocked_572) (__FILE_59 * (____stream_570));// L550 +extern int (__getchar_unlocked_574) (void );// L551 +extern int (__fgetc_unlocked_577) (__FILE_59 * (____stream_575));// L561 +extern int (__fputc_582) (int ____c_579, __FILE_59 * (____stream_580));// L573 +extern int (__fputc_584) (int ____c_579, __FILE_59 * (____stream_580));// L573 +extern int (__putc_589) (int ____c_586, __FILE_59 * (____stream_587));// L574 +extern int (__putchar_592) (int ____c_591);// L580 +extern int (__fputc_unlocked_596) (int ____c_593, __FILE_59 * (____stream_594));// L594 +extern int (__putc_unlocked_601) (int ____c_598, __FILE_59 * (____stream_599));// L602 +extern int (__putchar_unlocked_604) (int ____c_603);// L603 +extern int (__getw_607) (__FILE_59 * (____stream_605));// L610 +extern int (__putw_612) (int ____w_609, __FILE_59 * (____stream_610));// L613 +extern char * ((__fgets_618) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_620) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_622) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_624) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern ____ssize_t_49 (____getdelim_631) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 +extern ____ssize_t_49 (____getdelim_635) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 +extern ____ssize_t_49 (__getdelim_644) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 +extern ____ssize_t_49 (__getdelim_648) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 +extern ____ssize_t_49 (__getline_656) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 +extern ____ssize_t_49 (__getline_660) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 +extern int (__fputs_667) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 +extern int (__fputs_669) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 +extern int (__puts_672) (const char * (____s_671));// L695 +extern int (__ungetc_676) (int ____c_673, __FILE_59 * (____stream_674));// L702 +extern int (__fseek_714) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 +extern int (__fseek_716) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 +extern long int (__ftell_720) (__FILE_59 * (____stream_718));// L754 +extern long int (__ftell_722) (__FILE_59 * (____stream_718));// L754 +extern void (__rewind_726) (__FILE_59 * (____stream_724));// L759 +extern int (__fseeko_733) (__FILE_59 * (____stream_728), ____off_t_23 ____off_730, int ____whence_732);// L773 +extern int (__fseeko_744) (__FILE_59 * (____stream_739), ____off64_t_24 ____off_741, int ____whence_743);// L781:L783 +extern ____off_t_23 (__ftello_758) (__FILE_59 * (____stream_737));// L778 +extern ____off_t_23 (__ftello_750) (__FILE_59 * (____stream_737));// L778 +extern int (__fgetpos_766) (__FILE_59 * __restrict ____stream_762, __fpos_t_287 * __restrict ____pos_764);// L798 +extern ____off64_t_24 (__ftello_754) (__FILE_59 * (____stream_748));// L784 +extern int (__fgetpos_778) (__FILE_59 * __restrict ____stream_774, __fpos_t_289 * __restrict ____pos_776);// L806:L807 +extern int (__fsetpos_786) (__FILE_59 * (____stream_770), const __fpos_t_287 * (____pos_772));// L803 +extern int (__fsetpos_790) (__FILE_59 * (____stream_782), const __fpos_t_289 * (____pos_784));// L808:L809 +extern void (__clearerr_796) (__FILE_59 * (____stream_794));// L826 +extern int (__feof_800) (__FILE_59 * (____stream_798));// L828 +extern int (__feof_802) (__FILE_59 * (____stream_798));// L828 +extern int (__ferror_806) (__FILE_59 * (____stream_804));// L830 +extern int (__ferror_808) (__FILE_59 * (____stream_804));// L830 +extern void (__clearerr_unlocked_812) (__FILE_59 * (____stream_810));// L835 +extern int (__feof_unlocked_816) (__FILE_59 * (____stream_814));// L836 +extern int (__feof_unlocked_818) (__FILE_59 * (____stream_814));// L836 +extern int (__ferror_unlocked_822) (__FILE_59 * (____stream_820));// L837 +extern int (__ferror_unlocked_824) (__FILE_59 * (____stream_820));// L837 +extern void (__perror_827) (const char * (____s_826));// L846 +extern void (__perror_828) (const char * (____s_826));// L846 +extern int __sys_nerr_829;// L26 + +extern int (__fileno_835) (__FILE_59 * (____stream_831));// L858 +extern int (__fileno_833) (__FILE_59 * (____stream_831));// L858 +extern int (__fileno_unlocked_841) (__FILE_59 * (____stream_837));// L863 +extern int (__fileno_unlocked_839) (__FILE_59 * (____stream_837));// L863 +extern __FILE_59 * ((__popen_845) (const char * (____command_843), const char * (____modes_844)));// L872 +extern __FILE_59 * ((__popen_847) (const char * (____command_843), const char * (____modes_844)));// L872 +extern int (__pclose_851) (__FILE_59 * (____stream_849));// L878 +extern char * ((__ctermid_854) (char * (____s_853)));// L884 +extern void (__flockfile_857) (__FILE_59 * (____stream_855));// L912 +extern int (__ftrylockfile_861) (__FILE_59 * (____stream_859));// L916 +extern int (__ftrylockfile_863) (__FILE_59 * (____stream_859));// L916 +extern void (__funlockfile_867) (__FILE_59 * (____stream_865));// L919 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ @@ -1827,39 +2572,109 @@ extern void (__funlockfile_793) (__FILE_58 * (____stream_791));// L919 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____sprintf_chk_825) (char * __restrict ____s_821, int ____flag_822, __size_t_1 ____slen_823, const char * __restrict ____format_824, ... );// L23:L24 -extern int (____vsprintf_chk_832) (char * __restrict ____s_826, int ____flag_827, __size_t_1 ____slen_828, const char * __restrict ____format_829, ____gnuc_va_list_82 ____ap_830);// L25:L27 +extern int (____sprintf_chk_899) (char * __restrict ____s_895, int ____flag_896, __size_t_1 ____slen_897, const char * __restrict ____format_898, ... );// L23:L24 +extern int (____vsprintf_chk_906) (char * __restrict ____s_900, int ____flag_901, __size_t_1 ____slen_902, const char * __restrict ____format_903, ____gnuc_va_list_86 ____ap_904);// L25:L27 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____snprintf_chk_846) (char * __restrict ____s_841, __size_t_1 ____n_842, int ____flag_843, __size_t_1 ____slen_844, const char * __restrict ____format_845, ... );// L52:L54 -extern int (____vsnprintf_chk_854) (char * __restrict ____s_847, __size_t_1 ____n_848, int ____flag_849, __size_t_1 ____slen_850, const char * __restrict ____format_851, ____gnuc_va_list_82 ____ap_852);// L55:L57 +extern int (____snprintf_chk_920) (char * __restrict ____s_915, __size_t_1 ____n_916, int ____flag_917, __size_t_1 ____slen_918, const char * __restrict ____format_919, ... );// L52:L54 +extern int (____vsnprintf_chk_928) (char * __restrict ____s_921, __size_t_1 ____n_922, int ____flag_923, __size_t_1 ____slen_924, const char * __restrict ____format_925, ____gnuc_va_list_86 ____ap_926);// L55:L57 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____fprintf_chk_869) (__FILE_58 * __restrict ____stream_865, int ____flag_867, const char * __restrict ____format_868, ... );// L85:L86 -extern int (____printf_chk_873) (int ____flag_871, const char * __restrict ____format_872, ... );// L87 -extern int (____vfprintf_chk_880) (__FILE_58 * __restrict ____stream_874, int ____flag_876, const char * __restrict ____format_877, ____gnuc_va_list_82 ____ap_878);// L88:L89 -extern int (____vprintf_chk_888) (int ____flag_884, const char * __restrict ____format_885, ____gnuc_va_list_82 ____ap_886);// L90:L91 +extern int (____fprintf_chk_943) (__FILE_59 * __restrict ____stream_939, int ____flag_941, const char * __restrict ____format_942, ... );// L85:L86 +extern int (____printf_chk_947) (int ____flag_945, const char * __restrict ____format_946, ... );// L87 +extern int (____vfprintf_chk_954) (__FILE_59 * __restrict ____stream_948, int ____flag_950, const char * __restrict ____format_951, ____gnuc_va_list_86 ____ap_952);// L88:L89 +extern int (____vprintf_chk_962) (int ____flag_958, const char * __restrict ____format_959, ____gnuc_va_list_86 ____ap_960);// L90:L91 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____dprintf_chk_910) (int ____fd_907, int ____flag_908, const char * __restrict ____fmt_909, ... );// L131:L132 -extern int (____vdprintf_chk_916) (int ____fd_911, int ____flag_912, const char * __restrict ____fmt_913, ____gnuc_va_list_82 ____arg_914);// L133:L135 +extern int (____dprintf_chk_984) (int ____fd_981, int ____flag_982, const char * __restrict ____fmt_983, ... );// L131:L132 +extern int (____vdprintf_chk_990) (int ____fd_985, int ____flag_986, const char * __restrict ____fmt_987, ____gnuc_va_list_86 ____arg_988);// L133:L135 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern char * ((____fgets_chk_930) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 -extern char * ((____fgets_chk_932) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 -extern char * ((____fgets_chk_934) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 -extern char * ((____fgets_alias_940) (char * __restrict ____s_936, int ____n_937, __FILE_58 * __restrict ____stream_938));// L243:L245 -extern char * ((____fgets_chk_warn_947) (char * __restrict ____s_942, __size_t_1 ____size_943, int ____n_944, __FILE_58 * __restrict ____stream_945));// L246:L250 +extern char * ((____fgets_chk_1004) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_chk_1006) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_chk_1008) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_alias_1014) (char * __restrict ____s_1010, int ____n_1011, __FILE_59 * __restrict ____stream_1012));// L243:L245 +extern char * ((____fgets_chk_warn_1021) (char * __restrict ____s_1016, __size_t_1 ____size_1017, int ____n_1018, __FILE_59 * __restrict ____stream_1019));// L246:L250 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ // typedef moved to top of scope // typedef moved to top of scope -static __inline unsigned int (____bswap_32_1026) (unsigned int ____bsx_1025) { +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +static __inline unsigned int (____bswap_32_1158) (unsigned int ____bsx_1157) { + +if (__static_condition_default_1159) { + +{ +{ + + + +__static_type_error("invalid type found in return expression"); +} +} + + +} +} +static __inline ____uint64_t_13 (____bswap_64_1162) (____uint64_t_13 ____bsx_1160) { -if (__static_condition_default_1027) { +if (__static_condition_default_1164) { { { @@ -1873,9 +2688,9 @@ __static_type_error("invalid type found in return expression"); } } -static __inline ____uint64_t_13 (____bswap_64_1029) (____uint64_t_13 ____bsx_1028) { +static __inline ____uint64_t_1112 (____bswap_64_1163) (____uint64_t_1112 ____bsx_1161) { -if (__static_condition_default_1027) { +if (__static_condition_default_1165) { { { @@ -1889,40 +2704,54 @@ __static_type_error("invalid type found in return expression"); } } -union __wait_1041 ;// L66 +union __wait_1177 ;// L66 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern __size_t_1 (____ctype_get_mb_cur_max_1065) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_1066) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_1067) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_1068) (void );// L139 -extern double (__atof_1070) (const char * (____nptr_1069));// L144:L145 -extern double (__atof_1071) (const char * (____nptr_1069));// L144:L145 -extern int (__atoi_1073) (const char * (____nptr_1072));// L147:L148 -extern int (__atoi_1074) (const char * (____nptr_1072));// L147:L148 -extern long int (__atol_1076) (const char * (____nptr_1075));// L150:L151 -extern long int (__atol_1077) (const char * (____nptr_1075));// L150:L151 -extern long long int (__atoll_1079) (const char * (____nptr_1078));// L157:L158 -extern long long int (__atoll_1080) (const char * (____nptr_1078));// L157:L158 -extern double (__strtod_1083) (const char * __restrict ____nptr_1081, char * (* __restrict ____endptr_1082));// L164:L166 -extern float (__strtof_1086) (const char * __restrict ____nptr_1084, char * (* __restrict ____endptr_1085));// L172:L173 -extern long double (__strtold_1089) (const char * __restrict ____nptr_1087, char * (* __restrict ____endptr_1088));// L175:L177 -extern long int (__strtol_1093) (const char * __restrict ____nptr_1090, char * (* __restrict ____endptr_1091), int ____base_1092);// L183:L185 -extern unsigned long int (__strtoul_1097) (const char * __restrict ____nptr_1094, char * (* __restrict ____endptr_1095), int ____base_1096);// L187:L189 -extern long long int (__strtoq_1101) (const char * __restrict ____nptr_1098, char * (* __restrict ____endptr_1099), int ____base_1100);// L195:L197 -extern unsigned long long int (__strtouq_1105) (const char * __restrict ____nptr_1102, char * (* __restrict ____endptr_1103), int ____base_1104);// L200:L202 -extern long long int (__strtoll_1109) (const char * __restrict ____nptr_1106, char * (* __restrict ____endptr_1107), int ____base_1108);// L209:L211 -extern long long int (__strtoll_1110) (const char * __restrict ____nptr_1106, char * (* __restrict ____endptr_1107), int ____base_1108);// L209:L211 -extern unsigned long long int (__strtoull_1114) (const char * __restrict ____nptr_1111, char * (* __restrict ____endptr_1112), int ____base_1113);// L214:L216 +extern __size_t_1 (____ctype_get_mb_cur_max_1201) (void );// L139 +extern __size_t_1093 (____ctype_get_mb_cur_max_1202) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_1203) (void );// L139 +extern __size_t_1093 (____ctype_get_mb_cur_max_1204) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_1205) (void );// L139 +extern __size_t_1093 (____ctype_get_mb_cur_max_1206) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_1207) (void );// L139 +extern __size_t_1093 (____ctype_get_mb_cur_max_1208) (void );// L139 +extern double (__atof_1210) (const char * (____nptr_1209));// L144:L145 +extern double (__atof_1211) (const char * (____nptr_1209));// L144:L145 +extern int (__atoi_1213) (const char * (____nptr_1212));// L147:L148 +extern int (__atoi_1214) (const char * (____nptr_1212));// L147:L148 +extern long int (__atol_1216) (const char * (____nptr_1215));// L150:L151 +extern long int (__atol_1217) (const char * (____nptr_1215));// L150:L151 +extern long long int (__atoll_1219) (const char * (____nptr_1218));// L157:L158 +extern long long int (__atoll_1220) (const char * (____nptr_1218));// L157:L158 +extern double (__strtod_1223) (const char * __restrict ____nptr_1221, char * (* __restrict ____endptr_1222));// L164:L166 +extern float (__strtof_1226) (const char * __restrict ____nptr_1224, char * (* __restrict ____endptr_1225));// L172:L173 +extern long double (__strtold_1229) (const char * __restrict ____nptr_1227, char * (* __restrict ____endptr_1228));// L175:L177 +extern long int (__strtol_1233) (const char * __restrict ____nptr_1230, char * (* __restrict ____endptr_1231), int ____base_1232);// L183:L185 +extern unsigned long int (__strtoul_1237) (const char * __restrict ____nptr_1234, char * (* __restrict ____endptr_1235), int ____base_1236);// L187:L189 +extern long long int (__strtoq_1241) (const char * __restrict ____nptr_1238, char * (* __restrict ____endptr_1239), int ____base_1240);// L195:L197 +extern unsigned long long int (__strtouq_1245) (const char * __restrict ____nptr_1242, char * (* __restrict ____endptr_1243), int ____base_1244);// L200:L202 +extern long long int (__strtoll_1249) (const char * __restrict ____nptr_1246, char * (* __restrict ____endptr_1247), int ____base_1248);// L209:L211 +extern long long int (__strtoll_1250) (const char * __restrict ____nptr_1246, char * (* __restrict ____endptr_1247), int ____base_1248);// L209:L211 +extern unsigned long long int (__strtoull_1254) (const char * __restrict ____nptr_1251, char * (* __restrict ____endptr_1252), int ____base_1253);// L214:L216 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ __extension__/* no function due to type errors in the function prototype */ -extern char * ((__l64a_1119) (long int ____n_1118));// L305 -extern char * ((__l64a_1120) (long int ____n_1118));// L305 -extern long int (__a64l_1122) (const char * (____s_1121));// L308:L309 -extern long int (__a64l_1123) (const char * (____s_1121));// L308:L309 +extern char * ((__l64a_1259) (long int ____n_1258));// L305 +extern char * ((__l64a_1260) (long int ____n_1258));// L305 +extern long int (__a64l_1262) (const char * (____s_1261));// L308:L309 +extern long int (__a64l_1263) (const char * (____s_1261));// L308:L309 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope @@ -1964,9 +2793,116 @@ extern long int (__a64l_1123) (const char * (____s_1121));// L308:L309 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -static __inline unsigned int (____bswap_32_1166) (unsigned int ____bsx_1165) { +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +static __inline unsigned int (____bswap_32_1452) (unsigned int ____bsx_1451) { -if (__static_condition_default_1167) { +if (__static_condition_default_1453) { { { @@ -1980,9 +2916,9 @@ __static_type_error("invalid type found in return expression"); } } -static __inline ____uint64_t_13 (____bswap_64_1169) (____uint64_t_13 ____bsx_1168) { +static __inline ____uint64_t_13 (____bswap_64_1456) (____uint64_t_13 ____bsx_1454) { -if (__static_condition_default_1167) { +if (__static_condition_default_1458) { { { @@ -1996,27 +2932,47 @@ __static_type_error("invalid type found in return expression"); } } +static __inline ____uint64_t_1275 (____bswap_64_1457) (____uint64_t_1275 ____bsx_1455) { + +if (__static_condition_default_1459) { + +{ +{ + + + +__static_type_error("invalid type found in return expression"); +} +} + + +} +} +// typedef moved to top of scope // typedef moved to top of scope +// typedef moved to top of scope +struct __timespec_1466 ;// L120 + +struct __timeval_1476 ;// L30 + // typedef moved to top of scope // typedef moved to top of scope -struct __timespec_1176 ;// L120 -struct __timeval_1179 ;// L30 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern int (__select_1199) (int ____nfds_1192, __fd_set_1189 * __restrict ____readfds_1193, __fd_set_1189 * __restrict ____writefds_1194, __fd_set_1189 * __restrict ____exceptfds_1195, struct __timeval_1179 * __restrict ____timeout_1197);// L106:L109 -extern int (__select_1200) (int ____nfds_1192, __fd_set_1189 * __restrict ____readfds_1193, __fd_set_1189 * __restrict ____writefds_1194, __fd_set_1189 * __restrict ____exceptfds_1195, struct __forward_tag_reference_1196 * __restrict ____timeout_1198);// L106:L109 -extern int (__pselect_1209) (int ____nfds_1201, __fd_set_1189 * __restrict ____readfds_1202, __fd_set_1189 * __restrict ____writefds_1203, __fd_set_1189 * __restrict ____exceptfds_1204, const struct __timespec_1176 * __restrict ____timeout_1206, const ____sigset_t_1174 * __restrict ____sigmask_1208);// L118:L122 -extern int (__pselect_1210) (int ____nfds_1201, __fd_set_1189 * __restrict ____readfds_1202, __fd_set_1189 * __restrict ____writefds_1203, __fd_set_1189 * __restrict ____exceptfds_1204, const struct __forward_tag_reference_1205 * __restrict ____timeout_1207, const ____sigset_t_1174 * __restrict ____sigmask_1208);// L118:L122 -extern long int (____fdelt_chk_1212) (long int ____d_1211);// L24 -extern long int (____fdelt_warn_1214) (long int ____d_1213);// L25:L26 -extern unsigned int (__gnu_dev_major_1216) (unsigned long long int ____dev_1215);// L27:L28 -extern unsigned int (__gnu_dev_major_1217) (unsigned long long int ____dev_1215);// L27:L28 -extern unsigned int (__gnu_dev_minor_1219) (unsigned long long int ____dev_1218);// L30:L31 -extern unsigned long long int (__gnu_dev_makedev_1222) (unsigned int ____major_1220, unsigned int ____minor_1221);// L33:L35 +extern int (__select_1513) (int ____nfds_1502, __fd_set_1499 * __restrict ____readfds_1503, __fd_set_1499 * __restrict ____writefds_1505, __fd_set_1499 * __restrict ____exceptfds_1507, struct __timeval_1476 * __restrict ____timeout_1510);// L106:L109 +extern int (__select_1514) (int ____nfds_1502, __fd_set_1499 * __restrict ____readfds_1503, __fd_set_1499 * __restrict ____writefds_1505, __fd_set_1499 * __restrict ____exceptfds_1507, struct __forward_tag_reference_1509 * __restrict ____timeout_1512);// L106:L109 +extern int (__pselect_1529) (int ____nfds_1517, __fd_set_1499 * __restrict ____readfds_1518, __fd_set_1499 * __restrict ____writefds_1520, __fd_set_1499 * __restrict ____exceptfds_1522, const struct __timespec_1466 * __restrict ____timeout_1525, const ____sigset_t_1464 * __restrict ____sigmask_1528);// L118:L122 +extern int (__pselect_1530) (int ____nfds_1517, __fd_set_1499 * __restrict ____readfds_1518, __fd_set_1499 * __restrict ____writefds_1520, __fd_set_1499 * __restrict ____exceptfds_1522, const struct __forward_tag_reference_1524 * __restrict ____timeout_1527, const ____sigset_t_1464 * __restrict ____sigmask_1528);// L118:L122 +extern long int (____fdelt_chk_1534) (long int ____d_1533);// L24 +extern long int (____fdelt_warn_1536) (long int ____d_1535);// L25:L26 +extern unsigned int (__gnu_dev_major_1538) (unsigned long long int ____dev_1537);// L27:L28 +extern unsigned int (__gnu_dev_major_1539) (unsigned long long int ____dev_1537);// L27:L28 +extern unsigned int (__gnu_dev_minor_1541) (unsigned long long int ____dev_1540);// L30:L31 +extern unsigned long long int (__gnu_dev_makedev_1544) (unsigned int ____major_1542, unsigned int ____minor_1543);// L33:L35 __extension__/* no function due to type errors in the function prototype */ __extension__/* no function due to type errors in the function prototype */ __extension__/* no function due to type errors in the function prototype */ @@ -2028,190 +2984,292 @@ __extension__/* no function due to type errors in the function prototype */ // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -union __pthread_attr_t_1235 ;// L63 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern int (__rand_1266) (void );// L374 -extern void (__srand_1268) (unsigned int ____seed_1267);// L376 -extern int (__rand_r_1270) (unsigned int * (____seed_1269));// L381 -extern double (__drand48_1271) (void );// L389 -extern double (__erand48_1273) (unsigned short int ____xsubi_1272[3]);// L390 -extern long int (__lrand48_1274) (void );// L393 -extern long int (__nrand48_1276) (unsigned short int ____xsubi_1275[3]);// L394:L395 -extern long int (__mrand48_1277) (void );// L398 -extern long int (__jrand48_1279) (unsigned short int ____xsubi_1278[3]);// L399:L400 -extern void (__srand48_1281) (long int ____seedval_1280);// L403 -extern unsigned short int * ((__seed48_1283) (unsigned short int ____seed16v_1282[3]));// L404:L405 -extern void (__lcong48_1285) (unsigned short int ____param_1284[7]);// L406 -extern void * ((__malloc_1287) (__size_t_1 ____size_1286));// L466 -extern void * ((__malloc_1288) (__size_t_1 ____size_1286));// L466 -extern void * ((__malloc_1289) (__size_t_1 ____size_1286));// L466 -extern void * ((__malloc_1290) (__size_t_1 ____size_1286));// L466 -extern void * ((__calloc_1293) (__size_t_1 ____nmemb_1291, __size_t_1 ____size_1292));// L468:L469 -extern void * ((__calloc_1294) (__size_t_1 ____nmemb_1291, __size_t_1 ____size_1292));// L468:L469 -extern void * ((__realloc_1297) (void * (____ptr_1295), __size_t_1 ____size_1296));// L480:L481 -extern void (__free_1299) (void * (____ptr_1298));// L483 -extern void (__cfree_1301) (void * (____ptr_1300));// L488 -extern void * ((__alloca_1303) (__size_t_1 ____size_1302));// L32 -extern void * ((__valloc_1305) (__size_t_1 ____size_1304));// L498 -extern void * ((__valloc_1306) (__size_t_1 ____size_1304));// L498 -extern int (__posix_memalign_1310) (void * (* (____memptr_1307)), __size_t_1 ____alignment_1308, __size_t_1 ____size_1309);// L503:L504 -extern int (__posix_memalign_1311) (void * (* (____memptr_1307)), __size_t_1 ____alignment_1308, __size_t_1 ____size_1309);// L503:L504 -extern void * ((__aligned_alloc_1314) (__size_t_1 ____alignment_1312, __size_t_1 ____size_1313));// L509:L510 -extern void * ((__aligned_alloc_1315) (__size_t_1 ____alignment_1312, __size_t_1 ____size_1313));// L509:L510 -extern void * ((__aligned_alloc_1316) (__size_t_1 ____alignment_1312, __size_t_1 ____size_1313));// L509:L510 -extern void * ((__aligned_alloc_1317) (__size_t_1 ____alignment_1312, __size_t_1 ____size_1313));// L509:L510 -extern void (__abort_1318) (void );// L515 -extern int (__atexit_1320) (void (* (____func_1319)) (void ));// L519 -extern int (__at_quick_exit_1322) (void (* (____func_1321)) (void ));// L527 -extern int (__on_exit_1327) (void (* (____func_1325)) (int ____status_1323, void * (____arg_1324)), void * (____arg_1326));// L535:L536 -extern void (__exit_1329) (int ____status_1328);// L543 -extern void (__exit_1330) (int ____status_1328);// L543 -extern void (__quick_exit_1332) (int ____status_1331);// L549 -extern void (___Exit_1334) (int ____status_1333);// L557 -extern char * ((__getenv_1336) (const char * (____name_1335)));// L564 -extern char * ((__getenv_1337) (const char * (____name_1335)));// L564 -extern int (__putenv_1339) (char * (____string_1338));// L578 -extern int (__setenv_1343) (const char * (____name_1340), const char * (____value_1341), int ____replace_1342);// L584:L585 -extern int (__unsetenv_1345) (const char * (____name_1344));// L588 -extern int (__clearenv_1346) (void );// L595 -extern char * ((__mktemp_1348) (char * (____template_1347)));// L606 -extern int (__mkstemp_1351) (char * (____template_1349));// L619 -extern int (__mkstemp_1353) (char * (____template_1349));// L619 -extern int (__mkstemp_1352) (char * (____template_1350));// L622:L623 -extern int (__mkstemp_1354) (char * (____template_1350));// L622:L623 -extern int (__mkstemps_1359) (char * (____template_1355), int ____suffixlen_1356);// L641 -extern int (__mkstemps_1360) (char * (____template_1357), int ____suffixlen_1358);// L644:L645 -extern int (__mkstemps_1361) (char * (____template_1355), int ____suffixlen_1356);// L641 -extern int (__mkstemps_1362) (char * (____template_1357), int ____suffixlen_1358);// L644:L645 -extern char * ((__mkdtemp_1364) (char * (____template_1363)));// L662 -extern char * ((__mkdtemp_1365) (char * (____template_1363)));// L662 -extern int (__system_1367) (const char * (____command_1366));// L716 -extern int (__system_1368) (const char * (____command_1366));// L716 -extern int (__system_1369) (const char * (____command_1366));// L716 -extern int (__system_1370) (const char * (____command_1366));// L716 -extern char * ((__realpath_1373) (const char * __restrict ____name_1371, char * __restrict ____resolved_1372));// L733:L734 -extern char * ((__realpath_1374) (const char * __restrict ____name_1371, char * __restrict ____resolved_1372));// L733:L734 -// typedef moved to top of scope -extern void * ((__bsearch_1383) (const void * (____key_1376), const void * (____base_1377), __size_t_1 ____nmemb_1378, __size_t_1 ____size_1379, ____compar_fn_t_1375 ____compar_1380));// L754:L756 -extern void * ((__bsearch_1385) (const void * (____key_1376), const void * (____base_1377), __size_t_1 ____nmemb_1378, __size_t_1 ____size_1379, ____compar_fn_t_1375 ____compar_1380));// L754:L756 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +union __pthread_attr_t_1578 ;// L63 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern int (__rand_1609) (void );// L374 +extern void (__srand_1611) (unsigned int ____seed_1610);// L376 +extern int (__rand_r_1613) (unsigned int * (____seed_1612));// L381 +extern double (__drand48_1614) (void );// L389 +extern double (__erand48_1616) (unsigned short int ____xsubi_1615[3]);// L390 +extern long int (__lrand48_1617) (void );// L393 +extern long int (__nrand48_1619) (unsigned short int ____xsubi_1618[3]);// L394:L395 +extern long int (__mrand48_1620) (void );// L398 +extern long int (__jrand48_1622) (unsigned short int ____xsubi_1621[3]);// L399:L400 +extern void (__srand48_1624) (long int ____seedval_1623);// L403 +extern unsigned short int * ((__seed48_1626) (unsigned short int ____seed16v_1625[3]));// L404:L405 +extern void (__lcong48_1628) (unsigned short int ____param_1627[7]);// L406 +extern void * ((__malloc_1631) (__size_t_1 ____size_1629));// L466 +extern void * ((__malloc_1632) (__size_t_1093 ____size_1630));// L466 +extern void * ((__malloc_1633) (__size_t_1 ____size_1629));// L466 +extern void * ((__malloc_1634) (__size_t_1093 ____size_1630));// L466 +extern void * ((__calloc_1639) (__size_t_1 ____nmemb_1635, __size_t_1 ____size_1637));// L468:L469 +extern void * ((__calloc_1640) (__size_t_1093 ____nmemb_1636, __size_t_1093 ____size_1638));// L468:L469 +extern void * ((__calloc_1641) (__size_t_1 ____nmemb_1635, __size_t_1 ____size_1637));// L468:L469 +extern void * ((__calloc_1642) (__size_t_1093 ____nmemb_1636, __size_t_1093 ____size_1638));// L468:L469 +extern void * ((__realloc_1646) (void * (____ptr_1643), __size_t_1 ____size_1644));// L480:L481 +extern void * ((__realloc_1647) (void * (____ptr_1643), __size_t_1093 ____size_1645));// L480:L481 +extern void (__free_1649) (void * (____ptr_1648));// L483 +extern void (__cfree_1651) (void * (____ptr_1650));// L488 +extern void * ((__alloca_1654) (__size_t_1 ____size_1652));// L32 +extern void * ((__alloca_1655) (__size_t_1093 ____size_1653));// L32 +extern void * ((__valloc_1658) (__size_t_1 ____size_1656));// L498 +extern void * ((__valloc_1659) (__size_t_1093 ____size_1657));// L498 +extern void * ((__valloc_1660) (__size_t_1 ____size_1656));// L498 +extern void * ((__valloc_1661) (__size_t_1093 ____size_1657));// L498 +extern int (__posix_memalign_1667) (void * (* (____memptr_1662)), __size_t_1 ____alignment_1663, __size_t_1 ____size_1665);// L503:L504 +extern int (__posix_memalign_1668) (void * (* (____memptr_1662)), __size_t_1093 ____alignment_1664, __size_t_1093 ____size_1666);// L503:L504 +extern int (__posix_memalign_1669) (void * (* (____memptr_1662)), __size_t_1 ____alignment_1663, __size_t_1 ____size_1665);// L503:L504 +extern int (__posix_memalign_1670) (void * (* (____memptr_1662)), __size_t_1093 ____alignment_1664, __size_t_1093 ____size_1666);// L503:L504 +extern void * ((__aligned_alloc_1675) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 +extern void * ((__aligned_alloc_1676) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 +extern void * ((__aligned_alloc_1677) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 +extern void * ((__aligned_alloc_1678) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 +extern void * ((__aligned_alloc_1679) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 +extern void * ((__aligned_alloc_1680) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 +extern void * ((__aligned_alloc_1681) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 +extern void * ((__aligned_alloc_1682) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 +extern void (__abort_1683) (void );// L515 +extern int (__atexit_1685) (void (* (____func_1684)) (void ));// L519 +extern int (__at_quick_exit_1687) (void (* (____func_1686)) (void ));// L527 +extern int (__on_exit_1692) (void (* (____func_1690)) (int ____status_1688, void * (____arg_1689)), void * (____arg_1691));// L535:L536 +extern void (__exit_1694) (int ____status_1693);// L543 +extern void (__exit_1695) (int ____status_1693);// L543 +extern void (__quick_exit_1697) (int ____status_1696);// L549 +extern void (___Exit_1699) (int ____status_1698);// L557 +extern char * ((__getenv_1701) (const char * (____name_1700)));// L564 +extern char * ((__getenv_1702) (const char * (____name_1700)));// L564 +extern int (__putenv_1704) (char * (____string_1703));// L578 +extern int (__setenv_1708) (const char * (____name_1705), const char * (____value_1706), int ____replace_1707);// L584:L585 +extern int (__unsetenv_1710) (const char * (____name_1709));// L588 +extern int (__clearenv_1711) (void );// L595 +extern char * ((__mktemp_1713) (char * (____template_1712)));// L606 +extern int (__mkstemp_1716) (char * (____template_1714));// L619 +extern int (__mkstemp_1718) (char * (____template_1714));// L619 +extern int (__mkstemp_1717) (char * (____template_1715));// L622:L623 +extern int (__mkstemp_1719) (char * (____template_1715));// L622:L623 +extern int (__mkstemps_1724) (char * (____template_1720), int ____suffixlen_1721);// L641 +extern int (__mkstemps_1725) (char * (____template_1722), int ____suffixlen_1723);// L644:L645 +extern int (__mkstemps_1726) (char * (____template_1720), int ____suffixlen_1721);// L641 +extern int (__mkstemps_1727) (char * (____template_1722), int ____suffixlen_1723);// L644:L645 +extern char * ((__mkdtemp_1729) (char * (____template_1728)));// L662 +extern char * ((__mkdtemp_1730) (char * (____template_1728)));// L662 +extern int (__system_1732) (const char * (____command_1731));// L716 +extern int (__system_1733) (const char * (____command_1731));// L716 +extern int (__system_1734) (const char * (____command_1731));// L716 +extern int (__system_1735) (const char * (____command_1731));// L716 +extern char * ((__realpath_1738) (const char * __restrict ____name_1736, char * __restrict ____resolved_1737));// L733:L734 +extern char * ((__realpath_1739) (const char * __restrict ____name_1736, char * __restrict ____resolved_1737));// L733:L734 +// typedef moved to top of scope +extern void * ((__bsearch_1751) (const void * (____key_1741), const void * (____base_1742), __size_t_1 ____nmemb_1743, __size_t_1 ____size_1745, ____compar_fn_t_1740 ____compar_1747));// L754:L756 +extern void * ((__bsearch_1752) (const void * (____key_1741), const void * (____base_1742), __size_t_1093 ____nmemb_1744, __size_t_1093 ____size_1746, ____compar_fn_t_1740 ____compar_1747));// L754:L756 +extern void * ((__bsearch_1755) (const void * (____key_1741), const void * (____base_1742), __size_t_1 ____nmemb_1743, __size_t_1 ____size_1745, ____compar_fn_t_1740 ____compar_1747));// L754:L756 +extern void * ((__bsearch_1756) (const void * (____key_1741), const void * (____base_1742), __size_t_1093 ____nmemb_1744, __size_t_1093 ____size_1746, ____compar_fn_t_1740 ____compar_1747));// L754:L756 /* no function due to type errors in the function prototype */ -extern void (__qsort_1404) (void * (____base_1399), __size_t_1 ____nmemb_1400, __size_t_1 ____size_1401, ____compar_fn_t_1375 ____compar_1402);// L764:L765 -extern void (__qsort_1406) (void * (____base_1399), __size_t_1 ____nmemb_1400, __size_t_1 ____size_1401, ____compar_fn_t_1375 ____compar_1402);// L764:L765 -extern int (__abs_1409) (int ____x_1408);// L774 -extern int (__abs_1410) (int ____x_1408);// L774 -extern long int (__labs_1412) (long int ____x_1411);// L775 -extern long int (__labs_1413) (long int ____x_1411);// L775 -extern long long int (__llabs_1415) (long long int ____x_1414);// L779:L780 -extern long long int (__llabs_1416) (long long int ____x_1414);// L779:L780 -extern __div_t_1054 (__div_1419) (int ____numer_1417, int ____denom_1418);// L788:L789 -extern __div_t_1054 (__div_1420) (int ____numer_1417, int ____denom_1418);// L788:L789 -extern __ldiv_t_1059 (__ldiv_1423) (long int ____numer_1421, long int ____denom_1422);// L790:L791 -extern __ldiv_t_1059 (__ldiv_1425) (long int ____numer_1421, long int ____denom_1422);// L790:L791 -extern __lldiv_t_1064 (__lldiv_1429) (long long int ____numer_1427, long long int ____denom_1428);// L796:L798 -extern __lldiv_t_1064 (__lldiv_1431) (long long int ____numer_1427, long long int ____denom_1428);// L796:L798 -extern char * ((__ecvt_1437) (double ____value_1433, int ____ndigit_1434, int * __restrict ____decpt_1435, int * __restrict ____sign_1436));// L811:L812 -extern char * ((__ecvt_1438) (double ____value_1433, int ____ndigit_1434, int * __restrict ____decpt_1435, int * __restrict ____sign_1436));// L811:L812 -extern char * ((__fcvt_1443) (double ____value_1439, int ____ndigit_1440, int * __restrict ____decpt_1441, int * __restrict ____sign_1442));// L817:L818 -extern char * ((__fcvt_1444) (double ____value_1439, int ____ndigit_1440, int * __restrict ____decpt_1441, int * __restrict ____sign_1442));// L817:L818 -extern char * ((__gcvt_1448) (double ____value_1445, int ____ndigit_1446, char * (____buf_1447)));// L823:L824 -extern char * ((__gcvt_1449) (double ____value_1445, int ____ndigit_1446, char * (____buf_1447)));// L823:L824 -extern char * ((__qecvt_1454) (long double ____value_1450, int ____ndigit_1451, int * __restrict ____decpt_1452, int * __restrict ____sign_1453));// L829:L831 -extern char * ((__qecvt_1455) (long double ____value_1450, int ____ndigit_1451, int * __restrict ____decpt_1452, int * __restrict ____sign_1453));// L829:L831 -extern char * ((__qfcvt_1460) (long double ____value_1456, int ____ndigit_1457, int * __restrict ____decpt_1458, int * __restrict ____sign_1459));// L832:L834 -extern char * ((__qfcvt_1461) (long double ____value_1456, int ____ndigit_1457, int * __restrict ____decpt_1458, int * __restrict ____sign_1459));// L832:L834 -extern char * ((__qgcvt_1465) (long double ____value_1462, int ____ndigit_1463, char * (____buf_1464)));// L835:L836 -extern char * ((__qgcvt_1466) (long double ____value_1462, int ____ndigit_1463, char * (____buf_1464)));// L835:L836 -extern int (__ecvt_r_1473) (double ____value_1467, int ____ndigit_1468, int * __restrict ____decpt_1469, int * __restrict ____sign_1470, char * __restrict ____buf_1471, __size_t_1 ____len_1472);// L841:L843 -extern int (__fcvt_r_1480) (double ____value_1474, int ____ndigit_1475, int * __restrict ____decpt_1476, int * __restrict ____sign_1477, char * __restrict ____buf_1478, __size_t_1 ____len_1479);// L844:L846 -extern int (__qecvt_r_1487) (long double ____value_1481, int ____ndigit_1482, int * __restrict ____decpt_1483, int * __restrict ____sign_1484, char * __restrict ____buf_1485, __size_t_1 ____len_1486);// L848:L851 -extern int (__qfcvt_r_1494) (long double ____value_1488, int ____ndigit_1489, int * __restrict ____decpt_1490, int * __restrict ____sign_1491, char * __restrict ____buf_1492, __size_t_1 ____len_1493);// L852:L855 -extern int (__mblen_1497) (const char * (____s_1495), __size_t_1 ____n_1496);// L862 -extern int (__mblen_1498) (const char * (____s_1495), __size_t_1 ____n_1496);// L862 -extern int (__mbtowc_1502) (__wchar_t_1018 * __restrict ____pwc_1499, const char * __restrict ____s_1500, __size_t_1 ____n_1501);// L865:L866 -extern int (__wctomb_1505) (char * (____s_1503), __wchar_t_1018 ____wchar_1504);// L869 -extern __size_t_1 (__mbstowcs_1509) (__wchar_t_1018 * __restrict ____pwcs_1506, const char * __restrict ____s_1507, __size_t_1 ____n_1508);// L873:L874 -extern __size_t_1 (__wcstombs_1513) (char * __restrict ____s_1510, const __wchar_t_1018 * __restrict ____pwcs_1511, __size_t_1 ____n_1512);// L876:L878 -extern int (__rpmatch_1516) (const char * (____response_1514));// L887 -extern int (__rpmatch_1515) (const char * (____response_1514));// L887 -extern int (__getsubopt_1521) (char * (* __restrict ____optionp_1517), char * const * __restrict ____tokens_1518, char * (* __restrict ____valuep_1519));// L898:L901 -extern int (__getsubopt_1520) (char * (* __restrict ____optionp_1517), char * const * __restrict ____tokens_1518, char * (* __restrict ____valuep_1519));// L898:L901 -extern int (__getloadavg_1524) (double ____loadavg_1522[], int ____nelem_1523);// L950:L951 +extern void (__qsort_1784) (void * (____base_1777), __size_t_1 ____nmemb_1778, __size_t_1 ____size_1780, ____compar_fn_t_1740 ____compar_1782);// L764:L765 +extern void (__qsort_1786) (void * (____base_1777), __size_t_1093 ____nmemb_1779, __size_t_1093 ____size_1781, ____compar_fn_t_1740 ____compar_1782);// L764:L765 +extern void (__qsort_1788) (void * (____base_1777), __size_t_1 ____nmemb_1778, __size_t_1 ____size_1780, ____compar_fn_t_1740 ____compar_1782);// L764:L765 +extern void (__qsort_1790) (void * (____base_1777), __size_t_1093 ____nmemb_1779, __size_t_1093 ____size_1781, ____compar_fn_t_1740 ____compar_1782);// L764:L765 +extern int (__abs_1793) (int ____x_1792);// L774 +extern int (__abs_1794) (int ____x_1792);// L774 +extern long int (__labs_1796) (long int ____x_1795);// L775 +extern long int (__labs_1797) (long int ____x_1795);// L775 +extern long long int (__llabs_1799) (long long int ____x_1798);// L779:L780 +extern long long int (__llabs_1800) (long long int ____x_1798);// L779:L780 +extern __div_t_1190 (__div_1803) (int ____numer_1801, int ____denom_1802);// L788:L789 +extern __div_t_1190 (__div_1804) (int ____numer_1801, int ____denom_1802);// L788:L789 +extern __ldiv_t_1195 (__ldiv_1807) (long int ____numer_1805, long int ____denom_1806);// L790:L791 +extern __ldiv_t_1195 (__ldiv_1809) (long int ____numer_1805, long int ____denom_1806);// L790:L791 +extern __lldiv_t_1200 (__lldiv_1813) (long long int ____numer_1811, long long int ____denom_1812);// L796:L798 +extern __lldiv_t_1200 (__lldiv_1815) (long long int ____numer_1811, long long int ____denom_1812);// L796:L798 +extern char * ((__ecvt_1821) (double ____value_1817, int ____ndigit_1818, int * __restrict ____decpt_1819, int * __restrict ____sign_1820));// L811:L812 +extern char * ((__ecvt_1822) (double ____value_1817, int ____ndigit_1818, int * __restrict ____decpt_1819, int * __restrict ____sign_1820));// L811:L812 +extern char * ((__fcvt_1827) (double ____value_1823, int ____ndigit_1824, int * __restrict ____decpt_1825, int * __restrict ____sign_1826));// L817:L818 +extern char * ((__fcvt_1828) (double ____value_1823, int ____ndigit_1824, int * __restrict ____decpt_1825, int * __restrict ____sign_1826));// L817:L818 +extern char * ((__gcvt_1832) (double ____value_1829, int ____ndigit_1830, char * (____buf_1831)));// L823:L824 +extern char * ((__gcvt_1833) (double ____value_1829, int ____ndigit_1830, char * (____buf_1831)));// L823:L824 +extern char * ((__qecvt_1838) (long double ____value_1834, int ____ndigit_1835, int * __restrict ____decpt_1836, int * __restrict ____sign_1837));// L829:L831 +extern char * ((__qecvt_1839) (long double ____value_1834, int ____ndigit_1835, int * __restrict ____decpt_1836, int * __restrict ____sign_1837));// L829:L831 +extern char * ((__qfcvt_1844) (long double ____value_1840, int ____ndigit_1841, int * __restrict ____decpt_1842, int * __restrict ____sign_1843));// L832:L834 +extern char * ((__qfcvt_1845) (long double ____value_1840, int ____ndigit_1841, int * __restrict ____decpt_1842, int * __restrict ____sign_1843));// L832:L834 +extern char * ((__qgcvt_1849) (long double ____value_1846, int ____ndigit_1847, char * (____buf_1848)));// L835:L836 +extern char * ((__qgcvt_1850) (long double ____value_1846, int ____ndigit_1847, char * (____buf_1848)));// L835:L836 +extern int (__ecvt_r_1858) (double ____value_1851, int ____ndigit_1852, int * __restrict ____decpt_1853, int * __restrict ____sign_1854, char * __restrict ____buf_1855, __size_t_1 ____len_1856);// L841:L843 +extern int (__ecvt_r_1859) (double ____value_1851, int ____ndigit_1852, int * __restrict ____decpt_1853, int * __restrict ____sign_1854, char * __restrict ____buf_1855, __size_t_1093 ____len_1857);// L841:L843 +extern int (__fcvt_r_1867) (double ____value_1860, int ____ndigit_1861, int * __restrict ____decpt_1862, int * __restrict ____sign_1863, char * __restrict ____buf_1864, __size_t_1 ____len_1865);// L844:L846 +extern int (__fcvt_r_1868) (double ____value_1860, int ____ndigit_1861, int * __restrict ____decpt_1862, int * __restrict ____sign_1863, char * __restrict ____buf_1864, __size_t_1093 ____len_1866);// L844:L846 +extern int (__qecvt_r_1876) (long double ____value_1869, int ____ndigit_1870, int * __restrict ____decpt_1871, int * __restrict ____sign_1872, char * __restrict ____buf_1873, __size_t_1 ____len_1874);// L848:L851 +extern int (__qecvt_r_1877) (long double ____value_1869, int ____ndigit_1870, int * __restrict ____decpt_1871, int * __restrict ____sign_1872, char * __restrict ____buf_1873, __size_t_1093 ____len_1875);// L848:L851 +extern int (__qfcvt_r_1885) (long double ____value_1878, int ____ndigit_1879, int * __restrict ____decpt_1880, int * __restrict ____sign_1881, char * __restrict ____buf_1882, __size_t_1 ____len_1883);// L852:L855 +extern int (__qfcvt_r_1886) (long double ____value_1878, int ____ndigit_1879, int * __restrict ____decpt_1880, int * __restrict ____sign_1881, char * __restrict ____buf_1882, __size_t_1093 ____len_1884);// L852:L855 +extern int (__mblen_1890) (const char * (____s_1887), __size_t_1 ____n_1888);// L862 +extern int (__mblen_1891) (const char * (____s_1887), __size_t_1093 ____n_1889);// L862 +extern int (__mblen_1892) (const char * (____s_1887), __size_t_1 ____n_1888);// L862 +extern int (__mblen_1893) (const char * (____s_1887), __size_t_1093 ____n_1889);// L862 +extern int (__mbtowc_1898) (__wchar_t_1094 * __restrict ____pwc_1894, const char * __restrict ____s_1895, __size_t_1 ____n_1896);// L865:L866 +extern int (__mbtowc_1899) (__wchar_t_1094 * __restrict ____pwc_1894, const char * __restrict ____s_1895, __size_t_1093 ____n_1897);// L865:L866 +extern int (__wctomb_1902) (char * (____s_1900), __wchar_t_1094 ____wchar_1901);// L869 +extern __size_t_1 (__mbstowcs_1907) (__wchar_t_1094 * __restrict ____pwcs_1903, const char * __restrict ____s_1904, __size_t_1 ____n_1905);// L873:L874 +extern __size_t_1093 (__mbstowcs_1908) (__wchar_t_1094 * __restrict ____pwcs_1903, const char * __restrict ____s_1904, __size_t_1093 ____n_1906);// L873:L874 +extern __size_t_1 (__wcstombs_1913) (char * __restrict ____s_1909, const __wchar_t_1094 * __restrict ____pwcs_1910, __size_t_1 ____n_1911);// L876:L878 +extern __size_t_1093 (__wcstombs_1914) (char * __restrict ____s_1909, const __wchar_t_1094 * __restrict ____pwcs_1910, __size_t_1093 ____n_1912);// L876:L878 +extern int (__rpmatch_1917) (const char * (____response_1915));// L887 +extern int (__rpmatch_1916) (const char * (____response_1915));// L887 +extern int (__getsubopt_1922) (char * (* __restrict ____optionp_1918), char * const * __restrict ____tokens_1919, char * (* __restrict ____valuep_1920));// L898:L901 +extern int (__getsubopt_1921) (char * (* __restrict ____optionp_1918), char * const * __restrict ____tokens_1919, char * (* __restrict ____valuep_1920));// L898:L901 +extern int (__getloadavg_1925) (double ____loadavg_1923[], int ____nelem_1924);// L950:L951 /* no function due to type errors in the function prototype */ -extern char * ((____realpath_chk_1529) (const char * __restrict ____name_1526, char * __restrict ____resolved_1527, __size_t_1 ____resolvedlen_1528));// L23:L25 -extern char * ((____realpath_alias_1532) (const char * __restrict ____name_1530, char * __restrict ____resolved_1531));// L26:L28 -extern char * ((____realpath_chk_warn_1536) (const char * __restrict ____name_1533, char * __restrict ____resolved_1534, __size_t_1 ____resolvedlen_1535));// L29:L34 +extern char * ((____realpath_chk_1931) (const char * __restrict ____name_1927, char * __restrict ____resolved_1928, __size_t_1 ____resolvedlen_1929));// L23:L25 +extern char * ((____realpath_chk_1932) (const char * __restrict ____name_1927, char * __restrict ____resolved_1928, __size_t_1093 ____resolvedlen_1930));// L23:L25 +extern char * ((____realpath_alias_1935) (const char * __restrict ____name_1933, char * __restrict ____resolved_1934));// L26:L28 +extern char * ((____realpath_chk_warn_1940) (const char * __restrict ____name_1936, char * __restrict ____resolved_1937, __size_t_1 ____resolvedlen_1938));// L29:L34 +extern char * ((____realpath_chk_warn_1941) (const char * __restrict ____name_1936, char * __restrict ____resolved_1937, __size_t_1093 ____resolvedlen_1939));// L29:L34 /* no function due to type errors in the function prototype */ -extern int (____ptsname_r_chk_1544) (int ____fd_1540, char * (____buf_1541), __size_t_1 ____buflen_1542, __size_t_1 ____nreal_1543);// L52:L53 -extern int (____ptsname_r_alias_1548) (int ____fd_1545, char * (____buf_1546), __size_t_1 ____buflen_1547);// L54:L56 -extern int (____ptsname_r_chk_warn_1553) (int ____fd_1549, char * (____buf_1550), __size_t_1 ____buflen_1551, __size_t_1 ____nreal_1552);// L57:L61 +extern int (____ptsname_r_chk_1951) (int ____fd_1945, char * (____buf_1946), __size_t_1 ____buflen_1947, __size_t_1 ____nreal_1949);// L52:L53 +extern int (____ptsname_r_chk_1952) (int ____fd_1945, char * (____buf_1946), __size_t_1093 ____buflen_1948, __size_t_1093 ____nreal_1950);// L52:L53 +extern int (____ptsname_r_alias_1957) (int ____fd_1953, char * (____buf_1954), __size_t_1 ____buflen_1955);// L54:L56 +extern int (____ptsname_r_alias_1958) (int ____fd_1953, char * (____buf_1954), __size_t_1093 ____buflen_1956);// L54:L56 +extern int (____ptsname_r_chk_warn_1965) (int ____fd_1959, char * (____buf_1960), __size_t_1 ____buflen_1961, __size_t_1 ____nreal_1963);// L57:L61 +extern int (____ptsname_r_chk_warn_1966) (int ____fd_1959, char * (____buf_1960), __size_t_1093 ____buflen_1962, __size_t_1093 ____nreal_1964);// L57:L61 /* no function due to type errors in the function prototype */ -extern int (____wctomb_chk_1561) (char * (____s_1558), __wchar_t_1018 ____wchar_1559, __size_t_1 ____buflen_1560);// L77:L78 -extern int (____wctomb_alias_1564) (char * (____s_1562), __wchar_t_1018 ____wchar_1563);// L79:L80 +extern int (____wctomb_chk_1977) (char * (____s_1973), __wchar_t_1094 ____wchar_1974, __size_t_1 ____buflen_1975);// L77:L78 +extern int (____wctomb_chk_1978) (char * (____s_1973), __wchar_t_1094 ____wchar_1974, __size_t_1093 ____buflen_1976);// L77:L78 +extern int (____wctomb_alias_1981) (char * (____s_1979), __wchar_t_1094 ____wchar_1980);// L79:L80 /* no function due to type errors in the function prototype */ -extern __size_t_1 (____mbstowcs_chk_1571) (__wchar_t_1018 * __restrict ____dst_1567, const char * __restrict ____src_1568, __size_t_1 ____len_1569, __size_t_1 ____dstlen_1570);// L98:L100 -extern __size_t_1 (____mbstowcs_alias_1575) (__wchar_t_1018 * __restrict ____dst_1572, const char * __restrict ____src_1573, __size_t_1 ____len_1574);// L101:L104 -extern __size_t_1 (____mbstowcs_chk_warn_1580) (__wchar_t_1018 * __restrict ____dst_1576, const char * __restrict ____src_1577, __size_t_1 ____len_1578, __size_t_1 ____dstlen_1579);// L105:L110 +extern __size_t_1 (____mbstowcs_chk_1990) (__wchar_t_1094 * __restrict ____dst_1984, const char * __restrict ____src_1985, __size_t_1 ____len_1986, __size_t_1 ____dstlen_1988);// L98:L100 +extern __size_t_1093 (____mbstowcs_chk_1991) (__wchar_t_1094 * __restrict ____dst_1984, const char * __restrict ____src_1985, __size_t_1093 ____len_1987, __size_t_1093 ____dstlen_1989);// L98:L100 +extern __size_t_1 (____mbstowcs_alias_1996) (__wchar_t_1094 * __restrict ____dst_1992, const char * __restrict ____src_1993, __size_t_1 ____len_1994);// L101:L104 +extern __size_t_1093 (____mbstowcs_alias_1997) (__wchar_t_1094 * __restrict ____dst_1992, const char * __restrict ____src_1993, __size_t_1093 ____len_1995);// L101:L104 +extern __size_t_1 (____mbstowcs_chk_warn_2004) (__wchar_t_1094 * __restrict ____dst_1998, const char * __restrict ____src_1999, __size_t_1 ____len_2000, __size_t_1 ____dstlen_2002);// L105:L110 +extern __size_t_1093 (____mbstowcs_chk_warn_2005) (__wchar_t_1094 * __restrict ____dst_1998, const char * __restrict ____src_1999, __size_t_1093 ____len_2001, __size_t_1093 ____dstlen_2003);// L105:L110 /* no function due to type errors in the function prototype */ -extern __size_t_1 (____wcstombs_chk_1588) (char * __restrict ____dst_1584, const __wchar_t_1018 * __restrict ____src_1585, __size_t_1 ____len_1586, __size_t_1 ____dstlen_1587);// L130:L132 -extern __size_t_1 (____wcstombs_alias_1592) (char * __restrict ____dst_1589, const __wchar_t_1018 * __restrict ____src_1590, __size_t_1 ____len_1591);// L133:L136 -extern __size_t_1 (____wcstombs_chk_warn_1597) (char * __restrict ____dst_1593, const __wchar_t_1018 * __restrict ____src_1594, __size_t_1 ____len_1595, __size_t_1 ____dstlen_1596);// L137:L141 +extern __size_t_1 (____wcstombs_chk_2016) (char * __restrict ____dst_2010, const __wchar_t_1094 * __restrict ____src_2011, __size_t_1 ____len_2012, __size_t_1 ____dstlen_2014);// L130:L132 +extern __size_t_1093 (____wcstombs_chk_2017) (char * __restrict ____dst_2010, const __wchar_t_1094 * __restrict ____src_2011, __size_t_1093 ____len_2013, __size_t_1093 ____dstlen_2015);// L130:L132 +extern __size_t_1 (____wcstombs_alias_2022) (char * __restrict ____dst_2018, const __wchar_t_1094 * __restrict ____src_2019, __size_t_1 ____len_2020);// L133:L136 +extern __size_t_1093 (____wcstombs_alias_2023) (char * __restrict ____dst_2018, const __wchar_t_1094 * __restrict ____src_2019, __size_t_1093 ____len_2021);// L133:L136 +extern __size_t_1 (____wcstombs_chk_warn_2030) (char * __restrict ____dst_2024, const __wchar_t_1094 * __restrict ____src_2025, __size_t_1 ____len_2026, __size_t_1 ____dstlen_2028);// L137:L141 +extern __size_t_1093 (____wcstombs_chk_warn_2031) (char * __restrict ____dst_2024, const __wchar_t_1094 * __restrict ____src_2025, __size_t_1093 ____len_2027, __size_t_1093 ____dstlen_2029);// L137:L141 +// typedef moved to top of scope +// typedef moved to top of scope /* no function due to type errors in the function prototype */ -extern void * ((__memmove_1610) (void * (____dest_1607), const void * (____src_1608), __size_t_1 ____n_1609));// L46:L47 -extern void * ((__memset_1619) (void * (____s_1616), int ____c_1617, __size_t_1 ____n_1618));// L62 -extern void * ((__memset_1620) (void * (____s_1616), int ____c_1617, __size_t_1 ____n_1618));// L62 -extern int (__memcmp_1624) (const void * (____s1_1621), const void * (____s2_1622), __size_t_1 ____n_1623);// L65:L66 -extern void * ((__memchr_1628) (const void * (____s_1625), int ____c_1626, __size_t_1 ____n_1627));// L92:L93 -extern char * ((__strcpy_1631) (char * __restrict ____dest_1629, const char * __restrict ____src_1630));// L125:L126 -extern char * ((__strncpy_1635) (char * __restrict ____dest_1632, const char * __restrict ____src_1633, __size_t_1 ____n_1634));// L128:L130 -extern char * ((__strcat_1638) (char * __restrict ____dest_1636, const char * __restrict ____src_1637));// L133:L134 -extern char * ((__strncat_1642) (char * __restrict ____dest_1639, const char * __restrict ____src_1640, __size_t_1 ____n_1641));// L136:L137 -extern int (__strcmp_1645) (const char * (____s1_1643), const char * (____s2_1644));// L140:L141 -extern int (__strncmp_1649) (const char * (____s1_1646), const char * (____s2_1647), __size_t_1 ____n_1648);// L143:L144 -extern int (__strcoll_1652) (const char * (____s1_1650), const char * (____s2_1651));// L147:L148 -extern __size_t_1 (__strxfrm_1656) (char * __restrict ____dest_1653, const char * __restrict ____src_1654, __size_t_1 ____n_1655);// L150:L152 -// typedef moved to top of scope -// typedef moved to top of scope -extern int (__strcoll_l_1669) (const char * (____s1_1666), const char * (____s2_1667), ____locale_t_1664 ____l_1668);// L162:L163 -extern __size_t_1 (__strxfrm_l_1674) (char * (____dest_1670), const char * (____src_1671), __size_t_1 ____n_1672, ____locale_t_1664 ____l_1673);// L165:L166 -extern char * ((__strdup_1676) (const char * (____s_1675)));// L171:L172 -extern char * ((__strndup_1679) (const char * (____string_1677), __size_t_1 ____n_1678));// L179:L180 -extern char * ((__strchr_1682) (const char * (____s_1680), int ____c_1681));// L231:L232 -extern char * ((__strchr_1683) (const char * (____s_1680), int ____c_1681));// L231:L232 -extern char * ((__strrchr_1686) (const char * (____s_1684), int ____c_1685));// L258:L259 -extern __size_t_1 (__strcspn_1689) (const char * (____s_1687), const char * (____reject_1688));// L280:L281 -extern __size_t_1 (__strspn_1692) (const char * (____s_1690), const char * (____accept_1691));// L284:L285 -extern char * ((__strpbrk_1695) (const char * (____s_1693), const char * (____accept_1694)));// L310:L311 -extern char * ((__strstr_1698) (const char * (____haystack_1696), const char * (____needle_1697)));// L337:L338 -extern char * ((__strtok_1701) (char * __restrict ____s_1699, const char * __restrict ____delim_1700));// L343:L344 -extern char * ((____strtok_r_1705) (char * __restrict ____s_1702, const char * __restrict ____delim_1703, char * (* __restrict ____save_ptr_1704)));// L349:L352 -extern char * ((__strtok_r_1709) (char * __restrict ____s_1706, const char * __restrict ____delim_1707, char * (* __restrict ____save_ptr_1708)));// L354:L356 -extern __size_t_1 (__strlen_1711) (const char * (____s_1710));// L394:L395 -extern __size_t_1 (__strlen_1712) (const char * (____s_1710));// L394:L395 -extern __size_t_1 (__strnlen_1715) (const char * (____string_1713), __size_t_1 ____maxlen_1714);// L401:L402 -extern char * ((__strerror_1717) (int ____errnum_1716));// L408 -extern char * ((__strerror_1718) (int ____errnum_1716));// L408 -extern int (__strerror_r_1722) (int ____errnum_1719, char * (____buf_1720), __size_t_1 ____buflen_1721);// L422:L424 -extern char * ((__strerror_l_1725) (int ____errnum_1723, ____locale_t_1664 ____l_1724));// L440 -extern void (____bzero_1728) (void * (____s_1726), __size_t_1 ____n_1727);// L446 -extern void (____bzero_1729) (void * (____s_1726), __size_t_1 ____n_1727);// L446 -extern void (__bcopy_1733) (const void * (____src_1730), void * (____dest_1731), __size_t_1 ____n_1732);// L450:L451 -extern void (__bzero_1736) (void * (____s_1734), __size_t_1 ____n_1735);// L454 -extern int (__bcmp_1740) (const void * (____s1_1737), const void * (____s2_1738), __size_t_1 ____n_1739);// L457:L458 -extern char * ((__index_1743) (const char * (____s_1741), int ____c_1742));// L484:L485 -extern char * ((__rindex_1746) (const char * (____s_1744), int ____c_1745));// L512:L513 -extern int (__ffs_1748) (int ____i_1747);// L518 -extern int (__strcasecmp_1751) (const char * (____s1_1749), const char * (____s2_1750));// L529:L530 -extern int (__strncasecmp_1755) (const char * (____s1_1752), const char * (____s2_1753), __size_t_1 ____n_1754);// L533:L534 -extern char * ((__strsep_1758) (char * (* __restrict ____stringp_1756), const char * __restrict ____delim_1757));// L552:L554 -extern char * ((__strsignal_1760) (int ____sig_1759));// L559 -extern char * ((____stpcpy_1763) (char * __restrict ____dest_1761, const char * __restrict ____src_1762));// L562:L563 -extern char * ((__stpcpy_1766) (char * __restrict ____dest_1764, const char * __restrict ____src_1765));// L564:L565 -extern char * ((____stpncpy_1770) (char * __restrict ____dest_1767, const char * __restrict ____src_1768, __size_t_1 ____n_1769));// L569:L571 -extern char * ((__stpncpy_1774) (char * __restrict ____dest_1771, const char * __restrict ____src_1772, __size_t_1 ____n_1773));// L572:L574 +extern void * ((__memmove_2053) (void * (____dest_2048), const void * (____src_2049), __size_t_1 ____n_2050));// L46:L47 +extern void * ((__memmove_2054) (void * (____dest_2048), const void * (____src_2049), __size_t_1093 ____n_2051));// L46:L47 +extern void * ((__memmove_2055) (void * (____dest_2048), const void * (____src_2049), __size_t_2037 ____n_2052));// L46:L47 +extern void * ((__memset_2070) (void * (____s_2065), int ____c_2066, __size_t_1 ____n_2067));// L62 +extern void * ((__memset_2071) (void * (____s_2065), int ____c_2066, __size_t_1093 ____n_2068));// L62 +extern void * ((__memset_2072) (void * (____s_2065), int ____c_2066, __size_t_2037 ____n_2069));// L62 +extern void * ((__memset_2073) (void * (____s_2065), int ____c_2066, __size_t_1 ____n_2067));// L62 +extern void * ((__memset_2074) (void * (____s_2065), int ____c_2066, __size_t_1093 ____n_2068));// L62 +extern void * ((__memset_2075) (void * (____s_2065), int ____c_2066, __size_t_2037 ____n_2069));// L62 +extern int (__memcmp_2081) (const void * (____s1_2076), const void * (____s2_2077), __size_t_1 ____n_2078);// L65:L66 +extern int (__memcmp_2082) (const void * (____s1_2076), const void * (____s2_2077), __size_t_1093 ____n_2079);// L65:L66 +extern int (__memcmp_2083) (const void * (____s1_2076), const void * (____s2_2077), __size_t_2037 ____n_2080);// L65:L66 +extern void * ((__memchr_2089) (const void * (____s_2084), int ____c_2085, __size_t_1 ____n_2086));// L92:L93 +extern void * ((__memchr_2090) (const void * (____s_2084), int ____c_2085, __size_t_1093 ____n_2087));// L92:L93 +extern void * ((__memchr_2091) (const void * (____s_2084), int ____c_2085, __size_t_2037 ____n_2088));// L92:L93 +extern char * ((__strcpy_2094) (char * __restrict ____dest_2092, const char * __restrict ____src_2093));// L125:L126 +extern char * ((__strncpy_2100) (char * __restrict ____dest_2095, const char * __restrict ____src_2096, __size_t_1 ____n_2097));// L128:L130 +extern char * ((__strncpy_2101) (char * __restrict ____dest_2095, const char * __restrict ____src_2096, __size_t_1093 ____n_2098));// L128:L130 +extern char * ((__strncpy_2102) (char * __restrict ____dest_2095, const char * __restrict ____src_2096, __size_t_2037 ____n_2099));// L128:L130 +extern char * ((__strcat_2105) (char * __restrict ____dest_2103, const char * __restrict ____src_2104));// L133:L134 +extern char * ((__strncat_2111) (char * __restrict ____dest_2106, const char * __restrict ____src_2107, __size_t_1 ____n_2108));// L136:L137 +extern char * ((__strncat_2112) (char * __restrict ____dest_2106, const char * __restrict ____src_2107, __size_t_1093 ____n_2109));// L136:L137 +extern char * ((__strncat_2113) (char * __restrict ____dest_2106, const char * __restrict ____src_2107, __size_t_2037 ____n_2110));// L136:L137 +extern int (__strcmp_2116) (const char * (____s1_2114), const char * (____s2_2115));// L140:L141 +extern int (__strncmp_2122) (const char * (____s1_2117), const char * (____s2_2118), __size_t_1 ____n_2119);// L143:L144 +extern int (__strncmp_2123) (const char * (____s1_2117), const char * (____s2_2118), __size_t_1093 ____n_2120);// L143:L144 +extern int (__strncmp_2124) (const char * (____s1_2117), const char * (____s2_2118), __size_t_2037 ____n_2121);// L143:L144 +extern int (__strcoll_2127) (const char * (____s1_2125), const char * (____s2_2126));// L147:L148 +extern __size_t_1 (__strxfrm_2133) (char * __restrict ____dest_2128, const char * __restrict ____src_2129, __size_t_1 ____n_2130);// L150:L152 +extern __size_t_1093 (__strxfrm_2134) (char * __restrict ____dest_2128, const char * __restrict ____src_2129, __size_t_1093 ____n_2131);// L150:L152 +extern __size_t_2037 (__strxfrm_2135) (char * __restrict ____dest_2128, const char * __restrict ____src_2129, __size_t_2037 ____n_2132);// L150:L152 +// typedef moved to top of scope +// typedef moved to top of scope +extern int (__strcoll_l_2148) (const char * (____s1_2145), const char * (____s2_2146), ____locale_t_2143 ____l_2147);// L162:L163 +extern __size_t_1 (__strxfrm_l_2155) (char * (____dest_2149), const char * (____src_2150), __size_t_1 ____n_2151, ____locale_t_2143 ____l_2154);// L165:L166 +extern __size_t_1093 (__strxfrm_l_2156) (char * (____dest_2149), const char * (____src_2150), __size_t_1093 ____n_2152, ____locale_t_2143 ____l_2154);// L165:L166 +extern __size_t_2037 (__strxfrm_l_2157) (char * (____dest_2149), const char * (____src_2150), __size_t_2037 ____n_2153, ____locale_t_2143 ____l_2154);// L165:L166 +extern char * ((__strdup_2159) (const char * (____s_2158)));// L171:L172 +extern char * ((__strndup_2164) (const char * (____string_2160), __size_t_1 ____n_2161));// L179:L180 +extern char * ((__strndup_2165) (const char * (____string_2160), __size_t_1093 ____n_2162));// L179:L180 +extern char * ((__strndup_2166) (const char * (____string_2160), __size_t_2037 ____n_2163));// L179:L180 +extern char * ((__strchr_2169) (const char * (____s_2167), int ____c_2168));// L231:L232 +extern char * ((__strrchr_2172) (const char * (____s_2170), int ____c_2171));// L258:L259 +extern __size_t_1 (__strcspn_2175) (const char * (____s_2173), const char * (____reject_2174));// L280:L281 +extern __size_t_1093 (__strcspn_2176) (const char * (____s_2173), const char * (____reject_2174));// L280:L281 +extern __size_t_2037 (__strcspn_2177) (const char * (____s_2173), const char * (____reject_2174));// L280:L281 +extern __size_t_1 (__strspn_2180) (const char * (____s_2178), const char * (____accept_2179));// L284:L285 +extern __size_t_1093 (__strspn_2181) (const char * (____s_2178), const char * (____accept_2179));// L284:L285 +extern __size_t_2037 (__strspn_2182) (const char * (____s_2178), const char * (____accept_2179));// L284:L285 +extern char * ((__strpbrk_2185) (const char * (____s_2183), const char * (____accept_2184)));// L310:L311 +extern char * ((__strstr_2188) (const char * (____haystack_2186), const char * (____needle_2187)));// L337:L338 +extern char * ((__strtok_2191) (char * __restrict ____s_2189, const char * __restrict ____delim_2190));// L343:L344 +extern char * ((____strtok_r_2195) (char * __restrict ____s_2192, const char * __restrict ____delim_2193, char * (* __restrict ____save_ptr_2194)));// L349:L352 +extern char * ((__strtok_r_2199) (char * __restrict ____s_2196, const char * __restrict ____delim_2197, char * (* __restrict ____save_ptr_2198)));// L354:L356 +extern __size_t_1 (__strlen_2201) (const char * (____s_2200));// L394:L395 +extern __size_t_1093 (__strlen_2202) (const char * (____s_2200));// L394:L395 +extern __size_t_2037 (__strlen_2203) (const char * (____s_2200));// L394:L395 +extern __size_t_1 (__strlen_2204) (const char * (____s_2200));// L394:L395 +extern __size_t_1093 (__strlen_2205) (const char * (____s_2200));// L394:L395 +extern __size_t_2037 (__strlen_2206) (const char * (____s_2200));// L394:L395 +extern __size_t_1 (__strnlen_2211) (const char * (____string_2207), __size_t_1 ____maxlen_2208);// L401:L402 +extern __size_t_1093 (__strnlen_2212) (const char * (____string_2207), __size_t_1093 ____maxlen_2209);// L401:L402 +extern __size_t_2037 (__strnlen_2213) (const char * (____string_2207), __size_t_2037 ____maxlen_2210);// L401:L402 +extern char * ((__strerror_2215) (int ____errnum_2214));// L408 +extern char * ((__strerror_2216) (int ____errnum_2214));// L408 +extern int (__strerror_r_2222) (int ____errnum_2217, char * (____buf_2218), __size_t_1 ____buflen_2219);// L422:L424 +extern int (__strerror_r_2223) (int ____errnum_2217, char * (____buf_2218), __size_t_1093 ____buflen_2220);// L422:L424 +extern int (__strerror_r_2224) (int ____errnum_2217, char * (____buf_2218), __size_t_2037 ____buflen_2221);// L422:L424 +extern char * ((__strerror_l_2227) (int ____errnum_2225, ____locale_t_2143 ____l_2226));// L440 +extern void (____bzero_2232) (void * (____s_2228), __size_t_1 ____n_2229);// L446 +extern void (____bzero_2233) (void * (____s_2228), __size_t_1093 ____n_2230);// L446 +extern void (____bzero_2234) (void * (____s_2228), __size_t_2037 ____n_2231);// L446 +extern void (____bzero_2235) (void * (____s_2228), __size_t_1 ____n_2229);// L446 +extern void (____bzero_2236) (void * (____s_2228), __size_t_1093 ____n_2230);// L446 +extern void (____bzero_2237) (void * (____s_2228), __size_t_2037 ____n_2231);// L446 +extern void (__bcopy_2243) (const void * (____src_2238), void * (____dest_2239), __size_t_1 ____n_2240);// L450:L451 +extern void (__bcopy_2244) (const void * (____src_2238), void * (____dest_2239), __size_t_1093 ____n_2241);// L450:L451 +extern void (__bcopy_2245) (const void * (____src_2238), void * (____dest_2239), __size_t_2037 ____n_2242);// L450:L451 +extern void (__bzero_2250) (void * (____s_2246), __size_t_1 ____n_2247);// L454 +extern void (__bzero_2251) (void * (____s_2246), __size_t_1093 ____n_2248);// L454 +extern void (__bzero_2252) (void * (____s_2246), __size_t_2037 ____n_2249);// L454 +extern int (__bcmp_2258) (const void * (____s1_2253), const void * (____s2_2254), __size_t_1 ____n_2255);// L457:L458 +extern int (__bcmp_2259) (const void * (____s1_2253), const void * (____s2_2254), __size_t_1093 ____n_2256);// L457:L458 +extern int (__bcmp_2260) (const void * (____s1_2253), const void * (____s2_2254), __size_t_2037 ____n_2257);// L457:L458 +extern char * ((__index_2263) (const char * (____s_2261), int ____c_2262));// L484:L485 +extern char * ((__rindex_2266) (const char * (____s_2264), int ____c_2265));// L512:L513 +extern int (__ffs_2268) (int ____i_2267);// L518 +extern int (__strcasecmp_2271) (const char * (____s1_2269), const char * (____s2_2270));// L529:L530 +extern int (__strncasecmp_2277) (const char * (____s1_2272), const char * (____s2_2273), __size_t_1 ____n_2274);// L533:L534 +extern int (__strncasecmp_2278) (const char * (____s1_2272), const char * (____s2_2273), __size_t_1093 ____n_2275);// L533:L534 +extern int (__strncasecmp_2279) (const char * (____s1_2272), const char * (____s2_2273), __size_t_2037 ____n_2276);// L533:L534 +extern char * ((__strsep_2282) (char * (* __restrict ____stringp_2280), const char * __restrict ____delim_2281));// L552:L554 +extern char * ((__strsignal_2284) (int ____sig_2283));// L559 +extern char * ((____stpcpy_2287) (char * __restrict ____dest_2285, const char * __restrict ____src_2286));// L562:L563 +extern char * ((__stpcpy_2290) (char * __restrict ____dest_2288, const char * __restrict ____src_2289));// L564:L565 +extern char * ((____stpncpy_2296) (char * __restrict ____dest_2291, const char * __restrict ____src_2292, __size_t_1 ____n_2293));// L569:L571 +extern char * ((____stpncpy_2297) (char * __restrict ____dest_2291, const char * __restrict ____src_2292, __size_t_1093 ____n_2294));// L569:L571 +extern char * ((____stpncpy_2298) (char * __restrict ____dest_2291, const char * __restrict ____src_2292, __size_t_2037 ____n_2295));// L569:L571 +extern char * ((__stpncpy_2304) (char * __restrict ____dest_2299, const char * __restrict ____src_2300, __size_t_1 ____n_2301));// L572:L574 +extern char * ((__stpncpy_2305) (char * __restrict ____dest_2299, const char * __restrict ____src_2300, __size_t_1093 ____n_2302));// L572:L574 +extern char * ((__stpncpy_2306) (char * __restrict ____dest_2299, const char * __restrict ____src_2300, __size_t_2037 ____n_2303));// L572:L574 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ @@ -2219,60 +3277,54 @@ extern char * ((__stpncpy_1774) (char * __restrict ____dest_1771, const char /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern char * ((____stpncpy_chk_1803) (char * (____dest_1799), const char * (____src_1800), __size_t_1 ____n_1801, __size_t_1 ____destlen_1802));// L130:L131 -extern char * ((____stpncpy_alias_1807) (char * (____dest_1804), const char * (____src_1805), __size_t_1 ____n_1806));// L132:L133 +extern char * ((____stpncpy_chk_2360) (char * (____dest_2352), const char * (____src_2353), __size_t_1 ____n_2354, __size_t_1 ____destlen_2357));// L130:L131 +extern char * ((____stpncpy_chk_2361) (char * (____dest_2352), const char * (____src_2353), __size_t_1093 ____n_2355, __size_t_1093 ____destlen_2358));// L130:L131 +extern char * ((____stpncpy_chk_2362) (char * (____dest_2352), const char * (____src_2353), __size_t_2037 ____n_2356, __size_t_2037 ____destlen_2359));// L130:L131 +extern char * ((____stpncpy_alias_2368) (char * (____dest_2363), const char * (____src_2364), __size_t_1 ____n_2365));// L132:L133 +extern char * ((____stpncpy_alias_2369) (char * (____dest_2363), const char * (____src_2364), __size_t_1093 ____n_2366));// L132:L133 +extern char * ((____stpncpy_alias_2370) (char * (____dest_2363), const char * (____src_2364), __size_t_2037 ____n_2367));// L132:L133 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -int __content_gzip_1819= 0;// L6 -int __content_gzip_1820= 0;// L6 -int __authorized_1821= 0;// L10 -char * (__iobuf_1822)= malloc (8192);// L15 -char * (__iobuf_1823)= malloc (8192);// L15 -char * (__iobuf_1824)= malloc (8192);// L15 -char * (__iobuf_1825)= malloc (8192);// L15 -char * (__iobuf_1826)= malloc (8192);// L15 -char * (__iobuf_1827)= malloc (8192);// L15 -char * (__iobuf_1828)= malloc (8192);// L15 -char * (__iobuf_1829)= malloc (8192);// L15 -void (__send_headers_1833) (int __responseNum_1830) { +int __content_gzip_2390= 0;// L6 +int __authorized_2391= 0;// L10 +char * (__iobuf_2392)= malloc (8192);// L15 +char * (__iobuf_2393)= malloc (8192);// L15 +char * (__iobuf_2394)= malloc (8192);// L15 +char * (__iobuf_2395)= malloc (8192);// L15 +char * (__iobuf_2397)= malloc (8192);// L15 +char * (__iobuf_2398)= malloc (8192);// L15 +char * (__iobuf_2399)= malloc (8192);// L15 +char * (__iobuf_2400)= malloc (8192);// L15 +void (__send_headers_2405) (int __responseNum_2402) { { { -const char * (__mime_type_1831);// L19 +const char * (__mime_type_2403);// L19 -int __len_1832;// L20 +int __len_2404;// L20 __static_type_error("type error : no valid expression"); // L23 -if (__static_condition_default_1834) { - __len_1832 = __sprintf_386 ( __iobuf_1822 ,"HTTP/1.0 %d\r\nContent-type: %s\r\n", __responseNum_1830 , __mime_type_1831 ) ; // L25:L26 -} -if (__static_condition_default_1835) { - __len_1832 = __sprintf_386 ( __iobuf_1823 ,"HTTP/1.0 %d\r\nContent-type: %s\r\n", __responseNum_1830 , __mime_type_1831 ) ; // L25:L26 -} -if (__static_condition_default_1836) { - __len_1832 = __sprintf_386 ( __iobuf_1824 ,"HTTP/1.0 %d\r\nContent-type: %s\r\n", __responseNum_1830 , __mime_type_1831 ) ; // L25:L26 +if (__static_condition_default_2406) { + __len_2404 = __sprintf_424 ( __iobuf_2392 ,"HTTP/1.0 %d\r\nContent-type: %s\r\n", __responseNum_2402 , __mime_type_2403 ) ; // L25:L26 } -if (__static_condition_default_1837) { - __len_1832 = __sprintf_386 ( __iobuf_1825 ,"HTTP/1.0 %d\r\nContent-type: %s\r\n", __responseNum_1830 , __mime_type_1831 ) ; // L25:L26 +if (__static_condition_default_2407) { + __len_2404 = __sprintf_424 ( __iobuf_2394 ,"HTTP/1.0 %d\r\nContent-type: %s\r\n", __responseNum_2402 , __mime_type_2403 ) ; // L25:L26 } -if (__static_condition_default_1838) { - __len_1832 = __sprintf_386 ( __iobuf_1826 ,"HTTP/1.0 %d\r\nContent-type: %s\r\n", __responseNum_1830 , __mime_type_1831 ) ; // L25:L26 +if (__static_condition_default_2408) { + __len_2404 = __sprintf_424 ( __iobuf_2397 ,"HTTP/1.0 %d\r\nContent-type: %s\r\n", __responseNum_2402 , __mime_type_2403 ) ; // L25:L26 } -if (__static_condition_default_1839) { - __len_1832 = __sprintf_386 ( __iobuf_1827 ,"HTTP/1.0 %d\r\nContent-type: %s\r\n", __responseNum_1830 , __mime_type_1831 ) ; // L25:L26 +if (__static_condition_default_2409) { + __len_2404 = __sprintf_424 ( __iobuf_2399 ,"HTTP/1.0 %d\r\nContent-type: %s\r\n", __responseNum_2402 , __mime_type_2403 ) ; // L25:L26 } -if (__static_condition_default_1840) { - __len_1832 = __sprintf_386 ( __iobuf_1828 ,"HTTP/1.0 %d\r\nContent-type: %s\r\n", __responseNum_1830 , __mime_type_1831 ) ; // L25:L26 +if (__static_condition_default_2410) { +__static_type_error("type error") ; // L25:L26 } -if (__static_condition_default_1841) { - __len_1832 = __sprintf_386 ( __iobuf_1829 ,"HTTP/1.0 %d\r\nContent-type: %s\r\n", __responseNum_1830 , __mime_type_1831 ) ; // L25:L26 -} -if (__static_condition_default_1842) { -if ( __responseNum_1830 == 401 )// L29 +if (__static_condition_default_2411) { +if ( __responseNum_2402 == 401 )// L29 { { @@ -2280,217 +3332,181 @@ if ( __responseNum_1830 == 401 )// L29 -if (__static_condition_default_1843) { - __len_1832 += __sprintf_386 ( __iobuf_1822 + __len_1832 ,"WWW-Authenticate: Basic realm=\"Web Server Authentication\"\r\n") ; // L30:L31 -} -if (__static_condition_default_1844) { - __len_1832 += __sprintf_386 ( __iobuf_1823 + __len_1832 ,"WWW-Authenticate: Basic realm=\"Web Server Authentication\"\r\n") ; // L30:L31 -} -if (__static_condition_default_1845) { - __len_1832 += __sprintf_386 ( __iobuf_1824 + __len_1832 ,"WWW-Authenticate: Basic realm=\"Web Server Authentication\"\r\n") ; // L30:L31 -} -if (__static_condition_default_1846) { - __len_1832 += __sprintf_386 ( __iobuf_1825 + __len_1832 ,"WWW-Authenticate: Basic realm=\"Web Server Authentication\"\r\n") ; // L30:L31 -} -if (__static_condition_default_1847) { - __len_1832 += __sprintf_386 ( __iobuf_1826 + __len_1832 ,"WWW-Authenticate: Basic realm=\"Web Server Authentication\"\r\n") ; // L30:L31 -} -if (__static_condition_default_1848) { - __len_1832 += __sprintf_386 ( __iobuf_1827 + __len_1832 ,"WWW-Authenticate: Basic realm=\"Web Server Authentication\"\r\n") ; // L30:L31 -} -if (__static_condition_default_1849) { - __len_1832 += __sprintf_386 ( __iobuf_1828 + __len_1832 ,"WWW-Authenticate: Basic realm=\"Web Server Authentication\"\r\n") ; // L30:L31 -} -if (__static_condition_default_1850) { - __len_1832 += __sprintf_386 ( __iobuf_1829 + __len_1832 ,"WWW-Authenticate: Basic realm=\"Web Server Authentication\"\r\n") ; // L30:L31 +if (__static_condition_default_2412) { + __len_2404 += __sprintf_424 ( __iobuf_2392 + __len_2404 ,"WWW-Authenticate: Basic realm=\"Web Server Authentication\"\r\n") ; // L30:L31 } +if (__static_condition_default_2413) { + __len_2404 += __sprintf_424 ( __iobuf_2394 + __len_2404 ,"WWW-Authenticate: Basic realm=\"Web Server Authentication\"\r\n") ; // L30:L31 } +if (__static_condition_default_2414) { + __len_2404 += __sprintf_424 ( __iobuf_2397 + __len_2404 ,"WWW-Authenticate: Basic realm=\"Web Server Authentication\"\r\n") ; // L30:L31 } +if (__static_condition_default_2415) { + __len_2404 += __sprintf_424 ( __iobuf_2399 + __len_2404 ,"WWW-Authenticate: Basic realm=\"Web Server Authentication\"\r\n") ; // L30:L31 } +if (__static_condition_default_2416) { +__static_type_error("type error") ; // L30:L31 } -if (__static_condition_default_1851) { -if ( __content_gzip_1819 )// L35 -{ -if (__static_condition_default_1852) { - __len_1832 += __sprintf_386 ( __iobuf_1822 + __len_1832 ,"Content-Encoding: gzip\r\n") ; // L36 -} -if (__static_condition_default_1853) { - __len_1832 += __sprintf_386 ( __iobuf_1823 + __len_1832 ,"Content-Encoding: gzip\r\n") ; // L36 -} -if (__static_condition_default_1854) { - __len_1832 += __sprintf_386 ( __iobuf_1826 + __len_1832 ,"Content-Encoding: gzip\r\n") ; // L36 } -if (__static_condition_default_1855) { - __len_1832 += __sprintf_386 ( __iobuf_1827 + __len_1832 ,"Content-Encoding: gzip\r\n") ; // L36 } } } -if (__static_condition_default_1856) { -if ( __content_gzip_1820 )// L35 +if (__static_condition_default_2417) { +if ( __content_gzip_2390 )// L35 { -if (__static_condition_default_1857) { - __len_1832 += __sprintf_386 ( __iobuf_1824 + __len_1832 ,"Content-Encoding: gzip\r\n") ; // L36 +if (__static_condition_default_2418) { + __len_2404 += __sprintf_424 ( __iobuf_2392 + __len_2404 ,"Content-Encoding: gzip\r\n") ; // L36 } -if (__static_condition_default_1858) { - __len_1832 += __sprintf_386 ( __iobuf_1825 + __len_1832 ,"Content-Encoding: gzip\r\n") ; // L36 +if (__static_condition_default_2419) { + __len_2404 += __sprintf_424 ( __iobuf_2394 + __len_2404 ,"Content-Encoding: gzip\r\n") ; // L36 } -if (__static_condition_default_1859) { - __len_1832 += __sprintf_386 ( __iobuf_1828 + __len_1832 ,"Content-Encoding: gzip\r\n") ; // L36 +if (__static_condition_default_2420) { + __len_2404 += __sprintf_424 ( __iobuf_2397 + __len_2404 ,"Content-Encoding: gzip\r\n") ; // L36 } -if (__static_condition_default_1860) { - __len_1832 += __sprintf_386 ( __iobuf_1829 + __len_1832 ,"Content-Encoding: gzip\r\n") ; // L36 +if (__static_condition_default_2421) { + __len_2404 += __sprintf_424 ( __iobuf_2399 + __len_2404 ,"Content-Encoding: gzip\r\n") ; // L36 } +if (__static_condition_default_2422) { +__static_type_error("type error") ; // L36 } } -if (__static_condition_default_1861) { -if ( __content_gzip_1819 )// L35 -{ -if (__static_condition_default_1862) { - __len_1832 += __sprintf_386 ( __iobuf_1822 + __len_1832 ,"Content-Encoding: gzip\r\n") ; // L36 -} -if (__static_condition_default_1863) { - __len_1832 += __sprintf_386 ( __iobuf_1823 + __len_1832 ,"Content-Encoding: gzip\r\n") ; // L36 -} -if (__static_condition_default_1864) { - __len_1832 += __sprintf_386 ( __iobuf_1826 + __len_1832 ,"Content-Encoding: gzip\r\n") ; // L36 } -if (__static_condition_default_1865) { - __len_1832 += __sprintf_386 ( __iobuf_1827 + __len_1832 ,"Content-Encoding: gzip\r\n") ; // L36 -} -} -} -if (__static_condition_default_1866) { -if ( __content_gzip_1820 )// L35 +if (__static_condition_default_2423) { +if ( __content_gzip_2390 )// L35 { -if (__static_condition_default_1867) { - __len_1832 += __sprintf_386 ( __iobuf_1824 + __len_1832 ,"Content-Encoding: gzip\r\n") ; // L36 +if (__static_condition_default_2424) { + __len_2404 += __sprintf_424 ( __iobuf_2392 + __len_2404 ,"Content-Encoding: gzip\r\n") ; // L36 } -if (__static_condition_default_1868) { - __len_1832 += __sprintf_386 ( __iobuf_1825 + __len_1832 ,"Content-Encoding: gzip\r\n") ; // L36 +if (__static_condition_default_2425) { + __len_2404 += __sprintf_424 ( __iobuf_2394 + __len_2404 ,"Content-Encoding: gzip\r\n") ; // L36 } -if (__static_condition_default_1869) { - __len_1832 += __sprintf_386 ( __iobuf_1828 + __len_1832 ,"Content-Encoding: gzip\r\n") ; // L36 +if (__static_condition_default_2426) { + __len_2404 += __sprintf_424 ( __iobuf_2397 + __len_2404 ,"Content-Encoding: gzip\r\n") ; // L36 } -if (__static_condition_default_1870) { - __len_1832 += __sprintf_386 ( __iobuf_1829 + __len_1832 ,"Content-Encoding: gzip\r\n") ; // L36 +if (__static_condition_default_2427) { + __len_2404 += __sprintf_424 ( __iobuf_2399 + __len_2404 ,"Content-Encoding: gzip\r\n") ; // L36 } +if (__static_condition_default_2428) { +__static_type_error("type error") ; // L36 } } -if (__static_condition_default_1834) { - __printf_383 ("headers: '%s'\n", __iobuf_1822 ) ; // L38 } -if (__static_condition_default_1871) { - __printf_383 ("headers: '%s'\n", __iobuf_1823 ) ; // L38 -} -if (__static_condition_default_1872) { - __printf_383 ("headers: '%s'\n", __iobuf_1824 ) ; // L38 +if (__static_condition_default_2429) { +__static_type_error("invalid type found in if statement"); } -if (__static_condition_default_1873) { - __printf_383 ("headers: '%s'\n", __iobuf_1825 ) ; // L38 +if (__static_condition_default_2430) { + __printf_421 ("headers: '%s'\n", __iobuf_2392 ) ; // L38 } -if (__static_condition_default_1874) { - __printf_383 ("headers: '%s'\n", __iobuf_1826 ) ; // L38 +if (__static_condition_default_2431) { + __printf_421 ("headers: '%s'\n", __iobuf_2394 ) ; // L38 } -if (__static_condition_default_1875) { - __printf_383 ("headers: '%s'\n", __iobuf_1827 ) ; // L38 +if (__static_condition_default_2432) { + __printf_421 ("headers: '%s'\n", __iobuf_2397 ) ; // L38 } -if (__static_condition_default_1876) { - __printf_383 ("headers: '%s'\n", __iobuf_1828 ) ; // L38 +if (__static_condition_default_2433) { + __printf_421 ("headers: '%s'\n", __iobuf_2399 ) ; // L38 } -if (__static_condition_default_1877) { - __printf_383 ("headers: '%s'\n", __iobuf_1829 ) ; // L38 +if (__static_condition_default_2434) { +__static_type_error("type error") ; // L38 } } } } -void (__send_headers_and_exit_1879) (int __responseNum_1878) { +void (__send_headers_and_exit_2436) (int __responseNum_2435) { { { - __send_headers_1833 ( __responseNum_1878 ) ; // L43 + __send_headers_2405 ( __responseNum_2435 ) ; // L43 } } } -void (__handle_incoming_and_exit_1888) () { +void (__handle_incoming_and_exit_2447) () { { -if (__static_condition_default_1889) { +if (__static_condition_default_2448) { { { -const char * (__s_1880)= __strstr_1698 ( __iobuf_1822 ,"gzip");// L50 +const char * (__s_2437)= __strstr_2188 ( __iobuf_2392 ,"gzip");// L50 -const char * (__s_1881)= __strstr_1698 ( __iobuf_1823 ,"gzip");// L50 +const char * (__s_2438)= __strstr_2188 ( __iobuf_2393 ,"gzip");// L50 -const char * (__s_1882)= __strstr_1698 ( __iobuf_1824 ,"gzip");// L50 +const char * (__s_2439)= __strstr_2188 ( __iobuf_2394 ,"gzip");// L50 -const char * (__s_1883)= __strstr_1698 ( __iobuf_1825 ,"gzip");// L50 +const char * (__s_2440)= __strstr_2188 ( __iobuf_2395 ,"gzip");// L50 -const char * (__s_1884)= __strstr_1698 ( __iobuf_1826 ,"gzip");// L50 +const char * (__s_2441)= __strstr_2188 ( __iobuf_2397 ,"gzip");// L50 -const char * (__s_1885)= __strstr_1698 ( __iobuf_1827 ,"gzip");// L50 +const char * (__s_2442)= __strstr_2188 ( __iobuf_2398 ,"gzip");// L50 -const char * (__s_1886)= __strstr_1698 ( __iobuf_1828 ,"gzip");// L50 +const char * (__s_2443)= __strstr_2188 ( __iobuf_2399 ,"gzip");// L50 -const char * (__s_1887)= __strstr_1698 ( __iobuf_1829 ,"gzip");// L50 +const char * (__s_2444)= __strstr_2188 ( __iobuf_2400 ,"gzip");// L50 -if (__static_condition_default_1890) { -if ( __s_1880 )// L51 +if (__static_condition_default_2445) { +__static_type_error("invalid declaration of s under this presence condition"); +} + +if (__static_condition_default_2449) { +if ( __s_2437 )// L51 { - __content_gzip_1819 = 1 ; // L52 + __content_gzip_2390 = 1 ; // L52 } } -if (__static_condition_default_1891) { -if ( __s_1881 )// L51 +if (__static_condition_default_2450) { +if ( __s_2438 )// L51 { - __content_gzip_1819 = 1 ; // L52 + __content_gzip_2390 = 1 ; // L52 } } -if (__static_condition_default_1892) { -if ( __s_1882 )// L51 +if (__static_condition_default_2451) { +if ( __s_2439 )// L51 { - __content_gzip_1820 = 1 ; // L52 + __content_gzip_2390 = 1 ; // L52 } } -if (__static_condition_default_1893) { -if ( __s_1883 )// L51 +if (__static_condition_default_2452) { +if ( __s_2440 )// L51 { - __content_gzip_1820 = 1 ; // L52 + __content_gzip_2390 = 1 ; // L52 } } -if (__static_condition_default_1894) { -if ( __s_1884 )// L51 +if (__static_condition_default_2453) { +if ( __s_2441 )// L51 { - __content_gzip_1819 = 1 ; // L52 + __content_gzip_2390 = 1 ; // L52 } } -if (__static_condition_default_1895) { -if ( __s_1885 )// L51 +if (__static_condition_default_2454) { +if ( __s_2442 )// L51 { - __content_gzip_1819 = 1 ; // L52 + __content_gzip_2390 = 1 ; // L52 } } -if (__static_condition_default_1896) { -if ( __s_1886 )// L51 +if (__static_condition_default_2455) { +if ( __s_2443 )// L51 { - __content_gzip_1820 = 1 ; // L52 + __content_gzip_2390 = 1 ; // L52 } } -if (__static_condition_default_1897) { -if ( __s_1887 )// L51 +if (__static_condition_default_2456) { +if ( __s_2444 )// L51 { - __content_gzip_1820 = 1 ; // L52 + __content_gzip_2390 = 1 ; // L52 +} } +if (__static_condition_default_2457) { +__static_type_error("invalid type found in if statement"); } } } @@ -2498,84 +3514,97 @@ if ( __s_1887 )// L51 } -if (__static_condition_default_1898) { +if (__static_condition_default_2458) { { { -const char * (__s_1880)= __strstr_1698 ( __iobuf_1822 ,"gzip");// L50 +const char * (__s_2437)= __strstr_2188 ( __iobuf_2392 ,"gzip");// L50 + +const char * (__s_2438)= __strstr_2188 ( __iobuf_2393 ,"gzip");// L50 -const char * (__s_1881)= __strstr_1698 ( __iobuf_1823 ,"gzip");// L50 +const char * (__s_2439)= __strstr_2188 ( __iobuf_2394 ,"gzip");// L50 -const char * (__s_1882)= __strstr_1698 ( __iobuf_1824 ,"gzip");// L50 +const char * (__s_2440)= __strstr_2188 ( __iobuf_2395 ,"gzip");// L50 -const char * (__s_1883)= __strstr_1698 ( __iobuf_1825 ,"gzip");// L50 +const char * (__s_2441)= __strstr_2188 ( __iobuf_2397 ,"gzip");// L50 -const char * (__s_1884)= __strstr_1698 ( __iobuf_1826 ,"gzip");// L50 +const char * (__s_2442)= __strstr_2188 ( __iobuf_2398 ,"gzip");// L50 -const char * (__s_1885)= __strstr_1698 ( __iobuf_1827 ,"gzip");// L50 +const char * (__s_2443)= __strstr_2188 ( __iobuf_2399 ,"gzip");// L50 -const char * (__s_1886)= __strstr_1698 ( __iobuf_1828 ,"gzip");// L50 +const char * (__s_2444)= __strstr_2188 ( __iobuf_2400 ,"gzip");// L50 -const char * (__s_1887)= __strstr_1698 ( __iobuf_1829 ,"gzip");// L50 +if (__static_condition_default_2445) { +__static_type_error("invalid declaration of s under this presence condition"); +} -if (__static_condition_default_1899) { -if ( __s_1880 )// L51 +if (__static_condition_default_2459) { +if ( __s_2437 )// L51 { - __content_gzip_1819 = 1 ; // L52 + __content_gzip_2390 = 1 ; // L52 } } -if (__static_condition_default_1900) { -if ( __s_1881 )// L51 +if (__static_condition_default_2460) { +if ( __s_2438 )// L51 { - __content_gzip_1819 = 1 ; // L52 + __content_gzip_2390 = 1 ; // L52 } } -if (__static_condition_default_1901) { -if ( __s_1882 )// L51 +if (__static_condition_default_2461) { +if ( __s_2439 )// L51 { - __content_gzip_1820 = 1 ; // L52 + __content_gzip_2390 = 1 ; // L52 } } -if (__static_condition_default_1902) { -if ( __s_1883 )// L51 +if (__static_condition_default_2462) { +if ( __s_2440 )// L51 { - __content_gzip_1820 = 1 ; // L52 + __content_gzip_2390 = 1 ; // L52 } } -if (__static_condition_default_1903) { -if ( __s_1884 )// L51 +if (__static_condition_default_2463) { +if ( __s_2441 )// L51 { - __content_gzip_1819 = 1 ; // L52 + __content_gzip_2390 = 1 ; // L52 } } -if (__static_condition_default_1904) { -if ( __s_1885 )// L51 +if (__static_condition_default_2464) { +if ( __s_2442 )// L51 { - __content_gzip_1819 = 1 ; // L52 + __content_gzip_2390 = 1 ; // L52 } } -if (__static_condition_default_1905) { -if ( __s_1886 )// L51 +if (__static_condition_default_2465) { +if ( __s_2443 )// L51 { - __content_gzip_1820 = 1 ; // L52 + __content_gzip_2390 = 1 ; // L52 } } -if (__static_condition_default_1906) { -if ( __s_1887 )// L51 +if (__static_condition_default_2466) { +if ( __s_2444 )// L51 +{ + __content_gzip_2390 = 1 ; // L52 +} +} +if (__static_condition_default_2467) { +__static_type_error("invalid type found in if statement"); +} +if (__static_condition_default_2468) { +if ( ! __authorized_2391 )// L56 { - __content_gzip_1820 = 1 ; // L52 + __send_headers_and_exit_2436 (401) ; // L57 } } -if (__static_condition_default_1907) { -if ( ! __authorized_1821 )// L56 +if (__static_condition_default_2469) { +if ( ! __authorized_2391 )// L56 { - __send_headers_and_exit_1879 (401) ; // L57 + __send_headers_and_exit_2436 (401) ; // L57 } } -if (__static_condition_default_1908) { +if (__static_condition_default_2470) { __static_type_error("invalid type found in if statement"); } } @@ -2585,25 +3614,25 @@ __static_type_error("invalid type found in if statement"); } }} -void (__mini_httpd_1909) () { +void (__mini_httpd_2471) () { -if (__static_condition_default_1910) { +if (__static_condition_default_2472) { { { - __handle_incoming_and_exit_1888 ( ) ; // L64 + __handle_incoming_and_exit_2447 ( ) ; // L64 } } } } -int (__main_1913) (int __argc_1911, char * (* (__argv_1912))) { +int (__main_2475) (int __argc_2473, char * (* (__argv_2474))) { -if (__static_condition_default_1915) { +if (__static_condition_default_2477) { { { @@ -2617,16 +3646,16 @@ return 0 ;// L73 } } -int (__main_1914) (int __argc_1911, char * (* (__argv_1912))) { +int (__main_2476) (int __argc_2473, char * (* (__argv_2474))) { -if (__static_condition_default_1916) { +if (__static_condition_default_2478) { { { - __mini_httpd_1909 ( ) ; // L71 + __mini_httpd_2471 ( ) ; // L71 return 0 ;// L73 } } diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.clangres index 22d040bb..2140cef1 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.clangres @@ -1,25 +1,25 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c:2230:25: error: initializer element is not a compile-time constant -char * (__iobuf_1822)= malloc (8192);// L15 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c:3291:25: error: initializer element is not a compile-time constant +char * (__iobuf_2392)= malloc (8192);// L15 ^~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c:2231:25: error: initializer element is not a compile-time constant -char * (__iobuf_1823)= malloc (8192);// L15 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c:3292:25: error: initializer element is not a compile-time constant +char * (__iobuf_2393)= malloc (8192);// L15 ^~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c:2232:25: error: initializer element is not a compile-time constant -char * (__iobuf_1824)= malloc (8192);// L15 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c:3293:25: error: initializer element is not a compile-time constant +char * (__iobuf_2394)= malloc (8192);// L15 ^~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c:2233:25: error: initializer element is not a compile-time constant -char * (__iobuf_1825)= malloc (8192);// L15 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c:3294:25: error: initializer element is not a compile-time constant +char * (__iobuf_2395)= malloc (8192);// L15 ^~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c:2234:25: error: initializer element is not a compile-time constant -char * (__iobuf_1826)= malloc (8192);// L15 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c:3295:25: error: initializer element is not a compile-time constant +char * (__iobuf_2397)= malloc (8192);// L15 ^~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c:2235:25: error: initializer element is not a compile-time constant -char * (__iobuf_1827)= malloc (8192);// L15 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c:3296:25: error: initializer element is not a compile-time constant +char * (__iobuf_2398)= malloc (8192);// L15 ^~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c:2236:25: error: initializer element is not a compile-time constant -char * (__iobuf_1828)= malloc (8192);// L15 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c:3297:25: error: initializer element is not a compile-time constant +char * (__iobuf_2399)= malloc (8192);// L15 ^~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c:2237:25: error: initializer element is not a compile-time constant -char * (__iobuf_1829)= malloc (8192);// L15 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c:3298:25: error: initializer element is not a compile-time constant +char * (__iobuf_2400)= malloc (8192);// L15 ^~~~~~~~~~~~~ 8 errors generated. diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.c index 726e1526..97e4abda 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.c @@ -7,366 +7,366 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_521; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_1409; -extern const bool __static_condition_default_1810; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_1775; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_2048; +extern const bool __static_condition_default_568; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_1428; +extern const bool __static_condition_default_1808; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_1165; +extern const bool __static_condition_default_1489; +extern const bool __static_condition_default_1532; +extern const bool __static_condition_default_241; extern const bool __static_condition_default_2050; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_419; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_1385; -extern const bool __static_condition_default_2045; -extern const bool __static_condition_default_646; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_1516; -extern const bool __static_condition_default_2065; +extern const bool __static_condition_default_907; +extern const bool __static_condition_default_1395; +extern const bool __static_condition_default_1785; +extern const bool __static_condition_default_2055; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_2062; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_823; extern const bool __static_condition_default_1315; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_1475; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_746; extern const bool __static_condition_default_497; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_1420; -extern const bool __static_condition_default_1814; -extern const bool __static_condition_default_1373; -extern const bool __static_condition_default_751; +extern const bool __static_condition_default_2047; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_455; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_1381; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_761; extern const bool __static_condition_default_2040; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_76; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_2053; +extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_1164; +extern const bool __static_condition_default_709; extern const bool __static_condition_default_2041; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_1568; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_1357; -extern const bool __static_condition_default_914; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_1428; -extern const bool __static_condition_default_388; -extern const bool __static_condition_default_1459; -extern const bool __static_condition_default_780; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_2062; -extern const bool __static_condition_default_1395; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_659; +extern const bool __static_condition_default_1750; +extern const bool __static_condition_default_846; +extern const bool __static_condition_default_1388; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_1409; +extern const bool __static_condition_default_1791; +extern const bool __static_condition_default_1391; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_803; extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_1159; +extern const bool __static_condition_default_677; +extern const bool __static_condition_default_1564; +extern const bool __static_condition_default_2065; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_1753; +extern const bool __static_condition_default_550; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_2060; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_1459; +extern const bool __static_condition_default_1816; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_1373; +extern const bool __static_condition_default_1475; +extern const bool __static_condition_default_779; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_2052; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_1776; +extern const bool __static_condition_default_1424; +extern const bool __static_condition_default_636; +extern const bool __static_condition_default_521; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_1402; +extern const bool __static_condition_default_386; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_333; +extern const bool __static_condition_default_789; extern const bool __static_condition_default_583; -extern const bool __static_condition_default_2049; -extern const bool __static_condition_default_395; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_1774; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_1458; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_1341; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_1568; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_1405; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_769; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_868; extern const bool __static_condition_default_651; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_1152; -extern const bool __static_condition_default_1498; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_1353; -extern const bool __static_condition_default_848; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_408; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_803; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_878; extern const bool __static_condition_default_1572; -extern const bool __static_condition_default_929; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_1432; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_761; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_638; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_721; +extern const bool __static_condition_default_1357; +extern const bool __static_condition_default_2049; +extern const bool __static_condition_default_848; extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_357; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_347; -extern const bool __static_condition_default_549; -extern const bool __static_condition_default_813; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_1749; extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_769; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_1515; -extern const bool __static_condition_default_217; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_380; -extern const bool __static_condition_default_1773; -extern const bool __static_condition_default_1754; -extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_1750; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_461; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_431; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_980; +extern const bool __static_condition_default_2051; +extern const bool __static_condition_default_544; extern const bool __static_condition_default_613; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_2057; +extern const bool __static_condition_default_2063; +extern const bool __static_condition_default_380; +extern const bool __static_condition_default_759; +extern const bool __static_condition_default_1089; extern const bool __static_condition_default_894; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_1532; -extern const bool __static_condition_default_393; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_536; -extern const bool __static_condition_default_564; -extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_1560; -extern const bool __static_condition_default_842; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_891; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_858; -extern const bool __static_condition_default_2058; -extern const bool __static_condition_default_382; +extern const bool __static_condition_default_1754; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_963; +extern const bool __static_condition_default_2061; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_1420; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_834; extern const bool __static_condition_default_956; -extern const bool __static_condition_default_2046; -extern const bool __static_condition_default_907; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_891; +extern const bool __static_condition_default_2043; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_1556; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_1432; +extern const bool __static_condition_default_367; +extern const bool __static_condition_default_929; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_2048; +extern const bool __static_condition_default_842; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_1349; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_692; extern const bool __static_condition_default_1416; -extern const bool __static_condition_default_1774; -extern const bool __static_condition_default_2060; -extern const bool __static_condition_default_2071; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_1753; -extern const bool __static_condition_default_2056; -extern const bool __static_condition_default_1944; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_862; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_1385; +extern const bool __static_condition_default_187; extern const bool __static_condition_default_244; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_2054; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_536; extern const bool __static_condition_default_752; -extern const bool __static_condition_default_2061; -extern const bool __static_condition_default_313; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_543; -extern const bool __static_condition_default_2055; -extern const bool __static_condition_default_311; -extern const bool __static_condition_default_633; +extern const bool __static_condition_default_1560; +extern const bool __static_condition_default_2058; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_788; extern const bool __static_condition_default_1377; -extern const bool __static_condition_default_367; -extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_559; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_872; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_693; -extern const bool __static_condition_default_275; +extern const bool __static_condition_default_1361; +extern const bool __static_condition_default_2059; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_619; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_1789; extern const bool __static_condition_default_753; -extern const bool __static_condition_default_386; -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_963; -extern const bool __static_condition_default_2066; -extern const bool __static_condition_default_1345; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_779; -extern const bool __static_condition_default_846; -extern const bool __static_condition_default_955; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_645; -extern const bool __static_condition_default_957; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_868; extern const bool __static_condition_default_2042; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_887; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_419; +extern const bool __static_condition_default_1516; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_955; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_792; extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_1402; -extern const bool __static_condition_default_1369; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_1349; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_1556; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_568; -extern const bool __static_condition_default_333; -extern const bool __static_condition_default_2044; +extern const bool __static_condition_default_791; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_1814; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_549; extern const bool __static_condition_default_1453; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_246; +extern const bool __static_condition_default_1498; +extern const bool __static_condition_default_608; extern const bool __static_condition_default_650; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_1164; -extern const bool __static_condition_default_1398; -extern const bool __static_condition_default_1816; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_590; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_1489; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_1531; -extern const bool __static_condition_default_1789; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_1424; -extern const bool __static_condition_default_201; +extern const bool __static_condition_default_2045; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_337; +extern const bool __static_condition_default_559; extern const bool __static_condition_default_793; -extern const bool __static_condition_default_2057; -extern const bool __static_condition_default_53; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_2053; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_670; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_1552; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_2063; -extern const bool __static_condition_default_755; -extern const bool __static_condition_default_1405; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_1808; -extern const bool __static_condition_default_875; -extern const bool __static_condition_default_2047; -extern const bool __static_condition_default_787; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_267; extern const bool __static_condition_default_488; -extern const bool __static_condition_default_1564; -extern const bool __static_condition_default_2052; +extern const bool __static_condition_default_1152; +extern const bool __static_condition_default_388; +extern const bool __static_condition_default_1531; +extern const bool __static_condition_default_290; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_1775; +extern const bool __static_condition_default_311; extern const bool __static_condition_default_345; -extern const bool __static_condition_default_1388; -extern const bool __static_condition_default_1165; -extern const bool __static_condition_default_2067; -extern const bool __static_condition_default_1361; -extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_1776; -extern const bool __static_condition_default_2054; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_747; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_2044; +extern const bool __static_condition_default_1369; +extern const bool __static_condition_default_1773; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_2071; extern const bool __static_condition_default_198; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_204; -extern const bool __static_condition_default_685; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_1785; -extern const bool __static_condition_default_1159; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_938; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_1398; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_875; +extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_1944; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_1515; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_512; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_1787; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_747; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_998; extern const bool __static_condition_default_1436; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_709; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_1353; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_1345; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_2067; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_282; extern const bool __static_condition_default_1576; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_248; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_315; -extern const bool __static_condition_default_677; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_1458; -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_632; -extern const bool __static_condition_default_661; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_1810; +extern const bool __static_condition_default_84; +extern const bool __static_condition_default_217; extern const bool __static_condition_default_494; -extern const bool __static_condition_default_402; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_317; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_512; -extern const bool __static_condition_default_2059; -extern const bool __static_condition_default_76; -extern const bool __static_condition_default_438; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_412; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_1791; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_1485; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_701; -extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_1341; -extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_347; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_2046; extern const bool __static_condition_default_1365; -extern const bool __static_condition_default_2043; -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_187; -extern const bool __static_condition_default_2051; -extern const bool __static_condition_default_789; -extern const bool __static_condition_default_700; +extern const bool __static_condition_default_365; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_2066; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_2056; +extern const bool __static_condition_default_670; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_204; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_395; extern const bool __static_condition_default_702; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_1391; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_1787; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_290; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_1381; -extern const bool __static_condition_default_1749; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_432; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_1552; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_1485; +extern const bool __static_condition_default_382; +extern const bool __static_condition_default_489; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_246; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c index a4260808..594d90cb 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c @@ -7,224 +7,388 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_577; +extern const bool __static_condition_default_455; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_2321; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_1753; +extern const bool __static_condition_default_2416; +extern const bool __static_condition_default_512; +extern const bool __static_condition_default_204; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_791; +extern const bool __static_condition_default_1381; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_1405; +extern const bool __static_condition_default_2342; +extern const bool __static_condition_default_2397; +extern const bool __static_condition_default_2329; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_550; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_1357; +extern const bool __static_condition_default_76; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_1944; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_1315; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_1361; +extern const bool __static_condition_default_2417; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_388; +extern const bool __static_condition_default_2381; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_2405; +extern const bool __static_condition_default_1556; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_753; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_1015; extern const bool __static_condition_default_248; -extern const bool __static_condition_default_726; -extern const bool __static_condition_default_343; -extern const bool __static_condition_default_518; +extern const bool __static_condition_default_894; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_2322; +extern const bool __static_condition_default_2411; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_677; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_721; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_559; +extern const bool __static_condition_default_2400; +extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_2398; +extern const bool __static_condition_default_789; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_2389; +extern const bool __static_condition_default_1774; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_1789; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_1353; +extern const bool __static_condition_default_1515; +extern const bool __static_condition_default_1432; +extern const bool __static_condition_default_1776; +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_1152; +extern const bool __static_condition_default_963; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_670; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_1531; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_1349; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_419; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_2419; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_1785; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_2314; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_2418; +extern const bool __static_condition_default_2046; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_2349; +extern const bool __static_condition_default_544; +extern const bool __static_condition_default_1750; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_1754; +extern const bool __static_condition_default_2312; extern const bool __static_condition_default_235; -extern const bool __static_condition_default_300; -extern const bool __static_condition_default_1104; +extern const bool __static_condition_default_53; extern const bool __static_condition_default_244; -extern const bool __static_condition_default_434; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_1222; -extern const bool __static_condition_default_890; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_758; -extern const bool __static_condition_default_1212; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_531; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_741; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_551; -extern const bool __static_condition_default_923; -extern const bool __static_condition_default_748; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_319; -extern const bool __static_condition_default_1248; -extern const bool __static_condition_default_315; -extern const bool __static_condition_default_632; -extern const bool __static_condition_default_707; -extern const bool __static_condition_default_415; -extern const bool __static_condition_default_1102; -extern const bool __static_condition_default_1213; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_339; -extern const bool __static_condition_default_439; -extern const bool __static_condition_default_1257; -extern const bool __static_condition_default_1282; +extern const bool __static_condition_default_1424; +extern const bool __static_condition_default_1385; extern const bool __static_condition_default_280; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_1101; -extern const bool __static_condition_default_348; -extern const bool __static_condition_default_681; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_1206; -extern const bool __static_condition_default_440; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_2328; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_2330; +extern const bool __static_condition_default_2343; +extern const bool __static_condition_default_2350; +extern const bool __static_condition_default_1475; +extern const bool __static_condition_default_1791; +extern const bool __static_condition_default_521; +extern const bool __static_condition_default_1459; +extern const bool __static_condition_default_2376; +extern const bool __static_condition_default_1007; extern const bool __static_condition_default_170; -extern const bool __static_condition_default_396; -extern const bool __static_condition_default_1273; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_492; -extern const bool __static_condition_default_498; -extern const bool __static_condition_default_583; -extern const bool __static_condition_default_605; -extern const bool __static_condition_default_1272; -extern const bool __static_condition_default_911; -extern const bool __static_condition_default_285; -extern const bool __static_condition_default_588; -extern const bool __static_condition_default_912; -extern const bool __static_condition_default_436; -extern const bool __static_condition_default_76; -extern const bool __static_condition_default_217; -extern const bool __static_condition_default_427; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_271; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_333; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_2410; +extern const bool __static_condition_default_2420; +extern const bool __static_condition_default_1572; extern const bool __static_condition_default_201; -extern const bool __static_condition_default_589; -extern const bool __static_condition_default_302; -extern const bool __static_condition_default_304; -extern const bool __static_condition_default_298; -extern const bool __static_condition_default_1270; -extern const bool __static_condition_default_675; -extern const bool __static_condition_default_593; -extern const bool __static_condition_default_921; -extern const bool __static_condition_default_329; -extern const bool __static_condition_default_1287; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_749; -extern const bool __static_condition_default_603; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_952; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_1251; -extern const bool __static_condition_default_1276; -extern const bool __static_condition_default_713; -extern const bool __static_condition_default_733; -extern const bool __static_condition_default_453; -extern const bool __static_condition_default_374; -extern const bool __static_condition_default_673; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_484; -extern const bool __static_condition_default_1266; -extern const bool __static_condition_default_1277; -extern const bool __static_condition_default_503; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_1808; +extern const bool __static_condition_default_1164; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_568; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_1568; +extern const bool __static_condition_default_1377; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_2387; +extern const bool __static_condition_default_2404; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_2401; extern const bool __static_condition_default_355; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_927; -extern const bool __static_condition_default_465; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_674; -extern const bool __static_condition_default_1283; -extern const bool __static_condition_default_925; +extern const bool __static_condition_default_2402; +extern const bool __static_condition_default_2406; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_1516; extern const bool __static_condition_default_84; -extern const bool __static_condition_default_385; -extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_1227; -extern const bool __static_condition_default_886; -extern const bool __static_condition_default_697; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_533; -extern const bool __static_condition_default_1271; -extern const bool __static_condition_default_321; -extern const bool __static_condition_default_1275; -extern const bool __static_condition_default_1103; +extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_583; extern const bool __static_condition_default_625; -extern const bool __static_condition_default_1286; -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_1228; -extern const bool __static_condition_default_690; -extern const bool __static_condition_default_1285; -extern const bool __static_condition_default_360; -extern const bool __static_condition_default_599; -extern const bool __static_condition_default_534; -extern const bool __static_condition_default_740; -extern const bool __static_condition_default_1288; -extern const bool __static_condition_default_461; -extern const bool __static_condition_default_696; -extern const bool __static_condition_default_466; -extern const bool __static_condition_default_525; -extern const bool __static_condition_default_910; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_460; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_53; -extern const bool __static_condition_default_418; -extern const bool __static_condition_default_445; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_462; -extern const bool __static_condition_default_1278; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_198; +extern const bool __static_condition_default_2063; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_747; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_2403; +extern const bool __static_condition_default_523; extern const bool __static_condition_default_187; -extern const bool __static_condition_default_467; -extern const bool __static_condition_default_476; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_779; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_613; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_1345; extern const bool __static_condition_default_541; -extern const bool __static_condition_default_540; -extern const bool __static_condition_default_587; -extern const bool __static_condition_default_513; -extern const bool __static_condition_default_423; -extern const bool __static_condition_default_1247; -extern const bool __static_condition_default_950; -extern const bool __static_condition_default_311; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_564; -extern const bool __static_condition_default_1256; -extern const bool __static_condition_default_611; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_468; -extern const bool __static_condition_default_1284; -extern const bool __static_condition_default_889; -extern const bool __static_condition_default_1207; -extern const bool __static_condition_default_563; -extern const bool __static_condition_default_259; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_1560; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_1485; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_1773; +extern const bool __static_condition_default_979; extern const bool __static_condition_default_331; -extern const bool __static_condition_default_414; -extern const bool __static_condition_default_720; -extern const bool __static_condition_default_565; -extern const bool __static_condition_default_725; -extern const bool __static_condition_default_1218; -extern const bool __static_condition_default_401; -extern const bool __static_condition_default_557; -extern const bool __static_condition_default_1274; -extern const bool __static_condition_default_1269; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_1749; +extern const bool __static_condition_default_549; +extern const bool __static_condition_default_290; +extern const bool __static_condition_default_2378; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_1564; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_929; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_702; +extern const bool __static_condition_default_590; extern const bool __static_condition_default_438; -extern const bool __static_condition_default_584; -extern const bool __static_condition_default_885; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_204; -extern const bool __static_condition_default_532; -extern const bool __static_condition_default_447; -extern const bool __static_condition_default_909; -extern const bool __static_condition_default_685; -extern const bool __static_condition_default_946; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_474; -extern const bool __static_condition_default_379; -extern const bool __static_condition_default_435; -extern const bool __static_condition_default_656; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_842; +extern const bool __static_condition_default_2351; +extern const bool __static_condition_default_1409; +extern const bool __static_condition_default_1816; +extern const bool __static_condition_default_536; +extern const bool __static_condition_default_761; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_1369; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_769; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_1373; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_1810; +extern const bool __static_condition_default_365; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_2407; +extern const bool __static_condition_default_636; +extern const bool __static_condition_default_1532; +extern const bool __static_condition_default_1552; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_2044; +extern const bool __static_condition_default_2045; +extern const bool __static_condition_default_1428; +extern const bool __static_condition_default_539; extern const bool __static_condition_default_193; -extern const bool __static_condition_default_421; -extern const bool __static_condition_default_291; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_698; -extern const bool __static_condition_default_372; -extern const bool __static_condition_default_483; -extern const bool __static_condition_default_576; -extern const bool __static_condition_default_705; -extern const bool __static_condition_default_1267; -extern const bool __static_condition_default_477; -extern const bool __static_condition_default_575; -extern const bool __static_condition_default_1265; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_1388; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_380; +extern const bool __static_condition_default_1576; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_1395; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_846; +extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_891; +extern const bool __static_condition_default_1398; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_907; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_1489; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_2412; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_367; +extern const bool __static_condition_default_2047; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_2064; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_1402; +extern const bool __static_condition_default_382; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_875; +extern const bool __static_condition_default_1453; +extern const bool __static_condition_default_759; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_2320; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_1814; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_834; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_1365; +extern const bool __static_condition_default_1775; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_955; +extern const bool __static_condition_default_2043; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_311; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_2388; +extern const bool __static_condition_default_1436; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_2409; +extern const bool __static_condition_default_386; +extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_1391; +extern const bool __static_condition_default_1416; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_1165; +extern const bool __static_condition_default_1341; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_2408; +extern const bool __static_condition_default_2399; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_2377; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_347; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_2062; +extern const bool __static_condition_default_489; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_1159; +extern const bool __static_condition_default_619; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_1420; +extern const bool __static_condition_default_488; extern const bool __static_condition_default_553; -extern const bool __static_condition_default_1219; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_1268; -extern const bool __static_condition_default_547; extern const bool __static_condition_default_337; -extern const bool __static_condition_default_403; -extern const bool __static_condition_default_488; -extern const bool __static_condition_default_463; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_1458; +extern const bool __static_condition_default_1787; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_2313; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_1498; +extern const bool __static_condition_default_473; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -335,264 +499,746 @@ __static_renaming("___IO_seekpos_272", "_IO_seekpos"); __static_renaming("___IO_seekpos_273", "_IO_seekpos"); __static_renaming("___IO_free_backup_area_276", "_IO_free_backup_area"); __static_renaming("___IO_free_backup_area_277", "_IO_free_backup_area"); -__static_renaming("__fpos_t_279", "fpos_t"); -__static_renaming("__fpos_t_281", "fpos_t"); -__static_renaming("__stdin_283", "stdin"); -__static_renaming("__stdin_284", "stdin"); -__static_renaming("__stdout_286", "stdout"); -__static_renaming("__stdout_287", "stdout"); -__static_renaming("__stderr_289", "stderr"); -__static_renaming("__stderr_290", "stderr"); -__static_renaming("__remove_293", "remove"); -__static_renaming("__rename_296", "rename"); -__static_renaming("__tmpfile_297", "tmpfile"); -__static_renaming("__tmpfile_299", "tmpfile"); -__static_renaming("__tmpfile_301", "tmpfile"); -__static_renaming("__tmpfile_303", "tmpfile"); -__static_renaming("__tmpnam_306", "tmpnam"); -__static_renaming("__tmpnam_307", "tmpnam"); -__static_renaming("__fclose_310", "fclose"); -__static_renaming("__fflush_314", "fflush"); -__static_renaming("__fopen_318", "fopen"); -__static_renaming("__fopen_320", "fopen"); -__static_renaming("__fopen_328", "fopen"); -__static_renaming("__fopen_330", "fopen"); -__static_renaming("__freopen_336", "freopen"); -__static_renaming("__freopen_338", "freopen"); -__static_renaming("__freopen_340", "freopen"); -__static_renaming("__freopen_342", "freopen"); -__static_renaming("__setbuf_347", "setbuf"); -__static_renaming("__setvbuf_354", "setvbuf"); -__static_renaming("__fprintf_359", "fprintf"); -__static_renaming("__printf_362", "printf"); -__static_renaming("__sprintf_365", "sprintf"); -__static_renaming("__vfprintf_371", "vfprintf"); -__static_renaming("__vprintf_378", "vprintf"); -__static_renaming("__vsprintf_384", "vsprintf"); -__static_renaming("__snprintf_389", "snprintf"); -__static_renaming("__vsnprintf_395", "vsnprintf"); -__static_renaming("__fscanf_400", "fscanf"); -__static_renaming("__fscanf_402", "fscanf"); -__static_renaming("__scanf_405", "scanf"); -__static_renaming("__scanf_406", "scanf"); -__static_renaming("__sscanf_409", "sscanf"); -__static_renaming("__vfscanf_433", "vfscanf"); -__static_renaming("__vfscanf_437", "vfscanf"); -__static_renaming("__vscanf_444", "vscanf"); -__static_renaming("__vscanf_446", "vscanf"); -__static_renaming("__vsscanf_452", "vsscanf"); -__static_renaming("__fgetc_487", "fgetc"); -__static_renaming("__getc_491", "getc"); -__static_renaming("__getchar_493", "getchar"); -__static_renaming("__fputc_497", "fputc"); -__static_renaming("__putc_502", "putc"); -__static_renaming("__putchar_505", "putchar"); -__static_renaming("__fgets_510", "fgets"); -__static_renaming("__fgets_512", "fgets"); -__static_renaming("__fputs_517", "fputs"); -__static_renaming("__puts_520", "puts"); -__static_renaming("__ungetc_524", "ungetc"); -__static_renaming("__fseek_546", "fseek"); -__static_renaming("__ftell_550", "ftell"); -__static_renaming("__ftell_552", "ftell"); -__static_renaming("__rewind_556", "rewind"); -__static_renaming("__fgetpos_562", "fgetpos"); -__static_renaming("__fgetpos_574", "fgetpos"); -__static_renaming("__fsetpos_582", "fsetpos"); -__static_renaming("__fsetpos_586", "fsetpos"); -__static_renaming("__clearerr_592", "clearerr"); -__static_renaming("__feof_596", "feof"); -__static_renaming("__feof_598", "feof"); -__static_renaming("__ferror_602", "ferror"); -__static_renaming("__ferror_604", "ferror"); -__static_renaming("__perror_607", "perror"); -__static_renaming("____sprintf_chk_617", "__sprintf_chk"); -__static_renaming("____vsprintf_chk_624", "__vsprintf_chk"); -__static_renaming("____snprintf_chk_638", "__snprintf_chk"); -__static_renaming("____vsnprintf_chk_646", "__vsnprintf_chk"); -__static_renaming("____fprintf_chk_661", "__fprintf_chk"); -__static_renaming("____printf_chk_665", "__printf_chk"); -__static_renaming("____vfprintf_chk_672", "__vfprintf_chk"); -__static_renaming("____vprintf_chk_680", "__vprintf_chk"); -__static_renaming("____fgets_chk_704", "__fgets_chk"); -__static_renaming("____fgets_chk_706", "__fgets_chk"); -__static_renaming("____fgets_alias_712", "__fgets_alias"); -__static_renaming("____fgets_chk_warn_719", "__fgets_chk_warn"); -__static_renaming("__ptrdiff_t_755", "ptrdiff_t"); -__static_renaming("__size_t_756", "size_t"); -__static_renaming("__wchar_t_759", "wchar_t"); -__static_renaming("__wchar_t_760", "wchar_t"); -__static_renaming("__div_t_765", "div_t"); -__static_renaming("__ldiv_t_770", "ldiv_t"); -__static_renaming("__lldiv_t_775", "lldiv_t"); -__static_renaming("____ctype_get_mb_cur_max_776", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_777", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_778", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_779", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_780", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_781", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_782", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_783", "__ctype_get_mb_cur_max"); -__static_renaming("__atof_785", "atof"); -__static_renaming("__atof_786", "atof"); -__static_renaming("__atoi_788", "atoi"); -__static_renaming("__atoi_789", "atoi"); -__static_renaming("__atol_791", "atol"); -__static_renaming("__atol_792", "atol"); -__static_renaming("__atoll_794", "atoll"); -__static_renaming("__atoll_795", "atoll"); -__static_renaming("__strtod_798", "strtod"); -__static_renaming("__strtof_801", "strtof"); -__static_renaming("__strtold_804", "strtold"); -__static_renaming("__strtol_808", "strtol"); -__static_renaming("__strtoul_812", "strtoul"); -__static_renaming("__strtoll_816", "strtoll"); -__static_renaming("__strtoull_820", "strtoull"); -__static_renaming("__rand_824", "rand"); -__static_renaming("__rand_825", "rand"); -__static_renaming("__srand_827", "srand"); -__static_renaming("__malloc_830", "malloc"); -__static_renaming("__malloc_831", "malloc"); -__static_renaming("__malloc_832", "malloc"); -__static_renaming("__malloc_833", "malloc"); -__static_renaming("__calloc_838", "calloc"); -__static_renaming("__calloc_839", "calloc"); -__static_renaming("__calloc_840", "calloc"); -__static_renaming("__calloc_841", "calloc"); -__static_renaming("__realloc_845", "realloc"); -__static_renaming("__realloc_846", "realloc"); -__static_renaming("__realloc_847", "realloc"); -__static_renaming("__realloc_848", "realloc"); -__static_renaming("__free_850", "free"); -__static_renaming("__aligned_alloc_855", "aligned_alloc"); -__static_renaming("__aligned_alloc_856", "aligned_alloc"); -__static_renaming("__aligned_alloc_857", "aligned_alloc"); -__static_renaming("__aligned_alloc_858", "aligned_alloc"); -__static_renaming("__abort_859", "abort"); -__static_renaming("__atexit_861", "atexit"); -__static_renaming("__at_quick_exit_863", "at_quick_exit"); -__static_renaming("__exit_865", "exit"); -__static_renaming("__quick_exit_867", "quick_exit"); -__static_renaming("___Exit_869", "_Exit"); -__static_renaming("__getenv_871", "getenv"); -__static_renaming("__getenv_872", "getenv"); -__static_renaming("__system_874", "system"); -__static_renaming("__system_875", "system"); -__static_renaming("____compar_fn_t_876", "__compar_fn_t"); -__static_renaming("__bsearch_887", "bsearch"); -__static_renaming("__bsearch_888", "bsearch"); -__static_renaming("__bsearch_891", "bsearch"); -__static_renaming("__bsearch_892", "bsearch"); -__static_renaming("____l_901", "__l"); -__static_renaming("____l_902", "__l"); -__static_renaming("____u_903", "__u"); -__static_renaming("____u_904", "__u"); -__static_renaming("____idx_905", "__idx"); -__static_renaming("____idx_906", "__idx"); -__static_renaming("____p_907", "__p"); -__static_renaming("____comparison_908", "__comparison"); -__static_renaming("__qsort_920", "qsort"); -__static_renaming("__qsort_922", "qsort"); -__static_renaming("__qsort_924", "qsort"); -__static_renaming("__qsort_926", "qsort"); -__static_renaming("__abs_929", "abs"); -__static_renaming("__abs_930", "abs"); -__static_renaming("__labs_932", "labs"); -__static_renaming("__labs_933", "labs"); -__static_renaming("__llabs_935", "llabs"); -__static_renaming("__llabs_936", "llabs"); -__static_renaming("__div_939", "div"); -__static_renaming("__div_940", "div"); -__static_renaming("__ldiv_943", "ldiv"); -__static_renaming("__ldiv_945", "ldiv"); -__static_renaming("__lldiv_949", "lldiv"); -__static_renaming("__lldiv_951", "lldiv"); -__static_renaming("__mblen_956", "mblen"); -__static_renaming("__mblen_957", "mblen"); -__static_renaming("__mbtowc_963", "mbtowc"); -__static_renaming("__mbtowc_964", "mbtowc"); -__static_renaming("__mbtowc_965", "mbtowc"); -__static_renaming("__wctomb_969", "wctomb"); -__static_renaming("__wctomb_970", "wctomb"); -__static_renaming("__mbstowcs_976", "mbstowcs"); -__static_renaming("__mbstowcs_977", "mbstowcs"); -__static_renaming("__mbstowcs_978", "mbstowcs"); -__static_renaming("__wcstombs_984", "wcstombs"); -__static_renaming("__wcstombs_985", "wcstombs"); -__static_renaming("__wcstombs_986", "wcstombs"); -__static_renaming("____realpath_chk_992", "__realpath_chk"); -__static_renaming("____realpath_chk_993", "__realpath_chk"); -__static_renaming("____realpath_alias_996", "__realpath_alias"); -__static_renaming("____realpath_chk_warn_1001", "__realpath_chk_warn"); -__static_renaming("____realpath_chk_warn_1002", "__realpath_chk_warn"); -__static_renaming("____ptsname_r_chk_1012", "__ptsname_r_chk"); -__static_renaming("____ptsname_r_chk_1013", "__ptsname_r_chk"); -__static_renaming("____ptsname_r_alias_1018", "__ptsname_r_alias"); -__static_renaming("____ptsname_r_alias_1019", "__ptsname_r_alias"); -__static_renaming("____ptsname_r_chk_warn_1026", "__ptsname_r_chk_warn"); -__static_renaming("____ptsname_r_chk_warn_1027", "__ptsname_r_chk_warn"); -__static_renaming("____wctomb_chk_1038", "__wctomb_chk"); -__static_renaming("____wctomb_chk_1039", "__wctomb_chk"); -__static_renaming("____wctomb_alias_1042", "__wctomb_alias"); -__static_renaming("____mbstowcs_chk_1051", "__mbstowcs_chk"); -__static_renaming("____mbstowcs_chk_1052", "__mbstowcs_chk"); -__static_renaming("____mbstowcs_alias_1057", "__mbstowcs_alias"); -__static_renaming("____mbstowcs_alias_1058", "__mbstowcs_alias"); -__static_renaming("____mbstowcs_chk_warn_1065", "__mbstowcs_chk_warn"); -__static_renaming("____mbstowcs_chk_warn_1066", "__mbstowcs_chk_warn"); -__static_renaming("____wcstombs_chk_1077", "__wcstombs_chk"); -__static_renaming("____wcstombs_chk_1078", "__wcstombs_chk"); -__static_renaming("____wcstombs_alias_1083", "__wcstombs_alias"); -__static_renaming("____wcstombs_alias_1084", "__wcstombs_alias"); -__static_renaming("____wcstombs_chk_warn_1091", "__wcstombs_chk_warn"); -__static_renaming("____wcstombs_chk_warn_1092", "__wcstombs_chk_warn"); -__static_renaming("__memmove_1109", "memmove"); -__static_renaming("__memmove_1110", "memmove"); -__static_renaming("__memset_1115", "memset"); -__static_renaming("__memset_1116", "memset"); -__static_renaming("__memcmp_1121", "memcmp"); -__static_renaming("__memcmp_1122", "memcmp"); -__static_renaming("__memchr_1127", "memchr"); -__static_renaming("__memchr_1128", "memchr"); -__static_renaming("__strcpy_1131", "strcpy"); -__static_renaming("__strncpy_1136", "strncpy"); -__static_renaming("__strncpy_1137", "strncpy"); -__static_renaming("__strcat_1140", "strcat"); -__static_renaming("__strncat_1145", "strncat"); -__static_renaming("__strncat_1146", "strncat"); -__static_renaming("__strcmp_1149", "strcmp"); -__static_renaming("__strncmp_1154", "strncmp"); -__static_renaming("__strncmp_1155", "strncmp"); -__static_renaming("__strcoll_1158", "strcoll"); -__static_renaming("__strxfrm_1163", "strxfrm"); -__static_renaming("__strxfrm_1164", "strxfrm"); -__static_renaming("__strchr_1167", "strchr"); -__static_renaming("__strrchr_1170", "strrchr"); -__static_renaming("__strcspn_1173", "strcspn"); -__static_renaming("__strcspn_1174", "strcspn"); -__static_renaming("__strspn_1177", "strspn"); -__static_renaming("__strspn_1178", "strspn"); -__static_renaming("__strpbrk_1181", "strpbrk"); -__static_renaming("__strstr_1184", "strstr"); -__static_renaming("__strtok_1187", "strtok"); -__static_renaming("____strtok_r_1191", "__strtok_r"); -__static_renaming("__strlen_1193", "strlen"); -__static_renaming("__strlen_1194", "strlen"); -__static_renaming("__strerror_1196", "strerror"); -__static_renaming("____bzero_1200", "__bzero"); -__static_renaming("____bzero_1201", "__bzero"); -__static_renaming("____stpncpy_chk_1235", "__stpncpy_chk"); -__static_renaming("____stpncpy_chk_1236", "__stpncpy_chk"); -__static_renaming("____stpncpy_alias_1241", "__stpncpy_alias"); -__static_renaming("____stpncpy_alias_1242", "__stpncpy_alias"); -__static_renaming("__val_1258", "val"); -__static_renaming("__s_1259", "s"); -__static_renaming("__p_1260", "p"); -__static_renaming("__a_1261", "a"); -__static_renaming("__n_1262", "n"); -__static_renaming("__make_device_1263", "make_device"); -__static_renaming("__make_device_1264", "make_device"); -__static_renaming("__main_1281", "main"); +__static_renaming("__va_list_279", "va_list"); +__static_renaming("__off_t_281", "off_t"); +__static_renaming("__off_t_283", "off_t"); +__static_renaming("__ssize_t_285", "ssize_t"); +__static_renaming("__fpos_t_287", "fpos_t"); +__static_renaming("__fpos_t_289", "fpos_t"); +__static_renaming("__stdin_291", "stdin"); +__static_renaming("__stdin_292", "stdin"); +__static_renaming("__stdout_294", "stdout"); +__static_renaming("__stdout_295", "stdout"); +__static_renaming("__stderr_297", "stderr"); +__static_renaming("__stderr_298", "stderr"); +__static_renaming("__remove_301", "remove"); +__static_renaming("__rename_304", "rename"); +__static_renaming("__renameat_309", "renameat"); +__static_renaming("__tmpfile_310", "tmpfile"); +__static_renaming("__tmpfile_312", "tmpfile"); +__static_renaming("__tmpfile_314", "tmpfile"); +__static_renaming("__tmpfile_316", "tmpfile"); +__static_renaming("__tmpnam_319", "tmpnam"); +__static_renaming("__tmpnam_320", "tmpnam"); +__static_renaming("__tmpnam_r_322", "tmpnam_r"); +__static_renaming("__tmpnam_r_323", "tmpnam_r"); +__static_renaming("__tempnam_326", "tempnam"); +__static_renaming("__tempnam_327", "tempnam"); +__static_renaming("__fclose_330", "fclose"); +__static_renaming("__fclose_332", "fclose"); +__static_renaming("__fflush_336", "fflush"); +__static_renaming("__fflush_unlocked_340", "fflush_unlocked"); +__static_renaming("__fopen_344", "fopen"); +__static_renaming("__fopen_346", "fopen"); +__static_renaming("__fopen_354", "fopen"); +__static_renaming("__fopen_356", "fopen"); +__static_renaming("__freopen_362", "freopen"); +__static_renaming("__freopen_364", "freopen"); +__static_renaming("__freopen_366", "freopen"); +__static_renaming("__freopen_368", "freopen"); +__static_renaming("__fdopen_372", "fdopen"); +__static_renaming("__fdopen_374", "fdopen"); +__static_renaming("__fmemopen_379", "fmemopen"); +__static_renaming("__fmemopen_381", "fmemopen"); +__static_renaming("__open_memstream_385", "open_memstream"); +__static_renaming("__open_memstream_387", "open_memstream"); +__static_renaming("__setbuf_392", "setbuf"); +__static_renaming("__setbuf_394", "setbuf"); +__static_renaming("__setvbuf_401", "setvbuf"); +__static_renaming("__setbuffer_407", "setbuffer"); +__static_renaming("__setlinebuf_411", "setlinebuf"); +__static_renaming("__fprintf_416", "fprintf"); +__static_renaming("__fprintf_418", "fprintf"); +__static_renaming("__printf_421", "printf"); +__static_renaming("__sprintf_424", "sprintf"); +__static_renaming("__vfprintf_430", "vfprintf"); +__static_renaming("__vprintf_437", "vprintf"); +__static_renaming("__vsprintf_443", "vsprintf"); +__static_renaming("__snprintf_448", "snprintf"); +__static_renaming("__vsnprintf_454", "vsnprintf"); +__static_renaming("__vdprintf_460", "vdprintf"); +__static_renaming("__dprintf_464", "dprintf"); +__static_renaming("__fscanf_468", "fscanf"); +__static_renaming("__fscanf_470", "fscanf"); +__static_renaming("__fscanf_472", "fscanf"); +__static_renaming("__fscanf_474", "fscanf"); +__static_renaming("__scanf_477", "scanf"); +__static_renaming("__scanf_478", "scanf"); +__static_renaming("__sscanf_481", "sscanf"); +__static_renaming("__vfscanf_509", "vfscanf"); +__static_renaming("__vfscanf_513", "vfscanf"); +__static_renaming("__vscanf_520", "vscanf"); +__static_renaming("__vscanf_522", "vscanf"); +__static_renaming("__vsscanf_528", "vsscanf"); +__static_renaming("__fgetc_563", "fgetc"); +__static_renaming("__getc_567", "getc"); +__static_renaming("__getchar_569", "getchar"); +__static_renaming("__getc_unlocked_572", "getc_unlocked"); +__static_renaming("__getchar_unlocked_574", "getchar_unlocked"); +__static_renaming("__fgetc_unlocked_577", "fgetc_unlocked"); +__static_renaming("__fputc_582", "fputc"); +__static_renaming("__fputc_584", "fputc"); +__static_renaming("__putc_589", "putc"); +__static_renaming("__putchar_592", "putchar"); +__static_renaming("__fputc_unlocked_596", "fputc_unlocked"); +__static_renaming("__putc_unlocked_601", "putc_unlocked"); +__static_renaming("__putchar_unlocked_604", "putchar_unlocked"); +__static_renaming("__getw_607", "getw"); +__static_renaming("__putw_612", "putw"); +__static_renaming("__fgets_618", "fgets"); +__static_renaming("__fgets_620", "fgets"); +__static_renaming("__fgets_622", "fgets"); +__static_renaming("__fgets_624", "fgets"); +__static_renaming("____getdelim_631", "__getdelim"); +__static_renaming("____getdelim_635", "__getdelim"); +__static_renaming("__getdelim_644", "getdelim"); +__static_renaming("__getdelim_648", "getdelim"); +__static_renaming("__getline_656", "getline"); +__static_renaming("__getline_660", "getline"); +__static_renaming("__fputs_667", "fputs"); +__static_renaming("__fputs_669", "fputs"); +__static_renaming("__puts_672", "puts"); +__static_renaming("__ungetc_676", "ungetc"); +__static_renaming("__fseek_714", "fseek"); +__static_renaming("__fseek_716", "fseek"); +__static_renaming("__ftell_720", "ftell"); +__static_renaming("__ftell_722", "ftell"); +__static_renaming("__rewind_726", "rewind"); +__static_renaming("__fseeko_733", "fseeko"); +__static_renaming("__fseeko_744", "fseeko"); +__static_renaming("__ftello_750", "ftello"); +__static_renaming("__ftello_754", "ftello"); +__static_renaming("__ftello_758", "ftello"); +__static_renaming("__fgetpos_766", "fgetpos"); +__static_renaming("__fgetpos_778", "fgetpos"); +__static_renaming("__fsetpos_786", "fsetpos"); +__static_renaming("__fsetpos_790", "fsetpos"); +__static_renaming("__clearerr_796", "clearerr"); +__static_renaming("__feof_800", "feof"); +__static_renaming("__feof_802", "feof"); +__static_renaming("__ferror_806", "ferror"); +__static_renaming("__ferror_808", "ferror"); +__static_renaming("__clearerr_unlocked_812", "clearerr_unlocked"); +__static_renaming("__feof_unlocked_816", "feof_unlocked"); +__static_renaming("__feof_unlocked_818", "feof_unlocked"); +__static_renaming("__ferror_unlocked_822", "ferror_unlocked"); +__static_renaming("__ferror_unlocked_824", "ferror_unlocked"); +__static_renaming("__perror_827", "perror"); +__static_renaming("__perror_828", "perror"); +__static_renaming("__sys_nerr_829", "sys_nerr"); +__static_renaming("__sys_errlist_830", "sys_errlist"); +__static_renaming("__fileno_833", "fileno"); +__static_renaming("__fileno_835", "fileno"); +__static_renaming("__fileno_unlocked_839", "fileno_unlocked"); +__static_renaming("__fileno_unlocked_841", "fileno_unlocked"); +__static_renaming("__popen_845", "popen"); +__static_renaming("__popen_847", "popen"); +__static_renaming("__pclose_851", "pclose"); +__static_renaming("__ctermid_854", "ctermid"); +__static_renaming("__flockfile_857", "flockfile"); +__static_renaming("__ftrylockfile_861", "ftrylockfile"); +__static_renaming("__ftrylockfile_863", "ftrylockfile"); +__static_renaming("__funlockfile_867", "funlockfile"); +__static_renaming("____sprintf_chk_899", "__sprintf_chk"); +__static_renaming("____vsprintf_chk_906", "__vsprintf_chk"); +__static_renaming("____snprintf_chk_920", "__snprintf_chk"); +__static_renaming("____vsnprintf_chk_928", "__vsnprintf_chk"); +__static_renaming("____fprintf_chk_943", "__fprintf_chk"); +__static_renaming("____printf_chk_947", "__printf_chk"); +__static_renaming("____vfprintf_chk_954", "__vfprintf_chk"); +__static_renaming("____vprintf_chk_962", "__vprintf_chk"); +__static_renaming("____dprintf_chk_984", "__dprintf_chk"); +__static_renaming("____vdprintf_chk_990", "__vdprintf_chk"); +__static_renaming("____fgets_chk_1004", "__fgets_chk"); +__static_renaming("____fgets_chk_1006", "__fgets_chk"); +__static_renaming("____fgets_chk_1008", "__fgets_chk"); +__static_renaming("____fgets_alias_1014", "__fgets_alias"); +__static_renaming("____fgets_chk_warn_1021", "__fgets_chk_warn"); +__static_renaming("____cnt_1087", "__cnt"); +__static_renaming("____cptr_1088", "__cptr"); +__static_renaming("__ptrdiff_t_1092", "ptrdiff_t"); +__static_renaming("__size_t_1093", "size_t"); +__static_renaming("__wchar_t_1094", "wchar_t"); +__static_renaming("__idtype_t_1100", "idtype_t"); +__static_renaming("____u_char_1101", "__u_char"); +__static_renaming("____u_short_1102", "__u_short"); +__static_renaming("____u_int_1103", "__u_int"); +__static_renaming("____u_long_1104", "__u_long"); +__static_renaming("____int8_t_1105", "__int8_t"); +__static_renaming("____uint8_t_1106", "__uint8_t"); +__static_renaming("____int16_t_1107", "__int16_t"); +__static_renaming("____uint16_t_1108", "__uint16_t"); +__static_renaming("____int32_t_1109", "__int32_t"); +__static_renaming("____uint32_t_1110", "__uint32_t"); +__static_renaming("____int64_t_1111", "__int64_t"); +__static_renaming("____uint64_t_1112", "__uint64_t"); +__static_renaming("____quad_t_1113", "__quad_t"); +__static_renaming("____u_quad_t_1114", "__u_quad_t"); +__static_renaming("____dev_t_1115", "__dev_t"); +__static_renaming("____uid_t_1116", "__uid_t"); +__static_renaming("____gid_t_1117", "__gid_t"); +__static_renaming("____ino_t_1118", "__ino_t"); +__static_renaming("____ino64_t_1119", "__ino64_t"); +__static_renaming("____mode_t_1120", "__mode_t"); +__static_renaming("____nlink_t_1121", "__nlink_t"); +__static_renaming("____off_t_1122", "__off_t"); +__static_renaming("____off64_t_1123", "__off64_t"); +__static_renaming("____pid_t_1124", "__pid_t"); +__static_renaming("____fsid_t_1128", "__fsid_t"); +__static_renaming("____clock_t_1129", "__clock_t"); +__static_renaming("____rlim_t_1130", "__rlim_t"); +__static_renaming("____rlim64_t_1131", "__rlim64_t"); +__static_renaming("____id_t_1132", "__id_t"); +__static_renaming("____time_t_1133", "__time_t"); +__static_renaming("____useconds_t_1134", "__useconds_t"); +__static_renaming("____suseconds_t_1135", "__suseconds_t"); +__static_renaming("____daddr_t_1136", "__daddr_t"); +__static_renaming("____key_t_1137", "__key_t"); +__static_renaming("____clockid_t_1138", "__clockid_t"); +__static_renaming("____timer_t_1139", "__timer_t"); +__static_renaming("____blksize_t_1140", "__blksize_t"); +__static_renaming("____blkcnt_t_1141", "__blkcnt_t"); +__static_renaming("____blkcnt64_t_1142", "__blkcnt64_t"); +__static_renaming("____fsblkcnt_t_1143", "__fsblkcnt_t"); +__static_renaming("____fsblkcnt64_t_1144", "__fsblkcnt64_t"); +__static_renaming("____fsfilcnt_t_1145", "__fsfilcnt_t"); +__static_renaming("____fsfilcnt64_t_1146", "__fsfilcnt64_t"); +__static_renaming("____fsword_t_1147", "__fsword_t"); +__static_renaming("____ssize_t_1148", "__ssize_t"); +__static_renaming("____syscall_slong_t_1149", "__syscall_slong_t"); +__static_renaming("____syscall_ulong_t_1150", "__syscall_ulong_t"); +__static_renaming("____loff_t_1151", "__loff_t"); +__static_renaming("____qaddr_t_1153", "__qaddr_t"); +__static_renaming("____caddr_t_1154", "__caddr_t"); +__static_renaming("____intptr_t_1155", "__intptr_t"); +__static_renaming("____socklen_t_1156", "__socklen_t"); +__static_renaming("____bswap_32_1158", "__bswap_32"); +__static_renaming("____bswap_64_1162", "__bswap_64"); +__static_renaming("____bswap_64_1163", "__bswap_64"); +__static_renaming("____WAIT_STATUS_1185", "__WAIT_STATUS"); +__static_renaming("__div_t_1190", "div_t"); +__static_renaming("__ldiv_t_1195", "ldiv_t"); +__static_renaming("__lldiv_t_1200", "lldiv_t"); +__static_renaming("____ctype_get_mb_cur_max_1201", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1202", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1203", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1204", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1205", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1206", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1207", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1208", "__ctype_get_mb_cur_max"); +__static_renaming("__atof_1210", "atof"); +__static_renaming("__atof_1211", "atof"); +__static_renaming("__atoi_1213", "atoi"); +__static_renaming("__atoi_1214", "atoi"); +__static_renaming("__atol_1216", "atol"); +__static_renaming("__atol_1217", "atol"); +__static_renaming("__atoll_1219", "atoll"); +__static_renaming("__atoll_1220", "atoll"); +__static_renaming("__strtod_1223", "strtod"); +__static_renaming("__strtof_1226", "strtof"); +__static_renaming("__strtold_1229", "strtold"); +__static_renaming("__strtol_1233", "strtol"); +__static_renaming("__strtoul_1237", "strtoul"); +__static_renaming("__strtoq_1241", "strtoq"); +__static_renaming("__strtouq_1245", "strtouq"); +__static_renaming("__strtoll_1249", "strtoll"); +__static_renaming("__strtoll_1250", "strtoll"); +__static_renaming("__strtoull_1254", "strtoull"); +__static_renaming("__l64a_1259", "l64a"); +__static_renaming("__l64a_1260", "l64a"); +__static_renaming("__a64l_1262", "a64l"); +__static_renaming("__a64l_1263", "a64l"); +__static_renaming("____u_char_1264", "__u_char"); +__static_renaming("____u_short_1265", "__u_short"); +__static_renaming("____u_int_1266", "__u_int"); +__static_renaming("____u_long_1267", "__u_long"); +__static_renaming("____int8_t_1268", "__int8_t"); +__static_renaming("____uint8_t_1269", "__uint8_t"); +__static_renaming("____int16_t_1270", "__int16_t"); +__static_renaming("____uint16_t_1271", "__uint16_t"); +__static_renaming("____int32_t_1272", "__int32_t"); +__static_renaming("____uint32_t_1273", "__uint32_t"); +__static_renaming("____int64_t_1274", "__int64_t"); +__static_renaming("____uint64_t_1275", "__uint64_t"); +__static_renaming("____quad_t_1276", "__quad_t"); +__static_renaming("____u_quad_t_1277", "__u_quad_t"); +__static_renaming("____dev_t_1278", "__dev_t"); +__static_renaming("____uid_t_1279", "__uid_t"); +__static_renaming("____gid_t_1280", "__gid_t"); +__static_renaming("____ino_t_1281", "__ino_t"); +__static_renaming("____ino64_t_1282", "__ino64_t"); +__static_renaming("____mode_t_1283", "__mode_t"); +__static_renaming("____nlink_t_1284", "__nlink_t"); +__static_renaming("____off_t_1285", "__off_t"); +__static_renaming("____off64_t_1286", "__off64_t"); +__static_renaming("____pid_t_1287", "__pid_t"); +__static_renaming("____fsid_t_1291", "__fsid_t"); +__static_renaming("____clock_t_1292", "__clock_t"); +__static_renaming("____rlim_t_1293", "__rlim_t"); +__static_renaming("____rlim64_t_1294", "__rlim64_t"); +__static_renaming("____id_t_1295", "__id_t"); +__static_renaming("____time_t_1296", "__time_t"); +__static_renaming("____useconds_t_1297", "__useconds_t"); +__static_renaming("____suseconds_t_1298", "__suseconds_t"); +__static_renaming("____daddr_t_1299", "__daddr_t"); +__static_renaming("____key_t_1300", "__key_t"); +__static_renaming("____clockid_t_1301", "__clockid_t"); +__static_renaming("____timer_t_1302", "__timer_t"); +__static_renaming("____blksize_t_1303", "__blksize_t"); +__static_renaming("____blkcnt_t_1304", "__blkcnt_t"); +__static_renaming("____blkcnt64_t_1305", "__blkcnt64_t"); +__static_renaming("____fsblkcnt_t_1306", "__fsblkcnt_t"); +__static_renaming("____fsblkcnt64_t_1307", "__fsblkcnt64_t"); +__static_renaming("____fsfilcnt_t_1308", "__fsfilcnt_t"); +__static_renaming("____fsfilcnt64_t_1309", "__fsfilcnt64_t"); +__static_renaming("____fsword_t_1310", "__fsword_t"); +__static_renaming("____ssize_t_1311", "__ssize_t"); +__static_renaming("____syscall_slong_t_1312", "__syscall_slong_t"); +__static_renaming("____syscall_ulong_t_1313", "__syscall_ulong_t"); +__static_renaming("____loff_t_1314", "__loff_t"); +__static_renaming("____qaddr_t_1316", "__qaddr_t"); +__static_renaming("____caddr_t_1317", "__caddr_t"); +__static_renaming("____intptr_t_1318", "__intptr_t"); +__static_renaming("____socklen_t_1319", "__socklen_t"); +__static_renaming("__u_char_1320", "u_char"); +__static_renaming("__u_char_1321", "u_char"); +__static_renaming("__u_char_1322", "u_char"); +__static_renaming("__u_short_1323", "u_short"); +__static_renaming("__u_short_1324", "u_short"); +__static_renaming("__u_short_1325", "u_short"); +__static_renaming("__u_int_1326", "u_int"); +__static_renaming("__u_int_1327", "u_int"); +__static_renaming("__u_int_1328", "u_int"); +__static_renaming("__u_long_1329", "u_long"); +__static_renaming("__u_long_1330", "u_long"); +__static_renaming("__u_long_1331", "u_long"); +__static_renaming("__quad_t_1332", "quad_t"); +__static_renaming("__quad_t_1333", "quad_t"); +__static_renaming("__quad_t_1334", "quad_t"); +__static_renaming("__u_quad_t_1335", "u_quad_t"); +__static_renaming("__u_quad_t_1336", "u_quad_t"); +__static_renaming("__u_quad_t_1337", "u_quad_t"); +__static_renaming("__fsid_t_1338", "fsid_t"); +__static_renaming("__fsid_t_1339", "fsid_t"); +__static_renaming("__fsid_t_1340", "fsid_t"); +__static_renaming("__loff_t_1342", "loff_t"); +__static_renaming("__loff_t_1343", "loff_t"); +__static_renaming("__loff_t_1344", "loff_t"); +__static_renaming("__loff_t_1346", "loff_t"); +__static_renaming("__loff_t_1347", "loff_t"); +__static_renaming("__loff_t_1348", "loff_t"); +__static_renaming("__ino_t_1350", "ino_t"); +__static_renaming("__ino_t_1351", "ino_t"); +__static_renaming("__ino_t_1352", "ino_t"); +__static_renaming("__ino_t_1354", "ino_t"); +__static_renaming("__ino_t_1355", "ino_t"); +__static_renaming("__ino_t_1356", "ino_t"); +__static_renaming("__dev_t_1358", "dev_t"); +__static_renaming("__dev_t_1359", "dev_t"); +__static_renaming("__dev_t_1360", "dev_t"); +__static_renaming("__gid_t_1362", "gid_t"); +__static_renaming("__gid_t_1363", "gid_t"); +__static_renaming("__gid_t_1364", "gid_t"); +__static_renaming("__gid_t_1366", "gid_t"); +__static_renaming("__gid_t_1367", "gid_t"); +__static_renaming("__gid_t_1368", "gid_t"); +__static_renaming("__mode_t_1370", "mode_t"); +__static_renaming("__mode_t_1371", "mode_t"); +__static_renaming("__mode_t_1372", "mode_t"); +__static_renaming("__nlink_t_1374", "nlink_t"); +__static_renaming("__nlink_t_1375", "nlink_t"); +__static_renaming("__nlink_t_1376", "nlink_t"); +__static_renaming("__uid_t_1378", "uid_t"); +__static_renaming("__uid_t_1379", "uid_t"); +__static_renaming("__uid_t_1380", "uid_t"); +__static_renaming("__uid_t_1382", "uid_t"); +__static_renaming("__uid_t_1383", "uid_t"); +__static_renaming("__uid_t_1384", "uid_t"); +__static_renaming("__off_t_1386", "off_t"); +__static_renaming("__off_t_1387", "off_t"); +__static_renaming("__off_t_1389", "off_t"); +__static_renaming("__off_t_1390", "off_t"); +__static_renaming("__pid_t_1392", "pid_t"); +__static_renaming("__pid_t_1393", "pid_t"); +__static_renaming("__pid_t_1394", "pid_t"); +__static_renaming("__pid_t_1396", "pid_t"); +__static_renaming("__pid_t_1397", "pid_t"); +__static_renaming("__id_t_1399", "id_t"); +__static_renaming("__id_t_1400", "id_t"); +__static_renaming("__id_t_1401", "id_t"); +__static_renaming("__ssize_t_1403", "ssize_t"); +__static_renaming("__ssize_t_1404", "ssize_t"); +__static_renaming("__daddr_t_1406", "daddr_t"); +__static_renaming("__daddr_t_1407", "daddr_t"); +__static_renaming("__daddr_t_1408", "daddr_t"); +__static_renaming("__caddr_t_1410", "caddr_t"); +__static_renaming("__caddr_t_1411", "caddr_t"); +__static_renaming("__caddr_t_1412", "caddr_t"); +__static_renaming("__key_t_1413", "key_t"); +__static_renaming("__key_t_1414", "key_t"); +__static_renaming("__key_t_1415", "key_t"); +__static_renaming("__key_t_1417", "key_t"); +__static_renaming("__key_t_1418", "key_t"); +__static_renaming("__key_t_1419", "key_t"); +__static_renaming("__clock_t_1421", "clock_t"); +__static_renaming("__clock_t_1422", "clock_t"); +__static_renaming("__clock_t_1423", "clock_t"); +__static_renaming("__time_t_1425", "time_t"); +__static_renaming("__time_t_1426", "time_t"); +__static_renaming("__time_t_1427", "time_t"); +__static_renaming("__clockid_t_1429", "clockid_t"); +__static_renaming("__clockid_t_1430", "clockid_t"); +__static_renaming("__clockid_t_1431", "clockid_t"); +__static_renaming("__timer_t_1433", "timer_t"); +__static_renaming("__timer_t_1434", "timer_t"); +__static_renaming("__timer_t_1435", "timer_t"); +__static_renaming("__ulong_1437", "ulong"); +__static_renaming("__ulong_1438", "ulong"); +__static_renaming("__ulong_1439", "ulong"); +__static_renaming("__ushort_1440", "ushort"); +__static_renaming("__uint_1441", "uint"); +__static_renaming("__int8_t_1442", "int8_t"); +__static_renaming("__int16_t_1443", "int16_t"); +__static_renaming("__int32_t_1444", "int32_t"); +__static_renaming("__int64_t_1445", "int64_t"); +__static_renaming("__u_int8_t_1446", "u_int8_t"); +__static_renaming("__u_int16_t_1447", "u_int16_t"); +__static_renaming("__u_int32_t_1448", "u_int32_t"); +__static_renaming("__u_int64_t_1449", "u_int64_t"); +__static_renaming("__register_t_1450", "register_t"); +__static_renaming("____bswap_32_1452", "__bswap_32"); +__static_renaming("____bswap_64_1456", "__bswap_64"); +__static_renaming("____bswap_64_1457", "__bswap_64"); +__static_renaming("____sig_atomic_t_1460", "__sig_atomic_t"); +__static_renaming("____sigset_t_1464", "__sigset_t"); +__static_renaming("__sigset_t_1465", "sigset_t"); +__static_renaming("__suseconds_t_1486", "suseconds_t"); +__static_renaming("__suseconds_t_1487", "suseconds_t"); +__static_renaming("__suseconds_t_1488", "suseconds_t"); +__static_renaming("____fd_mask_1490", "__fd_mask"); +__static_renaming("____fd_mask_1491", "__fd_mask"); +__static_renaming("__fd_set_1499", "fd_set"); +__static_renaming("__fd_mask_1500", "fd_mask"); +__static_renaming("__fd_mask_1501", "fd_mask"); +__static_renaming("__select_1513", "select"); +__static_renaming("__select_1514", "select"); +__static_renaming("__pselect_1529", "pselect"); +__static_renaming("__pselect_1530", "pselect"); +__static_renaming("____fdelt_chk_1534", "__fdelt_chk"); +__static_renaming("____fdelt_warn_1536", "__fdelt_warn"); +__static_renaming("__gnu_dev_major_1538", "gnu_dev_major"); +__static_renaming("__gnu_dev_major_1539", "gnu_dev_major"); +__static_renaming("__gnu_dev_minor_1541", "gnu_dev_minor"); +__static_renaming("__gnu_dev_makedev_1544", "gnu_dev_makedev"); +__static_renaming("__blksize_t_1549", "blksize_t"); +__static_renaming("__blksize_t_1550", "blksize_t"); +__static_renaming("__blksize_t_1551", "blksize_t"); +__static_renaming("__blkcnt_t_1553", "blkcnt_t"); +__static_renaming("__blkcnt_t_1554", "blkcnt_t"); +__static_renaming("__blkcnt_t_1555", "blkcnt_t"); +__static_renaming("__fsblkcnt_t_1557", "fsblkcnt_t"); +__static_renaming("__fsblkcnt_t_1558", "fsblkcnt_t"); +__static_renaming("__fsblkcnt_t_1559", "fsblkcnt_t"); +__static_renaming("__blkcnt_t_1561", "blkcnt_t"); +__static_renaming("__blkcnt_t_1562", "blkcnt_t"); +__static_renaming("__blkcnt_t_1563", "blkcnt_t"); +__static_renaming("__fsblkcnt_t_1565", "fsblkcnt_t"); +__static_renaming("__fsblkcnt_t_1566", "fsblkcnt_t"); +__static_renaming("__fsblkcnt_t_1567", "fsblkcnt_t"); +__static_renaming("__fsfilcnt_t_1569", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_1570", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_1571", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_1573", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_1574", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_1575", "fsfilcnt_t"); +__static_renaming("__pthread_t_1577", "pthread_t"); +__static_renaming("__pthread_attr_t_1581", "pthread_attr_t"); +__static_renaming("____pthread_list_t_1586", "__pthread_list_t"); +__static_renaming("____pthread_list_t_1587", "__pthread_list_t"); +__static_renaming("__pthread_mutex_t_1603", "pthread_mutex_t"); +__static_renaming("__pthread_mutexattr_t_1608", "pthread_mutexattr_t"); +__static_renaming("__rand_1609", "rand"); +__static_renaming("__srand_1611", "srand"); +__static_renaming("__rand_r_1613", "rand_r"); +__static_renaming("__drand48_1614", "drand48"); +__static_renaming("__erand48_1616", "erand48"); +__static_renaming("__lrand48_1617", "lrand48"); +__static_renaming("__nrand48_1619", "nrand48"); +__static_renaming("__mrand48_1620", "mrand48"); +__static_renaming("__jrand48_1622", "jrand48"); +__static_renaming("__srand48_1624", "srand48"); +__static_renaming("__seed48_1626", "seed48"); +__static_renaming("__lcong48_1628", "lcong48"); +__static_renaming("__malloc_1631", "malloc"); +__static_renaming("__malloc_1632", "malloc"); +__static_renaming("__malloc_1633", "malloc"); +__static_renaming("__malloc_1634", "malloc"); +__static_renaming("__calloc_1639", "calloc"); +__static_renaming("__calloc_1640", "calloc"); +__static_renaming("__calloc_1641", "calloc"); +__static_renaming("__calloc_1642", "calloc"); +__static_renaming("__realloc_1646", "realloc"); +__static_renaming("__realloc_1647", "realloc"); +__static_renaming("__free_1649", "free"); +__static_renaming("__cfree_1651", "cfree"); +__static_renaming("__alloca_1654", "alloca"); +__static_renaming("__alloca_1655", "alloca"); +__static_renaming("__valloc_1658", "valloc"); +__static_renaming("__valloc_1659", "valloc"); +__static_renaming("__valloc_1660", "valloc"); +__static_renaming("__valloc_1661", "valloc"); +__static_renaming("__posix_memalign_1667", "posix_memalign"); +__static_renaming("__posix_memalign_1668", "posix_memalign"); +__static_renaming("__posix_memalign_1669", "posix_memalign"); +__static_renaming("__posix_memalign_1670", "posix_memalign"); +__static_renaming("__aligned_alloc_1675", "aligned_alloc"); +__static_renaming("__aligned_alloc_1676", "aligned_alloc"); +__static_renaming("__aligned_alloc_1677", "aligned_alloc"); +__static_renaming("__aligned_alloc_1678", "aligned_alloc"); +__static_renaming("__aligned_alloc_1679", "aligned_alloc"); +__static_renaming("__aligned_alloc_1680", "aligned_alloc"); +__static_renaming("__aligned_alloc_1681", "aligned_alloc"); +__static_renaming("__aligned_alloc_1682", "aligned_alloc"); +__static_renaming("__abort_1683", "abort"); +__static_renaming("__atexit_1685", "atexit"); +__static_renaming("__at_quick_exit_1687", "at_quick_exit"); +__static_renaming("__on_exit_1692", "on_exit"); +__static_renaming("__exit_1694", "exit"); +__static_renaming("__exit_1695", "exit"); +__static_renaming("__quick_exit_1697", "quick_exit"); +__static_renaming("___Exit_1699", "_Exit"); +__static_renaming("__getenv_1701", "getenv"); +__static_renaming("__getenv_1702", "getenv"); +__static_renaming("__putenv_1704", "putenv"); +__static_renaming("__setenv_1708", "setenv"); +__static_renaming("__unsetenv_1710", "unsetenv"); +__static_renaming("__clearenv_1711", "clearenv"); +__static_renaming("__mktemp_1713", "mktemp"); +__static_renaming("__mkstemp_1716", "mkstemp"); +__static_renaming("__mkstemp_1717", "mkstemp"); +__static_renaming("__mkstemp_1718", "mkstemp"); +__static_renaming("__mkstemp_1719", "mkstemp"); +__static_renaming("__mkstemps_1724", "mkstemps"); +__static_renaming("__mkstemps_1725", "mkstemps"); +__static_renaming("__mkstemps_1726", "mkstemps"); +__static_renaming("__mkstemps_1727", "mkstemps"); +__static_renaming("__mkdtemp_1729", "mkdtemp"); +__static_renaming("__mkdtemp_1730", "mkdtemp"); +__static_renaming("__system_1732", "system"); +__static_renaming("__system_1733", "system"); +__static_renaming("__system_1734", "system"); +__static_renaming("__system_1735", "system"); +__static_renaming("__realpath_1738", "realpath"); +__static_renaming("__realpath_1739", "realpath"); +__static_renaming("____compar_fn_t_1740", "__compar_fn_t"); +__static_renaming("__bsearch_1751", "bsearch"); +__static_renaming("__bsearch_1752", "bsearch"); +__static_renaming("__bsearch_1755", "bsearch"); +__static_renaming("__bsearch_1756", "bsearch"); +__static_renaming("____l_1765", "__l"); +__static_renaming("____l_1766", "__l"); +__static_renaming("____u_1767", "__u"); +__static_renaming("____u_1768", "__u"); +__static_renaming("____idx_1769", "__idx"); +__static_renaming("____idx_1770", "__idx"); +__static_renaming("____p_1771", "__p"); +__static_renaming("____comparison_1772", "__comparison"); +__static_renaming("__qsort_1784", "qsort"); +__static_renaming("__qsort_1786", "qsort"); +__static_renaming("__qsort_1788", "qsort"); +__static_renaming("__qsort_1790", "qsort"); +__static_renaming("__abs_1793", "abs"); +__static_renaming("__abs_1794", "abs"); +__static_renaming("__labs_1796", "labs"); +__static_renaming("__labs_1797", "labs"); +__static_renaming("__llabs_1799", "llabs"); +__static_renaming("__llabs_1800", "llabs"); +__static_renaming("__div_1803", "div"); +__static_renaming("__div_1804", "div"); +__static_renaming("__ldiv_1807", "ldiv"); +__static_renaming("__ldiv_1809", "ldiv"); +__static_renaming("__lldiv_1813", "lldiv"); +__static_renaming("__lldiv_1815", "lldiv"); +__static_renaming("__ecvt_1821", "ecvt"); +__static_renaming("__ecvt_1822", "ecvt"); +__static_renaming("__fcvt_1827", "fcvt"); +__static_renaming("__fcvt_1828", "fcvt"); +__static_renaming("__gcvt_1832", "gcvt"); +__static_renaming("__gcvt_1833", "gcvt"); +__static_renaming("__qecvt_1838", "qecvt"); +__static_renaming("__qecvt_1839", "qecvt"); +__static_renaming("__qfcvt_1844", "qfcvt"); +__static_renaming("__qfcvt_1845", "qfcvt"); +__static_renaming("__qgcvt_1849", "qgcvt"); +__static_renaming("__qgcvt_1850", "qgcvt"); +__static_renaming("__ecvt_r_1858", "ecvt_r"); +__static_renaming("__ecvt_r_1859", "ecvt_r"); +__static_renaming("__fcvt_r_1867", "fcvt_r"); +__static_renaming("__fcvt_r_1868", "fcvt_r"); +__static_renaming("__qecvt_r_1876", "qecvt_r"); +__static_renaming("__qecvt_r_1877", "qecvt_r"); +__static_renaming("__qfcvt_r_1885", "qfcvt_r"); +__static_renaming("__qfcvt_r_1886", "qfcvt_r"); +__static_renaming("__mblen_1890", "mblen"); +__static_renaming("__mblen_1891", "mblen"); +__static_renaming("__mblen_1892", "mblen"); +__static_renaming("__mblen_1893", "mblen"); +__static_renaming("__mbtowc_1898", "mbtowc"); +__static_renaming("__mbtowc_1899", "mbtowc"); +__static_renaming("__wctomb_1902", "wctomb"); +__static_renaming("__mbstowcs_1907", "mbstowcs"); +__static_renaming("__mbstowcs_1908", "mbstowcs"); +__static_renaming("__wcstombs_1913", "wcstombs"); +__static_renaming("__wcstombs_1914", "wcstombs"); +__static_renaming("__rpmatch_1916", "rpmatch"); +__static_renaming("__rpmatch_1917", "rpmatch"); +__static_renaming("__getsubopt_1921", "getsubopt"); +__static_renaming("__getsubopt_1922", "getsubopt"); +__static_renaming("__getloadavg_1925", "getloadavg"); +__static_renaming("____realpath_chk_1931", "__realpath_chk"); +__static_renaming("____realpath_chk_1932", "__realpath_chk"); +__static_renaming("____realpath_alias_1935", "__realpath_alias"); +__static_renaming("____realpath_chk_warn_1940", "__realpath_chk_warn"); +__static_renaming("____realpath_chk_warn_1941", "__realpath_chk_warn"); +__static_renaming("____ptsname_r_chk_1951", "__ptsname_r_chk"); +__static_renaming("____ptsname_r_chk_1952", "__ptsname_r_chk"); +__static_renaming("____ptsname_r_alias_1957", "__ptsname_r_alias"); +__static_renaming("____ptsname_r_alias_1958", "__ptsname_r_alias"); +__static_renaming("____ptsname_r_chk_warn_1965", "__ptsname_r_chk_warn"); +__static_renaming("____ptsname_r_chk_warn_1966", "__ptsname_r_chk_warn"); +__static_renaming("____wctomb_chk_1977", "__wctomb_chk"); +__static_renaming("____wctomb_chk_1978", "__wctomb_chk"); +__static_renaming("____wctomb_alias_1981", "__wctomb_alias"); +__static_renaming("____mbstowcs_chk_1990", "__mbstowcs_chk"); +__static_renaming("____mbstowcs_chk_1991", "__mbstowcs_chk"); +__static_renaming("____mbstowcs_alias_1996", "__mbstowcs_alias"); +__static_renaming("____mbstowcs_alias_1997", "__mbstowcs_alias"); +__static_renaming("____mbstowcs_chk_warn_2004", "__mbstowcs_chk_warn"); +__static_renaming("____mbstowcs_chk_warn_2005", "__mbstowcs_chk_warn"); +__static_renaming("____wcstombs_chk_2016", "__wcstombs_chk"); +__static_renaming("____wcstombs_chk_2017", "__wcstombs_chk"); +__static_renaming("____wcstombs_alias_2022", "__wcstombs_alias"); +__static_renaming("____wcstombs_alias_2023", "__wcstombs_alias"); +__static_renaming("____wcstombs_chk_warn_2030", "__wcstombs_chk_warn"); +__static_renaming("____wcstombs_chk_warn_2031", "__wcstombs_chk_warn"); +__static_renaming("__ptrdiff_t_2036", "ptrdiff_t"); +__static_renaming("__size_t_2037", "size_t"); +__static_renaming("__memmove_2053", "memmove"); +__static_renaming("__memmove_2054", "memmove"); +__static_renaming("__memmove_2055", "memmove"); +__static_renaming("__memset_2070", "memset"); +__static_renaming("__memset_2071", "memset"); +__static_renaming("__memset_2072", "memset"); +__static_renaming("__memset_2073", "memset"); +__static_renaming("__memset_2074", "memset"); +__static_renaming("__memset_2075", "memset"); +__static_renaming("__memcmp_2081", "memcmp"); +__static_renaming("__memcmp_2082", "memcmp"); +__static_renaming("__memcmp_2083", "memcmp"); +__static_renaming("__memchr_2089", "memchr"); +__static_renaming("__memchr_2090", "memchr"); +__static_renaming("__memchr_2091", "memchr"); +__static_renaming("__strcpy_2094", "strcpy"); +__static_renaming("__strncpy_2100", "strncpy"); +__static_renaming("__strncpy_2101", "strncpy"); +__static_renaming("__strncpy_2102", "strncpy"); +__static_renaming("__strcat_2105", "strcat"); +__static_renaming("__strncat_2111", "strncat"); +__static_renaming("__strncat_2112", "strncat"); +__static_renaming("__strncat_2113", "strncat"); +__static_renaming("__strcmp_2116", "strcmp"); +__static_renaming("__strncmp_2122", "strncmp"); +__static_renaming("__strncmp_2123", "strncmp"); +__static_renaming("__strncmp_2124", "strncmp"); +__static_renaming("__strcoll_2127", "strcoll"); +__static_renaming("__strxfrm_2133", "strxfrm"); +__static_renaming("__strxfrm_2134", "strxfrm"); +__static_renaming("__strxfrm_2135", "strxfrm"); +__static_renaming("____locale_t_2143", "__locale_t"); +__static_renaming("__locale_t_2144", "locale_t"); +__static_renaming("__strcoll_l_2148", "strcoll_l"); +__static_renaming("__strxfrm_l_2155", "strxfrm_l"); +__static_renaming("__strxfrm_l_2156", "strxfrm_l"); +__static_renaming("__strxfrm_l_2157", "strxfrm_l"); +__static_renaming("__strdup_2159", "strdup"); +__static_renaming("__strndup_2164", "strndup"); +__static_renaming("__strndup_2165", "strndup"); +__static_renaming("__strndup_2166", "strndup"); +__static_renaming("__strchr_2169", "strchr"); +__static_renaming("__strrchr_2172", "strrchr"); +__static_renaming("__strcspn_2175", "strcspn"); +__static_renaming("__strcspn_2176", "strcspn"); +__static_renaming("__strcspn_2177", "strcspn"); +__static_renaming("__strspn_2180", "strspn"); +__static_renaming("__strspn_2181", "strspn"); +__static_renaming("__strspn_2182", "strspn"); +__static_renaming("__strpbrk_2185", "strpbrk"); +__static_renaming("__strstr_2188", "strstr"); +__static_renaming("__strtok_2191", "strtok"); +__static_renaming("____strtok_r_2195", "__strtok_r"); +__static_renaming("__strtok_r_2199", "strtok_r"); +__static_renaming("__strlen_2201", "strlen"); +__static_renaming("__strlen_2202", "strlen"); +__static_renaming("__strlen_2203", "strlen"); +__static_renaming("__strlen_2204", "strlen"); +__static_renaming("__strlen_2205", "strlen"); +__static_renaming("__strlen_2206", "strlen"); +__static_renaming("__strnlen_2211", "strnlen"); +__static_renaming("__strnlen_2212", "strnlen"); +__static_renaming("__strnlen_2213", "strnlen"); +__static_renaming("__strerror_2215", "strerror"); +__static_renaming("__strerror_2216", "strerror"); +__static_renaming("__strerror_r_2222", "strerror_r"); +__static_renaming("__strerror_r_2223", "strerror_r"); +__static_renaming("__strerror_r_2224", "strerror_r"); +__static_renaming("__strerror_l_2227", "strerror_l"); +__static_renaming("____bzero_2232", "__bzero"); +__static_renaming("____bzero_2233", "__bzero"); +__static_renaming("____bzero_2234", "__bzero"); +__static_renaming("____bzero_2235", "__bzero"); +__static_renaming("____bzero_2236", "__bzero"); +__static_renaming("____bzero_2237", "__bzero"); +__static_renaming("__bcopy_2243", "bcopy"); +__static_renaming("__bcopy_2244", "bcopy"); +__static_renaming("__bcopy_2245", "bcopy"); +__static_renaming("__bzero_2250", "bzero"); +__static_renaming("__bzero_2251", "bzero"); +__static_renaming("__bzero_2252", "bzero"); +__static_renaming("__bcmp_2258", "bcmp"); +__static_renaming("__bcmp_2259", "bcmp"); +__static_renaming("__bcmp_2260", "bcmp"); +__static_renaming("__index_2263", "index"); +__static_renaming("__rindex_2266", "rindex"); +__static_renaming("__ffs_2268", "ffs"); +__static_renaming("__strcasecmp_2271", "strcasecmp"); +__static_renaming("__strncasecmp_2277", "strncasecmp"); +__static_renaming("__strncasecmp_2278", "strncasecmp"); +__static_renaming("__strncasecmp_2279", "strncasecmp"); +__static_renaming("__strsep_2282", "strsep"); +__static_renaming("__strsignal_2284", "strsignal"); +__static_renaming("____stpcpy_2287", "__stpcpy"); +__static_renaming("__stpcpy_2290", "stpcpy"); +__static_renaming("____stpncpy_2296", "__stpncpy"); +__static_renaming("____stpncpy_2297", "__stpncpy"); +__static_renaming("____stpncpy_2298", "__stpncpy"); +__static_renaming("__stpncpy_2304", "stpncpy"); +__static_renaming("__stpncpy_2305", "stpncpy"); +__static_renaming("__stpncpy_2306", "stpncpy"); +__static_renaming("____stpncpy_chk_2360", "__stpncpy_chk"); +__static_renaming("____stpncpy_chk_2361", "__stpncpy_chk"); +__static_renaming("____stpncpy_chk_2362", "__stpncpy_chk"); +__static_renaming("____stpncpy_alias_2368", "__stpncpy_alias"); +__static_renaming("____stpncpy_alias_2369", "__stpncpy_alias"); +__static_renaming("____stpncpy_alias_2370", "__stpncpy_alias"); +__static_renaming("__val_2390", "val"); +__static_renaming("__s_2391", "s"); +__static_renaming("__p_2392", "p"); +__static_renaming("__a_2393", "a"); +__static_renaming("__n_2394", "n"); +__static_renaming("__make_device_2395", "make_device"); +__static_renaming("__make_device_2396", "make_device"); +__static_renaming("__main_2415", "main"); __static_condition_renaming("__static_condition_default_53", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); __static_condition_renaming("__static_condition_default_76", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); @@ -632,188 +1278,352 @@ __static_condition_renaming("__static_condition_default_271", "!(defined __need_ __static_condition_renaming("__static_condition_default_274", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); __static_condition_renaming("__static_condition_default_275", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); __static_condition_renaming("__static_condition_default_278", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_280", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_282", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_285", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_288", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_291", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -__static_condition_renaming("__static_condition_default_298", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_300", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_302", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_304", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_311", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_315", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_319", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_321", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_329", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_331", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_337", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_339", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_341", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_343", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_348", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_355", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_360", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_372", "!(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_373", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_374", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_379", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_385", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_396", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_401", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_403", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_414", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_415", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_417", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_418", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_421", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_423", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_427", "!(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_434", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_435", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_436", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_438", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_439", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_440", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_445", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_447", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_453", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_460", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_461", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_462", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_463", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_465", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_466", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_467", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_468", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_473", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_474", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_476", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_477", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_483", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_484", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_488", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_492", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_498", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_503", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_511", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_513", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_518", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_525", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_531", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_532", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_533", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_534", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_540", "!(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_541", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_547", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_551", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_553", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_557", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_563", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_564", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_565", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_575", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_576", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_577", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_583", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_584", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_585", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_587", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_588", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_589", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_593", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_597", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_599", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_603", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_605", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_611", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_625", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_632", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_647", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_656", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_662", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_673", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_674", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_675", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_681", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_685", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_690", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_696", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_697", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_698", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_705", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_707", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_713", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_720", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_725", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_726", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_733", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_734", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_740", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_741", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_748", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_749", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_757", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_758", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_885", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_886", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_889", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_890", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_909", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_910", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_911", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_912", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_921", "!(defined __need___FILE) && !(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_923", "(defined __need___FILE) && !(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_925", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_927", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_944", "!(defined _FORTIFY_SOURCE) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_946", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_950", "!(defined _FORTIFY_SOURCE) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_952", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1005", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1101", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1102", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1103", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1104", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1206", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1207", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1212", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1213", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1218", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1219", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1222", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1227", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1228", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1247", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1248", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1251", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1256", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1257", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1265", "!(defined _FORTIFY_SOURCE) && !(defined ENABLE_FEATURE_MDEV_CONF) || !(defined _FORTIFY_SOURCE) && (defined ENABLE_FEATURE_MDEV_CONF) && !(defined ENABLE_FEATURE_MDEV_RENAME) || !(defined _FORTIFY_SOURCE) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined ENABLE_FEATURE_MDEV_CONF) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && !(defined ENABLE_FEATURE_MDEV_RENAME) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined ENABLE_FEATURE_MDEV_CONF) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined ENABLE_FEATURE_MDEV_CONF) && !(defined ENABLE_FEATURE_MDEV_RENAME) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined ENABLE_FEATURE_MDEV_CONF) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && !(defined ENABLE_FEATURE_MDEV_RENAME) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP)"); -__static_condition_renaming("__static_condition_default_1266", "!(defined _FORTIFY_SOURCE) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP)"); -__static_condition_renaming("__static_condition_default_1267", "!(defined _FORTIFY_SOURCE) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP)"); -__static_condition_renaming("__static_condition_default_1268", "!(defined _FORTIFY_SOURCE) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP)"); -__static_condition_renaming("__static_condition_default_1269", "!(defined _FORTIFY_SOURCE) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP)"); -__static_condition_renaming("__static_condition_default_1270", "!(defined _FORTIFY_SOURCE) && !(defined __USE_EXTERN_INLINES) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __USE_EXTERN_INLINES) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __USE_EXTERN_INLINES) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __USE_EXTERN_INLINES) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP)"); -__static_condition_renaming("__static_condition_default_1271", "!(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP)"); -__static_condition_renaming("__static_condition_default_1272", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined ENABLE_FEATURE_MDEV_CONF) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && !(defined ENABLE_FEATURE_MDEV_RENAME) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP)"); -__static_condition_renaming("__static_condition_default_1273", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP)"); -__static_condition_renaming("__static_condition_default_1274", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP)"); -__static_condition_renaming("__static_condition_default_1275", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP)"); -__static_condition_renaming("__static_condition_default_1276", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP)"); -__static_condition_renaming("__static_condition_default_1277", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __USE_EXTERN_INLINES) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP)"); -__static_condition_renaming("__static_condition_default_1278", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP)"); -__static_condition_renaming("__static_condition_default_1282", "!(defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_1283", "!(defined _FORTIFY_SOURCE) && !(defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_1284", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_1285", "(defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_1286", "!(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_1287", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_1288", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); - -if (__static_condition_default_1288) { +__static_condition_renaming("__static_condition_default_280", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); +__static_condition_renaming("__static_condition_default_282", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_284", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_286", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_288", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_290", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_293", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_296", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_299", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_311", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_313", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_315", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_317", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_331", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_333", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_337", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_341", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_345", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_347", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_355", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_357", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_363", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_365", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_367", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_369", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_373", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_375", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_380", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_382", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_386", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_388", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_393", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_395", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_402", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_408", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_412", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_417", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_419", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_431", "!(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_432", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_433", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_438", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_444", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_455", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_461", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_469", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_471", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_473", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_475", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_486", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_488", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_489", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_491", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_493", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_494", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_497", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_499", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_503", "!(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_510", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_511", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_512", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_514", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_515", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_516", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_521", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_523", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_529", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_536", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_537", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_538", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_539", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_541", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_542", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_543", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_544", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_549", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_550", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_552", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_553", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_559", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_560", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_564", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_568", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_573", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_578", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_583", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_585", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_590", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_597", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_602", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_608", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_613", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_619", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_621", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_623", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_625", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_632", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_633", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_634", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_636", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_637", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_638", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_645", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_646", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_647", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_649", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_650", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_651", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_657", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_658", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_659", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_661", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_662", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_663", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_668", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_670", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_677", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_683", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_684", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_685", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_686", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_692", "!(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_693", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_699", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_700", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_701", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_702", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_708", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_709", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_715", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_717", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_721", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_723", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_727", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_734", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_735", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_736", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_745", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_746", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_747", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_751", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_752", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_753", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_755", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_756", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_757", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_759", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_760", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_761", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_767", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_768", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_769", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_779", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_780", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_781", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_787", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_788", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_789", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_791", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_792", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_793", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_797", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_801", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_803", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_807", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_809", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_813", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_817", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_819", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_823", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_825", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_834", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_836", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_840", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_842", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_846", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_848", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_852", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_858", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_862", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_864", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_868", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_872", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_875", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_878", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_883", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_887", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_891", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_894", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_907", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_914", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_929", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_938", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_944", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_955", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_956", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_957", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_963", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_967", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_972", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_978", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_979", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_980", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_991", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_998", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1005", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1007", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1009", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1015", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1022", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1027", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1028", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1035", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1036", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1042", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1043", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1050", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1051", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1057", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1058", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1065", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1066", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1072", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1073", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1080", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1081", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1089", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_1090", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1091", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1152", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1159", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1164", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1165", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1315", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1341", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __u_char_defined)"); +__static_condition_renaming("__static_condition_default_1345", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __u_char_defined)"); +__static_condition_renaming("__static_condition_default_1349", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __u_char_defined)"); +__static_condition_renaming("__static_condition_default_1353", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined)"); +__static_condition_renaming("__static_condition_default_1357", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined)"); +__static_condition_renaming("__static_condition_default_1361", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_1365", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_1369", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_1373", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1377", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __nlink_t_defined)"); +__static_condition_renaming("__static_condition_default_1381", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __nlink_t_defined)"); +__static_condition_renaming("__static_condition_default_1385", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __nlink_t_defined)"); +__static_condition_renaming("__static_condition_default_1388", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1391", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1395", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && (defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1398", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1402", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __id_t_defined)"); +__static_condition_renaming("__static_condition_default_1405", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1409", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_1416", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_1420", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_1424", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __clock_t_defined)"); +__static_condition_renaming("__static_condition_default_1428", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __time_t_defined)"); +__static_condition_renaming("__static_condition_default_1432", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __clockid_t_defined)"); +__static_condition_renaming("__static_condition_default_1436", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timer_t_defined)"); +__static_condition_renaming("__static_condition_default_1453", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1458", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1459", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1475", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_1485", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_1489", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __suseconds_t_defined)"); +__static_condition_renaming("__static_condition_default_1498", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1515", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_1516", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_1531", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_1532", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_1552", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blksize_t_defined)"); +__static_condition_renaming("__static_condition_default_1556", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined)"); +__static_condition_renaming("__static_condition_default_1560", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1564", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined)"); +__static_condition_renaming("__static_condition_default_1568", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1572", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1576", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1749", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1750", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1753", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1754", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1773", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1774", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1775", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1776", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1785", "!(defined __need___FILE) && !(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1787", "(defined __need___FILE) && !(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1789", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1791", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1808", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1810", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1814", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1816", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1944", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_2043", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_2044", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_2045", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _STDLIB_H) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDLIB_H) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDLIB_H) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDLIB_H) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2046", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2047", "(defined __need___FILE) && (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2062", "!(defined __need___FILE) && !(defined __STRICT_ANSI__)"); +__static_condition_renaming("__static_condition_default_2063", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2064", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2312", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2313", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2314", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2320", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2321", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2322", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2328", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2329", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2330", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2342", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2343", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2349", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2350", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2351", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2376", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2377", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2378", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2381", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2387", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2388", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2389", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2397", "!(defined _FORTIFY_SOURCE) && !(defined ENABLE_FEATURE_MDEV_CONF) || !(defined _FORTIFY_SOURCE) && (defined ENABLE_FEATURE_MDEV_CONF) && !(defined ENABLE_FEATURE_MDEV_RENAME) || !(defined _FORTIFY_SOURCE) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined ENABLE_FEATURE_MDEV_CONF) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && !(defined ENABLE_FEATURE_MDEV_RENAME) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined ENABLE_FEATURE_MDEV_CONF) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined ENABLE_FEATURE_MDEV_CONF) && !(defined ENABLE_FEATURE_MDEV_RENAME) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined ENABLE_FEATURE_MDEV_CONF) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && !(defined ENABLE_FEATURE_MDEV_RENAME) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP)"); +__static_condition_renaming("__static_condition_default_2398", "!(defined _FORTIFY_SOURCE) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP)"); +__static_condition_renaming("__static_condition_default_2399", "!(defined _FORTIFY_SOURCE) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP)"); +__static_condition_renaming("__static_condition_default_2400", "!(defined _FORTIFY_SOURCE) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP)"); +__static_condition_renaming("__static_condition_default_2401", "!(defined _FORTIFY_SOURCE) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP)"); +__static_condition_renaming("__static_condition_default_2402", "!(defined _FORTIFY_SOURCE) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP)"); +__static_condition_renaming("__static_condition_default_2403", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP)"); +__static_condition_renaming("__static_condition_default_2404", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDLIB_H) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDLIB_H) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDLIB_H) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDLIB_H) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP)"); +__static_condition_renaming("__static_condition_default_2405", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined ENABLE_FEATURE_MDEV_CONF) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && !(defined ENABLE_FEATURE_MDEV_RENAME) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP)"); +__static_condition_renaming("__static_condition_default_2406", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP)"); +__static_condition_renaming("__static_condition_default_2407", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP)"); +__static_condition_renaming("__static_condition_default_2408", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && !(defined ENABLE_FEATURE_MDEV_RENAME_REGEXP)"); +__static_condition_renaming("__static_condition_default_2409", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP)"); +__static_condition_renaming("__static_condition_default_2410", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP)"); +__static_condition_renaming("__static_condition_default_2411", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP)"); +__static_condition_renaming("__static_condition_default_2412", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H) && (defined ENABLE_FEATURE_MDEV_CONF) && (defined ENABLE_FEATURE_MDEV_RENAME) && (defined ENABLE_FEATURE_MDEV_RENAME_REGEXP)"); +__static_condition_renaming("__static_condition_default_2416", "(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_2417", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_2418", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_2419", "!(defined __STRICT_ANSI__) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined __STRICT_ANSI__) && (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2420", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && (defined _STDLIB_H) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && (defined _STDLIB_H) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO)"); + +if (__static_condition_default_2420) { __static_parse_error("Unable to parse"); } }; @@ -979,28 +1789,375 @@ typedef ____ssize_t_49 (____io_read_fn_181) (void * (____cookie_178), char * typedef ____ssize_t_49 (____io_write_fn_186) (void * (____cookie_183), const char * (____buf_184), __size_t_1 ____n_185);// L341:L342 typedef int (____io_seek_fn_192) (void * (____cookie_188), ____off64_t_24 * (____pos_189), int ____w_191);// L350 typedef int (____io_close_fn_195) (void * (____cookie_194));// L353 -typedef ___G_fpos_t_77 __fpos_t_279;// L110 -typedef ___G_fpos64_t_85 __fpos_t_281;// L112 -typedef long int __ptrdiff_t_755;// L143:L324 -typedef long unsigned int __size_t_756;// L177:L209 -typedef int __wchar_t_759;// L243:L321 -typedef int __wchar_t_760;// L243:L321 -struct ____anonymous_tag_761_762 { -int __quot_763;// L99 -int __rem_764;// L100 +typedef ____gnuc_va_list_86 __va_list_279;// L79 +typedef ____off_t_23 __off_t_281;// L90 +typedef ____off64_t_24 __off_t_283;// L92 +typedef ____ssize_t_49 __ssize_t_285;// L102 +typedef ___G_fpos_t_77 __fpos_t_287;// L110 +typedef ___G_fpos64_t_85 __fpos_t_289;// L112 +extern const char * const __sys_errlist_830[];// L27 +typedef long int __ptrdiff_t_1092;// L143:L324 +typedef long unsigned int __size_t_1093;// L177:L209 +typedef int __wchar_t_1094;// L243:L321 +enum ____anonymous_tag_1098_1099 { +__P_ALL_1095, +__P_PID_1096, +__P_PGID_1097, +}; +typedef enum ____anonymous_tag_1098_1099 __idtype_t_1100;// L50:L55 +typedef unsigned char ____u_char_1101;// L30 +typedef unsigned short int ____u_short_1102;// L31 +typedef unsigned int ____u_int_1103;// L32 +typedef unsigned long int ____u_long_1104;// L33 +typedef signed char ____int8_t_1105;// L36 +typedef unsigned char ____uint8_t_1106;// L37 +typedef signed short int ____int16_t_1107;// L38 +typedef unsigned short int ____uint16_t_1108;// L39 +typedef signed int ____int32_t_1109;// L40 +typedef unsigned int ____uint32_t_1110;// L41 +typedef signed long int ____int64_t_1111;// L43 +typedef unsigned long int ____uint64_t_1112;// L44 +typedef long int ____quad_t_1113;// L52 +typedef unsigned long int ____u_quad_t_1114;// L53 +typedef unsigned long int ____dev_t_1115;// L109:L124 +typedef unsigned int ____uid_t_1116;// L92:L125 +typedef unsigned int ____gid_t_1117;// L92:L126 +typedef unsigned long int ____ino_t_1118;// L94:L127 +typedef unsigned long int ____ino64_t_1119;// L109:L128 +typedef unsigned int ____mode_t_1120;// L92:L129 +typedef unsigned long int ____nlink_t_1121;// L94:L130 +typedef long int ____off_t_1122;// L93:L131 +typedef long int ____off64_t_1123;// L108:L132 +typedef int ____pid_t_1124;// L91:L133 +struct ____anonymous_tag_1125_1126 { +int ____val_1127[2];// L72 +}; +typedef struct ____anonymous_tag_1125_1126 ____fsid_t_1128;// L72:L134 +typedef long int ____clock_t_1129;// L93:L135 +typedef unsigned long int ____rlim_t_1130;// L94:L136 +typedef unsigned long int ____rlim64_t_1131;// L109:L137 +typedef unsigned int ____id_t_1132;// L92:L138 +typedef long int ____time_t_1133;// L93:L139 +typedef unsigned int ____useconds_t_1134;// L92:L140 +typedef long int ____suseconds_t_1135;// L93:L141 +typedef int ____daddr_t_1136;// L91:L143 +typedef int ____key_t_1137;// L91:L144 +typedef int ____clockid_t_1138;// L91:L147 +typedef void * (____timer_t_1139);// L70:L150 +typedef long int ____blksize_t_1140;// L93:L153 +typedef long int ____blkcnt_t_1141;// L93:L158 +typedef long int ____blkcnt64_t_1142;// L108:L159 +typedef unsigned long int ____fsblkcnt_t_1143;// L94:L162 +typedef unsigned long int ____fsblkcnt64_t_1144;// L109:L163 +typedef unsigned long int ____fsfilcnt_t_1145;// L94:L166 +typedef unsigned long int ____fsfilcnt64_t_1146;// L109:L167 +typedef long int ____fsword_t_1147;// L93:L170 +typedef long int ____ssize_t_1148;// L110:L172 +typedef long int ____syscall_slong_t_1149;// L93:L175 +typedef unsigned long int ____syscall_ulong_t_1150;// L94:L177 +typedef ____off64_t_1123 ____loff_t_1151;// L181 +typedef ____quad_t_1113 * (____qaddr_t_1153);// L182 +typedef char * (____caddr_t_1154);// L183 +typedef long int ____intptr_t_1155;// L110:L186 +typedef unsigned int ____socklen_t_1156;// L92:L189 +struct ____anonymous_tag_1166_1167 { +unsigned int ____w_termsig_1168 : 7;// L72 +unsigned int ____w_coredump_1169 : 1;// L73 +unsigned int ____w_retcode_1170 : 8;// L74 +unsigned int __anon_id_0_1171 : 16;// L75 +}; +struct ____anonymous_tag_1172_1173 { +unsigned int ____w_stopval_1174 : 8;// L87 +unsigned int ____w_stopsig_1175 : 8;// L88 +unsigned int __anon_id_1_1176 : 16;// L89 +}; +union __wait_1177 { +int __w_status_1178;// L68 +struct ____anonymous_tag_1166_1167 ____wait_terminated_1179;// L69 +struct ____anonymous_tag_1172_1173 ____wait_stopped_1180;// L84 }; -typedef struct ____anonymous_tag_761_762 __div_t_765;// L97:L101 -struct ____anonymous_tag_766_767 { -long int __quot_768;// L107 -long int __rem_769;// L108 +union ____anonymous_tag_1181_1182 { +union __wait_1177 * (____uptr_1183);// L69 +int * (____iptr_1184);// L70 }; -typedef struct ____anonymous_tag_766_767 __ldiv_t_770;// L105:L109 -struct ____anonymous_tag_771_772 { -long long int __quot_773;// L119 -long long int __rem_774;// L120 +typedef union ____anonymous_tag_1181_1182 ____WAIT_STATUS_1185;// L67:L71 +struct ____anonymous_tag_1186_1187 { +int __quot_1188;// L99 +int __rem_1189;// L100 }; -typedef struct ____anonymous_tag_771_772 __lldiv_t_775;// L117:L121 -typedef int (* (____compar_fn_t_876)) (const void *, const void *);// L741 +typedef struct ____anonymous_tag_1186_1187 __div_t_1190;// L97:L101 +struct ____anonymous_tag_1191_1192 { +long int __quot_1193;// L107 +long int __rem_1194;// L108 +}; +typedef struct ____anonymous_tag_1191_1192 __ldiv_t_1195;// L105:L109 +struct ____anonymous_tag_1196_1197 { +long long int __quot_1198;// L119 +long long int __rem_1199;// L120 +}; +typedef struct ____anonymous_tag_1196_1197 __lldiv_t_1200;// L117:L121 +typedef unsigned char ____u_char_1264;// L30 +typedef unsigned short int ____u_short_1265;// L31 +typedef unsigned int ____u_int_1266;// L32 +typedef unsigned long int ____u_long_1267;// L33 +typedef signed char ____int8_t_1268;// L36 +typedef unsigned char ____uint8_t_1269;// L37 +typedef signed short int ____int16_t_1270;// L38 +typedef unsigned short int ____uint16_t_1271;// L39 +typedef signed int ____int32_t_1272;// L40 +typedef unsigned int ____uint32_t_1273;// L41 +typedef signed long int ____int64_t_1274;// L43 +typedef unsigned long int ____uint64_t_1275;// L44 +typedef long int ____quad_t_1276;// L52 +typedef unsigned long int ____u_quad_t_1277;// L53 +typedef unsigned long int ____dev_t_1278;// L109:L124 +typedef unsigned int ____uid_t_1279;// L92:L125 +typedef unsigned int ____gid_t_1280;// L92:L126 +typedef unsigned long int ____ino_t_1281;// L94:L127 +typedef unsigned long int ____ino64_t_1282;// L109:L128 +typedef unsigned int ____mode_t_1283;// L92:L129 +typedef unsigned long int ____nlink_t_1284;// L94:L130 +typedef long int ____off_t_1285;// L93:L131 +typedef long int ____off64_t_1286;// L108:L132 +typedef int ____pid_t_1287;// L91:L133 +struct ____anonymous_tag_1288_1289 { +int ____val_1290[2];// L72 +}; +typedef struct ____anonymous_tag_1288_1289 ____fsid_t_1291;// L72:L134 +typedef long int ____clock_t_1292;// L93:L135 +typedef unsigned long int ____rlim_t_1293;// L94:L136 +typedef unsigned long int ____rlim64_t_1294;// L109:L137 +typedef unsigned int ____id_t_1295;// L92:L138 +typedef long int ____time_t_1296;// L93:L139 +typedef unsigned int ____useconds_t_1297;// L92:L140 +typedef long int ____suseconds_t_1298;// L93:L141 +typedef int ____daddr_t_1299;// L91:L143 +typedef int ____key_t_1300;// L91:L144 +typedef int ____clockid_t_1301;// L91:L147 +typedef void * (____timer_t_1302);// L70:L150 +typedef long int ____blksize_t_1303;// L93:L153 +typedef long int ____blkcnt_t_1304;// L93:L158 +typedef long int ____blkcnt64_t_1305;// L108:L159 +typedef unsigned long int ____fsblkcnt_t_1306;// L94:L162 +typedef unsigned long int ____fsblkcnt64_t_1307;// L109:L163 +typedef unsigned long int ____fsfilcnt_t_1308;// L94:L166 +typedef unsigned long int ____fsfilcnt64_t_1309;// L109:L167 +typedef long int ____fsword_t_1310;// L93:L170 +typedef long int ____ssize_t_1311;// L110:L172 +typedef long int ____syscall_slong_t_1312;// L93:L175 +typedef unsigned long int ____syscall_ulong_t_1313;// L94:L177 +typedef ____off64_t_1286 ____loff_t_1314;// L181 +typedef ____quad_t_1276 * (____qaddr_t_1316);// L182 +typedef char * (____caddr_t_1317);// L183 +typedef long int ____intptr_t_1318;// L110:L186 +typedef unsigned int ____socklen_t_1319;// L92:L189 +typedef ____u_char_2 __u_char_1320;// L33 +typedef ____u_char_1101 __u_char_1321;// L33 +typedef ____u_char_1264 __u_char_1322;// L33 +typedef ____u_short_3 __u_short_1323;// L34 +typedef ____u_short_1102 __u_short_1324;// L34 +typedef ____u_short_1265 __u_short_1325;// L34 +typedef ____u_int_4 __u_int_1326;// L35 +typedef ____u_int_1103 __u_int_1327;// L35 +typedef ____u_int_1266 __u_int_1328;// L35 +typedef ____u_long_5 __u_long_1329;// L36 +typedef ____u_long_1104 __u_long_1330;// L36 +typedef ____u_long_1267 __u_long_1331;// L36 +typedef ____quad_t_14 __quad_t_1332;// L37 +typedef ____quad_t_1113 __quad_t_1333;// L37 +typedef ____quad_t_1276 __quad_t_1334;// L37 +typedef ____u_quad_t_15 __u_quad_t_1335;// L38 +typedef ____u_quad_t_1114 __u_quad_t_1336;// L38 +typedef ____u_quad_t_1277 __u_quad_t_1337;// L38 +typedef ____fsid_t_29 __fsid_t_1338;// L39 +typedef ____fsid_t_1128 __fsid_t_1339;// L39 +typedef ____fsid_t_1291 __fsid_t_1340;// L39 +typedef ____loff_t_52 __loff_t_1342;// L44 +typedef ____loff_t_1151 __loff_t_1343;// L44 +typedef ____loff_t_1314 __loff_t_1344;// L44 +typedef ____loff_t_52 __loff_t_1346;// L44 +typedef ____loff_t_1151 __loff_t_1347;// L44 +typedef ____loff_t_1314 __loff_t_1348;// L44 +typedef ____ino64_t_20 __ino_t_1350;// L50 +typedef ____ino64_t_1119 __ino_t_1351;// L50 +typedef ____ino64_t_1282 __ino_t_1352;// L50 +typedef ____ino_t_19 __ino_t_1354;// L48 +typedef ____ino_t_1118 __ino_t_1355;// L48 +typedef ____ino_t_1281 __ino_t_1356;// L48 +typedef ____dev_t_16 __dev_t_1358;// L60 +typedef ____dev_t_1115 __dev_t_1359;// L60 +typedef ____dev_t_1278 __dev_t_1360;// L60 +typedef ____gid_t_18 __gid_t_1362;// L65 +typedef ____gid_t_1117 __gid_t_1363;// L65 +typedef ____gid_t_1280 __gid_t_1364;// L65 +typedef ____gid_t_18 __gid_t_1366;// L65 +typedef ____gid_t_1117 __gid_t_1367;// L65 +typedef ____gid_t_1280 __gid_t_1368;// L65 +typedef ____mode_t_21 __mode_t_1370;// L70 +typedef ____mode_t_1120 __mode_t_1371;// L70 +typedef ____mode_t_1283 __mode_t_1372;// L70 +typedef ____nlink_t_22 __nlink_t_1374;// L75 +typedef ____nlink_t_1121 __nlink_t_1375;// L75 +typedef ____nlink_t_1284 __nlink_t_1376;// L75 +typedef ____uid_t_17 __uid_t_1378;// L80 +typedef ____uid_t_1116 __uid_t_1379;// L80 +typedef ____uid_t_1279 __uid_t_1380;// L80 +typedef ____uid_t_17 __uid_t_1382;// L80 +typedef ____uid_t_1116 __uid_t_1383;// L80 +typedef ____uid_t_1279 __uid_t_1384;// L80 +typedef ____off64_t_1123 __off_t_1386;// L88 +typedef ____off64_t_1286 __off_t_1387;// L88 +typedef ____off_t_1122 __off_t_1389;// L86 +typedef ____off_t_1285 __off_t_1390;// L86 +typedef ____pid_t_25 __pid_t_1392;// L98 +typedef ____pid_t_1124 __pid_t_1393;// L98 +typedef ____pid_t_1287 __pid_t_1394;// L98 +typedef ____pid_t_1124 __pid_t_1396;// L98 +typedef ____pid_t_1287 __pid_t_1397;// L98 +typedef ____id_t_33 __id_t_1399;// L104 +typedef ____id_t_1132 __id_t_1400;// L104 +typedef ____id_t_1295 __id_t_1401;// L104 +typedef ____ssize_t_1148 __ssize_t_1403;// L109 +typedef ____ssize_t_1311 __ssize_t_1404;// L109 +typedef ____daddr_t_37 __daddr_t_1406;// L115 +typedef ____daddr_t_1136 __daddr_t_1407;// L115 +typedef ____daddr_t_1299 __daddr_t_1408;// L115 +typedef ____caddr_t_55 __caddr_t_1410;// L116 +typedef ____caddr_t_1154 __caddr_t_1411;// L116 +typedef ____caddr_t_1317 __caddr_t_1412;// L116 +typedef ____key_t_38 __key_t_1413;// L122 +typedef ____key_t_1137 __key_t_1414;// L122 +typedef ____key_t_1300 __key_t_1415;// L122 +typedef ____key_t_38 __key_t_1417;// L122 +typedef ____key_t_1137 __key_t_1418;// L122 +typedef ____key_t_1300 __key_t_1419;// L122 +typedef ____clock_t_30 __clock_t_1421;// L59 +typedef ____clock_t_1129 __clock_t_1422;// L59 +typedef ____clock_t_1292 __clock_t_1423;// L59 +typedef ____time_t_34 __time_t_1425;// L75 +typedef ____time_t_1133 __time_t_1426;// L75 +typedef ____time_t_1296 __time_t_1427;// L75 +typedef ____clockid_t_39 __clockid_t_1429;// L91 +typedef ____clockid_t_1138 __clockid_t_1430;// L91 +typedef ____clockid_t_1301 __clockid_t_1431;// L91 +typedef ____timer_t_40 __timer_t_1433;// L103 +typedef ____timer_t_1139 __timer_t_1434;// L103 +typedef ____timer_t_1302 __timer_t_1435;// L103 +typedef unsigned long int __ulong_1437;// L150 +typedef unsigned long int __ulong_1438;// L150 +typedef unsigned long int __ulong_1439;// L150 +typedef unsigned short int __ushort_1440;// L151 +typedef unsigned int __uint_1441;// L152 +typedef int __int8_t_1442;// L188:L194 +typedef int __int16_t_1443;// L188:L195 +typedef int __int32_t_1444;// L188:L196 +typedef int __int64_t_1445;// L188:L197 +typedef unsigned int __u_int8_t_1446;// L190:L200 +typedef unsigned int __u_int16_t_1447;// L190:L201 +typedef unsigned int __u_int32_t_1448;// L190:L202 +typedef unsigned int __u_int64_t_1449;// L190:L203 +typedef int __register_t_1450;// L205 +typedef int ____sig_atomic_t_1460;// L22 +struct ____anonymous_tag_1461_1462 { +unsigned long int ____val_1463[( 1024 / ( 8 * sizeof(unsigned long) ) )];// L29 +}; +typedef struct ____anonymous_tag_1461_1462 ____sigset_t_1464;// L27:L30 +typedef ____sigset_t_1464 __sigset_t_1465;// L37 +struct __timespec_1466 { +____time_t_34 __tv_sec_1467;// L0 +____time_t_1133 __tv_sec_1468;// L0 +____time_t_1296 __tv_sec_1469;// L0 +____syscall_slong_t_50 __tv_nsec_1471;// L0 +____syscall_slong_t_1149 __tv_nsec_1472;// L0 +____syscall_slong_t_1312 __tv_nsec_1473;// L0 +}; +struct __timeval_1476 { +____time_t_34 __tv_sec_1477;// L0 +____time_t_1133 __tv_sec_1478;// L0 +____time_t_1296 __tv_sec_1479;// L0 +____suseconds_t_36 __tv_usec_1481;// L0 +____suseconds_t_1135 __tv_usec_1482;// L0 +____suseconds_t_1298 __tv_usec_1483;// L0 +}; +typedef ____suseconds_t_36 __suseconds_t_1486;// L48 +typedef ____suseconds_t_1135 __suseconds_t_1487;// L48 +typedef ____suseconds_t_1298 __suseconds_t_1488;// L48 +typedef long int ____fd_mask_1490;// L54 +typedef long int ____fd_mask_1491;// L54 +struct ____anonymous_tag_1492_1493 { +____fd_mask_1490 ____fds_bits_1494[1024 / ( 8 * ( int ) sizeof(long) )];// L0 +____fd_mask_1491 ____fds_bits_1496[1024 / ( 8 * ( int ) sizeof(long) )];// L0 +}; +typedef struct ____anonymous_tag_1492_1493 __fd_set_1499;// L64:L75 +typedef ____fd_mask_1490 __fd_mask_1500;// L82 +typedef ____fd_mask_1491 __fd_mask_1501;// L82 +typedef ____blksize_t_41 __blksize_t_1549;// L228 +typedef ____blksize_t_1140 __blksize_t_1550;// L228 +typedef ____blksize_t_1303 __blksize_t_1551;// L228 +typedef ____blkcnt_t_42 __blkcnt_t_1553;// L235 +typedef ____blkcnt_t_1141 __blkcnt_t_1554;// L235 +typedef ____blkcnt_t_1304 __blkcnt_t_1555;// L235 +typedef ____fsblkcnt_t_44 __fsblkcnt_t_1557;// L239 +typedef ____fsblkcnt_t_1143 __fsblkcnt_t_1558;// L239 +typedef ____fsblkcnt_t_1306 __fsblkcnt_t_1559;// L239 +typedef ____blkcnt64_t_43 __blkcnt_t_1561;// L248 +typedef ____blkcnt64_t_1142 __blkcnt_t_1562;// L248 +typedef ____blkcnt64_t_1305 __blkcnt_t_1563;// L248 +typedef ____fsblkcnt64_t_45 __fsblkcnt_t_1565;// L252 +typedef ____fsblkcnt64_t_1144 __fsblkcnt_t_1566;// L252 +typedef ____fsblkcnt64_t_1307 __fsblkcnt_t_1567;// L252 +typedef ____fsfilcnt_t_46 __fsfilcnt_t_1569;// L243 +typedef ____fsfilcnt_t_1145 __fsfilcnt_t_1570;// L243 +typedef ____fsfilcnt_t_1308 __fsfilcnt_t_1571;// L243 +typedef ____fsfilcnt64_t_47 __fsfilcnt_t_1573;// L256 +typedef ____fsfilcnt64_t_1146 __fsfilcnt_t_1574;// L256 +typedef ____fsfilcnt64_t_1309 __fsfilcnt_t_1575;// L256 +typedef unsigned long int __pthread_t_1577;// L60 +union __pthread_attr_t_1578 { +char ____size_1579[56];// L65 +long int ____align_1580;// L66 +}; +typedef union __pthread_attr_t_1578 __pthread_attr_t_1581;// L69 +struct ____pthread_internal_list_1583 { +struct __forward_tag_reference_1582 * (____prev_1584);// L0 +struct __forward_tag_reference_1582 * (____next_1585);// L0 +}; +typedef struct ____pthread_internal_list_1583 ____pthread_list_t_1586;// L75:L79 +typedef struct ____pthread_internal_list_1583 ____pthread_list_t_1587;// L75:L79 +struct ____pthread_mutex_s_1588 { +int ____lock_1589;// L94 +unsigned int ____count_1590;// L95 +int ____owner_1591;// L96 +unsigned int ____nusers_1592;// L98 +int ____kind_1593;// L102 +short ____spins_1594;// L104 +short ____elision_1595;// L105 +____pthread_list_t_1586 ____list_1596;// L0 +____pthread_list_t_1587 ____list_1597;// L0 +}; +union ____anonymous_tag_1598_1599 { +struct ____pthread_mutex_s_1588 ____data_1600;// L92 +char ____size_1601[40];// L126 +long int ____align_1602;// L127 +}; +typedef union ____anonymous_tag_1598_1599 __pthread_mutex_t_1603;// L90:L128 +union ____anonymous_tag_1604_1605 { +char ____size_1606[4];// L132 +int ____align_1607;// L133 +}; +typedef union ____anonymous_tag_1604_1605 __pthread_mutexattr_t_1608;// L130:L134 +typedef int (* (____compar_fn_t_1740)) (const void *, const void *);// L741 +typedef long int __ptrdiff_t_2036;// L143:L324 +typedef long unsigned int __size_t_2037;// L177:L209 +struct ____locale_struct_2137 { +struct __forward_tag_reference_2136 * (____locales_2138[13]);// L0 +const unsigned short int * (____ctype_b_2139);// L33 +const int * (____ctype_tolower_2140);// L34 +const int * (____ctype_toupper_2141);// L35 +const char * (____names_2142[13]);// L38 +}; +typedef struct ____locale_struct_2137 * (____locale_t_2143);// L27:L39 +typedef ____locale_t_2143 __locale_t_2144;// L42 struct __forward_tag_reference_89 { // generated union of struct variations union { @@ -1008,6 +2165,11 @@ struct ___IO_marker_90 ___IO_marker_90; }; }; +struct __forward_tag_reference_1582 { // generated union of struct variations +union { +}; +}; + struct __forward_tag_reference_58 { // generated union of struct variations union { struct ___IO_FILE_99 ___IO_FILE_99; @@ -1015,6 +2177,11 @@ struct ___IO_FILE_124 ___IO_FILE_124; }; }; +struct __forward_tag_reference_2136 { // generated union of struct variations +union { +}; +}; + struct __forward_tag_reference_87 { // generated union of struct variations union { }; @@ -1148,313 +2315,907 @@ extern void (___IO_free_backup_area_276) (___IO_FILE_171 *);// L469 extern void (___IO_free_backup_area_277) (___IO_FILE_172 *);// L469 // typedef moved to top of scope // typedef moved to top of scope -extern struct ___IO_FILE_99 * (__stdin_283);// L168 -extern struct ___IO_FILE_124 * (__stdin_284);// L168 -extern struct ___IO_FILE_99 * (__stdout_286);// L169 -extern struct ___IO_FILE_124 * (__stdout_287);// L169 -extern struct ___IO_FILE_99 * (__stderr_289);// L170 -extern struct ___IO_FILE_124 * (__stderr_290);// L170 -extern int (__remove_293) (const char * (____filename_292));// L178 -extern int (__rename_296) (const char * (____old_294), const char * (____new_295));// L180 -extern __FILE_59 * ((__tmpfile_297) (void ));// L195 -extern __FILE_59 * ((__tmpfile_303) (void ));// L198 -extern __FILE_59 * ((__tmpfile_301) (void ));// L195 -extern __FILE_59 * ((__tmpfile_299) (void ));// L198 -extern char * ((__tmpnam_306) (char * (____s_305)));// L209 -extern char * ((__tmpnam_307) (char * (____s_305)));// L209 -extern int (__fclose_310) (__FILE_59 * (____stream_308));// L237 -extern int (__fflush_314) (__FILE_59 * (____stream_312));// L242 -extern __FILE_59 * ((__fopen_318) (const char * __restrict ____filename_316, const char * __restrict ____modes_317));// L272:L273 -extern __FILE_59 * ((__fopen_320) (const char * __restrict ____filename_316, const char * __restrict ____modes_317));// L272:L273 -extern __FILE_59 * ((__fopen_328) (const char * __restrict ____filename_326, const char * __restrict ____modes_327));// L283:L285 -extern __FILE_59 * ((__fopen_330) (const char * __restrict ____filename_326, const char * __restrict ____modes_327));// L283:L285 -extern __FILE_59 * ((__freopen_336) (const char * __restrict ____filename_322, const char * __restrict ____modes_323, __FILE_59 * __restrict ____stream_324));// L278:L280 -extern __FILE_59 * ((__freopen_342) (const char * __restrict ____filename_332, const char * __restrict ____modes_333, __FILE_59 * __restrict ____stream_334));// L286:L289 -extern __FILE_59 * ((__freopen_340) (const char * __restrict ____filename_322, const char * __restrict ____modes_323, __FILE_59 * __restrict ____stream_324));// L278:L280 -extern __FILE_59 * ((__freopen_338) (const char * __restrict ____filename_332, const char * __restrict ____modes_333, __FILE_59 * __restrict ____stream_334));// L286:L289 -extern void (__setbuf_347) (__FILE_59 * __restrict ____stream_344, char * __restrict ____buf_346);// L332 -extern int (__setvbuf_354) (__FILE_59 * __restrict ____stream_349, char * __restrict ____buf_351, int ____modes_352, __size_t_1 ____n_353);// L336:L337 -extern int (__fprintf_359) (__FILE_59 * __restrict ____stream_356, const char * __restrict ____format_358, ... );// L356:L357 -extern int (__printf_362) (const char * __restrict ____format_361, ... );// L362 -extern int (__sprintf_365) (char * __restrict ____s_363, const char * __restrict ____format_364, ... );// L364:L365 -extern int (__vfprintf_371) (__FILE_59 * __restrict ____s_366, const char * __restrict ____format_368, ____gnuc_va_list_86 ____arg_369);// L371:L372 -extern int (__vprintf_378) (const char * __restrict ____format_375, ____gnuc_va_list_86 ____arg_376);// L377 -extern int (__vsprintf_384) (char * __restrict ____s_380, const char * __restrict ____format_381, ____gnuc_va_list_86 ____arg_382);// L379:L380 -extern int (__snprintf_389) (char * __restrict ____s_386, __size_t_1 ____maxlen_387, const char * __restrict ____format_388, ... );// L386:L388 -extern int (__vsnprintf_395) (char * __restrict ____s_390, __size_t_1 ____maxlen_391, const char * __restrict ____format_392, ____gnuc_va_list_86 ____arg_393);// L390:L392 -extern int (__fscanf_400) (__FILE_59 * __restrict ____stream_397, const char * __restrict ____format_399, ... );// L425:L426 -extern int (__fscanf_402) (__FILE_59 * __restrict ____stream_397, const char * __restrict ____format_399, ... );// L425:L426 -extern int (__scanf_405) (const char * __restrict ____format_404, ... );// L431 -extern int (__scanf_406) (const char * __restrict ____format_404, ... );// L431 -extern int (__sscanf_409) (const char * __restrict ____s_407, const char * __restrict ____format_408, ... );// L433:L434 - - - - - -extern int (__vfscanf_433) (__FILE_59 * __restrict ____s_428, const char * __restrict ____format_430, ____gnuc_va_list_86 ____arg_431);// L471:L473 -extern int (__vfscanf_437) (__FILE_59 * __restrict ____s_428, const char * __restrict ____format_430, ____gnuc_va_list_86 ____arg_431);// L471:L473 -extern int (__vscanf_444) (const char * __restrict ____format_441, ____gnuc_va_list_86 ____arg_442);// L479:L480 -extern int (__vscanf_446) (const char * __restrict ____format_441, ____gnuc_va_list_86 ____arg_442);// L479:L480 -extern int (__vsscanf_452) (const char * __restrict ____s_448, const char * __restrict ____format_449, ____gnuc_va_list_86 ____arg_450);// L483:L485 - - - - - -extern int (__fgetc_487) (__FILE_59 * (____stream_485));// L531 -extern int (__getc_491) (__FILE_59 * (____stream_489));// L532 -extern int (__getchar_493) (void );// L538 -extern int (__fputc_497) (int ____c_494, __FILE_59 * (____stream_495));// L573 -extern int (__putc_502) (int ____c_499, __FILE_59 * (____stream_500));// L574 -extern int (__putchar_505) (int ____c_504);// L580 -extern char * ((__fgets_510) (char * __restrict ____s_506, int ____n_507, __FILE_59 * __restrict ____stream_508));// L622:L623 -extern char * ((__fgets_512) (char * __restrict ____s_506, int ____n_507, __FILE_59 * __restrict ____stream_508));// L622:L623 -extern int (__fputs_517) (const char * __restrict ____s_514, __FILE_59 * __restrict ____stream_515);// L689 -extern int (__puts_520) (const char * (____s_519));// L695 -extern int (__ungetc_524) (int ____c_521, __FILE_59 * (____stream_522));// L702 -extern int (__fseek_546) (__FILE_59 * (____stream_542), long int ____off_544, int ____whence_545);// L749 -extern long int (__ftell_550) (__FILE_59 * (____stream_548));// L754 -extern long int (__ftell_552) (__FILE_59 * (____stream_548));// L754 -extern void (__rewind_556) (__FILE_59 * (____stream_554));// L759 -extern int (__fgetpos_562) (__FILE_59 * __restrict ____stream_558, __fpos_t_279 * __restrict ____pos_560);// L798 -extern int (__fgetpos_574) (__FILE_59 * __restrict ____stream_570, __fpos_t_281 * __restrict ____pos_572);// L806:L807 -extern int (__fsetpos_582) (__FILE_59 * (____stream_566), const __fpos_t_279 * (____pos_568));// L803 -extern int (__fsetpos_586) (__FILE_59 * (____stream_578), const __fpos_t_281 * (____pos_580));// L808:L809 -extern void (__clearerr_592) (__FILE_59 * (____stream_590));// L826 -extern int (__feof_596) (__FILE_59 * (____stream_594));// L828 -extern int (__feof_598) (__FILE_59 * (____stream_594));// L828 -extern int (__ferror_602) (__FILE_59 * (____stream_600));// L830 -extern int (__ferror_604) (__FILE_59 * (____stream_600));// L830 -extern void (__perror_607) (const char * (____s_606));// L846 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern struct ___IO_FILE_99 * (__stdin_291);// L168 +extern struct ___IO_FILE_124 * (__stdin_292);// L168 +extern struct ___IO_FILE_99 * (__stdout_294);// L169 +extern struct ___IO_FILE_124 * (__stdout_295);// L169 +extern struct ___IO_FILE_99 * (__stderr_297);// L170 +extern struct ___IO_FILE_124 * (__stderr_298);// L170 +extern int (__remove_301) (const char * (____filename_300));// L178 +extern int (__rename_304) (const char * (____old_302), const char * (____new_303));// L180 +extern int (__renameat_309) (int ____oldfd_305, const char * (____old_306), int ____newfd_307, const char * (____new_308));// L185:L186 +extern __FILE_59 * ((__tmpfile_310) (void ));// L195 +extern __FILE_59 * ((__tmpfile_316) (void ));// L198 +extern __FILE_59 * ((__tmpfile_314) (void ));// L195 +extern __FILE_59 * ((__tmpfile_312) (void ));// L198 +extern char * ((__tmpnam_319) (char * (____s_318)));// L209 +extern char * ((__tmpnam_320) (char * (____s_318)));// L209 +extern char * ((__tmpnam_r_322) (char * (____s_321)));// L215 +extern char * ((__tmpnam_r_323) (char * (____s_321)));// L215 +extern char * ((__tempnam_326) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 +extern char * ((__tempnam_327) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 +extern int (__fclose_330) (__FILE_59 * (____stream_328));// L237 +extern int (__fclose_332) (__FILE_59 * (____stream_328));// L237 +extern int (__fflush_336) (__FILE_59 * (____stream_334));// L242 +extern int (__fflush_unlocked_340) (__FILE_59 * (____stream_338));// L252 +extern __FILE_59 * ((__fopen_344) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 +extern __FILE_59 * ((__fopen_346) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 +extern __FILE_59 * ((__fopen_354) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 +extern __FILE_59 * ((__fopen_356) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 +extern __FILE_59 * ((__freopen_362) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 +extern __FILE_59 * ((__freopen_368) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 +extern __FILE_59 * ((__freopen_366) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 +extern __FILE_59 * ((__freopen_364) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 +extern __FILE_59 * ((__fdopen_372) (int ____fd_370, const char * (____modes_371)));// L306 +extern __FILE_59 * ((__fdopen_374) (int ____fd_370, const char * (____modes_371)));// L306 +extern __FILE_59 * ((__fmemopen_379) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 +extern __FILE_59 * ((__fmemopen_381) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 +extern __FILE_59 * ((__open_memstream_385) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 +extern __FILE_59 * ((__open_memstream_387) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 +extern void (__setbuf_392) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 +extern void (__setbuf_394) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 +extern int (__setvbuf_401) (__FILE_59 * __restrict ____stream_396, char * __restrict ____buf_398, int ____modes_399, __size_t_1 ____n_400);// L336:L337 +extern void (__setbuffer_407) (__FILE_59 * __restrict ____stream_403, char * __restrict ____buf_405, __size_t_1 ____size_406);// L343:L344 +extern void (__setlinebuf_411) (__FILE_59 * (____stream_409));// L347 +extern int (__fprintf_416) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 +extern int (__fprintf_418) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 +extern int (__printf_421) (const char * __restrict ____format_420, ... );// L362 +extern int (__sprintf_424) (char * __restrict ____s_422, const char * __restrict ____format_423, ... );// L364:L365 +extern int (__vfprintf_430) (__FILE_59 * __restrict ____s_425, const char * __restrict ____format_427, ____gnuc_va_list_86 ____arg_428);// L371:L372 +extern int (__vprintf_437) (const char * __restrict ____format_434, ____gnuc_va_list_86 ____arg_435);// L377 +extern int (__vsprintf_443) (char * __restrict ____s_439, const char * __restrict ____format_440, ____gnuc_va_list_86 ____arg_441);// L379:L380 +extern int (__snprintf_448) (char * __restrict ____s_445, __size_t_1 ____maxlen_446, const char * __restrict ____format_447, ... );// L386:L388 +extern int (__vsnprintf_454) (char * __restrict ____s_449, __size_t_1 ____maxlen_450, const char * __restrict ____format_451, ____gnuc_va_list_86 ____arg_452);// L390:L392 +extern int (__vdprintf_460) (int ____fd_456, const char * __restrict ____fmt_457, ____gnuc_va_list_86 ____arg_458);// L412:L414 +extern int (__dprintf_464) (int ____fd_462, const char * __restrict ____fmt_463, ... );// L415:L416 +extern int (__fscanf_468) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_470) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_472) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_474) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__scanf_477) (const char * __restrict ____format_476, ... );// L431 +extern int (__scanf_478) (const char * __restrict ____format_476, ... );// L431 +extern int (__sscanf_481) (const char * __restrict ____s_479, const char * __restrict ____format_480, ... );// L433:L434 + + + + + + + +extern int (__vfscanf_509) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 +extern int (__vfscanf_513) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 +extern int (__vscanf_520) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 +extern int (__vscanf_522) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 +extern int (__vsscanf_528) (const char * __restrict ____s_524, const char * __restrict ____format_525, ____gnuc_va_list_86 ____arg_526);// L483:L485 + + + + + +extern int (__fgetc_563) (__FILE_59 * (____stream_561));// L531 +extern int (__getc_567) (__FILE_59 * (____stream_565));// L532 +extern int (__getchar_569) (void );// L538 +extern int (__getc_unlocked_572) (__FILE_59 * (____stream_570));// L550 +extern int (__getchar_unlocked_574) (void );// L551 +extern int (__fgetc_unlocked_577) (__FILE_59 * (____stream_575));// L561 +extern int (__fputc_582) (int ____c_579, __FILE_59 * (____stream_580));// L573 +extern int (__fputc_584) (int ____c_579, __FILE_59 * (____stream_580));// L573 +extern int (__putc_589) (int ____c_586, __FILE_59 * (____stream_587));// L574 +extern int (__putchar_592) (int ____c_591);// L580 +extern int (__fputc_unlocked_596) (int ____c_593, __FILE_59 * (____stream_594));// L594 +extern int (__putc_unlocked_601) (int ____c_598, __FILE_59 * (____stream_599));// L602 +extern int (__putchar_unlocked_604) (int ____c_603);// L603 +extern int (__getw_607) (__FILE_59 * (____stream_605));// L610 +extern int (__putw_612) (int ____w_609, __FILE_59 * (____stream_610));// L613 +extern char * ((__fgets_618) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_620) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_622) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_624) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern ____ssize_t_49 (____getdelim_631) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 +extern ____ssize_t_49 (____getdelim_635) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 +extern ____ssize_t_49 (__getdelim_644) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 +extern ____ssize_t_49 (__getdelim_648) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 +extern ____ssize_t_49 (__getline_656) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 +extern ____ssize_t_49 (__getline_660) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 +extern int (__fputs_667) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 +extern int (__fputs_669) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 +extern int (__puts_672) (const char * (____s_671));// L695 +extern int (__ungetc_676) (int ____c_673, __FILE_59 * (____stream_674));// L702 +extern int (__fseek_714) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 +extern int (__fseek_716) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 +extern long int (__ftell_720) (__FILE_59 * (____stream_718));// L754 +extern long int (__ftell_722) (__FILE_59 * (____stream_718));// L754 +extern void (__rewind_726) (__FILE_59 * (____stream_724));// L759 +extern int (__fseeko_733) (__FILE_59 * (____stream_728), ____off_t_23 ____off_730, int ____whence_732);// L773 +extern int (__fseeko_744) (__FILE_59 * (____stream_739), ____off64_t_24 ____off_741, int ____whence_743);// L781:L783 +extern ____off_t_23 (__ftello_758) (__FILE_59 * (____stream_737));// L778 +extern ____off_t_23 (__ftello_750) (__FILE_59 * (____stream_737));// L778 +extern int (__fgetpos_766) (__FILE_59 * __restrict ____stream_762, __fpos_t_287 * __restrict ____pos_764);// L798 +extern ____off64_t_24 (__ftello_754) (__FILE_59 * (____stream_748));// L784 +extern int (__fgetpos_778) (__FILE_59 * __restrict ____stream_774, __fpos_t_289 * __restrict ____pos_776);// L806:L807 +extern int (__fsetpos_786) (__FILE_59 * (____stream_770), const __fpos_t_287 * (____pos_772));// L803 +extern int (__fsetpos_790) (__FILE_59 * (____stream_782), const __fpos_t_289 * (____pos_784));// L808:L809 +extern void (__clearerr_796) (__FILE_59 * (____stream_794));// L826 +extern int (__feof_800) (__FILE_59 * (____stream_798));// L828 +extern int (__feof_802) (__FILE_59 * (____stream_798));// L828 +extern int (__ferror_806) (__FILE_59 * (____stream_804));// L830 +extern int (__ferror_808) (__FILE_59 * (____stream_804));// L830 +extern void (__clearerr_unlocked_812) (__FILE_59 * (____stream_810));// L835 +extern int (__feof_unlocked_816) (__FILE_59 * (____stream_814));// L836 +extern int (__feof_unlocked_818) (__FILE_59 * (____stream_814));// L836 +extern int (__ferror_unlocked_822) (__FILE_59 * (____stream_820));// L837 +extern int (__ferror_unlocked_824) (__FILE_59 * (____stream_820));// L837 +extern void (__perror_827) (const char * (____s_826));// L846 +extern void (__perror_828) (const char * (____s_826));// L846 +extern int __sys_nerr_829;// L26 + +extern int (__fileno_835) (__FILE_59 * (____stream_831));// L858 +extern int (__fileno_833) (__FILE_59 * (____stream_831));// L858 +extern int (__fileno_unlocked_841) (__FILE_59 * (____stream_837));// L863 +extern int (__fileno_unlocked_839) (__FILE_59 * (____stream_837));// L863 +extern __FILE_59 * ((__popen_845) (const char * (____command_843), const char * (____modes_844)));// L872 +extern __FILE_59 * ((__popen_847) (const char * (____command_843), const char * (____modes_844)));// L872 +extern int (__pclose_851) (__FILE_59 * (____stream_849));// L878 +extern char * ((__ctermid_854) (char * (____s_853)));// L884 +extern void (__flockfile_857) (__FILE_59 * (____stream_855));// L912 +extern int (__ftrylockfile_861) (__FILE_59 * (____stream_859));// L916 +extern int (__ftrylockfile_863) (__FILE_59 * (____stream_859));// L916 +extern void (__funlockfile_867) (__FILE_59 * (____stream_865));// L919 +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____sprintf_chk_617) (char * __restrict ____s_613, int ____flag_614, __size_t_1 ____slen_615, const char * __restrict ____format_616, ... );// L23:L24 -extern int (____vsprintf_chk_624) (char * __restrict ____s_618, int ____flag_619, __size_t_1 ____slen_620, const char * __restrict ____format_621, ____gnuc_va_list_86 ____ap_622);// L25:L27 /* no function due to type errors in the function prototype */ +extern int (____sprintf_chk_899) (char * __restrict ____s_895, int ____flag_896, __size_t_1 ____slen_897, const char * __restrict ____format_898, ... );// L23:L24 +extern int (____vsprintf_chk_906) (char * __restrict ____s_900, int ____flag_901, __size_t_1 ____slen_902, const char * __restrict ____format_903, ____gnuc_va_list_86 ____ap_904);// L25:L27 /* no function due to type errors in the function prototype */ -extern int (____snprintf_chk_638) (char * __restrict ____s_633, __size_t_1 ____n_634, int ____flag_635, __size_t_1 ____slen_636, const char * __restrict ____format_637, ... );// L52:L54 -extern int (____vsnprintf_chk_646) (char * __restrict ____s_639, __size_t_1 ____n_640, int ____flag_641, __size_t_1 ____slen_642, const char * __restrict ____format_643, ____gnuc_va_list_86 ____ap_644);// L55:L57 /* no function due to type errors in the function prototype */ +extern int (____snprintf_chk_920) (char * __restrict ____s_915, __size_t_1 ____n_916, int ____flag_917, __size_t_1 ____slen_918, const char * __restrict ____format_919, ... );// L52:L54 +extern int (____vsnprintf_chk_928) (char * __restrict ____s_921, __size_t_1 ____n_922, int ____flag_923, __size_t_1 ____slen_924, const char * __restrict ____format_925, ____gnuc_va_list_86 ____ap_926);// L55:L57 /* no function due to type errors in the function prototype */ -extern int (____fprintf_chk_661) (__FILE_59 * __restrict ____stream_657, int ____flag_659, const char * __restrict ____format_660, ... );// L85:L86 -extern int (____printf_chk_665) (int ____flag_663, const char * __restrict ____format_664, ... );// L87 -extern int (____vfprintf_chk_672) (__FILE_59 * __restrict ____stream_666, int ____flag_668, const char * __restrict ____format_669, ____gnuc_va_list_86 ____ap_670);// L88:L89 -extern int (____vprintf_chk_680) (int ____flag_676, const char * __restrict ____format_677, ____gnuc_va_list_86 ____ap_678);// L90:L91 /* no function due to type errors in the function prototype */ +extern int (____fprintf_chk_943) (__FILE_59 * __restrict ____stream_939, int ____flag_941, const char * __restrict ____format_942, ... );// L85:L86 +extern int (____printf_chk_947) (int ____flag_945, const char * __restrict ____format_946, ... );// L87 +extern int (____vfprintf_chk_954) (__FILE_59 * __restrict ____stream_948, int ____flag_950, const char * __restrict ____format_951, ____gnuc_va_list_86 ____ap_952);// L88:L89 +extern int (____vprintf_chk_962) (int ____flag_958, const char * __restrict ____format_959, ____gnuc_va_list_86 ____ap_960);// L90:L91 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern char * ((____fgets_chk_704) (char * __restrict ____s_699, __size_t_1 ____size_700, int ____n_701, __FILE_59 * __restrict ____stream_702));// L241:L242 -extern char * ((____fgets_chk_706) (char * __restrict ____s_699, __size_t_1 ____size_700, int ____n_701, __FILE_59 * __restrict ____stream_702));// L241:L242 -extern char * ((____fgets_alias_712) (char * __restrict ____s_708, int ____n_709, __FILE_59 * __restrict ____stream_710));// L243:L245 -extern char * ((____fgets_chk_warn_719) (char * __restrict ____s_714, __size_t_1 ____size_715, int ____n_716, __FILE_59 * __restrict ____stream_717));// L246:L250 +/* no function due to type errors in the function prototype */ +extern int (____dprintf_chk_984) (int ____fd_981, int ____flag_982, const char * __restrict ____fmt_983, ... );// L131:L132 +extern int (____vdprintf_chk_990) (int ____fd_985, int ____flag_986, const char * __restrict ____fmt_987, ____gnuc_va_list_86 ____arg_988);// L133:L135 +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +extern char * ((____fgets_chk_1004) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_chk_1006) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_chk_1008) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_alias_1014) (char * __restrict ____s_1010, int ____n_1011, __FILE_59 * __restrict ____stream_1012));// L243:L245 +extern char * ((____fgets_chk_warn_1021) (char * __restrict ____s_1016, __size_t_1 ____size_1017, int ____n_1018, __FILE_59 * __restrict ____stream_1019));// L246:L250 +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ // typedef moved to top of scope // typedef moved to top of scope -/* no function due to type errors in the function prototype */ // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern __size_t_1 (____ctype_get_mb_cur_max_776) (void );// L139 -extern __size_t_756 (____ctype_get_mb_cur_max_777) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_778) (void );// L139 -extern __size_t_756 (____ctype_get_mb_cur_max_779) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_780) (void );// L139 -extern __size_t_756 (____ctype_get_mb_cur_max_781) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_782) (void );// L139 -extern __size_t_756 (____ctype_get_mb_cur_max_783) (void );// L139 -extern double (__atof_785) (const char * (____nptr_784));// L144:L145 -extern double (__atof_786) (const char * (____nptr_784));// L144:L145 -extern int (__atoi_788) (const char * (____nptr_787));// L147:L148 -extern int (__atoi_789) (const char * (____nptr_787));// L147:L148 -extern long int (__atol_791) (const char * (____nptr_790));// L150:L151 -extern long int (__atol_792) (const char * (____nptr_790));// L150:L151 -extern long long int (__atoll_794) (const char * (____nptr_793));// L157:L158 -extern long long int (__atoll_795) (const char * (____nptr_793));// L157:L158 -extern double (__strtod_798) (const char * __restrict ____nptr_796, char * (* __restrict ____endptr_797));// L164:L166 -extern float (__strtof_801) (const char * __restrict ____nptr_799, char * (* __restrict ____endptr_800));// L172:L173 -extern long double (__strtold_804) (const char * __restrict ____nptr_802, char * (* __restrict ____endptr_803));// L175:L177 -extern long int (__strtol_808) (const char * __restrict ____nptr_805, char * (* __restrict ____endptr_806), int ____base_807);// L183:L185 -extern unsigned long int (__strtoul_812) (const char * __restrict ____nptr_809, char * (* __restrict ____endptr_810), int ____base_811);// L187:L189 -extern long long int (__strtoll_816) (const char * __restrict ____nptr_813, char * (* __restrict ____endptr_814), int ____base_815);// L209:L211 -extern unsigned long long int (__strtoull_820) (const char * __restrict ____nptr_817, char * (* __restrict ____endptr_818), int ____base_819);// L214:L216 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +static __inline unsigned int (____bswap_32_1158) (unsigned int ____bsx_1157) { + +if (__static_condition_default_1159) { + +{ +{ + + + +__static_type_error("invalid type found in return expression"); +} +} + + +} +} +static __inline ____uint64_t_13 (____bswap_64_1162) (____uint64_t_13 ____bsx_1160) { + +if (__static_condition_default_1164) { + +{ +{ + + + +__static_type_error("invalid type found in return expression"); +} +} + + +} +} +static __inline ____uint64_t_1112 (____bswap_64_1163) (____uint64_t_1112 ____bsx_1161) { + +if (__static_condition_default_1165) { + +{ +{ + + + +__static_type_error("invalid type found in return expression"); +} +} + + +} +} +union __wait_1177 ;// L66 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern __size_t_1 (____ctype_get_mb_cur_max_1201) (void );// L139 +extern __size_t_1093 (____ctype_get_mb_cur_max_1202) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_1203) (void );// L139 +extern __size_t_1093 (____ctype_get_mb_cur_max_1204) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_1205) (void );// L139 +extern __size_t_1093 (____ctype_get_mb_cur_max_1206) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_1207) (void );// L139 +extern __size_t_1093 (____ctype_get_mb_cur_max_1208) (void );// L139 +extern double (__atof_1210) (const char * (____nptr_1209));// L144:L145 +extern double (__atof_1211) (const char * (____nptr_1209));// L144:L145 +extern int (__atoi_1213) (const char * (____nptr_1212));// L147:L148 +extern int (__atoi_1214) (const char * (____nptr_1212));// L147:L148 +extern long int (__atol_1216) (const char * (____nptr_1215));// L150:L151 +extern long int (__atol_1217) (const char * (____nptr_1215));// L150:L151 +extern long long int (__atoll_1219) (const char * (____nptr_1218));// L157:L158 +extern long long int (__atoll_1220) (const char * (____nptr_1218));// L157:L158 +extern double (__strtod_1223) (const char * __restrict ____nptr_1221, char * (* __restrict ____endptr_1222));// L164:L166 +extern float (__strtof_1226) (const char * __restrict ____nptr_1224, char * (* __restrict ____endptr_1225));// L172:L173 +extern long double (__strtold_1229) (const char * __restrict ____nptr_1227, char * (* __restrict ____endptr_1228));// L175:L177 +extern long int (__strtol_1233) (const char * __restrict ____nptr_1230, char * (* __restrict ____endptr_1231), int ____base_1232);// L183:L185 +extern unsigned long int (__strtoul_1237) (const char * __restrict ____nptr_1234, char * (* __restrict ____endptr_1235), int ____base_1236);// L187:L189 +extern long long int (__strtoq_1241) (const char * __restrict ____nptr_1238, char * (* __restrict ____endptr_1239), int ____base_1240);// L195:L197 +extern unsigned long long int (__strtouq_1245) (const char * __restrict ____nptr_1242, char * (* __restrict ____endptr_1243), int ____base_1244);// L200:L202 +extern long long int (__strtoll_1249) (const char * __restrict ____nptr_1246, char * (* __restrict ____endptr_1247), int ____base_1248);// L209:L211 +extern long long int (__strtoll_1250) (const char * __restrict ____nptr_1246, char * (* __restrict ____endptr_1247), int ____base_1248);// L209:L211 +extern unsigned long long int (__strtoull_1254) (const char * __restrict ____nptr_1251, char * (* __restrict ____endptr_1252), int ____base_1253);// L214:L216 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ __extension__/* no function due to type errors in the function prototype */ -extern int (__rand_824) (void );// L374 -extern int (__rand_825) (void );// L374 -extern void (__srand_827) (unsigned int ____seed_826);// L376 -extern void * ((__malloc_830) (__size_t_1 ____size_828));// L466 -extern void * ((__malloc_831) (__size_t_756 ____size_829));// L466 -extern void * ((__malloc_832) (__size_t_1 ____size_828));// L466 -extern void * ((__malloc_833) (__size_t_756 ____size_829));// L466 -extern void * ((__calloc_838) (__size_t_1 ____nmemb_834, __size_t_1 ____size_836));// L468:L469 -extern void * ((__calloc_839) (__size_t_756 ____nmemb_835, __size_t_756 ____size_837));// L468:L469 -extern void * ((__calloc_840) (__size_t_1 ____nmemb_834, __size_t_1 ____size_836));// L468:L469 -extern void * ((__calloc_841) (__size_t_756 ____nmemb_835, __size_t_756 ____size_837));// L468:L469 -extern void * ((__realloc_845) (void * (____ptr_842), __size_t_1 ____size_843));// L480:L481 -extern void * ((__realloc_846) (void * (____ptr_842), __size_t_756 ____size_844));// L480:L481 -extern void * ((__realloc_847) (void * (____ptr_842), __size_t_1 ____size_843));// L480:L481 -extern void * ((__realloc_848) (void * (____ptr_842), __size_t_756 ____size_844));// L480:L481 -extern void (__free_850) (void * (____ptr_849));// L483 -extern void * ((__aligned_alloc_855) (__size_t_1 ____alignment_851, __size_t_1 ____size_853));// L509:L510 -extern void * ((__aligned_alloc_856) (__size_t_756 ____alignment_852, __size_t_756 ____size_854));// L509:L510 -extern void * ((__aligned_alloc_857) (__size_t_1 ____alignment_851, __size_t_1 ____size_853));// L509:L510 -extern void * ((__aligned_alloc_858) (__size_t_756 ____alignment_852, __size_t_756 ____size_854));// L509:L510 -extern void (__abort_859) (void );// L515 -extern int (__atexit_861) (void (* (____func_860)) (void ));// L519 -extern int (__at_quick_exit_863) (void (* (____func_862)) (void ));// L527 -extern void (__exit_865) (int ____status_864);// L543 -extern void (__quick_exit_867) (int ____status_866);// L549 -extern void (___Exit_869) (int ____status_868);// L557 -extern char * ((__getenv_871) (const char * (____name_870)));// L564 -extern char * ((__getenv_872) (const char * (____name_870)));// L564 -extern int (__system_874) (const char * (____command_873));// L716 -extern int (__system_875) (const char * (____command_873));// L716 -// typedef moved to top of scope -extern void * ((__bsearch_887) (const void * (____key_877), const void * (____base_878), __size_t_1 ____nmemb_879, __size_t_1 ____size_881, ____compar_fn_t_876 ____compar_883));// L754:L756 -extern void * ((__bsearch_888) (const void * (____key_877), const void * (____base_878), __size_t_756 ____nmemb_880, __size_t_756 ____size_882, ____compar_fn_t_876 ____compar_883));// L754:L756 -extern void * ((__bsearch_891) (const void * (____key_877), const void * (____base_878), __size_t_1 ____nmemb_879, __size_t_1 ____size_881, ____compar_fn_t_876 ____compar_883));// L754:L756 -extern void * ((__bsearch_892) (const void * (____key_877), const void * (____base_878), __size_t_756 ____nmemb_880, __size_t_756 ____size_882, ____compar_fn_t_876 ____compar_883));// L754:L756 +extern char * ((__l64a_1259) (long int ____n_1258));// L305 +extern char * ((__l64a_1260) (long int ____n_1258));// L305 +extern long int (__a64l_1262) (const char * (____s_1261));// L308:L309 +extern long int (__a64l_1263) (const char * (____s_1261));// L308:L309 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +static __inline unsigned int (____bswap_32_1452) (unsigned int ____bsx_1451) { + +if (__static_condition_default_1453) { + +{ +{ + + + +__static_type_error("invalid type found in return expression"); +} +} + + +} +} +static __inline ____uint64_t_13 (____bswap_64_1456) (____uint64_t_13 ____bsx_1454) { + +if (__static_condition_default_1458) { + +{ +{ + + + +__static_type_error("invalid type found in return expression"); +} +} + + +} +} +static __inline ____uint64_t_1275 (____bswap_64_1457) (____uint64_t_1275 ____bsx_1455) { + +if (__static_condition_default_1459) { + +{ +{ + + + +__static_type_error("invalid type found in return expression"); +} +} + + +} +} +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +struct __timespec_1466 ;// L120 + +struct __timeval_1476 ;// L30 + +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern int (__select_1513) (int ____nfds_1502, __fd_set_1499 * __restrict ____readfds_1503, __fd_set_1499 * __restrict ____writefds_1505, __fd_set_1499 * __restrict ____exceptfds_1507, struct __timeval_1476 * __restrict ____timeout_1510);// L106:L109 +extern int (__select_1514) (int ____nfds_1502, __fd_set_1499 * __restrict ____readfds_1503, __fd_set_1499 * __restrict ____writefds_1505, __fd_set_1499 * __restrict ____exceptfds_1507, struct __forward_tag_reference_1509 * __restrict ____timeout_1512);// L106:L109 +extern int (__pselect_1529) (int ____nfds_1517, __fd_set_1499 * __restrict ____readfds_1518, __fd_set_1499 * __restrict ____writefds_1520, __fd_set_1499 * __restrict ____exceptfds_1522, const struct __timespec_1466 * __restrict ____timeout_1525, const ____sigset_t_1464 * __restrict ____sigmask_1528);// L118:L122 +extern int (__pselect_1530) (int ____nfds_1517, __fd_set_1499 * __restrict ____readfds_1518, __fd_set_1499 * __restrict ____writefds_1520, __fd_set_1499 * __restrict ____exceptfds_1522, const struct __forward_tag_reference_1524 * __restrict ____timeout_1527, const ____sigset_t_1464 * __restrict ____sigmask_1528);// L118:L122 +extern long int (____fdelt_chk_1534) (long int ____d_1533);// L24 +extern long int (____fdelt_warn_1536) (long int ____d_1535);// L25:L26 +extern unsigned int (__gnu_dev_major_1538) (unsigned long long int ____dev_1537);// L27:L28 +extern unsigned int (__gnu_dev_major_1539) (unsigned long long int ____dev_1537);// L27:L28 +extern unsigned int (__gnu_dev_minor_1541) (unsigned long long int ____dev_1540);// L30:L31 +extern unsigned long long int (__gnu_dev_makedev_1544) (unsigned int ____major_1542, unsigned int ____minor_1543);// L33:L35 +__extension__/* no function due to type errors in the function prototype */ +__extension__/* no function due to type errors in the function prototype */ +__extension__/* no function due to type errors in the function prototype */ +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +union __pthread_attr_t_1578 ;// L63 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern int (__rand_1609) (void );// L374 +extern void (__srand_1611) (unsigned int ____seed_1610);// L376 +extern int (__rand_r_1613) (unsigned int * (____seed_1612));// L381 +extern double (__drand48_1614) (void );// L389 +extern double (__erand48_1616) (unsigned short int ____xsubi_1615[3]);// L390 +extern long int (__lrand48_1617) (void );// L393 +extern long int (__nrand48_1619) (unsigned short int ____xsubi_1618[3]);// L394:L395 +extern long int (__mrand48_1620) (void );// L398 +extern long int (__jrand48_1622) (unsigned short int ____xsubi_1621[3]);// L399:L400 +extern void (__srand48_1624) (long int ____seedval_1623);// L403 +extern unsigned short int * ((__seed48_1626) (unsigned short int ____seed16v_1625[3]));// L404:L405 +extern void (__lcong48_1628) (unsigned short int ____param_1627[7]);// L406 +extern void * ((__malloc_1631) (__size_t_1 ____size_1629));// L466 +extern void * ((__malloc_1632) (__size_t_1093 ____size_1630));// L466 +extern void * ((__malloc_1633) (__size_t_1 ____size_1629));// L466 +extern void * ((__malloc_1634) (__size_t_1093 ____size_1630));// L466 +extern void * ((__calloc_1639) (__size_t_1 ____nmemb_1635, __size_t_1 ____size_1637));// L468:L469 +extern void * ((__calloc_1640) (__size_t_1093 ____nmemb_1636, __size_t_1093 ____size_1638));// L468:L469 +extern void * ((__calloc_1641) (__size_t_1 ____nmemb_1635, __size_t_1 ____size_1637));// L468:L469 +extern void * ((__calloc_1642) (__size_t_1093 ____nmemb_1636, __size_t_1093 ____size_1638));// L468:L469 +extern void * ((__realloc_1646) (void * (____ptr_1643), __size_t_1 ____size_1644));// L480:L481 +extern void * ((__realloc_1647) (void * (____ptr_1643), __size_t_1093 ____size_1645));// L480:L481 +extern void (__free_1649) (void * (____ptr_1648));// L483 +extern void (__cfree_1651) (void * (____ptr_1650));// L488 +extern void * ((__alloca_1654) (__size_t_1 ____size_1652));// L32 +extern void * ((__alloca_1655) (__size_t_1093 ____size_1653));// L32 +extern void * ((__valloc_1658) (__size_t_1 ____size_1656));// L498 +extern void * ((__valloc_1659) (__size_t_1093 ____size_1657));// L498 +extern void * ((__valloc_1660) (__size_t_1 ____size_1656));// L498 +extern void * ((__valloc_1661) (__size_t_1093 ____size_1657));// L498 +extern int (__posix_memalign_1667) (void * (* (____memptr_1662)), __size_t_1 ____alignment_1663, __size_t_1 ____size_1665);// L503:L504 +extern int (__posix_memalign_1668) (void * (* (____memptr_1662)), __size_t_1093 ____alignment_1664, __size_t_1093 ____size_1666);// L503:L504 +extern int (__posix_memalign_1669) (void * (* (____memptr_1662)), __size_t_1 ____alignment_1663, __size_t_1 ____size_1665);// L503:L504 +extern int (__posix_memalign_1670) (void * (* (____memptr_1662)), __size_t_1093 ____alignment_1664, __size_t_1093 ____size_1666);// L503:L504 +extern void * ((__aligned_alloc_1675) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 +extern void * ((__aligned_alloc_1676) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 +extern void * ((__aligned_alloc_1677) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 +extern void * ((__aligned_alloc_1678) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 +extern void * ((__aligned_alloc_1679) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 +extern void * ((__aligned_alloc_1680) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 +extern void * ((__aligned_alloc_1681) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 +extern void * ((__aligned_alloc_1682) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 +extern void (__abort_1683) (void );// L515 +extern int (__atexit_1685) (void (* (____func_1684)) (void ));// L519 +extern int (__at_quick_exit_1687) (void (* (____func_1686)) (void ));// L527 +extern int (__on_exit_1692) (void (* (____func_1690)) (int ____status_1688, void * (____arg_1689)), void * (____arg_1691));// L535:L536 +extern void (__exit_1694) (int ____status_1693);// L543 +extern void (__exit_1695) (int ____status_1693);// L543 +extern void (__quick_exit_1697) (int ____status_1696);// L549 +extern void (___Exit_1699) (int ____status_1698);// L557 +extern char * ((__getenv_1701) (const char * (____name_1700)));// L564 +extern char * ((__getenv_1702) (const char * (____name_1700)));// L564 +extern int (__putenv_1704) (char * (____string_1703));// L578 +extern int (__setenv_1708) (const char * (____name_1705), const char * (____value_1706), int ____replace_1707);// L584:L585 +extern int (__unsetenv_1710) (const char * (____name_1709));// L588 +extern int (__clearenv_1711) (void );// L595 +extern char * ((__mktemp_1713) (char * (____template_1712)));// L606 +extern int (__mkstemp_1716) (char * (____template_1714));// L619 +extern int (__mkstemp_1718) (char * (____template_1714));// L619 +extern int (__mkstemp_1717) (char * (____template_1715));// L622:L623 +extern int (__mkstemp_1719) (char * (____template_1715));// L622:L623 +extern int (__mkstemps_1724) (char * (____template_1720), int ____suffixlen_1721);// L641 +extern int (__mkstemps_1725) (char * (____template_1722), int ____suffixlen_1723);// L644:L645 +extern int (__mkstemps_1726) (char * (____template_1720), int ____suffixlen_1721);// L641 +extern int (__mkstemps_1727) (char * (____template_1722), int ____suffixlen_1723);// L644:L645 +extern char * ((__mkdtemp_1729) (char * (____template_1728)));// L662 +extern char * ((__mkdtemp_1730) (char * (____template_1728)));// L662 +extern int (__system_1732) (const char * (____command_1731));// L716 +extern int (__system_1733) (const char * (____command_1731));// L716 +extern int (__system_1734) (const char * (____command_1731));// L716 +extern int (__system_1735) (const char * (____command_1731));// L716 +extern char * ((__realpath_1738) (const char * __restrict ____name_1736, char * __restrict ____resolved_1737));// L733:L734 +extern char * ((__realpath_1739) (const char * __restrict ____name_1736, char * __restrict ____resolved_1737));// L733:L734 +// typedef moved to top of scope +extern void * ((__bsearch_1751) (const void * (____key_1741), const void * (____base_1742), __size_t_1 ____nmemb_1743, __size_t_1 ____size_1745, ____compar_fn_t_1740 ____compar_1747));// L754:L756 +extern void * ((__bsearch_1752) (const void * (____key_1741), const void * (____base_1742), __size_t_1093 ____nmemb_1744, __size_t_1093 ____size_1746, ____compar_fn_t_1740 ____compar_1747));// L754:L756 +extern void * ((__bsearch_1755) (const void * (____key_1741), const void * (____base_1742), __size_t_1 ____nmemb_1743, __size_t_1 ____size_1745, ____compar_fn_t_1740 ____compar_1747));// L754:L756 +extern void * ((__bsearch_1756) (const void * (____key_1741), const void * (____base_1742), __size_t_1093 ____nmemb_1744, __size_t_1093 ____size_1746, ____compar_fn_t_1740 ____compar_1747));// L754:L756 +/* no function due to type errors in the function prototype */ +extern void (__qsort_1784) (void * (____base_1777), __size_t_1 ____nmemb_1778, __size_t_1 ____size_1780, ____compar_fn_t_1740 ____compar_1782);// L764:L765 +extern void (__qsort_1786) (void * (____base_1777), __size_t_1093 ____nmemb_1779, __size_t_1093 ____size_1781, ____compar_fn_t_1740 ____compar_1782);// L764:L765 +extern void (__qsort_1788) (void * (____base_1777), __size_t_1 ____nmemb_1778, __size_t_1 ____size_1780, ____compar_fn_t_1740 ____compar_1782);// L764:L765 +extern void (__qsort_1790) (void * (____base_1777), __size_t_1093 ____nmemb_1779, __size_t_1093 ____size_1781, ____compar_fn_t_1740 ____compar_1782);// L764:L765 +extern int (__abs_1793) (int ____x_1792);// L774 +extern int (__abs_1794) (int ____x_1792);// L774 +extern long int (__labs_1796) (long int ____x_1795);// L775 +extern long int (__labs_1797) (long int ____x_1795);// L775 +extern long long int (__llabs_1799) (long long int ____x_1798);// L779:L780 +extern long long int (__llabs_1800) (long long int ____x_1798);// L779:L780 +extern __div_t_1190 (__div_1803) (int ____numer_1801, int ____denom_1802);// L788:L789 +extern __div_t_1190 (__div_1804) (int ____numer_1801, int ____denom_1802);// L788:L789 +extern __ldiv_t_1195 (__ldiv_1807) (long int ____numer_1805, long int ____denom_1806);// L790:L791 +extern __ldiv_t_1195 (__ldiv_1809) (long int ____numer_1805, long int ____denom_1806);// L790:L791 +extern __lldiv_t_1200 (__lldiv_1813) (long long int ____numer_1811, long long int ____denom_1812);// L796:L798 +extern __lldiv_t_1200 (__lldiv_1815) (long long int ____numer_1811, long long int ____denom_1812);// L796:L798 +extern char * ((__ecvt_1821) (double ____value_1817, int ____ndigit_1818, int * __restrict ____decpt_1819, int * __restrict ____sign_1820));// L811:L812 +extern char * ((__ecvt_1822) (double ____value_1817, int ____ndigit_1818, int * __restrict ____decpt_1819, int * __restrict ____sign_1820));// L811:L812 +extern char * ((__fcvt_1827) (double ____value_1823, int ____ndigit_1824, int * __restrict ____decpt_1825, int * __restrict ____sign_1826));// L817:L818 +extern char * ((__fcvt_1828) (double ____value_1823, int ____ndigit_1824, int * __restrict ____decpt_1825, int * __restrict ____sign_1826));// L817:L818 +extern char * ((__gcvt_1832) (double ____value_1829, int ____ndigit_1830, char * (____buf_1831)));// L823:L824 +extern char * ((__gcvt_1833) (double ____value_1829, int ____ndigit_1830, char * (____buf_1831)));// L823:L824 +extern char * ((__qecvt_1838) (long double ____value_1834, int ____ndigit_1835, int * __restrict ____decpt_1836, int * __restrict ____sign_1837));// L829:L831 +extern char * ((__qecvt_1839) (long double ____value_1834, int ____ndigit_1835, int * __restrict ____decpt_1836, int * __restrict ____sign_1837));// L829:L831 +extern char * ((__qfcvt_1844) (long double ____value_1840, int ____ndigit_1841, int * __restrict ____decpt_1842, int * __restrict ____sign_1843));// L832:L834 +extern char * ((__qfcvt_1845) (long double ____value_1840, int ____ndigit_1841, int * __restrict ____decpt_1842, int * __restrict ____sign_1843));// L832:L834 +extern char * ((__qgcvt_1849) (long double ____value_1846, int ____ndigit_1847, char * (____buf_1848)));// L835:L836 +extern char * ((__qgcvt_1850) (long double ____value_1846, int ____ndigit_1847, char * (____buf_1848)));// L835:L836 +extern int (__ecvt_r_1858) (double ____value_1851, int ____ndigit_1852, int * __restrict ____decpt_1853, int * __restrict ____sign_1854, char * __restrict ____buf_1855, __size_t_1 ____len_1856);// L841:L843 +extern int (__ecvt_r_1859) (double ____value_1851, int ____ndigit_1852, int * __restrict ____decpt_1853, int * __restrict ____sign_1854, char * __restrict ____buf_1855, __size_t_1093 ____len_1857);// L841:L843 +extern int (__fcvt_r_1867) (double ____value_1860, int ____ndigit_1861, int * __restrict ____decpt_1862, int * __restrict ____sign_1863, char * __restrict ____buf_1864, __size_t_1 ____len_1865);// L844:L846 +extern int (__fcvt_r_1868) (double ____value_1860, int ____ndigit_1861, int * __restrict ____decpt_1862, int * __restrict ____sign_1863, char * __restrict ____buf_1864, __size_t_1093 ____len_1866);// L844:L846 +extern int (__qecvt_r_1876) (long double ____value_1869, int ____ndigit_1870, int * __restrict ____decpt_1871, int * __restrict ____sign_1872, char * __restrict ____buf_1873, __size_t_1 ____len_1874);// L848:L851 +extern int (__qecvt_r_1877) (long double ____value_1869, int ____ndigit_1870, int * __restrict ____decpt_1871, int * __restrict ____sign_1872, char * __restrict ____buf_1873, __size_t_1093 ____len_1875);// L848:L851 +extern int (__qfcvt_r_1885) (long double ____value_1878, int ____ndigit_1879, int * __restrict ____decpt_1880, int * __restrict ____sign_1881, char * __restrict ____buf_1882, __size_t_1 ____len_1883);// L852:L855 +extern int (__qfcvt_r_1886) (long double ____value_1878, int ____ndigit_1879, int * __restrict ____decpt_1880, int * __restrict ____sign_1881, char * __restrict ____buf_1882, __size_t_1093 ____len_1884);// L852:L855 +extern int (__mblen_1890) (const char * (____s_1887), __size_t_1 ____n_1888);// L862 +extern int (__mblen_1891) (const char * (____s_1887), __size_t_1093 ____n_1889);// L862 +extern int (__mblen_1892) (const char * (____s_1887), __size_t_1 ____n_1888);// L862 +extern int (__mblen_1893) (const char * (____s_1887), __size_t_1093 ____n_1889);// L862 +extern int (__mbtowc_1898) (__wchar_t_1094 * __restrict ____pwc_1894, const char * __restrict ____s_1895, __size_t_1 ____n_1896);// L865:L866 +extern int (__mbtowc_1899) (__wchar_t_1094 * __restrict ____pwc_1894, const char * __restrict ____s_1895, __size_t_1093 ____n_1897);// L865:L866 +extern int (__wctomb_1902) (char * (____s_1900), __wchar_t_1094 ____wchar_1901);// L869 +extern __size_t_1 (__mbstowcs_1907) (__wchar_t_1094 * __restrict ____pwcs_1903, const char * __restrict ____s_1904, __size_t_1 ____n_1905);// L873:L874 +extern __size_t_1093 (__mbstowcs_1908) (__wchar_t_1094 * __restrict ____pwcs_1903, const char * __restrict ____s_1904, __size_t_1093 ____n_1906);// L873:L874 +extern __size_t_1 (__wcstombs_1913) (char * __restrict ____s_1909, const __wchar_t_1094 * __restrict ____pwcs_1910, __size_t_1 ____n_1911);// L876:L878 +extern __size_t_1093 (__wcstombs_1914) (char * __restrict ____s_1909, const __wchar_t_1094 * __restrict ____pwcs_1910, __size_t_1093 ____n_1912);// L876:L878 +extern int (__rpmatch_1917) (const char * (____response_1915));// L887 +extern int (__rpmatch_1916) (const char * (____response_1915));// L887 +extern int (__getsubopt_1922) (char * (* __restrict ____optionp_1918), char * const * __restrict ____tokens_1919, char * (* __restrict ____valuep_1920));// L898:L901 +extern int (__getsubopt_1921) (char * (* __restrict ____optionp_1918), char * const * __restrict ____tokens_1919, char * (* __restrict ____valuep_1920));// L898:L901 +extern int (__getloadavg_1925) (double ____loadavg_1923[], int ____nelem_1924);// L950:L951 /* no function due to type errors in the function prototype */ -extern void (__qsort_920) (void * (____base_913), __size_t_1 ____nmemb_914, __size_t_1 ____size_916, ____compar_fn_t_876 ____compar_918);// L764:L765 -extern void (__qsort_922) (void * (____base_913), __size_t_756 ____nmemb_915, __size_t_756 ____size_917, ____compar_fn_t_876 ____compar_918);// L764:L765 -extern void (__qsort_924) (void * (____base_913), __size_t_1 ____nmemb_914, __size_t_1 ____size_916, ____compar_fn_t_876 ____compar_918);// L764:L765 -extern void (__qsort_926) (void * (____base_913), __size_t_756 ____nmemb_915, __size_t_756 ____size_917, ____compar_fn_t_876 ____compar_918);// L764:L765 -extern int (__abs_929) (int ____x_928);// L774 -extern int (__abs_930) (int ____x_928);// L774 -extern long int (__labs_932) (long int ____x_931);// L775 -extern long int (__labs_933) (long int ____x_931);// L775 -extern long long int (__llabs_935) (long long int ____x_934);// L779:L780 -extern long long int (__llabs_936) (long long int ____x_934);// L779:L780 -extern __div_t_765 (__div_939) (int ____numer_937, int ____denom_938);// L788:L789 -extern __div_t_765 (__div_940) (int ____numer_937, int ____denom_938);// L788:L789 -extern __ldiv_t_770 (__ldiv_943) (long int ____numer_941, long int ____denom_942);// L790:L791 -extern __ldiv_t_770 (__ldiv_945) (long int ____numer_941, long int ____denom_942);// L790:L791 -extern __lldiv_t_775 (__lldiv_949) (long long int ____numer_947, long long int ____denom_948);// L796:L798 -extern __lldiv_t_775 (__lldiv_951) (long long int ____numer_947, long long int ____denom_948);// L796:L798 -extern int (__mblen_956) (const char * (____s_953), __size_t_1 ____n_954);// L862 -extern int (__mblen_957) (const char * (____s_953), __size_t_756 ____n_955);// L862 -extern int (__mbtowc_963) (__wchar_t_759 * __restrict ____pwc_958, const char * __restrict ____s_960, __size_t_1 ____n_961);// L865:L866 -extern int (__mbtowc_964) (__wchar_t_760 * __restrict ____pwc_959, const char * __restrict ____s_960, __size_t_1 ____n_961);// L865:L866 -extern int (__mbtowc_965) (__wchar_t_760 * __restrict ____pwc_959, const char * __restrict ____s_960, __size_t_756 ____n_962);// L865:L866 -extern int (__wctomb_969) (char * (____s_966), __wchar_t_759 ____wchar_967);// L869 -extern int (__wctomb_970) (char * (____s_966), __wchar_t_760 ____wchar_968);// L869 -extern __size_t_1 (__mbstowcs_976) (__wchar_t_759 * __restrict ____pwcs_971, const char * __restrict ____s_973, __size_t_1 ____n_974);// L873:L874 -extern __size_t_1 (__mbstowcs_977) (__wchar_t_760 * __restrict ____pwcs_972, const char * __restrict ____s_973, __size_t_1 ____n_974);// L873:L874 -extern __size_t_756 (__mbstowcs_978) (__wchar_t_760 * __restrict ____pwcs_972, const char * __restrict ____s_973, __size_t_756 ____n_975);// L873:L874 -extern __size_t_1 (__wcstombs_984) (char * __restrict ____s_979, const __wchar_t_759 * __restrict ____pwcs_980, __size_t_1 ____n_982);// L876:L878 -extern __size_t_1 (__wcstombs_985) (char * __restrict ____s_979, const __wchar_t_760 * __restrict ____pwcs_981, __size_t_1 ____n_982);// L876:L878 -extern __size_t_756 (__wcstombs_986) (char * __restrict ____s_979, const __wchar_t_760 * __restrict ____pwcs_981, __size_t_756 ____n_983);// L876:L878 +extern char * ((____realpath_chk_1931) (const char * __restrict ____name_1927, char * __restrict ____resolved_1928, __size_t_1 ____resolvedlen_1929));// L23:L25 +extern char * ((____realpath_chk_1932) (const char * __restrict ____name_1927, char * __restrict ____resolved_1928, __size_t_1093 ____resolvedlen_1930));// L23:L25 +extern char * ((____realpath_alias_1935) (const char * __restrict ____name_1933, char * __restrict ____resolved_1934));// L26:L28 +extern char * ((____realpath_chk_warn_1940) (const char * __restrict ____name_1936, char * __restrict ____resolved_1937, __size_t_1 ____resolvedlen_1938));// L29:L34 +extern char * ((____realpath_chk_warn_1941) (const char * __restrict ____name_1936, char * __restrict ____resolved_1937, __size_t_1093 ____resolvedlen_1939));// L29:L34 /* no function due to type errors in the function prototype */ -extern char * ((____realpath_chk_992) (const char * __restrict ____name_988, char * __restrict ____resolved_989, __size_t_1 ____resolvedlen_990));// L23:L25 -extern char * ((____realpath_chk_993) (const char * __restrict ____name_988, char * __restrict ____resolved_989, __size_t_756 ____resolvedlen_991));// L23:L25 -extern char * ((____realpath_alias_996) (const char * __restrict ____name_994, char * __restrict ____resolved_995));// L26:L28 -extern char * ((____realpath_chk_warn_1001) (const char * __restrict ____name_997, char * __restrict ____resolved_998, __size_t_1 ____resolvedlen_999));// L29:L34 -extern char * ((____realpath_chk_warn_1002) (const char * __restrict ____name_997, char * __restrict ____resolved_998, __size_t_756 ____resolvedlen_1000));// L29:L34 +extern int (____ptsname_r_chk_1951) (int ____fd_1945, char * (____buf_1946), __size_t_1 ____buflen_1947, __size_t_1 ____nreal_1949);// L52:L53 +extern int (____ptsname_r_chk_1952) (int ____fd_1945, char * (____buf_1946), __size_t_1093 ____buflen_1948, __size_t_1093 ____nreal_1950);// L52:L53 +extern int (____ptsname_r_alias_1957) (int ____fd_1953, char * (____buf_1954), __size_t_1 ____buflen_1955);// L54:L56 +extern int (____ptsname_r_alias_1958) (int ____fd_1953, char * (____buf_1954), __size_t_1093 ____buflen_1956);// L54:L56 +extern int (____ptsname_r_chk_warn_1965) (int ____fd_1959, char * (____buf_1960), __size_t_1 ____buflen_1961, __size_t_1 ____nreal_1963);// L57:L61 +extern int (____ptsname_r_chk_warn_1966) (int ____fd_1959, char * (____buf_1960), __size_t_1093 ____buflen_1962, __size_t_1093 ____nreal_1964);// L57:L61 /* no function due to type errors in the function prototype */ -extern int (____ptsname_r_chk_1012) (int ____fd_1006, char * (____buf_1007), __size_t_1 ____buflen_1008, __size_t_1 ____nreal_1010);// L52:L53 -extern int (____ptsname_r_chk_1013) (int ____fd_1006, char * (____buf_1007), __size_t_756 ____buflen_1009, __size_t_756 ____nreal_1011);// L52:L53 -extern int (____ptsname_r_alias_1018) (int ____fd_1014, char * (____buf_1015), __size_t_1 ____buflen_1016);// L54:L56 -extern int (____ptsname_r_alias_1019) (int ____fd_1014, char * (____buf_1015), __size_t_756 ____buflen_1017);// L54:L56 -extern int (____ptsname_r_chk_warn_1026) (int ____fd_1020, char * (____buf_1021), __size_t_1 ____buflen_1022, __size_t_1 ____nreal_1024);// L57:L61 -extern int (____ptsname_r_chk_warn_1027) (int ____fd_1020, char * (____buf_1021), __size_t_756 ____buflen_1023, __size_t_756 ____nreal_1025);// L57:L61 +extern int (____wctomb_chk_1977) (char * (____s_1973), __wchar_t_1094 ____wchar_1974, __size_t_1 ____buflen_1975);// L77:L78 +extern int (____wctomb_chk_1978) (char * (____s_1973), __wchar_t_1094 ____wchar_1974, __size_t_1093 ____buflen_1976);// L77:L78 +extern int (____wctomb_alias_1981) (char * (____s_1979), __wchar_t_1094 ____wchar_1980);// L79:L80 /* no function due to type errors in the function prototype */ -extern int (____wctomb_chk_1038) (char * (____s_1034), __wchar_t_760 ____wchar_1035, __size_t_1 ____buflen_1036);// L77:L78 -extern int (____wctomb_chk_1039) (char * (____s_1034), __wchar_t_760 ____wchar_1035, __size_t_756 ____buflen_1037);// L77:L78 -extern int (____wctomb_alias_1042) (char * (____s_1040), __wchar_t_760 ____wchar_1041);// L79:L80 +extern __size_t_1 (____mbstowcs_chk_1990) (__wchar_t_1094 * __restrict ____dst_1984, const char * __restrict ____src_1985, __size_t_1 ____len_1986, __size_t_1 ____dstlen_1988);// L98:L100 +extern __size_t_1093 (____mbstowcs_chk_1991) (__wchar_t_1094 * __restrict ____dst_1984, const char * __restrict ____src_1985, __size_t_1093 ____len_1987, __size_t_1093 ____dstlen_1989);// L98:L100 +extern __size_t_1 (____mbstowcs_alias_1996) (__wchar_t_1094 * __restrict ____dst_1992, const char * __restrict ____src_1993, __size_t_1 ____len_1994);// L101:L104 +extern __size_t_1093 (____mbstowcs_alias_1997) (__wchar_t_1094 * __restrict ____dst_1992, const char * __restrict ____src_1993, __size_t_1093 ____len_1995);// L101:L104 +extern __size_t_1 (____mbstowcs_chk_warn_2004) (__wchar_t_1094 * __restrict ____dst_1998, const char * __restrict ____src_1999, __size_t_1 ____len_2000, __size_t_1 ____dstlen_2002);// L105:L110 +extern __size_t_1093 (____mbstowcs_chk_warn_2005) (__wchar_t_1094 * __restrict ____dst_1998, const char * __restrict ____src_1999, __size_t_1093 ____len_2001, __size_t_1093 ____dstlen_2003);// L105:L110 /* no function due to type errors in the function prototype */ -extern __size_t_1 (____mbstowcs_chk_1051) (__wchar_t_760 * __restrict ____dst_1045, const char * __restrict ____src_1046, __size_t_1 ____len_1047, __size_t_1 ____dstlen_1049);// L98:L100 -extern __size_t_756 (____mbstowcs_chk_1052) (__wchar_t_760 * __restrict ____dst_1045, const char * __restrict ____src_1046, __size_t_756 ____len_1048, __size_t_756 ____dstlen_1050);// L98:L100 -extern __size_t_1 (____mbstowcs_alias_1057) (__wchar_t_760 * __restrict ____dst_1053, const char * __restrict ____src_1054, __size_t_1 ____len_1055);// L101:L104 -extern __size_t_756 (____mbstowcs_alias_1058) (__wchar_t_760 * __restrict ____dst_1053, const char * __restrict ____src_1054, __size_t_756 ____len_1056);// L101:L104 -extern __size_t_1 (____mbstowcs_chk_warn_1065) (__wchar_t_760 * __restrict ____dst_1059, const char * __restrict ____src_1060, __size_t_1 ____len_1061, __size_t_1 ____dstlen_1063);// L105:L110 -extern __size_t_756 (____mbstowcs_chk_warn_1066) (__wchar_t_760 * __restrict ____dst_1059, const char * __restrict ____src_1060, __size_t_756 ____len_1062, __size_t_756 ____dstlen_1064);// L105:L110 +extern __size_t_1 (____wcstombs_chk_2016) (char * __restrict ____dst_2010, const __wchar_t_1094 * __restrict ____src_2011, __size_t_1 ____len_2012, __size_t_1 ____dstlen_2014);// L130:L132 +extern __size_t_1093 (____wcstombs_chk_2017) (char * __restrict ____dst_2010, const __wchar_t_1094 * __restrict ____src_2011, __size_t_1093 ____len_2013, __size_t_1093 ____dstlen_2015);// L130:L132 +extern __size_t_1 (____wcstombs_alias_2022) (char * __restrict ____dst_2018, const __wchar_t_1094 * __restrict ____src_2019, __size_t_1 ____len_2020);// L133:L136 +extern __size_t_1093 (____wcstombs_alias_2023) (char * __restrict ____dst_2018, const __wchar_t_1094 * __restrict ____src_2019, __size_t_1093 ____len_2021);// L133:L136 +extern __size_t_1 (____wcstombs_chk_warn_2030) (char * __restrict ____dst_2024, const __wchar_t_1094 * __restrict ____src_2025, __size_t_1 ____len_2026, __size_t_1 ____dstlen_2028);// L137:L141 +extern __size_t_1093 (____wcstombs_chk_warn_2031) (char * __restrict ____dst_2024, const __wchar_t_1094 * __restrict ____src_2025, __size_t_1093 ____len_2027, __size_t_1093 ____dstlen_2029);// L137:L141 +// typedef moved to top of scope +// typedef moved to top of scope /* no function due to type errors in the function prototype */ -extern __size_t_1 (____wcstombs_chk_1077) (char * __restrict ____dst_1071, const __wchar_t_760 * __restrict ____src_1072, __size_t_1 ____len_1073, __size_t_1 ____dstlen_1075);// L130:L132 -extern __size_t_756 (____wcstombs_chk_1078) (char * __restrict ____dst_1071, const __wchar_t_760 * __restrict ____src_1072, __size_t_756 ____len_1074, __size_t_756 ____dstlen_1076);// L130:L132 -extern __size_t_1 (____wcstombs_alias_1083) (char * __restrict ____dst_1079, const __wchar_t_760 * __restrict ____src_1080, __size_t_1 ____len_1081);// L133:L136 -extern __size_t_756 (____wcstombs_alias_1084) (char * __restrict ____dst_1079, const __wchar_t_760 * __restrict ____src_1080, __size_t_756 ____len_1082);// L133:L136 -extern __size_t_1 (____wcstombs_chk_warn_1091) (char * __restrict ____dst_1085, const __wchar_t_760 * __restrict ____src_1086, __size_t_1 ____len_1087, __size_t_1 ____dstlen_1089);// L137:L141 -extern __size_t_756 (____wcstombs_chk_warn_1092) (char * __restrict ____dst_1085, const __wchar_t_760 * __restrict ____src_1086, __size_t_756 ____len_1088, __size_t_756 ____dstlen_1090);// L137:L141 +extern void * ((__memmove_2053) (void * (____dest_2048), const void * (____src_2049), __size_t_1 ____n_2050));// L46:L47 +extern void * ((__memmove_2054) (void * (____dest_2048), const void * (____src_2049), __size_t_1093 ____n_2051));// L46:L47 +extern void * ((__memmove_2055) (void * (____dest_2048), const void * (____src_2049), __size_t_2037 ____n_2052));// L46:L47 +extern void * ((__memset_2070) (void * (____s_2065), int ____c_2066, __size_t_1 ____n_2067));// L62 +extern void * ((__memset_2071) (void * (____s_2065), int ____c_2066, __size_t_1093 ____n_2068));// L62 +extern void * ((__memset_2072) (void * (____s_2065), int ____c_2066, __size_t_2037 ____n_2069));// L62 +extern void * ((__memset_2073) (void * (____s_2065), int ____c_2066, __size_t_1 ____n_2067));// L62 +extern void * ((__memset_2074) (void * (____s_2065), int ____c_2066, __size_t_1093 ____n_2068));// L62 +extern void * ((__memset_2075) (void * (____s_2065), int ____c_2066, __size_t_2037 ____n_2069));// L62 +extern int (__memcmp_2081) (const void * (____s1_2076), const void * (____s2_2077), __size_t_1 ____n_2078);// L65:L66 +extern int (__memcmp_2082) (const void * (____s1_2076), const void * (____s2_2077), __size_t_1093 ____n_2079);// L65:L66 +extern int (__memcmp_2083) (const void * (____s1_2076), const void * (____s2_2077), __size_t_2037 ____n_2080);// L65:L66 +extern void * ((__memchr_2089) (const void * (____s_2084), int ____c_2085, __size_t_1 ____n_2086));// L92:L93 +extern void * ((__memchr_2090) (const void * (____s_2084), int ____c_2085, __size_t_1093 ____n_2087));// L92:L93 +extern void * ((__memchr_2091) (const void * (____s_2084), int ____c_2085, __size_t_2037 ____n_2088));// L92:L93 +extern char * ((__strcpy_2094) (char * __restrict ____dest_2092, const char * __restrict ____src_2093));// L125:L126 +extern char * ((__strncpy_2100) (char * __restrict ____dest_2095, const char * __restrict ____src_2096, __size_t_1 ____n_2097));// L128:L130 +extern char * ((__strncpy_2101) (char * __restrict ____dest_2095, const char * __restrict ____src_2096, __size_t_1093 ____n_2098));// L128:L130 +extern char * ((__strncpy_2102) (char * __restrict ____dest_2095, const char * __restrict ____src_2096, __size_t_2037 ____n_2099));// L128:L130 +extern char * ((__strcat_2105) (char * __restrict ____dest_2103, const char * __restrict ____src_2104));// L133:L134 +extern char * ((__strncat_2111) (char * __restrict ____dest_2106, const char * __restrict ____src_2107, __size_t_1 ____n_2108));// L136:L137 +extern char * ((__strncat_2112) (char * __restrict ____dest_2106, const char * __restrict ____src_2107, __size_t_1093 ____n_2109));// L136:L137 +extern char * ((__strncat_2113) (char * __restrict ____dest_2106, const char * __restrict ____src_2107, __size_t_2037 ____n_2110));// L136:L137 +extern int (__strcmp_2116) (const char * (____s1_2114), const char * (____s2_2115));// L140:L141 +extern int (__strncmp_2122) (const char * (____s1_2117), const char * (____s2_2118), __size_t_1 ____n_2119);// L143:L144 +extern int (__strncmp_2123) (const char * (____s1_2117), const char * (____s2_2118), __size_t_1093 ____n_2120);// L143:L144 +extern int (__strncmp_2124) (const char * (____s1_2117), const char * (____s2_2118), __size_t_2037 ____n_2121);// L143:L144 +extern int (__strcoll_2127) (const char * (____s1_2125), const char * (____s2_2126));// L147:L148 +extern __size_t_1 (__strxfrm_2133) (char * __restrict ____dest_2128, const char * __restrict ____src_2129, __size_t_1 ____n_2130);// L150:L152 +extern __size_t_1093 (__strxfrm_2134) (char * __restrict ____dest_2128, const char * __restrict ____src_2129, __size_t_1093 ____n_2131);// L150:L152 +extern __size_t_2037 (__strxfrm_2135) (char * __restrict ____dest_2128, const char * __restrict ____src_2129, __size_t_2037 ____n_2132);// L150:L152 +// typedef moved to top of scope +// typedef moved to top of scope +extern int (__strcoll_l_2148) (const char * (____s1_2145), const char * (____s2_2146), ____locale_t_2143 ____l_2147);// L162:L163 +extern __size_t_1 (__strxfrm_l_2155) (char * (____dest_2149), const char * (____src_2150), __size_t_1 ____n_2151, ____locale_t_2143 ____l_2154);// L165:L166 +extern __size_t_1093 (__strxfrm_l_2156) (char * (____dest_2149), const char * (____src_2150), __size_t_1093 ____n_2152, ____locale_t_2143 ____l_2154);// L165:L166 +extern __size_t_2037 (__strxfrm_l_2157) (char * (____dest_2149), const char * (____src_2150), __size_t_2037 ____n_2153, ____locale_t_2143 ____l_2154);// L165:L166 +extern char * ((__strdup_2159) (const char * (____s_2158)));// L171:L172 +extern char * ((__strndup_2164) (const char * (____string_2160), __size_t_1 ____n_2161));// L179:L180 +extern char * ((__strndup_2165) (const char * (____string_2160), __size_t_1093 ____n_2162));// L179:L180 +extern char * ((__strndup_2166) (const char * (____string_2160), __size_t_2037 ____n_2163));// L179:L180 +extern char * ((__strchr_2169) (const char * (____s_2167), int ____c_2168));// L231:L232 +extern char * ((__strrchr_2172) (const char * (____s_2170), int ____c_2171));// L258:L259 +extern __size_t_1 (__strcspn_2175) (const char * (____s_2173), const char * (____reject_2174));// L280:L281 +extern __size_t_1093 (__strcspn_2176) (const char * (____s_2173), const char * (____reject_2174));// L280:L281 +extern __size_t_2037 (__strcspn_2177) (const char * (____s_2173), const char * (____reject_2174));// L280:L281 +extern __size_t_1 (__strspn_2180) (const char * (____s_2178), const char * (____accept_2179));// L284:L285 +extern __size_t_1093 (__strspn_2181) (const char * (____s_2178), const char * (____accept_2179));// L284:L285 +extern __size_t_2037 (__strspn_2182) (const char * (____s_2178), const char * (____accept_2179));// L284:L285 +extern char * ((__strpbrk_2185) (const char * (____s_2183), const char * (____accept_2184)));// L310:L311 +extern char * ((__strstr_2188) (const char * (____haystack_2186), const char * (____needle_2187)));// L337:L338 +extern char * ((__strtok_2191) (char * __restrict ____s_2189, const char * __restrict ____delim_2190));// L343:L344 +extern char * ((____strtok_r_2195) (char * __restrict ____s_2192, const char * __restrict ____delim_2193, char * (* __restrict ____save_ptr_2194)));// L349:L352 +extern char * ((__strtok_r_2199) (char * __restrict ____s_2196, const char * __restrict ____delim_2197, char * (* __restrict ____save_ptr_2198)));// L354:L356 +extern __size_t_1 (__strlen_2201) (const char * (____s_2200));// L394:L395 +extern __size_t_1093 (__strlen_2202) (const char * (____s_2200));// L394:L395 +extern __size_t_2037 (__strlen_2203) (const char * (____s_2200));// L394:L395 +extern __size_t_1 (__strlen_2204) (const char * (____s_2200));// L394:L395 +extern __size_t_1093 (__strlen_2205) (const char * (____s_2200));// L394:L395 +extern __size_t_2037 (__strlen_2206) (const char * (____s_2200));// L394:L395 +extern __size_t_1 (__strnlen_2211) (const char * (____string_2207), __size_t_1 ____maxlen_2208);// L401:L402 +extern __size_t_1093 (__strnlen_2212) (const char * (____string_2207), __size_t_1093 ____maxlen_2209);// L401:L402 +extern __size_t_2037 (__strnlen_2213) (const char * (____string_2207), __size_t_2037 ____maxlen_2210);// L401:L402 +extern char * ((__strerror_2215) (int ____errnum_2214));// L408 +extern char * ((__strerror_2216) (int ____errnum_2214));// L408 +extern int (__strerror_r_2222) (int ____errnum_2217, char * (____buf_2218), __size_t_1 ____buflen_2219);// L422:L424 +extern int (__strerror_r_2223) (int ____errnum_2217, char * (____buf_2218), __size_t_1093 ____buflen_2220);// L422:L424 +extern int (__strerror_r_2224) (int ____errnum_2217, char * (____buf_2218), __size_t_2037 ____buflen_2221);// L422:L424 +extern char * ((__strerror_l_2227) (int ____errnum_2225, ____locale_t_2143 ____l_2226));// L440 +extern void (____bzero_2232) (void * (____s_2228), __size_t_1 ____n_2229);// L446 +extern void (____bzero_2233) (void * (____s_2228), __size_t_1093 ____n_2230);// L446 +extern void (____bzero_2234) (void * (____s_2228), __size_t_2037 ____n_2231);// L446 +extern void (____bzero_2235) (void * (____s_2228), __size_t_1 ____n_2229);// L446 +extern void (____bzero_2236) (void * (____s_2228), __size_t_1093 ____n_2230);// L446 +extern void (____bzero_2237) (void * (____s_2228), __size_t_2037 ____n_2231);// L446 +extern void (__bcopy_2243) (const void * (____src_2238), void * (____dest_2239), __size_t_1 ____n_2240);// L450:L451 +extern void (__bcopy_2244) (const void * (____src_2238), void * (____dest_2239), __size_t_1093 ____n_2241);// L450:L451 +extern void (__bcopy_2245) (const void * (____src_2238), void * (____dest_2239), __size_t_2037 ____n_2242);// L450:L451 +extern void (__bzero_2250) (void * (____s_2246), __size_t_1 ____n_2247);// L454 +extern void (__bzero_2251) (void * (____s_2246), __size_t_1093 ____n_2248);// L454 +extern void (__bzero_2252) (void * (____s_2246), __size_t_2037 ____n_2249);// L454 +extern int (__bcmp_2258) (const void * (____s1_2253), const void * (____s2_2254), __size_t_1 ____n_2255);// L457:L458 +extern int (__bcmp_2259) (const void * (____s1_2253), const void * (____s2_2254), __size_t_1093 ____n_2256);// L457:L458 +extern int (__bcmp_2260) (const void * (____s1_2253), const void * (____s2_2254), __size_t_2037 ____n_2257);// L457:L458 +extern char * ((__index_2263) (const char * (____s_2261), int ____c_2262));// L484:L485 +extern char * ((__rindex_2266) (const char * (____s_2264), int ____c_2265));// L512:L513 +extern int (__ffs_2268) (int ____i_2267);// L518 +extern int (__strcasecmp_2271) (const char * (____s1_2269), const char * (____s2_2270));// L529:L530 +extern int (__strncasecmp_2277) (const char * (____s1_2272), const char * (____s2_2273), __size_t_1 ____n_2274);// L533:L534 +extern int (__strncasecmp_2278) (const char * (____s1_2272), const char * (____s2_2273), __size_t_1093 ____n_2275);// L533:L534 +extern int (__strncasecmp_2279) (const char * (____s1_2272), const char * (____s2_2273), __size_t_2037 ____n_2276);// L533:L534 +extern char * ((__strsep_2282) (char * (* __restrict ____stringp_2280), const char * __restrict ____delim_2281));// L552:L554 +extern char * ((__strsignal_2284) (int ____sig_2283));// L559 +extern char * ((____stpcpy_2287) (char * __restrict ____dest_2285, const char * __restrict ____src_2286));// L562:L563 +extern char * ((__stpcpy_2290) (char * __restrict ____dest_2288, const char * __restrict ____src_2289));// L564:L565 +extern char * ((____stpncpy_2296) (char * __restrict ____dest_2291, const char * __restrict ____src_2292, __size_t_1 ____n_2293));// L569:L571 +extern char * ((____stpncpy_2297) (char * __restrict ____dest_2291, const char * __restrict ____src_2292, __size_t_1093 ____n_2294));// L569:L571 +extern char * ((____stpncpy_2298) (char * __restrict ____dest_2291, const char * __restrict ____src_2292, __size_t_2037 ____n_2295));// L569:L571 +extern char * ((__stpncpy_2304) (char * __restrict ____dest_2299, const char * __restrict ____src_2300, __size_t_1 ____n_2301));// L572:L574 +extern char * ((__stpncpy_2305) (char * __restrict ____dest_2299, const char * __restrict ____src_2300, __size_t_1093 ____n_2302));// L572:L574 +extern char * ((__stpncpy_2306) (char * __restrict ____dest_2299, const char * __restrict ____src_2300, __size_t_2037 ____n_2303));// L572:L574 /* no function due to type errors in the function prototype */ -extern void * ((__memmove_1109) (void * (____dest_1105), const void * (____src_1106), __size_t_1 ____n_1107));// L46:L47 -extern void * ((__memmove_1110) (void * (____dest_1105), const void * (____src_1106), __size_t_756 ____n_1108));// L46:L47 -extern void * ((__memset_1115) (void * (____s_1111), int ____c_1112, __size_t_1 ____n_1113));// L62 -extern void * ((__memset_1116) (void * (____s_1111), int ____c_1112, __size_t_756 ____n_1114));// L62 -extern int (__memcmp_1121) (const void * (____s1_1117), const void * (____s2_1118), __size_t_1 ____n_1119);// L65:L66 -extern int (__memcmp_1122) (const void * (____s1_1117), const void * (____s2_1118), __size_t_756 ____n_1120);// L65:L66 -extern void * ((__memchr_1127) (const void * (____s_1123), int ____c_1124, __size_t_1 ____n_1125));// L92:L93 -extern void * ((__memchr_1128) (const void * (____s_1123), int ____c_1124, __size_t_756 ____n_1126));// L92:L93 -extern char * ((__strcpy_1131) (char * __restrict ____dest_1129, const char * __restrict ____src_1130));// L125:L126 -extern char * ((__strncpy_1136) (char * __restrict ____dest_1132, const char * __restrict ____src_1133, __size_t_1 ____n_1134));// L128:L130 -extern char * ((__strncpy_1137) (char * __restrict ____dest_1132, const char * __restrict ____src_1133, __size_t_756 ____n_1135));// L128:L130 -extern char * ((__strcat_1140) (char * __restrict ____dest_1138, const char * __restrict ____src_1139));// L133:L134 -extern char * ((__strncat_1145) (char * __restrict ____dest_1141, const char * __restrict ____src_1142, __size_t_1 ____n_1143));// L136:L137 -extern char * ((__strncat_1146) (char * __restrict ____dest_1141, const char * __restrict ____src_1142, __size_t_756 ____n_1144));// L136:L137 -extern int (__strcmp_1149) (const char * (____s1_1147), const char * (____s2_1148));// L140:L141 -extern int (__strncmp_1154) (const char * (____s1_1150), const char * (____s2_1151), __size_t_1 ____n_1152);// L143:L144 -extern int (__strncmp_1155) (const char * (____s1_1150), const char * (____s2_1151), __size_t_756 ____n_1153);// L143:L144 -extern int (__strcoll_1158) (const char * (____s1_1156), const char * (____s2_1157));// L147:L148 -extern __size_t_1 (__strxfrm_1163) (char * __restrict ____dest_1159, const char * __restrict ____src_1160, __size_t_1 ____n_1161);// L150:L152 -extern __size_t_756 (__strxfrm_1164) (char * __restrict ____dest_1159, const char * __restrict ____src_1160, __size_t_756 ____n_1162);// L150:L152 -extern char * ((__strchr_1167) (const char * (____s_1165), int ____c_1166));// L231:L232 -extern char * ((__strrchr_1170) (const char * (____s_1168), int ____c_1169));// L258:L259 -extern __size_t_1 (__strcspn_1173) (const char * (____s_1171), const char * (____reject_1172));// L280:L281 -extern __size_t_756 (__strcspn_1174) (const char * (____s_1171), const char * (____reject_1172));// L280:L281 -extern __size_t_1 (__strspn_1177) (const char * (____s_1175), const char * (____accept_1176));// L284:L285 -extern __size_t_756 (__strspn_1178) (const char * (____s_1175), const char * (____accept_1176));// L284:L285 -extern char * ((__strpbrk_1181) (const char * (____s_1179), const char * (____accept_1180)));// L310:L311 -extern char * ((__strstr_1184) (const char * (____haystack_1182), const char * (____needle_1183)));// L337:L338 -extern char * ((__strtok_1187) (char * __restrict ____s_1185, const char * __restrict ____delim_1186));// L343:L344 -extern char * ((____strtok_r_1191) (char * __restrict ____s_1188, const char * __restrict ____delim_1189, char * (* __restrict ____save_ptr_1190)));// L349:L352 -extern __size_t_1 (__strlen_1193) (const char * (____s_1192));// L394:L395 -extern __size_t_756 (__strlen_1194) (const char * (____s_1192));// L394:L395 -extern char * ((__strerror_1196) (int ____errnum_1195));// L408 -extern void (____bzero_1200) (void * (____s_1197), __size_t_1 ____n_1198);// L446 -extern void (____bzero_1201) (void * (____s_1197), __size_t_756 ____n_1199);// L446 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern char * ((____stpncpy_chk_1235) (char * (____dest_1229), const char * (____src_1230), __size_t_1 ____n_1231, __size_t_1 ____destlen_1233));// L130:L131 -extern char * ((____stpncpy_chk_1236) (char * (____dest_1229), const char * (____src_1230), __size_t_756 ____n_1232, __size_t_756 ____destlen_1234));// L130:L131 -extern char * ((____stpncpy_alias_1241) (char * (____dest_1237), const char * (____src_1238), __size_t_1 ____n_1239));// L132:L133 -extern char * ((____stpncpy_alias_1242) (char * (____dest_1237), const char * (____src_1238), __size_t_756 ____n_1240));// L132:L133 /* no function due to type errors in the function prototype */ +extern char * ((____stpncpy_chk_2360) (char * (____dest_2352), const char * (____src_2353), __size_t_1 ____n_2354, __size_t_1 ____destlen_2357));// L130:L131 +extern char * ((____stpncpy_chk_2361) (char * (____dest_2352), const char * (____src_2353), __size_t_1093 ____n_2355, __size_t_1093 ____destlen_2358));// L130:L131 +extern char * ((____stpncpy_chk_2362) (char * (____dest_2352), const char * (____src_2353), __size_t_2037 ____n_2356, __size_t_2037 ____destlen_2359));// L130:L131 +extern char * ((____stpncpy_alias_2368) (char * (____dest_2363), const char * (____src_2364), __size_t_1 ____n_2365));// L132:L133 +extern char * ((____stpncpy_alias_2369) (char * (____dest_2363), const char * (____src_2364), __size_t_1093 ____n_2366));// L132:L133 +extern char * ((____stpncpy_alias_2370) (char * (____dest_2363), const char * (____src_2364), __size_t_2037 ____n_2367));// L132:L133 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -void (__make_device_1263) () { +/* no function due to type errors in the function prototype */ +void (__make_device_2395) () { { -if (__static_condition_default_1265) { +if (__static_condition_default_2397) { { { -char * (__val_1258);// L10 +char * (__val_2390);// L10 -char * (__s_1259);// L11 +char * (__s_2391);// L11 -char * (__p_1260);// L11 +char * (__p_2392);// L11 -if (__static_condition_default_1266) { - __val_1258 = "mode - device permissions" ; // L12 +if (__static_condition_default_2398) { + __val_2390 = "mode - device permissions" ; // L12 } -char * (__a_1261)= __val_1258 ;// L14 +char * (__a_2393)= __val_2390 ;// L14 -if (__static_condition_default_1267) { - __s_1259 = __strchr_1167 ( __val_1258 ,' ') ; // L15 +if (__static_condition_default_2399) { + __s_2391 = __strchr_2169 ( __val_2390 ,' ') ; // L15 } -if (__static_condition_default_1268) { - __val_1258 = ( __s_1259 && __s_1259 [ 1 ] ) ? __s_1259 + 1 : ( ( void * ) 0 ) ; // L16:L395 +if (__static_condition_default_2400) { + __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 } } } @@ -1462,28 +3223,30 @@ if (__static_condition_default_1268) { } -if (__static_condition_default_1269) { +if (__static_condition_default_2401) { { { -char * (__val_1258);// L10 +char * (__val_2390);// L10 -char * (__s_1259);// L11 +char * (__s_2391);// L11 -char * (__p_1260);// L11 +char * (__p_2392);// L11 - __val_1258 = "mode - device permissions" ; // L12 -char * (__a_1261)= __val_1258 ;// L14 + __val_2390 = "mode - device permissions" ; // L12 +char * (__a_2393)= __val_2390 ;// L14 - __s_1259 = __strchr_1167 ( __val_1258 ,' ') ; // L15 - __val_1258 = ( __s_1259 && __s_1259 [ 1 ] ) ? __s_1259 + 1 : ( ( void * ) 0 ) ; // L16:L395 -int __n_1262= 0;// L20 +if (__static_condition_default_2402) { + __s_2391 = __strchr_2169 ( __val_2390 ,' ') ; // L15 +} + __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 +int __n_2394= 0;// L20 - __s_1259 = __a_1261 ; // L21 -while ( * __s_1259 )// L23 + __s_2391 = __a_2393 ; // L21 +while ( * __s_2391 )// L23 { { @@ -1491,8 +3254,8 @@ while ( * __s_1259 )// L23 -* __p_1260 = * __s_1259 ; // L24 -if (__static_condition_default_1270) { +* __p_2392 = * __s_2391 ; // L24 +if (__static_condition_default_2403) { if ( rand( ) % 2 )// L26 { @@ -1501,29 +3264,17 @@ if ( rand( ) % 2 )// L26 - __n_1262 ++ ; // L27 - __p_1260 += __n_1262 - 1 ; // L28 + __n_2394 ++ ; // L27 + __p_2392 += __n_2394 - 1 ; // L28 } } } } -if (__static_condition_default_1271) { -if ( rand( ) % 2 )// L26 -{ - -{ -{ - - - - __n_1262 ++ ; // L27 - __p_1260 += __n_1262 - 1 ; // L28 -} -} -} +if (__static_condition_default_2404) { +__static_type_error("invalid type found in if statement"); } - __p_1260 ++ ; // L31 - __s_1259 ++ ; // L32 + __p_2392 ++ ; // L31 + __s_2391 ++ ; // L32 } } } @@ -1534,32 +3285,32 @@ if ( rand( ) % 2 )// L26 } }} -void (__make_device_1264) () { +void (__make_device_2396) () { { -if (__static_condition_default_1272) { +if (__static_condition_default_2405) { { { -char * (__val_1258);// L10 +char * (__val_2390);// L10 -char * (__s_1259);// L11 +char * (__s_2391);// L11 -char * (__p_1260);// L11 +char * (__p_2392);// L11 -if (__static_condition_default_1273) { - __val_1258 = "mode - device permissions" ; // L12 +if (__static_condition_default_2406) { + __val_2390 = "mode - device permissions" ; // L12 } -char * (__a_1261)= __val_1258 ;// L14 +char * (__a_2393)= __val_2390 ;// L14 -if (__static_condition_default_1274) { - __s_1259 = __strchr_1167 ( __val_1258 ,' ') ; // L15 +if (__static_condition_default_2407) { + __s_2391 = __strchr_2169 ( __val_2390 ,' ') ; // L15 } -if (__static_condition_default_1275) { - __val_1258 = ( __s_1259 && __s_1259 [ 1 ] ) ? __s_1259 + 1 : ( ( void * ) 0 ) ; // L16:L395 +if (__static_condition_default_2408) { + __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 } } } @@ -1567,28 +3318,30 @@ if (__static_condition_default_1275) { } -if (__static_condition_default_1276) { +if (__static_condition_default_2409) { { { -char * (__val_1258);// L10 +char * (__val_2390);// L10 -char * (__s_1259);// L11 +char * (__s_2391);// L11 -char * (__p_1260);// L11 +char * (__p_2392);// L11 - __val_1258 = "mode - device permissions" ; // L12 -char * (__a_1261)= __val_1258 ;// L14 + __val_2390 = "mode - device permissions" ; // L12 +char * (__a_2393)= __val_2390 ;// L14 - __s_1259 = __strchr_1167 ( __val_1258 ,' ') ; // L15 - __val_1258 = ( __s_1259 && __s_1259 [ 1 ] ) ? __s_1259 + 1 : ( ( void * ) 0 ) ; // L16:L395 -int __n_1262= 0;// L20 +if (__static_condition_default_2410) { + __s_2391 = __strchr_2169 ( __val_2390 ,' ') ; // L15 +} + __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 +int __n_2394= 0;// L20 - __s_1259 = __a_1261 ; // L21 -while ( * __s_1259 )// L23 + __s_2391 = __a_2393 ; // L21 +while ( * __s_2391 )// L23 { { @@ -1596,8 +3349,8 @@ while ( * __s_1259 )// L23 -* __p_1260 = * __s_1259 ; // L24 -if (__static_condition_default_1277) { +* __p_2392 = * __s_2391 ; // L24 +if (__static_condition_default_2411) { if ( rand( ) % 2 )// L26 { @@ -1606,29 +3359,17 @@ if ( rand( ) % 2 )// L26 - __n_1262 ++ ; // L27 - __p_1260 += __n_1262 - 1 ; // L28 + __n_2394 ++ ; // L27 + __p_2392 += __n_2394 - 1 ; // L28 } } } } -if (__static_condition_default_1278) { -if ( rand( ) % 2 )// L26 -{ - -{ -{ - - - - __n_1262 ++ ; // L27 - __p_1260 += __n_1262 - 1 ; // L28 +if (__static_condition_default_2412) { +__static_type_error("invalid type found in if statement"); } -} -} -} - __p_1260 ++ ; // L31 - __s_1259 ++ ; // L32 + __p_2392 ++ ; // L31 + __s_2391 ++ ; // L32 } } } @@ -1639,34 +3380,26 @@ if ( rand( ) % 2 )// L26 } }} -int (__main_1281) (int __argc_1279, char * (* (__argv_1280))) { +int (__main_2415) (int __argc_2413, char * (* (__argv_2414))) { { { -if (__static_condition_default_1282) { +if (__static_condition_default_2416) { if ( rand( ) % 2 )// L43 { -if (__static_condition_default_1283) { - __make_device_1263 ( ) ; // L44 -} -if (__static_condition_default_1284) { - __make_device_1264 ( ) ; // L44 +if (__static_condition_default_2417) { + __make_device_2395 ( ) ; // L44 } +if (__static_condition_default_2418) { + __make_device_2396 ( ) ; // L44 } } -if (__static_condition_default_1285) { -if ( rand( ) % 2 )// L43 -{ -if (__static_condition_default_1286) { - __make_device_1263 ( ) ; // L44 -} -if (__static_condition_default_1287) { - __make_device_1264 ( ) ; // L44 -} } +if (__static_condition_default_2419) { +__static_type_error("invalid type found in if statement"); } return 0 ;// L45 } diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.clangres index 7faf2400..7243897c 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.clangres @@ -1,37 +1,43 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1451:1: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] -char * (__a_1261)= __val_1258 ;// L14 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3212:1: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] +char * (__a_2393)= __val_2390 ;// L14 ^~~~~~~~~~~~~~~~~ ~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1451:10: warning: Value stored to '__a_1261' during its initialization is never read [deadcode.DeadStores] -char * (__a_1261)= __val_1258 ;// L14 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3212:10: warning: Value stored to '__a_2393' during its initialization is never read [deadcode.DeadStores] +char * (__a_2393)= __val_2390 ;// L14 ^~~~~~~~ ~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1457:2: warning: Value stored to '__val_1258' is never read [deadcode.DeadStores] - __val_1258 = ( __s_1259 && __s_1259 [ 1 ] ) ? __s_1259 + 1 : ( ( void * ) 0 ) ; // L16:L395 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3218:2: warning: Value stored to '__val_2390' is never read [deadcode.DeadStores] + __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1457:19: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] - __val_1258 = ( __s_1259 && __s_1259 [ 1 ] ) ? __s_1259 + 1 : ( ( void * ) 0 ) ; // L16:L395 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3218:19: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] + __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 ^~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1482:2: warning: Value stored to '__val_1258' is never read [deadcode.DeadStores] - __val_1258 = ( __s_1259 && __s_1259 [ 1 ] ) ? __s_1259 + 1 : ( ( void * ) 0 ) ; // L16:L395 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3245:2: warning: Value stored to '__val_2390' is never read [deadcode.DeadStores] + __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1494:14: warning: Dereference of undefined pointer value (loaded from variable '__p_1260') [core.NullDereference] -* __p_1260 = * __s_1259 ; // L24 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3245:19: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] + __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 + ^~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3257:14: warning: Dereference of undefined pointer value (loaded from variable '__p_2392') [core.NullDereference] +* __p_2392 = * __s_2391 ; // L24 ~~~~~~~~ ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1556:1: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] -char * (__a_1261)= __val_1258 ;// L14 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3307:1: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] +char * (__a_2393)= __val_2390 ;// L14 ^~~~~~~~~~~~~~~~~ ~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1556:10: warning: Value stored to '__a_1261' during its initialization is never read [deadcode.DeadStores] -char * (__a_1261)= __val_1258 ;// L14 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3307:10: warning: Value stored to '__a_2393' during its initialization is never read [deadcode.DeadStores] +char * (__a_2393)= __val_2390 ;// L14 ^~~~~~~~ ~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1562:2: warning: Value stored to '__val_1258' is never read [deadcode.DeadStores] - __val_1258 = ( __s_1259 && __s_1259 [ 1 ] ) ? __s_1259 + 1 : ( ( void * ) 0 ) ; // L16:L395 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3313:2: warning: Value stored to '__val_2390' is never read [deadcode.DeadStores] + __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1562:19: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] - __val_1258 = ( __s_1259 && __s_1259 [ 1 ] ) ? __s_1259 + 1 : ( ( void * ) 0 ) ; // L16:L395 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3313:19: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] + __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 ^~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1587:2: warning: Value stored to '__val_1258' is never read [deadcode.DeadStores] - __val_1258 = ( __s_1259 && __s_1259 [ 1 ] ) ? __s_1259 + 1 : ( ( void * ) 0 ) ; // L16:L395 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3340:2: warning: Value stored to '__val_2390' is never read [deadcode.DeadStores] + __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1599:14: warning: Dereference of undefined pointer value (loaded from variable '__p_1260') [core.NullDereference] -* __p_1260 = * __s_1259 ; // L24 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3340:19: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] + __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 + ^~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3352:14: warning: Dereference of undefined pointer value (loaded from variable '__p_2392') [core.NullDereference] +* __p_2392 = * __s_2391 ; // L24 ~~~~~~~~ ^ -12 warnings generated. +14 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.desugared.c index 00fff96b..c2b3ead5 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.desugared.c @@ -7,154 +7,837 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_109; -extern const bool __static_condition_default_151; -extern const bool __static_condition_default_190; -extern const bool __static_condition_default_130; -extern const bool __static_condition_default_149; -extern const bool __static_condition_default_132; -extern const bool __static_condition_default_107; -extern const bool __static_condition_default_261; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_157; -extern const bool __static_condition_default_260; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_262; -extern const bool __static_condition_default_155; +extern const bool __static_condition_default_67; +extern const bool __static_condition_default_276; +extern const bool __static_condition_default_273; +extern const bool __static_condition_default_252; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_414; +extern const bool __static_condition_default_394; +extern const bool __static_condition_default_429; +extern const bool __static_condition_default_629; extern const bool __static_condition_default_258; -extern const bool __static_condition_default_122; -extern const bool __static_condition_default_259; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_581; +extern const bool __static_condition_default_806; +extern const bool __static_condition_default_361; +extern const bool __static_condition_default_804; +extern const bool __static_condition_default_423; +extern const bool __static_condition_default_808; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_352; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_261; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_285; +extern const bool __static_condition_default_420; +extern const bool __static_condition_default_237; +extern const bool __static_condition_default_378; +extern const bool __static_condition_default_594; +extern const bool __static_condition_default_627; +extern const bool __static_condition_default_595; +extern const bool __static_condition_default_379; +extern const bool __static_condition_default_349; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_579; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_426; +extern const bool __static_condition_default_325; +extern const bool __static_condition_default_308; +extern const bool __static_condition_default_279; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_243; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_302; +extern const bool __static_condition_default_604; +extern const bool __static_condition_default_234; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_60; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_805; +extern const bool __static_condition_default_215; +extern const bool __static_condition_default_240; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_305; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); __static_renaming("__wchar_t_2", "wchar_t"); -__static_renaming("__div_t_7", "div_t"); -__static_renaming("__ldiv_t_12", "ldiv_t"); -__static_renaming("__lldiv_t_17", "lldiv_t"); -__static_renaming("____ctype_get_mb_cur_max_18", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_19", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_20", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_21", "__ctype_get_mb_cur_max"); -__static_renaming("__atof_23", "atof"); -__static_renaming("__atof_24", "atof"); -__static_renaming("__atoi_26", "atoi"); -__static_renaming("__atoi_27", "atoi"); -__static_renaming("__atol_29", "atol"); -__static_renaming("__atol_30", "atol"); -__static_renaming("__atoll_32", "atoll"); -__static_renaming("__atoll_33", "atoll"); -__static_renaming("__strtod_36", "strtod"); -__static_renaming("__strtof_39", "strtof"); -__static_renaming("__strtold_42", "strtold"); -__static_renaming("__strtol_46", "strtol"); -__static_renaming("__strtoul_50", "strtoul"); -__static_renaming("__strtoll_54", "strtoll"); -__static_renaming("__strtoull_58", "strtoull"); -__static_renaming("__rand_62", "rand"); -__static_renaming("__rand_63", "rand"); -__static_renaming("__srand_65", "srand"); -__static_renaming("__malloc_67", "malloc"); -__static_renaming("__malloc_68", "malloc"); -__static_renaming("__calloc_71", "calloc"); -__static_renaming("__calloc_72", "calloc"); -__static_renaming("__realloc_75", "realloc"); -__static_renaming("__realloc_76", "realloc"); -__static_renaming("__free_78", "free"); -__static_renaming("__aligned_alloc_81", "aligned_alloc"); -__static_renaming("__aligned_alloc_82", "aligned_alloc"); -__static_renaming("__abort_83", "abort"); -__static_renaming("__atexit_85", "atexit"); -__static_renaming("__at_quick_exit_87", "at_quick_exit"); -__static_renaming("__exit_89", "exit"); -__static_renaming("__quick_exit_91", "quick_exit"); -__static_renaming("___Exit_93", "_Exit"); -__static_renaming("__getenv_95", "getenv"); -__static_renaming("__getenv_96", "getenv"); -__static_renaming("__system_98", "system"); -__static_renaming("__system_99", "system"); -__static_renaming("____compar_fn_t_100", "__compar_fn_t"); -__static_renaming("__bsearch_108", "bsearch"); -__static_renaming("__bsearch_110", "bsearch"); -__static_renaming("____l_117", "__l"); -__static_renaming("____u_118", "__u"); -__static_renaming("____idx_119", "__idx"); -__static_renaming("____p_120", "__p"); -__static_renaming("____comparison_121", "__comparison"); -__static_renaming("__qsort_129", "qsort"); -__static_renaming("__qsort_131", "qsort"); -__static_renaming("__abs_134", "abs"); -__static_renaming("__abs_135", "abs"); -__static_renaming("__labs_137", "labs"); -__static_renaming("__labs_138", "labs"); -__static_renaming("__llabs_140", "llabs"); -__static_renaming("__llabs_141", "llabs"); -__static_renaming("__div_144", "div"); -__static_renaming("__div_145", "div"); -__static_renaming("__ldiv_148", "ldiv"); -__static_renaming("__ldiv_150", "ldiv"); -__static_renaming("__lldiv_154", "lldiv"); -__static_renaming("__lldiv_156", "lldiv"); -__static_renaming("__mblen_160", "mblen"); -__static_renaming("__mbtowc_164", "mbtowc"); -__static_renaming("__wctomb_167", "wctomb"); -__static_renaming("__mbstowcs_171", "mbstowcs"); -__static_renaming("__wcstombs_175", "wcstombs"); -__static_renaming("____realpath_chk_180", "__realpath_chk"); -__static_renaming("____realpath_alias_183", "__realpath_alias"); -__static_renaming("____realpath_chk_warn_187", "__realpath_chk_warn"); -__static_renaming("____ptsname_r_chk_195", "__ptsname_r_chk"); -__static_renaming("____ptsname_r_alias_199", "__ptsname_r_alias"); -__static_renaming("____ptsname_r_chk_warn_204", "__ptsname_r_chk_warn"); -__static_renaming("____wctomb_chk_212", "__wctomb_chk"); -__static_renaming("____wctomb_alias_215", "__wctomb_alias"); -__static_renaming("____mbstowcs_chk_222", "__mbstowcs_chk"); -__static_renaming("____mbstowcs_alias_226", "__mbstowcs_alias"); -__static_renaming("____mbstowcs_chk_warn_231", "__mbstowcs_chk_warn"); -__static_renaming("____wcstombs_chk_239", "__wcstombs_chk"); -__static_renaming("____wcstombs_alias_243", "__wcstombs_alias"); -__static_renaming("____wcstombs_chk_warn_248", "__wcstombs_chk_warn"); -__static_renaming("__all_fmt_252", "all_fmt"); -__static_renaming("__all_fmt_253", "all_fmt"); -__static_renaming("__main_256", "main"); - -__static_condition_renaming("__static_condition_default_107", "!(defined _FORTIFY_SOURCE) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_109", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_122", "(defined __USE_EXTERN_INLINES) && !(defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_123", "(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_130", "!(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_132", "(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_149", "!(defined _FORTIFY_SOURCE) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_151", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_155", "!(defined _FORTIFY_SOURCE) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_157", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_190", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_257", "!(defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_258", "!(defined _FORTIFY_SOURCE) && !(defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_259", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_260", "(defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_261", "!(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_262", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); +__static_renaming("__idtype_t_8", "idtype_t"); +__static_renaming("____u_char_9", "__u_char"); +__static_renaming("____u_short_10", "__u_short"); +__static_renaming("____u_int_11", "__u_int"); +__static_renaming("____u_long_12", "__u_long"); +__static_renaming("____int8_t_13", "__int8_t"); +__static_renaming("____uint8_t_14", "__uint8_t"); +__static_renaming("____int16_t_15", "__int16_t"); +__static_renaming("____uint16_t_16", "__uint16_t"); +__static_renaming("____int32_t_17", "__int32_t"); +__static_renaming("____uint32_t_18", "__uint32_t"); +__static_renaming("____int64_t_19", "__int64_t"); +__static_renaming("____uint64_t_20", "__uint64_t"); +__static_renaming("____quad_t_21", "__quad_t"); +__static_renaming("____u_quad_t_22", "__u_quad_t"); +__static_renaming("____dev_t_23", "__dev_t"); +__static_renaming("____uid_t_24", "__uid_t"); +__static_renaming("____gid_t_25", "__gid_t"); +__static_renaming("____ino_t_26", "__ino_t"); +__static_renaming("____ino64_t_27", "__ino64_t"); +__static_renaming("____mode_t_28", "__mode_t"); +__static_renaming("____nlink_t_29", "__nlink_t"); +__static_renaming("____off_t_30", "__off_t"); +__static_renaming("____off64_t_31", "__off64_t"); +__static_renaming("____pid_t_32", "__pid_t"); +__static_renaming("____fsid_t_36", "__fsid_t"); +__static_renaming("____clock_t_37", "__clock_t"); +__static_renaming("____rlim_t_38", "__rlim_t"); +__static_renaming("____rlim64_t_39", "__rlim64_t"); +__static_renaming("____id_t_40", "__id_t"); +__static_renaming("____time_t_41", "__time_t"); +__static_renaming("____useconds_t_42", "__useconds_t"); +__static_renaming("____suseconds_t_43", "__suseconds_t"); +__static_renaming("____daddr_t_44", "__daddr_t"); +__static_renaming("____key_t_45", "__key_t"); +__static_renaming("____clockid_t_46", "__clockid_t"); +__static_renaming("____timer_t_47", "__timer_t"); +__static_renaming("____blksize_t_48", "__blksize_t"); +__static_renaming("____blkcnt_t_49", "__blkcnt_t"); +__static_renaming("____blkcnt64_t_50", "__blkcnt64_t"); +__static_renaming("____fsblkcnt_t_51", "__fsblkcnt_t"); +__static_renaming("____fsblkcnt64_t_52", "__fsblkcnt64_t"); +__static_renaming("____fsfilcnt_t_53", "__fsfilcnt_t"); +__static_renaming("____fsfilcnt64_t_54", "__fsfilcnt64_t"); +__static_renaming("____fsword_t_55", "__fsword_t"); +__static_renaming("____ssize_t_56", "__ssize_t"); +__static_renaming("____syscall_slong_t_57", "__syscall_slong_t"); +__static_renaming("____syscall_ulong_t_58", "__syscall_ulong_t"); +__static_renaming("____loff_t_59", "__loff_t"); +__static_renaming("____qaddr_t_61", "__qaddr_t"); +__static_renaming("____caddr_t_62", "__caddr_t"); +__static_renaming("____intptr_t_63", "__intptr_t"); +__static_renaming("____socklen_t_64", "__socklen_t"); +__static_renaming("____bswap_32_66", "__bswap_32"); +__static_renaming("____bswap_64_69", "__bswap_64"); +__static_renaming("____WAIT_STATUS_89", "__WAIT_STATUS"); +__static_renaming("__div_t_94", "div_t"); +__static_renaming("__ldiv_t_99", "ldiv_t"); +__static_renaming("__lldiv_t_104", "lldiv_t"); +__static_renaming("____ctype_get_mb_cur_max_105", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_106", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_107", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_108", "__ctype_get_mb_cur_max"); +__static_renaming("__atof_110", "atof"); +__static_renaming("__atof_111", "atof"); +__static_renaming("__atoi_113", "atoi"); +__static_renaming("__atoi_114", "atoi"); +__static_renaming("__atol_116", "atol"); +__static_renaming("__atol_117", "atol"); +__static_renaming("__atoll_119", "atoll"); +__static_renaming("__atoll_120", "atoll"); +__static_renaming("__strtod_123", "strtod"); +__static_renaming("__strtof_126", "strtof"); +__static_renaming("__strtold_129", "strtold"); +__static_renaming("__strtol_133", "strtol"); +__static_renaming("__strtoul_137", "strtoul"); +__static_renaming("__strtoq_141", "strtoq"); +__static_renaming("__strtouq_145", "strtouq"); +__static_renaming("__strtoll_149", "strtoll"); +__static_renaming("__strtoll_150", "strtoll"); +__static_renaming("__strtoull_154", "strtoull"); +__static_renaming("__l64a_159", "l64a"); +__static_renaming("__l64a_160", "l64a"); +__static_renaming("__a64l_162", "a64l"); +__static_renaming("__a64l_163", "a64l"); +__static_renaming("____u_char_164", "__u_char"); +__static_renaming("____u_short_165", "__u_short"); +__static_renaming("____u_int_166", "__u_int"); +__static_renaming("____u_long_167", "__u_long"); +__static_renaming("____int8_t_168", "__int8_t"); +__static_renaming("____uint8_t_169", "__uint8_t"); +__static_renaming("____int16_t_170", "__int16_t"); +__static_renaming("____uint16_t_171", "__uint16_t"); +__static_renaming("____int32_t_172", "__int32_t"); +__static_renaming("____uint32_t_173", "__uint32_t"); +__static_renaming("____int64_t_174", "__int64_t"); +__static_renaming("____uint64_t_175", "__uint64_t"); +__static_renaming("____quad_t_176", "__quad_t"); +__static_renaming("____u_quad_t_177", "__u_quad_t"); +__static_renaming("____dev_t_178", "__dev_t"); +__static_renaming("____uid_t_179", "__uid_t"); +__static_renaming("____gid_t_180", "__gid_t"); +__static_renaming("____ino_t_181", "__ino_t"); +__static_renaming("____ino64_t_182", "__ino64_t"); +__static_renaming("____mode_t_183", "__mode_t"); +__static_renaming("____nlink_t_184", "__nlink_t"); +__static_renaming("____off_t_185", "__off_t"); +__static_renaming("____off64_t_186", "__off64_t"); +__static_renaming("____pid_t_187", "__pid_t"); +__static_renaming("____fsid_t_191", "__fsid_t"); +__static_renaming("____clock_t_192", "__clock_t"); +__static_renaming("____rlim_t_193", "__rlim_t"); +__static_renaming("____rlim64_t_194", "__rlim64_t"); +__static_renaming("____id_t_195", "__id_t"); +__static_renaming("____time_t_196", "__time_t"); +__static_renaming("____useconds_t_197", "__useconds_t"); +__static_renaming("____suseconds_t_198", "__suseconds_t"); +__static_renaming("____daddr_t_199", "__daddr_t"); +__static_renaming("____key_t_200", "__key_t"); +__static_renaming("____clockid_t_201", "__clockid_t"); +__static_renaming("____timer_t_202", "__timer_t"); +__static_renaming("____blksize_t_203", "__blksize_t"); +__static_renaming("____blkcnt_t_204", "__blkcnt_t"); +__static_renaming("____blkcnt64_t_205", "__blkcnt64_t"); +__static_renaming("____fsblkcnt_t_206", "__fsblkcnt_t"); +__static_renaming("____fsblkcnt64_t_207", "__fsblkcnt64_t"); +__static_renaming("____fsfilcnt_t_208", "__fsfilcnt_t"); +__static_renaming("____fsfilcnt64_t_209", "__fsfilcnt64_t"); +__static_renaming("____fsword_t_210", "__fsword_t"); +__static_renaming("____ssize_t_211", "__ssize_t"); +__static_renaming("____syscall_slong_t_212", "__syscall_slong_t"); +__static_renaming("____syscall_ulong_t_213", "__syscall_ulong_t"); +__static_renaming("____loff_t_214", "__loff_t"); +__static_renaming("____qaddr_t_216", "__qaddr_t"); +__static_renaming("____caddr_t_217", "__caddr_t"); +__static_renaming("____intptr_t_218", "__intptr_t"); +__static_renaming("____socklen_t_219", "__socklen_t"); +__static_renaming("__u_char_220", "u_char"); +__static_renaming("__u_char_221", "u_char"); +__static_renaming("__u_short_222", "u_short"); +__static_renaming("__u_short_223", "u_short"); +__static_renaming("__u_int_224", "u_int"); +__static_renaming("__u_int_225", "u_int"); +__static_renaming("__u_long_226", "u_long"); +__static_renaming("__u_long_227", "u_long"); +__static_renaming("__quad_t_228", "quad_t"); +__static_renaming("__quad_t_229", "quad_t"); +__static_renaming("__u_quad_t_230", "u_quad_t"); +__static_renaming("__u_quad_t_231", "u_quad_t"); +__static_renaming("__fsid_t_232", "fsid_t"); +__static_renaming("__fsid_t_233", "fsid_t"); +__static_renaming("__loff_t_235", "loff_t"); +__static_renaming("__loff_t_236", "loff_t"); +__static_renaming("__loff_t_238", "loff_t"); +__static_renaming("__loff_t_239", "loff_t"); +__static_renaming("__ino_t_241", "ino_t"); +__static_renaming("__ino_t_242", "ino_t"); +__static_renaming("__ino_t_244", "ino_t"); +__static_renaming("__ino_t_245", "ino_t"); +__static_renaming("__dev_t_247", "dev_t"); +__static_renaming("__dev_t_248", "dev_t"); +__static_renaming("__gid_t_250", "gid_t"); +__static_renaming("__gid_t_251", "gid_t"); +__static_renaming("__gid_t_253", "gid_t"); +__static_renaming("__gid_t_254", "gid_t"); +__static_renaming("__mode_t_256", "mode_t"); +__static_renaming("__mode_t_257", "mode_t"); +__static_renaming("__nlink_t_259", "nlink_t"); +__static_renaming("__nlink_t_260", "nlink_t"); +__static_renaming("__uid_t_262", "uid_t"); +__static_renaming("__uid_t_263", "uid_t"); +__static_renaming("__uid_t_265", "uid_t"); +__static_renaming("__uid_t_266", "uid_t"); +__static_renaming("__off_t_268", "off_t"); +__static_renaming("__off_t_269", "off_t"); +__static_renaming("__off_t_271", "off_t"); +__static_renaming("__off_t_272", "off_t"); +__static_renaming("__pid_t_274", "pid_t"); +__static_renaming("__pid_t_275", "pid_t"); +__static_renaming("__pid_t_277", "pid_t"); +__static_renaming("__pid_t_278", "pid_t"); +__static_renaming("__id_t_280", "id_t"); +__static_renaming("__id_t_281", "id_t"); +__static_renaming("__ssize_t_283", "ssize_t"); +__static_renaming("__ssize_t_284", "ssize_t"); +__static_renaming("__daddr_t_286", "daddr_t"); +__static_renaming("__daddr_t_287", "daddr_t"); +__static_renaming("__caddr_t_289", "caddr_t"); +__static_renaming("__caddr_t_290", "caddr_t"); +__static_renaming("__key_t_291", "key_t"); +__static_renaming("__key_t_292", "key_t"); +__static_renaming("__key_t_294", "key_t"); +__static_renaming("__key_t_295", "key_t"); +__static_renaming("__clock_t_297", "clock_t"); +__static_renaming("__clock_t_298", "clock_t"); +__static_renaming("__time_t_300", "time_t"); +__static_renaming("__time_t_301", "time_t"); +__static_renaming("__clockid_t_303", "clockid_t"); +__static_renaming("__clockid_t_304", "clockid_t"); +__static_renaming("__timer_t_306", "timer_t"); +__static_renaming("__timer_t_307", "timer_t"); +__static_renaming("__ulong_309", "ulong"); +__static_renaming("__ulong_310", "ulong"); +__static_renaming("__ulong_311", "ulong"); +__static_renaming("__ushort_312", "ushort"); +__static_renaming("__uint_313", "uint"); +__static_renaming("__int8_t_314", "int8_t"); +__static_renaming("__int16_t_315", "int16_t"); +__static_renaming("__int32_t_316", "int32_t"); +__static_renaming("__int64_t_317", "int64_t"); +__static_renaming("__u_int8_t_318", "u_int8_t"); +__static_renaming("__u_int16_t_319", "u_int16_t"); +__static_renaming("__u_int32_t_320", "u_int32_t"); +__static_renaming("__u_int64_t_321", "u_int64_t"); +__static_renaming("__register_t_322", "register_t"); +__static_renaming("____bswap_32_324", "__bswap_32"); +__static_renaming("____bswap_64_327", "__bswap_64"); +__static_renaming("____sig_atomic_t_328", "__sig_atomic_t"); +__static_renaming("____sigset_t_332", "__sigset_t"); +__static_renaming("__sigset_t_333", "sigset_t"); +__static_renaming("__suseconds_t_350", "suseconds_t"); +__static_renaming("__suseconds_t_351", "suseconds_t"); +__static_renaming("____fd_mask_353", "__fd_mask"); +__static_renaming("____fd_mask_354", "__fd_mask"); +__static_renaming("__fd_set_362", "fd_set"); +__static_renaming("__fd_mask_363", "fd_mask"); +__static_renaming("__fd_mask_364", "fd_mask"); +__static_renaming("__select_376", "select"); +__static_renaming("__select_377", "select"); +__static_renaming("__pselect_392", "pselect"); +__static_renaming("__pselect_393", "pselect"); +__static_renaming("____fdelt_chk_397", "__fdelt_chk"); +__static_renaming("____fdelt_warn_399", "__fdelt_warn"); +__static_renaming("__gnu_dev_major_401", "gnu_dev_major"); +__static_renaming("__gnu_dev_major_402", "gnu_dev_major"); +__static_renaming("__gnu_dev_minor_404", "gnu_dev_minor"); +__static_renaming("__gnu_dev_makedev_407", "gnu_dev_makedev"); +__static_renaming("__blksize_t_412", "blksize_t"); +__static_renaming("__blksize_t_413", "blksize_t"); +__static_renaming("__blkcnt_t_415", "blkcnt_t"); +__static_renaming("__blkcnt_t_416", "blkcnt_t"); +__static_renaming("__fsblkcnt_t_418", "fsblkcnt_t"); +__static_renaming("__fsblkcnt_t_419", "fsblkcnt_t"); +__static_renaming("__blkcnt_t_421", "blkcnt_t"); +__static_renaming("__blkcnt_t_422", "blkcnt_t"); +__static_renaming("__fsblkcnt_t_424", "fsblkcnt_t"); +__static_renaming("__fsblkcnt_t_425", "fsblkcnt_t"); +__static_renaming("__fsfilcnt_t_427", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_428", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_430", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_431", "fsfilcnt_t"); +__static_renaming("__pthread_t_433", "pthread_t"); +__static_renaming("__pthread_attr_t_437", "pthread_attr_t"); +__static_renaming("____pthread_list_t_442", "__pthread_list_t"); +__static_renaming("____pthread_list_t_443", "__pthread_list_t"); +__static_renaming("__pthread_mutex_t_459", "pthread_mutex_t"); +__static_renaming("__pthread_mutexattr_t_464", "pthread_mutexattr_t"); +__static_renaming("__rand_465", "rand"); +__static_renaming("__srand_467", "srand"); +__static_renaming("__rand_r_469", "rand_r"); +__static_renaming("__drand48_470", "drand48"); +__static_renaming("__erand48_472", "erand48"); +__static_renaming("__lrand48_473", "lrand48"); +__static_renaming("__nrand48_475", "nrand48"); +__static_renaming("__mrand48_476", "mrand48"); +__static_renaming("__jrand48_478", "jrand48"); +__static_renaming("__srand48_480", "srand48"); +__static_renaming("__seed48_482", "seed48"); +__static_renaming("__lcong48_484", "lcong48"); +__static_renaming("__malloc_486", "malloc"); +__static_renaming("__malloc_487", "malloc"); +__static_renaming("__calloc_490", "calloc"); +__static_renaming("__calloc_491", "calloc"); +__static_renaming("__realloc_494", "realloc"); +__static_renaming("__free_496", "free"); +__static_renaming("__cfree_498", "cfree"); +__static_renaming("__alloca_500", "alloca"); +__static_renaming("__valloc_502", "valloc"); +__static_renaming("__valloc_503", "valloc"); +__static_renaming("__posix_memalign_507", "posix_memalign"); +__static_renaming("__posix_memalign_508", "posix_memalign"); +__static_renaming("__aligned_alloc_511", "aligned_alloc"); +__static_renaming("__aligned_alloc_512", "aligned_alloc"); +__static_renaming("__aligned_alloc_513", "aligned_alloc"); +__static_renaming("__aligned_alloc_514", "aligned_alloc"); +__static_renaming("__abort_515", "abort"); +__static_renaming("__atexit_517", "atexit"); +__static_renaming("__at_quick_exit_519", "at_quick_exit"); +__static_renaming("__on_exit_524", "on_exit"); +__static_renaming("__exit_526", "exit"); +__static_renaming("__exit_527", "exit"); +__static_renaming("__quick_exit_529", "quick_exit"); +__static_renaming("___Exit_531", "_Exit"); +__static_renaming("__getenv_533", "getenv"); +__static_renaming("__getenv_534", "getenv"); +__static_renaming("__putenv_536", "putenv"); +__static_renaming("__setenv_540", "setenv"); +__static_renaming("__unsetenv_542", "unsetenv"); +__static_renaming("__clearenv_543", "clearenv"); +__static_renaming("__mktemp_545", "mktemp"); +__static_renaming("__mkstemp_548", "mkstemp"); +__static_renaming("__mkstemp_549", "mkstemp"); +__static_renaming("__mkstemp_550", "mkstemp"); +__static_renaming("__mkstemp_551", "mkstemp"); +__static_renaming("__mkstemps_556", "mkstemps"); +__static_renaming("__mkstemps_557", "mkstemps"); +__static_renaming("__mkstemps_558", "mkstemps"); +__static_renaming("__mkstemps_559", "mkstemps"); +__static_renaming("__mkdtemp_561", "mkdtemp"); +__static_renaming("__mkdtemp_562", "mkdtemp"); +__static_renaming("__system_564", "system"); +__static_renaming("__system_565", "system"); +__static_renaming("__system_566", "system"); +__static_renaming("__system_567", "system"); +__static_renaming("__realpath_570", "realpath"); +__static_renaming("__realpath_571", "realpath"); +__static_renaming("____compar_fn_t_572", "__compar_fn_t"); +__static_renaming("__bsearch_580", "bsearch"); +__static_renaming("__bsearch_582", "bsearch"); +__static_renaming("____l_589", "__l"); +__static_renaming("____u_590", "__u"); +__static_renaming("____idx_591", "__idx"); +__static_renaming("____p_592", "__p"); +__static_renaming("____comparison_593", "__comparison"); +__static_renaming("__qsort_601", "qsort"); +__static_renaming("__qsort_603", "qsort"); +__static_renaming("__abs_606", "abs"); +__static_renaming("__abs_607", "abs"); +__static_renaming("__labs_609", "labs"); +__static_renaming("__labs_610", "labs"); +__static_renaming("__llabs_612", "llabs"); +__static_renaming("__llabs_613", "llabs"); +__static_renaming("__div_616", "div"); +__static_renaming("__div_617", "div"); +__static_renaming("__ldiv_620", "ldiv"); +__static_renaming("__ldiv_622", "ldiv"); +__static_renaming("__lldiv_626", "lldiv"); +__static_renaming("__lldiv_628", "lldiv"); +__static_renaming("__ecvt_634", "ecvt"); +__static_renaming("__ecvt_635", "ecvt"); +__static_renaming("__fcvt_640", "fcvt"); +__static_renaming("__fcvt_641", "fcvt"); +__static_renaming("__gcvt_645", "gcvt"); +__static_renaming("__gcvt_646", "gcvt"); +__static_renaming("__qecvt_651", "qecvt"); +__static_renaming("__qecvt_652", "qecvt"); +__static_renaming("__qfcvt_657", "qfcvt"); +__static_renaming("__qfcvt_658", "qfcvt"); +__static_renaming("__qgcvt_662", "qgcvt"); +__static_renaming("__qgcvt_663", "qgcvt"); +__static_renaming("__ecvt_r_670", "ecvt_r"); +__static_renaming("__fcvt_r_677", "fcvt_r"); +__static_renaming("__qecvt_r_684", "qecvt_r"); +__static_renaming("__qfcvt_r_691", "qfcvt_r"); +__static_renaming("__mblen_694", "mblen"); +__static_renaming("__mblen_695", "mblen"); +__static_renaming("__mbtowc_699", "mbtowc"); +__static_renaming("__wctomb_702", "wctomb"); +__static_renaming("__mbstowcs_706", "mbstowcs"); +__static_renaming("__wcstombs_710", "wcstombs"); +__static_renaming("__rpmatch_712", "rpmatch"); +__static_renaming("__rpmatch_713", "rpmatch"); +__static_renaming("__getsubopt_717", "getsubopt"); +__static_renaming("__getsubopt_718", "getsubopt"); +__static_renaming("__getloadavg_721", "getloadavg"); +__static_renaming("____realpath_chk_726", "__realpath_chk"); +__static_renaming("____realpath_alias_729", "__realpath_alias"); +__static_renaming("____realpath_chk_warn_733", "__realpath_chk_warn"); +__static_renaming("____ptsname_r_chk_741", "__ptsname_r_chk"); +__static_renaming("____ptsname_r_alias_745", "__ptsname_r_alias"); +__static_renaming("____ptsname_r_chk_warn_750", "__ptsname_r_chk_warn"); +__static_renaming("____wctomb_chk_758", "__wctomb_chk"); +__static_renaming("____wctomb_alias_761", "__wctomb_alias"); +__static_renaming("____mbstowcs_chk_768", "__mbstowcs_chk"); +__static_renaming("____mbstowcs_alias_772", "__mbstowcs_alias"); +__static_renaming("____mbstowcs_chk_warn_777", "__mbstowcs_chk_warn"); +__static_renaming("____wcstombs_chk_785", "__wcstombs_chk"); +__static_renaming("____wcstombs_alias_789", "__wcstombs_alias"); +__static_renaming("____wcstombs_chk_warn_794", "__wcstombs_chk_warn"); +__static_renaming("__all_fmt_798", "all_fmt"); +__static_renaming("__all_fmt_799", "all_fmt"); +__static_renaming("__all_fmt_800", "all_fmt"); +__static_renaming("__main_803", "main"); + +__static_condition_renaming("__static_condition_default_60", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_67", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_215", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_234", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __u_char_defined)"); +__static_condition_renaming("__static_condition_default_237", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __u_char_defined)"); +__static_condition_renaming("__static_condition_default_240", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __u_char_defined)"); +__static_condition_renaming("__static_condition_default_243", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ino_t_defined)"); +__static_condition_renaming("__static_condition_default_246", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ino_t_defined) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ino_t_defined)"); +__static_condition_renaming("__static_condition_default_249", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_252", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_255", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_258", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_261", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __nlink_t_defined)"); +__static_condition_renaming("__static_condition_default_264", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __nlink_t_defined)"); +__static_condition_renaming("__static_condition_default_267", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __nlink_t_defined)"); +__static_condition_renaming("__static_condition_default_270", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_273", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_276", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_279", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_282", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __id_t_defined)"); +__static_condition_renaming("__static_condition_default_285", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_288", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_293", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_296", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_299", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __clock_t_defined)"); +__static_condition_renaming("__static_condition_default_302", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __time_t_defined)"); +__static_condition_renaming("__static_condition_default_305", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __clockid_t_defined)"); +__static_condition_renaming("__static_condition_default_308", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __timer_t_defined)"); +__static_condition_renaming("__static_condition_default_325", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_341", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_349", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_352", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __suseconds_t_defined)"); +__static_condition_renaming("__static_condition_default_361", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_378", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_379", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_394", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_395", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_414", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blksize_t_defined)"); +__static_condition_renaming("__static_condition_default_417", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blkcnt_t_defined) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blkcnt_t_defined)"); +__static_condition_renaming("__static_condition_default_420", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_423", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blkcnt_t_defined)"); +__static_condition_renaming("__static_condition_default_426", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_429", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_432", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_579", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_581", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_594", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __USE_EXTERN_INLINES) && !(defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_595", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_602", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_604", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_621", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_623", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_627", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_629", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_736", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_804", "!(defined _STDLIB_H) && (defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_805", "!(defined _STDLIB_H) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_TIMESTAMPS) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_TIMESTAMPS) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_TIMESTAMPS) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_TIMESTAMPS)"); +__static_condition_renaming("__static_condition_default_806", "!(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_LS_TIMESTAMPS)"); +__static_condition_renaming("__static_condition_default_807", "!(defined _STDLIB_H) && (defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_LS_TIMESTAMPS)"); +__static_condition_renaming("__static_condition_default_808", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined __need_malloc_and_calloc) || (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_809", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc)"); +if (__static_condition_default_809) { +__static_parse_error("Unable to parse"); +} }; typedef long int __ptrdiff_t_0;// L143:L324 typedef long unsigned int __size_t_1;// L177:L209 typedef int __wchar_t_2;// L243:L321 -struct ____anonymous_tag_3_4 { -int __quot_5;// L99 -int __rem_6;// L100 +enum ____anonymous_tag_6_7 { +__P_ALL_3, +__P_PID_4, +__P_PGID_5, +}; +typedef enum ____anonymous_tag_6_7 __idtype_t_8;// L50:L55 +typedef unsigned char ____u_char_9;// L30 +typedef unsigned short int ____u_short_10;// L31 +typedef unsigned int ____u_int_11;// L32 +typedef unsigned long int ____u_long_12;// L33 +typedef signed char ____int8_t_13;// L36 +typedef unsigned char ____uint8_t_14;// L37 +typedef signed short int ____int16_t_15;// L38 +typedef unsigned short int ____uint16_t_16;// L39 +typedef signed int ____int32_t_17;// L40 +typedef unsigned int ____uint32_t_18;// L41 +typedef signed long int ____int64_t_19;// L43 +typedef unsigned long int ____uint64_t_20;// L44 +typedef long int ____quad_t_21;// L52 +typedef unsigned long int ____u_quad_t_22;// L53 +typedef unsigned long int ____dev_t_23;// L109:L124 +typedef unsigned int ____uid_t_24;// L92:L125 +typedef unsigned int ____gid_t_25;// L92:L126 +typedef unsigned long int ____ino_t_26;// L94:L127 +typedef unsigned long int ____ino64_t_27;// L109:L128 +typedef unsigned int ____mode_t_28;// L92:L129 +typedef unsigned long int ____nlink_t_29;// L94:L130 +typedef long int ____off_t_30;// L93:L131 +typedef long int ____off64_t_31;// L108:L132 +typedef int ____pid_t_32;// L91:L133 +struct ____anonymous_tag_33_34 { +int ____val_35[2];// L72 +}; +typedef struct ____anonymous_tag_33_34 ____fsid_t_36;// L72:L134 +typedef long int ____clock_t_37;// L93:L135 +typedef unsigned long int ____rlim_t_38;// L94:L136 +typedef unsigned long int ____rlim64_t_39;// L109:L137 +typedef unsigned int ____id_t_40;// L92:L138 +typedef long int ____time_t_41;// L93:L139 +typedef unsigned int ____useconds_t_42;// L92:L140 +typedef long int ____suseconds_t_43;// L93:L141 +typedef int ____daddr_t_44;// L91:L143 +typedef int ____key_t_45;// L91:L144 +typedef int ____clockid_t_46;// L91:L147 +typedef void * (____timer_t_47);// L70:L150 +typedef long int ____blksize_t_48;// L93:L153 +typedef long int ____blkcnt_t_49;// L93:L158 +typedef long int ____blkcnt64_t_50;// L108:L159 +typedef unsigned long int ____fsblkcnt_t_51;// L94:L162 +typedef unsigned long int ____fsblkcnt64_t_52;// L109:L163 +typedef unsigned long int ____fsfilcnt_t_53;// L94:L166 +typedef unsigned long int ____fsfilcnt64_t_54;// L109:L167 +typedef long int ____fsword_t_55;// L93:L170 +typedef long int ____ssize_t_56;// L110:L172 +typedef long int ____syscall_slong_t_57;// L93:L175 +typedef unsigned long int ____syscall_ulong_t_58;// L94:L177 +typedef ____off64_t_31 ____loff_t_59;// L181 +typedef ____quad_t_21 * (____qaddr_t_61);// L182 +typedef char * (____caddr_t_62);// L183 +typedef long int ____intptr_t_63;// L110:L186 +typedef unsigned int ____socklen_t_64;// L92:L189 +struct ____anonymous_tag_70_71 { +unsigned int ____w_termsig_72 : 7;// L72 +unsigned int ____w_coredump_73 : 1;// L73 +unsigned int ____w_retcode_74 : 8;// L74 +unsigned int __anon_id_0_75 : 16;// L75 +}; +struct ____anonymous_tag_76_77 { +unsigned int ____w_stopval_78 : 8;// L87 +unsigned int ____w_stopsig_79 : 8;// L88 +unsigned int __anon_id_1_80 : 16;// L89 +}; +union __wait_81 { +int __w_status_82;// L68 +struct ____anonymous_tag_70_71 ____wait_terminated_83;// L69 +struct ____anonymous_tag_76_77 ____wait_stopped_84;// L84 +}; +union ____anonymous_tag_85_86 { +union __wait_81 * (____uptr_87);// L69 +int * (____iptr_88);// L70 +}; +typedef union ____anonymous_tag_85_86 ____WAIT_STATUS_89;// L67:L71 +struct ____anonymous_tag_90_91 { +int __quot_92;// L99 +int __rem_93;// L100 +}; +typedef struct ____anonymous_tag_90_91 __div_t_94;// L97:L101 +struct ____anonymous_tag_95_96 { +long int __quot_97;// L107 +long int __rem_98;// L108 +}; +typedef struct ____anonymous_tag_95_96 __ldiv_t_99;// L105:L109 +struct ____anonymous_tag_100_101 { +long long int __quot_102;// L119 +long long int __rem_103;// L120 +}; +typedef struct ____anonymous_tag_100_101 __lldiv_t_104;// L117:L121 +typedef unsigned char ____u_char_164;// L30 +typedef unsigned short int ____u_short_165;// L31 +typedef unsigned int ____u_int_166;// L32 +typedef unsigned long int ____u_long_167;// L33 +typedef signed char ____int8_t_168;// L36 +typedef unsigned char ____uint8_t_169;// L37 +typedef signed short int ____int16_t_170;// L38 +typedef unsigned short int ____uint16_t_171;// L39 +typedef signed int ____int32_t_172;// L40 +typedef unsigned int ____uint32_t_173;// L41 +typedef signed long int ____int64_t_174;// L43 +typedef unsigned long int ____uint64_t_175;// L44 +typedef long int ____quad_t_176;// L52 +typedef unsigned long int ____u_quad_t_177;// L53 +typedef unsigned long int ____dev_t_178;// L109:L124 +typedef unsigned int ____uid_t_179;// L92:L125 +typedef unsigned int ____gid_t_180;// L92:L126 +typedef unsigned long int ____ino_t_181;// L94:L127 +typedef unsigned long int ____ino64_t_182;// L109:L128 +typedef unsigned int ____mode_t_183;// L92:L129 +typedef unsigned long int ____nlink_t_184;// L94:L130 +typedef long int ____off_t_185;// L93:L131 +typedef long int ____off64_t_186;// L108:L132 +typedef int ____pid_t_187;// L91:L133 +struct ____anonymous_tag_188_189 { +int ____val_190[2];// L72 +}; +typedef struct ____anonymous_tag_188_189 ____fsid_t_191;// L72:L134 +typedef long int ____clock_t_192;// L93:L135 +typedef unsigned long int ____rlim_t_193;// L94:L136 +typedef unsigned long int ____rlim64_t_194;// L109:L137 +typedef unsigned int ____id_t_195;// L92:L138 +typedef long int ____time_t_196;// L93:L139 +typedef unsigned int ____useconds_t_197;// L92:L140 +typedef long int ____suseconds_t_198;// L93:L141 +typedef int ____daddr_t_199;// L91:L143 +typedef int ____key_t_200;// L91:L144 +typedef int ____clockid_t_201;// L91:L147 +typedef void * (____timer_t_202);// L70:L150 +typedef long int ____blksize_t_203;// L93:L153 +typedef long int ____blkcnt_t_204;// L93:L158 +typedef long int ____blkcnt64_t_205;// L108:L159 +typedef unsigned long int ____fsblkcnt_t_206;// L94:L162 +typedef unsigned long int ____fsblkcnt64_t_207;// L109:L163 +typedef unsigned long int ____fsfilcnt_t_208;// L94:L166 +typedef unsigned long int ____fsfilcnt64_t_209;// L109:L167 +typedef long int ____fsword_t_210;// L93:L170 +typedef long int ____ssize_t_211;// L110:L172 +typedef long int ____syscall_slong_t_212;// L93:L175 +typedef unsigned long int ____syscall_ulong_t_213;// L94:L177 +typedef ____off64_t_186 ____loff_t_214;// L181 +typedef ____quad_t_176 * (____qaddr_t_216);// L182 +typedef char * (____caddr_t_217);// L183 +typedef long int ____intptr_t_218;// L110:L186 +typedef unsigned int ____socklen_t_219;// L92:L189 +typedef ____u_char_9 __u_char_220;// L33 +typedef ____u_char_164 __u_char_221;// L33 +typedef ____u_short_10 __u_short_222;// L34 +typedef ____u_short_165 __u_short_223;// L34 +typedef ____u_int_11 __u_int_224;// L35 +typedef ____u_int_166 __u_int_225;// L35 +typedef ____u_long_12 __u_long_226;// L36 +typedef ____u_long_167 __u_long_227;// L36 +typedef ____quad_t_21 __quad_t_228;// L37 +typedef ____quad_t_176 __quad_t_229;// L37 +typedef ____u_quad_t_22 __u_quad_t_230;// L38 +typedef ____u_quad_t_177 __u_quad_t_231;// L38 +typedef ____fsid_t_36 __fsid_t_232;// L39 +typedef ____fsid_t_191 __fsid_t_233;// L39 +typedef ____loff_t_59 __loff_t_235;// L44 +typedef ____loff_t_214 __loff_t_236;// L44 +typedef ____loff_t_59 __loff_t_238;// L44 +typedef ____loff_t_214 __loff_t_239;// L44 +typedef ____ino64_t_27 __ino_t_241;// L50 +typedef ____ino64_t_182 __ino_t_242;// L50 +typedef ____ino_t_26 __ino_t_244;// L48 +typedef ____ino_t_181 __ino_t_245;// L48 +typedef ____dev_t_23 __dev_t_247;// L60 +typedef ____dev_t_178 __dev_t_248;// L60 +typedef ____gid_t_25 __gid_t_250;// L65 +typedef ____gid_t_180 __gid_t_251;// L65 +typedef ____gid_t_25 __gid_t_253;// L65 +typedef ____gid_t_180 __gid_t_254;// L65 +typedef ____mode_t_28 __mode_t_256;// L70 +typedef ____mode_t_183 __mode_t_257;// L70 +typedef ____nlink_t_29 __nlink_t_259;// L75 +typedef ____nlink_t_184 __nlink_t_260;// L75 +typedef ____uid_t_24 __uid_t_262;// L80 +typedef ____uid_t_179 __uid_t_263;// L80 +typedef ____uid_t_24 __uid_t_265;// L80 +typedef ____uid_t_179 __uid_t_266;// L80 +typedef ____off64_t_31 __off_t_268;// L88 +typedef ____off64_t_186 __off_t_269;// L88 +typedef ____off_t_30 __off_t_271;// L86 +typedef ____off_t_185 __off_t_272;// L86 +typedef ____pid_t_32 __pid_t_274;// L98 +typedef ____pid_t_187 __pid_t_275;// L98 +typedef ____pid_t_32 __pid_t_277;// L98 +typedef ____pid_t_187 __pid_t_278;// L98 +typedef ____id_t_40 __id_t_280;// L104 +typedef ____id_t_195 __id_t_281;// L104 +typedef ____ssize_t_56 __ssize_t_283;// L109 +typedef ____ssize_t_211 __ssize_t_284;// L109 +typedef ____daddr_t_44 __daddr_t_286;// L115 +typedef ____daddr_t_199 __daddr_t_287;// L115 +typedef ____caddr_t_62 __caddr_t_289;// L116 +typedef ____caddr_t_217 __caddr_t_290;// L116 +typedef ____key_t_45 __key_t_291;// L122 +typedef ____key_t_200 __key_t_292;// L122 +typedef ____key_t_45 __key_t_294;// L122 +typedef ____key_t_200 __key_t_295;// L122 +typedef ____clock_t_37 __clock_t_297;// L59 +typedef ____clock_t_192 __clock_t_298;// L59 +typedef ____time_t_41 __time_t_300;// L75 +typedef ____time_t_196 __time_t_301;// L75 +typedef ____clockid_t_46 __clockid_t_303;// L91 +typedef ____clockid_t_201 __clockid_t_304;// L91 +typedef ____timer_t_47 __timer_t_306;// L103 +typedef ____timer_t_202 __timer_t_307;// L103 +typedef unsigned long int __ulong_309;// L150 +typedef unsigned long int __ulong_310;// L150 +typedef unsigned long int __ulong_311;// L150 +typedef unsigned short int __ushort_312;// L151 +typedef unsigned int __uint_313;// L152 +typedef int __int8_t_314;// L188:L194 +typedef int __int16_t_315;// L188:L195 +typedef int __int32_t_316;// L188:L196 +typedef int __int64_t_317;// L188:L197 +typedef unsigned int __u_int8_t_318;// L190:L200 +typedef unsigned int __u_int16_t_319;// L190:L201 +typedef unsigned int __u_int32_t_320;// L190:L202 +typedef unsigned int __u_int64_t_321;// L190:L203 +typedef int __register_t_322;// L205 +typedef int ____sig_atomic_t_328;// L22 +struct ____anonymous_tag_329_330 { +unsigned long int ____val_331[( 1024 / ( 8 * sizeof(unsigned long) ) )];// L29 +}; +typedef struct ____anonymous_tag_329_330 ____sigset_t_332;// L27:L30 +typedef ____sigset_t_332 __sigset_t_333;// L37 +struct __timespec_334 { +____time_t_41 __tv_sec_335;// L0 +____time_t_196 __tv_sec_336;// L0 +____syscall_slong_t_57 __tv_nsec_338;// L0 +____syscall_slong_t_212 __tv_nsec_339;// L0 +}; +struct __timeval_342 { +____time_t_41 __tv_sec_343;// L0 +____time_t_196 __tv_sec_344;// L0 +____suseconds_t_43 __tv_usec_346;// L0 +____suseconds_t_198 __tv_usec_347;// L0 +}; +typedef ____suseconds_t_43 __suseconds_t_350;// L48 +typedef ____suseconds_t_198 __suseconds_t_351;// L48 +typedef long int ____fd_mask_353;// L54 +typedef long int ____fd_mask_354;// L54 +struct ____anonymous_tag_355_356 { +____fd_mask_353 ____fds_bits_357[1024 / ( 8 * ( int ) sizeof(long) )];// L0 +____fd_mask_354 ____fds_bits_359[1024 / ( 8 * ( int ) sizeof(long) )];// L0 +}; +typedef struct ____anonymous_tag_355_356 __fd_set_362;// L64:L75 +typedef ____fd_mask_353 __fd_mask_363;// L82 +typedef ____fd_mask_354 __fd_mask_364;// L82 +typedef ____blksize_t_48 __blksize_t_412;// L228 +typedef ____blksize_t_203 __blksize_t_413;// L228 +typedef ____blkcnt_t_49 __blkcnt_t_415;// L235 +typedef ____blkcnt_t_204 __blkcnt_t_416;// L235 +typedef ____fsblkcnt_t_51 __fsblkcnt_t_418;// L239 +typedef ____fsblkcnt_t_206 __fsblkcnt_t_419;// L239 +typedef ____blkcnt64_t_50 __blkcnt_t_421;// L248 +typedef ____blkcnt64_t_205 __blkcnt_t_422;// L248 +typedef ____fsblkcnt64_t_52 __fsblkcnt_t_424;// L252 +typedef ____fsblkcnt64_t_207 __fsblkcnt_t_425;// L252 +typedef ____fsfilcnt_t_53 __fsfilcnt_t_427;// L243 +typedef ____fsfilcnt_t_208 __fsfilcnt_t_428;// L243 +typedef ____fsfilcnt64_t_54 __fsfilcnt_t_430;// L256 +typedef ____fsfilcnt64_t_209 __fsfilcnt_t_431;// L256 +typedef unsigned long int __pthread_t_433;// L60 +union __pthread_attr_t_434 { +char ____size_435[56];// L65 +long int ____align_436;// L66 +}; +typedef union __pthread_attr_t_434 __pthread_attr_t_437;// L69 +struct ____pthread_internal_list_439 { +struct __forward_tag_reference_438 * (____prev_440);// L0 +struct __forward_tag_reference_438 * (____next_441);// L0 +}; +typedef struct ____pthread_internal_list_439 ____pthread_list_t_442;// L75:L79 +typedef struct ____pthread_internal_list_439 ____pthread_list_t_443;// L75:L79 +struct ____pthread_mutex_s_444 { +int ____lock_445;// L94 +unsigned int ____count_446;// L95 +int ____owner_447;// L96 +unsigned int ____nusers_448;// L98 +int ____kind_449;// L102 +short ____spins_450;// L104 +short ____elision_451;// L105 +____pthread_list_t_442 ____list_452;// L0 +____pthread_list_t_443 ____list_453;// L0 }; -typedef struct ____anonymous_tag_3_4 __div_t_7;// L97:L101 -struct ____anonymous_tag_8_9 { -long int __quot_10;// L107 -long int __rem_11;// L108 +union ____anonymous_tag_454_455 { +struct ____pthread_mutex_s_444 ____data_456;// L92 +char ____size_457[40];// L126 +long int ____align_458;// L127 +}; +typedef union ____anonymous_tag_454_455 __pthread_mutex_t_459;// L90:L128 +union ____anonymous_tag_460_461 { +char ____size_462[4];// L132 +int ____align_463;// L133 +}; +typedef union ____anonymous_tag_460_461 __pthread_mutexattr_t_464;// L130:L134 +typedef int (* (____compar_fn_t_572)) (const void *, const void *);// L741 + +struct __forward_tag_reference_438 { // generated union of struct variations +union { }; -typedef struct ____anonymous_tag_8_9 __ldiv_t_12;// L105:L109 -struct ____anonymous_tag_13_14 { -long long int __quot_15;// L119 -long long int __rem_16;// L120 }; -typedef struct ____anonymous_tag_13_14 __lldiv_t_17;// L117:L121 -typedef int (* (____compar_fn_t_100)) (const void *, const void *);// L741 // typedef moved to top of scope // typedef moved to top of scope @@ -162,123 +845,468 @@ typedef int (* (____compar_fn_t_100)) (const void *, const void *);// L741 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern __size_t_1 (____ctype_get_mb_cur_max_18) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_19) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_20) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_21) (void );// L139 -extern double (__atof_23) (const char * (____nptr_22));// L144:L145 -extern double (__atof_24) (const char * (____nptr_22));// L144:L145 -extern int (__atoi_26) (const char * (____nptr_25));// L147:L148 -extern int (__atoi_27) (const char * (____nptr_25));// L147:L148 -extern long int (__atol_29) (const char * (____nptr_28));// L150:L151 -extern long int (__atol_30) (const char * (____nptr_28));// L150:L151 -extern long long int (__atoll_32) (const char * (____nptr_31));// L157:L158 -extern long long int (__atoll_33) (const char * (____nptr_31));// L157:L158 -extern double (__strtod_36) (const char * __restrict ____nptr_34, char * (* __restrict ____endptr_35));// L164:L166 -extern float (__strtof_39) (const char * __restrict ____nptr_37, char * (* __restrict ____endptr_38));// L172:L173 -extern long double (__strtold_42) (const char * __restrict ____nptr_40, char * (* __restrict ____endptr_41));// L175:L177 -extern long int (__strtol_46) (const char * __restrict ____nptr_43, char * (* __restrict ____endptr_44), int ____base_45);// L183:L185 -extern unsigned long int (__strtoul_50) (const char * __restrict ____nptr_47, char * (* __restrict ____endptr_48), int ____base_49);// L187:L189 -extern long long int (__strtoll_54) (const char * __restrict ____nptr_51, char * (* __restrict ____endptr_52), int ____base_53);// L209:L211 -extern unsigned long long int (__strtoull_58) (const char * __restrict ____nptr_55, char * (* __restrict ____endptr_56), int ____base_57);// L214:L216 -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -__extension__/* no function due to type errors in the function prototype */ -extern int (__rand_62) (void );// L374 -extern int (__rand_63) (void );// L374 -extern void (__srand_65) (unsigned int ____seed_64);// L376 -extern void * ((__malloc_67) (__size_t_1 ____size_66));// L466 -extern void * ((__malloc_68) (__size_t_1 ____size_66));// L466 -extern void * ((__calloc_71) (__size_t_1 ____nmemb_69, __size_t_1 ____size_70));// L468:L469 -extern void * ((__calloc_72) (__size_t_1 ____nmemb_69, __size_t_1 ____size_70));// L468:L469 -extern void * ((__realloc_75) (void * (____ptr_73), __size_t_1 ____size_74));// L480:L481 -extern void * ((__realloc_76) (void * (____ptr_73), __size_t_1 ____size_74));// L480:L481 -extern void (__free_78) (void * (____ptr_77));// L483 -extern void * ((__aligned_alloc_81) (__size_t_1 ____alignment_79, __size_t_1 ____size_80));// L509:L510 -extern void * ((__aligned_alloc_82) (__size_t_1 ____alignment_79, __size_t_1 ____size_80));// L509:L510 -extern void (__abort_83) (void );// L515 -extern int (__atexit_85) (void (* (____func_84)) (void ));// L519 -extern int (__at_quick_exit_87) (void (* (____func_86)) (void ));// L527 -extern void (__exit_89) (int ____status_88);// L543 -extern void (__quick_exit_91) (int ____status_90);// L549 -extern void (___Exit_93) (int ____status_92);// L557 -extern char * ((__getenv_95) (const char * (____name_94)));// L564 -extern char * ((__getenv_96) (const char * (____name_94)));// L564 -extern int (__system_98) (const char * (____command_97));// L716 -extern int (__system_99) (const char * (____command_97));// L716 -// typedef moved to top of scope -extern void * ((__bsearch_108) (const void * (____key_101), const void * (____base_102), __size_t_1 ____nmemb_103, __size_t_1 ____size_104, ____compar_fn_t_100 ____compar_105));// L754:L756 -extern void * ((__bsearch_110) (const void * (____key_101), const void * (____base_102), __size_t_1 ____nmemb_103, __size_t_1 ____size_104, ____compar_fn_t_100 ____compar_105));// L754:L756 -/* no function due to type errors in the function prototype */ -extern void (__qsort_129) (void * (____base_124), __size_t_1 ____nmemb_125, __size_t_1 ____size_126, ____compar_fn_t_100 ____compar_127);// L764:L765 -extern void (__qsort_131) (void * (____base_124), __size_t_1 ____nmemb_125, __size_t_1 ____size_126, ____compar_fn_t_100 ____compar_127);// L764:L765 -extern int (__abs_134) (int ____x_133);// L774 -extern int (__abs_135) (int ____x_133);// L774 -extern long int (__labs_137) (long int ____x_136);// L775 -extern long int (__labs_138) (long int ____x_136);// L775 -extern long long int (__llabs_140) (long long int ____x_139);// L779:L780 -extern long long int (__llabs_141) (long long int ____x_139);// L779:L780 -extern __div_t_7 (__div_144) (int ____numer_142, int ____denom_143);// L788:L789 -extern __div_t_7 (__div_145) (int ____numer_142, int ____denom_143);// L788:L789 -extern __ldiv_t_12 (__ldiv_148) (long int ____numer_146, long int ____denom_147);// L790:L791 -extern __ldiv_t_12 (__ldiv_150) (long int ____numer_146, long int ____denom_147);// L790:L791 -extern __lldiv_t_17 (__lldiv_154) (long long int ____numer_152, long long int ____denom_153);// L796:L798 -extern __lldiv_t_17 (__lldiv_156) (long long int ____numer_152, long long int ____denom_153);// L796:L798 -extern int (__mblen_160) (const char * (____s_158), __size_t_1 ____n_159);// L862 -extern int (__mbtowc_164) (__wchar_t_2 * __restrict ____pwc_161, const char * __restrict ____s_162, __size_t_1 ____n_163);// L865:L866 -extern int (__wctomb_167) (char * (____s_165), __wchar_t_2 ____wchar_166);// L869 -extern __size_t_1 (__mbstowcs_171) (__wchar_t_2 * __restrict ____pwcs_168, const char * __restrict ____s_169, __size_t_1 ____n_170);// L873:L874 -extern __size_t_1 (__wcstombs_175) (char * __restrict ____s_172, const __wchar_t_2 * __restrict ____pwcs_173, __size_t_1 ____n_174);// L876:L878 -/* no function due to type errors in the function prototype */ -extern char * ((____realpath_chk_180) (const char * __restrict ____name_177, char * __restrict ____resolved_178, __size_t_1 ____resolvedlen_179));// L23:L25 -extern char * ((____realpath_alias_183) (const char * __restrict ____name_181, char * __restrict ____resolved_182));// L26:L28 -extern char * ((____realpath_chk_warn_187) (const char * __restrict ____name_184, char * __restrict ____resolved_185, __size_t_1 ____resolvedlen_186));// L29:L34 -/* no function due to type errors in the function prototype */ -extern int (____ptsname_r_chk_195) (int ____fd_191, char * (____buf_192), __size_t_1 ____buflen_193, __size_t_1 ____nreal_194);// L52:L53 -extern int (____ptsname_r_alias_199) (int ____fd_196, char * (____buf_197), __size_t_1 ____buflen_198);// L54:L56 -extern int (____ptsname_r_chk_warn_204) (int ____fd_200, char * (____buf_201), __size_t_1 ____buflen_202, __size_t_1 ____nreal_203);// L57:L61 -/* no function due to type errors in the function prototype */ -extern int (____wctomb_chk_212) (char * (____s_209), __wchar_t_2 ____wchar_210, __size_t_1 ____buflen_211);// L77:L78 -extern int (____wctomb_alias_215) (char * (____s_213), __wchar_t_2 ____wchar_214);// L79:L80 -/* no function due to type errors in the function prototype */ -extern __size_t_1 (____mbstowcs_chk_222) (__wchar_t_2 * __restrict ____dst_218, const char * __restrict ____src_219, __size_t_1 ____len_220, __size_t_1 ____dstlen_221);// L98:L100 -extern __size_t_1 (____mbstowcs_alias_226) (__wchar_t_2 * __restrict ____dst_223, const char * __restrict ____src_224, __size_t_1 ____len_225);// L101:L104 -extern __size_t_1 (____mbstowcs_chk_warn_231) (__wchar_t_2 * __restrict ____dst_227, const char * __restrict ____src_228, __size_t_1 ____len_229, __size_t_1 ____dstlen_230);// L105:L110 -/* no function due to type errors in the function prototype */ -extern __size_t_1 (____wcstombs_chk_239) (char * __restrict ____dst_235, const __wchar_t_2 * __restrict ____src_236, __size_t_1 ____len_237, __size_t_1 ____dstlen_238);// L130:L132 -extern __size_t_1 (____wcstombs_alias_243) (char * __restrict ____dst_240, const __wchar_t_2 * __restrict ____src_241, __size_t_1 ____len_242);// L133:L136 -extern __size_t_1 (____wcstombs_chk_warn_248) (char * __restrict ____dst_244, const __wchar_t_2 * __restrict ____src_245, __size_t_1 ____len_246, __size_t_1 ____dstlen_247);// L137:L141 -/* no function due to type errors in the function prototype */ -static unsigned int __all_fmt_252;// L9 -static unsigned int __all_fmt_253;// L9 -int (__main_256) (int __argc_254, char * (* (__argv_255))) { +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +static __inline unsigned int (____bswap_32_66) (unsigned int ____bsx_65) { + +if (__static_condition_default_67) { { { -__static_type_error("type error : no valid expression"); // L13 -if (__static_condition_default_257) { -if ( rand( ) % 2 )// L15 +__static_type_error("invalid type found in return expression"); +} +} + + +} +} +static __inline ____uint64_t_20 (____bswap_64_69) (____uint64_t_20 ____bsx_68) { + +if (__static_condition_default_67) { + +{ { + + +__static_type_error("invalid type found in return expression"); +} +} + + +} +} +union __wait_81 ;// L66 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern __size_t_1 (____ctype_get_mb_cur_max_105) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_106) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_107) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_108) (void );// L139 +extern double (__atof_110) (const char * (____nptr_109));// L144:L145 +extern double (__atof_111) (const char * (____nptr_109));// L144:L145 +extern int (__atoi_113) (const char * (____nptr_112));// L147:L148 +extern int (__atoi_114) (const char * (____nptr_112));// L147:L148 +extern long int (__atol_116) (const char * (____nptr_115));// L150:L151 +extern long int (__atol_117) (const char * (____nptr_115));// L150:L151 +extern long long int (__atoll_119) (const char * (____nptr_118));// L157:L158 +extern long long int (__atoll_120) (const char * (____nptr_118));// L157:L158 +extern double (__strtod_123) (const char * __restrict ____nptr_121, char * (* __restrict ____endptr_122));// L164:L166 +extern float (__strtof_126) (const char * __restrict ____nptr_124, char * (* __restrict ____endptr_125));// L172:L173 +extern long double (__strtold_129) (const char * __restrict ____nptr_127, char * (* __restrict ____endptr_128));// L175:L177 +extern long int (__strtol_133) (const char * __restrict ____nptr_130, char * (* __restrict ____endptr_131), int ____base_132);// L183:L185 +extern unsigned long int (__strtoul_137) (const char * __restrict ____nptr_134, char * (* __restrict ____endptr_135), int ____base_136);// L187:L189 +extern long long int (__strtoq_141) (const char * __restrict ____nptr_138, char * (* __restrict ____endptr_139), int ____base_140);// L195:L197 +extern unsigned long long int (__strtouq_145) (const char * __restrict ____nptr_142, char * (* __restrict ____endptr_143), int ____base_144);// L200:L202 +extern long long int (__strtoll_149) (const char * __restrict ____nptr_146, char * (* __restrict ____endptr_147), int ____base_148);// L209:L211 +extern long long int (__strtoll_150) (const char * __restrict ____nptr_146, char * (* __restrict ____endptr_147), int ____base_148);// L209:L211 +extern unsigned long long int (__strtoull_154) (const char * __restrict ____nptr_151, char * (* __restrict ____endptr_152), int ____base_153);// L214:L216 +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +__extension__/* no function due to type errors in the function prototype */ +extern char * ((__l64a_159) (long int ____n_158));// L305 +extern char * ((__l64a_160) (long int ____n_158));// L305 +extern long int (__a64l_162) (const char * (____s_161));// L308:L309 +extern long int (__a64l_163) (const char * (____s_161));// L308:L309 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +static __inline unsigned int (____bswap_32_324) (unsigned int ____bsx_323) { + +if (__static_condition_default_325) { + { { -if (__static_condition_default_258) { - __all_fmt_252 &= ~ ( 3U << 23 ) ; // L4:L16 +__static_type_error("invalid type found in return expression"); +} +} + + } -if (__static_condition_default_259) { - __all_fmt_253 &= ~ ( 3U << 23 ) ; // L4:L16 } +static __inline ____uint64_t_175 (____bswap_64_327) (____uint64_t_175 ____bsx_326) { + +if (__static_condition_default_325) { + +{ +{ + + + +__static_type_error("invalid type found in return expression"); } } + + } } -if (__static_condition_default_260) { +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +struct __timespec_334 ;// L120 + +struct __timeval_342 ;// L30 + +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern int (__select_376) (int ____nfds_365, __fd_set_362 * __restrict ____readfds_366, __fd_set_362 * __restrict ____writefds_368, __fd_set_362 * __restrict ____exceptfds_370, struct __timeval_342 * __restrict ____timeout_373);// L106:L109 +extern int (__select_377) (int ____nfds_365, __fd_set_362 * __restrict ____readfds_366, __fd_set_362 * __restrict ____writefds_368, __fd_set_362 * __restrict ____exceptfds_370, struct __forward_tag_reference_372 * __restrict ____timeout_375);// L106:L109 +extern int (__pselect_392) (int ____nfds_380, __fd_set_362 * __restrict ____readfds_381, __fd_set_362 * __restrict ____writefds_383, __fd_set_362 * __restrict ____exceptfds_385, const struct __timespec_334 * __restrict ____timeout_388, const ____sigset_t_332 * __restrict ____sigmask_391);// L118:L122 +extern int (__pselect_393) (int ____nfds_380, __fd_set_362 * __restrict ____readfds_381, __fd_set_362 * __restrict ____writefds_383, __fd_set_362 * __restrict ____exceptfds_385, const struct __forward_tag_reference_387 * __restrict ____timeout_390, const ____sigset_t_332 * __restrict ____sigmask_391);// L118:L122 +extern long int (____fdelt_chk_397) (long int ____d_396);// L24 +extern long int (____fdelt_warn_399) (long int ____d_398);// L25:L26 +extern unsigned int (__gnu_dev_major_401) (unsigned long long int ____dev_400);// L27:L28 +extern unsigned int (__gnu_dev_major_402) (unsigned long long int ____dev_400);// L27:L28 +extern unsigned int (__gnu_dev_minor_404) (unsigned long long int ____dev_403);// L30:L31 +extern unsigned long long int (__gnu_dev_makedev_407) (unsigned int ____major_405, unsigned int ____minor_406);// L33:L35 +__extension__/* no function due to type errors in the function prototype */ +__extension__/* no function due to type errors in the function prototype */ +__extension__/* no function due to type errors in the function prototype */ +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +union __pthread_attr_t_434 ;// L63 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern int (__rand_465) (void );// L374 +extern void (__srand_467) (unsigned int ____seed_466);// L376 +extern int (__rand_r_469) (unsigned int * (____seed_468));// L381 +extern double (__drand48_470) (void );// L389 +extern double (__erand48_472) (unsigned short int ____xsubi_471[3]);// L390 +extern long int (__lrand48_473) (void );// L393 +extern long int (__nrand48_475) (unsigned short int ____xsubi_474[3]);// L394:L395 +extern long int (__mrand48_476) (void );// L398 +extern long int (__jrand48_478) (unsigned short int ____xsubi_477[3]);// L399:L400 +extern void (__srand48_480) (long int ____seedval_479);// L403 +extern unsigned short int * ((__seed48_482) (unsigned short int ____seed16v_481[3]));// L404:L405 +extern void (__lcong48_484) (unsigned short int ____param_483[7]);// L406 +extern void * ((__malloc_486) (__size_t_1 ____size_485));// L466 +extern void * ((__malloc_487) (__size_t_1 ____size_485));// L466 +extern void * ((__calloc_490) (__size_t_1 ____nmemb_488, __size_t_1 ____size_489));// L468:L469 +extern void * ((__calloc_491) (__size_t_1 ____nmemb_488, __size_t_1 ____size_489));// L468:L469 +extern void * ((__realloc_494) (void * (____ptr_492), __size_t_1 ____size_493));// L480:L481 +extern void (__free_496) (void * (____ptr_495));// L483 +extern void (__cfree_498) (void * (____ptr_497));// L488 +extern void * ((__alloca_500) (__size_t_1 ____size_499));// L32 +extern void * ((__valloc_502) (__size_t_1 ____size_501));// L498 +extern void * ((__valloc_503) (__size_t_1 ____size_501));// L498 +extern int (__posix_memalign_507) (void * (* (____memptr_504)), __size_t_1 ____alignment_505, __size_t_1 ____size_506);// L503:L504 +extern int (__posix_memalign_508) (void * (* (____memptr_504)), __size_t_1 ____alignment_505, __size_t_1 ____size_506);// L503:L504 +extern void * ((__aligned_alloc_511) (__size_t_1 ____alignment_509, __size_t_1 ____size_510));// L509:L510 +extern void * ((__aligned_alloc_512) (__size_t_1 ____alignment_509, __size_t_1 ____size_510));// L509:L510 +extern void * ((__aligned_alloc_513) (__size_t_1 ____alignment_509, __size_t_1 ____size_510));// L509:L510 +extern void * ((__aligned_alloc_514) (__size_t_1 ____alignment_509, __size_t_1 ____size_510));// L509:L510 +extern void (__abort_515) (void );// L515 +extern int (__atexit_517) (void (* (____func_516)) (void ));// L519 +extern int (__at_quick_exit_519) (void (* (____func_518)) (void ));// L527 +extern int (__on_exit_524) (void (* (____func_522)) (int ____status_520, void * (____arg_521)), void * (____arg_523));// L535:L536 +extern void (__exit_526) (int ____status_525);// L543 +extern void (__exit_527) (int ____status_525);// L543 +extern void (__quick_exit_529) (int ____status_528);// L549 +extern void (___Exit_531) (int ____status_530);// L557 +extern char * ((__getenv_533) (const char * (____name_532)));// L564 +extern char * ((__getenv_534) (const char * (____name_532)));// L564 +extern int (__putenv_536) (char * (____string_535));// L578 +extern int (__setenv_540) (const char * (____name_537), const char * (____value_538), int ____replace_539);// L584:L585 +extern int (__unsetenv_542) (const char * (____name_541));// L588 +extern int (__clearenv_543) (void );// L595 +extern char * ((__mktemp_545) (char * (____template_544)));// L606 +extern int (__mkstemp_548) (char * (____template_546));// L619 +extern int (__mkstemp_550) (char * (____template_546));// L619 +extern int (__mkstemp_549) (char * (____template_547));// L622:L623 +extern int (__mkstemp_551) (char * (____template_547));// L622:L623 +extern int (__mkstemps_556) (char * (____template_552), int ____suffixlen_553);// L641 +extern int (__mkstemps_557) (char * (____template_554), int ____suffixlen_555);// L644:L645 +extern int (__mkstemps_558) (char * (____template_552), int ____suffixlen_553);// L641 +extern int (__mkstemps_559) (char * (____template_554), int ____suffixlen_555);// L644:L645 +extern char * ((__mkdtemp_561) (char * (____template_560)));// L662 +extern char * ((__mkdtemp_562) (char * (____template_560)));// L662 +extern int (__system_564) (const char * (____command_563));// L716 +extern int (__system_565) (const char * (____command_563));// L716 +extern int (__system_566) (const char * (____command_563));// L716 +extern int (__system_567) (const char * (____command_563));// L716 +extern char * ((__realpath_570) (const char * __restrict ____name_568, char * __restrict ____resolved_569));// L733:L734 +extern char * ((__realpath_571) (const char * __restrict ____name_568, char * __restrict ____resolved_569));// L733:L734 +// typedef moved to top of scope +extern void * ((__bsearch_580) (const void * (____key_573), const void * (____base_574), __size_t_1 ____nmemb_575, __size_t_1 ____size_576, ____compar_fn_t_572 ____compar_577));// L754:L756 +extern void * ((__bsearch_582) (const void * (____key_573), const void * (____base_574), __size_t_1 ____nmemb_575, __size_t_1 ____size_576, ____compar_fn_t_572 ____compar_577));// L754:L756 +/* no function due to type errors in the function prototype */ +extern void (__qsort_601) (void * (____base_596), __size_t_1 ____nmemb_597, __size_t_1 ____size_598, ____compar_fn_t_572 ____compar_599);// L764:L765 +extern void (__qsort_603) (void * (____base_596), __size_t_1 ____nmemb_597, __size_t_1 ____size_598, ____compar_fn_t_572 ____compar_599);// L764:L765 +extern int (__abs_606) (int ____x_605);// L774 +extern int (__abs_607) (int ____x_605);// L774 +extern long int (__labs_609) (long int ____x_608);// L775 +extern long int (__labs_610) (long int ____x_608);// L775 +extern long long int (__llabs_612) (long long int ____x_611);// L779:L780 +extern long long int (__llabs_613) (long long int ____x_611);// L779:L780 +extern __div_t_94 (__div_616) (int ____numer_614, int ____denom_615);// L788:L789 +extern __div_t_94 (__div_617) (int ____numer_614, int ____denom_615);// L788:L789 +extern __ldiv_t_99 (__ldiv_620) (long int ____numer_618, long int ____denom_619);// L790:L791 +extern __ldiv_t_99 (__ldiv_622) (long int ____numer_618, long int ____denom_619);// L790:L791 +extern __lldiv_t_104 (__lldiv_626) (long long int ____numer_624, long long int ____denom_625);// L796:L798 +extern __lldiv_t_104 (__lldiv_628) (long long int ____numer_624, long long int ____denom_625);// L796:L798 +extern char * ((__ecvt_634) (double ____value_630, int ____ndigit_631, int * __restrict ____decpt_632, int * __restrict ____sign_633));// L811:L812 +extern char * ((__ecvt_635) (double ____value_630, int ____ndigit_631, int * __restrict ____decpt_632, int * __restrict ____sign_633));// L811:L812 +extern char * ((__fcvt_640) (double ____value_636, int ____ndigit_637, int * __restrict ____decpt_638, int * __restrict ____sign_639));// L817:L818 +extern char * ((__fcvt_641) (double ____value_636, int ____ndigit_637, int * __restrict ____decpt_638, int * __restrict ____sign_639));// L817:L818 +extern char * ((__gcvt_645) (double ____value_642, int ____ndigit_643, char * (____buf_644)));// L823:L824 +extern char * ((__gcvt_646) (double ____value_642, int ____ndigit_643, char * (____buf_644)));// L823:L824 +extern char * ((__qecvt_651) (long double ____value_647, int ____ndigit_648, int * __restrict ____decpt_649, int * __restrict ____sign_650));// L829:L831 +extern char * ((__qecvt_652) (long double ____value_647, int ____ndigit_648, int * __restrict ____decpt_649, int * __restrict ____sign_650));// L829:L831 +extern char * ((__qfcvt_657) (long double ____value_653, int ____ndigit_654, int * __restrict ____decpt_655, int * __restrict ____sign_656));// L832:L834 +extern char * ((__qfcvt_658) (long double ____value_653, int ____ndigit_654, int * __restrict ____decpt_655, int * __restrict ____sign_656));// L832:L834 +extern char * ((__qgcvt_662) (long double ____value_659, int ____ndigit_660, char * (____buf_661)));// L835:L836 +extern char * ((__qgcvt_663) (long double ____value_659, int ____ndigit_660, char * (____buf_661)));// L835:L836 +extern int (__ecvt_r_670) (double ____value_664, int ____ndigit_665, int * __restrict ____decpt_666, int * __restrict ____sign_667, char * __restrict ____buf_668, __size_t_1 ____len_669);// L841:L843 +extern int (__fcvt_r_677) (double ____value_671, int ____ndigit_672, int * __restrict ____decpt_673, int * __restrict ____sign_674, char * __restrict ____buf_675, __size_t_1 ____len_676);// L844:L846 +extern int (__qecvt_r_684) (long double ____value_678, int ____ndigit_679, int * __restrict ____decpt_680, int * __restrict ____sign_681, char * __restrict ____buf_682, __size_t_1 ____len_683);// L848:L851 +extern int (__qfcvt_r_691) (long double ____value_685, int ____ndigit_686, int * __restrict ____decpt_687, int * __restrict ____sign_688, char * __restrict ____buf_689, __size_t_1 ____len_690);// L852:L855 +extern int (__mblen_694) (const char * (____s_692), __size_t_1 ____n_693);// L862 +extern int (__mblen_695) (const char * (____s_692), __size_t_1 ____n_693);// L862 +extern int (__mbtowc_699) (__wchar_t_2 * __restrict ____pwc_696, const char * __restrict ____s_697, __size_t_1 ____n_698);// L865:L866 +extern int (__wctomb_702) (char * (____s_700), __wchar_t_2 ____wchar_701);// L869 +extern __size_t_1 (__mbstowcs_706) (__wchar_t_2 * __restrict ____pwcs_703, const char * __restrict ____s_704, __size_t_1 ____n_705);// L873:L874 +extern __size_t_1 (__wcstombs_710) (char * __restrict ____s_707, const __wchar_t_2 * __restrict ____pwcs_708, __size_t_1 ____n_709);// L876:L878 +extern int (__rpmatch_713) (const char * (____response_711));// L887 +extern int (__rpmatch_712) (const char * (____response_711));// L887 +extern int (__getsubopt_718) (char * (* __restrict ____optionp_714), char * const * __restrict ____tokens_715, char * (* __restrict ____valuep_716));// L898:L901 +extern int (__getsubopt_717) (char * (* __restrict ____optionp_714), char * const * __restrict ____tokens_715, char * (* __restrict ____valuep_716));// L898:L901 +extern int (__getloadavg_721) (double ____loadavg_719[], int ____nelem_720);// L950:L951 +/* no function due to type errors in the function prototype */ +extern char * ((____realpath_chk_726) (const char * __restrict ____name_723, char * __restrict ____resolved_724, __size_t_1 ____resolvedlen_725));// L23:L25 +extern char * ((____realpath_alias_729) (const char * __restrict ____name_727, char * __restrict ____resolved_728));// L26:L28 +extern char * ((____realpath_chk_warn_733) (const char * __restrict ____name_730, char * __restrict ____resolved_731, __size_t_1 ____resolvedlen_732));// L29:L34 +/* no function due to type errors in the function prototype */ +extern int (____ptsname_r_chk_741) (int ____fd_737, char * (____buf_738), __size_t_1 ____buflen_739, __size_t_1 ____nreal_740);// L52:L53 +extern int (____ptsname_r_alias_745) (int ____fd_742, char * (____buf_743), __size_t_1 ____buflen_744);// L54:L56 +extern int (____ptsname_r_chk_warn_750) (int ____fd_746, char * (____buf_747), __size_t_1 ____buflen_748, __size_t_1 ____nreal_749);// L57:L61 +/* no function due to type errors in the function prototype */ +extern int (____wctomb_chk_758) (char * (____s_755), __wchar_t_2 ____wchar_756, __size_t_1 ____buflen_757);// L77:L78 +extern int (____wctomb_alias_761) (char * (____s_759), __wchar_t_2 ____wchar_760);// L79:L80 +/* no function due to type errors in the function prototype */ +extern __size_t_1 (____mbstowcs_chk_768) (__wchar_t_2 * __restrict ____dst_764, const char * __restrict ____src_765, __size_t_1 ____len_766, __size_t_1 ____dstlen_767);// L98:L100 +extern __size_t_1 (____mbstowcs_alias_772) (__wchar_t_2 * __restrict ____dst_769, const char * __restrict ____src_770, __size_t_1 ____len_771);// L101:L104 +extern __size_t_1 (____mbstowcs_chk_warn_777) (__wchar_t_2 * __restrict ____dst_773, const char * __restrict ____src_774, __size_t_1 ____len_775, __size_t_1 ____dstlen_776);// L105:L110 +/* no function due to type errors in the function prototype */ +extern __size_t_1 (____wcstombs_chk_785) (char * __restrict ____dst_781, const __wchar_t_2 * __restrict ____src_782, __size_t_1 ____len_783, __size_t_1 ____dstlen_784);// L130:L132 +extern __size_t_1 (____wcstombs_alias_789) (char * __restrict ____dst_786, const __wchar_t_2 * __restrict ____src_787, __size_t_1 ____len_788);// L133:L136 +extern __size_t_1 (____wcstombs_chk_warn_794) (char * __restrict ____dst_790, const __wchar_t_2 * __restrict ____src_791, __size_t_1 ____len_792, __size_t_1 ____dstlen_793);// L137:L141 +/* no function due to type errors in the function prototype */ +static unsigned int __all_fmt_798;// L9 +static unsigned int __all_fmt_799;// L9 +static unsigned int __all_fmt_800;// L9 +int (__main_803) (int __argc_801, char * (* (__argv_802))) { + +{ +{ + + + +__static_type_error("type error : no valid expression"); // L13 +if (__static_condition_default_804) { if ( rand( ) % 2 )// L15 { @@ -287,15 +1315,21 @@ if ( rand( ) % 2 )// L15 -if (__static_condition_default_261) { - __all_fmt_252 &= ~ ( 3U << 23 ) ; // L4:L16 +if (__static_condition_default_805) { + __all_fmt_798 &= ~ ( 3U << 23 ) ; // L4:L16 +} +if (__static_condition_default_806) { + __all_fmt_800 &= ~ ( 3U << 23 ) ; // L4:L16 +} +if (__static_condition_default_807) { +__static_type_error("type error : no valid expression"); // L16 } -if (__static_condition_default_262) { - __all_fmt_253 &= ~ ( 3U << 23 ) ; // L4:L16 } } } } +if (__static_condition_default_808) { +__static_type_error("invalid type found in if statement"); } return 0 ;// L19 } diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c index e855ccf0..9a514db0 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c @@ -7,260 +7,404 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_1831; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_1017; +extern const bool __static_condition_default_455; +extern const bool __static_condition_default_2321; +extern const bool __static_condition_default_1753; +extern const bool __static_condition_default_512; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_791; +extern const bool __static_condition_default_1381; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_1405; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_2400; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_1315; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_2409; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_388; +extern const bool __static_condition_default_2381; +extern const bool __static_condition_default_1556; +extern const bool __static_condition_default_753; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_677; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_2408; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_721; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_559; +extern const bool __static_condition_default_2456; +extern const bool __static_condition_default_789; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_1774; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_1789; +extern const bool __static_condition_default_1432; +extern const bool __static_condition_default_1152; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_670; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_1349; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_1785; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_2046; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_1754; +extern const bool __static_condition_default_1424; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_2328; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_2436; +extern const bool __static_condition_default_1475; +extern const bool __static_condition_default_521; +extern const bool __static_condition_default_1459; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_1164; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_568; extern const bool __static_condition_default_573; -extern const bool __static_condition_default_774; -extern const bool __static_condition_default_451; -extern const bool __static_condition_default_320; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_343; -extern const bool __static_condition_default_300; -extern const bool __static_condition_default_496; -extern const bool __static_condition_default_579; -extern const bool __static_condition_default_766; -extern const bool __static_condition_default_495; -extern const bool __static_condition_default_882; -extern const bool __static_condition_default_1407; -extern const bool __static_condition_default_961; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_254; -extern const bool __static_condition_default_470; -extern const bool __static_condition_default_983; -extern const bool __static_condition_default_304; -extern const bool __static_condition_default_1430; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_2406; +extern const bool __static_condition_default_2431; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_84; +extern const bool __static_condition_default_1035; extern const bool __static_condition_default_625; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_1384; -extern const bool __static_condition_default_517; +extern const bool __static_condition_default_2063; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_552; extern const bool __static_condition_default_817; -extern const bool __static_condition_default_1794; -extern const bool __static_condition_default_448; -extern const bool __static_condition_default_118; -extern const bool __static_condition_default_898; -extern const bool __static_condition_default_641; -extern const bool __static_condition_default_833; -extern const bool __static_condition_default_1167; -extern const bool __static_condition_default_459; -extern const bool __static_condition_default_234; -extern const bool __static_condition_default_1432; -extern const bool __static_condition_default_1606; -extern const bool __static_condition_default_421; -extern const bool __static_condition_default_551; -extern const bool __static_condition_default_501; -extern const bool __static_condition_default_308; -extern const bool __static_condition_default_889; -extern const bool __static_condition_default_718; -extern const bool __static_condition_default_680; -extern const bool __static_condition_default_379; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_393; -extern const bool __static_condition_default_457; -extern const bool __static_condition_default_1862; -extern const bool __static_condition_default_318; -extern const bool __static_condition_default_696; -extern const bool __static_condition_default_332; -extern const bool __static_condition_default_256; -extern const bool __static_condition_default_429; -extern const bool __static_condition_default_374; -extern const bool __static_condition_default_507; -extern const bool __static_condition_default_567; -extern const bool __static_condition_default_941; -extern const bool __static_condition_default_707; -extern const bool __static_condition_default_400; -extern const bool __static_condition_default_1835; -extern const bool __static_condition_default_1833; -extern const bool __static_condition_default_935; -extern const bool __static_condition_default_500; -extern const bool __static_condition_default_739; -extern const bool __static_condition_default_639; -extern const bool __static_condition_default_798; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_790; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_1878; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_1006; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_232; -extern const bool __static_condition_default_370; -extern const bool __static_condition_default_1426; -extern const bool __static_condition_default_326; -extern const bool __static_condition_default_508; -extern const bool __static_condition_default_998; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_2435; +extern const bool __static_condition_default_1345; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_1560; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_2415; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_2439; +extern const bool __static_condition_default_1485; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_1749; +extern const bool __static_condition_default_549; +extern const bool __static_condition_default_2432; +extern const bool __static_condition_default_2378; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_1564; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_2405; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_702; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_2448; +extern const bool __static_condition_default_2351; +extern const bool __static_condition_default_2438; +extern const bool __static_condition_default_536; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_1369; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_769; +extern const bool __static_condition_default_2404; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_2401; +extern const bool __static_condition_default_636; +extern const bool __static_condition_default_1532; +extern const bool __static_condition_default_1552; +extern const bool __static_condition_default_2433; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_2045; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_752; extern const bool __static_condition_default_274; -extern const bool __static_condition_default_627; -extern const bool __static_condition_default_1864; -extern const bool __static_condition_default_533; -extern const bool __static_condition_default_1818; -extern const bool __static_condition_default_161; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_1388; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_846; +extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_891; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_907; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_1489; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_2460; +extern const bool __static_condition_default_2047; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_2064; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_1402; +extern const bool __static_condition_default_382; +extern const bool __static_condition_default_1043; extern const bool __static_condition_default_223; -extern const bool __static_condition_default_772; -extern const bool __static_condition_default_226; -extern const bool __static_condition_default_1836; -extern const bool __static_condition_default_794; -extern const bool __static_condition_default_642; -extern const bool __static_condition_default_648; -extern const bool __static_condition_default_820; -extern const bool __static_condition_default_603; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_294; -extern const bool __static_condition_default_870; -extern const bool __static_condition_default_330; -extern const bool __static_condition_default_1785; -extern const bool __static_condition_default_165; -extern const bool __static_condition_default_482; -extern const bool __static_condition_default_716; -extern const bool __static_condition_default_992; -extern const bool __static_condition_default_976; -extern const bool __static_condition_default_1405; -extern const bool __static_condition_default_1861; -extern const bool __static_condition_default_381; -extern const bool __static_condition_default_1793; -extern const bool __static_condition_default_1811; -extern const bool __static_condition_default_1398; -extern const bool __static_condition_default_1838; -extern const bool __static_condition_default_969; -extern const bool __static_condition_default_540; -extern const bool __static_condition_default_968; -extern const bool __static_condition_default_227; -extern const bool __static_condition_default_310; -extern const bool __static_condition_default_577; -extern const bool __static_condition_default_349; -extern const bool __static_condition_default_225; -extern const bool __static_condition_default_502; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_1604; -extern const bool __static_condition_default_595; -extern const bool __static_condition_default_948; -extern const bool __static_condition_default_336; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_1453; +extern const bool __static_condition_default_759; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_1814; extern const bool __static_condition_default_249; -extern const bool __static_condition_default_588; -extern const bool __static_condition_default_1829; -extern const bool __static_condition_default_1876; -extern const bool __static_condition_default_358; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_236; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_881; -extern const bool __static_condition_default_1834; -extern const bool __static_condition_default_1382; -extern const bool __static_condition_default_1844; -extern const bool __static_condition_default_1867; -extern const bool __static_condition_default_1778; -extern const bool __static_condition_default_556; -extern const bool __static_condition_default_1798; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_1775; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_955; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_2458; +extern const bool __static_condition_default_2443; +extern const bool __static_condition_default_311; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_2388; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_2429; +extern const bool __static_condition_default_1391; +extern const bool __static_condition_default_1416; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_2377; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_619; +extern const bool __static_condition_default_1420; +extern const bool __static_condition_default_488; +extern const bool __static_condition_default_337; +extern const bool __static_condition_default_1458; +extern const bool __static_condition_default_2402; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_2313; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_1498; +extern const bool __static_condition_default_2445; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_204; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_2342; +extern const bool __static_condition_default_2329; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_2447; +extern const bool __static_condition_default_2434; +extern const bool __static_condition_default_550; +extern const bool __static_condition_default_1357; +extern const bool __static_condition_default_76; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_2442; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_1944; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_1361; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_894; +extern const bool __static_condition_default_2322; +extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_2389; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_1353; +extern const bool __static_condition_default_2446; +extern const bool __static_condition_default_1515; +extern const bool __static_condition_default_1776; +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_963; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_1531; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_419; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_2314; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_2349; +extern const bool __static_condition_default_544; +extern const bool __static_condition_default_1750; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_2312; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_1385; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_2330; +extern const bool __static_condition_default_2343; +extern const bool __static_condition_default_2350; +extern const bool __static_condition_default_1791; +extern const bool __static_condition_default_2376; +extern const bool __static_condition_default_170; extern const bool __static_condition_default_663; -extern const bool __static_condition_default_586; -extern const bool __static_condition_default_729; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_1814; -extern const bool __static_condition_default_906; +extern const bool __static_condition_default_333; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_1572; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_1808; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_1568; +extern const bool __static_condition_default_2459; +extern const bool __static_condition_default_1377; +extern const bool __static_condition_default_2387; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_2407; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_1516; +extern const bool __static_condition_default_2414; extern const bool __static_condition_default_538; -extern const bool __static_condition_default_328; -extern const bool __static_condition_default_610; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_1860; +extern const bool __static_condition_default_583; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_747; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_187; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_779; +extern const bool __static_condition_default_2444; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_613; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_2441; +extern const bool __static_condition_default_1773; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_290; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_929; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_842; +extern const bool __static_condition_default_1409; +extern const bool __static_condition_default_1816; +extern const bool __static_condition_default_761; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_1373; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_1810; +extern const bool __static_condition_default_365; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_2044; +extern const bool __static_condition_default_1428; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_380; +extern const bool __static_condition_default_1576; +extern const bool __static_condition_default_1395; extern const bool __static_condition_default_745; -extern const bool __static_condition_default_688; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_933; -extern const bool __static_condition_default_905; -extern const bool __static_condition_default_1859; -extern const bool __static_condition_default_528; -extern const bool __static_condition_default_74; -extern const bool __static_condition_default_706; -extern const bool __static_condition_default_1605; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_446; -extern const bool __static_condition_default_962; -extern const bool __static_condition_default_672; -extern const bool __static_condition_default_453; -extern const bool __static_condition_default_1837; -extern const bool __static_condition_default_719; -extern const bool __static_condition_default_1877; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_977; -extern const bool __static_condition_default_1830; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_1843; -extern const bool __static_condition_default_931; -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_893; -extern const bool __static_condition_default_435; -extern const bool __static_condition_default_749; -extern const bool __static_condition_default_954; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_1398; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_787; extern const bool __static_condition_default_809; -extern const bool __static_condition_default_917; -extern const bool __static_condition_default_1615; -extern const bool __static_condition_default_575; -extern const bool __static_condition_default_1866; -extern const bool __static_condition_default_162; -extern const bool __static_condition_default_474; -extern const bool __static_condition_default_1865; -extern const bool __static_condition_default_605; -extern const bool __static_condition_default_626; -extern const bool __static_condition_default_394; -extern const bool __static_condition_default_694; -extern const bool __static_condition_default_953; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_367; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_2457; +extern const bool __static_condition_default_875; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_2320; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_834; +extern const bool __static_condition_default_1365; +extern const bool __static_condition_default_2043; extern const bool __static_condition_default_708; -extern const bool __static_condition_default_431; -extern const bool __static_condition_default_449; -extern const bool __static_condition_default_338; -extern const bool __static_condition_default_351; -extern const bool __static_condition_default_695; -extern const bool __static_condition_default_714; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_1539; -extern const bool __static_condition_default_612; -extern const bool __static_condition_default_778; -extern const bool __static_condition_default_784; -extern const bool __static_condition_default_276; -extern const bool __static_condition_default_1832; -extern const bool __static_condition_default_720; -extern const bool __static_condition_default_640; -extern const bool __static_condition_default_562; -extern const bool __static_condition_default_1863; -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_804; -extern const bool __static_condition_default_1875; -extern const bool __static_condition_default_855; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_1879; -extern const bool __static_condition_default_1858; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_624; -extern const bool __static_condition_default_1397; -extern const bool __static_condition_default_1424; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_1016; -extern const bool __static_condition_default_480; -extern const bool __static_condition_default_984; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_743; -extern const bool __static_condition_default_904; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_733; -extern const bool __static_condition_default_924; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_356; -extern const bool __static_condition_default_762; -extern const bool __static_condition_default_230; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_999; -extern const bool __static_condition_default_454; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_655; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_1436; +extern const bool __static_condition_default_386; +extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_2430; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_1165; +extern const bool __static_condition_default_1341; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_2437; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_347; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_2062; +extern const bool __static_condition_default_489; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_1159; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_2440; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_1787; +extern const bool __static_condition_default_2403; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_473; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -312,778 +456,1213 @@ __static_renaming("____ssize_t_49", "__ssize_t"); __static_renaming("____syscall_slong_t_50", "__syscall_slong_t"); __static_renaming("____syscall_ulong_t_51", "__syscall_ulong_t"); __static_renaming("____loff_t_52", "__loff_t"); -__static_renaming("____qaddr_t_53", "__qaddr_t"); -__static_renaming("____caddr_t_54", "__caddr_t"); -__static_renaming("____intptr_t_55", "__intptr_t"); -__static_renaming("____socklen_t_56", "__socklen_t"); -__static_renaming("__FILE_58", "FILE"); -__static_renaming("____FILE_59", "__FILE"); -__static_renaming("____mbstate_t_68", "__mbstate_t"); -__static_renaming("___G_fpos_t_75", "_G_fpos_t"); -__static_renaming("___G_fpos64_t_81", "_G_fpos64_t"); -__static_renaming("____gnuc_va_list_82", "__gnuc_va_list"); -__static_renaming("___IO_lock_t_84", "_IO_lock_t"); -__static_renaming("___IO_FILE_163", "_IO_FILE"); -__static_renaming("___IO_FILE_164", "_IO_FILE"); -__static_renaming("___IO_2_1_stdin__167", "_IO_2_1_stdin_"); -__static_renaming("___IO_2_1_stdout__168", "_IO_2_1_stdout_"); -__static_renaming("___IO_2_1_stderr__169", "_IO_2_1_stderr_"); -__static_renaming("____io_read_fn_173", "__io_read_fn"); -__static_renaming("____io_write_fn_177", "__io_write_fn"); -__static_renaming("____io_seek_fn_181", "__io_seek_fn"); -__static_renaming("____io_close_fn_183", "__io_close_fn"); -__static_renaming("____underflow_184", "__underflow"); -__static_renaming("____underflow_185", "__underflow"); -__static_renaming("____uflow_186", "__uflow"); -__static_renaming("____uflow_187", "__uflow"); -__static_renaming("____overflow_188", "__overflow"); -__static_renaming("____overflow_189", "__overflow"); -__static_renaming("___IO_getc_193", "_IO_getc"); -__static_renaming("___IO_getc_194", "_IO_getc"); -__static_renaming("___IO_putc_199", "_IO_putc"); -__static_renaming("___IO_putc_200", "_IO_putc"); -__static_renaming("___IO_feof_204", "_IO_feof"); -__static_renaming("___IO_feof_205", "_IO_feof"); -__static_renaming("___IO_ferror_209", "_IO_ferror"); -__static_renaming("___IO_ferror_210", "_IO_ferror"); -__static_renaming("___IO_peekc_locked_214", "_IO_peekc_locked"); -__static_renaming("___IO_peekc_locked_215", "_IO_peekc_locked"); -__static_renaming("___IO_flockfile_216", "_IO_flockfile"); -__static_renaming("___IO_flockfile_217", "_IO_flockfile"); -__static_renaming("___IO_funlockfile_218", "_IO_funlockfile"); -__static_renaming("___IO_funlockfile_219", "_IO_funlockfile"); -__static_renaming("___IO_ftrylockfile_220", "_IO_ftrylockfile"); -__static_renaming("___IO_ftrylockfile_221", "_IO_ftrylockfile"); -__static_renaming("___IO_vfscanf_222", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_224", "_IO_vfscanf"); -__static_renaming("___IO_vfprintf_231", "_IO_vfprintf"); -__static_renaming("___IO_vfprintf_233", "_IO_vfprintf"); -__static_renaming("___IO_padn_238", "_IO_padn"); -__static_renaming("___IO_padn_239", "_IO_padn"); -__static_renaming("___IO_sgetn_240", "_IO_sgetn"); -__static_renaming("___IO_sgetn_241", "_IO_sgetn"); -__static_renaming("___IO_seekoff_242", "_IO_seekoff"); -__static_renaming("___IO_seekoff_243", "_IO_seekoff"); -__static_renaming("___IO_seekpos_244", "_IO_seekpos"); -__static_renaming("___IO_seekpos_245", "_IO_seekpos"); -__static_renaming("___IO_free_backup_area_246", "_IO_free_backup_area"); -__static_renaming("___IO_free_backup_area_247", "_IO_free_backup_area"); -__static_renaming("__va_list_248", "va_list"); -__static_renaming("__off_t_250", "off_t"); -__static_renaming("__off_t_251", "off_t"); -__static_renaming("__ssize_t_252", "ssize_t"); -__static_renaming("__fpos_t_253", "fpos_t"); -__static_renaming("__fpos_t_255", "fpos_t"); -__static_renaming("__stdin_257", "stdin"); -__static_renaming("__stdin_258", "stdin"); -__static_renaming("__stdout_259", "stdout"); -__static_renaming("__stdout_260", "stdout"); -__static_renaming("__stderr_261", "stderr"); -__static_renaming("__stderr_262", "stderr"); -__static_renaming("__remove_264", "remove"); -__static_renaming("__rename_267", "rename"); -__static_renaming("__renameat_272", "renameat"); -__static_renaming("__tmpfile_273", "tmpfile"); -__static_renaming("__tmpfile_275", "tmpfile"); -__static_renaming("__tmpfile_277", "tmpfile"); -__static_renaming("__tmpfile_279", "tmpfile"); -__static_renaming("__tmpnam_282", "tmpnam"); -__static_renaming("__tmpnam_283", "tmpnam"); -__static_renaming("__tmpnam_r_285", "tmpnam_r"); -__static_renaming("__tmpnam_r_286", "tmpnam_r"); -__static_renaming("__tempnam_289", "tempnam"); -__static_renaming("__tempnam_290", "tempnam"); -__static_renaming("__fclose_293", "fclose"); -__static_renaming("__fclose_295", "fclose"); -__static_renaming("__fflush_299", "fflush"); -__static_renaming("__fflush_unlocked_303", "fflush_unlocked"); -__static_renaming("__fopen_307", "fopen"); -__static_renaming("__fopen_309", "fopen"); -__static_renaming("__fopen_317", "fopen"); -__static_renaming("__fopen_319", "fopen"); -__static_renaming("__freopen_325", "freopen"); -__static_renaming("__freopen_327", "freopen"); -__static_renaming("__freopen_329", "freopen"); -__static_renaming("__freopen_331", "freopen"); -__static_renaming("__fdopen_335", "fdopen"); -__static_renaming("__fdopen_337", "fdopen"); -__static_renaming("__fmemopen_342", "fmemopen"); -__static_renaming("__fmemopen_344", "fmemopen"); -__static_renaming("__open_memstream_348", "open_memstream"); -__static_renaming("__open_memstream_350", "open_memstream"); -__static_renaming("__setbuf_355", "setbuf"); -__static_renaming("__setbuf_357", "setbuf"); -__static_renaming("__setvbuf_364", "setvbuf"); -__static_renaming("__setbuffer_369", "setbuffer"); -__static_renaming("__setlinebuf_373", "setlinebuf"); -__static_renaming("__fprintf_378", "fprintf"); -__static_renaming("__fprintf_380", "fprintf"); -__static_renaming("__printf_383", "printf"); -__static_renaming("__sprintf_386", "sprintf"); -__static_renaming("__vfprintf_392", "vfprintf"); -__static_renaming("__vprintf_399", "vprintf"); -__static_renaming("__vsprintf_405", "vsprintf"); -__static_renaming("__snprintf_409", "snprintf"); -__static_renaming("__vsnprintf_415", "vsnprintf"); -__static_renaming("__vdprintf_420", "vdprintf"); -__static_renaming("__dprintf_424", "dprintf"); -__static_renaming("__fscanf_428", "fscanf"); -__static_renaming("__fscanf_430", "fscanf"); -__static_renaming("__fscanf_432", "fscanf"); -__static_renaming("__fscanf_434", "fscanf"); -__static_renaming("__scanf_437", "scanf"); -__static_renaming("__scanf_438", "scanf"); -__static_renaming("__sscanf_441", "sscanf"); -__static_renaming("__vfscanf_468", "vfscanf"); -__static_renaming("__vfscanf_472", "vfscanf"); -__static_renaming("__vscanf_479", "vscanf"); -__static_renaming("__vscanf_481", "vscanf"); -__static_renaming("__vsscanf_487", "vsscanf"); -__static_renaming("__fgetc_520", "fgetc"); -__static_renaming("__getc_523", "getc"); -__static_renaming("__getchar_524", "getchar"); -__static_renaming("__getc_unlocked_527", "getc_unlocked"); -__static_renaming("__getchar_unlocked_529", "getchar_unlocked"); -__static_renaming("__fgetc_unlocked_532", "fgetc_unlocked"); -__static_renaming("__fputc_537", "fputc"); -__static_renaming("__fputc_539", "fputc"); -__static_renaming("__putc_544", "putc"); -__static_renaming("__putchar_546", "putchar"); -__static_renaming("__fputc_unlocked_550", "fputc_unlocked"); -__static_renaming("__putc_unlocked_555", "putc_unlocked"); -__static_renaming("__putchar_unlocked_558", "putchar_unlocked"); -__static_renaming("__getw_561", "getw"); -__static_renaming("__putw_566", "putw"); -__static_renaming("__fgets_572", "fgets"); -__static_renaming("__fgets_574", "fgets"); -__static_renaming("__fgets_576", "fgets"); -__static_renaming("__fgets_578", "fgets"); -__static_renaming("____getdelim_585", "__getdelim"); -__static_renaming("____getdelim_587", "__getdelim"); -__static_renaming("__getdelim_594", "getdelim"); -__static_renaming("__getdelim_596", "getdelim"); -__static_renaming("__getline_602", "getline"); -__static_renaming("__getline_604", "getline"); -__static_renaming("__fputs_609", "fputs"); -__static_renaming("__fputs_611", "fputs"); -__static_renaming("__puts_614", "puts"); -__static_renaming("__ungetc_618", "ungetc"); -__static_renaming("__fseek_654", "fseek"); -__static_renaming("__fseek_656", "fseek"); -__static_renaming("__ftell_660", "ftell"); -__static_renaming("__ftell_662", "ftell"); -__static_renaming("__rewind_666", "rewind"); -__static_renaming("__fseeko_671", "fseeko"); -__static_renaming("__fseeko_679", "fseeko"); -__static_renaming("__ftello_683", "ftello"); -__static_renaming("__ftello_685", "ftello"); -__static_renaming("__ftello_687", "ftello"); -__static_renaming("__fgetpos_693", "fgetpos"); -__static_renaming("__fgetpos_705", "fgetpos"); -__static_renaming("__fsetpos_713", "fsetpos"); -__static_renaming("__fsetpos_717", "fsetpos"); -__static_renaming("__clearerr_723", "clearerr"); -__static_renaming("__feof_726", "feof"); -__static_renaming("__feof_728", "feof"); -__static_renaming("__ferror_732", "ferror"); -__static_renaming("__ferror_734", "ferror"); -__static_renaming("__clearerr_unlocked_738", "clearerr_unlocked"); -__static_renaming("__feof_unlocked_742", "feof_unlocked"); -__static_renaming("__feof_unlocked_744", "feof_unlocked"); -__static_renaming("__ferror_unlocked_748", "ferror_unlocked"); -__static_renaming("__ferror_unlocked_750", "ferror_unlocked"); -__static_renaming("__perror_753", "perror"); -__static_renaming("__perror_754", "perror"); -__static_renaming("__sys_nerr_755", "sys_nerr"); -__static_renaming("__sys_errlist_756", "sys_errlist"); -__static_renaming("__fileno_759", "fileno"); -__static_renaming("__fileno_761", "fileno"); -__static_renaming("__fileno_unlocked_765", "fileno_unlocked"); -__static_renaming("__fileno_unlocked_767", "fileno_unlocked"); -__static_renaming("__popen_771", "popen"); -__static_renaming("__popen_773", "popen"); -__static_renaming("__pclose_777", "pclose"); -__static_renaming("__ctermid_780", "ctermid"); -__static_renaming("__flockfile_783", "flockfile"); -__static_renaming("__ftrylockfile_787", "ftrylockfile"); -__static_renaming("__ftrylockfile_789", "ftrylockfile"); -__static_renaming("__funlockfile_793", "funlockfile"); -__static_renaming("____sprintf_chk_825", "__sprintf_chk"); -__static_renaming("____vsprintf_chk_832", "__vsprintf_chk"); -__static_renaming("____snprintf_chk_846", "__snprintf_chk"); -__static_renaming("____vsnprintf_chk_854", "__vsnprintf_chk"); -__static_renaming("____fprintf_chk_869", "__fprintf_chk"); -__static_renaming("____printf_chk_873", "__printf_chk"); -__static_renaming("____vfprintf_chk_880", "__vfprintf_chk"); -__static_renaming("____vprintf_chk_888", "__vprintf_chk"); -__static_renaming("____dprintf_chk_910", "__dprintf_chk"); -__static_renaming("____vdprintf_chk_916", "__vdprintf_chk"); -__static_renaming("____fgets_chk_930", "__fgets_chk"); -__static_renaming("____fgets_chk_932", "__fgets_chk"); -__static_renaming("____fgets_chk_934", "__fgets_chk"); -__static_renaming("____fgets_alias_940", "__fgets_alias"); -__static_renaming("____fgets_chk_warn_947", "__fgets_chk_warn"); -__static_renaming("____cnt_1013", "__cnt"); -__static_renaming("____cptr_1014", "__cptr"); -__static_renaming("__wchar_t_1018", "wchar_t"); -__static_renaming("__idtype_t_1024", "idtype_t"); -__static_renaming("____bswap_32_1026", "__bswap_32"); -__static_renaming("____bswap_64_1029", "__bswap_64"); -__static_renaming("____WAIT_STATUS_1049", "__WAIT_STATUS"); -__static_renaming("__div_t_1054", "div_t"); -__static_renaming("__ldiv_t_1059", "ldiv_t"); -__static_renaming("__lldiv_t_1064", "lldiv_t"); -__static_renaming("____ctype_get_mb_cur_max_1065", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1066", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1067", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_1068", "__ctype_get_mb_cur_max"); -__static_renaming("__atof_1070", "atof"); -__static_renaming("__atof_1071", "atof"); -__static_renaming("__atoi_1073", "atoi"); -__static_renaming("__atoi_1074", "atoi"); -__static_renaming("__atol_1076", "atol"); -__static_renaming("__atol_1077", "atol"); -__static_renaming("__atoll_1079", "atoll"); -__static_renaming("__atoll_1080", "atoll"); -__static_renaming("__strtod_1083", "strtod"); -__static_renaming("__strtof_1086", "strtof"); -__static_renaming("__strtold_1089", "strtold"); -__static_renaming("__strtol_1093", "strtol"); -__static_renaming("__strtoul_1097", "strtoul"); -__static_renaming("__strtoq_1101", "strtoq"); -__static_renaming("__strtouq_1105", "strtouq"); -__static_renaming("__strtoll_1109", "strtoll"); -__static_renaming("__strtoll_1110", "strtoll"); -__static_renaming("__strtoull_1114", "strtoull"); -__static_renaming("__l64a_1119", "l64a"); -__static_renaming("__l64a_1120", "l64a"); -__static_renaming("__a64l_1122", "a64l"); -__static_renaming("__a64l_1123", "a64l"); -__static_renaming("__u_char_1124", "u_char"); -__static_renaming("__u_short_1125", "u_short"); -__static_renaming("__u_int_1126", "u_int"); -__static_renaming("__u_long_1127", "u_long"); -__static_renaming("__quad_t_1128", "quad_t"); -__static_renaming("__u_quad_t_1129", "u_quad_t"); -__static_renaming("__fsid_t_1130", "fsid_t"); -__static_renaming("__loff_t_1131", "loff_t"); -__static_renaming("__ino_t_1132", "ino_t"); -__static_renaming("__ino_t_1133", "ino_t"); -__static_renaming("__dev_t_1134", "dev_t"); -__static_renaming("__gid_t_1135", "gid_t"); -__static_renaming("__gid_t_1136", "gid_t"); -__static_renaming("__mode_t_1137", "mode_t"); -__static_renaming("__nlink_t_1138", "nlink_t"); -__static_renaming("__uid_t_1139", "uid_t"); -__static_renaming("__uid_t_1140", "uid_t"); -__static_renaming("__pid_t_1141", "pid_t"); -__static_renaming("__id_t_1142", "id_t"); -__static_renaming("__daddr_t_1143", "daddr_t"); -__static_renaming("__caddr_t_1144", "caddr_t"); -__static_renaming("__key_t_1145", "key_t"); -__static_renaming("__key_t_1146", "key_t"); -__static_renaming("__clock_t_1147", "clock_t"); -__static_renaming("__time_t_1148", "time_t"); -__static_renaming("__clockid_t_1149", "clockid_t"); -__static_renaming("__timer_t_1150", "timer_t"); -__static_renaming("__ulong_1151", "ulong"); -__static_renaming("__ulong_1152", "ulong"); -__static_renaming("__ulong_1153", "ulong"); -__static_renaming("__ushort_1154", "ushort"); -__static_renaming("__uint_1155", "uint"); -__static_renaming("__int8_t_1156", "int8_t"); -__static_renaming("__int16_t_1157", "int16_t"); -__static_renaming("__int32_t_1158", "int32_t"); -__static_renaming("__int64_t_1159", "int64_t"); -__static_renaming("__u_int8_t_1160", "u_int8_t"); -__static_renaming("__u_int16_t_1161", "u_int16_t"); -__static_renaming("__u_int32_t_1162", "u_int32_t"); -__static_renaming("__u_int64_t_1163", "u_int64_t"); -__static_renaming("__register_t_1164", "register_t"); -__static_renaming("____bswap_32_1166", "__bswap_32"); -__static_renaming("____bswap_64_1169", "__bswap_64"); -__static_renaming("____sig_atomic_t_1170", "__sig_atomic_t"); -__static_renaming("____sigset_t_1174", "__sigset_t"); -__static_renaming("__sigset_t_1175", "sigset_t"); -__static_renaming("__suseconds_t_1182", "suseconds_t"); -__static_renaming("____fd_mask_1183", "__fd_mask"); -__static_renaming("____fd_mask_1184", "__fd_mask"); -__static_renaming("__fd_set_1189", "fd_set"); -__static_renaming("__fd_mask_1190", "fd_mask"); -__static_renaming("__fd_mask_1191", "fd_mask"); -__static_renaming("__select_1199", "select"); -__static_renaming("__select_1200", "select"); -__static_renaming("__pselect_1209", "pselect"); -__static_renaming("__pselect_1210", "pselect"); -__static_renaming("____fdelt_chk_1212", "__fdelt_chk"); -__static_renaming("____fdelt_warn_1214", "__fdelt_warn"); -__static_renaming("__gnu_dev_major_1216", "gnu_dev_major"); -__static_renaming("__gnu_dev_major_1217", "gnu_dev_major"); -__static_renaming("__gnu_dev_minor_1219", "gnu_dev_minor"); -__static_renaming("__gnu_dev_makedev_1222", "gnu_dev_makedev"); -__static_renaming("__blksize_t_1227", "blksize_t"); -__static_renaming("__blkcnt_t_1228", "blkcnt_t"); -__static_renaming("__fsblkcnt_t_1229", "fsblkcnt_t"); -__static_renaming("__blkcnt_t_1230", "blkcnt_t"); -__static_renaming("__fsblkcnt_t_1231", "fsblkcnt_t"); -__static_renaming("__fsfilcnt_t_1232", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_1233", "fsfilcnt_t"); -__static_renaming("__pthread_t_1234", "pthread_t"); -__static_renaming("__pthread_attr_t_1238", "pthread_attr_t"); -__static_renaming("____pthread_list_t_1243", "__pthread_list_t"); -__static_renaming("____pthread_list_t_1244", "__pthread_list_t"); -__static_renaming("__pthread_mutex_t_1260", "pthread_mutex_t"); -__static_renaming("__pthread_mutexattr_t_1265", "pthread_mutexattr_t"); -__static_renaming("__rand_1266", "rand"); -__static_renaming("__srand_1268", "srand"); -__static_renaming("__rand_r_1270", "rand_r"); -__static_renaming("__drand48_1271", "drand48"); -__static_renaming("__erand48_1273", "erand48"); -__static_renaming("__lrand48_1274", "lrand48"); -__static_renaming("__nrand48_1276", "nrand48"); -__static_renaming("__mrand48_1277", "mrand48"); -__static_renaming("__jrand48_1279", "jrand48"); -__static_renaming("__srand48_1281", "srand48"); -__static_renaming("__seed48_1283", "seed48"); -__static_renaming("__lcong48_1285", "lcong48"); -__static_renaming("__malloc_1287", "malloc"); -__static_renaming("__malloc_1288", "malloc"); -__static_renaming("__malloc_1289", "malloc"); -__static_renaming("__malloc_1290", "malloc"); -__static_renaming("__calloc_1293", "calloc"); -__static_renaming("__calloc_1294", "calloc"); -__static_renaming("__realloc_1297", "realloc"); -__static_renaming("__free_1299", "free"); -__static_renaming("__cfree_1301", "cfree"); -__static_renaming("__alloca_1303", "alloca"); -__static_renaming("__valloc_1305", "valloc"); -__static_renaming("__valloc_1306", "valloc"); -__static_renaming("__posix_memalign_1310", "posix_memalign"); -__static_renaming("__posix_memalign_1311", "posix_memalign"); -__static_renaming("__aligned_alloc_1314", "aligned_alloc"); -__static_renaming("__aligned_alloc_1315", "aligned_alloc"); -__static_renaming("__aligned_alloc_1316", "aligned_alloc"); -__static_renaming("__aligned_alloc_1317", "aligned_alloc"); -__static_renaming("__abort_1318", "abort"); -__static_renaming("__atexit_1320", "atexit"); -__static_renaming("__at_quick_exit_1322", "at_quick_exit"); -__static_renaming("__on_exit_1327", "on_exit"); -__static_renaming("__exit_1329", "exit"); -__static_renaming("__exit_1330", "exit"); -__static_renaming("__quick_exit_1332", "quick_exit"); -__static_renaming("___Exit_1334", "_Exit"); -__static_renaming("__getenv_1336", "getenv"); -__static_renaming("__getenv_1337", "getenv"); -__static_renaming("__putenv_1339", "putenv"); -__static_renaming("__setenv_1343", "setenv"); -__static_renaming("__unsetenv_1345", "unsetenv"); -__static_renaming("__clearenv_1346", "clearenv"); -__static_renaming("__mktemp_1348", "mktemp"); -__static_renaming("__mkstemp_1351", "mkstemp"); -__static_renaming("__mkstemp_1352", "mkstemp"); -__static_renaming("__mkstemp_1353", "mkstemp"); -__static_renaming("__mkstemp_1354", "mkstemp"); -__static_renaming("__mkstemps_1359", "mkstemps"); -__static_renaming("__mkstemps_1360", "mkstemps"); -__static_renaming("__mkstemps_1361", "mkstemps"); -__static_renaming("__mkstemps_1362", "mkstemps"); -__static_renaming("__mkdtemp_1364", "mkdtemp"); -__static_renaming("__mkdtemp_1365", "mkdtemp"); -__static_renaming("__system_1367", "system"); -__static_renaming("__system_1368", "system"); -__static_renaming("__system_1369", "system"); -__static_renaming("__system_1370", "system"); -__static_renaming("__realpath_1373", "realpath"); -__static_renaming("__realpath_1374", "realpath"); -__static_renaming("____compar_fn_t_1375", "__compar_fn_t"); -__static_renaming("__bsearch_1383", "bsearch"); -__static_renaming("__bsearch_1385", "bsearch"); -__static_renaming("____l_1392", "__l"); -__static_renaming("____u_1393", "__u"); -__static_renaming("____idx_1394", "__idx"); -__static_renaming("____p_1395", "__p"); -__static_renaming("____comparison_1396", "__comparison"); -__static_renaming("__qsort_1404", "qsort"); -__static_renaming("__qsort_1406", "qsort"); -__static_renaming("__abs_1409", "abs"); -__static_renaming("__abs_1410", "abs"); -__static_renaming("__labs_1412", "labs"); -__static_renaming("__labs_1413", "labs"); -__static_renaming("__llabs_1415", "llabs"); -__static_renaming("__llabs_1416", "llabs"); -__static_renaming("__div_1419", "div"); -__static_renaming("__div_1420", "div"); -__static_renaming("__ldiv_1423", "ldiv"); -__static_renaming("__ldiv_1425", "ldiv"); -__static_renaming("__lldiv_1429", "lldiv"); -__static_renaming("__lldiv_1431", "lldiv"); -__static_renaming("__ecvt_1437", "ecvt"); -__static_renaming("__ecvt_1438", "ecvt"); -__static_renaming("__fcvt_1443", "fcvt"); -__static_renaming("__fcvt_1444", "fcvt"); -__static_renaming("__gcvt_1448", "gcvt"); -__static_renaming("__gcvt_1449", "gcvt"); -__static_renaming("__qecvt_1454", "qecvt"); -__static_renaming("__qecvt_1455", "qecvt"); -__static_renaming("__qfcvt_1460", "qfcvt"); -__static_renaming("__qfcvt_1461", "qfcvt"); -__static_renaming("__qgcvt_1465", "qgcvt"); -__static_renaming("__qgcvt_1466", "qgcvt"); -__static_renaming("__ecvt_r_1473", "ecvt_r"); -__static_renaming("__fcvt_r_1480", "fcvt_r"); -__static_renaming("__qecvt_r_1487", "qecvt_r"); -__static_renaming("__qfcvt_r_1494", "qfcvt_r"); -__static_renaming("__mblen_1497", "mblen"); -__static_renaming("__mblen_1498", "mblen"); -__static_renaming("__mbtowc_1502", "mbtowc"); -__static_renaming("__wctomb_1505", "wctomb"); -__static_renaming("__mbstowcs_1509", "mbstowcs"); -__static_renaming("__wcstombs_1513", "wcstombs"); -__static_renaming("__rpmatch_1515", "rpmatch"); -__static_renaming("__rpmatch_1516", "rpmatch"); -__static_renaming("__getsubopt_1520", "getsubopt"); -__static_renaming("__getsubopt_1521", "getsubopt"); -__static_renaming("__getloadavg_1524", "getloadavg"); -__static_renaming("____realpath_chk_1529", "__realpath_chk"); -__static_renaming("____realpath_alias_1532", "__realpath_alias"); -__static_renaming("____realpath_chk_warn_1536", "__realpath_chk_warn"); -__static_renaming("____ptsname_r_chk_1544", "__ptsname_r_chk"); -__static_renaming("____ptsname_r_alias_1548", "__ptsname_r_alias"); -__static_renaming("____ptsname_r_chk_warn_1553", "__ptsname_r_chk_warn"); -__static_renaming("____wctomb_chk_1561", "__wctomb_chk"); -__static_renaming("____wctomb_alias_1564", "__wctomb_alias"); -__static_renaming("____mbstowcs_chk_1571", "__mbstowcs_chk"); -__static_renaming("____mbstowcs_alias_1575", "__mbstowcs_alias"); -__static_renaming("____mbstowcs_chk_warn_1580", "__mbstowcs_chk_warn"); -__static_renaming("____wcstombs_chk_1588", "__wcstombs_chk"); -__static_renaming("____wcstombs_alias_1592", "__wcstombs_alias"); -__static_renaming("____wcstombs_chk_warn_1597", "__wcstombs_chk_warn"); -__static_renaming("__memmove_1610", "memmove"); -__static_renaming("__memset_1619", "memset"); -__static_renaming("__memset_1620", "memset"); -__static_renaming("__memcmp_1624", "memcmp"); -__static_renaming("__memchr_1628", "memchr"); -__static_renaming("__strcpy_1631", "strcpy"); -__static_renaming("__strncpy_1635", "strncpy"); -__static_renaming("__strcat_1638", "strcat"); -__static_renaming("__strncat_1642", "strncat"); -__static_renaming("__strcmp_1645", "strcmp"); -__static_renaming("__strncmp_1649", "strncmp"); -__static_renaming("__strcoll_1652", "strcoll"); -__static_renaming("__strxfrm_1656", "strxfrm"); -__static_renaming("____locale_t_1664", "__locale_t"); -__static_renaming("__locale_t_1665", "locale_t"); -__static_renaming("__strcoll_l_1669", "strcoll_l"); -__static_renaming("__strxfrm_l_1674", "strxfrm_l"); -__static_renaming("__strdup_1676", "strdup"); -__static_renaming("__strndup_1679", "strndup"); -__static_renaming("__strchr_1682", "strchr"); -__static_renaming("__strchr_1683", "strchr"); -__static_renaming("__strrchr_1686", "strrchr"); -__static_renaming("__strcspn_1689", "strcspn"); -__static_renaming("__strspn_1692", "strspn"); -__static_renaming("__strpbrk_1695", "strpbrk"); -__static_renaming("__strstr_1698", "strstr"); -__static_renaming("__strtok_1701", "strtok"); -__static_renaming("____strtok_r_1705", "__strtok_r"); -__static_renaming("__strtok_r_1709", "strtok_r"); -__static_renaming("__strlen_1711", "strlen"); -__static_renaming("__strlen_1712", "strlen"); -__static_renaming("__strnlen_1715", "strnlen"); -__static_renaming("__strerror_1717", "strerror"); -__static_renaming("__strerror_1718", "strerror"); -__static_renaming("__strerror_r_1722", "strerror_r"); -__static_renaming("__strerror_l_1725", "strerror_l"); -__static_renaming("____bzero_1728", "__bzero"); -__static_renaming("____bzero_1729", "__bzero"); -__static_renaming("__bcopy_1733", "bcopy"); -__static_renaming("__bzero_1736", "bzero"); -__static_renaming("__bcmp_1740", "bcmp"); -__static_renaming("__index_1743", "index"); -__static_renaming("__rindex_1746", "rindex"); -__static_renaming("__ffs_1748", "ffs"); -__static_renaming("__strcasecmp_1751", "strcasecmp"); -__static_renaming("__strncasecmp_1755", "strncasecmp"); -__static_renaming("__strsep_1758", "strsep"); -__static_renaming("__strsignal_1760", "strsignal"); -__static_renaming("____stpcpy_1763", "__stpcpy"); -__static_renaming("__stpcpy_1766", "stpcpy"); -__static_renaming("____stpncpy_1770", "__stpncpy"); -__static_renaming("__stpncpy_1774", "stpncpy"); -__static_renaming("____stpncpy_chk_1803", "__stpncpy_chk"); -__static_renaming("____stpncpy_alias_1807", "__stpncpy_alias"); -__static_renaming("__ethtable_t_1823", "ethtable_t"); -__static_renaming("__ethtable_t_1824", "ethtable_t"); -__static_renaming("__delete_eth_table_1827", "delete_eth_table"); -__static_renaming("__delete_eth_table_1828", "delete_eth_table"); -__static_renaming("__delete_eth_table_1841", "delete_eth_table"); -__static_renaming("__delete_eth_table_1842", "delete_eth_table"); -__static_renaming("__ch_1848", "ch"); -__static_renaming("__ch_1849", "ch"); -__static_renaming("__prepend_new_eth_table_1856", "prepend_new_eth_table"); -__static_renaming("__prepend_new_eth_table_1857", "prepend_new_eth_table"); -__static_renaming("__clist_1870", "clist"); -__static_renaming("__clist_1871", "clist"); -__static_renaming("__ch_1872", "ch"); -__static_renaming("__ch_1873", "ch"); -__static_renaming("__main_1874", "main"); - -__static_condition_renaming("__static_condition_default_74", "(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_118", "(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_161", "(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_162", "(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_165", "(defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_223", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_225", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_226", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_227", "(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_230", "(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_232", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_234", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_235", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_236", "(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_249", "!(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); -__static_condition_renaming("__static_condition_default_254", "!(defined _FILE_OFFSET_BITS) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_256", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_274", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_276", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_278", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_280", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_294", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_296", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_300", "(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_304", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_308", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_310", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_318", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_320", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_326", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_328", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_330", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_332", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_336", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_338", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_343", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_345", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_349", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_351", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_356", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_358", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_370", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_374", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_379", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_381", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_393", "!(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_394", "(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_395", "(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_400", "!(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_421", "!(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_429", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_431", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_433", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_435", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_446", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_448", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_449", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_451", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_453", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_454", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_457", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_459", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_469", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_470", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_471", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_473", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_474", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_475", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_480", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_482", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_494", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_495", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_496", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_497", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_499", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_500", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_501", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_502", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_507", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_508", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_510", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_511", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_517", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_528", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_533", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_538", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_540", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_551", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_556", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_562", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_567", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_573", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_575", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_577", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_579", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_586", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_588", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_595", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_597", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_603", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_605", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_610", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_612", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_624", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_625", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_626", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_627", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_633", "!(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_639", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_640", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_641", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_642", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_648", "!(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_649", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_655", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_657", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_661", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_663", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_672", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_680", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_684", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_686", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_688", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_694", "!(defined _FILE_OFFSET_BITS) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_695", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_696", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_706", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_707", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_708", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_714", "!(defined _FILE_OFFSET_BITS) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_715", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_716", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_718", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_719", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_720", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_727", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_729", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_733", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_735", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_739", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_743", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_745", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_749", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_751", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_760", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_762", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_766", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_768", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_772", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_774", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_778", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_784", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_788", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_790", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_794", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_798", "!(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_801", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_804", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_809", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_813", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_817", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_820", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_833", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_840", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_855", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_864", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_870", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_881", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_882", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_883", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_889", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_893", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_898", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_904", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_905", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_906", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_917", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_924", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_931", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_933", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_935", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_941", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_948", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_953", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_954", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_961", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_962", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_968", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_969", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_976", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_977", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_983", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_984", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_991", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_992", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_998", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_999", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1006", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1007", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1015", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_1016", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1017", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1027", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1167", "!(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_1382", "!(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1384", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1397", "(defined __USE_EXTERN_INLINES) && !(defined __need_malloc_and_calloc) && !(defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1398", "(defined __USE_EXTERN_INLINES) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1405", "!(defined __USE_EXTERN_INLINES) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1407", "(defined __USE_EXTERN_INLINES) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_1424", "!(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1426", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1430", "!(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1432", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_1539", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1604", "!(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1605", "(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1606", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1615", "!(defined __STRICT_ANSI__)"); -__static_condition_renaming("__static_condition_default_1778", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1785", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1793", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1794", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1798", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1811", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1814", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1818", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1829", "!(defined _FORTIFY_SOURCE) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_CLEAN_UP)"); -__static_condition_renaming("__static_condition_default_1830", "!(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP)"); -__static_condition_renaming("__static_condition_default_1831", "!(defined _FORTIFY_SOURCE) && (defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP)"); -__static_condition_renaming("__static_condition_default_1832", "!(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP)"); -__static_condition_renaming("__static_condition_default_1833", "!(defined _FORTIFY_SOURCE) && (defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP)"); -__static_condition_renaming("__static_condition_default_1834", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_CLEAN_UP)"); -__static_condition_renaming("__static_condition_default_1835", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP)"); -__static_condition_renaming("__static_condition_default_1836", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP)"); -__static_condition_renaming("__static_condition_default_1837", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP)"); -__static_condition_renaming("__static_condition_default_1838", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP)"); -__static_condition_renaming("__static_condition_default_1843", "!(defined _FORTIFY_SOURCE) && !(defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined ENABLE_FEATURE_CLEAN_UP)"); -__static_condition_renaming("__static_condition_default_1844", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined ENABLE_FEATURE_CLEAN_UP)"); -__static_condition_renaming("__static_condition_default_1858", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1859", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1860", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1861", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1862", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need_malloc_and_calloc) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need_malloc_and_calloc) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need_malloc_and_calloc) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1863", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1864", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1865", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1866", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1867", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_1875", "!(defined _FORTIFY_SOURCE) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_CLEAN_UP)"); -__static_condition_renaming("__static_condition_default_1876", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_CLEAN_UP)"); -__static_condition_renaming("__static_condition_default_1877", "!(defined ENABLE_FEATURE_CLEAN_UP)"); -__static_condition_renaming("__static_condition_default_1878", "(defined ENABLE_FEATURE_CLEAN_UP)"); -__static_condition_renaming("__static_condition_default_1879", "!(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined __need_malloc_and_calloc) || (defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); - -if (__static_condition_default_1879) { +__static_renaming("____qaddr_t_54", "__qaddr_t"); +__static_renaming("____caddr_t_55", "__caddr_t"); +__static_renaming("____intptr_t_56", "__intptr_t"); +__static_renaming("____socklen_t_57", "__socklen_t"); +__static_renaming("__FILE_59", "FILE"); +__static_renaming("____FILE_60", "__FILE"); +__static_renaming("____mbstate_t_69", "__mbstate_t"); +__static_renaming("___G_fpos_t_77", "_G_fpos_t"); +__static_renaming("___G_fpos64_t_85", "_G_fpos64_t"); +__static_renaming("____gnuc_va_list_86", "__gnuc_va_list"); +__static_renaming("___IO_lock_t_88", "_IO_lock_t"); +__static_renaming("___IO_FILE_171", "_IO_FILE"); +__static_renaming("___IO_FILE_172", "_IO_FILE"); +__static_renaming("___IO_2_1_stdin__175", "_IO_2_1_stdin_"); +__static_renaming("___IO_2_1_stdout__176", "_IO_2_1_stdout_"); +__static_renaming("___IO_2_1_stderr__177", "_IO_2_1_stderr_"); +__static_renaming("____io_read_fn_181", "__io_read_fn"); +__static_renaming("____io_write_fn_186", "__io_write_fn"); +__static_renaming("____io_seek_fn_192", "__io_seek_fn"); +__static_renaming("____io_close_fn_195", "__io_close_fn"); +__static_renaming("____underflow_196", "__underflow"); +__static_renaming("____underflow_197", "__underflow"); +__static_renaming("____uflow_199", "__uflow"); +__static_renaming("____uflow_200", "__uflow"); +__static_renaming("____overflow_202", "__overflow"); +__static_renaming("____overflow_203", "__overflow"); +__static_renaming("___IO_getc_208", "_IO_getc"); +__static_renaming("___IO_getc_209", "_IO_getc"); +__static_renaming("___IO_putc_215", "_IO_putc"); +__static_renaming("___IO_putc_216", "_IO_putc"); +__static_renaming("___IO_feof_221", "_IO_feof"); +__static_renaming("___IO_feof_222", "_IO_feof"); +__static_renaming("___IO_ferror_227", "_IO_ferror"); +__static_renaming("___IO_ferror_228", "_IO_ferror"); +__static_renaming("___IO_peekc_locked_233", "_IO_peekc_locked"); +__static_renaming("___IO_peekc_locked_234", "_IO_peekc_locked"); +__static_renaming("___IO_flockfile_236", "_IO_flockfile"); +__static_renaming("___IO_flockfile_237", "_IO_flockfile"); +__static_renaming("___IO_funlockfile_239", "_IO_funlockfile"); +__static_renaming("___IO_funlockfile_240", "_IO_funlockfile"); +__static_renaming("___IO_ftrylockfile_242", "_IO_ftrylockfile"); +__static_renaming("___IO_ftrylockfile_243", "_IO_ftrylockfile"); +__static_renaming("___IO_vfscanf_245", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_247", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_251", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_252", "_IO_vfscanf"); +__static_renaming("___IO_vfprintf_254", "_IO_vfprintf"); +__static_renaming("___IO_vfprintf_256", "_IO_vfprintf"); +__static_renaming("___IO_vfprintf_260", "_IO_vfprintf"); +__static_renaming("___IO_padn_261", "_IO_padn"); +__static_renaming("___IO_padn_262", "_IO_padn"); +__static_renaming("___IO_sgetn_265", "_IO_sgetn"); +__static_renaming("___IO_sgetn_266", "_IO_sgetn"); +__static_renaming("___IO_seekoff_268", "_IO_seekoff"); +__static_renaming("___IO_seekoff_269", "_IO_seekoff"); +__static_renaming("___IO_seekpos_272", "_IO_seekpos"); +__static_renaming("___IO_seekpos_273", "_IO_seekpos"); +__static_renaming("___IO_free_backup_area_276", "_IO_free_backup_area"); +__static_renaming("___IO_free_backup_area_277", "_IO_free_backup_area"); +__static_renaming("__va_list_279", "va_list"); +__static_renaming("__off_t_281", "off_t"); +__static_renaming("__off_t_283", "off_t"); +__static_renaming("__ssize_t_285", "ssize_t"); +__static_renaming("__fpos_t_287", "fpos_t"); +__static_renaming("__fpos_t_289", "fpos_t"); +__static_renaming("__stdin_291", "stdin"); +__static_renaming("__stdin_292", "stdin"); +__static_renaming("__stdout_294", "stdout"); +__static_renaming("__stdout_295", "stdout"); +__static_renaming("__stderr_297", "stderr"); +__static_renaming("__stderr_298", "stderr"); +__static_renaming("__remove_301", "remove"); +__static_renaming("__rename_304", "rename"); +__static_renaming("__renameat_309", "renameat"); +__static_renaming("__tmpfile_310", "tmpfile"); +__static_renaming("__tmpfile_312", "tmpfile"); +__static_renaming("__tmpfile_314", "tmpfile"); +__static_renaming("__tmpfile_316", "tmpfile"); +__static_renaming("__tmpnam_319", "tmpnam"); +__static_renaming("__tmpnam_320", "tmpnam"); +__static_renaming("__tmpnam_r_322", "tmpnam_r"); +__static_renaming("__tmpnam_r_323", "tmpnam_r"); +__static_renaming("__tempnam_326", "tempnam"); +__static_renaming("__tempnam_327", "tempnam"); +__static_renaming("__fclose_330", "fclose"); +__static_renaming("__fclose_332", "fclose"); +__static_renaming("__fflush_336", "fflush"); +__static_renaming("__fflush_unlocked_340", "fflush_unlocked"); +__static_renaming("__fopen_344", "fopen"); +__static_renaming("__fopen_346", "fopen"); +__static_renaming("__fopen_354", "fopen"); +__static_renaming("__fopen_356", "fopen"); +__static_renaming("__freopen_362", "freopen"); +__static_renaming("__freopen_364", "freopen"); +__static_renaming("__freopen_366", "freopen"); +__static_renaming("__freopen_368", "freopen"); +__static_renaming("__fdopen_372", "fdopen"); +__static_renaming("__fdopen_374", "fdopen"); +__static_renaming("__fmemopen_379", "fmemopen"); +__static_renaming("__fmemopen_381", "fmemopen"); +__static_renaming("__open_memstream_385", "open_memstream"); +__static_renaming("__open_memstream_387", "open_memstream"); +__static_renaming("__setbuf_392", "setbuf"); +__static_renaming("__setbuf_394", "setbuf"); +__static_renaming("__setvbuf_401", "setvbuf"); +__static_renaming("__setbuffer_407", "setbuffer"); +__static_renaming("__setlinebuf_411", "setlinebuf"); +__static_renaming("__fprintf_416", "fprintf"); +__static_renaming("__fprintf_418", "fprintf"); +__static_renaming("__printf_421", "printf"); +__static_renaming("__sprintf_424", "sprintf"); +__static_renaming("__vfprintf_430", "vfprintf"); +__static_renaming("__vprintf_437", "vprintf"); +__static_renaming("__vsprintf_443", "vsprintf"); +__static_renaming("__snprintf_448", "snprintf"); +__static_renaming("__vsnprintf_454", "vsnprintf"); +__static_renaming("__vdprintf_460", "vdprintf"); +__static_renaming("__dprintf_464", "dprintf"); +__static_renaming("__fscanf_468", "fscanf"); +__static_renaming("__fscanf_470", "fscanf"); +__static_renaming("__fscanf_472", "fscanf"); +__static_renaming("__fscanf_474", "fscanf"); +__static_renaming("__scanf_477", "scanf"); +__static_renaming("__scanf_478", "scanf"); +__static_renaming("__sscanf_481", "sscanf"); +__static_renaming("__vfscanf_509", "vfscanf"); +__static_renaming("__vfscanf_513", "vfscanf"); +__static_renaming("__vscanf_520", "vscanf"); +__static_renaming("__vscanf_522", "vscanf"); +__static_renaming("__vsscanf_528", "vsscanf"); +__static_renaming("__fgetc_563", "fgetc"); +__static_renaming("__getc_567", "getc"); +__static_renaming("__getchar_569", "getchar"); +__static_renaming("__getc_unlocked_572", "getc_unlocked"); +__static_renaming("__getchar_unlocked_574", "getchar_unlocked"); +__static_renaming("__fgetc_unlocked_577", "fgetc_unlocked"); +__static_renaming("__fputc_582", "fputc"); +__static_renaming("__fputc_584", "fputc"); +__static_renaming("__putc_589", "putc"); +__static_renaming("__putchar_592", "putchar"); +__static_renaming("__fputc_unlocked_596", "fputc_unlocked"); +__static_renaming("__putc_unlocked_601", "putc_unlocked"); +__static_renaming("__putchar_unlocked_604", "putchar_unlocked"); +__static_renaming("__getw_607", "getw"); +__static_renaming("__putw_612", "putw"); +__static_renaming("__fgets_618", "fgets"); +__static_renaming("__fgets_620", "fgets"); +__static_renaming("__fgets_622", "fgets"); +__static_renaming("__fgets_624", "fgets"); +__static_renaming("____getdelim_631", "__getdelim"); +__static_renaming("____getdelim_635", "__getdelim"); +__static_renaming("__getdelim_644", "getdelim"); +__static_renaming("__getdelim_648", "getdelim"); +__static_renaming("__getline_656", "getline"); +__static_renaming("__getline_660", "getline"); +__static_renaming("__fputs_667", "fputs"); +__static_renaming("__fputs_669", "fputs"); +__static_renaming("__puts_672", "puts"); +__static_renaming("__ungetc_676", "ungetc"); +__static_renaming("__fseek_714", "fseek"); +__static_renaming("__fseek_716", "fseek"); +__static_renaming("__ftell_720", "ftell"); +__static_renaming("__ftell_722", "ftell"); +__static_renaming("__rewind_726", "rewind"); +__static_renaming("__fseeko_733", "fseeko"); +__static_renaming("__fseeko_744", "fseeko"); +__static_renaming("__ftello_750", "ftello"); +__static_renaming("__ftello_754", "ftello"); +__static_renaming("__ftello_758", "ftello"); +__static_renaming("__fgetpos_766", "fgetpos"); +__static_renaming("__fgetpos_778", "fgetpos"); +__static_renaming("__fsetpos_786", "fsetpos"); +__static_renaming("__fsetpos_790", "fsetpos"); +__static_renaming("__clearerr_796", "clearerr"); +__static_renaming("__feof_800", "feof"); +__static_renaming("__feof_802", "feof"); +__static_renaming("__ferror_806", "ferror"); +__static_renaming("__ferror_808", "ferror"); +__static_renaming("__clearerr_unlocked_812", "clearerr_unlocked"); +__static_renaming("__feof_unlocked_816", "feof_unlocked"); +__static_renaming("__feof_unlocked_818", "feof_unlocked"); +__static_renaming("__ferror_unlocked_822", "ferror_unlocked"); +__static_renaming("__ferror_unlocked_824", "ferror_unlocked"); +__static_renaming("__perror_827", "perror"); +__static_renaming("__perror_828", "perror"); +__static_renaming("__sys_nerr_829", "sys_nerr"); +__static_renaming("__sys_errlist_830", "sys_errlist"); +__static_renaming("__fileno_833", "fileno"); +__static_renaming("__fileno_835", "fileno"); +__static_renaming("__fileno_unlocked_839", "fileno_unlocked"); +__static_renaming("__fileno_unlocked_841", "fileno_unlocked"); +__static_renaming("__popen_845", "popen"); +__static_renaming("__popen_847", "popen"); +__static_renaming("__pclose_851", "pclose"); +__static_renaming("__ctermid_854", "ctermid"); +__static_renaming("__flockfile_857", "flockfile"); +__static_renaming("__ftrylockfile_861", "ftrylockfile"); +__static_renaming("__ftrylockfile_863", "ftrylockfile"); +__static_renaming("__funlockfile_867", "funlockfile"); +__static_renaming("____sprintf_chk_899", "__sprintf_chk"); +__static_renaming("____vsprintf_chk_906", "__vsprintf_chk"); +__static_renaming("____snprintf_chk_920", "__snprintf_chk"); +__static_renaming("____vsnprintf_chk_928", "__vsnprintf_chk"); +__static_renaming("____fprintf_chk_943", "__fprintf_chk"); +__static_renaming("____printf_chk_947", "__printf_chk"); +__static_renaming("____vfprintf_chk_954", "__vfprintf_chk"); +__static_renaming("____vprintf_chk_962", "__vprintf_chk"); +__static_renaming("____dprintf_chk_984", "__dprintf_chk"); +__static_renaming("____vdprintf_chk_990", "__vdprintf_chk"); +__static_renaming("____fgets_chk_1004", "__fgets_chk"); +__static_renaming("____fgets_chk_1006", "__fgets_chk"); +__static_renaming("____fgets_chk_1008", "__fgets_chk"); +__static_renaming("____fgets_alias_1014", "__fgets_alias"); +__static_renaming("____fgets_chk_warn_1021", "__fgets_chk_warn"); +__static_renaming("____cnt_1087", "__cnt"); +__static_renaming("____cptr_1088", "__cptr"); +__static_renaming("__ptrdiff_t_1092", "ptrdiff_t"); +__static_renaming("__size_t_1093", "size_t"); +__static_renaming("__wchar_t_1094", "wchar_t"); +__static_renaming("__idtype_t_1100", "idtype_t"); +__static_renaming("____u_char_1101", "__u_char"); +__static_renaming("____u_short_1102", "__u_short"); +__static_renaming("____u_int_1103", "__u_int"); +__static_renaming("____u_long_1104", "__u_long"); +__static_renaming("____int8_t_1105", "__int8_t"); +__static_renaming("____uint8_t_1106", "__uint8_t"); +__static_renaming("____int16_t_1107", "__int16_t"); +__static_renaming("____uint16_t_1108", "__uint16_t"); +__static_renaming("____int32_t_1109", "__int32_t"); +__static_renaming("____uint32_t_1110", "__uint32_t"); +__static_renaming("____int64_t_1111", "__int64_t"); +__static_renaming("____uint64_t_1112", "__uint64_t"); +__static_renaming("____quad_t_1113", "__quad_t"); +__static_renaming("____u_quad_t_1114", "__u_quad_t"); +__static_renaming("____dev_t_1115", "__dev_t"); +__static_renaming("____uid_t_1116", "__uid_t"); +__static_renaming("____gid_t_1117", "__gid_t"); +__static_renaming("____ino_t_1118", "__ino_t"); +__static_renaming("____ino64_t_1119", "__ino64_t"); +__static_renaming("____mode_t_1120", "__mode_t"); +__static_renaming("____nlink_t_1121", "__nlink_t"); +__static_renaming("____off_t_1122", "__off_t"); +__static_renaming("____off64_t_1123", "__off64_t"); +__static_renaming("____pid_t_1124", "__pid_t"); +__static_renaming("____fsid_t_1128", "__fsid_t"); +__static_renaming("____clock_t_1129", "__clock_t"); +__static_renaming("____rlim_t_1130", "__rlim_t"); +__static_renaming("____rlim64_t_1131", "__rlim64_t"); +__static_renaming("____id_t_1132", "__id_t"); +__static_renaming("____time_t_1133", "__time_t"); +__static_renaming("____useconds_t_1134", "__useconds_t"); +__static_renaming("____suseconds_t_1135", "__suseconds_t"); +__static_renaming("____daddr_t_1136", "__daddr_t"); +__static_renaming("____key_t_1137", "__key_t"); +__static_renaming("____clockid_t_1138", "__clockid_t"); +__static_renaming("____timer_t_1139", "__timer_t"); +__static_renaming("____blksize_t_1140", "__blksize_t"); +__static_renaming("____blkcnt_t_1141", "__blkcnt_t"); +__static_renaming("____blkcnt64_t_1142", "__blkcnt64_t"); +__static_renaming("____fsblkcnt_t_1143", "__fsblkcnt_t"); +__static_renaming("____fsblkcnt64_t_1144", "__fsblkcnt64_t"); +__static_renaming("____fsfilcnt_t_1145", "__fsfilcnt_t"); +__static_renaming("____fsfilcnt64_t_1146", "__fsfilcnt64_t"); +__static_renaming("____fsword_t_1147", "__fsword_t"); +__static_renaming("____ssize_t_1148", "__ssize_t"); +__static_renaming("____syscall_slong_t_1149", "__syscall_slong_t"); +__static_renaming("____syscall_ulong_t_1150", "__syscall_ulong_t"); +__static_renaming("____loff_t_1151", "__loff_t"); +__static_renaming("____qaddr_t_1153", "__qaddr_t"); +__static_renaming("____caddr_t_1154", "__caddr_t"); +__static_renaming("____intptr_t_1155", "__intptr_t"); +__static_renaming("____socklen_t_1156", "__socklen_t"); +__static_renaming("____bswap_32_1158", "__bswap_32"); +__static_renaming("____bswap_64_1162", "__bswap_64"); +__static_renaming("____bswap_64_1163", "__bswap_64"); +__static_renaming("____WAIT_STATUS_1185", "__WAIT_STATUS"); +__static_renaming("__div_t_1190", "div_t"); +__static_renaming("__ldiv_t_1195", "ldiv_t"); +__static_renaming("__lldiv_t_1200", "lldiv_t"); +__static_renaming("____ctype_get_mb_cur_max_1201", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1202", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1203", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1204", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1205", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1206", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1207", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_1208", "__ctype_get_mb_cur_max"); +__static_renaming("__atof_1210", "atof"); +__static_renaming("__atof_1211", "atof"); +__static_renaming("__atoi_1213", "atoi"); +__static_renaming("__atoi_1214", "atoi"); +__static_renaming("__atol_1216", "atol"); +__static_renaming("__atol_1217", "atol"); +__static_renaming("__atoll_1219", "atoll"); +__static_renaming("__atoll_1220", "atoll"); +__static_renaming("__strtod_1223", "strtod"); +__static_renaming("__strtof_1226", "strtof"); +__static_renaming("__strtold_1229", "strtold"); +__static_renaming("__strtol_1233", "strtol"); +__static_renaming("__strtoul_1237", "strtoul"); +__static_renaming("__strtoq_1241", "strtoq"); +__static_renaming("__strtouq_1245", "strtouq"); +__static_renaming("__strtoll_1249", "strtoll"); +__static_renaming("__strtoll_1250", "strtoll"); +__static_renaming("__strtoull_1254", "strtoull"); +__static_renaming("__l64a_1259", "l64a"); +__static_renaming("__l64a_1260", "l64a"); +__static_renaming("__a64l_1262", "a64l"); +__static_renaming("__a64l_1263", "a64l"); +__static_renaming("____u_char_1264", "__u_char"); +__static_renaming("____u_short_1265", "__u_short"); +__static_renaming("____u_int_1266", "__u_int"); +__static_renaming("____u_long_1267", "__u_long"); +__static_renaming("____int8_t_1268", "__int8_t"); +__static_renaming("____uint8_t_1269", "__uint8_t"); +__static_renaming("____int16_t_1270", "__int16_t"); +__static_renaming("____uint16_t_1271", "__uint16_t"); +__static_renaming("____int32_t_1272", "__int32_t"); +__static_renaming("____uint32_t_1273", "__uint32_t"); +__static_renaming("____int64_t_1274", "__int64_t"); +__static_renaming("____uint64_t_1275", "__uint64_t"); +__static_renaming("____quad_t_1276", "__quad_t"); +__static_renaming("____u_quad_t_1277", "__u_quad_t"); +__static_renaming("____dev_t_1278", "__dev_t"); +__static_renaming("____uid_t_1279", "__uid_t"); +__static_renaming("____gid_t_1280", "__gid_t"); +__static_renaming("____ino_t_1281", "__ino_t"); +__static_renaming("____ino64_t_1282", "__ino64_t"); +__static_renaming("____mode_t_1283", "__mode_t"); +__static_renaming("____nlink_t_1284", "__nlink_t"); +__static_renaming("____off_t_1285", "__off_t"); +__static_renaming("____off64_t_1286", "__off64_t"); +__static_renaming("____pid_t_1287", "__pid_t"); +__static_renaming("____fsid_t_1291", "__fsid_t"); +__static_renaming("____clock_t_1292", "__clock_t"); +__static_renaming("____rlim_t_1293", "__rlim_t"); +__static_renaming("____rlim64_t_1294", "__rlim64_t"); +__static_renaming("____id_t_1295", "__id_t"); +__static_renaming("____time_t_1296", "__time_t"); +__static_renaming("____useconds_t_1297", "__useconds_t"); +__static_renaming("____suseconds_t_1298", "__suseconds_t"); +__static_renaming("____daddr_t_1299", "__daddr_t"); +__static_renaming("____key_t_1300", "__key_t"); +__static_renaming("____clockid_t_1301", "__clockid_t"); +__static_renaming("____timer_t_1302", "__timer_t"); +__static_renaming("____blksize_t_1303", "__blksize_t"); +__static_renaming("____blkcnt_t_1304", "__blkcnt_t"); +__static_renaming("____blkcnt64_t_1305", "__blkcnt64_t"); +__static_renaming("____fsblkcnt_t_1306", "__fsblkcnt_t"); +__static_renaming("____fsblkcnt64_t_1307", "__fsblkcnt64_t"); +__static_renaming("____fsfilcnt_t_1308", "__fsfilcnt_t"); +__static_renaming("____fsfilcnt64_t_1309", "__fsfilcnt64_t"); +__static_renaming("____fsword_t_1310", "__fsword_t"); +__static_renaming("____ssize_t_1311", "__ssize_t"); +__static_renaming("____syscall_slong_t_1312", "__syscall_slong_t"); +__static_renaming("____syscall_ulong_t_1313", "__syscall_ulong_t"); +__static_renaming("____loff_t_1314", "__loff_t"); +__static_renaming("____qaddr_t_1316", "__qaddr_t"); +__static_renaming("____caddr_t_1317", "__caddr_t"); +__static_renaming("____intptr_t_1318", "__intptr_t"); +__static_renaming("____socklen_t_1319", "__socklen_t"); +__static_renaming("__u_char_1320", "u_char"); +__static_renaming("__u_char_1321", "u_char"); +__static_renaming("__u_char_1322", "u_char"); +__static_renaming("__u_short_1323", "u_short"); +__static_renaming("__u_short_1324", "u_short"); +__static_renaming("__u_short_1325", "u_short"); +__static_renaming("__u_int_1326", "u_int"); +__static_renaming("__u_int_1327", "u_int"); +__static_renaming("__u_int_1328", "u_int"); +__static_renaming("__u_long_1329", "u_long"); +__static_renaming("__u_long_1330", "u_long"); +__static_renaming("__u_long_1331", "u_long"); +__static_renaming("__quad_t_1332", "quad_t"); +__static_renaming("__quad_t_1333", "quad_t"); +__static_renaming("__quad_t_1334", "quad_t"); +__static_renaming("__u_quad_t_1335", "u_quad_t"); +__static_renaming("__u_quad_t_1336", "u_quad_t"); +__static_renaming("__u_quad_t_1337", "u_quad_t"); +__static_renaming("__fsid_t_1338", "fsid_t"); +__static_renaming("__fsid_t_1339", "fsid_t"); +__static_renaming("__fsid_t_1340", "fsid_t"); +__static_renaming("__loff_t_1342", "loff_t"); +__static_renaming("__loff_t_1343", "loff_t"); +__static_renaming("__loff_t_1344", "loff_t"); +__static_renaming("__loff_t_1346", "loff_t"); +__static_renaming("__loff_t_1347", "loff_t"); +__static_renaming("__loff_t_1348", "loff_t"); +__static_renaming("__ino_t_1350", "ino_t"); +__static_renaming("__ino_t_1351", "ino_t"); +__static_renaming("__ino_t_1352", "ino_t"); +__static_renaming("__ino_t_1354", "ino_t"); +__static_renaming("__ino_t_1355", "ino_t"); +__static_renaming("__ino_t_1356", "ino_t"); +__static_renaming("__dev_t_1358", "dev_t"); +__static_renaming("__dev_t_1359", "dev_t"); +__static_renaming("__dev_t_1360", "dev_t"); +__static_renaming("__gid_t_1362", "gid_t"); +__static_renaming("__gid_t_1363", "gid_t"); +__static_renaming("__gid_t_1364", "gid_t"); +__static_renaming("__gid_t_1366", "gid_t"); +__static_renaming("__gid_t_1367", "gid_t"); +__static_renaming("__gid_t_1368", "gid_t"); +__static_renaming("__mode_t_1370", "mode_t"); +__static_renaming("__mode_t_1371", "mode_t"); +__static_renaming("__mode_t_1372", "mode_t"); +__static_renaming("__nlink_t_1374", "nlink_t"); +__static_renaming("__nlink_t_1375", "nlink_t"); +__static_renaming("__nlink_t_1376", "nlink_t"); +__static_renaming("__uid_t_1378", "uid_t"); +__static_renaming("__uid_t_1379", "uid_t"); +__static_renaming("__uid_t_1380", "uid_t"); +__static_renaming("__uid_t_1382", "uid_t"); +__static_renaming("__uid_t_1383", "uid_t"); +__static_renaming("__uid_t_1384", "uid_t"); +__static_renaming("__off_t_1386", "off_t"); +__static_renaming("__off_t_1387", "off_t"); +__static_renaming("__off_t_1389", "off_t"); +__static_renaming("__off_t_1390", "off_t"); +__static_renaming("__pid_t_1392", "pid_t"); +__static_renaming("__pid_t_1393", "pid_t"); +__static_renaming("__pid_t_1394", "pid_t"); +__static_renaming("__pid_t_1396", "pid_t"); +__static_renaming("__pid_t_1397", "pid_t"); +__static_renaming("__id_t_1399", "id_t"); +__static_renaming("__id_t_1400", "id_t"); +__static_renaming("__id_t_1401", "id_t"); +__static_renaming("__ssize_t_1403", "ssize_t"); +__static_renaming("__ssize_t_1404", "ssize_t"); +__static_renaming("__daddr_t_1406", "daddr_t"); +__static_renaming("__daddr_t_1407", "daddr_t"); +__static_renaming("__daddr_t_1408", "daddr_t"); +__static_renaming("__caddr_t_1410", "caddr_t"); +__static_renaming("__caddr_t_1411", "caddr_t"); +__static_renaming("__caddr_t_1412", "caddr_t"); +__static_renaming("__key_t_1413", "key_t"); +__static_renaming("__key_t_1414", "key_t"); +__static_renaming("__key_t_1415", "key_t"); +__static_renaming("__key_t_1417", "key_t"); +__static_renaming("__key_t_1418", "key_t"); +__static_renaming("__key_t_1419", "key_t"); +__static_renaming("__clock_t_1421", "clock_t"); +__static_renaming("__clock_t_1422", "clock_t"); +__static_renaming("__clock_t_1423", "clock_t"); +__static_renaming("__time_t_1425", "time_t"); +__static_renaming("__time_t_1426", "time_t"); +__static_renaming("__time_t_1427", "time_t"); +__static_renaming("__clockid_t_1429", "clockid_t"); +__static_renaming("__clockid_t_1430", "clockid_t"); +__static_renaming("__clockid_t_1431", "clockid_t"); +__static_renaming("__timer_t_1433", "timer_t"); +__static_renaming("__timer_t_1434", "timer_t"); +__static_renaming("__timer_t_1435", "timer_t"); +__static_renaming("__ulong_1437", "ulong"); +__static_renaming("__ulong_1438", "ulong"); +__static_renaming("__ulong_1439", "ulong"); +__static_renaming("__ushort_1440", "ushort"); +__static_renaming("__uint_1441", "uint"); +__static_renaming("__int8_t_1442", "int8_t"); +__static_renaming("__int16_t_1443", "int16_t"); +__static_renaming("__int32_t_1444", "int32_t"); +__static_renaming("__int64_t_1445", "int64_t"); +__static_renaming("__u_int8_t_1446", "u_int8_t"); +__static_renaming("__u_int16_t_1447", "u_int16_t"); +__static_renaming("__u_int32_t_1448", "u_int32_t"); +__static_renaming("__u_int64_t_1449", "u_int64_t"); +__static_renaming("__register_t_1450", "register_t"); +__static_renaming("____bswap_32_1452", "__bswap_32"); +__static_renaming("____bswap_64_1456", "__bswap_64"); +__static_renaming("____bswap_64_1457", "__bswap_64"); +__static_renaming("____sig_atomic_t_1460", "__sig_atomic_t"); +__static_renaming("____sigset_t_1464", "__sigset_t"); +__static_renaming("__sigset_t_1465", "sigset_t"); +__static_renaming("__suseconds_t_1486", "suseconds_t"); +__static_renaming("__suseconds_t_1487", "suseconds_t"); +__static_renaming("__suseconds_t_1488", "suseconds_t"); +__static_renaming("____fd_mask_1490", "__fd_mask"); +__static_renaming("____fd_mask_1491", "__fd_mask"); +__static_renaming("__fd_set_1499", "fd_set"); +__static_renaming("__fd_mask_1500", "fd_mask"); +__static_renaming("__fd_mask_1501", "fd_mask"); +__static_renaming("__select_1513", "select"); +__static_renaming("__select_1514", "select"); +__static_renaming("__pselect_1529", "pselect"); +__static_renaming("__pselect_1530", "pselect"); +__static_renaming("____fdelt_chk_1534", "__fdelt_chk"); +__static_renaming("____fdelt_warn_1536", "__fdelt_warn"); +__static_renaming("__gnu_dev_major_1538", "gnu_dev_major"); +__static_renaming("__gnu_dev_major_1539", "gnu_dev_major"); +__static_renaming("__gnu_dev_minor_1541", "gnu_dev_minor"); +__static_renaming("__gnu_dev_makedev_1544", "gnu_dev_makedev"); +__static_renaming("__blksize_t_1549", "blksize_t"); +__static_renaming("__blksize_t_1550", "blksize_t"); +__static_renaming("__blksize_t_1551", "blksize_t"); +__static_renaming("__blkcnt_t_1553", "blkcnt_t"); +__static_renaming("__blkcnt_t_1554", "blkcnt_t"); +__static_renaming("__blkcnt_t_1555", "blkcnt_t"); +__static_renaming("__fsblkcnt_t_1557", "fsblkcnt_t"); +__static_renaming("__fsblkcnt_t_1558", "fsblkcnt_t"); +__static_renaming("__fsblkcnt_t_1559", "fsblkcnt_t"); +__static_renaming("__blkcnt_t_1561", "blkcnt_t"); +__static_renaming("__blkcnt_t_1562", "blkcnt_t"); +__static_renaming("__blkcnt_t_1563", "blkcnt_t"); +__static_renaming("__fsblkcnt_t_1565", "fsblkcnt_t"); +__static_renaming("__fsblkcnt_t_1566", "fsblkcnt_t"); +__static_renaming("__fsblkcnt_t_1567", "fsblkcnt_t"); +__static_renaming("__fsfilcnt_t_1569", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_1570", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_1571", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_1573", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_1574", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_1575", "fsfilcnt_t"); +__static_renaming("__pthread_t_1577", "pthread_t"); +__static_renaming("__pthread_attr_t_1581", "pthread_attr_t"); +__static_renaming("____pthread_list_t_1586", "__pthread_list_t"); +__static_renaming("____pthread_list_t_1587", "__pthread_list_t"); +__static_renaming("__pthread_mutex_t_1603", "pthread_mutex_t"); +__static_renaming("__pthread_mutexattr_t_1608", "pthread_mutexattr_t"); +__static_renaming("__rand_1609", "rand"); +__static_renaming("__srand_1611", "srand"); +__static_renaming("__rand_r_1613", "rand_r"); +__static_renaming("__drand48_1614", "drand48"); +__static_renaming("__erand48_1616", "erand48"); +__static_renaming("__lrand48_1617", "lrand48"); +__static_renaming("__nrand48_1619", "nrand48"); +__static_renaming("__mrand48_1620", "mrand48"); +__static_renaming("__jrand48_1622", "jrand48"); +__static_renaming("__srand48_1624", "srand48"); +__static_renaming("__seed48_1626", "seed48"); +__static_renaming("__lcong48_1628", "lcong48"); +__static_renaming("__malloc_1631", "malloc"); +__static_renaming("__malloc_1632", "malloc"); +__static_renaming("__malloc_1633", "malloc"); +__static_renaming("__malloc_1634", "malloc"); +__static_renaming("__calloc_1639", "calloc"); +__static_renaming("__calloc_1640", "calloc"); +__static_renaming("__calloc_1641", "calloc"); +__static_renaming("__calloc_1642", "calloc"); +__static_renaming("__realloc_1646", "realloc"); +__static_renaming("__realloc_1647", "realloc"); +__static_renaming("__free_1649", "free"); +__static_renaming("__cfree_1651", "cfree"); +__static_renaming("__alloca_1654", "alloca"); +__static_renaming("__alloca_1655", "alloca"); +__static_renaming("__valloc_1658", "valloc"); +__static_renaming("__valloc_1659", "valloc"); +__static_renaming("__valloc_1660", "valloc"); +__static_renaming("__valloc_1661", "valloc"); +__static_renaming("__posix_memalign_1667", "posix_memalign"); +__static_renaming("__posix_memalign_1668", "posix_memalign"); +__static_renaming("__posix_memalign_1669", "posix_memalign"); +__static_renaming("__posix_memalign_1670", "posix_memalign"); +__static_renaming("__aligned_alloc_1675", "aligned_alloc"); +__static_renaming("__aligned_alloc_1676", "aligned_alloc"); +__static_renaming("__aligned_alloc_1677", "aligned_alloc"); +__static_renaming("__aligned_alloc_1678", "aligned_alloc"); +__static_renaming("__aligned_alloc_1679", "aligned_alloc"); +__static_renaming("__aligned_alloc_1680", "aligned_alloc"); +__static_renaming("__aligned_alloc_1681", "aligned_alloc"); +__static_renaming("__aligned_alloc_1682", "aligned_alloc"); +__static_renaming("__abort_1683", "abort"); +__static_renaming("__atexit_1685", "atexit"); +__static_renaming("__at_quick_exit_1687", "at_quick_exit"); +__static_renaming("__on_exit_1692", "on_exit"); +__static_renaming("__exit_1694", "exit"); +__static_renaming("__exit_1695", "exit"); +__static_renaming("__quick_exit_1697", "quick_exit"); +__static_renaming("___Exit_1699", "_Exit"); +__static_renaming("__getenv_1701", "getenv"); +__static_renaming("__getenv_1702", "getenv"); +__static_renaming("__putenv_1704", "putenv"); +__static_renaming("__setenv_1708", "setenv"); +__static_renaming("__unsetenv_1710", "unsetenv"); +__static_renaming("__clearenv_1711", "clearenv"); +__static_renaming("__mktemp_1713", "mktemp"); +__static_renaming("__mkstemp_1716", "mkstemp"); +__static_renaming("__mkstemp_1717", "mkstemp"); +__static_renaming("__mkstemp_1718", "mkstemp"); +__static_renaming("__mkstemp_1719", "mkstemp"); +__static_renaming("__mkstemps_1724", "mkstemps"); +__static_renaming("__mkstemps_1725", "mkstemps"); +__static_renaming("__mkstemps_1726", "mkstemps"); +__static_renaming("__mkstemps_1727", "mkstemps"); +__static_renaming("__mkdtemp_1729", "mkdtemp"); +__static_renaming("__mkdtemp_1730", "mkdtemp"); +__static_renaming("__system_1732", "system"); +__static_renaming("__system_1733", "system"); +__static_renaming("__system_1734", "system"); +__static_renaming("__system_1735", "system"); +__static_renaming("__realpath_1738", "realpath"); +__static_renaming("__realpath_1739", "realpath"); +__static_renaming("____compar_fn_t_1740", "__compar_fn_t"); +__static_renaming("__bsearch_1751", "bsearch"); +__static_renaming("__bsearch_1752", "bsearch"); +__static_renaming("__bsearch_1755", "bsearch"); +__static_renaming("__bsearch_1756", "bsearch"); +__static_renaming("____l_1765", "__l"); +__static_renaming("____l_1766", "__l"); +__static_renaming("____u_1767", "__u"); +__static_renaming("____u_1768", "__u"); +__static_renaming("____idx_1769", "__idx"); +__static_renaming("____idx_1770", "__idx"); +__static_renaming("____p_1771", "__p"); +__static_renaming("____comparison_1772", "__comparison"); +__static_renaming("__qsort_1784", "qsort"); +__static_renaming("__qsort_1786", "qsort"); +__static_renaming("__qsort_1788", "qsort"); +__static_renaming("__qsort_1790", "qsort"); +__static_renaming("__abs_1793", "abs"); +__static_renaming("__abs_1794", "abs"); +__static_renaming("__labs_1796", "labs"); +__static_renaming("__labs_1797", "labs"); +__static_renaming("__llabs_1799", "llabs"); +__static_renaming("__llabs_1800", "llabs"); +__static_renaming("__div_1803", "div"); +__static_renaming("__div_1804", "div"); +__static_renaming("__ldiv_1807", "ldiv"); +__static_renaming("__ldiv_1809", "ldiv"); +__static_renaming("__lldiv_1813", "lldiv"); +__static_renaming("__lldiv_1815", "lldiv"); +__static_renaming("__ecvt_1821", "ecvt"); +__static_renaming("__ecvt_1822", "ecvt"); +__static_renaming("__fcvt_1827", "fcvt"); +__static_renaming("__fcvt_1828", "fcvt"); +__static_renaming("__gcvt_1832", "gcvt"); +__static_renaming("__gcvt_1833", "gcvt"); +__static_renaming("__qecvt_1838", "qecvt"); +__static_renaming("__qecvt_1839", "qecvt"); +__static_renaming("__qfcvt_1844", "qfcvt"); +__static_renaming("__qfcvt_1845", "qfcvt"); +__static_renaming("__qgcvt_1849", "qgcvt"); +__static_renaming("__qgcvt_1850", "qgcvt"); +__static_renaming("__ecvt_r_1858", "ecvt_r"); +__static_renaming("__ecvt_r_1859", "ecvt_r"); +__static_renaming("__fcvt_r_1867", "fcvt_r"); +__static_renaming("__fcvt_r_1868", "fcvt_r"); +__static_renaming("__qecvt_r_1876", "qecvt_r"); +__static_renaming("__qecvt_r_1877", "qecvt_r"); +__static_renaming("__qfcvt_r_1885", "qfcvt_r"); +__static_renaming("__qfcvt_r_1886", "qfcvt_r"); +__static_renaming("__mblen_1890", "mblen"); +__static_renaming("__mblen_1891", "mblen"); +__static_renaming("__mblen_1892", "mblen"); +__static_renaming("__mblen_1893", "mblen"); +__static_renaming("__mbtowc_1898", "mbtowc"); +__static_renaming("__mbtowc_1899", "mbtowc"); +__static_renaming("__wctomb_1902", "wctomb"); +__static_renaming("__mbstowcs_1907", "mbstowcs"); +__static_renaming("__mbstowcs_1908", "mbstowcs"); +__static_renaming("__wcstombs_1913", "wcstombs"); +__static_renaming("__wcstombs_1914", "wcstombs"); +__static_renaming("__rpmatch_1916", "rpmatch"); +__static_renaming("__rpmatch_1917", "rpmatch"); +__static_renaming("__getsubopt_1921", "getsubopt"); +__static_renaming("__getsubopt_1922", "getsubopt"); +__static_renaming("__getloadavg_1925", "getloadavg"); +__static_renaming("____realpath_chk_1931", "__realpath_chk"); +__static_renaming("____realpath_chk_1932", "__realpath_chk"); +__static_renaming("____realpath_alias_1935", "__realpath_alias"); +__static_renaming("____realpath_chk_warn_1940", "__realpath_chk_warn"); +__static_renaming("____realpath_chk_warn_1941", "__realpath_chk_warn"); +__static_renaming("____ptsname_r_chk_1951", "__ptsname_r_chk"); +__static_renaming("____ptsname_r_chk_1952", "__ptsname_r_chk"); +__static_renaming("____ptsname_r_alias_1957", "__ptsname_r_alias"); +__static_renaming("____ptsname_r_alias_1958", "__ptsname_r_alias"); +__static_renaming("____ptsname_r_chk_warn_1965", "__ptsname_r_chk_warn"); +__static_renaming("____ptsname_r_chk_warn_1966", "__ptsname_r_chk_warn"); +__static_renaming("____wctomb_chk_1977", "__wctomb_chk"); +__static_renaming("____wctomb_chk_1978", "__wctomb_chk"); +__static_renaming("____wctomb_alias_1981", "__wctomb_alias"); +__static_renaming("____mbstowcs_chk_1990", "__mbstowcs_chk"); +__static_renaming("____mbstowcs_chk_1991", "__mbstowcs_chk"); +__static_renaming("____mbstowcs_alias_1996", "__mbstowcs_alias"); +__static_renaming("____mbstowcs_alias_1997", "__mbstowcs_alias"); +__static_renaming("____mbstowcs_chk_warn_2004", "__mbstowcs_chk_warn"); +__static_renaming("____mbstowcs_chk_warn_2005", "__mbstowcs_chk_warn"); +__static_renaming("____wcstombs_chk_2016", "__wcstombs_chk"); +__static_renaming("____wcstombs_chk_2017", "__wcstombs_chk"); +__static_renaming("____wcstombs_alias_2022", "__wcstombs_alias"); +__static_renaming("____wcstombs_alias_2023", "__wcstombs_alias"); +__static_renaming("____wcstombs_chk_warn_2030", "__wcstombs_chk_warn"); +__static_renaming("____wcstombs_chk_warn_2031", "__wcstombs_chk_warn"); +__static_renaming("__ptrdiff_t_2036", "ptrdiff_t"); +__static_renaming("__size_t_2037", "size_t"); +__static_renaming("__memmove_2053", "memmove"); +__static_renaming("__memmove_2054", "memmove"); +__static_renaming("__memmove_2055", "memmove"); +__static_renaming("__memset_2070", "memset"); +__static_renaming("__memset_2071", "memset"); +__static_renaming("__memset_2072", "memset"); +__static_renaming("__memset_2073", "memset"); +__static_renaming("__memset_2074", "memset"); +__static_renaming("__memset_2075", "memset"); +__static_renaming("__memcmp_2081", "memcmp"); +__static_renaming("__memcmp_2082", "memcmp"); +__static_renaming("__memcmp_2083", "memcmp"); +__static_renaming("__memchr_2089", "memchr"); +__static_renaming("__memchr_2090", "memchr"); +__static_renaming("__memchr_2091", "memchr"); +__static_renaming("__strcpy_2094", "strcpy"); +__static_renaming("__strncpy_2100", "strncpy"); +__static_renaming("__strncpy_2101", "strncpy"); +__static_renaming("__strncpy_2102", "strncpy"); +__static_renaming("__strcat_2105", "strcat"); +__static_renaming("__strncat_2111", "strncat"); +__static_renaming("__strncat_2112", "strncat"); +__static_renaming("__strncat_2113", "strncat"); +__static_renaming("__strcmp_2116", "strcmp"); +__static_renaming("__strncmp_2122", "strncmp"); +__static_renaming("__strncmp_2123", "strncmp"); +__static_renaming("__strncmp_2124", "strncmp"); +__static_renaming("__strcoll_2127", "strcoll"); +__static_renaming("__strxfrm_2133", "strxfrm"); +__static_renaming("__strxfrm_2134", "strxfrm"); +__static_renaming("__strxfrm_2135", "strxfrm"); +__static_renaming("____locale_t_2143", "__locale_t"); +__static_renaming("__locale_t_2144", "locale_t"); +__static_renaming("__strcoll_l_2148", "strcoll_l"); +__static_renaming("__strxfrm_l_2155", "strxfrm_l"); +__static_renaming("__strxfrm_l_2156", "strxfrm_l"); +__static_renaming("__strxfrm_l_2157", "strxfrm_l"); +__static_renaming("__strdup_2159", "strdup"); +__static_renaming("__strndup_2164", "strndup"); +__static_renaming("__strndup_2165", "strndup"); +__static_renaming("__strndup_2166", "strndup"); +__static_renaming("__strchr_2169", "strchr"); +__static_renaming("__strrchr_2172", "strrchr"); +__static_renaming("__strcspn_2175", "strcspn"); +__static_renaming("__strcspn_2176", "strcspn"); +__static_renaming("__strcspn_2177", "strcspn"); +__static_renaming("__strspn_2180", "strspn"); +__static_renaming("__strspn_2181", "strspn"); +__static_renaming("__strspn_2182", "strspn"); +__static_renaming("__strpbrk_2185", "strpbrk"); +__static_renaming("__strstr_2188", "strstr"); +__static_renaming("__strtok_2191", "strtok"); +__static_renaming("____strtok_r_2195", "__strtok_r"); +__static_renaming("__strtok_r_2199", "strtok_r"); +__static_renaming("__strlen_2201", "strlen"); +__static_renaming("__strlen_2202", "strlen"); +__static_renaming("__strlen_2203", "strlen"); +__static_renaming("__strlen_2204", "strlen"); +__static_renaming("__strlen_2205", "strlen"); +__static_renaming("__strlen_2206", "strlen"); +__static_renaming("__strnlen_2211", "strnlen"); +__static_renaming("__strnlen_2212", "strnlen"); +__static_renaming("__strnlen_2213", "strnlen"); +__static_renaming("__strerror_2215", "strerror"); +__static_renaming("__strerror_2216", "strerror"); +__static_renaming("__strerror_r_2222", "strerror_r"); +__static_renaming("__strerror_r_2223", "strerror_r"); +__static_renaming("__strerror_r_2224", "strerror_r"); +__static_renaming("__strerror_l_2227", "strerror_l"); +__static_renaming("____bzero_2232", "__bzero"); +__static_renaming("____bzero_2233", "__bzero"); +__static_renaming("____bzero_2234", "__bzero"); +__static_renaming("____bzero_2235", "__bzero"); +__static_renaming("____bzero_2236", "__bzero"); +__static_renaming("____bzero_2237", "__bzero"); +__static_renaming("__bcopy_2243", "bcopy"); +__static_renaming("__bcopy_2244", "bcopy"); +__static_renaming("__bcopy_2245", "bcopy"); +__static_renaming("__bzero_2250", "bzero"); +__static_renaming("__bzero_2251", "bzero"); +__static_renaming("__bzero_2252", "bzero"); +__static_renaming("__bcmp_2258", "bcmp"); +__static_renaming("__bcmp_2259", "bcmp"); +__static_renaming("__bcmp_2260", "bcmp"); +__static_renaming("__index_2263", "index"); +__static_renaming("__rindex_2266", "rindex"); +__static_renaming("__ffs_2268", "ffs"); +__static_renaming("__strcasecmp_2271", "strcasecmp"); +__static_renaming("__strncasecmp_2277", "strncasecmp"); +__static_renaming("__strncasecmp_2278", "strncasecmp"); +__static_renaming("__strncasecmp_2279", "strncasecmp"); +__static_renaming("__strsep_2282", "strsep"); +__static_renaming("__strsignal_2284", "strsignal"); +__static_renaming("____stpcpy_2287", "__stpcpy"); +__static_renaming("__stpcpy_2290", "stpcpy"); +__static_renaming("____stpncpy_2296", "__stpncpy"); +__static_renaming("____stpncpy_2297", "__stpncpy"); +__static_renaming("____stpncpy_2298", "__stpncpy"); +__static_renaming("__stpncpy_2304", "stpncpy"); +__static_renaming("__stpncpy_2305", "stpncpy"); +__static_renaming("__stpncpy_2306", "stpncpy"); +__static_renaming("____stpncpy_chk_2360", "__stpncpy_chk"); +__static_renaming("____stpncpy_chk_2361", "__stpncpy_chk"); +__static_renaming("____stpncpy_chk_2362", "__stpncpy_chk"); +__static_renaming("____stpncpy_alias_2368", "__stpncpy_alias"); +__static_renaming("____stpncpy_alias_2369", "__stpncpy_alias"); +__static_renaming("____stpncpy_alias_2370", "__stpncpy_alias"); +__static_renaming("__ethtable_t_2394", "ethtable_t"); +__static_renaming("__ethtable_t_2395", "ethtable_t"); +__static_renaming("__delete_eth_table_2398", "delete_eth_table"); +__static_renaming("__delete_eth_table_2399", "delete_eth_table"); +__static_renaming("__delete_eth_table_2412", "delete_eth_table"); +__static_renaming("__delete_eth_table_2413", "delete_eth_table"); +__static_renaming("__ch_2419", "ch"); +__static_renaming("__ch_2420", "ch"); +__static_renaming("__prepend_new_eth_table_2427", "prepend_new_eth_table"); +__static_renaming("__prepend_new_eth_table_2428", "prepend_new_eth_table"); +__static_renaming("__clist_2451", "clist"); +__static_renaming("__clist_2452", "clist"); +__static_renaming("__ch_2453", "ch"); +__static_renaming("__ch_2454", "ch"); +__static_renaming("__main_2455", "main"); + +__static_condition_renaming("__static_condition_default_53", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_76", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_84", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_123", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_169", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_170", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_173", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_182", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_187", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_193", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_198", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_201", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_204", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_210", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_217", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_223", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_229", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_235", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_238", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_241", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_244", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_246", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_248", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_249", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_250", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_253", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_255", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_257", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_258", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_259", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_263", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_264", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_267", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_270", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_271", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_274", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_275", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_278", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_280", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); +__static_condition_renaming("__static_condition_default_282", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_284", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_286", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_288", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_290", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_293", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_296", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_299", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_311", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_313", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_315", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_317", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_331", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_333", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_337", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_341", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_345", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_347", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_355", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_357", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_363", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_365", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_367", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_369", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_373", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_375", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_380", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_382", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_386", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_388", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_393", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_395", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_402", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_408", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_412", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_417", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_419", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_431", "!(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_432", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_433", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_438", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_444", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_455", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_461", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_469", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_471", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_473", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_475", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_486", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_488", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_489", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_491", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_493", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_494", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_497", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_499", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_503", "!(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_510", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_511", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_512", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_514", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_515", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_516", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_521", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_523", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_529", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_536", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_537", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_538", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_539", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_541", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_542", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_543", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_544", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_549", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_550", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_552", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_553", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_559", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_560", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_564", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_568", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_573", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_578", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_583", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_585", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_590", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_597", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_602", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_608", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_613", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_619", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_621", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_623", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_625", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_632", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_633", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_634", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_636", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_637", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_638", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_645", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_646", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_647", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_649", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_650", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_651", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_657", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_658", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_659", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_661", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_662", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_663", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_668", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_670", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_677", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_683", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_684", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_685", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_686", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_692", "!(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_693", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_699", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_700", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_701", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_702", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_708", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_709", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_715", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_717", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_721", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_723", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_727", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_734", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_735", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_736", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_745", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_746", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_747", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_751", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_752", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_753", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_755", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_756", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_757", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_759", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_760", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_761", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_767", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_768", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_769", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_779", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_780", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_781", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_787", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_788", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_789", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_791", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_792", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_793", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_797", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_801", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_803", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_807", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_809", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_813", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_817", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_819", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_823", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_825", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_834", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_836", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_840", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_842", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_846", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_848", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_852", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_858", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_862", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_864", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_868", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_872", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_875", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_878", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_883", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_887", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_891", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_894", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_907", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_914", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_929", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_938", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_944", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_955", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_956", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_957", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_963", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_967", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_972", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_978", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_979", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_980", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_991", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_998", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1005", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1007", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1009", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1015", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1022", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1027", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1028", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1035", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1036", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1042", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1043", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1050", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1051", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1057", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1058", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1065", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1066", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1072", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1073", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1080", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1081", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1089", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_1090", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1091", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1152", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1159", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1164", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1165", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1315", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1341", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __u_char_defined)"); +__static_condition_renaming("__static_condition_default_1345", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __u_char_defined)"); +__static_condition_renaming("__static_condition_default_1349", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __u_char_defined)"); +__static_condition_renaming("__static_condition_default_1353", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined)"); +__static_condition_renaming("__static_condition_default_1357", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined)"); +__static_condition_renaming("__static_condition_default_1361", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_1365", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_1369", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_1373", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1377", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __nlink_t_defined)"); +__static_condition_renaming("__static_condition_default_1381", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __nlink_t_defined)"); +__static_condition_renaming("__static_condition_default_1385", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __nlink_t_defined)"); +__static_condition_renaming("__static_condition_default_1388", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1391", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1395", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && (defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1398", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1402", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __id_t_defined)"); +__static_condition_renaming("__static_condition_default_1405", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1409", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_1416", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_1420", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_1424", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __clock_t_defined)"); +__static_condition_renaming("__static_condition_default_1428", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __time_t_defined)"); +__static_condition_renaming("__static_condition_default_1432", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __clockid_t_defined)"); +__static_condition_renaming("__static_condition_default_1436", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timer_t_defined)"); +__static_condition_renaming("__static_condition_default_1453", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1458", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1459", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_1475", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_1485", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_1489", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __suseconds_t_defined)"); +__static_condition_renaming("__static_condition_default_1498", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1515", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_1516", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_1531", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_1532", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_1552", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blksize_t_defined)"); +__static_condition_renaming("__static_condition_default_1556", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined)"); +__static_condition_renaming("__static_condition_default_1560", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1564", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined)"); +__static_condition_renaming("__static_condition_default_1568", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1572", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1576", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_1749", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1750", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1753", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1754", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1773", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1774", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1775", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1776", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1785", "!(defined __need___FILE) && !(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1787", "(defined __need___FILE) && !(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1789", "!(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1791", "(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_1808", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1810", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1814", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1816", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_1944", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_2043", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_2044", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_2045", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _STDLIB_H) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDLIB_H) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDLIB_H) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDLIB_H) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2046", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2047", "(defined __need___FILE) && (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2062", "!(defined __need___FILE) && !(defined __STRICT_ANSI__)"); +__static_condition_renaming("__static_condition_default_2063", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2064", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2312", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2313", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2314", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2320", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2321", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2322", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2328", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2329", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2330", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2342", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2343", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2349", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2350", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2351", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2376", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2377", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2378", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2381", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2387", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2388", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2389", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2400", "!(defined _FORTIFY_SOURCE) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_CLEAN_UP)"); +__static_condition_renaming("__static_condition_default_2401", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP)"); +__static_condition_renaming("__static_condition_default_2402", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP) || !(defined _FORTIFY_SOURCE) && (defined _STDLIB_H) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDLIB_H) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDLIB_H) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDLIB_H) && (defined ENABLE_FEATURE_CLEAN_UP)"); +__static_condition_renaming("__static_condition_default_2403", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP)"); +__static_condition_renaming("__static_condition_default_2404", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP) || !(defined _FORTIFY_SOURCE) && (defined _STDLIB_H) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDLIB_H) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDLIB_H) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDLIB_H) && (defined ENABLE_FEATURE_CLEAN_UP)"); +__static_condition_renaming("__static_condition_default_2405", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_CLEAN_UP)"); +__static_condition_renaming("__static_condition_default_2406", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP)"); +__static_condition_renaming("__static_condition_default_2407", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H) && (defined ENABLE_FEATURE_CLEAN_UP)"); +__static_condition_renaming("__static_condition_default_2408", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP)"); +__static_condition_renaming("__static_condition_default_2409", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H) && (defined ENABLE_FEATURE_CLEAN_UP)"); +__static_condition_renaming("__static_condition_default_2414", "!(defined _FORTIFY_SOURCE) && !(defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined ENABLE_FEATURE_CLEAN_UP)"); +__static_condition_renaming("__static_condition_default_2415", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined ENABLE_FEATURE_CLEAN_UP)"); +__static_condition_renaming("__static_condition_default_2429", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2430", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2431", "(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2432", "(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDLIB_H) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDLIB_H) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDLIB_H) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2433", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2434", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2435", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDLIB_H) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDLIB_H) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDLIB_H) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2436", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined)"); +__static_condition_renaming("__static_condition_default_2437", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || (defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined)"); +__static_condition_renaming("__static_condition_default_2438", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDLIB_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDLIB_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDLIB_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDLIB_H) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDLIB_H) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDLIB_H) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDLIB_H) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2439", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2440", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2441", "(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2442", "(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2443", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2444", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2445", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2446", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined)"); +__static_condition_renaming("__static_condition_default_2447", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined)"); +__static_condition_renaming("__static_condition_default_2448", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2456", "!(defined _FORTIFY_SOURCE) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined ENABLE_FEATURE_CLEAN_UP) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_CLEAN_UP)"); +__static_condition_renaming("__static_condition_default_2457", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined ENABLE_FEATURE_CLEAN_UP)"); +__static_condition_renaming("__static_condition_default_2458", "!(defined ENABLE_FEATURE_CLEAN_UP)"); +__static_condition_renaming("__static_condition_default_2459", "(defined ENABLE_FEATURE_CLEAN_UP)"); +__static_condition_renaming("__static_condition_default_2460", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && (defined _STDLIB_H) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && (defined _STDLIB_H) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO)"); + +if (__static_condition_default_2460) { __static_parse_error("Unable to parse"); } }; @@ -1140,324 +1719,527 @@ typedef long int ____ssize_t_49;// L110:L172 typedef long int ____syscall_slong_t_50;// L93:L175 typedef unsigned long int ____syscall_ulong_t_51;// L94:L177 typedef ____off64_t_24 ____loff_t_52;// L181 -typedef ____quad_t_14 * (____qaddr_t_53);// L182 -typedef char * (____caddr_t_54);// L183 -typedef long int ____intptr_t_55;// L110:L186 -typedef unsigned int ____socklen_t_56;// L92:L189 -typedef struct __forward_tag_reference_57 __FILE_58;// L48 -typedef struct __forward_tag_reference_57 ____FILE_59;// L64 -union ____anonymous_tag_60_61 { -unsigned int ____wch_62;// L265 -char ____wchb_63[4];// L92 +typedef ____quad_t_14 * (____qaddr_t_54);// L182 +typedef char * (____caddr_t_55);// L183 +typedef long int ____intptr_t_56;// L110:L186 +typedef unsigned int ____socklen_t_57;// L92:L189 +typedef struct __forward_tag_reference_58 __FILE_59;// L48 +typedef struct __forward_tag_reference_58 ____FILE_60;// L64 +union ____anonymous_tag_61_62 { +unsigned int ____wch_63;// L265 +char ____wchb_64[4];// L92 +}; +struct ____anonymous_tag_65_66 { +int ____count_67;// L84 +union ____anonymous_tag_61_62 ____value_68;// L85 }; -struct ____anonymous_tag_64_65 { -int ____count_66;// L84 -union ____anonymous_tag_60_61 ____value_67;// L85 +typedef struct ____anonymous_tag_65_66 ____mbstate_t_69;// L82:L94 +struct ____anonymous_tag_70_71 { +____off_t_23 ____pos_72;// L0 +____mbstate_t_69 ____state_74;// L0 }; -typedef struct ____anonymous_tag_64_65 ____mbstate_t_68;// L82:L94 -struct ____anonymous_tag_69_70 { -____off_t_23 ____pos_71;// L0 -____mbstate_t_68 ____state_72;// L0 +typedef struct ____anonymous_tag_70_71 ___G_fpos_t_77;// L21:L25 +struct ____anonymous_tag_78_79 { +____off64_t_24 ____pos_80;// L0 +____mbstate_t_69 ____state_82;// L0 }; -typedef struct ____anonymous_tag_69_70 ___G_fpos_t_75;// L21:L25 -struct ____anonymous_tag_76_77 { -____off64_t_24 ____pos_78;// L0 -____mbstate_t_68 ____state_79;// L0 +typedef struct ____anonymous_tag_78_79 ___G_fpos64_t_85;// L26:L30 +typedef __builtin_va_list ____gnuc_va_list_86;// L40 +typedef void ___IO_lock_t_88;// L150 +struct ___IO_marker_90 { +struct __forward_tag_reference_89 * (___next_91);// L0 +struct __forward_tag_reference_58 * (___sbuf_92);// L0 +int ___pos_93;// L162 }; -typedef struct ____anonymous_tag_76_77 ___G_fpos64_t_81;// L26:L30 -typedef __builtin_va_list ____gnuc_va_list_82;// L40 -typedef void ___IO_lock_t_84;// L150 -struct ___IO_marker_86 { -struct __forward_tag_reference_85 * (___next_87);// L0 -struct __forward_tag_reference_57 * (___sbuf_88);// L0 -int ___pos_89;// L162 +enum ____codecvt_result_98 { +____codecvt_ok_94, +____codecvt_partial_95, +____codecvt_error_96, +____codecvt_noconv_97, }; -enum ____codecvt_result_94 { -____codecvt_ok_90, -____codecvt_partial_91, -____codecvt_error_92, -____codecvt_noconv_93, +struct ___IO_FILE_99 { +int ___flags_100;// L242 +char * (___IO_read_ptr_101);// L247 +char * (___IO_read_end_102);// L248 +char * (___IO_read_base_103);// L249 +char * (___IO_write_base_104);// L250 +char * (___IO_write_ptr_105);// L251 +char * (___IO_write_end_106);// L252 +char * (___IO_buf_base_107);// L253 +char * (___IO_buf_end_108);// L254 +char * (___IO_save_base_109);// L256 +char * (___IO_backup_base_110);// L257 +char * (___IO_save_end_111);// L258 +struct ___IO_marker_90 * (___markers_112);// L260 +struct __forward_tag_reference_58 * (___chain_113);// L0 +int ___fileno_114;// L264 +int ___flags2_115;// L268 +____off_t_23 ___old_offset_116;// L0 +unsigned short ___cur_column_118;// L274 +signed char ___vtable_offset_119;// L275 +char ___shortbuf_120[1];// L276 +___IO_lock_t_88 * (___lock_121);// L0 }; -struct ___IO_FILE_95 { -int ___flags_96;// L242 -char * (___IO_read_ptr_97);// L247 -char * (___IO_read_end_98);// L248 -char * (___IO_read_base_99);// L249 -char * (___IO_write_base_100);// L250 -char * (___IO_write_ptr_101);// L251 -char * (___IO_write_end_102);// L252 -char * (___IO_buf_base_103);// L253 -char * (___IO_buf_end_104);// L254 -char * (___IO_save_base_105);// L256 -char * (___IO_backup_base_106);// L257 -char * (___IO_save_end_107);// L258 -struct ___IO_marker_86 * (___markers_108);// L260 -struct __forward_tag_reference_57 * (___chain_109);// L0 -int ___fileno_110;// L264 -int ___flags2_111;// L268 -____off_t_23 ___old_offset_112;// L0 -unsigned short ___cur_column_113;// L274 -signed char ___vtable_offset_114;// L275 -char ___shortbuf_115[1];// L276 -___IO_lock_t_84 * (___lock_116);// L0 +struct ___IO_FILE_124 { +int ___flags_125;// L242 +char * (___IO_read_ptr_126);// L247 +char * (___IO_read_end_127);// L248 +char * (___IO_read_base_128);// L249 +char * (___IO_write_base_129);// L250 +char * (___IO_write_ptr_130);// L251 +char * (___IO_write_end_131);// L252 +char * (___IO_buf_base_132);// L253 +char * (___IO_buf_end_133);// L254 +char * (___IO_save_base_134);// L256 +char * (___IO_backup_base_135);// L257 +char * (___IO_save_end_136);// L258 +struct ___IO_marker_90 * (___markers_137);// L260 +struct __forward_tag_reference_58 * (___chain_138);// L0 +int ___fileno_139;// L264 +int ___flags2_140;// L268 +____off_t_23 ___old_offset_141;// L0 +unsigned short ___cur_column_143;// L274 +signed char ___vtable_offset_144;// L275 +char ___shortbuf_145[1];// L276 +___IO_lock_t_88 * (___lock_146);// L0 +____off64_t_24 ___offset_148;// L0 +void * (____pad1_150);// L297 +void * (____pad2_151);// L298 +void * (____pad3_152);// L299 +void * (____pad4_153);// L300 +__size_t_1 ____pad5_154;// L0 +int ___mode_155;// L303 +char ___unused2_156[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -struct ___IO_FILE_119 { -int ___flags_120;// L242 -char * (___IO_read_ptr_121);// L247 -char * (___IO_read_end_122);// L248 -char * (___IO_read_base_123);// L249 -char * (___IO_write_base_124);// L250 -char * (___IO_write_ptr_125);// L251 -char * (___IO_write_end_126);// L252 -char * (___IO_buf_base_127);// L253 -char * (___IO_buf_end_128);// L254 -char * (___IO_save_base_129);// L256 -char * (___IO_backup_base_130);// L257 -char * (___IO_save_end_131);// L258 -struct ___IO_marker_86 * (___markers_132);// L260 -struct __forward_tag_reference_57 * (___chain_133);// L0 -int ___fileno_134;// L264 -int ___flags2_135;// L268 -____off_t_23 ___old_offset_136;// L0 -unsigned short ___cur_column_137;// L274 -signed char ___vtable_offset_138;// L275 -char ___shortbuf_139[1];// L276 -___IO_lock_t_84 * (___lock_140);// L0 -____off64_t_24 ___offset_142;// L0 -void * (____pad1_143);// L297 -void * (____pad2_144);// L298 -void * (____pad3_145);// L299 -void * (____pad4_146);// L300 -__size_t_1 ____pad5_147;// L0 -int ___mode_148;// L303 -char ___unused2_149[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +struct ___IO_FILE_complete_157 { +struct ___IO_FILE_99 ___file_158;// L286 +____off64_t_24 ___offset_160;// L0 +void * (____pad1_162);// L297 +void * (____pad2_163);// L298 +void * (____pad3_164);// L299 +void * (____pad4_165);// L300 +__size_t_1 ____pad5_166;// L0 +int ___mode_167;// L303 +char ___unused2_168[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -struct ___IO_FILE_complete_150 { -struct ___IO_FILE_95 ___file_151;// L286 -____off64_t_24 ___offset_153;// L0 -void * (____pad1_154);// L297 -void * (____pad2_155);// L298 -void * (____pad3_156);// L299 -void * (____pad4_157);// L300 -__size_t_1 ____pad5_158;// L0 -int ___mode_159;// L303 -char ___unused2_160[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +typedef struct ___IO_FILE_99 ___IO_FILE_171;// L310 +typedef struct ___IO_FILE_124 ___IO_FILE_172;// L310 +typedef ____ssize_t_49 (____io_read_fn_181) (void * (____cookie_178), char * (____buf_179), __size_t_1 ____nbytes_180);// L333 +typedef ____ssize_t_49 (____io_write_fn_186) (void * (____cookie_183), const char * (____buf_184), __size_t_1 ____n_185);// L341:L342 +typedef int (____io_seek_fn_192) (void * (____cookie_188), ____off64_t_24 * (____pos_189), int ____w_191);// L350 +typedef int (____io_close_fn_195) (void * (____cookie_194));// L353 +typedef ____gnuc_va_list_86 __va_list_279;// L79 +typedef ____off_t_23 __off_t_281;// L90 +typedef ____off64_t_24 __off_t_283;// L92 +typedef ____ssize_t_49 __ssize_t_285;// L102 +typedef ___G_fpos_t_77 __fpos_t_287;// L110 +typedef ___G_fpos64_t_85 __fpos_t_289;// L112 +extern const char * const __sys_errlist_830[];// L27 +typedef long int __ptrdiff_t_1092;// L143:L324 +typedef long unsigned int __size_t_1093;// L177:L209 +typedef int __wchar_t_1094;// L243:L321 +enum ____anonymous_tag_1098_1099 { +__P_ALL_1095, +__P_PID_1096, +__P_PGID_1097, }; -typedef struct ___IO_FILE_95 ___IO_FILE_163;// L310 -typedef struct ___IO_FILE_119 ___IO_FILE_164;// L310 -typedef ____ssize_t_49 (____io_read_fn_173) (void * (____cookie_170), char * (____buf_171), __size_t_1 ____nbytes_172);// L333 -typedef ____ssize_t_49 (____io_write_fn_177) (void * (____cookie_174), const char * (____buf_175), __size_t_1 ____n_176);// L341:L342 -typedef int (____io_seek_fn_181) (void * (____cookie_178), ____off64_t_24 * (____pos_179), int ____w_180);// L350 -typedef int (____io_close_fn_183) (void * (____cookie_182));// L353 -typedef ____gnuc_va_list_82 __va_list_248;// L79 -typedef ____off_t_23 __off_t_250;// L90 -typedef ____off64_t_24 __off_t_251;// L92 -typedef ____ssize_t_49 __ssize_t_252;// L102 -typedef ___G_fpos_t_75 __fpos_t_253;// L110 -typedef ___G_fpos64_t_81 __fpos_t_255;// L112 -extern const char * const __sys_errlist_756[];// L27 -typedef int __wchar_t_1018;// L243:L321 -enum ____anonymous_tag_1022_1023 { -__P_ALL_1019, -__P_PID_1020, -__P_PGID_1021, +typedef enum ____anonymous_tag_1098_1099 __idtype_t_1100;// L50:L55 +typedef unsigned char ____u_char_1101;// L30 +typedef unsigned short int ____u_short_1102;// L31 +typedef unsigned int ____u_int_1103;// L32 +typedef unsigned long int ____u_long_1104;// L33 +typedef signed char ____int8_t_1105;// L36 +typedef unsigned char ____uint8_t_1106;// L37 +typedef signed short int ____int16_t_1107;// L38 +typedef unsigned short int ____uint16_t_1108;// L39 +typedef signed int ____int32_t_1109;// L40 +typedef unsigned int ____uint32_t_1110;// L41 +typedef signed long int ____int64_t_1111;// L43 +typedef unsigned long int ____uint64_t_1112;// L44 +typedef long int ____quad_t_1113;// L52 +typedef unsigned long int ____u_quad_t_1114;// L53 +typedef unsigned long int ____dev_t_1115;// L109:L124 +typedef unsigned int ____uid_t_1116;// L92:L125 +typedef unsigned int ____gid_t_1117;// L92:L126 +typedef unsigned long int ____ino_t_1118;// L94:L127 +typedef unsigned long int ____ino64_t_1119;// L109:L128 +typedef unsigned int ____mode_t_1120;// L92:L129 +typedef unsigned long int ____nlink_t_1121;// L94:L130 +typedef long int ____off_t_1122;// L93:L131 +typedef long int ____off64_t_1123;// L108:L132 +typedef int ____pid_t_1124;// L91:L133 +struct ____anonymous_tag_1125_1126 { +int ____val_1127[2];// L72 }; -typedef enum ____anonymous_tag_1022_1023 __idtype_t_1024;// L50:L55 -struct ____anonymous_tag_1030_1031 { -unsigned int ____w_termsig_1032 : 7;// L72 -unsigned int ____w_coredump_1033 : 1;// L73 -unsigned int ____w_retcode_1034 : 8;// L74 -unsigned int __anon_id_0_1035 : 16;// L75 +typedef struct ____anonymous_tag_1125_1126 ____fsid_t_1128;// L72:L134 +typedef long int ____clock_t_1129;// L93:L135 +typedef unsigned long int ____rlim_t_1130;// L94:L136 +typedef unsigned long int ____rlim64_t_1131;// L109:L137 +typedef unsigned int ____id_t_1132;// L92:L138 +typedef long int ____time_t_1133;// L93:L139 +typedef unsigned int ____useconds_t_1134;// L92:L140 +typedef long int ____suseconds_t_1135;// L93:L141 +typedef int ____daddr_t_1136;// L91:L143 +typedef int ____key_t_1137;// L91:L144 +typedef int ____clockid_t_1138;// L91:L147 +typedef void * (____timer_t_1139);// L70:L150 +typedef long int ____blksize_t_1140;// L93:L153 +typedef long int ____blkcnt_t_1141;// L93:L158 +typedef long int ____blkcnt64_t_1142;// L108:L159 +typedef unsigned long int ____fsblkcnt_t_1143;// L94:L162 +typedef unsigned long int ____fsblkcnt64_t_1144;// L109:L163 +typedef unsigned long int ____fsfilcnt_t_1145;// L94:L166 +typedef unsigned long int ____fsfilcnt64_t_1146;// L109:L167 +typedef long int ____fsword_t_1147;// L93:L170 +typedef long int ____ssize_t_1148;// L110:L172 +typedef long int ____syscall_slong_t_1149;// L93:L175 +typedef unsigned long int ____syscall_ulong_t_1150;// L94:L177 +typedef ____off64_t_1123 ____loff_t_1151;// L181 +typedef ____quad_t_1113 * (____qaddr_t_1153);// L182 +typedef char * (____caddr_t_1154);// L183 +typedef long int ____intptr_t_1155;// L110:L186 +typedef unsigned int ____socklen_t_1156;// L92:L189 +struct ____anonymous_tag_1166_1167 { +unsigned int ____w_termsig_1168 : 7;// L72 +unsigned int ____w_coredump_1169 : 1;// L73 +unsigned int ____w_retcode_1170 : 8;// L74 +unsigned int __anon_id_0_1171 : 16;// L75 }; -struct ____anonymous_tag_1036_1037 { -unsigned int ____w_stopval_1038 : 8;// L87 -unsigned int ____w_stopsig_1039 : 8;// L88 -unsigned int __anon_id_1_1040 : 16;// L89 +struct ____anonymous_tag_1172_1173 { +unsigned int ____w_stopval_1174 : 8;// L87 +unsigned int ____w_stopsig_1175 : 8;// L88 +unsigned int __anon_id_1_1176 : 16;// L89 }; -union __wait_1041 { -int __w_status_1042;// L68 -struct ____anonymous_tag_1030_1031 ____wait_terminated_1043;// L69 -struct ____anonymous_tag_1036_1037 ____wait_stopped_1044;// L84 +union __wait_1177 { +int __w_status_1178;// L68 +struct ____anonymous_tag_1166_1167 ____wait_terminated_1179;// L69 +struct ____anonymous_tag_1172_1173 ____wait_stopped_1180;// L84 }; -union ____anonymous_tag_1045_1046 { -union __wait_1041 * (____uptr_1047);// L69 -int * (____iptr_1048);// L70 +union ____anonymous_tag_1181_1182 { +union __wait_1177 * (____uptr_1183);// L69 +int * (____iptr_1184);// L70 }; -typedef union ____anonymous_tag_1045_1046 ____WAIT_STATUS_1049;// L67:L71 -struct ____anonymous_tag_1050_1051 { -int __quot_1052;// L99 -int __rem_1053;// L100 +typedef union ____anonymous_tag_1181_1182 ____WAIT_STATUS_1185;// L67:L71 +struct ____anonymous_tag_1186_1187 { +int __quot_1188;// L99 +int __rem_1189;// L100 }; -typedef struct ____anonymous_tag_1050_1051 __div_t_1054;// L97:L101 -struct ____anonymous_tag_1055_1056 { -long int __quot_1057;// L107 -long int __rem_1058;// L108 +typedef struct ____anonymous_tag_1186_1187 __div_t_1190;// L97:L101 +struct ____anonymous_tag_1191_1192 { +long int __quot_1193;// L107 +long int __rem_1194;// L108 }; -typedef struct ____anonymous_tag_1055_1056 __ldiv_t_1059;// L105:L109 -struct ____anonymous_tag_1060_1061 { -long long int __quot_1062;// L119 -long long int __rem_1063;// L120 +typedef struct ____anonymous_tag_1191_1192 __ldiv_t_1195;// L105:L109 +struct ____anonymous_tag_1196_1197 { +long long int __quot_1198;// L119 +long long int __rem_1199;// L120 }; -typedef struct ____anonymous_tag_1060_1061 __lldiv_t_1064;// L117:L121 -typedef ____u_char_2 __u_char_1124;// L33 -typedef ____u_short_3 __u_short_1125;// L34 -typedef ____u_int_4 __u_int_1126;// L35 -typedef ____u_long_5 __u_long_1127;// L36 -typedef ____quad_t_14 __quad_t_1128;// L37 -typedef ____u_quad_t_15 __u_quad_t_1129;// L38 -typedef ____fsid_t_29 __fsid_t_1130;// L39 -typedef ____loff_t_52 __loff_t_1131;// L44 -typedef ____ino_t_19 __ino_t_1132;// L48 -typedef ____ino64_t_20 __ino_t_1133;// L50 -typedef ____dev_t_16 __dev_t_1134;// L60 -typedef ____gid_t_18 __gid_t_1135;// L65 -typedef ____gid_t_18 __gid_t_1136;// L65 -typedef ____mode_t_21 __mode_t_1137;// L70 -typedef ____nlink_t_22 __nlink_t_1138;// L75 -typedef ____uid_t_17 __uid_t_1139;// L80 -typedef ____uid_t_17 __uid_t_1140;// L80 -typedef ____pid_t_25 __pid_t_1141;// L98 -typedef ____id_t_33 __id_t_1142;// L104 -typedef ____daddr_t_37 __daddr_t_1143;// L115 -typedef ____caddr_t_54 __caddr_t_1144;// L116 -typedef ____key_t_38 __key_t_1145;// L122 -typedef ____key_t_38 __key_t_1146;// L122 -typedef ____clock_t_30 __clock_t_1147;// L59 -typedef ____time_t_34 __time_t_1148;// L75 -typedef ____clockid_t_39 __clockid_t_1149;// L91 -typedef ____timer_t_40 __timer_t_1150;// L103 -typedef unsigned long int __ulong_1151;// L150 -typedef unsigned long int __ulong_1152;// L150 -typedef unsigned long int __ulong_1153;// L150 -typedef unsigned short int __ushort_1154;// L151 -typedef unsigned int __uint_1155;// L152 -typedef int __int8_t_1156;// L188:L194 -typedef int __int16_t_1157;// L188:L195 -typedef int __int32_t_1158;// L188:L196 -typedef int __int64_t_1159;// L188:L197 -typedef unsigned int __u_int8_t_1160;// L190:L200 -typedef unsigned int __u_int16_t_1161;// L190:L201 -typedef unsigned int __u_int32_t_1162;// L190:L202 -typedef unsigned int __u_int64_t_1163;// L190:L203 -typedef int __register_t_1164;// L205 -typedef int ____sig_atomic_t_1170;// L22 -struct ____anonymous_tag_1171_1172 { -unsigned long int ____val_1173[( 1024 / ( 8 * sizeof(unsigned long) ) )];// L29 +typedef struct ____anonymous_tag_1196_1197 __lldiv_t_1200;// L117:L121 +typedef unsigned char ____u_char_1264;// L30 +typedef unsigned short int ____u_short_1265;// L31 +typedef unsigned int ____u_int_1266;// L32 +typedef unsigned long int ____u_long_1267;// L33 +typedef signed char ____int8_t_1268;// L36 +typedef unsigned char ____uint8_t_1269;// L37 +typedef signed short int ____int16_t_1270;// L38 +typedef unsigned short int ____uint16_t_1271;// L39 +typedef signed int ____int32_t_1272;// L40 +typedef unsigned int ____uint32_t_1273;// L41 +typedef signed long int ____int64_t_1274;// L43 +typedef unsigned long int ____uint64_t_1275;// L44 +typedef long int ____quad_t_1276;// L52 +typedef unsigned long int ____u_quad_t_1277;// L53 +typedef unsigned long int ____dev_t_1278;// L109:L124 +typedef unsigned int ____uid_t_1279;// L92:L125 +typedef unsigned int ____gid_t_1280;// L92:L126 +typedef unsigned long int ____ino_t_1281;// L94:L127 +typedef unsigned long int ____ino64_t_1282;// L109:L128 +typedef unsigned int ____mode_t_1283;// L92:L129 +typedef unsigned long int ____nlink_t_1284;// L94:L130 +typedef long int ____off_t_1285;// L93:L131 +typedef long int ____off64_t_1286;// L108:L132 +typedef int ____pid_t_1287;// L91:L133 +struct ____anonymous_tag_1288_1289 { +int ____val_1290[2];// L72 }; -typedef struct ____anonymous_tag_1171_1172 ____sigset_t_1174;// L27:L30 -typedef ____sigset_t_1174 __sigset_t_1175;// L37 -struct __timespec_1176 { -____time_t_34 __tv_sec_1177;// L0 -____syscall_slong_t_50 __tv_nsec_1178;// L0 +typedef struct ____anonymous_tag_1288_1289 ____fsid_t_1291;// L72:L134 +typedef long int ____clock_t_1292;// L93:L135 +typedef unsigned long int ____rlim_t_1293;// L94:L136 +typedef unsigned long int ____rlim64_t_1294;// L109:L137 +typedef unsigned int ____id_t_1295;// L92:L138 +typedef long int ____time_t_1296;// L93:L139 +typedef unsigned int ____useconds_t_1297;// L92:L140 +typedef long int ____suseconds_t_1298;// L93:L141 +typedef int ____daddr_t_1299;// L91:L143 +typedef int ____key_t_1300;// L91:L144 +typedef int ____clockid_t_1301;// L91:L147 +typedef void * (____timer_t_1302);// L70:L150 +typedef long int ____blksize_t_1303;// L93:L153 +typedef long int ____blkcnt_t_1304;// L93:L158 +typedef long int ____blkcnt64_t_1305;// L108:L159 +typedef unsigned long int ____fsblkcnt_t_1306;// L94:L162 +typedef unsigned long int ____fsblkcnt64_t_1307;// L109:L163 +typedef unsigned long int ____fsfilcnt_t_1308;// L94:L166 +typedef unsigned long int ____fsfilcnt64_t_1309;// L109:L167 +typedef long int ____fsword_t_1310;// L93:L170 +typedef long int ____ssize_t_1311;// L110:L172 +typedef long int ____syscall_slong_t_1312;// L93:L175 +typedef unsigned long int ____syscall_ulong_t_1313;// L94:L177 +typedef ____off64_t_1286 ____loff_t_1314;// L181 +typedef ____quad_t_1276 * (____qaddr_t_1316);// L182 +typedef char * (____caddr_t_1317);// L183 +typedef long int ____intptr_t_1318;// L110:L186 +typedef unsigned int ____socklen_t_1319;// L92:L189 +typedef ____u_char_2 __u_char_1320;// L33 +typedef ____u_char_1101 __u_char_1321;// L33 +typedef ____u_char_1264 __u_char_1322;// L33 +typedef ____u_short_3 __u_short_1323;// L34 +typedef ____u_short_1102 __u_short_1324;// L34 +typedef ____u_short_1265 __u_short_1325;// L34 +typedef ____u_int_4 __u_int_1326;// L35 +typedef ____u_int_1103 __u_int_1327;// L35 +typedef ____u_int_1266 __u_int_1328;// L35 +typedef ____u_long_5 __u_long_1329;// L36 +typedef ____u_long_1104 __u_long_1330;// L36 +typedef ____u_long_1267 __u_long_1331;// L36 +typedef ____quad_t_14 __quad_t_1332;// L37 +typedef ____quad_t_1113 __quad_t_1333;// L37 +typedef ____quad_t_1276 __quad_t_1334;// L37 +typedef ____u_quad_t_15 __u_quad_t_1335;// L38 +typedef ____u_quad_t_1114 __u_quad_t_1336;// L38 +typedef ____u_quad_t_1277 __u_quad_t_1337;// L38 +typedef ____fsid_t_29 __fsid_t_1338;// L39 +typedef ____fsid_t_1128 __fsid_t_1339;// L39 +typedef ____fsid_t_1291 __fsid_t_1340;// L39 +typedef ____loff_t_52 __loff_t_1342;// L44 +typedef ____loff_t_1151 __loff_t_1343;// L44 +typedef ____loff_t_1314 __loff_t_1344;// L44 +typedef ____loff_t_52 __loff_t_1346;// L44 +typedef ____loff_t_1151 __loff_t_1347;// L44 +typedef ____loff_t_1314 __loff_t_1348;// L44 +typedef ____ino64_t_20 __ino_t_1350;// L50 +typedef ____ino64_t_1119 __ino_t_1351;// L50 +typedef ____ino64_t_1282 __ino_t_1352;// L50 +typedef ____ino_t_19 __ino_t_1354;// L48 +typedef ____ino_t_1118 __ino_t_1355;// L48 +typedef ____ino_t_1281 __ino_t_1356;// L48 +typedef ____dev_t_16 __dev_t_1358;// L60 +typedef ____dev_t_1115 __dev_t_1359;// L60 +typedef ____dev_t_1278 __dev_t_1360;// L60 +typedef ____gid_t_18 __gid_t_1362;// L65 +typedef ____gid_t_1117 __gid_t_1363;// L65 +typedef ____gid_t_1280 __gid_t_1364;// L65 +typedef ____gid_t_18 __gid_t_1366;// L65 +typedef ____gid_t_1117 __gid_t_1367;// L65 +typedef ____gid_t_1280 __gid_t_1368;// L65 +typedef ____mode_t_21 __mode_t_1370;// L70 +typedef ____mode_t_1120 __mode_t_1371;// L70 +typedef ____mode_t_1283 __mode_t_1372;// L70 +typedef ____nlink_t_22 __nlink_t_1374;// L75 +typedef ____nlink_t_1121 __nlink_t_1375;// L75 +typedef ____nlink_t_1284 __nlink_t_1376;// L75 +typedef ____uid_t_17 __uid_t_1378;// L80 +typedef ____uid_t_1116 __uid_t_1379;// L80 +typedef ____uid_t_1279 __uid_t_1380;// L80 +typedef ____uid_t_17 __uid_t_1382;// L80 +typedef ____uid_t_1116 __uid_t_1383;// L80 +typedef ____uid_t_1279 __uid_t_1384;// L80 +typedef ____off64_t_1123 __off_t_1386;// L88 +typedef ____off64_t_1286 __off_t_1387;// L88 +typedef ____off_t_1122 __off_t_1389;// L86 +typedef ____off_t_1285 __off_t_1390;// L86 +typedef ____pid_t_25 __pid_t_1392;// L98 +typedef ____pid_t_1124 __pid_t_1393;// L98 +typedef ____pid_t_1287 __pid_t_1394;// L98 +typedef ____pid_t_1124 __pid_t_1396;// L98 +typedef ____pid_t_1287 __pid_t_1397;// L98 +typedef ____id_t_33 __id_t_1399;// L104 +typedef ____id_t_1132 __id_t_1400;// L104 +typedef ____id_t_1295 __id_t_1401;// L104 +typedef ____ssize_t_1148 __ssize_t_1403;// L109 +typedef ____ssize_t_1311 __ssize_t_1404;// L109 +typedef ____daddr_t_37 __daddr_t_1406;// L115 +typedef ____daddr_t_1136 __daddr_t_1407;// L115 +typedef ____daddr_t_1299 __daddr_t_1408;// L115 +typedef ____caddr_t_55 __caddr_t_1410;// L116 +typedef ____caddr_t_1154 __caddr_t_1411;// L116 +typedef ____caddr_t_1317 __caddr_t_1412;// L116 +typedef ____key_t_38 __key_t_1413;// L122 +typedef ____key_t_1137 __key_t_1414;// L122 +typedef ____key_t_1300 __key_t_1415;// L122 +typedef ____key_t_38 __key_t_1417;// L122 +typedef ____key_t_1137 __key_t_1418;// L122 +typedef ____key_t_1300 __key_t_1419;// L122 +typedef ____clock_t_30 __clock_t_1421;// L59 +typedef ____clock_t_1129 __clock_t_1422;// L59 +typedef ____clock_t_1292 __clock_t_1423;// L59 +typedef ____time_t_34 __time_t_1425;// L75 +typedef ____time_t_1133 __time_t_1426;// L75 +typedef ____time_t_1296 __time_t_1427;// L75 +typedef ____clockid_t_39 __clockid_t_1429;// L91 +typedef ____clockid_t_1138 __clockid_t_1430;// L91 +typedef ____clockid_t_1301 __clockid_t_1431;// L91 +typedef ____timer_t_40 __timer_t_1433;// L103 +typedef ____timer_t_1139 __timer_t_1434;// L103 +typedef ____timer_t_1302 __timer_t_1435;// L103 +typedef unsigned long int __ulong_1437;// L150 +typedef unsigned long int __ulong_1438;// L150 +typedef unsigned long int __ulong_1439;// L150 +typedef unsigned short int __ushort_1440;// L151 +typedef unsigned int __uint_1441;// L152 +typedef int __int8_t_1442;// L188:L194 +typedef int __int16_t_1443;// L188:L195 +typedef int __int32_t_1444;// L188:L196 +typedef int __int64_t_1445;// L188:L197 +typedef unsigned int __u_int8_t_1446;// L190:L200 +typedef unsigned int __u_int16_t_1447;// L190:L201 +typedef unsigned int __u_int32_t_1448;// L190:L202 +typedef unsigned int __u_int64_t_1449;// L190:L203 +typedef int __register_t_1450;// L205 +typedef int ____sig_atomic_t_1460;// L22 +struct ____anonymous_tag_1461_1462 { +unsigned long int ____val_1463[( 1024 / ( 8 * sizeof(unsigned long) ) )];// L29 }; -struct __timeval_1179 { -____time_t_34 __tv_sec_1180;// L0 -____suseconds_t_36 __tv_usec_1181;// L0 +typedef struct ____anonymous_tag_1461_1462 ____sigset_t_1464;// L27:L30 +typedef ____sigset_t_1464 __sigset_t_1465;// L37 +struct __timespec_1466 { +____time_t_34 __tv_sec_1467;// L0 +____time_t_1133 __tv_sec_1468;// L0 +____time_t_1296 __tv_sec_1469;// L0 +____syscall_slong_t_50 __tv_nsec_1471;// L0 +____syscall_slong_t_1149 __tv_nsec_1472;// L0 +____syscall_slong_t_1312 __tv_nsec_1473;// L0 }; -typedef ____suseconds_t_36 __suseconds_t_1182;// L48 -typedef long int ____fd_mask_1183;// L54 -typedef long int ____fd_mask_1184;// L54 -struct ____anonymous_tag_1185_1186 { -____fd_mask_1183 ____fds_bits_1187[1024 / ( 8 * ( int ) sizeof(long) )];// L0 -____fd_mask_1184 ____fds_bits_1188[1024 / ( 8 * ( int ) sizeof(long) )];// L0 +struct __timeval_1476 { +____time_t_34 __tv_sec_1477;// L0 +____time_t_1133 __tv_sec_1478;// L0 +____time_t_1296 __tv_sec_1479;// L0 +____suseconds_t_36 __tv_usec_1481;// L0 +____suseconds_t_1135 __tv_usec_1482;// L0 +____suseconds_t_1298 __tv_usec_1483;// L0 }; -typedef struct ____anonymous_tag_1185_1186 __fd_set_1189;// L64:L75 -typedef ____fd_mask_1183 __fd_mask_1190;// L82 -typedef ____fd_mask_1184 __fd_mask_1191;// L82 -typedef ____blksize_t_41 __blksize_t_1227;// L228 -typedef ____blkcnt_t_42 __blkcnt_t_1228;// L235 -typedef ____fsblkcnt_t_44 __fsblkcnt_t_1229;// L239 -typedef ____blkcnt64_t_43 __blkcnt_t_1230;// L248 -typedef ____fsblkcnt64_t_45 __fsblkcnt_t_1231;// L252 -typedef ____fsfilcnt_t_46 __fsfilcnt_t_1232;// L243 -typedef ____fsfilcnt64_t_47 __fsfilcnt_t_1233;// L256 -typedef unsigned long int __pthread_t_1234;// L60 -union __pthread_attr_t_1235 { -char ____size_1236[56];// L65 -long int ____align_1237;// L66 +typedef ____suseconds_t_36 __suseconds_t_1486;// L48 +typedef ____suseconds_t_1135 __suseconds_t_1487;// L48 +typedef ____suseconds_t_1298 __suseconds_t_1488;// L48 +typedef long int ____fd_mask_1490;// L54 +typedef long int ____fd_mask_1491;// L54 +struct ____anonymous_tag_1492_1493 { +____fd_mask_1490 ____fds_bits_1494[1024 / ( 8 * ( int ) sizeof(long) )];// L0 +____fd_mask_1491 ____fds_bits_1496[1024 / ( 8 * ( int ) sizeof(long) )];// L0 }; -typedef union __pthread_attr_t_1235 __pthread_attr_t_1238;// L69 -struct ____pthread_internal_list_1240 { -struct __forward_tag_reference_1239 * (____prev_1241);// L0 -struct __forward_tag_reference_1239 * (____next_1242);// L0 +typedef struct ____anonymous_tag_1492_1493 __fd_set_1499;// L64:L75 +typedef ____fd_mask_1490 __fd_mask_1500;// L82 +typedef ____fd_mask_1491 __fd_mask_1501;// L82 +typedef ____blksize_t_41 __blksize_t_1549;// L228 +typedef ____blksize_t_1140 __blksize_t_1550;// L228 +typedef ____blksize_t_1303 __blksize_t_1551;// L228 +typedef ____blkcnt_t_42 __blkcnt_t_1553;// L235 +typedef ____blkcnt_t_1141 __blkcnt_t_1554;// L235 +typedef ____blkcnt_t_1304 __blkcnt_t_1555;// L235 +typedef ____fsblkcnt_t_44 __fsblkcnt_t_1557;// L239 +typedef ____fsblkcnt_t_1143 __fsblkcnt_t_1558;// L239 +typedef ____fsblkcnt_t_1306 __fsblkcnt_t_1559;// L239 +typedef ____blkcnt64_t_43 __blkcnt_t_1561;// L248 +typedef ____blkcnt64_t_1142 __blkcnt_t_1562;// L248 +typedef ____blkcnt64_t_1305 __blkcnt_t_1563;// L248 +typedef ____fsblkcnt64_t_45 __fsblkcnt_t_1565;// L252 +typedef ____fsblkcnt64_t_1144 __fsblkcnt_t_1566;// L252 +typedef ____fsblkcnt64_t_1307 __fsblkcnt_t_1567;// L252 +typedef ____fsfilcnt_t_46 __fsfilcnt_t_1569;// L243 +typedef ____fsfilcnt_t_1145 __fsfilcnt_t_1570;// L243 +typedef ____fsfilcnt_t_1308 __fsfilcnt_t_1571;// L243 +typedef ____fsfilcnt64_t_47 __fsfilcnt_t_1573;// L256 +typedef ____fsfilcnt64_t_1146 __fsfilcnt_t_1574;// L256 +typedef ____fsfilcnt64_t_1309 __fsfilcnt_t_1575;// L256 +typedef unsigned long int __pthread_t_1577;// L60 +union __pthread_attr_t_1578 { +char ____size_1579[56];// L65 +long int ____align_1580;// L66 }; -typedef struct ____pthread_internal_list_1240 ____pthread_list_t_1243;// L75:L79 -typedef struct ____pthread_internal_list_1240 ____pthread_list_t_1244;// L75:L79 -struct ____pthread_mutex_s_1245 { -int ____lock_1246;// L94 -unsigned int ____count_1247;// L95 -int ____owner_1248;// L96 -unsigned int ____nusers_1249;// L98 -int ____kind_1250;// L102 -short ____spins_1251;// L104 -short ____elision_1252;// L105 -____pthread_list_t_1243 ____list_1253;// L0 -____pthread_list_t_1244 ____list_1254;// L0 +typedef union __pthread_attr_t_1578 __pthread_attr_t_1581;// L69 +struct ____pthread_internal_list_1583 { +struct __forward_tag_reference_1582 * (____prev_1584);// L0 +struct __forward_tag_reference_1582 * (____next_1585);// L0 }; -union ____anonymous_tag_1255_1256 { -struct ____pthread_mutex_s_1245 ____data_1257;// L92 -char ____size_1258[40];// L126 -long int ____align_1259;// L127 +typedef struct ____pthread_internal_list_1583 ____pthread_list_t_1586;// L75:L79 +typedef struct ____pthread_internal_list_1583 ____pthread_list_t_1587;// L75:L79 +struct ____pthread_mutex_s_1588 { +int ____lock_1589;// L94 +unsigned int ____count_1590;// L95 +int ____owner_1591;// L96 +unsigned int ____nusers_1592;// L98 +int ____kind_1593;// L102 +short ____spins_1594;// L104 +short ____elision_1595;// L105 +____pthread_list_t_1586 ____list_1596;// L0 +____pthread_list_t_1587 ____list_1597;// L0 }; -typedef union ____anonymous_tag_1255_1256 __pthread_mutex_t_1260;// L90:L128 -union ____anonymous_tag_1261_1262 { -char ____size_1263[4];// L132 -int ____align_1264;// L133 +union ____anonymous_tag_1598_1599 { +struct ____pthread_mutex_s_1588 ____data_1600;// L92 +char ____size_1601[40];// L126 +long int ____align_1602;// L127 }; -typedef union ____anonymous_tag_1261_1262 __pthread_mutexattr_t_1265;// L130:L134 -typedef int (* (____compar_fn_t_1375)) (const void *, const void *);// L741 -struct ____locale_struct_1658 { -struct __forward_tag_reference_1657 * (____locales_1659[13]);// L0 -const unsigned short int * (____ctype_b_1660);// L33 -const int * (____ctype_tolower_1661);// L34 -const int * (____ctype_toupper_1662);// L35 -const char * (____names_1663[13]);// L38 +typedef union ____anonymous_tag_1598_1599 __pthread_mutex_t_1603;// L90:L128 +union ____anonymous_tag_1604_1605 { +char ____size_1606[4];// L132 +int ____align_1607;// L133 }; -typedef struct ____locale_struct_1658 * (____locale_t_1664);// L27:L39 -typedef ____locale_t_1664 __locale_t_1665;// L42 -struct __ethtable_s_1820 { -struct __forward_tag_reference_1819 * (__next_1821);// L0 -char * (__ifname_1822);// L9 +typedef union ____anonymous_tag_1604_1605 __pthread_mutexattr_t_1608;// L130:L134 +typedef int (* (____compar_fn_t_1740)) (const void *, const void *);// L741 +typedef long int __ptrdiff_t_2036;// L143:L324 +typedef long unsigned int __size_t_2037;// L177:L209 +struct ____locale_struct_2137 { +struct __forward_tag_reference_2136 * (____locales_2138[13]);// L0 +const unsigned short int * (____ctype_b_2139);// L33 +const int * (____ctype_tolower_2140);// L34 +const int * (____ctype_toupper_2141);// L35 +const char * (____names_2142[13]);// L38 }; -typedef struct __ethtable_s_1820 __ethtable_t_1823;// L7:L10 -typedef struct __ethtable_s_1820 __ethtable_t_1824;// L7:L10 +typedef struct ____locale_struct_2137 * (____locale_t_2143);// L27:L39 +typedef ____locale_t_2143 __locale_t_2144;// L42 +struct __ethtable_s_2391 { +struct __forward_tag_reference_2390 * (__next_2392);// L0 +char * (__ifname_2393);// L9 +}; +typedef struct __ethtable_s_2391 __ethtable_t_2394;// L7:L10 +typedef struct __ethtable_s_2391 __ethtable_t_2395;// L7:L10 -struct __forward_tag_reference_57 { // generated union of struct variations +struct __forward_tag_reference_89 { // generated union of struct variations union { -struct ___IO_FILE_95 ___IO_FILE_95; -struct ___IO_FILE_119 ___IO_FILE_119; +struct ___IO_marker_90 ___IO_marker_90; }; }; -struct __forward_tag_reference_1819 { // generated union of struct variations +struct __forward_tag_reference_1582 { // generated union of struct variations union { -struct __ethtable_s_1820 __ethtable_s_1820; }; }; -struct __forward_tag_reference_85 { // generated union of struct variations +struct __forward_tag_reference_58 { // generated union of struct variations union { -struct ___IO_marker_86 ___IO_marker_86; +struct ___IO_FILE_99 ___IO_FILE_99; +struct ___IO_FILE_124 ___IO_FILE_124; }; }; -struct __forward_tag_reference_1239 { // generated union of struct variations +struct __forward_tag_reference_2136 { // generated union of struct variations union { }; }; -struct __forward_tag_reference_83 { // generated union of struct variations +struct __forward_tag_reference_87 { // generated union of struct variations union { }; }; -struct __forward_tag_reference_1657 { // generated union of struct variations +struct __forward_tag_reference_174 { // generated union of struct variations union { }; }; -struct __forward_tag_reference_166 { // generated union of struct variations +struct __forward_tag_reference_2390 { // generated union of struct variations union { +struct __ethtable_s_2391 __ethtable_s_2391; }; }; @@ -1515,225 +2297,225 @@ union { // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_57 ;// L0 +struct __forward_tag_reference_58 ;// L0 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_83 ;// L0 -struct __forward_tag_reference_83 ;// L0 -struct __forward_tag_reference_57 ;// L0 +struct __forward_tag_reference_87 ;// L0 +struct __forward_tag_reference_87 ;// L0 +struct __forward_tag_reference_58 ;// L0 // typedef moved to top of scope -struct ___IO_marker_86 ;// L156 -enum ____codecvt_result_94 ;// L176 -struct ___IO_FILE_95 ;// L241 +struct ___IO_marker_90 ;// L156 +enum ____codecvt_result_98 ;// L176 +struct ___IO_FILE_99 ;// L241 -struct ___IO_FILE_119 ;// L241 -struct ___IO_FILE_complete_150 ;// L241 +struct ___IO_FILE_124 ;// L241 +struct ___IO_FILE_complete_157 ;// L241 // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_166 ;// L0 -extern struct __forward_tag_reference_166 ___IO_2_1_stdin__167;// L315 -extern struct __forward_tag_reference_166 ___IO_2_1_stdout__168;// L316 -extern struct __forward_tag_reference_166 ___IO_2_1_stderr__169;// L317 +struct __forward_tag_reference_174 ;// L0 +extern struct __forward_tag_reference_174 ___IO_2_1_stdin__175;// L315 +extern struct __forward_tag_reference_174 ___IO_2_1_stdout__176;// L316 +extern struct __forward_tag_reference_174 ___IO_2_1_stderr__177;// L317 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern int (____underflow_184) (___IO_FILE_163 *);// L385 -extern int (____underflow_185) (___IO_FILE_164 *);// L385 -extern int (____uflow_186) (___IO_FILE_163 *);// L386 -extern int (____uflow_187) (___IO_FILE_164 *);// L386 -extern int (____overflow_188) (___IO_FILE_163 *, int );// L387 -extern int (____overflow_189) (___IO_FILE_164 *, int );// L387 -extern int (___IO_getc_193) (___IO_FILE_163 * (____fp_190));// L429 -extern int (___IO_getc_194) (___IO_FILE_164 * (____fp_191));// L429 -extern int (___IO_putc_199) (int ____c_195, ___IO_FILE_163 * (____fp_196));// L430 -extern int (___IO_putc_200) (int ____c_195, ___IO_FILE_164 * (____fp_197));// L430 -extern int (___IO_feof_204) (___IO_FILE_163 * (____fp_201));// L431 -extern int (___IO_feof_205) (___IO_FILE_164 * (____fp_202));// L431 -extern int (___IO_ferror_209) (___IO_FILE_163 * (____fp_206));// L432 -extern int (___IO_ferror_210) (___IO_FILE_164 * (____fp_207));// L432 -extern int (___IO_peekc_locked_214) (___IO_FILE_163 * (____fp_211));// L434 -extern int (___IO_peekc_locked_215) (___IO_FILE_164 * (____fp_212));// L434 -extern void (___IO_flockfile_216) (___IO_FILE_163 *);// L440 -extern void (___IO_flockfile_217) (___IO_FILE_164 *);// L440 -extern void (___IO_funlockfile_218) (___IO_FILE_163 *);// L441 -extern void (___IO_funlockfile_219) (___IO_FILE_164 *);// L441 -extern int (___IO_ftrylockfile_220) (___IO_FILE_163 *);// L442 -extern int (___IO_ftrylockfile_221) (___IO_FILE_164 *);// L442 -extern int (___IO_vfscanf_222) (___IO_FILE_163 * __restrict , const char * __restrict , ____gnuc_va_list_82 , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_224) (___IO_FILE_164 * __restrict , const char * __restrict , ____gnuc_va_list_82 , int * __restrict );// L459:L460 - - -extern int (___IO_vfprintf_231) (___IO_FILE_163 * __restrict , const char * __restrict , ____gnuc_va_list_82 );// L461:L462 -extern int (___IO_vfprintf_233) (___IO_FILE_164 * __restrict , const char * __restrict , ____gnuc_va_list_82 );// L461:L462 - -extern ____ssize_t_49 (___IO_padn_238) (___IO_FILE_163 *, int , ____ssize_t_49 );// L463 -extern ____ssize_t_49 (___IO_padn_239) (___IO_FILE_164 *, int , ____ssize_t_49 );// L463 -extern __size_t_1 (___IO_sgetn_240) (___IO_FILE_163 *, void *, __size_t_1 );// L464 -extern __size_t_1 (___IO_sgetn_241) (___IO_FILE_164 *, void *, __size_t_1 );// L464 -extern ____off64_t_24 (___IO_seekoff_242) (___IO_FILE_163 *, ____off64_t_24 , int , int );// L466 -extern ____off64_t_24 (___IO_seekoff_243) (___IO_FILE_164 *, ____off64_t_24 , int , int );// L466 -extern ____off64_t_24 (___IO_seekpos_244) (___IO_FILE_163 *, ____off64_t_24 , int );// L467 -extern ____off64_t_24 (___IO_seekpos_245) (___IO_FILE_164 *, ____off64_t_24 , int );// L467 -extern void (___IO_free_backup_area_246) (___IO_FILE_163 *);// L469 -extern void (___IO_free_backup_area_247) (___IO_FILE_164 *);// L469 +extern int (____underflow_196) (___IO_FILE_171 *);// L385 +extern int (____underflow_197) (___IO_FILE_172 *);// L385 +extern int (____uflow_199) (___IO_FILE_171 *);// L386 +extern int (____uflow_200) (___IO_FILE_172 *);// L386 +extern int (____overflow_202) (___IO_FILE_171 *, int );// L387 +extern int (____overflow_203) (___IO_FILE_172 *, int );// L387 +extern int (___IO_getc_208) (___IO_FILE_171 * (____fp_205));// L429 +extern int (___IO_getc_209) (___IO_FILE_172 * (____fp_206));// L429 +extern int (___IO_putc_215) (int ____c_211, ___IO_FILE_171 * (____fp_212));// L430 +extern int (___IO_putc_216) (int ____c_211, ___IO_FILE_172 * (____fp_213));// L430 +extern int (___IO_feof_221) (___IO_FILE_171 * (____fp_218));// L431 +extern int (___IO_feof_222) (___IO_FILE_172 * (____fp_219));// L431 +extern int (___IO_ferror_227) (___IO_FILE_171 * (____fp_224));// L432 +extern int (___IO_ferror_228) (___IO_FILE_172 * (____fp_225));// L432 +extern int (___IO_peekc_locked_233) (___IO_FILE_171 * (____fp_230));// L434 +extern int (___IO_peekc_locked_234) (___IO_FILE_172 * (____fp_231));// L434 +extern void (___IO_flockfile_236) (___IO_FILE_171 *);// L440 +extern void (___IO_flockfile_237) (___IO_FILE_172 *);// L440 +extern void (___IO_funlockfile_239) (___IO_FILE_171 *);// L441 +extern void (___IO_funlockfile_240) (___IO_FILE_172 *);// L441 +extern int (___IO_ftrylockfile_242) (___IO_FILE_171 *);// L442 +extern int (___IO_ftrylockfile_243) (___IO_FILE_172 *);// L442 +extern int (___IO_vfscanf_245) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_247) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_251) (___IO_FILE_171 * __restrict , const char * __restrict , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_252) (___IO_FILE_172 * __restrict , const char * __restrict , int * __restrict );// L459:L460 +extern int (___IO_vfprintf_254) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 +extern int (___IO_vfprintf_256) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 +extern int (___IO_vfprintf_260) ();// L461:L462 +extern ____ssize_t_49 (___IO_padn_261) (___IO_FILE_171 *, int , ____ssize_t_49 );// L463 +extern ____ssize_t_49 (___IO_padn_262) (___IO_FILE_172 *, int , ____ssize_t_49 );// L463 +extern __size_t_1 (___IO_sgetn_265) (___IO_FILE_171 *, void *, __size_t_1 );// L464 +extern __size_t_1 (___IO_sgetn_266) (___IO_FILE_172 *, void *, __size_t_1 );// L464 +extern ____off64_t_24 (___IO_seekoff_268) (___IO_FILE_171 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekoff_269) (___IO_FILE_172 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekpos_272) (___IO_FILE_171 *, ____off64_t_24 , int );// L467 +extern ____off64_t_24 (___IO_seekpos_273) (___IO_FILE_172 *, ____off64_t_24 , int );// L467 +extern void (___IO_free_backup_area_276) (___IO_FILE_171 *);// L469 +extern void (___IO_free_backup_area_277) (___IO_FILE_172 *);// L469 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern struct ___IO_FILE_95 * (__stdin_257);// L168 -extern struct ___IO_FILE_119 * (__stdin_258);// L168 -extern struct ___IO_FILE_95 * (__stdout_259);// L169 -extern struct ___IO_FILE_119 * (__stdout_260);// L169 -extern struct ___IO_FILE_95 * (__stderr_261);// L170 -extern struct ___IO_FILE_119 * (__stderr_262);// L170 -extern int (__remove_264) (const char * (____filename_263));// L178 -extern int (__rename_267) (const char * (____old_265), const char * (____new_266));// L180 -extern int (__renameat_272) (int ____oldfd_268, const char * (____old_269), int ____newfd_270, const char * (____new_271));// L185:L186 -extern __FILE_58 * ((__tmpfile_273) (void ));// L195 -extern __FILE_58 * ((__tmpfile_279) (void ));// L198 -extern __FILE_58 * ((__tmpfile_277) (void ));// L198 -extern __FILE_58 * ((__tmpfile_275) (void ));// L195 -extern char * ((__tmpnam_282) (char * (____s_281)));// L209 -extern char * ((__tmpnam_283) (char * (____s_281)));// L209 -extern char * ((__tmpnam_r_285) (char * (____s_284)));// L215 -extern char * ((__tmpnam_r_286) (char * (____s_284)));// L215 -extern char * ((__tempnam_289) (const char * (____dir_287), const char * (____pfx_288)));// L227:L228 -extern char * ((__tempnam_290) (const char * (____dir_287), const char * (____pfx_288)));// L227:L228 -extern int (__fclose_293) (__FILE_58 * (____stream_291));// L237 -extern int (__fclose_295) (__FILE_58 * (____stream_291));// L237 -extern int (__fflush_299) (__FILE_58 * (____stream_297));// L242 -extern int (__fflush_unlocked_303) (__FILE_58 * (____stream_301));// L252 -extern __FILE_58 * ((__fopen_307) (const char * __restrict ____filename_305, const char * __restrict ____modes_306));// L272:L273 -extern __FILE_58 * ((__fopen_309) (const char * __restrict ____filename_305, const char * __restrict ____modes_306));// L272:L273 -extern __FILE_58 * ((__fopen_317) (const char * __restrict ____filename_315, const char * __restrict ____modes_316));// L283:L285 -extern __FILE_58 * ((__fopen_319) (const char * __restrict ____filename_315, const char * __restrict ____modes_316));// L283:L285 -extern __FILE_58 * ((__freopen_325) (const char * __restrict ____filename_311, const char * __restrict ____modes_312, __FILE_58 * __restrict ____stream_313));// L278:L280 -extern __FILE_58 * ((__freopen_331) (const char * __restrict ____filename_321, const char * __restrict ____modes_322, __FILE_58 * __restrict ____stream_323));// L286:L289 -extern __FILE_58 * ((__freopen_329) (const char * __restrict ____filename_321, const char * __restrict ____modes_322, __FILE_58 * __restrict ____stream_323));// L286:L289 -extern __FILE_58 * ((__freopen_327) (const char * __restrict ____filename_311, const char * __restrict ____modes_312, __FILE_58 * __restrict ____stream_313));// L278:L280 -extern __FILE_58 * ((__fdopen_335) (int ____fd_333, const char * (____modes_334)));// L306 -extern __FILE_58 * ((__fdopen_337) (int ____fd_333, const char * (____modes_334)));// L306 -extern __FILE_58 * ((__fmemopen_342) (void * (____s_339), __size_t_1 ____len_340, const char * (____modes_341)));// L319:L320 -extern __FILE_58 * ((__fmemopen_344) (void * (____s_339), __size_t_1 ____len_340, const char * (____modes_341)));// L319:L320 -extern __FILE_58 * ((__open_memstream_348) (char * (* (____bufloc_346)), __size_t_1 * (____sizeloc_347)));// L325 -extern __FILE_58 * ((__open_memstream_350) (char * (* (____bufloc_346)), __size_t_1 * (____sizeloc_347)));// L325 -extern void (__setbuf_355) (__FILE_58 * __restrict ____stream_352, char * __restrict ____buf_354);// L332 -extern void (__setbuf_357) (__FILE_58 * __restrict ____stream_352, char * __restrict ____buf_354);// L332 -extern int (__setvbuf_364) (__FILE_58 * __restrict ____stream_359, char * __restrict ____buf_361, int ____modes_362, __size_t_1 ____n_363);// L336:L337 -extern void (__setbuffer_369) (__FILE_58 * __restrict ____stream_365, char * __restrict ____buf_367, __size_t_1 ____size_368);// L343:L344 -extern void (__setlinebuf_373) (__FILE_58 * (____stream_371));// L347 -extern int (__fprintf_378) (__FILE_58 * __restrict ____stream_375, const char * __restrict ____format_377, ... );// L356:L357 -extern int (__fprintf_380) (__FILE_58 * __restrict ____stream_375, const char * __restrict ____format_377, ... );// L356:L357 -extern int (__printf_383) (const char * __restrict ____format_382, ... );// L362 -extern int (__sprintf_386) (char * __restrict ____s_384, const char * __restrict ____format_385, ... );// L364:L365 -extern int (__vfprintf_392) (__FILE_58 * __restrict ____s_387, const char * __restrict ____format_389, ____gnuc_va_list_82 ____arg_390);// L371:L372 -extern int (__vprintf_399) (const char * __restrict ____format_396, ____gnuc_va_list_82 ____arg_397);// L377 -extern int (__vsprintf_405) (char * __restrict ____s_401, const char * __restrict ____format_402, ____gnuc_va_list_82 ____arg_403);// L379:L380 -extern int (__snprintf_409) (char * __restrict ____s_406, __size_t_1 ____maxlen_407, const char * __restrict ____format_408, ... );// L386:L388 -extern int (__vsnprintf_415) (char * __restrict ____s_410, __size_t_1 ____maxlen_411, const char * __restrict ____format_412, ____gnuc_va_list_82 ____arg_413);// L390:L392 -extern int (__vdprintf_420) (int ____fd_416, const char * __restrict ____fmt_417, ____gnuc_va_list_82 ____arg_418);// L412:L414 -extern int (__dprintf_424) (int ____fd_422, const char * __restrict ____fmt_423, ... );// L415:L416 -extern int (__fscanf_428) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 -extern int (__fscanf_430) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 -extern int (__fscanf_432) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 -extern int (__fscanf_434) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 -extern int (__scanf_437) (const char * __restrict ____format_436, ... );// L431 -extern int (__scanf_438) (const char * __restrict ____format_436, ... );// L431 -extern int (__sscanf_441) (const char * __restrict ____s_439, const char * __restrict ____format_440, ... );// L433:L434 - - - - - - - -extern int (__vfscanf_468) (__FILE_58 * __restrict ____s_463, const char * __restrict ____format_465, ____gnuc_va_list_82 ____arg_466);// L471:L473 -extern int (__vfscanf_472) (__FILE_58 * __restrict ____s_463, const char * __restrict ____format_465, ____gnuc_va_list_82 ____arg_466);// L471:L473 -extern int (__vscanf_479) (const char * __restrict ____format_476, ____gnuc_va_list_82 ____arg_477);// L479:L480 -extern int (__vscanf_481) (const char * __restrict ____format_476, ____gnuc_va_list_82 ____arg_477);// L479:L480 -extern int (__vsscanf_487) (const char * __restrict ____s_483, const char * __restrict ____format_484, ____gnuc_va_list_82 ____arg_485);// L483:L485 - - - - - -extern int (__fgetc_520) (__FILE_58 * (____stream_518));// L531 -extern int (__getc_523) (__FILE_58 * (____stream_521));// L532 -extern int (__getchar_524) (void );// L538 -extern int (__getc_unlocked_527) (__FILE_58 * (____stream_525));// L550 -extern int (__getchar_unlocked_529) (void );// L551 -extern int (__fgetc_unlocked_532) (__FILE_58 * (____stream_530));// L561 -extern int (__fputc_537) (int ____c_534, __FILE_58 * (____stream_535));// L573 -extern int (__fputc_539) (int ____c_534, __FILE_58 * (____stream_535));// L573 -extern int (__putc_544) (int ____c_541, __FILE_58 * (____stream_542));// L574 -extern int (__putchar_546) (int ____c_545);// L580 -extern int (__fputc_unlocked_550) (int ____c_547, __FILE_58 * (____stream_548));// L594 -extern int (__putc_unlocked_555) (int ____c_552, __FILE_58 * (____stream_553));// L602 -extern int (__putchar_unlocked_558) (int ____c_557);// L603 -extern int (__getw_561) (__FILE_58 * (____stream_559));// L610 -extern int (__putw_566) (int ____w_563, __FILE_58 * (____stream_564));// L613 -extern char * ((__fgets_572) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 -extern char * ((__fgets_574) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 -extern char * ((__fgets_576) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 -extern char * ((__fgets_578) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 -extern ____ssize_t_49 (____getdelim_585) (char * (* __restrict ____lineptr_580), __size_t_1 * __restrict ____n_581, int ____delimiter_582, __FILE_58 * __restrict ____stream_583);// L665:L667 -extern ____ssize_t_49 (____getdelim_587) (char * (* __restrict ____lineptr_580), __size_t_1 * __restrict ____n_581, int ____delimiter_582, __FILE_58 * __restrict ____stream_583);// L665:L667 -extern ____ssize_t_49 (__getdelim_594) (char * (* __restrict ____lineptr_589), __size_t_1 * __restrict ____n_590, int ____delimiter_591, __FILE_58 * __restrict ____stream_592);// L668:L670 -extern ____ssize_t_49 (__getdelim_596) (char * (* __restrict ____lineptr_589), __size_t_1 * __restrict ____n_590, int ____delimiter_591, __FILE_58 * __restrict ____stream_592);// L668:L670 -extern ____ssize_t_49 (__getline_602) (char * (* __restrict ____lineptr_598), __size_t_1 * __restrict ____n_599, __FILE_58 * __restrict ____stream_600);// L678:L680 -extern ____ssize_t_49 (__getline_604) (char * (* __restrict ____lineptr_598), __size_t_1 * __restrict ____n_599, __FILE_58 * __restrict ____stream_600);// L678:L680 -extern int (__fputs_609) (const char * __restrict ____s_606, __FILE_58 * __restrict ____stream_607);// L689 -extern int (__fputs_611) (const char * __restrict ____s_606, __FILE_58 * __restrict ____stream_607);// L689 -extern int (__puts_614) (const char * (____s_613));// L695 -extern int (__ungetc_618) (int ____c_615, __FILE_58 * (____stream_616));// L702 -extern int (__fseek_654) (__FILE_58 * (____stream_650), long int ____off_652, int ____whence_653);// L749 -extern int (__fseek_656) (__FILE_58 * (____stream_650), long int ____off_652, int ____whence_653);// L749 -extern long int (__ftell_660) (__FILE_58 * (____stream_658));// L754 -extern long int (__ftell_662) (__FILE_58 * (____stream_658));// L754 -extern void (__rewind_666) (__FILE_58 * (____stream_664));// L759 -extern int (__fseeko_671) (__FILE_58 * (____stream_667), ____off_t_23 ____off_669, int ____whence_670);// L773 -extern int (__fseeko_679) (__FILE_58 * (____stream_675), ____off64_t_24 ____off_677, int ____whence_678);// L781:L783 -extern ____off_t_23 (__ftello_683) (__FILE_58 * (____stream_673));// L778 -extern ____off_t_23 (__ftello_685) (__FILE_58 * (____stream_673));// L778 -extern int (__fgetpos_693) (__FILE_58 * __restrict ____stream_689, __fpos_t_253 * __restrict ____pos_691);// L798 -extern ____off64_t_24 (__ftello_687) (__FILE_58 * (____stream_681));// L784 -extern int (__fgetpos_705) (__FILE_58 * __restrict ____stream_701, __fpos_t_255 * __restrict ____pos_703);// L806:L807 -extern int (__fsetpos_713) (__FILE_58 * (____stream_697), const __fpos_t_253 * (____pos_699));// L803 -extern int (__fsetpos_717) (__FILE_58 * (____stream_709), const __fpos_t_255 * (____pos_711));// L808:L809 -extern void (__clearerr_723) (__FILE_58 * (____stream_721));// L826 -extern int (__feof_726) (__FILE_58 * (____stream_724));// L828 -extern int (__feof_728) (__FILE_58 * (____stream_724));// L828 -extern int (__ferror_732) (__FILE_58 * (____stream_730));// L830 -extern int (__ferror_734) (__FILE_58 * (____stream_730));// L830 -extern void (__clearerr_unlocked_738) (__FILE_58 * (____stream_736));// L835 -extern int (__feof_unlocked_742) (__FILE_58 * (____stream_740));// L836 -extern int (__feof_unlocked_744) (__FILE_58 * (____stream_740));// L836 -extern int (__ferror_unlocked_748) (__FILE_58 * (____stream_746));// L837 -extern int (__ferror_unlocked_750) (__FILE_58 * (____stream_746));// L837 -extern void (__perror_753) (const char * (____s_752));// L846 -extern void (__perror_754) (const char * (____s_752));// L846 -extern int __sys_nerr_755;// L26 - -extern int (__fileno_761) (__FILE_58 * (____stream_757));// L858 -extern int (__fileno_759) (__FILE_58 * (____stream_757));// L858 -extern int (__fileno_unlocked_767) (__FILE_58 * (____stream_763));// L863 -extern int (__fileno_unlocked_765) (__FILE_58 * (____stream_763));// L863 -extern __FILE_58 * ((__popen_771) (const char * (____command_769), const char * (____modes_770)));// L872 -extern __FILE_58 * ((__popen_773) (const char * (____command_769), const char * (____modes_770)));// L872 -extern int (__pclose_777) (__FILE_58 * (____stream_775));// L878 -extern char * ((__ctermid_780) (char * (____s_779)));// L884 -extern void (__flockfile_783) (__FILE_58 * (____stream_781));// L912 -extern int (__ftrylockfile_787) (__FILE_58 * (____stream_785));// L916 -extern int (__ftrylockfile_789) (__FILE_58 * (____stream_785));// L916 -extern void (__funlockfile_793) (__FILE_58 * (____stream_791));// L919 +extern struct ___IO_FILE_99 * (__stdin_291);// L168 +extern struct ___IO_FILE_124 * (__stdin_292);// L168 +extern struct ___IO_FILE_99 * (__stdout_294);// L169 +extern struct ___IO_FILE_124 * (__stdout_295);// L169 +extern struct ___IO_FILE_99 * (__stderr_297);// L170 +extern struct ___IO_FILE_124 * (__stderr_298);// L170 +extern int (__remove_301) (const char * (____filename_300));// L178 +extern int (__rename_304) (const char * (____old_302), const char * (____new_303));// L180 +extern int (__renameat_309) (int ____oldfd_305, const char * (____old_306), int ____newfd_307, const char * (____new_308));// L185:L186 +extern __FILE_59 * ((__tmpfile_310) (void ));// L195 +extern __FILE_59 * ((__tmpfile_316) (void ));// L198 +extern __FILE_59 * ((__tmpfile_314) (void ));// L195 +extern __FILE_59 * ((__tmpfile_312) (void ));// L198 +extern char * ((__tmpnam_319) (char * (____s_318)));// L209 +extern char * ((__tmpnam_320) (char * (____s_318)));// L209 +extern char * ((__tmpnam_r_322) (char * (____s_321)));// L215 +extern char * ((__tmpnam_r_323) (char * (____s_321)));// L215 +extern char * ((__tempnam_326) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 +extern char * ((__tempnam_327) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 +extern int (__fclose_330) (__FILE_59 * (____stream_328));// L237 +extern int (__fclose_332) (__FILE_59 * (____stream_328));// L237 +extern int (__fflush_336) (__FILE_59 * (____stream_334));// L242 +extern int (__fflush_unlocked_340) (__FILE_59 * (____stream_338));// L252 +extern __FILE_59 * ((__fopen_344) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 +extern __FILE_59 * ((__fopen_346) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 +extern __FILE_59 * ((__fopen_354) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 +extern __FILE_59 * ((__fopen_356) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 +extern __FILE_59 * ((__freopen_362) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 +extern __FILE_59 * ((__freopen_368) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 +extern __FILE_59 * ((__freopen_366) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 +extern __FILE_59 * ((__freopen_364) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 +extern __FILE_59 * ((__fdopen_372) (int ____fd_370, const char * (____modes_371)));// L306 +extern __FILE_59 * ((__fdopen_374) (int ____fd_370, const char * (____modes_371)));// L306 +extern __FILE_59 * ((__fmemopen_379) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 +extern __FILE_59 * ((__fmemopen_381) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 +extern __FILE_59 * ((__open_memstream_385) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 +extern __FILE_59 * ((__open_memstream_387) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 +extern void (__setbuf_392) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 +extern void (__setbuf_394) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 +extern int (__setvbuf_401) (__FILE_59 * __restrict ____stream_396, char * __restrict ____buf_398, int ____modes_399, __size_t_1 ____n_400);// L336:L337 +extern void (__setbuffer_407) (__FILE_59 * __restrict ____stream_403, char * __restrict ____buf_405, __size_t_1 ____size_406);// L343:L344 +extern void (__setlinebuf_411) (__FILE_59 * (____stream_409));// L347 +extern int (__fprintf_416) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 +extern int (__fprintf_418) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 +extern int (__printf_421) (const char * __restrict ____format_420, ... );// L362 +extern int (__sprintf_424) (char * __restrict ____s_422, const char * __restrict ____format_423, ... );// L364:L365 +extern int (__vfprintf_430) (__FILE_59 * __restrict ____s_425, const char * __restrict ____format_427, ____gnuc_va_list_86 ____arg_428);// L371:L372 +extern int (__vprintf_437) (const char * __restrict ____format_434, ____gnuc_va_list_86 ____arg_435);// L377 +extern int (__vsprintf_443) (char * __restrict ____s_439, const char * __restrict ____format_440, ____gnuc_va_list_86 ____arg_441);// L379:L380 +extern int (__snprintf_448) (char * __restrict ____s_445, __size_t_1 ____maxlen_446, const char * __restrict ____format_447, ... );// L386:L388 +extern int (__vsnprintf_454) (char * __restrict ____s_449, __size_t_1 ____maxlen_450, const char * __restrict ____format_451, ____gnuc_va_list_86 ____arg_452);// L390:L392 +extern int (__vdprintf_460) (int ____fd_456, const char * __restrict ____fmt_457, ____gnuc_va_list_86 ____arg_458);// L412:L414 +extern int (__dprintf_464) (int ____fd_462, const char * __restrict ____fmt_463, ... );// L415:L416 +extern int (__fscanf_468) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_470) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_472) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_474) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__scanf_477) (const char * __restrict ____format_476, ... );// L431 +extern int (__scanf_478) (const char * __restrict ____format_476, ... );// L431 +extern int (__sscanf_481) (const char * __restrict ____s_479, const char * __restrict ____format_480, ... );// L433:L434 + + + + + + + +extern int (__vfscanf_509) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 +extern int (__vfscanf_513) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 +extern int (__vscanf_520) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 +extern int (__vscanf_522) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 +extern int (__vsscanf_528) (const char * __restrict ____s_524, const char * __restrict ____format_525, ____gnuc_va_list_86 ____arg_526);// L483:L485 + + + + + +extern int (__fgetc_563) (__FILE_59 * (____stream_561));// L531 +extern int (__getc_567) (__FILE_59 * (____stream_565));// L532 +extern int (__getchar_569) (void );// L538 +extern int (__getc_unlocked_572) (__FILE_59 * (____stream_570));// L550 +extern int (__getchar_unlocked_574) (void );// L551 +extern int (__fgetc_unlocked_577) (__FILE_59 * (____stream_575));// L561 +extern int (__fputc_582) (int ____c_579, __FILE_59 * (____stream_580));// L573 +extern int (__fputc_584) (int ____c_579, __FILE_59 * (____stream_580));// L573 +extern int (__putc_589) (int ____c_586, __FILE_59 * (____stream_587));// L574 +extern int (__putchar_592) (int ____c_591);// L580 +extern int (__fputc_unlocked_596) (int ____c_593, __FILE_59 * (____stream_594));// L594 +extern int (__putc_unlocked_601) (int ____c_598, __FILE_59 * (____stream_599));// L602 +extern int (__putchar_unlocked_604) (int ____c_603);// L603 +extern int (__getw_607) (__FILE_59 * (____stream_605));// L610 +extern int (__putw_612) (int ____w_609, __FILE_59 * (____stream_610));// L613 +extern char * ((__fgets_618) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_620) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_622) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_624) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern ____ssize_t_49 (____getdelim_631) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 +extern ____ssize_t_49 (____getdelim_635) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 +extern ____ssize_t_49 (__getdelim_644) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 +extern ____ssize_t_49 (__getdelim_648) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 +extern ____ssize_t_49 (__getline_656) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 +extern ____ssize_t_49 (__getline_660) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 +extern int (__fputs_667) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 +extern int (__fputs_669) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 +extern int (__puts_672) (const char * (____s_671));// L695 +extern int (__ungetc_676) (int ____c_673, __FILE_59 * (____stream_674));// L702 +extern int (__fseek_714) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 +extern int (__fseek_716) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 +extern long int (__ftell_720) (__FILE_59 * (____stream_718));// L754 +extern long int (__ftell_722) (__FILE_59 * (____stream_718));// L754 +extern void (__rewind_726) (__FILE_59 * (____stream_724));// L759 +extern int (__fseeko_733) (__FILE_59 * (____stream_728), ____off_t_23 ____off_730, int ____whence_732);// L773 +extern int (__fseeko_744) (__FILE_59 * (____stream_739), ____off64_t_24 ____off_741, int ____whence_743);// L781:L783 +extern ____off_t_23 (__ftello_758) (__FILE_59 * (____stream_737));// L778 +extern ____off_t_23 (__ftello_750) (__FILE_59 * (____stream_737));// L778 +extern int (__fgetpos_766) (__FILE_59 * __restrict ____stream_762, __fpos_t_287 * __restrict ____pos_764);// L798 +extern ____off64_t_24 (__ftello_754) (__FILE_59 * (____stream_748));// L784 +extern int (__fgetpos_778) (__FILE_59 * __restrict ____stream_774, __fpos_t_289 * __restrict ____pos_776);// L806:L807 +extern int (__fsetpos_786) (__FILE_59 * (____stream_770), const __fpos_t_287 * (____pos_772));// L803 +extern int (__fsetpos_790) (__FILE_59 * (____stream_782), const __fpos_t_289 * (____pos_784));// L808:L809 +extern void (__clearerr_796) (__FILE_59 * (____stream_794));// L826 +extern int (__feof_800) (__FILE_59 * (____stream_798));// L828 +extern int (__feof_802) (__FILE_59 * (____stream_798));// L828 +extern int (__ferror_806) (__FILE_59 * (____stream_804));// L830 +extern int (__ferror_808) (__FILE_59 * (____stream_804));// L830 +extern void (__clearerr_unlocked_812) (__FILE_59 * (____stream_810));// L835 +extern int (__feof_unlocked_816) (__FILE_59 * (____stream_814));// L836 +extern int (__feof_unlocked_818) (__FILE_59 * (____stream_814));// L836 +extern int (__ferror_unlocked_822) (__FILE_59 * (____stream_820));// L837 +extern int (__ferror_unlocked_824) (__FILE_59 * (____stream_820));// L837 +extern void (__perror_827) (const char * (____s_826));// L846 +extern void (__perror_828) (const char * (____s_826));// L846 +extern int __sys_nerr_829;// L26 + +extern int (__fileno_835) (__FILE_59 * (____stream_831));// L858 +extern int (__fileno_833) (__FILE_59 * (____stream_831));// L858 +extern int (__fileno_unlocked_841) (__FILE_59 * (____stream_837));// L863 +extern int (__fileno_unlocked_839) (__FILE_59 * (____stream_837));// L863 +extern __FILE_59 * ((__popen_845) (const char * (____command_843), const char * (____modes_844)));// L872 +extern __FILE_59 * ((__popen_847) (const char * (____command_843), const char * (____modes_844)));// L872 +extern int (__pclose_851) (__FILE_59 * (____stream_849));// L878 +extern char * ((__ctermid_854) (char * (____s_853)));// L884 +extern void (__flockfile_857) (__FILE_59 * (____stream_855));// L912 +extern int (__ftrylockfile_861) (__FILE_59 * (____stream_859));// L916 +extern int (__ftrylockfile_863) (__FILE_59 * (____stream_859));// L916 +extern void (__funlockfile_867) (__FILE_59 * (____stream_865));// L919 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ @@ -1745,39 +2527,109 @@ extern void (__funlockfile_793) (__FILE_58 * (____stream_791));// L919 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____sprintf_chk_825) (char * __restrict ____s_821, int ____flag_822, __size_t_1 ____slen_823, const char * __restrict ____format_824, ... );// L23:L24 -extern int (____vsprintf_chk_832) (char * __restrict ____s_826, int ____flag_827, __size_t_1 ____slen_828, const char * __restrict ____format_829, ____gnuc_va_list_82 ____ap_830);// L25:L27 +extern int (____sprintf_chk_899) (char * __restrict ____s_895, int ____flag_896, __size_t_1 ____slen_897, const char * __restrict ____format_898, ... );// L23:L24 +extern int (____vsprintf_chk_906) (char * __restrict ____s_900, int ____flag_901, __size_t_1 ____slen_902, const char * __restrict ____format_903, ____gnuc_va_list_86 ____ap_904);// L25:L27 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____snprintf_chk_846) (char * __restrict ____s_841, __size_t_1 ____n_842, int ____flag_843, __size_t_1 ____slen_844, const char * __restrict ____format_845, ... );// L52:L54 -extern int (____vsnprintf_chk_854) (char * __restrict ____s_847, __size_t_1 ____n_848, int ____flag_849, __size_t_1 ____slen_850, const char * __restrict ____format_851, ____gnuc_va_list_82 ____ap_852);// L55:L57 +extern int (____snprintf_chk_920) (char * __restrict ____s_915, __size_t_1 ____n_916, int ____flag_917, __size_t_1 ____slen_918, const char * __restrict ____format_919, ... );// L52:L54 +extern int (____vsnprintf_chk_928) (char * __restrict ____s_921, __size_t_1 ____n_922, int ____flag_923, __size_t_1 ____slen_924, const char * __restrict ____format_925, ____gnuc_va_list_86 ____ap_926);// L55:L57 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____fprintf_chk_869) (__FILE_58 * __restrict ____stream_865, int ____flag_867, const char * __restrict ____format_868, ... );// L85:L86 -extern int (____printf_chk_873) (int ____flag_871, const char * __restrict ____format_872, ... );// L87 -extern int (____vfprintf_chk_880) (__FILE_58 * __restrict ____stream_874, int ____flag_876, const char * __restrict ____format_877, ____gnuc_va_list_82 ____ap_878);// L88:L89 -extern int (____vprintf_chk_888) (int ____flag_884, const char * __restrict ____format_885, ____gnuc_va_list_82 ____ap_886);// L90:L91 +extern int (____fprintf_chk_943) (__FILE_59 * __restrict ____stream_939, int ____flag_941, const char * __restrict ____format_942, ... );// L85:L86 +extern int (____printf_chk_947) (int ____flag_945, const char * __restrict ____format_946, ... );// L87 +extern int (____vfprintf_chk_954) (__FILE_59 * __restrict ____stream_948, int ____flag_950, const char * __restrict ____format_951, ____gnuc_va_list_86 ____ap_952);// L88:L89 +extern int (____vprintf_chk_962) (int ____flag_958, const char * __restrict ____format_959, ____gnuc_va_list_86 ____ap_960);// L90:L91 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____dprintf_chk_910) (int ____fd_907, int ____flag_908, const char * __restrict ____fmt_909, ... );// L131:L132 -extern int (____vdprintf_chk_916) (int ____fd_911, int ____flag_912, const char * __restrict ____fmt_913, ____gnuc_va_list_82 ____arg_914);// L133:L135 +extern int (____dprintf_chk_984) (int ____fd_981, int ____flag_982, const char * __restrict ____fmt_983, ... );// L131:L132 +extern int (____vdprintf_chk_990) (int ____fd_985, int ____flag_986, const char * __restrict ____fmt_987, ____gnuc_va_list_86 ____arg_988);// L133:L135 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern char * ((____fgets_chk_930) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 -extern char * ((____fgets_chk_932) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 -extern char * ((____fgets_chk_934) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 -extern char * ((____fgets_alias_940) (char * __restrict ____s_936, int ____n_937, __FILE_58 * __restrict ____stream_938));// L243:L245 -extern char * ((____fgets_chk_warn_947) (char * __restrict ____s_942, __size_t_1 ____size_943, int ____n_944, __FILE_58 * __restrict ____stream_945));// L246:L250 +extern char * ((____fgets_chk_1004) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_chk_1006) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_chk_1008) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_alias_1014) (char * __restrict ____s_1010, int ____n_1011, __FILE_59 * __restrict ____stream_1012));// L243:L245 +extern char * ((____fgets_chk_warn_1021) (char * __restrict ____s_1016, __size_t_1 ____size_1017, int ____n_1018, __FILE_59 * __restrict ____stream_1019));// L246:L250 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ // typedef moved to top of scope // typedef moved to top of scope -static __inline unsigned int (____bswap_32_1026) (unsigned int ____bsx_1025) { +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +static __inline unsigned int (____bswap_32_1158) (unsigned int ____bsx_1157) { + +if (__static_condition_default_1159) { + +{ +{ + + + +__static_type_error("invalid type found in return expression"); +} +} -if (__static_condition_default_1027) { + +} +} +static __inline ____uint64_t_13 (____bswap_64_1162) (____uint64_t_13 ____bsx_1160) { + +if (__static_condition_default_1164) { { { @@ -1791,9 +2643,9 @@ __static_type_error("invalid type found in return expression"); } } -static __inline ____uint64_t_13 (____bswap_64_1029) (____uint64_t_13 ____bsx_1028) { +static __inline ____uint64_t_1112 (____bswap_64_1163) (____uint64_t_1112 ____bsx_1161) { -if (__static_condition_default_1027) { +if (__static_condition_default_1165) { { { @@ -1807,40 +2659,51 @@ __static_type_error("invalid type found in return expression"); } } -union __wait_1041 ;// L66 +union __wait_1177 ;// L66 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern __size_t_1 (____ctype_get_mb_cur_max_1065) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_1066) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_1067) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_1068) (void );// L139 -extern double (__atof_1070) (const char * (____nptr_1069));// L144:L145 -extern double (__atof_1071) (const char * (____nptr_1069));// L144:L145 -extern int (__atoi_1073) (const char * (____nptr_1072));// L147:L148 -extern int (__atoi_1074) (const char * (____nptr_1072));// L147:L148 -extern long int (__atol_1076) (const char * (____nptr_1075));// L150:L151 -extern long int (__atol_1077) (const char * (____nptr_1075));// L150:L151 -extern long long int (__atoll_1079) (const char * (____nptr_1078));// L157:L158 -extern long long int (__atoll_1080) (const char * (____nptr_1078));// L157:L158 -extern double (__strtod_1083) (const char * __restrict ____nptr_1081, char * (* __restrict ____endptr_1082));// L164:L166 -extern float (__strtof_1086) (const char * __restrict ____nptr_1084, char * (* __restrict ____endptr_1085));// L172:L173 -extern long double (__strtold_1089) (const char * __restrict ____nptr_1087, char * (* __restrict ____endptr_1088));// L175:L177 -extern long int (__strtol_1093) (const char * __restrict ____nptr_1090, char * (* __restrict ____endptr_1091), int ____base_1092);// L183:L185 -extern unsigned long int (__strtoul_1097) (const char * __restrict ____nptr_1094, char * (* __restrict ____endptr_1095), int ____base_1096);// L187:L189 -extern long long int (__strtoq_1101) (const char * __restrict ____nptr_1098, char * (* __restrict ____endptr_1099), int ____base_1100);// L195:L197 -extern unsigned long long int (__strtouq_1105) (const char * __restrict ____nptr_1102, char * (* __restrict ____endptr_1103), int ____base_1104);// L200:L202 -extern long long int (__strtoll_1109) (const char * __restrict ____nptr_1106, char * (* __restrict ____endptr_1107), int ____base_1108);// L209:L211 -extern long long int (__strtoll_1110) (const char * __restrict ____nptr_1106, char * (* __restrict ____endptr_1107), int ____base_1108);// L209:L211 -extern unsigned long long int (__strtoull_1114) (const char * __restrict ____nptr_1111, char * (* __restrict ____endptr_1112), int ____base_1113);// L214:L216 +extern __size_t_1 (____ctype_get_mb_cur_max_1201) (void );// L139 +extern __size_t_1093 (____ctype_get_mb_cur_max_1202) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_1203) (void );// L139 +extern __size_t_1093 (____ctype_get_mb_cur_max_1204) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_1205) (void );// L139 +extern __size_t_1093 (____ctype_get_mb_cur_max_1206) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_1207) (void );// L139 +extern __size_t_1093 (____ctype_get_mb_cur_max_1208) (void );// L139 +extern double (__atof_1210) (const char * (____nptr_1209));// L144:L145 +extern double (__atof_1211) (const char * (____nptr_1209));// L144:L145 +extern int (__atoi_1213) (const char * (____nptr_1212));// L147:L148 +extern int (__atoi_1214) (const char * (____nptr_1212));// L147:L148 +extern long int (__atol_1216) (const char * (____nptr_1215));// L150:L151 +extern long int (__atol_1217) (const char * (____nptr_1215));// L150:L151 +extern long long int (__atoll_1219) (const char * (____nptr_1218));// L157:L158 +extern long long int (__atoll_1220) (const char * (____nptr_1218));// L157:L158 +extern double (__strtod_1223) (const char * __restrict ____nptr_1221, char * (* __restrict ____endptr_1222));// L164:L166 +extern float (__strtof_1226) (const char * __restrict ____nptr_1224, char * (* __restrict ____endptr_1225));// L172:L173 +extern long double (__strtold_1229) (const char * __restrict ____nptr_1227, char * (* __restrict ____endptr_1228));// L175:L177 +extern long int (__strtol_1233) (const char * __restrict ____nptr_1230, char * (* __restrict ____endptr_1231), int ____base_1232);// L183:L185 +extern unsigned long int (__strtoul_1237) (const char * __restrict ____nptr_1234, char * (* __restrict ____endptr_1235), int ____base_1236);// L187:L189 +extern long long int (__strtoq_1241) (const char * __restrict ____nptr_1238, char * (* __restrict ____endptr_1239), int ____base_1240);// L195:L197 +extern unsigned long long int (__strtouq_1245) (const char * __restrict ____nptr_1242, char * (* __restrict ____endptr_1243), int ____base_1244);// L200:L202 +extern long long int (__strtoll_1249) (const char * __restrict ____nptr_1246, char * (* __restrict ____endptr_1247), int ____base_1248);// L209:L211 +extern long long int (__strtoll_1250) (const char * __restrict ____nptr_1246, char * (* __restrict ____endptr_1247), int ____base_1248);// L209:L211 +extern unsigned long long int (__strtoull_1254) (const char * __restrict ____nptr_1251, char * (* __restrict ____endptr_1252), int ____base_1253);// L214:L216 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ __extension__/* no function due to type errors in the function prototype */ -extern char * ((__l64a_1119) (long int ____n_1118));// L305 -extern char * ((__l64a_1120) (long int ____n_1118));// L305 -extern long int (__a64l_1122) (const char * (____s_1121));// L308:L309 -extern long int (__a64l_1123) (const char * (____s_1121));// L308:L309 +extern char * ((__l64a_1259) (long int ____n_1258));// L305 +extern char * ((__l64a_1260) (long int ____n_1258));// L305 +extern long int (__a64l_1262) (const char * (____s_1261));// L308:L309 +extern long int (__a64l_1263) (const char * (____s_1261));// L308:L309 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope @@ -1882,9 +2745,119 @@ extern long int (__a64l_1123) (const char * (____s_1121));// L308:L309 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -static __inline unsigned int (____bswap_32_1166) (unsigned int ____bsx_1165) { +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +static __inline unsigned int (____bswap_32_1452) (unsigned int ____bsx_1451) { -if (__static_condition_default_1167) { +if (__static_condition_default_1453) { { { @@ -1898,9 +2871,25 @@ __static_type_error("invalid type found in return expression"); } } -static __inline ____uint64_t_13 (____bswap_64_1169) (____uint64_t_13 ____bsx_1168) { +static __inline ____uint64_t_13 (____bswap_64_1456) (____uint64_t_13 ____bsx_1454) { -if (__static_condition_default_1167) { +if (__static_condition_default_1458) { + +{ +{ + + + +__static_type_error("invalid type found in return expression"); +} +} + + +} +} +static __inline ____uint64_t_1275 (____bswap_64_1457) (____uint64_t_1275 ____bsx_1455) { + +if (__static_condition_default_1459) { { { @@ -1917,24 +2906,28 @@ __static_type_error("invalid type found in return expression"); // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __timespec_1176 ;// L120 -struct __timeval_1179 ;// L30 +struct __timespec_1466 ;// L120 + +struct __timeval_1476 ;// L30 + +// typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern int (__select_1199) (int ____nfds_1192, __fd_set_1189 * __restrict ____readfds_1193, __fd_set_1189 * __restrict ____writefds_1194, __fd_set_1189 * __restrict ____exceptfds_1195, struct __timeval_1179 * __restrict ____timeout_1197);// L106:L109 -extern int (__select_1200) (int ____nfds_1192, __fd_set_1189 * __restrict ____readfds_1193, __fd_set_1189 * __restrict ____writefds_1194, __fd_set_1189 * __restrict ____exceptfds_1195, struct __forward_tag_reference_1196 * __restrict ____timeout_1198);// L106:L109 -extern int (__pselect_1209) (int ____nfds_1201, __fd_set_1189 * __restrict ____readfds_1202, __fd_set_1189 * __restrict ____writefds_1203, __fd_set_1189 * __restrict ____exceptfds_1204, const struct __timespec_1176 * __restrict ____timeout_1206, const ____sigset_t_1174 * __restrict ____sigmask_1208);// L118:L122 -extern int (__pselect_1210) (int ____nfds_1201, __fd_set_1189 * __restrict ____readfds_1202, __fd_set_1189 * __restrict ____writefds_1203, __fd_set_1189 * __restrict ____exceptfds_1204, const struct __forward_tag_reference_1205 * __restrict ____timeout_1207, const ____sigset_t_1174 * __restrict ____sigmask_1208);// L118:L122 -extern long int (____fdelt_chk_1212) (long int ____d_1211);// L24 -extern long int (____fdelt_warn_1214) (long int ____d_1213);// L25:L26 -extern unsigned int (__gnu_dev_major_1216) (unsigned long long int ____dev_1215);// L27:L28 -extern unsigned int (__gnu_dev_major_1217) (unsigned long long int ____dev_1215);// L27:L28 -extern unsigned int (__gnu_dev_minor_1219) (unsigned long long int ____dev_1218);// L30:L31 -extern unsigned long long int (__gnu_dev_makedev_1222) (unsigned int ____major_1220, unsigned int ____minor_1221);// L33:L35 +// typedef moved to top of scope +extern int (__select_1513) (int ____nfds_1502, __fd_set_1499 * __restrict ____readfds_1503, __fd_set_1499 * __restrict ____writefds_1505, __fd_set_1499 * __restrict ____exceptfds_1507, struct __timeval_1476 * __restrict ____timeout_1510);// L106:L109 +extern int (__select_1514) (int ____nfds_1502, __fd_set_1499 * __restrict ____readfds_1503, __fd_set_1499 * __restrict ____writefds_1505, __fd_set_1499 * __restrict ____exceptfds_1507, struct __forward_tag_reference_1509 * __restrict ____timeout_1512);// L106:L109 +extern int (__pselect_1529) (int ____nfds_1517, __fd_set_1499 * __restrict ____readfds_1518, __fd_set_1499 * __restrict ____writefds_1520, __fd_set_1499 * __restrict ____exceptfds_1522, const struct __timespec_1466 * __restrict ____timeout_1525, const ____sigset_t_1464 * __restrict ____sigmask_1528);// L118:L122 +extern int (__pselect_1530) (int ____nfds_1517, __fd_set_1499 * __restrict ____readfds_1518, __fd_set_1499 * __restrict ____writefds_1520, __fd_set_1499 * __restrict ____exceptfds_1522, const struct __forward_tag_reference_1524 * __restrict ____timeout_1527, const ____sigset_t_1464 * __restrict ____sigmask_1528);// L118:L122 +extern long int (____fdelt_chk_1534) (long int ____d_1533);// L24 +extern long int (____fdelt_warn_1536) (long int ____d_1535);// L25:L26 +extern unsigned int (__gnu_dev_major_1538) (unsigned long long int ____dev_1537);// L27:L28 +extern unsigned int (__gnu_dev_major_1539) (unsigned long long int ____dev_1537);// L27:L28 +extern unsigned int (__gnu_dev_minor_1541) (unsigned long long int ____dev_1540);// L30:L31 +extern unsigned long long int (__gnu_dev_makedev_1544) (unsigned int ____major_1542, unsigned int ____minor_1543);// L33:L35 __extension__/* no function due to type errors in the function prototype */ __extension__/* no function due to type errors in the function prototype */ __extension__/* no function due to type errors in the function prototype */ @@ -1946,190 +2939,292 @@ __extension__/* no function due to type errors in the function prototype */ // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -union __pthread_attr_t_1235 ;// L63 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern int (__rand_1266) (void );// L374 -extern void (__srand_1268) (unsigned int ____seed_1267);// L376 -extern int (__rand_r_1270) (unsigned int * (____seed_1269));// L381 -extern double (__drand48_1271) (void );// L389 -extern double (__erand48_1273) (unsigned short int ____xsubi_1272[3]);// L390 -extern long int (__lrand48_1274) (void );// L393 -extern long int (__nrand48_1276) (unsigned short int ____xsubi_1275[3]);// L394:L395 -extern long int (__mrand48_1277) (void );// L398 -extern long int (__jrand48_1279) (unsigned short int ____xsubi_1278[3]);// L399:L400 -extern void (__srand48_1281) (long int ____seedval_1280);// L403 -extern unsigned short int * ((__seed48_1283) (unsigned short int ____seed16v_1282[3]));// L404:L405 -extern void (__lcong48_1285) (unsigned short int ____param_1284[7]);// L406 -extern void * ((__malloc_1287) (__size_t_1 ____size_1286));// L466 -extern void * ((__malloc_1288) (__size_t_1 ____size_1286));// L466 -extern void * ((__malloc_1289) (__size_t_1 ____size_1286));// L466 -extern void * ((__malloc_1290) (__size_t_1 ____size_1286));// L466 -extern void * ((__calloc_1293) (__size_t_1 ____nmemb_1291, __size_t_1 ____size_1292));// L468:L469 -extern void * ((__calloc_1294) (__size_t_1 ____nmemb_1291, __size_t_1 ____size_1292));// L468:L469 -extern void * ((__realloc_1297) (void * (____ptr_1295), __size_t_1 ____size_1296));// L480:L481 -extern void (__free_1299) (void * (____ptr_1298));// L483 -extern void (__cfree_1301) (void * (____ptr_1300));// L488 -extern void * ((__alloca_1303) (__size_t_1 ____size_1302));// L32 -extern void * ((__valloc_1305) (__size_t_1 ____size_1304));// L498 -extern void * ((__valloc_1306) (__size_t_1 ____size_1304));// L498 -extern int (__posix_memalign_1310) (void * (* (____memptr_1307)), __size_t_1 ____alignment_1308, __size_t_1 ____size_1309);// L503:L504 -extern int (__posix_memalign_1311) (void * (* (____memptr_1307)), __size_t_1 ____alignment_1308, __size_t_1 ____size_1309);// L503:L504 -extern void * ((__aligned_alloc_1314) (__size_t_1 ____alignment_1312, __size_t_1 ____size_1313));// L509:L510 -extern void * ((__aligned_alloc_1315) (__size_t_1 ____alignment_1312, __size_t_1 ____size_1313));// L509:L510 -extern void * ((__aligned_alloc_1316) (__size_t_1 ____alignment_1312, __size_t_1 ____size_1313));// L509:L510 -extern void * ((__aligned_alloc_1317) (__size_t_1 ____alignment_1312, __size_t_1 ____size_1313));// L509:L510 -extern void (__abort_1318) (void );// L515 -extern int (__atexit_1320) (void (* (____func_1319)) (void ));// L519 -extern int (__at_quick_exit_1322) (void (* (____func_1321)) (void ));// L527 -extern int (__on_exit_1327) (void (* (____func_1325)) (int ____status_1323, void * (____arg_1324)), void * (____arg_1326));// L535:L536 -extern void (__exit_1329) (int ____status_1328);// L543 -extern void (__exit_1330) (int ____status_1328);// L543 -extern void (__quick_exit_1332) (int ____status_1331);// L549 -extern void (___Exit_1334) (int ____status_1333);// L557 -extern char * ((__getenv_1336) (const char * (____name_1335)));// L564 -extern char * ((__getenv_1337) (const char * (____name_1335)));// L564 -extern int (__putenv_1339) (char * (____string_1338));// L578 -extern int (__setenv_1343) (const char * (____name_1340), const char * (____value_1341), int ____replace_1342);// L584:L585 -extern int (__unsetenv_1345) (const char * (____name_1344));// L588 -extern int (__clearenv_1346) (void );// L595 -extern char * ((__mktemp_1348) (char * (____template_1347)));// L606 -extern int (__mkstemp_1351) (char * (____template_1349));// L619 -extern int (__mkstemp_1353) (char * (____template_1349));// L619 -extern int (__mkstemp_1352) (char * (____template_1350));// L622:L623 -extern int (__mkstemp_1354) (char * (____template_1350));// L622:L623 -extern int (__mkstemps_1359) (char * (____template_1355), int ____suffixlen_1356);// L641 -extern int (__mkstemps_1360) (char * (____template_1357), int ____suffixlen_1358);// L644:L645 -extern int (__mkstemps_1361) (char * (____template_1355), int ____suffixlen_1356);// L641 -extern int (__mkstemps_1362) (char * (____template_1357), int ____suffixlen_1358);// L644:L645 -extern char * ((__mkdtemp_1364) (char * (____template_1363)));// L662 -extern char * ((__mkdtemp_1365) (char * (____template_1363)));// L662 -extern int (__system_1367) (const char * (____command_1366));// L716 -extern int (__system_1368) (const char * (____command_1366));// L716 -extern int (__system_1369) (const char * (____command_1366));// L716 -extern int (__system_1370) (const char * (____command_1366));// L716 -extern char * ((__realpath_1373) (const char * __restrict ____name_1371, char * __restrict ____resolved_1372));// L733:L734 -extern char * ((__realpath_1374) (const char * __restrict ____name_1371, char * __restrict ____resolved_1372));// L733:L734 -// typedef moved to top of scope -extern void * ((__bsearch_1383) (const void * (____key_1376), const void * (____base_1377), __size_t_1 ____nmemb_1378, __size_t_1 ____size_1379, ____compar_fn_t_1375 ____compar_1380));// L754:L756 -extern void * ((__bsearch_1385) (const void * (____key_1376), const void * (____base_1377), __size_t_1 ____nmemb_1378, __size_t_1 ____size_1379, ____compar_fn_t_1375 ____compar_1380));// L754:L756 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +union __pthread_attr_t_1578 ;// L63 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern int (__rand_1609) (void );// L374 +extern void (__srand_1611) (unsigned int ____seed_1610);// L376 +extern int (__rand_r_1613) (unsigned int * (____seed_1612));// L381 +extern double (__drand48_1614) (void );// L389 +extern double (__erand48_1616) (unsigned short int ____xsubi_1615[3]);// L390 +extern long int (__lrand48_1617) (void );// L393 +extern long int (__nrand48_1619) (unsigned short int ____xsubi_1618[3]);// L394:L395 +extern long int (__mrand48_1620) (void );// L398 +extern long int (__jrand48_1622) (unsigned short int ____xsubi_1621[3]);// L399:L400 +extern void (__srand48_1624) (long int ____seedval_1623);// L403 +extern unsigned short int * ((__seed48_1626) (unsigned short int ____seed16v_1625[3]));// L404:L405 +extern void (__lcong48_1628) (unsigned short int ____param_1627[7]);// L406 +extern void * ((__malloc_1631) (__size_t_1 ____size_1629));// L466 +extern void * ((__malloc_1632) (__size_t_1093 ____size_1630));// L466 +extern void * ((__malloc_1633) (__size_t_1 ____size_1629));// L466 +extern void * ((__malloc_1634) (__size_t_1093 ____size_1630));// L466 +extern void * ((__calloc_1639) (__size_t_1 ____nmemb_1635, __size_t_1 ____size_1637));// L468:L469 +extern void * ((__calloc_1640) (__size_t_1093 ____nmemb_1636, __size_t_1093 ____size_1638));// L468:L469 +extern void * ((__calloc_1641) (__size_t_1 ____nmemb_1635, __size_t_1 ____size_1637));// L468:L469 +extern void * ((__calloc_1642) (__size_t_1093 ____nmemb_1636, __size_t_1093 ____size_1638));// L468:L469 +extern void * ((__realloc_1646) (void * (____ptr_1643), __size_t_1 ____size_1644));// L480:L481 +extern void * ((__realloc_1647) (void * (____ptr_1643), __size_t_1093 ____size_1645));// L480:L481 +extern void (__free_1649) (void * (____ptr_1648));// L483 +extern void (__cfree_1651) (void * (____ptr_1650));// L488 +extern void * ((__alloca_1654) (__size_t_1 ____size_1652));// L32 +extern void * ((__alloca_1655) (__size_t_1093 ____size_1653));// L32 +extern void * ((__valloc_1658) (__size_t_1 ____size_1656));// L498 +extern void * ((__valloc_1659) (__size_t_1093 ____size_1657));// L498 +extern void * ((__valloc_1660) (__size_t_1 ____size_1656));// L498 +extern void * ((__valloc_1661) (__size_t_1093 ____size_1657));// L498 +extern int (__posix_memalign_1667) (void * (* (____memptr_1662)), __size_t_1 ____alignment_1663, __size_t_1 ____size_1665);// L503:L504 +extern int (__posix_memalign_1668) (void * (* (____memptr_1662)), __size_t_1093 ____alignment_1664, __size_t_1093 ____size_1666);// L503:L504 +extern int (__posix_memalign_1669) (void * (* (____memptr_1662)), __size_t_1 ____alignment_1663, __size_t_1 ____size_1665);// L503:L504 +extern int (__posix_memalign_1670) (void * (* (____memptr_1662)), __size_t_1093 ____alignment_1664, __size_t_1093 ____size_1666);// L503:L504 +extern void * ((__aligned_alloc_1675) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 +extern void * ((__aligned_alloc_1676) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 +extern void * ((__aligned_alloc_1677) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 +extern void * ((__aligned_alloc_1678) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 +extern void * ((__aligned_alloc_1679) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 +extern void * ((__aligned_alloc_1680) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 +extern void * ((__aligned_alloc_1681) (__size_t_1 ____alignment_1671, __size_t_1 ____size_1673));// L509:L510 +extern void * ((__aligned_alloc_1682) (__size_t_1093 ____alignment_1672, __size_t_1093 ____size_1674));// L509:L510 +extern void (__abort_1683) (void );// L515 +extern int (__atexit_1685) (void (* (____func_1684)) (void ));// L519 +extern int (__at_quick_exit_1687) (void (* (____func_1686)) (void ));// L527 +extern int (__on_exit_1692) (void (* (____func_1690)) (int ____status_1688, void * (____arg_1689)), void * (____arg_1691));// L535:L536 +extern void (__exit_1694) (int ____status_1693);// L543 +extern void (__exit_1695) (int ____status_1693);// L543 +extern void (__quick_exit_1697) (int ____status_1696);// L549 +extern void (___Exit_1699) (int ____status_1698);// L557 +extern char * ((__getenv_1701) (const char * (____name_1700)));// L564 +extern char * ((__getenv_1702) (const char * (____name_1700)));// L564 +extern int (__putenv_1704) (char * (____string_1703));// L578 +extern int (__setenv_1708) (const char * (____name_1705), const char * (____value_1706), int ____replace_1707);// L584:L585 +extern int (__unsetenv_1710) (const char * (____name_1709));// L588 +extern int (__clearenv_1711) (void );// L595 +extern char * ((__mktemp_1713) (char * (____template_1712)));// L606 +extern int (__mkstemp_1716) (char * (____template_1714));// L619 +extern int (__mkstemp_1718) (char * (____template_1714));// L619 +extern int (__mkstemp_1717) (char * (____template_1715));// L622:L623 +extern int (__mkstemp_1719) (char * (____template_1715));// L622:L623 +extern int (__mkstemps_1724) (char * (____template_1720), int ____suffixlen_1721);// L641 +extern int (__mkstemps_1725) (char * (____template_1722), int ____suffixlen_1723);// L644:L645 +extern int (__mkstemps_1726) (char * (____template_1720), int ____suffixlen_1721);// L641 +extern int (__mkstemps_1727) (char * (____template_1722), int ____suffixlen_1723);// L644:L645 +extern char * ((__mkdtemp_1729) (char * (____template_1728)));// L662 +extern char * ((__mkdtemp_1730) (char * (____template_1728)));// L662 +extern int (__system_1732) (const char * (____command_1731));// L716 +extern int (__system_1733) (const char * (____command_1731));// L716 +extern int (__system_1734) (const char * (____command_1731));// L716 +extern int (__system_1735) (const char * (____command_1731));// L716 +extern char * ((__realpath_1738) (const char * __restrict ____name_1736, char * __restrict ____resolved_1737));// L733:L734 +extern char * ((__realpath_1739) (const char * __restrict ____name_1736, char * __restrict ____resolved_1737));// L733:L734 +// typedef moved to top of scope +extern void * ((__bsearch_1751) (const void * (____key_1741), const void * (____base_1742), __size_t_1 ____nmemb_1743, __size_t_1 ____size_1745, ____compar_fn_t_1740 ____compar_1747));// L754:L756 +extern void * ((__bsearch_1752) (const void * (____key_1741), const void * (____base_1742), __size_t_1093 ____nmemb_1744, __size_t_1093 ____size_1746, ____compar_fn_t_1740 ____compar_1747));// L754:L756 +extern void * ((__bsearch_1755) (const void * (____key_1741), const void * (____base_1742), __size_t_1 ____nmemb_1743, __size_t_1 ____size_1745, ____compar_fn_t_1740 ____compar_1747));// L754:L756 +extern void * ((__bsearch_1756) (const void * (____key_1741), const void * (____base_1742), __size_t_1093 ____nmemb_1744, __size_t_1093 ____size_1746, ____compar_fn_t_1740 ____compar_1747));// L754:L756 /* no function due to type errors in the function prototype */ -extern void (__qsort_1404) (void * (____base_1399), __size_t_1 ____nmemb_1400, __size_t_1 ____size_1401, ____compar_fn_t_1375 ____compar_1402);// L764:L765 -extern void (__qsort_1406) (void * (____base_1399), __size_t_1 ____nmemb_1400, __size_t_1 ____size_1401, ____compar_fn_t_1375 ____compar_1402);// L764:L765 -extern int (__abs_1409) (int ____x_1408);// L774 -extern int (__abs_1410) (int ____x_1408);// L774 -extern long int (__labs_1412) (long int ____x_1411);// L775 -extern long int (__labs_1413) (long int ____x_1411);// L775 -extern long long int (__llabs_1415) (long long int ____x_1414);// L779:L780 -extern long long int (__llabs_1416) (long long int ____x_1414);// L779:L780 -extern __div_t_1054 (__div_1419) (int ____numer_1417, int ____denom_1418);// L788:L789 -extern __div_t_1054 (__div_1420) (int ____numer_1417, int ____denom_1418);// L788:L789 -extern __ldiv_t_1059 (__ldiv_1423) (long int ____numer_1421, long int ____denom_1422);// L790:L791 -extern __ldiv_t_1059 (__ldiv_1425) (long int ____numer_1421, long int ____denom_1422);// L790:L791 -extern __lldiv_t_1064 (__lldiv_1429) (long long int ____numer_1427, long long int ____denom_1428);// L796:L798 -extern __lldiv_t_1064 (__lldiv_1431) (long long int ____numer_1427, long long int ____denom_1428);// L796:L798 -extern char * ((__ecvt_1437) (double ____value_1433, int ____ndigit_1434, int * __restrict ____decpt_1435, int * __restrict ____sign_1436));// L811:L812 -extern char * ((__ecvt_1438) (double ____value_1433, int ____ndigit_1434, int * __restrict ____decpt_1435, int * __restrict ____sign_1436));// L811:L812 -extern char * ((__fcvt_1443) (double ____value_1439, int ____ndigit_1440, int * __restrict ____decpt_1441, int * __restrict ____sign_1442));// L817:L818 -extern char * ((__fcvt_1444) (double ____value_1439, int ____ndigit_1440, int * __restrict ____decpt_1441, int * __restrict ____sign_1442));// L817:L818 -extern char * ((__gcvt_1448) (double ____value_1445, int ____ndigit_1446, char * (____buf_1447)));// L823:L824 -extern char * ((__gcvt_1449) (double ____value_1445, int ____ndigit_1446, char * (____buf_1447)));// L823:L824 -extern char * ((__qecvt_1454) (long double ____value_1450, int ____ndigit_1451, int * __restrict ____decpt_1452, int * __restrict ____sign_1453));// L829:L831 -extern char * ((__qecvt_1455) (long double ____value_1450, int ____ndigit_1451, int * __restrict ____decpt_1452, int * __restrict ____sign_1453));// L829:L831 -extern char * ((__qfcvt_1460) (long double ____value_1456, int ____ndigit_1457, int * __restrict ____decpt_1458, int * __restrict ____sign_1459));// L832:L834 -extern char * ((__qfcvt_1461) (long double ____value_1456, int ____ndigit_1457, int * __restrict ____decpt_1458, int * __restrict ____sign_1459));// L832:L834 -extern char * ((__qgcvt_1465) (long double ____value_1462, int ____ndigit_1463, char * (____buf_1464)));// L835:L836 -extern char * ((__qgcvt_1466) (long double ____value_1462, int ____ndigit_1463, char * (____buf_1464)));// L835:L836 -extern int (__ecvt_r_1473) (double ____value_1467, int ____ndigit_1468, int * __restrict ____decpt_1469, int * __restrict ____sign_1470, char * __restrict ____buf_1471, __size_t_1 ____len_1472);// L841:L843 -extern int (__fcvt_r_1480) (double ____value_1474, int ____ndigit_1475, int * __restrict ____decpt_1476, int * __restrict ____sign_1477, char * __restrict ____buf_1478, __size_t_1 ____len_1479);// L844:L846 -extern int (__qecvt_r_1487) (long double ____value_1481, int ____ndigit_1482, int * __restrict ____decpt_1483, int * __restrict ____sign_1484, char * __restrict ____buf_1485, __size_t_1 ____len_1486);// L848:L851 -extern int (__qfcvt_r_1494) (long double ____value_1488, int ____ndigit_1489, int * __restrict ____decpt_1490, int * __restrict ____sign_1491, char * __restrict ____buf_1492, __size_t_1 ____len_1493);// L852:L855 -extern int (__mblen_1497) (const char * (____s_1495), __size_t_1 ____n_1496);// L862 -extern int (__mblen_1498) (const char * (____s_1495), __size_t_1 ____n_1496);// L862 -extern int (__mbtowc_1502) (__wchar_t_1018 * __restrict ____pwc_1499, const char * __restrict ____s_1500, __size_t_1 ____n_1501);// L865:L866 -extern int (__wctomb_1505) (char * (____s_1503), __wchar_t_1018 ____wchar_1504);// L869 -extern __size_t_1 (__mbstowcs_1509) (__wchar_t_1018 * __restrict ____pwcs_1506, const char * __restrict ____s_1507, __size_t_1 ____n_1508);// L873:L874 -extern __size_t_1 (__wcstombs_1513) (char * __restrict ____s_1510, const __wchar_t_1018 * __restrict ____pwcs_1511, __size_t_1 ____n_1512);// L876:L878 -extern int (__rpmatch_1516) (const char * (____response_1514));// L887 -extern int (__rpmatch_1515) (const char * (____response_1514));// L887 -extern int (__getsubopt_1521) (char * (* __restrict ____optionp_1517), char * const * __restrict ____tokens_1518, char * (* __restrict ____valuep_1519));// L898:L901 -extern int (__getsubopt_1520) (char * (* __restrict ____optionp_1517), char * const * __restrict ____tokens_1518, char * (* __restrict ____valuep_1519));// L898:L901 -extern int (__getloadavg_1524) (double ____loadavg_1522[], int ____nelem_1523);// L950:L951 +extern void (__qsort_1784) (void * (____base_1777), __size_t_1 ____nmemb_1778, __size_t_1 ____size_1780, ____compar_fn_t_1740 ____compar_1782);// L764:L765 +extern void (__qsort_1786) (void * (____base_1777), __size_t_1093 ____nmemb_1779, __size_t_1093 ____size_1781, ____compar_fn_t_1740 ____compar_1782);// L764:L765 +extern void (__qsort_1788) (void * (____base_1777), __size_t_1 ____nmemb_1778, __size_t_1 ____size_1780, ____compar_fn_t_1740 ____compar_1782);// L764:L765 +extern void (__qsort_1790) (void * (____base_1777), __size_t_1093 ____nmemb_1779, __size_t_1093 ____size_1781, ____compar_fn_t_1740 ____compar_1782);// L764:L765 +extern int (__abs_1793) (int ____x_1792);// L774 +extern int (__abs_1794) (int ____x_1792);// L774 +extern long int (__labs_1796) (long int ____x_1795);// L775 +extern long int (__labs_1797) (long int ____x_1795);// L775 +extern long long int (__llabs_1799) (long long int ____x_1798);// L779:L780 +extern long long int (__llabs_1800) (long long int ____x_1798);// L779:L780 +extern __div_t_1190 (__div_1803) (int ____numer_1801, int ____denom_1802);// L788:L789 +extern __div_t_1190 (__div_1804) (int ____numer_1801, int ____denom_1802);// L788:L789 +extern __ldiv_t_1195 (__ldiv_1807) (long int ____numer_1805, long int ____denom_1806);// L790:L791 +extern __ldiv_t_1195 (__ldiv_1809) (long int ____numer_1805, long int ____denom_1806);// L790:L791 +extern __lldiv_t_1200 (__lldiv_1813) (long long int ____numer_1811, long long int ____denom_1812);// L796:L798 +extern __lldiv_t_1200 (__lldiv_1815) (long long int ____numer_1811, long long int ____denom_1812);// L796:L798 +extern char * ((__ecvt_1821) (double ____value_1817, int ____ndigit_1818, int * __restrict ____decpt_1819, int * __restrict ____sign_1820));// L811:L812 +extern char * ((__ecvt_1822) (double ____value_1817, int ____ndigit_1818, int * __restrict ____decpt_1819, int * __restrict ____sign_1820));// L811:L812 +extern char * ((__fcvt_1827) (double ____value_1823, int ____ndigit_1824, int * __restrict ____decpt_1825, int * __restrict ____sign_1826));// L817:L818 +extern char * ((__fcvt_1828) (double ____value_1823, int ____ndigit_1824, int * __restrict ____decpt_1825, int * __restrict ____sign_1826));// L817:L818 +extern char * ((__gcvt_1832) (double ____value_1829, int ____ndigit_1830, char * (____buf_1831)));// L823:L824 +extern char * ((__gcvt_1833) (double ____value_1829, int ____ndigit_1830, char * (____buf_1831)));// L823:L824 +extern char * ((__qecvt_1838) (long double ____value_1834, int ____ndigit_1835, int * __restrict ____decpt_1836, int * __restrict ____sign_1837));// L829:L831 +extern char * ((__qecvt_1839) (long double ____value_1834, int ____ndigit_1835, int * __restrict ____decpt_1836, int * __restrict ____sign_1837));// L829:L831 +extern char * ((__qfcvt_1844) (long double ____value_1840, int ____ndigit_1841, int * __restrict ____decpt_1842, int * __restrict ____sign_1843));// L832:L834 +extern char * ((__qfcvt_1845) (long double ____value_1840, int ____ndigit_1841, int * __restrict ____decpt_1842, int * __restrict ____sign_1843));// L832:L834 +extern char * ((__qgcvt_1849) (long double ____value_1846, int ____ndigit_1847, char * (____buf_1848)));// L835:L836 +extern char * ((__qgcvt_1850) (long double ____value_1846, int ____ndigit_1847, char * (____buf_1848)));// L835:L836 +extern int (__ecvt_r_1858) (double ____value_1851, int ____ndigit_1852, int * __restrict ____decpt_1853, int * __restrict ____sign_1854, char * __restrict ____buf_1855, __size_t_1 ____len_1856);// L841:L843 +extern int (__ecvt_r_1859) (double ____value_1851, int ____ndigit_1852, int * __restrict ____decpt_1853, int * __restrict ____sign_1854, char * __restrict ____buf_1855, __size_t_1093 ____len_1857);// L841:L843 +extern int (__fcvt_r_1867) (double ____value_1860, int ____ndigit_1861, int * __restrict ____decpt_1862, int * __restrict ____sign_1863, char * __restrict ____buf_1864, __size_t_1 ____len_1865);// L844:L846 +extern int (__fcvt_r_1868) (double ____value_1860, int ____ndigit_1861, int * __restrict ____decpt_1862, int * __restrict ____sign_1863, char * __restrict ____buf_1864, __size_t_1093 ____len_1866);// L844:L846 +extern int (__qecvt_r_1876) (long double ____value_1869, int ____ndigit_1870, int * __restrict ____decpt_1871, int * __restrict ____sign_1872, char * __restrict ____buf_1873, __size_t_1 ____len_1874);// L848:L851 +extern int (__qecvt_r_1877) (long double ____value_1869, int ____ndigit_1870, int * __restrict ____decpt_1871, int * __restrict ____sign_1872, char * __restrict ____buf_1873, __size_t_1093 ____len_1875);// L848:L851 +extern int (__qfcvt_r_1885) (long double ____value_1878, int ____ndigit_1879, int * __restrict ____decpt_1880, int * __restrict ____sign_1881, char * __restrict ____buf_1882, __size_t_1 ____len_1883);// L852:L855 +extern int (__qfcvt_r_1886) (long double ____value_1878, int ____ndigit_1879, int * __restrict ____decpt_1880, int * __restrict ____sign_1881, char * __restrict ____buf_1882, __size_t_1093 ____len_1884);// L852:L855 +extern int (__mblen_1890) (const char * (____s_1887), __size_t_1 ____n_1888);// L862 +extern int (__mblen_1891) (const char * (____s_1887), __size_t_1093 ____n_1889);// L862 +extern int (__mblen_1892) (const char * (____s_1887), __size_t_1 ____n_1888);// L862 +extern int (__mblen_1893) (const char * (____s_1887), __size_t_1093 ____n_1889);// L862 +extern int (__mbtowc_1898) (__wchar_t_1094 * __restrict ____pwc_1894, const char * __restrict ____s_1895, __size_t_1 ____n_1896);// L865:L866 +extern int (__mbtowc_1899) (__wchar_t_1094 * __restrict ____pwc_1894, const char * __restrict ____s_1895, __size_t_1093 ____n_1897);// L865:L866 +extern int (__wctomb_1902) (char * (____s_1900), __wchar_t_1094 ____wchar_1901);// L869 +extern __size_t_1 (__mbstowcs_1907) (__wchar_t_1094 * __restrict ____pwcs_1903, const char * __restrict ____s_1904, __size_t_1 ____n_1905);// L873:L874 +extern __size_t_1093 (__mbstowcs_1908) (__wchar_t_1094 * __restrict ____pwcs_1903, const char * __restrict ____s_1904, __size_t_1093 ____n_1906);// L873:L874 +extern __size_t_1 (__wcstombs_1913) (char * __restrict ____s_1909, const __wchar_t_1094 * __restrict ____pwcs_1910, __size_t_1 ____n_1911);// L876:L878 +extern __size_t_1093 (__wcstombs_1914) (char * __restrict ____s_1909, const __wchar_t_1094 * __restrict ____pwcs_1910, __size_t_1093 ____n_1912);// L876:L878 +extern int (__rpmatch_1917) (const char * (____response_1915));// L887 +extern int (__rpmatch_1916) (const char * (____response_1915));// L887 +extern int (__getsubopt_1922) (char * (* __restrict ____optionp_1918), char * const * __restrict ____tokens_1919, char * (* __restrict ____valuep_1920));// L898:L901 +extern int (__getsubopt_1921) (char * (* __restrict ____optionp_1918), char * const * __restrict ____tokens_1919, char * (* __restrict ____valuep_1920));// L898:L901 +extern int (__getloadavg_1925) (double ____loadavg_1923[], int ____nelem_1924);// L950:L951 /* no function due to type errors in the function prototype */ -extern char * ((____realpath_chk_1529) (const char * __restrict ____name_1526, char * __restrict ____resolved_1527, __size_t_1 ____resolvedlen_1528));// L23:L25 -extern char * ((____realpath_alias_1532) (const char * __restrict ____name_1530, char * __restrict ____resolved_1531));// L26:L28 -extern char * ((____realpath_chk_warn_1536) (const char * __restrict ____name_1533, char * __restrict ____resolved_1534, __size_t_1 ____resolvedlen_1535));// L29:L34 +extern char * ((____realpath_chk_1931) (const char * __restrict ____name_1927, char * __restrict ____resolved_1928, __size_t_1 ____resolvedlen_1929));// L23:L25 +extern char * ((____realpath_chk_1932) (const char * __restrict ____name_1927, char * __restrict ____resolved_1928, __size_t_1093 ____resolvedlen_1930));// L23:L25 +extern char * ((____realpath_alias_1935) (const char * __restrict ____name_1933, char * __restrict ____resolved_1934));// L26:L28 +extern char * ((____realpath_chk_warn_1940) (const char * __restrict ____name_1936, char * __restrict ____resolved_1937, __size_t_1 ____resolvedlen_1938));// L29:L34 +extern char * ((____realpath_chk_warn_1941) (const char * __restrict ____name_1936, char * __restrict ____resolved_1937, __size_t_1093 ____resolvedlen_1939));// L29:L34 /* no function due to type errors in the function prototype */ -extern int (____ptsname_r_chk_1544) (int ____fd_1540, char * (____buf_1541), __size_t_1 ____buflen_1542, __size_t_1 ____nreal_1543);// L52:L53 -extern int (____ptsname_r_alias_1548) (int ____fd_1545, char * (____buf_1546), __size_t_1 ____buflen_1547);// L54:L56 -extern int (____ptsname_r_chk_warn_1553) (int ____fd_1549, char * (____buf_1550), __size_t_1 ____buflen_1551, __size_t_1 ____nreal_1552);// L57:L61 +extern int (____ptsname_r_chk_1951) (int ____fd_1945, char * (____buf_1946), __size_t_1 ____buflen_1947, __size_t_1 ____nreal_1949);// L52:L53 +extern int (____ptsname_r_chk_1952) (int ____fd_1945, char * (____buf_1946), __size_t_1093 ____buflen_1948, __size_t_1093 ____nreal_1950);// L52:L53 +extern int (____ptsname_r_alias_1957) (int ____fd_1953, char * (____buf_1954), __size_t_1 ____buflen_1955);// L54:L56 +extern int (____ptsname_r_alias_1958) (int ____fd_1953, char * (____buf_1954), __size_t_1093 ____buflen_1956);// L54:L56 +extern int (____ptsname_r_chk_warn_1965) (int ____fd_1959, char * (____buf_1960), __size_t_1 ____buflen_1961, __size_t_1 ____nreal_1963);// L57:L61 +extern int (____ptsname_r_chk_warn_1966) (int ____fd_1959, char * (____buf_1960), __size_t_1093 ____buflen_1962, __size_t_1093 ____nreal_1964);// L57:L61 /* no function due to type errors in the function prototype */ -extern int (____wctomb_chk_1561) (char * (____s_1558), __wchar_t_1018 ____wchar_1559, __size_t_1 ____buflen_1560);// L77:L78 -extern int (____wctomb_alias_1564) (char * (____s_1562), __wchar_t_1018 ____wchar_1563);// L79:L80 +extern int (____wctomb_chk_1977) (char * (____s_1973), __wchar_t_1094 ____wchar_1974, __size_t_1 ____buflen_1975);// L77:L78 +extern int (____wctomb_chk_1978) (char * (____s_1973), __wchar_t_1094 ____wchar_1974, __size_t_1093 ____buflen_1976);// L77:L78 +extern int (____wctomb_alias_1981) (char * (____s_1979), __wchar_t_1094 ____wchar_1980);// L79:L80 /* no function due to type errors in the function prototype */ -extern __size_t_1 (____mbstowcs_chk_1571) (__wchar_t_1018 * __restrict ____dst_1567, const char * __restrict ____src_1568, __size_t_1 ____len_1569, __size_t_1 ____dstlen_1570);// L98:L100 -extern __size_t_1 (____mbstowcs_alias_1575) (__wchar_t_1018 * __restrict ____dst_1572, const char * __restrict ____src_1573, __size_t_1 ____len_1574);// L101:L104 -extern __size_t_1 (____mbstowcs_chk_warn_1580) (__wchar_t_1018 * __restrict ____dst_1576, const char * __restrict ____src_1577, __size_t_1 ____len_1578, __size_t_1 ____dstlen_1579);// L105:L110 +extern __size_t_1 (____mbstowcs_chk_1990) (__wchar_t_1094 * __restrict ____dst_1984, const char * __restrict ____src_1985, __size_t_1 ____len_1986, __size_t_1 ____dstlen_1988);// L98:L100 +extern __size_t_1093 (____mbstowcs_chk_1991) (__wchar_t_1094 * __restrict ____dst_1984, const char * __restrict ____src_1985, __size_t_1093 ____len_1987, __size_t_1093 ____dstlen_1989);// L98:L100 +extern __size_t_1 (____mbstowcs_alias_1996) (__wchar_t_1094 * __restrict ____dst_1992, const char * __restrict ____src_1993, __size_t_1 ____len_1994);// L101:L104 +extern __size_t_1093 (____mbstowcs_alias_1997) (__wchar_t_1094 * __restrict ____dst_1992, const char * __restrict ____src_1993, __size_t_1093 ____len_1995);// L101:L104 +extern __size_t_1 (____mbstowcs_chk_warn_2004) (__wchar_t_1094 * __restrict ____dst_1998, const char * __restrict ____src_1999, __size_t_1 ____len_2000, __size_t_1 ____dstlen_2002);// L105:L110 +extern __size_t_1093 (____mbstowcs_chk_warn_2005) (__wchar_t_1094 * __restrict ____dst_1998, const char * __restrict ____src_1999, __size_t_1093 ____len_2001, __size_t_1093 ____dstlen_2003);// L105:L110 /* no function due to type errors in the function prototype */ -extern __size_t_1 (____wcstombs_chk_1588) (char * __restrict ____dst_1584, const __wchar_t_1018 * __restrict ____src_1585, __size_t_1 ____len_1586, __size_t_1 ____dstlen_1587);// L130:L132 -extern __size_t_1 (____wcstombs_alias_1592) (char * __restrict ____dst_1589, const __wchar_t_1018 * __restrict ____src_1590, __size_t_1 ____len_1591);// L133:L136 -extern __size_t_1 (____wcstombs_chk_warn_1597) (char * __restrict ____dst_1593, const __wchar_t_1018 * __restrict ____src_1594, __size_t_1 ____len_1595, __size_t_1 ____dstlen_1596);// L137:L141 +extern __size_t_1 (____wcstombs_chk_2016) (char * __restrict ____dst_2010, const __wchar_t_1094 * __restrict ____src_2011, __size_t_1 ____len_2012, __size_t_1 ____dstlen_2014);// L130:L132 +extern __size_t_1093 (____wcstombs_chk_2017) (char * __restrict ____dst_2010, const __wchar_t_1094 * __restrict ____src_2011, __size_t_1093 ____len_2013, __size_t_1093 ____dstlen_2015);// L130:L132 +extern __size_t_1 (____wcstombs_alias_2022) (char * __restrict ____dst_2018, const __wchar_t_1094 * __restrict ____src_2019, __size_t_1 ____len_2020);// L133:L136 +extern __size_t_1093 (____wcstombs_alias_2023) (char * __restrict ____dst_2018, const __wchar_t_1094 * __restrict ____src_2019, __size_t_1093 ____len_2021);// L133:L136 +extern __size_t_1 (____wcstombs_chk_warn_2030) (char * __restrict ____dst_2024, const __wchar_t_1094 * __restrict ____src_2025, __size_t_1 ____len_2026, __size_t_1 ____dstlen_2028);// L137:L141 +extern __size_t_1093 (____wcstombs_chk_warn_2031) (char * __restrict ____dst_2024, const __wchar_t_1094 * __restrict ____src_2025, __size_t_1093 ____len_2027, __size_t_1093 ____dstlen_2029);// L137:L141 +// typedef moved to top of scope +// typedef moved to top of scope /* no function due to type errors in the function prototype */ -extern void * ((__memmove_1610) (void * (____dest_1607), const void * (____src_1608), __size_t_1 ____n_1609));// L46:L47 -extern void * ((__memset_1619) (void * (____s_1616), int ____c_1617, __size_t_1 ____n_1618));// L62 -extern void * ((__memset_1620) (void * (____s_1616), int ____c_1617, __size_t_1 ____n_1618));// L62 -extern int (__memcmp_1624) (const void * (____s1_1621), const void * (____s2_1622), __size_t_1 ____n_1623);// L65:L66 -extern void * ((__memchr_1628) (const void * (____s_1625), int ____c_1626, __size_t_1 ____n_1627));// L92:L93 -extern char * ((__strcpy_1631) (char * __restrict ____dest_1629, const char * __restrict ____src_1630));// L125:L126 -extern char * ((__strncpy_1635) (char * __restrict ____dest_1632, const char * __restrict ____src_1633, __size_t_1 ____n_1634));// L128:L130 -extern char * ((__strcat_1638) (char * __restrict ____dest_1636, const char * __restrict ____src_1637));// L133:L134 -extern char * ((__strncat_1642) (char * __restrict ____dest_1639, const char * __restrict ____src_1640, __size_t_1 ____n_1641));// L136:L137 -extern int (__strcmp_1645) (const char * (____s1_1643), const char * (____s2_1644));// L140:L141 -extern int (__strncmp_1649) (const char * (____s1_1646), const char * (____s2_1647), __size_t_1 ____n_1648);// L143:L144 -extern int (__strcoll_1652) (const char * (____s1_1650), const char * (____s2_1651));// L147:L148 -extern __size_t_1 (__strxfrm_1656) (char * __restrict ____dest_1653, const char * __restrict ____src_1654, __size_t_1 ____n_1655);// L150:L152 -// typedef moved to top of scope -// typedef moved to top of scope -extern int (__strcoll_l_1669) (const char * (____s1_1666), const char * (____s2_1667), ____locale_t_1664 ____l_1668);// L162:L163 -extern __size_t_1 (__strxfrm_l_1674) (char * (____dest_1670), const char * (____src_1671), __size_t_1 ____n_1672, ____locale_t_1664 ____l_1673);// L165:L166 -extern char * ((__strdup_1676) (const char * (____s_1675)));// L171:L172 -extern char * ((__strndup_1679) (const char * (____string_1677), __size_t_1 ____n_1678));// L179:L180 -extern char * ((__strchr_1682) (const char * (____s_1680), int ____c_1681));// L231:L232 -extern char * ((__strchr_1683) (const char * (____s_1680), int ____c_1681));// L231:L232 -extern char * ((__strrchr_1686) (const char * (____s_1684), int ____c_1685));// L258:L259 -extern __size_t_1 (__strcspn_1689) (const char * (____s_1687), const char * (____reject_1688));// L280:L281 -extern __size_t_1 (__strspn_1692) (const char * (____s_1690), const char * (____accept_1691));// L284:L285 -extern char * ((__strpbrk_1695) (const char * (____s_1693), const char * (____accept_1694)));// L310:L311 -extern char * ((__strstr_1698) (const char * (____haystack_1696), const char * (____needle_1697)));// L337:L338 -extern char * ((__strtok_1701) (char * __restrict ____s_1699, const char * __restrict ____delim_1700));// L343:L344 -extern char * ((____strtok_r_1705) (char * __restrict ____s_1702, const char * __restrict ____delim_1703, char * (* __restrict ____save_ptr_1704)));// L349:L352 -extern char * ((__strtok_r_1709) (char * __restrict ____s_1706, const char * __restrict ____delim_1707, char * (* __restrict ____save_ptr_1708)));// L354:L356 -extern __size_t_1 (__strlen_1711) (const char * (____s_1710));// L394:L395 -extern __size_t_1 (__strlen_1712) (const char * (____s_1710));// L394:L395 -extern __size_t_1 (__strnlen_1715) (const char * (____string_1713), __size_t_1 ____maxlen_1714);// L401:L402 -extern char * ((__strerror_1717) (int ____errnum_1716));// L408 -extern char * ((__strerror_1718) (int ____errnum_1716));// L408 -extern int (__strerror_r_1722) (int ____errnum_1719, char * (____buf_1720), __size_t_1 ____buflen_1721);// L422:L424 -extern char * ((__strerror_l_1725) (int ____errnum_1723, ____locale_t_1664 ____l_1724));// L440 -extern void (____bzero_1728) (void * (____s_1726), __size_t_1 ____n_1727);// L446 -extern void (____bzero_1729) (void * (____s_1726), __size_t_1 ____n_1727);// L446 -extern void (__bcopy_1733) (const void * (____src_1730), void * (____dest_1731), __size_t_1 ____n_1732);// L450:L451 -extern void (__bzero_1736) (void * (____s_1734), __size_t_1 ____n_1735);// L454 -extern int (__bcmp_1740) (const void * (____s1_1737), const void * (____s2_1738), __size_t_1 ____n_1739);// L457:L458 -extern char * ((__index_1743) (const char * (____s_1741), int ____c_1742));// L484:L485 -extern char * ((__rindex_1746) (const char * (____s_1744), int ____c_1745));// L512:L513 -extern int (__ffs_1748) (int ____i_1747);// L518 -extern int (__strcasecmp_1751) (const char * (____s1_1749), const char * (____s2_1750));// L529:L530 -extern int (__strncasecmp_1755) (const char * (____s1_1752), const char * (____s2_1753), __size_t_1 ____n_1754);// L533:L534 -extern char * ((__strsep_1758) (char * (* __restrict ____stringp_1756), const char * __restrict ____delim_1757));// L552:L554 -extern char * ((__strsignal_1760) (int ____sig_1759));// L559 -extern char * ((____stpcpy_1763) (char * __restrict ____dest_1761, const char * __restrict ____src_1762));// L562:L563 -extern char * ((__stpcpy_1766) (char * __restrict ____dest_1764, const char * __restrict ____src_1765));// L564:L565 -extern char * ((____stpncpy_1770) (char * __restrict ____dest_1767, const char * __restrict ____src_1768, __size_t_1 ____n_1769));// L569:L571 -extern char * ((__stpncpy_1774) (char * __restrict ____dest_1771, const char * __restrict ____src_1772, __size_t_1 ____n_1773));// L572:L574 +extern void * ((__memmove_2053) (void * (____dest_2048), const void * (____src_2049), __size_t_1 ____n_2050));// L46:L47 +extern void * ((__memmove_2054) (void * (____dest_2048), const void * (____src_2049), __size_t_1093 ____n_2051));// L46:L47 +extern void * ((__memmove_2055) (void * (____dest_2048), const void * (____src_2049), __size_t_2037 ____n_2052));// L46:L47 +extern void * ((__memset_2070) (void * (____s_2065), int ____c_2066, __size_t_1 ____n_2067));// L62 +extern void * ((__memset_2071) (void * (____s_2065), int ____c_2066, __size_t_1093 ____n_2068));// L62 +extern void * ((__memset_2072) (void * (____s_2065), int ____c_2066, __size_t_2037 ____n_2069));// L62 +extern void * ((__memset_2073) (void * (____s_2065), int ____c_2066, __size_t_1 ____n_2067));// L62 +extern void * ((__memset_2074) (void * (____s_2065), int ____c_2066, __size_t_1093 ____n_2068));// L62 +extern void * ((__memset_2075) (void * (____s_2065), int ____c_2066, __size_t_2037 ____n_2069));// L62 +extern int (__memcmp_2081) (const void * (____s1_2076), const void * (____s2_2077), __size_t_1 ____n_2078);// L65:L66 +extern int (__memcmp_2082) (const void * (____s1_2076), const void * (____s2_2077), __size_t_1093 ____n_2079);// L65:L66 +extern int (__memcmp_2083) (const void * (____s1_2076), const void * (____s2_2077), __size_t_2037 ____n_2080);// L65:L66 +extern void * ((__memchr_2089) (const void * (____s_2084), int ____c_2085, __size_t_1 ____n_2086));// L92:L93 +extern void * ((__memchr_2090) (const void * (____s_2084), int ____c_2085, __size_t_1093 ____n_2087));// L92:L93 +extern void * ((__memchr_2091) (const void * (____s_2084), int ____c_2085, __size_t_2037 ____n_2088));// L92:L93 +extern char * ((__strcpy_2094) (char * __restrict ____dest_2092, const char * __restrict ____src_2093));// L125:L126 +extern char * ((__strncpy_2100) (char * __restrict ____dest_2095, const char * __restrict ____src_2096, __size_t_1 ____n_2097));// L128:L130 +extern char * ((__strncpy_2101) (char * __restrict ____dest_2095, const char * __restrict ____src_2096, __size_t_1093 ____n_2098));// L128:L130 +extern char * ((__strncpy_2102) (char * __restrict ____dest_2095, const char * __restrict ____src_2096, __size_t_2037 ____n_2099));// L128:L130 +extern char * ((__strcat_2105) (char * __restrict ____dest_2103, const char * __restrict ____src_2104));// L133:L134 +extern char * ((__strncat_2111) (char * __restrict ____dest_2106, const char * __restrict ____src_2107, __size_t_1 ____n_2108));// L136:L137 +extern char * ((__strncat_2112) (char * __restrict ____dest_2106, const char * __restrict ____src_2107, __size_t_1093 ____n_2109));// L136:L137 +extern char * ((__strncat_2113) (char * __restrict ____dest_2106, const char * __restrict ____src_2107, __size_t_2037 ____n_2110));// L136:L137 +extern int (__strcmp_2116) (const char * (____s1_2114), const char * (____s2_2115));// L140:L141 +extern int (__strncmp_2122) (const char * (____s1_2117), const char * (____s2_2118), __size_t_1 ____n_2119);// L143:L144 +extern int (__strncmp_2123) (const char * (____s1_2117), const char * (____s2_2118), __size_t_1093 ____n_2120);// L143:L144 +extern int (__strncmp_2124) (const char * (____s1_2117), const char * (____s2_2118), __size_t_2037 ____n_2121);// L143:L144 +extern int (__strcoll_2127) (const char * (____s1_2125), const char * (____s2_2126));// L147:L148 +extern __size_t_1 (__strxfrm_2133) (char * __restrict ____dest_2128, const char * __restrict ____src_2129, __size_t_1 ____n_2130);// L150:L152 +extern __size_t_1093 (__strxfrm_2134) (char * __restrict ____dest_2128, const char * __restrict ____src_2129, __size_t_1093 ____n_2131);// L150:L152 +extern __size_t_2037 (__strxfrm_2135) (char * __restrict ____dest_2128, const char * __restrict ____src_2129, __size_t_2037 ____n_2132);// L150:L152 +// typedef moved to top of scope +// typedef moved to top of scope +extern int (__strcoll_l_2148) (const char * (____s1_2145), const char * (____s2_2146), ____locale_t_2143 ____l_2147);// L162:L163 +extern __size_t_1 (__strxfrm_l_2155) (char * (____dest_2149), const char * (____src_2150), __size_t_1 ____n_2151, ____locale_t_2143 ____l_2154);// L165:L166 +extern __size_t_1093 (__strxfrm_l_2156) (char * (____dest_2149), const char * (____src_2150), __size_t_1093 ____n_2152, ____locale_t_2143 ____l_2154);// L165:L166 +extern __size_t_2037 (__strxfrm_l_2157) (char * (____dest_2149), const char * (____src_2150), __size_t_2037 ____n_2153, ____locale_t_2143 ____l_2154);// L165:L166 +extern char * ((__strdup_2159) (const char * (____s_2158)));// L171:L172 +extern char * ((__strndup_2164) (const char * (____string_2160), __size_t_1 ____n_2161));// L179:L180 +extern char * ((__strndup_2165) (const char * (____string_2160), __size_t_1093 ____n_2162));// L179:L180 +extern char * ((__strndup_2166) (const char * (____string_2160), __size_t_2037 ____n_2163));// L179:L180 +extern char * ((__strchr_2169) (const char * (____s_2167), int ____c_2168));// L231:L232 +extern char * ((__strrchr_2172) (const char * (____s_2170), int ____c_2171));// L258:L259 +extern __size_t_1 (__strcspn_2175) (const char * (____s_2173), const char * (____reject_2174));// L280:L281 +extern __size_t_1093 (__strcspn_2176) (const char * (____s_2173), const char * (____reject_2174));// L280:L281 +extern __size_t_2037 (__strcspn_2177) (const char * (____s_2173), const char * (____reject_2174));// L280:L281 +extern __size_t_1 (__strspn_2180) (const char * (____s_2178), const char * (____accept_2179));// L284:L285 +extern __size_t_1093 (__strspn_2181) (const char * (____s_2178), const char * (____accept_2179));// L284:L285 +extern __size_t_2037 (__strspn_2182) (const char * (____s_2178), const char * (____accept_2179));// L284:L285 +extern char * ((__strpbrk_2185) (const char * (____s_2183), const char * (____accept_2184)));// L310:L311 +extern char * ((__strstr_2188) (const char * (____haystack_2186), const char * (____needle_2187)));// L337:L338 +extern char * ((__strtok_2191) (char * __restrict ____s_2189, const char * __restrict ____delim_2190));// L343:L344 +extern char * ((____strtok_r_2195) (char * __restrict ____s_2192, const char * __restrict ____delim_2193, char * (* __restrict ____save_ptr_2194)));// L349:L352 +extern char * ((__strtok_r_2199) (char * __restrict ____s_2196, const char * __restrict ____delim_2197, char * (* __restrict ____save_ptr_2198)));// L354:L356 +extern __size_t_1 (__strlen_2201) (const char * (____s_2200));// L394:L395 +extern __size_t_1093 (__strlen_2202) (const char * (____s_2200));// L394:L395 +extern __size_t_2037 (__strlen_2203) (const char * (____s_2200));// L394:L395 +extern __size_t_1 (__strlen_2204) (const char * (____s_2200));// L394:L395 +extern __size_t_1093 (__strlen_2205) (const char * (____s_2200));// L394:L395 +extern __size_t_2037 (__strlen_2206) (const char * (____s_2200));// L394:L395 +extern __size_t_1 (__strnlen_2211) (const char * (____string_2207), __size_t_1 ____maxlen_2208);// L401:L402 +extern __size_t_1093 (__strnlen_2212) (const char * (____string_2207), __size_t_1093 ____maxlen_2209);// L401:L402 +extern __size_t_2037 (__strnlen_2213) (const char * (____string_2207), __size_t_2037 ____maxlen_2210);// L401:L402 +extern char * ((__strerror_2215) (int ____errnum_2214));// L408 +extern char * ((__strerror_2216) (int ____errnum_2214));// L408 +extern int (__strerror_r_2222) (int ____errnum_2217, char * (____buf_2218), __size_t_1 ____buflen_2219);// L422:L424 +extern int (__strerror_r_2223) (int ____errnum_2217, char * (____buf_2218), __size_t_1093 ____buflen_2220);// L422:L424 +extern int (__strerror_r_2224) (int ____errnum_2217, char * (____buf_2218), __size_t_2037 ____buflen_2221);// L422:L424 +extern char * ((__strerror_l_2227) (int ____errnum_2225, ____locale_t_2143 ____l_2226));// L440 +extern void (____bzero_2232) (void * (____s_2228), __size_t_1 ____n_2229);// L446 +extern void (____bzero_2233) (void * (____s_2228), __size_t_1093 ____n_2230);// L446 +extern void (____bzero_2234) (void * (____s_2228), __size_t_2037 ____n_2231);// L446 +extern void (____bzero_2235) (void * (____s_2228), __size_t_1 ____n_2229);// L446 +extern void (____bzero_2236) (void * (____s_2228), __size_t_1093 ____n_2230);// L446 +extern void (____bzero_2237) (void * (____s_2228), __size_t_2037 ____n_2231);// L446 +extern void (__bcopy_2243) (const void * (____src_2238), void * (____dest_2239), __size_t_1 ____n_2240);// L450:L451 +extern void (__bcopy_2244) (const void * (____src_2238), void * (____dest_2239), __size_t_1093 ____n_2241);// L450:L451 +extern void (__bcopy_2245) (const void * (____src_2238), void * (____dest_2239), __size_t_2037 ____n_2242);// L450:L451 +extern void (__bzero_2250) (void * (____s_2246), __size_t_1 ____n_2247);// L454 +extern void (__bzero_2251) (void * (____s_2246), __size_t_1093 ____n_2248);// L454 +extern void (__bzero_2252) (void * (____s_2246), __size_t_2037 ____n_2249);// L454 +extern int (__bcmp_2258) (const void * (____s1_2253), const void * (____s2_2254), __size_t_1 ____n_2255);// L457:L458 +extern int (__bcmp_2259) (const void * (____s1_2253), const void * (____s2_2254), __size_t_1093 ____n_2256);// L457:L458 +extern int (__bcmp_2260) (const void * (____s1_2253), const void * (____s2_2254), __size_t_2037 ____n_2257);// L457:L458 +extern char * ((__index_2263) (const char * (____s_2261), int ____c_2262));// L484:L485 +extern char * ((__rindex_2266) (const char * (____s_2264), int ____c_2265));// L512:L513 +extern int (__ffs_2268) (int ____i_2267);// L518 +extern int (__strcasecmp_2271) (const char * (____s1_2269), const char * (____s2_2270));// L529:L530 +extern int (__strncasecmp_2277) (const char * (____s1_2272), const char * (____s2_2273), __size_t_1 ____n_2274);// L533:L534 +extern int (__strncasecmp_2278) (const char * (____s1_2272), const char * (____s2_2273), __size_t_1093 ____n_2275);// L533:L534 +extern int (__strncasecmp_2279) (const char * (____s1_2272), const char * (____s2_2273), __size_t_2037 ____n_2276);// L533:L534 +extern char * ((__strsep_2282) (char * (* __restrict ____stringp_2280), const char * __restrict ____delim_2281));// L552:L554 +extern char * ((__strsignal_2284) (int ____sig_2283));// L559 +extern char * ((____stpcpy_2287) (char * __restrict ____dest_2285, const char * __restrict ____src_2286));// L562:L563 +extern char * ((__stpcpy_2290) (char * __restrict ____dest_2288, const char * __restrict ____src_2289));// L564:L565 +extern char * ((____stpncpy_2296) (char * __restrict ____dest_2291, const char * __restrict ____src_2292, __size_t_1 ____n_2293));// L569:L571 +extern char * ((____stpncpy_2297) (char * __restrict ____dest_2291, const char * __restrict ____src_2292, __size_t_1093 ____n_2294));// L569:L571 +extern char * ((____stpncpy_2298) (char * __restrict ____dest_2291, const char * __restrict ____src_2292, __size_t_2037 ____n_2295));// L569:L571 +extern char * ((__stpncpy_2304) (char * __restrict ____dest_2299, const char * __restrict ____src_2300, __size_t_1 ____n_2301));// L572:L574 +extern char * ((__stpncpy_2305) (char * __restrict ____dest_2299, const char * __restrict ____src_2300, __size_t_1093 ____n_2302));// L572:L574 +extern char * ((__stpncpy_2306) (char * __restrict ____dest_2299, const char * __restrict ____src_2300, __size_t_2037 ____n_2303));// L572:L574 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ @@ -2137,32 +3232,36 @@ extern char * ((__stpncpy_1774) (char * __restrict ____dest_1771, const char /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern char * ((____stpncpy_chk_1803) (char * (____dest_1799), const char * (____src_1800), __size_t_1 ____n_1801, __size_t_1 ____destlen_1802));// L130:L131 -extern char * ((____stpncpy_alias_1807) (char * (____dest_1804), const char * (____src_1805), __size_t_1 ____n_1806));// L132:L133 +extern char * ((____stpncpy_chk_2360) (char * (____dest_2352), const char * (____src_2353), __size_t_1 ____n_2354, __size_t_1 ____destlen_2357));// L130:L131 +extern char * ((____stpncpy_chk_2361) (char * (____dest_2352), const char * (____src_2353), __size_t_1093 ____n_2355, __size_t_1093 ____destlen_2358));// L130:L131 +extern char * ((____stpncpy_chk_2362) (char * (____dest_2352), const char * (____src_2353), __size_t_2037 ____n_2356, __size_t_2037 ____destlen_2359));// L130:L131 +extern char * ((____stpncpy_alias_2368) (char * (____dest_2363), const char * (____src_2364), __size_t_1 ____n_2365));// L132:L133 +extern char * ((____stpncpy_alias_2369) (char * (____dest_2363), const char * (____src_2364), __size_t_1093 ____n_2366));// L132:L133 +extern char * ((____stpncpy_alias_2370) (char * (____dest_2363), const char * (____src_2364), __size_t_2037 ____n_2367));// L132:L133 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ // typedef moved to top of scope // typedef moved to top of scope -static void (__delete_eth_table_1827) (__ethtable_t_1823 * (__ch_1825)) { +static void (__delete_eth_table_2398) (__ethtable_t_2394 * (__ch_2396)) { -if (__static_condition_default_1829) { +if (__static_condition_default_2400) { { { -if (__static_condition_default_1830) { -free ( __ch_1825 -> __ifname_1822) ; // L15 +if (__static_condition_default_2401) { +free ( __ch_2396 -> __ifname_2393) ; // L15 } -if (__static_condition_default_1831) { +if (__static_condition_default_2402) { __static_type_error("type error") ; // L15 } -if (__static_condition_default_1832) { -free ( __ch_1825 ) ; // L16 +if (__static_condition_default_2403) { +free ( __ch_2396 ) ; // L16 } -if (__static_condition_default_1833) { +if (__static_condition_default_2404) { __static_type_error("type error") ; // L16 } } @@ -2171,25 +3270,25 @@ __static_type_error("type error") ; // L16 } } -static void (__delete_eth_table_1828) (__ethtable_t_1824 * (__ch_1826)) { +static void (__delete_eth_table_2399) (__ethtable_t_2395 * (__ch_2397)) { -if (__static_condition_default_1834) { +if (__static_condition_default_2405) { { { -if (__static_condition_default_1835) { -free ( __ch_1826 -> __ifname_1822) ; // L15 +if (__static_condition_default_2406) { +free ( __ch_2397 -> __ifname_2393) ; // L15 } -if (__static_condition_default_1836) { +if (__static_condition_default_2407) { __static_type_error("type error") ; // L15 } -if (__static_condition_default_1837) { -free ( __ch_1826 ) ; // L16 +if (__static_condition_default_2408) { +free ( __ch_2397 ) ; // L16 } -if (__static_condition_default_1838) { +if (__static_condition_default_2409) { __static_type_error("type error") ; // L16 } } @@ -2198,9 +3297,9 @@ __static_type_error("type error") ; // L16 } } -;void (__delete_eth_table_1841) (__ethtable_t_1823 * (__ch_1839)) { +;void (__delete_eth_table_2412) (__ethtable_t_2394 * (__ch_2410)) { -if (__static_condition_default_1843) { +if (__static_condition_default_2414) { { { @@ -2213,9 +3312,9 @@ if (__static_condition_default_1843) { } } -void (__delete_eth_table_1842) (__ethtable_t_1824 * (__ch_1840)) { +void (__delete_eth_table_2413) (__ethtable_t_2395 * (__ch_2411)) { -if (__static_condition_default_1844) { +if (__static_condition_default_2415) { { { @@ -2228,123 +3327,177 @@ if (__static_condition_default_1844) { } } -static void (__prepend_new_eth_table_1856) (__ethtable_t_1823 * (* (__clist_1845)), char * (__ifname_1847)) { +static void (__prepend_new_eth_table_2427) (__ethtable_t_2394 * (* (__clist_2416)), char * (__ifname_2418)) { -if (__static_condition_default_1858) { +if (__static_condition_default_2429) { { { -struct { typeof( struct __forward_tag_reference_1819 *) __tmp_1850; typeof( char *) __tmp_1851; }__sizeofStandin_1852; -struct { typeof( struct __forward_tag_reference_1819 *) __tmp_1853; typeof( char *) __tmp_1854; }__sizeofStandin_1855; +struct { typeof( struct __forward_tag_reference_2390 *) __tmp_2421; typeof( char *) __tmp_2422; }__sizeofStandin_2423; +struct { typeof( struct __forward_tag_reference_2390 *) __tmp_2424; typeof( char *) __tmp_2425; }__sizeofStandin_2426; -__ethtable_t_1823 * (__ch_1848);// L26 +__ethtable_t_2394 * (__ch_2419);// L26 -if (__static_condition_default_1859) { -if ( __strlen_1711 ( __ifname_1847 ) >= 16 )// L27 +if (__static_condition_default_2430) { +if ( __strlen_2201 ( __ifname_2418 ) >= 16 )// L27 +{ + __printf_421 ("interface name '%s' too long", __ifname_2418 ) ; // L28 +} +} +if (__static_condition_default_2431) { +if ( __strlen_2202 ( __ifname_2418 ) >= 16 )// L27 +{ +__static_type_error("type error") ; // L28 +} +} +if (__static_condition_default_2432) { +if ( __strlen_2203 ( __ifname_2418 ) >= 16 )// L27 +{ +__static_type_error("type error") ; // L28 +} +} +if (__static_condition_default_2433) { +if ( __strlen_2204 ( __ifname_2418 ) >= 16 )// L27 { - __printf_383 ("interface name '%s' too long", __ifname_1847 ) ; // L28 + __printf_421 ("interface name '%s' too long", __ifname_2418 ) ; // L28 } } -if (__static_condition_default_1860) { -if ( __strlen_1712 ( __ifname_1847 ) >= 16 )// L27 +if (__static_condition_default_2434) { +if ( __strlen_2205 ( __ifname_2418 ) >= 16 )// L27 { - __printf_383 ("interface name '%s' too long", __ifname_1847 ) ; // L28 +__static_type_error("type error") ; // L28 } } -if (__static_condition_default_1861) { - __ch_1848 = malloc (sizeof(__sizeofStandin_1852)) ; // L29 +if (__static_condition_default_2435) { +if ( __strlen_2206 ( __ifname_2418 ) >= 16 )// L27 +{ +__static_type_error("type error") ; // L28 } -if (__static_condition_default_1862) { - __ch_1848 = malloc (sizeof(__sizeofStandin_1852)) ; // L29 } - __ch_1848 -> __ifname_1822 = __ifname_1847 ; // L30 - __ch_1848 -> __next_1821 = * __clist_1845 ; // L31 -* __clist_1845 = __ch_1848 ; // L32 +if (__static_condition_default_2436) { + __ch_2419 = malloc (sizeof(__sizeofStandin_2423)) ; // L29 +} +if (__static_condition_default_2437) { + __ch_2419 = malloc (sizeof(__sizeofStandin_2423)) ; // L29 +} +if (__static_condition_default_2438) { +__static_type_error("type error") ; // L29 +} + __ch_2419 -> __ifname_2393 = __ifname_2418 ; // L30 + __ch_2419 -> __next_2392 = * __clist_2416 ; // L31 +* __clist_2416 = __ch_2419 ; // L32 } } } } -static void (__prepend_new_eth_table_1857) (__ethtable_t_1824 * (* (__clist_1846)), char * (__ifname_1847)) { +static void (__prepend_new_eth_table_2428) (__ethtable_t_2395 * (* (__clist_2417)), char * (__ifname_2418)) { -if (__static_condition_default_1863) { +if (__static_condition_default_2439) { { { -struct { typeof( struct __forward_tag_reference_1819 *) __tmp_1850; typeof( char *) __tmp_1851; }__sizeofStandin_1852; -struct { typeof( struct __forward_tag_reference_1819 *) __tmp_1853; typeof( char *) __tmp_1854; }__sizeofStandin_1855; +struct { typeof( struct __forward_tag_reference_2390 *) __tmp_2421; typeof( char *) __tmp_2422; }__sizeofStandin_2423; +struct { typeof( struct __forward_tag_reference_2390 *) __tmp_2424; typeof( char *) __tmp_2425; }__sizeofStandin_2426; -__ethtable_t_1824 * (__ch_1849);// L26 +__ethtable_t_2395 * (__ch_2420);// L26 -if (__static_condition_default_1864) { -if ( __strlen_1711 ( __ifname_1847 ) >= 16 )// L27 +if (__static_condition_default_2440) { +if ( __strlen_2201 ( __ifname_2418 ) >= 16 )// L27 +{ + __printf_421 ("interface name '%s' too long", __ifname_2418 ) ; // L28 +} +} +if (__static_condition_default_2441) { +if ( __strlen_2202 ( __ifname_2418 ) >= 16 )// L27 +{ +__static_type_error("type error") ; // L28 +} +} +if (__static_condition_default_2442) { +if ( __strlen_2203 ( __ifname_2418 ) >= 16 )// L27 { - __printf_383 ("interface name '%s' too long", __ifname_1847 ) ; // L28 +__static_type_error("type error") ; // L28 } } -if (__static_condition_default_1865) { -if ( __strlen_1712 ( __ifname_1847 ) >= 16 )// L27 +if (__static_condition_default_2443) { +if ( __strlen_2204 ( __ifname_2418 ) >= 16 )// L27 { - __printf_383 ("interface name '%s' too long", __ifname_1847 ) ; // L28 + __printf_421 ("interface name '%s' too long", __ifname_2418 ) ; // L28 +} +} +if (__static_condition_default_2444) { +if ( __strlen_2205 ( __ifname_2418 ) >= 16 )// L27 +{ +__static_type_error("type error") ; // L28 +} +} +if (__static_condition_default_2445) { +if ( __strlen_2206 ( __ifname_2418 ) >= 16 )// L27 +{ +__static_type_error("type error") ; // L28 +} } +if (__static_condition_default_2446) { + __ch_2420 = malloc (sizeof(__sizeofStandin_2426)) ; // L29 } -if (__static_condition_default_1866) { - __ch_1849 = malloc (sizeof(__sizeofStandin_1855)) ; // L29 +if (__static_condition_default_2447) { + __ch_2420 = malloc (sizeof(__sizeofStandin_2426)) ; // L29 } -if (__static_condition_default_1867) { - __ch_1849 = malloc (sizeof(__sizeofStandin_1855)) ; // L29 +if (__static_condition_default_2448) { +__static_type_error("type error") ; // L29 } - __ch_1849 -> __ifname_1822 = __ifname_1847 ; // L30 - __ch_1849 -> __next_1821 = * __clist_1846 ; // L31 -* __clist_1846 = __ch_1849 ; // L32 + __ch_2420 -> __ifname_2393 = __ifname_2418 ; // L30 + __ch_2420 -> __next_2392 = * __clist_2417 ; // L31 +* __clist_2417 = __ch_2420 ; // L32 } } } } -int (__main_1874) (int __argc_1868, char * (* (__argv_1869))) { +int (__main_2455) (int __argc_2449, char * (* (__argv_2450))) { { { -__ethtable_t_1823 * (__clist_1870)= ( ( void * ) 0 );// L37 +__ethtable_t_2394 * (__clist_2451)= ( ( void * ) 0 );// L37 -__ethtable_t_1824 * (__clist_1871)= ( ( void * ) 0 );// L37 +__ethtable_t_2395 * (__clist_2452)= ( ( void * ) 0 );// L37 -__ethtable_t_1823 * (__ch_1872);// L38 +__ethtable_t_2394 * (__ch_2453);// L38 -__ethtable_t_1824 * (__ch_1873);// L38 +__ethtable_t_2395 * (__ch_2454);// L38 -if (__static_condition_default_1858) { - __prepend_new_eth_table_1856 (& __clist_1870 , __argv_1869 [ 0 ]) ; // L40 +if (__static_condition_default_2429) { + __prepend_new_eth_table_2427 (& __clist_2451 , __argv_2450 [ 0 ]) ; // L40 } -if (__static_condition_default_1863) { - __prepend_new_eth_table_1857 (& __clist_1871 , __argv_1869 [ 0 ]) ; // L40 +if (__static_condition_default_2439) { + __prepend_new_eth_table_2428 (& __clist_2452 , __argv_2450 [ 0 ]) ; // L40 } -if (__static_condition_default_1875) { -for ( __ch_1872 = __clist_1870 ; __ch_1872 ; __ch_1872 = __ch_1872 -> __next_1821 )// L43 +if (__static_condition_default_2456) { +for ( __ch_2453 = __clist_2451 ; __ch_2453 ; __ch_2453 = __ch_2453 -> __next_2392 )// L43 { - __delete_eth_table_1827 ( __ch_1872 ) ; // L44 + __delete_eth_table_2398 ( __ch_2453 ) ; // L44 } } -if (__static_condition_default_1876) { -for ( __ch_1873 = __clist_1871 ; __ch_1873 ; __ch_1873 = __ch_1873 -> __next_1821 )// L43 +if (__static_condition_default_2457) { +for ( __ch_2454 = __clist_2452 ; __ch_2454 ; __ch_2454 = __ch_2454 -> __next_2392 )// L43 { - __delete_eth_table_1828 ( __ch_1873 ) ; // L44 + __delete_eth_table_2399 ( __ch_2454 ) ; // L44 } } -if (__static_condition_default_1877) { +if (__static_condition_default_2458) { return 0 ;// L46 } -if (__static_condition_default_1878) { +if (__static_condition_default_2459) { return 0 ;// L46 } } diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.clangres index ccd3b8f5..d4e810e3 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.clangres @@ -1,46 +1,43 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2184:1: warning: Attempt to free released memory [unix.Malloc] -free ( __ch_1826 -> __ifname_1822) ; // L15 -^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2257:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_1823', which is incompatible with sizeof operand type 'struct (unnamed struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2238:1)' [unix.MallocSizeof] - __ch_1848 = malloc (sizeof(__sizeofStandin_1852)) ; // L29 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3380:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_2394', which is incompatible with sizeof operand type 'struct (unnamed struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3337:1)' [unix.MallocSizeof] + __ch_2419 = malloc (sizeof(__sizeofStandin_2423)) ; // L29 ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2260:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_1823', which is incompatible with sizeof operand type 'struct (unnamed struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2238:1)' [unix.MallocSizeof] - __ch_1848 = malloc (sizeof(__sizeofStandin_1852)) ; // L29 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3383:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_2394', which is incompatible with sizeof operand type 'struct (unnamed struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3337:1)' [unix.MallocSizeof] + __ch_2419 = malloc (sizeof(__sizeofStandin_2423)) ; // L29 ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2262:30: warning: Access to field '__ifname_1822' results in a dereference of an undefined pointer value (loaded from variable '__ch_1848') [core.NullDereference] - __ch_1848 -> __ifname_1822 = __ifname_1847 ; // L30 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3385:5: warning: Potential leak of memory pointed to by '__ch_2419' [unix.Malloc] +if (__static_condition_default_2438) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3388:30: warning: Access to field '__ifname_2393' results in a dereference of an undefined pointer value (loaded from variable '__ch_2419') [core.NullDereference] + __ch_2419 -> __ifname_2393 = __ifname_2418 ; // L30 ~~~~~~~~~ ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2262:33: warning: Potential leak of memory pointed to by '__ch_1848' [unix.Malloc] - __ch_1848 -> __ifname_1822 = __ifname_1847 ; // L30 - ^~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2297:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_1824', which is incompatible with sizeof operand type 'struct (unnamed struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2279:1)' [unix.MallocSizeof] - __ch_1849 = malloc (sizeof(__sizeofStandin_1855)) ; // L29 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3447:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_2395', which is incompatible with sizeof operand type 'struct (unnamed struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3405:1)' [unix.MallocSizeof] + __ch_2420 = malloc (sizeof(__sizeofStandin_2426)) ; // L29 ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2300:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_1824', which is incompatible with sizeof operand type 'struct (unnamed struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2279:1)' [unix.MallocSizeof] - __ch_1849 = malloc (sizeof(__sizeofStandin_1855)) ; // L29 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3450:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_2395', which is incompatible with sizeof operand type 'struct (unnamed struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3405:1)' [unix.MallocSizeof] + __ch_2420 = malloc (sizeof(__sizeofStandin_2426)) ; // L29 ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2302:30: warning: Access to field '__ifname_1822' results in a dereference of an undefined pointer value (loaded from variable '__ch_1849') [core.NullDereference] - __ch_1849 -> __ifname_1822 = __ifname_1847 ; // L30 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3452:5: warning: Potential leak of memory pointed to by '__ch_2420' [unix.Malloc] +if (__static_condition_default_2448) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3455:30: warning: Access to field '__ifname_2393' results in a dereference of an undefined pointer value (loaded from variable '__ch_2420') [core.NullDereference] + __ch_2420 -> __ifname_2393 = __ifname_2418 ; // L30 ~~~~~~~~~ ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2302:33: warning: Potential leak of memory pointed to by '__ch_1849' [unix.Malloc] - __ch_1849 -> __ifname_1822 = __ifname_1847 ; // L30 - ^~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2333:39: warning: Potential leak of memory pointed to by '__ch_1872' [unix.Malloc] -for ( __ch_1872 = __clist_1870 ; __ch_1872 ; __ch_1872 = __ch_1872 -> __next_1821 )// L43 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3486:39: warning: Potential leak of memory pointed to by '__ch_2453' [unix.Malloc] +for ( __ch_2453 = __clist_2451 ; __ch_2453 ; __ch_2453 = __ch_2453 -> __next_2392 )// L43 ^~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2333:67: warning: Use of memory after it is freed [unix.Malloc] -for ( __ch_1872 = __clist_1870 ; __ch_1872 ; __ch_1872 = __ch_1872 -> __next_1821 )// L43 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3486:67: warning: Use of memory after it is freed [unix.Malloc] +for ( __ch_2453 = __clist_2451 ; __ch_2453 ; __ch_2453 = __ch_2453 -> __next_2392 )// L43 ^~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2338:5: warning: Potential leak of memory pointed to by '__clist_1870' [unix.Malloc] -if (__static_condition_default_1876) { +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3491:5: warning: Potential leak of memory pointed to by '__clist_2451' [unix.Malloc] +if (__static_condition_default_2457) { ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2339:39: warning: Potential leak of memory pointed to by '__ch_1873' [unix.Malloc] -for ( __ch_1873 = __clist_1871 ; __ch_1873 ; __ch_1873 = __ch_1873 -> __next_1821 )// L43 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3492:39: warning: Potential leak of memory pointed to by '__ch_2454' [unix.Malloc] +for ( __ch_2454 = __clist_2452 ; __ch_2454 ; __ch_2454 = __ch_2454 -> __next_2392 )// L43 ^~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2339:67: warning: Use of memory after it is freed [unix.Malloc] -for ( __ch_1873 = __clist_1871 ; __ch_1873 ; __ch_1873 = __ch_1873 -> __next_1821 )// L43 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3492:67: warning: Use of memory after it is freed [unix.Malloc] +for ( __ch_2454 = __clist_2452 ; __ch_2454 ; __ch_2454 = __ch_2454 -> __next_2392 )// L43 ^~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2344:5: warning: Potential leak of memory pointed to by '__clist_1871' [unix.Malloc] -if (__static_condition_default_1877) { +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3497:5: warning: Potential leak of memory pointed to by '__clist_2452' [unix.Malloc] +if (__static_condition_default_2458) { ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -15 warnings generated. +14 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.inferres new file mode 100644 index 00000000..ff8580b4 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.inferres @@ -0,0 +1,32 @@ + +BUSYBOX/bc0ffc0e971.desugared.c:3382: error: Memory Leak + Memory dynamically allocated by `malloc` on line 3380 is not freed after the last access at line 3382, column 5. + 3380. __ch_2419 = malloc (sizeof(__sizeofStandin_2423)) ; // L29 + 3381. } + 3382. if (__static_condition_default_2437) { + ^ + 3383. __ch_2419 = malloc (sizeof(__sizeofStandin_2423)) ; // L29 + 3384. } + +BUSYBOX/bc0ffc0e971.desugared.c:3449: error: Memory Leak + Memory dynamically allocated by `malloc` on line 3447 is not freed after the last access at line 3449, column 5. + 3447. __ch_2420 = malloc (sizeof(__sizeofStandin_2426)) ; // L29 + 3448. } + 3449. if (__static_condition_default_2447) { + ^ + 3450. __ch_2420 = malloc (sizeof(__sizeofStandin_2426)) ; // L29 + 3451. } + +BUSYBOX/bc0ffc0e971.desugared.c:3491: error: Memory Leak + Memory dynamically allocated by `malloc`, indirectly via call to `__prepend_new_eth_table_2428()` on line 3483 is not freed after the last access at line 3491, column 5. + 3489. } + 3490. } + 3491. if (__static_condition_default_2457) { + ^ + 3492. for ( __ch_2454 = __clist_2452 ; __ch_2454 ; __ch_2454 = __ch_2454 -> __next_2392 )// L43 + 3493. { + + +Found 3 issues + Issue Type(ISSUED_TYPE_ID): # + Memory Leak(MEMORY_LEAK_C): 3 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.inferres new file mode 100644 index 00000000..1126d962 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.inferres @@ -0,0 +1,24 @@ + +BUSYBOX/bc0ffc0e971.c:40: error: Memory Leak + Memory dynamically allocated by `malloc`, indirectly via call to `prepend_new_eth_table()` on line 40 is not freed after the last access at line 40, column 3. + 38. ethtable_t *ch; + 39. + 40. prepend_new_eth_table(&clist, argv[0]); + ^ + 41. + 42. #ifdef ENABLE_FEATURE_CLEAN_UP + +BUSYBOX/bc0ffc0e971.c:40: error: Null Dereference + The call to `prepend_new_eth_table` may trigger the following issue: `ch` could be null (from the call to `prepend_new_eth_table()` on line 29) and is dereferenced in call to `prepend_new_eth_table()`. + 38. ethtable_t *ch; + 39. + 40. prepend_new_eth_table(&clist, argv[0]); + ^ + 41. + 42. #ifdef ENABLE_FEATURE_CLEAN_UP + + +Found 2 issues + Issue Type(ISSUED_TYPE_ID): # + Null Dereference(NULLPTR_DEREFERENCE): 1 + Memory Leak(MEMORY_LEAK_C): 1 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/cc3f20b9bdf.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/cc3f20b9bdf.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/cc3f20b9bdf.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/cc3f20b9bdf.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/cc3f20b9bdf.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/cf1f2ace391.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/cf1f2ace391.desugared.c index 952f1d2f..8dd41559 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/cf1f2ace391.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/cf1f2ace391.desugared.c @@ -7,247 +7,482 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_1913; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_1766; -extern const bool __static_condition_default_1791; -extern const bool __static_condition_default_954; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_784; -extern const bool __static_condition_default_1921; -extern const bool __static_condition_default_451; -extern const bool __static_condition_default_320; -extern const bool __static_condition_default_961; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_343; -extern const bool __static_condition_default_300; -extern const bool __static_condition_default_496; -extern const bool __static_condition_default_579; -extern const bool __static_condition_default_790; -extern const bool __static_condition_default_495; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_254; -extern const bool __static_condition_default_470; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_304; -extern const bool __static_condition_default_820; -extern const bool __static_condition_default_1093; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_1909; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_517; -extern const bool __static_condition_default_933; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_448; -extern const bool __static_condition_default_118; -extern const bool __static_condition_default_641; -extern const bool __static_condition_default_459; -extern const bool __static_condition_default_234; -extern const bool __static_condition_default_421; -extern const bool __static_condition_default_551; -extern const bool __static_condition_default_501; -extern const bool __static_condition_default_893; -extern const bool __static_condition_default_308; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_455; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_1141; +extern const bool __static_condition_default_1322; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_2143; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_1933; +extern const bool __static_condition_default_715; extern const bool __static_condition_default_768; -extern const bool __static_condition_default_969; -extern const bool __static_condition_default_1083; -extern const bool __static_condition_default_941; -extern const bool __static_condition_default_718; -extern const bool __static_condition_default_680; -extern const bool __static_condition_default_379; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_393; -extern const bool __static_condition_default_1734; -extern const bool __static_condition_default_457; -extern const bool __static_condition_default_1779; -extern const bool __static_condition_default_318; -extern const bool __static_condition_default_696; -extern const bool __static_condition_default_332; -extern const bool __static_condition_default_256; -extern const bool __static_condition_default_429; -extern const bool __static_condition_default_374; -extern const bool __static_condition_default_1071; -extern const bool __static_condition_default_507; -extern const bool __static_condition_default_567; -extern const bool __static_condition_default_707; -extern const bool __static_condition_default_400; -extern const bool __static_condition_default_881; -extern const bool __static_condition_default_889; -extern const bool __static_condition_default_1593; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_636; +extern const bool __static_condition_default_380; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_1283; +extern const bool __static_condition_default_2246; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_1381; +extern const bool __static_condition_default_1873; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_1885; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_619; +extern const bool __static_condition_default_1202; +extern const bool __static_condition_default_382; extern const bool __static_condition_default_760; -extern const bool __static_condition_default_500; -extern const bool __static_condition_default_739; -extern const bool __static_condition_default_639; -extern const bool __static_condition_default_1915; extern const bool __static_condition_default_727; -extern const bool __static_condition_default_1756; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_905; -extern const bool __static_condition_default_1018; -extern const bool __static_condition_default_1914; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_870; +extern const bool __static_condition_default_1239; +extern const bool __static_condition_default_1371; +extern const bool __static_condition_default_1212; +extern const bool __static_condition_default_1199; +extern const bool __static_condition_default_1320; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_290; +extern const bool __static_condition_default_544; +extern const bool __static_condition_default_388; +extern const bool __static_condition_default_204; +extern const bool __static_condition_default_2267; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_1900; +extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_2313; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_488; +extern const bool __static_condition_default_2396; +extern const bool __static_condition_default_347; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_1253; +extern const bool __static_condition_default_759; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_1984; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_1152; +extern const bool __static_condition_default_1409; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_337; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_419; +extern const bool __static_condition_default_1936; +extern const bool __static_condition_default_2247; +extern const bool __static_condition_default_2340; +extern const bool __static_condition_default_2191; +extern const bool __static_condition_default_2223; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_1305; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_1214; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_1293; +extern const bool __static_condition_default_2312; +extern const bool __static_condition_default_1306; +extern const bool __static_condition_default_1864; +extern const bool __static_condition_default_1323; +extern const bool __static_condition_default_1222; +extern const bool __static_condition_default_1281; +extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_1870; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_2193; +extern const bool __static_condition_default_2226; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_1843; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_1314; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_1978; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_2509; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_1233; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_894; extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_232; -extern const bool __static_condition_default_370; -extern const bool __static_condition_default_326; -extern const bool __static_condition_default_508; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_1813; -extern const bool __static_condition_default_627; -extern const bool __static_condition_default_533; -extern const bool __static_condition_default_161; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_1977; +extern const bool __static_condition_default_1252; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_1331; +extern const bool __static_condition_default_1284; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_2002; +extern const bool __static_condition_default_1251; +extern const bool __static_condition_default_670; +extern const bool __static_condition_default_2519; +extern const bool __static_condition_default_2006; +extern const bool __static_condition_default_2278; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_1219; +extern const bool __static_condition_default_1329; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_1849; +extern const bool __static_condition_default_1918; +extern const bool __static_condition_default_1324; +extern const bool __static_condition_default_1254; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_1165; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_1861; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_747; +extern const bool __static_condition_default_2389; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_76; +extern const bool __static_condition_default_583; +extern const bool __static_condition_default_1213; +extern const bool __static_condition_default_1397; +extern const bool __static_condition_default_2225; +extern const bool __static_condition_default_2217; +extern const bool __static_condition_default_2314; +extern const bool __static_condition_default_2000; +extern const bool __static_condition_default_2305; +extern const bool __static_condition_default_2203; +extern const bool __static_condition_default_1230; +extern const bool __static_condition_default_1220; +extern const bool __static_condition_default_1909; +extern const bool __static_condition_default_2279; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_1350; +extern const bool __static_condition_default_2001; +extern const bool __static_condition_default_549; +extern const bool __static_condition_default_1846; +extern const bool __static_condition_default_2173; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_2280; +extern const bool __static_condition_default_1313; +extern const bool __static_condition_default_1332; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_1316; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_1148; +extern const bool __static_condition_default_2268; +extern const bool __static_condition_default_2304; +extern const bool __static_condition_default_489; +extern const bool __static_condition_default_1260; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_1290; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_2349; +extern const bool __static_condition_default_491; extern const bool __static_condition_default_223; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_1606; -extern const bool __static_condition_default_226; -extern const bool __static_condition_default_798; -extern const bool __static_condition_default_642; -extern const bool __static_condition_default_648; -extern const bool __static_condition_default_999; -extern const bool __static_condition_default_794; -extern const bool __static_condition_default_948; -extern const bool __static_condition_default_1911; -extern const bool __static_condition_default_603; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_294; -extern const bool __static_condition_default_330; -extern const bool __static_condition_default_976; -extern const bool __static_condition_default_165; -extern const bool __static_condition_default_482; -extern const bool __static_condition_default_716; -extern const bool __static_condition_default_953; -extern const bool __static_condition_default_381; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_540; -extern const bool __static_condition_default_1006; -extern const bool __static_condition_default_962; -extern const bool __static_condition_default_227; -extern const bool __static_condition_default_310; -extern const bool __static_condition_default_906; -extern const bool __static_condition_default_577; -extern const bool __static_condition_default_349; -extern const bool __static_condition_default_225; -extern const bool __static_condition_default_502; -extern const bool __static_condition_default_904; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_595; -extern const bool __static_condition_default_336; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_588; -extern const bool __static_condition_default_1095; -extern const bool __static_condition_default_358; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_1741; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_367; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_1906; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_2291; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_1312; +extern const bool __static_condition_default_1160; +extern const bool __static_condition_default_1939; +extern const bool __static_condition_default_1263; +extern const bool __static_condition_default_1986; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_1303; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_663; extern const bool __static_condition_default_395; -extern const bool __static_condition_default_778; -extern const bool __static_condition_default_1910; -extern const bool __static_condition_default_236; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_992; -extern const bool __static_condition_default_983; -extern const bool __static_condition_default_556; -extern const bool __static_condition_default_968; -extern const bool __static_condition_default_935; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_1824; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_2289; extern const bool __static_condition_default_817; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_586; -extern const bool __static_condition_default_729; -extern const bool __static_condition_default_1762; -extern const bool __static_condition_default_1806; +extern const bool __static_condition_default_907; +extern const bool __static_condition_default_1327; +extern const bool __static_condition_default_2146; +extern const bool __static_condition_default_1158; +extern const bool __static_condition_default_536; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_2117; +extern const bool __static_condition_default_2508; +extern const bool __static_condition_default_1330; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_2388; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_1162; +extern const bool __static_condition_default_2292; +extern const bool __static_condition_default_1827; +extern const bool __static_condition_default_1394; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_1258; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_2405; +extern const bool __static_condition_default_2238; +extern const bool __static_condition_default_1882; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_2215; +extern const bool __static_condition_default_613; +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_2123; +extern const bool __static_condition_default_2137; +extern const bool __static_condition_default_1815; +extern const bool __static_condition_default_1852; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_753; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_702; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_1980; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_2303; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_2126; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_1292; +extern const bool __static_condition_default_1384; +extern const bool __static_condition_default_875; +extern const bool __static_condition_default_1240; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_769; +extern const bool __static_condition_default_963; +extern const bool __static_condition_default_2259; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_955; +extern const bool __static_condition_default_1171; +extern const bool __static_condition_default_2281; +extern const bool __static_condition_default_1894; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_365; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_842; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_1289; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_2248; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_1979; +extern const bool __static_condition_default_2224; +extern const bool __static_condition_default_1238; +extern const bool __static_condition_default_761; +extern const bool __static_condition_default_1285; extern const bool __static_condition_default_538; -extern const bool __static_condition_default_328; -extern const bool __static_condition_default_610; -extern const bool __static_condition_default_882; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_688; +extern const bool __static_condition_default_2257; +extern const bool __static_condition_default_2406; +extern const bool __static_condition_default_2120; +extern const bool __static_condition_default_550; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_1282; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_311; +extern const bool __static_condition_default_2513; +extern const bool __static_condition_default_1291; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_929; +extern const bool __static_condition_default_2237; +extern const bool __static_condition_default_512; +extern const bool __static_condition_default_1259; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_1891; +extern const bool __static_condition_default_1927; +extern const bool __static_condition_default_1321; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_1255; +extern const bool __static_condition_default_1315; extern const bool __static_condition_default_661; -extern const bool __static_condition_default_1745; -extern const bool __static_condition_default_1751; -extern const bool __static_condition_default_977; +extern const bool __static_condition_default_1215; +extern const bool __static_condition_default_1237; +extern const bool __static_condition_default_1280; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_1262; +extern const bool __static_condition_default_677; +extern const bool __static_condition_default_779; +extern const bool __static_condition_default_1328; +extern const bool __static_condition_default_1151; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_1840; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_1168; +extern const bool __static_condition_default_2266; +extern const bool __static_condition_default_1368; +extern const bool __static_condition_default_1231; +extern const bool __static_condition_default_1232; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_2258; +extern const bool __static_condition_default_521; +extern const bool __static_condition_default_2204; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_1903; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_2155; +extern const bool __static_condition_default_1308; +extern const bool __static_condition_default_1250; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_1261; +extern const bool __static_condition_default_2339; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_721; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_2290; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_1311; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_1796; +extern const bool __static_condition_default_1930; +extern const bool __static_condition_default_2170; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_2512; +extern const bool __static_condition_default_1834; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_846; +extern const bool __static_condition_default_1221; +extern const bool __static_condition_default_2235; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_1155; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_2216; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_1921; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_1304; +extern const bool __static_condition_default_84; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_2008; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_559; +extern const bool __static_condition_default_1319; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_2245; +extern const bool __static_condition_default_2205; +extern const bool __static_condition_default_2311; +extern const bool __static_condition_default_791; +extern const bool __static_condition_default_2265; extern const bool __static_condition_default_475; -extern const bool __static_condition_default_1017; -extern const bool __static_condition_default_898; -extern const bool __static_condition_default_1773; -extern const bool __static_condition_default_528; -extern const bool __static_condition_default_74; -extern const bool __static_condition_default_706; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_446; -extern const bool __static_condition_default_804; -extern const bool __static_condition_default_672; -extern const bool __static_condition_default_453; -extern const bool __static_condition_default_1908; -extern const bool __static_condition_default_719; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_1060; -extern const bool __static_condition_default_766; -extern const bool __static_condition_default_833; -extern const bool __static_condition_default_917; -extern const bool __static_condition_default_1054; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_1728; -extern const bool __static_condition_default_435; -extern const bool __static_condition_default_749; -extern const bool __static_condition_default_575; -extern const bool __static_condition_default_162; -extern const bool __static_condition_default_474; -extern const bool __static_condition_default_605; -extern const bool __static_condition_default_626; -extern const bool __static_condition_default_394; -extern const bool __static_condition_default_694; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_834; +extern const bool __static_condition_default_2005; +extern const bool __static_condition_default_1412; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_2140; +extern const bool __static_condition_default_2194; +extern const bool __static_condition_default_891; +extern const bool __static_condition_default_2179; +extern const bool __static_condition_default_2192; +extern const bool __static_condition_default_568; +extern const bool __static_condition_default_1802; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_1999; +extern const bool __static_condition_default_386; +extern const bool __static_condition_default_2507; +extern const bool __static_condition_default_2260; +extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_1831; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_1307; +extern const bool __static_condition_default_1985; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_789; +extern const bool __static_condition_default_333; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_2218; +extern const bool __static_condition_default_1288; extern const bool __static_condition_default_708; -extern const bool __static_condition_default_431; -extern const bool __static_condition_default_449; -extern const bool __static_condition_default_338; -extern const bool __static_condition_default_351; -extern const bool __static_condition_default_695; -extern const bool __static_condition_default_714; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_612; -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_276; -extern const bool __static_condition_default_720; -extern const bool __static_condition_default_640; -extern const bool __static_condition_default_562; -extern const bool __static_condition_default_772; -extern const bool __static_condition_default_1591; -extern const bool __static_condition_default_1063; -extern const bool __static_condition_default_762; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_774; -extern const bool __static_condition_default_1069; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_624; -extern const bool __static_condition_default_984; -extern const bool __static_condition_default_1786; -extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_1604; -extern const bool __static_condition_default_855; -extern const bool __static_condition_default_480; -extern const bool __static_condition_default_743; -extern const bool __static_condition_default_931; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_733; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_356; -extern const bool __static_condition_default_230; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_454; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_655; -extern const bool __static_condition_default_1707; -extern const bool __static_condition_default_924; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_1799; +extern const bool __static_condition_default_1983; +extern const bool __static_condition_default_2236; +extern const bool __static_condition_default_187; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_2302; +extern const bool __static_condition_default_2411; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_1356; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_2007; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_2176; +extern const bool __static_condition_default_2202; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_597; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -299,709 +534,1137 @@ __static_renaming("____ssize_t_49", "__ssize_t"); __static_renaming("____syscall_slong_t_50", "__syscall_slong_t"); __static_renaming("____syscall_ulong_t_51", "__syscall_ulong_t"); __static_renaming("____loff_t_52", "__loff_t"); -__static_renaming("____qaddr_t_53", "__qaddr_t"); -__static_renaming("____caddr_t_54", "__caddr_t"); -__static_renaming("____intptr_t_55", "__intptr_t"); -__static_renaming("____socklen_t_56", "__socklen_t"); -__static_renaming("__FILE_58", "FILE"); -__static_renaming("____FILE_59", "__FILE"); -__static_renaming("____mbstate_t_68", "__mbstate_t"); -__static_renaming("___G_fpos_t_75", "_G_fpos_t"); -__static_renaming("___G_fpos64_t_81", "_G_fpos64_t"); -__static_renaming("____gnuc_va_list_82", "__gnuc_va_list"); -__static_renaming("___IO_lock_t_84", "_IO_lock_t"); -__static_renaming("___IO_FILE_163", "_IO_FILE"); -__static_renaming("___IO_FILE_164", "_IO_FILE"); -__static_renaming("___IO_2_1_stdin__167", "_IO_2_1_stdin_"); -__static_renaming("___IO_2_1_stdout__168", "_IO_2_1_stdout_"); -__static_renaming("___IO_2_1_stderr__169", "_IO_2_1_stderr_"); -__static_renaming("____io_read_fn_173", "__io_read_fn"); -__static_renaming("____io_write_fn_177", "__io_write_fn"); -__static_renaming("____io_seek_fn_181", "__io_seek_fn"); -__static_renaming("____io_close_fn_183", "__io_close_fn"); -__static_renaming("____underflow_184", "__underflow"); -__static_renaming("____underflow_185", "__underflow"); -__static_renaming("____uflow_186", "__uflow"); -__static_renaming("____uflow_187", "__uflow"); -__static_renaming("____overflow_188", "__overflow"); -__static_renaming("____overflow_189", "__overflow"); -__static_renaming("___IO_getc_193", "_IO_getc"); -__static_renaming("___IO_getc_194", "_IO_getc"); -__static_renaming("___IO_putc_199", "_IO_putc"); -__static_renaming("___IO_putc_200", "_IO_putc"); -__static_renaming("___IO_feof_204", "_IO_feof"); -__static_renaming("___IO_feof_205", "_IO_feof"); -__static_renaming("___IO_ferror_209", "_IO_ferror"); -__static_renaming("___IO_ferror_210", "_IO_ferror"); -__static_renaming("___IO_peekc_locked_214", "_IO_peekc_locked"); -__static_renaming("___IO_peekc_locked_215", "_IO_peekc_locked"); -__static_renaming("___IO_flockfile_216", "_IO_flockfile"); -__static_renaming("___IO_flockfile_217", "_IO_flockfile"); -__static_renaming("___IO_funlockfile_218", "_IO_funlockfile"); -__static_renaming("___IO_funlockfile_219", "_IO_funlockfile"); -__static_renaming("___IO_ftrylockfile_220", "_IO_ftrylockfile"); -__static_renaming("___IO_ftrylockfile_221", "_IO_ftrylockfile"); -__static_renaming("___IO_vfscanf_222", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_224", "_IO_vfscanf"); -__static_renaming("___IO_vfprintf_231", "_IO_vfprintf"); -__static_renaming("___IO_vfprintf_233", "_IO_vfprintf"); -__static_renaming("___IO_padn_238", "_IO_padn"); -__static_renaming("___IO_padn_239", "_IO_padn"); -__static_renaming("___IO_sgetn_240", "_IO_sgetn"); -__static_renaming("___IO_sgetn_241", "_IO_sgetn"); -__static_renaming("___IO_seekoff_242", "_IO_seekoff"); -__static_renaming("___IO_seekoff_243", "_IO_seekoff"); -__static_renaming("___IO_seekpos_244", "_IO_seekpos"); -__static_renaming("___IO_seekpos_245", "_IO_seekpos"); -__static_renaming("___IO_free_backup_area_246", "_IO_free_backup_area"); -__static_renaming("___IO_free_backup_area_247", "_IO_free_backup_area"); -__static_renaming("__va_list_248", "va_list"); -__static_renaming("__off_t_250", "off_t"); -__static_renaming("__off_t_251", "off_t"); -__static_renaming("__ssize_t_252", "ssize_t"); -__static_renaming("__fpos_t_253", "fpos_t"); -__static_renaming("__fpos_t_255", "fpos_t"); -__static_renaming("__stdin_257", "stdin"); -__static_renaming("__stdin_258", "stdin"); -__static_renaming("__stdout_259", "stdout"); -__static_renaming("__stdout_260", "stdout"); -__static_renaming("__stderr_261", "stderr"); -__static_renaming("__stderr_262", "stderr"); -__static_renaming("__remove_264", "remove"); -__static_renaming("__rename_267", "rename"); -__static_renaming("__renameat_272", "renameat"); -__static_renaming("__tmpfile_273", "tmpfile"); -__static_renaming("__tmpfile_275", "tmpfile"); -__static_renaming("__tmpfile_277", "tmpfile"); -__static_renaming("__tmpfile_279", "tmpfile"); -__static_renaming("__tmpnam_282", "tmpnam"); -__static_renaming("__tmpnam_283", "tmpnam"); -__static_renaming("__tmpnam_r_285", "tmpnam_r"); -__static_renaming("__tmpnam_r_286", "tmpnam_r"); -__static_renaming("__tempnam_289", "tempnam"); -__static_renaming("__tempnam_290", "tempnam"); -__static_renaming("__fclose_293", "fclose"); -__static_renaming("__fclose_295", "fclose"); -__static_renaming("__fflush_299", "fflush"); -__static_renaming("__fflush_unlocked_303", "fflush_unlocked"); -__static_renaming("__fopen_307", "fopen"); -__static_renaming("__fopen_309", "fopen"); -__static_renaming("__fopen_317", "fopen"); -__static_renaming("__fopen_319", "fopen"); -__static_renaming("__freopen_325", "freopen"); -__static_renaming("__freopen_327", "freopen"); -__static_renaming("__freopen_329", "freopen"); -__static_renaming("__freopen_331", "freopen"); -__static_renaming("__fdopen_335", "fdopen"); -__static_renaming("__fdopen_337", "fdopen"); -__static_renaming("__fmemopen_342", "fmemopen"); -__static_renaming("__fmemopen_344", "fmemopen"); -__static_renaming("__open_memstream_348", "open_memstream"); -__static_renaming("__open_memstream_350", "open_memstream"); -__static_renaming("__setbuf_355", "setbuf"); -__static_renaming("__setbuf_357", "setbuf"); -__static_renaming("__setvbuf_364", "setvbuf"); -__static_renaming("__setbuffer_369", "setbuffer"); -__static_renaming("__setlinebuf_373", "setlinebuf"); -__static_renaming("__fprintf_378", "fprintf"); -__static_renaming("__fprintf_380", "fprintf"); -__static_renaming("__printf_383", "printf"); -__static_renaming("__sprintf_386", "sprintf"); -__static_renaming("__vfprintf_392", "vfprintf"); -__static_renaming("__vprintf_399", "vprintf"); -__static_renaming("__vsprintf_405", "vsprintf"); -__static_renaming("__snprintf_409", "snprintf"); -__static_renaming("__vsnprintf_415", "vsnprintf"); -__static_renaming("__vdprintf_420", "vdprintf"); -__static_renaming("__dprintf_424", "dprintf"); -__static_renaming("__fscanf_428", "fscanf"); -__static_renaming("__fscanf_430", "fscanf"); -__static_renaming("__fscanf_432", "fscanf"); -__static_renaming("__fscanf_434", "fscanf"); -__static_renaming("__scanf_437", "scanf"); -__static_renaming("__scanf_438", "scanf"); -__static_renaming("__sscanf_441", "sscanf"); -__static_renaming("__vfscanf_468", "vfscanf"); -__static_renaming("__vfscanf_472", "vfscanf"); -__static_renaming("__vscanf_479", "vscanf"); -__static_renaming("__vscanf_481", "vscanf"); -__static_renaming("__vsscanf_487", "vsscanf"); -__static_renaming("__fgetc_520", "fgetc"); -__static_renaming("__getc_523", "getc"); -__static_renaming("__getchar_524", "getchar"); -__static_renaming("__getc_unlocked_527", "getc_unlocked"); -__static_renaming("__getchar_unlocked_529", "getchar_unlocked"); -__static_renaming("__fgetc_unlocked_532", "fgetc_unlocked"); -__static_renaming("__fputc_537", "fputc"); -__static_renaming("__fputc_539", "fputc"); -__static_renaming("__putc_544", "putc"); -__static_renaming("__putchar_546", "putchar"); -__static_renaming("__fputc_unlocked_550", "fputc_unlocked"); -__static_renaming("__putc_unlocked_555", "putc_unlocked"); -__static_renaming("__putchar_unlocked_558", "putchar_unlocked"); -__static_renaming("__getw_561", "getw"); -__static_renaming("__putw_566", "putw"); -__static_renaming("__fgets_572", "fgets"); -__static_renaming("__fgets_574", "fgets"); -__static_renaming("__fgets_576", "fgets"); -__static_renaming("__fgets_578", "fgets"); -__static_renaming("____getdelim_585", "__getdelim"); -__static_renaming("____getdelim_587", "__getdelim"); -__static_renaming("__getdelim_594", "getdelim"); -__static_renaming("__getdelim_596", "getdelim"); -__static_renaming("__getline_602", "getline"); -__static_renaming("__getline_604", "getline"); -__static_renaming("__fputs_609", "fputs"); -__static_renaming("__fputs_611", "fputs"); -__static_renaming("__puts_614", "puts"); -__static_renaming("__ungetc_618", "ungetc"); -__static_renaming("__fseek_654", "fseek"); -__static_renaming("__fseek_656", "fseek"); -__static_renaming("__ftell_660", "ftell"); -__static_renaming("__ftell_662", "ftell"); -__static_renaming("__rewind_666", "rewind"); -__static_renaming("__fseeko_671", "fseeko"); -__static_renaming("__fseeko_679", "fseeko"); -__static_renaming("__ftello_683", "ftello"); -__static_renaming("__ftello_685", "ftello"); -__static_renaming("__ftello_687", "ftello"); -__static_renaming("__fgetpos_693", "fgetpos"); -__static_renaming("__fgetpos_705", "fgetpos"); -__static_renaming("__fsetpos_713", "fsetpos"); -__static_renaming("__fsetpos_717", "fsetpos"); -__static_renaming("__clearerr_723", "clearerr"); -__static_renaming("__feof_726", "feof"); -__static_renaming("__feof_728", "feof"); -__static_renaming("__ferror_732", "ferror"); -__static_renaming("__ferror_734", "ferror"); -__static_renaming("__clearerr_unlocked_738", "clearerr_unlocked"); -__static_renaming("__feof_unlocked_742", "feof_unlocked"); -__static_renaming("__feof_unlocked_744", "feof_unlocked"); -__static_renaming("__ferror_unlocked_748", "ferror_unlocked"); -__static_renaming("__ferror_unlocked_750", "ferror_unlocked"); -__static_renaming("__perror_753", "perror"); -__static_renaming("__perror_754", "perror"); -__static_renaming("__sys_nerr_755", "sys_nerr"); -__static_renaming("__sys_errlist_756", "sys_errlist"); -__static_renaming("__fileno_759", "fileno"); -__static_renaming("__fileno_761", "fileno"); -__static_renaming("__fileno_unlocked_765", "fileno_unlocked"); -__static_renaming("__fileno_unlocked_767", "fileno_unlocked"); -__static_renaming("__popen_771", "popen"); -__static_renaming("__popen_773", "popen"); -__static_renaming("__pclose_777", "pclose"); -__static_renaming("__ctermid_780", "ctermid"); -__static_renaming("__flockfile_783", "flockfile"); -__static_renaming("__ftrylockfile_787", "ftrylockfile"); -__static_renaming("__ftrylockfile_789", "ftrylockfile"); -__static_renaming("__funlockfile_793", "funlockfile"); -__static_renaming("____sprintf_chk_825", "__sprintf_chk"); -__static_renaming("____vsprintf_chk_832", "__vsprintf_chk"); -__static_renaming("____snprintf_chk_846", "__snprintf_chk"); -__static_renaming("____vsnprintf_chk_854", "__vsnprintf_chk"); -__static_renaming("____fprintf_chk_869", "__fprintf_chk"); -__static_renaming("____printf_chk_873", "__printf_chk"); -__static_renaming("____vfprintf_chk_880", "__vfprintf_chk"); -__static_renaming("____vprintf_chk_888", "__vprintf_chk"); -__static_renaming("____dprintf_chk_910", "__dprintf_chk"); -__static_renaming("____vdprintf_chk_916", "__vdprintf_chk"); -__static_renaming("____fgets_chk_930", "__fgets_chk"); -__static_renaming("____fgets_chk_932", "__fgets_chk"); -__static_renaming("____fgets_chk_934", "__fgets_chk"); -__static_renaming("____fgets_alias_940", "__fgets_alias"); -__static_renaming("____fgets_chk_warn_947", "__fgets_chk_warn"); -__static_renaming("____cnt_1013", "__cnt"); -__static_renaming("____cptr_1014", "__cptr"); -__static_renaming("__ssize_t_1016", "ssize_t"); -__static_renaming("__gid_t_1019", "gid_t"); -__static_renaming("__uid_t_1020", "uid_t"); -__static_renaming("__useconds_t_1021", "useconds_t"); -__static_renaming("__pid_t_1022", "pid_t"); -__static_renaming("__pid_t_1023", "pid_t"); -__static_renaming("__intptr_t_1024", "intptr_t"); -__static_renaming("__socklen_t_1025", "socklen_t"); -__static_renaming("__access_1028", "access"); -__static_renaming("__access_1029", "access"); -__static_renaming("__faccessat_1034", "faccessat"); -__static_renaming("__faccessat_1035", "faccessat"); -__static_renaming("__lseek_1042", "lseek"); -__static_renaming("__lseek_1043", "lseek"); -__static_renaming("__close_1045", "close"); -__static_renaming("__read_1049", "read"); -__static_renaming("__read_1050", "read"); -__static_renaming("__read_1052", "read"); -__static_renaming("__read_1053", "read"); -__static_renaming("__write_1058", "write"); -__static_renaming("__write_1059", "write"); -__static_renaming("__write_1061", "write"); -__static_renaming("__write_1062", "write"); -__static_renaming("__pread_1068", "pread"); -__static_renaming("__pread_1070", "pread"); -__static_renaming("__pread_1080", "pread"); -__static_renaming("__pread_1082", "pread"); -__static_renaming("__pwrite_1088", "pwrite"); -__static_renaming("__pwrite_1090", "pwrite"); -__static_renaming("__pwrite_1092", "pwrite"); -__static_renaming("__pwrite_1094", "pwrite"); -__static_renaming("__pipe_1097", "pipe"); -__static_renaming("__pipe_1098", "pipe"); -__static_renaming("__pipe_1099", "pipe"); -__static_renaming("__pipe_1100", "pipe"); -__static_renaming("__alarm_1102", "alarm"); -__static_renaming("__sleep_1104", "sleep"); -__static_renaming("__ualarm_1107", "ualarm"); -__static_renaming("__usleep_1109", "usleep"); -__static_renaming("__pause_1110", "pause"); -__static_renaming("__pause_1111", "pause"); -__static_renaming("__chown_1115", "chown"); -__static_renaming("__chown_1116", "chown"); -__static_renaming("__fchown_1120", "fchown"); -__static_renaming("__fchown_1121", "fchown"); -__static_renaming("__lchown_1125", "lchown"); -__static_renaming("__lchown_1126", "lchown"); -__static_renaming("__fchownat_1132", "fchownat"); -__static_renaming("__fchownat_1133", "fchownat"); -__static_renaming("__chdir_1135", "chdir"); -__static_renaming("__chdir_1136", "chdir"); -__static_renaming("__chdir_1137", "chdir"); -__static_renaming("__chdir_1138", "chdir"); -__static_renaming("__fchdir_1140", "fchdir"); -__static_renaming("__fchdir_1141", "fchdir"); -__static_renaming("__getcwd_1144", "getcwd"); -__static_renaming("__getcwd_1145", "getcwd"); -__static_renaming("__getcwd_1146", "getcwd"); -__static_renaming("__getcwd_1147", "getcwd"); -__static_renaming("__getwd_1149", "getwd"); -__static_renaming("__getwd_1150", "getwd"); -__static_renaming("__dup_1152", "dup"); -__static_renaming("__dup_1153", "dup"); -__static_renaming("__dup_1154", "dup"); -__static_renaming("__dup_1155", "dup"); -__static_renaming("__dup2_1158", "dup2"); -__static_renaming("____environ_1159", "__environ"); -__static_renaming("__execve_1163", "execve"); -__static_renaming("__fexecve_1167", "fexecve"); -__static_renaming("__execv_1170", "execv"); -__static_renaming("__execv_1171", "execv"); -__static_renaming("__execle_1174", "execle"); -__static_renaming("__execl_1177", "execl"); -__static_renaming("__execvp_1180", "execvp"); -__static_renaming("__execlp_1183", "execlp"); -__static_renaming("__nice_1185", "nice"); -__static_renaming("__nice_1186", "nice"); -__static_renaming("___exit_1188", "_exit"); -__static_renaming("___exit_1189", "_exit"); -__static_renaming("__pathconf_1498", "pathconf"); -__static_renaming("__fpathconf_1501", "fpathconf"); -__static_renaming("__sysconf_1503", "sysconf"); -__static_renaming("__confstr_1507", "confstr"); -__static_renaming("__getpid_1508", "getpid"); -__static_renaming("__getpid_1509", "getpid"); -__static_renaming("__getppid_1510", "getppid"); -__static_renaming("__getpgrp_1511", "getpgrp"); -__static_renaming("____getpgid_1513", "__getpgid"); -__static_renaming("__getpgid_1515", "getpgid"); -__static_renaming("__setpgid_1518", "setpgid"); -__static_renaming("__setpgid_1519", "setpgid"); -__static_renaming("__setpgrp_1520", "setpgrp"); -__static_renaming("__setsid_1521", "setsid"); -__static_renaming("__setsid_1522", "setsid"); -__static_renaming("__getsid_1524", "getsid"); -__static_renaming("__getuid_1525", "getuid"); -__static_renaming("__getuid_1526", "getuid"); -__static_renaming("__geteuid_1527", "geteuid"); -__static_renaming("__getgid_1528", "getgid"); -__static_renaming("__getegid_1529", "getegid"); -__static_renaming("__getgroups_1532", "getgroups"); -__static_renaming("__getgroups_1533", "getgroups"); -__static_renaming("__setuid_1535", "setuid"); -__static_renaming("__setuid_1536", "setuid"); -__static_renaming("__setreuid_1539", "setreuid"); -__static_renaming("__setreuid_1540", "setreuid"); -__static_renaming("__seteuid_1542", "seteuid"); -__static_renaming("__seteuid_1543", "seteuid"); -__static_renaming("__setgid_1545", "setgid"); -__static_renaming("__setgid_1546", "setgid"); -__static_renaming("__setgid_1547", "setgid"); -__static_renaming("__setgid_1548", "setgid"); -__static_renaming("__setregid_1551", "setregid"); -__static_renaming("__setregid_1552", "setregid"); -__static_renaming("__setegid_1554", "setegid"); -__static_renaming("__setegid_1555", "setegid"); -__static_renaming("__fork_1556", "fork"); -__static_renaming("__fork_1557", "fork"); -__static_renaming("__vfork_1558", "vfork"); -__static_renaming("__ttyname_1560", "ttyname"); -__static_renaming("__ttyname_1561", "ttyname"); -__static_renaming("__ttyname_r_1565", "ttyname_r"); -__static_renaming("__ttyname_r_1566", "ttyname_r"); -__static_renaming("__isatty_1568", "isatty"); -__static_renaming("__ttyslot_1569", "ttyslot"); -__static_renaming("__link_1572", "link"); -__static_renaming("__link_1573", "link"); -__static_renaming("__link_1574", "link"); -__static_renaming("__link_1575", "link"); -__static_renaming("__linkat_1581", "linkat"); -__static_renaming("__linkat_1582", "linkat"); -__static_renaming("__symlink_1585", "symlink"); -__static_renaming("__symlink_1586", "symlink"); -__static_renaming("__readlink_1590", "readlink"); -__static_renaming("__readlink_1592", "readlink"); -__static_renaming("__symlinkat_1597", "symlinkat"); -__static_renaming("__symlinkat_1598", "symlinkat"); -__static_renaming("__readlinkat_1603", "readlinkat"); -__static_renaming("__readlinkat_1605", "readlinkat"); -__static_renaming("__unlink_1608", "unlink"); -__static_renaming("__unlink_1609", "unlink"); -__static_renaming("__unlinkat_1613", "unlinkat"); -__static_renaming("__rmdir_1615", "rmdir"); -__static_renaming("__rmdir_1616", "rmdir"); -__static_renaming("__tcgetpgrp_1618", "tcgetpgrp"); -__static_renaming("__tcsetpgrp_1621", "tcsetpgrp"); -__static_renaming("__getlogin_1622", "getlogin"); -__static_renaming("__getlogin_r_1625", "getlogin_r"); -__static_renaming("__setlogin_1627", "setlogin"); -__static_renaming("__optarg_1628", "optarg"); -__static_renaming("__optind_1629", "optind"); -__static_renaming("__opterr_1630", "opterr"); -__static_renaming("__optopt_1631", "optopt"); -__static_renaming("__getopt_1635", "getopt"); -__static_renaming("__gethostname_1638", "gethostname"); -__static_renaming("__sethostname_1641", "sethostname"); -__static_renaming("__sethostname_1642", "sethostname"); -__static_renaming("__sethostid_1644", "sethostid"); -__static_renaming("__sethostid_1645", "sethostid"); -__static_renaming("__getdomainname_1648", "getdomainname"); -__static_renaming("__getdomainname_1649", "getdomainname"); -__static_renaming("__setdomainname_1652", "setdomainname"); -__static_renaming("__setdomainname_1653", "setdomainname"); -__static_renaming("__vhangup_1654", "vhangup"); -__static_renaming("__revoke_1656", "revoke"); -__static_renaming("__revoke_1657", "revoke"); -__static_renaming("__profil_1662", "profil"); -__static_renaming("__acct_1664", "acct"); -__static_renaming("__getusershell_1665", "getusershell"); -__static_renaming("__endusershell_1666", "endusershell"); -__static_renaming("__setusershell_1667", "setusershell"); -__static_renaming("__daemon_1670", "daemon"); -__static_renaming("__daemon_1671", "daemon"); -__static_renaming("__chroot_1673", "chroot"); -__static_renaming("__chroot_1674", "chroot"); -__static_renaming("__getpass_1676", "getpass"); -__static_renaming("__fsync_1678", "fsync"); -__static_renaming("__fsync_1679", "fsync"); -__static_renaming("__fsync_1680", "fsync"); -__static_renaming("__gethostid_1681", "gethostid"); -__static_renaming("__sync_1682", "sync"); -__static_renaming("__getpagesize_1683", "getpagesize"); -__static_renaming("__getdtablesize_1684", "getdtablesize"); -__static_renaming("__truncate_1689", "truncate"); -__static_renaming("__truncate_1690", "truncate"); -__static_renaming("__truncate_1691", "truncate"); -__static_renaming("__truncate_1692", "truncate"); -__static_renaming("__ftruncate_1697", "ftruncate"); -__static_renaming("__ftruncate_1698", "ftruncate"); -__static_renaming("__ftruncate_1699", "ftruncate"); -__static_renaming("__ftruncate_1700", "ftruncate"); -__static_renaming("__brk_1702", "brk"); -__static_renaming("__brk_1703", "brk"); -__static_renaming("__sbrk_1706", "sbrk"); -__static_renaming("__syscall_1709", "syscall"); -__static_renaming("__lockf_1716", "lockf"); -__static_renaming("__lockf_1717", "lockf"); -__static_renaming("__lockf_1718", "lockf"); -__static_renaming("__lockf_1719", "lockf"); -__static_renaming("__fdatasync_1721", "fdatasync"); -__static_renaming("____read_chk_1726", "__read_chk"); -__static_renaming("____read_chk_1727", "__read_chk"); -__static_renaming("____read_alias_1732", "__read_alias"); -__static_renaming("____read_alias_1733", "__read_alias"); -__static_renaming("____read_chk_warn_1739", "__read_chk_warn"); -__static_renaming("____read_chk_warn_1740", "__read_chk_warn"); -__static_renaming("____readlink_chk_1750", "__readlink_chk"); -__static_renaming("____readlink_alias_1755", "__readlink_alias"); -__static_renaming("____readlink_chk_warn_1761", "__readlink_chk_warn"); -__static_renaming("____readlinkat_chk_1772", "__readlinkat_chk"); -__static_renaming("____readlinkat_alias_1778", "__readlinkat_alias"); -__static_renaming("____readlinkat_chk_warn_1785", "__readlinkat_chk_warn"); -__static_renaming("____getcwd_chk_1795", "__getcwd_chk"); -__static_renaming("____getcwd_chk_1796", "__getcwd_chk"); -__static_renaming("____getcwd_alias_1799", "__getcwd_alias"); -__static_renaming("____getcwd_chk_warn_1803", "__getcwd_chk_warn"); -__static_renaming("____getwd_chk_1809", "__getwd_chk"); -__static_renaming("____getwd_warn_1811", "__getwd_warn"); -__static_renaming("____confstr_chk_1818", "__confstr_chk"); -__static_renaming("____confstr_chk_1819", "__confstr_chk"); -__static_renaming("____confstr_alias_1823", "__confstr_alias"); -__static_renaming("____confstr_chk_warn_1828", "__confstr_chk_warn"); -__static_renaming("____getgroups_chk_1836", "__getgroups_chk"); -__static_renaming("____getgroups_alias_1839", "__getgroups_alias"); -__static_renaming("____getgroups_chk_warn_1843", "__getgroups_chk_warn"); -__static_renaming("____ttyname_r_chk_1850", "__ttyname_r_chk"); -__static_renaming("____ttyname_r_alias_1854", "__ttyname_r_alias"); -__static_renaming("____ttyname_r_chk_warn_1859", "__ttyname_r_chk_warn"); -__static_renaming("____getlogin_r_chk_1866", "__getlogin_r_chk"); -__static_renaming("____getlogin_r_alias_1869", "__getlogin_r_alias"); -__static_renaming("____getlogin_r_chk_warn_1873", "__getlogin_r_chk_warn"); -__static_renaming("____gethostname_chk_1879", "__gethostname_chk"); -__static_renaming("____gethostname_alias_1882", "__gethostname_alias"); -__static_renaming("____gethostname_chk_warn_1886", "__gethostname_chk_warn"); -__static_renaming("____getdomainname_chk_1892", "__getdomainname_chk"); -__static_renaming("____getdomainname_alias_1895", "__getdomainname_alias"); -__static_renaming("____getdomainname_chk_warn_1899", "__getdomainname_chk_warn"); -__static_renaming("__m_1903", "m"); -__static_renaming("__shutdown_signal_1904", "shutdown_signal"); -__static_renaming("__shutdown_signal_1905", "shutdown_signal"); -__static_renaming("__shutdown_signal_1906", "shutdown_signal"); -__static_renaming("__shutdown_signal_1907", "shutdown_signal"); -__static_renaming("__open_new_terminal_1912", "open_new_terminal"); -__static_renaming("__run_1916", "run"); -__static_renaming("__run_actions_1917", "run_actions"); -__static_renaming("__main_1920", "main"); - -__static_condition_renaming("__static_condition_default_74", "(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_118", "(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_161", "(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_162", "(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_165", "(defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_223", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_225", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_226", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_227", "(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_230", "(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_232", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_234", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_235", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_236", "(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_249", "!(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); -__static_condition_renaming("__static_condition_default_254", "!(defined _FILE_OFFSET_BITS) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_256", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_274", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_276", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_278", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_280", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_294", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_296", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_300", "(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_304", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_308", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_310", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_318", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_320", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_326", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_328", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_330", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_332", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_336", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_338", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_343", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_345", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_349", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_351", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_356", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_358", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_370", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_374", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_379", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_381", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_393", "!(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_394", "(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_395", "(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_400", "!(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_421", "!(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_429", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_431", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_433", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_435", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_446", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_448", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_449", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_451", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_453", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_454", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_457", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_459", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_469", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_470", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_471", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_473", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_474", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_475", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_480", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_482", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_494", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_495", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_496", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_497", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_499", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_500", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_501", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_502", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_507", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_508", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_510", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_511", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_517", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_528", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_533", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_538", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_540", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_551", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_556", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_562", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_567", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_573", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_575", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_577", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_579", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_586", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_588", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_595", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_597", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_603", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_605", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_610", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_612", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_624", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_625", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_626", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_627", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_633", "!(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_639", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_640", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_641", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_642", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_648", "!(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_649", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_655", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_657", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_661", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_663", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_672", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_680", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_684", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_686", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_688", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_694", "!(defined _FILE_OFFSET_BITS) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_695", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_696", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_706", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_707", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_708", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_714", "!(defined _FILE_OFFSET_BITS) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_715", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_716", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_718", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_719", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_720", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_727", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_729", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_733", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_735", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_739", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_743", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_745", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_749", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_751", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_760", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_762", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_766", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_768", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_772", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_774", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_778", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_784", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_788", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_790", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_794", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_798", "!(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_801", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_804", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_809", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_813", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_817", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_820", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_833", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_840", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_855", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_864", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_870", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_881", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_882", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_883", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_889", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_893", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_898", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_904", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_905", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_906", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_917", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_924", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_931", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_933", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_935", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_941", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_948", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_953", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_954", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_961", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_962", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_968", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_969", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_976", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_977", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_983", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_984", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_991", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_992", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_998", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_999", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1006", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1007", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1015", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_1017", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1018", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1051", "!(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1054", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1060", "!(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1063", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1069", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1071", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1081", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1083", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1089", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1091", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1093", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1095", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1591", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1593", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1604", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1606", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1707", "!(defined __STRICT_ANSI__) && (defined __intptr_t_defined)"); -__static_condition_renaming("__static_condition_default_1728", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1734", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1741", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1745", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1751", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1756", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1762", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1766", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1773", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1779", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1786", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1791", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_1806", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1813", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1908", "(defined __STRICT_ANSI__) && !(defined _REENTRANT) && (defined _THREAD_SAFE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) || (defined __STRICT_ANSI__) && (defined _REENTRANT) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1909", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1910", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1911", "(defined __STRICT_ANSI__) && !(defined _REENTRANT) && !(defined _THREAD_SAFE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1913", "(defined __STRICT_ANSI__) && !(defined _REENTRANT) && (defined _THREAD_SAFE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) || (defined __STRICT_ANSI__) && (defined _REENTRANT) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1914", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1915", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1921", "(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); - -if (__static_condition_default_1921) { +__static_renaming("____qaddr_t_54", "__qaddr_t"); +__static_renaming("____caddr_t_55", "__caddr_t"); +__static_renaming("____intptr_t_56", "__intptr_t"); +__static_renaming("____socklen_t_57", "__socklen_t"); +__static_renaming("__FILE_59", "FILE"); +__static_renaming("____FILE_60", "__FILE"); +__static_renaming("____mbstate_t_69", "__mbstate_t"); +__static_renaming("___G_fpos_t_77", "_G_fpos_t"); +__static_renaming("___G_fpos64_t_85", "_G_fpos64_t"); +__static_renaming("____gnuc_va_list_86", "__gnuc_va_list"); +__static_renaming("___IO_lock_t_88", "_IO_lock_t"); +__static_renaming("___IO_FILE_171", "_IO_FILE"); +__static_renaming("___IO_FILE_172", "_IO_FILE"); +__static_renaming("___IO_2_1_stdin__175", "_IO_2_1_stdin_"); +__static_renaming("___IO_2_1_stdout__176", "_IO_2_1_stdout_"); +__static_renaming("___IO_2_1_stderr__177", "_IO_2_1_stderr_"); +__static_renaming("____io_read_fn_181", "__io_read_fn"); +__static_renaming("____io_write_fn_186", "__io_write_fn"); +__static_renaming("____io_seek_fn_192", "__io_seek_fn"); +__static_renaming("____io_close_fn_195", "__io_close_fn"); +__static_renaming("____underflow_196", "__underflow"); +__static_renaming("____underflow_197", "__underflow"); +__static_renaming("____uflow_199", "__uflow"); +__static_renaming("____uflow_200", "__uflow"); +__static_renaming("____overflow_202", "__overflow"); +__static_renaming("____overflow_203", "__overflow"); +__static_renaming("___IO_getc_208", "_IO_getc"); +__static_renaming("___IO_getc_209", "_IO_getc"); +__static_renaming("___IO_putc_215", "_IO_putc"); +__static_renaming("___IO_putc_216", "_IO_putc"); +__static_renaming("___IO_feof_221", "_IO_feof"); +__static_renaming("___IO_feof_222", "_IO_feof"); +__static_renaming("___IO_ferror_227", "_IO_ferror"); +__static_renaming("___IO_ferror_228", "_IO_ferror"); +__static_renaming("___IO_peekc_locked_233", "_IO_peekc_locked"); +__static_renaming("___IO_peekc_locked_234", "_IO_peekc_locked"); +__static_renaming("___IO_flockfile_236", "_IO_flockfile"); +__static_renaming("___IO_flockfile_237", "_IO_flockfile"); +__static_renaming("___IO_funlockfile_239", "_IO_funlockfile"); +__static_renaming("___IO_funlockfile_240", "_IO_funlockfile"); +__static_renaming("___IO_ftrylockfile_242", "_IO_ftrylockfile"); +__static_renaming("___IO_ftrylockfile_243", "_IO_ftrylockfile"); +__static_renaming("___IO_vfscanf_245", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_247", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_251", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_252", "_IO_vfscanf"); +__static_renaming("___IO_vfprintf_254", "_IO_vfprintf"); +__static_renaming("___IO_vfprintf_256", "_IO_vfprintf"); +__static_renaming("___IO_vfprintf_260", "_IO_vfprintf"); +__static_renaming("___IO_padn_261", "_IO_padn"); +__static_renaming("___IO_padn_262", "_IO_padn"); +__static_renaming("___IO_sgetn_265", "_IO_sgetn"); +__static_renaming("___IO_sgetn_266", "_IO_sgetn"); +__static_renaming("___IO_seekoff_268", "_IO_seekoff"); +__static_renaming("___IO_seekoff_269", "_IO_seekoff"); +__static_renaming("___IO_seekpos_272", "_IO_seekpos"); +__static_renaming("___IO_seekpos_273", "_IO_seekpos"); +__static_renaming("___IO_free_backup_area_276", "_IO_free_backup_area"); +__static_renaming("___IO_free_backup_area_277", "_IO_free_backup_area"); +__static_renaming("__va_list_279", "va_list"); +__static_renaming("__off_t_281", "off_t"); +__static_renaming("__off_t_283", "off_t"); +__static_renaming("__ssize_t_285", "ssize_t"); +__static_renaming("__fpos_t_287", "fpos_t"); +__static_renaming("__fpos_t_289", "fpos_t"); +__static_renaming("__stdin_291", "stdin"); +__static_renaming("__stdin_292", "stdin"); +__static_renaming("__stdout_294", "stdout"); +__static_renaming("__stdout_295", "stdout"); +__static_renaming("__stderr_297", "stderr"); +__static_renaming("__stderr_298", "stderr"); +__static_renaming("__remove_301", "remove"); +__static_renaming("__rename_304", "rename"); +__static_renaming("__renameat_309", "renameat"); +__static_renaming("__tmpfile_310", "tmpfile"); +__static_renaming("__tmpfile_312", "tmpfile"); +__static_renaming("__tmpfile_314", "tmpfile"); +__static_renaming("__tmpfile_316", "tmpfile"); +__static_renaming("__tmpnam_319", "tmpnam"); +__static_renaming("__tmpnam_320", "tmpnam"); +__static_renaming("__tmpnam_r_322", "tmpnam_r"); +__static_renaming("__tmpnam_r_323", "tmpnam_r"); +__static_renaming("__tempnam_326", "tempnam"); +__static_renaming("__tempnam_327", "tempnam"); +__static_renaming("__fclose_330", "fclose"); +__static_renaming("__fclose_332", "fclose"); +__static_renaming("__fflush_336", "fflush"); +__static_renaming("__fflush_unlocked_340", "fflush_unlocked"); +__static_renaming("__fopen_344", "fopen"); +__static_renaming("__fopen_346", "fopen"); +__static_renaming("__fopen_354", "fopen"); +__static_renaming("__fopen_356", "fopen"); +__static_renaming("__freopen_362", "freopen"); +__static_renaming("__freopen_364", "freopen"); +__static_renaming("__freopen_366", "freopen"); +__static_renaming("__freopen_368", "freopen"); +__static_renaming("__fdopen_372", "fdopen"); +__static_renaming("__fdopen_374", "fdopen"); +__static_renaming("__fmemopen_379", "fmemopen"); +__static_renaming("__fmemopen_381", "fmemopen"); +__static_renaming("__open_memstream_385", "open_memstream"); +__static_renaming("__open_memstream_387", "open_memstream"); +__static_renaming("__setbuf_392", "setbuf"); +__static_renaming("__setbuf_394", "setbuf"); +__static_renaming("__setvbuf_401", "setvbuf"); +__static_renaming("__setbuffer_407", "setbuffer"); +__static_renaming("__setlinebuf_411", "setlinebuf"); +__static_renaming("__fprintf_416", "fprintf"); +__static_renaming("__fprintf_418", "fprintf"); +__static_renaming("__printf_421", "printf"); +__static_renaming("__sprintf_424", "sprintf"); +__static_renaming("__vfprintf_430", "vfprintf"); +__static_renaming("__vprintf_437", "vprintf"); +__static_renaming("__vsprintf_443", "vsprintf"); +__static_renaming("__snprintf_448", "snprintf"); +__static_renaming("__vsnprintf_454", "vsnprintf"); +__static_renaming("__vdprintf_460", "vdprintf"); +__static_renaming("__dprintf_464", "dprintf"); +__static_renaming("__fscanf_468", "fscanf"); +__static_renaming("__fscanf_470", "fscanf"); +__static_renaming("__fscanf_472", "fscanf"); +__static_renaming("__fscanf_474", "fscanf"); +__static_renaming("__scanf_477", "scanf"); +__static_renaming("__scanf_478", "scanf"); +__static_renaming("__sscanf_481", "sscanf"); +__static_renaming("__vfscanf_509", "vfscanf"); +__static_renaming("__vfscanf_513", "vfscanf"); +__static_renaming("__vscanf_520", "vscanf"); +__static_renaming("__vscanf_522", "vscanf"); +__static_renaming("__vsscanf_528", "vsscanf"); +__static_renaming("__fgetc_563", "fgetc"); +__static_renaming("__getc_567", "getc"); +__static_renaming("__getchar_569", "getchar"); +__static_renaming("__getc_unlocked_572", "getc_unlocked"); +__static_renaming("__getchar_unlocked_574", "getchar_unlocked"); +__static_renaming("__fgetc_unlocked_577", "fgetc_unlocked"); +__static_renaming("__fputc_582", "fputc"); +__static_renaming("__fputc_584", "fputc"); +__static_renaming("__putc_589", "putc"); +__static_renaming("__putchar_592", "putchar"); +__static_renaming("__fputc_unlocked_596", "fputc_unlocked"); +__static_renaming("__putc_unlocked_601", "putc_unlocked"); +__static_renaming("__putchar_unlocked_604", "putchar_unlocked"); +__static_renaming("__getw_607", "getw"); +__static_renaming("__putw_612", "putw"); +__static_renaming("__fgets_618", "fgets"); +__static_renaming("__fgets_620", "fgets"); +__static_renaming("__fgets_622", "fgets"); +__static_renaming("__fgets_624", "fgets"); +__static_renaming("____getdelim_631", "__getdelim"); +__static_renaming("____getdelim_635", "__getdelim"); +__static_renaming("__getdelim_644", "getdelim"); +__static_renaming("__getdelim_648", "getdelim"); +__static_renaming("__getline_656", "getline"); +__static_renaming("__getline_660", "getline"); +__static_renaming("__fputs_667", "fputs"); +__static_renaming("__fputs_669", "fputs"); +__static_renaming("__puts_672", "puts"); +__static_renaming("__ungetc_676", "ungetc"); +__static_renaming("__fseek_714", "fseek"); +__static_renaming("__fseek_716", "fseek"); +__static_renaming("__ftell_720", "ftell"); +__static_renaming("__ftell_722", "ftell"); +__static_renaming("__rewind_726", "rewind"); +__static_renaming("__fseeko_733", "fseeko"); +__static_renaming("__fseeko_744", "fseeko"); +__static_renaming("__ftello_750", "ftello"); +__static_renaming("__ftello_754", "ftello"); +__static_renaming("__ftello_758", "ftello"); +__static_renaming("__fgetpos_766", "fgetpos"); +__static_renaming("__fgetpos_778", "fgetpos"); +__static_renaming("__fsetpos_786", "fsetpos"); +__static_renaming("__fsetpos_790", "fsetpos"); +__static_renaming("__clearerr_796", "clearerr"); +__static_renaming("__feof_800", "feof"); +__static_renaming("__feof_802", "feof"); +__static_renaming("__ferror_806", "ferror"); +__static_renaming("__ferror_808", "ferror"); +__static_renaming("__clearerr_unlocked_812", "clearerr_unlocked"); +__static_renaming("__feof_unlocked_816", "feof_unlocked"); +__static_renaming("__feof_unlocked_818", "feof_unlocked"); +__static_renaming("__ferror_unlocked_822", "ferror_unlocked"); +__static_renaming("__ferror_unlocked_824", "ferror_unlocked"); +__static_renaming("__perror_827", "perror"); +__static_renaming("__perror_828", "perror"); +__static_renaming("__sys_nerr_829", "sys_nerr"); +__static_renaming("__sys_errlist_830", "sys_errlist"); +__static_renaming("__fileno_833", "fileno"); +__static_renaming("__fileno_835", "fileno"); +__static_renaming("__fileno_unlocked_839", "fileno_unlocked"); +__static_renaming("__fileno_unlocked_841", "fileno_unlocked"); +__static_renaming("__popen_845", "popen"); +__static_renaming("__popen_847", "popen"); +__static_renaming("__pclose_851", "pclose"); +__static_renaming("__ctermid_854", "ctermid"); +__static_renaming("__flockfile_857", "flockfile"); +__static_renaming("__ftrylockfile_861", "ftrylockfile"); +__static_renaming("__ftrylockfile_863", "ftrylockfile"); +__static_renaming("__funlockfile_867", "funlockfile"); +__static_renaming("____sprintf_chk_899", "__sprintf_chk"); +__static_renaming("____vsprintf_chk_906", "__vsprintf_chk"); +__static_renaming("____snprintf_chk_920", "__snprintf_chk"); +__static_renaming("____vsnprintf_chk_928", "__vsnprintf_chk"); +__static_renaming("____fprintf_chk_943", "__fprintf_chk"); +__static_renaming("____printf_chk_947", "__printf_chk"); +__static_renaming("____vfprintf_chk_954", "__vfprintf_chk"); +__static_renaming("____vprintf_chk_962", "__vprintf_chk"); +__static_renaming("____dprintf_chk_984", "__dprintf_chk"); +__static_renaming("____vdprintf_chk_990", "__vdprintf_chk"); +__static_renaming("____fgets_chk_1004", "__fgets_chk"); +__static_renaming("____fgets_chk_1006", "__fgets_chk"); +__static_renaming("____fgets_chk_1008", "__fgets_chk"); +__static_renaming("____fgets_alias_1014", "__fgets_alias"); +__static_renaming("____fgets_chk_warn_1021", "__fgets_chk_warn"); +__static_renaming("____cnt_1087", "__cnt"); +__static_renaming("____cptr_1088", "__cptr"); +__static_renaming("____u_char_1090", "__u_char"); +__static_renaming("____u_short_1091", "__u_short"); +__static_renaming("____u_int_1092", "__u_int"); +__static_renaming("____u_long_1093", "__u_long"); +__static_renaming("____int8_t_1094", "__int8_t"); +__static_renaming("____uint8_t_1095", "__uint8_t"); +__static_renaming("____int16_t_1096", "__int16_t"); +__static_renaming("____uint16_t_1097", "__uint16_t"); +__static_renaming("____int32_t_1098", "__int32_t"); +__static_renaming("____uint32_t_1099", "__uint32_t"); +__static_renaming("____int64_t_1100", "__int64_t"); +__static_renaming("____uint64_t_1101", "__uint64_t"); +__static_renaming("____quad_t_1102", "__quad_t"); +__static_renaming("____u_quad_t_1103", "__u_quad_t"); +__static_renaming("____dev_t_1104", "__dev_t"); +__static_renaming("____uid_t_1105", "__uid_t"); +__static_renaming("____gid_t_1106", "__gid_t"); +__static_renaming("____ino_t_1107", "__ino_t"); +__static_renaming("____ino64_t_1108", "__ino64_t"); +__static_renaming("____mode_t_1109", "__mode_t"); +__static_renaming("____nlink_t_1110", "__nlink_t"); +__static_renaming("____off_t_1111", "__off_t"); +__static_renaming("____off64_t_1112", "__off64_t"); +__static_renaming("____pid_t_1113", "__pid_t"); +__static_renaming("____fsid_t_1117", "__fsid_t"); +__static_renaming("____clock_t_1118", "__clock_t"); +__static_renaming("____rlim_t_1119", "__rlim_t"); +__static_renaming("____rlim64_t_1120", "__rlim64_t"); +__static_renaming("____id_t_1121", "__id_t"); +__static_renaming("____time_t_1122", "__time_t"); +__static_renaming("____useconds_t_1123", "__useconds_t"); +__static_renaming("____suseconds_t_1124", "__suseconds_t"); +__static_renaming("____daddr_t_1125", "__daddr_t"); +__static_renaming("____key_t_1126", "__key_t"); +__static_renaming("____clockid_t_1127", "__clockid_t"); +__static_renaming("____timer_t_1128", "__timer_t"); +__static_renaming("____blksize_t_1129", "__blksize_t"); +__static_renaming("____blkcnt_t_1130", "__blkcnt_t"); +__static_renaming("____blkcnt64_t_1131", "__blkcnt64_t"); +__static_renaming("____fsblkcnt_t_1132", "__fsblkcnt_t"); +__static_renaming("____fsblkcnt64_t_1133", "__fsblkcnt64_t"); +__static_renaming("____fsfilcnt_t_1134", "__fsfilcnt_t"); +__static_renaming("____fsfilcnt64_t_1135", "__fsfilcnt64_t"); +__static_renaming("____fsword_t_1136", "__fsword_t"); +__static_renaming("____ssize_t_1137", "__ssize_t"); +__static_renaming("____syscall_slong_t_1138", "__syscall_slong_t"); +__static_renaming("____syscall_ulong_t_1139", "__syscall_ulong_t"); +__static_renaming("____loff_t_1140", "__loff_t"); +__static_renaming("____qaddr_t_1142", "__qaddr_t"); +__static_renaming("____caddr_t_1143", "__caddr_t"); +__static_renaming("____intptr_t_1144", "__intptr_t"); +__static_renaming("____socklen_t_1145", "__socklen_t"); +__static_renaming("__ssize_t_1146", "ssize_t"); +__static_renaming("__ssize_t_1147", "ssize_t"); +__static_renaming("__ptrdiff_t_1149", "ptrdiff_t"); +__static_renaming("__size_t_1150", "size_t"); +__static_renaming("__gid_t_1153", "gid_t"); +__static_renaming("__gid_t_1154", "gid_t"); +__static_renaming("__uid_t_1156", "uid_t"); +__static_renaming("__uid_t_1157", "uid_t"); +__static_renaming("__off_t_1159", "off_t"); +__static_renaming("__off_t_1161", "off_t"); +__static_renaming("__useconds_t_1163", "useconds_t"); +__static_renaming("__useconds_t_1164", "useconds_t"); +__static_renaming("__pid_t_1166", "pid_t"); +__static_renaming("__pid_t_1167", "pid_t"); +__static_renaming("__pid_t_1169", "pid_t"); +__static_renaming("__pid_t_1170", "pid_t"); +__static_renaming("__intptr_t_1172", "intptr_t"); +__static_renaming("__intptr_t_1173", "intptr_t"); +__static_renaming("__socklen_t_1174", "socklen_t"); +__static_renaming("__socklen_t_1175", "socklen_t"); +__static_renaming("__access_1178", "access"); +__static_renaming("__access_1179", "access"); +__static_renaming("__access_1180", "access"); +__static_renaming("__faccessat_1185", "faccessat"); +__static_renaming("__faccessat_1186", "faccessat"); +__static_renaming("__lseek_1197", "lseek"); +__static_renaming("__lseek_1198", "lseek"); +__static_renaming("__lseek_1200", "lseek"); +__static_renaming("__lseek_1201", "lseek"); +__static_renaming("__close_1204", "close"); +__static_renaming("__read_1209", "read"); +__static_renaming("__read_1210", "read"); +__static_renaming("__read_1211", "read"); +__static_renaming("__read_1216", "read"); +__static_renaming("__read_1217", "read"); +__static_renaming("__read_1218", "read"); +__static_renaming("__write_1227", "write"); +__static_renaming("__write_1228", "write"); +__static_renaming("__write_1229", "write"); +__static_renaming("__write_1234", "write"); +__static_renaming("__write_1235", "write"); +__static_renaming("__write_1236", "write"); +__static_renaming("__pread_1248", "pread"); +__static_renaming("__pread_1249", "pread"); +__static_renaming("__pread_1256", "pread"); +__static_renaming("__pread_1257", "pread"); +__static_renaming("__pread_1278", "pread"); +__static_renaming("__pread_1279", "pread"); +__static_renaming("__pread_1286", "pread"); +__static_renaming("__pread_1287", "pread"); +__static_renaming("__pwrite_1301", "pwrite"); +__static_renaming("__pwrite_1302", "pwrite"); +__static_renaming("__pwrite_1309", "pwrite"); +__static_renaming("__pwrite_1310", "pwrite"); +__static_renaming("__pwrite_1317", "pwrite"); +__static_renaming("__pwrite_1318", "pwrite"); +__static_renaming("__pwrite_1325", "pwrite"); +__static_renaming("__pwrite_1326", "pwrite"); +__static_renaming("__pipe_1334", "pipe"); +__static_renaming("__pipe_1335", "pipe"); +__static_renaming("__pipe_1336", "pipe"); +__static_renaming("__pipe_1337", "pipe"); +__static_renaming("__alarm_1339", "alarm"); +__static_renaming("__sleep_1341", "sleep"); +__static_renaming("__ualarm_1348", "ualarm"); +__static_renaming("__ualarm_1349", "ualarm"); +__static_renaming("__usleep_1354", "usleep"); +__static_renaming("__usleep_1355", "usleep"); +__static_renaming("__pause_1357", "pause"); +__static_renaming("__pause_1358", "pause"); +__static_renaming("__chown_1366", "chown"); +__static_renaming("__chown_1367", "chown"); +__static_renaming("__chown_1369", "chown"); +__static_renaming("__chown_1370", "chown"); +__static_renaming("__fchown_1379", "fchown"); +__static_renaming("__fchown_1380", "fchown"); +__static_renaming("__fchown_1382", "fchown"); +__static_renaming("__fchown_1383", "fchown"); +__static_renaming("__lchown_1392", "lchown"); +__static_renaming("__lchown_1393", "lchown"); +__static_renaming("__lchown_1395", "lchown"); +__static_renaming("__lchown_1396", "lchown"); +__static_renaming("__fchownat_1407", "fchownat"); +__static_renaming("__fchownat_1408", "fchownat"); +__static_renaming("__fchownat_1410", "fchownat"); +__static_renaming("__fchownat_1411", "fchownat"); +__static_renaming("__chdir_1414", "chdir"); +__static_renaming("__chdir_1415", "chdir"); +__static_renaming("__chdir_1416", "chdir"); +__static_renaming("__chdir_1417", "chdir"); +__static_renaming("__fchdir_1419", "fchdir"); +__static_renaming("__fchdir_1420", "fchdir"); +__static_renaming("__getcwd_1424", "getcwd"); +__static_renaming("__getcwd_1425", "getcwd"); +__static_renaming("__getcwd_1426", "getcwd"); +__static_renaming("__getcwd_1427", "getcwd"); +__static_renaming("__getcwd_1428", "getcwd"); +__static_renaming("__getcwd_1429", "getcwd"); +__static_renaming("__getcwd_1430", "getcwd"); +__static_renaming("__getcwd_1431", "getcwd"); +__static_renaming("__getwd_1433", "getwd"); +__static_renaming("__getwd_1434", "getwd"); +__static_renaming("__dup_1436", "dup"); +__static_renaming("__dup_1437", "dup"); +__static_renaming("__dup_1438", "dup"); +__static_renaming("__dup_1439", "dup"); +__static_renaming("__dup2_1442", "dup2"); +__static_renaming("____environ_1443", "__environ"); +__static_renaming("__execve_1447", "execve"); +__static_renaming("__fexecve_1451", "fexecve"); +__static_renaming("__execv_1454", "execv"); +__static_renaming("__execv_1455", "execv"); +__static_renaming("__execle_1458", "execle"); +__static_renaming("__execl_1461", "execl"); +__static_renaming("__execvp_1464", "execvp"); +__static_renaming("__execlp_1467", "execlp"); +__static_renaming("__nice_1469", "nice"); +__static_renaming("__nice_1470", "nice"); +__static_renaming("___exit_1472", "_exit"); +__static_renaming("___exit_1473", "_exit"); +__static_renaming("__pathconf_1782", "pathconf"); +__static_renaming("__fpathconf_1785", "fpathconf"); +__static_renaming("__sysconf_1787", "sysconf"); +__static_renaming("__confstr_1792", "confstr"); +__static_renaming("__confstr_1793", "confstr"); +__static_renaming("__getpid_1794", "getpid"); +__static_renaming("__getpid_1795", "getpid"); +__static_renaming("__getpid_1797", "getpid"); +__static_renaming("__getpid_1798", "getpid"); +__static_renaming("__getppid_1800", "getppid"); +__static_renaming("__getppid_1801", "getppid"); +__static_renaming("__getpgrp_1803", "getpgrp"); +__static_renaming("__getpgrp_1804", "getpgrp"); +__static_renaming("____getpgid_1808", "__getpgid"); +__static_renaming("____getpgid_1809", "__getpgid"); +__static_renaming("__getpgid_1813", "getpgid"); +__static_renaming("__getpgid_1814", "getpgid"); +__static_renaming("__setpgid_1822", "setpgid"); +__static_renaming("__setpgid_1823", "setpgid"); +__static_renaming("__setpgid_1825", "setpgid"); +__static_renaming("__setpgid_1826", "setpgid"); +__static_renaming("__setpgrp_1828", "setpgrp"); +__static_renaming("__setsid_1829", "setsid"); +__static_renaming("__setsid_1830", "setsid"); +__static_renaming("__setsid_1832", "setsid"); +__static_renaming("__setsid_1833", "setsid"); +__static_renaming("__getsid_1838", "getsid"); +__static_renaming("__getsid_1839", "getsid"); +__static_renaming("__getuid_1841", "getuid"); +__static_renaming("__getuid_1842", "getuid"); +__static_renaming("__getuid_1844", "getuid"); +__static_renaming("__getuid_1845", "getuid"); +__static_renaming("__geteuid_1847", "geteuid"); +__static_renaming("__geteuid_1848", "geteuid"); +__static_renaming("__getgid_1850", "getgid"); +__static_renaming("__getgid_1851", "getgid"); +__static_renaming("__getegid_1853", "getegid"); +__static_renaming("__getegid_1854", "getegid"); +__static_renaming("__getgroups_1859", "getgroups"); +__static_renaming("__getgroups_1860", "getgroups"); +__static_renaming("__getgroups_1862", "getgroups"); +__static_renaming("__getgroups_1863", "getgroups"); +__static_renaming("__setuid_1868", "setuid"); +__static_renaming("__setuid_1869", "setuid"); +__static_renaming("__setuid_1871", "setuid"); +__static_renaming("__setuid_1872", "setuid"); +__static_renaming("__setreuid_1880", "setreuid"); +__static_renaming("__setreuid_1881", "setreuid"); +__static_renaming("__setreuid_1883", "setreuid"); +__static_renaming("__setreuid_1884", "setreuid"); +__static_renaming("__seteuid_1889", "seteuid"); +__static_renaming("__seteuid_1890", "seteuid"); +__static_renaming("__seteuid_1892", "seteuid"); +__static_renaming("__seteuid_1893", "seteuid"); +__static_renaming("__setgid_1898", "setgid"); +__static_renaming("__setgid_1899", "setgid"); +__static_renaming("__setgid_1901", "setgid"); +__static_renaming("__setgid_1902", "setgid"); +__static_renaming("__setgid_1904", "setgid"); +__static_renaming("__setgid_1905", "setgid"); +__static_renaming("__setgid_1907", "setgid"); +__static_renaming("__setgid_1908", "setgid"); +__static_renaming("__setregid_1916", "setregid"); +__static_renaming("__setregid_1917", "setregid"); +__static_renaming("__setregid_1919", "setregid"); +__static_renaming("__setregid_1920", "setregid"); +__static_renaming("__setegid_1925", "setegid"); +__static_renaming("__setegid_1926", "setegid"); +__static_renaming("__setegid_1928", "setegid"); +__static_renaming("__setegid_1929", "setegid"); +__static_renaming("__fork_1931", "fork"); +__static_renaming("__fork_1932", "fork"); +__static_renaming("__fork_1934", "fork"); +__static_renaming("__fork_1935", "fork"); +__static_renaming("__vfork_1937", "vfork"); +__static_renaming("__vfork_1938", "vfork"); +__static_renaming("__ttyname_1941", "ttyname"); +__static_renaming("__ttyname_1942", "ttyname"); +__static_renaming("__ttyname_r_1947", "ttyname_r"); +__static_renaming("__ttyname_r_1948", "ttyname_r"); +__static_renaming("__ttyname_r_1949", "ttyname_r"); +__static_renaming("__ttyname_r_1950", "ttyname_r"); +__static_renaming("__isatty_1952", "isatty"); +__static_renaming("__ttyslot_1953", "ttyslot"); +__static_renaming("__link_1956", "link"); +__static_renaming("__link_1957", "link"); +__static_renaming("__link_1958", "link"); +__static_renaming("__link_1959", "link"); +__static_renaming("__linkat_1965", "linkat"); +__static_renaming("__linkat_1966", "linkat"); +__static_renaming("__symlink_1969", "symlink"); +__static_renaming("__symlink_1970", "symlink"); +__static_renaming("__readlink_1975", "readlink"); +__static_renaming("__readlink_1976", "readlink"); +__static_renaming("__readlink_1981", "readlink"); +__static_renaming("__readlink_1982", "readlink"); +__static_renaming("__symlinkat_1990", "symlinkat"); +__static_renaming("__symlinkat_1991", "symlinkat"); +__static_renaming("__readlinkat_1997", "readlinkat"); +__static_renaming("__readlinkat_1998", "readlinkat"); +__static_renaming("__readlinkat_2003", "readlinkat"); +__static_renaming("__readlinkat_2004", "readlinkat"); +__static_renaming("__unlink_2010", "unlink"); +__static_renaming("__unlink_2011", "unlink"); +__static_renaming("__unlinkat_2015", "unlinkat"); +__static_renaming("__rmdir_2017", "rmdir"); +__static_renaming("__rmdir_2018", "rmdir"); +__static_renaming("__tcgetpgrp_2020", "tcgetpgrp"); +__static_renaming("__tcgetpgrp_2021", "tcgetpgrp"); +__static_renaming("__tcsetpgrp_2026", "tcsetpgrp"); +__static_renaming("__tcsetpgrp_2027", "tcsetpgrp"); +__static_renaming("__getlogin_2028", "getlogin"); +__static_renaming("__getlogin_r_2032", "getlogin_r"); +__static_renaming("__getlogin_r_2033", "getlogin_r"); +__static_renaming("__setlogin_2035", "setlogin"); +__static_renaming("__optarg_2036", "optarg"); +__static_renaming("__optind_2037", "optind"); +__static_renaming("__opterr_2038", "opterr"); +__static_renaming("__optopt_2039", "optopt"); +__static_renaming("__getopt_2043", "getopt"); +__static_renaming("__gethostname_2047", "gethostname"); +__static_renaming("__gethostname_2048", "gethostname"); +__static_renaming("__sethostname_2052", "sethostname"); +__static_renaming("__sethostname_2053", "sethostname"); +__static_renaming("__sethostname_2054", "sethostname"); +__static_renaming("__sethostname_2055", "sethostname"); +__static_renaming("__sethostid_2057", "sethostid"); +__static_renaming("__sethostid_2058", "sethostid"); +__static_renaming("__getdomainname_2062", "getdomainname"); +__static_renaming("__getdomainname_2063", "getdomainname"); +__static_renaming("__getdomainname_2064", "getdomainname"); +__static_renaming("__getdomainname_2065", "getdomainname"); +__static_renaming("__setdomainname_2069", "setdomainname"); +__static_renaming("__setdomainname_2070", "setdomainname"); +__static_renaming("__setdomainname_2071", "setdomainname"); +__static_renaming("__setdomainname_2072", "setdomainname"); +__static_renaming("__vhangup_2073", "vhangup"); +__static_renaming("__revoke_2075", "revoke"); +__static_renaming("__revoke_2076", "revoke"); +__static_renaming("__profil_2083", "profil"); +__static_renaming("__profil_2084", "profil"); +__static_renaming("__acct_2086", "acct"); +__static_renaming("__getusershell_2087", "getusershell"); +__static_renaming("__endusershell_2088", "endusershell"); +__static_renaming("__setusershell_2089", "setusershell"); +__static_renaming("__daemon_2092", "daemon"); +__static_renaming("__daemon_2093", "daemon"); +__static_renaming("__chroot_2095", "chroot"); +__static_renaming("__chroot_2096", "chroot"); +__static_renaming("__getpass_2098", "getpass"); +__static_renaming("__fsync_2100", "fsync"); +__static_renaming("__fsync_2101", "fsync"); +__static_renaming("__fsync_2102", "fsync"); +__static_renaming("__gethostid_2103", "gethostid"); +__static_renaming("__sync_2104", "sync"); +__static_renaming("__getpagesize_2105", "getpagesize"); +__static_renaming("__getdtablesize_2106", "getdtablesize"); +__static_renaming("__truncate_2115", "truncate"); +__static_renaming("__truncate_2116", "truncate"); +__static_renaming("__truncate_2118", "truncate"); +__static_renaming("__truncate_2119", "truncate"); +__static_renaming("__truncate_2121", "truncate"); +__static_renaming("__truncate_2122", "truncate"); +__static_renaming("__truncate_2124", "truncate"); +__static_renaming("__truncate_2125", "truncate"); +__static_renaming("__ftruncate_2135", "ftruncate"); +__static_renaming("__ftruncate_2136", "ftruncate"); +__static_renaming("__ftruncate_2138", "ftruncate"); +__static_renaming("__ftruncate_2139", "ftruncate"); +__static_renaming("__ftruncate_2141", "ftruncate"); +__static_renaming("__ftruncate_2142", "ftruncate"); +__static_renaming("__ftruncate_2144", "ftruncate"); +__static_renaming("__ftruncate_2145", "ftruncate"); +__static_renaming("__brk_2148", "brk"); +__static_renaming("__brk_2149", "brk"); +__static_renaming("__sbrk_2153", "sbrk"); +__static_renaming("__sbrk_2154", "sbrk"); +__static_renaming("__syscall_2157", "syscall"); +__static_renaming("__lockf_2168", "lockf"); +__static_renaming("__lockf_2169", "lockf"); +__static_renaming("__lockf_2171", "lockf"); +__static_renaming("__lockf_2172", "lockf"); +__static_renaming("__lockf_2174", "lockf"); +__static_renaming("__lockf_2175", "lockf"); +__static_renaming("__lockf_2177", "lockf"); +__static_renaming("__lockf_2178", "lockf"); +__static_renaming("__fdatasync_2181", "fdatasync"); +__static_renaming("____read_chk_2188", "__read_chk"); +__static_renaming("____read_chk_2189", "__read_chk"); +__static_renaming("____read_chk_2190", "__read_chk"); +__static_renaming("____read_alias_2199", "__read_alias"); +__static_renaming("____read_alias_2200", "__read_alias"); +__static_renaming("____read_alias_2201", "__read_alias"); +__static_renaming("____read_chk_warn_2212", "__read_chk_warn"); +__static_renaming("____read_chk_warn_2213", "__read_chk_warn"); +__static_renaming("____read_chk_warn_2214", "__read_chk_warn"); +__static_renaming("____readlink_chk_2233", "__readlink_chk"); +__static_renaming("____readlink_chk_2234", "__readlink_chk"); +__static_renaming("____readlink_alias_2243", "__readlink_alias"); +__static_renaming("____readlink_alias_2244", "__readlink_alias"); +__static_renaming("____readlink_chk_warn_2255", "__readlink_chk_warn"); +__static_renaming("____readlink_chk_warn_2256", "__readlink_chk_warn"); +__static_renaming("____readlinkat_chk_2276", "__readlinkat_chk"); +__static_renaming("____readlinkat_chk_2277", "__readlinkat_chk"); +__static_renaming("____readlinkat_alias_2287", "__readlinkat_alias"); +__static_renaming("____readlinkat_alias_2288", "__readlinkat_alias"); +__static_renaming("____readlinkat_chk_warn_2300", "__readlinkat_chk_warn"); +__static_renaming("____readlinkat_chk_warn_2301", "__readlinkat_chk_warn"); +__static_renaming("____getcwd_chk_2320", "__getcwd_chk"); +__static_renaming("____getcwd_chk_2321", "__getcwd_chk"); +__static_renaming("____getcwd_chk_2322", "__getcwd_chk"); +__static_renaming("____getcwd_chk_2323", "__getcwd_chk"); +__static_renaming("____getcwd_alias_2327", "__getcwd_alias"); +__static_renaming("____getcwd_alias_2328", "__getcwd_alias"); +__static_renaming("____getcwd_chk_warn_2334", "__getcwd_chk_warn"); +__static_renaming("____getcwd_chk_warn_2335", "__getcwd_chk_warn"); +__static_renaming("____getwd_chk_2344", "__getwd_chk"); +__static_renaming("____getwd_chk_2345", "__getwd_chk"); +__static_renaming("____getwd_warn_2347", "__getwd_warn"); +__static_renaming("____confstr_chk_2356", "__confstr_chk"); +__static_renaming("____confstr_chk_2357", "__confstr_chk"); +__static_renaming("____confstr_chk_2358", "__confstr_chk"); +__static_renaming("____confstr_chk_2359", "__confstr_chk"); +__static_renaming("____confstr_alias_2364", "__confstr_alias"); +__static_renaming("____confstr_alias_2365", "__confstr_alias"); +__static_renaming("____confstr_chk_warn_2372", "__confstr_chk_warn"); +__static_renaming("____confstr_chk_warn_2373", "__confstr_chk_warn"); +__static_renaming("____getgroups_chk_2386", "__getgroups_chk"); +__static_renaming("____getgroups_chk_2387", "__getgroups_chk"); +__static_renaming("____getgroups_alias_2394", "__getgroups_alias"); +__static_renaming("____getgroups_alias_2395", "__getgroups_alias"); +__static_renaming("____getgroups_chk_warn_2403", "__getgroups_chk_warn"); +__static_renaming("____getgroups_chk_warn_2404", "__getgroups_chk_warn"); +__static_renaming("____ttyname_r_chk_2418", "__ttyname_r_chk"); +__static_renaming("____ttyname_r_chk_2419", "__ttyname_r_chk"); +__static_renaming("____ttyname_r_alias_2424", "__ttyname_r_alias"); +__static_renaming("____ttyname_r_alias_2425", "__ttyname_r_alias"); +__static_renaming("____ttyname_r_chk_warn_2432", "__ttyname_r_chk_warn"); +__static_renaming("____ttyname_r_chk_warn_2433", "__ttyname_r_chk_warn"); +__static_renaming("____getlogin_r_chk_2443", "__getlogin_r_chk"); +__static_renaming("____getlogin_r_chk_2444", "__getlogin_r_chk"); +__static_renaming("____getlogin_r_alias_2448", "__getlogin_r_alias"); +__static_renaming("____getlogin_r_alias_2449", "__getlogin_r_alias"); +__static_renaming("____getlogin_r_chk_warn_2455", "__getlogin_r_chk_warn"); +__static_renaming("____getlogin_r_chk_warn_2456", "__getlogin_r_chk_warn"); +__static_renaming("____gethostname_chk_2465", "__gethostname_chk"); +__static_renaming("____gethostname_chk_2466", "__gethostname_chk"); +__static_renaming("____gethostname_alias_2470", "__gethostname_alias"); +__static_renaming("____gethostname_alias_2471", "__gethostname_alias"); +__static_renaming("____gethostname_chk_warn_2477", "__gethostname_chk_warn"); +__static_renaming("____gethostname_chk_warn_2478", "__gethostname_chk_warn"); +__static_renaming("____getdomainname_chk_2487", "__getdomainname_chk"); +__static_renaming("____getdomainname_chk_2488", "__getdomainname_chk"); +__static_renaming("____getdomainname_alias_2492", "__getdomainname_alias"); +__static_renaming("____getdomainname_alias_2493", "__getdomainname_alias"); +__static_renaming("____getdomainname_chk_warn_2499", "__getdomainname_chk_warn"); +__static_renaming("____getdomainname_chk_warn_2500", "__getdomainname_chk_warn"); +__static_renaming("__m_2505", "m"); +__static_renaming("__shutdown_signal_2506", "shutdown_signal"); +__static_renaming("__open_new_terminal_2510", "open_new_terminal"); +__static_renaming("__open_new_terminal_2511", "open_new_terminal"); +__static_renaming("__run_2514", "run"); +__static_renaming("__run_actions_2515", "run_actions"); +__static_renaming("__main_2518", "main"); + +__static_condition_renaming("__static_condition_default_53", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_76", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_84", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_123", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_169", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_170", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_173", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_182", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_187", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_193", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_198", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_201", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_204", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_210", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_217", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_223", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_229", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_235", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_238", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_241", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_244", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_246", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_248", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_249", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_250", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_253", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_255", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_257", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_258", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_259", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_263", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_264", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_267", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_270", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_271", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_274", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_275", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_278", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_280", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); +__static_condition_renaming("__static_condition_default_282", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_284", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_286", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_288", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_290", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_293", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_296", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_299", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_311", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_313", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_315", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_317", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_331", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_333", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_337", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_341", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_345", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_347", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_355", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_357", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_363", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_365", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_367", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_369", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_373", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_375", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_380", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_382", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_386", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_388", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_393", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_395", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_402", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_408", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_412", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_417", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_419", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_431", "!(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_432", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_433", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_438", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_444", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_455", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_461", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_469", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_471", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_473", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_475", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_486", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_488", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_489", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_491", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_493", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_494", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_497", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_499", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_503", "!(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_510", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_511", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_512", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_514", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_515", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_516", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_521", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_523", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_529", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_536", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_537", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_538", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_539", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_541", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_542", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_543", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_544", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_549", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_550", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_552", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_553", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_559", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_560", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_564", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_568", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_573", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_578", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_583", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_585", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_590", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_597", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_602", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_608", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_613", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_619", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_621", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_623", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_625", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_632", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_633", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_634", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_636", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_637", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_638", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_645", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_646", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_647", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_649", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_650", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_651", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_657", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_658", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_659", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_661", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_662", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_663", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_668", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_670", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_677", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_683", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_684", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_685", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_686", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_692", "!(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_693", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_699", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_700", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_701", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_702", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_708", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_709", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_715", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_717", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_721", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_723", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_727", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_734", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_735", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_736", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_745", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_746", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_747", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_751", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_752", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_753", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_755", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_756", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_757", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_759", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_760", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_761", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_767", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_768", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_769", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_779", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_780", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_781", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_787", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_788", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_789", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_791", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_792", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_793", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_797", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_801", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_803", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_807", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_809", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_813", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_817", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_819", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_823", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_825", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_834", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_836", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_840", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_842", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_846", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_848", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_852", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_858", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_862", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_864", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_868", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_872", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_875", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_878", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_883", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_887", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_891", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_894", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_907", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_914", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_929", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_938", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_944", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_955", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_956", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_957", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_963", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_967", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_972", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_978", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_979", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_980", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_991", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_998", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1005", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1007", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1009", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1015", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1022", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1027", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1028", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1035", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1036", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1042", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1043", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1050", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1051", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1057", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1058", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1065", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1066", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1072", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1073", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1080", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1081", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1089", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_1141", "(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1148", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1151", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1152", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1155", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1158", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1160", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_1162", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_1165", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __useconds_t_defined)"); +__static_condition_renaming("__static_condition_default_1168", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && (defined __useconds_t_defined)"); +__static_condition_renaming("__static_condition_default_1171", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __useconds_t_defined)"); +__static_condition_renaming("__static_condition_default_1199", "!(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1202", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1212", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1213", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1214", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1215", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1219", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1220", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1221", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1222", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1230", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1231", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1232", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1233", "(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || (defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1237", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1238", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1239", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1240", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1250", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1251", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1252", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1253", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1254", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1255", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1258", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1259", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1260", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1261", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1262", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1263", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1280", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1281", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1282", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1283", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1284", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1285", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1288", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1289", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1290", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1291", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1292", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1293", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1303", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1304", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1305", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1306", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1307", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1308", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1311", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1312", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1313", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1314", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1315", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1316", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1319", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1320", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1321", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1322", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1323", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1324", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1327", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1328", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1329", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1330", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1331", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1332", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1350", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1356", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1368", "!(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1371", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1381", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1384", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1394", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1397", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1409", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1412", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1796", "(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1799", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1802", "(defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1815", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1824", "(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1827", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1831", "(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1834", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1840", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1843", "(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1846", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1849", "(defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1852", "(defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1861", "!(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1864", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1870", "!(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1873", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1882", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1885", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1891", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1894", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1900", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1903", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1906", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1909", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1918", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1921", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1927", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1930", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1933", "(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1936", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1939", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1977", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1978", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1979", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1980", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1983", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1984", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1985", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1986", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1999", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_2000", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_2001", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_2002", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_2005", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_2006", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_2007", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_2008", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_2117", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_2120", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_2123", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_2126", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_2137", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_2140", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_2143", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_2146", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_2155", "!(defined __STRICT_ANSI__) && (defined __intptr_t_defined)"); +__static_condition_renaming("__static_condition_default_2170", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined F_LOCK) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined F_LOCK)"); +__static_condition_renaming("__static_condition_default_2173", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined F_LOCK)"); +__static_condition_renaming("__static_condition_default_2176", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined F_LOCK) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined F_LOCK) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined F_LOCK) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined F_LOCK) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined F_LOCK) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined F_LOCK) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined F_LOCK) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined F_LOCK)"); +__static_condition_renaming("__static_condition_default_2179", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined F_LOCK) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined F_LOCK) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined F_LOCK) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined F_LOCK)"); +__static_condition_renaming("__static_condition_default_2191", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_2192", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_2193", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_2194", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_2202", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_2203", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_2204", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_2205", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_2215", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_2216", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_2217", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_2218", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_2223", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_2224", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_2225", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_2226", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_2235", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_2236", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_2237", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_2238", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_2245", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_2246", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_2247", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_2248", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_2257", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_2258", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_2259", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_2260", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_2265", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_2266", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_2267", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_2268", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_2278", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_2279", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_2280", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_2281", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_2289", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_2290", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_2291", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_2292", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_2302", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_2303", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_2304", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_2305", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_2311", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_2312", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_2313", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_2314", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_2339", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2340", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2349", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2388", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_2389", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_2396", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_2405", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_2406", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_2411", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_2507", "!(defined ENABLE_DEBUG_INIT)"); +__static_condition_renaming("__static_condition_default_2508", "!(defined __need___FILE) && !(defined ENABLE_DEBUG_INIT)"); +__static_condition_renaming("__static_condition_default_2509", "(defined __need___FILE) && !(defined ENABLE_DEBUG_INIT)"); +__static_condition_renaming("__static_condition_default_2512", "(defined ENABLE_DEBUG_INIT)"); +__static_condition_renaming("__static_condition_default_2513", "!(defined ENABLE_DEBUG_INIT)"); +__static_condition_renaming("__static_condition_default_2519", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) || (defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); + +if (__static_condition_default_2519) { __static_parse_error("Unable to parse"); } }; @@ -1058,456 +1721,523 @@ typedef long int ____ssize_t_49;// L110:L172 typedef long int ____syscall_slong_t_50;// L93:L175 typedef unsigned long int ____syscall_ulong_t_51;// L94:L177 typedef ____off64_t_24 ____loff_t_52;// L181 -typedef ____quad_t_14 * (____qaddr_t_53);// L182 -typedef char * (____caddr_t_54);// L183 -typedef long int ____intptr_t_55;// L110:L186 -typedef unsigned int ____socklen_t_56;// L92:L189 -typedef struct __forward_tag_reference_57 __FILE_58;// L48 -typedef struct __forward_tag_reference_57 ____FILE_59;// L64 -union ____anonymous_tag_60_61 { -unsigned int ____wch_62;// L265 -char ____wchb_63[4];// L92 +typedef ____quad_t_14 * (____qaddr_t_54);// L182 +typedef char * (____caddr_t_55);// L183 +typedef long int ____intptr_t_56;// L110:L186 +typedef unsigned int ____socklen_t_57;// L92:L189 +typedef struct __forward_tag_reference_58 __FILE_59;// L48 +typedef struct __forward_tag_reference_58 ____FILE_60;// L64 +union ____anonymous_tag_61_62 { +unsigned int ____wch_63;// L265 +char ____wchb_64[4];// L92 }; -struct ____anonymous_tag_64_65 { -int ____count_66;// L84 -union ____anonymous_tag_60_61 ____value_67;// L85 +struct ____anonymous_tag_65_66 { +int ____count_67;// L84 +union ____anonymous_tag_61_62 ____value_68;// L85 }; -typedef struct ____anonymous_tag_64_65 ____mbstate_t_68;// L82:L94 -struct ____anonymous_tag_69_70 { -____off_t_23 ____pos_71;// L0 -____mbstate_t_68 ____state_72;// L0 +typedef struct ____anonymous_tag_65_66 ____mbstate_t_69;// L82:L94 +struct ____anonymous_tag_70_71 { +____off_t_23 ____pos_72;// L0 +____mbstate_t_69 ____state_74;// L0 }; -typedef struct ____anonymous_tag_69_70 ___G_fpos_t_75;// L21:L25 -struct ____anonymous_tag_76_77 { -____off64_t_24 ____pos_78;// L0 -____mbstate_t_68 ____state_79;// L0 +typedef struct ____anonymous_tag_70_71 ___G_fpos_t_77;// L21:L25 +struct ____anonymous_tag_78_79 { +____off64_t_24 ____pos_80;// L0 +____mbstate_t_69 ____state_82;// L0 }; -typedef struct ____anonymous_tag_76_77 ___G_fpos64_t_81;// L26:L30 -typedef __builtin_va_list ____gnuc_va_list_82;// L40 -typedef void ___IO_lock_t_84;// L150 -struct ___IO_marker_86 { -struct __forward_tag_reference_85 * (___next_87);// L0 -struct __forward_tag_reference_57 * (___sbuf_88);// L0 -int ___pos_89;// L162 +typedef struct ____anonymous_tag_78_79 ___G_fpos64_t_85;// L26:L30 +typedef __builtin_va_list ____gnuc_va_list_86;// L40 +typedef void ___IO_lock_t_88;// L150 +struct ___IO_marker_90 { +struct __forward_tag_reference_89 * (___next_91);// L0 +struct __forward_tag_reference_58 * (___sbuf_92);// L0 +int ___pos_93;// L162 }; -enum ____codecvt_result_94 { -____codecvt_ok_90, -____codecvt_partial_91, -____codecvt_error_92, -____codecvt_noconv_93, +enum ____codecvt_result_98 { +____codecvt_ok_94, +____codecvt_partial_95, +____codecvt_error_96, +____codecvt_noconv_97, }; -struct ___IO_FILE_95 { -int ___flags_96;// L242 -char * (___IO_read_ptr_97);// L247 -char * (___IO_read_end_98);// L248 -char * (___IO_read_base_99);// L249 -char * (___IO_write_base_100);// L250 -char * (___IO_write_ptr_101);// L251 -char * (___IO_write_end_102);// L252 -char * (___IO_buf_base_103);// L253 -char * (___IO_buf_end_104);// L254 -char * (___IO_save_base_105);// L256 -char * (___IO_backup_base_106);// L257 -char * (___IO_save_end_107);// L258 -struct ___IO_marker_86 * (___markers_108);// L260 -struct __forward_tag_reference_57 * (___chain_109);// L0 -int ___fileno_110;// L264 -int ___flags2_111;// L268 -____off_t_23 ___old_offset_112;// L0 -unsigned short ___cur_column_113;// L274 -signed char ___vtable_offset_114;// L275 -char ___shortbuf_115[1];// L276 -___IO_lock_t_84 * (___lock_116);// L0 +struct ___IO_FILE_99 { +int ___flags_100;// L242 +char * (___IO_read_ptr_101);// L247 +char * (___IO_read_end_102);// L248 +char * (___IO_read_base_103);// L249 +char * (___IO_write_base_104);// L250 +char * (___IO_write_ptr_105);// L251 +char * (___IO_write_end_106);// L252 +char * (___IO_buf_base_107);// L253 +char * (___IO_buf_end_108);// L254 +char * (___IO_save_base_109);// L256 +char * (___IO_backup_base_110);// L257 +char * (___IO_save_end_111);// L258 +struct ___IO_marker_90 * (___markers_112);// L260 +struct __forward_tag_reference_58 * (___chain_113);// L0 +int ___fileno_114;// L264 +int ___flags2_115;// L268 +____off_t_23 ___old_offset_116;// L0 +unsigned short ___cur_column_118;// L274 +signed char ___vtable_offset_119;// L275 +char ___shortbuf_120[1];// L276 +___IO_lock_t_88 * (___lock_121);// L0 }; -struct ___IO_FILE_119 { -int ___flags_120;// L242 -char * (___IO_read_ptr_121);// L247 -char * (___IO_read_end_122);// L248 -char * (___IO_read_base_123);// L249 -char * (___IO_write_base_124);// L250 -char * (___IO_write_ptr_125);// L251 -char * (___IO_write_end_126);// L252 -char * (___IO_buf_base_127);// L253 -char * (___IO_buf_end_128);// L254 -char * (___IO_save_base_129);// L256 -char * (___IO_backup_base_130);// L257 -char * (___IO_save_end_131);// L258 -struct ___IO_marker_86 * (___markers_132);// L260 -struct __forward_tag_reference_57 * (___chain_133);// L0 -int ___fileno_134;// L264 -int ___flags2_135;// L268 -____off_t_23 ___old_offset_136;// L0 -unsigned short ___cur_column_137;// L274 -signed char ___vtable_offset_138;// L275 -char ___shortbuf_139[1];// L276 -___IO_lock_t_84 * (___lock_140);// L0 -____off64_t_24 ___offset_142;// L0 -void * (____pad1_143);// L297 -void * (____pad2_144);// L298 -void * (____pad3_145);// L299 -void * (____pad4_146);// L300 -__size_t_1 ____pad5_147;// L0 -int ___mode_148;// L303 -char ___unused2_149[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +struct ___IO_FILE_124 { +int ___flags_125;// L242 +char * (___IO_read_ptr_126);// L247 +char * (___IO_read_end_127);// L248 +char * (___IO_read_base_128);// L249 +char * (___IO_write_base_129);// L250 +char * (___IO_write_ptr_130);// L251 +char * (___IO_write_end_131);// L252 +char * (___IO_buf_base_132);// L253 +char * (___IO_buf_end_133);// L254 +char * (___IO_save_base_134);// L256 +char * (___IO_backup_base_135);// L257 +char * (___IO_save_end_136);// L258 +struct ___IO_marker_90 * (___markers_137);// L260 +struct __forward_tag_reference_58 * (___chain_138);// L0 +int ___fileno_139;// L264 +int ___flags2_140;// L268 +____off_t_23 ___old_offset_141;// L0 +unsigned short ___cur_column_143;// L274 +signed char ___vtable_offset_144;// L275 +char ___shortbuf_145[1];// L276 +___IO_lock_t_88 * (___lock_146);// L0 +____off64_t_24 ___offset_148;// L0 +void * (____pad1_150);// L297 +void * (____pad2_151);// L298 +void * (____pad3_152);// L299 +void * (____pad4_153);// L300 +__size_t_1 ____pad5_154;// L0 +int ___mode_155;// L303 +char ___unused2_156[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -struct ___IO_FILE_complete_150 { -struct ___IO_FILE_95 ___file_151;// L286 -____off64_t_24 ___offset_153;// L0 -void * (____pad1_154);// L297 -void * (____pad2_155);// L298 -void * (____pad3_156);// L299 -void * (____pad4_157);// L300 -__size_t_1 ____pad5_158;// L0 -int ___mode_159;// L303 -char ___unused2_160[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +struct ___IO_FILE_complete_157 { +struct ___IO_FILE_99 ___file_158;// L286 +____off64_t_24 ___offset_160;// L0 +void * (____pad1_162);// L297 +void * (____pad2_163);// L298 +void * (____pad3_164);// L299 +void * (____pad4_165);// L300 +__size_t_1 ____pad5_166;// L0 +int ___mode_167;// L303 +char ___unused2_168[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -typedef struct ___IO_FILE_95 ___IO_FILE_163;// L310 -typedef struct ___IO_FILE_119 ___IO_FILE_164;// L310 -typedef ____ssize_t_49 (____io_read_fn_173) (void * (____cookie_170), char * (____buf_171), __size_t_1 ____nbytes_172);// L333 -typedef ____ssize_t_49 (____io_write_fn_177) (void * (____cookie_174), const char * (____buf_175), __size_t_1 ____n_176);// L341:L342 -typedef int (____io_seek_fn_181) (void * (____cookie_178), ____off64_t_24 * (____pos_179), int ____w_180);// L350 -typedef int (____io_close_fn_183) (void * (____cookie_182));// L353 -typedef ____gnuc_va_list_82 __va_list_248;// L79 -typedef ____off_t_23 __off_t_250;// L90 -typedef ____off64_t_24 __off_t_251;// L92 -typedef ____ssize_t_49 __ssize_t_252;// L102 -typedef ___G_fpos_t_75 __fpos_t_253;// L110 -typedef ___G_fpos64_t_81 __fpos_t_255;// L112 -extern const char * const __sys_errlist_756[];// L27 -typedef ____ssize_t_49 __ssize_t_1016;// L223 -typedef ____gid_t_18 __gid_t_1019;// L235 -typedef ____uid_t_17 __uid_t_1020;// L240 -typedef ____useconds_t_35 __useconds_t_1021;// L258 -typedef ____pid_t_25 __pid_t_1022;// L263 -typedef ____pid_t_25 __pid_t_1023;// L263 -typedef ____intptr_t_55 __intptr_t_1024;// L270 -typedef ____socklen_t_56 __socklen_t_1025;// L277 -enum ____anonymous_tag_1211_1212 { -___PC_LINK_MAX_1190, -___PC_MAX_CANON_1191, -___PC_MAX_INPUT_1192, -___PC_NAME_MAX_1193, -___PC_PATH_MAX_1194, -___PC_PIPE_BUF_1195, -___PC_CHOWN_RESTRICTED_1196, -___PC_NO_TRUNC_1197, -___PC_VDISABLE_1198, -___PC_SYNC_IO_1199, -___PC_ASYNC_IO_1200, -___PC_PRIO_IO_1201, -___PC_SOCK_MAXBUF_1202, -___PC_FILESIZEBITS_1203, -___PC_REC_INCR_XFER_SIZE_1204, -___PC_REC_MAX_XFER_SIZE_1205, -___PC_REC_MIN_XFER_SIZE_1206, -___PC_REC_XFER_ALIGN_1207, -___PC_ALLOC_SIZE_MIN_1208, -___PC_SYMLINK_MAX_1209, -___PC_2_SYMLINKS_1210, +typedef struct ___IO_FILE_99 ___IO_FILE_171;// L310 +typedef struct ___IO_FILE_124 ___IO_FILE_172;// L310 +typedef ____ssize_t_49 (____io_read_fn_181) (void * (____cookie_178), char * (____buf_179), __size_t_1 ____nbytes_180);// L333 +typedef ____ssize_t_49 (____io_write_fn_186) (void * (____cookie_183), const char * (____buf_184), __size_t_1 ____n_185);// L341:L342 +typedef int (____io_seek_fn_192) (void * (____cookie_188), ____off64_t_24 * (____pos_189), int ____w_191);// L350 +typedef int (____io_close_fn_195) (void * (____cookie_194));// L353 +typedef ____gnuc_va_list_86 __va_list_279;// L79 +typedef ____off_t_23 __off_t_281;// L90 +typedef ____off64_t_24 __off_t_283;// L92 +typedef ____ssize_t_49 __ssize_t_285;// L102 +typedef ___G_fpos_t_77 __fpos_t_287;// L110 +typedef ___G_fpos64_t_85 __fpos_t_289;// L112 +extern const char * const __sys_errlist_830[];// L27 +typedef unsigned char ____u_char_1090;// L30 +typedef unsigned short int ____u_short_1091;// L31 +typedef unsigned int ____u_int_1092;// L32 +typedef unsigned long int ____u_long_1093;// L33 +typedef signed char ____int8_t_1094;// L36 +typedef unsigned char ____uint8_t_1095;// L37 +typedef signed short int ____int16_t_1096;// L38 +typedef unsigned short int ____uint16_t_1097;// L39 +typedef signed int ____int32_t_1098;// L40 +typedef unsigned int ____uint32_t_1099;// L41 +typedef signed long int ____int64_t_1100;// L43 +typedef unsigned long int ____uint64_t_1101;// L44 +typedef long int ____quad_t_1102;// L52 +typedef unsigned long int ____u_quad_t_1103;// L53 +typedef unsigned long int ____dev_t_1104;// L109:L124 +typedef unsigned int ____uid_t_1105;// L92:L125 +typedef unsigned int ____gid_t_1106;// L92:L126 +typedef unsigned long int ____ino_t_1107;// L94:L127 +typedef unsigned long int ____ino64_t_1108;// L109:L128 +typedef unsigned int ____mode_t_1109;// L92:L129 +typedef unsigned long int ____nlink_t_1110;// L94:L130 +typedef long int ____off_t_1111;// L93:L131 +typedef long int ____off64_t_1112;// L108:L132 +typedef int ____pid_t_1113;// L91:L133 +struct ____anonymous_tag_1114_1115 { +int ____val_1116[2];// L72 }; -enum ____anonymous_tag_1428_1429 { -___SC_ARG_MAX_1213, -___SC_CHILD_MAX_1214, -___SC_CLK_TCK_1215, -___SC_NGROUPS_MAX_1216, -___SC_OPEN_MAX_1217, -___SC_STREAM_MAX_1218, -___SC_TZNAME_MAX_1219, -___SC_JOB_CONTROL_1220, -___SC_SAVED_IDS_1221, -___SC_REALTIME_SIGNALS_1222, -___SC_PRIORITY_SCHEDULING_1223, -___SC_TIMERS_1224, -___SC_ASYNCHRONOUS_IO_1225, -___SC_PRIORITIZED_IO_1226, -___SC_SYNCHRONIZED_IO_1227, -___SC_FSYNC_1228, -___SC_MAPPED_FILES_1229, -___SC_MEMLOCK_1230, -___SC_MEMLOCK_RANGE_1231, -___SC_MEMORY_PROTECTION_1232, -___SC_MESSAGE_PASSING_1233, -___SC_SEMAPHORES_1234, -___SC_SHARED_MEMORY_OBJECTS_1235, -___SC_AIO_LISTIO_MAX_1236, -___SC_AIO_MAX_1237, -___SC_AIO_PRIO_DELTA_MAX_1238, -___SC_DELAYTIMER_MAX_1239, -___SC_MQ_OPEN_MAX_1240, -___SC_MQ_PRIO_MAX_1241, -___SC_VERSION_1242, -___SC_PAGESIZE_1243, -___SC_RTSIG_MAX_1244, -___SC_SEM_NSEMS_MAX_1245, -___SC_SEM_VALUE_MAX_1246, -___SC_SIGQUEUE_MAX_1247, -___SC_TIMER_MAX_1248, -___SC_BC_BASE_MAX_1249, -___SC_BC_DIM_MAX_1250, -___SC_BC_SCALE_MAX_1251, -___SC_BC_STRING_MAX_1252, -___SC_COLL_WEIGHTS_MAX_1253, -___SC_EQUIV_CLASS_MAX_1254, -___SC_EXPR_NEST_MAX_1255, -___SC_LINE_MAX_1256, -___SC_RE_DUP_MAX_1257, -___SC_CHARCLASS_NAME_MAX_1258, -___SC_2_VERSION_1259, -___SC_2_C_BIND_1260, -___SC_2_C_DEV_1261, -___SC_2_FORT_DEV_1262, -___SC_2_FORT_RUN_1263, -___SC_2_SW_DEV_1264, -___SC_2_LOCALEDEF_1265, -___SC_PII_1266, -___SC_PII_XTI_1267, -___SC_PII_SOCKET_1268, -___SC_PII_INTERNET_1269, -___SC_PII_OSI_1270, -___SC_POLL_1271, -___SC_SELECT_1272, -___SC_UIO_MAXIOV_1273, -___SC_IOV_MAX_1274 = ___SC_UIO_MAXIOV_1273 , -___SC_PII_INTERNET_STREAM_1275, -___SC_PII_INTERNET_DGRAM_1276, -___SC_PII_OSI_COTS_1277, -___SC_PII_OSI_CLTS_1278, -___SC_PII_OSI_M_1279, -___SC_T_IOV_MAX_1280, -___SC_THREADS_1281, -___SC_THREAD_SAFE_FUNCTIONS_1282, -___SC_GETGR_R_SIZE_MAX_1283, -___SC_GETPW_R_SIZE_MAX_1284, -___SC_LOGIN_NAME_MAX_1285, -___SC_TTY_NAME_MAX_1286, -___SC_THREAD_DESTRUCTOR_ITERATIONS_1287, -___SC_THREAD_KEYS_MAX_1288, -___SC_THREAD_STACK_MIN_1289, -___SC_THREAD_THREADS_MAX_1290, -___SC_THREAD_ATTR_STACKADDR_1291, -___SC_THREAD_ATTR_STACKSIZE_1292, -___SC_THREAD_PRIORITY_SCHEDULING_1293, -___SC_THREAD_PRIO_INHERIT_1294, -___SC_THREAD_PRIO_PROTECT_1295, -___SC_THREAD_PROCESS_SHARED_1296, -___SC_NPROCESSORS_CONF_1297, -___SC_NPROCESSORS_ONLN_1298, -___SC_PHYS_PAGES_1299, -___SC_AVPHYS_PAGES_1300, -___SC_ATEXIT_MAX_1301, -___SC_PASS_MAX_1302, -___SC_XOPEN_VERSION_1303, -___SC_XOPEN_XCU_VERSION_1304, -___SC_XOPEN_UNIX_1305, -___SC_XOPEN_CRYPT_1306, -___SC_XOPEN_ENH_I18N_1307, -___SC_XOPEN_SHM_1308, -___SC_2_CHAR_TERM_1309, -___SC_2_C_VERSION_1310, -___SC_2_UPE_1311, -___SC_XOPEN_XPG2_1312, -___SC_XOPEN_XPG3_1313, -___SC_XOPEN_XPG4_1314, -___SC_CHAR_BIT_1315, -___SC_CHAR_MAX_1316, -___SC_CHAR_MIN_1317, -___SC_INT_MAX_1318, -___SC_INT_MIN_1319, -___SC_LONG_BIT_1320, -___SC_WORD_BIT_1321, -___SC_MB_LEN_MAX_1322, -___SC_NZERO_1323, -___SC_SSIZE_MAX_1324, -___SC_SCHAR_MAX_1325, -___SC_SCHAR_MIN_1326, -___SC_SHRT_MAX_1327, -___SC_SHRT_MIN_1328, -___SC_UCHAR_MAX_1329, -___SC_UINT_MAX_1330, -___SC_ULONG_MAX_1331, -___SC_USHRT_MAX_1332, -___SC_NL_ARGMAX_1333, -___SC_NL_LANGMAX_1334, -___SC_NL_MSGMAX_1335, -___SC_NL_NMAX_1336, -___SC_NL_SETMAX_1337, -___SC_NL_TEXTMAX_1338, -___SC_XBS5_ILP32_OFF32_1339, -___SC_XBS5_ILP32_OFFBIG_1340, -___SC_XBS5_LP64_OFF64_1341, -___SC_XBS5_LPBIG_OFFBIG_1342, -___SC_XOPEN_LEGACY_1343, -___SC_XOPEN_REALTIME_1344, -___SC_XOPEN_REALTIME_THREADS_1345, -___SC_ADVISORY_INFO_1346, -___SC_BARRIERS_1347, -___SC_BASE_1348, -___SC_C_LANG_SUPPORT_1349, -___SC_C_LANG_SUPPORT_R_1350, -___SC_CLOCK_SELECTION_1351, -___SC_CPUTIME_1352, -___SC_THREAD_CPUTIME_1353, -___SC_DEVICE_IO_1354, -___SC_DEVICE_SPECIFIC_1355, -___SC_DEVICE_SPECIFIC_R_1356, -___SC_FD_MGMT_1357, -___SC_FIFO_1358, -___SC_PIPE_1359, -___SC_FILE_ATTRIBUTES_1360, -___SC_FILE_LOCKING_1361, -___SC_FILE_SYSTEM_1362, -___SC_MONOTONIC_CLOCK_1363, -___SC_MULTI_PROCESS_1364, -___SC_SINGLE_PROCESS_1365, -___SC_NETWORKING_1366, -___SC_READER_WRITER_LOCKS_1367, -___SC_SPIN_LOCKS_1368, -___SC_REGEXP_1369, -___SC_REGEX_VERSION_1370, -___SC_SHELL_1371, -___SC_SIGNALS_1372, -___SC_SPAWN_1373, -___SC_SPORADIC_SERVER_1374, -___SC_THREAD_SPORADIC_SERVER_1375, -___SC_SYSTEM_DATABASE_1376, -___SC_SYSTEM_DATABASE_R_1377, -___SC_TIMEOUTS_1378, -___SC_TYPED_MEMORY_OBJECTS_1379, -___SC_USER_GROUPS_1380, -___SC_USER_GROUPS_R_1381, -___SC_2_PBS_1382, -___SC_2_PBS_ACCOUNTING_1383, -___SC_2_PBS_LOCATE_1384, -___SC_2_PBS_MESSAGE_1385, -___SC_2_PBS_TRACK_1386, -___SC_SYMLOOP_MAX_1387, -___SC_STREAMS_1388, -___SC_2_PBS_CHECKPOINT_1389, -___SC_V6_ILP32_OFF32_1390, -___SC_V6_ILP32_OFFBIG_1391, -___SC_V6_LP64_OFF64_1392, -___SC_V6_LPBIG_OFFBIG_1393, -___SC_HOST_NAME_MAX_1394, -___SC_TRACE_1395, -___SC_TRACE_EVENT_FILTER_1396, -___SC_TRACE_INHERIT_1397, -___SC_TRACE_LOG_1398, -___SC_LEVEL1_ICACHE_SIZE_1399, -___SC_LEVEL1_ICACHE_ASSOC_1400, -___SC_LEVEL1_ICACHE_LINESIZE_1401, -___SC_LEVEL1_DCACHE_SIZE_1402, -___SC_LEVEL1_DCACHE_ASSOC_1403, -___SC_LEVEL1_DCACHE_LINESIZE_1404, -___SC_LEVEL2_CACHE_SIZE_1405, -___SC_LEVEL2_CACHE_ASSOC_1406, -___SC_LEVEL2_CACHE_LINESIZE_1407, -___SC_LEVEL3_CACHE_SIZE_1408, -___SC_LEVEL3_CACHE_ASSOC_1409, -___SC_LEVEL3_CACHE_LINESIZE_1410, -___SC_LEVEL4_CACHE_SIZE_1411, -___SC_LEVEL4_CACHE_ASSOC_1412, -___SC_LEVEL4_CACHE_LINESIZE_1413, -___SC_IPV6_1414 = ___SC_LEVEL1_ICACHE_SIZE_1399 + 50, -___SC_RAW_SOCKETS_1415, -___SC_V7_ILP32_OFF32_1416, -___SC_V7_ILP32_OFFBIG_1417, -___SC_V7_LP64_OFF64_1418, -___SC_V7_LPBIG_OFFBIG_1419, -___SC_SS_REPL_MAX_1420, -___SC_TRACE_EVENT_NAME_MAX_1421, -___SC_TRACE_NAME_MAX_1422, -___SC_TRACE_SYS_MAX_1423, -___SC_TRACE_USER_EVENT_MAX_1424, -___SC_XOPEN_STREAMS_1425, -___SC_THREAD_ROBUST_PRIO_INHERIT_1426, -___SC_THREAD_ROBUST_PRIO_PROTECT_1427, +typedef struct ____anonymous_tag_1114_1115 ____fsid_t_1117;// L72:L134 +typedef long int ____clock_t_1118;// L93:L135 +typedef unsigned long int ____rlim_t_1119;// L94:L136 +typedef unsigned long int ____rlim64_t_1120;// L109:L137 +typedef unsigned int ____id_t_1121;// L92:L138 +typedef long int ____time_t_1122;// L93:L139 +typedef unsigned int ____useconds_t_1123;// L92:L140 +typedef long int ____suseconds_t_1124;// L93:L141 +typedef int ____daddr_t_1125;// L91:L143 +typedef int ____key_t_1126;// L91:L144 +typedef int ____clockid_t_1127;// L91:L147 +typedef void * (____timer_t_1128);// L70:L150 +typedef long int ____blksize_t_1129;// L93:L153 +typedef long int ____blkcnt_t_1130;// L93:L158 +typedef long int ____blkcnt64_t_1131;// L108:L159 +typedef unsigned long int ____fsblkcnt_t_1132;// L94:L162 +typedef unsigned long int ____fsblkcnt64_t_1133;// L109:L163 +typedef unsigned long int ____fsfilcnt_t_1134;// L94:L166 +typedef unsigned long int ____fsfilcnt64_t_1135;// L109:L167 +typedef long int ____fsword_t_1136;// L93:L170 +typedef long int ____ssize_t_1137;// L110:L172 +typedef long int ____syscall_slong_t_1138;// L93:L175 +typedef unsigned long int ____syscall_ulong_t_1139;// L94:L177 +typedef ____off64_t_1112 ____loff_t_1140;// L181 +typedef ____quad_t_1102 * (____qaddr_t_1142);// L182 +typedef char * (____caddr_t_1143);// L183 +typedef long int ____intptr_t_1144;// L110:L186 +typedef unsigned int ____socklen_t_1145;// L92:L189 +typedef ____ssize_t_49 __ssize_t_1146;// L223 +typedef ____ssize_t_1137 __ssize_t_1147;// L223 +typedef long int __ptrdiff_t_1149;// L143:L324 +typedef long unsigned int __size_t_1150;// L177:L209 +typedef ____gid_t_18 __gid_t_1153;// L235 +typedef ____gid_t_1106 __gid_t_1154;// L235 +typedef ____uid_t_17 __uid_t_1156;// L240 +typedef ____uid_t_1105 __uid_t_1157;// L240 +typedef ____off_t_1111 __off_t_1159;// L246 +typedef ____off64_t_1112 __off_t_1161;// L248 +typedef ____useconds_t_35 __useconds_t_1163;// L258 +typedef ____useconds_t_1123 __useconds_t_1164;// L258 +typedef ____pid_t_25 __pid_t_1166;// L263 +typedef ____pid_t_1113 __pid_t_1167;// L263 +typedef ____pid_t_25 __pid_t_1169;// L263 +typedef ____pid_t_1113 __pid_t_1170;// L263 +typedef ____intptr_t_56 __intptr_t_1172;// L270 +typedef ____intptr_t_1144 __intptr_t_1173;// L270 +typedef ____socklen_t_57 __socklen_t_1174;// L277 +typedef ____socklen_t_1145 __socklen_t_1175;// L277 +enum ____anonymous_tag_1495_1496 { +___PC_LINK_MAX_1474, +___PC_MAX_CANON_1475, +___PC_MAX_INPUT_1476, +___PC_NAME_MAX_1477, +___PC_PATH_MAX_1478, +___PC_PIPE_BUF_1479, +___PC_CHOWN_RESTRICTED_1480, +___PC_NO_TRUNC_1481, +___PC_VDISABLE_1482, +___PC_SYNC_IO_1483, +___PC_ASYNC_IO_1484, +___PC_PRIO_IO_1485, +___PC_SOCK_MAXBUF_1486, +___PC_FILESIZEBITS_1487, +___PC_REC_INCR_XFER_SIZE_1488, +___PC_REC_MAX_XFER_SIZE_1489, +___PC_REC_MIN_XFER_SIZE_1490, +___PC_REC_XFER_ALIGN_1491, +___PC_ALLOC_SIZE_MIN_1492, +___PC_SYMLINK_MAX_1493, +___PC_2_SYMLINKS_1494, }; -enum ____anonymous_tag_1494_1495 { -___CS_PATH_1430, -___CS_V6_WIDTH_RESTRICTED_ENVS_1431, -___CS_GNU_LIBC_VERSION_1432, -___CS_GNU_LIBPTHREAD_VERSION_1433, -___CS_V5_WIDTH_RESTRICTED_ENVS_1434, -___CS_V7_WIDTH_RESTRICTED_ENVS_1435, -___CS_LFS_CFLAGS_1436 = 1000, -___CS_LFS_LDFLAGS_1437, -___CS_LFS_LIBS_1438, -___CS_LFS_LINTFLAGS_1439, -___CS_LFS64_CFLAGS_1440, -___CS_LFS64_LDFLAGS_1441, -___CS_LFS64_LIBS_1442, -___CS_LFS64_LINTFLAGS_1443, -___CS_XBS5_ILP32_OFF32_CFLAGS_1444 = 1100, -___CS_XBS5_ILP32_OFF32_LDFLAGS_1445, -___CS_XBS5_ILP32_OFF32_LIBS_1446, -___CS_XBS5_ILP32_OFF32_LINTFLAGS_1447, -___CS_XBS5_ILP32_OFFBIG_CFLAGS_1448, -___CS_XBS5_ILP32_OFFBIG_LDFLAGS_1449, -___CS_XBS5_ILP32_OFFBIG_LIBS_1450, -___CS_XBS5_ILP32_OFFBIG_LINTFLAGS_1451, -___CS_XBS5_LP64_OFF64_CFLAGS_1452, -___CS_XBS5_LP64_OFF64_LDFLAGS_1453, -___CS_XBS5_LP64_OFF64_LIBS_1454, -___CS_XBS5_LP64_OFF64_LINTFLAGS_1455, -___CS_XBS5_LPBIG_OFFBIG_CFLAGS_1456, -___CS_XBS5_LPBIG_OFFBIG_LDFLAGS_1457, -___CS_XBS5_LPBIG_OFFBIG_LIBS_1458, -___CS_XBS5_LPBIG_OFFBIG_LINTFLAGS_1459, -___CS_POSIX_V6_ILP32_OFF32_CFLAGS_1460, -___CS_POSIX_V6_ILP32_OFF32_LDFLAGS_1461, -___CS_POSIX_V6_ILP32_OFF32_LIBS_1462, -___CS_POSIX_V6_ILP32_OFF32_LINTFLAGS_1463, -___CS_POSIX_V6_ILP32_OFFBIG_CFLAGS_1464, -___CS_POSIX_V6_ILP32_OFFBIG_LDFLAGS_1465, -___CS_POSIX_V6_ILP32_OFFBIG_LIBS_1466, -___CS_POSIX_V6_ILP32_OFFBIG_LINTFLAGS_1467, -___CS_POSIX_V6_LP64_OFF64_CFLAGS_1468, -___CS_POSIX_V6_LP64_OFF64_LDFLAGS_1469, -___CS_POSIX_V6_LP64_OFF64_LIBS_1470, -___CS_POSIX_V6_LP64_OFF64_LINTFLAGS_1471, -___CS_POSIX_V6_LPBIG_OFFBIG_CFLAGS_1472, -___CS_POSIX_V6_LPBIG_OFFBIG_LDFLAGS_1473, -___CS_POSIX_V6_LPBIG_OFFBIG_LIBS_1474, -___CS_POSIX_V6_LPBIG_OFFBIG_LINTFLAGS_1475, -___CS_POSIX_V7_ILP32_OFF32_CFLAGS_1476, -___CS_POSIX_V7_ILP32_OFF32_LDFLAGS_1477, -___CS_POSIX_V7_ILP32_OFF32_LIBS_1478, -___CS_POSIX_V7_ILP32_OFF32_LINTFLAGS_1479, -___CS_POSIX_V7_ILP32_OFFBIG_CFLAGS_1480, -___CS_POSIX_V7_ILP32_OFFBIG_LDFLAGS_1481, -___CS_POSIX_V7_ILP32_OFFBIG_LIBS_1482, -___CS_POSIX_V7_ILP32_OFFBIG_LINTFLAGS_1483, -___CS_POSIX_V7_LP64_OFF64_CFLAGS_1484, -___CS_POSIX_V7_LP64_OFF64_LDFLAGS_1485, -___CS_POSIX_V7_LP64_OFF64_LIBS_1486, -___CS_POSIX_V7_LP64_OFF64_LINTFLAGS_1487, -___CS_POSIX_V7_LPBIG_OFFBIG_CFLAGS_1488, -___CS_POSIX_V7_LPBIG_OFFBIG_LDFLAGS_1489, -___CS_POSIX_V7_LPBIG_OFFBIG_LIBS_1490, -___CS_POSIX_V7_LPBIG_OFFBIG_LINTFLAGS_1491, -___CS_V6_ENV_1492, -___CS_V7_ENV_1493, +enum ____anonymous_tag_1712_1713 { +___SC_ARG_MAX_1497, +___SC_CHILD_MAX_1498, +___SC_CLK_TCK_1499, +___SC_NGROUPS_MAX_1500, +___SC_OPEN_MAX_1501, +___SC_STREAM_MAX_1502, +___SC_TZNAME_MAX_1503, +___SC_JOB_CONTROL_1504, +___SC_SAVED_IDS_1505, +___SC_REALTIME_SIGNALS_1506, +___SC_PRIORITY_SCHEDULING_1507, +___SC_TIMERS_1508, +___SC_ASYNCHRONOUS_IO_1509, +___SC_PRIORITIZED_IO_1510, +___SC_SYNCHRONIZED_IO_1511, +___SC_FSYNC_1512, +___SC_MAPPED_FILES_1513, +___SC_MEMLOCK_1514, +___SC_MEMLOCK_RANGE_1515, +___SC_MEMORY_PROTECTION_1516, +___SC_MESSAGE_PASSING_1517, +___SC_SEMAPHORES_1518, +___SC_SHARED_MEMORY_OBJECTS_1519, +___SC_AIO_LISTIO_MAX_1520, +___SC_AIO_MAX_1521, +___SC_AIO_PRIO_DELTA_MAX_1522, +___SC_DELAYTIMER_MAX_1523, +___SC_MQ_OPEN_MAX_1524, +___SC_MQ_PRIO_MAX_1525, +___SC_VERSION_1526, +___SC_PAGESIZE_1527, +___SC_RTSIG_MAX_1528, +___SC_SEM_NSEMS_MAX_1529, +___SC_SEM_VALUE_MAX_1530, +___SC_SIGQUEUE_MAX_1531, +___SC_TIMER_MAX_1532, +___SC_BC_BASE_MAX_1533, +___SC_BC_DIM_MAX_1534, +___SC_BC_SCALE_MAX_1535, +___SC_BC_STRING_MAX_1536, +___SC_COLL_WEIGHTS_MAX_1537, +___SC_EQUIV_CLASS_MAX_1538, +___SC_EXPR_NEST_MAX_1539, +___SC_LINE_MAX_1540, +___SC_RE_DUP_MAX_1541, +___SC_CHARCLASS_NAME_MAX_1542, +___SC_2_VERSION_1543, +___SC_2_C_BIND_1544, +___SC_2_C_DEV_1545, +___SC_2_FORT_DEV_1546, +___SC_2_FORT_RUN_1547, +___SC_2_SW_DEV_1548, +___SC_2_LOCALEDEF_1549, +___SC_PII_1550, +___SC_PII_XTI_1551, +___SC_PII_SOCKET_1552, +___SC_PII_INTERNET_1553, +___SC_PII_OSI_1554, +___SC_POLL_1555, +___SC_SELECT_1556, +___SC_UIO_MAXIOV_1557, +___SC_IOV_MAX_1558 = ___SC_UIO_MAXIOV_1557 , +___SC_PII_INTERNET_STREAM_1559, +___SC_PII_INTERNET_DGRAM_1560, +___SC_PII_OSI_COTS_1561, +___SC_PII_OSI_CLTS_1562, +___SC_PII_OSI_M_1563, +___SC_T_IOV_MAX_1564, +___SC_THREADS_1565, +___SC_THREAD_SAFE_FUNCTIONS_1566, +___SC_GETGR_R_SIZE_MAX_1567, +___SC_GETPW_R_SIZE_MAX_1568, +___SC_LOGIN_NAME_MAX_1569, +___SC_TTY_NAME_MAX_1570, +___SC_THREAD_DESTRUCTOR_ITERATIONS_1571, +___SC_THREAD_KEYS_MAX_1572, +___SC_THREAD_STACK_MIN_1573, +___SC_THREAD_THREADS_MAX_1574, +___SC_THREAD_ATTR_STACKADDR_1575, +___SC_THREAD_ATTR_STACKSIZE_1576, +___SC_THREAD_PRIORITY_SCHEDULING_1577, +___SC_THREAD_PRIO_INHERIT_1578, +___SC_THREAD_PRIO_PROTECT_1579, +___SC_THREAD_PROCESS_SHARED_1580, +___SC_NPROCESSORS_CONF_1581, +___SC_NPROCESSORS_ONLN_1582, +___SC_PHYS_PAGES_1583, +___SC_AVPHYS_PAGES_1584, +___SC_ATEXIT_MAX_1585, +___SC_PASS_MAX_1586, +___SC_XOPEN_VERSION_1587, +___SC_XOPEN_XCU_VERSION_1588, +___SC_XOPEN_UNIX_1589, +___SC_XOPEN_CRYPT_1590, +___SC_XOPEN_ENH_I18N_1591, +___SC_XOPEN_SHM_1592, +___SC_2_CHAR_TERM_1593, +___SC_2_C_VERSION_1594, +___SC_2_UPE_1595, +___SC_XOPEN_XPG2_1596, +___SC_XOPEN_XPG3_1597, +___SC_XOPEN_XPG4_1598, +___SC_CHAR_BIT_1599, +___SC_CHAR_MAX_1600, +___SC_CHAR_MIN_1601, +___SC_INT_MAX_1602, +___SC_INT_MIN_1603, +___SC_LONG_BIT_1604, +___SC_WORD_BIT_1605, +___SC_MB_LEN_MAX_1606, +___SC_NZERO_1607, +___SC_SSIZE_MAX_1608, +___SC_SCHAR_MAX_1609, +___SC_SCHAR_MIN_1610, +___SC_SHRT_MAX_1611, +___SC_SHRT_MIN_1612, +___SC_UCHAR_MAX_1613, +___SC_UINT_MAX_1614, +___SC_ULONG_MAX_1615, +___SC_USHRT_MAX_1616, +___SC_NL_ARGMAX_1617, +___SC_NL_LANGMAX_1618, +___SC_NL_MSGMAX_1619, +___SC_NL_NMAX_1620, +___SC_NL_SETMAX_1621, +___SC_NL_TEXTMAX_1622, +___SC_XBS5_ILP32_OFF32_1623, +___SC_XBS5_ILP32_OFFBIG_1624, +___SC_XBS5_LP64_OFF64_1625, +___SC_XBS5_LPBIG_OFFBIG_1626, +___SC_XOPEN_LEGACY_1627, +___SC_XOPEN_REALTIME_1628, +___SC_XOPEN_REALTIME_THREADS_1629, +___SC_ADVISORY_INFO_1630, +___SC_BARRIERS_1631, +___SC_BASE_1632, +___SC_C_LANG_SUPPORT_1633, +___SC_C_LANG_SUPPORT_R_1634, +___SC_CLOCK_SELECTION_1635, +___SC_CPUTIME_1636, +___SC_THREAD_CPUTIME_1637, +___SC_DEVICE_IO_1638, +___SC_DEVICE_SPECIFIC_1639, +___SC_DEVICE_SPECIFIC_R_1640, +___SC_FD_MGMT_1641, +___SC_FIFO_1642, +___SC_PIPE_1643, +___SC_FILE_ATTRIBUTES_1644, +___SC_FILE_LOCKING_1645, +___SC_FILE_SYSTEM_1646, +___SC_MONOTONIC_CLOCK_1647, +___SC_MULTI_PROCESS_1648, +___SC_SINGLE_PROCESS_1649, +___SC_NETWORKING_1650, +___SC_READER_WRITER_LOCKS_1651, +___SC_SPIN_LOCKS_1652, +___SC_REGEXP_1653, +___SC_REGEX_VERSION_1654, +___SC_SHELL_1655, +___SC_SIGNALS_1656, +___SC_SPAWN_1657, +___SC_SPORADIC_SERVER_1658, +___SC_THREAD_SPORADIC_SERVER_1659, +___SC_SYSTEM_DATABASE_1660, +___SC_SYSTEM_DATABASE_R_1661, +___SC_TIMEOUTS_1662, +___SC_TYPED_MEMORY_OBJECTS_1663, +___SC_USER_GROUPS_1664, +___SC_USER_GROUPS_R_1665, +___SC_2_PBS_1666, +___SC_2_PBS_ACCOUNTING_1667, +___SC_2_PBS_LOCATE_1668, +___SC_2_PBS_MESSAGE_1669, +___SC_2_PBS_TRACK_1670, +___SC_SYMLOOP_MAX_1671, +___SC_STREAMS_1672, +___SC_2_PBS_CHECKPOINT_1673, +___SC_V6_ILP32_OFF32_1674, +___SC_V6_ILP32_OFFBIG_1675, +___SC_V6_LP64_OFF64_1676, +___SC_V6_LPBIG_OFFBIG_1677, +___SC_HOST_NAME_MAX_1678, +___SC_TRACE_1679, +___SC_TRACE_EVENT_FILTER_1680, +___SC_TRACE_INHERIT_1681, +___SC_TRACE_LOG_1682, +___SC_LEVEL1_ICACHE_SIZE_1683, +___SC_LEVEL1_ICACHE_ASSOC_1684, +___SC_LEVEL1_ICACHE_LINESIZE_1685, +___SC_LEVEL1_DCACHE_SIZE_1686, +___SC_LEVEL1_DCACHE_ASSOC_1687, +___SC_LEVEL1_DCACHE_LINESIZE_1688, +___SC_LEVEL2_CACHE_SIZE_1689, +___SC_LEVEL2_CACHE_ASSOC_1690, +___SC_LEVEL2_CACHE_LINESIZE_1691, +___SC_LEVEL3_CACHE_SIZE_1692, +___SC_LEVEL3_CACHE_ASSOC_1693, +___SC_LEVEL3_CACHE_LINESIZE_1694, +___SC_LEVEL4_CACHE_SIZE_1695, +___SC_LEVEL4_CACHE_ASSOC_1696, +___SC_LEVEL4_CACHE_LINESIZE_1697, +___SC_IPV6_1698 = ___SC_LEVEL1_ICACHE_SIZE_1683 + 50, +___SC_RAW_SOCKETS_1699, +___SC_V7_ILP32_OFF32_1700, +___SC_V7_ILP32_OFFBIG_1701, +___SC_V7_LP64_OFF64_1702, +___SC_V7_LPBIG_OFFBIG_1703, +___SC_SS_REPL_MAX_1704, +___SC_TRACE_EVENT_NAME_MAX_1705, +___SC_TRACE_NAME_MAX_1706, +___SC_TRACE_SYS_MAX_1707, +___SC_TRACE_USER_EVENT_MAX_1708, +___SC_XOPEN_STREAMS_1709, +___SC_THREAD_ROBUST_PRIO_INHERIT_1710, +___SC_THREAD_ROBUST_PRIO_PROTECT_1711, +}; +enum ____anonymous_tag_1778_1779 { +___CS_PATH_1714, +___CS_V6_WIDTH_RESTRICTED_ENVS_1715, +___CS_GNU_LIBC_VERSION_1716, +___CS_GNU_LIBPTHREAD_VERSION_1717, +___CS_V5_WIDTH_RESTRICTED_ENVS_1718, +___CS_V7_WIDTH_RESTRICTED_ENVS_1719, +___CS_LFS_CFLAGS_1720 = 1000, +___CS_LFS_LDFLAGS_1721, +___CS_LFS_LIBS_1722, +___CS_LFS_LINTFLAGS_1723, +___CS_LFS64_CFLAGS_1724, +___CS_LFS64_LDFLAGS_1725, +___CS_LFS64_LIBS_1726, +___CS_LFS64_LINTFLAGS_1727, +___CS_XBS5_ILP32_OFF32_CFLAGS_1728 = 1100, +___CS_XBS5_ILP32_OFF32_LDFLAGS_1729, +___CS_XBS5_ILP32_OFF32_LIBS_1730, +___CS_XBS5_ILP32_OFF32_LINTFLAGS_1731, +___CS_XBS5_ILP32_OFFBIG_CFLAGS_1732, +___CS_XBS5_ILP32_OFFBIG_LDFLAGS_1733, +___CS_XBS5_ILP32_OFFBIG_LIBS_1734, +___CS_XBS5_ILP32_OFFBIG_LINTFLAGS_1735, +___CS_XBS5_LP64_OFF64_CFLAGS_1736, +___CS_XBS5_LP64_OFF64_LDFLAGS_1737, +___CS_XBS5_LP64_OFF64_LIBS_1738, +___CS_XBS5_LP64_OFF64_LINTFLAGS_1739, +___CS_XBS5_LPBIG_OFFBIG_CFLAGS_1740, +___CS_XBS5_LPBIG_OFFBIG_LDFLAGS_1741, +___CS_XBS5_LPBIG_OFFBIG_LIBS_1742, +___CS_XBS5_LPBIG_OFFBIG_LINTFLAGS_1743, +___CS_POSIX_V6_ILP32_OFF32_CFLAGS_1744, +___CS_POSIX_V6_ILP32_OFF32_LDFLAGS_1745, +___CS_POSIX_V6_ILP32_OFF32_LIBS_1746, +___CS_POSIX_V6_ILP32_OFF32_LINTFLAGS_1747, +___CS_POSIX_V6_ILP32_OFFBIG_CFLAGS_1748, +___CS_POSIX_V6_ILP32_OFFBIG_LDFLAGS_1749, +___CS_POSIX_V6_ILP32_OFFBIG_LIBS_1750, +___CS_POSIX_V6_ILP32_OFFBIG_LINTFLAGS_1751, +___CS_POSIX_V6_LP64_OFF64_CFLAGS_1752, +___CS_POSIX_V6_LP64_OFF64_LDFLAGS_1753, +___CS_POSIX_V6_LP64_OFF64_LIBS_1754, +___CS_POSIX_V6_LP64_OFF64_LINTFLAGS_1755, +___CS_POSIX_V6_LPBIG_OFFBIG_CFLAGS_1756, +___CS_POSIX_V6_LPBIG_OFFBIG_LDFLAGS_1757, +___CS_POSIX_V6_LPBIG_OFFBIG_LIBS_1758, +___CS_POSIX_V6_LPBIG_OFFBIG_LINTFLAGS_1759, +___CS_POSIX_V7_ILP32_OFF32_CFLAGS_1760, +___CS_POSIX_V7_ILP32_OFF32_LDFLAGS_1761, +___CS_POSIX_V7_ILP32_OFF32_LIBS_1762, +___CS_POSIX_V7_ILP32_OFF32_LINTFLAGS_1763, +___CS_POSIX_V7_ILP32_OFFBIG_CFLAGS_1764, +___CS_POSIX_V7_ILP32_OFFBIG_LDFLAGS_1765, +___CS_POSIX_V7_ILP32_OFFBIG_LIBS_1766, +___CS_POSIX_V7_ILP32_OFFBIG_LINTFLAGS_1767, +___CS_POSIX_V7_LP64_OFF64_CFLAGS_1768, +___CS_POSIX_V7_LP64_OFF64_LDFLAGS_1769, +___CS_POSIX_V7_LP64_OFF64_LIBS_1770, +___CS_POSIX_V7_LP64_OFF64_LINTFLAGS_1771, +___CS_POSIX_V7_LPBIG_OFFBIG_CFLAGS_1772, +___CS_POSIX_V7_LPBIG_OFFBIG_LDFLAGS_1773, +___CS_POSIX_V7_LPBIG_OFFBIG_LIBS_1774, +___CS_POSIX_V7_LPBIG_OFFBIG_LINTFLAGS_1775, +___CS_V6_ENV_1776, +___CS_V7_ENV_1777, }; -struct __forward_tag_reference_57 { // generated union of struct variations +struct __forward_tag_reference_89 { // generated union of struct variations union { -struct ___IO_FILE_95 ___IO_FILE_95; -struct ___IO_FILE_119 ___IO_FILE_119; +struct ___IO_marker_90 ___IO_marker_90; }; }; -struct __forward_tag_reference_85 { // generated union of struct variations +struct __forward_tag_reference_58 { // generated union of struct variations union { -struct ___IO_marker_86 ___IO_marker_86; +struct ___IO_FILE_99 ___IO_FILE_99; +struct ___IO_FILE_124 ___IO_FILE_124; }; }; -struct __forward_tag_reference_83 { // generated union of struct variations +struct __forward_tag_reference_87 { // generated union of struct variations union { }; }; -struct __forward_tag_reference_166 { // generated union of struct variations +struct __forward_tag_reference_174 { // generated union of struct variations union { }; }; @@ -1566,225 +2296,225 @@ union { // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_57 ;// L0 +struct __forward_tag_reference_58 ;// L0 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_83 ;// L0 -struct __forward_tag_reference_83 ;// L0 -struct __forward_tag_reference_57 ;// L0 +struct __forward_tag_reference_87 ;// L0 +struct __forward_tag_reference_87 ;// L0 +struct __forward_tag_reference_58 ;// L0 // typedef moved to top of scope -struct ___IO_marker_86 ;// L156 -enum ____codecvt_result_94 ;// L176 -struct ___IO_FILE_95 ;// L241 +struct ___IO_marker_90 ;// L156 +enum ____codecvt_result_98 ;// L176 +struct ___IO_FILE_99 ;// L241 -struct ___IO_FILE_119 ;// L241 -struct ___IO_FILE_complete_150 ;// L241 +struct ___IO_FILE_124 ;// L241 +struct ___IO_FILE_complete_157 ;// L241 // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_166 ;// L0 -extern struct __forward_tag_reference_166 ___IO_2_1_stdin__167;// L315 -extern struct __forward_tag_reference_166 ___IO_2_1_stdout__168;// L316 -extern struct __forward_tag_reference_166 ___IO_2_1_stderr__169;// L317 +struct __forward_tag_reference_174 ;// L0 +extern struct __forward_tag_reference_174 ___IO_2_1_stdin__175;// L315 +extern struct __forward_tag_reference_174 ___IO_2_1_stdout__176;// L316 +extern struct __forward_tag_reference_174 ___IO_2_1_stderr__177;// L317 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern int (____underflow_184) (___IO_FILE_163 *);// L385 -extern int (____underflow_185) (___IO_FILE_164 *);// L385 -extern int (____uflow_186) (___IO_FILE_163 *);// L386 -extern int (____uflow_187) (___IO_FILE_164 *);// L386 -extern int (____overflow_188) (___IO_FILE_163 *, int );// L387 -extern int (____overflow_189) (___IO_FILE_164 *, int );// L387 -extern int (___IO_getc_193) (___IO_FILE_163 * (____fp_190));// L429 -extern int (___IO_getc_194) (___IO_FILE_164 * (____fp_191));// L429 -extern int (___IO_putc_199) (int ____c_195, ___IO_FILE_163 * (____fp_196));// L430 -extern int (___IO_putc_200) (int ____c_195, ___IO_FILE_164 * (____fp_197));// L430 -extern int (___IO_feof_204) (___IO_FILE_163 * (____fp_201));// L431 -extern int (___IO_feof_205) (___IO_FILE_164 * (____fp_202));// L431 -extern int (___IO_ferror_209) (___IO_FILE_163 * (____fp_206));// L432 -extern int (___IO_ferror_210) (___IO_FILE_164 * (____fp_207));// L432 -extern int (___IO_peekc_locked_214) (___IO_FILE_163 * (____fp_211));// L434 -extern int (___IO_peekc_locked_215) (___IO_FILE_164 * (____fp_212));// L434 -extern void (___IO_flockfile_216) (___IO_FILE_163 *);// L440 -extern void (___IO_flockfile_217) (___IO_FILE_164 *);// L440 -extern void (___IO_funlockfile_218) (___IO_FILE_163 *);// L441 -extern void (___IO_funlockfile_219) (___IO_FILE_164 *);// L441 -extern int (___IO_ftrylockfile_220) (___IO_FILE_163 *);// L442 -extern int (___IO_ftrylockfile_221) (___IO_FILE_164 *);// L442 -extern int (___IO_vfscanf_222) (___IO_FILE_163 * __restrict , const char * __restrict , ____gnuc_va_list_82 , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_224) (___IO_FILE_164 * __restrict , const char * __restrict , ____gnuc_va_list_82 , int * __restrict );// L459:L460 - - -extern int (___IO_vfprintf_231) (___IO_FILE_163 * __restrict , const char * __restrict , ____gnuc_va_list_82 );// L461:L462 -extern int (___IO_vfprintf_233) (___IO_FILE_164 * __restrict , const char * __restrict , ____gnuc_va_list_82 );// L461:L462 - -extern ____ssize_t_49 (___IO_padn_238) (___IO_FILE_163 *, int , ____ssize_t_49 );// L463 -extern ____ssize_t_49 (___IO_padn_239) (___IO_FILE_164 *, int , ____ssize_t_49 );// L463 -extern __size_t_1 (___IO_sgetn_240) (___IO_FILE_163 *, void *, __size_t_1 );// L464 -extern __size_t_1 (___IO_sgetn_241) (___IO_FILE_164 *, void *, __size_t_1 );// L464 -extern ____off64_t_24 (___IO_seekoff_242) (___IO_FILE_163 *, ____off64_t_24 , int , int );// L466 -extern ____off64_t_24 (___IO_seekoff_243) (___IO_FILE_164 *, ____off64_t_24 , int , int );// L466 -extern ____off64_t_24 (___IO_seekpos_244) (___IO_FILE_163 *, ____off64_t_24 , int );// L467 -extern ____off64_t_24 (___IO_seekpos_245) (___IO_FILE_164 *, ____off64_t_24 , int );// L467 -extern void (___IO_free_backup_area_246) (___IO_FILE_163 *);// L469 -extern void (___IO_free_backup_area_247) (___IO_FILE_164 *);// L469 +extern int (____underflow_196) (___IO_FILE_171 *);// L385 +extern int (____underflow_197) (___IO_FILE_172 *);// L385 +extern int (____uflow_199) (___IO_FILE_171 *);// L386 +extern int (____uflow_200) (___IO_FILE_172 *);// L386 +extern int (____overflow_202) (___IO_FILE_171 *, int );// L387 +extern int (____overflow_203) (___IO_FILE_172 *, int );// L387 +extern int (___IO_getc_208) (___IO_FILE_171 * (____fp_205));// L429 +extern int (___IO_getc_209) (___IO_FILE_172 * (____fp_206));// L429 +extern int (___IO_putc_215) (int ____c_211, ___IO_FILE_171 * (____fp_212));// L430 +extern int (___IO_putc_216) (int ____c_211, ___IO_FILE_172 * (____fp_213));// L430 +extern int (___IO_feof_221) (___IO_FILE_171 * (____fp_218));// L431 +extern int (___IO_feof_222) (___IO_FILE_172 * (____fp_219));// L431 +extern int (___IO_ferror_227) (___IO_FILE_171 * (____fp_224));// L432 +extern int (___IO_ferror_228) (___IO_FILE_172 * (____fp_225));// L432 +extern int (___IO_peekc_locked_233) (___IO_FILE_171 * (____fp_230));// L434 +extern int (___IO_peekc_locked_234) (___IO_FILE_172 * (____fp_231));// L434 +extern void (___IO_flockfile_236) (___IO_FILE_171 *);// L440 +extern void (___IO_flockfile_237) (___IO_FILE_172 *);// L440 +extern void (___IO_funlockfile_239) (___IO_FILE_171 *);// L441 +extern void (___IO_funlockfile_240) (___IO_FILE_172 *);// L441 +extern int (___IO_ftrylockfile_242) (___IO_FILE_171 *);// L442 +extern int (___IO_ftrylockfile_243) (___IO_FILE_172 *);// L442 +extern int (___IO_vfscanf_245) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_247) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_251) (___IO_FILE_171 * __restrict , const char * __restrict , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_252) (___IO_FILE_172 * __restrict , const char * __restrict , int * __restrict );// L459:L460 +extern int (___IO_vfprintf_254) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 +extern int (___IO_vfprintf_256) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 +extern int (___IO_vfprintf_260) ();// L461:L462 +extern ____ssize_t_49 (___IO_padn_261) (___IO_FILE_171 *, int , ____ssize_t_49 );// L463 +extern ____ssize_t_49 (___IO_padn_262) (___IO_FILE_172 *, int , ____ssize_t_49 );// L463 +extern __size_t_1 (___IO_sgetn_265) (___IO_FILE_171 *, void *, __size_t_1 );// L464 +extern __size_t_1 (___IO_sgetn_266) (___IO_FILE_172 *, void *, __size_t_1 );// L464 +extern ____off64_t_24 (___IO_seekoff_268) (___IO_FILE_171 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekoff_269) (___IO_FILE_172 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekpos_272) (___IO_FILE_171 *, ____off64_t_24 , int );// L467 +extern ____off64_t_24 (___IO_seekpos_273) (___IO_FILE_172 *, ____off64_t_24 , int );// L467 +extern void (___IO_free_backup_area_276) (___IO_FILE_171 *);// L469 +extern void (___IO_free_backup_area_277) (___IO_FILE_172 *);// L469 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern struct ___IO_FILE_95 * (__stdin_257);// L168 -extern struct ___IO_FILE_119 * (__stdin_258);// L168 -extern struct ___IO_FILE_95 * (__stdout_259);// L169 -extern struct ___IO_FILE_119 * (__stdout_260);// L169 -extern struct ___IO_FILE_95 * (__stderr_261);// L170 -extern struct ___IO_FILE_119 * (__stderr_262);// L170 -extern int (__remove_264) (const char * (____filename_263));// L178 -extern int (__rename_267) (const char * (____old_265), const char * (____new_266));// L180 -extern int (__renameat_272) (int ____oldfd_268, const char * (____old_269), int ____newfd_270, const char * (____new_271));// L185:L186 -extern __FILE_58 * ((__tmpfile_273) (void ));// L195 -extern __FILE_58 * ((__tmpfile_279) (void ));// L198 -extern __FILE_58 * ((__tmpfile_277) (void ));// L198 -extern __FILE_58 * ((__tmpfile_275) (void ));// L195 -extern char * ((__tmpnam_282) (char * (____s_281)));// L209 -extern char * ((__tmpnam_283) (char * (____s_281)));// L209 -extern char * ((__tmpnam_r_285) (char * (____s_284)));// L215 -extern char * ((__tmpnam_r_286) (char * (____s_284)));// L215 -extern char * ((__tempnam_289) (const char * (____dir_287), const char * (____pfx_288)));// L227:L228 -extern char * ((__tempnam_290) (const char * (____dir_287), const char * (____pfx_288)));// L227:L228 -extern int (__fclose_293) (__FILE_58 * (____stream_291));// L237 -extern int (__fclose_295) (__FILE_58 * (____stream_291));// L237 -extern int (__fflush_299) (__FILE_58 * (____stream_297));// L242 -extern int (__fflush_unlocked_303) (__FILE_58 * (____stream_301));// L252 -extern __FILE_58 * ((__fopen_307) (const char * __restrict ____filename_305, const char * __restrict ____modes_306));// L272:L273 -extern __FILE_58 * ((__fopen_309) (const char * __restrict ____filename_305, const char * __restrict ____modes_306));// L272:L273 -extern __FILE_58 * ((__fopen_317) (const char * __restrict ____filename_315, const char * __restrict ____modes_316));// L283:L285 -extern __FILE_58 * ((__fopen_319) (const char * __restrict ____filename_315, const char * __restrict ____modes_316));// L283:L285 -extern __FILE_58 * ((__freopen_325) (const char * __restrict ____filename_311, const char * __restrict ____modes_312, __FILE_58 * __restrict ____stream_313));// L278:L280 -extern __FILE_58 * ((__freopen_331) (const char * __restrict ____filename_321, const char * __restrict ____modes_322, __FILE_58 * __restrict ____stream_323));// L286:L289 -extern __FILE_58 * ((__freopen_329) (const char * __restrict ____filename_321, const char * __restrict ____modes_322, __FILE_58 * __restrict ____stream_323));// L286:L289 -extern __FILE_58 * ((__freopen_327) (const char * __restrict ____filename_311, const char * __restrict ____modes_312, __FILE_58 * __restrict ____stream_313));// L278:L280 -extern __FILE_58 * ((__fdopen_335) (int ____fd_333, const char * (____modes_334)));// L306 -extern __FILE_58 * ((__fdopen_337) (int ____fd_333, const char * (____modes_334)));// L306 -extern __FILE_58 * ((__fmemopen_342) (void * (____s_339), __size_t_1 ____len_340, const char * (____modes_341)));// L319:L320 -extern __FILE_58 * ((__fmemopen_344) (void * (____s_339), __size_t_1 ____len_340, const char * (____modes_341)));// L319:L320 -extern __FILE_58 * ((__open_memstream_348) (char * (* (____bufloc_346)), __size_t_1 * (____sizeloc_347)));// L325 -extern __FILE_58 * ((__open_memstream_350) (char * (* (____bufloc_346)), __size_t_1 * (____sizeloc_347)));// L325 -extern void (__setbuf_355) (__FILE_58 * __restrict ____stream_352, char * __restrict ____buf_354);// L332 -extern void (__setbuf_357) (__FILE_58 * __restrict ____stream_352, char * __restrict ____buf_354);// L332 -extern int (__setvbuf_364) (__FILE_58 * __restrict ____stream_359, char * __restrict ____buf_361, int ____modes_362, __size_t_1 ____n_363);// L336:L337 -extern void (__setbuffer_369) (__FILE_58 * __restrict ____stream_365, char * __restrict ____buf_367, __size_t_1 ____size_368);// L343:L344 -extern void (__setlinebuf_373) (__FILE_58 * (____stream_371));// L347 -extern int (__fprintf_378) (__FILE_58 * __restrict ____stream_375, const char * __restrict ____format_377, ... );// L356:L357 -extern int (__fprintf_380) (__FILE_58 * __restrict ____stream_375, const char * __restrict ____format_377, ... );// L356:L357 -extern int (__printf_383) (const char * __restrict ____format_382, ... );// L362 -extern int (__sprintf_386) (char * __restrict ____s_384, const char * __restrict ____format_385, ... );// L364:L365 -extern int (__vfprintf_392) (__FILE_58 * __restrict ____s_387, const char * __restrict ____format_389, ____gnuc_va_list_82 ____arg_390);// L371:L372 -extern int (__vprintf_399) (const char * __restrict ____format_396, ____gnuc_va_list_82 ____arg_397);// L377 -extern int (__vsprintf_405) (char * __restrict ____s_401, const char * __restrict ____format_402, ____gnuc_va_list_82 ____arg_403);// L379:L380 -extern int (__snprintf_409) (char * __restrict ____s_406, __size_t_1 ____maxlen_407, const char * __restrict ____format_408, ... );// L386:L388 -extern int (__vsnprintf_415) (char * __restrict ____s_410, __size_t_1 ____maxlen_411, const char * __restrict ____format_412, ____gnuc_va_list_82 ____arg_413);// L390:L392 -extern int (__vdprintf_420) (int ____fd_416, const char * __restrict ____fmt_417, ____gnuc_va_list_82 ____arg_418);// L412:L414 -extern int (__dprintf_424) (int ____fd_422, const char * __restrict ____fmt_423, ... );// L415:L416 -extern int (__fscanf_428) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 -extern int (__fscanf_430) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 -extern int (__fscanf_432) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 -extern int (__fscanf_434) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 -extern int (__scanf_437) (const char * __restrict ____format_436, ... );// L431 -extern int (__scanf_438) (const char * __restrict ____format_436, ... );// L431 -extern int (__sscanf_441) (const char * __restrict ____s_439, const char * __restrict ____format_440, ... );// L433:L434 - - - - - - - -extern int (__vfscanf_468) (__FILE_58 * __restrict ____s_463, const char * __restrict ____format_465, ____gnuc_va_list_82 ____arg_466);// L471:L473 -extern int (__vfscanf_472) (__FILE_58 * __restrict ____s_463, const char * __restrict ____format_465, ____gnuc_va_list_82 ____arg_466);// L471:L473 -extern int (__vscanf_479) (const char * __restrict ____format_476, ____gnuc_va_list_82 ____arg_477);// L479:L480 -extern int (__vscanf_481) (const char * __restrict ____format_476, ____gnuc_va_list_82 ____arg_477);// L479:L480 -extern int (__vsscanf_487) (const char * __restrict ____s_483, const char * __restrict ____format_484, ____gnuc_va_list_82 ____arg_485);// L483:L485 - - - - - -extern int (__fgetc_520) (__FILE_58 * (____stream_518));// L531 -extern int (__getc_523) (__FILE_58 * (____stream_521));// L532 -extern int (__getchar_524) (void );// L538 -extern int (__getc_unlocked_527) (__FILE_58 * (____stream_525));// L550 -extern int (__getchar_unlocked_529) (void );// L551 -extern int (__fgetc_unlocked_532) (__FILE_58 * (____stream_530));// L561 -extern int (__fputc_537) (int ____c_534, __FILE_58 * (____stream_535));// L573 -extern int (__fputc_539) (int ____c_534, __FILE_58 * (____stream_535));// L573 -extern int (__putc_544) (int ____c_541, __FILE_58 * (____stream_542));// L574 -extern int (__putchar_546) (int ____c_545);// L580 -extern int (__fputc_unlocked_550) (int ____c_547, __FILE_58 * (____stream_548));// L594 -extern int (__putc_unlocked_555) (int ____c_552, __FILE_58 * (____stream_553));// L602 -extern int (__putchar_unlocked_558) (int ____c_557);// L603 -extern int (__getw_561) (__FILE_58 * (____stream_559));// L610 -extern int (__putw_566) (int ____w_563, __FILE_58 * (____stream_564));// L613 -extern char * ((__fgets_572) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 -extern char * ((__fgets_574) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 -extern char * ((__fgets_576) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 -extern char * ((__fgets_578) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 -extern ____ssize_t_49 (____getdelim_585) (char * (* __restrict ____lineptr_580), __size_t_1 * __restrict ____n_581, int ____delimiter_582, __FILE_58 * __restrict ____stream_583);// L665:L667 -extern ____ssize_t_49 (____getdelim_587) (char * (* __restrict ____lineptr_580), __size_t_1 * __restrict ____n_581, int ____delimiter_582, __FILE_58 * __restrict ____stream_583);// L665:L667 -extern ____ssize_t_49 (__getdelim_594) (char * (* __restrict ____lineptr_589), __size_t_1 * __restrict ____n_590, int ____delimiter_591, __FILE_58 * __restrict ____stream_592);// L668:L670 -extern ____ssize_t_49 (__getdelim_596) (char * (* __restrict ____lineptr_589), __size_t_1 * __restrict ____n_590, int ____delimiter_591, __FILE_58 * __restrict ____stream_592);// L668:L670 -extern ____ssize_t_49 (__getline_602) (char * (* __restrict ____lineptr_598), __size_t_1 * __restrict ____n_599, __FILE_58 * __restrict ____stream_600);// L678:L680 -extern ____ssize_t_49 (__getline_604) (char * (* __restrict ____lineptr_598), __size_t_1 * __restrict ____n_599, __FILE_58 * __restrict ____stream_600);// L678:L680 -extern int (__fputs_609) (const char * __restrict ____s_606, __FILE_58 * __restrict ____stream_607);// L689 -extern int (__fputs_611) (const char * __restrict ____s_606, __FILE_58 * __restrict ____stream_607);// L689 -extern int (__puts_614) (const char * (____s_613));// L695 -extern int (__ungetc_618) (int ____c_615, __FILE_58 * (____stream_616));// L702 -extern int (__fseek_654) (__FILE_58 * (____stream_650), long int ____off_652, int ____whence_653);// L749 -extern int (__fseek_656) (__FILE_58 * (____stream_650), long int ____off_652, int ____whence_653);// L749 -extern long int (__ftell_660) (__FILE_58 * (____stream_658));// L754 -extern long int (__ftell_662) (__FILE_58 * (____stream_658));// L754 -extern void (__rewind_666) (__FILE_58 * (____stream_664));// L759 -extern int (__fseeko_671) (__FILE_58 * (____stream_667), ____off_t_23 ____off_669, int ____whence_670);// L773 -extern int (__fseeko_679) (__FILE_58 * (____stream_675), ____off64_t_24 ____off_677, int ____whence_678);// L781:L783 -extern ____off_t_23 (__ftello_683) (__FILE_58 * (____stream_673));// L778 -extern ____off_t_23 (__ftello_685) (__FILE_58 * (____stream_673));// L778 -extern int (__fgetpos_693) (__FILE_58 * __restrict ____stream_689, __fpos_t_253 * __restrict ____pos_691);// L798 -extern ____off64_t_24 (__ftello_687) (__FILE_58 * (____stream_681));// L784 -extern int (__fgetpos_705) (__FILE_58 * __restrict ____stream_701, __fpos_t_255 * __restrict ____pos_703);// L806:L807 -extern int (__fsetpos_713) (__FILE_58 * (____stream_697), const __fpos_t_253 * (____pos_699));// L803 -extern int (__fsetpos_717) (__FILE_58 * (____stream_709), const __fpos_t_255 * (____pos_711));// L808:L809 -extern void (__clearerr_723) (__FILE_58 * (____stream_721));// L826 -extern int (__feof_726) (__FILE_58 * (____stream_724));// L828 -extern int (__feof_728) (__FILE_58 * (____stream_724));// L828 -extern int (__ferror_732) (__FILE_58 * (____stream_730));// L830 -extern int (__ferror_734) (__FILE_58 * (____stream_730));// L830 -extern void (__clearerr_unlocked_738) (__FILE_58 * (____stream_736));// L835 -extern int (__feof_unlocked_742) (__FILE_58 * (____stream_740));// L836 -extern int (__feof_unlocked_744) (__FILE_58 * (____stream_740));// L836 -extern int (__ferror_unlocked_748) (__FILE_58 * (____stream_746));// L837 -extern int (__ferror_unlocked_750) (__FILE_58 * (____stream_746));// L837 -extern void (__perror_753) (const char * (____s_752));// L846 -extern void (__perror_754) (const char * (____s_752));// L846 -extern int __sys_nerr_755;// L26 - -extern int (__fileno_761) (__FILE_58 * (____stream_757));// L858 -extern int (__fileno_759) (__FILE_58 * (____stream_757));// L858 -extern int (__fileno_unlocked_767) (__FILE_58 * (____stream_763));// L863 -extern int (__fileno_unlocked_765) (__FILE_58 * (____stream_763));// L863 -extern __FILE_58 * ((__popen_771) (const char * (____command_769), const char * (____modes_770)));// L872 -extern __FILE_58 * ((__popen_773) (const char * (____command_769), const char * (____modes_770)));// L872 -extern int (__pclose_777) (__FILE_58 * (____stream_775));// L878 -extern char * ((__ctermid_780) (char * (____s_779)));// L884 -extern void (__flockfile_783) (__FILE_58 * (____stream_781));// L912 -extern int (__ftrylockfile_787) (__FILE_58 * (____stream_785));// L916 -extern int (__ftrylockfile_789) (__FILE_58 * (____stream_785));// L916 -extern void (__funlockfile_793) (__FILE_58 * (____stream_791));// L919 +extern struct ___IO_FILE_99 * (__stdin_291);// L168 +extern struct ___IO_FILE_124 * (__stdin_292);// L168 +extern struct ___IO_FILE_99 * (__stdout_294);// L169 +extern struct ___IO_FILE_124 * (__stdout_295);// L169 +extern struct ___IO_FILE_99 * (__stderr_297);// L170 +extern struct ___IO_FILE_124 * (__stderr_298);// L170 +extern int (__remove_301) (const char * (____filename_300));// L178 +extern int (__rename_304) (const char * (____old_302), const char * (____new_303));// L180 +extern int (__renameat_309) (int ____oldfd_305, const char * (____old_306), int ____newfd_307, const char * (____new_308));// L185:L186 +extern __FILE_59 * ((__tmpfile_310) (void ));// L195 +extern __FILE_59 * ((__tmpfile_316) (void ));// L198 +extern __FILE_59 * ((__tmpfile_314) (void ));// L195 +extern __FILE_59 * ((__tmpfile_312) (void ));// L198 +extern char * ((__tmpnam_319) (char * (____s_318)));// L209 +extern char * ((__tmpnam_320) (char * (____s_318)));// L209 +extern char * ((__tmpnam_r_322) (char * (____s_321)));// L215 +extern char * ((__tmpnam_r_323) (char * (____s_321)));// L215 +extern char * ((__tempnam_326) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 +extern char * ((__tempnam_327) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 +extern int (__fclose_330) (__FILE_59 * (____stream_328));// L237 +extern int (__fclose_332) (__FILE_59 * (____stream_328));// L237 +extern int (__fflush_336) (__FILE_59 * (____stream_334));// L242 +extern int (__fflush_unlocked_340) (__FILE_59 * (____stream_338));// L252 +extern __FILE_59 * ((__fopen_344) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 +extern __FILE_59 * ((__fopen_346) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 +extern __FILE_59 * ((__fopen_354) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 +extern __FILE_59 * ((__fopen_356) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 +extern __FILE_59 * ((__freopen_362) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 +extern __FILE_59 * ((__freopen_368) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 +extern __FILE_59 * ((__freopen_366) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 +extern __FILE_59 * ((__freopen_364) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 +extern __FILE_59 * ((__fdopen_372) (int ____fd_370, const char * (____modes_371)));// L306 +extern __FILE_59 * ((__fdopen_374) (int ____fd_370, const char * (____modes_371)));// L306 +extern __FILE_59 * ((__fmemopen_379) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 +extern __FILE_59 * ((__fmemopen_381) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 +extern __FILE_59 * ((__open_memstream_385) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 +extern __FILE_59 * ((__open_memstream_387) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 +extern void (__setbuf_392) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 +extern void (__setbuf_394) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 +extern int (__setvbuf_401) (__FILE_59 * __restrict ____stream_396, char * __restrict ____buf_398, int ____modes_399, __size_t_1 ____n_400);// L336:L337 +extern void (__setbuffer_407) (__FILE_59 * __restrict ____stream_403, char * __restrict ____buf_405, __size_t_1 ____size_406);// L343:L344 +extern void (__setlinebuf_411) (__FILE_59 * (____stream_409));// L347 +extern int (__fprintf_416) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 +extern int (__fprintf_418) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 +extern int (__printf_421) (const char * __restrict ____format_420, ... );// L362 +extern int (__sprintf_424) (char * __restrict ____s_422, const char * __restrict ____format_423, ... );// L364:L365 +extern int (__vfprintf_430) (__FILE_59 * __restrict ____s_425, const char * __restrict ____format_427, ____gnuc_va_list_86 ____arg_428);// L371:L372 +extern int (__vprintf_437) (const char * __restrict ____format_434, ____gnuc_va_list_86 ____arg_435);// L377 +extern int (__vsprintf_443) (char * __restrict ____s_439, const char * __restrict ____format_440, ____gnuc_va_list_86 ____arg_441);// L379:L380 +extern int (__snprintf_448) (char * __restrict ____s_445, __size_t_1 ____maxlen_446, const char * __restrict ____format_447, ... );// L386:L388 +extern int (__vsnprintf_454) (char * __restrict ____s_449, __size_t_1 ____maxlen_450, const char * __restrict ____format_451, ____gnuc_va_list_86 ____arg_452);// L390:L392 +extern int (__vdprintf_460) (int ____fd_456, const char * __restrict ____fmt_457, ____gnuc_va_list_86 ____arg_458);// L412:L414 +extern int (__dprintf_464) (int ____fd_462, const char * __restrict ____fmt_463, ... );// L415:L416 +extern int (__fscanf_468) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_470) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_472) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_474) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__scanf_477) (const char * __restrict ____format_476, ... );// L431 +extern int (__scanf_478) (const char * __restrict ____format_476, ... );// L431 +extern int (__sscanf_481) (const char * __restrict ____s_479, const char * __restrict ____format_480, ... );// L433:L434 + + + + + + + +extern int (__vfscanf_509) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 +extern int (__vfscanf_513) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 +extern int (__vscanf_520) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 +extern int (__vscanf_522) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 +extern int (__vsscanf_528) (const char * __restrict ____s_524, const char * __restrict ____format_525, ____gnuc_va_list_86 ____arg_526);// L483:L485 + + + + + +extern int (__fgetc_563) (__FILE_59 * (____stream_561));// L531 +extern int (__getc_567) (__FILE_59 * (____stream_565));// L532 +extern int (__getchar_569) (void );// L538 +extern int (__getc_unlocked_572) (__FILE_59 * (____stream_570));// L550 +extern int (__getchar_unlocked_574) (void );// L551 +extern int (__fgetc_unlocked_577) (__FILE_59 * (____stream_575));// L561 +extern int (__fputc_582) (int ____c_579, __FILE_59 * (____stream_580));// L573 +extern int (__fputc_584) (int ____c_579, __FILE_59 * (____stream_580));// L573 +extern int (__putc_589) (int ____c_586, __FILE_59 * (____stream_587));// L574 +extern int (__putchar_592) (int ____c_591);// L580 +extern int (__fputc_unlocked_596) (int ____c_593, __FILE_59 * (____stream_594));// L594 +extern int (__putc_unlocked_601) (int ____c_598, __FILE_59 * (____stream_599));// L602 +extern int (__putchar_unlocked_604) (int ____c_603);// L603 +extern int (__getw_607) (__FILE_59 * (____stream_605));// L610 +extern int (__putw_612) (int ____w_609, __FILE_59 * (____stream_610));// L613 +extern char * ((__fgets_618) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_620) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_622) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_624) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern ____ssize_t_49 (____getdelim_631) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 +extern ____ssize_t_49 (____getdelim_635) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 +extern ____ssize_t_49 (__getdelim_644) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 +extern ____ssize_t_49 (__getdelim_648) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 +extern ____ssize_t_49 (__getline_656) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 +extern ____ssize_t_49 (__getline_660) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 +extern int (__fputs_667) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 +extern int (__fputs_669) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 +extern int (__puts_672) (const char * (____s_671));// L695 +extern int (__ungetc_676) (int ____c_673, __FILE_59 * (____stream_674));// L702 +extern int (__fseek_714) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 +extern int (__fseek_716) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 +extern long int (__ftell_720) (__FILE_59 * (____stream_718));// L754 +extern long int (__ftell_722) (__FILE_59 * (____stream_718));// L754 +extern void (__rewind_726) (__FILE_59 * (____stream_724));// L759 +extern int (__fseeko_733) (__FILE_59 * (____stream_728), ____off_t_23 ____off_730, int ____whence_732);// L773 +extern int (__fseeko_744) (__FILE_59 * (____stream_739), ____off64_t_24 ____off_741, int ____whence_743);// L781:L783 +extern ____off_t_23 (__ftello_758) (__FILE_59 * (____stream_737));// L778 +extern ____off_t_23 (__ftello_750) (__FILE_59 * (____stream_737));// L778 +extern int (__fgetpos_766) (__FILE_59 * __restrict ____stream_762, __fpos_t_287 * __restrict ____pos_764);// L798 +extern ____off64_t_24 (__ftello_754) (__FILE_59 * (____stream_748));// L784 +extern int (__fgetpos_778) (__FILE_59 * __restrict ____stream_774, __fpos_t_289 * __restrict ____pos_776);// L806:L807 +extern int (__fsetpos_786) (__FILE_59 * (____stream_770), const __fpos_t_287 * (____pos_772));// L803 +extern int (__fsetpos_790) (__FILE_59 * (____stream_782), const __fpos_t_289 * (____pos_784));// L808:L809 +extern void (__clearerr_796) (__FILE_59 * (____stream_794));// L826 +extern int (__feof_800) (__FILE_59 * (____stream_798));// L828 +extern int (__feof_802) (__FILE_59 * (____stream_798));// L828 +extern int (__ferror_806) (__FILE_59 * (____stream_804));// L830 +extern int (__ferror_808) (__FILE_59 * (____stream_804));// L830 +extern void (__clearerr_unlocked_812) (__FILE_59 * (____stream_810));// L835 +extern int (__feof_unlocked_816) (__FILE_59 * (____stream_814));// L836 +extern int (__feof_unlocked_818) (__FILE_59 * (____stream_814));// L836 +extern int (__ferror_unlocked_822) (__FILE_59 * (____stream_820));// L837 +extern int (__ferror_unlocked_824) (__FILE_59 * (____stream_820));// L837 +extern void (__perror_827) (const char * (____s_826));// L846 +extern void (__perror_828) (const char * (____s_826));// L846 +extern int __sys_nerr_829;// L26 + +extern int (__fileno_835) (__FILE_59 * (____stream_831));// L858 +extern int (__fileno_833) (__FILE_59 * (____stream_831));// L858 +extern int (__fileno_unlocked_841) (__FILE_59 * (____stream_837));// L863 +extern int (__fileno_unlocked_839) (__FILE_59 * (____stream_837));// L863 +extern __FILE_59 * ((__popen_845) (const char * (____command_843), const char * (____modes_844)));// L872 +extern __FILE_59 * ((__popen_847) (const char * (____command_843), const char * (____modes_844)));// L872 +extern int (__pclose_851) (__FILE_59 * (____stream_849));// L878 +extern char * ((__ctermid_854) (char * (____s_853)));// L884 +extern void (__flockfile_857) (__FILE_59 * (____stream_855));// L912 +extern int (__ftrylockfile_861) (__FILE_59 * (____stream_859));// L916 +extern int (__ftrylockfile_863) (__FILE_59 * (____stream_859));// L916 +extern void (__funlockfile_867) (__FILE_59 * (____stream_865));// L919 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ @@ -1796,33 +2526,89 @@ extern void (__funlockfile_793) (__FILE_58 * (____stream_791));// L919 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____sprintf_chk_825) (char * __restrict ____s_821, int ____flag_822, __size_t_1 ____slen_823, const char * __restrict ____format_824, ... );// L23:L24 -extern int (____vsprintf_chk_832) (char * __restrict ____s_826, int ____flag_827, __size_t_1 ____slen_828, const char * __restrict ____format_829, ____gnuc_va_list_82 ____ap_830);// L25:L27 +extern int (____sprintf_chk_899) (char * __restrict ____s_895, int ____flag_896, __size_t_1 ____slen_897, const char * __restrict ____format_898, ... );// L23:L24 +extern int (____vsprintf_chk_906) (char * __restrict ____s_900, int ____flag_901, __size_t_1 ____slen_902, const char * __restrict ____format_903, ____gnuc_va_list_86 ____ap_904);// L25:L27 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____snprintf_chk_846) (char * __restrict ____s_841, __size_t_1 ____n_842, int ____flag_843, __size_t_1 ____slen_844, const char * __restrict ____format_845, ... );// L52:L54 -extern int (____vsnprintf_chk_854) (char * __restrict ____s_847, __size_t_1 ____n_848, int ____flag_849, __size_t_1 ____slen_850, const char * __restrict ____format_851, ____gnuc_va_list_82 ____ap_852);// L55:L57 +extern int (____snprintf_chk_920) (char * __restrict ____s_915, __size_t_1 ____n_916, int ____flag_917, __size_t_1 ____slen_918, const char * __restrict ____format_919, ... );// L52:L54 +extern int (____vsnprintf_chk_928) (char * __restrict ____s_921, __size_t_1 ____n_922, int ____flag_923, __size_t_1 ____slen_924, const char * __restrict ____format_925, ____gnuc_va_list_86 ____ap_926);// L55:L57 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____fprintf_chk_869) (__FILE_58 * __restrict ____stream_865, int ____flag_867, const char * __restrict ____format_868, ... );// L85:L86 -extern int (____printf_chk_873) (int ____flag_871, const char * __restrict ____format_872, ... );// L87 -extern int (____vfprintf_chk_880) (__FILE_58 * __restrict ____stream_874, int ____flag_876, const char * __restrict ____format_877, ____gnuc_va_list_82 ____ap_878);// L88:L89 -extern int (____vprintf_chk_888) (int ____flag_884, const char * __restrict ____format_885, ____gnuc_va_list_82 ____ap_886);// L90:L91 +extern int (____fprintf_chk_943) (__FILE_59 * __restrict ____stream_939, int ____flag_941, const char * __restrict ____format_942, ... );// L85:L86 +extern int (____printf_chk_947) (int ____flag_945, const char * __restrict ____format_946, ... );// L87 +extern int (____vfprintf_chk_954) (__FILE_59 * __restrict ____stream_948, int ____flag_950, const char * __restrict ____format_951, ____gnuc_va_list_86 ____ap_952);// L88:L89 +extern int (____vprintf_chk_962) (int ____flag_958, const char * __restrict ____format_959, ____gnuc_va_list_86 ____ap_960);// L90:L91 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____dprintf_chk_910) (int ____fd_907, int ____flag_908, const char * __restrict ____fmt_909, ... );// L131:L132 -extern int (____vdprintf_chk_916) (int ____fd_911, int ____flag_912, const char * __restrict ____fmt_913, ____gnuc_va_list_82 ____arg_914);// L133:L135 +extern int (____dprintf_chk_984) (int ____fd_981, int ____flag_982, const char * __restrict ____fmt_983, ... );// L131:L132 +extern int (____vdprintf_chk_990) (int ____fd_985, int ____flag_986, const char * __restrict ____fmt_987, ____gnuc_va_list_86 ____arg_988);// L133:L135 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern char * ((____fgets_chk_930) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 -extern char * ((____fgets_chk_932) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 -extern char * ((____fgets_chk_934) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 -extern char * ((____fgets_alias_940) (char * __restrict ____s_936, int ____n_937, __FILE_58 * __restrict ____stream_938));// L243:L245 -extern char * ((____fgets_chk_warn_947) (char * __restrict ____s_942, __size_t_1 ____size_943, int ____n_944, __FILE_58 * __restrict ____stream_945));// L246:L250 +extern char * ((____fgets_chk_1004) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_chk_1006) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_chk_1008) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_alias_1014) (char * __restrict ____s_1010, int ____n_1011, __FILE_59 * __restrict ____stream_1012));// L243:L245 +extern char * ((____fgets_chk_warn_1021) (char * __restrict ____s_1016, __size_t_1 ____size_1017, int ____n_1018, __FILE_59 * __restrict ____stream_1019));// L246:L250 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope /* no function due to type errors in the function prototype */ // typedef moved to top of scope // typedef moved to top of scope @@ -1832,567 +2618,518 @@ extern char * ((____fgets_chk_warn_947) (char * __restrict ____s_942, __size_ // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern int (__access_1028) (const char * (____name_1026), int ____type_1027);// L290 -extern int (__access_1029) (const char * (____name_1026), int ____type_1027);// L290 -extern int (__faccessat_1034) (int ____fd_1030, const char * (____file_1031), int ____type_1032, int ____flag_1033);// L307:L308 -extern int (__faccessat_1035) (int ____fd_1030, const char * (____file_1031), int ____type_1032, int ____flag_1033);// L307:L308 -extern ____off_t_23 (__lseek_1042) (int ____fd_1036, ____off_t_23 ____offset_1037, int ____whence_1038);// L337 -extern ____off64_t_24 (__lseek_1043) (int ____fd_1039, ____off64_t_24 ____offset_1040, int ____whence_1041);// L340:L342 -extern int (__close_1045) (int ____fd_1044);// L356 -extern __ssize_t_252 (__read_1049) (int ____fd_1046, void * (____buf_1047), __size_t_1 ____nbytes_1048);// L363 -extern __ssize_t_1016 (__read_1050) (int ____fd_1046, void * (____buf_1047), __size_t_1 ____nbytes_1048);// L363 -extern __ssize_t_252 (__read_1052) (int ____fd_1046, void * (____buf_1047), __size_t_1 ____nbytes_1048);// L363 -extern __ssize_t_1016 (__read_1053) (int ____fd_1046, void * (____buf_1047), __size_t_1 ____nbytes_1048);// L363 -extern __ssize_t_252 (__write_1058) (int ____fd_1055, const void * (____buf_1056), __size_t_1 ____n_1057);// L369 -extern __ssize_t_1016 (__write_1059) (int ____fd_1055, const void * (____buf_1056), __size_t_1 ____n_1057);// L369 -extern __ssize_t_252 (__write_1061) (int ____fd_1055, const void * (____buf_1056), __size_t_1 ____n_1057);// L369 -extern __ssize_t_1016 (__write_1062) (int ____fd_1055, const void * (____buf_1056), __size_t_1 ____n_1057);// L369 -extern __ssize_t_252 (__pread_1068) (int ____fd_1064, void * (____buf_1065), __size_t_1 ____nbytes_1066, ____off_t_23 ____offset_1067);// L379:L380 -extern __ssize_t_252 (__pread_1070) (int ____fd_1064, void * (____buf_1065), __size_t_1 ____nbytes_1066, ____off_t_23 ____offset_1067);// L379:L380 -extern __ssize_t_252 (__pread_1080) (int ____fd_1076, void * (____buf_1077), __size_t_1 ____nbytes_1078, ____off64_t_24 ____offset_1079);// L391:L393 -extern __ssize_t_252 (__pread_1082) (int ____fd_1076, void * (____buf_1077), __size_t_1 ____nbytes_1078, ____off64_t_24 ____offset_1079);// L391:L393 -extern __ssize_t_252 (__pwrite_1094) (int ____fd_1084, const void * (____buf_1085), __size_t_1 ____nbytes_1086, ____off64_t_24 ____offset_1087);// L394:L396 -extern __ssize_t_252 (__pwrite_1092) (int ____fd_1072, const void * (____buf_1073), __size_t_1 ____n_1074, ____off_t_23 ____offset_1075);// L387:L388 -extern __ssize_t_252 (__pwrite_1090) (int ____fd_1084, const void * (____buf_1085), __size_t_1 ____nbytes_1086, ____off64_t_24 ____offset_1087);// L394:L396 -extern __ssize_t_252 (__pwrite_1088) (int ____fd_1072, const void * (____buf_1073), __size_t_1 ____n_1074, ____off_t_23 ____offset_1075);// L387:L388 -extern int (__pipe_1097) (int ____pipedes_1096[2]);// L420 -extern int (__pipe_1098) (int ____pipedes_1096[2]);// L420 -extern int (__pipe_1099) (int ____pipedes_1096[2]);// L420 -extern int (__pipe_1100) (int ____pipedes_1096[2]);// L420 -extern unsigned int (__alarm_1102) (unsigned int ____seconds_1101);// L435 -extern unsigned int (__sleep_1104) (unsigned int ____seconds_1103);// L447 -extern ____useconds_t_35 (__ualarm_1107) (____useconds_t_35 ____value_1105, ____useconds_t_35 ____interval_1106);// L455:L456 -extern int (__usleep_1109) (____useconds_t_35 ____useconds_1108);// L463 -extern int (__pause_1110) (void );// L472 -extern int (__pause_1111) (void );// L472 -extern int (__chown_1115) (const char * (____file_1112), ____uid_t_17 ____owner_1113, ____gid_t_18 ____group_1114);// L476:L477 -extern int (__chown_1116) (const char * (____file_1112), ____uid_t_17 ____owner_1113, ____gid_t_18 ____group_1114);// L476:L477 -extern int (__fchown_1120) (int ____fd_1117, ____uid_t_17 ____owner_1118, ____gid_t_18 ____group_1119);// L481 -extern int (__fchown_1121) (int ____fd_1117, ____uid_t_17 ____owner_1118, ____gid_t_18 ____group_1119);// L481 -extern int (__lchown_1125) (const char * (____file_1122), ____uid_t_17 ____owner_1123, ____gid_t_18 ____group_1124);// L486:L487 -extern int (__lchown_1126) (const char * (____file_1122), ____uid_t_17 ____owner_1123, ____gid_t_18 ____group_1124);// L486:L487 -extern int (__fchownat_1132) (int ____fd_1127, const char * (____file_1128), ____uid_t_17 ____owner_1129, ____gid_t_18 ____group_1130, int ____flag_1131);// L494:L496 -extern int (__fchownat_1133) (int ____fd_1127, const char * (____file_1128), ____uid_t_17 ____owner_1129, ____gid_t_18 ____group_1130, int ____flag_1131);// L494:L496 -extern int (__chdir_1135) (const char * (____path_1134));// L500 -extern int (__chdir_1136) (const char * (____path_1134));// L500 -extern int (__chdir_1137) (const char * (____path_1134));// L500 -extern int (__chdir_1138) (const char * (____path_1134));// L500 -extern int (__fchdir_1140) (int ____fd_1139);// L504 -extern int (__fchdir_1141) (int ____fd_1139);// L504 -extern char * ((__getcwd_1144) (char * (____buf_1142), __size_t_1 ____size_1143));// L514 -extern char * ((__getcwd_1145) (char * (____buf_1142), __size_t_1 ____size_1143));// L514 -extern char * ((__getcwd_1146) (char * (____buf_1142), __size_t_1 ____size_1143));// L514 -extern char * ((__getcwd_1147) (char * (____buf_1142), __size_t_1 ____size_1143));// L514 -extern char * ((__getwd_1149) (char * (____buf_1148)));// L528:L529 -extern char * ((__getwd_1150) (char * (____buf_1148)));// L528:L529 -extern int (__dup_1152) (int ____fd_1151);// L534 -extern int (__dup_1153) (int ____fd_1151);// L534 -extern int (__dup_1154) (int ____fd_1151);// L534 -extern int (__dup_1155) (int ____fd_1151);// L534 -extern int (__dup2_1158) (int ____fd_1156, int ____fd2_1157);// L537 -extern char * (* (____environ_1159));// L546 -extern int (__execve_1163) (const char * (____path_1160), char * const ____argv_1161[], char * const ____envp_1162[]);// L554:L555 -extern int (__fexecve_1167) (int ____fd_1164, char * const ____argv_1165[], char * const ____envp_1166[]);// L560:L561 -extern int (__execv_1170) (const char * (____path_1168), char * const ____argv_1169[]);// L566:L567 -extern int (__execv_1171) (const char * (____path_1168), char * const ____argv_1169[]);// L566:L567 -extern int (__execle_1174) (const char * (____path_1172), const char * (____arg_1173), ... );// L571:L572 -extern int (__execl_1177) (const char * (____path_1175), const char * (____arg_1176), ... );// L576:L577 -extern int (__execvp_1180) (const char * (____file_1178), char * const ____argv_1179[]);// L581:L582 -extern int (__execlp_1183) (const char * (____file_1181), const char * (____arg_1182), ... );// L587:L588 -extern int (__nice_1185) (int ____inc_1184);// L601 -extern int (__nice_1186) (int ____inc_1184);// L601 -extern void (___exit_1188) (int ____status_1187);// L606 -extern void (___exit_1189) (int ____status_1187);// L606 -enum ____anonymous_tag_1211_1212 ;// L24 -enum ____anonymous_tag_1428_1429 ;// L71 -enum ____anonymous_tag_1494_1495 ;// L533 -extern long int (__pathconf_1498) (const char * (____path_1496), int ____name_1497);// L615:L616 -extern long int (__fpathconf_1501) (int ____fd_1499, int ____name_1500);// L619 -extern long int (__sysconf_1503) (int ____name_1502);// L622 -extern __size_t_1 (__confstr_1507) (int ____name_1504, char * (____buf_1505), __size_t_1 ____len_1506);// L626 -extern ____pid_t_25 (__getpid_1508) (void );// L631 -extern ____pid_t_25 (__getpid_1509) (void );// L631 -extern ____pid_t_25 (__getppid_1510) (void );// L634 -extern ____pid_t_25 (__getpgrp_1511) (void );// L637 -extern ____pid_t_25 (____getpgid_1513) (____pid_t_25 ____pid_1512);// L640 -extern ____pid_t_25 (__getpgid_1515) (____pid_t_25 ____pid_1514);// L642 -extern int (__setpgid_1518) (____pid_t_25 ____pid_1516, ____pid_t_25 ____pgid_1517);// L649 -extern int (__setpgid_1519) (____pid_t_25 ____pid_1516, ____pid_t_25 ____pgid_1517);// L649 -extern int (__setpgrp_1520) (void );// L663 -extern ____pid_t_25 (__setsid_1521) (void );// L670 -extern ____pid_t_25 (__setsid_1522) (void );// L670 -extern ____pid_t_25 (__getsid_1524) (____pid_t_25 ____pid_1523);// L674 -extern ____uid_t_17 (__getuid_1525) (void );// L678 -extern ____uid_t_17 (__getuid_1526) (void );// L678 -extern ____uid_t_17 (__geteuid_1527) (void );// L681 -extern ____gid_t_18 (__getgid_1528) (void );// L684 -extern ____gid_t_18 (__getegid_1529) (void );// L687 -extern int (__getgroups_1532) (int ____size_1530, ____gid_t_18 ____list_1531[]);// L692 -extern int (__getgroups_1533) (int ____size_1530, ____gid_t_18 ____list_1531[]);// L692 -extern int (__setuid_1535) (____uid_t_17 ____uid_1534);// L703 -extern int (__setuid_1536) (____uid_t_17 ____uid_1534);// L703 -extern int (__setreuid_1539) (____uid_t_17 ____ruid_1537, ____uid_t_17 ____euid_1538);// L708 -extern int (__setreuid_1540) (____uid_t_17 ____ruid_1537, ____uid_t_17 ____euid_1538);// L708 -extern int (__seteuid_1542) (____uid_t_17 ____uid_1541);// L713 -extern int (__seteuid_1543) (____uid_t_17 ____uid_1541);// L713 -extern int (__setgid_1545) (____gid_t_18 ____gid_1544);// L720 -extern int (__setgid_1546) (____gid_t_18 ____gid_1544);// L720 -extern int (__setgid_1547) (____gid_t_18 ____gid_1544);// L720 -extern int (__setgid_1548) (____gid_t_18 ____gid_1544);// L720 -extern int (__setregid_1551) (____gid_t_18 ____rgid_1549, ____gid_t_18 ____egid_1550);// L725 -extern int (__setregid_1552) (____gid_t_18 ____rgid_1549, ____gid_t_18 ____egid_1550);// L725 -extern int (__setegid_1554) (____gid_t_18 ____gid_1553);// L730 -extern int (__setegid_1555) (____gid_t_18 ____gid_1553);// L730 -extern ____pid_t_25 (__fork_1556) (void );// L759 -extern ____pid_t_25 (__fork_1557) (void );// L759 -extern ____pid_t_25 (__vfork_1558) (void );// L767 -extern char * ((__ttyname_1560) (int ____fd_1559));// L773 -extern char * ((__ttyname_1561) (int ____fd_1559));// L773 -extern int (__ttyname_r_1565) (int ____fd_1562, char * (____buf_1563), __size_t_1 ____buflen_1564);// L777:L778 -extern int (__ttyname_r_1566) (int ____fd_1562, char * (____buf_1563), __size_t_1 ____buflen_1564);// L777:L778 -extern int (__isatty_1568) (int ____fd_1567);// L782 -extern int (__ttyslot_1569) (void );// L788 -extern int (__link_1572) (const char * (____from_1570), const char * (____to_1571));// L793:L794 -extern int (__link_1573) (const char * (____from_1570), const char * (____to_1571));// L793:L794 -extern int (__link_1574) (const char * (____from_1570), const char * (____to_1571));// L793:L794 -extern int (__link_1575) (const char * (____from_1570), const char * (____to_1571));// L793:L794 -extern int (__linkat_1581) (int ____fromfd_1576, const char * (____from_1577), int ____tofd_1578, const char * (____to_1579), int ____flags_1580);// L799:L801 -extern int (__linkat_1582) (int ____fromfd_1576, const char * (____from_1577), int ____tofd_1578, const char * (____to_1579), int ____flags_1580);// L799:L801 -extern int (__symlink_1585) (const char * (____from_1583), const char * (____to_1584));// L806:L807 -extern int (__symlink_1586) (const char * (____from_1583), const char * (____to_1584));// L806:L807 -extern __ssize_t_252 (__readlink_1590) (const char * __restrict ____path_1587, char * __restrict ____buf_1588, __size_t_1 ____len_1589);// L812:L814 -extern __ssize_t_252 (__readlink_1592) (const char * __restrict ____path_1587, char * __restrict ____buf_1588, __size_t_1 ____len_1589);// L812:L814 -extern int (__symlinkat_1597) (const char * (____from_1594), int ____tofd_1595, const char * (____to_1596));// L819:L820 -extern int (__symlinkat_1598) (const char * (____from_1594), int ____tofd_1595, const char * (____to_1596));// L819:L820 -extern __ssize_t_252 (__readlinkat_1603) (int ____fd_1599, const char * __restrict ____path_1600, char * __restrict ____buf_1601, __size_t_1 ____len_1602);// L823:L825 -extern __ssize_t_252 (__readlinkat_1605) (int ____fd_1599, const char * __restrict ____path_1600, char * __restrict ____buf_1601, __size_t_1 ____len_1602);// L823:L825 -extern int (__unlink_1608) (const char * (____name_1607));// L829 -extern int (__unlink_1609) (const char * (____name_1607));// L829 -extern int (__unlinkat_1613) (int ____fd_1610, const char * (____name_1611), int ____flag_1612);// L833:L834 -extern int (__rmdir_1615) (const char * (____path_1614));// L838 -extern int (__rmdir_1616) (const char * (____path_1614));// L838 -extern ____pid_t_25 (__tcgetpgrp_1618) (int ____fd_1617);// L842 -extern int (__tcsetpgrp_1621) (int ____fd_1619, ____pid_t_25 ____pgrp_id_1620);// L845 -extern char * ((__getlogin_1622) (void ));// L852 -extern int (__getlogin_r_1625) (char * (____name_1623), __size_t_1 ____name_len_1624);// L860 -extern int (__setlogin_1627) (const char * (____name_1626));// L865 -extern char * (__optarg_1628);// L57 -extern int __optind_1629;// L71 -extern int __opterr_1630;// L76 -extern int __optopt_1631;// L80 -extern int (__getopt_1635) (int _____argc_1632, char * const * (_____argv_1633), const char * (____shortopts_1634));// L150:L151 -extern int (__gethostname_1638) (char * (____name_1636), __size_t_1 ____len_1637);// L882 -extern int (__sethostname_1641) (const char * (____name_1639), __size_t_1 ____len_1640);// L889:L890 -extern int (__sethostname_1642) (const char * (____name_1639), __size_t_1 ____len_1640);// L889:L890 -extern int (__sethostid_1644) (long int ____id_1643);// L894 -extern int (__sethostid_1645) (long int ____id_1643);// L894 -extern int (__getdomainname_1648) (char * (____name_1646), __size_t_1 ____len_1647);// L900:L901 -extern int (__getdomainname_1649) (char * (____name_1646), __size_t_1 ____len_1647);// L900:L901 -extern int (__setdomainname_1652) (const char * (____name_1650), __size_t_1 ____len_1651);// L902:L903 -extern int (__setdomainname_1653) (const char * (____name_1650), __size_t_1 ____len_1651);// L902:L903 -extern int (__vhangup_1654) (void );// L909 -extern int (__revoke_1656) (const char * (____file_1655));// L912 -extern int (__revoke_1657) (const char * (____file_1655));// L912 -extern int (__profil_1662) (unsigned short int * (____sample_buffer_1658), __size_t_1 ____size_1659, __size_t_1 ____offset_1660, unsigned int ____scale_1661);// L920:L922 -extern int (__acct_1664) (const char * (____name_1663));// L928 -extern char * ((__getusershell_1665) (void ));// L932 -extern void (__endusershell_1666) (void );// L933 -extern void (__setusershell_1667) (void );// L934 -extern int (__daemon_1670) (int ____nochdir_1668, int ____noclose_1669);// L940 -extern int (__daemon_1671) (int ____nochdir_1668, int ____noclose_1669);// L940 -extern int (__chroot_1673) (const char * (____path_1672));// L947 -extern int (__chroot_1674) (const char * (____path_1672));// L947 -extern char * ((__getpass_1676) (const char * (____prompt_1675)));// L951 -extern int (__fsync_1678) (int ____fd_1677);// L959 -extern int (__fsync_1679) (int ____fd_1677);// L959 -extern int (__fsync_1680) (int ____fd_1677);// L959 -extern long int (__gethostid_1681) (void );// L972 -extern void (__sync_1682) (void );// L975 -extern int (__getpagesize_1683) (void );// L981 -extern int (__getdtablesize_1684) (void );// L986 -extern int (__truncate_1689) (const char * (____file_1685), ____off_t_23 ____length_1686);// L996:L997 -extern int (__truncate_1691) (const char * (____file_1685), ____off_t_23 ____length_1686);// L996:L997 -extern int (__truncate_1690) (const char * (____file_1687), ____off64_t_24 ____length_1688);// L1000:L1002 -extern int (__truncate_1692) (const char * (____file_1687), ____off64_t_24 ____length_1688);// L1000:L1002 -extern int (__ftruncate_1700) (int ____fd_1695, ____off64_t_24 ____length_1696);// L1022:L1023 -extern int (__ftruncate_1699) (int ____fd_1693, ____off_t_23 ____length_1694);// L1019 -extern int (__ftruncate_1698) (int ____fd_1695, ____off64_t_24 ____length_1696);// L1022:L1023 -extern int (__ftruncate_1697) (int ____fd_1693, ____off_t_23 ____length_1694);// L1019 -extern int (__brk_1702) (void * (____addr_1701));// L1040 -extern int (__brk_1703) (void * (____addr_1701));// L1040 -extern void * ((__sbrk_1706) (__intptr_t_1024 ____delta_1704));// L1046 -extern long int (__syscall_1709) (long int ____sysno_1708, ... );// L1061 -extern int (__lockf_1719) (int ____fd_1713, int ____cmd_1714, ____off64_t_24 ____len_1715);// L1087:L1088 -extern int (__lockf_1718) (int ____fd_1710, int ____cmd_1711, ____off_t_23 ____len_1712);// L1084 -extern int (__lockf_1717) (int ____fd_1713, int ____cmd_1714, ____off64_t_24 ____len_1715);// L1087:L1088 -extern int (__lockf_1716) (int ____fd_1710, int ____cmd_1711, ____off_t_23 ____len_1712);// L1084 -extern int (__fdatasync_1721) (int ____fildes_1720);// L1115 -extern __ssize_t_252 (____read_chk_1726) (int ____fd_1722, void * (____buf_1723), __size_t_1 ____nbytes_1724, __size_t_1 ____buflen_1725);// L23:L24 -extern __ssize_t_1016 (____read_chk_1727) (int ____fd_1722, void * (____buf_1723), __size_t_1 ____nbytes_1724, __size_t_1 ____buflen_1725);// L23:L24 -extern __ssize_t_252 (____read_alias_1732) (int ____fd_1729, void * (____buf_1730), __size_t_1 ____nbytes_1731);// L25:L26 -extern __ssize_t_1016 (____read_alias_1733) (int ____fd_1729, void * (____buf_1730), __size_t_1 ____nbytes_1731);// L25:L26 -extern __ssize_t_252 (____read_chk_warn_1739) (int ____fd_1735, void * (____buf_1736), __size_t_1 ____nbytes_1737, __size_t_1 ____buflen_1738);// L27:L31 -extern __ssize_t_1016 (____read_chk_warn_1740) (int ____fd_1735, void * (____buf_1736), __size_t_1 ____nbytes_1737, __size_t_1 ____buflen_1738);// L27:L31 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern int (__access_1178) (const char * (____name_1176), int ____type_1177);// L290 +extern int (__access_1179) (const char * (____name_1176), int ____type_1177);// L290 +extern int (__access_1180) (const char * (____name_1176), int ____type_1177);// L290 +extern int (__faccessat_1185) (int ____fd_1181, const char * (____file_1182), int ____type_1183, int ____flag_1184);// L307:L308 +extern int (__faccessat_1186) (int ____fd_1181, const char * (____file_1182), int ____type_1183, int ____flag_1184);// L307:L308 +extern ____off_t_23 (__lseek_1197) (int ____fd_1187, ____off_t_23 ____offset_1188, int ____whence_1191);// L337 +extern ____off_t_1111 (__lseek_1198) (int ____fd_1187, ____off_t_1111 ____offset_1189, int ____whence_1191);// L337 +extern ____off64_t_24 (__lseek_1200) (int ____fd_1192, ____off64_t_24 ____offset_1193, int ____whence_1196);// L340:L342 +extern ____off64_t_1112 (__lseek_1201) (int ____fd_1192, ____off64_t_1112 ____offset_1194, int ____whence_1196);// L340:L342 +extern int (__close_1204) (int ____fd_1203);// L356 +extern __ssize_t_285 (__read_1209) (int ____fd_1205, void * (____buf_1206), __size_t_1 ____nbytes_1207);// L363 +extern __ssize_t_1146 (__read_1210) (int ____fd_1205, void * (____buf_1206), __size_t_1 ____nbytes_1207);// L363 +extern __ssize_t_1147 (__read_1211) (int ____fd_1205, void * (____buf_1206), __size_t_1150 ____nbytes_1208);// L363 +extern __ssize_t_285 (__read_1216) (int ____fd_1205, void * (____buf_1206), __size_t_1 ____nbytes_1207);// L363 +extern __ssize_t_1146 (__read_1217) (int ____fd_1205, void * (____buf_1206), __size_t_1 ____nbytes_1207);// L363 +extern __ssize_t_1147 (__read_1218) (int ____fd_1205, void * (____buf_1206), __size_t_1150 ____nbytes_1208);// L363 +extern __ssize_t_285 (__write_1227) (int ____fd_1223, const void * (____buf_1224), __size_t_1 ____n_1225);// L369 +extern __ssize_t_1146 (__write_1228) (int ____fd_1223, const void * (____buf_1224), __size_t_1 ____n_1225);// L369 +extern __ssize_t_1147 (__write_1229) (int ____fd_1223, const void * (____buf_1224), __size_t_1150 ____n_1226);// L369 +extern __ssize_t_285 (__write_1234) (int ____fd_1223, const void * (____buf_1224), __size_t_1 ____n_1225);// L369 +extern __ssize_t_1146 (__write_1235) (int ____fd_1223, const void * (____buf_1224), __size_t_1 ____n_1225);// L369 +extern __ssize_t_1147 (__write_1236) (int ____fd_1223, const void * (____buf_1224), __size_t_1150 ____n_1226);// L369 +extern __ssize_t_285 (__pread_1248) (int ____fd_1241, void * (____buf_1242), __size_t_1 ____nbytes_1243, ____off_t_23 ____offset_1245);// L379:L380 +extern __ssize_t_1147 (__pread_1249) (int ____fd_1241, void * (____buf_1242), __size_t_1150 ____nbytes_1244, ____off_t_1111 ____offset_1246);// L379:L380 +extern __ssize_t_285 (__pread_1256) (int ____fd_1241, void * (____buf_1242), __size_t_1 ____nbytes_1243, ____off_t_23 ____offset_1245);// L379:L380 +extern __ssize_t_1147 (__pread_1257) (int ____fd_1241, void * (____buf_1242), __size_t_1150 ____nbytes_1244, ____off_t_1111 ____offset_1246);// L379:L380 +extern __ssize_t_285 (__pread_1278) (int ____fd_1271, void * (____buf_1272), __size_t_1 ____nbytes_1273, ____off64_t_24 ____offset_1275);// L391:L393 +extern __ssize_t_1147 (__pread_1279) (int ____fd_1271, void * (____buf_1272), __size_t_1150 ____nbytes_1274, ____off64_t_1112 ____offset_1276);// L391:L393 +extern __ssize_t_285 (__pread_1286) (int ____fd_1271, void * (____buf_1272), __size_t_1 ____nbytes_1273, ____off64_t_24 ____offset_1275);// L391:L393 +extern __ssize_t_1147 (__pread_1287) (int ____fd_1271, void * (____buf_1272), __size_t_1150 ____nbytes_1274, ____off64_t_1112 ____offset_1276);// L391:L393 +extern __ssize_t_285 (__pwrite_1325) (int ____fd_1294, const void * (____buf_1295), __size_t_1 ____nbytes_1296, ____off64_t_24 ____offset_1298);// L394:L396 +extern __ssize_t_1147 (__pwrite_1326) (int ____fd_1294, const void * (____buf_1295), __size_t_1150 ____nbytes_1297, ____off64_t_1112 ____offset_1299);// L394:L396 +extern __ssize_t_285 (__pwrite_1317) (int ____fd_1264, const void * (____buf_1265), __size_t_1 ____n_1266, ____off_t_23 ____offset_1268);// L387:L388 +extern __ssize_t_1147 (__pwrite_1318) (int ____fd_1264, const void * (____buf_1265), __size_t_1150 ____n_1267, ____off_t_1111 ____offset_1269);// L387:L388 +extern __ssize_t_285 (__pwrite_1309) (int ____fd_1294, const void * (____buf_1295), __size_t_1 ____nbytes_1296, ____off64_t_24 ____offset_1298);// L394:L396 +extern __ssize_t_1147 (__pwrite_1310) (int ____fd_1294, const void * (____buf_1295), __size_t_1150 ____nbytes_1297, ____off64_t_1112 ____offset_1299);// L394:L396 +extern __ssize_t_285 (__pwrite_1301) (int ____fd_1264, const void * (____buf_1265), __size_t_1 ____n_1266, ____off_t_23 ____offset_1268);// L387:L388 +extern __ssize_t_1147 (__pwrite_1302) (int ____fd_1264, const void * (____buf_1265), __size_t_1150 ____n_1267, ____off_t_1111 ____offset_1269);// L387:L388 +extern int (__pipe_1334) (int ____pipedes_1333[2]);// L420 +extern int (__pipe_1335) (int ____pipedes_1333[2]);// L420 +extern int (__pipe_1336) (int ____pipedes_1333[2]);// L420 +extern int (__pipe_1337) (int ____pipedes_1333[2]);// L420 +extern unsigned int (__alarm_1339) (unsigned int ____seconds_1338);// L435 +extern unsigned int (__sleep_1341) (unsigned int ____seconds_1340);// L447 +extern ____useconds_t_35 (__ualarm_1348) (____useconds_t_35 ____value_1342, ____useconds_t_35 ____interval_1345);// L455:L456 +extern ____useconds_t_1123 (__ualarm_1349) (____useconds_t_1123 ____value_1343, ____useconds_t_1123 ____interval_1346);// L455:L456 +extern int (__usleep_1354) (____useconds_t_35 ____useconds_1351);// L463 +extern int (__usleep_1355) (____useconds_t_1123 ____useconds_1352);// L463 +extern int (__pause_1357) (void );// L472 +extern int (__pause_1358) (void );// L472 +extern int (__chown_1366) (const char * (____file_1359), ____uid_t_17 ____owner_1360, ____gid_t_18 ____group_1363);// L476:L477 +extern int (__chown_1367) (const char * (____file_1359), ____uid_t_1105 ____owner_1361, ____gid_t_1106 ____group_1364);// L476:L477 +extern int (__chown_1369) (const char * (____file_1359), ____uid_t_17 ____owner_1360, ____gid_t_18 ____group_1363);// L476:L477 +extern int (__chown_1370) (const char * (____file_1359), ____uid_t_1105 ____owner_1361, ____gid_t_1106 ____group_1364);// L476:L477 +extern int (__fchown_1379) (int ____fd_1372, ____uid_t_17 ____owner_1373, ____gid_t_18 ____group_1376);// L481 +extern int (__fchown_1380) (int ____fd_1372, ____uid_t_1105 ____owner_1374, ____gid_t_1106 ____group_1377);// L481 +extern int (__fchown_1382) (int ____fd_1372, ____uid_t_17 ____owner_1373, ____gid_t_18 ____group_1376);// L481 +extern int (__fchown_1383) (int ____fd_1372, ____uid_t_1105 ____owner_1374, ____gid_t_1106 ____group_1377);// L481 +extern int (__lchown_1392) (const char * (____file_1385), ____uid_t_17 ____owner_1386, ____gid_t_18 ____group_1389);// L486:L487 +extern int (__lchown_1393) (const char * (____file_1385), ____uid_t_1105 ____owner_1387, ____gid_t_1106 ____group_1390);// L486:L487 +extern int (__lchown_1395) (const char * (____file_1385), ____uid_t_17 ____owner_1386, ____gid_t_18 ____group_1389);// L486:L487 +extern int (__lchown_1396) (const char * (____file_1385), ____uid_t_1105 ____owner_1387, ____gid_t_1106 ____group_1390);// L486:L487 +extern int (__fchownat_1407) (int ____fd_1398, const char * (____file_1399), ____uid_t_17 ____owner_1400, ____gid_t_18 ____group_1403, int ____flag_1406);// L494:L496 +extern int (__fchownat_1408) (int ____fd_1398, const char * (____file_1399), ____uid_t_1105 ____owner_1401, ____gid_t_1106 ____group_1404, int ____flag_1406);// L494:L496 +extern int (__fchownat_1410) (int ____fd_1398, const char * (____file_1399), ____uid_t_17 ____owner_1400, ____gid_t_18 ____group_1403, int ____flag_1406);// L494:L496 +extern int (__fchownat_1411) (int ____fd_1398, const char * (____file_1399), ____uid_t_1105 ____owner_1401, ____gid_t_1106 ____group_1404, int ____flag_1406);// L494:L496 +extern int (__chdir_1414) (const char * (____path_1413));// L500 +extern int (__chdir_1415) (const char * (____path_1413));// L500 +extern int (__chdir_1416) (const char * (____path_1413));// L500 +extern int (__chdir_1417) (const char * (____path_1413));// L500 +extern int (__fchdir_1419) (int ____fd_1418);// L504 +extern int (__fchdir_1420) (int ____fd_1418);// L504 +extern char * ((__getcwd_1424) (char * (____buf_1421), __size_t_1 ____size_1422));// L514 +extern char * ((__getcwd_1425) (char * (____buf_1421), __size_t_1150 ____size_1423));// L514 +extern char * ((__getcwd_1426) (char * (____buf_1421), __size_t_1 ____size_1422));// L514 +extern char * ((__getcwd_1427) (char * (____buf_1421), __size_t_1150 ____size_1423));// L514 +extern char * ((__getcwd_1428) (char * (____buf_1421), __size_t_1 ____size_1422));// L514 +extern char * ((__getcwd_1429) (char * (____buf_1421), __size_t_1150 ____size_1423));// L514 +extern char * ((__getcwd_1430) (char * (____buf_1421), __size_t_1 ____size_1422));// L514 +extern char * ((__getcwd_1431) (char * (____buf_1421), __size_t_1150 ____size_1423));// L514 +extern char * ((__getwd_1433) (char * (____buf_1432)));// L528:L529 +extern char * ((__getwd_1434) (char * (____buf_1432)));// L528:L529 +extern int (__dup_1436) (int ____fd_1435);// L534 +extern int (__dup_1437) (int ____fd_1435);// L534 +extern int (__dup_1438) (int ____fd_1435);// L534 +extern int (__dup_1439) (int ____fd_1435);// L534 +extern int (__dup2_1442) (int ____fd_1440, int ____fd2_1441);// L537 +extern char * (* (____environ_1443));// L546 +extern int (__execve_1447) (const char * (____path_1444), char * const ____argv_1445[], char * const ____envp_1446[]);// L554:L555 +extern int (__fexecve_1451) (int ____fd_1448, char * const ____argv_1449[], char * const ____envp_1450[]);// L560:L561 +extern int (__execv_1454) (const char * (____path_1452), char * const ____argv_1453[]);// L566:L567 +extern int (__execv_1455) (const char * (____path_1452), char * const ____argv_1453[]);// L566:L567 +extern int (__execle_1458) (const char * (____path_1456), const char * (____arg_1457), ... );// L571:L572 +extern int (__execl_1461) (const char * (____path_1459), const char * (____arg_1460), ... );// L576:L577 +extern int (__execvp_1464) (const char * (____file_1462), char * const ____argv_1463[]);// L581:L582 +extern int (__execlp_1467) (const char * (____file_1465), const char * (____arg_1466), ... );// L587:L588 +extern int (__nice_1469) (int ____inc_1468);// L601 +extern int (__nice_1470) (int ____inc_1468);// L601 +extern void (___exit_1472) (int ____status_1471);// L606 +extern void (___exit_1473) (int ____status_1471);// L606 +enum ____anonymous_tag_1495_1496 ;// L24 +enum ____anonymous_tag_1712_1713 ;// L71 +enum ____anonymous_tag_1778_1779 ;// L533 +extern long int (__pathconf_1782) (const char * (____path_1780), int ____name_1781);// L615:L616 +extern long int (__fpathconf_1785) (int ____fd_1783, int ____name_1784);// L619 +extern long int (__sysconf_1787) (int ____name_1786);// L622 +extern __size_t_1 (__confstr_1792) (int ____name_1788, char * (____buf_1789), __size_t_1 ____len_1790);// L626 +extern __size_t_1150 (__confstr_1793) (int ____name_1788, char * (____buf_1789), __size_t_1150 ____len_1791);// L626 +extern ____pid_t_25 (__getpid_1794) (void );// L631 +extern ____pid_t_1113 (__getpid_1795) (void );// L631 +extern ____pid_t_25 (__getpid_1797) (void );// L631 +extern ____pid_t_1113 (__getpid_1798) (void );// L631 +extern ____pid_t_25 (__getppid_1800) (void );// L634 +extern ____pid_t_1113 (__getppid_1801) (void );// L634 +extern ____pid_t_25 (__getpgrp_1803) (void );// L637 +extern ____pid_t_1113 (__getpgrp_1804) (void );// L637 +extern ____pid_t_25 (____getpgid_1808) (____pid_t_25 ____pid_1805);// L640 +extern ____pid_t_1113 (____getpgid_1809) (____pid_t_1113 ____pid_1806);// L640 +extern ____pid_t_25 (__getpgid_1813) (____pid_t_25 ____pid_1810);// L642 +extern ____pid_t_1113 (__getpgid_1814) (____pid_t_1113 ____pid_1811);// L642 +extern int (__setpgid_1822) (____pid_t_25 ____pid_1816, ____pid_t_25 ____pgid_1819);// L649 +extern int (__setpgid_1823) (____pid_t_1113 ____pid_1817, ____pid_t_1113 ____pgid_1820);// L649 +extern int (__setpgid_1825) (____pid_t_25 ____pid_1816, ____pid_t_25 ____pgid_1819);// L649 +extern int (__setpgid_1826) (____pid_t_1113 ____pid_1817, ____pid_t_1113 ____pgid_1820);// L649 +extern int (__setpgrp_1828) (void );// L663 +extern ____pid_t_25 (__setsid_1829) (void );// L670 +extern ____pid_t_1113 (__setsid_1830) (void );// L670 +extern ____pid_t_25 (__setsid_1832) (void );// L670 +extern ____pid_t_1113 (__setsid_1833) (void );// L670 +extern ____pid_t_25 (__getsid_1838) (____pid_t_25 ____pid_1835);// L674 +extern ____pid_t_1113 (__getsid_1839) (____pid_t_1113 ____pid_1836);// L674 +extern ____uid_t_17 (__getuid_1841) (void );// L678 +extern ____uid_t_1105 (__getuid_1842) (void );// L678 +extern ____uid_t_17 (__getuid_1844) (void );// L678 +extern ____uid_t_1105 (__getuid_1845) (void );// L678 +extern ____uid_t_17 (__geteuid_1847) (void );// L681 +extern ____uid_t_1105 (__geteuid_1848) (void );// L681 +extern ____gid_t_18 (__getgid_1850) (void );// L684 +extern ____gid_t_1106 (__getgid_1851) (void );// L684 +extern ____gid_t_18 (__getegid_1853) (void );// L687 +extern ____gid_t_1106 (__getegid_1854) (void );// L687 +extern int (__getgroups_1859) (int ____size_1855, ____gid_t_18 ____list_1856[]);// L692 +extern int (__getgroups_1860) (int ____size_1855, ____gid_t_1106 ____list_1857[]);// L692 +extern int (__getgroups_1862) (int ____size_1855, ____gid_t_18 ____list_1856[]);// L692 +extern int (__getgroups_1863) (int ____size_1855, ____gid_t_1106 ____list_1857[]);// L692 +extern int (__setuid_1868) (____uid_t_17 ____uid_1865);// L703 +extern int (__setuid_1869) (____uid_t_1105 ____uid_1866);// L703 +extern int (__setuid_1871) (____uid_t_17 ____uid_1865);// L703 +extern int (__setuid_1872) (____uid_t_1105 ____uid_1866);// L703 +extern int (__setreuid_1880) (____uid_t_17 ____ruid_1874, ____uid_t_17 ____euid_1877);// L708 +extern int (__setreuid_1881) (____uid_t_1105 ____ruid_1875, ____uid_t_1105 ____euid_1878);// L708 +extern int (__setreuid_1883) (____uid_t_17 ____ruid_1874, ____uid_t_17 ____euid_1877);// L708 +extern int (__setreuid_1884) (____uid_t_1105 ____ruid_1875, ____uid_t_1105 ____euid_1878);// L708 +extern int (__seteuid_1889) (____uid_t_17 ____uid_1886);// L713 +extern int (__seteuid_1890) (____uid_t_1105 ____uid_1887);// L713 +extern int (__seteuid_1892) (____uid_t_17 ____uid_1886);// L713 +extern int (__seteuid_1893) (____uid_t_1105 ____uid_1887);// L713 +extern int (__setgid_1898) (____gid_t_18 ____gid_1895);// L720 +extern int (__setgid_1899) (____gid_t_1106 ____gid_1896);// L720 +extern int (__setgid_1901) (____gid_t_18 ____gid_1895);// L720 +extern int (__setgid_1902) (____gid_t_1106 ____gid_1896);// L720 +extern int (__setgid_1904) (____gid_t_18 ____gid_1895);// L720 +extern int (__setgid_1905) (____gid_t_1106 ____gid_1896);// L720 +extern int (__setgid_1907) (____gid_t_18 ____gid_1895);// L720 +extern int (__setgid_1908) (____gid_t_1106 ____gid_1896);// L720 +extern int (__setregid_1916) (____gid_t_18 ____rgid_1910, ____gid_t_18 ____egid_1913);// L725 +extern int (__setregid_1917) (____gid_t_1106 ____rgid_1911, ____gid_t_1106 ____egid_1914);// L725 +extern int (__setregid_1919) (____gid_t_18 ____rgid_1910, ____gid_t_18 ____egid_1913);// L725 +extern int (__setregid_1920) (____gid_t_1106 ____rgid_1911, ____gid_t_1106 ____egid_1914);// L725 +extern int (__setegid_1925) (____gid_t_18 ____gid_1922);// L730 +extern int (__setegid_1926) (____gid_t_1106 ____gid_1923);// L730 +extern int (__setegid_1928) (____gid_t_18 ____gid_1922);// L730 +extern int (__setegid_1929) (____gid_t_1106 ____gid_1923);// L730 +extern ____pid_t_25 (__fork_1931) (void );// L759 +extern ____pid_t_1113 (__fork_1932) (void );// L759 +extern ____pid_t_25 (__fork_1934) (void );// L759 +extern ____pid_t_1113 (__fork_1935) (void );// L759 +extern ____pid_t_25 (__vfork_1937) (void );// L767 +extern ____pid_t_1113 (__vfork_1938) (void );// L767 +extern char * ((__ttyname_1941) (int ____fd_1940));// L773 +extern char * ((__ttyname_1942) (int ____fd_1940));// L773 +extern int (__ttyname_r_1947) (int ____fd_1943, char * (____buf_1944), __size_t_1 ____buflen_1945);// L777:L778 +extern int (__ttyname_r_1948) (int ____fd_1943, char * (____buf_1944), __size_t_1150 ____buflen_1946);// L777:L778 +extern int (__ttyname_r_1949) (int ____fd_1943, char * (____buf_1944), __size_t_1 ____buflen_1945);// L777:L778 +extern int (__ttyname_r_1950) (int ____fd_1943, char * (____buf_1944), __size_t_1150 ____buflen_1946);// L777:L778 +extern int (__isatty_1952) (int ____fd_1951);// L782 +extern int (__ttyslot_1953) (void );// L788 +extern int (__link_1956) (const char * (____from_1954), const char * (____to_1955));// L793:L794 +extern int (__link_1957) (const char * (____from_1954), const char * (____to_1955));// L793:L794 +extern int (__link_1958) (const char * (____from_1954), const char * (____to_1955));// L793:L794 +extern int (__link_1959) (const char * (____from_1954), const char * (____to_1955));// L793:L794 +extern int (__linkat_1965) (int ____fromfd_1960, const char * (____from_1961), int ____tofd_1962, const char * (____to_1963), int ____flags_1964);// L799:L801 +extern int (__linkat_1966) (int ____fromfd_1960, const char * (____from_1961), int ____tofd_1962, const char * (____to_1963), int ____flags_1964);// L799:L801 +extern int (__symlink_1969) (const char * (____from_1967), const char * (____to_1968));// L806:L807 +extern int (__symlink_1970) (const char * (____from_1967), const char * (____to_1968));// L806:L807 +extern __ssize_t_285 (__readlink_1975) (const char * __restrict ____path_1971, char * __restrict ____buf_1972, __size_t_1 ____len_1973);// L812:L814 +extern __ssize_t_1147 (__readlink_1976) (const char * __restrict ____path_1971, char * __restrict ____buf_1972, __size_t_1150 ____len_1974);// L812:L814 +extern __ssize_t_285 (__readlink_1981) (const char * __restrict ____path_1971, char * __restrict ____buf_1972, __size_t_1 ____len_1973);// L812:L814 +extern __ssize_t_1147 (__readlink_1982) (const char * __restrict ____path_1971, char * __restrict ____buf_1972, __size_t_1150 ____len_1974);// L812:L814 +extern int (__symlinkat_1990) (const char * (____from_1987), int ____tofd_1988, const char * (____to_1989));// L819:L820 +extern int (__symlinkat_1991) (const char * (____from_1987), int ____tofd_1988, const char * (____to_1989));// L819:L820 +extern __ssize_t_285 (__readlinkat_1997) (int ____fd_1992, const char * __restrict ____path_1993, char * __restrict ____buf_1994, __size_t_1 ____len_1995);// L823:L825 +extern __ssize_t_1147 (__readlinkat_1998) (int ____fd_1992, const char * __restrict ____path_1993, char * __restrict ____buf_1994, __size_t_1150 ____len_1996);// L823:L825 +extern __ssize_t_285 (__readlinkat_2003) (int ____fd_1992, const char * __restrict ____path_1993, char * __restrict ____buf_1994, __size_t_1 ____len_1995);// L823:L825 +extern __ssize_t_1147 (__readlinkat_2004) (int ____fd_1992, const char * __restrict ____path_1993, char * __restrict ____buf_1994, __size_t_1150 ____len_1996);// L823:L825 +extern int (__unlink_2010) (const char * (____name_2009));// L829 +extern int (__unlink_2011) (const char * (____name_2009));// L829 +extern int (__unlinkat_2015) (int ____fd_2012, const char * (____name_2013), int ____flag_2014);// L833:L834 +extern int (__rmdir_2017) (const char * (____path_2016));// L838 +extern int (__rmdir_2018) (const char * (____path_2016));// L838 +extern ____pid_t_25 (__tcgetpgrp_2020) (int ____fd_2019);// L842 +extern ____pid_t_1113 (__tcgetpgrp_2021) (int ____fd_2019);// L842 +extern int (__tcsetpgrp_2026) (int ____fd_2022, ____pid_t_25 ____pgrp_id_2023);// L845 +extern int (__tcsetpgrp_2027) (int ____fd_2022, ____pid_t_1113 ____pgrp_id_2024);// L845 +extern char * ((__getlogin_2028) (void ));// L852 +extern int (__getlogin_r_2032) (char * (____name_2029), __size_t_1 ____name_len_2030);// L860 +extern int (__getlogin_r_2033) (char * (____name_2029), __size_t_1150 ____name_len_2031);// L860 +extern int (__setlogin_2035) (const char * (____name_2034));// L865 +extern char * (__optarg_2036);// L57 +extern int __optind_2037;// L71 +extern int __opterr_2038;// L76 +extern int __optopt_2039;// L80 +extern int (__getopt_2043) (int _____argc_2040, char * const * (_____argv_2041), const char * (____shortopts_2042));// L150:L151 +extern int (__gethostname_2047) (char * (____name_2044), __size_t_1 ____len_2045);// L882 +extern int (__gethostname_2048) (char * (____name_2044), __size_t_1150 ____len_2046);// L882 +extern int (__sethostname_2052) (const char * (____name_2049), __size_t_1 ____len_2050);// L889:L890 +extern int (__sethostname_2053) (const char * (____name_2049), __size_t_1150 ____len_2051);// L889:L890 +extern int (__sethostname_2054) (const char * (____name_2049), __size_t_1 ____len_2050);// L889:L890 +extern int (__sethostname_2055) (const char * (____name_2049), __size_t_1150 ____len_2051);// L889:L890 +extern int (__sethostid_2057) (long int ____id_2056);// L894 +extern int (__sethostid_2058) (long int ____id_2056);// L894 +extern int (__getdomainname_2062) (char * (____name_2059), __size_t_1 ____len_2060);// L900:L901 +extern int (__getdomainname_2063) (char * (____name_2059), __size_t_1150 ____len_2061);// L900:L901 +extern int (__getdomainname_2064) (char * (____name_2059), __size_t_1 ____len_2060);// L900:L901 +extern int (__getdomainname_2065) (char * (____name_2059), __size_t_1150 ____len_2061);// L900:L901 +extern int (__setdomainname_2069) (const char * (____name_2066), __size_t_1 ____len_2067);// L902:L903 +extern int (__setdomainname_2070) (const char * (____name_2066), __size_t_1150 ____len_2068);// L902:L903 +extern int (__setdomainname_2071) (const char * (____name_2066), __size_t_1 ____len_2067);// L902:L903 +extern int (__setdomainname_2072) (const char * (____name_2066), __size_t_1150 ____len_2068);// L902:L903 +extern int (__vhangup_2073) (void );// L909 +extern int (__revoke_2075) (const char * (____file_2074));// L912 +extern int (__revoke_2076) (const char * (____file_2074));// L912 +extern int (__profil_2083) (unsigned short int * (____sample_buffer_2077), __size_t_1 ____size_2078, __size_t_1 ____offset_2080, unsigned int ____scale_2082);// L920:L922 +extern int (__profil_2084) (unsigned short int * (____sample_buffer_2077), __size_t_1150 ____size_2079, __size_t_1150 ____offset_2081, unsigned int ____scale_2082);// L920:L922 +extern int (__acct_2086) (const char * (____name_2085));// L928 +extern char * ((__getusershell_2087) (void ));// L932 +extern void (__endusershell_2088) (void );// L933 +extern void (__setusershell_2089) (void );// L934 +extern int (__daemon_2092) (int ____nochdir_2090, int ____noclose_2091);// L940 +extern int (__daemon_2093) (int ____nochdir_2090, int ____noclose_2091);// L940 +extern int (__chroot_2095) (const char * (____path_2094));// L947 +extern int (__chroot_2096) (const char * (____path_2094));// L947 +extern char * ((__getpass_2098) (const char * (____prompt_2097)));// L951 +extern int (__fsync_2100) (int ____fd_2099);// L959 +extern int (__fsync_2101) (int ____fd_2099);// L959 +extern int (__fsync_2102) (int ____fd_2099);// L959 +extern long int (__gethostid_2103) (void );// L972 +extern void (__sync_2104) (void );// L975 +extern int (__getpagesize_2105) (void );// L981 +extern int (__getdtablesize_2106) (void );// L986 +extern int (__truncate_2115) (const char * (____file_2107), ____off_t_23 ____length_2108);// L996:L997 +extern int (__truncate_2116) (const char * (____file_2107), ____off_t_1111 ____length_2109);// L996:L997 +extern int (__truncate_2121) (const char * (____file_2107), ____off_t_23 ____length_2108);// L996:L997 +extern int (__truncate_2122) (const char * (____file_2107), ____off_t_1111 ____length_2109);// L996:L997 +extern int (__truncate_2118) (const char * (____file_2111), ____off64_t_24 ____length_2112);// L1000:L1002 +extern int (__truncate_2119) (const char * (____file_2111), ____off64_t_1112 ____length_2113);// L1000:L1002 +extern int (__truncate_2124) (const char * (____file_2111), ____off64_t_24 ____length_2112);// L1000:L1002 +extern int (__truncate_2125) (const char * (____file_2111), ____off64_t_1112 ____length_2113);// L1000:L1002 +extern int (__ftruncate_2144) (int ____fd_2131, ____off64_t_24 ____length_2132);// L1022:L1023 +extern int (__ftruncate_2145) (int ____fd_2131, ____off64_t_1112 ____length_2133);// L1022:L1023 +extern int (__ftruncate_2141) (int ____fd_2127, ____off_t_23 ____length_2128);// L1019 +extern int (__ftruncate_2142) (int ____fd_2127, ____off_t_1111 ____length_2129);// L1019 +extern int (__ftruncate_2138) (int ____fd_2131, ____off64_t_24 ____length_2132);// L1022:L1023 +extern int (__ftruncate_2139) (int ____fd_2131, ____off64_t_1112 ____length_2133);// L1022:L1023 +extern int (__ftruncate_2135) (int ____fd_2127, ____off_t_23 ____length_2128);// L1019 +extern int (__ftruncate_2136) (int ____fd_2127, ____off_t_1111 ____length_2129);// L1019 +extern int (__brk_2148) (void * (____addr_2147));// L1040 +extern int (__brk_2149) (void * (____addr_2147));// L1040 +extern void * ((__sbrk_2153) (__intptr_t_1172 ____delta_2150));// L1046 +extern void * ((__sbrk_2154) (__intptr_t_1173 ____delta_2151));// L1046 +extern long int (__syscall_2157) (long int ____sysno_2156, ... );// L1061 +extern int (__lockf_2177) (int ____fd_2163, int ____cmd_2164, ____off64_t_24 ____len_2165);// L1087:L1088 +extern int (__lockf_2178) (int ____fd_2163, int ____cmd_2164, ____off64_t_1112 ____len_2166);// L1087:L1088 +extern int (__lockf_2174) (int ____fd_2158, int ____cmd_2159, ____off_t_23 ____len_2160);// L1084 +extern int (__lockf_2175) (int ____fd_2158, int ____cmd_2159, ____off_t_1111 ____len_2161);// L1084 +extern int (__lockf_2171) (int ____fd_2163, int ____cmd_2164, ____off64_t_24 ____len_2165);// L1087:L1088 +extern int (__lockf_2172) (int ____fd_2163, int ____cmd_2164, ____off64_t_1112 ____len_2166);// L1087:L1088 +extern int (__lockf_2168) (int ____fd_2158, int ____cmd_2159, ____off_t_23 ____len_2160);// L1084 +extern int (__lockf_2169) (int ____fd_2158, int ____cmd_2159, ____off_t_1111 ____len_2161);// L1084 +extern int (__fdatasync_2181) (int ____fildes_2180);// L1115 +extern __ssize_t_285 (____read_chk_2188) (int ____fd_2182, void * (____buf_2183), __size_t_1 ____nbytes_2184, __size_t_1 ____buflen_2186);// L23:L24 +extern __ssize_t_1146 (____read_chk_2189) (int ____fd_2182, void * (____buf_2183), __size_t_1 ____nbytes_2184, __size_t_1 ____buflen_2186);// L23:L24 +extern __ssize_t_1147 (____read_chk_2190) (int ____fd_2182, void * (____buf_2183), __size_t_1150 ____nbytes_2185, __size_t_1150 ____buflen_2187);// L23:L24 +extern __ssize_t_285 (____read_alias_2199) (int ____fd_2195, void * (____buf_2196), __size_t_1 ____nbytes_2197);// L25:L26 +extern __ssize_t_1146 (____read_alias_2200) (int ____fd_2195, void * (____buf_2196), __size_t_1 ____nbytes_2197);// L25:L26 +extern __ssize_t_1147 (____read_alias_2201) (int ____fd_2195, void * (____buf_2196), __size_t_1150 ____nbytes_2198);// L25:L26 +extern __ssize_t_285 (____read_chk_warn_2212) (int ____fd_2206, void * (____buf_2207), __size_t_1 ____nbytes_2208, __size_t_1 ____buflen_2210);// L27:L31 +extern __ssize_t_1146 (____read_chk_warn_2213) (int ____fd_2206, void * (____buf_2207), __size_t_1 ____nbytes_2208, __size_t_1 ____buflen_2210);// L27:L31 +extern __ssize_t_1147 (____read_chk_warn_2214) (int ____fd_2206, void * (____buf_2207), __size_t_1150 ____nbytes_2209, __size_t_1150 ____buflen_2211);// L27:L31 /* no function due to type errors in the function prototype */ -extern __ssize_t_252 (____readlink_chk_1750) (const char * __restrict ____path_1746, char * __restrict ____buf_1747, __size_t_1 ____len_1748, __size_t_1 ____buflen_1749);// L123:L126 -extern __ssize_t_252 (____readlink_alias_1755) (const char * __restrict ____path_1752, char * __restrict ____buf_1753, __size_t_1 ____len_1754);// L127:L130 -extern __ssize_t_252 (____readlink_chk_warn_1761) (const char * __restrict ____path_1757, char * __restrict ____buf_1758, __size_t_1 ____len_1759, __size_t_1 ____buflen_1760);// L131:L136 +extern __ssize_t_285 (____readlink_chk_2233) (const char * __restrict ____path_2227, char * __restrict ____buf_2228, __size_t_1 ____len_2229, __size_t_1 ____buflen_2231);// L123:L126 +extern __ssize_t_1147 (____readlink_chk_2234) (const char * __restrict ____path_2227, char * __restrict ____buf_2228, __size_t_1150 ____len_2230, __size_t_1150 ____buflen_2232);// L123:L126 +extern __ssize_t_285 (____readlink_alias_2243) (const char * __restrict ____path_2239, char * __restrict ____buf_2240, __size_t_1 ____len_2241);// L127:L130 +extern __ssize_t_1147 (____readlink_alias_2244) (const char * __restrict ____path_2239, char * __restrict ____buf_2240, __size_t_1150 ____len_2242);// L127:L130 +extern __ssize_t_285 (____readlink_chk_warn_2255) (const char * __restrict ____path_2249, char * __restrict ____buf_2250, __size_t_1 ____len_2251, __size_t_1 ____buflen_2253);// L131:L136 +extern __ssize_t_1147 (____readlink_chk_warn_2256) (const char * __restrict ____path_2249, char * __restrict ____buf_2250, __size_t_1150 ____len_2252, __size_t_1150 ____buflen_2254);// L131:L136 /* no function due to type errors in the function prototype */ -extern __ssize_t_252 (____readlinkat_chk_1772) (int ____fd_1767, const char * __restrict ____path_1768, char * __restrict ____buf_1769, __size_t_1 ____len_1770, __size_t_1 ____buflen_1771);// L155:L158 -extern __ssize_t_252 (____readlinkat_alias_1778) (int ____fd_1774, const char * __restrict ____path_1775, char * __restrict ____buf_1776, __size_t_1 ____len_1777);// L159:L163 -extern __ssize_t_252 (____readlinkat_chk_warn_1785) (int ____fd_1780, const char * __restrict ____path_1781, char * __restrict ____buf_1782, __size_t_1 ____len_1783, __size_t_1 ____buflen_1784);// L164:L170 +extern __ssize_t_285 (____readlinkat_chk_2276) (int ____fd_2269, const char * __restrict ____path_2270, char * __restrict ____buf_2271, __size_t_1 ____len_2272, __size_t_1 ____buflen_2274);// L155:L158 +extern __ssize_t_1147 (____readlinkat_chk_2277) (int ____fd_2269, const char * __restrict ____path_2270, char * __restrict ____buf_2271, __size_t_1150 ____len_2273, __size_t_1150 ____buflen_2275);// L155:L158 +extern __ssize_t_285 (____readlinkat_alias_2287) (int ____fd_2282, const char * __restrict ____path_2283, char * __restrict ____buf_2284, __size_t_1 ____len_2285);// L159:L163 +extern __ssize_t_1147 (____readlinkat_alias_2288) (int ____fd_2282, const char * __restrict ____path_2283, char * __restrict ____buf_2284, __size_t_1150 ____len_2286);// L159:L163 +extern __ssize_t_285 (____readlinkat_chk_warn_2300) (int ____fd_2293, const char * __restrict ____path_2294, char * __restrict ____buf_2295, __size_t_1 ____len_2296, __size_t_1 ____buflen_2298);// L164:L170 +extern __ssize_t_1147 (____readlinkat_chk_warn_2301) (int ____fd_2293, const char * __restrict ____path_2294, char * __restrict ____buf_2295, __size_t_1150 ____len_2297, __size_t_1150 ____buflen_2299);// L164:L170 /* no function due to type errors in the function prototype */ -extern char * ((____getcwd_chk_1795) (char * (____buf_1792), __size_t_1 ____size_1793, __size_t_1 ____buflen_1794));// L189:L190 -extern char * ((____getcwd_chk_1796) (char * (____buf_1792), __size_t_1 ____size_1793, __size_t_1 ____buflen_1794));// L189:L190 -extern char * ((____getcwd_alias_1799) (char * (____buf_1797), __size_t_1 ____size_1798));// L191:L192 -extern char * ((____getcwd_chk_warn_1803) (char * (____buf_1800), __size_t_1 ____size_1801, __size_t_1 ____buflen_1802));// L193:L197 +extern char * ((____getcwd_chk_2320) (char * (____buf_2315), __size_t_1 ____size_2316, __size_t_1 ____buflen_2318));// L189:L190 +extern char * ((____getcwd_chk_2321) (char * (____buf_2315), __size_t_1150 ____size_2317, __size_t_1150 ____buflen_2319));// L189:L190 +extern char * ((____getcwd_chk_2322) (char * (____buf_2315), __size_t_1 ____size_2316, __size_t_1 ____buflen_2318));// L189:L190 +extern char * ((____getcwd_chk_2323) (char * (____buf_2315), __size_t_1150 ____size_2317, __size_t_1150 ____buflen_2319));// L189:L190 +extern char * ((____getcwd_alias_2327) (char * (____buf_2324), __size_t_1 ____size_2325));// L191:L192 +extern char * ((____getcwd_alias_2328) (char * (____buf_2324), __size_t_1150 ____size_2326));// L191:L192 +extern char * ((____getcwd_chk_warn_2334) (char * (____buf_2329), __size_t_1 ____size_2330, __size_t_1 ____buflen_2332));// L193:L197 +extern char * ((____getcwd_chk_warn_2335) (char * (____buf_2329), __size_t_1150 ____size_2331, __size_t_1150 ____buflen_2333));// L193:L197 /* no function due to type errors in the function prototype */ -extern char * ((____getwd_chk_1809) (char * (____buf_1807), __size_t_1 __buflen_1808));// L214:L215 -extern char * ((____getwd_warn_1811) (char * (____buf_1810)));// L216:L218 +extern char * ((____getwd_chk_2344) (char * (____buf_2341), __size_t_1 __buflen_2342));// L214:L215 +extern char * ((____getwd_chk_2345) (char * (____buf_2341), __size_t_1150 __buflen_2343));// L214:L215 +extern char * ((____getwd_warn_2347) (char * (____buf_2346)));// L216:L218 /* no function due to type errors in the function prototype */ -extern __size_t_1 (____confstr_chk_1818) (int ____name_1814, char * (____buf_1815), __size_t_1 ____len_1816, __size_t_1 ____buflen_1817);// L229:L230 -extern __size_t_1 (____confstr_chk_1819) (int ____name_1814, char * (____buf_1815), __size_t_1 ____len_1816, __size_t_1 ____buflen_1817);// L229:L230 -extern __size_t_1 (____confstr_alias_1823) (int ____name_1820, char * (____buf_1821), __size_t_1 ____len_1822);// L231:L232 -extern __size_t_1 (____confstr_chk_warn_1828) (int ____name_1824, char * (____buf_1825), __size_t_1 ____len_1826, __size_t_1 ____buflen_1827);// L233:L237 +extern __size_t_1 (____confstr_chk_2356) (int ____name_2350, char * (____buf_2351), __size_t_1 ____len_2352, __size_t_1 ____buflen_2354);// L229:L230 +extern __size_t_1150 (____confstr_chk_2357) (int ____name_2350, char * (____buf_2351), __size_t_1150 ____len_2353, __size_t_1150 ____buflen_2355);// L229:L230 +extern __size_t_1 (____confstr_chk_2358) (int ____name_2350, char * (____buf_2351), __size_t_1 ____len_2352, __size_t_1 ____buflen_2354);// L229:L230 +extern __size_t_1150 (____confstr_chk_2359) (int ____name_2350, char * (____buf_2351), __size_t_1150 ____len_2353, __size_t_1150 ____buflen_2355);// L229:L230 +extern __size_t_1 (____confstr_alias_2364) (int ____name_2360, char * (____buf_2361), __size_t_1 ____len_2362);// L231:L232 +extern __size_t_1150 (____confstr_alias_2365) (int ____name_2360, char * (____buf_2361), __size_t_1150 ____len_2363);// L231:L232 +extern __size_t_1 (____confstr_chk_warn_2372) (int ____name_2366, char * (____buf_2367), __size_t_1 ____len_2368, __size_t_1 ____buflen_2370);// L233:L237 +extern __size_t_1150 (____confstr_chk_warn_2373) (int ____name_2366, char * (____buf_2367), __size_t_1150 ____len_2369, __size_t_1150 ____buflen_2371);// L233:L237 /* no function due to type errors in the function prototype */ -extern int (____getgroups_chk_1836) (int ____size_1833, ____gid_t_18 ____list_1834[], __size_t_1 ____listlen_1835);// L254:L255 -extern int (____getgroups_alias_1839) (int ____size_1837, ____gid_t_18 ____list_1838[]);// L256:L257 -extern int (____getgroups_chk_warn_1843) (int ____size_1840, ____gid_t_18 ____list_1841[], __size_t_1 ____listlen_1842);// L258:L262 +extern int (____getgroups_chk_2386) (int ____size_2380, ____gid_t_18 ____list_2381[], __size_t_1 ____listlen_2384);// L254:L255 +extern int (____getgroups_chk_2387) (int ____size_2380, ____gid_t_1106 ____list_2382[], __size_t_1150 ____listlen_2385);// L254:L255 +extern int (____getgroups_alias_2394) (int ____size_2390, ____gid_t_18 ____list_2391[]);// L256:L257 +extern int (____getgroups_alias_2395) (int ____size_2390, ____gid_t_1106 ____list_2392[]);// L256:L257 +extern int (____getgroups_chk_warn_2403) (int ____size_2397, ____gid_t_18 ____list_2398[], __size_t_1 ____listlen_2401);// L258:L262 +extern int (____getgroups_chk_warn_2404) (int ____size_2397, ____gid_t_1106 ____list_2399[], __size_t_1150 ____listlen_2402);// L258:L262 /* no function due to type errors in the function prototype */ -extern int (____ttyname_r_chk_1850) (int ____fd_1846, char * (____buf_1847), __size_t_1 ____buflen_1848, __size_t_1 ____nreal_1849);// L279:L280 -extern int (____ttyname_r_alias_1854) (int ____fd_1851, char * (____buf_1852), __size_t_1 ____buflen_1853);// L281:L283 -extern int (____ttyname_r_chk_warn_1859) (int ____fd_1855, char * (____buf_1856), __size_t_1 ____buflen_1857, __size_t_1 ____nreal_1858);// L284:L288 +extern int (____ttyname_r_chk_2418) (int ____fd_2412, char * (____buf_2413), __size_t_1 ____buflen_2414, __size_t_1 ____nreal_2416);// L279:L280 +extern int (____ttyname_r_chk_2419) (int ____fd_2412, char * (____buf_2413), __size_t_1150 ____buflen_2415, __size_t_1150 ____nreal_2417);// L279:L280 +extern int (____ttyname_r_alias_2424) (int ____fd_2420, char * (____buf_2421), __size_t_1 ____buflen_2422);// L281:L283 +extern int (____ttyname_r_alias_2425) (int ____fd_2420, char * (____buf_2421), __size_t_1150 ____buflen_2423);// L281:L283 +extern int (____ttyname_r_chk_warn_2432) (int ____fd_2426, char * (____buf_2427), __size_t_1 ____buflen_2428, __size_t_1 ____nreal_2430);// L284:L288 +extern int (____ttyname_r_chk_warn_2433) (int ____fd_2426, char * (____buf_2427), __size_t_1150 ____buflen_2429, __size_t_1150 ____nreal_2431);// L284:L288 /* no function due to type errors in the function prototype */ -extern int (____getlogin_r_chk_1866) (char * (____buf_1863), __size_t_1 ____buflen_1864, __size_t_1 ____nreal_1865);// L306:L307 -extern int (____getlogin_r_alias_1869) (char * (____buf_1867), __size_t_1 ____buflen_1868);// L308:L309 -extern int (____getlogin_r_chk_warn_1873) (char * (____buf_1870), __size_t_1 ____buflen_1871, __size_t_1 ____nreal_1872);// L310:L314 +extern int (____getlogin_r_chk_2443) (char * (____buf_2438), __size_t_1 ____buflen_2439, __size_t_1 ____nreal_2441);// L306:L307 +extern int (____getlogin_r_chk_2444) (char * (____buf_2438), __size_t_1150 ____buflen_2440, __size_t_1150 ____nreal_2442);// L306:L307 +extern int (____getlogin_r_alias_2448) (char * (____buf_2445), __size_t_1 ____buflen_2446);// L308:L309 +extern int (____getlogin_r_alias_2449) (char * (____buf_2445), __size_t_1150 ____buflen_2447);// L308:L309 +extern int (____getlogin_r_chk_warn_2455) (char * (____buf_2450), __size_t_1 ____buflen_2451, __size_t_1 ____nreal_2453);// L310:L314 +extern int (____getlogin_r_chk_warn_2456) (char * (____buf_2450), __size_t_1150 ____buflen_2452, __size_t_1150 ____nreal_2454);// L310:L314 /* no function due to type errors in the function prototype */ -extern int (____gethostname_chk_1879) (char * (____buf_1876), __size_t_1 ____buflen_1877, __size_t_1 ____nreal_1878);// L333:L334 -extern int (____gethostname_alias_1882) (char * (____buf_1880), __size_t_1 ____buflen_1881);// L335:L336 -extern int (____gethostname_chk_warn_1886) (char * (____buf_1883), __size_t_1 ____buflen_1884, __size_t_1 ____nreal_1885);// L337:L341 +extern int (____gethostname_chk_2465) (char * (____buf_2460), __size_t_1 ____buflen_2461, __size_t_1 ____nreal_2463);// L333:L334 +extern int (____gethostname_chk_2466) (char * (____buf_2460), __size_t_1150 ____buflen_2462, __size_t_1150 ____nreal_2464);// L333:L334 +extern int (____gethostname_alias_2470) (char * (____buf_2467), __size_t_1 ____buflen_2468);// L335:L336 +extern int (____gethostname_alias_2471) (char * (____buf_2467), __size_t_1150 ____buflen_2469);// L335:L336 +extern int (____gethostname_chk_warn_2477) (char * (____buf_2472), __size_t_1 ____buflen_2473, __size_t_1 ____nreal_2475);// L337:L341 +extern int (____gethostname_chk_warn_2478) (char * (____buf_2472), __size_t_1150 ____buflen_2474, __size_t_1150 ____nreal_2476);// L337:L341 /* no function due to type errors in the function prototype */ -extern int (____getdomainname_chk_1892) (char * (____buf_1889), __size_t_1 ____buflen_1890, __size_t_1 ____nreal_1891);// L360:L361 -extern int (____getdomainname_alias_1895) (char * (____buf_1893), __size_t_1 ____buflen_1894);// L362:L364 -extern int (____getdomainname_chk_warn_1899) (char * (____buf_1896), __size_t_1 ____buflen_1897, __size_t_1 ____nreal_1898);// L365:L370 +extern int (____getdomainname_chk_2487) (char * (____buf_2482), __size_t_1 ____buflen_2483, __size_t_1 ____nreal_2485);// L360:L361 +extern int (____getdomainname_chk_2488) (char * (____buf_2482), __size_t_1150 ____buflen_2484, __size_t_1150 ____nreal_2486);// L360:L361 +extern int (____getdomainname_alias_2492) (char * (____buf_2489), __size_t_1 ____buflen_2490);// L362:L364 +extern int (____getdomainname_alias_2493) (char * (____buf_2489), __size_t_1150 ____buflen_2491);// L362:L364 +extern int (____getdomainname_chk_warn_2499) (char * (____buf_2494), __size_t_1 ____buflen_2495, __size_t_1 ____nreal_2497);// L365:L370 +extern int (____getdomainname_chk_warn_2500) (char * (____buf_2494), __size_t_1150 ____buflen_2496, __size_t_1150 ____nreal_2498);// L365:L370 /* no function due to type errors in the function prototype */ -void (__shutdown_signal_1904) (int __sig_1902) { - -if (__static_condition_default_1908) { - -{ -{ - - - -char * (__m_1903);// L11 - -if ( __sig_1902 == 15 )// L13 -{ -if (__static_condition_default_1908) { - -{ -{ - - - - __m_1903 = "reboot" ; // L14 -} -} -} -} -else -{ -if (__static_condition_default_1908) { -if ( __sig_1902 == 31 )// L15 -{ -if (__static_condition_default_1908) { - -{ -{ - - - - __m_1903 = "poweroff" ; // L16 -} -} -} -} -else -{ -if (__static_condition_default_1908) { - -{ -{ - - - - __m_1903 = "halt" ; // L18 -} -} -} -} -} -} - __printf_383 ("Requesting system %s.", __m_1903 ) ; // L20 -} -} - - -} -} -void (__shutdown_signal_1905) (int __sig_1902) { +void (__shutdown_signal_2506) (int __sig_2504) { -if (__static_condition_default_1909) { +if (__static_condition_default_2507) { { { -char * (__m_1903);// L11 +char * (__m_2505);// L11 -if ( __sig_1902 == 15 )// L13 +if ( __sig_2504 == 15 )// L13 { -if (__static_condition_default_1909) { { { - __m_1903 = "reboot" ; // L14 -} + __m_2505 = "reboot" ; // L14 } } } else { -if (__static_condition_default_1909) { -if ( __sig_1902 == 31 )// L15 +if ( __sig_2504 == 31 )// L15 { -if (__static_condition_default_1909) { { { - __m_1903 = "poweroff" ; // L16 -} + __m_2505 = "poweroff" ; // L16 } } } else { -if (__static_condition_default_1909) { { { - __m_1903 = "halt" ; // L18 -} + __m_2505 = "halt" ; // L18 } } } } +if (__static_condition_default_2508) { + __printf_421 ("Requesting system %s.", __m_2505 ) ; // L20 } - __printf_383 ("Requesting system %s.", __m_1903 ) ; // L20 +if (__static_condition_default_2509) { +__static_type_error("type error") ; // L20 } -} - - } } -void (__shutdown_signal_1906) (int __sig_1902) { - -if (__static_condition_default_1910) { - -{ -{ - - - -char * (__m_1903);// L11 - -if ( __sig_1902 == 15 )// L13 -{ -if (__static_condition_default_1910) { - -{ -{ - - __m_1903 = "reboot" ; // L14 -} } } -} -else -{ -if (__static_condition_default_1910) { -if ( __sig_1902 == 31 )// L15 -{ -if (__static_condition_default_1910) { - -{ -{ +void (__open_new_terminal_2510) () { - - - __m_1903 = "poweroff" ; // L16 -} -} -} -} -else -{ -if (__static_condition_default_1910) { +if (__static_condition_default_2512) { { { - __m_1903 = "halt" ; // L18 -} -} -} -} -} -} - __printf_383 ("Requesting system %s.", __m_1903 ) ; // L20 -} -} - - +__static_type_error("type error") ; // L26 } } -void (__shutdown_signal_1907) (int __sig_1902) { - -if (__static_condition_default_1911) { - -{ -{ - - - -char * (__m_1903);// L11 - -if ( __sig_1902 == 15 )// L13 -{ -if (__static_condition_default_1911) { - -{ -{ - - __m_1903 = "reboot" ; // L14 -} -} } } -else -{ -if (__static_condition_default_1911) { -if ( __sig_1902 == 31 )// L15 -{ -if (__static_condition_default_1911) { +void (__open_new_terminal_2511) () { -{ -{ - - - - __m_1903 = "poweroff" ; // L16 -} -} -} -} -else -{ -if (__static_condition_default_1911) { +if (__static_condition_default_2513) { { { - __m_1903 = "halt" ; // L18 -} -} -} -} -} -} - __printf_383 ("Requesting system %s.", __m_1903 ) ; // L20 + __shutdown_signal_2506 (30) ; // L26 } } } } -void (__open_new_terminal_1912) () { +void (__run_2514) () { { { -if (__static_condition_default_1913) { - __shutdown_signal_1904 (30) ; // L26 -} -if (__static_condition_default_1914) { - __shutdown_signal_1905 (30) ; // L26 -} -if (__static_condition_default_1915) { - __shutdown_signal_1906 (30) ; // L26 -} -if (__static_condition_default_1911) { - __shutdown_signal_1907 (30) ; // L26 -} +if (__static_condition_default_2512) { + __open_new_terminal_2510 ( ) ; // L31 } +if (__static_condition_default_2513) { + __open_new_terminal_2511 ( ) ; // L31 } - - -} -void (__run_1916) () { - -{ -{ - - - - __open_new_terminal_1912 ( ) ; // L31 } } } -void (__run_actions_1917) () { +void (__run_actions_2515) () { { { - __run_1916 ( ) ; // L36 + __run_2514 ( ) ; // L36 } } } -int (__main_1920) (int __argc_1918, char * (* (__argv_1919))) { +int (__main_2518) (int __argc_2516, char * (* (__argv_2517))) { { { - __run_actions_1917 ( ) ; // L41 + __run_actions_2515 ( ) ; // L41 return 0 ;// L42 } } diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/cf1f2ace391.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/cf1f2ace391.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/cf1f2ace391.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/cf1f2ace391.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/cf1f2ace391.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/cf1f2ace391.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/df7b6577c6a.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/df7b6577c6a.desugared.c index 88b96fbb..24eda0a3 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/df7b6577c6a.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/df7b6577c6a.desugared.c @@ -7,211 +7,283 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_870; -extern const bool __static_condition_default_820; -extern const bool __static_condition_default_74; -extern const bool __static_condition_default_338; -extern const bool __static_condition_default_474; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_577; -extern const bool __static_condition_default_707; -extern const bool __static_condition_default_924; -extern const bool __static_condition_default_162; -extern const bool __static_condition_default_626; -extern const bool __static_condition_default_395; +extern const bool __static_condition_default_455; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_1104; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_1106; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_1107; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_333; +extern const bool __static_condition_default_347; +extern const bool __static_condition_default_929; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_559; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_512; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_84; extern const bool __static_condition_default_473; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_308; -extern const bool __static_condition_default_551; -extern const bool __static_condition_default_1023; -extern const bool __static_condition_default_236; -extern const bool __static_condition_default_743; -extern const bool __static_condition_default_318; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_274; extern const bool __static_condition_default_991; -extern const bool __static_condition_default_435; -extern const bool __static_condition_default_575; -extern const bool __static_condition_default_774; -extern const bool __static_condition_default_790; +extern const bool __static_condition_default_1099; +extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_759; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_568; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_311; +extern const bool __static_condition_default_521; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_753; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_544; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_636; +extern const bool __static_condition_default_613; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_388; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_549; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_803; extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_955; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_1098; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_337; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_761; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_846; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_789; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_1103; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_386; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_702; +extern const bool __static_condition_default_270; extern const bool __static_condition_default_296; -extern const bool __static_condition_default_1024; -extern const bool __static_condition_default_680; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_714; -extern const bool __static_condition_default_933; -extern const bool __static_condition_default_762; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_907; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_365; +extern const bool __static_condition_default_963; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_1090; extern const bool __static_condition_default_686; -extern const bool __static_condition_default_223; +extern const bool __static_condition_default_550; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_583; +extern const bool __static_condition_default_875; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_380; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_894; extern const bool __static_condition_default_657; -extern const bool __static_condition_default_969; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_881; -extern const bool __static_condition_default_234; -extern const bool __static_condition_default_772; -extern const bool __static_condition_default_336; -extern const bool __static_condition_default_320; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_719; -extern const bool __static_condition_default_586; -extern const bool __static_condition_default_733; -extern const bool __static_condition_default_641; -extern const bool __static_condition_default_356; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_495; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_488; +extern const bool __static_condition_default_842; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_288; extern const bool __static_condition_default_625; -extern const bool __static_condition_default_343; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_276; -extern const bool __static_condition_default_706; -extern const bool __static_condition_default_695; -extern const bool __static_condition_default_605; -extern const bool __static_condition_default_528; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_961; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_431; -extern const bool __static_condition_default_766; -extern const bool __static_condition_default_905; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_540; -extern const bool __static_condition_default_457; -extern const bool __static_condition_default_421; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_204; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_779; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_1102; +extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_367; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_76; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_1066; extern const bool __static_condition_default_751; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_226; -extern const bool __static_condition_default_379; -extern const bool __static_condition_default_595; -extern const bool __static_condition_default_225; -extern const bool __static_condition_default_400; -extern const bool __static_condition_default_935; -extern const bool __static_condition_default_784; -extern const bool __static_condition_default_696; -extern const bool __static_condition_default_496; -extern const bool __static_condition_default_556; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_567; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_374; -extern const bool __static_condition_default_358; -extern const bool __static_condition_default_501; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_893; -extern const bool __static_condition_default_500; -extern const bool __static_condition_default_300; -extern const bool __static_condition_default_349; -extern const bool __static_condition_default_953; -extern const bool __static_condition_default_508; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_1025; -extern const bool __static_condition_default_446; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_992; -extern const bool __static_condition_default_332; -extern const bool __static_condition_default_451; -extern const bool __static_condition_default_502; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_1100; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_536; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_619; +extern const bool __static_condition_default_250; extern const bool __static_condition_default_597; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_304; -extern const bool __static_condition_default_562; -extern const bool __static_condition_default_507; -extern const bool __static_condition_default_1017; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_482; -extern const bool __static_condition_default_517; -extern const bool __static_condition_default_749; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_330; -extern const bool __static_condition_default_448; -extern const bool __static_condition_default_889; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_161; -extern const bool __static_condition_default_165; -extern const bool __static_condition_default_470; -extern const bool __static_condition_default_254; -extern const bool __static_condition_default_720; -extern const bool __static_condition_default_906; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_419; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_721; +extern const bool __static_condition_default_290; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_791; +extern const bool __static_condition_default_651; extern const bool __static_condition_default_801; -extern const bool __static_condition_default_694; -extern const bool __static_condition_default_459; -extern const bool __static_condition_default_983; -extern const bool __static_condition_default_882; -extern const bool __static_condition_default_968; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_118; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_798; -extern const bool __static_condition_default_833; -extern const bool __static_condition_default_954; -extern const bool __static_condition_default_381; -extern const bool __static_condition_default_579; -extern const bool __static_condition_default_672; -extern const bool __static_condition_default_904; -extern const bool __static_condition_default_610; -extern const bool __static_condition_default_612; -extern const bool __static_condition_default_648; -extern const bool __static_condition_default_962; -extern const bool __static_condition_default_688; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_917; -extern const bool __static_condition_default_227; -extern const bool __static_condition_default_588; -extern const bool __static_condition_default_294; -extern const bool __static_condition_default_898; -extern const bool __static_condition_default_328; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_729; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_739; -extern const bool __static_condition_default_453; -extern const bool __static_condition_default_984; -extern const bool __static_condition_default_1016; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_639; -extern const bool __static_condition_default_976; -extern const bool __static_condition_default_370; -extern const bool __static_condition_default_449; -extern const bool __static_condition_default_778; -extern const bool __static_condition_default_480; -extern const bool __static_condition_default_454; -extern const bool __static_condition_default_256; -extern const bool __static_condition_default_640; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_230; -extern const bool __static_condition_default_948; -extern const bool __static_condition_default_232; -extern const bool __static_condition_default_310; -extern const bool __static_condition_default_999; -extern const bool __static_condition_default_394; -extern const bool __static_condition_default_977; -extern const bool __static_condition_default_393; -extern const bool __static_condition_default_931; -extern const bool __static_condition_default_429; -extern const bool __static_condition_default_603; -extern const bool __static_condition_default_642; -extern const bool __static_condition_default_533; -extern const bool __static_condition_default_351; -extern const bool __static_condition_default_627; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_941; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_489; extern const bool __static_condition_default_735; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_716; -extern const bool __static_condition_default_624; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_804; -extern const bool __static_condition_default_718; -extern const bool __static_condition_default_794; -extern const bool __static_condition_default_326; -extern const bool __static_condition_default_855; -extern const bool __static_condition_default_1006; -extern const bool __static_condition_default_655; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_769; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_862; extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_670; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_382; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_834; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_187; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_891; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_747; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_1105; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_1101; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_677; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_978; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -263,430 +335,506 @@ __static_renaming("____ssize_t_49", "__ssize_t"); __static_renaming("____syscall_slong_t_50", "__syscall_slong_t"); __static_renaming("____syscall_ulong_t_51", "__syscall_ulong_t"); __static_renaming("____loff_t_52", "__loff_t"); -__static_renaming("____qaddr_t_53", "__qaddr_t"); -__static_renaming("____caddr_t_54", "__caddr_t"); -__static_renaming("____intptr_t_55", "__intptr_t"); -__static_renaming("____socklen_t_56", "__socklen_t"); -__static_renaming("__FILE_58", "FILE"); -__static_renaming("____FILE_59", "__FILE"); -__static_renaming("____mbstate_t_68", "__mbstate_t"); -__static_renaming("___G_fpos_t_75", "_G_fpos_t"); -__static_renaming("___G_fpos64_t_81", "_G_fpos64_t"); -__static_renaming("____gnuc_va_list_82", "__gnuc_va_list"); -__static_renaming("___IO_lock_t_84", "_IO_lock_t"); -__static_renaming("___IO_FILE_163", "_IO_FILE"); -__static_renaming("___IO_FILE_164", "_IO_FILE"); -__static_renaming("___IO_2_1_stdin__167", "_IO_2_1_stdin_"); -__static_renaming("___IO_2_1_stdout__168", "_IO_2_1_stdout_"); -__static_renaming("___IO_2_1_stderr__169", "_IO_2_1_stderr_"); -__static_renaming("____io_read_fn_173", "__io_read_fn"); -__static_renaming("____io_write_fn_177", "__io_write_fn"); -__static_renaming("____io_seek_fn_181", "__io_seek_fn"); -__static_renaming("____io_close_fn_183", "__io_close_fn"); -__static_renaming("____underflow_184", "__underflow"); -__static_renaming("____underflow_185", "__underflow"); -__static_renaming("____uflow_186", "__uflow"); -__static_renaming("____uflow_187", "__uflow"); -__static_renaming("____overflow_188", "__overflow"); -__static_renaming("____overflow_189", "__overflow"); -__static_renaming("___IO_getc_193", "_IO_getc"); -__static_renaming("___IO_getc_194", "_IO_getc"); -__static_renaming("___IO_putc_199", "_IO_putc"); -__static_renaming("___IO_putc_200", "_IO_putc"); -__static_renaming("___IO_feof_204", "_IO_feof"); -__static_renaming("___IO_feof_205", "_IO_feof"); -__static_renaming("___IO_ferror_209", "_IO_ferror"); -__static_renaming("___IO_ferror_210", "_IO_ferror"); -__static_renaming("___IO_peekc_locked_214", "_IO_peekc_locked"); -__static_renaming("___IO_peekc_locked_215", "_IO_peekc_locked"); -__static_renaming("___IO_flockfile_216", "_IO_flockfile"); -__static_renaming("___IO_flockfile_217", "_IO_flockfile"); -__static_renaming("___IO_funlockfile_218", "_IO_funlockfile"); -__static_renaming("___IO_funlockfile_219", "_IO_funlockfile"); -__static_renaming("___IO_ftrylockfile_220", "_IO_ftrylockfile"); -__static_renaming("___IO_ftrylockfile_221", "_IO_ftrylockfile"); -__static_renaming("___IO_vfscanf_222", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_224", "_IO_vfscanf"); -__static_renaming("___IO_vfprintf_231", "_IO_vfprintf"); -__static_renaming("___IO_vfprintf_233", "_IO_vfprintf"); -__static_renaming("___IO_padn_238", "_IO_padn"); -__static_renaming("___IO_padn_239", "_IO_padn"); -__static_renaming("___IO_sgetn_240", "_IO_sgetn"); -__static_renaming("___IO_sgetn_241", "_IO_sgetn"); -__static_renaming("___IO_seekoff_242", "_IO_seekoff"); -__static_renaming("___IO_seekoff_243", "_IO_seekoff"); -__static_renaming("___IO_seekpos_244", "_IO_seekpos"); -__static_renaming("___IO_seekpos_245", "_IO_seekpos"); -__static_renaming("___IO_free_backup_area_246", "_IO_free_backup_area"); -__static_renaming("___IO_free_backup_area_247", "_IO_free_backup_area"); -__static_renaming("__va_list_248", "va_list"); -__static_renaming("__off_t_250", "off_t"); -__static_renaming("__off_t_251", "off_t"); -__static_renaming("__ssize_t_252", "ssize_t"); -__static_renaming("__fpos_t_253", "fpos_t"); -__static_renaming("__fpos_t_255", "fpos_t"); -__static_renaming("__stdin_257", "stdin"); -__static_renaming("__stdin_258", "stdin"); -__static_renaming("__stdout_259", "stdout"); -__static_renaming("__stdout_260", "stdout"); -__static_renaming("__stderr_261", "stderr"); -__static_renaming("__stderr_262", "stderr"); -__static_renaming("__remove_264", "remove"); -__static_renaming("__rename_267", "rename"); -__static_renaming("__renameat_272", "renameat"); -__static_renaming("__tmpfile_273", "tmpfile"); -__static_renaming("__tmpfile_275", "tmpfile"); -__static_renaming("__tmpfile_277", "tmpfile"); -__static_renaming("__tmpfile_279", "tmpfile"); -__static_renaming("__tmpnam_282", "tmpnam"); -__static_renaming("__tmpnam_283", "tmpnam"); -__static_renaming("__tmpnam_r_285", "tmpnam_r"); -__static_renaming("__tmpnam_r_286", "tmpnam_r"); -__static_renaming("__tempnam_289", "tempnam"); -__static_renaming("__tempnam_290", "tempnam"); -__static_renaming("__fclose_293", "fclose"); -__static_renaming("__fclose_295", "fclose"); -__static_renaming("__fflush_299", "fflush"); -__static_renaming("__fflush_unlocked_303", "fflush_unlocked"); -__static_renaming("__fopen_307", "fopen"); -__static_renaming("__fopen_309", "fopen"); -__static_renaming("__fopen_317", "fopen"); -__static_renaming("__fopen_319", "fopen"); -__static_renaming("__freopen_325", "freopen"); -__static_renaming("__freopen_327", "freopen"); -__static_renaming("__freopen_329", "freopen"); -__static_renaming("__freopen_331", "freopen"); -__static_renaming("__fdopen_335", "fdopen"); -__static_renaming("__fdopen_337", "fdopen"); -__static_renaming("__fmemopen_342", "fmemopen"); -__static_renaming("__fmemopen_344", "fmemopen"); -__static_renaming("__open_memstream_348", "open_memstream"); -__static_renaming("__open_memstream_350", "open_memstream"); -__static_renaming("__setbuf_355", "setbuf"); -__static_renaming("__setbuf_357", "setbuf"); -__static_renaming("__setvbuf_364", "setvbuf"); -__static_renaming("__setbuffer_369", "setbuffer"); -__static_renaming("__setlinebuf_373", "setlinebuf"); -__static_renaming("__fprintf_378", "fprintf"); -__static_renaming("__fprintf_380", "fprintf"); -__static_renaming("__printf_383", "printf"); -__static_renaming("__sprintf_386", "sprintf"); -__static_renaming("__vfprintf_392", "vfprintf"); -__static_renaming("__vprintf_399", "vprintf"); -__static_renaming("__vsprintf_405", "vsprintf"); -__static_renaming("__snprintf_409", "snprintf"); -__static_renaming("__vsnprintf_415", "vsnprintf"); -__static_renaming("__vdprintf_420", "vdprintf"); -__static_renaming("__dprintf_424", "dprintf"); -__static_renaming("__fscanf_428", "fscanf"); -__static_renaming("__fscanf_430", "fscanf"); -__static_renaming("__fscanf_432", "fscanf"); -__static_renaming("__fscanf_434", "fscanf"); -__static_renaming("__scanf_437", "scanf"); -__static_renaming("__scanf_438", "scanf"); -__static_renaming("__sscanf_441", "sscanf"); -__static_renaming("__vfscanf_468", "vfscanf"); -__static_renaming("__vfscanf_472", "vfscanf"); -__static_renaming("__vscanf_479", "vscanf"); -__static_renaming("__vscanf_481", "vscanf"); -__static_renaming("__vsscanf_487", "vsscanf"); -__static_renaming("__fgetc_520", "fgetc"); -__static_renaming("__getc_523", "getc"); -__static_renaming("__getchar_524", "getchar"); -__static_renaming("__getc_unlocked_527", "getc_unlocked"); -__static_renaming("__getchar_unlocked_529", "getchar_unlocked"); -__static_renaming("__fgetc_unlocked_532", "fgetc_unlocked"); -__static_renaming("__fputc_537", "fputc"); -__static_renaming("__fputc_539", "fputc"); -__static_renaming("__putc_544", "putc"); -__static_renaming("__putchar_546", "putchar"); -__static_renaming("__fputc_unlocked_550", "fputc_unlocked"); -__static_renaming("__putc_unlocked_555", "putc_unlocked"); -__static_renaming("__putchar_unlocked_558", "putchar_unlocked"); -__static_renaming("__getw_561", "getw"); -__static_renaming("__putw_566", "putw"); -__static_renaming("__fgets_572", "fgets"); -__static_renaming("__fgets_574", "fgets"); -__static_renaming("__fgets_576", "fgets"); -__static_renaming("__fgets_578", "fgets"); -__static_renaming("____getdelim_585", "__getdelim"); -__static_renaming("____getdelim_587", "__getdelim"); -__static_renaming("__getdelim_594", "getdelim"); -__static_renaming("__getdelim_596", "getdelim"); -__static_renaming("__getline_602", "getline"); -__static_renaming("__getline_604", "getline"); -__static_renaming("__fputs_609", "fputs"); -__static_renaming("__fputs_611", "fputs"); -__static_renaming("__puts_614", "puts"); -__static_renaming("__ungetc_618", "ungetc"); -__static_renaming("__fseek_654", "fseek"); -__static_renaming("__fseek_656", "fseek"); -__static_renaming("__ftell_660", "ftell"); -__static_renaming("__ftell_662", "ftell"); -__static_renaming("__rewind_666", "rewind"); -__static_renaming("__fseeko_671", "fseeko"); -__static_renaming("__fseeko_679", "fseeko"); -__static_renaming("__ftello_683", "ftello"); -__static_renaming("__ftello_685", "ftello"); -__static_renaming("__ftello_687", "ftello"); -__static_renaming("__fgetpos_693", "fgetpos"); -__static_renaming("__fgetpos_705", "fgetpos"); -__static_renaming("__fsetpos_713", "fsetpos"); -__static_renaming("__fsetpos_717", "fsetpos"); -__static_renaming("__clearerr_723", "clearerr"); -__static_renaming("__feof_726", "feof"); -__static_renaming("__feof_728", "feof"); -__static_renaming("__ferror_732", "ferror"); -__static_renaming("__ferror_734", "ferror"); -__static_renaming("__clearerr_unlocked_738", "clearerr_unlocked"); -__static_renaming("__feof_unlocked_742", "feof_unlocked"); -__static_renaming("__feof_unlocked_744", "feof_unlocked"); -__static_renaming("__ferror_unlocked_748", "ferror_unlocked"); -__static_renaming("__ferror_unlocked_750", "ferror_unlocked"); -__static_renaming("__perror_753", "perror"); -__static_renaming("__perror_754", "perror"); -__static_renaming("__sys_nerr_755", "sys_nerr"); -__static_renaming("__sys_errlist_756", "sys_errlist"); -__static_renaming("__fileno_759", "fileno"); -__static_renaming("__fileno_761", "fileno"); -__static_renaming("__fileno_unlocked_765", "fileno_unlocked"); -__static_renaming("__fileno_unlocked_767", "fileno_unlocked"); -__static_renaming("__popen_771", "popen"); -__static_renaming("__popen_773", "popen"); -__static_renaming("__pclose_777", "pclose"); -__static_renaming("__ctermid_780", "ctermid"); -__static_renaming("__flockfile_783", "flockfile"); -__static_renaming("__ftrylockfile_787", "ftrylockfile"); -__static_renaming("__ftrylockfile_789", "ftrylockfile"); -__static_renaming("__funlockfile_793", "funlockfile"); -__static_renaming("____sprintf_chk_825", "__sprintf_chk"); -__static_renaming("____vsprintf_chk_832", "__vsprintf_chk"); -__static_renaming("____snprintf_chk_846", "__snprintf_chk"); -__static_renaming("____vsnprintf_chk_854", "__vsnprintf_chk"); -__static_renaming("____fprintf_chk_869", "__fprintf_chk"); -__static_renaming("____printf_chk_873", "__printf_chk"); -__static_renaming("____vfprintf_chk_880", "__vfprintf_chk"); -__static_renaming("____vprintf_chk_888", "__vprintf_chk"); -__static_renaming("____dprintf_chk_910", "__dprintf_chk"); -__static_renaming("____vdprintf_chk_916", "__vdprintf_chk"); -__static_renaming("____fgets_chk_930", "__fgets_chk"); -__static_renaming("____fgets_chk_932", "__fgets_chk"); -__static_renaming("____fgets_chk_934", "__fgets_chk"); -__static_renaming("____fgets_alias_940", "__fgets_alias"); -__static_renaming("____fgets_chk_warn_947", "__fgets_chk_warn"); -__static_renaming("____cnt_1013", "__cnt"); -__static_renaming("____cptr_1014", "__cptr"); -__static_renaming("__n_1020", "n"); -__static_renaming("__main_1021", "main"); -__static_renaming("__main_1022", "main"); - -__static_condition_renaming("__static_condition_default_74", "(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_118", "(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_161", "(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_162", "(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_165", "(defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_223", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_225", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_226", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_227", "(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_230", "(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_232", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_234", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_235", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_236", "(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_249", "!(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); -__static_condition_renaming("__static_condition_default_254", "!(defined _FILE_OFFSET_BITS) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_256", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_274", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_276", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_278", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_280", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_294", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_296", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_300", "(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_304", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_308", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_310", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_318", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_320", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_326", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_328", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_330", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_332", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_336", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_338", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_343", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_345", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_349", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_351", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_356", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_358", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_370", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_374", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_379", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_381", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_393", "!(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_394", "(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_395", "(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_400", "!(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_421", "!(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_429", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_431", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_433", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_435", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_446", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_448", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_449", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_451", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_453", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_454", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_457", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_459", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_469", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_470", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_471", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_473", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_474", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_475", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_480", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_482", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_494", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_495", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_496", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_497", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_499", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_500", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_501", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_502", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_507", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_508", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_510", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_511", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_517", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_528", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_533", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_538", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_540", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_551", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_556", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_562", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_567", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_573", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_575", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_577", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_579", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_586", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_588", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_595", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_597", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_603", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_605", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_610", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_612", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_624", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_625", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_626", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_627", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_633", "!(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_639", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_640", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_641", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_642", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_648", "!(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_649", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_655", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_657", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_661", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_663", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_672", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_680", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_684", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_686", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_688", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_694", "!(defined _FILE_OFFSET_BITS) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_695", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_696", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_706", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_707", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_708", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_714", "!(defined _FILE_OFFSET_BITS) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_715", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_716", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_718", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_719", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_720", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_727", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_729", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_733", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_735", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_739", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_743", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_745", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_749", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_751", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_760", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_762", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_766", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_768", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_772", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_774", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_778", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_784", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_788", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_790", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_794", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_798", "!(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_801", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_804", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_809", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_813", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_817", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_820", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_833", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_840", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_855", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_864", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_870", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_881", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_882", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_883", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_889", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_893", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_898", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_904", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_905", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_906", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_917", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_924", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_931", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_933", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_935", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_941", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_948", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_953", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_954", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_961", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_962", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_968", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_969", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_976", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_977", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_983", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_984", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_991", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_992", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_998", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_999", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1006", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1007", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1015", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_1016", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1017", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1023", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) || (defined __STRICT_ANSI__)"); -__static_condition_renaming("__static_condition_default_1024", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1025", "(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); - -if (__static_condition_default_1025) { +__static_renaming("____qaddr_t_54", "__qaddr_t"); +__static_renaming("____caddr_t_55", "__caddr_t"); +__static_renaming("____intptr_t_56", "__intptr_t"); +__static_renaming("____socklen_t_57", "__socklen_t"); +__static_renaming("__FILE_59", "FILE"); +__static_renaming("____FILE_60", "__FILE"); +__static_renaming("____mbstate_t_69", "__mbstate_t"); +__static_renaming("___G_fpos_t_77", "_G_fpos_t"); +__static_renaming("___G_fpos64_t_85", "_G_fpos64_t"); +__static_renaming("____gnuc_va_list_86", "__gnuc_va_list"); +__static_renaming("___IO_lock_t_88", "_IO_lock_t"); +__static_renaming("___IO_FILE_171", "_IO_FILE"); +__static_renaming("___IO_FILE_172", "_IO_FILE"); +__static_renaming("___IO_2_1_stdin__175", "_IO_2_1_stdin_"); +__static_renaming("___IO_2_1_stdout__176", "_IO_2_1_stdout_"); +__static_renaming("___IO_2_1_stderr__177", "_IO_2_1_stderr_"); +__static_renaming("____io_read_fn_181", "__io_read_fn"); +__static_renaming("____io_write_fn_186", "__io_write_fn"); +__static_renaming("____io_seek_fn_192", "__io_seek_fn"); +__static_renaming("____io_close_fn_195", "__io_close_fn"); +__static_renaming("____underflow_196", "__underflow"); +__static_renaming("____underflow_197", "__underflow"); +__static_renaming("____uflow_199", "__uflow"); +__static_renaming("____uflow_200", "__uflow"); +__static_renaming("____overflow_202", "__overflow"); +__static_renaming("____overflow_203", "__overflow"); +__static_renaming("___IO_getc_208", "_IO_getc"); +__static_renaming("___IO_getc_209", "_IO_getc"); +__static_renaming("___IO_putc_215", "_IO_putc"); +__static_renaming("___IO_putc_216", "_IO_putc"); +__static_renaming("___IO_feof_221", "_IO_feof"); +__static_renaming("___IO_feof_222", "_IO_feof"); +__static_renaming("___IO_ferror_227", "_IO_ferror"); +__static_renaming("___IO_ferror_228", "_IO_ferror"); +__static_renaming("___IO_peekc_locked_233", "_IO_peekc_locked"); +__static_renaming("___IO_peekc_locked_234", "_IO_peekc_locked"); +__static_renaming("___IO_flockfile_236", "_IO_flockfile"); +__static_renaming("___IO_flockfile_237", "_IO_flockfile"); +__static_renaming("___IO_funlockfile_239", "_IO_funlockfile"); +__static_renaming("___IO_funlockfile_240", "_IO_funlockfile"); +__static_renaming("___IO_ftrylockfile_242", "_IO_ftrylockfile"); +__static_renaming("___IO_ftrylockfile_243", "_IO_ftrylockfile"); +__static_renaming("___IO_vfscanf_245", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_247", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_251", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_252", "_IO_vfscanf"); +__static_renaming("___IO_vfprintf_254", "_IO_vfprintf"); +__static_renaming("___IO_vfprintf_256", "_IO_vfprintf"); +__static_renaming("___IO_vfprintf_260", "_IO_vfprintf"); +__static_renaming("___IO_padn_261", "_IO_padn"); +__static_renaming("___IO_padn_262", "_IO_padn"); +__static_renaming("___IO_sgetn_265", "_IO_sgetn"); +__static_renaming("___IO_sgetn_266", "_IO_sgetn"); +__static_renaming("___IO_seekoff_268", "_IO_seekoff"); +__static_renaming("___IO_seekoff_269", "_IO_seekoff"); +__static_renaming("___IO_seekpos_272", "_IO_seekpos"); +__static_renaming("___IO_seekpos_273", "_IO_seekpos"); +__static_renaming("___IO_free_backup_area_276", "_IO_free_backup_area"); +__static_renaming("___IO_free_backup_area_277", "_IO_free_backup_area"); +__static_renaming("__va_list_279", "va_list"); +__static_renaming("__off_t_281", "off_t"); +__static_renaming("__off_t_283", "off_t"); +__static_renaming("__ssize_t_285", "ssize_t"); +__static_renaming("__fpos_t_287", "fpos_t"); +__static_renaming("__fpos_t_289", "fpos_t"); +__static_renaming("__stdin_291", "stdin"); +__static_renaming("__stdin_292", "stdin"); +__static_renaming("__stdout_294", "stdout"); +__static_renaming("__stdout_295", "stdout"); +__static_renaming("__stderr_297", "stderr"); +__static_renaming("__stderr_298", "stderr"); +__static_renaming("__remove_301", "remove"); +__static_renaming("__rename_304", "rename"); +__static_renaming("__renameat_309", "renameat"); +__static_renaming("__tmpfile_310", "tmpfile"); +__static_renaming("__tmpfile_312", "tmpfile"); +__static_renaming("__tmpfile_314", "tmpfile"); +__static_renaming("__tmpfile_316", "tmpfile"); +__static_renaming("__tmpnam_319", "tmpnam"); +__static_renaming("__tmpnam_320", "tmpnam"); +__static_renaming("__tmpnam_r_322", "tmpnam_r"); +__static_renaming("__tmpnam_r_323", "tmpnam_r"); +__static_renaming("__tempnam_326", "tempnam"); +__static_renaming("__tempnam_327", "tempnam"); +__static_renaming("__fclose_330", "fclose"); +__static_renaming("__fclose_332", "fclose"); +__static_renaming("__fflush_336", "fflush"); +__static_renaming("__fflush_unlocked_340", "fflush_unlocked"); +__static_renaming("__fopen_344", "fopen"); +__static_renaming("__fopen_346", "fopen"); +__static_renaming("__fopen_354", "fopen"); +__static_renaming("__fopen_356", "fopen"); +__static_renaming("__freopen_362", "freopen"); +__static_renaming("__freopen_364", "freopen"); +__static_renaming("__freopen_366", "freopen"); +__static_renaming("__freopen_368", "freopen"); +__static_renaming("__fdopen_372", "fdopen"); +__static_renaming("__fdopen_374", "fdopen"); +__static_renaming("__fmemopen_379", "fmemopen"); +__static_renaming("__fmemopen_381", "fmemopen"); +__static_renaming("__open_memstream_385", "open_memstream"); +__static_renaming("__open_memstream_387", "open_memstream"); +__static_renaming("__setbuf_392", "setbuf"); +__static_renaming("__setbuf_394", "setbuf"); +__static_renaming("__setvbuf_401", "setvbuf"); +__static_renaming("__setbuffer_407", "setbuffer"); +__static_renaming("__setlinebuf_411", "setlinebuf"); +__static_renaming("__fprintf_416", "fprintf"); +__static_renaming("__fprintf_418", "fprintf"); +__static_renaming("__printf_421", "printf"); +__static_renaming("__sprintf_424", "sprintf"); +__static_renaming("__vfprintf_430", "vfprintf"); +__static_renaming("__vprintf_437", "vprintf"); +__static_renaming("__vsprintf_443", "vsprintf"); +__static_renaming("__snprintf_448", "snprintf"); +__static_renaming("__vsnprintf_454", "vsnprintf"); +__static_renaming("__vdprintf_460", "vdprintf"); +__static_renaming("__dprintf_464", "dprintf"); +__static_renaming("__fscanf_468", "fscanf"); +__static_renaming("__fscanf_470", "fscanf"); +__static_renaming("__fscanf_472", "fscanf"); +__static_renaming("__fscanf_474", "fscanf"); +__static_renaming("__scanf_477", "scanf"); +__static_renaming("__scanf_478", "scanf"); +__static_renaming("__sscanf_481", "sscanf"); +__static_renaming("__vfscanf_509", "vfscanf"); +__static_renaming("__vfscanf_513", "vfscanf"); +__static_renaming("__vscanf_520", "vscanf"); +__static_renaming("__vscanf_522", "vscanf"); +__static_renaming("__vsscanf_528", "vsscanf"); +__static_renaming("__fgetc_563", "fgetc"); +__static_renaming("__getc_567", "getc"); +__static_renaming("__getchar_569", "getchar"); +__static_renaming("__getc_unlocked_572", "getc_unlocked"); +__static_renaming("__getchar_unlocked_574", "getchar_unlocked"); +__static_renaming("__fgetc_unlocked_577", "fgetc_unlocked"); +__static_renaming("__fputc_582", "fputc"); +__static_renaming("__fputc_584", "fputc"); +__static_renaming("__putc_589", "putc"); +__static_renaming("__putchar_592", "putchar"); +__static_renaming("__fputc_unlocked_596", "fputc_unlocked"); +__static_renaming("__putc_unlocked_601", "putc_unlocked"); +__static_renaming("__putchar_unlocked_604", "putchar_unlocked"); +__static_renaming("__getw_607", "getw"); +__static_renaming("__putw_612", "putw"); +__static_renaming("__fgets_618", "fgets"); +__static_renaming("__fgets_620", "fgets"); +__static_renaming("__fgets_622", "fgets"); +__static_renaming("__fgets_624", "fgets"); +__static_renaming("____getdelim_631", "__getdelim"); +__static_renaming("____getdelim_635", "__getdelim"); +__static_renaming("__getdelim_644", "getdelim"); +__static_renaming("__getdelim_648", "getdelim"); +__static_renaming("__getline_656", "getline"); +__static_renaming("__getline_660", "getline"); +__static_renaming("__fputs_667", "fputs"); +__static_renaming("__fputs_669", "fputs"); +__static_renaming("__puts_672", "puts"); +__static_renaming("__ungetc_676", "ungetc"); +__static_renaming("__fseek_714", "fseek"); +__static_renaming("__fseek_716", "fseek"); +__static_renaming("__ftell_720", "ftell"); +__static_renaming("__ftell_722", "ftell"); +__static_renaming("__rewind_726", "rewind"); +__static_renaming("__fseeko_733", "fseeko"); +__static_renaming("__fseeko_744", "fseeko"); +__static_renaming("__ftello_750", "ftello"); +__static_renaming("__ftello_754", "ftello"); +__static_renaming("__ftello_758", "ftello"); +__static_renaming("__fgetpos_766", "fgetpos"); +__static_renaming("__fgetpos_778", "fgetpos"); +__static_renaming("__fsetpos_786", "fsetpos"); +__static_renaming("__fsetpos_790", "fsetpos"); +__static_renaming("__clearerr_796", "clearerr"); +__static_renaming("__feof_800", "feof"); +__static_renaming("__feof_802", "feof"); +__static_renaming("__ferror_806", "ferror"); +__static_renaming("__ferror_808", "ferror"); +__static_renaming("__clearerr_unlocked_812", "clearerr_unlocked"); +__static_renaming("__feof_unlocked_816", "feof_unlocked"); +__static_renaming("__feof_unlocked_818", "feof_unlocked"); +__static_renaming("__ferror_unlocked_822", "ferror_unlocked"); +__static_renaming("__ferror_unlocked_824", "ferror_unlocked"); +__static_renaming("__perror_827", "perror"); +__static_renaming("__perror_828", "perror"); +__static_renaming("__sys_nerr_829", "sys_nerr"); +__static_renaming("__sys_errlist_830", "sys_errlist"); +__static_renaming("__fileno_833", "fileno"); +__static_renaming("__fileno_835", "fileno"); +__static_renaming("__fileno_unlocked_839", "fileno_unlocked"); +__static_renaming("__fileno_unlocked_841", "fileno_unlocked"); +__static_renaming("__popen_845", "popen"); +__static_renaming("__popen_847", "popen"); +__static_renaming("__pclose_851", "pclose"); +__static_renaming("__ctermid_854", "ctermid"); +__static_renaming("__flockfile_857", "flockfile"); +__static_renaming("__ftrylockfile_861", "ftrylockfile"); +__static_renaming("__ftrylockfile_863", "ftrylockfile"); +__static_renaming("__funlockfile_867", "funlockfile"); +__static_renaming("____sprintf_chk_899", "__sprintf_chk"); +__static_renaming("____vsprintf_chk_906", "__vsprintf_chk"); +__static_renaming("____snprintf_chk_920", "__snprintf_chk"); +__static_renaming("____vsnprintf_chk_928", "__vsnprintf_chk"); +__static_renaming("____fprintf_chk_943", "__fprintf_chk"); +__static_renaming("____printf_chk_947", "__printf_chk"); +__static_renaming("____vfprintf_chk_954", "__vfprintf_chk"); +__static_renaming("____vprintf_chk_962", "__vprintf_chk"); +__static_renaming("____dprintf_chk_984", "__dprintf_chk"); +__static_renaming("____vdprintf_chk_990", "__vdprintf_chk"); +__static_renaming("____fgets_chk_1004", "__fgets_chk"); +__static_renaming("____fgets_chk_1006", "__fgets_chk"); +__static_renaming("____fgets_chk_1008", "__fgets_chk"); +__static_renaming("____fgets_alias_1014", "__fgets_alias"); +__static_renaming("____fgets_chk_warn_1021", "__fgets_chk_warn"); +__static_renaming("____cnt_1087", "__cnt"); +__static_renaming("____cptr_1088", "__cptr"); +__static_renaming("__n_1094", "n"); +__static_renaming("__main_1095", "main"); +__static_renaming("__main_1096", "main"); +__static_renaming("__main_1097", "main"); + +__static_condition_renaming("__static_condition_default_53", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_76", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_84", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_123", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_169", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_170", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_173", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_182", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_187", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_193", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_198", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_201", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_204", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_210", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_217", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_223", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_229", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_235", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_238", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_241", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_244", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_246", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_248", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_249", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_250", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_253", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_255", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_257", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_258", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_259", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_263", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_264", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_267", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_270", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_271", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_274", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_275", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_278", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_280", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); +__static_condition_renaming("__static_condition_default_282", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_284", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_286", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_288", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_290", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_293", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_296", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_299", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_311", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_313", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_315", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_317", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_331", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_333", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_337", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_341", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_345", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_347", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_355", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_357", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_363", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_365", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_367", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_369", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_373", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_375", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_380", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_382", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_386", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_388", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_393", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_395", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_402", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_408", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_412", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_417", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_419", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_431", "!(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_432", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_433", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_438", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_444", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_455", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_461", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_469", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_471", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_473", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_475", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_486", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_488", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_489", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_491", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_493", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_494", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_497", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_499", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_503", "!(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_510", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_511", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_512", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_514", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_515", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_516", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_521", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_523", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_529", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_536", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_537", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_538", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_539", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_541", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_542", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_543", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_544", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_549", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_550", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_552", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_553", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_559", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_560", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_564", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_568", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_573", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_578", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_583", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_585", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_590", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_597", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_602", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_608", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_613", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_619", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_621", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_623", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_625", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_632", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_633", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_634", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_636", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_637", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_638", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_645", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_646", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_647", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_649", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_650", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_651", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_657", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_658", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_659", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_661", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_662", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_663", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_668", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_670", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_677", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_683", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_684", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_685", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_686", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_692", "!(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_693", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_699", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_700", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_701", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_702", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_708", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_709", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_715", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_717", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_721", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_723", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_727", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_734", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_735", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_736", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_745", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_746", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_747", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_751", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_752", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_753", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_755", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_756", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_757", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_759", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_760", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_761", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_767", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_768", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_769", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_779", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_780", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_781", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_787", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_788", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_789", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_791", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_792", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_793", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_797", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_801", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_803", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_807", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_809", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_813", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_817", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_819", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_823", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_825", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_834", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_836", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_840", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_842", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_846", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_848", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_852", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_858", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_862", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_864", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_868", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_872", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_875", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_878", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_883", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_887", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_891", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_894", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_907", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_914", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_929", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_938", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_944", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_955", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_956", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_957", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_963", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_967", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_972", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_978", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_979", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_980", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_991", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_998", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1005", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1007", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1009", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1015", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1022", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1027", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1028", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1035", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1036", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1042", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1043", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1050", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1051", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1057", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1058", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1065", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1066", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1072", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1073", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1080", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1081", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1089", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_1090", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1091", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1098", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) || !(defined __need___FILE) && (defined __STRICT_ANSI__)"); +__static_condition_renaming("__static_condition_default_1099", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined ENABLE_DESKTOP) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined ENABLE_DESKTOP) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined ENABLE_DESKTOP) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined ENABLE_DESKTOP) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined ENABLE_DESKTOP)"); +__static_condition_renaming("__static_condition_default_1100", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined ENABLE_DESKTOP) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined ENABLE_DESKTOP) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined ENABLE_DESKTOP) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined ENABLE_DESKTOP) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined ENABLE_DESKTOP)"); +__static_condition_renaming("__static_condition_default_1101", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1102", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined ENABLE_DESKTOP)"); +__static_condition_renaming("__static_condition_default_1103", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined ENABLE_DESKTOP)"); +__static_condition_renaming("__static_condition_default_1104", "(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_1105", "(defined __need___FILE) && !(defined ENABLE_DESKTOP)"); +__static_condition_renaming("__static_condition_default_1106", "(defined __need___FILE) && (defined ENABLE_DESKTOP)"); +__static_condition_renaming("__static_condition_default_1107", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); + +if (__static_condition_default_1107) { __static_parse_error("Unable to parse"); } }; @@ -743,142 +891,142 @@ typedef long int ____ssize_t_49;// L110:L172 typedef long int ____syscall_slong_t_50;// L93:L175 typedef unsigned long int ____syscall_ulong_t_51;// L94:L177 typedef ____off64_t_24 ____loff_t_52;// L181 -typedef ____quad_t_14 * (____qaddr_t_53);// L182 -typedef char * (____caddr_t_54);// L183 -typedef long int ____intptr_t_55;// L110:L186 -typedef unsigned int ____socklen_t_56;// L92:L189 -typedef struct __forward_tag_reference_57 __FILE_58;// L48 -typedef struct __forward_tag_reference_57 ____FILE_59;// L64 -union ____anonymous_tag_60_61 { -unsigned int ____wch_62;// L265 -char ____wchb_63[4];// L92 +typedef ____quad_t_14 * (____qaddr_t_54);// L182 +typedef char * (____caddr_t_55);// L183 +typedef long int ____intptr_t_56;// L110:L186 +typedef unsigned int ____socklen_t_57;// L92:L189 +typedef struct __forward_tag_reference_58 __FILE_59;// L48 +typedef struct __forward_tag_reference_58 ____FILE_60;// L64 +union ____anonymous_tag_61_62 { +unsigned int ____wch_63;// L265 +char ____wchb_64[4];// L92 }; -struct ____anonymous_tag_64_65 { -int ____count_66;// L84 -union ____anonymous_tag_60_61 ____value_67;// L85 +struct ____anonymous_tag_65_66 { +int ____count_67;// L84 +union ____anonymous_tag_61_62 ____value_68;// L85 }; -typedef struct ____anonymous_tag_64_65 ____mbstate_t_68;// L82:L94 -struct ____anonymous_tag_69_70 { -____off_t_23 ____pos_71;// L0 -____mbstate_t_68 ____state_72;// L0 +typedef struct ____anonymous_tag_65_66 ____mbstate_t_69;// L82:L94 +struct ____anonymous_tag_70_71 { +____off_t_23 ____pos_72;// L0 +____mbstate_t_69 ____state_74;// L0 }; -typedef struct ____anonymous_tag_69_70 ___G_fpos_t_75;// L21:L25 -struct ____anonymous_tag_76_77 { -____off64_t_24 ____pos_78;// L0 -____mbstate_t_68 ____state_79;// L0 +typedef struct ____anonymous_tag_70_71 ___G_fpos_t_77;// L21:L25 +struct ____anonymous_tag_78_79 { +____off64_t_24 ____pos_80;// L0 +____mbstate_t_69 ____state_82;// L0 }; -typedef struct ____anonymous_tag_76_77 ___G_fpos64_t_81;// L26:L30 -typedef __builtin_va_list ____gnuc_va_list_82;// L40 -typedef void ___IO_lock_t_84;// L150 -struct ___IO_marker_86 { -struct __forward_tag_reference_85 * (___next_87);// L0 -struct __forward_tag_reference_57 * (___sbuf_88);// L0 -int ___pos_89;// L162 +typedef struct ____anonymous_tag_78_79 ___G_fpos64_t_85;// L26:L30 +typedef __builtin_va_list ____gnuc_va_list_86;// L40 +typedef void ___IO_lock_t_88;// L150 +struct ___IO_marker_90 { +struct __forward_tag_reference_89 * (___next_91);// L0 +struct __forward_tag_reference_58 * (___sbuf_92);// L0 +int ___pos_93;// L162 }; -enum ____codecvt_result_94 { -____codecvt_ok_90, -____codecvt_partial_91, -____codecvt_error_92, -____codecvt_noconv_93, +enum ____codecvt_result_98 { +____codecvt_ok_94, +____codecvt_partial_95, +____codecvt_error_96, +____codecvt_noconv_97, }; -struct ___IO_FILE_95 { -int ___flags_96;// L242 -char * (___IO_read_ptr_97);// L247 -char * (___IO_read_end_98);// L248 -char * (___IO_read_base_99);// L249 -char * (___IO_write_base_100);// L250 -char * (___IO_write_ptr_101);// L251 -char * (___IO_write_end_102);// L252 -char * (___IO_buf_base_103);// L253 -char * (___IO_buf_end_104);// L254 -char * (___IO_save_base_105);// L256 -char * (___IO_backup_base_106);// L257 -char * (___IO_save_end_107);// L258 -struct ___IO_marker_86 * (___markers_108);// L260 -struct __forward_tag_reference_57 * (___chain_109);// L0 -int ___fileno_110;// L264 -int ___flags2_111;// L268 -____off_t_23 ___old_offset_112;// L0 -unsigned short ___cur_column_113;// L274 -signed char ___vtable_offset_114;// L275 -char ___shortbuf_115[1];// L276 -___IO_lock_t_84 * (___lock_116);// L0 +struct ___IO_FILE_99 { +int ___flags_100;// L242 +char * (___IO_read_ptr_101);// L247 +char * (___IO_read_end_102);// L248 +char * (___IO_read_base_103);// L249 +char * (___IO_write_base_104);// L250 +char * (___IO_write_ptr_105);// L251 +char * (___IO_write_end_106);// L252 +char * (___IO_buf_base_107);// L253 +char * (___IO_buf_end_108);// L254 +char * (___IO_save_base_109);// L256 +char * (___IO_backup_base_110);// L257 +char * (___IO_save_end_111);// L258 +struct ___IO_marker_90 * (___markers_112);// L260 +struct __forward_tag_reference_58 * (___chain_113);// L0 +int ___fileno_114;// L264 +int ___flags2_115;// L268 +____off_t_23 ___old_offset_116;// L0 +unsigned short ___cur_column_118;// L274 +signed char ___vtable_offset_119;// L275 +char ___shortbuf_120[1];// L276 +___IO_lock_t_88 * (___lock_121);// L0 }; -struct ___IO_FILE_119 { -int ___flags_120;// L242 -char * (___IO_read_ptr_121);// L247 -char * (___IO_read_end_122);// L248 -char * (___IO_read_base_123);// L249 -char * (___IO_write_base_124);// L250 -char * (___IO_write_ptr_125);// L251 -char * (___IO_write_end_126);// L252 -char * (___IO_buf_base_127);// L253 -char * (___IO_buf_end_128);// L254 -char * (___IO_save_base_129);// L256 -char * (___IO_backup_base_130);// L257 -char * (___IO_save_end_131);// L258 -struct ___IO_marker_86 * (___markers_132);// L260 -struct __forward_tag_reference_57 * (___chain_133);// L0 -int ___fileno_134;// L264 -int ___flags2_135;// L268 -____off_t_23 ___old_offset_136;// L0 -unsigned short ___cur_column_137;// L274 -signed char ___vtable_offset_138;// L275 -char ___shortbuf_139[1];// L276 -___IO_lock_t_84 * (___lock_140);// L0 -____off64_t_24 ___offset_142;// L0 -void * (____pad1_143);// L297 -void * (____pad2_144);// L298 -void * (____pad3_145);// L299 -void * (____pad4_146);// L300 -__size_t_1 ____pad5_147;// L0 -int ___mode_148;// L303 -char ___unused2_149[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +struct ___IO_FILE_124 { +int ___flags_125;// L242 +char * (___IO_read_ptr_126);// L247 +char * (___IO_read_end_127);// L248 +char * (___IO_read_base_128);// L249 +char * (___IO_write_base_129);// L250 +char * (___IO_write_ptr_130);// L251 +char * (___IO_write_end_131);// L252 +char * (___IO_buf_base_132);// L253 +char * (___IO_buf_end_133);// L254 +char * (___IO_save_base_134);// L256 +char * (___IO_backup_base_135);// L257 +char * (___IO_save_end_136);// L258 +struct ___IO_marker_90 * (___markers_137);// L260 +struct __forward_tag_reference_58 * (___chain_138);// L0 +int ___fileno_139;// L264 +int ___flags2_140;// L268 +____off_t_23 ___old_offset_141;// L0 +unsigned short ___cur_column_143;// L274 +signed char ___vtable_offset_144;// L275 +char ___shortbuf_145[1];// L276 +___IO_lock_t_88 * (___lock_146);// L0 +____off64_t_24 ___offset_148;// L0 +void * (____pad1_150);// L297 +void * (____pad2_151);// L298 +void * (____pad3_152);// L299 +void * (____pad4_153);// L300 +__size_t_1 ____pad5_154;// L0 +int ___mode_155;// L303 +char ___unused2_156[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -struct ___IO_FILE_complete_150 { -struct ___IO_FILE_95 ___file_151;// L286 -____off64_t_24 ___offset_153;// L0 -void * (____pad1_154);// L297 -void * (____pad2_155);// L298 -void * (____pad3_156);// L299 -void * (____pad4_157);// L300 -__size_t_1 ____pad5_158;// L0 -int ___mode_159;// L303 -char ___unused2_160[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +struct ___IO_FILE_complete_157 { +struct ___IO_FILE_99 ___file_158;// L286 +____off64_t_24 ___offset_160;// L0 +void * (____pad1_162);// L297 +void * (____pad2_163);// L298 +void * (____pad3_164);// L299 +void * (____pad4_165);// L300 +__size_t_1 ____pad5_166;// L0 +int ___mode_167;// L303 +char ___unused2_168[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -typedef struct ___IO_FILE_95 ___IO_FILE_163;// L310 -typedef struct ___IO_FILE_119 ___IO_FILE_164;// L310 -typedef ____ssize_t_49 (____io_read_fn_173) (void * (____cookie_170), char * (____buf_171), __size_t_1 ____nbytes_172);// L333 -typedef ____ssize_t_49 (____io_write_fn_177) (void * (____cookie_174), const char * (____buf_175), __size_t_1 ____n_176);// L341:L342 -typedef int (____io_seek_fn_181) (void * (____cookie_178), ____off64_t_24 * (____pos_179), int ____w_180);// L350 -typedef int (____io_close_fn_183) (void * (____cookie_182));// L353 -typedef ____gnuc_va_list_82 __va_list_248;// L79 -typedef ____off_t_23 __off_t_250;// L90 -typedef ____off64_t_24 __off_t_251;// L92 -typedef ____ssize_t_49 __ssize_t_252;// L102 -typedef ___G_fpos_t_75 __fpos_t_253;// L110 -typedef ___G_fpos64_t_81 __fpos_t_255;// L112 -extern const char * const __sys_errlist_756[];// L27 - -struct __forward_tag_reference_57 { // generated union of struct variations +typedef struct ___IO_FILE_99 ___IO_FILE_171;// L310 +typedef struct ___IO_FILE_124 ___IO_FILE_172;// L310 +typedef ____ssize_t_49 (____io_read_fn_181) (void * (____cookie_178), char * (____buf_179), __size_t_1 ____nbytes_180);// L333 +typedef ____ssize_t_49 (____io_write_fn_186) (void * (____cookie_183), const char * (____buf_184), __size_t_1 ____n_185);// L341:L342 +typedef int (____io_seek_fn_192) (void * (____cookie_188), ____off64_t_24 * (____pos_189), int ____w_191);// L350 +typedef int (____io_close_fn_195) (void * (____cookie_194));// L353 +typedef ____gnuc_va_list_86 __va_list_279;// L79 +typedef ____off_t_23 __off_t_281;// L90 +typedef ____off64_t_24 __off_t_283;// L92 +typedef ____ssize_t_49 __ssize_t_285;// L102 +typedef ___G_fpos_t_77 __fpos_t_287;// L110 +typedef ___G_fpos64_t_85 __fpos_t_289;// L112 +extern const char * const __sys_errlist_830[];// L27 + +struct __forward_tag_reference_89 { // generated union of struct variations union { -struct ___IO_FILE_95 ___IO_FILE_95; -struct ___IO_FILE_119 ___IO_FILE_119; +struct ___IO_marker_90 ___IO_marker_90; }; }; -struct __forward_tag_reference_85 { // generated union of struct variations +struct __forward_tag_reference_58 { // generated union of struct variations union { -struct ___IO_marker_86 ___IO_marker_86; +struct ___IO_FILE_99 ___IO_FILE_99; +struct ___IO_FILE_124 ___IO_FILE_124; }; }; -struct __forward_tag_reference_83 { // generated union of struct variations +struct __forward_tag_reference_87 { // generated union of struct variations union { }; }; -struct __forward_tag_reference_166 { // generated union of struct variations +struct __forward_tag_reference_174 { // generated union of struct variations union { }; }; @@ -937,225 +1085,225 @@ union { // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_57 ;// L0 +struct __forward_tag_reference_58 ;// L0 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_83 ;// L0 -struct __forward_tag_reference_83 ;// L0 -struct __forward_tag_reference_57 ;// L0 +struct __forward_tag_reference_87 ;// L0 +struct __forward_tag_reference_87 ;// L0 +struct __forward_tag_reference_58 ;// L0 // typedef moved to top of scope -struct ___IO_marker_86 ;// L156 -enum ____codecvt_result_94 ;// L176 -struct ___IO_FILE_95 ;// L241 +struct ___IO_marker_90 ;// L156 +enum ____codecvt_result_98 ;// L176 +struct ___IO_FILE_99 ;// L241 -struct ___IO_FILE_119 ;// L241 -struct ___IO_FILE_complete_150 ;// L241 +struct ___IO_FILE_124 ;// L241 +struct ___IO_FILE_complete_157 ;// L241 // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_166 ;// L0 -extern struct __forward_tag_reference_166 ___IO_2_1_stdin__167;// L315 -extern struct __forward_tag_reference_166 ___IO_2_1_stdout__168;// L316 -extern struct __forward_tag_reference_166 ___IO_2_1_stderr__169;// L317 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern int (____underflow_184) (___IO_FILE_163 *);// L385 -extern int (____underflow_185) (___IO_FILE_164 *);// L385 -extern int (____uflow_186) (___IO_FILE_163 *);// L386 -extern int (____uflow_187) (___IO_FILE_164 *);// L386 -extern int (____overflow_188) (___IO_FILE_163 *, int );// L387 -extern int (____overflow_189) (___IO_FILE_164 *, int );// L387 -extern int (___IO_getc_193) (___IO_FILE_163 * (____fp_190));// L429 -extern int (___IO_getc_194) (___IO_FILE_164 * (____fp_191));// L429 -extern int (___IO_putc_199) (int ____c_195, ___IO_FILE_163 * (____fp_196));// L430 -extern int (___IO_putc_200) (int ____c_195, ___IO_FILE_164 * (____fp_197));// L430 -extern int (___IO_feof_204) (___IO_FILE_163 * (____fp_201));// L431 -extern int (___IO_feof_205) (___IO_FILE_164 * (____fp_202));// L431 -extern int (___IO_ferror_209) (___IO_FILE_163 * (____fp_206));// L432 -extern int (___IO_ferror_210) (___IO_FILE_164 * (____fp_207));// L432 -extern int (___IO_peekc_locked_214) (___IO_FILE_163 * (____fp_211));// L434 -extern int (___IO_peekc_locked_215) (___IO_FILE_164 * (____fp_212));// L434 -extern void (___IO_flockfile_216) (___IO_FILE_163 *);// L440 -extern void (___IO_flockfile_217) (___IO_FILE_164 *);// L440 -extern void (___IO_funlockfile_218) (___IO_FILE_163 *);// L441 -extern void (___IO_funlockfile_219) (___IO_FILE_164 *);// L441 -extern int (___IO_ftrylockfile_220) (___IO_FILE_163 *);// L442 -extern int (___IO_ftrylockfile_221) (___IO_FILE_164 *);// L442 -extern int (___IO_vfscanf_222) (___IO_FILE_163 * __restrict , const char * __restrict , ____gnuc_va_list_82 , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_224) (___IO_FILE_164 * __restrict , const char * __restrict , ____gnuc_va_list_82 , int * __restrict );// L459:L460 +struct __forward_tag_reference_174 ;// L0 +extern struct __forward_tag_reference_174 ___IO_2_1_stdin__175;// L315 +extern struct __forward_tag_reference_174 ___IO_2_1_stdout__176;// L316 +extern struct __forward_tag_reference_174 ___IO_2_1_stderr__177;// L317 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern int (____underflow_196) (___IO_FILE_171 *);// L385 +extern int (____underflow_197) (___IO_FILE_172 *);// L385 +extern int (____uflow_199) (___IO_FILE_171 *);// L386 +extern int (____uflow_200) (___IO_FILE_172 *);// L386 +extern int (____overflow_202) (___IO_FILE_171 *, int );// L387 +extern int (____overflow_203) (___IO_FILE_172 *, int );// L387 +extern int (___IO_getc_208) (___IO_FILE_171 * (____fp_205));// L429 +extern int (___IO_getc_209) (___IO_FILE_172 * (____fp_206));// L429 +extern int (___IO_putc_215) (int ____c_211, ___IO_FILE_171 * (____fp_212));// L430 +extern int (___IO_putc_216) (int ____c_211, ___IO_FILE_172 * (____fp_213));// L430 +extern int (___IO_feof_221) (___IO_FILE_171 * (____fp_218));// L431 +extern int (___IO_feof_222) (___IO_FILE_172 * (____fp_219));// L431 +extern int (___IO_ferror_227) (___IO_FILE_171 * (____fp_224));// L432 +extern int (___IO_ferror_228) (___IO_FILE_172 * (____fp_225));// L432 +extern int (___IO_peekc_locked_233) (___IO_FILE_171 * (____fp_230));// L434 +extern int (___IO_peekc_locked_234) (___IO_FILE_172 * (____fp_231));// L434 +extern void (___IO_flockfile_236) (___IO_FILE_171 *);// L440 +extern void (___IO_flockfile_237) (___IO_FILE_172 *);// L440 +extern void (___IO_funlockfile_239) (___IO_FILE_171 *);// L441 +extern void (___IO_funlockfile_240) (___IO_FILE_172 *);// L441 +extern int (___IO_ftrylockfile_242) (___IO_FILE_171 *);// L442 +extern int (___IO_ftrylockfile_243) (___IO_FILE_172 *);// L442 +extern int (___IO_vfscanf_245) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_247) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_251) (___IO_FILE_171 * __restrict , const char * __restrict , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_252) (___IO_FILE_172 * __restrict , const char * __restrict , int * __restrict );// L459:L460 +extern int (___IO_vfprintf_254) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 +extern int (___IO_vfprintf_256) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 +extern int (___IO_vfprintf_260) ();// L461:L462 +extern ____ssize_t_49 (___IO_padn_261) (___IO_FILE_171 *, int , ____ssize_t_49 );// L463 +extern ____ssize_t_49 (___IO_padn_262) (___IO_FILE_172 *, int , ____ssize_t_49 );// L463 +extern __size_t_1 (___IO_sgetn_265) (___IO_FILE_171 *, void *, __size_t_1 );// L464 +extern __size_t_1 (___IO_sgetn_266) (___IO_FILE_172 *, void *, __size_t_1 );// L464 +extern ____off64_t_24 (___IO_seekoff_268) (___IO_FILE_171 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekoff_269) (___IO_FILE_172 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekpos_272) (___IO_FILE_171 *, ____off64_t_24 , int );// L467 +extern ____off64_t_24 (___IO_seekpos_273) (___IO_FILE_172 *, ____off64_t_24 , int );// L467 +extern void (___IO_free_backup_area_276) (___IO_FILE_171 *);// L469 +extern void (___IO_free_backup_area_277) (___IO_FILE_172 *);// L469 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern struct ___IO_FILE_99 * (__stdin_291);// L168 +extern struct ___IO_FILE_124 * (__stdin_292);// L168 +extern struct ___IO_FILE_99 * (__stdout_294);// L169 +extern struct ___IO_FILE_124 * (__stdout_295);// L169 +extern struct ___IO_FILE_99 * (__stderr_297);// L170 +extern struct ___IO_FILE_124 * (__stderr_298);// L170 +extern int (__remove_301) (const char * (____filename_300));// L178 +extern int (__rename_304) (const char * (____old_302), const char * (____new_303));// L180 +extern int (__renameat_309) (int ____oldfd_305, const char * (____old_306), int ____newfd_307, const char * (____new_308));// L185:L186 +extern __FILE_59 * ((__tmpfile_310) (void ));// L195 +extern __FILE_59 * ((__tmpfile_316) (void ));// L198 +extern __FILE_59 * ((__tmpfile_314) (void ));// L195 +extern __FILE_59 * ((__tmpfile_312) (void ));// L198 +extern char * ((__tmpnam_319) (char * (____s_318)));// L209 +extern char * ((__tmpnam_320) (char * (____s_318)));// L209 +extern char * ((__tmpnam_r_322) (char * (____s_321)));// L215 +extern char * ((__tmpnam_r_323) (char * (____s_321)));// L215 +extern char * ((__tempnam_326) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 +extern char * ((__tempnam_327) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 +extern int (__fclose_330) (__FILE_59 * (____stream_328));// L237 +extern int (__fclose_332) (__FILE_59 * (____stream_328));// L237 +extern int (__fflush_336) (__FILE_59 * (____stream_334));// L242 +extern int (__fflush_unlocked_340) (__FILE_59 * (____stream_338));// L252 +extern __FILE_59 * ((__fopen_344) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 +extern __FILE_59 * ((__fopen_346) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 +extern __FILE_59 * ((__fopen_354) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 +extern __FILE_59 * ((__fopen_356) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 +extern __FILE_59 * ((__freopen_362) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 +extern __FILE_59 * ((__freopen_368) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 +extern __FILE_59 * ((__freopen_366) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 +extern __FILE_59 * ((__freopen_364) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 +extern __FILE_59 * ((__fdopen_372) (int ____fd_370, const char * (____modes_371)));// L306 +extern __FILE_59 * ((__fdopen_374) (int ____fd_370, const char * (____modes_371)));// L306 +extern __FILE_59 * ((__fmemopen_379) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 +extern __FILE_59 * ((__fmemopen_381) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 +extern __FILE_59 * ((__open_memstream_385) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 +extern __FILE_59 * ((__open_memstream_387) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 +extern void (__setbuf_392) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 +extern void (__setbuf_394) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 +extern int (__setvbuf_401) (__FILE_59 * __restrict ____stream_396, char * __restrict ____buf_398, int ____modes_399, __size_t_1 ____n_400);// L336:L337 +extern void (__setbuffer_407) (__FILE_59 * __restrict ____stream_403, char * __restrict ____buf_405, __size_t_1 ____size_406);// L343:L344 +extern void (__setlinebuf_411) (__FILE_59 * (____stream_409));// L347 +extern int (__fprintf_416) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 +extern int (__fprintf_418) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 +extern int (__printf_421) (const char * __restrict ____format_420, ... );// L362 +extern int (__sprintf_424) (char * __restrict ____s_422, const char * __restrict ____format_423, ... );// L364:L365 +extern int (__vfprintf_430) (__FILE_59 * __restrict ____s_425, const char * __restrict ____format_427, ____gnuc_va_list_86 ____arg_428);// L371:L372 +extern int (__vprintf_437) (const char * __restrict ____format_434, ____gnuc_va_list_86 ____arg_435);// L377 +extern int (__vsprintf_443) (char * __restrict ____s_439, const char * __restrict ____format_440, ____gnuc_va_list_86 ____arg_441);// L379:L380 +extern int (__snprintf_448) (char * __restrict ____s_445, __size_t_1 ____maxlen_446, const char * __restrict ____format_447, ... );// L386:L388 +extern int (__vsnprintf_454) (char * __restrict ____s_449, __size_t_1 ____maxlen_450, const char * __restrict ____format_451, ____gnuc_va_list_86 ____arg_452);// L390:L392 +extern int (__vdprintf_460) (int ____fd_456, const char * __restrict ____fmt_457, ____gnuc_va_list_86 ____arg_458);// L412:L414 +extern int (__dprintf_464) (int ____fd_462, const char * __restrict ____fmt_463, ... );// L415:L416 +extern int (__fscanf_468) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_470) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_472) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_474) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__scanf_477) (const char * __restrict ____format_476, ... );// L431 +extern int (__scanf_478) (const char * __restrict ____format_476, ... );// L431 +extern int (__sscanf_481) (const char * __restrict ____s_479, const char * __restrict ____format_480, ... );// L433:L434 -extern int (___IO_vfprintf_231) (___IO_FILE_163 * __restrict , const char * __restrict , ____gnuc_va_list_82 );// L461:L462 -extern int (___IO_vfprintf_233) (___IO_FILE_164 * __restrict , const char * __restrict , ____gnuc_va_list_82 );// L461:L462 -extern ____ssize_t_49 (___IO_padn_238) (___IO_FILE_163 *, int , ____ssize_t_49 );// L463 -extern ____ssize_t_49 (___IO_padn_239) (___IO_FILE_164 *, int , ____ssize_t_49 );// L463 -extern __size_t_1 (___IO_sgetn_240) (___IO_FILE_163 *, void *, __size_t_1 );// L464 -extern __size_t_1 (___IO_sgetn_241) (___IO_FILE_164 *, void *, __size_t_1 );// L464 -extern ____off64_t_24 (___IO_seekoff_242) (___IO_FILE_163 *, ____off64_t_24 , int , int );// L466 -extern ____off64_t_24 (___IO_seekoff_243) (___IO_FILE_164 *, ____off64_t_24 , int , int );// L466 -extern ____off64_t_24 (___IO_seekpos_244) (___IO_FILE_163 *, ____off64_t_24 , int );// L467 -extern ____off64_t_24 (___IO_seekpos_245) (___IO_FILE_164 *, ____off64_t_24 , int );// L467 -extern void (___IO_free_backup_area_246) (___IO_FILE_163 *);// L469 -extern void (___IO_free_backup_area_247) (___IO_FILE_164 *);// L469 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern struct ___IO_FILE_95 * (__stdin_257);// L168 -extern struct ___IO_FILE_119 * (__stdin_258);// L168 -extern struct ___IO_FILE_95 * (__stdout_259);// L169 -extern struct ___IO_FILE_119 * (__stdout_260);// L169 -extern struct ___IO_FILE_95 * (__stderr_261);// L170 -extern struct ___IO_FILE_119 * (__stderr_262);// L170 -extern int (__remove_264) (const char * (____filename_263));// L178 -extern int (__rename_267) (const char * (____old_265), const char * (____new_266));// L180 -extern int (__renameat_272) (int ____oldfd_268, const char * (____old_269), int ____newfd_270, const char * (____new_271));// L185:L186 -extern __FILE_58 * ((__tmpfile_273) (void ));// L195 -extern __FILE_58 * ((__tmpfile_279) (void ));// L198 -extern __FILE_58 * ((__tmpfile_277) (void ));// L198 -extern __FILE_58 * ((__tmpfile_275) (void ));// L195 -extern char * ((__tmpnam_282) (char * (____s_281)));// L209 -extern char * ((__tmpnam_283) (char * (____s_281)));// L209 -extern char * ((__tmpnam_r_285) (char * (____s_284)));// L215 -extern char * ((__tmpnam_r_286) (char * (____s_284)));// L215 -extern char * ((__tempnam_289) (const char * (____dir_287), const char * (____pfx_288)));// L227:L228 -extern char * ((__tempnam_290) (const char * (____dir_287), const char * (____pfx_288)));// L227:L228 -extern int (__fclose_293) (__FILE_58 * (____stream_291));// L237 -extern int (__fclose_295) (__FILE_58 * (____stream_291));// L237 -extern int (__fflush_299) (__FILE_58 * (____stream_297));// L242 -extern int (__fflush_unlocked_303) (__FILE_58 * (____stream_301));// L252 -extern __FILE_58 * ((__fopen_307) (const char * __restrict ____filename_305, const char * __restrict ____modes_306));// L272:L273 -extern __FILE_58 * ((__fopen_309) (const char * __restrict ____filename_305, const char * __restrict ____modes_306));// L272:L273 -extern __FILE_58 * ((__fopen_317) (const char * __restrict ____filename_315, const char * __restrict ____modes_316));// L283:L285 -extern __FILE_58 * ((__fopen_319) (const char * __restrict ____filename_315, const char * __restrict ____modes_316));// L283:L285 -extern __FILE_58 * ((__freopen_325) (const char * __restrict ____filename_311, const char * __restrict ____modes_312, __FILE_58 * __restrict ____stream_313));// L278:L280 -extern __FILE_58 * ((__freopen_331) (const char * __restrict ____filename_321, const char * __restrict ____modes_322, __FILE_58 * __restrict ____stream_323));// L286:L289 -extern __FILE_58 * ((__freopen_329) (const char * __restrict ____filename_321, const char * __restrict ____modes_322, __FILE_58 * __restrict ____stream_323));// L286:L289 -extern __FILE_58 * ((__freopen_327) (const char * __restrict ____filename_311, const char * __restrict ____modes_312, __FILE_58 * __restrict ____stream_313));// L278:L280 -extern __FILE_58 * ((__fdopen_335) (int ____fd_333, const char * (____modes_334)));// L306 -extern __FILE_58 * ((__fdopen_337) (int ____fd_333, const char * (____modes_334)));// L306 -extern __FILE_58 * ((__fmemopen_342) (void * (____s_339), __size_t_1 ____len_340, const char * (____modes_341)));// L319:L320 -extern __FILE_58 * ((__fmemopen_344) (void * (____s_339), __size_t_1 ____len_340, const char * (____modes_341)));// L319:L320 -extern __FILE_58 * ((__open_memstream_348) (char * (* (____bufloc_346)), __size_t_1 * (____sizeloc_347)));// L325 -extern __FILE_58 * ((__open_memstream_350) (char * (* (____bufloc_346)), __size_t_1 * (____sizeloc_347)));// L325 -extern void (__setbuf_355) (__FILE_58 * __restrict ____stream_352, char * __restrict ____buf_354);// L332 -extern void (__setbuf_357) (__FILE_58 * __restrict ____stream_352, char * __restrict ____buf_354);// L332 -extern int (__setvbuf_364) (__FILE_58 * __restrict ____stream_359, char * __restrict ____buf_361, int ____modes_362, __size_t_1 ____n_363);// L336:L337 -extern void (__setbuffer_369) (__FILE_58 * __restrict ____stream_365, char * __restrict ____buf_367, __size_t_1 ____size_368);// L343:L344 -extern void (__setlinebuf_373) (__FILE_58 * (____stream_371));// L347 -extern int (__fprintf_378) (__FILE_58 * __restrict ____stream_375, const char * __restrict ____format_377, ... );// L356:L357 -extern int (__fprintf_380) (__FILE_58 * __restrict ____stream_375, const char * __restrict ____format_377, ... );// L356:L357 -extern int (__printf_383) (const char * __restrict ____format_382, ... );// L362 -extern int (__sprintf_386) (char * __restrict ____s_384, const char * __restrict ____format_385, ... );// L364:L365 -extern int (__vfprintf_392) (__FILE_58 * __restrict ____s_387, const char * __restrict ____format_389, ____gnuc_va_list_82 ____arg_390);// L371:L372 -extern int (__vprintf_399) (const char * __restrict ____format_396, ____gnuc_va_list_82 ____arg_397);// L377 -extern int (__vsprintf_405) (char * __restrict ____s_401, const char * __restrict ____format_402, ____gnuc_va_list_82 ____arg_403);// L379:L380 -extern int (__snprintf_409) (char * __restrict ____s_406, __size_t_1 ____maxlen_407, const char * __restrict ____format_408, ... );// L386:L388 -extern int (__vsnprintf_415) (char * __restrict ____s_410, __size_t_1 ____maxlen_411, const char * __restrict ____format_412, ____gnuc_va_list_82 ____arg_413);// L390:L392 -extern int (__vdprintf_420) (int ____fd_416, const char * __restrict ____fmt_417, ____gnuc_va_list_82 ____arg_418);// L412:L414 -extern int (__dprintf_424) (int ____fd_422, const char * __restrict ____fmt_423, ... );// L415:L416 -extern int (__fscanf_428) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 -extern int (__fscanf_430) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 -extern int (__fscanf_432) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 -extern int (__fscanf_434) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 -extern int (__scanf_437) (const char * __restrict ____format_436, ... );// L431 -extern int (__scanf_438) (const char * __restrict ____format_436, ... );// L431 -extern int (__sscanf_441) (const char * __restrict ____s_439, const char * __restrict ____format_440, ... );// L433:L434 - - - - - - - -extern int (__vfscanf_468) (__FILE_58 * __restrict ____s_463, const char * __restrict ____format_465, ____gnuc_va_list_82 ____arg_466);// L471:L473 -extern int (__vfscanf_472) (__FILE_58 * __restrict ____s_463, const char * __restrict ____format_465, ____gnuc_va_list_82 ____arg_466);// L471:L473 -extern int (__vscanf_479) (const char * __restrict ____format_476, ____gnuc_va_list_82 ____arg_477);// L479:L480 -extern int (__vscanf_481) (const char * __restrict ____format_476, ____gnuc_va_list_82 ____arg_477);// L479:L480 -extern int (__vsscanf_487) (const char * __restrict ____s_483, const char * __restrict ____format_484, ____gnuc_va_list_82 ____arg_485);// L483:L485 - - - - - -extern int (__fgetc_520) (__FILE_58 * (____stream_518));// L531 -extern int (__getc_523) (__FILE_58 * (____stream_521));// L532 -extern int (__getchar_524) (void );// L538 -extern int (__getc_unlocked_527) (__FILE_58 * (____stream_525));// L550 -extern int (__getchar_unlocked_529) (void );// L551 -extern int (__fgetc_unlocked_532) (__FILE_58 * (____stream_530));// L561 -extern int (__fputc_537) (int ____c_534, __FILE_58 * (____stream_535));// L573 -extern int (__fputc_539) (int ____c_534, __FILE_58 * (____stream_535));// L573 -extern int (__putc_544) (int ____c_541, __FILE_58 * (____stream_542));// L574 -extern int (__putchar_546) (int ____c_545);// L580 -extern int (__fputc_unlocked_550) (int ____c_547, __FILE_58 * (____stream_548));// L594 -extern int (__putc_unlocked_555) (int ____c_552, __FILE_58 * (____stream_553));// L602 -extern int (__putchar_unlocked_558) (int ____c_557);// L603 -extern int (__getw_561) (__FILE_58 * (____stream_559));// L610 -extern int (__putw_566) (int ____w_563, __FILE_58 * (____stream_564));// L613 -extern char * ((__fgets_572) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 -extern char * ((__fgets_574) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 -extern char * ((__fgets_576) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 -extern char * ((__fgets_578) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 -extern ____ssize_t_49 (____getdelim_585) (char * (* __restrict ____lineptr_580), __size_t_1 * __restrict ____n_581, int ____delimiter_582, __FILE_58 * __restrict ____stream_583);// L665:L667 -extern ____ssize_t_49 (____getdelim_587) (char * (* __restrict ____lineptr_580), __size_t_1 * __restrict ____n_581, int ____delimiter_582, __FILE_58 * __restrict ____stream_583);// L665:L667 -extern ____ssize_t_49 (__getdelim_594) (char * (* __restrict ____lineptr_589), __size_t_1 * __restrict ____n_590, int ____delimiter_591, __FILE_58 * __restrict ____stream_592);// L668:L670 -extern ____ssize_t_49 (__getdelim_596) (char * (* __restrict ____lineptr_589), __size_t_1 * __restrict ____n_590, int ____delimiter_591, __FILE_58 * __restrict ____stream_592);// L668:L670 -extern ____ssize_t_49 (__getline_602) (char * (* __restrict ____lineptr_598), __size_t_1 * __restrict ____n_599, __FILE_58 * __restrict ____stream_600);// L678:L680 -extern ____ssize_t_49 (__getline_604) (char * (* __restrict ____lineptr_598), __size_t_1 * __restrict ____n_599, __FILE_58 * __restrict ____stream_600);// L678:L680 -extern int (__fputs_609) (const char * __restrict ____s_606, __FILE_58 * __restrict ____stream_607);// L689 -extern int (__fputs_611) (const char * __restrict ____s_606, __FILE_58 * __restrict ____stream_607);// L689 -extern int (__puts_614) (const char * (____s_613));// L695 -extern int (__ungetc_618) (int ____c_615, __FILE_58 * (____stream_616));// L702 -extern int (__fseek_654) (__FILE_58 * (____stream_650), long int ____off_652, int ____whence_653);// L749 -extern int (__fseek_656) (__FILE_58 * (____stream_650), long int ____off_652, int ____whence_653);// L749 -extern long int (__ftell_660) (__FILE_58 * (____stream_658));// L754 -extern long int (__ftell_662) (__FILE_58 * (____stream_658));// L754 -extern void (__rewind_666) (__FILE_58 * (____stream_664));// L759 -extern int (__fseeko_671) (__FILE_58 * (____stream_667), ____off_t_23 ____off_669, int ____whence_670);// L773 -extern int (__fseeko_679) (__FILE_58 * (____stream_675), ____off64_t_24 ____off_677, int ____whence_678);// L781:L783 -extern ____off_t_23 (__ftello_683) (__FILE_58 * (____stream_673));// L778 -extern ____off_t_23 (__ftello_685) (__FILE_58 * (____stream_673));// L778 -extern int (__fgetpos_693) (__FILE_58 * __restrict ____stream_689, __fpos_t_253 * __restrict ____pos_691);// L798 -extern ____off64_t_24 (__ftello_687) (__FILE_58 * (____stream_681));// L784 -extern int (__fgetpos_705) (__FILE_58 * __restrict ____stream_701, __fpos_t_255 * __restrict ____pos_703);// L806:L807 -extern int (__fsetpos_713) (__FILE_58 * (____stream_697), const __fpos_t_253 * (____pos_699));// L803 -extern int (__fsetpos_717) (__FILE_58 * (____stream_709), const __fpos_t_255 * (____pos_711));// L808:L809 -extern void (__clearerr_723) (__FILE_58 * (____stream_721));// L826 -extern int (__feof_726) (__FILE_58 * (____stream_724));// L828 -extern int (__feof_728) (__FILE_58 * (____stream_724));// L828 -extern int (__ferror_732) (__FILE_58 * (____stream_730));// L830 -extern int (__ferror_734) (__FILE_58 * (____stream_730));// L830 -extern void (__clearerr_unlocked_738) (__FILE_58 * (____stream_736));// L835 -extern int (__feof_unlocked_742) (__FILE_58 * (____stream_740));// L836 -extern int (__feof_unlocked_744) (__FILE_58 * (____stream_740));// L836 -extern int (__ferror_unlocked_748) (__FILE_58 * (____stream_746));// L837 -extern int (__ferror_unlocked_750) (__FILE_58 * (____stream_746));// L837 -extern void (__perror_753) (const char * (____s_752));// L846 -extern void (__perror_754) (const char * (____s_752));// L846 -extern int __sys_nerr_755;// L26 - -extern int (__fileno_761) (__FILE_58 * (____stream_757));// L858 -extern int (__fileno_759) (__FILE_58 * (____stream_757));// L858 -extern int (__fileno_unlocked_767) (__FILE_58 * (____stream_763));// L863 -extern int (__fileno_unlocked_765) (__FILE_58 * (____stream_763));// L863 -extern __FILE_58 * ((__popen_771) (const char * (____command_769), const char * (____modes_770)));// L872 -extern __FILE_58 * ((__popen_773) (const char * (____command_769), const char * (____modes_770)));// L872 -extern int (__pclose_777) (__FILE_58 * (____stream_775));// L878 -extern char * ((__ctermid_780) (char * (____s_779)));// L884 -extern void (__flockfile_783) (__FILE_58 * (____stream_781));// L912 -extern int (__ftrylockfile_787) (__FILE_58 * (____stream_785));// L916 -extern int (__ftrylockfile_789) (__FILE_58 * (____stream_785));// L916 -extern void (__funlockfile_793) (__FILE_58 * (____stream_791));// L919 + + + + +extern int (__vfscanf_509) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 +extern int (__vfscanf_513) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 +extern int (__vscanf_520) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 +extern int (__vscanf_522) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 +extern int (__vsscanf_528) (const char * __restrict ____s_524, const char * __restrict ____format_525, ____gnuc_va_list_86 ____arg_526);// L483:L485 + + + + + +extern int (__fgetc_563) (__FILE_59 * (____stream_561));// L531 +extern int (__getc_567) (__FILE_59 * (____stream_565));// L532 +extern int (__getchar_569) (void );// L538 +extern int (__getc_unlocked_572) (__FILE_59 * (____stream_570));// L550 +extern int (__getchar_unlocked_574) (void );// L551 +extern int (__fgetc_unlocked_577) (__FILE_59 * (____stream_575));// L561 +extern int (__fputc_582) (int ____c_579, __FILE_59 * (____stream_580));// L573 +extern int (__fputc_584) (int ____c_579, __FILE_59 * (____stream_580));// L573 +extern int (__putc_589) (int ____c_586, __FILE_59 * (____stream_587));// L574 +extern int (__putchar_592) (int ____c_591);// L580 +extern int (__fputc_unlocked_596) (int ____c_593, __FILE_59 * (____stream_594));// L594 +extern int (__putc_unlocked_601) (int ____c_598, __FILE_59 * (____stream_599));// L602 +extern int (__putchar_unlocked_604) (int ____c_603);// L603 +extern int (__getw_607) (__FILE_59 * (____stream_605));// L610 +extern int (__putw_612) (int ____w_609, __FILE_59 * (____stream_610));// L613 +extern char * ((__fgets_618) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_620) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_622) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_624) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern ____ssize_t_49 (____getdelim_631) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 +extern ____ssize_t_49 (____getdelim_635) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 +extern ____ssize_t_49 (__getdelim_644) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 +extern ____ssize_t_49 (__getdelim_648) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 +extern ____ssize_t_49 (__getline_656) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 +extern ____ssize_t_49 (__getline_660) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 +extern int (__fputs_667) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 +extern int (__fputs_669) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 +extern int (__puts_672) (const char * (____s_671));// L695 +extern int (__ungetc_676) (int ____c_673, __FILE_59 * (____stream_674));// L702 +extern int (__fseek_714) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 +extern int (__fseek_716) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 +extern long int (__ftell_720) (__FILE_59 * (____stream_718));// L754 +extern long int (__ftell_722) (__FILE_59 * (____stream_718));// L754 +extern void (__rewind_726) (__FILE_59 * (____stream_724));// L759 +extern int (__fseeko_733) (__FILE_59 * (____stream_728), ____off_t_23 ____off_730, int ____whence_732);// L773 +extern int (__fseeko_744) (__FILE_59 * (____stream_739), ____off64_t_24 ____off_741, int ____whence_743);// L781:L783 +extern ____off_t_23 (__ftello_758) (__FILE_59 * (____stream_737));// L778 +extern ____off_t_23 (__ftello_750) (__FILE_59 * (____stream_737));// L778 +extern int (__fgetpos_766) (__FILE_59 * __restrict ____stream_762, __fpos_t_287 * __restrict ____pos_764);// L798 +extern ____off64_t_24 (__ftello_754) (__FILE_59 * (____stream_748));// L784 +extern int (__fgetpos_778) (__FILE_59 * __restrict ____stream_774, __fpos_t_289 * __restrict ____pos_776);// L806:L807 +extern int (__fsetpos_786) (__FILE_59 * (____stream_770), const __fpos_t_287 * (____pos_772));// L803 +extern int (__fsetpos_790) (__FILE_59 * (____stream_782), const __fpos_t_289 * (____pos_784));// L808:L809 +extern void (__clearerr_796) (__FILE_59 * (____stream_794));// L826 +extern int (__feof_800) (__FILE_59 * (____stream_798));// L828 +extern int (__feof_802) (__FILE_59 * (____stream_798));// L828 +extern int (__ferror_806) (__FILE_59 * (____stream_804));// L830 +extern int (__ferror_808) (__FILE_59 * (____stream_804));// L830 +extern void (__clearerr_unlocked_812) (__FILE_59 * (____stream_810));// L835 +extern int (__feof_unlocked_816) (__FILE_59 * (____stream_814));// L836 +extern int (__feof_unlocked_818) (__FILE_59 * (____stream_814));// L836 +extern int (__ferror_unlocked_822) (__FILE_59 * (____stream_820));// L837 +extern int (__ferror_unlocked_824) (__FILE_59 * (____stream_820));// L837 +extern void (__perror_827) (const char * (____s_826));// L846 +extern void (__perror_828) (const char * (____s_826));// L846 +extern int __sys_nerr_829;// L26 + +extern int (__fileno_835) (__FILE_59 * (____stream_831));// L858 +extern int (__fileno_833) (__FILE_59 * (____stream_831));// L858 +extern int (__fileno_unlocked_841) (__FILE_59 * (____stream_837));// L863 +extern int (__fileno_unlocked_839) (__FILE_59 * (____stream_837));// L863 +extern __FILE_59 * ((__popen_845) (const char * (____command_843), const char * (____modes_844)));// L872 +extern __FILE_59 * ((__popen_847) (const char * (____command_843), const char * (____modes_844)));// L872 +extern int (__pclose_851) (__FILE_59 * (____stream_849));// L878 +extern char * ((__ctermid_854) (char * (____s_853)));// L884 +extern void (__flockfile_857) (__FILE_59 * (____stream_855));// L912 +extern int (__ftrylockfile_861) (__FILE_59 * (____stream_859));// L916 +extern int (__ftrylockfile_863) (__FILE_59 * (____stream_859));// L916 +extern void (__funlockfile_867) (__FILE_59 * (____stream_865));// L919 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ @@ -1167,54 +1315,67 @@ extern void (__funlockfile_793) (__FILE_58 * (____stream_791));// L919 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____sprintf_chk_825) (char * __restrict ____s_821, int ____flag_822, __size_t_1 ____slen_823, const char * __restrict ____format_824, ... );// L23:L24 -extern int (____vsprintf_chk_832) (char * __restrict ____s_826, int ____flag_827, __size_t_1 ____slen_828, const char * __restrict ____format_829, ____gnuc_va_list_82 ____ap_830);// L25:L27 +extern int (____sprintf_chk_899) (char * __restrict ____s_895, int ____flag_896, __size_t_1 ____slen_897, const char * __restrict ____format_898, ... );// L23:L24 +extern int (____vsprintf_chk_906) (char * __restrict ____s_900, int ____flag_901, __size_t_1 ____slen_902, const char * __restrict ____format_903, ____gnuc_va_list_86 ____ap_904);// L25:L27 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____snprintf_chk_846) (char * __restrict ____s_841, __size_t_1 ____n_842, int ____flag_843, __size_t_1 ____slen_844, const char * __restrict ____format_845, ... );// L52:L54 -extern int (____vsnprintf_chk_854) (char * __restrict ____s_847, __size_t_1 ____n_848, int ____flag_849, __size_t_1 ____slen_850, const char * __restrict ____format_851, ____gnuc_va_list_82 ____ap_852);// L55:L57 +extern int (____snprintf_chk_920) (char * __restrict ____s_915, __size_t_1 ____n_916, int ____flag_917, __size_t_1 ____slen_918, const char * __restrict ____format_919, ... );// L52:L54 +extern int (____vsnprintf_chk_928) (char * __restrict ____s_921, __size_t_1 ____n_922, int ____flag_923, __size_t_1 ____slen_924, const char * __restrict ____format_925, ____gnuc_va_list_86 ____ap_926);// L55:L57 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____fprintf_chk_869) (__FILE_58 * __restrict ____stream_865, int ____flag_867, const char * __restrict ____format_868, ... );// L85:L86 -extern int (____printf_chk_873) (int ____flag_871, const char * __restrict ____format_872, ... );// L87 -extern int (____vfprintf_chk_880) (__FILE_58 * __restrict ____stream_874, int ____flag_876, const char * __restrict ____format_877, ____gnuc_va_list_82 ____ap_878);// L88:L89 -extern int (____vprintf_chk_888) (int ____flag_884, const char * __restrict ____format_885, ____gnuc_va_list_82 ____ap_886);// L90:L91 +extern int (____fprintf_chk_943) (__FILE_59 * __restrict ____stream_939, int ____flag_941, const char * __restrict ____format_942, ... );// L85:L86 +extern int (____printf_chk_947) (int ____flag_945, const char * __restrict ____format_946, ... );// L87 +extern int (____vfprintf_chk_954) (__FILE_59 * __restrict ____stream_948, int ____flag_950, const char * __restrict ____format_951, ____gnuc_va_list_86 ____ap_952);// L88:L89 +extern int (____vprintf_chk_962) (int ____flag_958, const char * __restrict ____format_959, ____gnuc_va_list_86 ____ap_960);// L90:L91 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____dprintf_chk_910) (int ____fd_907, int ____flag_908, const char * __restrict ____fmt_909, ... );// L131:L132 -extern int (____vdprintf_chk_916) (int ____fd_911, int ____flag_912, const char * __restrict ____fmt_913, ____gnuc_va_list_82 ____arg_914);// L133:L135 +extern int (____dprintf_chk_984) (int ____fd_981, int ____flag_982, const char * __restrict ____fmt_983, ... );// L131:L132 +extern int (____vdprintf_chk_990) (int ____fd_985, int ____flag_986, const char * __restrict ____fmt_987, ____gnuc_va_list_86 ____arg_988);// L133:L135 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern char * ((____fgets_chk_930) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 -extern char * ((____fgets_chk_932) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 -extern char * ((____fgets_chk_934) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 -extern char * ((____fgets_alias_940) (char * __restrict ____s_936, int ____n_937, __FILE_58 * __restrict ____stream_938));// L243:L245 -extern char * ((____fgets_chk_warn_947) (char * __restrict ____s_942, __size_t_1 ____size_943, int ____n_944, __FILE_58 * __restrict ____stream_945));// L246:L250 +extern char * ((____fgets_chk_1004) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_chk_1006) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_chk_1008) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_alias_1014) (char * __restrict ____s_1010, int ____n_1011, __FILE_59 * __restrict ____stream_1012));// L243:L245 +extern char * ((____fgets_chk_warn_1021) (char * __restrict ____s_1016, __size_t_1 ____size_1017, int ____n_1018, __FILE_59 * __restrict ____stream_1019));// L246:L250 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -int (__main_1021) (int __argc_1018, char * (* (__argv_1019))) { +int (__main_1095) (int __argc_1092, char * (* (__argv_1093))) { -if (__static_condition_default_1023) { +if (__static_condition_default_1098) { { { -int __n_1020= - 1;// L5 +int __n_1094= - 1;// L5 + +if ( __n_1094 < 0 )// L7 +{ +if (__static_condition_default_1099) { -if ( __n_1020 < 0 )// L7 { +{ + + + + __printf_421 ("can't get groups") ; // L9 +} +} +} +if (__static_condition_default_1100) { { { - __printf_383 ("can't get groups") ; // L9 +__static_type_error("invalid type found in return expression"); +} } } } @@ -1225,26 +1386,82 @@ return 0 ;// L14 } } -int (__main_1022) (int __argc_1018, char * (* (__argv_1019))) { +int (__main_1096) (int __argc_1092, char * (* (__argv_1093))) { -if (__static_condition_default_1024) { +if (__static_condition_default_1101) { { { -int __n_1020= - 1;// L5 +int __n_1094= - 1;// L5 -if ( __n_1020 < 0 )// L7 +if ( __n_1094 < 0 )// L7 { +if (__static_condition_default_1102) { { { - __printf_383 ("can't get groups") ; // L9 + __printf_421 ("can't get groups") ; // L9 +} +} +} +if (__static_condition_default_1103) { + +{ +{ + + + +__static_type_error("invalid type found in return expression"); +} +} +} +} +return 0 ;// L14 +} +} + + +} +} +int (__main_1097) (int __argc_1092, char * (* (__argv_1093))) { + +if (__static_condition_default_1104) { + +{ +{ + + + +int __n_1094= - 1;// L5 + +if ( __n_1094 < 0 )// L7 +{ +if (__static_condition_default_1105) { + +{ +{ + + + +__static_type_error("type error") ; // L9 +} +} +} +if (__static_condition_default_1106) { + +{ +{ + + + +__static_type_error("invalid type found in return expression"); +} } } } diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/df7b6577c6a.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/df7b6577c6a.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/df7b6577c6a.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/df7b6577c6a.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/df7b6577c6a.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/df7b6577c6a.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.c index b4c0dca9..da80b0b2 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.c @@ -7,351 +7,351 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_1420; -extern const bool __static_condition_default_1475; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_2058; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_1385; -extern const bool __static_condition_default_956; -extern const bool __static_condition_default_789; -extern const bool __static_condition_default_1498; extern const bool __static_condition_default_516; -extern const bool __static_condition_default_875; -extern const bool __static_condition_default_2056; -extern const bool __static_condition_default_1787; -extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_1552; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_1531; -extern const bool __static_condition_default_1749; -extern const bool __static_condition_default_431; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_769; -extern const bool __static_condition_default_702; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_1377; -extern const bool __static_condition_default_1459; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_1405; -extern const bool __static_condition_default_568; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_1165; -extern const bool __static_condition_default_1564; -extern const bool __static_condition_default_848; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_187; -extern const bool __static_condition_default_543; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_1774; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_583; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_1816; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_1785; -extern const bool __static_condition_default_217; -extern const bool __static_condition_default_315; -extern const bool __static_condition_default_872; -extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_1810; -extern const bool __static_condition_default_887; -extern const bool __static_condition_default_388; -extern const bool __static_condition_default_1789; -extern const bool __static_condition_default_512; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_1458; -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_2041; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_646; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_393; -extern const bool __static_condition_default_564; -extern const bool __static_condition_default_1572; -extern const bool __static_condition_default_2047; -extern const bool __static_condition_default_780; +extern const bool __static_condition_default_1560; extern const bool __static_condition_default_170; -extern const bool __static_condition_default_761; -extern const bool __static_condition_default_1436; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_1791; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_661; extern const bool __static_condition_default_311; -extern const bool __static_condition_default_632; -extern const bool __static_condition_default_1373; -extern const bool __static_condition_default_2046; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_1754; -extern const bool __static_condition_default_1516; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_1357; +extern const bool __static_condition_default_702; +extern const bool __static_condition_default_1315; extern const bool __static_condition_default_515; -extern const bool __static_condition_default_1416; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_957; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_1750; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_891; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_717; extern const bool __static_condition_default_1159; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_1773; -extern const bool __static_condition_default_1944; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_488; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_1345; -extern const bool __static_condition_default_549; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_438; -extern const bool __static_condition_default_2045; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_1568; -extern const bool __static_condition_default_313; -extern const bool __static_condition_default_755; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_559; -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_1395; -extern const bool __static_condition_default_1532; -extern const bool __static_condition_default_536; -extern const bool __static_condition_default_914; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_1485; -extern const bool __static_condition_default_1391; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_538; +extern const bool __static_condition_default_736; extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_552; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_521; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_1789; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_1498; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_875; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_347; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_270; extern const bool __static_condition_default_613; -extern const bool __static_condition_default_2040; -extern const bool __static_condition_default_244; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_1420; extern const bool __static_condition_default_296; -extern const bool __static_condition_default_248; -extern const bool __static_condition_default_955; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_1753; -extern const bool __static_condition_default_402; -extern const bool __static_condition_default_634; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_489; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_789; +extern const bool __static_condition_default_1369; +extern const bool __static_condition_default_386; +extern const bool __static_condition_default_84; extern const bool __static_condition_default_662; +extern const bool __static_condition_default_333; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_791; +extern const bool __static_condition_default_1568; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_1564; +extern const bool __static_condition_default_1749; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_2049; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_955; +extern const bool __static_condition_default_1791; +extern const bool __static_condition_default_1391; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_258; extern const bool __static_condition_default_709; -extern const bool __static_condition_default_386; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_894; -extern const bool __static_condition_default_204; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_1365; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_1814; -extern const bool __static_condition_default_419; -extern const bool __static_condition_default_787; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_2047; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_1808; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_1485; +extern const bool __static_condition_default_549; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_1458; +extern const bool __static_condition_default_1572; +extern const bool __static_condition_default_568; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_634; extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_1515; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_1398; -extern const bool __static_condition_default_768; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_907; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_1774; +extern const bool __static_condition_default_365; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_1436; +extern const bool __static_condition_default_1750; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_246; extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_846; -extern const bool __static_condition_default_53; -extern const bool __static_condition_default_1775; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_375; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_1409; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_2048; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_759; +extern const bool __static_condition_default_1424; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_1753; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_746; extern const bool __static_condition_default_290; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_1388; -extern const bool __static_condition_default_793; -extern const bool __static_condition_default_1432; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_632; extern const bool __static_condition_default_1576; -extern const bool __static_condition_default_539; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_1515; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_761; +extern const bool __static_condition_default_894; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_1785; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_2039; extern const bool __static_condition_default_638; +extern const bool __static_condition_default_978; extern const bool __static_condition_default_619; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_658; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_1164; +extern const bool __static_condition_default_419; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_1405; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_929; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_779; +extern const bool __static_condition_default_1531; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_1816; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_1814; +extern const bool __static_condition_default_559; +extern const bool __static_condition_default_1381; +extern const bool __static_condition_default_1453; +extern const bool __static_condition_default_1773; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_636; +extern const bool __static_condition_default_2058; extern const bool __static_condition_default_382; -extern const bool __static_condition_default_1560; +extern const bool __static_condition_default_2050; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_891; +extern const bool __static_condition_default_1385; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_1944; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_2041; +extern const bool __static_condition_default_1345; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_1388; +extern const bool __static_condition_default_1754; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_1373; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_1398; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_1459; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_963; +extern const bool __static_condition_default_842; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_337; extern const bool __static_condition_default_590; -extern const bool __static_condition_default_1489; -extern const bool __static_condition_default_461; +extern const bool __static_condition_default_550; +extern const bool __static_condition_default_769; extern const bool __static_condition_default_267; -extern const bool __static_condition_default_1357; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_1428; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_779; -extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_204; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_1341; +extern const bool __static_condition_default_1349; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_583; +extern const bool __static_condition_default_1552; +extern const bool __static_condition_default_803; extern const bool __static_condition_default_380; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_1409; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_201; extern const bool __static_condition_default_625; -extern const bool __static_condition_default_1353; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_1377; +extern const bool __static_condition_default_1402; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_1428; +extern const bool __static_condition_default_1787; +extern const bool __static_condition_default_721; +extern const bool __static_condition_default_1165; extern const bool __static_condition_default_677; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_1361; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_2048; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_1808; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_1416; +extern const bool __static_condition_default_1432; +extern const bool __static_condition_default_670; extern const bool __static_condition_default_752; -extern const bool __static_condition_default_792; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_1532; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_2057; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_248; extern const bool __static_condition_default_249; -extern const bool __static_condition_default_1315; -extern const bool __static_condition_default_333; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_395; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_834; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_182; extern const bool __static_condition_default_602; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_1489; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_2056; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_488; extern const bool __static_condition_default_1556; -extern const bool __static_condition_default_412; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_1381; -extern const bool __static_condition_default_357; -extern const bool __static_condition_default_2051; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_367; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_842; -extern const bool __static_condition_default_858; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_1341; -extern const bool __static_condition_default_2039; -extern const bool __static_condition_default_1453; -extern const bool __static_condition_default_597; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_1775; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_864; extern const bool __static_condition_default_967; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_708; +extern const bool __static_condition_default_544; +extern const bool __static_condition_default_1516; extern const bool __static_condition_default_1152; -extern const bool __static_condition_default_198; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_2049; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_1349; -extern const bool __static_condition_default_693; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_2050; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_685; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_284; +extern const bool __static_condition_default_1810; extern const bool __static_condition_default_503; -extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_536; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_1353; +extern const bool __static_condition_default_455; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_469; extern const bool __static_condition_default_282; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_701; -extern const bool __static_condition_default_1424; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_347; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_187; +extern const bool __static_condition_default_2045; extern const bool __static_condition_default_1776; -extern const bool __static_condition_default_645; -extern const bool __static_condition_default_1402; -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_803; +extern const bool __static_condition_default_1475; extern const bool __static_condition_default_76; -extern const bool __static_condition_default_317; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_963; -extern const bool __static_condition_default_84; +extern const bool __static_condition_default_1361; +extern const bool __static_condition_default_1395; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_633; extern const bool __static_condition_default_747; -extern const bool __static_condition_default_907; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_355; +extern const bool __static_condition_default_388; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_2040; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_512; +extern const bool __static_condition_default_1081; extern const bool __static_condition_default_753; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_929; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_1164; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_521; -extern const bool __static_condition_default_2057; -extern const bool __static_condition_default_670; -extern const bool __static_condition_default_1369; -extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_408; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_825; +extern const bool __static_condition_default_846; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_367; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_2051; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_2046; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_1365; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c index e69de29b..9bd7ef8d 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c @@ -0,0 +1,1769 @@ +#include + +extern void __static_parse_error(char *msg); +extern void __static_type_error(char *msg); +extern void __static_renaming(char *renaming, char *original); +extern void __static_condition_renaming(char *expression, char *renaming); + +void __static_initializer_default(); + +extern const bool __static_condition_default_237; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_67; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_973; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_579; +extern const bool __static_condition_default_240; +extern const bool __static_condition_default_974; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_361; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_977; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_423; +extern const bool __static_condition_default_234; +extern const bool __static_condition_default_325; +extern const bool __static_condition_default_378; +extern const bool __static_condition_default_429; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_215; +extern const bool __static_condition_default_595; +extern const bool __static_condition_default_975; +extern const bool __static_condition_default_971; +extern const bool __static_condition_default_629; +extern const bool __static_condition_default_414; +extern const bool __static_condition_default_856; +extern const bool __static_condition_default_420; +extern const bool __static_condition_default_276; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_285; +extern const bool __static_condition_default_302; +extern const bool __static_condition_default_279; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_273; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_849; +extern const bool __static_condition_default_604; +extern const bool __static_condition_default_243; +extern const bool __static_condition_default_261; +extern const bool __static_condition_default_308; +extern const bool __static_condition_default_594; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_426; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_252; +extern const bool __static_condition_default_969; +extern const bool __static_condition_default_60; +extern const bool __static_condition_default_349; +extern const bool __static_condition_default_352; +extern const bool __static_condition_default_394; +extern const bool __static_condition_default_627; +extern const bool __static_condition_default_976; +extern const bool __static_condition_default_305; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_581; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_970; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_379; +void __static_initializer_default() { +__static_renaming("__ptrdiff_t_0", "ptrdiff_t"); +__static_renaming("__size_t_1", "size_t"); +__static_renaming("__wchar_t_2", "wchar_t"); +__static_renaming("__idtype_t_8", "idtype_t"); +__static_renaming("____u_char_9", "__u_char"); +__static_renaming("____u_short_10", "__u_short"); +__static_renaming("____u_int_11", "__u_int"); +__static_renaming("____u_long_12", "__u_long"); +__static_renaming("____int8_t_13", "__int8_t"); +__static_renaming("____uint8_t_14", "__uint8_t"); +__static_renaming("____int16_t_15", "__int16_t"); +__static_renaming("____uint16_t_16", "__uint16_t"); +__static_renaming("____int32_t_17", "__int32_t"); +__static_renaming("____uint32_t_18", "__uint32_t"); +__static_renaming("____int64_t_19", "__int64_t"); +__static_renaming("____uint64_t_20", "__uint64_t"); +__static_renaming("____quad_t_21", "__quad_t"); +__static_renaming("____u_quad_t_22", "__u_quad_t"); +__static_renaming("____dev_t_23", "__dev_t"); +__static_renaming("____uid_t_24", "__uid_t"); +__static_renaming("____gid_t_25", "__gid_t"); +__static_renaming("____ino_t_26", "__ino_t"); +__static_renaming("____ino64_t_27", "__ino64_t"); +__static_renaming("____mode_t_28", "__mode_t"); +__static_renaming("____nlink_t_29", "__nlink_t"); +__static_renaming("____off_t_30", "__off_t"); +__static_renaming("____off64_t_31", "__off64_t"); +__static_renaming("____pid_t_32", "__pid_t"); +__static_renaming("____fsid_t_36", "__fsid_t"); +__static_renaming("____clock_t_37", "__clock_t"); +__static_renaming("____rlim_t_38", "__rlim_t"); +__static_renaming("____rlim64_t_39", "__rlim64_t"); +__static_renaming("____id_t_40", "__id_t"); +__static_renaming("____time_t_41", "__time_t"); +__static_renaming("____useconds_t_42", "__useconds_t"); +__static_renaming("____suseconds_t_43", "__suseconds_t"); +__static_renaming("____daddr_t_44", "__daddr_t"); +__static_renaming("____key_t_45", "__key_t"); +__static_renaming("____clockid_t_46", "__clockid_t"); +__static_renaming("____timer_t_47", "__timer_t"); +__static_renaming("____blksize_t_48", "__blksize_t"); +__static_renaming("____blkcnt_t_49", "__blkcnt_t"); +__static_renaming("____blkcnt64_t_50", "__blkcnt64_t"); +__static_renaming("____fsblkcnt_t_51", "__fsblkcnt_t"); +__static_renaming("____fsblkcnt64_t_52", "__fsblkcnt64_t"); +__static_renaming("____fsfilcnt_t_53", "__fsfilcnt_t"); +__static_renaming("____fsfilcnt64_t_54", "__fsfilcnt64_t"); +__static_renaming("____fsword_t_55", "__fsword_t"); +__static_renaming("____ssize_t_56", "__ssize_t"); +__static_renaming("____syscall_slong_t_57", "__syscall_slong_t"); +__static_renaming("____syscall_ulong_t_58", "__syscall_ulong_t"); +__static_renaming("____loff_t_59", "__loff_t"); +__static_renaming("____qaddr_t_61", "__qaddr_t"); +__static_renaming("____caddr_t_62", "__caddr_t"); +__static_renaming("____intptr_t_63", "__intptr_t"); +__static_renaming("____socklen_t_64", "__socklen_t"); +__static_renaming("____bswap_32_66", "__bswap_32"); +__static_renaming("____bswap_64_69", "__bswap_64"); +__static_renaming("____WAIT_STATUS_89", "__WAIT_STATUS"); +__static_renaming("__div_t_94", "div_t"); +__static_renaming("__ldiv_t_99", "ldiv_t"); +__static_renaming("__lldiv_t_104", "lldiv_t"); +__static_renaming("____ctype_get_mb_cur_max_105", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_106", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_107", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_108", "__ctype_get_mb_cur_max"); +__static_renaming("__atof_110", "atof"); +__static_renaming("__atof_111", "atof"); +__static_renaming("__atoi_113", "atoi"); +__static_renaming("__atoi_114", "atoi"); +__static_renaming("__atol_116", "atol"); +__static_renaming("__atol_117", "atol"); +__static_renaming("__atoll_119", "atoll"); +__static_renaming("__atoll_120", "atoll"); +__static_renaming("__strtod_123", "strtod"); +__static_renaming("__strtof_126", "strtof"); +__static_renaming("__strtold_129", "strtold"); +__static_renaming("__strtol_133", "strtol"); +__static_renaming("__strtoul_137", "strtoul"); +__static_renaming("__strtoq_141", "strtoq"); +__static_renaming("__strtouq_145", "strtouq"); +__static_renaming("__strtoll_149", "strtoll"); +__static_renaming("__strtoll_150", "strtoll"); +__static_renaming("__strtoull_154", "strtoull"); +__static_renaming("__l64a_159", "l64a"); +__static_renaming("__l64a_160", "l64a"); +__static_renaming("__a64l_162", "a64l"); +__static_renaming("__a64l_163", "a64l"); +__static_renaming("____u_char_164", "__u_char"); +__static_renaming("____u_short_165", "__u_short"); +__static_renaming("____u_int_166", "__u_int"); +__static_renaming("____u_long_167", "__u_long"); +__static_renaming("____int8_t_168", "__int8_t"); +__static_renaming("____uint8_t_169", "__uint8_t"); +__static_renaming("____int16_t_170", "__int16_t"); +__static_renaming("____uint16_t_171", "__uint16_t"); +__static_renaming("____int32_t_172", "__int32_t"); +__static_renaming("____uint32_t_173", "__uint32_t"); +__static_renaming("____int64_t_174", "__int64_t"); +__static_renaming("____uint64_t_175", "__uint64_t"); +__static_renaming("____quad_t_176", "__quad_t"); +__static_renaming("____u_quad_t_177", "__u_quad_t"); +__static_renaming("____dev_t_178", "__dev_t"); +__static_renaming("____uid_t_179", "__uid_t"); +__static_renaming("____gid_t_180", "__gid_t"); +__static_renaming("____ino_t_181", "__ino_t"); +__static_renaming("____ino64_t_182", "__ino64_t"); +__static_renaming("____mode_t_183", "__mode_t"); +__static_renaming("____nlink_t_184", "__nlink_t"); +__static_renaming("____off_t_185", "__off_t"); +__static_renaming("____off64_t_186", "__off64_t"); +__static_renaming("____pid_t_187", "__pid_t"); +__static_renaming("____fsid_t_191", "__fsid_t"); +__static_renaming("____clock_t_192", "__clock_t"); +__static_renaming("____rlim_t_193", "__rlim_t"); +__static_renaming("____rlim64_t_194", "__rlim64_t"); +__static_renaming("____id_t_195", "__id_t"); +__static_renaming("____time_t_196", "__time_t"); +__static_renaming("____useconds_t_197", "__useconds_t"); +__static_renaming("____suseconds_t_198", "__suseconds_t"); +__static_renaming("____daddr_t_199", "__daddr_t"); +__static_renaming("____key_t_200", "__key_t"); +__static_renaming("____clockid_t_201", "__clockid_t"); +__static_renaming("____timer_t_202", "__timer_t"); +__static_renaming("____blksize_t_203", "__blksize_t"); +__static_renaming("____blkcnt_t_204", "__blkcnt_t"); +__static_renaming("____blkcnt64_t_205", "__blkcnt64_t"); +__static_renaming("____fsblkcnt_t_206", "__fsblkcnt_t"); +__static_renaming("____fsblkcnt64_t_207", "__fsblkcnt64_t"); +__static_renaming("____fsfilcnt_t_208", "__fsfilcnt_t"); +__static_renaming("____fsfilcnt64_t_209", "__fsfilcnt64_t"); +__static_renaming("____fsword_t_210", "__fsword_t"); +__static_renaming("____ssize_t_211", "__ssize_t"); +__static_renaming("____syscall_slong_t_212", "__syscall_slong_t"); +__static_renaming("____syscall_ulong_t_213", "__syscall_ulong_t"); +__static_renaming("____loff_t_214", "__loff_t"); +__static_renaming("____qaddr_t_216", "__qaddr_t"); +__static_renaming("____caddr_t_217", "__caddr_t"); +__static_renaming("____intptr_t_218", "__intptr_t"); +__static_renaming("____socklen_t_219", "__socklen_t"); +__static_renaming("__u_char_220", "u_char"); +__static_renaming("__u_char_221", "u_char"); +__static_renaming("__u_short_222", "u_short"); +__static_renaming("__u_short_223", "u_short"); +__static_renaming("__u_int_224", "u_int"); +__static_renaming("__u_int_225", "u_int"); +__static_renaming("__u_long_226", "u_long"); +__static_renaming("__u_long_227", "u_long"); +__static_renaming("__quad_t_228", "quad_t"); +__static_renaming("__quad_t_229", "quad_t"); +__static_renaming("__u_quad_t_230", "u_quad_t"); +__static_renaming("__u_quad_t_231", "u_quad_t"); +__static_renaming("__fsid_t_232", "fsid_t"); +__static_renaming("__fsid_t_233", "fsid_t"); +__static_renaming("__loff_t_235", "loff_t"); +__static_renaming("__loff_t_236", "loff_t"); +__static_renaming("__loff_t_238", "loff_t"); +__static_renaming("__loff_t_239", "loff_t"); +__static_renaming("__ino_t_241", "ino_t"); +__static_renaming("__ino_t_242", "ino_t"); +__static_renaming("__ino_t_244", "ino_t"); +__static_renaming("__ino_t_245", "ino_t"); +__static_renaming("__dev_t_247", "dev_t"); +__static_renaming("__dev_t_248", "dev_t"); +__static_renaming("__gid_t_250", "gid_t"); +__static_renaming("__gid_t_251", "gid_t"); +__static_renaming("__gid_t_253", "gid_t"); +__static_renaming("__gid_t_254", "gid_t"); +__static_renaming("__mode_t_256", "mode_t"); +__static_renaming("__mode_t_257", "mode_t"); +__static_renaming("__nlink_t_259", "nlink_t"); +__static_renaming("__nlink_t_260", "nlink_t"); +__static_renaming("__uid_t_262", "uid_t"); +__static_renaming("__uid_t_263", "uid_t"); +__static_renaming("__uid_t_265", "uid_t"); +__static_renaming("__uid_t_266", "uid_t"); +__static_renaming("__off_t_268", "off_t"); +__static_renaming("__off_t_269", "off_t"); +__static_renaming("__off_t_271", "off_t"); +__static_renaming("__off_t_272", "off_t"); +__static_renaming("__pid_t_274", "pid_t"); +__static_renaming("__pid_t_275", "pid_t"); +__static_renaming("__pid_t_277", "pid_t"); +__static_renaming("__pid_t_278", "pid_t"); +__static_renaming("__id_t_280", "id_t"); +__static_renaming("__id_t_281", "id_t"); +__static_renaming("__ssize_t_283", "ssize_t"); +__static_renaming("__ssize_t_284", "ssize_t"); +__static_renaming("__daddr_t_286", "daddr_t"); +__static_renaming("__daddr_t_287", "daddr_t"); +__static_renaming("__caddr_t_289", "caddr_t"); +__static_renaming("__caddr_t_290", "caddr_t"); +__static_renaming("__key_t_291", "key_t"); +__static_renaming("__key_t_292", "key_t"); +__static_renaming("__key_t_294", "key_t"); +__static_renaming("__key_t_295", "key_t"); +__static_renaming("__clock_t_297", "clock_t"); +__static_renaming("__clock_t_298", "clock_t"); +__static_renaming("__time_t_300", "time_t"); +__static_renaming("__time_t_301", "time_t"); +__static_renaming("__clockid_t_303", "clockid_t"); +__static_renaming("__clockid_t_304", "clockid_t"); +__static_renaming("__timer_t_306", "timer_t"); +__static_renaming("__timer_t_307", "timer_t"); +__static_renaming("__ulong_309", "ulong"); +__static_renaming("__ulong_310", "ulong"); +__static_renaming("__ulong_311", "ulong"); +__static_renaming("__ushort_312", "ushort"); +__static_renaming("__uint_313", "uint"); +__static_renaming("__int8_t_314", "int8_t"); +__static_renaming("__int16_t_315", "int16_t"); +__static_renaming("__int32_t_316", "int32_t"); +__static_renaming("__int64_t_317", "int64_t"); +__static_renaming("__u_int8_t_318", "u_int8_t"); +__static_renaming("__u_int16_t_319", "u_int16_t"); +__static_renaming("__u_int32_t_320", "u_int32_t"); +__static_renaming("__u_int64_t_321", "u_int64_t"); +__static_renaming("__register_t_322", "register_t"); +__static_renaming("____bswap_32_324", "__bswap_32"); +__static_renaming("____bswap_64_327", "__bswap_64"); +__static_renaming("____sig_atomic_t_328", "__sig_atomic_t"); +__static_renaming("____sigset_t_332", "__sigset_t"); +__static_renaming("__sigset_t_333", "sigset_t"); +__static_renaming("__suseconds_t_350", "suseconds_t"); +__static_renaming("__suseconds_t_351", "suseconds_t"); +__static_renaming("____fd_mask_353", "__fd_mask"); +__static_renaming("____fd_mask_354", "__fd_mask"); +__static_renaming("__fd_set_362", "fd_set"); +__static_renaming("__fd_mask_363", "fd_mask"); +__static_renaming("__fd_mask_364", "fd_mask"); +__static_renaming("__select_376", "select"); +__static_renaming("__select_377", "select"); +__static_renaming("__pselect_392", "pselect"); +__static_renaming("__pselect_393", "pselect"); +__static_renaming("____fdelt_chk_397", "__fdelt_chk"); +__static_renaming("____fdelt_warn_399", "__fdelt_warn"); +__static_renaming("__gnu_dev_major_401", "gnu_dev_major"); +__static_renaming("__gnu_dev_major_402", "gnu_dev_major"); +__static_renaming("__gnu_dev_minor_404", "gnu_dev_minor"); +__static_renaming("__gnu_dev_makedev_407", "gnu_dev_makedev"); +__static_renaming("__blksize_t_412", "blksize_t"); +__static_renaming("__blksize_t_413", "blksize_t"); +__static_renaming("__blkcnt_t_415", "blkcnt_t"); +__static_renaming("__blkcnt_t_416", "blkcnt_t"); +__static_renaming("__fsblkcnt_t_418", "fsblkcnt_t"); +__static_renaming("__fsblkcnt_t_419", "fsblkcnt_t"); +__static_renaming("__blkcnt_t_421", "blkcnt_t"); +__static_renaming("__blkcnt_t_422", "blkcnt_t"); +__static_renaming("__fsblkcnt_t_424", "fsblkcnt_t"); +__static_renaming("__fsblkcnt_t_425", "fsblkcnt_t"); +__static_renaming("__fsfilcnt_t_427", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_428", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_430", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_431", "fsfilcnt_t"); +__static_renaming("__pthread_t_433", "pthread_t"); +__static_renaming("__pthread_attr_t_437", "pthread_attr_t"); +__static_renaming("____pthread_list_t_442", "__pthread_list_t"); +__static_renaming("____pthread_list_t_443", "__pthread_list_t"); +__static_renaming("__pthread_mutex_t_459", "pthread_mutex_t"); +__static_renaming("__pthread_mutexattr_t_464", "pthread_mutexattr_t"); +__static_renaming("__rand_465", "rand"); +__static_renaming("__srand_467", "srand"); +__static_renaming("__rand_r_469", "rand_r"); +__static_renaming("__drand48_470", "drand48"); +__static_renaming("__erand48_472", "erand48"); +__static_renaming("__lrand48_473", "lrand48"); +__static_renaming("__nrand48_475", "nrand48"); +__static_renaming("__mrand48_476", "mrand48"); +__static_renaming("__jrand48_478", "jrand48"); +__static_renaming("__srand48_480", "srand48"); +__static_renaming("__seed48_482", "seed48"); +__static_renaming("__lcong48_484", "lcong48"); +__static_renaming("__malloc_486", "malloc"); +__static_renaming("__malloc_487", "malloc"); +__static_renaming("__calloc_490", "calloc"); +__static_renaming("__calloc_491", "calloc"); +__static_renaming("__realloc_494", "realloc"); +__static_renaming("__free_496", "free"); +__static_renaming("__cfree_498", "cfree"); +__static_renaming("__alloca_500", "alloca"); +__static_renaming("__valloc_502", "valloc"); +__static_renaming("__valloc_503", "valloc"); +__static_renaming("__posix_memalign_507", "posix_memalign"); +__static_renaming("__posix_memalign_508", "posix_memalign"); +__static_renaming("__aligned_alloc_511", "aligned_alloc"); +__static_renaming("__aligned_alloc_512", "aligned_alloc"); +__static_renaming("__aligned_alloc_513", "aligned_alloc"); +__static_renaming("__aligned_alloc_514", "aligned_alloc"); +__static_renaming("__abort_515", "abort"); +__static_renaming("__atexit_517", "atexit"); +__static_renaming("__at_quick_exit_519", "at_quick_exit"); +__static_renaming("__on_exit_524", "on_exit"); +__static_renaming("__exit_526", "exit"); +__static_renaming("__exit_527", "exit"); +__static_renaming("__quick_exit_529", "quick_exit"); +__static_renaming("___Exit_531", "_Exit"); +__static_renaming("__getenv_533", "getenv"); +__static_renaming("__getenv_534", "getenv"); +__static_renaming("__putenv_536", "putenv"); +__static_renaming("__setenv_540", "setenv"); +__static_renaming("__unsetenv_542", "unsetenv"); +__static_renaming("__clearenv_543", "clearenv"); +__static_renaming("__mktemp_545", "mktemp"); +__static_renaming("__mkstemp_548", "mkstemp"); +__static_renaming("__mkstemp_549", "mkstemp"); +__static_renaming("__mkstemp_550", "mkstemp"); +__static_renaming("__mkstemp_551", "mkstemp"); +__static_renaming("__mkstemps_556", "mkstemps"); +__static_renaming("__mkstemps_557", "mkstemps"); +__static_renaming("__mkstemps_558", "mkstemps"); +__static_renaming("__mkstemps_559", "mkstemps"); +__static_renaming("__mkdtemp_561", "mkdtemp"); +__static_renaming("__mkdtemp_562", "mkdtemp"); +__static_renaming("__system_564", "system"); +__static_renaming("__system_565", "system"); +__static_renaming("__system_566", "system"); +__static_renaming("__system_567", "system"); +__static_renaming("__realpath_570", "realpath"); +__static_renaming("__realpath_571", "realpath"); +__static_renaming("____compar_fn_t_572", "__compar_fn_t"); +__static_renaming("__bsearch_580", "bsearch"); +__static_renaming("__bsearch_582", "bsearch"); +__static_renaming("____l_589", "__l"); +__static_renaming("____u_590", "__u"); +__static_renaming("____idx_591", "__idx"); +__static_renaming("____p_592", "__p"); +__static_renaming("____comparison_593", "__comparison"); +__static_renaming("__qsort_601", "qsort"); +__static_renaming("__qsort_603", "qsort"); +__static_renaming("__abs_606", "abs"); +__static_renaming("__abs_607", "abs"); +__static_renaming("__labs_609", "labs"); +__static_renaming("__labs_610", "labs"); +__static_renaming("__llabs_612", "llabs"); +__static_renaming("__llabs_613", "llabs"); +__static_renaming("__div_616", "div"); +__static_renaming("__div_617", "div"); +__static_renaming("__ldiv_620", "ldiv"); +__static_renaming("__ldiv_622", "ldiv"); +__static_renaming("__lldiv_626", "lldiv"); +__static_renaming("__lldiv_628", "lldiv"); +__static_renaming("__ecvt_634", "ecvt"); +__static_renaming("__ecvt_635", "ecvt"); +__static_renaming("__fcvt_640", "fcvt"); +__static_renaming("__fcvt_641", "fcvt"); +__static_renaming("__gcvt_645", "gcvt"); +__static_renaming("__gcvt_646", "gcvt"); +__static_renaming("__qecvt_651", "qecvt"); +__static_renaming("__qecvt_652", "qecvt"); +__static_renaming("__qfcvt_657", "qfcvt"); +__static_renaming("__qfcvt_658", "qfcvt"); +__static_renaming("__qgcvt_662", "qgcvt"); +__static_renaming("__qgcvt_663", "qgcvt"); +__static_renaming("__ecvt_r_670", "ecvt_r"); +__static_renaming("__fcvt_r_677", "fcvt_r"); +__static_renaming("__qecvt_r_684", "qecvt_r"); +__static_renaming("__qfcvt_r_691", "qfcvt_r"); +__static_renaming("__mblen_694", "mblen"); +__static_renaming("__mblen_695", "mblen"); +__static_renaming("__mbtowc_699", "mbtowc"); +__static_renaming("__wctomb_702", "wctomb"); +__static_renaming("__mbstowcs_706", "mbstowcs"); +__static_renaming("__wcstombs_710", "wcstombs"); +__static_renaming("__rpmatch_712", "rpmatch"); +__static_renaming("__rpmatch_713", "rpmatch"); +__static_renaming("__getsubopt_717", "getsubopt"); +__static_renaming("__getsubopt_718", "getsubopt"); +__static_renaming("__getloadavg_721", "getloadavg"); +__static_renaming("____realpath_chk_726", "__realpath_chk"); +__static_renaming("____realpath_alias_729", "__realpath_alias"); +__static_renaming("____realpath_chk_warn_733", "__realpath_chk_warn"); +__static_renaming("____ptsname_r_chk_741", "__ptsname_r_chk"); +__static_renaming("____ptsname_r_alias_745", "__ptsname_r_alias"); +__static_renaming("____ptsname_r_chk_warn_750", "__ptsname_r_chk_warn"); +__static_renaming("____wctomb_chk_758", "__wctomb_chk"); +__static_renaming("____wctomb_alias_761", "__wctomb_alias"); +__static_renaming("____mbstowcs_chk_768", "__mbstowcs_chk"); +__static_renaming("____mbstowcs_alias_772", "__mbstowcs_alias"); +__static_renaming("____mbstowcs_chk_warn_777", "__mbstowcs_chk_warn"); +__static_renaming("____wcstombs_chk_785", "__wcstombs_chk"); +__static_renaming("____wcstombs_alias_789", "__wcstombs_alias"); +__static_renaming("____wcstombs_chk_warn_794", "__wcstombs_chk_warn"); +__static_renaming("____u_char_798", "__u_char"); +__static_renaming("____u_short_799", "__u_short"); +__static_renaming("____u_int_800", "__u_int"); +__static_renaming("____u_long_801", "__u_long"); +__static_renaming("____int8_t_802", "__int8_t"); +__static_renaming("____uint8_t_803", "__uint8_t"); +__static_renaming("____int16_t_804", "__int16_t"); +__static_renaming("____uint16_t_805", "__uint16_t"); +__static_renaming("____int32_t_806", "__int32_t"); +__static_renaming("____uint32_t_807", "__uint32_t"); +__static_renaming("____int64_t_808", "__int64_t"); +__static_renaming("____uint64_t_809", "__uint64_t"); +__static_renaming("____quad_t_810", "__quad_t"); +__static_renaming("____u_quad_t_811", "__u_quad_t"); +__static_renaming("____dev_t_812", "__dev_t"); +__static_renaming("____uid_t_813", "__uid_t"); +__static_renaming("____gid_t_814", "__gid_t"); +__static_renaming("____ino_t_815", "__ino_t"); +__static_renaming("____ino64_t_816", "__ino64_t"); +__static_renaming("____mode_t_817", "__mode_t"); +__static_renaming("____nlink_t_818", "__nlink_t"); +__static_renaming("____off_t_819", "__off_t"); +__static_renaming("____off64_t_820", "__off64_t"); +__static_renaming("____pid_t_821", "__pid_t"); +__static_renaming("____fsid_t_825", "__fsid_t"); +__static_renaming("____clock_t_826", "__clock_t"); +__static_renaming("____rlim_t_827", "__rlim_t"); +__static_renaming("____rlim64_t_828", "__rlim64_t"); +__static_renaming("____id_t_829", "__id_t"); +__static_renaming("____time_t_830", "__time_t"); +__static_renaming("____useconds_t_831", "__useconds_t"); +__static_renaming("____suseconds_t_832", "__suseconds_t"); +__static_renaming("____daddr_t_833", "__daddr_t"); +__static_renaming("____key_t_834", "__key_t"); +__static_renaming("____clockid_t_835", "__clockid_t"); +__static_renaming("____timer_t_836", "__timer_t"); +__static_renaming("____blksize_t_837", "__blksize_t"); +__static_renaming("____blkcnt_t_838", "__blkcnt_t"); +__static_renaming("____blkcnt64_t_839", "__blkcnt64_t"); +__static_renaming("____fsblkcnt_t_840", "__fsblkcnt_t"); +__static_renaming("____fsblkcnt64_t_841", "__fsblkcnt64_t"); +__static_renaming("____fsfilcnt_t_842", "__fsfilcnt_t"); +__static_renaming("____fsfilcnt64_t_843", "__fsfilcnt64_t"); +__static_renaming("____fsword_t_844", "__fsword_t"); +__static_renaming("____ssize_t_845", "__ssize_t"); +__static_renaming("____syscall_slong_t_846", "__syscall_slong_t"); +__static_renaming("____syscall_ulong_t_847", "__syscall_ulong_t"); +__static_renaming("____loff_t_848", "__loff_t"); +__static_renaming("____qaddr_t_850", "__qaddr_t"); +__static_renaming("____caddr_t_851", "__caddr_t"); +__static_renaming("____intptr_t_852", "__intptr_t"); +__static_renaming("____socklen_t_853", "__socklen_t"); +__static_renaming("____bswap_32_855", "__bswap_32"); +__static_renaming("____bswap_64_858", "__bswap_64"); +__static_renaming("____ctype_b_loc_873", "__ctype_b_loc"); +__static_renaming("____ctype_b_loc_874", "__ctype_b_loc"); +__static_renaming("____ctype_tolower_loc_875", "__ctype_tolower_loc"); +__static_renaming("____ctype_toupper_loc_876", "__ctype_toupper_loc"); +__static_renaming("__isalnum_877", "isalnum"); +__static_renaming("__isalpha_878", "isalpha"); +__static_renaming("__iscntrl_879", "iscntrl"); +__static_renaming("__isdigit_880", "isdigit"); +__static_renaming("__islower_881", "islower"); +__static_renaming("__isgraph_882", "isgraph"); +__static_renaming("__isprint_883", "isprint"); +__static_renaming("__ispunct_884", "ispunct"); +__static_renaming("__isspace_885", "isspace"); +__static_renaming("__isupper_886", "isupper"); +__static_renaming("__isxdigit_887", "isxdigit"); +__static_renaming("__tolower_889", "tolower"); +__static_renaming("__toupper_891", "toupper"); +__static_renaming("__isblank_892", "isblank"); +__static_renaming("__isascii_894", "isascii"); +__static_renaming("__toascii_896", "toascii"); +__static_renaming("___toupper_897", "_toupper"); +__static_renaming("___tolower_898", "_tolower"); +__static_renaming("____locale_t_906", "__locale_t"); +__static_renaming("__locale_t_907", "locale_t"); +__static_renaming("__isalnum_l_908", "isalnum_l"); +__static_renaming("__isalpha_l_909", "isalpha_l"); +__static_renaming("__iscntrl_l_910", "iscntrl_l"); +__static_renaming("__isdigit_l_911", "isdigit_l"); +__static_renaming("__islower_l_912", "islower_l"); +__static_renaming("__isgraph_l_913", "isgraph_l"); +__static_renaming("__isprint_l_914", "isprint_l"); +__static_renaming("__ispunct_l_915", "ispunct_l"); +__static_renaming("__isspace_l_916", "isspace_l"); +__static_renaming("__isupper_l_917", "isupper_l"); +__static_renaming("__isxdigit_l_918", "isxdigit_l"); +__static_renaming("__isblank_l_919", "isblank_l"); +__static_renaming("____tolower_l_922", "__tolower_l"); +__static_renaming("__tolower_l_925", "tolower_l"); +__static_renaming("____toupper_l_928", "__toupper_l"); +__static_renaming("__toupper_l_931", "toupper_l"); +__static_renaming("__optarg_932", "optarg"); +__static_renaming("__optarg_933", "optarg"); +__static_renaming("__optarg_934", "optarg"); +__static_renaming("__optind_935", "optind"); +__static_renaming("__opterr_936", "opterr"); +__static_renaming("__optopt_937", "optopt"); +__static_renaming("__getopt_946", "getopt"); +__static_renaming("__getopt_947", "getopt"); +__static_renaming("__getopt_long_953", "getopt_long"); +__static_renaming("__getopt_long_954", "getopt_long"); +__static_renaming("__getopt_long_only_960", "getopt_long_only"); +__static_renaming("__getopt_long_only_961", "getopt_long_only"); +__static_renaming("__buf_964", "buf"); +__static_renaming("__bufsize_965", "bufsize"); +__static_renaming("__i_966", "i"); +__static_renaming("__cmd_967", "cmd"); +__static_renaming("__main_968", "main"); + +__static_condition_renaming("__static_condition_default_60", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_67", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_215", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_234", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __u_char_defined)"); +__static_condition_renaming("__static_condition_default_237", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __u_char_defined)"); +__static_condition_renaming("__static_condition_default_240", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __u_char_defined)"); +__static_condition_renaming("__static_condition_default_243", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ino_t_defined)"); +__static_condition_renaming("__static_condition_default_246", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ino_t_defined) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ino_t_defined)"); +__static_condition_renaming("__static_condition_default_249", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_252", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_255", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_258", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_261", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __nlink_t_defined)"); +__static_condition_renaming("__static_condition_default_264", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __nlink_t_defined)"); +__static_condition_renaming("__static_condition_default_267", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __nlink_t_defined)"); +__static_condition_renaming("__static_condition_default_270", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_273", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_276", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_279", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_282", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __id_t_defined)"); +__static_condition_renaming("__static_condition_default_285", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_288", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_293", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_296", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_299", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __clock_t_defined)"); +__static_condition_renaming("__static_condition_default_302", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __time_t_defined)"); +__static_condition_renaming("__static_condition_default_305", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __clockid_t_defined)"); +__static_condition_renaming("__static_condition_default_308", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __timer_t_defined)"); +__static_condition_renaming("__static_condition_default_325", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_341", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_349", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_352", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __suseconds_t_defined)"); +__static_condition_renaming("__static_condition_default_361", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_378", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_379", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_394", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_395", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_414", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blksize_t_defined)"); +__static_condition_renaming("__static_condition_default_417", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blkcnt_t_defined) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blkcnt_t_defined)"); +__static_condition_renaming("__static_condition_default_420", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_423", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blkcnt_t_defined)"); +__static_condition_renaming("__static_condition_default_426", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_429", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_432", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_579", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_581", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_594", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __USE_EXTERN_INLINES) && !(defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_595", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_602", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_604", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_621", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_623", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_627", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_629", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_736", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_849", "(defined _STDLIB_H) && (defined _BITS_TYPESIZES_H) && !(defined __GNU_LIBRARY__)"); +__static_condition_renaming("__static_condition_default_856", "(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __GNU_LIBRARY__) && !(defined _ISbit)"); +__static_condition_renaming("__static_condition_default_969", "(defined CONFIG_FEATURE_CLEAN_UP)"); +__static_condition_renaming("__static_condition_default_970", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_CLEAN_UP) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_CLEAN_UP) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_CLEAN_UP) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_CLEAN_UP) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_CLEAN_UP) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_CLEAN_UP) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_CLEAN_UP) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_CLEAN_UP) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_CLEAN_UP) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_CLEAN_UP) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_CLEAN_UP) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_CLEAN_UP)"); +__static_condition_renaming("__static_condition_default_971", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_CLEAN_UP) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_CLEAN_UP) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_CLEAN_UP)"); +__static_condition_renaming("__static_condition_default_972", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_CLEAN_UP) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined __malloc_and_calloc_defined) && (defined CONFIG_FEATURE_CLEAN_UP) || (defined _STDLIB_H) && (defined CONFIG_FEATURE_CLEAN_UP)"); +__static_condition_renaming("__static_condition_default_973", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_CLEAN_UP)"); +__static_condition_renaming("__static_condition_default_974", "!(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined CONFIG_FEATURE_CLEAN_UP) || (defined _STDLIB_H) && (defined CONFIG_FEATURE_CLEAN_UP)"); +__static_condition_renaming("__static_condition_default_975", "!(defined CONFIG_FEATURE_CLEAN_UP)"); +__static_condition_renaming("__static_condition_default_976", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_CLEAN_UP) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_CLEAN_UP) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_CLEAN_UP) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_CLEAN_UP) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_CLEAN_UP) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_CLEAN_UP) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_CLEAN_UP) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_CLEAN_UP) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_CLEAN_UP) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_CLEAN_UP) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_CLEAN_UP) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_CLEAN_UP)"); +__static_condition_renaming("__static_condition_default_977", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_FEATURE_CLEAN_UP) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_CLEAN_UP) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_CLEAN_UP)"); +__static_condition_renaming("__static_condition_default_978", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_CLEAN_UP) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_FEATURE_CLEAN_UP) || (defined _STDLIB_H) && !(defined CONFIG_FEATURE_CLEAN_UP)"); +__static_condition_renaming("__static_condition_default_979", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) || (defined _STDLIB_H) && !(defined _BITS_TYPESIZES_H) && (defined __GNU_LIBRARY__) && (defined __THROW) || (defined _STDLIB_H) && (defined _BITS_TYPESIZES_H) && !(defined __GNU_LIBRARY__) || (defined _STDLIB_H) && (defined _BITS_TYPESIZES_H) && (defined __GNU_LIBRARY__) && (defined __THROW)"); + +if (__static_condition_default_979) { +__static_parse_error("Unable to parse"); +} +}; +typedef long int __ptrdiff_t_0;// L143:L324 +typedef long unsigned int __size_t_1;// L177:L209 +typedef int __wchar_t_2;// L243:L321 +enum ____anonymous_tag_6_7 { +__P_ALL_3, +__P_PID_4, +__P_PGID_5, +}; +typedef enum ____anonymous_tag_6_7 __idtype_t_8;// L50:L55 +typedef unsigned char ____u_char_9;// L30 +typedef unsigned short int ____u_short_10;// L31 +typedef unsigned int ____u_int_11;// L32 +typedef unsigned long int ____u_long_12;// L33 +typedef signed char ____int8_t_13;// L36 +typedef unsigned char ____uint8_t_14;// L37 +typedef signed short int ____int16_t_15;// L38 +typedef unsigned short int ____uint16_t_16;// L39 +typedef signed int ____int32_t_17;// L40 +typedef unsigned int ____uint32_t_18;// L41 +typedef signed long int ____int64_t_19;// L43 +typedef unsigned long int ____uint64_t_20;// L44 +typedef long int ____quad_t_21;// L52 +typedef unsigned long int ____u_quad_t_22;// L53 +typedef unsigned long int ____dev_t_23;// L109:L124 +typedef unsigned int ____uid_t_24;// L92:L125 +typedef unsigned int ____gid_t_25;// L92:L126 +typedef unsigned long int ____ino_t_26;// L94:L127 +typedef unsigned long int ____ino64_t_27;// L109:L128 +typedef unsigned int ____mode_t_28;// L92:L129 +typedef unsigned long int ____nlink_t_29;// L94:L130 +typedef long int ____off_t_30;// L93:L131 +typedef long int ____off64_t_31;// L108:L132 +typedef int ____pid_t_32;// L91:L133 +struct ____anonymous_tag_33_34 { +int ____val_35[2];// L72 +}; +typedef struct ____anonymous_tag_33_34 ____fsid_t_36;// L72:L134 +typedef long int ____clock_t_37;// L93:L135 +typedef unsigned long int ____rlim_t_38;// L94:L136 +typedef unsigned long int ____rlim64_t_39;// L109:L137 +typedef unsigned int ____id_t_40;// L92:L138 +typedef long int ____time_t_41;// L93:L139 +typedef unsigned int ____useconds_t_42;// L92:L140 +typedef long int ____suseconds_t_43;// L93:L141 +typedef int ____daddr_t_44;// L91:L143 +typedef int ____key_t_45;// L91:L144 +typedef int ____clockid_t_46;// L91:L147 +typedef void * (____timer_t_47);// L70:L150 +typedef long int ____blksize_t_48;// L93:L153 +typedef long int ____blkcnt_t_49;// L93:L158 +typedef long int ____blkcnt64_t_50;// L108:L159 +typedef unsigned long int ____fsblkcnt_t_51;// L94:L162 +typedef unsigned long int ____fsblkcnt64_t_52;// L109:L163 +typedef unsigned long int ____fsfilcnt_t_53;// L94:L166 +typedef unsigned long int ____fsfilcnt64_t_54;// L109:L167 +typedef long int ____fsword_t_55;// L93:L170 +typedef long int ____ssize_t_56;// L110:L172 +typedef long int ____syscall_slong_t_57;// L93:L175 +typedef unsigned long int ____syscall_ulong_t_58;// L94:L177 +typedef ____off64_t_31 ____loff_t_59;// L181 +typedef ____quad_t_21 * (____qaddr_t_61);// L182 +typedef char * (____caddr_t_62);// L183 +typedef long int ____intptr_t_63;// L110:L186 +typedef unsigned int ____socklen_t_64;// L92:L189 +struct ____anonymous_tag_70_71 { +unsigned int ____w_termsig_72 : 7;// L72 +unsigned int ____w_coredump_73 : 1;// L73 +unsigned int ____w_retcode_74 : 8;// L74 +unsigned int __anon_id_0_75 : 16;// L75 +}; +struct ____anonymous_tag_76_77 { +unsigned int ____w_stopval_78 : 8;// L87 +unsigned int ____w_stopsig_79 : 8;// L88 +unsigned int __anon_id_1_80 : 16;// L89 +}; +union __wait_81 { +int __w_status_82;// L68 +struct ____anonymous_tag_70_71 ____wait_terminated_83;// L69 +struct ____anonymous_tag_76_77 ____wait_stopped_84;// L84 +}; +union ____anonymous_tag_85_86 { +union __wait_81 * (____uptr_87);// L69 +int * (____iptr_88);// L70 +}; +typedef union ____anonymous_tag_85_86 ____WAIT_STATUS_89;// L67:L71 +struct ____anonymous_tag_90_91 { +int __quot_92;// L99 +int __rem_93;// L100 +}; +typedef struct ____anonymous_tag_90_91 __div_t_94;// L97:L101 +struct ____anonymous_tag_95_96 { +long int __quot_97;// L107 +long int __rem_98;// L108 +}; +typedef struct ____anonymous_tag_95_96 __ldiv_t_99;// L105:L109 +struct ____anonymous_tag_100_101 { +long long int __quot_102;// L119 +long long int __rem_103;// L120 +}; +typedef struct ____anonymous_tag_100_101 __lldiv_t_104;// L117:L121 +typedef unsigned char ____u_char_164;// L30 +typedef unsigned short int ____u_short_165;// L31 +typedef unsigned int ____u_int_166;// L32 +typedef unsigned long int ____u_long_167;// L33 +typedef signed char ____int8_t_168;// L36 +typedef unsigned char ____uint8_t_169;// L37 +typedef signed short int ____int16_t_170;// L38 +typedef unsigned short int ____uint16_t_171;// L39 +typedef signed int ____int32_t_172;// L40 +typedef unsigned int ____uint32_t_173;// L41 +typedef signed long int ____int64_t_174;// L43 +typedef unsigned long int ____uint64_t_175;// L44 +typedef long int ____quad_t_176;// L52 +typedef unsigned long int ____u_quad_t_177;// L53 +typedef unsigned long int ____dev_t_178;// L109:L124 +typedef unsigned int ____uid_t_179;// L92:L125 +typedef unsigned int ____gid_t_180;// L92:L126 +typedef unsigned long int ____ino_t_181;// L94:L127 +typedef unsigned long int ____ino64_t_182;// L109:L128 +typedef unsigned int ____mode_t_183;// L92:L129 +typedef unsigned long int ____nlink_t_184;// L94:L130 +typedef long int ____off_t_185;// L93:L131 +typedef long int ____off64_t_186;// L108:L132 +typedef int ____pid_t_187;// L91:L133 +struct ____anonymous_tag_188_189 { +int ____val_190[2];// L72 +}; +typedef struct ____anonymous_tag_188_189 ____fsid_t_191;// L72:L134 +typedef long int ____clock_t_192;// L93:L135 +typedef unsigned long int ____rlim_t_193;// L94:L136 +typedef unsigned long int ____rlim64_t_194;// L109:L137 +typedef unsigned int ____id_t_195;// L92:L138 +typedef long int ____time_t_196;// L93:L139 +typedef unsigned int ____useconds_t_197;// L92:L140 +typedef long int ____suseconds_t_198;// L93:L141 +typedef int ____daddr_t_199;// L91:L143 +typedef int ____key_t_200;// L91:L144 +typedef int ____clockid_t_201;// L91:L147 +typedef void * (____timer_t_202);// L70:L150 +typedef long int ____blksize_t_203;// L93:L153 +typedef long int ____blkcnt_t_204;// L93:L158 +typedef long int ____blkcnt64_t_205;// L108:L159 +typedef unsigned long int ____fsblkcnt_t_206;// L94:L162 +typedef unsigned long int ____fsblkcnt64_t_207;// L109:L163 +typedef unsigned long int ____fsfilcnt_t_208;// L94:L166 +typedef unsigned long int ____fsfilcnt64_t_209;// L109:L167 +typedef long int ____fsword_t_210;// L93:L170 +typedef long int ____ssize_t_211;// L110:L172 +typedef long int ____syscall_slong_t_212;// L93:L175 +typedef unsigned long int ____syscall_ulong_t_213;// L94:L177 +typedef ____off64_t_186 ____loff_t_214;// L181 +typedef ____quad_t_176 * (____qaddr_t_216);// L182 +typedef char * (____caddr_t_217);// L183 +typedef long int ____intptr_t_218;// L110:L186 +typedef unsigned int ____socklen_t_219;// L92:L189 +typedef ____u_char_9 __u_char_220;// L33 +typedef ____u_char_164 __u_char_221;// L33 +typedef ____u_short_10 __u_short_222;// L34 +typedef ____u_short_165 __u_short_223;// L34 +typedef ____u_int_11 __u_int_224;// L35 +typedef ____u_int_166 __u_int_225;// L35 +typedef ____u_long_12 __u_long_226;// L36 +typedef ____u_long_167 __u_long_227;// L36 +typedef ____quad_t_21 __quad_t_228;// L37 +typedef ____quad_t_176 __quad_t_229;// L37 +typedef ____u_quad_t_22 __u_quad_t_230;// L38 +typedef ____u_quad_t_177 __u_quad_t_231;// L38 +typedef ____fsid_t_36 __fsid_t_232;// L39 +typedef ____fsid_t_191 __fsid_t_233;// L39 +typedef ____loff_t_59 __loff_t_235;// L44 +typedef ____loff_t_214 __loff_t_236;// L44 +typedef ____loff_t_59 __loff_t_238;// L44 +typedef ____loff_t_214 __loff_t_239;// L44 +typedef ____ino64_t_27 __ino_t_241;// L50 +typedef ____ino64_t_182 __ino_t_242;// L50 +typedef ____ino_t_26 __ino_t_244;// L48 +typedef ____ino_t_181 __ino_t_245;// L48 +typedef ____dev_t_23 __dev_t_247;// L60 +typedef ____dev_t_178 __dev_t_248;// L60 +typedef ____gid_t_25 __gid_t_250;// L65 +typedef ____gid_t_180 __gid_t_251;// L65 +typedef ____gid_t_25 __gid_t_253;// L65 +typedef ____gid_t_180 __gid_t_254;// L65 +typedef ____mode_t_28 __mode_t_256;// L70 +typedef ____mode_t_183 __mode_t_257;// L70 +typedef ____nlink_t_29 __nlink_t_259;// L75 +typedef ____nlink_t_184 __nlink_t_260;// L75 +typedef ____uid_t_24 __uid_t_262;// L80 +typedef ____uid_t_179 __uid_t_263;// L80 +typedef ____uid_t_24 __uid_t_265;// L80 +typedef ____uid_t_179 __uid_t_266;// L80 +typedef ____off64_t_31 __off_t_268;// L88 +typedef ____off64_t_186 __off_t_269;// L88 +typedef ____off_t_30 __off_t_271;// L86 +typedef ____off_t_185 __off_t_272;// L86 +typedef ____pid_t_32 __pid_t_274;// L98 +typedef ____pid_t_187 __pid_t_275;// L98 +typedef ____pid_t_32 __pid_t_277;// L98 +typedef ____pid_t_187 __pid_t_278;// L98 +typedef ____id_t_40 __id_t_280;// L104 +typedef ____id_t_195 __id_t_281;// L104 +typedef ____ssize_t_56 __ssize_t_283;// L109 +typedef ____ssize_t_211 __ssize_t_284;// L109 +typedef ____daddr_t_44 __daddr_t_286;// L115 +typedef ____daddr_t_199 __daddr_t_287;// L115 +typedef ____caddr_t_62 __caddr_t_289;// L116 +typedef ____caddr_t_217 __caddr_t_290;// L116 +typedef ____key_t_45 __key_t_291;// L122 +typedef ____key_t_200 __key_t_292;// L122 +typedef ____key_t_45 __key_t_294;// L122 +typedef ____key_t_200 __key_t_295;// L122 +typedef ____clock_t_37 __clock_t_297;// L59 +typedef ____clock_t_192 __clock_t_298;// L59 +typedef ____time_t_41 __time_t_300;// L75 +typedef ____time_t_196 __time_t_301;// L75 +typedef ____clockid_t_46 __clockid_t_303;// L91 +typedef ____clockid_t_201 __clockid_t_304;// L91 +typedef ____timer_t_47 __timer_t_306;// L103 +typedef ____timer_t_202 __timer_t_307;// L103 +typedef unsigned long int __ulong_309;// L150 +typedef unsigned long int __ulong_310;// L150 +typedef unsigned long int __ulong_311;// L150 +typedef unsigned short int __ushort_312;// L151 +typedef unsigned int __uint_313;// L152 +typedef int __int8_t_314;// L188:L194 +typedef int __int16_t_315;// L188:L195 +typedef int __int32_t_316;// L188:L196 +typedef int __int64_t_317;// L188:L197 +typedef unsigned int __u_int8_t_318;// L190:L200 +typedef unsigned int __u_int16_t_319;// L190:L201 +typedef unsigned int __u_int32_t_320;// L190:L202 +typedef unsigned int __u_int64_t_321;// L190:L203 +typedef int __register_t_322;// L205 +typedef int ____sig_atomic_t_328;// L22 +struct ____anonymous_tag_329_330 { +unsigned long int ____val_331[( 1024 / ( 8 * sizeof(unsigned long) ) )];// L29 +}; +typedef struct ____anonymous_tag_329_330 ____sigset_t_332;// L27:L30 +typedef ____sigset_t_332 __sigset_t_333;// L37 +struct __timespec_334 { +____time_t_41 __tv_sec_335;// L0 +____time_t_196 __tv_sec_336;// L0 +____syscall_slong_t_57 __tv_nsec_338;// L0 +____syscall_slong_t_212 __tv_nsec_339;// L0 +}; +struct __timeval_342 { +____time_t_41 __tv_sec_343;// L0 +____time_t_196 __tv_sec_344;// L0 +____suseconds_t_43 __tv_usec_346;// L0 +____suseconds_t_198 __tv_usec_347;// L0 +}; +typedef ____suseconds_t_43 __suseconds_t_350;// L48 +typedef ____suseconds_t_198 __suseconds_t_351;// L48 +typedef long int ____fd_mask_353;// L54 +typedef long int ____fd_mask_354;// L54 +struct ____anonymous_tag_355_356 { +____fd_mask_353 ____fds_bits_357[1024 / ( 8 * ( int ) sizeof(long) )];// L0 +____fd_mask_354 ____fds_bits_359[1024 / ( 8 * ( int ) sizeof(long) )];// L0 +}; +typedef struct ____anonymous_tag_355_356 __fd_set_362;// L64:L75 +typedef ____fd_mask_353 __fd_mask_363;// L82 +typedef ____fd_mask_354 __fd_mask_364;// L82 +typedef ____blksize_t_48 __blksize_t_412;// L228 +typedef ____blksize_t_203 __blksize_t_413;// L228 +typedef ____blkcnt_t_49 __blkcnt_t_415;// L235 +typedef ____blkcnt_t_204 __blkcnt_t_416;// L235 +typedef ____fsblkcnt_t_51 __fsblkcnt_t_418;// L239 +typedef ____fsblkcnt_t_206 __fsblkcnt_t_419;// L239 +typedef ____blkcnt64_t_50 __blkcnt_t_421;// L248 +typedef ____blkcnt64_t_205 __blkcnt_t_422;// L248 +typedef ____fsblkcnt64_t_52 __fsblkcnt_t_424;// L252 +typedef ____fsblkcnt64_t_207 __fsblkcnt_t_425;// L252 +typedef ____fsfilcnt_t_53 __fsfilcnt_t_427;// L243 +typedef ____fsfilcnt_t_208 __fsfilcnt_t_428;// L243 +typedef ____fsfilcnt64_t_54 __fsfilcnt_t_430;// L256 +typedef ____fsfilcnt64_t_209 __fsfilcnt_t_431;// L256 +typedef unsigned long int __pthread_t_433;// L60 +union __pthread_attr_t_434 { +char ____size_435[56];// L65 +long int ____align_436;// L66 +}; +typedef union __pthread_attr_t_434 __pthread_attr_t_437;// L69 +struct ____pthread_internal_list_439 { +struct __forward_tag_reference_438 * (____prev_440);// L0 +struct __forward_tag_reference_438 * (____next_441);// L0 +}; +typedef struct ____pthread_internal_list_439 ____pthread_list_t_442;// L75:L79 +typedef struct ____pthread_internal_list_439 ____pthread_list_t_443;// L75:L79 +struct ____pthread_mutex_s_444 { +int ____lock_445;// L94 +unsigned int ____count_446;// L95 +int ____owner_447;// L96 +unsigned int ____nusers_448;// L98 +int ____kind_449;// L102 +short ____spins_450;// L104 +short ____elision_451;// L105 +____pthread_list_t_442 ____list_452;// L0 +____pthread_list_t_443 ____list_453;// L0 +}; +union ____anonymous_tag_454_455 { +struct ____pthread_mutex_s_444 ____data_456;// L92 +char ____size_457[40];// L126 +long int ____align_458;// L127 +}; +typedef union ____anonymous_tag_454_455 __pthread_mutex_t_459;// L90:L128 +union ____anonymous_tag_460_461 { +char ____size_462[4];// L132 +int ____align_463;// L133 +}; +typedef union ____anonymous_tag_460_461 __pthread_mutexattr_t_464;// L130:L134 +typedef int (* (____compar_fn_t_572)) (const void *, const void *);// L741 +typedef unsigned char ____u_char_798;// L30 +typedef unsigned short int ____u_short_799;// L31 +typedef unsigned int ____u_int_800;// L32 +typedef unsigned long int ____u_long_801;// L33 +typedef signed char ____int8_t_802;// L36 +typedef unsigned char ____uint8_t_803;// L37 +typedef signed short int ____int16_t_804;// L38 +typedef unsigned short int ____uint16_t_805;// L39 +typedef signed int ____int32_t_806;// L40 +typedef unsigned int ____uint32_t_807;// L41 +typedef signed long int ____int64_t_808;// L43 +typedef unsigned long int ____uint64_t_809;// L44 +typedef long int ____quad_t_810;// L52 +typedef unsigned long int ____u_quad_t_811;// L53 +typedef unsigned long int ____dev_t_812;// L109:L124 +typedef unsigned int ____uid_t_813;// L92:L125 +typedef unsigned int ____gid_t_814;// L92:L126 +typedef unsigned long int ____ino_t_815;// L94:L127 +typedef unsigned long int ____ino64_t_816;// L109:L128 +typedef unsigned int ____mode_t_817;// L92:L129 +typedef unsigned long int ____nlink_t_818;// L94:L130 +typedef long int ____off_t_819;// L93:L131 +typedef long int ____off64_t_820;// L108:L132 +typedef int ____pid_t_821;// L91:L133 +struct ____anonymous_tag_822_823 { +int ____val_824[2];// L72 +}; +typedef struct ____anonymous_tag_822_823 ____fsid_t_825;// L72:L134 +typedef long int ____clock_t_826;// L93:L135 +typedef unsigned long int ____rlim_t_827;// L94:L136 +typedef unsigned long int ____rlim64_t_828;// L109:L137 +typedef unsigned int ____id_t_829;// L92:L138 +typedef long int ____time_t_830;// L93:L139 +typedef unsigned int ____useconds_t_831;// L92:L140 +typedef long int ____suseconds_t_832;// L93:L141 +typedef int ____daddr_t_833;// L91:L143 +typedef int ____key_t_834;// L91:L144 +typedef int ____clockid_t_835;// L91:L147 +typedef void * (____timer_t_836);// L70:L150 +typedef long int ____blksize_t_837;// L93:L153 +typedef long int ____blkcnt_t_838;// L93:L158 +typedef long int ____blkcnt64_t_839;// L108:L159 +typedef unsigned long int ____fsblkcnt_t_840;// L94:L162 +typedef unsigned long int ____fsblkcnt64_t_841;// L109:L163 +typedef unsigned long int ____fsfilcnt_t_842;// L94:L166 +typedef unsigned long int ____fsfilcnt64_t_843;// L109:L167 +typedef long int ____fsword_t_844;// L93:L170 +typedef long int ____ssize_t_845;// L110:L172 +typedef long int ____syscall_slong_t_846;// L93:L175 +typedef unsigned long int ____syscall_ulong_t_847;// L94:L177 +typedef ____off64_t_820 ____loff_t_848;// L181 +typedef ____quad_t_810 * (____qaddr_t_850);// L182 +typedef char * (____caddr_t_851);// L183 +typedef long int ____intptr_t_852;// L110:L186 +typedef unsigned int ____socklen_t_853;// L92:L189 +enum ____anonymous_tag_871_872 { +___ISupper_859 = ( ( 0 ) < 8 ? ( ( 1 << ( 0 ) ) << 8 ) : ( ( 1 << ( 0 ) ) >> 8 ) ), +___ISlower_860 = ( ( 1 ) < 8 ? ( ( 1 << ( 1 ) ) << 8 ) : ( ( 1 << ( 1 ) ) >> 8 ) ), +___ISalpha_861 = ( ( 2 ) < 8 ? ( ( 1 << ( 2 ) ) << 8 ) : ( ( 1 << ( 2 ) ) >> 8 ) ), +___ISdigit_862 = ( ( 3 ) < 8 ? ( ( 1 << ( 3 ) ) << 8 ) : ( ( 1 << ( 3 ) ) >> 8 ) ), +___ISxdigit_863 = ( ( 4 ) < 8 ? ( ( 1 << ( 4 ) ) << 8 ) : ( ( 1 << ( 4 ) ) >> 8 ) ), +___ISspace_864 = ( ( 5 ) < 8 ? ( ( 1 << ( 5 ) ) << 8 ) : ( ( 1 << ( 5 ) ) >> 8 ) ), +___ISprint_865 = ( ( 6 ) < 8 ? ( ( 1 << ( 6 ) ) << 8 ) : ( ( 1 << ( 6 ) ) >> 8 ) ), +___ISgraph_866 = ( ( 7 ) < 8 ? ( ( 1 << ( 7 ) ) << 8 ) : ( ( 1 << ( 7 ) ) >> 8 ) ), +___ISblank_867 = ( ( 8 ) < 8 ? ( ( 1 << ( 8 ) ) << 8 ) : ( ( 1 << ( 8 ) ) >> 8 ) ), +___IScntrl_868 = ( ( 9 ) < 8 ? ( ( 1 << ( 9 ) ) << 8 ) : ( ( 1 << ( 9 ) ) >> 8 ) ), +___ISpunct_869 = ( ( 10 ) < 8 ? ( ( 1 << ( 10 ) ) << 8 ) : ( ( 1 << ( 10 ) ) >> 8 ) ), +___ISalnum_870 = ( ( 11 ) < 8 ? ( ( 1 << ( 11 ) ) << 8 ) : ( ( 1 << ( 11 ) ) >> 8 ) ), +}; +struct ____locale_struct_900 { +struct __forward_tag_reference_899 * (____locales_901[13]);// L0 +const unsigned short int * (____ctype_b_902);// L33 +const int * (____ctype_tolower_903);// L34 +const int * (____ctype_toupper_904);// L35 +const char * (____names_905[13]);// L38 +}; +typedef struct ____locale_struct_900 * (____locale_t_906);// L27:L39 +typedef ____locale_t_906 __locale_t_907;// L42 +struct __option_938 { +const char * (__name_939);// L106 +int __has_arg_940;// L109 +int * (__flag_941);// L110 +int __val_942;// L111 +}; + +struct __forward_tag_reference_438 { // generated union of struct variations +union { +}; +}; + +struct __forward_tag_reference_899 { // generated union of struct variations +union { +}; +}; + +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +static __inline unsigned int (____bswap_32_66) (unsigned int ____bsx_65) { + +if (__static_condition_default_67) { + +{ +{ + + + +__static_type_error("invalid type found in return expression"); +} +} + + +} +} +static __inline ____uint64_t_20 (____bswap_64_69) (____uint64_t_20 ____bsx_68) { + +if (__static_condition_default_67) { + +{ +{ + + + +__static_type_error("invalid type found in return expression"); +} +} + + +} +} +union __wait_81 ;// L66 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern __size_t_1 (____ctype_get_mb_cur_max_105) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_106) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_107) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_108) (void );// L139 +extern double (__atof_110) (const char * (____nptr_109));// L144:L145 +extern double (__atof_111) (const char * (____nptr_109));// L144:L145 +extern int (__atoi_113) (const char * (____nptr_112));// L147:L148 +extern int (__atoi_114) (const char * (____nptr_112));// L147:L148 +extern long int (__atol_116) (const char * (____nptr_115));// L150:L151 +extern long int (__atol_117) (const char * (____nptr_115));// L150:L151 +extern long long int (__atoll_119) (const char * (____nptr_118));// L157:L158 +extern long long int (__atoll_120) (const char * (____nptr_118));// L157:L158 +extern double (__strtod_123) (const char * __restrict ____nptr_121, char * (* __restrict ____endptr_122));// L164:L166 +extern float (__strtof_126) (const char * __restrict ____nptr_124, char * (* __restrict ____endptr_125));// L172:L173 +extern long double (__strtold_129) (const char * __restrict ____nptr_127, char * (* __restrict ____endptr_128));// L175:L177 +extern long int (__strtol_133) (const char * __restrict ____nptr_130, char * (* __restrict ____endptr_131), int ____base_132);// L183:L185 +extern unsigned long int (__strtoul_137) (const char * __restrict ____nptr_134, char * (* __restrict ____endptr_135), int ____base_136);// L187:L189 +extern long long int (__strtoq_141) (const char * __restrict ____nptr_138, char * (* __restrict ____endptr_139), int ____base_140);// L195:L197 +extern unsigned long long int (__strtouq_145) (const char * __restrict ____nptr_142, char * (* __restrict ____endptr_143), int ____base_144);// L200:L202 +extern long long int (__strtoll_149) (const char * __restrict ____nptr_146, char * (* __restrict ____endptr_147), int ____base_148);// L209:L211 +extern long long int (__strtoll_150) (const char * __restrict ____nptr_146, char * (* __restrict ____endptr_147), int ____base_148);// L209:L211 +extern unsigned long long int (__strtoull_154) (const char * __restrict ____nptr_151, char * (* __restrict ____endptr_152), int ____base_153);// L214:L216 +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +__extension__/* no function due to type errors in the function prototype */ +extern char * ((__l64a_159) (long int ____n_158));// L305 +extern char * ((__l64a_160) (long int ____n_158));// L305 +extern long int (__a64l_162) (const char * (____s_161));// L308:L309 +extern long int (__a64l_163) (const char * (____s_161));// L308:L309 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +static __inline unsigned int (____bswap_32_324) (unsigned int ____bsx_323) { + +if (__static_condition_default_325) { + +{ +{ + + + +__static_type_error("invalid type found in return expression"); +} +} + + +} +} +static __inline ____uint64_t_175 (____bswap_64_327) (____uint64_t_175 ____bsx_326) { + +if (__static_condition_default_325) { + +{ +{ + + + +__static_type_error("invalid type found in return expression"); +} +} + + +} +} +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +struct __timespec_334 ;// L120 + +struct __timeval_342 ;// L30 + +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern int (__select_376) (int ____nfds_365, __fd_set_362 * __restrict ____readfds_366, __fd_set_362 * __restrict ____writefds_368, __fd_set_362 * __restrict ____exceptfds_370, struct __timeval_342 * __restrict ____timeout_373);// L106:L109 +extern int (__select_377) (int ____nfds_365, __fd_set_362 * __restrict ____readfds_366, __fd_set_362 * __restrict ____writefds_368, __fd_set_362 * __restrict ____exceptfds_370, struct __forward_tag_reference_372 * __restrict ____timeout_375);// L106:L109 +extern int (__pselect_392) (int ____nfds_380, __fd_set_362 * __restrict ____readfds_381, __fd_set_362 * __restrict ____writefds_383, __fd_set_362 * __restrict ____exceptfds_385, const struct __timespec_334 * __restrict ____timeout_388, const ____sigset_t_332 * __restrict ____sigmask_391);// L118:L122 +extern int (__pselect_393) (int ____nfds_380, __fd_set_362 * __restrict ____readfds_381, __fd_set_362 * __restrict ____writefds_383, __fd_set_362 * __restrict ____exceptfds_385, const struct __forward_tag_reference_387 * __restrict ____timeout_390, const ____sigset_t_332 * __restrict ____sigmask_391);// L118:L122 +extern long int (____fdelt_chk_397) (long int ____d_396);// L24 +extern long int (____fdelt_warn_399) (long int ____d_398);// L25:L26 +extern unsigned int (__gnu_dev_major_401) (unsigned long long int ____dev_400);// L27:L28 +extern unsigned int (__gnu_dev_major_402) (unsigned long long int ____dev_400);// L27:L28 +extern unsigned int (__gnu_dev_minor_404) (unsigned long long int ____dev_403);// L30:L31 +extern unsigned long long int (__gnu_dev_makedev_407) (unsigned int ____major_405, unsigned int ____minor_406);// L33:L35 +__extension__/* no function due to type errors in the function prototype */ +__extension__/* no function due to type errors in the function prototype */ +__extension__/* no function due to type errors in the function prototype */ +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +union __pthread_attr_t_434 ;// L63 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern int (__rand_465) (void );// L374 +extern void (__srand_467) (unsigned int ____seed_466);// L376 +extern int (__rand_r_469) (unsigned int * (____seed_468));// L381 +extern double (__drand48_470) (void );// L389 +extern double (__erand48_472) (unsigned short int ____xsubi_471[3]);// L390 +extern long int (__lrand48_473) (void );// L393 +extern long int (__nrand48_475) (unsigned short int ____xsubi_474[3]);// L394:L395 +extern long int (__mrand48_476) (void );// L398 +extern long int (__jrand48_478) (unsigned short int ____xsubi_477[3]);// L399:L400 +extern void (__srand48_480) (long int ____seedval_479);// L403 +extern unsigned short int * ((__seed48_482) (unsigned short int ____seed16v_481[3]));// L404:L405 +extern void (__lcong48_484) (unsigned short int ____param_483[7]);// L406 +extern void * ((__malloc_486) (__size_t_1 ____size_485));// L466 +extern void * ((__malloc_487) (__size_t_1 ____size_485));// L466 +extern void * ((__calloc_490) (__size_t_1 ____nmemb_488, __size_t_1 ____size_489));// L468:L469 +extern void * ((__calloc_491) (__size_t_1 ____nmemb_488, __size_t_1 ____size_489));// L468:L469 +extern void * ((__realloc_494) (void * (____ptr_492), __size_t_1 ____size_493));// L480:L481 +extern void (__free_496) (void * (____ptr_495));// L483 +extern void (__cfree_498) (void * (____ptr_497));// L488 +extern void * ((__alloca_500) (__size_t_1 ____size_499));// L32 +extern void * ((__valloc_502) (__size_t_1 ____size_501));// L498 +extern void * ((__valloc_503) (__size_t_1 ____size_501));// L498 +extern int (__posix_memalign_507) (void * (* (____memptr_504)), __size_t_1 ____alignment_505, __size_t_1 ____size_506);// L503:L504 +extern int (__posix_memalign_508) (void * (* (____memptr_504)), __size_t_1 ____alignment_505, __size_t_1 ____size_506);// L503:L504 +extern void * ((__aligned_alloc_511) (__size_t_1 ____alignment_509, __size_t_1 ____size_510));// L509:L510 +extern void * ((__aligned_alloc_512) (__size_t_1 ____alignment_509, __size_t_1 ____size_510));// L509:L510 +extern void * ((__aligned_alloc_513) (__size_t_1 ____alignment_509, __size_t_1 ____size_510));// L509:L510 +extern void * ((__aligned_alloc_514) (__size_t_1 ____alignment_509, __size_t_1 ____size_510));// L509:L510 +extern void (__abort_515) (void );// L515 +extern int (__atexit_517) (void (* (____func_516)) (void ));// L519 +extern int (__at_quick_exit_519) (void (* (____func_518)) (void ));// L527 +extern int (__on_exit_524) (void (* (____func_522)) (int ____status_520, void * (____arg_521)), void * (____arg_523));// L535:L536 +extern void (__exit_526) (int ____status_525);// L543 +extern void (__exit_527) (int ____status_525);// L543 +extern void (__quick_exit_529) (int ____status_528);// L549 +extern void (___Exit_531) (int ____status_530);// L557 +extern char * ((__getenv_533) (const char * (____name_532)));// L564 +extern char * ((__getenv_534) (const char * (____name_532)));// L564 +extern int (__putenv_536) (char * (____string_535));// L578 +extern int (__setenv_540) (const char * (____name_537), const char * (____value_538), int ____replace_539);// L584:L585 +extern int (__unsetenv_542) (const char * (____name_541));// L588 +extern int (__clearenv_543) (void );// L595 +extern char * ((__mktemp_545) (char * (____template_544)));// L606 +extern int (__mkstemp_548) (char * (____template_546));// L619 +extern int (__mkstemp_550) (char * (____template_546));// L619 +extern int (__mkstemp_549) (char * (____template_547));// L622:L623 +extern int (__mkstemp_551) (char * (____template_547));// L622:L623 +extern int (__mkstemps_556) (char * (____template_552), int ____suffixlen_553);// L641 +extern int (__mkstemps_557) (char * (____template_554), int ____suffixlen_555);// L644:L645 +extern int (__mkstemps_558) (char * (____template_552), int ____suffixlen_553);// L641 +extern int (__mkstemps_559) (char * (____template_554), int ____suffixlen_555);// L644:L645 +extern char * ((__mkdtemp_561) (char * (____template_560)));// L662 +extern char * ((__mkdtemp_562) (char * (____template_560)));// L662 +extern int (__system_564) (const char * (____command_563));// L716 +extern int (__system_565) (const char * (____command_563));// L716 +extern int (__system_566) (const char * (____command_563));// L716 +extern int (__system_567) (const char * (____command_563));// L716 +extern char * ((__realpath_570) (const char * __restrict ____name_568, char * __restrict ____resolved_569));// L733:L734 +extern char * ((__realpath_571) (const char * __restrict ____name_568, char * __restrict ____resolved_569));// L733:L734 +// typedef moved to top of scope +extern void * ((__bsearch_580) (const void * (____key_573), const void * (____base_574), __size_t_1 ____nmemb_575, __size_t_1 ____size_576, ____compar_fn_t_572 ____compar_577));// L754:L756 +extern void * ((__bsearch_582) (const void * (____key_573), const void * (____base_574), __size_t_1 ____nmemb_575, __size_t_1 ____size_576, ____compar_fn_t_572 ____compar_577));// L754:L756 +/* no function due to type errors in the function prototype */ +extern void (__qsort_601) (void * (____base_596), __size_t_1 ____nmemb_597, __size_t_1 ____size_598, ____compar_fn_t_572 ____compar_599);// L764:L765 +extern void (__qsort_603) (void * (____base_596), __size_t_1 ____nmemb_597, __size_t_1 ____size_598, ____compar_fn_t_572 ____compar_599);// L764:L765 +extern int (__abs_606) (int ____x_605);// L774 +extern int (__abs_607) (int ____x_605);// L774 +extern long int (__labs_609) (long int ____x_608);// L775 +extern long int (__labs_610) (long int ____x_608);// L775 +extern long long int (__llabs_612) (long long int ____x_611);// L779:L780 +extern long long int (__llabs_613) (long long int ____x_611);// L779:L780 +extern __div_t_94 (__div_616) (int ____numer_614, int ____denom_615);// L788:L789 +extern __div_t_94 (__div_617) (int ____numer_614, int ____denom_615);// L788:L789 +extern __ldiv_t_99 (__ldiv_620) (long int ____numer_618, long int ____denom_619);// L790:L791 +extern __ldiv_t_99 (__ldiv_622) (long int ____numer_618, long int ____denom_619);// L790:L791 +extern __lldiv_t_104 (__lldiv_626) (long long int ____numer_624, long long int ____denom_625);// L796:L798 +extern __lldiv_t_104 (__lldiv_628) (long long int ____numer_624, long long int ____denom_625);// L796:L798 +extern char * ((__ecvt_634) (double ____value_630, int ____ndigit_631, int * __restrict ____decpt_632, int * __restrict ____sign_633));// L811:L812 +extern char * ((__ecvt_635) (double ____value_630, int ____ndigit_631, int * __restrict ____decpt_632, int * __restrict ____sign_633));// L811:L812 +extern char * ((__fcvt_640) (double ____value_636, int ____ndigit_637, int * __restrict ____decpt_638, int * __restrict ____sign_639));// L817:L818 +extern char * ((__fcvt_641) (double ____value_636, int ____ndigit_637, int * __restrict ____decpt_638, int * __restrict ____sign_639));// L817:L818 +extern char * ((__gcvt_645) (double ____value_642, int ____ndigit_643, char * (____buf_644)));// L823:L824 +extern char * ((__gcvt_646) (double ____value_642, int ____ndigit_643, char * (____buf_644)));// L823:L824 +extern char * ((__qecvt_651) (long double ____value_647, int ____ndigit_648, int * __restrict ____decpt_649, int * __restrict ____sign_650));// L829:L831 +extern char * ((__qecvt_652) (long double ____value_647, int ____ndigit_648, int * __restrict ____decpt_649, int * __restrict ____sign_650));// L829:L831 +extern char * ((__qfcvt_657) (long double ____value_653, int ____ndigit_654, int * __restrict ____decpt_655, int * __restrict ____sign_656));// L832:L834 +extern char * ((__qfcvt_658) (long double ____value_653, int ____ndigit_654, int * __restrict ____decpt_655, int * __restrict ____sign_656));// L832:L834 +extern char * ((__qgcvt_662) (long double ____value_659, int ____ndigit_660, char * (____buf_661)));// L835:L836 +extern char * ((__qgcvt_663) (long double ____value_659, int ____ndigit_660, char * (____buf_661)));// L835:L836 +extern int (__ecvt_r_670) (double ____value_664, int ____ndigit_665, int * __restrict ____decpt_666, int * __restrict ____sign_667, char * __restrict ____buf_668, __size_t_1 ____len_669);// L841:L843 +extern int (__fcvt_r_677) (double ____value_671, int ____ndigit_672, int * __restrict ____decpt_673, int * __restrict ____sign_674, char * __restrict ____buf_675, __size_t_1 ____len_676);// L844:L846 +extern int (__qecvt_r_684) (long double ____value_678, int ____ndigit_679, int * __restrict ____decpt_680, int * __restrict ____sign_681, char * __restrict ____buf_682, __size_t_1 ____len_683);// L848:L851 +extern int (__qfcvt_r_691) (long double ____value_685, int ____ndigit_686, int * __restrict ____decpt_687, int * __restrict ____sign_688, char * __restrict ____buf_689, __size_t_1 ____len_690);// L852:L855 +extern int (__mblen_694) (const char * (____s_692), __size_t_1 ____n_693);// L862 +extern int (__mblen_695) (const char * (____s_692), __size_t_1 ____n_693);// L862 +extern int (__mbtowc_699) (__wchar_t_2 * __restrict ____pwc_696, const char * __restrict ____s_697, __size_t_1 ____n_698);// L865:L866 +extern int (__wctomb_702) (char * (____s_700), __wchar_t_2 ____wchar_701);// L869 +extern __size_t_1 (__mbstowcs_706) (__wchar_t_2 * __restrict ____pwcs_703, const char * __restrict ____s_704, __size_t_1 ____n_705);// L873:L874 +extern __size_t_1 (__wcstombs_710) (char * __restrict ____s_707, const __wchar_t_2 * __restrict ____pwcs_708, __size_t_1 ____n_709);// L876:L878 +extern int (__rpmatch_713) (const char * (____response_711));// L887 +extern int (__rpmatch_712) (const char * (____response_711));// L887 +extern int (__getsubopt_718) (char * (* __restrict ____optionp_714), char * const * __restrict ____tokens_715, char * (* __restrict ____valuep_716));// L898:L901 +extern int (__getsubopt_717) (char * (* __restrict ____optionp_714), char * const * __restrict ____tokens_715, char * (* __restrict ____valuep_716));// L898:L901 +extern int (__getloadavg_721) (double ____loadavg_719[], int ____nelem_720);// L950:L951 +/* no function due to type errors in the function prototype */ +extern char * ((____realpath_chk_726) (const char * __restrict ____name_723, char * __restrict ____resolved_724, __size_t_1 ____resolvedlen_725));// L23:L25 +extern char * ((____realpath_alias_729) (const char * __restrict ____name_727, char * __restrict ____resolved_728));// L26:L28 +extern char * ((____realpath_chk_warn_733) (const char * __restrict ____name_730, char * __restrict ____resolved_731, __size_t_1 ____resolvedlen_732));// L29:L34 +/* no function due to type errors in the function prototype */ +extern int (____ptsname_r_chk_741) (int ____fd_737, char * (____buf_738), __size_t_1 ____buflen_739, __size_t_1 ____nreal_740);// L52:L53 +extern int (____ptsname_r_alias_745) (int ____fd_742, char * (____buf_743), __size_t_1 ____buflen_744);// L54:L56 +extern int (____ptsname_r_chk_warn_750) (int ____fd_746, char * (____buf_747), __size_t_1 ____buflen_748, __size_t_1 ____nreal_749);// L57:L61 +/* no function due to type errors in the function prototype */ +extern int (____wctomb_chk_758) (char * (____s_755), __wchar_t_2 ____wchar_756, __size_t_1 ____buflen_757);// L77:L78 +extern int (____wctomb_alias_761) (char * (____s_759), __wchar_t_2 ____wchar_760);// L79:L80 +/* no function due to type errors in the function prototype */ +extern __size_t_1 (____mbstowcs_chk_768) (__wchar_t_2 * __restrict ____dst_764, const char * __restrict ____src_765, __size_t_1 ____len_766, __size_t_1 ____dstlen_767);// L98:L100 +extern __size_t_1 (____mbstowcs_alias_772) (__wchar_t_2 * __restrict ____dst_769, const char * __restrict ____src_770, __size_t_1 ____len_771);// L101:L104 +extern __size_t_1 (____mbstowcs_chk_warn_777) (__wchar_t_2 * __restrict ____dst_773, const char * __restrict ____src_774, __size_t_1 ____len_775, __size_t_1 ____dstlen_776);// L105:L110 +/* no function due to type errors in the function prototype */ +extern __size_t_1 (____wcstombs_chk_785) (char * __restrict ____dst_781, const __wchar_t_2 * __restrict ____src_782, __size_t_1 ____len_783, __size_t_1 ____dstlen_784);// L130:L132 +extern __size_t_1 (____wcstombs_alias_789) (char * __restrict ____dst_786, const __wchar_t_2 * __restrict ____src_787, __size_t_1 ____len_788);// L133:L136 +extern __size_t_1 (____wcstombs_chk_warn_794) (char * __restrict ____dst_790, const __wchar_t_2 * __restrict ____src_791, __size_t_1 ____len_792, __size_t_1 ____dstlen_793);// L137:L141 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +static __inline unsigned int (____bswap_32_855) (unsigned int ____bsx_854) { + +if (__static_condition_default_856) { + +{ +{ + + + +__static_type_error("invalid type found in return expression"); +} +} + + +} +} +static __inline ____uint64_t_809 (____bswap_64_858) (____uint64_t_809 ____bsx_857) { + +if (__static_condition_default_856) { + +{ +{ + + + +__static_type_error("invalid type found in return expression"); +} +} + + +} +} +enum ____anonymous_tag_871_872 ;// L46 +extern const unsigned short int * (* ((____ctype_b_loc_873) (void )));// L79:L80 +extern const unsigned short int * (* ((____ctype_b_loc_874) (void )));// L79:L80 +extern const ____int32_t_806 * (* ((____ctype_tolower_loc_875) (void )));// L81:L82 +extern const ____int32_t_806 * (* ((____ctype_toupper_loc_876) (void )));// L83:L84 +extern int (__isalnum_877) (int );// L102:L110 +extern int (__isalpha_878) (int );// L102:L111 +extern int (__iscntrl_879) (int );// L102:L112 +extern int (__isdigit_880) (int );// L102:L113 +extern int (__islower_881) (int );// L102:L114 +extern int (__isgraph_882) (int );// L102:L115 +extern int (__isprint_883) (int );// L102:L116 +extern int (__ispunct_884) (int );// L102:L117 +extern int (__isspace_885) (int );// L102:L118 +extern int (__isupper_886) (int );// L102:L119 +extern int (__isxdigit_887) (int );// L102:L120 +extern int (__tolower_889) (int ____c_888);// L124 +extern int (__toupper_891) (int ____c_890);// L127 +extern int (__isblank_892) (int );// L102:L136 +extern int (__isascii_894) (int ____c_893);// L150 +extern int (__toascii_896) (int ____c_895);// L154 +extern int (___toupper_897) (int );// L102:L158 +extern int (___tolower_898) (int );// L102:L159 +// typedef moved to top of scope +// typedef moved to top of scope +extern int (__isalnum_l_908) (int , ____locale_t_906 );// L265:L271 +extern int (__isalpha_l_909) (int , ____locale_t_906 );// L265:L272 +extern int (__iscntrl_l_910) (int , ____locale_t_906 );// L265:L273 +extern int (__isdigit_l_911) (int , ____locale_t_906 );// L265:L274 +extern int (__islower_l_912) (int , ____locale_t_906 );// L265:L275 +extern int (__isgraph_l_913) (int , ____locale_t_906 );// L265:L276 +extern int (__isprint_l_914) (int , ____locale_t_906 );// L265:L277 +extern int (__ispunct_l_915) (int , ____locale_t_906 );// L265:L278 +extern int (__isspace_l_916) (int , ____locale_t_906 );// L265:L279 +extern int (__isupper_l_917) (int , ____locale_t_906 );// L265:L280 +extern int (__isxdigit_l_918) (int , ____locale_t_906 );// L265:L281 +extern int (__isblank_l_919) (int , ____locale_t_906 );// L265:L283 +extern int (____tolower_l_922) (int ____c_920, ____locale_t_906 ____l_921);// L287 +extern int (__tolower_l_925) (int ____c_923, ____locale_t_906 ____l_924);// L288 +extern int (____toupper_l_928) (int ____c_926, ____locale_t_906 ____l_927);// L291 +extern int (__toupper_l_931) (int ____c_929, ____locale_t_906 ____l_930);// L292 +/* no function due to type errors in the function prototype */ +extern char * (__optarg_932);// L57 +extern char * (__optarg_933);// L57 +extern char * (__optarg_934);// L57 +extern int __optind_935;// L71 +extern int __opterr_936;// L76 +extern int __optopt_937;// L80 +struct __option_938 ;// L104 +extern int (__getopt_946) (int _____argc_943, char * const * (_____argv_944), const char * (____shortopts_945));// L150:L151 +extern int (__getopt_947) (int _____argc_943, char * const * (_____argv_944), const char * (____shortopts_945));// L150:L151 +extern int (__getopt_long_953) (int _____argc_948, char * const * (_____argv_949), const char * (____shortopts_950), const struct __option_938 * (____longopts_951), int * (____longind_952));// L173:L176 +extern int (__getopt_long_954) (int _____argc_948, char * const * (_____argv_949), const char * (____shortopts_950), const struct __option_938 * (____longopts_951), int * (____longind_952));// L173:L176 +extern int (__getopt_long_only_960) (int _____argc_955, char * const * (_____argv_956), const char * (____shortopts_957), const struct __option_938 * (____longopts_958), int * (____longind_959));// L177:L180 +extern int (__getopt_long_only_961) (int _____argc_955, char * const * (_____argv_956), const char * (____shortopts_957), const struct __option_938 * (____longopts_958), int * (____longind_959));// L177:L180 +int (__main_968) (int __argc_962, char * (* (__argv_963))) { + +{ +if (__static_condition_default_969) { + +{ +{ + + + +char * (__buf_964);// L6 + +int __bufsize_965= 8196;// L7 + +int __i_966;// L8 + +int __cmd_967= 3;// L9 + +__static_type_error("invalid type found in while statement"); +if ( __cmd_967 == 8 )// L22 +{ + +{ +{ + + + + +{ +goto all_done_0; +} +} +} +} +if (__static_condition_default_970) { + __buf_964 = malloc ( __bufsize_965 ) ; // L26 +} +if (__static_condition_default_971) { + __buf_964 = malloc ( __bufsize_965 ) ; // L26 +} +if (__static_condition_default_972) { +__static_type_error("type error") ; // L26 +} + +all_done_0: +{ +if ( __buf_964 )// L30 +{ + +{ +{ + + + +if (__static_condition_default_973) { +free ( __buf_964 ) ; // L31 +} +if (__static_condition_default_974) { +__static_type_error("type error") ; // L31 +} +} +} +} +} +return 0 ;// L34 +} +} + + +} + +if (__static_condition_default_975) { + +{ +{ + + + +char * (__buf_964);// L6 + +int __bufsize_965= 8196;// L7 + +int __i_966;// L8 + +int __cmd_967= 3;// L9 + +__static_type_error("invalid type found in while statement"); +if ( __cmd_967 == 8 )// L22 +{ + +{ +{ + + + + +{ +goto all_done_1; +} +} +} +} +if (__static_condition_default_976) { + __buf_964 = malloc ( __bufsize_965 ) ; // L26 +} +if (__static_condition_default_977) { + __buf_964 = malloc ( __bufsize_965 ) ; // L26 +} +if (__static_condition_default_978) { +__static_type_error("type error") ; // L26 +} + +all_done_1: +{ +return 0 ;// L34 +} +} +} + + +} + +}} + diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.clangres index 3c0ac53a..876241c6 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.clangres @@ -1,4 +1,22 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c:76:7: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] -if ( __buf_27 )// L30 - ^~~~~~~~ -1 warning generated. +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c:1686:5: warning: Potential leak of memory pointed to by '__buf_964' [unix.Malloc] +if (__static_condition_default_972) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c:1692:7: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] +if ( __buf_964 )// L30 + ^~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c:1703:5: warning: Potential leak of memory pointed to by '__buf_964' [unix.Malloc] +if (__static_condition_default_974) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c:1749:2: warning: Value stored to '__buf_964' is never read [deadcode.DeadStores] + __buf_964 = malloc ( __bufsize_965 ) ; // L26 + ^ ~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c:1752:2: warning: Value stored to '__buf_964' is never read [deadcode.DeadStores] + __buf_964 = malloc ( __bufsize_965 ) ; // L26 + ^ ~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c:1754:5: warning: Potential leak of memory pointed to by '__buf_964' [unix.Malloc] +if (__static_condition_default_978) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c:1754:5: warning: Potential leak of memory pointed to by '__buf_964' [unix.Malloc] +if (__static_condition_default_978) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +7 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.inferres new file mode 100644 index 00000000..203289d2 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.inferres @@ -0,0 +1,23 @@ + +BUSYBOX/eef2317b9f5.desugared.c:1749: error: Memory Leak + Memory dynamically allocated by `malloc` on line 1749 is not freed after the last access at line 1749, column 2. + 1747. } + 1748. if (__static_condition_default_976) { + 1749. __buf_964 = malloc ( __bufsize_965 ) ; // L26 + ^ + 1750. } + 1751. if (__static_condition_default_977) { + +BUSYBOX/eef2317b9f5.desugared.c:1752: error: Memory Leak + Memory dynamically allocated by `malloc` on line 1752 is not freed after the last access at line 1752, column 2. + 1750. } + 1751. if (__static_condition_default_977) { + 1752. __buf_964 = malloc ( __bufsize_965 ) ; // L26 + ^ + 1753. } + 1754. if (__static_condition_default_978) { + + +Found 2 issues + Issue Type(ISSUED_TYPE_ID): # + Memory Leak(MEMORY_LEAK_C): 2 diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.inferres new file mode 100644 index 00000000..82e965bd --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.inferres @@ -0,0 +1,14 @@ + +BUSYBOX/eef2317b9f5.c:26: error: Memory Leak + Memory dynamically allocated by `malloc` on line 26 is not freed after the last access at line 26, column 3. + 24. } + 25. + 26. buf = malloc(bufsize); + ^ + 27. + 28. all_done: + + +Found 1 issue + Issue Type(ISSUED_TYPE_ID): # + Memory Leak(MEMORY_LEAK_C): 1 diff --git a/fonda/cpp_testsuite/varBugs/LINUX-0988c4c7fb5.report b/fonda/cpp_testsuite/varBugs/LINUX-0988c4c7fb5.report index 5a71fd33..5d647589 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-0988c4c7fb5.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-0988c4c7fb5.report @@ -7,4 +7,8 @@ Macros: [-UCONFIG_VLAN_8021Q -DCONFIG_RPS=1 ] [-DCONFIG_VLAN_8021Q=1 -DCONFIG_RPS=1 ] Desugared Clang Results: +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-0dc77b6dabe.report b/fonda/cpp_testsuite/varBugs/LINUX-0dc77b6dabe.report index 146ff099..290b9b52 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-0dc77b6dabe.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-0dc77b6dabe.report @@ -21,4 +21,19 @@ Macros: [-UCONFIG_ANDROID -DCONFIG_SYSFS=1 -DCONFIG_EXTCON=1 -Ddefined=1 ] [-DCONFIG_ANDROID=1 -DCONFIG_SYSFS=1 -DCONFIG_EXTCON=1 -Ddefined=1 ] Desugared Clang Results: +Desugared Infer Results: + +LINUX/0dc77b6dabe.desugared.c:303: error: Memory Leak + Memory dynamically allocated by `malloc`, indirectly via call to `__extcon_class_init_34()` on line 294 is not freed after the last access at line 303, column 1. + 301. + 302. } + 303. } + ^ + 304. + + +Found 1 issue + Issue Type(ISSUED_TYPE_ID): # + Memory Leak(MEMORY_LEAK_C): 1 +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-0f8f8094d28.report b/fonda/cpp_testsuite/varBugs/LINUX-0f8f8094d28.report index 7d5e3b1b..b57ce770 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-0f8f8094d28.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-0f8f8094d28.report @@ -31,4 +31,8 @@ Macros: [-DCONFIG_FORCE_MAX_ZONEORDER=1 -Ddefined=1 -DCONFIG_SLAB=1 -UCONFIG_SLOB -DCONFIG_LOCKDEP=1 ] [-UCONFIG_FORCE_MAX_ZONEORDER -Udefined -UCONFIG_SLAB -DCONFIG_SLOB=1 -DCONFIG_LOCKDEP=1 ] Desugared Clang Results: +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-1c17e4d4437.report b/fonda/cpp_testsuite/varBugs/LINUX-1c17e4d4437.report index cd89a655..0b2ef632 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-1c17e4d4437.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-1c17e4d4437.report @@ -7,4 +7,8 @@ Macros: [-UCONFIG_RCU_CPU_STALL_INFO -DCONFIG_RCU_FAST_NO_HZ=1 ] [-DCONFIG_RCU_CPU_STALL_INFO=1 -DCONFIG_RCU_FAST_NO_HZ=1 ] Desugared Clang Results: +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-1f758a4341a.report b/fonda/cpp_testsuite/varBugs/LINUX-1f758a4341a.report index 98c07027..b5cf2cfa 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-1f758a4341a.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-1f758a4341a.report @@ -7,4 +7,8 @@ Macros: [-UCONFIG_ZONE_DMA -DCONFIG_EP93XX_ETH=1 ] [-DCONFIG_ZONE_DMA=1 -DCONFIG_EP93XX_ETH=1 ] Desugared Clang Results: +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-208d89843b7.report b/fonda/cpp_testsuite/varBugs/LINUX-208d89843b7.report index 4407d9b4..d060ddf7 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-208d89843b7.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-208d89843b7.report @@ -3,4 +3,8 @@ Macros: CONFIG_HIGHMEM [-UCONFIG_HIGHMEM ] Desugared Clang Results: +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-218ad12f42e.report b/fonda/cpp_testsuite/varBugs/LINUX-218ad12f42e.report index b8abfa5e..c77ef388 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-218ad12f42e.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-218ad12f42e.report @@ -3,4 +3,28 @@ Macros: CONFIG_NUMA [-UCONFIG_NUMA ] Desugared Clang Results: +Desugared Infer Results: + +LINUX/218ad12f42e.desugared.c:63: error: Memory Leak + Memory dynamically allocated by `malloc` on line 42 is not freed after the last access at line 63, column 1. + 61. + 62. + 63. } + ^ + 64. void (__inet_ehash_locks_free_9) () { + 65. + +LINUX/218ad12f42e.desugared.c:123: error: Memory Leak + Memory dynamically allocated by `malloc`, indirectly via call to `__inet_ehash_locks_alloc_6()` on line 116 is not freed after the last access at line 123, column 1. + 121. + 122. + 123. } + ^ + 124. + + +Found 2 issues + Issue Type(ISSUED_TYPE_ID): # + Memory Leak(MEMORY_LEAK_C): 2 +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-221ac329e93.report b/fonda/cpp_testsuite/varBugs/LINUX-221ac329e93.report index d1670861..5946d01b 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-221ac329e93.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-221ac329e93.report @@ -3,4 +3,47 @@ Macros: CONFIG_KPROBES [-UCONFIG_KPROBES ] Desugared Clang Results: +Desugared Infer Results: + +LINUX/221ac329e93.desugared.c:4742: error: Memory Leak + Memory dynamically allocated by `malloc` on line 4681 is not freed after the last access at line 4742, column 1. + 4740. + 4741. } + 4742. } + ^ + 4743. int (__main_3993) (int __argc_3990, char * (* (__argv_3991))) { + 4744. + +LINUX/221ac329e93.desugared.c:4742: error: Memory Leak + Memory dynamically allocated by `malloc` on line 4691 is not freed after the last access at line 4742, column 1. + 4740. + 4741. } + 4742. } + ^ + 4743. int (__main_3993) (int __argc_3990, char * (* (__argv_3991))) { + 4744. + +LINUX/221ac329e93.desugared.c:4742: error: Memory Leak + Memory dynamically allocated by `malloc` on line 4701 is not freed after the last access at line 4742, column 1. + 4740. + 4741. } + 4742. } + ^ + 4743. int (__main_3993) (int __argc_3990, char * (* (__argv_3991))) { + 4744. + +LINUX/221ac329e93.desugared.c:4742: error: Memory Leak + Memory dynamically allocated by `malloc` on line 4711 is not freed after the last access at line 4742, column 1. + 4740. + 4741. } + 4742. } + ^ + 4743. int (__main_3993) (int __argc_3990, char * (* (__argv_3991))) { + 4744. + + +Found 4 issues + Issue Type(ISSUED_TYPE_ID): # + Memory Leak(MEMORY_LEAK_C): 4 +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-242f1a34377.report b/fonda/cpp_testsuite/varBugs/LINUX-242f1a34377.report index 6dae25d3..63dccd50 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-242f1a34377.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-242f1a34377.report @@ -7,4 +7,8 @@ Macros: [-UCONFIG_CRYPTO_BLKCIPHER -DCONFIG_CRYPTO_TEST=1 ] [-DCONFIG_CRYPTO_BLKCIPHER=1 -DCONFIG_CRYPTO_TEST=1 ] Desugared Clang Results: +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-2f02c15a5d9.report b/fonda/cpp_testsuite/varBugs/LINUX-2f02c15a5d9.report index f6acf3ac..d96ce19a 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-2f02c15a5d9.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-2f02c15a5d9.report @@ -7,4 +7,8 @@ Macros: [-UCONFIG_SSB_DRIVER_EXTIF -DCONFIG_BCM47XX=1 ] [-DCONFIG_SSB_DRIVER_EXTIF=1 -DCONFIG_BCM47XX=1 ] Desugared Clang Results: +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-30e053248da.report b/fonda/cpp_testsuite/varBugs/LINUX-30e053248da.report index 2835c36f..54b4c8db 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-30e053248da.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-30e053248da.report @@ -2,10 +2,12 @@ LINUX 30e053248da.c Macros: CONFIG_SECURITY [-UCONFIG_SECURITY ] -43 :: Line:31 +clang :: 49 :: Line:31 Assigned value is garbage or undefined [core.uninitialized.Assign] -44 :: Line:31 +clang :: 50 :: Line:31 Value stored to 'x' during its initialization is never read [deadcode.DeadStores] +infer :: 51 :: Line:41 + Uninitialized Value Desugared Clang Results: /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.desugared.c:111:7: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] if ( __error_8 )// L26 @@ -17,7 +19,13 @@ int __x_9= * __length_7 ;// L31 int __x_9= * __length_7 ;// L31 ^~~~~ ~~~~~~~~~~~~~ 3 warnings generated. +Desugared Infer Results: + + No issues found Matches: - 44 has a match! + 50 has a match! Unmatched ids: - 43 + 49 +Matches: +Unmatched ids: + 51 diff --git a/fonda/cpp_testsuite/varBugs/LINUX-36855dcfc98.report b/fonda/cpp_testsuite/varBugs/LINUX-36855dcfc98.report index ba5de319..516a4b81 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-36855dcfc98.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-36855dcfc98.report @@ -2,14 +2,18 @@ LINUX 36855dcfc98.c Macros: CONFIG_BF60x [-UCONFIG_BF60x ] -11 :: Line:6 +clang :: 11 :: Line:6 Value stored to 'wakeup' is never read [deadcode.DeadStores] Desugared Clang Results: /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/36855dcfc98.desugared.c:32:2: warning: Value stored to '__wakeup_0' is never read [deadcode.DeadStores] __wakeup_0 = 0 ; // L6 ^ ~ 1 warning generated. +Desugared Infer Results: + + No issues found Matches: 11 has a match! Unmatched ids: None! +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-472a474c663.report b/fonda/cpp_testsuite/varBugs/LINUX-472a474c663.report index e5b1203d..396818c2 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-472a474c663.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-472a474c663.report @@ -7,4 +7,8 @@ Desugared Clang Results: * __ptr_3 = 'a' ; // L14 ~~~~~~~ ^ 1 warning generated. +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-51fd36f3fad.report b/fonda/cpp_testsuite/varBugs/LINUX-51fd36f3fad.report index 8c2f9680..0169c37f 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-51fd36f3fad.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-51fd36f3fad.report @@ -3,4 +3,18 @@ Macros: CONFIG_64BIT [-UCONFIG_64BIT ] Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.c:216:1: warning: Undefined or garbage value returned to caller [core.uninitialized.UndefReturn] +return __tmp_38 ;// L45 +^~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.c:256:1: warning: Undefined or garbage value returned to caller [core.uninitialized.UndefReturn] +return __expires_47 ;// L60 +^~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.c:300:1: warning: Undefined or garbage value returned to caller [core.uninitialized.UndefReturn] +return __expires_47 ;// L60 +^~~~~~~~~~~~~~~~~~~~ +3 warnings generated. +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-60e233a5660.report b/fonda/cpp_testsuite/varBugs/LINUX-60e233a5660.report index 31169d1b..2e19ebcc 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-60e233a5660.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-60e233a5660.report @@ -3,4 +3,8 @@ Macros: defined [-Udefined ] Desugared Clang Results: +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-6252547b8a7.report b/fonda/cpp_testsuite/varBugs/LINUX-6252547b8a7.report index 2bcceaaf..d429f01e 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-6252547b8a7.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-6252547b8a7.report @@ -5,27 +5,31 @@ Macros: CONFIG_OF_IRQ [-UCONFIG_TWL4030_CORE -UCONFIG_IRQ_DOMAIN -UCONFIG_OF_IRQ ] [-DCONFIG_TWL4030_CORE=1 -UCONFIG_IRQ_DOMAIN -UCONFIG_OF_IRQ ] -31 :: Line:12 +clang :: 31 :: Line:12 Value stored to 'irq' during its initialization is never read [deadcode.DeadStores] -32 :: Line:12 +clang :: 32 :: Line:12 Dereference of null pointer (loaded from variable 'ops') [core.NullDereference] +infer :: 33 :: Line:25 + Null Dereference [-UCONFIG_TWL4030_CORE -DCONFIG_IRQ_DOMAIN=1 -UCONFIG_OF_IRQ ] -33 :: Line:12 +clang :: 34 :: Line:12 Value stored to 'irq' during its initialization is never read [deadcode.DeadStores] [-DCONFIG_TWL4030_CORE=1 -DCONFIG_IRQ_DOMAIN=1 -UCONFIG_OF_IRQ ] -34 :: Line:12 +clang :: 35 :: Line:12 Value stored to 'irq' during its initialization is never read [deadcode.DeadStores] -35 :: Line:12 +clang :: 36 :: Line:12 Dereference of null pointer (loaded from variable 'ops') [core.NullDereference] +infer :: 37 :: Line:25 + Null Dereference [-UCONFIG_TWL4030_CORE -UCONFIG_IRQ_DOMAIN -DCONFIG_OF_IRQ=1 ] [-DCONFIG_TWL4030_CORE=1 -UCONFIG_IRQ_DOMAIN -DCONFIG_OF_IRQ=1 ] -36 :: Line:12 +clang :: 38 :: Line:12 Value stored to 'irq' during its initialization is never read [deadcode.DeadStores] [-UCONFIG_TWL4030_CORE -DCONFIG_IRQ_DOMAIN=1 -DCONFIG_OF_IRQ=1 ] -37 :: Line:12 +clang :: 39 :: Line:12 Value stored to 'irq' during its initialization is never read [deadcode.DeadStores] [-DCONFIG_TWL4030_CORE=1 -DCONFIG_IRQ_DOMAIN=1 -DCONFIG_OF_IRQ=1 ] -38 :: Line:12 +clang :: 40 :: Line:12 Value stored to 'irq' during its initialization is never read [deadcode.DeadStores] [-UCONFIG_TWL4030_CORE -UCONFIG_IRQ_DOMAIN -UCONFIG_OF_IRQ ] Desugared Clang Results: @@ -36,14 +40,21 @@ int __irq_2= * __ops_1 ;// L12 int __irq_2= * __ops_1 ;// L12 ^~~~~~~~~~ 2 warnings generated. +Desugared Infer Results: + + No issues found Matches: 31 has a match! 32 has a match! - 33 has a match! 34 has a match! 35 has a match! 36 has a match! - 37 has a match! 38 has a match! + 39 has a match! + 40 has a match! Unmatched ids: None! +Matches: +Unmatched ids: + 33 + 37 diff --git a/fonda/cpp_testsuite/varBugs/LINUX-63878acfafb.report b/fonda/cpp_testsuite/varBugs/LINUX-63878acfafb.report index 1d87f93f..60e976f3 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-63878acfafb.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-63878acfafb.report @@ -17,4 +17,8 @@ Desugared Clang Results: return __v_16 ;// L40 ^~~~~~~~~~~~~~ 1 warning generated. +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-6515e48932c.report b/fonda/cpp_testsuite/varBugs/LINUX-6515e48932c.report index 89eab2fe..c565084e 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-6515e48932c.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-6515e48932c.report @@ -7,4 +7,8 @@ Macros: [-Udefined -DCONFIG_MACH_OMAP_H4=1 ] [-Ddefined=1 -DCONFIG_MACH_OMAP_H4=1 ] Desugared Clang Results: +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-657e9649e74.report b/fonda/cpp_testsuite/varBugs/LINUX-657e9649e74.report index f73d9695..a5b1bdf9 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-657e9649e74.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-657e9649e74.report @@ -7,4 +7,8 @@ Macros: [-UCONFIG_PREEMPT -DCONFIG_TCP_MD5SIG=1 ] [-DCONFIG_PREEMPT=1 -DCONFIG_TCP_MD5SIG=1 ] Desugared Clang Results: +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-66517915e09.report b/fonda/cpp_testsuite/varBugs/LINUX-66517915e09.report index b2562383..1f1310c6 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-66517915e09.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-66517915e09.report @@ -11,55 +11,55 @@ Macros: [-DCONFIG_SND_FSI_AK4642=1 -DCONFIG_SND_FSI_DA7210=1 -UCONFIG_I2C -UCONFIG_SND_SOC_DA7210 -UCONFIG_SND_SOC_AK4642 ] [-UCONFIG_SND_FSI_AK4642 -UCONFIG_SND_FSI_DA7210 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -UCONFIG_SND_SOC_AK4642 ] [-DCONFIG_SND_FSI_AK4642=1 -UCONFIG_SND_FSI_DA7210 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -UCONFIG_SND_SOC_AK4642 ] -13 :: Line:24 +clang :: 13 :: Line:24 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-UCONFIG_SND_FSI_AK4642 -DCONFIG_SND_FSI_DA7210=1 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -UCONFIG_SND_SOC_AK4642 ] -14 :: Line:16 +clang :: 14 :: Line:16 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-DCONFIG_SND_FSI_AK4642=1 -DCONFIG_SND_FSI_DA7210=1 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -UCONFIG_SND_SOC_AK4642 ] -15 :: Line:16 +clang :: 15 :: Line:16 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] -16 :: Line:24 +clang :: 16 :: Line:24 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-UCONFIG_SND_FSI_AK4642 -UCONFIG_SND_FSI_DA7210 -UCONFIG_I2C -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] [-DCONFIG_SND_FSI_AK4642=1 -UCONFIG_SND_FSI_DA7210 -UCONFIG_I2C -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] [-UCONFIG_SND_FSI_AK4642 -DCONFIG_SND_FSI_DA7210=1 -UCONFIG_I2C -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] [-DCONFIG_SND_FSI_AK4642=1 -DCONFIG_SND_FSI_DA7210=1 -UCONFIG_I2C -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] [-UCONFIG_SND_FSI_AK4642 -UCONFIG_SND_FSI_DA7210 -DCONFIG_I2C=1 -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] -17 :: Line:16 +clang :: 17 :: Line:16 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-DCONFIG_SND_FSI_AK4642=1 -UCONFIG_SND_FSI_DA7210 -DCONFIG_I2C=1 -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] -18 :: Line:16 +clang :: 18 :: Line:16 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] -19 :: Line:24 +clang :: 19 :: Line:24 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-UCONFIG_SND_FSI_AK4642 -DCONFIG_SND_FSI_DA7210=1 -DCONFIG_I2C=1 -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] -20 :: Line:16 +clang :: 20 :: Line:16 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-DCONFIG_SND_FSI_AK4642=1 -DCONFIG_SND_FSI_DA7210=1 -DCONFIG_I2C=1 -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] -21 :: Line:16 +clang :: 21 :: Line:16 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] -22 :: Line:24 +clang :: 22 :: Line:24 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-UCONFIG_SND_FSI_AK4642 -UCONFIG_SND_FSI_DA7210 -UCONFIG_I2C -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] [-DCONFIG_SND_FSI_AK4642=1 -UCONFIG_SND_FSI_DA7210 -UCONFIG_I2C -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] [-UCONFIG_SND_FSI_AK4642 -DCONFIG_SND_FSI_DA7210=1 -UCONFIG_I2C -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] [-DCONFIG_SND_FSI_AK4642=1 -DCONFIG_SND_FSI_DA7210=1 -UCONFIG_I2C -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] [-UCONFIG_SND_FSI_AK4642 -UCONFIG_SND_FSI_DA7210 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] -23 :: Line:24 +clang :: 23 :: Line:24 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-DCONFIG_SND_FSI_AK4642=1 -UCONFIG_SND_FSI_DA7210 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] -24 :: Line:24 +clang :: 24 :: Line:24 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-UCONFIG_SND_FSI_AK4642 -DCONFIG_SND_FSI_DA7210=1 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] -25 :: Line:16 +clang :: 25 :: Line:16 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] -26 :: Line:24 +clang :: 26 :: Line:24 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-DCONFIG_SND_FSI_AK4642=1 -DCONFIG_SND_FSI_DA7210=1 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] -27 :: Line:16 +clang :: 27 :: Line:16 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] -28 :: Line:24 +clang :: 28 :: Line:24 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-UCONFIG_SND_FSI_AK4642 -UCONFIG_SND_FSI_DA7210 -UCONFIG_I2C -DCONFIG_SND_SOC_DA7210=1 -DCONFIG_SND_SOC_AK4642=1 ] Desugared Clang Results: @@ -70,6 +70,9 @@ int __codec_hw_write_1= __i2c_master_send_0 ;// L16 int __codec_hw_write_5= __i2c_master_send_0 ;// L24 ^~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~ 2 warnings generated. +Desugared Infer Results: + + No issues found Matches: 13 has a match! 14 has a match! @@ -89,3 +92,4 @@ Matches: 28 has a match! Unmatched ids: None! +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-68bb91baa0.report b/fonda/cpp_testsuite/varBugs/LINUX-68bb91baa0.report index 11800200..b934fb62 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-68bb91baa0.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-68bb91baa0.report @@ -13,4 +13,8 @@ Macros: [-DCONFIG_I2C_DESIGNWARE_PLATFORM=1 -DCONFIG_I2C_DESIGNWARE_PCI=1 -Ddefined=1 ] [-UCONFIG_I2C_DESIGNWARE_PLATFORM -UCONFIG_I2C_DESIGNWARE_PCI -Udefined ] Desugared Clang Results: +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-6e2b75740be.report b/fonda/cpp_testsuite/varBugs/LINUX-6e2b75740be.report index e46c017a..f9ff4c73 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-6e2b75740be.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-6e2b75740be.report @@ -22,4 +22,8 @@ free ( __hdr_8 ) ; // L67 return __err_10 ;// L69 ^~~~~~~~ 6 warnings generated. +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-76baeebf7df.report b/fonda/cpp_testsuite/varBugs/LINUX-76baeebf7df.report index 4a27e912..12b75c9c 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-76baeebf7df.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-76baeebf7df.report @@ -30,4 +30,16 @@ Macros: [-UCONFIG_X86_32 -DCONFIG_NUMA=1 -DCONFIG_DEBUG_PER_CPU_MAPS=1 -UCONFIG_PCI -DCONFIG_X86_64=1 ] [-DCONFIG_X86_32=1 -DCONFIG_NUMA=1 -DCONFIG_DEBUG_PER_CPU_MAPS=1 -UCONFIG_PCI -DCONFIG_X86_64=1 ] [-UCONFIG_X86_32 -UCONFIG_NUMA -UCONFIG_DEBUG_PER_CPU_MAPS -DCONFIG_PCI=1 -DCONFIG_X86_64=1 ] -File Failed +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/76baeebf7df.desugared.c:1629:31: warning: Dereference of undefined pointer value (loaded from variable '__mask_1132') [core.NullDereference] + __printf_421 ("mask: %ld\n",* __mask_1132 ) ; // L137 + ^~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/76baeebf7df.desugared.c:1632:31: warning: Dereference of undefined pointer value (loaded from variable '__mask_1134') [core.NullDereference] + __printf_421 ("mask: %ld\n",* __mask_1134 ) ; // L137 + ^~~~~~~~~~~~~~ +2 warnings generated. +Desugared Infer Results: + + No issues found +Original file has no warnings +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-7acf6cd80b2.report b/fonda/cpp_testsuite/varBugs/LINUX-7acf6cd80b2.report index a9594168..b1a31a61 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-7acf6cd80b2.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-7acf6cd80b2.report @@ -4,20 +4,24 @@ Macros: CONFIG_UNIX98_PTYS [-UCONFIG_DEVPTS_MULTIPLE_INSTANCES -UCONFIG_UNIX98_PTYS ] [-DCONFIG_DEVPTS_MULTIPLE_INSTANCES=1 -UCONFIG_UNIX98_PTYS ] -48 :: Line:8 +clang :: 54 :: Line:8 Value stored to 'x' during its initialization is never read [deadcode.DeadStores] [-UCONFIG_DEVPTS_MULTIPLE_INSTANCES -DCONFIG_UNIX98_PTYS=1 ] -49 :: Line:39 +clang :: 55 :: Line:39 Value stored to 'driver_data' is never read [deadcode.DeadStores] -50 :: Line:44 +clang :: 56 :: Line:44 1st function call argument is an uninitialized value [core.CallAndMessage] +infer :: 57 :: Line:44 + Uninitialized Value [-DCONFIG_DEVPTS_MULTIPLE_INSTANCES=1 -DCONFIG_UNIX98_PTYS=1 ] -51 :: Line:8 +clang :: 58 :: Line:8 Value stored to 'x' during its initialization is never read [deadcode.DeadStores] -52 :: Line:39 +clang :: 59 :: Line:39 Value stored to 'driver_data' is never read [deadcode.DeadStores] -53 :: Line:44 +clang :: 60 :: Line:44 1st function call argument is an uninitialized value [core.CallAndMessage] +infer :: 61 :: Line:44 + Uninitialized Value Desugared Clang Results: /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.desugared.c:77:6: warning: Value stored to '__x_3' during its initialization is never read [deadcode.DeadStores] int __x_3= * __inode_2 ;// L8 @@ -29,12 +33,19 @@ int __x_3= * __inode_2 ;// L8 __tty_release_14 ( __driver_data_15 ) ; // L44 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 3 warnings generated. +Desugared Infer Results: + + No issues found Matches: - 48 has a match! - 49 has a match! - 50 has a match! - 51 has a match! - 52 has a match! - 53 has a match! + 54 has a match! + 55 has a match! + 56 has a match! + 58 has a match! + 59 has a match! + 60 has a match! Unmatched ids: None! +Matches: +Unmatched ids: + 57 + 61 diff --git a/fonda/cpp_testsuite/varBugs/LINUX-7c6048b7c83.report b/fonda/cpp_testsuite/varBugs/LINUX-7c6048b7c83.report index d8edf144..d2027541 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-7c6048b7c83.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-7c6048b7c83.report @@ -13,4 +13,8 @@ Macros: [-Ddefined=1 -DCONFIG_BACKLIGHT_CLASS_DEVICE=1 -DCONFIG_ACPI_VIDEO=1 ] [-Udefined -UCONFIG_BACKLIGHT_CLASS_DEVICE -UCONFIG_ACPI_VIDEO ] Desugared Clang Results: +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-809e660f438.report b/fonda/cpp_testsuite/varBugs/LINUX-809e660f438.report index 6fa34573..7502af2f 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-809e660f438.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-809e660f438.report @@ -3,4 +3,8 @@ Macros: CONFIG_ARM_LPAE [-UCONFIG_ARM_LPAE ] Desugared Clang Results: +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-8c8296223f3.report b/fonda/cpp_testsuite/varBugs/LINUX-8c8296223f3.report index 124ab06d..64dd7a95 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-8c8296223f3.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-8c8296223f3.report @@ -3,4 +3,20 @@ Macros: CONFIG_PROC_PAGE_MONITOR [-UCONFIG_PROC_PAGE_MONITOR ] Desugared Clang Results: +Desugared Infer Results: + +LINUX/8c8296223f3.desugared.c:1413: error: Memory Leak + Memory dynamically allocated by `malloc` on line 1393 is not freed after the last access at line 1413, column 1. + 1411. + 1412. } + 1413. } + ^ + 1414. int (__main_813) (int __argc_811, char * (* (__argv_812))) { + 1415. + + +Found 1 issue + Issue Type(ISSUED_TYPE_ID): # + Memory Leak(MEMORY_LEAK_C): 1 +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-91ea8207168.report b/fonda/cpp_testsuite/varBugs/LINUX-91ea8207168.report index 634b33d6..5318cd7f 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-91ea8207168.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-91ea8207168.report @@ -13,4 +13,8 @@ Macros: [-DCONFIG_NODES_SHIFT=1 -DCONFIG_DISCONTIGMEM=1 -DCONFIG_PROC_PAGE_MONITOR=1 ] [-UCONFIG_NODES_SHIFT -UCONFIG_DISCONTIGMEM -UCONFIG_PROC_PAGE_MONITOR ] Desugared Clang Results: +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-ae249b5fa27.report b/fonda/cpp_testsuite/varBugs/LINUX-ae249b5fa27.report index 76770d62..c38a7921 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-ae249b5fa27.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-ae249b5fa27.report @@ -14,4 +14,8 @@ Desugared Clang Results: return ( int ) __r_236 ;// L21 ^~~~~~~~~~~~~~~~~~~~~~~~~ 2 warnings generated. +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-bc8cec0dff0.report b/fonda/cpp_testsuite/varBugs/LINUX-bc8cec0dff0.report index f7c66ef2..f384b701 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-bc8cec0dff0.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-bc8cec0dff0.report @@ -3,4 +3,19 @@ Macros: CONFIG_JFFS2_FS_WBUF_VERIFY [-UCONFIG_JFFS2_FS_WBUF_VERIFY ] Desugared Clang Results: +Desugared Infer Results: + +LINUX/bc8cec0dff0.desugared.c:198: error: Memory Leak + Memory dynamically allocated by `malloc`, indirectly via call to `__jffs2_nor_wbuf_flash_setup_7()` on line 187 is not freed after the last access at line 198, column 1. + 196. + 197. + 198. } + ^ + 199. + + +Found 1 issue + Issue Type(ISSUED_TYPE_ID): # + Memory Leak(MEMORY_LEAK_C): 1 +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-c708c57e247.report b/fonda/cpp_testsuite/varBugs/LINUX-c708c57e247.report index f19cd247..13ba362c 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-c708c57e247.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-c708c57e247.report @@ -7,4 +7,8 @@ Desugared Clang Results: * ( ( ____u64_0 * ) __parm_block_1 ) ^= * ( ( ____u64_0 * ) __buf_3 + __i_4 * 8 ) ; // L18 ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 1 warning generated. +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-d530db0db90.report b/fonda/cpp_testsuite/varBugs/LINUX-d530db0db90.report index 057f0a0a..0af1a476 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-d530db0db90.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-d530db0db90.report @@ -7,4 +7,8 @@ Macros: [-UCONFIG_VORTEX -DCONFIG_PCI=1 ] [-DCONFIG_VORTEX=1 -DCONFIG_PCI=1 ] Desugared Clang Results: +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-d549f55f2e1.report b/fonda/cpp_testsuite/varBugs/LINUX-d549f55f2e1.report index 8c216244..8f0f1fd5 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-d549f55f2e1.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-d549f55f2e1.report @@ -7,4 +7,8 @@ Macros: [-UCONFIG_VLAN_8021Q -Ddefined=1 ] [-DCONFIG_VLAN_8021Q=1 -Ddefined=1 ] Desugared Clang Results: +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-d6c7e113959.report b/fonda/cpp_testsuite/varBugs/LINUX-d6c7e113959.report index 8199c5d8..f5ff8255 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-d6c7e113959.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-d6c7e113959.report @@ -7,4 +7,8 @@ Macros: [-UCONFIG_REGULATOR_MAX8660 -DCONFIG_OF=1 ] [-DCONFIG_REGULATOR_MAX8660=1 -DCONFIG_OF=1 ] Desugared Clang Results: +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-d7e9711760a.report b/fonda/cpp_testsuite/varBugs/LINUX-d7e9711760a.report index f4d87d92..692bee1b 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-d7e9711760a.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-d7e9711760a.report @@ -2,4 +2,13 @@ LINUX d7e9711760a.c Macros: CONFIG_QUOTA_DEBUG [-UCONFIG_QUOTA_DEBUG ] -File Failed +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.desugared.c:1397:2: warning: Value stored to '__reserved_803' is never read [deadcode.DeadStores] + __reserved_803 = 1 ; // L30 + ^ ~ +1 warning generated. +Desugared Infer Results: + + No issues found +Original file has no warnings +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-e1fbd9210d5.report b/fonda/cpp_testsuite/varBugs/LINUX-e1fbd9210d5.report index abb71504..5972fff1 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-e1fbd9210d5.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-e1fbd9210d5.report @@ -7,4 +7,8 @@ Macros: [-UCONFIG_LBDAF -DCONFIG_AMIGA_Z2RAM=1 ] [-DCONFIG_LBDAF=1 -DCONFIG_AMIGA_Z2RAM=1 ] Desugared Clang Results: +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-e39363a9def.report b/fonda/cpp_testsuite/varBugs/LINUX-e39363a9def.report index fc8bfd30..d7418fc3 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-e39363a9def.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-e39363a9def.report @@ -4,8 +4,10 @@ Macros: CONFIG_IPV6 [-UCONFIG_NETPOLL -UCONFIG_IPV6 ] [-DCONFIG_NETPOLL=1 -UCONFIG_IPV6 ] -41 :: Line:17 +clang :: 45 :: Line:17 Undefined or garbage value returned to caller [core.uninitialized.UndefReturn] +infer :: 46 :: Line:17 + Uninitialized Value [-UCONFIG_NETPOLL -DCONFIG_IPV6=1 ] [-DCONFIG_NETPOLL=1 -DCONFIG_IPV6=1 ] Desugared Clang Results: @@ -13,7 +15,13 @@ Desugared Clang Results: return __err_1 ;// L17 ^~~~~~~~~~~~~~~ 1 warning generated. +Desugared Infer Results: + + No issues found Matches: - 41 has a match! + 45 has a match! Unmatched ids: None! +Matches: +Unmatched ids: + 46 diff --git a/fonda/cpp_testsuite/varBugs/LINUX-e67bc51e574.report b/fonda/cpp_testsuite/varBugs/LINUX-e67bc51e574.report index 22209e5a..2f02a895 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-e67bc51e574.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-e67bc51e574.report @@ -3,4 +3,8 @@ Macros: CONFIG_TRACING [-UCONFIG_TRACING ] Desugared Clang Results: +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-eb91f1d0a53.report b/fonda/cpp_testsuite/varBugs/LINUX-eb91f1d0a53.report index 8f740ad0..56f6fd12 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-eb91f1d0a53.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-eb91f1d0a53.report @@ -21,4 +21,8 @@ Macros: [-Udefined -DCONFIG_SLAB=1 -DCONFIG_NUMA=1 -DCONFIG_KMEMTRACE=1 ] [-Ddefined=1 -DCONFIG_SLAB=1 -DCONFIG_NUMA=1 -DCONFIG_KMEMTRACE=1 ] Desugared Clang Results: +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-ee3f34e8572.report b/fonda/cpp_testsuite/varBugs/LINUX-ee3f34e8572.report index fc719d1c..95546579 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-ee3f34e8572.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-ee3f34e8572.report @@ -20,4 +20,8 @@ Desugared Clang Results: ( ( * __rt_814 ) ++ ) ; // L23:L45 ^~~~~~~~~~~~~~~~~~~ 2 warnings generated. +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-f3d83e24154.report b/fonda/cpp_testsuite/varBugs/LINUX-f3d83e24154.report index 770c692b..ad98d47b 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-f3d83e24154.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-f3d83e24154.report @@ -3,4 +3,8 @@ Macros: defined [-Udefined ] Desugared Clang Results: +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-f48ec1d7885.report b/fonda/cpp_testsuite/varBugs/LINUX-f48ec1d7885.report index 3a7d4007..f4ad3bc0 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-f48ec1d7885.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-f48ec1d7885.report @@ -7,4 +7,8 @@ Macros: [-UCONFIG_BLK_CGROUP -DCONFIG_IOSCHED_CFQ=1 ] [-DCONFIG_BLK_CGROUP=1 -DCONFIG_IOSCHED_CFQ=1 ] Desugared Clang Results: +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX-f7ab9b407b3.report b/fonda/cpp_testsuite/varBugs/LINUX-f7ab9b407b3.report index aa4453ea..e6c8c5b3 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-f7ab9b407b3.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-f7ab9b407b3.report @@ -13,4 +13,8 @@ Macros: [-DCONFIG_TMPFS=1 -DCONFIG_SHMEM=1 -DCONFIG_DRM_I915=1 ] [-UCONFIG_TMPFS -UCONFIG_SHMEM -UCONFIG_DRM_I915 ] Desugared Clang Results: +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/LINUX/0988c4c7fb5.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/0988c4c7fb5.desugared.c index b92f7a79..d50acf19 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/0988c4c7fb5.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/0988c4c7fb5.desugared.c @@ -8,18 +8,18 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); extern const bool __static_condition_default_22; +extern const bool __static_condition_default_27; +extern const bool __static_condition_default_17; +extern const bool __static_condition_default_29; +extern const bool __static_condition_default_26; +extern const bool __static_condition_default_20; +extern const bool __static_condition_default_23; extern const bool __static_condition_default_24; +extern const bool __static_condition_default_28; extern const bool __static_condition_default_32; extern const bool __static_condition_default_16; extern const bool __static_condition_default_21; -extern const bool __static_condition_default_26; -extern const bool __static_condition_default_27; extern const bool __static_condition_default_31; -extern const bool __static_condition_default_20; -extern const bool __static_condition_default_29; -extern const bool __static_condition_default_17; -extern const bool __static_condition_default_23; -extern const bool __static_condition_default_28; void __static_initializer_default() { __static_renaming("____assert_fail_4", "__assert_fail"); __static_renaming("____assert_perror_fail_9", "__assert_perror_fail"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/0988c4c7fb5.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/0988c4c7fb5.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/0988c4c7fb5.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/0988c4c7fb5.inferres b/fonda/cpp_testsuite/varBugs/LINUX/0988c4c7fb5.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/0988c4c7fb5.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.desugared.c index 51333518..05d4cf8f 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.desugared.c @@ -7,15 +7,15 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_39; -extern const bool __static_condition_default_32; -extern const bool __static_condition_default_30; -extern const bool __static_condition_default_38; -extern const bool __static_condition_default_26; extern const bool __static_condition_default_10; extern const bool __static_condition_default_31; extern const bool __static_condition_default_29; +extern const bool __static_condition_default_39; extern const bool __static_condition_default_33; +extern const bool __static_condition_default_38; +extern const bool __static_condition_default_26; +extern const bool __static_condition_default_30; +extern const bool __static_condition_default_32; void __static_initializer_default() { __static_renaming("__malloc_1", "malloc"); __static_renaming("__free_3", "free"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.desugared.inferres new file mode 100644 index 00000000..8122dc0c --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.desugared.inferres @@ -0,0 +1,13 @@ + +LINUX/0dc77b6dabe.desugared.c:303: error: Memory Leak + Memory dynamically allocated by `malloc`, indirectly via call to `__extcon_class_init_34()` on line 294 is not freed after the last access at line 303, column 1. + 301. + 302. } + 303. } + ^ + 304. + + +Found 1 issue + Issue Type(ISSUED_TYPE_ID): # + Memory Leak(MEMORY_LEAK_C): 1 diff --git a/fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.inferres b/fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.desugared.c index c21cea76..1cf73b00 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.desugared.c @@ -7,48 +7,55 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); +extern const bool __static_condition_default_0; +extern const bool __static_condition_default_14; +extern const bool __static_condition_default_4; +extern const bool __static_condition_default_7; extern const bool __static_condition_default_2; -extern const bool __static_condition_default_10; -extern const bool __static_condition_default_1; -extern const bool __static_condition_default_6; -extern const bool __static_condition_default_5; extern const bool __static_condition_default_11; -extern const bool __static_condition_default_0; +extern const bool __static_condition_default_1; +extern const bool __static_condition_default_13; void __static_initializer_default() { -__static_renaming("__init_node_lock_keys_3", "init_node_lock_keys"); -__static_renaming("__init_node_lock_keys_4", "init_node_lock_keys"); -__static_renaming("__init_lock_keys_7", "init_lock_keys"); -__static_renaming("__kmem_cache_init_late_8", "kmem_cache_init_late"); -__static_renaming("__main_9", "main"); +__static_renaming("__i_3", "i"); +__static_renaming("__init_node_lock_keys_5", "init_node_lock_keys"); +__static_renaming("__init_node_lock_keys_6", "init_node_lock_keys"); +__static_renaming("__init_lock_keys_8", "init_lock_keys"); +__static_renaming("__init_lock_keys_9", "init_lock_keys"); +__static_renaming("__kmem_cache_init_late_10", "kmem_cache_init_late"); +__static_renaming("__main_12", "main"); __static_condition_renaming("__static_condition_default_0", "(defined CONFIG_FORCE_MAX_ZONEORDER) && (defined CONFIG_SLAB) && !(defined CONFIG_SLOB)"); -__static_condition_renaming("__static_condition_default_1", "!(defined CONFIG_FORCE_MAX_ZONEORDER) && (defined CONFIG_SLAB) && !(defined CONFIG_SLOB)"); -__static_condition_renaming("__static_condition_default_2", "!(defined CONFIG_SLAB) && !(defined CONFIG_SLOB)"); -__static_condition_renaming("__static_condition_default_5", "(defined CONFIG_SLOB)"); -__static_condition_renaming("__static_condition_default_6", "!(defined CONFIG_SLOB)"); -__static_condition_renaming("__static_condition_default_10", "!(defined CONFIG_SLOB)"); -__static_condition_renaming("__static_condition_default_11", "(defined CONFIG_SLOB)"); +__static_condition_renaming("__static_condition_default_1", "!(defined CONFIG_SLAB) && !(defined CONFIG_SLOB)"); +__static_condition_renaming("__static_condition_default_2", "!(defined CONFIG_FORCE_MAX_ZONEORDER) && (defined CONFIG_SLAB) && !(defined CONFIG_SLOB)"); +__static_condition_renaming("__static_condition_default_4", "(defined CONFIG_LOCKDEP)"); +__static_condition_renaming("__static_condition_default_7", "!(defined CONFIG_LOCKDEP)"); +__static_condition_renaming("__static_condition_default_11", "!(defined CONFIG_LOCKDEP)"); +__static_condition_renaming("__static_condition_default_13", "!(defined CONFIG_SLOB)"); +__static_condition_renaming("__static_condition_default_14", "(defined CONFIG_SLOB)"); }; -int (__init_node_lock_keys_3) () { +static void (__init_node_lock_keys_5) () { -if (__static_condition_default_5) { +if (__static_condition_default_4) { { { +int __i_3;// L32 + +__static_type_error("no valid type in iterationstatement (3)"); } } } } -int (__init_node_lock_keys_4) () { +int (__init_node_lock_keys_6) () { -if (__static_condition_default_6) { +if (__static_condition_default_7) { { { @@ -61,45 +68,73 @@ if (__static_condition_default_6) { } } -void (__init_lock_keys_7) (void ) { +void (__init_lock_keys_8) (void ) { + +{ +if (__static_condition_default_4) { { { + __init_node_lock_keys_5 ( ) ; // L47 } } } -void (__kmem_cache_init_late_8) (void ) { + +}} +void (__init_lock_keys_9) (void ) { + +{ +if (__static_condition_default_7) { { { - __init_lock_keys_7 ( ) ; // L61 } } } -int (__main_9) (void ) { + +}} +void (__kmem_cache_init_late_10) (void ) { { { -if (__static_condition_default_10) { - __kmem_cache_init_late_8 ( ) ; // L67 +if (__static_condition_default_4) { + __init_lock_keys_8 ( ) ; // L61 } if (__static_condition_default_11) { + __init_lock_keys_9 ( ) ; // L61 +} +} +} + + +} +int (__main_12) (void ) { + +{ +{ + + + +if (__static_condition_default_13) { + __kmem_cache_init_late_10 ( ) ; // L67 +} +if (__static_condition_default_14) { return 0 ;// L69 } -if (__static_condition_default_10) { +if (__static_condition_default_13) { return 0 ;// L69 } } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.inferres b/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/1c17e4d4437.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/1c17e4d4437.desugared.c index 7d318443..b6916af3 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/1c17e4d4437.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/1c17e4d4437.desugared.c @@ -7,14 +7,14 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_12; -extern const bool __static_condition_default_18; -extern const bool __static_condition_default_23; -extern const bool __static_condition_default_24; extern const bool __static_condition_default_11; -extern const bool __static_condition_default_21; +extern const bool __static_condition_default_24; +extern const bool __static_condition_default_23; extern const bool __static_condition_default_19; +extern const bool __static_condition_default_12; +extern const bool __static_condition_default_18; extern const bool __static_condition_default_20; +extern const bool __static_condition_default_21; void __static_initializer_default() { __static_renaming("__printf_1", "printf"); __static_renaming("__sprintf_4", "sprintf"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/1c17e4d4437.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/1c17e4d4437.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/1c17e4d4437.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/1c17e4d4437.inferres b/fonda/cpp_testsuite/varBugs/LINUX/1c17e4d4437.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/1c17e4d4437.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/1f758a4341a.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/1f758a4341a.desugared.c index fbd868f3..de3de022 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/1f758a4341a.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/1f758a4341a.desugared.c @@ -7,11 +7,11 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_11; -extern const bool __static_condition_default_4; +extern const bool __static_condition_default_3; extern const bool __static_condition_default_7; +extern const bool __static_condition_default_4; extern const bool __static_condition_default_12; -extern const bool __static_condition_default_3; +extern const bool __static_condition_default_11; void __static_initializer_default() { __static_renaming("__some_int_0", "some_int"); __static_renaming("____alloc_pages_nodemask_2", "__alloc_pages_nodemask"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/1f758a4341a.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/1f758a4341a.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/1f758a4341a.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/1f758a4341a.inferres b/fonda/cpp_testsuite/varBugs/LINUX/1f758a4341a.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/1f758a4341a.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/208d89843b7.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/208d89843b7.desugared.c index d1757d1a..cbac25d5 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/208d89843b7.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/208d89843b7.desugared.c @@ -7,163 +7,856 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_155; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_414; +extern const bool __static_condition_default_595; +extern const bool __static_condition_default_261; +extern const bool __static_condition_default_378; +extern const bool __static_condition_default_60; +extern const bool __static_condition_default_252; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_627; +extern const bool __static_condition_default_629; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_426; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_579; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_818; +extern const bool __static_condition_default_379; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_361; extern const bool __static_condition_default_264; -extern const bool __static_condition_default_109; -extern const bool __static_condition_default_157; -extern const bool __static_condition_default_190; -extern const bool __static_condition_default_254; -extern const bool __static_condition_default_260; -extern const bool __static_condition_default_122; -extern const bool __static_condition_default_123; +extern const bool __static_condition_default_305; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_594; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_243; +extern const bool __static_condition_default_240; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_279; +extern const bool __static_condition_default_429; +extern const bool __static_condition_default_808; +extern const bool __static_condition_default_273; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_394; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_276; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_67; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_215; +extern const bool __static_condition_default_325; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_296; extern const bool __static_condition_default_255; -extern const bool __static_condition_default_261; -extern const bool __static_condition_default_107; -extern const bool __static_condition_default_149; -extern const bool __static_condition_default_151; -extern const bool __static_condition_default_265; -extern const bool __static_condition_default_132; -extern const bool __static_condition_default_130; +extern const bool __static_condition_default_352; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_349; +extern const bool __static_condition_default_234; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_308; +extern const bool __static_condition_default_604; +extern const bool __static_condition_default_802; +extern const bool __static_condition_default_302; +extern const bool __static_condition_default_285; +extern const bool __static_condition_default_237; +extern const bool __static_condition_default_420; +extern const bool __static_condition_default_812; +extern const bool __static_condition_default_581; +extern const bool __static_condition_default_423; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_270; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); __static_renaming("__wchar_t_2", "wchar_t"); -__static_renaming("__div_t_7", "div_t"); -__static_renaming("__ldiv_t_12", "ldiv_t"); -__static_renaming("__lldiv_t_17", "lldiv_t"); -__static_renaming("____ctype_get_mb_cur_max_18", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_19", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_20", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_21", "__ctype_get_mb_cur_max"); -__static_renaming("__atof_23", "atof"); -__static_renaming("__atof_24", "atof"); -__static_renaming("__atoi_26", "atoi"); -__static_renaming("__atoi_27", "atoi"); -__static_renaming("__atol_29", "atol"); -__static_renaming("__atol_30", "atol"); -__static_renaming("__atoll_32", "atoll"); -__static_renaming("__atoll_33", "atoll"); -__static_renaming("__strtod_36", "strtod"); -__static_renaming("__strtof_39", "strtof"); -__static_renaming("__strtold_42", "strtold"); -__static_renaming("__strtol_46", "strtol"); -__static_renaming("__strtoul_50", "strtoul"); -__static_renaming("__strtoll_54", "strtoll"); -__static_renaming("__strtoull_58", "strtoull"); -__static_renaming("__rand_62", "rand"); -__static_renaming("__rand_63", "rand"); -__static_renaming("__srand_65", "srand"); -__static_renaming("__malloc_67", "malloc"); -__static_renaming("__malloc_68", "malloc"); -__static_renaming("__calloc_71", "calloc"); -__static_renaming("__calloc_72", "calloc"); -__static_renaming("__realloc_75", "realloc"); -__static_renaming("__realloc_76", "realloc"); -__static_renaming("__free_78", "free"); -__static_renaming("__aligned_alloc_81", "aligned_alloc"); -__static_renaming("__aligned_alloc_82", "aligned_alloc"); -__static_renaming("__abort_83", "abort"); -__static_renaming("__atexit_85", "atexit"); -__static_renaming("__at_quick_exit_87", "at_quick_exit"); -__static_renaming("__exit_89", "exit"); -__static_renaming("__quick_exit_91", "quick_exit"); -__static_renaming("___Exit_93", "_Exit"); -__static_renaming("__getenv_95", "getenv"); -__static_renaming("__getenv_96", "getenv"); -__static_renaming("__system_98", "system"); -__static_renaming("__system_99", "system"); -__static_renaming("____compar_fn_t_100", "__compar_fn_t"); -__static_renaming("__bsearch_108", "bsearch"); -__static_renaming("__bsearch_110", "bsearch"); -__static_renaming("____l_117", "__l"); -__static_renaming("____u_118", "__u"); -__static_renaming("____idx_119", "__idx"); -__static_renaming("____p_120", "__p"); -__static_renaming("____comparison_121", "__comparison"); -__static_renaming("__qsort_129", "qsort"); -__static_renaming("__qsort_131", "qsort"); -__static_renaming("__abs_134", "abs"); -__static_renaming("__abs_135", "abs"); -__static_renaming("__labs_137", "labs"); -__static_renaming("__labs_138", "labs"); -__static_renaming("__llabs_140", "llabs"); -__static_renaming("__llabs_141", "llabs"); -__static_renaming("__div_144", "div"); -__static_renaming("__div_145", "div"); -__static_renaming("__ldiv_148", "ldiv"); -__static_renaming("__ldiv_150", "ldiv"); -__static_renaming("__lldiv_154", "lldiv"); -__static_renaming("__lldiv_156", "lldiv"); -__static_renaming("__mblen_160", "mblen"); -__static_renaming("__mbtowc_164", "mbtowc"); -__static_renaming("__wctomb_167", "wctomb"); -__static_renaming("__mbstowcs_171", "mbstowcs"); -__static_renaming("__wcstombs_175", "wcstombs"); -__static_renaming("____realpath_chk_180", "__realpath_chk"); -__static_renaming("____realpath_alias_183", "__realpath_alias"); -__static_renaming("____realpath_chk_warn_187", "__realpath_chk_warn"); -__static_renaming("____ptsname_r_chk_195", "__ptsname_r_chk"); -__static_renaming("____ptsname_r_alias_199", "__ptsname_r_alias"); -__static_renaming("____ptsname_r_chk_warn_204", "__ptsname_r_chk_warn"); -__static_renaming("____wctomb_chk_212", "__wctomb_chk"); -__static_renaming("____wctomb_alias_215", "__wctomb_alias"); -__static_renaming("____mbstowcs_chk_222", "__mbstowcs_chk"); -__static_renaming("____mbstowcs_alias_226", "__mbstowcs_alias"); -__static_renaming("____mbstowcs_chk_warn_231", "__mbstowcs_chk_warn"); -__static_renaming("____wcstombs_chk_239", "__wcstombs_chk"); -__static_renaming("____wcstombs_alias_243", "__wcstombs_alias"); -__static_renaming("____wcstombs_chk_warn_248", "__wcstombs_chk_warn"); -__static_renaming("__spin_lock_irq_252", "spin_lock_irq"); -__static_renaming("__spin_lock_irq_253", "spin_lock_irq"); -__static_renaming("__spin_unlock_irq_256", "spin_unlock_irq"); -__static_renaming("__spin_lock_bh_257", "spin_lock_bh"); -__static_renaming("__spin_unlock_bh_258", "spin_unlock_bh"); -__static_renaming("__kunmap_skb_frag_259", "kunmap_skb_frag"); -__static_renaming("__csum_262", "csum"); -__static_renaming("__skb_checksum_263", "skb_checksum"); -__static_renaming("__udp_checksum_complete_266", "udp_checksum_complete"); -__static_renaming("__mask_267", "mask"); -__static_renaming("__udp_poll_268", "udp_poll"); -__static_renaming("__main_271", "main"); - -__static_condition_renaming("__static_condition_default_107", "!(defined _FORTIFY_SOURCE) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_109", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_122", "(defined __USE_EXTERN_INLINES) && !(defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_123", "(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_130", "!(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_132", "(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_149", "!(defined _FORTIFY_SOURCE) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_151", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_155", "!(defined _FORTIFY_SOURCE) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_157", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_190", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_254", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_255", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_260", "!(defined CONFIG_HIGHMEM)"); -__static_condition_renaming("__static_condition_default_261", "(defined CONFIG_HIGHMEM)"); -__static_condition_renaming("__static_condition_default_264", "!(defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_265", "(defined __USE_EXTERN_INLINES)"); - +__static_renaming("__idtype_t_8", "idtype_t"); +__static_renaming("____u_char_9", "__u_char"); +__static_renaming("____u_short_10", "__u_short"); +__static_renaming("____u_int_11", "__u_int"); +__static_renaming("____u_long_12", "__u_long"); +__static_renaming("____int8_t_13", "__int8_t"); +__static_renaming("____uint8_t_14", "__uint8_t"); +__static_renaming("____int16_t_15", "__int16_t"); +__static_renaming("____uint16_t_16", "__uint16_t"); +__static_renaming("____int32_t_17", "__int32_t"); +__static_renaming("____uint32_t_18", "__uint32_t"); +__static_renaming("____int64_t_19", "__int64_t"); +__static_renaming("____uint64_t_20", "__uint64_t"); +__static_renaming("____quad_t_21", "__quad_t"); +__static_renaming("____u_quad_t_22", "__u_quad_t"); +__static_renaming("____dev_t_23", "__dev_t"); +__static_renaming("____uid_t_24", "__uid_t"); +__static_renaming("____gid_t_25", "__gid_t"); +__static_renaming("____ino_t_26", "__ino_t"); +__static_renaming("____ino64_t_27", "__ino64_t"); +__static_renaming("____mode_t_28", "__mode_t"); +__static_renaming("____nlink_t_29", "__nlink_t"); +__static_renaming("____off_t_30", "__off_t"); +__static_renaming("____off64_t_31", "__off64_t"); +__static_renaming("____pid_t_32", "__pid_t"); +__static_renaming("____fsid_t_36", "__fsid_t"); +__static_renaming("____clock_t_37", "__clock_t"); +__static_renaming("____rlim_t_38", "__rlim_t"); +__static_renaming("____rlim64_t_39", "__rlim64_t"); +__static_renaming("____id_t_40", "__id_t"); +__static_renaming("____time_t_41", "__time_t"); +__static_renaming("____useconds_t_42", "__useconds_t"); +__static_renaming("____suseconds_t_43", "__suseconds_t"); +__static_renaming("____daddr_t_44", "__daddr_t"); +__static_renaming("____key_t_45", "__key_t"); +__static_renaming("____clockid_t_46", "__clockid_t"); +__static_renaming("____timer_t_47", "__timer_t"); +__static_renaming("____blksize_t_48", "__blksize_t"); +__static_renaming("____blkcnt_t_49", "__blkcnt_t"); +__static_renaming("____blkcnt64_t_50", "__blkcnt64_t"); +__static_renaming("____fsblkcnt_t_51", "__fsblkcnt_t"); +__static_renaming("____fsblkcnt64_t_52", "__fsblkcnt64_t"); +__static_renaming("____fsfilcnt_t_53", "__fsfilcnt_t"); +__static_renaming("____fsfilcnt64_t_54", "__fsfilcnt64_t"); +__static_renaming("____fsword_t_55", "__fsword_t"); +__static_renaming("____ssize_t_56", "__ssize_t"); +__static_renaming("____syscall_slong_t_57", "__syscall_slong_t"); +__static_renaming("____syscall_ulong_t_58", "__syscall_ulong_t"); +__static_renaming("____loff_t_59", "__loff_t"); +__static_renaming("____qaddr_t_61", "__qaddr_t"); +__static_renaming("____caddr_t_62", "__caddr_t"); +__static_renaming("____intptr_t_63", "__intptr_t"); +__static_renaming("____socklen_t_64", "__socklen_t"); +__static_renaming("____bswap_32_66", "__bswap_32"); +__static_renaming("____bswap_64_69", "__bswap_64"); +__static_renaming("____WAIT_STATUS_89", "__WAIT_STATUS"); +__static_renaming("__div_t_94", "div_t"); +__static_renaming("__ldiv_t_99", "ldiv_t"); +__static_renaming("__lldiv_t_104", "lldiv_t"); +__static_renaming("____ctype_get_mb_cur_max_105", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_106", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_107", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_108", "__ctype_get_mb_cur_max"); +__static_renaming("__atof_110", "atof"); +__static_renaming("__atof_111", "atof"); +__static_renaming("__atoi_113", "atoi"); +__static_renaming("__atoi_114", "atoi"); +__static_renaming("__atol_116", "atol"); +__static_renaming("__atol_117", "atol"); +__static_renaming("__atoll_119", "atoll"); +__static_renaming("__atoll_120", "atoll"); +__static_renaming("__strtod_123", "strtod"); +__static_renaming("__strtof_126", "strtof"); +__static_renaming("__strtold_129", "strtold"); +__static_renaming("__strtol_133", "strtol"); +__static_renaming("__strtoul_137", "strtoul"); +__static_renaming("__strtoq_141", "strtoq"); +__static_renaming("__strtouq_145", "strtouq"); +__static_renaming("__strtoll_149", "strtoll"); +__static_renaming("__strtoll_150", "strtoll"); +__static_renaming("__strtoull_154", "strtoull"); +__static_renaming("__l64a_159", "l64a"); +__static_renaming("__l64a_160", "l64a"); +__static_renaming("__a64l_162", "a64l"); +__static_renaming("__a64l_163", "a64l"); +__static_renaming("____u_char_164", "__u_char"); +__static_renaming("____u_short_165", "__u_short"); +__static_renaming("____u_int_166", "__u_int"); +__static_renaming("____u_long_167", "__u_long"); +__static_renaming("____int8_t_168", "__int8_t"); +__static_renaming("____uint8_t_169", "__uint8_t"); +__static_renaming("____int16_t_170", "__int16_t"); +__static_renaming("____uint16_t_171", "__uint16_t"); +__static_renaming("____int32_t_172", "__int32_t"); +__static_renaming("____uint32_t_173", "__uint32_t"); +__static_renaming("____int64_t_174", "__int64_t"); +__static_renaming("____uint64_t_175", "__uint64_t"); +__static_renaming("____quad_t_176", "__quad_t"); +__static_renaming("____u_quad_t_177", "__u_quad_t"); +__static_renaming("____dev_t_178", "__dev_t"); +__static_renaming("____uid_t_179", "__uid_t"); +__static_renaming("____gid_t_180", "__gid_t"); +__static_renaming("____ino_t_181", "__ino_t"); +__static_renaming("____ino64_t_182", "__ino64_t"); +__static_renaming("____mode_t_183", "__mode_t"); +__static_renaming("____nlink_t_184", "__nlink_t"); +__static_renaming("____off_t_185", "__off_t"); +__static_renaming("____off64_t_186", "__off64_t"); +__static_renaming("____pid_t_187", "__pid_t"); +__static_renaming("____fsid_t_191", "__fsid_t"); +__static_renaming("____clock_t_192", "__clock_t"); +__static_renaming("____rlim_t_193", "__rlim_t"); +__static_renaming("____rlim64_t_194", "__rlim64_t"); +__static_renaming("____id_t_195", "__id_t"); +__static_renaming("____time_t_196", "__time_t"); +__static_renaming("____useconds_t_197", "__useconds_t"); +__static_renaming("____suseconds_t_198", "__suseconds_t"); +__static_renaming("____daddr_t_199", "__daddr_t"); +__static_renaming("____key_t_200", "__key_t"); +__static_renaming("____clockid_t_201", "__clockid_t"); +__static_renaming("____timer_t_202", "__timer_t"); +__static_renaming("____blksize_t_203", "__blksize_t"); +__static_renaming("____blkcnt_t_204", "__blkcnt_t"); +__static_renaming("____blkcnt64_t_205", "__blkcnt64_t"); +__static_renaming("____fsblkcnt_t_206", "__fsblkcnt_t"); +__static_renaming("____fsblkcnt64_t_207", "__fsblkcnt64_t"); +__static_renaming("____fsfilcnt_t_208", "__fsfilcnt_t"); +__static_renaming("____fsfilcnt64_t_209", "__fsfilcnt64_t"); +__static_renaming("____fsword_t_210", "__fsword_t"); +__static_renaming("____ssize_t_211", "__ssize_t"); +__static_renaming("____syscall_slong_t_212", "__syscall_slong_t"); +__static_renaming("____syscall_ulong_t_213", "__syscall_ulong_t"); +__static_renaming("____loff_t_214", "__loff_t"); +__static_renaming("____qaddr_t_216", "__qaddr_t"); +__static_renaming("____caddr_t_217", "__caddr_t"); +__static_renaming("____intptr_t_218", "__intptr_t"); +__static_renaming("____socklen_t_219", "__socklen_t"); +__static_renaming("__u_char_220", "u_char"); +__static_renaming("__u_char_221", "u_char"); +__static_renaming("__u_short_222", "u_short"); +__static_renaming("__u_short_223", "u_short"); +__static_renaming("__u_int_224", "u_int"); +__static_renaming("__u_int_225", "u_int"); +__static_renaming("__u_long_226", "u_long"); +__static_renaming("__u_long_227", "u_long"); +__static_renaming("__quad_t_228", "quad_t"); +__static_renaming("__quad_t_229", "quad_t"); +__static_renaming("__u_quad_t_230", "u_quad_t"); +__static_renaming("__u_quad_t_231", "u_quad_t"); +__static_renaming("__fsid_t_232", "fsid_t"); +__static_renaming("__fsid_t_233", "fsid_t"); +__static_renaming("__loff_t_235", "loff_t"); +__static_renaming("__loff_t_236", "loff_t"); +__static_renaming("__loff_t_238", "loff_t"); +__static_renaming("__loff_t_239", "loff_t"); +__static_renaming("__ino_t_241", "ino_t"); +__static_renaming("__ino_t_242", "ino_t"); +__static_renaming("__ino_t_244", "ino_t"); +__static_renaming("__ino_t_245", "ino_t"); +__static_renaming("__dev_t_247", "dev_t"); +__static_renaming("__dev_t_248", "dev_t"); +__static_renaming("__gid_t_250", "gid_t"); +__static_renaming("__gid_t_251", "gid_t"); +__static_renaming("__gid_t_253", "gid_t"); +__static_renaming("__gid_t_254", "gid_t"); +__static_renaming("__mode_t_256", "mode_t"); +__static_renaming("__mode_t_257", "mode_t"); +__static_renaming("__nlink_t_259", "nlink_t"); +__static_renaming("__nlink_t_260", "nlink_t"); +__static_renaming("__uid_t_262", "uid_t"); +__static_renaming("__uid_t_263", "uid_t"); +__static_renaming("__uid_t_265", "uid_t"); +__static_renaming("__uid_t_266", "uid_t"); +__static_renaming("__off_t_268", "off_t"); +__static_renaming("__off_t_269", "off_t"); +__static_renaming("__off_t_271", "off_t"); +__static_renaming("__off_t_272", "off_t"); +__static_renaming("__pid_t_274", "pid_t"); +__static_renaming("__pid_t_275", "pid_t"); +__static_renaming("__pid_t_277", "pid_t"); +__static_renaming("__pid_t_278", "pid_t"); +__static_renaming("__id_t_280", "id_t"); +__static_renaming("__id_t_281", "id_t"); +__static_renaming("__ssize_t_283", "ssize_t"); +__static_renaming("__ssize_t_284", "ssize_t"); +__static_renaming("__daddr_t_286", "daddr_t"); +__static_renaming("__daddr_t_287", "daddr_t"); +__static_renaming("__caddr_t_289", "caddr_t"); +__static_renaming("__caddr_t_290", "caddr_t"); +__static_renaming("__key_t_291", "key_t"); +__static_renaming("__key_t_292", "key_t"); +__static_renaming("__key_t_294", "key_t"); +__static_renaming("__key_t_295", "key_t"); +__static_renaming("__clock_t_297", "clock_t"); +__static_renaming("__clock_t_298", "clock_t"); +__static_renaming("__time_t_300", "time_t"); +__static_renaming("__time_t_301", "time_t"); +__static_renaming("__clockid_t_303", "clockid_t"); +__static_renaming("__clockid_t_304", "clockid_t"); +__static_renaming("__timer_t_306", "timer_t"); +__static_renaming("__timer_t_307", "timer_t"); +__static_renaming("__ulong_309", "ulong"); +__static_renaming("__ulong_310", "ulong"); +__static_renaming("__ulong_311", "ulong"); +__static_renaming("__ushort_312", "ushort"); +__static_renaming("__uint_313", "uint"); +__static_renaming("__int8_t_314", "int8_t"); +__static_renaming("__int16_t_315", "int16_t"); +__static_renaming("__int32_t_316", "int32_t"); +__static_renaming("__int64_t_317", "int64_t"); +__static_renaming("__u_int8_t_318", "u_int8_t"); +__static_renaming("__u_int16_t_319", "u_int16_t"); +__static_renaming("__u_int32_t_320", "u_int32_t"); +__static_renaming("__u_int64_t_321", "u_int64_t"); +__static_renaming("__register_t_322", "register_t"); +__static_renaming("____bswap_32_324", "__bswap_32"); +__static_renaming("____bswap_64_327", "__bswap_64"); +__static_renaming("____sig_atomic_t_328", "__sig_atomic_t"); +__static_renaming("____sigset_t_332", "__sigset_t"); +__static_renaming("__sigset_t_333", "sigset_t"); +__static_renaming("__suseconds_t_350", "suseconds_t"); +__static_renaming("__suseconds_t_351", "suseconds_t"); +__static_renaming("____fd_mask_353", "__fd_mask"); +__static_renaming("____fd_mask_354", "__fd_mask"); +__static_renaming("__fd_set_362", "fd_set"); +__static_renaming("__fd_mask_363", "fd_mask"); +__static_renaming("__fd_mask_364", "fd_mask"); +__static_renaming("__select_376", "select"); +__static_renaming("__select_377", "select"); +__static_renaming("__pselect_392", "pselect"); +__static_renaming("__pselect_393", "pselect"); +__static_renaming("____fdelt_chk_397", "__fdelt_chk"); +__static_renaming("____fdelt_warn_399", "__fdelt_warn"); +__static_renaming("__gnu_dev_major_401", "gnu_dev_major"); +__static_renaming("__gnu_dev_major_402", "gnu_dev_major"); +__static_renaming("__gnu_dev_minor_404", "gnu_dev_minor"); +__static_renaming("__gnu_dev_makedev_407", "gnu_dev_makedev"); +__static_renaming("__blksize_t_412", "blksize_t"); +__static_renaming("__blksize_t_413", "blksize_t"); +__static_renaming("__blkcnt_t_415", "blkcnt_t"); +__static_renaming("__blkcnt_t_416", "blkcnt_t"); +__static_renaming("__fsblkcnt_t_418", "fsblkcnt_t"); +__static_renaming("__fsblkcnt_t_419", "fsblkcnt_t"); +__static_renaming("__blkcnt_t_421", "blkcnt_t"); +__static_renaming("__blkcnt_t_422", "blkcnt_t"); +__static_renaming("__fsblkcnt_t_424", "fsblkcnt_t"); +__static_renaming("__fsblkcnt_t_425", "fsblkcnt_t"); +__static_renaming("__fsfilcnt_t_427", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_428", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_430", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_431", "fsfilcnt_t"); +__static_renaming("__pthread_t_433", "pthread_t"); +__static_renaming("__pthread_attr_t_437", "pthread_attr_t"); +__static_renaming("____pthread_list_t_442", "__pthread_list_t"); +__static_renaming("____pthread_list_t_443", "__pthread_list_t"); +__static_renaming("__pthread_mutex_t_459", "pthread_mutex_t"); +__static_renaming("__pthread_mutexattr_t_464", "pthread_mutexattr_t"); +__static_renaming("__rand_465", "rand"); +__static_renaming("__srand_467", "srand"); +__static_renaming("__rand_r_469", "rand_r"); +__static_renaming("__drand48_470", "drand48"); +__static_renaming("__erand48_472", "erand48"); +__static_renaming("__lrand48_473", "lrand48"); +__static_renaming("__nrand48_475", "nrand48"); +__static_renaming("__mrand48_476", "mrand48"); +__static_renaming("__jrand48_478", "jrand48"); +__static_renaming("__srand48_480", "srand48"); +__static_renaming("__seed48_482", "seed48"); +__static_renaming("__lcong48_484", "lcong48"); +__static_renaming("__malloc_486", "malloc"); +__static_renaming("__malloc_487", "malloc"); +__static_renaming("__calloc_490", "calloc"); +__static_renaming("__calloc_491", "calloc"); +__static_renaming("__realloc_494", "realloc"); +__static_renaming("__free_496", "free"); +__static_renaming("__cfree_498", "cfree"); +__static_renaming("__alloca_500", "alloca"); +__static_renaming("__valloc_502", "valloc"); +__static_renaming("__valloc_503", "valloc"); +__static_renaming("__posix_memalign_507", "posix_memalign"); +__static_renaming("__posix_memalign_508", "posix_memalign"); +__static_renaming("__aligned_alloc_511", "aligned_alloc"); +__static_renaming("__aligned_alloc_512", "aligned_alloc"); +__static_renaming("__aligned_alloc_513", "aligned_alloc"); +__static_renaming("__aligned_alloc_514", "aligned_alloc"); +__static_renaming("__abort_515", "abort"); +__static_renaming("__atexit_517", "atexit"); +__static_renaming("__at_quick_exit_519", "at_quick_exit"); +__static_renaming("__on_exit_524", "on_exit"); +__static_renaming("__exit_526", "exit"); +__static_renaming("__exit_527", "exit"); +__static_renaming("__quick_exit_529", "quick_exit"); +__static_renaming("___Exit_531", "_Exit"); +__static_renaming("__getenv_533", "getenv"); +__static_renaming("__getenv_534", "getenv"); +__static_renaming("__putenv_536", "putenv"); +__static_renaming("__setenv_540", "setenv"); +__static_renaming("__unsetenv_542", "unsetenv"); +__static_renaming("__clearenv_543", "clearenv"); +__static_renaming("__mktemp_545", "mktemp"); +__static_renaming("__mkstemp_548", "mkstemp"); +__static_renaming("__mkstemp_549", "mkstemp"); +__static_renaming("__mkstemp_550", "mkstemp"); +__static_renaming("__mkstemp_551", "mkstemp"); +__static_renaming("__mkstemps_556", "mkstemps"); +__static_renaming("__mkstemps_557", "mkstemps"); +__static_renaming("__mkstemps_558", "mkstemps"); +__static_renaming("__mkstemps_559", "mkstemps"); +__static_renaming("__mkdtemp_561", "mkdtemp"); +__static_renaming("__mkdtemp_562", "mkdtemp"); +__static_renaming("__system_564", "system"); +__static_renaming("__system_565", "system"); +__static_renaming("__system_566", "system"); +__static_renaming("__system_567", "system"); +__static_renaming("__realpath_570", "realpath"); +__static_renaming("__realpath_571", "realpath"); +__static_renaming("____compar_fn_t_572", "__compar_fn_t"); +__static_renaming("__bsearch_580", "bsearch"); +__static_renaming("__bsearch_582", "bsearch"); +__static_renaming("____l_589", "__l"); +__static_renaming("____u_590", "__u"); +__static_renaming("____idx_591", "__idx"); +__static_renaming("____p_592", "__p"); +__static_renaming("____comparison_593", "__comparison"); +__static_renaming("__qsort_601", "qsort"); +__static_renaming("__qsort_603", "qsort"); +__static_renaming("__abs_606", "abs"); +__static_renaming("__abs_607", "abs"); +__static_renaming("__labs_609", "labs"); +__static_renaming("__labs_610", "labs"); +__static_renaming("__llabs_612", "llabs"); +__static_renaming("__llabs_613", "llabs"); +__static_renaming("__div_616", "div"); +__static_renaming("__div_617", "div"); +__static_renaming("__ldiv_620", "ldiv"); +__static_renaming("__ldiv_622", "ldiv"); +__static_renaming("__lldiv_626", "lldiv"); +__static_renaming("__lldiv_628", "lldiv"); +__static_renaming("__ecvt_634", "ecvt"); +__static_renaming("__ecvt_635", "ecvt"); +__static_renaming("__fcvt_640", "fcvt"); +__static_renaming("__fcvt_641", "fcvt"); +__static_renaming("__gcvt_645", "gcvt"); +__static_renaming("__gcvt_646", "gcvt"); +__static_renaming("__qecvt_651", "qecvt"); +__static_renaming("__qecvt_652", "qecvt"); +__static_renaming("__qfcvt_657", "qfcvt"); +__static_renaming("__qfcvt_658", "qfcvt"); +__static_renaming("__qgcvt_662", "qgcvt"); +__static_renaming("__qgcvt_663", "qgcvt"); +__static_renaming("__ecvt_r_670", "ecvt_r"); +__static_renaming("__fcvt_r_677", "fcvt_r"); +__static_renaming("__qecvt_r_684", "qecvt_r"); +__static_renaming("__qfcvt_r_691", "qfcvt_r"); +__static_renaming("__mblen_694", "mblen"); +__static_renaming("__mblen_695", "mblen"); +__static_renaming("__mbtowc_699", "mbtowc"); +__static_renaming("__wctomb_702", "wctomb"); +__static_renaming("__mbstowcs_706", "mbstowcs"); +__static_renaming("__wcstombs_710", "wcstombs"); +__static_renaming("__rpmatch_712", "rpmatch"); +__static_renaming("__rpmatch_713", "rpmatch"); +__static_renaming("__getsubopt_717", "getsubopt"); +__static_renaming("__getsubopt_718", "getsubopt"); +__static_renaming("__getloadavg_721", "getloadavg"); +__static_renaming("____realpath_chk_726", "__realpath_chk"); +__static_renaming("____realpath_alias_729", "__realpath_alias"); +__static_renaming("____realpath_chk_warn_733", "__realpath_chk_warn"); +__static_renaming("____ptsname_r_chk_741", "__ptsname_r_chk"); +__static_renaming("____ptsname_r_alias_745", "__ptsname_r_alias"); +__static_renaming("____ptsname_r_chk_warn_750", "__ptsname_r_chk_warn"); +__static_renaming("____wctomb_chk_758", "__wctomb_chk"); +__static_renaming("____wctomb_alias_761", "__wctomb_alias"); +__static_renaming("____mbstowcs_chk_768", "__mbstowcs_chk"); +__static_renaming("____mbstowcs_alias_772", "__mbstowcs_alias"); +__static_renaming("____mbstowcs_chk_warn_777", "__mbstowcs_chk_warn"); +__static_renaming("____wcstombs_chk_785", "__wcstombs_chk"); +__static_renaming("____wcstombs_alias_789", "__wcstombs_alias"); +__static_renaming("____wcstombs_chk_warn_794", "__wcstombs_chk_warn"); +__static_renaming("__spin_lock_irq_798", "spin_lock_irq"); +__static_renaming("__spin_lock_irq_799", "spin_lock_irq"); +__static_renaming("__spin_lock_irq_800", "spin_lock_irq"); +__static_renaming("__spin_unlock_irq_804", "spin_unlock_irq"); +__static_renaming("__spin_lock_bh_805", "spin_lock_bh"); +__static_renaming("__spin_unlock_bh_806", "spin_unlock_bh"); +__static_renaming("__kunmap_skb_frag_807", "kunmap_skb_frag"); +__static_renaming("__csum_810", "csum"); +__static_renaming("__skb_checksum_811", "skb_checksum"); +__static_renaming("__udp_checksum_complete_814", "udp_checksum_complete"); +__static_renaming("__mask_815", "mask"); +__static_renaming("__udp_poll_816", "udp_poll"); +__static_renaming("__main_822", "main"); + +__static_condition_renaming("__static_condition_default_60", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_67", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_215", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_234", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __u_char_defined)"); +__static_condition_renaming("__static_condition_default_237", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __u_char_defined)"); +__static_condition_renaming("__static_condition_default_240", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __u_char_defined)"); +__static_condition_renaming("__static_condition_default_243", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ino_t_defined)"); +__static_condition_renaming("__static_condition_default_246", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ino_t_defined) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ino_t_defined)"); +__static_condition_renaming("__static_condition_default_249", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_252", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_255", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_258", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_261", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __nlink_t_defined)"); +__static_condition_renaming("__static_condition_default_264", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __nlink_t_defined)"); +__static_condition_renaming("__static_condition_default_267", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __nlink_t_defined)"); +__static_condition_renaming("__static_condition_default_270", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_273", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_276", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_279", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_282", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __id_t_defined)"); +__static_condition_renaming("__static_condition_default_285", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_288", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_293", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_296", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_299", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __clock_t_defined)"); +__static_condition_renaming("__static_condition_default_302", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __time_t_defined)"); +__static_condition_renaming("__static_condition_default_305", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __clockid_t_defined)"); +__static_condition_renaming("__static_condition_default_308", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __timer_t_defined)"); +__static_condition_renaming("__static_condition_default_325", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_341", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_349", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_352", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __suseconds_t_defined)"); +__static_condition_renaming("__static_condition_default_361", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_378", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_379", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_394", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_395", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_414", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blksize_t_defined)"); +__static_condition_renaming("__static_condition_default_417", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blkcnt_t_defined) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blkcnt_t_defined)"); +__static_condition_renaming("__static_condition_default_420", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_423", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blkcnt_t_defined)"); +__static_condition_renaming("__static_condition_default_426", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_429", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_432", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_579", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_581", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_594", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __USE_EXTERN_INLINES) && !(defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_595", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_602", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_604", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_621", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_623", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_627", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_629", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_736", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_801", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_802", "!(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_803", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_808", "!(defined CONFIG_HIGHMEM)"); +__static_condition_renaming("__static_condition_default_809", "(defined CONFIG_HIGHMEM)"); +__static_condition_renaming("__static_condition_default_812", "!(defined _STDLIB_H) && (defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_813", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined __need_malloc_and_calloc) || (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_817", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_818", "!(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_819", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined __need_malloc_and_calloc) || (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_823", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc)"); + +if (__static_condition_default_823) { +__static_parse_error("Unable to parse"); +} }; typedef long int __ptrdiff_t_0;// L143:L324 typedef long unsigned int __size_t_1;// L177:L209 typedef int __wchar_t_2;// L243:L321 -struct ____anonymous_tag_3_4 { -int __quot_5;// L99 -int __rem_6;// L100 +enum ____anonymous_tag_6_7 { +__P_ALL_3, +__P_PID_4, +__P_PGID_5, +}; +typedef enum ____anonymous_tag_6_7 __idtype_t_8;// L50:L55 +typedef unsigned char ____u_char_9;// L30 +typedef unsigned short int ____u_short_10;// L31 +typedef unsigned int ____u_int_11;// L32 +typedef unsigned long int ____u_long_12;// L33 +typedef signed char ____int8_t_13;// L36 +typedef unsigned char ____uint8_t_14;// L37 +typedef signed short int ____int16_t_15;// L38 +typedef unsigned short int ____uint16_t_16;// L39 +typedef signed int ____int32_t_17;// L40 +typedef unsigned int ____uint32_t_18;// L41 +typedef signed long int ____int64_t_19;// L43 +typedef unsigned long int ____uint64_t_20;// L44 +typedef long int ____quad_t_21;// L52 +typedef unsigned long int ____u_quad_t_22;// L53 +typedef unsigned long int ____dev_t_23;// L109:L124 +typedef unsigned int ____uid_t_24;// L92:L125 +typedef unsigned int ____gid_t_25;// L92:L126 +typedef unsigned long int ____ino_t_26;// L94:L127 +typedef unsigned long int ____ino64_t_27;// L109:L128 +typedef unsigned int ____mode_t_28;// L92:L129 +typedef unsigned long int ____nlink_t_29;// L94:L130 +typedef long int ____off_t_30;// L93:L131 +typedef long int ____off64_t_31;// L108:L132 +typedef int ____pid_t_32;// L91:L133 +struct ____anonymous_tag_33_34 { +int ____val_35[2];// L72 +}; +typedef struct ____anonymous_tag_33_34 ____fsid_t_36;// L72:L134 +typedef long int ____clock_t_37;// L93:L135 +typedef unsigned long int ____rlim_t_38;// L94:L136 +typedef unsigned long int ____rlim64_t_39;// L109:L137 +typedef unsigned int ____id_t_40;// L92:L138 +typedef long int ____time_t_41;// L93:L139 +typedef unsigned int ____useconds_t_42;// L92:L140 +typedef long int ____suseconds_t_43;// L93:L141 +typedef int ____daddr_t_44;// L91:L143 +typedef int ____key_t_45;// L91:L144 +typedef int ____clockid_t_46;// L91:L147 +typedef void * (____timer_t_47);// L70:L150 +typedef long int ____blksize_t_48;// L93:L153 +typedef long int ____blkcnt_t_49;// L93:L158 +typedef long int ____blkcnt64_t_50;// L108:L159 +typedef unsigned long int ____fsblkcnt_t_51;// L94:L162 +typedef unsigned long int ____fsblkcnt64_t_52;// L109:L163 +typedef unsigned long int ____fsfilcnt_t_53;// L94:L166 +typedef unsigned long int ____fsfilcnt64_t_54;// L109:L167 +typedef long int ____fsword_t_55;// L93:L170 +typedef long int ____ssize_t_56;// L110:L172 +typedef long int ____syscall_slong_t_57;// L93:L175 +typedef unsigned long int ____syscall_ulong_t_58;// L94:L177 +typedef ____off64_t_31 ____loff_t_59;// L181 +typedef ____quad_t_21 * (____qaddr_t_61);// L182 +typedef char * (____caddr_t_62);// L183 +typedef long int ____intptr_t_63;// L110:L186 +typedef unsigned int ____socklen_t_64;// L92:L189 +struct ____anonymous_tag_70_71 { +unsigned int ____w_termsig_72 : 7;// L72 +unsigned int ____w_coredump_73 : 1;// L73 +unsigned int ____w_retcode_74 : 8;// L74 +unsigned int __anon_id_0_75 : 16;// L75 +}; +struct ____anonymous_tag_76_77 { +unsigned int ____w_stopval_78 : 8;// L87 +unsigned int ____w_stopsig_79 : 8;// L88 +unsigned int __anon_id_1_80 : 16;// L89 +}; +union __wait_81 { +int __w_status_82;// L68 +struct ____anonymous_tag_70_71 ____wait_terminated_83;// L69 +struct ____anonymous_tag_76_77 ____wait_stopped_84;// L84 +}; +union ____anonymous_tag_85_86 { +union __wait_81 * (____uptr_87);// L69 +int * (____iptr_88);// L70 +}; +typedef union ____anonymous_tag_85_86 ____WAIT_STATUS_89;// L67:L71 +struct ____anonymous_tag_90_91 { +int __quot_92;// L99 +int __rem_93;// L100 +}; +typedef struct ____anonymous_tag_90_91 __div_t_94;// L97:L101 +struct ____anonymous_tag_95_96 { +long int __quot_97;// L107 +long int __rem_98;// L108 }; -typedef struct ____anonymous_tag_3_4 __div_t_7;// L97:L101 -struct ____anonymous_tag_8_9 { -long int __quot_10;// L107 -long int __rem_11;// L108 +typedef struct ____anonymous_tag_95_96 __ldiv_t_99;// L105:L109 +struct ____anonymous_tag_100_101 { +long long int __quot_102;// L119 +long long int __rem_103;// L120 +}; +typedef struct ____anonymous_tag_100_101 __lldiv_t_104;// L117:L121 +typedef unsigned char ____u_char_164;// L30 +typedef unsigned short int ____u_short_165;// L31 +typedef unsigned int ____u_int_166;// L32 +typedef unsigned long int ____u_long_167;// L33 +typedef signed char ____int8_t_168;// L36 +typedef unsigned char ____uint8_t_169;// L37 +typedef signed short int ____int16_t_170;// L38 +typedef unsigned short int ____uint16_t_171;// L39 +typedef signed int ____int32_t_172;// L40 +typedef unsigned int ____uint32_t_173;// L41 +typedef signed long int ____int64_t_174;// L43 +typedef unsigned long int ____uint64_t_175;// L44 +typedef long int ____quad_t_176;// L52 +typedef unsigned long int ____u_quad_t_177;// L53 +typedef unsigned long int ____dev_t_178;// L109:L124 +typedef unsigned int ____uid_t_179;// L92:L125 +typedef unsigned int ____gid_t_180;// L92:L126 +typedef unsigned long int ____ino_t_181;// L94:L127 +typedef unsigned long int ____ino64_t_182;// L109:L128 +typedef unsigned int ____mode_t_183;// L92:L129 +typedef unsigned long int ____nlink_t_184;// L94:L130 +typedef long int ____off_t_185;// L93:L131 +typedef long int ____off64_t_186;// L108:L132 +typedef int ____pid_t_187;// L91:L133 +struct ____anonymous_tag_188_189 { +int ____val_190[2];// L72 +}; +typedef struct ____anonymous_tag_188_189 ____fsid_t_191;// L72:L134 +typedef long int ____clock_t_192;// L93:L135 +typedef unsigned long int ____rlim_t_193;// L94:L136 +typedef unsigned long int ____rlim64_t_194;// L109:L137 +typedef unsigned int ____id_t_195;// L92:L138 +typedef long int ____time_t_196;// L93:L139 +typedef unsigned int ____useconds_t_197;// L92:L140 +typedef long int ____suseconds_t_198;// L93:L141 +typedef int ____daddr_t_199;// L91:L143 +typedef int ____key_t_200;// L91:L144 +typedef int ____clockid_t_201;// L91:L147 +typedef void * (____timer_t_202);// L70:L150 +typedef long int ____blksize_t_203;// L93:L153 +typedef long int ____blkcnt_t_204;// L93:L158 +typedef long int ____blkcnt64_t_205;// L108:L159 +typedef unsigned long int ____fsblkcnt_t_206;// L94:L162 +typedef unsigned long int ____fsblkcnt64_t_207;// L109:L163 +typedef unsigned long int ____fsfilcnt_t_208;// L94:L166 +typedef unsigned long int ____fsfilcnt64_t_209;// L109:L167 +typedef long int ____fsword_t_210;// L93:L170 +typedef long int ____ssize_t_211;// L110:L172 +typedef long int ____syscall_slong_t_212;// L93:L175 +typedef unsigned long int ____syscall_ulong_t_213;// L94:L177 +typedef ____off64_t_186 ____loff_t_214;// L181 +typedef ____quad_t_176 * (____qaddr_t_216);// L182 +typedef char * (____caddr_t_217);// L183 +typedef long int ____intptr_t_218;// L110:L186 +typedef unsigned int ____socklen_t_219;// L92:L189 +typedef ____u_char_9 __u_char_220;// L33 +typedef ____u_char_164 __u_char_221;// L33 +typedef ____u_short_10 __u_short_222;// L34 +typedef ____u_short_165 __u_short_223;// L34 +typedef ____u_int_11 __u_int_224;// L35 +typedef ____u_int_166 __u_int_225;// L35 +typedef ____u_long_12 __u_long_226;// L36 +typedef ____u_long_167 __u_long_227;// L36 +typedef ____quad_t_21 __quad_t_228;// L37 +typedef ____quad_t_176 __quad_t_229;// L37 +typedef ____u_quad_t_22 __u_quad_t_230;// L38 +typedef ____u_quad_t_177 __u_quad_t_231;// L38 +typedef ____fsid_t_36 __fsid_t_232;// L39 +typedef ____fsid_t_191 __fsid_t_233;// L39 +typedef ____loff_t_59 __loff_t_235;// L44 +typedef ____loff_t_214 __loff_t_236;// L44 +typedef ____loff_t_59 __loff_t_238;// L44 +typedef ____loff_t_214 __loff_t_239;// L44 +typedef ____ino64_t_27 __ino_t_241;// L50 +typedef ____ino64_t_182 __ino_t_242;// L50 +typedef ____ino_t_26 __ino_t_244;// L48 +typedef ____ino_t_181 __ino_t_245;// L48 +typedef ____dev_t_23 __dev_t_247;// L60 +typedef ____dev_t_178 __dev_t_248;// L60 +typedef ____gid_t_25 __gid_t_250;// L65 +typedef ____gid_t_180 __gid_t_251;// L65 +typedef ____gid_t_25 __gid_t_253;// L65 +typedef ____gid_t_180 __gid_t_254;// L65 +typedef ____mode_t_28 __mode_t_256;// L70 +typedef ____mode_t_183 __mode_t_257;// L70 +typedef ____nlink_t_29 __nlink_t_259;// L75 +typedef ____nlink_t_184 __nlink_t_260;// L75 +typedef ____uid_t_24 __uid_t_262;// L80 +typedef ____uid_t_179 __uid_t_263;// L80 +typedef ____uid_t_24 __uid_t_265;// L80 +typedef ____uid_t_179 __uid_t_266;// L80 +typedef ____off64_t_31 __off_t_268;// L88 +typedef ____off64_t_186 __off_t_269;// L88 +typedef ____off_t_30 __off_t_271;// L86 +typedef ____off_t_185 __off_t_272;// L86 +typedef ____pid_t_32 __pid_t_274;// L98 +typedef ____pid_t_187 __pid_t_275;// L98 +typedef ____pid_t_32 __pid_t_277;// L98 +typedef ____pid_t_187 __pid_t_278;// L98 +typedef ____id_t_40 __id_t_280;// L104 +typedef ____id_t_195 __id_t_281;// L104 +typedef ____ssize_t_56 __ssize_t_283;// L109 +typedef ____ssize_t_211 __ssize_t_284;// L109 +typedef ____daddr_t_44 __daddr_t_286;// L115 +typedef ____daddr_t_199 __daddr_t_287;// L115 +typedef ____caddr_t_62 __caddr_t_289;// L116 +typedef ____caddr_t_217 __caddr_t_290;// L116 +typedef ____key_t_45 __key_t_291;// L122 +typedef ____key_t_200 __key_t_292;// L122 +typedef ____key_t_45 __key_t_294;// L122 +typedef ____key_t_200 __key_t_295;// L122 +typedef ____clock_t_37 __clock_t_297;// L59 +typedef ____clock_t_192 __clock_t_298;// L59 +typedef ____time_t_41 __time_t_300;// L75 +typedef ____time_t_196 __time_t_301;// L75 +typedef ____clockid_t_46 __clockid_t_303;// L91 +typedef ____clockid_t_201 __clockid_t_304;// L91 +typedef ____timer_t_47 __timer_t_306;// L103 +typedef ____timer_t_202 __timer_t_307;// L103 +typedef unsigned long int __ulong_309;// L150 +typedef unsigned long int __ulong_310;// L150 +typedef unsigned long int __ulong_311;// L150 +typedef unsigned short int __ushort_312;// L151 +typedef unsigned int __uint_313;// L152 +typedef int __int8_t_314;// L188:L194 +typedef int __int16_t_315;// L188:L195 +typedef int __int32_t_316;// L188:L196 +typedef int __int64_t_317;// L188:L197 +typedef unsigned int __u_int8_t_318;// L190:L200 +typedef unsigned int __u_int16_t_319;// L190:L201 +typedef unsigned int __u_int32_t_320;// L190:L202 +typedef unsigned int __u_int64_t_321;// L190:L203 +typedef int __register_t_322;// L205 +typedef int ____sig_atomic_t_328;// L22 +struct ____anonymous_tag_329_330 { +unsigned long int ____val_331[( 1024 / ( 8 * sizeof(unsigned long) ) )];// L29 +}; +typedef struct ____anonymous_tag_329_330 ____sigset_t_332;// L27:L30 +typedef ____sigset_t_332 __sigset_t_333;// L37 +struct __timespec_334 { +____time_t_41 __tv_sec_335;// L0 +____time_t_196 __tv_sec_336;// L0 +____syscall_slong_t_57 __tv_nsec_338;// L0 +____syscall_slong_t_212 __tv_nsec_339;// L0 +}; +struct __timeval_342 { +____time_t_41 __tv_sec_343;// L0 +____time_t_196 __tv_sec_344;// L0 +____suseconds_t_43 __tv_usec_346;// L0 +____suseconds_t_198 __tv_usec_347;// L0 +}; +typedef ____suseconds_t_43 __suseconds_t_350;// L48 +typedef ____suseconds_t_198 __suseconds_t_351;// L48 +typedef long int ____fd_mask_353;// L54 +typedef long int ____fd_mask_354;// L54 +struct ____anonymous_tag_355_356 { +____fd_mask_353 ____fds_bits_357[1024 / ( 8 * ( int ) sizeof(long) )];// L0 +____fd_mask_354 ____fds_bits_359[1024 / ( 8 * ( int ) sizeof(long) )];// L0 +}; +typedef struct ____anonymous_tag_355_356 __fd_set_362;// L64:L75 +typedef ____fd_mask_353 __fd_mask_363;// L82 +typedef ____fd_mask_354 __fd_mask_364;// L82 +typedef ____blksize_t_48 __blksize_t_412;// L228 +typedef ____blksize_t_203 __blksize_t_413;// L228 +typedef ____blkcnt_t_49 __blkcnt_t_415;// L235 +typedef ____blkcnt_t_204 __blkcnt_t_416;// L235 +typedef ____fsblkcnt_t_51 __fsblkcnt_t_418;// L239 +typedef ____fsblkcnt_t_206 __fsblkcnt_t_419;// L239 +typedef ____blkcnt64_t_50 __blkcnt_t_421;// L248 +typedef ____blkcnt64_t_205 __blkcnt_t_422;// L248 +typedef ____fsblkcnt64_t_52 __fsblkcnt_t_424;// L252 +typedef ____fsblkcnt64_t_207 __fsblkcnt_t_425;// L252 +typedef ____fsfilcnt_t_53 __fsfilcnt_t_427;// L243 +typedef ____fsfilcnt_t_208 __fsfilcnt_t_428;// L243 +typedef ____fsfilcnt64_t_54 __fsfilcnt_t_430;// L256 +typedef ____fsfilcnt64_t_209 __fsfilcnt_t_431;// L256 +typedef unsigned long int __pthread_t_433;// L60 +union __pthread_attr_t_434 { +char ____size_435[56];// L65 +long int ____align_436;// L66 +}; +typedef union __pthread_attr_t_434 __pthread_attr_t_437;// L69 +struct ____pthread_internal_list_439 { +struct __forward_tag_reference_438 * (____prev_440);// L0 +struct __forward_tag_reference_438 * (____next_441);// L0 +}; +typedef struct ____pthread_internal_list_439 ____pthread_list_t_442;// L75:L79 +typedef struct ____pthread_internal_list_439 ____pthread_list_t_443;// L75:L79 +struct ____pthread_mutex_s_444 { +int ____lock_445;// L94 +unsigned int ____count_446;// L95 +int ____owner_447;// L96 +unsigned int ____nusers_448;// L98 +int ____kind_449;// L102 +short ____spins_450;// L104 +short ____elision_451;// L105 +____pthread_list_t_442 ____list_452;// L0 +____pthread_list_t_443 ____list_453;// L0 +}; +union ____anonymous_tag_454_455 { +struct ____pthread_mutex_s_444 ____data_456;// L92 +char ____size_457[40];// L126 +long int ____align_458;// L127 +}; +typedef union ____anonymous_tag_454_455 __pthread_mutex_t_459;// L90:L128 +union ____anonymous_tag_460_461 { +char ____size_462[4];// L132 +int ____align_463;// L133 +}; +typedef union ____anonymous_tag_460_461 __pthread_mutexattr_t_464;// L130:L134 +typedef int (* (____compar_fn_t_572)) (const void *, const void *);// L741 + +struct __forward_tag_reference_438 { // generated union of struct variations +union { }; -typedef struct ____anonymous_tag_8_9 __ldiv_t_12;// L105:L109 -struct ____anonymous_tag_13_14 { -long long int __quot_15;// L119 -long long int __rem_16;// L120 }; -typedef struct ____anonymous_tag_13_14 __lldiv_t_17;// L117:L121 -typedef int (* (____compar_fn_t_100)) (const void *, const void *);// L741 // typedef moved to top of scope // typedef moved to top of scope @@ -171,230 +864,584 @@ typedef int (* (____compar_fn_t_100)) (const void *, const void *);// L741 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern __size_t_1 (____ctype_get_mb_cur_max_18) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_19) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_20) (void );// L139 -extern __size_t_1 (____ctype_get_mb_cur_max_21) (void );// L139 -extern double (__atof_23) (const char * (____nptr_22));// L144:L145 -extern double (__atof_24) (const char * (____nptr_22));// L144:L145 -extern int (__atoi_26) (const char * (____nptr_25));// L147:L148 -extern int (__atoi_27) (const char * (____nptr_25));// L147:L148 -extern long int (__atol_29) (const char * (____nptr_28));// L150:L151 -extern long int (__atol_30) (const char * (____nptr_28));// L150:L151 -extern long long int (__atoll_32) (const char * (____nptr_31));// L157:L158 -extern long long int (__atoll_33) (const char * (____nptr_31));// L157:L158 -extern double (__strtod_36) (const char * __restrict ____nptr_34, char * (* __restrict ____endptr_35));// L164:L166 -extern float (__strtof_39) (const char * __restrict ____nptr_37, char * (* __restrict ____endptr_38));// L172:L173 -extern long double (__strtold_42) (const char * __restrict ____nptr_40, char * (* __restrict ____endptr_41));// L175:L177 -extern long int (__strtol_46) (const char * __restrict ____nptr_43, char * (* __restrict ____endptr_44), int ____base_45);// L183:L185 -extern unsigned long int (__strtoul_50) (const char * __restrict ____nptr_47, char * (* __restrict ____endptr_48), int ____base_49);// L187:L189 -extern long long int (__strtoll_54) (const char * __restrict ____nptr_51, char * (* __restrict ____endptr_52), int ____base_53);// L209:L211 -extern unsigned long long int (__strtoull_58) (const char * __restrict ____nptr_55, char * (* __restrict ____endptr_56), int ____base_57);// L214:L216 -/* no function due to type errors in the function prototype */ -/* no function due to type errors in the function prototype */ -__extension__/* no function due to type errors in the function prototype */ -extern int (__rand_62) (void );// L374 -extern int (__rand_63) (void );// L374 -extern void (__srand_65) (unsigned int ____seed_64);// L376 -extern void * ((__malloc_67) (__size_t_1 ____size_66));// L466 -extern void * ((__malloc_68) (__size_t_1 ____size_66));// L466 -extern void * ((__calloc_71) (__size_t_1 ____nmemb_69, __size_t_1 ____size_70));// L468:L469 -extern void * ((__calloc_72) (__size_t_1 ____nmemb_69, __size_t_1 ____size_70));// L468:L469 -extern void * ((__realloc_75) (void * (____ptr_73), __size_t_1 ____size_74));// L480:L481 -extern void * ((__realloc_76) (void * (____ptr_73), __size_t_1 ____size_74));// L480:L481 -extern void (__free_78) (void * (____ptr_77));// L483 -extern void * ((__aligned_alloc_81) (__size_t_1 ____alignment_79, __size_t_1 ____size_80));// L509:L510 -extern void * ((__aligned_alloc_82) (__size_t_1 ____alignment_79, __size_t_1 ____size_80));// L509:L510 -extern void (__abort_83) (void );// L515 -extern int (__atexit_85) (void (* (____func_84)) (void ));// L519 -extern int (__at_quick_exit_87) (void (* (____func_86)) (void ));// L527 -extern void (__exit_89) (int ____status_88);// L543 -extern void (__quick_exit_91) (int ____status_90);// L549 -extern void (___Exit_93) (int ____status_92);// L557 -extern char * ((__getenv_95) (const char * (____name_94)));// L564 -extern char * ((__getenv_96) (const char * (____name_94)));// L564 -extern int (__system_98) (const char * (____command_97));// L716 -extern int (__system_99) (const char * (____command_97));// L716 -// typedef moved to top of scope -extern void * ((__bsearch_108) (const void * (____key_101), const void * (____base_102), __size_t_1 ____nmemb_103, __size_t_1 ____size_104, ____compar_fn_t_100 ____compar_105));// L754:L756 -extern void * ((__bsearch_110) (const void * (____key_101), const void * (____base_102), __size_t_1 ____nmemb_103, __size_t_1 ____size_104, ____compar_fn_t_100 ____compar_105));// L754:L756 -/* no function due to type errors in the function prototype */ -extern void (__qsort_129) (void * (____base_124), __size_t_1 ____nmemb_125, __size_t_1 ____size_126, ____compar_fn_t_100 ____compar_127);// L764:L765 -extern void (__qsort_131) (void * (____base_124), __size_t_1 ____nmemb_125, __size_t_1 ____size_126, ____compar_fn_t_100 ____compar_127);// L764:L765 -extern int (__abs_134) (int ____x_133);// L774 -extern int (__abs_135) (int ____x_133);// L774 -extern long int (__labs_137) (long int ____x_136);// L775 -extern long int (__labs_138) (long int ____x_136);// L775 -extern long long int (__llabs_140) (long long int ____x_139);// L779:L780 -extern long long int (__llabs_141) (long long int ____x_139);// L779:L780 -extern __div_t_7 (__div_144) (int ____numer_142, int ____denom_143);// L788:L789 -extern __div_t_7 (__div_145) (int ____numer_142, int ____denom_143);// L788:L789 -extern __ldiv_t_12 (__ldiv_148) (long int ____numer_146, long int ____denom_147);// L790:L791 -extern __ldiv_t_12 (__ldiv_150) (long int ____numer_146, long int ____denom_147);// L790:L791 -extern __lldiv_t_17 (__lldiv_154) (long long int ____numer_152, long long int ____denom_153);// L796:L798 -extern __lldiv_t_17 (__lldiv_156) (long long int ____numer_152, long long int ____denom_153);// L796:L798 -extern int (__mblen_160) (const char * (____s_158), __size_t_1 ____n_159);// L862 -extern int (__mbtowc_164) (__wchar_t_2 * __restrict ____pwc_161, const char * __restrict ____s_162, __size_t_1 ____n_163);// L865:L866 -extern int (__wctomb_167) (char * (____s_165), __wchar_t_2 ____wchar_166);// L869 -extern __size_t_1 (__mbstowcs_171) (__wchar_t_2 * __restrict ____pwcs_168, const char * __restrict ____s_169, __size_t_1 ____n_170);// L873:L874 -extern __size_t_1 (__wcstombs_175) (char * __restrict ____s_172, const __wchar_t_2 * __restrict ____pwcs_173, __size_t_1 ____n_174);// L876:L878 -/* no function due to type errors in the function prototype */ -extern char * ((____realpath_chk_180) (const char * __restrict ____name_177, char * __restrict ____resolved_178, __size_t_1 ____resolvedlen_179));// L23:L25 -extern char * ((____realpath_alias_183) (const char * __restrict ____name_181, char * __restrict ____resolved_182));// L26:L28 -extern char * ((____realpath_chk_warn_187) (const char * __restrict ____name_184, char * __restrict ____resolved_185, __size_t_1 ____resolvedlen_186));// L29:L34 -/* no function due to type errors in the function prototype */ -extern int (____ptsname_r_chk_195) (int ____fd_191, char * (____buf_192), __size_t_1 ____buflen_193, __size_t_1 ____nreal_194);// L52:L53 -extern int (____ptsname_r_alias_199) (int ____fd_196, char * (____buf_197), __size_t_1 ____buflen_198);// L54:L56 -extern int (____ptsname_r_chk_warn_204) (int ____fd_200, char * (____buf_201), __size_t_1 ____buflen_202, __size_t_1 ____nreal_203);// L57:L61 -/* no function due to type errors in the function prototype */ -extern int (____wctomb_chk_212) (char * (____s_209), __wchar_t_2 ____wchar_210, __size_t_1 ____buflen_211);// L77:L78 -extern int (____wctomb_alias_215) (char * (____s_213), __wchar_t_2 ____wchar_214);// L79:L80 -/* no function due to type errors in the function prototype */ -extern __size_t_1 (____mbstowcs_chk_222) (__wchar_t_2 * __restrict ____dst_218, const char * __restrict ____src_219, __size_t_1 ____len_220, __size_t_1 ____dstlen_221);// L98:L100 -extern __size_t_1 (____mbstowcs_alias_226) (__wchar_t_2 * __restrict ____dst_223, const char * __restrict ____src_224, __size_t_1 ____len_225);// L101:L104 -extern __size_t_1 (____mbstowcs_chk_warn_231) (__wchar_t_2 * __restrict ____dst_227, const char * __restrict ____src_228, __size_t_1 ____len_229, __size_t_1 ____dstlen_230);// L105:L110 -/* no function due to type errors in the function prototype */ -extern __size_t_1 (____wcstombs_chk_239) (char * __restrict ____dst_235, const __wchar_t_2 * __restrict ____src_236, __size_t_1 ____len_237, __size_t_1 ____dstlen_238);// L130:L132 -extern __size_t_1 (____wcstombs_alias_243) (char * __restrict ____dst_240, const __wchar_t_2 * __restrict ____src_241, __size_t_1 ____len_242);// L133:L136 -extern __size_t_1 (____wcstombs_chk_warn_248) (char * __restrict ____dst_244, const __wchar_t_2 * __restrict ____src_245, __size_t_1 ____len_246, __size_t_1 ____dstlen_247);// L137:L141 -/* no function due to type errors in the function prototype */ -static inline void (__spin_lock_irq_252) () { +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +static __inline unsigned int (____bswap_32_66) (unsigned int ____bsx_65) { -if (__static_condition_default_254) { +if (__static_condition_default_67) { { { - ; // L10 +__static_type_error("invalid type found in return expression"); } } } } -static inline void (__spin_lock_irq_253) () { +static __inline ____uint64_t_20 (____bswap_64_69) (____uint64_t_20 ____bsx_68) { -if (__static_condition_default_255) { +if (__static_condition_default_67) { { { - ; // L10 +__static_type_error("invalid type found in return expression"); } } } } -static inline void (__spin_unlock_irq_256) () { +union __wait_81 ;// L66 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern __size_t_1 (____ctype_get_mb_cur_max_105) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_106) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_107) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_108) (void );// L139 +extern double (__atof_110) (const char * (____nptr_109));// L144:L145 +extern double (__atof_111) (const char * (____nptr_109));// L144:L145 +extern int (__atoi_113) (const char * (____nptr_112));// L147:L148 +extern int (__atoi_114) (const char * (____nptr_112));// L147:L148 +extern long int (__atol_116) (const char * (____nptr_115));// L150:L151 +extern long int (__atol_117) (const char * (____nptr_115));// L150:L151 +extern long long int (__atoll_119) (const char * (____nptr_118));// L157:L158 +extern long long int (__atoll_120) (const char * (____nptr_118));// L157:L158 +extern double (__strtod_123) (const char * __restrict ____nptr_121, char * (* __restrict ____endptr_122));// L164:L166 +extern float (__strtof_126) (const char * __restrict ____nptr_124, char * (* __restrict ____endptr_125));// L172:L173 +extern long double (__strtold_129) (const char * __restrict ____nptr_127, char * (* __restrict ____endptr_128));// L175:L177 +extern long int (__strtol_133) (const char * __restrict ____nptr_130, char * (* __restrict ____endptr_131), int ____base_132);// L183:L185 +extern unsigned long int (__strtoul_137) (const char * __restrict ____nptr_134, char * (* __restrict ____endptr_135), int ____base_136);// L187:L189 +extern long long int (__strtoq_141) (const char * __restrict ____nptr_138, char * (* __restrict ____endptr_139), int ____base_140);// L195:L197 +extern unsigned long long int (__strtouq_145) (const char * __restrict ____nptr_142, char * (* __restrict ____endptr_143), int ____base_144);// L200:L202 +extern long long int (__strtoll_149) (const char * __restrict ____nptr_146, char * (* __restrict ____endptr_147), int ____base_148);// L209:L211 +extern long long int (__strtoll_150) (const char * __restrict ____nptr_146, char * (* __restrict ____endptr_147), int ____base_148);// L209:L211 +extern unsigned long long int (__strtoull_154) (const char * __restrict ____nptr_151, char * (* __restrict ____endptr_152), int ____base_153);// L214:L216 +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +__extension__/* no function due to type errors in the function prototype */ +extern char * ((__l64a_159) (long int ____n_158));// L305 +extern char * ((__l64a_160) (long int ____n_158));// L305 +extern long int (__a64l_162) (const char * (____s_161));// L308:L309 +extern long int (__a64l_163) (const char * (____s_161));// L308:L309 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +static __inline unsigned int (____bswap_32_324) (unsigned int ____bsx_323) { + +if (__static_condition_default_325) { { { - ; // L15 +__static_type_error("invalid type found in return expression"); } } } -static inline void (__spin_lock_bh_257) () { +} +static __inline ____uint64_t_175 (____bswap_64_327) (____uint64_t_175 ____bsx_326) { + +if (__static_condition_default_325) { { { - ; // L20 +__static_type_error("invalid type found in return expression"); } } } -static inline void (__spin_unlock_bh_258) () { +} +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +struct __timespec_334 ;// L120 + +struct __timeval_342 ;// L30 + +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern int (__select_376) (int ____nfds_365, __fd_set_362 * __restrict ____readfds_366, __fd_set_362 * __restrict ____writefds_368, __fd_set_362 * __restrict ____exceptfds_370, struct __timeval_342 * __restrict ____timeout_373);// L106:L109 +extern int (__select_377) (int ____nfds_365, __fd_set_362 * __restrict ____readfds_366, __fd_set_362 * __restrict ____writefds_368, __fd_set_362 * __restrict ____exceptfds_370, struct __forward_tag_reference_372 * __restrict ____timeout_375);// L106:L109 +extern int (__pselect_392) (int ____nfds_380, __fd_set_362 * __restrict ____readfds_381, __fd_set_362 * __restrict ____writefds_383, __fd_set_362 * __restrict ____exceptfds_385, const struct __timespec_334 * __restrict ____timeout_388, const ____sigset_t_332 * __restrict ____sigmask_391);// L118:L122 +extern int (__pselect_393) (int ____nfds_380, __fd_set_362 * __restrict ____readfds_381, __fd_set_362 * __restrict ____writefds_383, __fd_set_362 * __restrict ____exceptfds_385, const struct __forward_tag_reference_387 * __restrict ____timeout_390, const ____sigset_t_332 * __restrict ____sigmask_391);// L118:L122 +extern long int (____fdelt_chk_397) (long int ____d_396);// L24 +extern long int (____fdelt_warn_399) (long int ____d_398);// L25:L26 +extern unsigned int (__gnu_dev_major_401) (unsigned long long int ____dev_400);// L27:L28 +extern unsigned int (__gnu_dev_major_402) (unsigned long long int ____dev_400);// L27:L28 +extern unsigned int (__gnu_dev_minor_404) (unsigned long long int ____dev_403);// L30:L31 +extern unsigned long long int (__gnu_dev_makedev_407) (unsigned int ____major_405, unsigned int ____minor_406);// L33:L35 +__extension__/* no function due to type errors in the function prototype */ +__extension__/* no function due to type errors in the function prototype */ +__extension__/* no function due to type errors in the function prototype */ +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +union __pthread_attr_t_434 ;// L63 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern int (__rand_465) (void );// L374 +extern void (__srand_467) (unsigned int ____seed_466);// L376 +extern int (__rand_r_469) (unsigned int * (____seed_468));// L381 +extern double (__drand48_470) (void );// L389 +extern double (__erand48_472) (unsigned short int ____xsubi_471[3]);// L390 +extern long int (__lrand48_473) (void );// L393 +extern long int (__nrand48_475) (unsigned short int ____xsubi_474[3]);// L394:L395 +extern long int (__mrand48_476) (void );// L398 +extern long int (__jrand48_478) (unsigned short int ____xsubi_477[3]);// L399:L400 +extern void (__srand48_480) (long int ____seedval_479);// L403 +extern unsigned short int * ((__seed48_482) (unsigned short int ____seed16v_481[3]));// L404:L405 +extern void (__lcong48_484) (unsigned short int ____param_483[7]);// L406 +extern void * ((__malloc_486) (__size_t_1 ____size_485));// L466 +extern void * ((__malloc_487) (__size_t_1 ____size_485));// L466 +extern void * ((__calloc_490) (__size_t_1 ____nmemb_488, __size_t_1 ____size_489));// L468:L469 +extern void * ((__calloc_491) (__size_t_1 ____nmemb_488, __size_t_1 ____size_489));// L468:L469 +extern void * ((__realloc_494) (void * (____ptr_492), __size_t_1 ____size_493));// L480:L481 +extern void (__free_496) (void * (____ptr_495));// L483 +extern void (__cfree_498) (void * (____ptr_497));// L488 +extern void * ((__alloca_500) (__size_t_1 ____size_499));// L32 +extern void * ((__valloc_502) (__size_t_1 ____size_501));// L498 +extern void * ((__valloc_503) (__size_t_1 ____size_501));// L498 +extern int (__posix_memalign_507) (void * (* (____memptr_504)), __size_t_1 ____alignment_505, __size_t_1 ____size_506);// L503:L504 +extern int (__posix_memalign_508) (void * (* (____memptr_504)), __size_t_1 ____alignment_505, __size_t_1 ____size_506);// L503:L504 +extern void * ((__aligned_alloc_511) (__size_t_1 ____alignment_509, __size_t_1 ____size_510));// L509:L510 +extern void * ((__aligned_alloc_512) (__size_t_1 ____alignment_509, __size_t_1 ____size_510));// L509:L510 +extern void * ((__aligned_alloc_513) (__size_t_1 ____alignment_509, __size_t_1 ____size_510));// L509:L510 +extern void * ((__aligned_alloc_514) (__size_t_1 ____alignment_509, __size_t_1 ____size_510));// L509:L510 +extern void (__abort_515) (void );// L515 +extern int (__atexit_517) (void (* (____func_516)) (void ));// L519 +extern int (__at_quick_exit_519) (void (* (____func_518)) (void ));// L527 +extern int (__on_exit_524) (void (* (____func_522)) (int ____status_520, void * (____arg_521)), void * (____arg_523));// L535:L536 +extern void (__exit_526) (int ____status_525);// L543 +extern void (__exit_527) (int ____status_525);// L543 +extern void (__quick_exit_529) (int ____status_528);// L549 +extern void (___Exit_531) (int ____status_530);// L557 +extern char * ((__getenv_533) (const char * (____name_532)));// L564 +extern char * ((__getenv_534) (const char * (____name_532)));// L564 +extern int (__putenv_536) (char * (____string_535));// L578 +extern int (__setenv_540) (const char * (____name_537), const char * (____value_538), int ____replace_539);// L584:L585 +extern int (__unsetenv_542) (const char * (____name_541));// L588 +extern int (__clearenv_543) (void );// L595 +extern char * ((__mktemp_545) (char * (____template_544)));// L606 +extern int (__mkstemp_548) (char * (____template_546));// L619 +extern int (__mkstemp_550) (char * (____template_546));// L619 +extern int (__mkstemp_549) (char * (____template_547));// L622:L623 +extern int (__mkstemp_551) (char * (____template_547));// L622:L623 +extern int (__mkstemps_556) (char * (____template_552), int ____suffixlen_553);// L641 +extern int (__mkstemps_557) (char * (____template_554), int ____suffixlen_555);// L644:L645 +extern int (__mkstemps_558) (char * (____template_552), int ____suffixlen_553);// L641 +extern int (__mkstemps_559) (char * (____template_554), int ____suffixlen_555);// L644:L645 +extern char * ((__mkdtemp_561) (char * (____template_560)));// L662 +extern char * ((__mkdtemp_562) (char * (____template_560)));// L662 +extern int (__system_564) (const char * (____command_563));// L716 +extern int (__system_565) (const char * (____command_563));// L716 +extern int (__system_566) (const char * (____command_563));// L716 +extern int (__system_567) (const char * (____command_563));// L716 +extern char * ((__realpath_570) (const char * __restrict ____name_568, char * __restrict ____resolved_569));// L733:L734 +extern char * ((__realpath_571) (const char * __restrict ____name_568, char * __restrict ____resolved_569));// L733:L734 +// typedef moved to top of scope +extern void * ((__bsearch_580) (const void * (____key_573), const void * (____base_574), __size_t_1 ____nmemb_575, __size_t_1 ____size_576, ____compar_fn_t_572 ____compar_577));// L754:L756 +extern void * ((__bsearch_582) (const void * (____key_573), const void * (____base_574), __size_t_1 ____nmemb_575, __size_t_1 ____size_576, ____compar_fn_t_572 ____compar_577));// L754:L756 +/* no function due to type errors in the function prototype */ +extern void (__qsort_601) (void * (____base_596), __size_t_1 ____nmemb_597, __size_t_1 ____size_598, ____compar_fn_t_572 ____compar_599);// L764:L765 +extern void (__qsort_603) (void * (____base_596), __size_t_1 ____nmemb_597, __size_t_1 ____size_598, ____compar_fn_t_572 ____compar_599);// L764:L765 +extern int (__abs_606) (int ____x_605);// L774 +extern int (__abs_607) (int ____x_605);// L774 +extern long int (__labs_609) (long int ____x_608);// L775 +extern long int (__labs_610) (long int ____x_608);// L775 +extern long long int (__llabs_612) (long long int ____x_611);// L779:L780 +extern long long int (__llabs_613) (long long int ____x_611);// L779:L780 +extern __div_t_94 (__div_616) (int ____numer_614, int ____denom_615);// L788:L789 +extern __div_t_94 (__div_617) (int ____numer_614, int ____denom_615);// L788:L789 +extern __ldiv_t_99 (__ldiv_620) (long int ____numer_618, long int ____denom_619);// L790:L791 +extern __ldiv_t_99 (__ldiv_622) (long int ____numer_618, long int ____denom_619);// L790:L791 +extern __lldiv_t_104 (__lldiv_626) (long long int ____numer_624, long long int ____denom_625);// L796:L798 +extern __lldiv_t_104 (__lldiv_628) (long long int ____numer_624, long long int ____denom_625);// L796:L798 +extern char * ((__ecvt_634) (double ____value_630, int ____ndigit_631, int * __restrict ____decpt_632, int * __restrict ____sign_633));// L811:L812 +extern char * ((__ecvt_635) (double ____value_630, int ____ndigit_631, int * __restrict ____decpt_632, int * __restrict ____sign_633));// L811:L812 +extern char * ((__fcvt_640) (double ____value_636, int ____ndigit_637, int * __restrict ____decpt_638, int * __restrict ____sign_639));// L817:L818 +extern char * ((__fcvt_641) (double ____value_636, int ____ndigit_637, int * __restrict ____decpt_638, int * __restrict ____sign_639));// L817:L818 +extern char * ((__gcvt_645) (double ____value_642, int ____ndigit_643, char * (____buf_644)));// L823:L824 +extern char * ((__gcvt_646) (double ____value_642, int ____ndigit_643, char * (____buf_644)));// L823:L824 +extern char * ((__qecvt_651) (long double ____value_647, int ____ndigit_648, int * __restrict ____decpt_649, int * __restrict ____sign_650));// L829:L831 +extern char * ((__qecvt_652) (long double ____value_647, int ____ndigit_648, int * __restrict ____decpt_649, int * __restrict ____sign_650));// L829:L831 +extern char * ((__qfcvt_657) (long double ____value_653, int ____ndigit_654, int * __restrict ____decpt_655, int * __restrict ____sign_656));// L832:L834 +extern char * ((__qfcvt_658) (long double ____value_653, int ____ndigit_654, int * __restrict ____decpt_655, int * __restrict ____sign_656));// L832:L834 +extern char * ((__qgcvt_662) (long double ____value_659, int ____ndigit_660, char * (____buf_661)));// L835:L836 +extern char * ((__qgcvt_663) (long double ____value_659, int ____ndigit_660, char * (____buf_661)));// L835:L836 +extern int (__ecvt_r_670) (double ____value_664, int ____ndigit_665, int * __restrict ____decpt_666, int * __restrict ____sign_667, char * __restrict ____buf_668, __size_t_1 ____len_669);// L841:L843 +extern int (__fcvt_r_677) (double ____value_671, int ____ndigit_672, int * __restrict ____decpt_673, int * __restrict ____sign_674, char * __restrict ____buf_675, __size_t_1 ____len_676);// L844:L846 +extern int (__qecvt_r_684) (long double ____value_678, int ____ndigit_679, int * __restrict ____decpt_680, int * __restrict ____sign_681, char * __restrict ____buf_682, __size_t_1 ____len_683);// L848:L851 +extern int (__qfcvt_r_691) (long double ____value_685, int ____ndigit_686, int * __restrict ____decpt_687, int * __restrict ____sign_688, char * __restrict ____buf_689, __size_t_1 ____len_690);// L852:L855 +extern int (__mblen_694) (const char * (____s_692), __size_t_1 ____n_693);// L862 +extern int (__mblen_695) (const char * (____s_692), __size_t_1 ____n_693);// L862 +extern int (__mbtowc_699) (__wchar_t_2 * __restrict ____pwc_696, const char * __restrict ____s_697, __size_t_1 ____n_698);// L865:L866 +extern int (__wctomb_702) (char * (____s_700), __wchar_t_2 ____wchar_701);// L869 +extern __size_t_1 (__mbstowcs_706) (__wchar_t_2 * __restrict ____pwcs_703, const char * __restrict ____s_704, __size_t_1 ____n_705);// L873:L874 +extern __size_t_1 (__wcstombs_710) (char * __restrict ____s_707, const __wchar_t_2 * __restrict ____pwcs_708, __size_t_1 ____n_709);// L876:L878 +extern int (__rpmatch_713) (const char * (____response_711));// L887 +extern int (__rpmatch_712) (const char * (____response_711));// L887 +extern int (__getsubopt_718) (char * (* __restrict ____optionp_714), char * const * __restrict ____tokens_715, char * (* __restrict ____valuep_716));// L898:L901 +extern int (__getsubopt_717) (char * (* __restrict ____optionp_714), char * const * __restrict ____tokens_715, char * (* __restrict ____valuep_716));// L898:L901 +extern int (__getloadavg_721) (double ____loadavg_719[], int ____nelem_720);// L950:L951 +/* no function due to type errors in the function prototype */ +extern char * ((____realpath_chk_726) (const char * __restrict ____name_723, char * __restrict ____resolved_724, __size_t_1 ____resolvedlen_725));// L23:L25 +extern char * ((____realpath_alias_729) (const char * __restrict ____name_727, char * __restrict ____resolved_728));// L26:L28 +extern char * ((____realpath_chk_warn_733) (const char * __restrict ____name_730, char * __restrict ____resolved_731, __size_t_1 ____resolvedlen_732));// L29:L34 +/* no function due to type errors in the function prototype */ +extern int (____ptsname_r_chk_741) (int ____fd_737, char * (____buf_738), __size_t_1 ____buflen_739, __size_t_1 ____nreal_740);// L52:L53 +extern int (____ptsname_r_alias_745) (int ____fd_742, char * (____buf_743), __size_t_1 ____buflen_744);// L54:L56 +extern int (____ptsname_r_chk_warn_750) (int ____fd_746, char * (____buf_747), __size_t_1 ____buflen_748, __size_t_1 ____nreal_749);// L57:L61 +/* no function due to type errors in the function prototype */ +extern int (____wctomb_chk_758) (char * (____s_755), __wchar_t_2 ____wchar_756, __size_t_1 ____buflen_757);// L77:L78 +extern int (____wctomb_alias_761) (char * (____s_759), __wchar_t_2 ____wchar_760);// L79:L80 +/* no function due to type errors in the function prototype */ +extern __size_t_1 (____mbstowcs_chk_768) (__wchar_t_2 * __restrict ____dst_764, const char * __restrict ____src_765, __size_t_1 ____len_766, __size_t_1 ____dstlen_767);// L98:L100 +extern __size_t_1 (____mbstowcs_alias_772) (__wchar_t_2 * __restrict ____dst_769, const char * __restrict ____src_770, __size_t_1 ____len_771);// L101:L104 +extern __size_t_1 (____mbstowcs_chk_warn_777) (__wchar_t_2 * __restrict ____dst_773, const char * __restrict ____src_774, __size_t_1 ____len_775, __size_t_1 ____dstlen_776);// L105:L110 +/* no function due to type errors in the function prototype */ +extern __size_t_1 (____wcstombs_chk_785) (char * __restrict ____dst_781, const __wchar_t_2 * __restrict ____src_782, __size_t_1 ____len_783, __size_t_1 ____dstlen_784);// L130:L132 +extern __size_t_1 (____wcstombs_alias_789) (char * __restrict ____dst_786, const __wchar_t_2 * __restrict ____src_787, __size_t_1 ____len_788);// L133:L136 +extern __size_t_1 (____wcstombs_chk_warn_794) (char * __restrict ____dst_790, const __wchar_t_2 * __restrict ____src_791, __size_t_1 ____len_792, __size_t_1 ____dstlen_793);// L137:L141 +/* no function due to type errors in the function prototype */ +static inline void (__spin_lock_irq_798) () { + +if (__static_condition_default_801) { { { - ; // L25 + ; // L10 } } } -static inline void (__kunmap_skb_frag_259) () { +} +static inline void (__spin_lock_irq_799) () { -{ -if (__static_condition_default_260) { +if (__static_condition_default_802) { { { + ; // L10 } } } +} +static inline void (__spin_lock_irq_800) () { -if (__static_condition_default_261) { +if (__static_condition_default_803) { { { - ; // L31 + ; // L10 } } } - -}} -unsigned int (__skb_checksum_263) () { +} +static inline void (__spin_unlock_irq_804) () { { { -unsigned int __csum_262= 0;// L37 + ; // L15 +} +} -if (__static_condition_default_264) { -while ( rand( ) % 2 )// L39 + +} +static inline void (__spin_lock_bh_805) () { + +{ { + + + ; // L20 +} +} + + +} +static inline void (__spin_unlock_bh_806) () { + { { -if ( rand( ) % 2 )// L40 + ; // L25 +} +} + + +} +static inline void (__kunmap_skb_frag_807) () { + { +if (__static_condition_default_808) { { { - __kunmap_skb_frag_259 ( ) ; // L41 -} } } + + } + +if (__static_condition_default_809) { + +{ +{ + + + + ; // L31 } } + + } -if (__static_condition_default_265) { + +}} +unsigned int (__skb_checksum_811) () { + +{ +{ + + + +unsigned int __csum_810= 0;// L37 + +if (__static_condition_default_812) { while ( rand( ) % 2 )// L39 { @@ -411,63 +1458,55 @@ if ( rand( ) % 2 )// L40 - __kunmap_skb_frag_259 ( ) ; // L41 + __kunmap_skb_frag_807 ( ) ; // L41 +} } } } } } } +if (__static_condition_default_813) { +__static_type_error("invalid type found in while statement"); } -return __csum_262 ;// L45 +return __csum_810 ;// L45 } } } -static int (__udp_checksum_complete_266) () { +static int (__udp_checksum_complete_814) () { { { -return __skb_checksum_263 ( ) ;// L50 +return __skb_checksum_811 ( ) ;// L50 } } } -unsigned int (__udp_poll_268) () { +unsigned int (__udp_poll_816) () { { { -unsigned int __mask_267= 0;// L55 +unsigned int __mask_815= 0;// L55 -if (__static_condition_default_254) { - __spin_lock_irq_252 ( ) ; // L57 -} -if (__static_condition_default_255) { - __spin_lock_irq_253 ( ) ; // L57 -} -if (__static_condition_default_264) { -while ( rand( ) % 2 )// L58 -{ - -{ -{ - - - - __udp_checksum_complete_266 ( ) ; // L59 +if (__static_condition_default_817) { + __spin_lock_irq_798 ( ) ; // L57 } +if (__static_condition_default_818) { + __spin_lock_irq_799 ( ) ; // L57 } +if (__static_condition_default_803) { + __spin_lock_irq_800 ( ) ; // L57 } -} -if (__static_condition_default_265) { +if (__static_condition_default_812) { while ( rand( ) % 2 )// L58 { @@ -476,26 +1515,29 @@ while ( rand( ) % 2 )// L58 - __udp_checksum_complete_266 ( ) ; // L59 + __udp_checksum_complete_814 ( ) ; // L59 +} } } } +if (__static_condition_default_819) { +__static_type_error("invalid type found in while statement"); } - __spin_unlock_irq_256 ( ) ; // L61 -return __mask_267 ;// L63 + __spin_unlock_irq_804 ( ) ; // L61 +return __mask_815 ;// L63 } } } -int (__main_271) (int __argc_269, char * (* (__argv_270))) { +int (__main_822) (int __argc_820, char * (* (__argv_821))) { { { - __udp_poll_268 ( ) ; // L68 + __udp_poll_816 ( ) ; // L68 return 0 ;// L69 } } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/208d89843b7.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/208d89843b7.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/208d89843b7.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/208d89843b7.inferres b/fonda/cpp_testsuite/varBugs/LINUX/208d89843b7.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/208d89843b7.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/218ad12f42e.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/218ad12f42e.desugared.c index b7049ea7..f75de607 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/218ad12f42e.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/218ad12f42e.desugared.c @@ -7,10 +7,10 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_11; -extern const bool __static_condition_default_10; -extern const bool __static_condition_default_8; extern const bool __static_condition_default_7; +extern const bool __static_condition_default_8; +extern const bool __static_condition_default_10; +extern const bool __static_condition_default_11; void __static_initializer_default() { __static_renaming("__malloc_1", "malloc"); __static_renaming("__free_3", "free"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/218ad12f42e.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/218ad12f42e.desugared.inferres new file mode 100644 index 00000000..9539e29b --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/218ad12f42e.desugared.inferres @@ -0,0 +1,22 @@ + +LINUX/218ad12f42e.desugared.c:63: error: Memory Leak + Memory dynamically allocated by `malloc` on line 42 is not freed after the last access at line 63, column 1. + 61. + 62. + 63. } + ^ + 64. void (__inet_ehash_locks_free_9) () { + 65. + +LINUX/218ad12f42e.desugared.c:123: error: Memory Leak + Memory dynamically allocated by `malloc`, indirectly via call to `__inet_ehash_locks_alloc_6()` on line 116 is not freed after the last access at line 123, column 1. + 121. + 122. + 123. } + ^ + 124. + + +Found 2 issues + Issue Type(ISSUED_TYPE_ID): # + Memory Leak(MEMORY_LEAK_C): 2 diff --git a/fonda/cpp_testsuite/varBugs/LINUX/218ad12f42e.inferres b/fonda/cpp_testsuite/varBugs/LINUX/218ad12f42e.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/218ad12f42e.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/221ac329e93.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/221ac329e93.desugared.c index cdbb67fc..a3cb59d9 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/221ac329e93.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/221ac329e93.desugared.c @@ -7,575 +7,774 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_1242; -extern const bool __static_condition_default_1117; -extern const bool __static_condition_default_1428; -extern const bool __static_condition_default_780; -extern const bool __static_condition_default_1841; -extern const bool __static_condition_default_3703; -extern const bool __static_condition_default_2525; -extern const bool __static_condition_default_1135; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_1153; -extern const bool __static_condition_default_1494; -extern const bool __static_condition_default_1765; -extern const bool __static_condition_default_1067; -extern const bool __static_condition_default_2485; -extern const bool __static_condition_default_821; -extern const bool __static_condition_default_1171; -extern const bool __static_condition_default_3712; -extern const bool __static_condition_default_2701; -extern const bool __static_condition_default_1086; -extern const bool __static_condition_default_2618; -extern const bool __static_condition_default_1235; -extern const bool __static_condition_default_2534; -extern const bool __static_condition_default_1383; -extern const bool __static_condition_default_1533; -extern const bool __static_condition_default_3719; -extern const bool __static_condition_default_1483; -extern const bool __static_condition_default_1399; -extern const bool __static_condition_default_2909; -extern const bool __static_condition_default_2226; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_1894; -extern const bool __static_condition_default_1597; -extern const bool __static_condition_default_2697; -extern const bool __static_condition_default_2527; -extern const bool __static_condition_default_3697; -extern const bool __static_condition_default_2918; -extern const bool __static_condition_default_1150; -extern const bool __static_condition_default_2134; -extern const bool __static_condition_default_2376; -extern const bool __static_condition_default_2550; -extern const bool __static_condition_default_2389; -extern const bool __static_condition_default_2235; -extern const bool __static_condition_default_2665; -extern const bool __static_condition_default_1197; -extern const bool __static_condition_default_1864; -extern const bool __static_condition_default_1403; -extern const bool __static_condition_default_1479; -extern const bool __static_condition_default_1333; -extern const bool __static_condition_default_1624; -extern const bool __static_condition_default_2143; -extern const bool __static_condition_default_3718; -extern const bool __static_condition_default_2391; -extern const bool __static_condition_default_1279; -extern const bool __static_condition_default_3396; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_1268; -extern const bool __static_condition_default_3694; -extern const bool __static_condition_default_3731; -extern const bool __static_condition_default_1534; -extern const bool __static_condition_default_2216; -extern const bool __static_condition_default_2582; -extern const bool __static_condition_default_2622; -extern const bool __static_condition_default_3701; -extern const bool __static_condition_default_1354; -extern const bool __static_condition_default_2648; -extern const bool __static_condition_default_2149; -extern const bool __static_condition_default_631; -extern const bool __static_condition_default_1110; -extern const bool __static_condition_default_1604; -extern const bool __static_condition_default_1719; -extern const bool __static_condition_default_2352; -extern const bool __static_condition_default_2864; -extern const bool __static_condition_default_1335; -extern const bool __static_condition_default_1872; -extern const bool __static_condition_default_2487; -extern const bool __static_condition_default_2060; -extern const bool __static_condition_default_2784; -extern const bool __static_condition_default_2871; -extern const bool __static_condition_default_3708; -extern const bool __static_condition_default_1557; -extern const bool __static_condition_default_2596; +extern const bool __static_condition_default_1729; +extern const bool __static_condition_default_1199; +extern const bool __static_condition_default_1451; +extern const bool __static_condition_default_1351; +extern const bool __static_condition_default_2647; +extern const bool __static_condition_default_2898; +extern const bool __static_condition_default_2071; +extern const bool __static_condition_default_1385; +extern const bool __static_condition_default_3470; +extern const bool __static_condition_default_3022; +extern const bool __static_condition_default_2315; +extern const bool __static_condition_default_2547; +extern const bool __static_condition_default_1313; +extern const bool __static_condition_default_2260; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_3347; +extern const bool __static_condition_default_1213; +extern const bool __static_condition_default_2628; +extern const bool __static_condition_default_839; +extern const bool __static_condition_default_2302; +extern const bool __static_condition_default_1682; +extern const bool __static_condition_default_2863; +extern const bool __static_condition_default_688; +extern const bool __static_condition_default_1290; +extern const bool __static_condition_default_2300; +extern const bool __static_condition_default_2859; +extern const bool __static_condition_default_1513; +extern const bool __static_condition_default_1789; +extern const bool __static_condition_default_2818; +extern const bool __static_condition_default_1219; +extern const bool __static_condition_default_4007; +extern const bool __static_condition_default_1475; +extern const bool __static_condition_default_1756; +extern const bool __static_condition_default_1911; +extern const bool __static_condition_default_2696; +extern const bool __static_condition_default_3005; +extern const bool __static_condition_default_3996; +extern const bool __static_condition_default_3537; +extern const bool __static_condition_default_3568; +extern const bool __static_condition_default_1584; +extern const bool __static_condition_default_3013; +extern const bool __static_condition_default_3648; +extern const bool __static_condition_default_2571; +extern const bool __static_condition_default_2018; extern const bool __static_condition_default_2413; -extern const bool __static_condition_default_2436; -extern const bool __static_condition_default_1531; +extern const bool __static_condition_default_1316; +extern const bool __static_condition_default_1387; extern const bool __static_condition_default_109; -extern const bool __static_condition_default_2210; -extern const bool __static_condition_default_2369; -extern const bool __static_condition_default_1605; -extern const bool __static_condition_default_2887; -extern const bool __static_condition_default_2103; -extern const bool __static_condition_default_3723; -extern const bool __static_condition_default_1581; -extern const bool __static_condition_default_2392; -extern const bool __static_condition_default_2412; -extern const bool __static_condition_default_1372; -extern const bool __static_condition_default_1727; -extern const bool __static_condition_default_2524; -extern const bool __static_condition_default_2808; -extern const bool __static_condition_default_3686; -extern const bool __static_condition_default_2677; -extern const bool __static_condition_default_2036; -extern const bool __static_condition_default_2509; -extern const bool __static_condition_default_770; -extern const bool __static_condition_default_1549; -extern const bool __static_condition_default_2120; -extern const bool __static_condition_default_1262; -extern const bool __static_condition_default_1462; -extern const bool __static_condition_default_1413; -extern const bool __static_condition_default_1793; -extern const bool __static_condition_default_1871; -extern const bool __static_condition_default_3279; -extern const bool __static_condition_default_1398; -extern const bool __static_condition_default_3693; -extern const bool __static_condition_default_2919; -extern const bool __static_condition_default_1851; -extern const bool __static_condition_default_2895; -extern const bool __static_condition_default_3706; -extern const bool __static_condition_default_1412; -extern const bool __static_condition_default_2108; -extern const bool __static_condition_default_1625; -extern const bool __static_condition_default_1569; -extern const bool __static_condition_default_2417; -extern const bool __static_condition_default_2228; -extern const bool __static_condition_default_1637; -extern const bool __static_condition_default_1217; -extern const bool __static_condition_default_2621; -extern const bool __static_condition_default_2767; -extern const bool __static_condition_default_1684; -extern const bool __static_condition_default_1792; -extern const bool __static_condition_default_1743; -extern const bool __static_condition_default_1177; -extern const bool __static_condition_default_1396; +extern const bool __static_condition_default_2751; +extern const bool __static_condition_default_1562; +extern const bool __static_condition_default_3065; +extern const bool __static_condition_default_694; +extern const bool __static_condition_default_866; +extern const bool __static_condition_default_1862; +extern const bool __static_condition_default_2928; +extern const bool __static_condition_default_143; +extern const bool __static_condition_default_1712; +extern const bool __static_condition_default_157; +extern const bool __static_condition_default_2562; +extern const bool __static_condition_default_2712; +extern const bool __static_condition_default_2594; +extern const bool __static_condition_default_3979; +extern const bool __static_condition_default_2494; +extern const bool __static_condition_default_1523; +extern const bool __static_condition_default_1563; +extern const bool __static_condition_default_1892; +extern const bool __static_condition_default_2436; +extern const bool __static_condition_default_164; +extern const bool __static_condition_default_3987; +extern const bool __static_condition_default_2592; extern const bool __static_condition_default_1509; -extern const bool __static_condition_default_1575; -extern const bool __static_condition_default_2533; -extern const bool __static_condition_default_2654; -extern const bool __static_condition_default_2184; -extern const bool __static_condition_default_2526; -extern const bool __static_condition_default_1909; -extern const bool __static_condition_default_814; -extern const bool __static_condition_default_1375; -extern const bool __static_condition_default_1617; -extern const bool __static_condition_default_1704; -extern const bool __static_condition_default_2476; -extern const bool __static_condition_default_2807; -extern const bool __static_condition_default_1227; -extern const bool __static_condition_default_1321; -extern const bool __static_condition_default_2390; -extern const bool __static_condition_default_3545; -extern const bool __static_condition_default_1655; -extern const bool __static_condition_default_2886; -extern const bool __static_condition_default_848; -extern const bool __static_condition_default_1363; -extern const bool __static_condition_default_3710; -extern const bool __static_condition_default_1858; -extern const bool __static_condition_default_2111; -extern const bool __static_condition_default_2844; -extern const bool __static_condition_default_2851; -extern const bool __static_condition_default_3428; -extern const bool __static_condition_default_1492; -extern const bool __static_condition_default_2920; -extern const bool __static_condition_default_1159; -extern const bool __static_condition_default_2450; -extern const bool __static_condition_default_2856; -extern const bool __static_condition_default_2872; -extern const bool __static_condition_default_1193; -extern const bool __static_condition_default_2820; -extern const bool __static_condition_default_2350; -extern const bool __static_condition_default_2472; -extern const bool __static_condition_default_2773; -extern const bool __static_condition_default_1141; -extern const bool __static_condition_default_1146; -extern const bool __static_condition_default_2220; -extern const bool __static_condition_default_121; -extern const bool __static_condition_default_2395; -extern const bool __static_condition_default_745; extern const bool __static_condition_default_1628; -extern const bool __static_condition_default_1138; -extern const bool __static_condition_default_1843; -extern const bool __static_condition_default_2894; -extern const bool __static_condition_default_3724; -extern const bool __static_condition_default_1132; -extern const bool __static_condition_default_2663; -extern const bool __static_condition_default_2707; +extern const bool __static_condition_default_605; +extern const bool __static_condition_default_2805; +extern const bool __static_condition_default_1872; +extern const bool __static_condition_default_1481; +extern const bool __static_condition_default_1561; +extern const bool __static_condition_default_609; +extern const bool __static_condition_default_1331; +extern const bool __static_condition_default_1514; +extern const bool __static_condition_default_2941; +extern const bool __static_condition_default_1949; +extern const bool __static_condition_default_1677; +extern const bool __static_condition_default_2077; +extern const bool __static_condition_default_3349; +extern const bool __static_condition_default_3449; +extern const bool __static_condition_default_3539; +extern const bool __static_condition_default_2819; extern const bool __static_condition_default_1603; -extern const bool __static_condition_default_2139; -extern const bool __static_condition_default_1104; -extern const bool __static_condition_default_2540; +extern const bool __static_condition_default_987; +extern const bool __static_condition_default_3353; +extern const bool __static_condition_default_906; +extern const bool __static_condition_default_1593; +extern const bool __static_condition_default_2614; +extern const bool __static_condition_default_162; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_2797; +extern const bool __static_condition_default_2658; +extern const bool __static_condition_default_1721; +extern const bool __static_condition_default_1270; +extern const bool __static_condition_default_2553; +extern const bool __static_condition_default_2640; +extern const bool __static_condition_default_2407; +extern const bool __static_condition_default_2025; +extern const bool __static_condition_default_3971; +extern const bool __static_condition_default_859; +extern const bool __static_condition_default_2873; +extern const bool __static_condition_default_4005; +extern const bool __static_condition_default_3416; +extern const bool __static_condition_default_1319; +extern const bool __static_condition_default_698; +extern const bool __static_condition_default_2425; +extern const bool __static_condition_default_3468; +extern const bool __static_condition_default_2423; +extern const bool __static_condition_default_2029; +extern const bool __static_condition_default_664; +extern const bool __static_condition_default_1645; +extern const bool __static_condition_default_2226; +extern const bool __static_condition_default_125; +extern const bool __static_condition_default_3551; +extern const bool __static_condition_default_1389; +extern const bool __static_condition_default_2143; +extern const bool __static_condition_default_1719; +extern const bool __static_condition_default_3898; +extern const bool __static_condition_default_200; +extern const bool __static_condition_default_2395; +extern const bool __static_condition_default_1495; +extern const bool __static_condition_default_1643; +extern const bool __static_condition_default_3974; extern const bool __static_condition_default_1688; -extern const bool __static_condition_default_2796; -extern const bool __static_condition_default_99; -extern const bool __static_condition_default_1694; -extern const bool __static_condition_default_2137; -extern const bool __static_condition_default_3430; -extern const bool __static_condition_default_1902; -extern const bool __static_condition_default_2190; -extern const bool __static_condition_default_2669; -extern const bool __static_condition_default_1357; -extern const bool __static_condition_default_2838; -extern const bool __static_condition_default_841; -extern const bool __static_condition_default_1443; -extern const bool __static_condition_default_1908; -extern const bool __static_condition_default_1113; -extern const bool __static_condition_default_3380; -extern const bool __static_condition_default_999; -extern const bool __static_condition_default_1127; -extern const bool __static_condition_default_1397; -extern const bool __static_condition_default_1723; -extern const bool __static_condition_default_1750; -extern const bool __static_condition_default_1126; -extern const bool __static_condition_default_1485; -extern const bool __static_condition_default_2097; -extern const bool __static_condition_default_2339; -extern const bool __static_condition_default_1419; -extern const bool __static_condition_default_2394; -extern const bool __static_condition_default_2671; -extern const bool __static_condition_default_1070; -extern const bool __static_condition_default_1532; -extern const bool __static_condition_default_3012; -extern const bool __static_condition_default_2496; -extern const bool __static_condition_default_1548; -extern const bool __static_condition_default_2588; -extern const bool __static_condition_default_2356; -extern const bool __static_condition_default_2786; -extern const bool __static_condition_default_2827; -extern const bool __static_condition_default_1277; -extern const bool __static_condition_default_2119; -extern const bool __static_condition_default_3382; -extern const bool __static_condition_default_644; -extern const bool __static_condition_default_2341; -extern const bool __static_condition_default_3695; -extern const bool __static_condition_default_1815; -extern const bool __static_condition_default_2291; -extern const bool __static_condition_default_961; -extern const bool __static_condition_default_2834; -extern const bool __static_condition_default_2270; -extern const bool __static_condition_default_1215; -extern const bool __static_condition_default_1433; -extern const bool __static_condition_default_107; -extern const bool __static_condition_default_2954; -extern const bool __static_condition_default_1540; -extern const bool __static_condition_default_2368; -extern const bool __static_condition_default_2880; -extern const bool __static_condition_default_3275; -extern const bool __static_condition_default_2218; -extern const bool __static_condition_default_3702; -extern const bool __static_condition_default_2716; +extern const bool __static_condition_default_96; +extern const bool __static_condition_default_168; +extern const bool __static_condition_default_2663; +extern const bool __static_condition_default_1249; +extern const bool __static_condition_default_1588; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_3108; +extern const bool __static_condition_default_674; +extern const bool __static_condition_default_1383; +extern const bool __static_condition_default_2055; +extern const bool __static_condition_default_3985; +extern const bool __static_condition_default_149; +extern const bool __static_condition_default_3557; +extern const bool __static_condition_default_899; +extern const bool __static_condition_default_1998; +extern const bool __static_condition_default_2327; +extern const bool __static_condition_default_2438; +extern const bool __static_condition_default_680; +extern const bool __static_condition_default_3366; +extern const bool __static_condition_default_2837; +extern const bool __static_condition_default_2238; +extern const bool __static_condition_default_2135; +extern const bool __static_condition_default_2483; +extern const bool __static_condition_default_3543; +extern const bool __static_condition_default_1807; +extern const bool __static_condition_default_857; +extern const bool __static_condition_default_1301; extern const bool __static_condition_default_1304; -extern const bool __static_condition_default_94; +extern const bool __static_condition_default_1658; +extern const bool __static_condition_default_158; extern const bool __static_condition_default_2063; -extern const bool __static_condition_default_2079; -extern const bool __static_condition_default_2801; -extern const bool __static_condition_default_3700; -extern const bool __static_condition_default_1291; -extern const bool __static_condition_default_3271; -extern const bool __static_condition_default_2200; -extern const bool __static_condition_default_2265; -extern const bool __static_condition_default_2586; -extern const bool __static_condition_default_1541; -extern const bool __static_condition_default_1633; -extern const bool __static_condition_default_3733; -extern const bool __static_condition_default_2466; -extern const bool __static_condition_default_1329; -extern const bool __static_condition_default_3277; -extern const bool __static_condition_default_1698; -extern const bool __static_condition_default_2438; -extern const bool __static_condition_default_1348; -extern const bool __static_condition_default_1511; -extern const bool __static_condition_default_1240; -extern const bool __static_condition_default_3725; -extern const bool __static_condition_default_3732; -extern const bool __static_condition_default_2040; -extern const bool __static_condition_default_1501; -extern const bool __static_condition_default_2085; -extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_3273; -extern const bool __static_condition_default_1571; -extern const bool __static_condition_default_3727; -extern const bool __static_condition_default_1593; -extern const bool __static_condition_default_1389; -extern const bool __static_condition_default_3699; -extern const bool __static_condition_default_1175; -extern const bool __static_condition_default_1676; -extern const bool __static_condition_default_2608; -extern const bool __static_condition_default_2246; -extern const bool __static_condition_default_2743; -extern const bool __static_condition_default_1148; -extern const bool __static_condition_default_1233; -extern const bool __static_condition_default_119; -extern const bool __static_condition_default_2152; -extern const bool __static_condition_default_1700; -extern const bool __static_condition_default_2474; +extern const bool __static_condition_default_3059; +extern const bool __static_condition_default_3545; +extern const bool __static_condition_default_1276; +extern const bool __static_condition_default_3140; +extern const bool __static_condition_default_1884; +extern const bool __static_condition_default_144; +extern const bool __static_condition_default_73; +extern const bool __static_condition_default_1772; extern const bool __static_condition_default_2543; -extern const bool __static_condition_default_2865; -extern const bool __static_condition_default_1098; -extern const bool __static_condition_default_1118; -extern const bool __static_condition_default_129; -extern const bool __static_condition_default_1351; -extern const bool __static_condition_default_2405; -extern const bool __static_condition_default_3713; -extern const bool __static_condition_default_1816; -extern const bool __static_condition_default_1803; -extern const bool __static_condition_default_2241; -extern const bool __static_condition_default_629; -extern const bool __static_condition_default_1629; -extern const bool __static_condition_default_2720; -extern const bool __static_condition_default_3291; -extern const bool __static_condition_default_2712; -extern const bool __static_condition_default_2736; -extern const bool __static_condition_default_1253; -extern const bool __static_condition_default_1845; +extern const bool __static_condition_default_2311; +extern const bool __static_condition_default_1681; +extern const bool __static_condition_default_207; +extern const bool __static_condition_default_607; +extern const bool __static_condition_default_61; +extern const bool __static_condition_default_65; +extern const bool __static_condition_default_1255; +extern const bool __static_condition_default_2713; +extern const bool __static_condition_default_1400; +extern const bool __static_condition_default_1898; +extern const bool __static_condition_default_4008; +extern const bool __static_condition_default_1827; +extern const bool __static_condition_default_1934; +extern const bool __static_condition_default_2843; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_3555; +extern const bool __static_condition_default_2430; +extern const bool __static_condition_default_3998; +extern const bool __static_condition_default_2806; +extern const bool __static_condition_default_3433; +extern const bool __static_condition_default_1654; +extern const bool __static_condition_default_1669; +extern const bool __static_condition_default_2851; +extern const bool __static_condition_default_2695; +extern const bool __static_condition_default_2875; +extern const bool __static_condition_default_3961; +extern const bool __static_condition_default_1408; +extern const bool __static_condition_default_1491; +extern const bool __static_condition_default_2319; +extern const bool __static_condition_default_958; +extern const bool __static_condition_default_617; +extern const bool __static_condition_default_1534; extern const bool __static_condition_default_2397; -extern const bool __static_condition_default_2342; -extern const bool __static_condition_default_1223; -extern const bool __static_condition_default_1473; -extern const bool __static_condition_default_2117; -extern const bool __static_condition_default_1547; -extern const bool __static_condition_default_1563; -extern const bool __static_condition_default_1272; -extern const bool __static_condition_default_826; -extern const bool __static_condition_default_3269; -extern const bool __static_condition_default_3405; -extern const bool __static_condition_default_2901; -extern const bool __static_condition_default_2562; -extern const bool __static_condition_default_1119; -extern const bool __static_condition_default_1645; -extern const bool __static_condition_default_2110; -extern const bool __static_condition_default_2186; -extern const bool __static_condition_default_1863; -extern const bool __static_condition_default_1410; -extern const bool __static_condition_default_2261; -extern const bool __static_condition_default_1993; -extern const bool __static_condition_default_2478; -extern const bool __static_condition_default_2168; -extern const bool __static_condition_default_2632; -extern const bool __static_condition_default_1191; -extern const bool __static_condition_default_2902; -extern const bool __static_condition_default_1730; -extern const bool __static_condition_default_2239; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_1834; -extern const bool __static_condition_default_2141; -extern const bool __static_condition_default_1659; -extern const bool __static_condition_default_3289; -extern const bool __static_condition_default_2374; -extern const bool __static_condition_default_1424; -extern const bool __static_condition_default_2066; -extern const bool __static_condition_default_2879; -extern const bool __static_condition_default_1293; -extern const bool __static_condition_default_3685; -extern const bool __static_condition_default_3711; -extern const bool __static_condition_default_1370; +extern const bool __static_condition_default_2602; +extern const bool __static_condition_default_2759; +extern const bool __static_condition_default_1679; +extern const bool __static_condition_default_1361; +extern const bool __static_condition_default_1337; +extern const bool __static_condition_default_1657; +extern const bool __static_condition_default_1823; +extern const bool __static_condition_default_106; +extern const bool __static_condition_default_2842; +extern const bool __static_condition_default_2892; +extern const bool __static_condition_default_2708; +extern const bool __static_condition_default_3341; +extern const bool __static_condition_default_1283; +extern const bool __static_condition_default_2734; +extern const bool __static_condition_default_1666; +extern const bool __static_condition_default_1992; +extern const bool __static_condition_default_936; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_1439; +extern const bool __static_condition_default_1622; +extern const bool __static_condition_default_2718; +extern const bool __static_condition_default_3141; +extern const bool __static_condition_default_2297; +extern const bool __static_condition_default_108; +extern const bool __static_condition_default_1839; +extern const bool __static_condition_default_2750; extern const bool __static_condition_default_2549; -extern const bool __static_condition_default_776; -extern const bool __static_condition_default_1201; -extern const bool __static_condition_default_2598; -extern const bool __static_condition_default_1518; -extern const bool __static_condition_default_1925; -extern const bool __static_condition_default_1887; -extern const bool __static_condition_default_3704; -extern const bool __static_condition_default_1374; -extern const bool __static_condition_default_1615; -extern const bool __static_condition_default_1589; -extern const bool __static_condition_default_1450; -extern const bool __static_condition_default_2421; -extern const bool __static_condition_default_1124; -extern const bool __static_condition_default_2431; -extern const bool __static_condition_default_3707; -extern const bool __static_condition_default_2502; -extern const bool __static_condition_default_2518; -extern const bool __static_condition_default_1927; -extern const bool __static_condition_default_2443; -extern const bool __static_condition_default_642; -extern const bool __static_condition_default_2284; -extern const bool __static_condition_default_2402; -extern const bool __static_condition_default_808; -extern const bool __static_condition_default_2322; -extern const bool __static_condition_default_2910; -extern const bool __static_condition_default_1550; -extern const bool __static_condition_default_1917; -extern const bool __static_condition_default_1878; -extern const bool __static_condition_default_954; -extern const bool __static_condition_default_2542; -extern const bool __static_condition_default_1714; -extern const bool __static_condition_default_1893; -extern const bool __static_condition_default_1957; -extern const bool __static_condition_default_2455; -extern const bool __static_condition_default_1901; -extern const bool __static_condition_default_1653; -extern const bool __static_condition_default_765; -extern const bool __static_condition_default_2590; -extern const bool __static_condition_default_2125; -extern const bool __static_condition_default_2326; -extern const bool __static_condition_default_2687; -extern const bool __static_condition_default_1525; -extern const bool __static_condition_default_1682; -extern const bool __static_condition_default_2723; -extern const bool __static_condition_default_1331; -extern const bool __static_condition_default_2286; -extern const bool __static_condition_default_1315; -extern const bool __static_condition_default_2646; -extern const bool __static_condition_default_2597; -extern const bool __static_condition_default_1409; -extern const bool __static_condition_default_3403; -extern const bool __static_condition_default_2652; -extern const bool __static_condition_default_92; -extern const bool __static_condition_default_131; -extern const bool __static_condition_default_2328; -extern const bool __static_condition_default_2638; -extern const bool __static_condition_default_2792; -extern const bool __static_condition_default_2636; -extern const bool __static_condition_default_1950; -extern const bool __static_condition_default_1672; -extern const bool __static_condition_default_2131; -extern const bool __static_condition_default_2630; +extern const bool __static_condition_default_2684; +extern const bool __static_condition_default_148; +extern const bool __static_condition_default_910; +extern const bool __static_condition_default_1999; +extern const bool __static_condition_default_1535; +extern const bool __static_condition_default_1743; +extern const bool __static_condition_default_2683; +extern const bool __static_condition_default_1776; +extern const bool __static_condition_default_1777; +extern const bool __static_condition_default_2697; +extern const bool __static_condition_default_3368; +extern const bool __static_condition_default_1531; +extern const bool __static_condition_default_2699; +extern const bool __static_condition_default_943; +extern const bool __static_condition_default_1572; +extern const bool __static_condition_default_2623; +extern const bool __static_condition_default_1493; +extern const bool __static_condition_default_2309; +extern const bool __static_condition_default_1543; +extern const bool __static_condition_default_2688; +extern const bool __static_condition_default_1617; +extern const bool __static_condition_default_3086; +extern const bool __static_condition_default_3405; +extern const bool __static_condition_default_3984; +extern const bool __static_condition_default_1415; +extern const bool __static_condition_default_3476; +extern const bool __static_condition_default_1012; +extern const bool __static_condition_default_51; +extern const bool __static_condition_default_1261; +extern const bool __static_condition_default_1697; +extern const bool __static_condition_default_3900; +extern const bool __static_condition_default_1308; +extern const bool __static_condition_default_2349; +extern const bool __static_condition_default_2853; +extern const bool __static_condition_default_2405; +extern const bool __static_condition_default_3981; +extern const bool __static_condition_default_1224; +extern const bool __static_condition_default_3343; +extern const bool __static_condition_default_2635; +extern const bool __static_condition_default_2100; +extern const bool __static_condition_default_3916; +extern const bool __static_condition_default_1598; +extern const bool __static_condition_default_2313; +extern const bool __static_condition_default_2912; +extern const bool __static_condition_default_917; +extern const bool __static_condition_default_1895; +extern const bool __static_condition_default_1856; +extern const bool __static_condition_default_1017; +extern const bool __static_condition_default_1741; +extern const bool __static_condition_default_1296; +extern const bool __static_condition_default_1530; +extern const bool __static_condition_default_3041; +extern const bool __static_condition_default_67; +extern const bool __static_condition_default_1267; +extern const bool __static_condition_default_2735; +extern const bool __static_condition_default_2786; +extern const bool __static_condition_default_1297; +extern const bool __static_condition_default_114; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_2765; +extern const bool __static_condition_default_3055; +extern const bool __static_condition_default_1227; +extern const bool __static_condition_default_1580; +extern const bool __static_condition_default_3122; +extern const bool __static_condition_default_2279; +extern const bool __static_condition_default_1508; +extern const bool __static_condition_default_2896; +extern const bool __static_condition_default_3107; +extern const bool __static_condition_default_1737; extern const bool __static_condition_default_2346; -extern const bool __static_condition_default_1207; +extern const bool __static_condition_default_2035; +extern const bool __static_condition_default_3017; +extern const bool __static_condition_default_1927; +extern const bool __static_condition_default_1975; +extern const bool __static_condition_default_2180; +extern const bool __static_condition_default_656; +extern const bool __static_condition_default_935; +extern const bool __static_condition_default_227; extern const bool __static_condition_default_2564; -extern const bool __static_condition_default_1346; -extern const bool __static_condition_default_2164; -extern const bool __static_condition_default_2403; -extern const bool __static_condition_default_1926; -extern const bool __static_condition_default_2194; -extern const bool __static_condition_default_1401; -extern const bool __static_condition_default_133; -extern const bool __static_condition_default_1623; -extern const bool __static_condition_default_2406; -extern const bool __static_condition_default_2504; -extern const bool __static_condition_default_2255; -extern const bool __static_condition_default_2617; -extern const bool __static_condition_default_3302; -extern const bool __static_condition_default_3148; -extern const bool __static_condition_default_2836; -extern const bool __static_condition_default_2128; -extern const bool __static_condition_default_1565; -extern const bool __static_condition_default_1092; -extern const bool __static_condition_default_2626; -extern const bool __static_condition_default_1649; -extern const bool __static_condition_default_2285; -extern const bool __static_condition_default_3395; -extern const bool __static_condition_default_1420; -extern const bool __static_condition_default_2121; -extern const bool __static_condition_default_2233; -extern const bool __static_condition_default_3721; -extern const bool __static_condition_default_3722; -extern const bool __static_condition_default_2170; -extern const bool __static_condition_default_2511; -extern const bool __static_condition_default_1156; -extern const bool __static_condition_default_1225; -extern const bool __static_condition_default_1376; -extern const bool __static_condition_default_2248; -extern const bool __static_condition_default_1639; -extern const bool __static_condition_default_1791; -extern const bool __static_condition_default_2308; -extern const bool __static_condition_default_2115; -extern const bool __static_condition_default_2642; -extern const bool __static_condition_default_2785; -extern const bool __static_condition_default_3422; -extern const bool __static_condition_default_1349; -extern const bool __static_condition_default_2091; -extern const bool __static_condition_default_3283; -extern const bool __static_condition_default_1643; -extern const bool __static_condition_default_1916; -extern const bool __static_condition_default_2556; -extern const bool __static_condition_default_2037; -extern const bool __static_condition_default_2106; -extern const bool __static_condition_default_2344; -extern const bool __static_condition_default_3294; -extern const bool __static_condition_default_2609; -extern const bool __static_condition_default_1298; -extern const bool __static_condition_default_3297; -extern const bool __static_condition_default_2100; -extern const bool __static_condition_default_2691; -extern const bool __static_condition_default_1468; -extern const bool __static_condition_default_2461; -extern const bool __static_condition_default_2494; -extern const bool __static_condition_default_127; -extern const bool __static_condition_default_3730; -extern const bool __static_condition_default_2986; -extern const bool __static_condition_default_2365; -extern const bool __static_condition_default_1246; -extern const bool __static_condition_default_2166; -extern const bool __static_condition_default_3424; -extern const bool __static_condition_default_1107; -extern const bool __static_condition_default_1678; -extern const bool __static_condition_default_1438; -extern const bool __static_condition_default_2324; -extern const bool __static_condition_default_2857; -extern const bool __static_condition_default_1353; -extern const bool __static_condition_default_1799; -extern const bool __static_condition_default_2382; -extern const bool __static_condition_default_3698; -extern const bool __static_condition_default_1616; -extern const bool __static_condition_default_1173; -extern const bool __static_condition_default_2681; -extern const bool __static_condition_default_2297; -extern const bool __static_condition_default_2809; -extern const bool __static_condition_default_1879; -extern const bool __static_condition_default_2426; -extern const bool __static_condition_default_2568; -extern const bool __static_condition_default_3696; +extern const bool __static_condition_default_3355; +extern const bool __static_condition_default_2541; +extern const bool __static_condition_default_3130; +extern const bool __static_condition_default_1357; +extern const bool __static_condition_default_2481; +extern const bool __static_condition_default_2334; +extern const bool __static_condition_default_1310; +extern const bool __static_condition_default_3450; +extern const bool __static_condition_default_628; +extern const bool __static_condition_default_1559; +extern const bool __static_condition_default_1706; +extern const bool __static_condition_default_3360; +extern const bool __static_condition_default_1428; +extern const bool __static_condition_default_853; +extern const bool __static_condition_default_3474; +extern const bool __static_condition_default_2599; +extern const bool __static_condition_default_2773; +extern const bool __static_condition_default_1274; +extern const bool __static_condition_default_2682; +extern const bool __static_condition_default_2000; +extern const bool __static_condition_default_2381; +extern const bool __static_condition_default_2777; +extern const bool __static_condition_default_1866; +extern const bool __static_condition_default_3339; +extern const bool __static_condition_default_1817; +extern const bool __static_condition_default_1367; +extern const bool __static_condition_default_1765; +extern const bool __static_condition_default_161; +extern const bool __static_condition_default_1393; +extern const bool __static_condition_default_3123; +extern const bool __static_condition_default_1882; +extern const bool __static_condition_default_3007; +extern const bool __static_condition_default_2294; +extern const bool __static_condition_default_165; +extern const bool __static_condition_default_2078; +extern const bool __static_condition_default_640; +extern const bool __static_condition_default_3983; +extern const bool __static_condition_default_2902; +extern const bool __static_condition_default_1333; +extern const bool __static_condition_default_1452; +extern const bool __static_condition_default_3077; +extern const bool __static_condition_default_3337; +extern const bool __static_condition_default_930; +extern const bool __static_condition_default_1506; +extern const bool __static_condition_default_1023; +extern const bool __static_condition_default_1557; +extern const bool __static_condition_default_1964; +extern const bool __static_condition_default_1704; +extern const bool __static_condition_default_2111; +extern const bool __static_condition_default_131; +extern const bool __static_condition_default_1564; +extern const bool __static_condition_default_2266; +extern const bool __static_condition_default_2591; +extern const bool __static_condition_default_2890; +extern const bool __static_condition_default_3977; +extern const bool __static_condition_default_2925; +extern const bool __static_condition_default_1110; +extern const bool __static_condition_default_130; +extern const bool __static_condition_default_2338; +extern const bool __static_condition_default_2752; +extern const bool __static_condition_default_1532; +extern const bool __static_condition_default_2918; +extern const bool __static_condition_default_843; +extern const bool __static_condition_default_3535; +extern const bool __static_condition_default_2933; +extern const bool __static_condition_default_2109; +extern const bool __static_condition_default_2419; +extern const bool __static_condition_default_3092; +extern const bool __static_condition_default_3549; +extern const bool __static_condition_default_1579; +extern const bool __static_condition_default_2831; +extern const bool __static_condition_default_1272; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_980; extern const bool __static_condition_default_1402; -extern const bool __static_condition_default_1556; -extern const bool __static_condition_default_2396; -extern const bool __static_condition_default_2198; -extern const bool __static_condition_default_1144; -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_1808; -extern const bool __static_condition_default_1381; +extern const bool __static_condition_default_2482; +extern const bool __static_condition_default_676; +extern const bool __static_condition_default_1464; extern const bool __static_condition_default_2363; -extern const bool __static_condition_default_2272; -extern const bool __static_condition_default_3729; -extern const bool __static_condition_default_2758; -extern const bool __static_condition_default_1292; -extern const bool __static_condition_default_1359; -extern const bool __static_condition_default_1248; -extern const bool __static_condition_default_2620; -extern const bool __static_condition_default_1079; -extern const bool __static_condition_default_1595; -extern const bool __static_condition_default_2616; +extern const bool __static_condition_default_3690; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_1720; +extern const bool __static_condition_default_636; +extern const bool __static_condition_default_2807; +extern const bool __static_condition_default_3918; +extern const bool __static_condition_default_1754; +extern const bool __static_condition_default_1843; +extern const bool __static_condition_default_1195; +extern const bool __static_condition_default_2809; +extern const bool __static_condition_default_4003; +extern const bool __static_condition_default_105; +extern const bool __static_condition_default_1656; +extern const bool __static_condition_default_2343; +extern const bool __static_condition_default_1787; +extern const bool __static_condition_default_2525; +extern const bool __static_condition_default_1243; +extern const bool __static_condition_default_1671; +extern const bool __static_condition_default_2445; +extern const bool __static_condition_default_2365; +extern const bool __static_condition_default_3811; +extern const bool __static_condition_default_2340; +extern const bool __static_condition_default_2042; +extern const bool __static_condition_default_3980; +extern const bool __static_condition_default_1335; +extern const bool __static_condition_default_2944; +extern const bool __static_condition_default_923; +extern const bool __static_condition_default_924; +extern const bool __static_condition_default_2884; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_696; +extern const bool __static_condition_default_1976; +extern const bool __static_condition_default_145; +extern const bool __static_condition_default_3970; +extern const bool __static_condition_default_1300; +extern const bool __static_condition_default_1279; +extern const bool __static_condition_default_1432; +extern const bool __static_condition_default_2249; +extern const bool __static_condition_default_2839; +extern const bool __static_condition_default_2767; +extern const bool __static_condition_default_898; +extern const bool __static_condition_default_1987; +extern const bool __static_condition_default_4004; +extern const bool __static_condition_default_127; +extern const bool __static_condition_default_2675; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_1808; +extern const bool __static_condition_default_3057; +extern const bool __static_condition_default_733; +extern const bool __static_condition_default_3688; +extern const bool __static_condition_default_2273; +extern const bool __static_condition_default_2511; +extern const bool __static_condition_default_2727; +extern const bool __static_condition_default_1667; +extern const bool __static_condition_default_126; +extern const bool __static_condition_default_1573; +extern const bool __static_condition_default_2784; +extern const bool __static_condition_default_3662; +extern const bool __static_condition_default_2914; +extern const bool __static_condition_default_918; +extern const bool __static_condition_default_2285; +extern const bool __static_condition_default_2469; +extern const bool __static_condition_default_3541; +extern const bool __static_condition_default_3982; +extern const bool __static_condition_default_1196; +extern const bool __static_condition_default_2869; +extern const bool __static_condition_default_2801; +extern const bool __static_condition_default_670; +extern const bool __static_condition_default_2467; +extern const bool __static_condition_default_2908; +extern const bool __static_condition_default_1275; +extern const bool __static_condition_default_1977; +extern const bool __static_condition_default_3478; +extern const bool __static_condition_default_2093; +extern const bool __static_condition_default_2391; +extern const bool __static_condition_default_1558; +extern const bool __static_condition_default_1705; +extern const bool __static_condition_default_2458; +extern const bool __static_condition_default_218; +extern const bool __static_condition_default_1888; +extern const bool __static_condition_default_911; +extern const bool __static_condition_default_2539; +extern const bool __static_condition_default_3995; +extern const bool __static_condition_default_1860; +extern const bool __static_condition_default_2432; +extern const bool __static_condition_default_2803; +extern const bool __static_condition_default_3994; +extern const bool __static_condition_default_3973; +extern const bool __static_condition_default_4006; +extern const bool __static_condition_default_98; +extern const bool __static_condition_default_3997; +extern const bool __static_condition_default_678; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_3671; +extern const bool __static_condition_default_2829; extern const bool __static_condition_default_2314; +extern const bool __static_condition_default_2589; +extern const bool __static_condition_default_2771; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_2361; +extern const bool __static_condition_default_3570; +extern const bool __static_condition_default_1735; +extern const bool __static_condition_default_1489; +extern const bool __static_condition_default_2652; +extern const bool __static_condition_default_2056; +extern const bool __static_condition_default_2802; +extern const bool __static_condition_default_2671; +extern const bool __static_condition_default_3472; +extern const bool __static_condition_default_2326; +extern const bool __static_condition_default_3696; +extern const bool __static_condition_default_737; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_2618; +extern const bool __static_condition_default_3078; +extern const bool __static_condition_default_1511; +extern const bool __static_condition_default_1556; +extern const bool __static_condition_default_2565; +extern const bool __static_condition_default_2922; +extern const bool __static_condition_default_3385; +extern const bool __static_condition_default_3480; +extern const bool __static_condition_default_2609; +extern const bool __static_condition_default_3972; +extern const bool __static_condition_default_2519; +extern const bool __static_condition_default_2937; +extern const bool __static_condition_default_117; +extern const bool __static_condition_default_2227; +extern const bool __static_condition_default_2561; +extern const bool __static_condition_default_3131; +extern const bool __static_condition_default_2523; +extern const bool __static_condition_default_2536; +extern const bool __static_condition_default_2701; +extern const bool __static_condition_default_4001; +extern const bool __static_condition_default_1549; +extern const bool __static_condition_default_2673; +extern const bool __static_condition_default_884; +extern const bool __static_condition_default_3175; +extern const bool __static_condition_default_3989; +extern const bool __static_condition_default_951; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_1747; +extern const bool __static_condition_default_2566; +extern const bool __static_condition_default_882; +extern const bool __static_condition_default_3661; +extern const bool __static_condition_default_1653; +extern const bool __static_condition_default_3029; +extern const bool __static_condition_default_1406; +extern const bool __static_condition_default_1845; +extern const bool __static_condition_default_2817; +extern const bool __static_condition_default_2521; +extern const bool __static_condition_default_1854; +extern const bool __static_condition_default_3006; +extern const bool __static_condition_default_1690; +extern const bool __static_condition_default_2452; +extern const bool __static_condition_default_1766; +extern const bool __static_condition_default_2488; +extern const bool __static_condition_default_1541; +extern const bool __static_condition_default_2743; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_2110; +extern const bool __static_condition_default_630; +extern const bool __static_condition_default_1829; +extern const bool __static_condition_default_2505; +extern const bool __static_condition_default_71; +extern const bool __static_condition_default_3999; +extern const bool __static_condition_default_160; +extern const bool __static_condition_default_855; +extern const bool __static_condition_default_1519; +extern const bool __static_condition_default_2538; +extern const bool __static_condition_default_2687; +extern const bool __static_condition_default_648; +extern const bool __static_condition_default_1375; extern const bool __static_condition_default_2367; -extern const bool __static_condition_default_1661; -extern const bool __static_condition_default_2222; -extern const bool __static_condition_default_2558; -extern const bool __static_condition_default_1774; -extern const bool __static_condition_default_3285; -extern const bool __static_condition_default_1122; -extern const bool __static_condition_default_1371; -extern const bool __static_condition_default_2208; -extern const bool __static_condition_default_1229; -extern const bool __static_condition_default_1046; -extern const bool __static_condition_default_1711; +extern const bool __static_condition_default_1722; +extern const bool __static_condition_default_1728; +extern const bool __static_condition_default_1771; +extern const bool __static_condition_default_2048; +extern const bool __static_condition_default_1377; +extern const bool __static_condition_default_2830; +extern const bool __static_condition_default_1281; +extern const bool __static_condition_default_2994; +extern const bool __static_condition_default_1570; +extern const bool __static_condition_default_2795; +extern const bool __static_condition_default_3963; +extern const bool __static_condition_default_841; +extern const bool __static_condition_default_2633; +extern const bool __static_condition_default_1801; +extern const bool __static_condition_default_1983; +extern const bool __static_condition_default_185; +extern const bool __static_condition_default_3207; +extern const bool __static_condition_default_3345; +extern const bool __static_condition_default_2600; +extern const bool __static_condition_default_3959; +extern const bool __static_condition_default_654; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_1833; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_2092; +extern const bool __static_condition_default_2291; +extern const bool __static_condition_default_1800; +extern const bool __static_condition_default_2304; +extern const bool __static_condition_default_3072; +extern const bool __static_condition_default_2101; +extern const bool __static_condition_default_2306; +extern const bool __static_condition_default_2387; +extern const bool __static_condition_default_3960; +extern const bool __static_condition_default_2733; +extern const bool __static_condition_default_1914; +extern const bool __static_condition_default_1878; +extern const bool __static_condition_default_2736; +extern const bool __static_condition_default_2305; +extern const bool __static_condition_default_2462; +extern const bool __static_condition_default_2700; +extern const bool __static_condition_default_2707; +extern const bool __static_condition_default_3988; +extern const bool __static_condition_default_2593; +extern const bool __static_condition_default_3434; +extern const bool __static_condition_default_3364; +extern const bool __static_condition_default_1811; +extern const bool __static_condition_default_2243; +extern const bool __static_condition_default_2709; +extern const bool __static_condition_default_1641; +extern const bool __static_condition_default_1779; +extern const bool __static_condition_default_1208; +extern const bool __static_condition_default_1703; +extern const bool __static_condition_default_959; +extern const bool __static_condition_default_2383; +extern const bool __static_condition_default_1755; +extern const bool __static_condition_default_1788; +extern const bool __static_condition_default_2330; +extern const bool __static_condition_default_3139; +extern const bool __static_condition_default_1285; +extern const bool __static_condition_default_2810; +extern const bool __static_condition_default_2886; +extern const bool __static_condition_default_2417; +extern const bool __static_condition_default_2587; +extern const bool __static_condition_default_642; +extern const bool __static_condition_default_2686; +extern const bool __static_condition_default_3116; +extern const bool __static_condition_default_3694; +extern const bool __static_condition_default_748; +extern const bool __static_condition_default_1289; +extern const bool __static_condition_default_69; +extern const bool __static_condition_default_1458; +extern const bool __static_condition_default_1767; +extern const bool __static_condition_default_1775; +extern const bool __static_condition_default_3969; +extern const bool __static_condition_default_3358; +extern const bool __static_condition_default_965; +extern const bool __static_condition_default_129; +extern const bool __static_condition_default_2443; +extern const bool __static_condition_default_2573; +extern const bool __static_condition_default_3093; +extern const bool __static_condition_default_893; +extern const bool __static_condition_default_2254; +extern const bool __static_condition_default_1633; +extern const bool __static_condition_default_2838; +extern const bool __static_condition_default_4009; +extern const bool __static_condition_default_905; +extern const bool __static_condition_default_2011; +extern const bool __static_condition_default_1610; +extern const bool __static_condition_default_2579; +extern const bool __static_condition_default_2669; +extern const bool __static_condition_default_2720; +extern const bool __static_condition_default_1365; +extern const bool __static_condition_default_1683; +extern const bool __static_condition_default_2785; +extern const bool __static_condition_default_2811; +extern const bool __static_condition_default_2711; +extern const bool __static_condition_default_3233; +extern const bool __static_condition_default_1230; +extern const bool __static_condition_default_57; +extern const bool __static_condition_default_2027; +extern const bool __static_condition_default_3896; +extern const bool __static_condition_default_216; +extern const bool __static_condition_default_1453; +extern const bool __static_condition_default_1517; +extern const bool __static_condition_default_1781; +extern const bool __static_condition_default_2320; +extern const bool __static_condition_default_1907; +extern const bool __static_condition_default_3563; +extern const bool __static_condition_default_2796; +extern const bool __static_condition_default_3362; +extern const bool __static_condition_default_2336; +extern const bool __static_condition_default_2847; +extern const bool __static_condition_default_2085; +extern const bool __static_condition_default_1306; +extern const bool __static_condition_default_1236; +extern const bool __static_condition_default_3028; +extern const bool __static_condition_default_1413; +extern const bool __static_condition_default_2047; +extern const bool __static_condition_default_3669; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_166; +extern const bool __static_condition_default_1395; +extern const bool __static_condition_default_63; +extern const bool __static_condition_default_115; +extern const bool __static_condition_default_1713; +extern const bool __static_condition_default_3407; +extern const bool __static_condition_default_2603; +extern const bool __static_condition_default_2758; +extern const bool __static_condition_default_1903; +extern const bool __static_condition_default_1958; +extern const bool __static_condition_default_3978; +extern const bool __static_condition_default_2415; +extern const bool __static_condition_default_2070; +extern const bool __static_condition_default_2979; +extern const bool __static_condition_default_1353; +extern const bool __static_condition_default_1773; +extern const bool __static_condition_default_2749; +extern const bool __static_condition_default_964; +extern const bool __static_condition_default_1821; +extern const bool __static_condition_default_209; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_845; +extern const bool __static_condition_default_2610; +extern const bool __static_condition_default_931; +extern const bool __static_condition_default_1536; +extern const bool __static_condition_default_1437; +extern const bool __static_condition_default_3976; +extern const bool __static_condition_default_1799; +extern const bool __static_condition_default_2323; +extern const bool __static_condition_default_2964; +extern const bool __static_condition_default_2560; +extern const bool __static_condition_default_2742; +extern const bool __static_condition_default_1809; +extern const bool __static_condition_default_147; +extern const bool __static_condition_default_1868; +extern const bool __static_condition_default_3351; +extern const bool __static_condition_default_4000; +extern const bool __static_condition_default_1665; +extern const bool __static_condition_default_2988; +extern const bool __static_condition_default_3115; +extern const bool __static_condition_default_2586; +extern const bool __static_condition_default_1569; +extern const bool __static_condition_default_2331; +extern const bool __static_condition_default_1652; +extern const bool __static_condition_default_118; +extern const bool __static_condition_default_2062; +extern const bool __static_condition_default_3030; +extern const bool __static_condition_default_3986; +extern const bool __static_condition_default_1102; +extern const bool __static_condition_default_1149; +extern const bool __static_condition_default_3085; +extern const bool __static_condition_default_3100; +extern const bool __static_condition_default_3560; +extern const bool __static_condition_default_3048; +extern const bool __static_condition_default_1422; +extern const bool __static_condition_default_3646; +extern const bool __static_condition_default_1293; extern const bool __static_condition_default_1780; -extern const bool __static_condition_default_3720; -extern const bool __static_condition_default_1255; -extern const bool __static_condition_default_2675; -extern const bool __static_condition_default_1814; -extern const bool __static_condition_default_3705; -extern const bool __static_condition_default_1708; -extern const bool __static_condition_default_2112; -extern const bool __static_condition_default_1886; -extern const bool __static_condition_default_1481; -extern const bool __static_condition_default_2574; -extern const bool __static_condition_default_1115; -extern const bool __static_condition_default_2146; -extern const bool __static_condition_default_2072; -extern const bool __static_condition_default_2364; +extern const bool __static_condition_default_749; +extern const bool __static_condition_default_1837; +extern const bool __static_condition_default_4002; +extern const bool __static_condition_default_1605; +extern const bool __static_condition_default_880; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_950; +extern const bool __static_condition_default_2588; +extern const bool __static_condition_default_1678; +extern const bool __static_condition_default_1813; +extern const bool __static_condition_default_2867; +extern const bool __static_condition_default_2257; +extern const bool __static_condition_default_2544; +extern const bool __static_condition_default_3101; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_1284; +extern const bool __static_condition_default_2230; +extern const bool __static_condition_default_1264; +extern const bool __static_condition_default_3975; +extern const bool __static_condition_default_2857; +extern const bool __static_condition_default_2841; +extern const bool __static_condition_default_3399; +extern const bool __static_condition_default_2957; +extern const bool __static_condition_default_156; +extern const bool __static_condition_default_1812; +extern const bool __static_condition_default_892; +extern const bool __static_condition_default_1639; extern const bool __static_condition_default_1670; -extern const bool __static_condition_default_1627; -extern const bool __static_condition_default_786; -extern const bool __static_condition_default_2693; -extern const bool __static_condition_default_1516; -extern const bool __static_condition_default_3304; -extern const bool __static_condition_default_101; -extern const bool __static_condition_default_3728; -extern const bool __static_condition_default_1128; -extern const bool __static_condition_default_1404; -extern const bool __static_condition_default_1205; -extern const bool __static_condition_default_1827; -extern const bool __static_condition_default_2704; -extern const bool __static_condition_default_1445; -extern const bool __static_condition_default_2347; -extern const bool __static_condition_default_3726; -extern const bool __static_condition_default_1503; -extern const bool __static_condition_default_3709; -extern const bool __static_condition_default_2541; -extern const bool __static_condition_default_1457; -extern const bool __static_condition_default_2610; +extern const bool __static_condition_default_2086; +extern const bool __static_condition_default_189; void __static_initializer_default() { __static_renaming("____u_char_0", "__u_char"); __static_renaming("____u_short_1", "__u_short"); @@ -625,1528 +824,1727 @@ __static_renaming("____ssize_t_47", "__ssize_t"); __static_renaming("____syscall_slong_t_48", "__syscall_slong_t"); __static_renaming("____syscall_ulong_t_49", "__syscall_ulong_t"); __static_renaming("____loff_t_50", "__loff_t"); -__static_renaming("____qaddr_t_51", "__qaddr_t"); -__static_renaming("____caddr_t_52", "__caddr_t"); -__static_renaming("____intptr_t_53", "__intptr_t"); -__static_renaming("____socklen_t_54", "__socklen_t"); -__static_renaming("__ssize_t_55", "ssize_t"); -__static_renaming("__ptrdiff_t_56", "ptrdiff_t"); -__static_renaming("__size_t_57", "size_t"); -__static_renaming("__gid_t_58", "gid_t"); -__static_renaming("__uid_t_59", "uid_t"); -__static_renaming("__off_t_60", "off_t"); -__static_renaming("__off_t_61", "off_t"); -__static_renaming("__useconds_t_62", "useconds_t"); -__static_renaming("__pid_t_63", "pid_t"); -__static_renaming("__pid_t_64", "pid_t"); -__static_renaming("__intptr_t_65", "intptr_t"); -__static_renaming("__socklen_t_66", "socklen_t"); -__static_renaming("__access_69", "access"); -__static_renaming("__access_70", "access"); -__static_renaming("__access_71", "access"); -__static_renaming("__faccessat_76", "faccessat"); -__static_renaming("__faccessat_77", "faccessat"); -__static_renaming("__lseek_84", "lseek"); -__static_renaming("__lseek_85", "lseek"); -__static_renaming("__close_87", "close"); -__static_renaming("__read_91", "read"); -__static_renaming("__read_93", "read"); -__static_renaming("__write_98", "write"); -__static_renaming("__write_100", "write"); -__static_renaming("__pread_106", "pread"); -__static_renaming("__pread_108", "pread"); -__static_renaming("__pread_118", "pread"); -__static_renaming("__pread_120", "pread"); -__static_renaming("__pwrite_126", "pwrite"); -__static_renaming("__pwrite_128", "pwrite"); -__static_renaming("__pwrite_130", "pwrite"); -__static_renaming("__pwrite_132", "pwrite"); -__static_renaming("__pipe_135", "pipe"); -__static_renaming("__pipe_136", "pipe"); -__static_renaming("__pipe_137", "pipe"); -__static_renaming("__pipe_138", "pipe"); -__static_renaming("__alarm_140", "alarm"); -__static_renaming("__sleep_142", "sleep"); -__static_renaming("__ualarm_145", "ualarm"); -__static_renaming("__usleep_147", "usleep"); -__static_renaming("__pause_148", "pause"); -__static_renaming("__pause_149", "pause"); -__static_renaming("__chown_153", "chown"); -__static_renaming("__chown_154", "chown"); -__static_renaming("__fchown_158", "fchown"); -__static_renaming("__fchown_159", "fchown"); -__static_renaming("__lchown_163", "lchown"); -__static_renaming("__lchown_164", "lchown"); -__static_renaming("__fchownat_170", "fchownat"); -__static_renaming("__fchownat_171", "fchownat"); -__static_renaming("__chdir_173", "chdir"); -__static_renaming("__chdir_174", "chdir"); -__static_renaming("__chdir_175", "chdir"); -__static_renaming("__chdir_176", "chdir"); -__static_renaming("__fchdir_178", "fchdir"); -__static_renaming("__fchdir_179", "fchdir"); -__static_renaming("__getcwd_182", "getcwd"); -__static_renaming("__getcwd_183", "getcwd"); -__static_renaming("__getcwd_184", "getcwd"); -__static_renaming("__getcwd_185", "getcwd"); -__static_renaming("__getwd_187", "getwd"); -__static_renaming("__getwd_188", "getwd"); -__static_renaming("__dup_190", "dup"); -__static_renaming("__dup_191", "dup"); -__static_renaming("__dup_192", "dup"); -__static_renaming("__dup_193", "dup"); -__static_renaming("__dup2_196", "dup2"); -__static_renaming("____environ_197", "__environ"); -__static_renaming("__execve_201", "execve"); -__static_renaming("__fexecve_205", "fexecve"); -__static_renaming("__execv_208", "execv"); -__static_renaming("__execv_209", "execv"); -__static_renaming("__execle_212", "execle"); -__static_renaming("__execl_215", "execl"); -__static_renaming("__execvp_218", "execvp"); -__static_renaming("__execlp_221", "execlp"); -__static_renaming("__nice_223", "nice"); -__static_renaming("__nice_224", "nice"); -__static_renaming("___exit_226", "_exit"); -__static_renaming("___exit_227", "_exit"); -__static_renaming("__pathconf_536", "pathconf"); -__static_renaming("__fpathconf_539", "fpathconf"); -__static_renaming("__sysconf_541", "sysconf"); -__static_renaming("__confstr_545", "confstr"); -__static_renaming("__getpid_546", "getpid"); -__static_renaming("__getpid_547", "getpid"); -__static_renaming("__getppid_548", "getppid"); -__static_renaming("__getpgrp_549", "getpgrp"); -__static_renaming("____getpgid_551", "__getpgid"); -__static_renaming("__getpgid_553", "getpgid"); -__static_renaming("__setpgid_556", "setpgid"); -__static_renaming("__setpgid_557", "setpgid"); -__static_renaming("__setpgrp_558", "setpgrp"); -__static_renaming("__setsid_559", "setsid"); -__static_renaming("__setsid_560", "setsid"); -__static_renaming("__getsid_562", "getsid"); -__static_renaming("__getuid_563", "getuid"); -__static_renaming("__getuid_564", "getuid"); -__static_renaming("__geteuid_565", "geteuid"); -__static_renaming("__getgid_566", "getgid"); -__static_renaming("__getegid_567", "getegid"); -__static_renaming("__getgroups_570", "getgroups"); -__static_renaming("__getgroups_571", "getgroups"); -__static_renaming("__setuid_573", "setuid"); -__static_renaming("__setuid_574", "setuid"); -__static_renaming("__setreuid_577", "setreuid"); -__static_renaming("__setreuid_578", "setreuid"); -__static_renaming("__seteuid_580", "seteuid"); -__static_renaming("__seteuid_581", "seteuid"); -__static_renaming("__setgid_583", "setgid"); -__static_renaming("__setgid_584", "setgid"); -__static_renaming("__setgid_585", "setgid"); -__static_renaming("__setgid_586", "setgid"); -__static_renaming("__setregid_589", "setregid"); -__static_renaming("__setregid_590", "setregid"); -__static_renaming("__setegid_592", "setegid"); -__static_renaming("__setegid_593", "setegid"); -__static_renaming("__fork_594", "fork"); -__static_renaming("__fork_595", "fork"); -__static_renaming("__vfork_596", "vfork"); -__static_renaming("__ttyname_598", "ttyname"); -__static_renaming("__ttyname_599", "ttyname"); -__static_renaming("__ttyname_r_603", "ttyname_r"); -__static_renaming("__ttyname_r_604", "ttyname_r"); -__static_renaming("__isatty_606", "isatty"); -__static_renaming("__ttyslot_607", "ttyslot"); -__static_renaming("__link_610", "link"); -__static_renaming("__link_611", "link"); -__static_renaming("__link_612", "link"); -__static_renaming("__link_613", "link"); -__static_renaming("__linkat_619", "linkat"); -__static_renaming("__linkat_620", "linkat"); -__static_renaming("__symlink_623", "symlink"); -__static_renaming("__symlink_624", "symlink"); -__static_renaming("__readlink_628", "readlink"); -__static_renaming("__readlink_630", "readlink"); -__static_renaming("__symlinkat_635", "symlinkat"); -__static_renaming("__symlinkat_636", "symlinkat"); -__static_renaming("__readlinkat_641", "readlinkat"); -__static_renaming("__readlinkat_643", "readlinkat"); -__static_renaming("__unlink_646", "unlink"); -__static_renaming("__unlink_647", "unlink"); -__static_renaming("__unlinkat_651", "unlinkat"); -__static_renaming("__rmdir_653", "rmdir"); -__static_renaming("__rmdir_654", "rmdir"); -__static_renaming("__tcgetpgrp_656", "tcgetpgrp"); -__static_renaming("__tcsetpgrp_659", "tcsetpgrp"); -__static_renaming("__getlogin_660", "getlogin"); -__static_renaming("__getlogin_r_663", "getlogin_r"); -__static_renaming("__setlogin_665", "setlogin"); -__static_renaming("__optarg_666", "optarg"); -__static_renaming("__optind_667", "optind"); -__static_renaming("__opterr_668", "opterr"); -__static_renaming("__optopt_669", "optopt"); -__static_renaming("__getopt_673", "getopt"); -__static_renaming("__gethostname_676", "gethostname"); -__static_renaming("__sethostname_679", "sethostname"); -__static_renaming("__sethostname_680", "sethostname"); -__static_renaming("__sethostid_682", "sethostid"); -__static_renaming("__sethostid_683", "sethostid"); -__static_renaming("__getdomainname_686", "getdomainname"); -__static_renaming("__getdomainname_687", "getdomainname"); -__static_renaming("__setdomainname_690", "setdomainname"); -__static_renaming("__setdomainname_691", "setdomainname"); -__static_renaming("__vhangup_692", "vhangup"); -__static_renaming("__revoke_694", "revoke"); -__static_renaming("__revoke_695", "revoke"); -__static_renaming("__profil_700", "profil"); -__static_renaming("__acct_702", "acct"); -__static_renaming("__getusershell_703", "getusershell"); -__static_renaming("__endusershell_704", "endusershell"); -__static_renaming("__setusershell_705", "setusershell"); -__static_renaming("__daemon_708", "daemon"); -__static_renaming("__daemon_709", "daemon"); -__static_renaming("__chroot_711", "chroot"); -__static_renaming("__chroot_712", "chroot"); -__static_renaming("__getpass_714", "getpass"); -__static_renaming("__fsync_716", "fsync"); -__static_renaming("__fsync_717", "fsync"); -__static_renaming("__fsync_718", "fsync"); -__static_renaming("__gethostid_719", "gethostid"); -__static_renaming("__sync_720", "sync"); -__static_renaming("__getpagesize_721", "getpagesize"); -__static_renaming("__getdtablesize_722", "getdtablesize"); -__static_renaming("__truncate_727", "truncate"); -__static_renaming("__truncate_728", "truncate"); -__static_renaming("__truncate_729", "truncate"); -__static_renaming("__truncate_730", "truncate"); -__static_renaming("__ftruncate_735", "ftruncate"); -__static_renaming("__ftruncate_736", "ftruncate"); -__static_renaming("__ftruncate_737", "ftruncate"); -__static_renaming("__ftruncate_738", "ftruncate"); -__static_renaming("__brk_740", "brk"); -__static_renaming("__brk_741", "brk"); -__static_renaming("__sbrk_744", "sbrk"); -__static_renaming("__syscall_747", "syscall"); -__static_renaming("__lockf_754", "lockf"); -__static_renaming("__lockf_755", "lockf"); -__static_renaming("__lockf_756", "lockf"); -__static_renaming("__lockf_757", "lockf"); -__static_renaming("__fdatasync_759", "fdatasync"); -__static_renaming("____read_chk_764", "__read_chk"); -__static_renaming("____read_alias_769", "__read_alias"); -__static_renaming("____read_chk_warn_775", "__read_chk_warn"); -__static_renaming("____readlink_chk_785", "__readlink_chk"); -__static_renaming("____readlink_alias_790", "__readlink_alias"); -__static_renaming("____readlink_chk_warn_796", "__readlink_chk_warn"); -__static_renaming("____readlinkat_chk_807", "__readlinkat_chk"); -__static_renaming("____readlinkat_alias_813", "__readlinkat_alias"); -__static_renaming("____readlinkat_chk_warn_820", "__readlinkat_chk_warn"); -__static_renaming("____getcwd_chk_830", "__getcwd_chk"); -__static_renaming("____getcwd_chk_831", "__getcwd_chk"); -__static_renaming("____getcwd_alias_834", "__getcwd_alias"); -__static_renaming("____getcwd_chk_warn_838", "__getcwd_chk_warn"); -__static_renaming("____getwd_chk_844", "__getwd_chk"); -__static_renaming("____getwd_warn_846", "__getwd_warn"); -__static_renaming("____confstr_chk_853", "__confstr_chk"); -__static_renaming("____confstr_chk_854", "__confstr_chk"); -__static_renaming("____confstr_alias_858", "__confstr_alias"); -__static_renaming("____confstr_chk_warn_863", "__confstr_chk_warn"); -__static_renaming("____getgroups_chk_871", "__getgroups_chk"); -__static_renaming("____getgroups_alias_874", "__getgroups_alias"); -__static_renaming("____getgroups_chk_warn_878", "__getgroups_chk_warn"); -__static_renaming("____ttyname_r_chk_885", "__ttyname_r_chk"); -__static_renaming("____ttyname_r_alias_889", "__ttyname_r_alias"); -__static_renaming("____ttyname_r_chk_warn_894", "__ttyname_r_chk_warn"); -__static_renaming("____getlogin_r_chk_901", "__getlogin_r_chk"); -__static_renaming("____getlogin_r_alias_904", "__getlogin_r_alias"); -__static_renaming("____getlogin_r_chk_warn_908", "__getlogin_r_chk_warn"); -__static_renaming("____gethostname_chk_914", "__gethostname_chk"); -__static_renaming("____gethostname_alias_917", "__gethostname_alias"); -__static_renaming("____gethostname_chk_warn_921", "__gethostname_chk_warn"); -__static_renaming("____getdomainname_chk_927", "__getdomainname_chk"); -__static_renaming("____getdomainname_alias_930", "__getdomainname_alias"); -__static_renaming("____getdomainname_chk_warn_934", "__getdomainname_chk_warn"); -__static_renaming("__FILE_938", "FILE"); -__static_renaming("____FILE_939", "__FILE"); -__static_renaming("____mbstate_t_948", "__mbstate_t"); -__static_renaming("___G_fpos_t_955", "_G_fpos_t"); -__static_renaming("___G_fpos64_t_962", "_G_fpos64_t"); -__static_renaming("____gnuc_va_list_963", "__gnuc_va_list"); -__static_renaming("___IO_lock_t_965", "_IO_lock_t"); -__static_renaming("___IO_FILE_1044", "_IO_FILE"); -__static_renaming("___IO_FILE_1045", "_IO_FILE"); -__static_renaming("___IO_2_1_stdin__1048", "_IO_2_1_stdin_"); -__static_renaming("___IO_2_1_stdout__1049", "_IO_2_1_stdout_"); -__static_renaming("___IO_2_1_stderr__1050", "_IO_2_1_stderr_"); -__static_renaming("____io_read_fn_1054", "__io_read_fn"); -__static_renaming("____io_write_fn_1058", "__io_write_fn"); -__static_renaming("____io_seek_fn_1062", "__io_seek_fn"); -__static_renaming("____io_close_fn_1064", "__io_close_fn"); -__static_renaming("____underflow_1065", "__underflow"); -__static_renaming("____underflow_1066", "__underflow"); -__static_renaming("____uflow_1068", "__uflow"); -__static_renaming("____uflow_1069", "__uflow"); -__static_renaming("____overflow_1071", "__overflow"); -__static_renaming("____overflow_1072", "__overflow"); -__static_renaming("___IO_getc_1077", "_IO_getc"); -__static_renaming("___IO_getc_1078", "_IO_getc"); -__static_renaming("___IO_putc_1084", "_IO_putc"); -__static_renaming("___IO_putc_1085", "_IO_putc"); -__static_renaming("___IO_feof_1090", "_IO_feof"); -__static_renaming("___IO_feof_1091", "_IO_feof"); -__static_renaming("___IO_ferror_1096", "_IO_ferror"); -__static_renaming("___IO_ferror_1097", "_IO_ferror"); -__static_renaming("___IO_peekc_locked_1102", "_IO_peekc_locked"); -__static_renaming("___IO_peekc_locked_1103", "_IO_peekc_locked"); -__static_renaming("___IO_flockfile_1105", "_IO_flockfile"); -__static_renaming("___IO_flockfile_1106", "_IO_flockfile"); -__static_renaming("___IO_funlockfile_1108", "_IO_funlockfile"); -__static_renaming("___IO_funlockfile_1109", "_IO_funlockfile"); -__static_renaming("___IO_ftrylockfile_1111", "_IO_ftrylockfile"); -__static_renaming("___IO_ftrylockfile_1112", "_IO_ftrylockfile"); -__static_renaming("___IO_vfscanf_1114", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_1116", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_1120", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_1121", "_IO_vfscanf"); -__static_renaming("___IO_vfprintf_1123", "_IO_vfprintf"); -__static_renaming("___IO_vfprintf_1125", "_IO_vfprintf"); -__static_renaming("___IO_vfprintf_1129", "_IO_vfprintf"); -__static_renaming("___IO_padn_1130", "_IO_padn"); -__static_renaming("___IO_padn_1131", "_IO_padn"); -__static_renaming("___IO_sgetn_1133", "_IO_sgetn"); -__static_renaming("___IO_sgetn_1134", "_IO_sgetn"); -__static_renaming("___IO_seekoff_1136", "_IO_seekoff"); -__static_renaming("___IO_seekoff_1137", "_IO_seekoff"); -__static_renaming("___IO_seekpos_1139", "_IO_seekpos"); -__static_renaming("___IO_seekpos_1140", "_IO_seekpos"); -__static_renaming("___IO_free_backup_area_1142", "_IO_free_backup_area"); -__static_renaming("___IO_free_backup_area_1143", "_IO_free_backup_area"); -__static_renaming("__va_list_1145", "va_list"); -__static_renaming("__fpos_t_1147", "fpos_t"); -__static_renaming("__fpos_t_1149", "fpos_t"); -__static_renaming("__stdin_1151", "stdin"); -__static_renaming("__stdin_1152", "stdin"); -__static_renaming("__stdout_1154", "stdout"); -__static_renaming("__stdout_1155", "stdout"); -__static_renaming("__stderr_1157", "stderr"); -__static_renaming("__stderr_1158", "stderr"); -__static_renaming("__remove_1161", "remove"); -__static_renaming("__rename_1164", "rename"); -__static_renaming("__renameat_1169", "renameat"); -__static_renaming("__tmpfile_1170", "tmpfile"); -__static_renaming("__tmpfile_1172", "tmpfile"); -__static_renaming("__tmpfile_1174", "tmpfile"); -__static_renaming("__tmpfile_1176", "tmpfile"); -__static_renaming("__tmpnam_1179", "tmpnam"); -__static_renaming("__tmpnam_1180", "tmpnam"); -__static_renaming("__tmpnam_r_1182", "tmpnam_r"); -__static_renaming("__tmpnam_r_1183", "tmpnam_r"); -__static_renaming("__tempnam_1186", "tempnam"); -__static_renaming("__tempnam_1187", "tempnam"); -__static_renaming("__fclose_1190", "fclose"); -__static_renaming("__fclose_1192", "fclose"); -__static_renaming("__fflush_1196", "fflush"); -__static_renaming("__fflush_unlocked_1200", "fflush_unlocked"); -__static_renaming("__fopen_1204", "fopen"); -__static_renaming("__fopen_1206", "fopen"); -__static_renaming("__fopen_1214", "fopen"); -__static_renaming("__fopen_1216", "fopen"); -__static_renaming("__freopen_1222", "freopen"); -__static_renaming("__freopen_1224", "freopen"); -__static_renaming("__freopen_1226", "freopen"); -__static_renaming("__freopen_1228", "freopen"); -__static_renaming("__fdopen_1232", "fdopen"); -__static_renaming("__fdopen_1234", "fdopen"); -__static_renaming("__fmemopen_1239", "fmemopen"); -__static_renaming("__fmemopen_1241", "fmemopen"); -__static_renaming("__open_memstream_1245", "open_memstream"); -__static_renaming("__open_memstream_1247", "open_memstream"); -__static_renaming("__setbuf_1252", "setbuf"); -__static_renaming("__setbuf_1254", "setbuf"); -__static_renaming("__setvbuf_1261", "setvbuf"); -__static_renaming("__setbuffer_1267", "setbuffer"); -__static_renaming("__setlinebuf_1271", "setlinebuf"); -__static_renaming("__fprintf_1276", "fprintf"); -__static_renaming("__fprintf_1278", "fprintf"); -__static_renaming("__printf_1281", "printf"); -__static_renaming("__sprintf_1284", "sprintf"); -__static_renaming("__vfprintf_1290", "vfprintf"); -__static_renaming("__vprintf_1297", "vprintf"); -__static_renaming("__vsprintf_1303", "vsprintf"); -__static_renaming("__snprintf_1308", "snprintf"); -__static_renaming("__vsnprintf_1314", "vsnprintf"); -__static_renaming("__vdprintf_1320", "vdprintf"); -__static_renaming("__dprintf_1324", "dprintf"); -__static_renaming("__fscanf_1328", "fscanf"); -__static_renaming("__fscanf_1330", "fscanf"); -__static_renaming("__fscanf_1332", "fscanf"); -__static_renaming("__fscanf_1334", "fscanf"); -__static_renaming("__scanf_1337", "scanf"); -__static_renaming("__scanf_1338", "scanf"); -__static_renaming("__sscanf_1341", "sscanf"); -__static_renaming("__vfscanf_1369", "vfscanf"); -__static_renaming("__vfscanf_1373", "vfscanf"); -__static_renaming("__vscanf_1380", "vscanf"); -__static_renaming("__vscanf_1382", "vscanf"); -__static_renaming("__vsscanf_1388", "vsscanf"); -__static_renaming("__fgetc_1423", "fgetc"); -__static_renaming("__getc_1427", "getc"); -__static_renaming("__getchar_1429", "getchar"); -__static_renaming("__getc_unlocked_1432", "getc_unlocked"); -__static_renaming("__getchar_unlocked_1434", "getchar_unlocked"); -__static_renaming("__fgetc_unlocked_1437", "fgetc_unlocked"); -__static_renaming("__fputc_1442", "fputc"); -__static_renaming("__fputc_1444", "fputc"); -__static_renaming("__putc_1449", "putc"); -__static_renaming("__putchar_1452", "putchar"); -__static_renaming("__fputc_unlocked_1456", "fputc_unlocked"); -__static_renaming("__putc_unlocked_1461", "putc_unlocked"); -__static_renaming("__putchar_unlocked_1464", "putchar_unlocked"); -__static_renaming("__getw_1467", "getw"); -__static_renaming("__putw_1472", "putw"); -__static_renaming("__fgets_1478", "fgets"); -__static_renaming("__fgets_1480", "fgets"); -__static_renaming("__fgets_1482", "fgets"); -__static_renaming("__fgets_1484", "fgets"); -__static_renaming("____getdelim_1491", "__getdelim"); -__static_renaming("____getdelim_1493", "__getdelim"); -__static_renaming("__getdelim_1500", "getdelim"); -__static_renaming("__getdelim_1502", "getdelim"); -__static_renaming("__getline_1508", "getline"); -__static_renaming("__getline_1510", "getline"); -__static_renaming("__fputs_1515", "fputs"); -__static_renaming("__fputs_1517", "fputs"); -__static_renaming("__puts_1520", "puts"); -__static_renaming("__ungetc_1524", "ungetc"); -__static_renaming("__fseek_1562", "fseek"); -__static_renaming("__fseek_1564", "fseek"); -__static_renaming("__ftell_1568", "ftell"); -__static_renaming("__ftell_1570", "ftell"); -__static_renaming("__rewind_1574", "rewind"); -__static_renaming("__fseeko_1580", "fseeko"); -__static_renaming("__fseeko_1588", "fseeko"); -__static_renaming("__ftello_1592", "ftello"); -__static_renaming("__ftello_1594", "ftello"); -__static_renaming("__ftello_1596", "ftello"); -__static_renaming("__fgetpos_1602", "fgetpos"); -__static_renaming("__fgetpos_1614", "fgetpos"); -__static_renaming("__fsetpos_1622", "fsetpos"); -__static_renaming("__fsetpos_1626", "fsetpos"); -__static_renaming("__clearerr_1632", "clearerr"); -__static_renaming("__feof_1636", "feof"); -__static_renaming("__feof_1638", "feof"); -__static_renaming("__ferror_1642", "ferror"); -__static_renaming("__ferror_1644", "ferror"); -__static_renaming("__clearerr_unlocked_1648", "clearerr_unlocked"); -__static_renaming("__feof_unlocked_1652", "feof_unlocked"); -__static_renaming("__feof_unlocked_1654", "feof_unlocked"); -__static_renaming("__ferror_unlocked_1658", "ferror_unlocked"); -__static_renaming("__ferror_unlocked_1660", "ferror_unlocked"); -__static_renaming("__perror_1663", "perror"); -__static_renaming("__perror_1664", "perror"); -__static_renaming("__sys_nerr_1665", "sys_nerr"); -__static_renaming("__sys_errlist_1666", "sys_errlist"); -__static_renaming("__fileno_1669", "fileno"); -__static_renaming("__fileno_1671", "fileno"); -__static_renaming("__fileno_unlocked_1675", "fileno_unlocked"); -__static_renaming("__fileno_unlocked_1677", "fileno_unlocked"); -__static_renaming("__popen_1681", "popen"); -__static_renaming("__popen_1683", "popen"); -__static_renaming("__pclose_1687", "pclose"); -__static_renaming("__ctermid_1690", "ctermid"); -__static_renaming("__flockfile_1693", "flockfile"); -__static_renaming("__ftrylockfile_1697", "ftrylockfile"); -__static_renaming("__ftrylockfile_1699", "ftrylockfile"); -__static_renaming("__funlockfile_1703", "funlockfile"); -__static_renaming("____sprintf_chk_1735", "__sprintf_chk"); -__static_renaming("____vsprintf_chk_1742", "__vsprintf_chk"); -__static_renaming("____snprintf_chk_1756", "__snprintf_chk"); -__static_renaming("____vsnprintf_chk_1764", "__vsnprintf_chk"); -__static_renaming("____fprintf_chk_1779", "__fprintf_chk"); -__static_renaming("____printf_chk_1783", "__printf_chk"); -__static_renaming("____vfprintf_chk_1790", "__vfprintf_chk"); -__static_renaming("____vprintf_chk_1798", "__vprintf_chk"); -__static_renaming("____dprintf_chk_1820", "__dprintf_chk"); -__static_renaming("____vdprintf_chk_1826", "__vdprintf_chk"); -__static_renaming("____fgets_chk_1840", "__fgets_chk"); -__static_renaming("____fgets_chk_1842", "__fgets_chk"); -__static_renaming("____fgets_chk_1844", "__fgets_chk"); -__static_renaming("____fgets_alias_1850", "__fgets_alias"); -__static_renaming("____fgets_chk_warn_1857", "__fgets_chk_warn"); -__static_renaming("____cnt_1923", "__cnt"); -__static_renaming("____cptr_1924", "__cptr"); -__static_renaming("__ptrdiff_t_1928", "ptrdiff_t"); -__static_renaming("__wchar_t_1929", "wchar_t"); -__static_renaming("__max_align_t_1934", "max_align_t"); -__static_renaming("__FILE_1935", "FILE"); -__static_renaming("____mbstate_t_1944", "__mbstate_t"); -__static_renaming("___G_fpos_t_1951", "_G_fpos_t"); -__static_renaming("___G_fpos64_t_1958", "_G_fpos64_t"); -__static_renaming("____gnuc_va_list_1959", "__gnuc_va_list"); -__static_renaming("___IO_lock_t_1960", "_IO_lock_t"); -__static_renaming("___IO_FILE_2038", "_IO_FILE"); -__static_renaming("___IO_FILE_2039", "_IO_FILE"); -__static_renaming("___IO_2_1_stdin__2041", "_IO_2_1_stdin_"); -__static_renaming("___IO_2_1_stdout__2042", "_IO_2_1_stdout_"); -__static_renaming("___IO_2_1_stderr__2043", "_IO_2_1_stderr_"); -__static_renaming("____io_read_fn_2047", "__io_read_fn"); -__static_renaming("____io_write_fn_2051", "__io_write_fn"); -__static_renaming("____io_seek_fn_2055", "__io_seek_fn"); -__static_renaming("____io_close_fn_2057", "__io_close_fn"); -__static_renaming("____underflow_2058", "__underflow"); -__static_renaming("____underflow_2059", "__underflow"); -__static_renaming("____uflow_2061", "__uflow"); -__static_renaming("____uflow_2062", "__uflow"); -__static_renaming("____overflow_2064", "__overflow"); -__static_renaming("____overflow_2065", "__overflow"); -__static_renaming("___IO_getc_2070", "_IO_getc"); -__static_renaming("___IO_getc_2071", "_IO_getc"); -__static_renaming("___IO_putc_2077", "_IO_putc"); -__static_renaming("___IO_putc_2078", "_IO_putc"); -__static_renaming("___IO_feof_2083", "_IO_feof"); -__static_renaming("___IO_feof_2084", "_IO_feof"); -__static_renaming("___IO_ferror_2089", "_IO_ferror"); -__static_renaming("___IO_ferror_2090", "_IO_ferror"); -__static_renaming("___IO_peekc_locked_2095", "_IO_peekc_locked"); -__static_renaming("___IO_peekc_locked_2096", "_IO_peekc_locked"); -__static_renaming("___IO_flockfile_2098", "_IO_flockfile"); -__static_renaming("___IO_flockfile_2099", "_IO_flockfile"); -__static_renaming("___IO_funlockfile_2101", "_IO_funlockfile"); -__static_renaming("___IO_funlockfile_2102", "_IO_funlockfile"); -__static_renaming("___IO_ftrylockfile_2104", "_IO_ftrylockfile"); -__static_renaming("___IO_ftrylockfile_2105", "_IO_ftrylockfile"); -__static_renaming("___IO_vfscanf_2107", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_2109", "_IO_vfscanf"); -__static_renaming("___IO_vfprintf_2116", "_IO_vfprintf"); -__static_renaming("___IO_vfprintf_2118", "_IO_vfprintf"); -__static_renaming("___IO_padn_2123", "_IO_padn"); -__static_renaming("___IO_padn_2124", "_IO_padn"); -__static_renaming("___IO_sgetn_2126", "_IO_sgetn"); -__static_renaming("___IO_sgetn_2127", "_IO_sgetn"); -__static_renaming("___IO_seekoff_2129", "_IO_seekoff"); -__static_renaming("___IO_seekoff_2130", "_IO_seekoff"); -__static_renaming("___IO_seekpos_2132", "_IO_seekpos"); -__static_renaming("___IO_seekpos_2133", "_IO_seekpos"); -__static_renaming("___IO_free_backup_area_2135", "_IO_free_backup_area"); -__static_renaming("___IO_free_backup_area_2136", "_IO_free_backup_area"); -__static_renaming("__va_list_2138", "va_list"); -__static_renaming("__fpos_t_2140", "fpos_t"); -__static_renaming("__fpos_t_2142", "fpos_t"); -__static_renaming("__stdin_2144", "stdin"); -__static_renaming("__stdin_2145", "stdin"); -__static_renaming("__stdout_2147", "stdout"); -__static_renaming("__stdout_2148", "stdout"); -__static_renaming("__stderr_2150", "stderr"); -__static_renaming("__stderr_2151", "stderr"); -__static_renaming("__remove_2154", "remove"); -__static_renaming("__rename_2157", "rename"); -__static_renaming("__renameat_2162", "renameat"); -__static_renaming("__tmpfile_2163", "tmpfile"); -__static_renaming("__tmpfile_2165", "tmpfile"); -__static_renaming("__tmpfile_2167", "tmpfile"); -__static_renaming("__tmpfile_2169", "tmpfile"); -__static_renaming("__tmpnam_2172", "tmpnam"); -__static_renaming("__tmpnam_2173", "tmpnam"); -__static_renaming("__tmpnam_r_2175", "tmpnam_r"); -__static_renaming("__tmpnam_r_2176", "tmpnam_r"); -__static_renaming("__tempnam_2179", "tempnam"); -__static_renaming("__tempnam_2180", "tempnam"); -__static_renaming("__fclose_2183", "fclose"); -__static_renaming("__fclose_2185", "fclose"); -__static_renaming("__fflush_2189", "fflush"); -__static_renaming("__fflush_unlocked_2193", "fflush_unlocked"); -__static_renaming("__fopen_2197", "fopen"); -__static_renaming("__fopen_2199", "fopen"); -__static_renaming("__fopen_2207", "fopen"); -__static_renaming("__fopen_2209", "fopen"); -__static_renaming("__freopen_2215", "freopen"); -__static_renaming("__freopen_2217", "freopen"); -__static_renaming("__freopen_2219", "freopen"); -__static_renaming("__freopen_2221", "freopen"); -__static_renaming("__fdopen_2225", "fdopen"); -__static_renaming("__fdopen_2227", "fdopen"); -__static_renaming("__fmemopen_2232", "fmemopen"); -__static_renaming("__fmemopen_2234", "fmemopen"); -__static_renaming("__open_memstream_2238", "open_memstream"); -__static_renaming("__open_memstream_2240", "open_memstream"); -__static_renaming("__setbuf_2245", "setbuf"); -__static_renaming("__setbuf_2247", "setbuf"); -__static_renaming("__setvbuf_2254", "setvbuf"); -__static_renaming("__setbuffer_2260", "setbuffer"); -__static_renaming("__setlinebuf_2264", "setlinebuf"); -__static_renaming("__fprintf_2269", "fprintf"); -__static_renaming("__fprintf_2271", "fprintf"); -__static_renaming("__printf_2274", "printf"); -__static_renaming("__sprintf_2277", "sprintf"); -__static_renaming("__vfprintf_2283", "vfprintf"); -__static_renaming("__vprintf_2290", "vprintf"); -__static_renaming("__vsprintf_2296", "vsprintf"); -__static_renaming("__snprintf_2301", "snprintf"); -__static_renaming("__vsnprintf_2307", "vsnprintf"); -__static_renaming("__vdprintf_2313", "vdprintf"); -__static_renaming("__dprintf_2317", "dprintf"); -__static_renaming("__fscanf_2321", "fscanf"); -__static_renaming("__fscanf_2323", "fscanf"); -__static_renaming("__fscanf_2325", "fscanf"); -__static_renaming("__fscanf_2327", "fscanf"); -__static_renaming("__scanf_2330", "scanf"); -__static_renaming("__scanf_2331", "scanf"); -__static_renaming("__sscanf_2334", "sscanf"); -__static_renaming("__vfscanf_2362", "vfscanf"); -__static_renaming("__vfscanf_2366", "vfscanf"); -__static_renaming("__vscanf_2373", "vscanf"); -__static_renaming("__vscanf_2375", "vscanf"); -__static_renaming("__vsscanf_2381", "vsscanf"); -__static_renaming("__fgetc_2416", "fgetc"); -__static_renaming("__getc_2420", "getc"); -__static_renaming("__getchar_2422", "getchar"); -__static_renaming("__getc_unlocked_2425", "getc_unlocked"); -__static_renaming("__getchar_unlocked_2427", "getchar_unlocked"); -__static_renaming("__fgetc_unlocked_2430", "fgetc_unlocked"); -__static_renaming("__fputc_2435", "fputc"); -__static_renaming("__fputc_2437", "fputc"); -__static_renaming("__putc_2442", "putc"); -__static_renaming("__putchar_2445", "putchar"); -__static_renaming("__fputc_unlocked_2449", "fputc_unlocked"); -__static_renaming("__putc_unlocked_2454", "putc_unlocked"); -__static_renaming("__putchar_unlocked_2457", "putchar_unlocked"); -__static_renaming("__getw_2460", "getw"); -__static_renaming("__putw_2465", "putw"); -__static_renaming("__fgets_2471", "fgets"); -__static_renaming("__fgets_2473", "fgets"); -__static_renaming("__fgets_2475", "fgets"); -__static_renaming("__fgets_2477", "fgets"); -__static_renaming("____getdelim_2484", "__getdelim"); -__static_renaming("____getdelim_2486", "__getdelim"); -__static_renaming("__getdelim_2493", "getdelim"); -__static_renaming("__getdelim_2495", "getdelim"); -__static_renaming("__getline_2501", "getline"); -__static_renaming("__getline_2503", "getline"); -__static_renaming("__fputs_2508", "fputs"); -__static_renaming("__fputs_2510", "fputs"); -__static_renaming("__puts_2513", "puts"); -__static_renaming("__ungetc_2517", "ungetc"); -__static_renaming("__fseek_2555", "fseek"); -__static_renaming("__fseek_2557", "fseek"); -__static_renaming("__ftell_2561", "ftell"); -__static_renaming("__ftell_2563", "ftell"); -__static_renaming("__rewind_2567", "rewind"); -__static_renaming("__fseeko_2573", "fseeko"); -__static_renaming("__fseeko_2581", "fseeko"); -__static_renaming("__ftello_2585", "ftello"); -__static_renaming("__ftello_2587", "ftello"); -__static_renaming("__ftello_2589", "ftello"); -__static_renaming("__fgetpos_2595", "fgetpos"); -__static_renaming("__fgetpos_2607", "fgetpos"); -__static_renaming("__fsetpos_2615", "fsetpos"); -__static_renaming("__fsetpos_2619", "fsetpos"); -__static_renaming("__clearerr_2625", "clearerr"); -__static_renaming("__feof_2629", "feof"); -__static_renaming("__feof_2631", "feof"); -__static_renaming("__ferror_2635", "ferror"); -__static_renaming("__ferror_2637", "ferror"); -__static_renaming("__clearerr_unlocked_2641", "clearerr_unlocked"); -__static_renaming("__feof_unlocked_2645", "feof_unlocked"); -__static_renaming("__feof_unlocked_2647", "feof_unlocked"); -__static_renaming("__ferror_unlocked_2651", "ferror_unlocked"); -__static_renaming("__ferror_unlocked_2653", "ferror_unlocked"); -__static_renaming("__perror_2656", "perror"); -__static_renaming("__perror_2657", "perror"); -__static_renaming("__sys_nerr_2658", "sys_nerr"); -__static_renaming("__sys_errlist_2659", "sys_errlist"); -__static_renaming("__fileno_2662", "fileno"); -__static_renaming("__fileno_2664", "fileno"); -__static_renaming("__fileno_unlocked_2668", "fileno_unlocked"); -__static_renaming("__fileno_unlocked_2670", "fileno_unlocked"); -__static_renaming("__popen_2674", "popen"); -__static_renaming("__popen_2676", "popen"); -__static_renaming("__pclose_2680", "pclose"); -__static_renaming("__ctermid_2683", "ctermid"); -__static_renaming("__flockfile_2686", "flockfile"); -__static_renaming("__ftrylockfile_2690", "ftrylockfile"); -__static_renaming("__ftrylockfile_2692", "ftrylockfile"); -__static_renaming("__funlockfile_2696", "funlockfile"); -__static_renaming("____sprintf_chk_2728", "__sprintf_chk"); -__static_renaming("____vsprintf_chk_2735", "__vsprintf_chk"); -__static_renaming("____snprintf_chk_2749", "__snprintf_chk"); -__static_renaming("____vsnprintf_chk_2757", "__vsnprintf_chk"); -__static_renaming("____fprintf_chk_2772", "__fprintf_chk"); -__static_renaming("____printf_chk_2776", "__printf_chk"); -__static_renaming("____vfprintf_chk_2783", "__vfprintf_chk"); -__static_renaming("____vprintf_chk_2791", "__vprintf_chk"); -__static_renaming("____dprintf_chk_2813", "__dprintf_chk"); -__static_renaming("____vdprintf_chk_2819", "__vdprintf_chk"); -__static_renaming("____fgets_chk_2833", "__fgets_chk"); -__static_renaming("____fgets_chk_2835", "__fgets_chk"); -__static_renaming("____fgets_chk_2837", "__fgets_chk"); -__static_renaming("____fgets_alias_2843", "__fgets_alias"); -__static_renaming("____fgets_chk_warn_2850", "__fgets_chk_warn"); -__static_renaming("____cnt_2916", "__cnt"); -__static_renaming("____cptr_2917", "__cptr"); -__static_renaming("__malloc_2922", "malloc"); -__static_renaming("__malloc_2923", "malloc"); -__static_renaming("__malloc_2924", "malloc"); -__static_renaming("__malloc_2925", "malloc"); -__static_renaming("__malloc_2926", "malloc"); -__static_renaming("__malloc_2927", "malloc"); -__static_renaming("__calloc_2930", "calloc"); -__static_renaming("__calloc_2931", "calloc"); -__static_renaming("__realloc_2934", "realloc"); -__static_renaming("__free_2936", "free"); -__static_renaming("__cfree_2938", "cfree"); -__static_renaming("__memalign_2941", "memalign"); -__static_renaming("__memalign_2942", "memalign"); -__static_renaming("__valloc_2944", "valloc"); -__static_renaming("__valloc_2945", "valloc"); -__static_renaming("__pvalloc_2947", "pvalloc"); -__static_renaming("__pvalloc_2948", "pvalloc"); -__static_renaming("____morecore_2952", "__morecore"); -__static_renaming("____morecore_2953", "__morecore"); -__static_renaming("____default_morecore_2958", "__default_morecore"); -__static_renaming("____default_morecore_2959", "__default_morecore"); -__static_renaming("__mallinfo_2971", "mallinfo"); -__static_renaming("__mallopt_2974", "mallopt"); -__static_renaming("__malloc_trim_2976", "malloc_trim"); -__static_renaming("__malloc_usable_size_2978", "malloc_usable_size"); -__static_renaming("__malloc_stats_2979", "malloc_stats"); -__static_renaming("__malloc_info_2984", "malloc_info"); -__static_renaming("__malloc_info_2985", "malloc_info"); -__static_renaming("__malloc_get_state_2987", "malloc_get_state"); -__static_renaming("__malloc_set_state_2989", "malloc_set_state"); -__static_renaming("____malloc_initialize_hook_2990", "__malloc_initialize_hook"); -__static_renaming("____free_hook_2992", "__free_hook"); -__static_renaming("____malloc_hook_2994", "__malloc_hook"); -__static_renaming("____realloc_hook_2997", "__realloc_hook"); -__static_renaming("____memalign_hook_3000", "__memalign_hook"); -__static_renaming("____after_morecore_hook_3001", "__after_morecore_hook"); -__static_renaming("____malloc_check_init_3002", "__malloc_check_init"); -__static_renaming("__wchar_t_3003", "wchar_t"); -__static_renaming("__idtype_t_3009", "idtype_t"); -__static_renaming("____bswap_32_3011", "__bswap_32"); -__static_renaming("____bswap_64_3014", "__bswap_64"); -__static_renaming("____WAIT_STATUS_3034", "__WAIT_STATUS"); -__static_renaming("__div_t_3039", "div_t"); -__static_renaming("__ldiv_t_3044", "ldiv_t"); -__static_renaming("__lldiv_t_3049", "lldiv_t"); -__static_renaming("____ctype_get_mb_cur_max_3050", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_3051", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_3052", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_3053", "__ctype_get_mb_cur_max"); -__static_renaming("__atof_3055", "atof"); -__static_renaming("__atof_3056", "atof"); -__static_renaming("__atoi_3058", "atoi"); -__static_renaming("__atoi_3059", "atoi"); -__static_renaming("__atol_3061", "atol"); -__static_renaming("__atol_3062", "atol"); -__static_renaming("__atoll_3064", "atoll"); -__static_renaming("__atoll_3065", "atoll"); -__static_renaming("__strtod_3068", "strtod"); -__static_renaming("__strtof_3071", "strtof"); -__static_renaming("__strtold_3074", "strtold"); -__static_renaming("__strtol_3078", "strtol"); -__static_renaming("__strtoul_3082", "strtoul"); -__static_renaming("__strtoq_3086", "strtoq"); -__static_renaming("__strtouq_3090", "strtouq"); -__static_renaming("__strtoll_3094", "strtoll"); -__static_renaming("__strtoll_3095", "strtoll"); -__static_renaming("__strtoull_3099", "strtoull"); -__static_renaming("__l64a_3104", "l64a"); -__static_renaming("__l64a_3105", "l64a"); -__static_renaming("__a64l_3107", "a64l"); -__static_renaming("__a64l_3108", "a64l"); -__static_renaming("__u_char_3109", "u_char"); -__static_renaming("__u_short_3110", "u_short"); -__static_renaming("__u_int_3111", "u_int"); -__static_renaming("__u_long_3112", "u_long"); -__static_renaming("__quad_t_3113", "quad_t"); -__static_renaming("__u_quad_t_3114", "u_quad_t"); -__static_renaming("__fsid_t_3115", "fsid_t"); -__static_renaming("__loff_t_3116", "loff_t"); -__static_renaming("__ino_t_3117", "ino_t"); -__static_renaming("__ino_t_3118", "ino_t"); -__static_renaming("__dev_t_3119", "dev_t"); -__static_renaming("__mode_t_3120", "mode_t"); -__static_renaming("__mode_t_3121", "mode_t"); -__static_renaming("__nlink_t_3122", "nlink_t"); -__static_renaming("__id_t_3123", "id_t"); -__static_renaming("__daddr_t_3124", "daddr_t"); -__static_renaming("__caddr_t_3125", "caddr_t"); -__static_renaming("__key_t_3126", "key_t"); -__static_renaming("__key_t_3127", "key_t"); -__static_renaming("__clock_t_3128", "clock_t"); -__static_renaming("__time_t_3129", "time_t"); -__static_renaming("__clockid_t_3130", "clockid_t"); -__static_renaming("__timer_t_3131", "timer_t"); -__static_renaming("__ulong_3132", "ulong"); -__static_renaming("__ulong_3133", "ulong"); -__static_renaming("__ulong_3134", "ulong"); -__static_renaming("__ushort_3135", "ushort"); -__static_renaming("__uint_3136", "uint"); -__static_renaming("__int8_t_3137", "int8_t"); -__static_renaming("__int16_t_3138", "int16_t"); -__static_renaming("__int32_t_3139", "int32_t"); -__static_renaming("__int64_t_3140", "int64_t"); -__static_renaming("__u_int8_t_3141", "u_int8_t"); -__static_renaming("__u_int16_t_3142", "u_int16_t"); -__static_renaming("__u_int32_t_3143", "u_int32_t"); -__static_renaming("__u_int64_t_3144", "u_int64_t"); -__static_renaming("__register_t_3145", "register_t"); -__static_renaming("____bswap_32_3147", "__bswap_32"); -__static_renaming("____bswap_64_3150", "__bswap_64"); -__static_renaming("____sig_atomic_t_3151", "__sig_atomic_t"); -__static_renaming("____sigset_t_3155", "__sigset_t"); -__static_renaming("__sigset_t_3156", "sigset_t"); -__static_renaming("__suseconds_t_3163", "suseconds_t"); -__static_renaming("____fd_mask_3164", "__fd_mask"); -__static_renaming("____fd_mask_3165", "__fd_mask"); -__static_renaming("__fd_set_3170", "fd_set"); -__static_renaming("__fd_mask_3171", "fd_mask"); -__static_renaming("__fd_mask_3172", "fd_mask"); -__static_renaming("__select_3180", "select"); -__static_renaming("__select_3181", "select"); -__static_renaming("__pselect_3190", "pselect"); -__static_renaming("__pselect_3191", "pselect"); -__static_renaming("____fdelt_chk_3193", "__fdelt_chk"); -__static_renaming("____fdelt_warn_3195", "__fdelt_warn"); -__static_renaming("__gnu_dev_major_3197", "gnu_dev_major"); -__static_renaming("__gnu_dev_major_3198", "gnu_dev_major"); -__static_renaming("__gnu_dev_minor_3200", "gnu_dev_minor"); -__static_renaming("__gnu_dev_makedev_3203", "gnu_dev_makedev"); -__static_renaming("__blksize_t_3208", "blksize_t"); -__static_renaming("__blkcnt_t_3209", "blkcnt_t"); -__static_renaming("__fsblkcnt_t_3210", "fsblkcnt_t"); -__static_renaming("__blkcnt_t_3211", "blkcnt_t"); -__static_renaming("__fsblkcnt_t_3212", "fsblkcnt_t"); -__static_renaming("__fsfilcnt_t_3213", "fsfilcnt_t"); -__static_renaming("__fsfilcnt_t_3214", "fsfilcnt_t"); -__static_renaming("__pthread_t_3215", "pthread_t"); -__static_renaming("__pthread_attr_t_3219", "pthread_attr_t"); -__static_renaming("____pthread_list_t_3224", "__pthread_list_t"); -__static_renaming("____pthread_list_t_3225", "__pthread_list_t"); -__static_renaming("__pthread_mutex_t_3241", "pthread_mutex_t"); -__static_renaming("__pthread_mutexattr_t_3246", "pthread_mutexattr_t"); -__static_renaming("__rand_3247", "rand"); -__static_renaming("__srand_3249", "srand"); -__static_renaming("__rand_r_3251", "rand_r"); -__static_renaming("__drand48_3252", "drand48"); -__static_renaming("__erand48_3254", "erand48"); -__static_renaming("__lrand48_3255", "lrand48"); -__static_renaming("__nrand48_3257", "nrand48"); -__static_renaming("__mrand48_3258", "mrand48"); -__static_renaming("__jrand48_3260", "jrand48"); -__static_renaming("__srand48_3262", "srand48"); -__static_renaming("__seed48_3264", "seed48"); -__static_renaming("__lcong48_3266", "lcong48"); -__static_renaming("__alloca_3299", "alloca"); -__static_renaming("__posix_memalign_3308", "posix_memalign"); -__static_renaming("__posix_memalign_3309", "posix_memalign"); -__static_renaming("__aligned_alloc_3312", "aligned_alloc"); -__static_renaming("__aligned_alloc_3313", "aligned_alloc"); -__static_renaming("__aligned_alloc_3314", "aligned_alloc"); -__static_renaming("__aligned_alloc_3315", "aligned_alloc"); -__static_renaming("__abort_3316", "abort"); -__static_renaming("__atexit_3318", "atexit"); -__static_renaming("__at_quick_exit_3320", "at_quick_exit"); -__static_renaming("__on_exit_3325", "on_exit"); -__static_renaming("__exit_3327", "exit"); -__static_renaming("__exit_3328", "exit"); -__static_renaming("__quick_exit_3330", "quick_exit"); -__static_renaming("___Exit_3332", "_Exit"); -__static_renaming("__getenv_3334", "getenv"); -__static_renaming("__getenv_3335", "getenv"); -__static_renaming("__putenv_3337", "putenv"); -__static_renaming("__setenv_3341", "setenv"); -__static_renaming("__unsetenv_3343", "unsetenv"); -__static_renaming("__clearenv_3344", "clearenv"); -__static_renaming("__mktemp_3346", "mktemp"); -__static_renaming("__mkstemp_3349", "mkstemp"); -__static_renaming("__mkstemp_3350", "mkstemp"); -__static_renaming("__mkstemp_3351", "mkstemp"); -__static_renaming("__mkstemp_3352", "mkstemp"); -__static_renaming("__mkstemps_3357", "mkstemps"); -__static_renaming("__mkstemps_3358", "mkstemps"); -__static_renaming("__mkstemps_3359", "mkstemps"); -__static_renaming("__mkstemps_3360", "mkstemps"); -__static_renaming("__mkdtemp_3362", "mkdtemp"); -__static_renaming("__mkdtemp_3363", "mkdtemp"); -__static_renaming("__system_3365", "system"); -__static_renaming("__system_3366", "system"); -__static_renaming("__system_3367", "system"); -__static_renaming("__system_3368", "system"); -__static_renaming("__realpath_3371", "realpath"); -__static_renaming("__realpath_3372", "realpath"); -__static_renaming("____compar_fn_t_3373", "__compar_fn_t"); -__static_renaming("__bsearch_3381", "bsearch"); -__static_renaming("__bsearch_3383", "bsearch"); -__static_renaming("____l_3390", "__l"); -__static_renaming("____u_3391", "__u"); -__static_renaming("____idx_3392", "__idx"); -__static_renaming("____p_3393", "__p"); -__static_renaming("____comparison_3394", "__comparison"); -__static_renaming("__qsort_3402", "qsort"); -__static_renaming("__qsort_3404", "qsort"); -__static_renaming("__abs_3407", "abs"); -__static_renaming("__abs_3408", "abs"); -__static_renaming("__labs_3410", "labs"); -__static_renaming("__labs_3411", "labs"); -__static_renaming("__llabs_3413", "llabs"); -__static_renaming("__llabs_3414", "llabs"); -__static_renaming("__div_3417", "div"); -__static_renaming("__div_3418", "div"); -__static_renaming("__ldiv_3421", "ldiv"); -__static_renaming("__ldiv_3423", "ldiv"); -__static_renaming("__lldiv_3427", "lldiv"); -__static_renaming("__lldiv_3429", "lldiv"); -__static_renaming("__ecvt_3435", "ecvt"); -__static_renaming("__ecvt_3436", "ecvt"); -__static_renaming("__fcvt_3441", "fcvt"); -__static_renaming("__fcvt_3442", "fcvt"); -__static_renaming("__gcvt_3446", "gcvt"); -__static_renaming("__gcvt_3447", "gcvt"); -__static_renaming("__qecvt_3452", "qecvt"); -__static_renaming("__qecvt_3453", "qecvt"); -__static_renaming("__qfcvt_3458", "qfcvt"); -__static_renaming("__qfcvt_3459", "qfcvt"); -__static_renaming("__qgcvt_3463", "qgcvt"); -__static_renaming("__qgcvt_3464", "qgcvt"); -__static_renaming("__ecvt_r_3471", "ecvt_r"); -__static_renaming("__fcvt_r_3478", "fcvt_r"); -__static_renaming("__qecvt_r_3485", "qecvt_r"); -__static_renaming("__qfcvt_r_3492", "qfcvt_r"); -__static_renaming("__mblen_3495", "mblen"); -__static_renaming("__mblen_3496", "mblen"); -__static_renaming("__mbtowc_3501", "mbtowc"); -__static_renaming("__mbtowc_3502", "mbtowc"); -__static_renaming("__wctomb_3506", "wctomb"); -__static_renaming("__wctomb_3507", "wctomb"); -__static_renaming("__mbstowcs_3512", "mbstowcs"); -__static_renaming("__mbstowcs_3513", "mbstowcs"); -__static_renaming("__wcstombs_3518", "wcstombs"); -__static_renaming("__wcstombs_3519", "wcstombs"); -__static_renaming("__rpmatch_3521", "rpmatch"); -__static_renaming("__rpmatch_3522", "rpmatch"); -__static_renaming("__getsubopt_3526", "getsubopt"); -__static_renaming("__getsubopt_3527", "getsubopt"); -__static_renaming("__getloadavg_3530", "getloadavg"); -__static_renaming("____realpath_chk_3535", "__realpath_chk"); -__static_renaming("____realpath_alias_3538", "__realpath_alias"); -__static_renaming("____realpath_chk_warn_3542", "__realpath_chk_warn"); -__static_renaming("____ptsname_r_chk_3550", "__ptsname_r_chk"); -__static_renaming("____ptsname_r_alias_3554", "__ptsname_r_alias"); -__static_renaming("____ptsname_r_chk_warn_3559", "__ptsname_r_chk_warn"); -__static_renaming("____wctomb_chk_3568", "__wctomb_chk"); -__static_renaming("____wctomb_chk_3569", "__wctomb_chk"); -__static_renaming("____wctomb_alias_3573", "__wctomb_alias"); -__static_renaming("____wctomb_alias_3574", "__wctomb_alias"); -__static_renaming("____mbstowcs_chk_3583", "__mbstowcs_chk"); -__static_renaming("____mbstowcs_chk_3584", "__mbstowcs_chk"); -__static_renaming("____mbstowcs_alias_3589", "__mbstowcs_alias"); -__static_renaming("____mbstowcs_alias_3590", "__mbstowcs_alias"); -__static_renaming("____mbstowcs_chk_warn_3596", "__mbstowcs_chk_warn"); -__static_renaming("____mbstowcs_chk_warn_3597", "__mbstowcs_chk_warn"); -__static_renaming("____wcstombs_chk_3607", "__wcstombs_chk"); -__static_renaming("____wcstombs_chk_3608", "__wcstombs_chk"); -__static_renaming("____wcstombs_alias_3613", "__wcstombs_alias"); -__static_renaming("____wcstombs_alias_3614", "__wcstombs_alias"); -__static_renaming("____wcstombs_chk_warn_3620", "__wcstombs_chk_warn"); -__static_renaming("____wcstombs_chk_warn_3621", "__wcstombs_chk_warn"); -__static_renaming("____errno_location_3626", "__errno_location"); -__static_renaming("____errno_location_3627", "__errno_location"); -__static_renaming("____errno_location_3628", "__errno_location"); -__static_renaming("__off_t_3629", "off_t"); -__static_renaming("__off_t_3630", "off_t"); -__static_renaming("__mode_t_3631", "mode_t"); -__static_renaming("__mmap_3644", "mmap"); -__static_renaming("__mmap_3645", "mmap"); -__static_renaming("__munmap_3648", "munmap"); -__static_renaming("__mprotect_3652", "mprotect"); -__static_renaming("__msync_3656", "msync"); -__static_renaming("__madvise_3660", "madvise"); -__static_renaming("__posix_madvise_3664", "posix_madvise"); -__static_renaming("__mlock_3667", "mlock"); -__static_renaming("__mlock_3668", "mlock"); -__static_renaming("__munlock_3671", "munlock"); -__static_renaming("__mlockall_3673", "mlockall"); -__static_renaming("__munlockall_3674", "munlockall"); -__static_renaming("__mincore_3678", "mincore"); -__static_renaming("__shm_open_3684", "shm_open"); -__static_renaming("__shm_open_3687", "shm_open"); -__static_renaming("__shm_unlink_3689", "shm_unlink"); -__static_renaming("__buffer_3690", "buffer"); -__static_renaming("__pagesize_3691", "pagesize"); -__static_renaming("__allocate_buffer_3692", "allocate_buffer"); -__static_renaming("__main_3716", "main"); -__static_renaming("__main_3717", "main"); - -__static_condition_renaming("__static_condition_default_92", "!(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_94", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_99", "!(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_101", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_107", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_109", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_119", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_121", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_127", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_129", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_131", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_133", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_629", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_631", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_642", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_644", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_745", "!(defined __STRICT_ANSI__) && (defined __intptr_t_defined)"); -__static_condition_renaming("__static_condition_default_765", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_770", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_776", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_780", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_786", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_791", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_797", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_801", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_808", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_814", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_821", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_826", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); -__static_condition_renaming("__static_condition_default_841", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_848", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_954", "!(defined __need___FILE) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_961", "!(defined __need___FILE) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_999", "!(defined __need___FILE) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_1042", "!(defined __need___FILE) && (defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_1043", "!(defined __need___FILE) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_1046", "!(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_1067", "!(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_1070", "!(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_1073", "!(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_1079", "!(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_1086", "!(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_1092", "!(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_1098", "!(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_1104", "!(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_1107", "!(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_1110", "!(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_1113", "!(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_1115", "!(defined __need___FILE) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_1117", "!(defined __need___FILE) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_1118", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_1119", "!(defined __need___FILE) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_1122", "!(defined __need___FILE) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_1124", "!(defined __need___FILE) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_1126", "!(defined __need___FILE) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_1127", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_1128", "!(defined __need___FILE) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_1132", "!(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_1135", "!(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_1138", "!(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_1141", "!(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_1144", "!(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_1146", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); -__static_condition_renaming("__static_condition_default_1148", "!(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_1150", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_1153", "!(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_1156", "!(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_1159", "!(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_1171", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1173", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1175", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1177", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1191", "(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1193", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1197", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1201", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1205", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1207", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1215", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1217", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1223", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1225", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1227", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1229", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1233", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1235", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1240", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1242", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1246", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1248", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1253", "(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1255", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1262", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1268", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1272", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1277", "(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1279", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1291", "!(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1292", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_1293", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1298", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1304", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1315", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1321", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1329", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1331", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1333", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1335", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1346", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1348", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1349", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1351", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1353", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1354", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1357", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_1359", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_1363", "!(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_1370", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1371", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_1372", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1374", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1375", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_1376", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1381", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1383", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1389", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1396", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_1397", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1398", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_1399", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1401", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_1402", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1403", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_1404", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1409", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_1410", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1412", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_1413", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1419", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_1420", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1424", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1428", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1433", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1438", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1443", "(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1445", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1450", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1457", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1462", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1468", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1473", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1479", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1481", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1483", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1485", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1492", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1494", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1501", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1503", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1509", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1511", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1516", "(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1518", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1525", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1531", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1532", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1533", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1534", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1540", "!(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1541", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1547", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1548", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1549", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1550", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1556", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1557", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1563", "(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1565", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1569", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1571", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1575", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1581", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1589", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1593", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1595", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1597", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1603", "!(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_1604", "!(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_1605", "!(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_1615", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_1616", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_1617", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_1623", "!(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_1624", "!(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_1625", "!(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_1627", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_1628", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_1629", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_1633", "!(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1637", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1639", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1643", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1645", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1649", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1653", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1655", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1659", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1661", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1670", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1672", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1676", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1678", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1682", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1684", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1688", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1694", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1698", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1700", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1704", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1708", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1711", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_1714", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_1719", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_1723", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_1727", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_1730", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_1743", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1750", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1765", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1774", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1780", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1791", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1792", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_1793", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1799", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1803", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1808", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1814", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1815", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_1816", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1827", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1834", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_1841", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1843", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1845", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1851", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1858", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1863", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1864", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1871", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1872", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1878", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1879", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1886", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1887", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1893", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1894", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1901", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1902", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1908", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1909", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1916", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1917", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1925", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_1926", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1927", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1950", "(defined __need___FILE) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_1957", "(defined __need___FILE) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_1993", "(defined __need___FILE) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_2036", "(defined __need___FILE) && (defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_2037", "(defined __need___FILE) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_2040", "(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_2060", "(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_2063", "(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_2066", "(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_2072", "(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_2079", "(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_2085", "(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_2091", "(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_2097", "(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_2100", "(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_2103", "(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_2106", "(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_2108", "(defined __need___FILE) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_2110", "(defined __need___FILE) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_2111", "(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_2112", "(defined __need___FILE) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_2115", "(defined __need___FILE) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_2117", "(defined __need___FILE) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_2119", "(defined __need___FILE) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_2120", "(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_2121", "(defined __need___FILE) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_2125", "(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_2128", "(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_2131", "(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_2134", "(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_2137", "(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_2139", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); -__static_condition_renaming("__static_condition_default_2141", "!(defined _FILE_OFFSET_BITS) && (defined __need___FILE) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __need___FILE) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_2143", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __need___FILE) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_2146", "(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_2149", "(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_2152", "(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_2164", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2166", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2168", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2170", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2184", "(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2186", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2190", "(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2194", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2198", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2200", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2208", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2210", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2216", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2218", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2220", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2222", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2226", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2228", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2233", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2235", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2239", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2241", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2246", "(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2248", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2255", "(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2261", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2265", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2270", "(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2272", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2284", "(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2285", "(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_2286", "(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2291", "(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2297", "(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2308", "(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2314", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2322", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2324", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2326", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2328", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2339", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2341", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2342", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2344", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2346", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2347", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2350", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_2352", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_2356", "(defined __need___FILE)"); -__static_condition_renaming("__static_condition_default_2363", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2364", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_2365", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2367", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2368", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_2369", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2374", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2376", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2382", "(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2389", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_2390", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2391", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_2392", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2394", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_2395", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2396", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_2397", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2402", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_2403", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2405", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_2406", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2412", "(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_2413", "(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2417", "(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2421", "(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2426", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2431", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2436", "(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2438", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2443", "(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2450", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2455", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2461", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2466", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2472", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2474", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2476", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2478", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2485", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2487", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2494", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2496", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2502", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2504", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2509", "(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2511", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2518", "(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2524", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2525", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2526", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2527", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2533", "(defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2534", "(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2540", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2541", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2542", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2543", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2549", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2550", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2556", "(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2558", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2562", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2564", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2568", "(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2574", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2582", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2586", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2588", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2590", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2596", "!(defined _FILE_OFFSET_BITS) && (defined __need___FILE) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __need___FILE) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_2597", "!(defined _FILE_OFFSET_BITS) && (defined __need___FILE) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __need___FILE) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_2598", "!(defined _FILE_OFFSET_BITS) && (defined __need___FILE) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __need___FILE) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_2608", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __need___FILE) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_2609", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __need___FILE) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_2610", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __need___FILE) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_2616", "!(defined _FILE_OFFSET_BITS) && (defined __need___FILE) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __need___FILE) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_2617", "!(defined _FILE_OFFSET_BITS) && (defined __need___FILE) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __need___FILE) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_2618", "!(defined _FILE_OFFSET_BITS) && (defined __need___FILE) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __need___FILE) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_2620", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __need___FILE) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_2621", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __need___FILE) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_2622", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __need___FILE) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_2626", "(defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2630", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2632", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2636", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2638", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2642", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2646", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2648", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2652", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2654", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2663", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2665", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2669", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_renaming("____qaddr_t_52", "__qaddr_t"); +__static_renaming("____caddr_t_53", "__caddr_t"); +__static_renaming("____intptr_t_54", "__intptr_t"); +__static_renaming("____socklen_t_55", "__socklen_t"); +__static_renaming("__ssize_t_56", "ssize_t"); +__static_renaming("__ptrdiff_t_58", "ptrdiff_t"); +__static_renaming("__size_t_59", "size_t"); +__static_renaming("__gid_t_60", "gid_t"); +__static_renaming("__uid_t_62", "uid_t"); +__static_renaming("__off_t_64", "off_t"); +__static_renaming("__off_t_66", "off_t"); +__static_renaming("__useconds_t_68", "useconds_t"); +__static_renaming("__pid_t_70", "pid_t"); +__static_renaming("__pid_t_72", "pid_t"); +__static_renaming("__intptr_t_74", "intptr_t"); +__static_renaming("__socklen_t_75", "socklen_t"); +__static_renaming("__access_78", "access"); +__static_renaming("__access_79", "access"); +__static_renaming("__access_80", "access"); +__static_renaming("__faccessat_85", "faccessat"); +__static_renaming("__faccessat_86", "faccessat"); +__static_renaming("__lseek_95", "lseek"); +__static_renaming("__lseek_97", "lseek"); +__static_renaming("__close_100", "close"); +__static_renaming("__read_104", "read"); +__static_renaming("__read_107", "read"); +__static_renaming("__write_113", "write"); +__static_renaming("__write_116", "write"); +__static_renaming("__pread_124", "pread"); +__static_renaming("__pread_128", "pread"); +__static_renaming("__pread_142", "pread"); +__static_renaming("__pread_146", "pread"); +__static_renaming("__pwrite_155", "pwrite"); +__static_renaming("__pwrite_159", "pwrite"); +__static_renaming("__pwrite_163", "pwrite"); +__static_renaming("__pwrite_167", "pwrite"); +__static_renaming("__pipe_172", "pipe"); +__static_renaming("__pipe_173", "pipe"); +__static_renaming("__pipe_174", "pipe"); +__static_renaming("__pipe_175", "pipe"); +__static_renaming("__alarm_177", "alarm"); +__static_renaming("__sleep_179", "sleep"); +__static_renaming("__ualarm_184", "ualarm"); +__static_renaming("__usleep_188", "usleep"); +__static_renaming("__pause_190", "pause"); +__static_renaming("__pause_191", "pause"); +__static_renaming("__chown_197", "chown"); +__static_renaming("__chown_199", "chown"); +__static_renaming("__fchown_206", "fchown"); +__static_renaming("__fchown_208", "fchown"); +__static_renaming("__lchown_215", "lchown"); +__static_renaming("__lchown_217", "lchown"); +__static_renaming("__fchownat_226", "fchownat"); +__static_renaming("__fchownat_228", "fchownat"); +__static_renaming("__chdir_231", "chdir"); +__static_renaming("__chdir_232", "chdir"); +__static_renaming("__chdir_233", "chdir"); +__static_renaming("__chdir_234", "chdir"); +__static_renaming("__fchdir_236", "fchdir"); +__static_renaming("__fchdir_237", "fchdir"); +__static_renaming("__getcwd_240", "getcwd"); +__static_renaming("__getcwd_241", "getcwd"); +__static_renaming("__getcwd_242", "getcwd"); +__static_renaming("__getcwd_243", "getcwd"); +__static_renaming("__getwd_245", "getwd"); +__static_renaming("__getwd_246", "getwd"); +__static_renaming("__dup_248", "dup"); +__static_renaming("__dup_249", "dup"); +__static_renaming("__dup_250", "dup"); +__static_renaming("__dup_251", "dup"); +__static_renaming("__dup2_254", "dup2"); +__static_renaming("____environ_255", "__environ"); +__static_renaming("__execve_259", "execve"); +__static_renaming("__fexecve_263", "fexecve"); +__static_renaming("__execv_266", "execv"); +__static_renaming("__execv_267", "execv"); +__static_renaming("__execle_270", "execle"); +__static_renaming("__execl_273", "execl"); +__static_renaming("__execvp_276", "execvp"); +__static_renaming("__execlp_279", "execlp"); +__static_renaming("__nice_281", "nice"); +__static_renaming("__nice_282", "nice"); +__static_renaming("___exit_284", "_exit"); +__static_renaming("___exit_285", "_exit"); +__static_renaming("__pathconf_594", "pathconf"); +__static_renaming("__fpathconf_597", "fpathconf"); +__static_renaming("__sysconf_599", "sysconf"); +__static_renaming("__confstr_603", "confstr"); +__static_renaming("__getpid_604", "getpid"); +__static_renaming("__getpid_606", "getpid"); +__static_renaming("__getppid_608", "getppid"); +__static_renaming("__getpgrp_610", "getpgrp"); +__static_renaming("____getpgid_613", "__getpgid"); +__static_renaming("__getpgid_616", "getpgid"); +__static_renaming("__setpgid_622", "setpgid"); +__static_renaming("__setpgid_624", "setpgid"); +__static_renaming("__setpgrp_626", "setpgrp"); +__static_renaming("__setsid_627", "setsid"); +__static_renaming("__setsid_629", "setsid"); +__static_renaming("__getsid_633", "getsid"); +__static_renaming("__getuid_635", "getuid"); +__static_renaming("__getuid_637", "getuid"); +__static_renaming("__geteuid_639", "geteuid"); +__static_renaming("__getgid_641", "getgid"); +__static_renaming("__getegid_643", "getegid"); +__static_renaming("__getgroups_647", "getgroups"); +__static_renaming("__getgroups_649", "getgroups"); +__static_renaming("__setuid_653", "setuid"); +__static_renaming("__setuid_655", "setuid"); +__static_renaming("__setreuid_661", "setreuid"); +__static_renaming("__setreuid_663", "setreuid"); +__static_renaming("__seteuid_667", "seteuid"); +__static_renaming("__seteuid_669", "seteuid"); +__static_renaming("__setgid_673", "setgid"); +__static_renaming("__setgid_675", "setgid"); +__static_renaming("__setgid_677", "setgid"); +__static_renaming("__setgid_679", "setgid"); +__static_renaming("__setregid_685", "setregid"); +__static_renaming("__setregid_687", "setregid"); +__static_renaming("__setegid_691", "setegid"); +__static_renaming("__setegid_693", "setegid"); +__static_renaming("__fork_695", "fork"); +__static_renaming("__fork_697", "fork"); +__static_renaming("__vfork_699", "vfork"); +__static_renaming("__ttyname_702", "ttyname"); +__static_renaming("__ttyname_703", "ttyname"); +__static_renaming("__ttyname_r_707", "ttyname_r"); +__static_renaming("__ttyname_r_708", "ttyname_r"); +__static_renaming("__isatty_710", "isatty"); +__static_renaming("__ttyslot_711", "ttyslot"); +__static_renaming("__link_714", "link"); +__static_renaming("__link_715", "link"); +__static_renaming("__link_716", "link"); +__static_renaming("__link_717", "link"); +__static_renaming("__linkat_723", "linkat"); +__static_renaming("__linkat_724", "linkat"); +__static_renaming("__symlink_727", "symlink"); +__static_renaming("__symlink_728", "symlink"); +__static_renaming("__readlink_732", "readlink"); +__static_renaming("__readlink_735", "readlink"); +__static_renaming("__symlinkat_741", "symlinkat"); +__static_renaming("__symlinkat_742", "symlinkat"); +__static_renaming("__readlinkat_747", "readlinkat"); +__static_renaming("__readlinkat_750", "readlinkat"); +__static_renaming("__unlink_754", "unlink"); +__static_renaming("__unlink_755", "unlink"); +__static_renaming("__unlinkat_759", "unlinkat"); +__static_renaming("__rmdir_761", "rmdir"); +__static_renaming("__rmdir_762", "rmdir"); +__static_renaming("__tcgetpgrp_764", "tcgetpgrp"); +__static_renaming("__tcsetpgrp_768", "tcsetpgrp"); +__static_renaming("__getlogin_769", "getlogin"); +__static_renaming("__getlogin_r_772", "getlogin_r"); +__static_renaming("__setlogin_774", "setlogin"); +__static_renaming("__optarg_775", "optarg"); +__static_renaming("__optind_776", "optind"); +__static_renaming("__opterr_777", "opterr"); +__static_renaming("__optopt_778", "optopt"); +__static_renaming("__getopt_782", "getopt"); +__static_renaming("__gethostname_785", "gethostname"); +__static_renaming("__sethostname_788", "sethostname"); +__static_renaming("__sethostname_789", "sethostname"); +__static_renaming("__sethostid_791", "sethostid"); +__static_renaming("__sethostid_792", "sethostid"); +__static_renaming("__getdomainname_795", "getdomainname"); +__static_renaming("__getdomainname_796", "getdomainname"); +__static_renaming("__setdomainname_799", "setdomainname"); +__static_renaming("__setdomainname_800", "setdomainname"); +__static_renaming("__vhangup_801", "vhangup"); +__static_renaming("__revoke_803", "revoke"); +__static_renaming("__revoke_804", "revoke"); +__static_renaming("__profil_809", "profil"); +__static_renaming("__acct_811", "acct"); +__static_renaming("__getusershell_812", "getusershell"); +__static_renaming("__endusershell_813", "endusershell"); +__static_renaming("__setusershell_814", "setusershell"); +__static_renaming("__daemon_817", "daemon"); +__static_renaming("__daemon_818", "daemon"); +__static_renaming("__chroot_820", "chroot"); +__static_renaming("__chroot_821", "chroot"); +__static_renaming("__getpass_823", "getpass"); +__static_renaming("__fsync_825", "fsync"); +__static_renaming("__fsync_826", "fsync"); +__static_renaming("__fsync_827", "fsync"); +__static_renaming("__gethostid_828", "gethostid"); +__static_renaming("__sync_829", "sync"); +__static_renaming("__getpagesize_830", "getpagesize"); +__static_renaming("__getdtablesize_831", "getdtablesize"); +__static_renaming("__truncate_838", "truncate"); +__static_renaming("__truncate_840", "truncate"); +__static_renaming("__truncate_842", "truncate"); +__static_renaming("__truncate_844", "truncate"); +__static_renaming("__ftruncate_852", "ftruncate"); +__static_renaming("__ftruncate_854", "ftruncate"); +__static_renaming("__ftruncate_856", "ftruncate"); +__static_renaming("__ftruncate_858", "ftruncate"); +__static_renaming("__brk_861", "brk"); +__static_renaming("__brk_862", "brk"); +__static_renaming("__sbrk_865", "sbrk"); +__static_renaming("__syscall_868", "syscall"); +__static_renaming("__lockf_877", "lockf"); +__static_renaming("__lockf_879", "lockf"); +__static_renaming("__lockf_881", "lockf"); +__static_renaming("__lockf_883", "lockf"); +__static_renaming("__fdatasync_886", "fdatasync"); +__static_renaming("____read_chk_891", "__read_chk"); +__static_renaming("____read_alias_897", "__read_alias"); +__static_renaming("____read_chk_warn_904", "__read_chk_warn"); +__static_renaming("____readlink_chk_916", "__readlink_chk"); +__static_renaming("____readlink_alias_922", "__readlink_alias"); +__static_renaming("____readlink_chk_warn_929", "__readlink_chk_warn"); +__static_renaming("____readlinkat_chk_942", "__readlinkat_chk"); +__static_renaming("____readlinkat_alias_949", "__readlinkat_alias"); +__static_renaming("____readlinkat_chk_warn_957", "__readlinkat_chk_warn"); +__static_renaming("____getcwd_chk_969", "__getcwd_chk"); +__static_renaming("____getcwd_chk_970", "__getcwd_chk"); +__static_renaming("____getcwd_alias_973", "__getcwd_alias"); +__static_renaming("____getcwd_chk_warn_977", "__getcwd_chk_warn"); +__static_renaming("____getwd_chk_983", "__getwd_chk"); +__static_renaming("____getwd_warn_985", "__getwd_warn"); +__static_renaming("____confstr_chk_992", "__confstr_chk"); +__static_renaming("____confstr_chk_993", "__confstr_chk"); +__static_renaming("____confstr_alias_997", "__confstr_alias"); +__static_renaming("____confstr_chk_warn_1002", "__confstr_chk_warn"); +__static_renaming("____getgroups_chk_1011", "__getgroups_chk"); +__static_renaming("____getgroups_alias_1016", "__getgroups_alias"); +__static_renaming("____getgroups_chk_warn_1022", "__getgroups_chk_warn"); +__static_renaming("____ttyname_r_chk_1032", "__ttyname_r_chk"); +__static_renaming("____ttyname_r_alias_1036", "__ttyname_r_alias"); +__static_renaming("____ttyname_r_chk_warn_1041", "__ttyname_r_chk_warn"); +__static_renaming("____getlogin_r_chk_1048", "__getlogin_r_chk"); +__static_renaming("____getlogin_r_alias_1051", "__getlogin_r_alias"); +__static_renaming("____getlogin_r_chk_warn_1055", "__getlogin_r_chk_warn"); +__static_renaming("____gethostname_chk_1061", "__gethostname_chk"); +__static_renaming("____gethostname_alias_1064", "__gethostname_alias"); +__static_renaming("____gethostname_chk_warn_1068", "__gethostname_chk_warn"); +__static_renaming("____getdomainname_chk_1074", "__getdomainname_chk"); +__static_renaming("____getdomainname_alias_1077", "__getdomainname_alias"); +__static_renaming("____getdomainname_chk_warn_1081", "__getdomainname_chk_warn"); +__static_renaming("__FILE_1085", "FILE"); +__static_renaming("____FILE_1086", "__FILE"); +__static_renaming("____mbstate_t_1095", "__mbstate_t"); +__static_renaming("___G_fpos_t_1103", "_G_fpos_t"); +__static_renaming("___G_fpos64_t_1111", "_G_fpos64_t"); +__static_renaming("____gnuc_va_list_1112", "__gnuc_va_list"); +__static_renaming("___IO_lock_t_1114", "_IO_lock_t"); +__static_renaming("___IO_FILE_1197", "_IO_FILE"); +__static_renaming("___IO_FILE_1198", "_IO_FILE"); +__static_renaming("___IO_2_1_stdin__1201", "_IO_2_1_stdin_"); +__static_renaming("___IO_2_1_stdout__1202", "_IO_2_1_stdout_"); +__static_renaming("___IO_2_1_stderr__1203", "_IO_2_1_stderr_"); +__static_renaming("____io_read_fn_1207", "__io_read_fn"); +__static_renaming("____io_write_fn_1212", "__io_write_fn"); +__static_renaming("____io_seek_fn_1218", "__io_seek_fn"); +__static_renaming("____io_close_fn_1221", "__io_close_fn"); +__static_renaming("____underflow_1222", "__underflow"); +__static_renaming("____underflow_1223", "__underflow"); +__static_renaming("____uflow_1225", "__uflow"); +__static_renaming("____uflow_1226", "__uflow"); +__static_renaming("____overflow_1228", "__overflow"); +__static_renaming("____overflow_1229", "__overflow"); +__static_renaming("___IO_getc_1234", "_IO_getc"); +__static_renaming("___IO_getc_1235", "_IO_getc"); +__static_renaming("___IO_putc_1241", "_IO_putc"); +__static_renaming("___IO_putc_1242", "_IO_putc"); +__static_renaming("___IO_feof_1247", "_IO_feof"); +__static_renaming("___IO_feof_1248", "_IO_feof"); +__static_renaming("___IO_ferror_1253", "_IO_ferror"); +__static_renaming("___IO_ferror_1254", "_IO_ferror"); +__static_renaming("___IO_peekc_locked_1259", "_IO_peekc_locked"); +__static_renaming("___IO_peekc_locked_1260", "_IO_peekc_locked"); +__static_renaming("___IO_flockfile_1262", "_IO_flockfile"); +__static_renaming("___IO_flockfile_1263", "_IO_flockfile"); +__static_renaming("___IO_funlockfile_1265", "_IO_funlockfile"); +__static_renaming("___IO_funlockfile_1266", "_IO_funlockfile"); +__static_renaming("___IO_ftrylockfile_1268", "_IO_ftrylockfile"); +__static_renaming("___IO_ftrylockfile_1269", "_IO_ftrylockfile"); +__static_renaming("___IO_vfscanf_1271", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_1273", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_1277", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_1278", "_IO_vfscanf"); +__static_renaming("___IO_vfprintf_1280", "_IO_vfprintf"); +__static_renaming("___IO_vfprintf_1282", "_IO_vfprintf"); +__static_renaming("___IO_vfprintf_1286", "_IO_vfprintf"); +__static_renaming("___IO_padn_1287", "_IO_padn"); +__static_renaming("___IO_padn_1288", "_IO_padn"); +__static_renaming("___IO_sgetn_1291", "_IO_sgetn"); +__static_renaming("___IO_sgetn_1292", "_IO_sgetn"); +__static_renaming("___IO_seekoff_1294", "_IO_seekoff"); +__static_renaming("___IO_seekoff_1295", "_IO_seekoff"); +__static_renaming("___IO_seekpos_1298", "_IO_seekpos"); +__static_renaming("___IO_seekpos_1299", "_IO_seekpos"); +__static_renaming("___IO_free_backup_area_1302", "_IO_free_backup_area"); +__static_renaming("___IO_free_backup_area_1303", "_IO_free_backup_area"); +__static_renaming("__va_list_1305", "va_list"); +__static_renaming("__fpos_t_1307", "fpos_t"); +__static_renaming("__fpos_t_1309", "fpos_t"); +__static_renaming("__stdin_1311", "stdin"); +__static_renaming("__stdin_1312", "stdin"); +__static_renaming("__stdout_1314", "stdout"); +__static_renaming("__stdout_1315", "stdout"); +__static_renaming("__stderr_1317", "stderr"); +__static_renaming("__stderr_1318", "stderr"); +__static_renaming("__remove_1321", "remove"); +__static_renaming("__rename_1324", "rename"); +__static_renaming("__renameat_1329", "renameat"); +__static_renaming("__tmpfile_1330", "tmpfile"); +__static_renaming("__tmpfile_1332", "tmpfile"); +__static_renaming("__tmpfile_1334", "tmpfile"); +__static_renaming("__tmpfile_1336", "tmpfile"); +__static_renaming("__tmpnam_1339", "tmpnam"); +__static_renaming("__tmpnam_1340", "tmpnam"); +__static_renaming("__tmpnam_r_1342", "tmpnam_r"); +__static_renaming("__tmpnam_r_1343", "tmpnam_r"); +__static_renaming("__tempnam_1346", "tempnam"); +__static_renaming("__tempnam_1347", "tempnam"); +__static_renaming("__fclose_1350", "fclose"); +__static_renaming("__fclose_1352", "fclose"); +__static_renaming("__fflush_1356", "fflush"); +__static_renaming("__fflush_unlocked_1360", "fflush_unlocked"); +__static_renaming("__fopen_1364", "fopen"); +__static_renaming("__fopen_1366", "fopen"); +__static_renaming("__fopen_1374", "fopen"); +__static_renaming("__fopen_1376", "fopen"); +__static_renaming("__freopen_1382", "freopen"); +__static_renaming("__freopen_1384", "freopen"); +__static_renaming("__freopen_1386", "freopen"); +__static_renaming("__freopen_1388", "freopen"); +__static_renaming("__fdopen_1392", "fdopen"); +__static_renaming("__fdopen_1394", "fdopen"); +__static_renaming("__fmemopen_1399", "fmemopen"); +__static_renaming("__fmemopen_1401", "fmemopen"); +__static_renaming("__open_memstream_1405", "open_memstream"); +__static_renaming("__open_memstream_1407", "open_memstream"); +__static_renaming("__setbuf_1412", "setbuf"); +__static_renaming("__setbuf_1414", "setbuf"); +__static_renaming("__setvbuf_1421", "setvbuf"); +__static_renaming("__setbuffer_1427", "setbuffer"); +__static_renaming("__setlinebuf_1431", "setlinebuf"); +__static_renaming("__fprintf_1436", "fprintf"); +__static_renaming("__fprintf_1438", "fprintf"); +__static_renaming("__printf_1441", "printf"); +__static_renaming("__sprintf_1444", "sprintf"); +__static_renaming("__vfprintf_1450", "vfprintf"); +__static_renaming("__vprintf_1457", "vprintf"); +__static_renaming("__vsprintf_1463", "vsprintf"); +__static_renaming("__snprintf_1468", "snprintf"); +__static_renaming("__vsnprintf_1474", "vsnprintf"); +__static_renaming("__vdprintf_1480", "vdprintf"); +__static_renaming("__dprintf_1484", "dprintf"); +__static_renaming("__fscanf_1488", "fscanf"); +__static_renaming("__fscanf_1490", "fscanf"); +__static_renaming("__fscanf_1492", "fscanf"); +__static_renaming("__fscanf_1494", "fscanf"); +__static_renaming("__scanf_1497", "scanf"); +__static_renaming("__scanf_1498", "scanf"); +__static_renaming("__sscanf_1501", "sscanf"); +__static_renaming("__vfscanf_1529", "vfscanf"); +__static_renaming("__vfscanf_1533", "vfscanf"); +__static_renaming("__vscanf_1540", "vscanf"); +__static_renaming("__vscanf_1542", "vscanf"); +__static_renaming("__vsscanf_1548", "vsscanf"); +__static_renaming("__fgetc_1583", "fgetc"); +__static_renaming("__getc_1587", "getc"); +__static_renaming("__getchar_1589", "getchar"); +__static_renaming("__getc_unlocked_1592", "getc_unlocked"); +__static_renaming("__getchar_unlocked_1594", "getchar_unlocked"); +__static_renaming("__fgetc_unlocked_1597", "fgetc_unlocked"); +__static_renaming("__fputc_1602", "fputc"); +__static_renaming("__fputc_1604", "fputc"); +__static_renaming("__putc_1609", "putc"); +__static_renaming("__putchar_1612", "putchar"); +__static_renaming("__fputc_unlocked_1616", "fputc_unlocked"); +__static_renaming("__putc_unlocked_1621", "putc_unlocked"); +__static_renaming("__putchar_unlocked_1624", "putchar_unlocked"); +__static_renaming("__getw_1627", "getw"); +__static_renaming("__putw_1632", "putw"); +__static_renaming("__fgets_1638", "fgets"); +__static_renaming("__fgets_1640", "fgets"); +__static_renaming("__fgets_1642", "fgets"); +__static_renaming("__fgets_1644", "fgets"); +__static_renaming("____getdelim_1651", "__getdelim"); +__static_renaming("____getdelim_1655", "__getdelim"); +__static_renaming("__getdelim_1664", "getdelim"); +__static_renaming("__getdelim_1668", "getdelim"); +__static_renaming("__getline_1676", "getline"); +__static_renaming("__getline_1680", "getline"); +__static_renaming("__fputs_1687", "fputs"); +__static_renaming("__fputs_1689", "fputs"); +__static_renaming("__puts_1692", "puts"); +__static_renaming("__ungetc_1696", "ungetc"); +__static_renaming("__fseek_1734", "fseek"); +__static_renaming("__fseek_1736", "fseek"); +__static_renaming("__ftell_1740", "ftell"); +__static_renaming("__ftell_1742", "ftell"); +__static_renaming("__rewind_1746", "rewind"); +__static_renaming("__fseeko_1753", "fseeko"); +__static_renaming("__fseeko_1764", "fseeko"); +__static_renaming("__ftello_1770", "ftello"); +__static_renaming("__ftello_1774", "ftello"); +__static_renaming("__ftello_1778", "ftello"); +__static_renaming("__fgetpos_1786", "fgetpos"); +__static_renaming("__fgetpos_1798", "fgetpos"); +__static_renaming("__fsetpos_1806", "fsetpos"); +__static_renaming("__fsetpos_1810", "fsetpos"); +__static_renaming("__clearerr_1816", "clearerr"); +__static_renaming("__feof_1820", "feof"); +__static_renaming("__feof_1822", "feof"); +__static_renaming("__ferror_1826", "ferror"); +__static_renaming("__ferror_1828", "ferror"); +__static_renaming("__clearerr_unlocked_1832", "clearerr_unlocked"); +__static_renaming("__feof_unlocked_1836", "feof_unlocked"); +__static_renaming("__feof_unlocked_1838", "feof_unlocked"); +__static_renaming("__ferror_unlocked_1842", "ferror_unlocked"); +__static_renaming("__ferror_unlocked_1844", "ferror_unlocked"); +__static_renaming("__perror_1847", "perror"); +__static_renaming("__perror_1848", "perror"); +__static_renaming("__sys_nerr_1849", "sys_nerr"); +__static_renaming("__sys_errlist_1850", "sys_errlist"); +__static_renaming("__fileno_1853", "fileno"); +__static_renaming("__fileno_1855", "fileno"); +__static_renaming("__fileno_unlocked_1859", "fileno_unlocked"); +__static_renaming("__fileno_unlocked_1861", "fileno_unlocked"); +__static_renaming("__popen_1865", "popen"); +__static_renaming("__popen_1867", "popen"); +__static_renaming("__pclose_1871", "pclose"); +__static_renaming("__ctermid_1874", "ctermid"); +__static_renaming("__flockfile_1877", "flockfile"); +__static_renaming("__ftrylockfile_1881", "ftrylockfile"); +__static_renaming("__ftrylockfile_1883", "ftrylockfile"); +__static_renaming("__funlockfile_1887", "funlockfile"); +__static_renaming("____sprintf_chk_1919", "__sprintf_chk"); +__static_renaming("____vsprintf_chk_1926", "__vsprintf_chk"); +__static_renaming("____snprintf_chk_1940", "__snprintf_chk"); +__static_renaming("____vsnprintf_chk_1948", "__vsnprintf_chk"); +__static_renaming("____fprintf_chk_1963", "__fprintf_chk"); +__static_renaming("____printf_chk_1967", "__printf_chk"); +__static_renaming("____vfprintf_chk_1974", "__vfprintf_chk"); +__static_renaming("____vprintf_chk_1982", "__vprintf_chk"); +__static_renaming("____dprintf_chk_2004", "__dprintf_chk"); +__static_renaming("____vdprintf_chk_2010", "__vdprintf_chk"); +__static_renaming("____fgets_chk_2024", "__fgets_chk"); +__static_renaming("____fgets_chk_2026", "__fgets_chk"); +__static_renaming("____fgets_chk_2028", "__fgets_chk"); +__static_renaming("____fgets_alias_2034", "__fgets_alias"); +__static_renaming("____fgets_chk_warn_2041", "__fgets_chk_warn"); +__static_renaming("____cnt_2107", "__cnt"); +__static_renaming("____cptr_2108", "__cptr"); +__static_renaming("__ptrdiff_t_2112", "ptrdiff_t"); +__static_renaming("__wchar_t_2113", "wchar_t"); +__static_renaming("__max_align_t_2118", "max_align_t"); +__static_renaming("__FILE_2119", "FILE"); +__static_renaming("____mbstate_t_2128", "__mbstate_t"); +__static_renaming("___G_fpos_t_2136", "_G_fpos_t"); +__static_renaming("___G_fpos64_t_2144", "_G_fpos64_t"); +__static_renaming("____gnuc_va_list_2145", "__gnuc_va_list"); +__static_renaming("___IO_lock_t_2146", "_IO_lock_t"); +__static_renaming("___IO_FILE_2228", "_IO_FILE"); +__static_renaming("___IO_FILE_2229", "_IO_FILE"); +__static_renaming("___IO_2_1_stdin__2231", "_IO_2_1_stdin_"); +__static_renaming("___IO_2_1_stdout__2232", "_IO_2_1_stdout_"); +__static_renaming("___IO_2_1_stderr__2233", "_IO_2_1_stderr_"); +__static_renaming("____io_read_fn_2237", "__io_read_fn"); +__static_renaming("____io_write_fn_2242", "__io_write_fn"); +__static_renaming("____io_seek_fn_2248", "__io_seek_fn"); +__static_renaming("____io_close_fn_2251", "__io_close_fn"); +__static_renaming("____underflow_2252", "__underflow"); +__static_renaming("____underflow_2253", "__underflow"); +__static_renaming("____uflow_2255", "__uflow"); +__static_renaming("____uflow_2256", "__uflow"); +__static_renaming("____overflow_2258", "__overflow"); +__static_renaming("____overflow_2259", "__overflow"); +__static_renaming("___IO_getc_2264", "_IO_getc"); +__static_renaming("___IO_getc_2265", "_IO_getc"); +__static_renaming("___IO_putc_2271", "_IO_putc"); +__static_renaming("___IO_putc_2272", "_IO_putc"); +__static_renaming("___IO_feof_2277", "_IO_feof"); +__static_renaming("___IO_feof_2278", "_IO_feof"); +__static_renaming("___IO_ferror_2283", "_IO_ferror"); +__static_renaming("___IO_ferror_2284", "_IO_ferror"); +__static_renaming("___IO_peekc_locked_2289", "_IO_peekc_locked"); +__static_renaming("___IO_peekc_locked_2290", "_IO_peekc_locked"); +__static_renaming("___IO_flockfile_2292", "_IO_flockfile"); +__static_renaming("___IO_flockfile_2293", "_IO_flockfile"); +__static_renaming("___IO_funlockfile_2295", "_IO_funlockfile"); +__static_renaming("___IO_funlockfile_2296", "_IO_funlockfile"); +__static_renaming("___IO_ftrylockfile_2298", "_IO_ftrylockfile"); +__static_renaming("___IO_ftrylockfile_2299", "_IO_ftrylockfile"); +__static_renaming("___IO_vfscanf_2301", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_2303", "_IO_vfscanf"); +__static_renaming("___IO_vfprintf_2310", "_IO_vfprintf"); +__static_renaming("___IO_vfprintf_2312", "_IO_vfprintf"); +__static_renaming("___IO_padn_2317", "_IO_padn"); +__static_renaming("___IO_padn_2318", "_IO_padn"); +__static_renaming("___IO_sgetn_2321", "_IO_sgetn"); +__static_renaming("___IO_sgetn_2322", "_IO_sgetn"); +__static_renaming("___IO_seekoff_2324", "_IO_seekoff"); +__static_renaming("___IO_seekoff_2325", "_IO_seekoff"); +__static_renaming("___IO_seekpos_2328", "_IO_seekpos"); +__static_renaming("___IO_seekpos_2329", "_IO_seekpos"); +__static_renaming("___IO_free_backup_area_2332", "_IO_free_backup_area"); +__static_renaming("___IO_free_backup_area_2333", "_IO_free_backup_area"); +__static_renaming("__va_list_2335", "va_list"); +__static_renaming("__fpos_t_2337", "fpos_t"); +__static_renaming("__fpos_t_2339", "fpos_t"); +__static_renaming("__stdin_2341", "stdin"); +__static_renaming("__stdin_2342", "stdin"); +__static_renaming("__stdout_2344", "stdout"); +__static_renaming("__stdout_2345", "stdout"); +__static_renaming("__stderr_2347", "stderr"); +__static_renaming("__stderr_2348", "stderr"); +__static_renaming("__remove_2351", "remove"); +__static_renaming("__rename_2354", "rename"); +__static_renaming("__renameat_2359", "renameat"); +__static_renaming("__tmpfile_2360", "tmpfile"); +__static_renaming("__tmpfile_2362", "tmpfile"); +__static_renaming("__tmpfile_2364", "tmpfile"); +__static_renaming("__tmpfile_2366", "tmpfile"); +__static_renaming("__tmpnam_2369", "tmpnam"); +__static_renaming("__tmpnam_2370", "tmpnam"); +__static_renaming("__tmpnam_r_2372", "tmpnam_r"); +__static_renaming("__tmpnam_r_2373", "tmpnam_r"); +__static_renaming("__tempnam_2376", "tempnam"); +__static_renaming("__tempnam_2377", "tempnam"); +__static_renaming("__fclose_2380", "fclose"); +__static_renaming("__fclose_2382", "fclose"); +__static_renaming("__fflush_2386", "fflush"); +__static_renaming("__fflush_unlocked_2390", "fflush_unlocked"); +__static_renaming("__fopen_2394", "fopen"); +__static_renaming("__fopen_2396", "fopen"); +__static_renaming("__fopen_2404", "fopen"); +__static_renaming("__fopen_2406", "fopen"); +__static_renaming("__freopen_2412", "freopen"); +__static_renaming("__freopen_2414", "freopen"); +__static_renaming("__freopen_2416", "freopen"); +__static_renaming("__freopen_2418", "freopen"); +__static_renaming("__fdopen_2422", "fdopen"); +__static_renaming("__fdopen_2424", "fdopen"); +__static_renaming("__fmemopen_2429", "fmemopen"); +__static_renaming("__fmemopen_2431", "fmemopen"); +__static_renaming("__open_memstream_2435", "open_memstream"); +__static_renaming("__open_memstream_2437", "open_memstream"); +__static_renaming("__setbuf_2442", "setbuf"); +__static_renaming("__setbuf_2444", "setbuf"); +__static_renaming("__setvbuf_2451", "setvbuf"); +__static_renaming("__setbuffer_2457", "setbuffer"); +__static_renaming("__setlinebuf_2461", "setlinebuf"); +__static_renaming("__fprintf_2466", "fprintf"); +__static_renaming("__fprintf_2468", "fprintf"); +__static_renaming("__printf_2471", "printf"); +__static_renaming("__sprintf_2474", "sprintf"); +__static_renaming("__vfprintf_2480", "vfprintf"); +__static_renaming("__vprintf_2487", "vprintf"); +__static_renaming("__vsprintf_2493", "vsprintf"); +__static_renaming("__snprintf_2498", "snprintf"); +__static_renaming("__vsnprintf_2504", "vsnprintf"); +__static_renaming("__vdprintf_2510", "vdprintf"); +__static_renaming("__dprintf_2514", "dprintf"); +__static_renaming("__fscanf_2518", "fscanf"); +__static_renaming("__fscanf_2520", "fscanf"); +__static_renaming("__fscanf_2522", "fscanf"); +__static_renaming("__fscanf_2524", "fscanf"); +__static_renaming("__scanf_2527", "scanf"); +__static_renaming("__scanf_2528", "scanf"); +__static_renaming("__sscanf_2531", "sscanf"); +__static_renaming("__vfscanf_2559", "vfscanf"); +__static_renaming("__vfscanf_2563", "vfscanf"); +__static_renaming("__vscanf_2570", "vscanf"); +__static_renaming("__vscanf_2572", "vscanf"); +__static_renaming("__vsscanf_2578", "vsscanf"); +__static_renaming("__fgetc_2613", "fgetc"); +__static_renaming("__getc_2617", "getc"); +__static_renaming("__getchar_2619", "getchar"); +__static_renaming("__getc_unlocked_2622", "getc_unlocked"); +__static_renaming("__getchar_unlocked_2624", "getchar_unlocked"); +__static_renaming("__fgetc_unlocked_2627", "fgetc_unlocked"); +__static_renaming("__fputc_2632", "fputc"); +__static_renaming("__fputc_2634", "fputc"); +__static_renaming("__putc_2639", "putc"); +__static_renaming("__putchar_2642", "putchar"); +__static_renaming("__fputc_unlocked_2646", "fputc_unlocked"); +__static_renaming("__putc_unlocked_2651", "putc_unlocked"); +__static_renaming("__putchar_unlocked_2654", "putchar_unlocked"); +__static_renaming("__getw_2657", "getw"); +__static_renaming("__putw_2662", "putw"); +__static_renaming("__fgets_2668", "fgets"); +__static_renaming("__fgets_2670", "fgets"); +__static_renaming("__fgets_2672", "fgets"); +__static_renaming("__fgets_2674", "fgets"); +__static_renaming("____getdelim_2681", "__getdelim"); +__static_renaming("____getdelim_2685", "__getdelim"); +__static_renaming("__getdelim_2694", "getdelim"); +__static_renaming("__getdelim_2698", "getdelim"); +__static_renaming("__getline_2706", "getline"); +__static_renaming("__getline_2710", "getline"); +__static_renaming("__fputs_2717", "fputs"); +__static_renaming("__fputs_2719", "fputs"); +__static_renaming("__puts_2722", "puts"); +__static_renaming("__ungetc_2726", "ungetc"); +__static_renaming("__fseek_2764", "fseek"); +__static_renaming("__fseek_2766", "fseek"); +__static_renaming("__ftell_2770", "ftell"); +__static_renaming("__ftell_2772", "ftell"); +__static_renaming("__rewind_2776", "rewind"); +__static_renaming("__fseeko_2783", "fseeko"); +__static_renaming("__fseeko_2794", "fseeko"); +__static_renaming("__ftello_2800", "ftello"); +__static_renaming("__ftello_2804", "ftello"); +__static_renaming("__ftello_2808", "ftello"); +__static_renaming("__fgetpos_2816", "fgetpos"); +__static_renaming("__fgetpos_2828", "fgetpos"); +__static_renaming("__fsetpos_2836", "fsetpos"); +__static_renaming("__fsetpos_2840", "fsetpos"); +__static_renaming("__clearerr_2846", "clearerr"); +__static_renaming("__feof_2850", "feof"); +__static_renaming("__feof_2852", "feof"); +__static_renaming("__ferror_2856", "ferror"); +__static_renaming("__ferror_2858", "ferror"); +__static_renaming("__clearerr_unlocked_2862", "clearerr_unlocked"); +__static_renaming("__feof_unlocked_2866", "feof_unlocked"); +__static_renaming("__feof_unlocked_2868", "feof_unlocked"); +__static_renaming("__ferror_unlocked_2872", "ferror_unlocked"); +__static_renaming("__ferror_unlocked_2874", "ferror_unlocked"); +__static_renaming("__perror_2877", "perror"); +__static_renaming("__perror_2878", "perror"); +__static_renaming("__sys_nerr_2879", "sys_nerr"); +__static_renaming("__sys_errlist_2880", "sys_errlist"); +__static_renaming("__fileno_2883", "fileno"); +__static_renaming("__fileno_2885", "fileno"); +__static_renaming("__fileno_unlocked_2889", "fileno_unlocked"); +__static_renaming("__fileno_unlocked_2891", "fileno_unlocked"); +__static_renaming("__popen_2895", "popen"); +__static_renaming("__popen_2897", "popen"); +__static_renaming("__pclose_2901", "pclose"); +__static_renaming("__ctermid_2904", "ctermid"); +__static_renaming("__flockfile_2907", "flockfile"); +__static_renaming("__ftrylockfile_2911", "ftrylockfile"); +__static_renaming("__ftrylockfile_2913", "ftrylockfile"); +__static_renaming("__funlockfile_2917", "funlockfile"); +__static_renaming("____sprintf_chk_2949", "__sprintf_chk"); +__static_renaming("____vsprintf_chk_2956", "__vsprintf_chk"); +__static_renaming("____snprintf_chk_2970", "__snprintf_chk"); +__static_renaming("____vsnprintf_chk_2978", "__vsnprintf_chk"); +__static_renaming("____fprintf_chk_2993", "__fprintf_chk"); +__static_renaming("____printf_chk_2997", "__printf_chk"); +__static_renaming("____vfprintf_chk_3004", "__vfprintf_chk"); +__static_renaming("____vprintf_chk_3012", "__vprintf_chk"); +__static_renaming("____dprintf_chk_3034", "__dprintf_chk"); +__static_renaming("____vdprintf_chk_3040", "__vdprintf_chk"); +__static_renaming("____fgets_chk_3054", "__fgets_chk"); +__static_renaming("____fgets_chk_3056", "__fgets_chk"); +__static_renaming("____fgets_chk_3058", "__fgets_chk"); +__static_renaming("____fgets_alias_3064", "__fgets_alias"); +__static_renaming("____fgets_chk_warn_3071", "__fgets_chk_warn"); +__static_renaming("____cnt_3137", "__cnt"); +__static_renaming("____cptr_3138", "__cptr"); +__static_renaming("__malloc_3143", "malloc"); +__static_renaming("__malloc_3144", "malloc"); +__static_renaming("__malloc_3145", "malloc"); +__static_renaming("__malloc_3146", "malloc"); +__static_renaming("__malloc_3147", "malloc"); +__static_renaming("__malloc_3148", "malloc"); +__static_renaming("__calloc_3151", "calloc"); +__static_renaming("__calloc_3152", "calloc"); +__static_renaming("__realloc_3155", "realloc"); +__static_renaming("__free_3157", "free"); +__static_renaming("__cfree_3159", "cfree"); +__static_renaming("__memalign_3162", "memalign"); +__static_renaming("__memalign_3163", "memalign"); +__static_renaming("__valloc_3165", "valloc"); +__static_renaming("__valloc_3166", "valloc"); +__static_renaming("__pvalloc_3168", "pvalloc"); +__static_renaming("__pvalloc_3169", "pvalloc"); +__static_renaming("____morecore_3173", "__morecore"); +__static_renaming("____morecore_3174", "__morecore"); +__static_renaming("____default_morecore_3179", "__default_morecore"); +__static_renaming("____default_morecore_3180", "__default_morecore"); +__static_renaming("__mallinfo_3192", "mallinfo"); +__static_renaming("__mallopt_3195", "mallopt"); +__static_renaming("__malloc_trim_3197", "malloc_trim"); +__static_renaming("__malloc_usable_size_3199", "malloc_usable_size"); +__static_renaming("__malloc_stats_3200", "malloc_stats"); +__static_renaming("__malloc_info_3205", "malloc_info"); +__static_renaming("__malloc_info_3206", "malloc_info"); +__static_renaming("__malloc_get_state_3208", "malloc_get_state"); +__static_renaming("__malloc_set_state_3210", "malloc_set_state"); +__static_renaming("____malloc_initialize_hook_3211", "__malloc_initialize_hook"); +__static_renaming("____free_hook_3213", "__free_hook"); +__static_renaming("____malloc_hook_3215", "__malloc_hook"); +__static_renaming("____realloc_hook_3218", "__realloc_hook"); +__static_renaming("____memalign_hook_3221", "__memalign_hook"); +__static_renaming("____after_morecore_hook_3222", "__after_morecore_hook"); +__static_renaming("____malloc_check_init_3223", "__malloc_check_init"); +__static_renaming("__wchar_t_3224", "wchar_t"); +__static_renaming("__idtype_t_3230", "idtype_t"); +__static_renaming("____bswap_32_3232", "__bswap_32"); +__static_renaming("____bswap_64_3235", "__bswap_64"); +__static_renaming("____WAIT_STATUS_3255", "__WAIT_STATUS"); +__static_renaming("__div_t_3260", "div_t"); +__static_renaming("__ldiv_t_3265", "ldiv_t"); +__static_renaming("__lldiv_t_3270", "lldiv_t"); +__static_renaming("____ctype_get_mb_cur_max_3271", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_3272", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_3273", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_3274", "__ctype_get_mb_cur_max"); +__static_renaming("__atof_3276", "atof"); +__static_renaming("__atof_3277", "atof"); +__static_renaming("__atoi_3279", "atoi"); +__static_renaming("__atoi_3280", "atoi"); +__static_renaming("__atol_3282", "atol"); +__static_renaming("__atol_3283", "atol"); +__static_renaming("__atoll_3285", "atoll"); +__static_renaming("__atoll_3286", "atoll"); +__static_renaming("__strtod_3289", "strtod"); +__static_renaming("__strtof_3292", "strtof"); +__static_renaming("__strtold_3295", "strtold"); +__static_renaming("__strtol_3299", "strtol"); +__static_renaming("__strtoul_3303", "strtoul"); +__static_renaming("__strtoq_3307", "strtoq"); +__static_renaming("__strtouq_3311", "strtouq"); +__static_renaming("__strtoll_3315", "strtoll"); +__static_renaming("__strtoll_3316", "strtoll"); +__static_renaming("__strtoull_3320", "strtoull"); +__static_renaming("__l64a_3325", "l64a"); +__static_renaming("__l64a_3326", "l64a"); +__static_renaming("__a64l_3328", "a64l"); +__static_renaming("__a64l_3329", "a64l"); +__static_renaming("__u_char_3330", "u_char"); +__static_renaming("__u_short_3331", "u_short"); +__static_renaming("__u_int_3332", "u_int"); +__static_renaming("__u_long_3333", "u_long"); +__static_renaming("__quad_t_3334", "quad_t"); +__static_renaming("__u_quad_t_3335", "u_quad_t"); +__static_renaming("__fsid_t_3336", "fsid_t"); +__static_renaming("__loff_t_3338", "loff_t"); +__static_renaming("__ino_t_3340", "ino_t"); +__static_renaming("__ino_t_3342", "ino_t"); +__static_renaming("__dev_t_3344", "dev_t"); +__static_renaming("__mode_t_3346", "mode_t"); +__static_renaming("__mode_t_3348", "mode_t"); +__static_renaming("__nlink_t_3350", "nlink_t"); +__static_renaming("__id_t_3352", "id_t"); +__static_renaming("__daddr_t_3354", "daddr_t"); +__static_renaming("__caddr_t_3356", "caddr_t"); +__static_renaming("__key_t_3357", "key_t"); +__static_renaming("__key_t_3359", "key_t"); +__static_renaming("__clock_t_3361", "clock_t"); +__static_renaming("__time_t_3363", "time_t"); +__static_renaming("__clockid_t_3365", "clockid_t"); +__static_renaming("__timer_t_3367", "timer_t"); +__static_renaming("__ulong_3369", "ulong"); +__static_renaming("__ulong_3370", "ulong"); +__static_renaming("__ulong_3371", "ulong"); +__static_renaming("__ushort_3372", "ushort"); +__static_renaming("__uint_3373", "uint"); +__static_renaming("__int8_t_3374", "int8_t"); +__static_renaming("__int16_t_3375", "int16_t"); +__static_renaming("__int32_t_3376", "int32_t"); +__static_renaming("__int64_t_3377", "int64_t"); +__static_renaming("__u_int8_t_3378", "u_int8_t"); +__static_renaming("__u_int16_t_3379", "u_int16_t"); +__static_renaming("__u_int32_t_3380", "u_int32_t"); +__static_renaming("__u_int64_t_3381", "u_int64_t"); +__static_renaming("__register_t_3382", "register_t"); +__static_renaming("____bswap_32_3384", "__bswap_32"); +__static_renaming("____bswap_64_3387", "__bswap_64"); +__static_renaming("____sig_atomic_t_3388", "__sig_atomic_t"); +__static_renaming("____sigset_t_3392", "__sigset_t"); +__static_renaming("__sigset_t_3393", "sigset_t"); +__static_renaming("__suseconds_t_3406", "suseconds_t"); +__static_renaming("____fd_mask_3408", "__fd_mask"); +__static_renaming("____fd_mask_3409", "__fd_mask"); +__static_renaming("__fd_set_3417", "fd_set"); +__static_renaming("__fd_mask_3418", "fd_mask"); +__static_renaming("__fd_mask_3419", "fd_mask"); +__static_renaming("__select_3431", "select"); +__static_renaming("__select_3432", "select"); +__static_renaming("__pselect_3447", "pselect"); +__static_renaming("__pselect_3448", "pselect"); +__static_renaming("____fdelt_chk_3452", "__fdelt_chk"); +__static_renaming("____fdelt_warn_3454", "__fdelt_warn"); +__static_renaming("__gnu_dev_major_3456", "gnu_dev_major"); +__static_renaming("__gnu_dev_major_3457", "gnu_dev_major"); +__static_renaming("__gnu_dev_minor_3459", "gnu_dev_minor"); +__static_renaming("__gnu_dev_makedev_3462", "gnu_dev_makedev"); +__static_renaming("__blksize_t_3467", "blksize_t"); +__static_renaming("__blkcnt_t_3469", "blkcnt_t"); +__static_renaming("__fsblkcnt_t_3471", "fsblkcnt_t"); +__static_renaming("__blkcnt_t_3473", "blkcnt_t"); +__static_renaming("__fsblkcnt_t_3475", "fsblkcnt_t"); +__static_renaming("__fsfilcnt_t_3477", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_3479", "fsfilcnt_t"); +__static_renaming("__pthread_t_3481", "pthread_t"); +__static_renaming("__pthread_attr_t_3485", "pthread_attr_t"); +__static_renaming("____pthread_list_t_3490", "__pthread_list_t"); +__static_renaming("____pthread_list_t_3491", "__pthread_list_t"); +__static_renaming("__pthread_mutex_t_3507", "pthread_mutex_t"); +__static_renaming("__pthread_mutexattr_t_3512", "pthread_mutexattr_t"); +__static_renaming("__rand_3513", "rand"); +__static_renaming("__srand_3515", "srand"); +__static_renaming("__rand_r_3517", "rand_r"); +__static_renaming("__drand48_3518", "drand48"); +__static_renaming("__erand48_3520", "erand48"); +__static_renaming("__lrand48_3521", "lrand48"); +__static_renaming("__nrand48_3523", "nrand48"); +__static_renaming("__mrand48_3524", "mrand48"); +__static_renaming("__jrand48_3526", "jrand48"); +__static_renaming("__srand48_3528", "srand48"); +__static_renaming("__seed48_3530", "seed48"); +__static_renaming("__lcong48_3532", "lcong48"); +__static_renaming("__alloca_3565", "alloca"); +__static_renaming("__posix_memalign_3574", "posix_memalign"); +__static_renaming("__posix_memalign_3575", "posix_memalign"); +__static_renaming("__aligned_alloc_3578", "aligned_alloc"); +__static_renaming("__aligned_alloc_3579", "aligned_alloc"); +__static_renaming("__aligned_alloc_3580", "aligned_alloc"); +__static_renaming("__aligned_alloc_3581", "aligned_alloc"); +__static_renaming("__abort_3582", "abort"); +__static_renaming("__atexit_3584", "atexit"); +__static_renaming("__at_quick_exit_3586", "at_quick_exit"); +__static_renaming("__on_exit_3591", "on_exit"); +__static_renaming("__exit_3593", "exit"); +__static_renaming("__exit_3594", "exit"); +__static_renaming("__quick_exit_3596", "quick_exit"); +__static_renaming("___Exit_3598", "_Exit"); +__static_renaming("__getenv_3600", "getenv"); +__static_renaming("__getenv_3601", "getenv"); +__static_renaming("__putenv_3603", "putenv"); +__static_renaming("__setenv_3607", "setenv"); +__static_renaming("__unsetenv_3609", "unsetenv"); +__static_renaming("__clearenv_3610", "clearenv"); +__static_renaming("__mktemp_3612", "mktemp"); +__static_renaming("__mkstemp_3615", "mkstemp"); +__static_renaming("__mkstemp_3616", "mkstemp"); +__static_renaming("__mkstemp_3617", "mkstemp"); +__static_renaming("__mkstemp_3618", "mkstemp"); +__static_renaming("__mkstemps_3623", "mkstemps"); +__static_renaming("__mkstemps_3624", "mkstemps"); +__static_renaming("__mkstemps_3625", "mkstemps"); +__static_renaming("__mkstemps_3626", "mkstemps"); +__static_renaming("__mkdtemp_3628", "mkdtemp"); +__static_renaming("__mkdtemp_3629", "mkdtemp"); +__static_renaming("__system_3631", "system"); +__static_renaming("__system_3632", "system"); +__static_renaming("__system_3633", "system"); +__static_renaming("__system_3634", "system"); +__static_renaming("__realpath_3637", "realpath"); +__static_renaming("__realpath_3638", "realpath"); +__static_renaming("____compar_fn_t_3639", "__compar_fn_t"); +__static_renaming("__bsearch_3647", "bsearch"); +__static_renaming("__bsearch_3649", "bsearch"); +__static_renaming("____l_3656", "__l"); +__static_renaming("____u_3657", "__u"); +__static_renaming("____idx_3658", "__idx"); +__static_renaming("____p_3659", "__p"); +__static_renaming("____comparison_3660", "__comparison"); +__static_renaming("__qsort_3668", "qsort"); +__static_renaming("__qsort_3670", "qsort"); +__static_renaming("__abs_3673", "abs"); +__static_renaming("__abs_3674", "abs"); +__static_renaming("__labs_3676", "labs"); +__static_renaming("__labs_3677", "labs"); +__static_renaming("__llabs_3679", "llabs"); +__static_renaming("__llabs_3680", "llabs"); +__static_renaming("__div_3683", "div"); +__static_renaming("__div_3684", "div"); +__static_renaming("__ldiv_3687", "ldiv"); +__static_renaming("__ldiv_3689", "ldiv"); +__static_renaming("__lldiv_3693", "lldiv"); +__static_renaming("__lldiv_3695", "lldiv"); +__static_renaming("__ecvt_3701", "ecvt"); +__static_renaming("__ecvt_3702", "ecvt"); +__static_renaming("__fcvt_3707", "fcvt"); +__static_renaming("__fcvt_3708", "fcvt"); +__static_renaming("__gcvt_3712", "gcvt"); +__static_renaming("__gcvt_3713", "gcvt"); +__static_renaming("__qecvt_3718", "qecvt"); +__static_renaming("__qecvt_3719", "qecvt"); +__static_renaming("__qfcvt_3724", "qfcvt"); +__static_renaming("__qfcvt_3725", "qfcvt"); +__static_renaming("__qgcvt_3729", "qgcvt"); +__static_renaming("__qgcvt_3730", "qgcvt"); +__static_renaming("__ecvt_r_3737", "ecvt_r"); +__static_renaming("__fcvt_r_3744", "fcvt_r"); +__static_renaming("__qecvt_r_3751", "qecvt_r"); +__static_renaming("__qfcvt_r_3758", "qfcvt_r"); +__static_renaming("__mblen_3761", "mblen"); +__static_renaming("__mblen_3762", "mblen"); +__static_renaming("__mbtowc_3767", "mbtowc"); +__static_renaming("__mbtowc_3768", "mbtowc"); +__static_renaming("__wctomb_3772", "wctomb"); +__static_renaming("__wctomb_3773", "wctomb"); +__static_renaming("__mbstowcs_3778", "mbstowcs"); +__static_renaming("__mbstowcs_3779", "mbstowcs"); +__static_renaming("__wcstombs_3784", "wcstombs"); +__static_renaming("__wcstombs_3785", "wcstombs"); +__static_renaming("__rpmatch_3787", "rpmatch"); +__static_renaming("__rpmatch_3788", "rpmatch"); +__static_renaming("__getsubopt_3792", "getsubopt"); +__static_renaming("__getsubopt_3793", "getsubopt"); +__static_renaming("__getloadavg_3796", "getloadavg"); +__static_renaming("____realpath_chk_3801", "__realpath_chk"); +__static_renaming("____realpath_alias_3804", "__realpath_alias"); +__static_renaming("____realpath_chk_warn_3808", "__realpath_chk_warn"); +__static_renaming("____ptsname_r_chk_3816", "__ptsname_r_chk"); +__static_renaming("____ptsname_r_alias_3820", "__ptsname_r_alias"); +__static_renaming("____ptsname_r_chk_warn_3825", "__ptsname_r_chk_warn"); +__static_renaming("____wctomb_chk_3834", "__wctomb_chk"); +__static_renaming("____wctomb_chk_3835", "__wctomb_chk"); +__static_renaming("____wctomb_alias_3839", "__wctomb_alias"); +__static_renaming("____wctomb_alias_3840", "__wctomb_alias"); +__static_renaming("____mbstowcs_chk_3849", "__mbstowcs_chk"); +__static_renaming("____mbstowcs_chk_3850", "__mbstowcs_chk"); +__static_renaming("____mbstowcs_alias_3855", "__mbstowcs_alias"); +__static_renaming("____mbstowcs_alias_3856", "__mbstowcs_alias"); +__static_renaming("____mbstowcs_chk_warn_3862", "__mbstowcs_chk_warn"); +__static_renaming("____mbstowcs_chk_warn_3863", "__mbstowcs_chk_warn"); +__static_renaming("____wcstombs_chk_3873", "__wcstombs_chk"); +__static_renaming("____wcstombs_chk_3874", "__wcstombs_chk"); +__static_renaming("____wcstombs_alias_3879", "__wcstombs_alias"); +__static_renaming("____wcstombs_alias_3880", "__wcstombs_alias"); +__static_renaming("____wcstombs_chk_warn_3886", "__wcstombs_chk_warn"); +__static_renaming("____wcstombs_chk_warn_3887", "__wcstombs_chk_warn"); +__static_renaming("____errno_location_3892", "__errno_location"); +__static_renaming("____errno_location_3893", "__errno_location"); +__static_renaming("____errno_location_3894", "__errno_location"); +__static_renaming("__off_t_3895", "off_t"); +__static_renaming("__off_t_3897", "off_t"); +__static_renaming("__mode_t_3899", "mode_t"); +__static_renaming("__mmap_3915", "mmap"); +__static_renaming("__mmap_3917", "mmap"); +__static_renaming("__munmap_3921", "munmap"); +__static_renaming("__mprotect_3925", "mprotect"); +__static_renaming("__msync_3929", "msync"); +__static_renaming("__madvise_3933", "madvise"); +__static_renaming("__posix_madvise_3937", "posix_madvise"); +__static_renaming("__mlock_3940", "mlock"); +__static_renaming("__mlock_3941", "mlock"); +__static_renaming("__munlock_3944", "munlock"); +__static_renaming("__mlockall_3946", "mlockall"); +__static_renaming("__munlockall_3947", "munlockall"); +__static_renaming("__mincore_3951", "mincore"); +__static_renaming("__shm_open_3958", "shm_open"); +__static_renaming("__shm_open_3962", "shm_open"); +__static_renaming("__shm_unlink_3965", "shm_unlink"); +__static_renaming("__buffer_3966", "buffer"); +__static_renaming("__pagesize_3967", "pagesize"); +__static_renaming("__allocate_buffer_3968", "allocate_buffer"); +__static_renaming("__main_3992", "main"); +__static_renaming("__main_3993", "main"); + +__static_condition_renaming("__static_condition_default_51", "(defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_57", "(defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_61", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_63", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_65", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_67", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_69", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __useconds_t_defined)"); +__static_condition_renaming("__static_condition_default_71", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && (defined __useconds_t_defined)"); +__static_condition_renaming("__static_condition_default_73", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __useconds_t_defined)"); +__static_condition_renaming("__static_condition_default_96", "!(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_98", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_105", "!(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_106", "!(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_108", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_109", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_114", "!(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_115", "!(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_117", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_118", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_125", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_126", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_127", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_129", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_130", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_131", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_143", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_144", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_145", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_147", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_148", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_149", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_156", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_157", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_158", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_160", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_161", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_162", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_164", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_165", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_166", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_168", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_169", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_170", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_185", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_189", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_198", "!(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_200", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_207", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_209", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_216", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_218", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_227", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_229", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_605", "(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_607", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_609", "(defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_617", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_623", "(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_625", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_628", "(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_630", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_634", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_636", "(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_638", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_640", "(defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_642", "(defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_648", "!(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_650", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_654", "!(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_656", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_662", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_664", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_668", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_670", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_674", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_676", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_678", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_680", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_686", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_688", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_692", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_694", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_696", "(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_698", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_700", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_733", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_734", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_736", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_737", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_748", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_749", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ssize_t_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_751", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_752", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_839", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_841", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_843", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_845", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_853", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_855", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_857", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_859", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_866", "!(defined __STRICT_ANSI__) && (defined __intptr_t_defined)"); +__static_condition_renaming("__static_condition_default_878", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined F_LOCK) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined F_LOCK)"); +__static_condition_renaming("__static_condition_default_880", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined F_LOCK)"); +__static_condition_renaming("__static_condition_default_882", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined F_LOCK) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined F_LOCK) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined F_LOCK) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined F_LOCK) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined F_LOCK) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined F_LOCK) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined F_LOCK) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined F_LOCK)"); +__static_condition_renaming("__static_condition_default_884", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined F_LOCK) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined F_LOCK) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined F_LOCK) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined F_LOCK)"); +__static_condition_renaming("__static_condition_default_892", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_893", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_898", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_899", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_905", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_906", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_910", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_911", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_917", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_918", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_923", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_924", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_930", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_931", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_935", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_936", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_943", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_944", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_950", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_951", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_958", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_959", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_964", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_965", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_980", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_987", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1012", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1017", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1023", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1027", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1102", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined ____mbstate_t_defined) || (defined _BITS_TYPESIZES_H) && !(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_1110", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined ____mbstate_t_defined) || (defined _BITS_TYPESIZES_H) && !(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_1149", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_1195", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE) || (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_1196", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_1199", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && !(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_1208", "(defined _BITS_TYPESIZES_H) && !(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_1213", "(defined _BITS_TYPESIZES_H) && !(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_1219", "(defined _BITS_TYPESIZES_H) && !(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_1224", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && !(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_1227", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && !(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_1230", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && !(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_1236", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && !(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_1243", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && !(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_1249", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && !(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_1255", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && !(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_1261", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && !(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_1264", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && !(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_1267", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && !(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_1270", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && !(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_1272", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_1274", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_1275", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_1276", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_1279", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_1281", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_1283", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_1284", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_1285", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_1289", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_1290", "(defined _BITS_TYPESIZES_H) && !(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_1293", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && !(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_1296", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_1297", "(defined _BITS_TYPESIZES_H) && !(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_1300", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_1301", "(defined _BITS_TYPESIZES_H) && !(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_1304", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && !(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_1306", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); +__static_condition_renaming("__static_condition_default_1308", "!(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined ____mbstate_t_defined) || !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_1310", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_1313", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && !(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_1316", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && !(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_1319", "!(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && !(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_1331", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1333", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1335", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1337", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1351", "(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1353", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1357", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1361", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1365", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1367", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1375", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1377", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1383", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1385", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1387", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1389", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1393", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1395", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1400", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1402", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1406", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1408", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1413", "(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1415", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1422", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1428", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1432", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1437", "(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1439", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1451", "!(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1452", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_1453", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1458", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1464", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1475", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1481", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1489", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1491", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1493", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1495", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1506", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1508", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1509", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1511", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1513", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1514", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1517", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_1519", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_1523", "!(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_1530", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1531", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_1532", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1534", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1535", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_1536", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1541", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1543", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1549", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1556", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_1557", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1558", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_1559", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1561", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_1562", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1563", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_1564", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1569", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_1570", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1572", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_1573", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1579", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_1580", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1584", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1588", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1593", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1598", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1603", "(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1605", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1610", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1617", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1622", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1628", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1633", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1639", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1641", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1643", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1645", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1652", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1653", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1654", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1656", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1657", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1658", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1665", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1666", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1667", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1669", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1670", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1671", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1677", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1678", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1679", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1681", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1682", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1683", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1688", "(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1690", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1697", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1703", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1704", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1705", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1706", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1712", "!(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1713", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1719", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1720", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1721", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1722", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1728", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1729", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1735", "(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1737", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1741", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1743", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1747", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1754", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1755", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1756", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1765", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1766", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1767", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1771", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1772", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1773", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1775", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1776", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1777", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1779", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1780", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1781", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1787", "!(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1788", "!(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_1789", "!(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1799", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1800", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_1801", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1807", "!(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1808", "!(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_1809", "!(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1811", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1812", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_1813", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1817", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1821", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1823", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1827", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1829", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1833", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1837", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1839", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1843", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1845", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1854", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1856", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1860", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1862", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1866", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1868", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1872", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1878", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1882", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1884", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1888", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1892", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1895", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_1898", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_1903", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_1907", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_1911", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_1914", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_1927", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1934", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1949", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1958", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1964", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1975", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1976", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_1977", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1983", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1987", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1992", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1998", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1999", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_2000", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2011", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2018", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2025", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2027", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2029", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2035", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2042", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2047", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2048", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2055", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2056", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2062", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2063", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2070", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2071", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2077", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2078", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2085", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2086", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2092", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2093", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2100", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2101", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2109", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_2110", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2111", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2135", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined ____mbstate_t_defined) || (defined _BITS_TYPESIZES_H) && (defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_2143", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined ____mbstate_t_defined) || (defined _BITS_TYPESIZES_H) && (defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_2180", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_2226", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE) || (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_2227", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_2230", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && (defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_2238", "(defined _BITS_TYPESIZES_H) && (defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_2243", "(defined _BITS_TYPESIZES_H) && (defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_2249", "(defined _BITS_TYPESIZES_H) && (defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_2254", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && (defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_2257", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && (defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_2260", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && (defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_2266", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && (defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_2273", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && (defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_2279", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && (defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_2285", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && (defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_2291", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && (defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_2294", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && (defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_2297", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && (defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_2300", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && (defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_2302", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_2304", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_2305", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_2306", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_2309", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_2311", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_2313", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_2314", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_2315", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_2319", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_2320", "(defined _BITS_TYPESIZES_H) && (defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_2323", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && (defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_2326", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_2327", "(defined _BITS_TYPESIZES_H) && (defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_2330", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_2331", "(defined _BITS_TYPESIZES_H) && (defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_2334", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && (defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_2336", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); +__static_condition_renaming("__static_condition_default_2338", "!(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined ____mbstate_t_defined) || !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_2340", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_2343", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && (defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_2346", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && (defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_2349", "!(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined _IO_MTSAFE_IO) || (defined _BITS_TYPESIZES_H) && (defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_2361", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2363", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2365", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2367", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2381", "(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2383", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2387", "(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2391", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2395", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2397", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2405", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2407", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2413", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2415", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2417", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2419", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2423", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2425", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2430", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2432", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2436", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2438", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2443", "(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2445", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2452", "(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2458", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2462", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2467", "(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2469", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2481", "(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2482", "(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_2483", "(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2488", "(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2494", "(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2505", "(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2511", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2519", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2521", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2523", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2525", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2536", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2538", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2539", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2541", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2543", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2544", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2547", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_2549", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_2553", "(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_2560", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2561", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_2562", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2564", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2565", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_2566", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2571", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2573", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2579", "(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2586", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_2587", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2588", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_2589", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2591", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_2592", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2593", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_2594", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2599", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_2600", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2602", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_2603", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2609", "(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_2610", "(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2614", "(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2618", "(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2623", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2628", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2633", "(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2635", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2640", "(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2647", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2652", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2658", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2663", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2669", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); __static_condition_renaming("__static_condition_default_2671", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2675", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2677", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2681", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2687", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2691", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2693", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2697", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2701", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2704", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_2707", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_2712", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_2716", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_2720", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_2723", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_2736", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2743", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2758", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2767", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2773", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2784", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2785", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_2786", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2792", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2796", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2801", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2807", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2808", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_2809", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2820", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2827", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_2834", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2836", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2838", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2844", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2851", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2856", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2857", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2864", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2865", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2871", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2872", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2879", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2880", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2886", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2887", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2894", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2895", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2901", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2902", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2909", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2910", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2918", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_2919", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2920", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_2954", "!(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need_ptrdiff_t) || !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need_ptrdiff_t) || (defined _STDDEF_H_) && !(defined __need_ptrdiff_t)"); -__static_condition_renaming("__static_condition_default_2986", "(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_3012", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_3148", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); -__static_condition_renaming("__static_condition_default_3269", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined)"); -__static_condition_renaming("__static_condition_default_3271", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined)"); -__static_condition_renaming("__static_condition_default_3273", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined)"); -__static_condition_renaming("__static_condition_default_3275", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined)"); -__static_condition_renaming("__static_condition_default_3277", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined)"); -__static_condition_renaming("__static_condition_default_3279", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && (defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined)"); -__static_condition_renaming("__static_condition_default_3283", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined)"); -__static_condition_renaming("__static_condition_default_3285", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined)"); -__static_condition_renaming("__static_condition_default_3289", "(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined)"); -__static_condition_renaming("__static_condition_default_3291", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined)"); -__static_condition_renaming("__static_condition_default_3294", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_3297", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_3302", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_3304", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_3380", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_3382", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_3395", "(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_3396", "(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_3403", "!(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_3405", "(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_3422", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_3424", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_3428", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_3430", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_3545", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); -__static_condition_renaming("__static_condition_default_3685", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_3686", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __dev_t_defined)"); -__static_condition_renaming("__static_condition_default_3693", "!(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); -__static_condition_renaming("__static_condition_default_3694", "(defined __STRICT_ANSI__) && !(defined __need___FILE) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); -__static_condition_renaming("__static_condition_default_3695", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); -__static_condition_renaming("__static_condition_default_3696", "(defined __STRICT_ANSI__) && (defined __need___FILE) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); -__static_condition_renaming("__static_condition_default_3697", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); -__static_condition_renaming("__static_condition_default_3698", "(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); -__static_condition_renaming("__static_condition_default_3699", "!(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH) || (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); -__static_condition_renaming("__static_condition_default_3700", "!(defined _FORTIFY_SOURCE) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); -__static_condition_renaming("__static_condition_default_3701", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); -__static_condition_renaming("__static_condition_default_3702", "(defined __STRICT_ANSI__) && !(defined __need___FILE) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); -__static_condition_renaming("__static_condition_default_3703", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); -__static_condition_renaming("__static_condition_default_3704", "(defined __STRICT_ANSI__) && (defined __need___FILE) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); -__static_condition_renaming("__static_condition_default_3705", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); -__static_condition_renaming("__static_condition_default_3706", "(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); -__static_condition_renaming("__static_condition_default_3707", "!(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH) || (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); -__static_condition_renaming("__static_condition_default_3708", "(defined __STRICT_ANSI__) && !(defined __need___FILE) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); -__static_condition_renaming("__static_condition_default_3709", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); -__static_condition_renaming("__static_condition_default_3710", "(defined __STRICT_ANSI__) && (defined __need___FILE) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); -__static_condition_renaming("__static_condition_default_3711", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); -__static_condition_renaming("__static_condition_default_3712", "(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); -__static_condition_renaming("__static_condition_default_3713", "!(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH) || (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); -__static_condition_renaming("__static_condition_default_3718", "!(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined CONFIG_KGDB)"); -__static_condition_renaming("__static_condition_default_3719", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB)"); -__static_condition_renaming("__static_condition_default_3720", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB)"); -__static_condition_renaming("__static_condition_default_3721", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB)"); -__static_condition_renaming("__static_condition_default_3722", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB)"); -__static_condition_renaming("__static_condition_default_3723", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB)"); -__static_condition_renaming("__static_condition_default_3724", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && (defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB)"); -__static_condition_renaming("__static_condition_default_3725", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB)"); -__static_condition_renaming("__static_condition_default_3726", "!(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) && (defined CONFIG_KPROBES) || !(defined CONFIG_KGDB) && (defined CONFIG_XMON) && (defined CONFIG_KPROBES) || (defined CONFIG_KGDB) && (defined CONFIG_KPROBES)"); -__static_condition_renaming("__static_condition_default_3727", "!(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) && !(defined CONFIG_KPROBES) || !(defined CONFIG_KGDB) && (defined CONFIG_XMON) && !(defined CONFIG_KPROBES) || (defined CONFIG_KGDB) && !(defined CONFIG_KPROBES)"); -__static_condition_renaming("__static_condition_default_3728", "!(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) && (defined CONFIG_KPROBES) || !(defined CONFIG_KGDB) && (defined CONFIG_XMON) && (defined CONFIG_KPROBES) || (defined CONFIG_KGDB) && (defined CONFIG_KPROBES)"); -__static_condition_renaming("__static_condition_default_3729", "!(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); -__static_condition_renaming("__static_condition_default_3730", "!(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH) && (defined CONFIG_KPROBES)"); -__static_condition_renaming("__static_condition_default_3731", "!(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH) && !(defined CONFIG_KPROBES)"); -__static_condition_renaming("__static_condition_default_3732", "!(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH) && (defined CONFIG_KPROBES)"); -__static_condition_renaming("__static_condition_default_3733", "!(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); - -if (__static_condition_default_3733) { +__static_condition_renaming("__static_condition_default_2673", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2675", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2682", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2683", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2684", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2686", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2687", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2688", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2695", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2696", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2697", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2699", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2700", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2701", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2707", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2708", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2709", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2711", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2712", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2713", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2718", "(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2720", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2727", "(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2733", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2734", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2735", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2736", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2742", "(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2743", "(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2749", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2750", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2751", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2752", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2758", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2759", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2765", "(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2767", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2771", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2773", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2777", "(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2784", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2785", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2786", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2795", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2796", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2797", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2801", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2802", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2803", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2805", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2806", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2807", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2809", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2810", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2811", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2817", "!(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2818", "!(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_2819", "!(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2829", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2830", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_2831", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2837", "!(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2838", "!(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_2839", "!(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2841", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2842", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_2843", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2847", "(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2851", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2853", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2857", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2859", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2863", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2867", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2869", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2873", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2875", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2884", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2886", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2890", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2892", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2896", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2898", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2902", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2908", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2912", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2914", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2918", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2922", "!(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2925", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_2928", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_2933", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_2937", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_2941", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_2944", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_2957", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2964", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2979", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2988", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2994", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_3005", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_3006", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_3007", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_3013", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_3017", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_3022", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_3028", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_3029", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_3030", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_3041", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_3048", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_3055", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_3057", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_3059", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_3065", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_3072", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_3077", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_3078", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_3085", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_3086", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_3092", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_3093", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_3100", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_3101", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_3107", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_3108", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_3115", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_3116", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_3122", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_3123", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_3130", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_3131", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_3139", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_3140", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_3141", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_3175", "!(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need_ptrdiff_t) || !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need_ptrdiff_t) || (defined _STDDEF_H_) && !(defined __need_ptrdiff_t)"); +__static_condition_renaming("__static_condition_default_3207", "(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_3233", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_3337", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __u_char_defined)"); +__static_condition_renaming("__static_condition_default_3339", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_3341", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined)"); +__static_condition_renaming("__static_condition_default_3343", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __ino_t_defined)"); +__static_condition_renaming("__static_condition_default_3345", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_3347", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_3349", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_3351", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __nlink_t_defined)"); +__static_condition_renaming("__static_condition_default_3353", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __id_t_defined)"); +__static_condition_renaming("__static_condition_default_3355", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_3358", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_3360", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_3362", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __clock_t_defined)"); +__static_condition_renaming("__static_condition_default_3364", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __time_t_defined)"); +__static_condition_renaming("__static_condition_default_3366", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __clockid_t_defined)"); +__static_condition_renaming("__static_condition_default_3368", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timer_t_defined)"); +__static_condition_renaming("__static_condition_default_3385", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_3399", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_3405", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_3407", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __suseconds_t_defined)"); +__static_condition_renaming("__static_condition_default_3416", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_3433", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_3434", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_3449", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_3450", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_3468", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blksize_t_defined)"); +__static_condition_renaming("__static_condition_default_3470", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined)"); +__static_condition_renaming("__static_condition_default_3472", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_3474", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __blkcnt_t_defined)"); +__static_condition_renaming("__static_condition_default_3476", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_3478", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_3480", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_3535", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined)"); +__static_condition_renaming("__static_condition_default_3537", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined)"); +__static_condition_renaming("__static_condition_default_3539", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined)"); +__static_condition_renaming("__static_condition_default_3541", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined)"); +__static_condition_renaming("__static_condition_default_3543", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined)"); +__static_condition_renaming("__static_condition_default_3545", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && (defined __need___FILE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined)"); +__static_condition_renaming("__static_condition_default_3549", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined)"); +__static_condition_renaming("__static_condition_default_3551", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined)"); +__static_condition_renaming("__static_condition_default_3555", "(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined)"); +__static_condition_renaming("__static_condition_default_3557", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined)"); +__static_condition_renaming("__static_condition_default_3560", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_3563", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_3568", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_3570", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_3646", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_3648", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_3661", "(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_3662", "(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_3669", "!(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_3671", "(defined __USE_EXTERN_INLINES) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_3688", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_3690", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_3694", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_3696", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_3811", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_3896", "(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || (defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_3898", "(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_3900", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && (defined _STDLIB_H) || (defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_3916", "!(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_3918", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_3959", "(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_3960", "!(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_3961", "!(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_3963", "!(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_3969", "!(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); +__static_condition_renaming("__static_condition_default_3970", "(defined __STRICT_ANSI__) && !(defined __need___FILE) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); +__static_condition_renaming("__static_condition_default_3971", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); +__static_condition_renaming("__static_condition_default_3972", "(defined __STRICT_ANSI__) && (defined __need___FILE) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); +__static_condition_renaming("__static_condition_default_3973", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); +__static_condition_renaming("__static_condition_default_3974", "(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); +__static_condition_renaming("__static_condition_default_3975", "!(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH) || (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); +__static_condition_renaming("__static_condition_default_3976", "!(defined _FORTIFY_SOURCE) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); +__static_condition_renaming("__static_condition_default_3977", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); +__static_condition_renaming("__static_condition_default_3978", "(defined __STRICT_ANSI__) && !(defined __need___FILE) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); +__static_condition_renaming("__static_condition_default_3979", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); +__static_condition_renaming("__static_condition_default_3980", "(defined __STRICT_ANSI__) && (defined __need___FILE) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); +__static_condition_renaming("__static_condition_default_3981", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); +__static_condition_renaming("__static_condition_default_3982", "(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); +__static_condition_renaming("__static_condition_default_3983", "!(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH) || (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); +__static_condition_renaming("__static_condition_default_3984", "(defined __STRICT_ANSI__) && !(defined __need___FILE) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); +__static_condition_renaming("__static_condition_default_3985", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); +__static_condition_renaming("__static_condition_default_3986", "(defined __STRICT_ANSI__) && (defined __need___FILE) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); +__static_condition_renaming("__static_condition_default_3987", "!(defined __STRICT_ANSI__) && (defined __need___FILE) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); +__static_condition_renaming("__static_condition_default_3988", "(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); +__static_condition_renaming("__static_condition_default_3989", "!(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH) || (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); +__static_condition_renaming("__static_condition_default_3994", "!(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined CONFIG_KGDB)"); +__static_condition_renaming("__static_condition_default_3995", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB)"); +__static_condition_renaming("__static_condition_default_3996", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB)"); +__static_condition_renaming("__static_condition_default_3997", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB)"); +__static_condition_renaming("__static_condition_default_3998", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB)"); +__static_condition_renaming("__static_condition_default_3999", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB)"); +__static_condition_renaming("__static_condition_default_4000", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && (defined __need___FILE) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && (defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && !(defined __STDDEF_H__) && (defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && !(defined _ANSI_STDDEF_H) && (defined __STDDEF_H__) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDDEF_H_) && (defined _ANSI_STDDEF_H) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && !(defined _STDLIB_H) && (defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDDEF_H_) && !(defined __need___FILE) && (defined _STDLIB_H) && (defined CONFIG_KGDB)"); +__static_condition_renaming("__static_condition_default_4001", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_KGDB) || !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && !(defined CONFIG_KGDB) && (defined CONFIG_XMON) || (defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __malloc_and_calloc_defined) && (defined CONFIG_KGDB)"); +__static_condition_renaming("__static_condition_default_4002", "!(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) && (defined CONFIG_KPROBES) || !(defined CONFIG_KGDB) && (defined CONFIG_XMON) && (defined CONFIG_KPROBES) || (defined CONFIG_KGDB) && (defined CONFIG_KPROBES)"); +__static_condition_renaming("__static_condition_default_4003", "!(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) && !(defined CONFIG_KPROBES) || !(defined CONFIG_KGDB) && (defined CONFIG_XMON) && !(defined CONFIG_KPROBES) || (defined CONFIG_KGDB) && !(defined CONFIG_KPROBES)"); +__static_condition_renaming("__static_condition_default_4004", "!(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && (defined CONFIG_BDI_SWITCH) && (defined CONFIG_KPROBES) || !(defined CONFIG_KGDB) && (defined CONFIG_XMON) && (defined CONFIG_KPROBES) || (defined CONFIG_KGDB) && (defined CONFIG_KPROBES)"); +__static_condition_renaming("__static_condition_default_4005", "!(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH)"); +__static_condition_renaming("__static_condition_default_4006", "!(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH) && (defined CONFIG_KPROBES)"); +__static_condition_renaming("__static_condition_default_4007", "!(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH) && !(defined CONFIG_KPROBES)"); +__static_condition_renaming("__static_condition_default_4008", "!(defined CONFIG_KGDB) && !(defined CONFIG_XMON) && !(defined CONFIG_BDI_SWITCH) && (defined CONFIG_KPROBES)"); +__static_condition_renaming("__static_condition_default_4009", "!(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H)"); + +if (__static_condition_default_4009) { __static_parse_error("Unable to parse"); } }; @@ -2201,741 +2599,741 @@ typedef long int ____ssize_t_47;// L110:L172 typedef long int ____syscall_slong_t_48;// L93:L175 typedef unsigned long int ____syscall_ulong_t_49;// L94:L177 typedef ____off64_t_22 ____loff_t_50;// L181 -typedef ____quad_t_12 * (____qaddr_t_51);// L182 -typedef char * (____caddr_t_52);// L183 -typedef long int ____intptr_t_53;// L110:L186 -typedef unsigned int ____socklen_t_54;// L92:L189 -typedef ____ssize_t_47 __ssize_t_55;// L223 -typedef long int __ptrdiff_t_56;// L143:L324 -typedef long unsigned int __size_t_57;// L177:L209 -typedef ____gid_t_16 __gid_t_58;// L235 -typedef ____uid_t_15 __uid_t_59;// L240 -typedef ____off_t_21 __off_t_60;// L246 -typedef ____off64_t_22 __off_t_61;// L248 -typedef ____useconds_t_33 __useconds_t_62;// L258 -typedef ____pid_t_23 __pid_t_63;// L263 -typedef ____pid_t_23 __pid_t_64;// L263 -typedef ____intptr_t_53 __intptr_t_65;// L270 -typedef ____socklen_t_54 __socklen_t_66;// L277 -enum ____anonymous_tag_249_250 { -___PC_LINK_MAX_228, -___PC_MAX_CANON_229, -___PC_MAX_INPUT_230, -___PC_NAME_MAX_231, -___PC_PATH_MAX_232, -___PC_PIPE_BUF_233, -___PC_CHOWN_RESTRICTED_234, -___PC_NO_TRUNC_235, -___PC_VDISABLE_236, -___PC_SYNC_IO_237, -___PC_ASYNC_IO_238, -___PC_PRIO_IO_239, -___PC_SOCK_MAXBUF_240, -___PC_FILESIZEBITS_241, -___PC_REC_INCR_XFER_SIZE_242, -___PC_REC_MAX_XFER_SIZE_243, -___PC_REC_MIN_XFER_SIZE_244, -___PC_REC_XFER_ALIGN_245, -___PC_ALLOC_SIZE_MIN_246, -___PC_SYMLINK_MAX_247, -___PC_2_SYMLINKS_248, +typedef ____quad_t_12 * (____qaddr_t_52);// L182 +typedef char * (____caddr_t_53);// L183 +typedef long int ____intptr_t_54;// L110:L186 +typedef unsigned int ____socklen_t_55;// L92:L189 +typedef ____ssize_t_47 __ssize_t_56;// L223 +typedef long int __ptrdiff_t_58;// L143:L324 +typedef long unsigned int __size_t_59;// L177:L209 +typedef ____gid_t_16 __gid_t_60;// L235 +typedef ____uid_t_15 __uid_t_62;// L240 +typedef ____off_t_21 __off_t_64;// L246 +typedef ____off64_t_22 __off_t_66;// L248 +typedef ____useconds_t_33 __useconds_t_68;// L258 +typedef ____pid_t_23 __pid_t_70;// L263 +typedef ____pid_t_23 __pid_t_72;// L263 +typedef ____intptr_t_54 __intptr_t_74;// L270 +typedef ____socklen_t_55 __socklen_t_75;// L277 +enum ____anonymous_tag_307_308 { +___PC_LINK_MAX_286, +___PC_MAX_CANON_287, +___PC_MAX_INPUT_288, +___PC_NAME_MAX_289, +___PC_PATH_MAX_290, +___PC_PIPE_BUF_291, +___PC_CHOWN_RESTRICTED_292, +___PC_NO_TRUNC_293, +___PC_VDISABLE_294, +___PC_SYNC_IO_295, +___PC_ASYNC_IO_296, +___PC_PRIO_IO_297, +___PC_SOCK_MAXBUF_298, +___PC_FILESIZEBITS_299, +___PC_REC_INCR_XFER_SIZE_300, +___PC_REC_MAX_XFER_SIZE_301, +___PC_REC_MIN_XFER_SIZE_302, +___PC_REC_XFER_ALIGN_303, +___PC_ALLOC_SIZE_MIN_304, +___PC_SYMLINK_MAX_305, +___PC_2_SYMLINKS_306, }; -enum ____anonymous_tag_466_467 { -___SC_ARG_MAX_251, -___SC_CHILD_MAX_252, -___SC_CLK_TCK_253, -___SC_NGROUPS_MAX_254, -___SC_OPEN_MAX_255, -___SC_STREAM_MAX_256, -___SC_TZNAME_MAX_257, -___SC_JOB_CONTROL_258, -___SC_SAVED_IDS_259, -___SC_REALTIME_SIGNALS_260, -___SC_PRIORITY_SCHEDULING_261, -___SC_TIMERS_262, -___SC_ASYNCHRONOUS_IO_263, -___SC_PRIORITIZED_IO_264, -___SC_SYNCHRONIZED_IO_265, -___SC_FSYNC_266, -___SC_MAPPED_FILES_267, -___SC_MEMLOCK_268, -___SC_MEMLOCK_RANGE_269, -___SC_MEMORY_PROTECTION_270, -___SC_MESSAGE_PASSING_271, -___SC_SEMAPHORES_272, -___SC_SHARED_MEMORY_OBJECTS_273, -___SC_AIO_LISTIO_MAX_274, -___SC_AIO_MAX_275, -___SC_AIO_PRIO_DELTA_MAX_276, -___SC_DELAYTIMER_MAX_277, -___SC_MQ_OPEN_MAX_278, -___SC_MQ_PRIO_MAX_279, -___SC_VERSION_280, -___SC_PAGESIZE_281, -___SC_RTSIG_MAX_282, -___SC_SEM_NSEMS_MAX_283, -___SC_SEM_VALUE_MAX_284, -___SC_SIGQUEUE_MAX_285, -___SC_TIMER_MAX_286, -___SC_BC_BASE_MAX_287, -___SC_BC_DIM_MAX_288, -___SC_BC_SCALE_MAX_289, -___SC_BC_STRING_MAX_290, -___SC_COLL_WEIGHTS_MAX_291, -___SC_EQUIV_CLASS_MAX_292, -___SC_EXPR_NEST_MAX_293, -___SC_LINE_MAX_294, -___SC_RE_DUP_MAX_295, -___SC_CHARCLASS_NAME_MAX_296, -___SC_2_VERSION_297, -___SC_2_C_BIND_298, -___SC_2_C_DEV_299, -___SC_2_FORT_DEV_300, -___SC_2_FORT_RUN_301, -___SC_2_SW_DEV_302, -___SC_2_LOCALEDEF_303, -___SC_PII_304, -___SC_PII_XTI_305, -___SC_PII_SOCKET_306, -___SC_PII_INTERNET_307, -___SC_PII_OSI_308, -___SC_POLL_309, -___SC_SELECT_310, -___SC_UIO_MAXIOV_311, -___SC_IOV_MAX_312 = ___SC_UIO_MAXIOV_311 , -___SC_PII_INTERNET_STREAM_313, -___SC_PII_INTERNET_DGRAM_314, -___SC_PII_OSI_COTS_315, -___SC_PII_OSI_CLTS_316, -___SC_PII_OSI_M_317, -___SC_T_IOV_MAX_318, -___SC_THREADS_319, -___SC_THREAD_SAFE_FUNCTIONS_320, -___SC_GETGR_R_SIZE_MAX_321, -___SC_GETPW_R_SIZE_MAX_322, -___SC_LOGIN_NAME_MAX_323, -___SC_TTY_NAME_MAX_324, -___SC_THREAD_DESTRUCTOR_ITERATIONS_325, -___SC_THREAD_KEYS_MAX_326, -___SC_THREAD_STACK_MIN_327, -___SC_THREAD_THREADS_MAX_328, -___SC_THREAD_ATTR_STACKADDR_329, -___SC_THREAD_ATTR_STACKSIZE_330, -___SC_THREAD_PRIORITY_SCHEDULING_331, -___SC_THREAD_PRIO_INHERIT_332, -___SC_THREAD_PRIO_PROTECT_333, -___SC_THREAD_PROCESS_SHARED_334, -___SC_NPROCESSORS_CONF_335, -___SC_NPROCESSORS_ONLN_336, -___SC_PHYS_PAGES_337, -___SC_AVPHYS_PAGES_338, -___SC_ATEXIT_MAX_339, -___SC_PASS_MAX_340, -___SC_XOPEN_VERSION_341, -___SC_XOPEN_XCU_VERSION_342, -___SC_XOPEN_UNIX_343, -___SC_XOPEN_CRYPT_344, -___SC_XOPEN_ENH_I18N_345, -___SC_XOPEN_SHM_346, -___SC_2_CHAR_TERM_347, -___SC_2_C_VERSION_348, -___SC_2_UPE_349, -___SC_XOPEN_XPG2_350, -___SC_XOPEN_XPG3_351, -___SC_XOPEN_XPG4_352, -___SC_CHAR_BIT_353, -___SC_CHAR_MAX_354, -___SC_CHAR_MIN_355, -___SC_INT_MAX_356, -___SC_INT_MIN_357, -___SC_LONG_BIT_358, -___SC_WORD_BIT_359, -___SC_MB_LEN_MAX_360, -___SC_NZERO_361, -___SC_SSIZE_MAX_362, -___SC_SCHAR_MAX_363, -___SC_SCHAR_MIN_364, -___SC_SHRT_MAX_365, -___SC_SHRT_MIN_366, -___SC_UCHAR_MAX_367, -___SC_UINT_MAX_368, -___SC_ULONG_MAX_369, -___SC_USHRT_MAX_370, -___SC_NL_ARGMAX_371, -___SC_NL_LANGMAX_372, -___SC_NL_MSGMAX_373, -___SC_NL_NMAX_374, -___SC_NL_SETMAX_375, -___SC_NL_TEXTMAX_376, -___SC_XBS5_ILP32_OFF32_377, -___SC_XBS5_ILP32_OFFBIG_378, -___SC_XBS5_LP64_OFF64_379, -___SC_XBS5_LPBIG_OFFBIG_380, -___SC_XOPEN_LEGACY_381, -___SC_XOPEN_REALTIME_382, -___SC_XOPEN_REALTIME_THREADS_383, -___SC_ADVISORY_INFO_384, -___SC_BARRIERS_385, -___SC_BASE_386, -___SC_C_LANG_SUPPORT_387, -___SC_C_LANG_SUPPORT_R_388, -___SC_CLOCK_SELECTION_389, -___SC_CPUTIME_390, -___SC_THREAD_CPUTIME_391, -___SC_DEVICE_IO_392, -___SC_DEVICE_SPECIFIC_393, -___SC_DEVICE_SPECIFIC_R_394, -___SC_FD_MGMT_395, -___SC_FIFO_396, -___SC_PIPE_397, -___SC_FILE_ATTRIBUTES_398, -___SC_FILE_LOCKING_399, -___SC_FILE_SYSTEM_400, -___SC_MONOTONIC_CLOCK_401, -___SC_MULTI_PROCESS_402, -___SC_SINGLE_PROCESS_403, -___SC_NETWORKING_404, -___SC_READER_WRITER_LOCKS_405, -___SC_SPIN_LOCKS_406, -___SC_REGEXP_407, -___SC_REGEX_VERSION_408, -___SC_SHELL_409, -___SC_SIGNALS_410, -___SC_SPAWN_411, -___SC_SPORADIC_SERVER_412, -___SC_THREAD_SPORADIC_SERVER_413, -___SC_SYSTEM_DATABASE_414, -___SC_SYSTEM_DATABASE_R_415, -___SC_TIMEOUTS_416, -___SC_TYPED_MEMORY_OBJECTS_417, -___SC_USER_GROUPS_418, -___SC_USER_GROUPS_R_419, -___SC_2_PBS_420, -___SC_2_PBS_ACCOUNTING_421, -___SC_2_PBS_LOCATE_422, -___SC_2_PBS_MESSAGE_423, -___SC_2_PBS_TRACK_424, -___SC_SYMLOOP_MAX_425, -___SC_STREAMS_426, -___SC_2_PBS_CHECKPOINT_427, -___SC_V6_ILP32_OFF32_428, -___SC_V6_ILP32_OFFBIG_429, -___SC_V6_LP64_OFF64_430, -___SC_V6_LPBIG_OFFBIG_431, -___SC_HOST_NAME_MAX_432, -___SC_TRACE_433, -___SC_TRACE_EVENT_FILTER_434, -___SC_TRACE_INHERIT_435, -___SC_TRACE_LOG_436, -___SC_LEVEL1_ICACHE_SIZE_437, -___SC_LEVEL1_ICACHE_ASSOC_438, -___SC_LEVEL1_ICACHE_LINESIZE_439, -___SC_LEVEL1_DCACHE_SIZE_440, -___SC_LEVEL1_DCACHE_ASSOC_441, -___SC_LEVEL1_DCACHE_LINESIZE_442, -___SC_LEVEL2_CACHE_SIZE_443, -___SC_LEVEL2_CACHE_ASSOC_444, -___SC_LEVEL2_CACHE_LINESIZE_445, -___SC_LEVEL3_CACHE_SIZE_446, -___SC_LEVEL3_CACHE_ASSOC_447, -___SC_LEVEL3_CACHE_LINESIZE_448, -___SC_LEVEL4_CACHE_SIZE_449, -___SC_LEVEL4_CACHE_ASSOC_450, -___SC_LEVEL4_CACHE_LINESIZE_451, -___SC_IPV6_452 = ___SC_LEVEL1_ICACHE_SIZE_437 + 50, -___SC_RAW_SOCKETS_453, -___SC_V7_ILP32_OFF32_454, -___SC_V7_ILP32_OFFBIG_455, -___SC_V7_LP64_OFF64_456, -___SC_V7_LPBIG_OFFBIG_457, -___SC_SS_REPL_MAX_458, -___SC_TRACE_EVENT_NAME_MAX_459, -___SC_TRACE_NAME_MAX_460, -___SC_TRACE_SYS_MAX_461, -___SC_TRACE_USER_EVENT_MAX_462, -___SC_XOPEN_STREAMS_463, -___SC_THREAD_ROBUST_PRIO_INHERIT_464, -___SC_THREAD_ROBUST_PRIO_PROTECT_465, +enum ____anonymous_tag_524_525 { +___SC_ARG_MAX_309, +___SC_CHILD_MAX_310, +___SC_CLK_TCK_311, +___SC_NGROUPS_MAX_312, +___SC_OPEN_MAX_313, +___SC_STREAM_MAX_314, +___SC_TZNAME_MAX_315, +___SC_JOB_CONTROL_316, +___SC_SAVED_IDS_317, +___SC_REALTIME_SIGNALS_318, +___SC_PRIORITY_SCHEDULING_319, +___SC_TIMERS_320, +___SC_ASYNCHRONOUS_IO_321, +___SC_PRIORITIZED_IO_322, +___SC_SYNCHRONIZED_IO_323, +___SC_FSYNC_324, +___SC_MAPPED_FILES_325, +___SC_MEMLOCK_326, +___SC_MEMLOCK_RANGE_327, +___SC_MEMORY_PROTECTION_328, +___SC_MESSAGE_PASSING_329, +___SC_SEMAPHORES_330, +___SC_SHARED_MEMORY_OBJECTS_331, +___SC_AIO_LISTIO_MAX_332, +___SC_AIO_MAX_333, +___SC_AIO_PRIO_DELTA_MAX_334, +___SC_DELAYTIMER_MAX_335, +___SC_MQ_OPEN_MAX_336, +___SC_MQ_PRIO_MAX_337, +___SC_VERSION_338, +___SC_PAGESIZE_339, +___SC_RTSIG_MAX_340, +___SC_SEM_NSEMS_MAX_341, +___SC_SEM_VALUE_MAX_342, +___SC_SIGQUEUE_MAX_343, +___SC_TIMER_MAX_344, +___SC_BC_BASE_MAX_345, +___SC_BC_DIM_MAX_346, +___SC_BC_SCALE_MAX_347, +___SC_BC_STRING_MAX_348, +___SC_COLL_WEIGHTS_MAX_349, +___SC_EQUIV_CLASS_MAX_350, +___SC_EXPR_NEST_MAX_351, +___SC_LINE_MAX_352, +___SC_RE_DUP_MAX_353, +___SC_CHARCLASS_NAME_MAX_354, +___SC_2_VERSION_355, +___SC_2_C_BIND_356, +___SC_2_C_DEV_357, +___SC_2_FORT_DEV_358, +___SC_2_FORT_RUN_359, +___SC_2_SW_DEV_360, +___SC_2_LOCALEDEF_361, +___SC_PII_362, +___SC_PII_XTI_363, +___SC_PII_SOCKET_364, +___SC_PII_INTERNET_365, +___SC_PII_OSI_366, +___SC_POLL_367, +___SC_SELECT_368, +___SC_UIO_MAXIOV_369, +___SC_IOV_MAX_370 = ___SC_UIO_MAXIOV_369 , +___SC_PII_INTERNET_STREAM_371, +___SC_PII_INTERNET_DGRAM_372, +___SC_PII_OSI_COTS_373, +___SC_PII_OSI_CLTS_374, +___SC_PII_OSI_M_375, +___SC_T_IOV_MAX_376, +___SC_THREADS_377, +___SC_THREAD_SAFE_FUNCTIONS_378, +___SC_GETGR_R_SIZE_MAX_379, +___SC_GETPW_R_SIZE_MAX_380, +___SC_LOGIN_NAME_MAX_381, +___SC_TTY_NAME_MAX_382, +___SC_THREAD_DESTRUCTOR_ITERATIONS_383, +___SC_THREAD_KEYS_MAX_384, +___SC_THREAD_STACK_MIN_385, +___SC_THREAD_THREADS_MAX_386, +___SC_THREAD_ATTR_STACKADDR_387, +___SC_THREAD_ATTR_STACKSIZE_388, +___SC_THREAD_PRIORITY_SCHEDULING_389, +___SC_THREAD_PRIO_INHERIT_390, +___SC_THREAD_PRIO_PROTECT_391, +___SC_THREAD_PROCESS_SHARED_392, +___SC_NPROCESSORS_CONF_393, +___SC_NPROCESSORS_ONLN_394, +___SC_PHYS_PAGES_395, +___SC_AVPHYS_PAGES_396, +___SC_ATEXIT_MAX_397, +___SC_PASS_MAX_398, +___SC_XOPEN_VERSION_399, +___SC_XOPEN_XCU_VERSION_400, +___SC_XOPEN_UNIX_401, +___SC_XOPEN_CRYPT_402, +___SC_XOPEN_ENH_I18N_403, +___SC_XOPEN_SHM_404, +___SC_2_CHAR_TERM_405, +___SC_2_C_VERSION_406, +___SC_2_UPE_407, +___SC_XOPEN_XPG2_408, +___SC_XOPEN_XPG3_409, +___SC_XOPEN_XPG4_410, +___SC_CHAR_BIT_411, +___SC_CHAR_MAX_412, +___SC_CHAR_MIN_413, +___SC_INT_MAX_414, +___SC_INT_MIN_415, +___SC_LONG_BIT_416, +___SC_WORD_BIT_417, +___SC_MB_LEN_MAX_418, +___SC_NZERO_419, +___SC_SSIZE_MAX_420, +___SC_SCHAR_MAX_421, +___SC_SCHAR_MIN_422, +___SC_SHRT_MAX_423, +___SC_SHRT_MIN_424, +___SC_UCHAR_MAX_425, +___SC_UINT_MAX_426, +___SC_ULONG_MAX_427, +___SC_USHRT_MAX_428, +___SC_NL_ARGMAX_429, +___SC_NL_LANGMAX_430, +___SC_NL_MSGMAX_431, +___SC_NL_NMAX_432, +___SC_NL_SETMAX_433, +___SC_NL_TEXTMAX_434, +___SC_XBS5_ILP32_OFF32_435, +___SC_XBS5_ILP32_OFFBIG_436, +___SC_XBS5_LP64_OFF64_437, +___SC_XBS5_LPBIG_OFFBIG_438, +___SC_XOPEN_LEGACY_439, +___SC_XOPEN_REALTIME_440, +___SC_XOPEN_REALTIME_THREADS_441, +___SC_ADVISORY_INFO_442, +___SC_BARRIERS_443, +___SC_BASE_444, +___SC_C_LANG_SUPPORT_445, +___SC_C_LANG_SUPPORT_R_446, +___SC_CLOCK_SELECTION_447, +___SC_CPUTIME_448, +___SC_THREAD_CPUTIME_449, +___SC_DEVICE_IO_450, +___SC_DEVICE_SPECIFIC_451, +___SC_DEVICE_SPECIFIC_R_452, +___SC_FD_MGMT_453, +___SC_FIFO_454, +___SC_PIPE_455, +___SC_FILE_ATTRIBUTES_456, +___SC_FILE_LOCKING_457, +___SC_FILE_SYSTEM_458, +___SC_MONOTONIC_CLOCK_459, +___SC_MULTI_PROCESS_460, +___SC_SINGLE_PROCESS_461, +___SC_NETWORKING_462, +___SC_READER_WRITER_LOCKS_463, +___SC_SPIN_LOCKS_464, +___SC_REGEXP_465, +___SC_REGEX_VERSION_466, +___SC_SHELL_467, +___SC_SIGNALS_468, +___SC_SPAWN_469, +___SC_SPORADIC_SERVER_470, +___SC_THREAD_SPORADIC_SERVER_471, +___SC_SYSTEM_DATABASE_472, +___SC_SYSTEM_DATABASE_R_473, +___SC_TIMEOUTS_474, +___SC_TYPED_MEMORY_OBJECTS_475, +___SC_USER_GROUPS_476, +___SC_USER_GROUPS_R_477, +___SC_2_PBS_478, +___SC_2_PBS_ACCOUNTING_479, +___SC_2_PBS_LOCATE_480, +___SC_2_PBS_MESSAGE_481, +___SC_2_PBS_TRACK_482, +___SC_SYMLOOP_MAX_483, +___SC_STREAMS_484, +___SC_2_PBS_CHECKPOINT_485, +___SC_V6_ILP32_OFF32_486, +___SC_V6_ILP32_OFFBIG_487, +___SC_V6_LP64_OFF64_488, +___SC_V6_LPBIG_OFFBIG_489, +___SC_HOST_NAME_MAX_490, +___SC_TRACE_491, +___SC_TRACE_EVENT_FILTER_492, +___SC_TRACE_INHERIT_493, +___SC_TRACE_LOG_494, +___SC_LEVEL1_ICACHE_SIZE_495, +___SC_LEVEL1_ICACHE_ASSOC_496, +___SC_LEVEL1_ICACHE_LINESIZE_497, +___SC_LEVEL1_DCACHE_SIZE_498, +___SC_LEVEL1_DCACHE_ASSOC_499, +___SC_LEVEL1_DCACHE_LINESIZE_500, +___SC_LEVEL2_CACHE_SIZE_501, +___SC_LEVEL2_CACHE_ASSOC_502, +___SC_LEVEL2_CACHE_LINESIZE_503, +___SC_LEVEL3_CACHE_SIZE_504, +___SC_LEVEL3_CACHE_ASSOC_505, +___SC_LEVEL3_CACHE_LINESIZE_506, +___SC_LEVEL4_CACHE_SIZE_507, +___SC_LEVEL4_CACHE_ASSOC_508, +___SC_LEVEL4_CACHE_LINESIZE_509, +___SC_IPV6_510 = ___SC_LEVEL1_ICACHE_SIZE_495 + 50, +___SC_RAW_SOCKETS_511, +___SC_V7_ILP32_OFF32_512, +___SC_V7_ILP32_OFFBIG_513, +___SC_V7_LP64_OFF64_514, +___SC_V7_LPBIG_OFFBIG_515, +___SC_SS_REPL_MAX_516, +___SC_TRACE_EVENT_NAME_MAX_517, +___SC_TRACE_NAME_MAX_518, +___SC_TRACE_SYS_MAX_519, +___SC_TRACE_USER_EVENT_MAX_520, +___SC_XOPEN_STREAMS_521, +___SC_THREAD_ROBUST_PRIO_INHERIT_522, +___SC_THREAD_ROBUST_PRIO_PROTECT_523, }; -enum ____anonymous_tag_532_533 { -___CS_PATH_468, -___CS_V6_WIDTH_RESTRICTED_ENVS_469, -___CS_GNU_LIBC_VERSION_470, -___CS_GNU_LIBPTHREAD_VERSION_471, -___CS_V5_WIDTH_RESTRICTED_ENVS_472, -___CS_V7_WIDTH_RESTRICTED_ENVS_473, -___CS_LFS_CFLAGS_474 = 1000, -___CS_LFS_LDFLAGS_475, -___CS_LFS_LIBS_476, -___CS_LFS_LINTFLAGS_477, -___CS_LFS64_CFLAGS_478, -___CS_LFS64_LDFLAGS_479, -___CS_LFS64_LIBS_480, -___CS_LFS64_LINTFLAGS_481, -___CS_XBS5_ILP32_OFF32_CFLAGS_482 = 1100, -___CS_XBS5_ILP32_OFF32_LDFLAGS_483, -___CS_XBS5_ILP32_OFF32_LIBS_484, -___CS_XBS5_ILP32_OFF32_LINTFLAGS_485, -___CS_XBS5_ILP32_OFFBIG_CFLAGS_486, -___CS_XBS5_ILP32_OFFBIG_LDFLAGS_487, -___CS_XBS5_ILP32_OFFBIG_LIBS_488, -___CS_XBS5_ILP32_OFFBIG_LINTFLAGS_489, -___CS_XBS5_LP64_OFF64_CFLAGS_490, -___CS_XBS5_LP64_OFF64_LDFLAGS_491, -___CS_XBS5_LP64_OFF64_LIBS_492, -___CS_XBS5_LP64_OFF64_LINTFLAGS_493, -___CS_XBS5_LPBIG_OFFBIG_CFLAGS_494, -___CS_XBS5_LPBIG_OFFBIG_LDFLAGS_495, -___CS_XBS5_LPBIG_OFFBIG_LIBS_496, -___CS_XBS5_LPBIG_OFFBIG_LINTFLAGS_497, -___CS_POSIX_V6_ILP32_OFF32_CFLAGS_498, -___CS_POSIX_V6_ILP32_OFF32_LDFLAGS_499, -___CS_POSIX_V6_ILP32_OFF32_LIBS_500, -___CS_POSIX_V6_ILP32_OFF32_LINTFLAGS_501, -___CS_POSIX_V6_ILP32_OFFBIG_CFLAGS_502, -___CS_POSIX_V6_ILP32_OFFBIG_LDFLAGS_503, -___CS_POSIX_V6_ILP32_OFFBIG_LIBS_504, -___CS_POSIX_V6_ILP32_OFFBIG_LINTFLAGS_505, -___CS_POSIX_V6_LP64_OFF64_CFLAGS_506, -___CS_POSIX_V6_LP64_OFF64_LDFLAGS_507, -___CS_POSIX_V6_LP64_OFF64_LIBS_508, -___CS_POSIX_V6_LP64_OFF64_LINTFLAGS_509, -___CS_POSIX_V6_LPBIG_OFFBIG_CFLAGS_510, -___CS_POSIX_V6_LPBIG_OFFBIG_LDFLAGS_511, -___CS_POSIX_V6_LPBIG_OFFBIG_LIBS_512, -___CS_POSIX_V6_LPBIG_OFFBIG_LINTFLAGS_513, -___CS_POSIX_V7_ILP32_OFF32_CFLAGS_514, -___CS_POSIX_V7_ILP32_OFF32_LDFLAGS_515, -___CS_POSIX_V7_ILP32_OFF32_LIBS_516, -___CS_POSIX_V7_ILP32_OFF32_LINTFLAGS_517, -___CS_POSIX_V7_ILP32_OFFBIG_CFLAGS_518, -___CS_POSIX_V7_ILP32_OFFBIG_LDFLAGS_519, -___CS_POSIX_V7_ILP32_OFFBIG_LIBS_520, -___CS_POSIX_V7_ILP32_OFFBIG_LINTFLAGS_521, -___CS_POSIX_V7_LP64_OFF64_CFLAGS_522, -___CS_POSIX_V7_LP64_OFF64_LDFLAGS_523, -___CS_POSIX_V7_LP64_OFF64_LIBS_524, -___CS_POSIX_V7_LP64_OFF64_LINTFLAGS_525, -___CS_POSIX_V7_LPBIG_OFFBIG_CFLAGS_526, -___CS_POSIX_V7_LPBIG_OFFBIG_LDFLAGS_527, -___CS_POSIX_V7_LPBIG_OFFBIG_LIBS_528, -___CS_POSIX_V7_LPBIG_OFFBIG_LINTFLAGS_529, -___CS_V6_ENV_530, -___CS_V7_ENV_531, +enum ____anonymous_tag_590_591 { +___CS_PATH_526, +___CS_V6_WIDTH_RESTRICTED_ENVS_527, +___CS_GNU_LIBC_VERSION_528, +___CS_GNU_LIBPTHREAD_VERSION_529, +___CS_V5_WIDTH_RESTRICTED_ENVS_530, +___CS_V7_WIDTH_RESTRICTED_ENVS_531, +___CS_LFS_CFLAGS_532 = 1000, +___CS_LFS_LDFLAGS_533, +___CS_LFS_LIBS_534, +___CS_LFS_LINTFLAGS_535, +___CS_LFS64_CFLAGS_536, +___CS_LFS64_LDFLAGS_537, +___CS_LFS64_LIBS_538, +___CS_LFS64_LINTFLAGS_539, +___CS_XBS5_ILP32_OFF32_CFLAGS_540 = 1100, +___CS_XBS5_ILP32_OFF32_LDFLAGS_541, +___CS_XBS5_ILP32_OFF32_LIBS_542, +___CS_XBS5_ILP32_OFF32_LINTFLAGS_543, +___CS_XBS5_ILP32_OFFBIG_CFLAGS_544, +___CS_XBS5_ILP32_OFFBIG_LDFLAGS_545, +___CS_XBS5_ILP32_OFFBIG_LIBS_546, +___CS_XBS5_ILP32_OFFBIG_LINTFLAGS_547, +___CS_XBS5_LP64_OFF64_CFLAGS_548, +___CS_XBS5_LP64_OFF64_LDFLAGS_549, +___CS_XBS5_LP64_OFF64_LIBS_550, +___CS_XBS5_LP64_OFF64_LINTFLAGS_551, +___CS_XBS5_LPBIG_OFFBIG_CFLAGS_552, +___CS_XBS5_LPBIG_OFFBIG_LDFLAGS_553, +___CS_XBS5_LPBIG_OFFBIG_LIBS_554, +___CS_XBS5_LPBIG_OFFBIG_LINTFLAGS_555, +___CS_POSIX_V6_ILP32_OFF32_CFLAGS_556, +___CS_POSIX_V6_ILP32_OFF32_LDFLAGS_557, +___CS_POSIX_V6_ILP32_OFF32_LIBS_558, +___CS_POSIX_V6_ILP32_OFF32_LINTFLAGS_559, +___CS_POSIX_V6_ILP32_OFFBIG_CFLAGS_560, +___CS_POSIX_V6_ILP32_OFFBIG_LDFLAGS_561, +___CS_POSIX_V6_ILP32_OFFBIG_LIBS_562, +___CS_POSIX_V6_ILP32_OFFBIG_LINTFLAGS_563, +___CS_POSIX_V6_LP64_OFF64_CFLAGS_564, +___CS_POSIX_V6_LP64_OFF64_LDFLAGS_565, +___CS_POSIX_V6_LP64_OFF64_LIBS_566, +___CS_POSIX_V6_LP64_OFF64_LINTFLAGS_567, +___CS_POSIX_V6_LPBIG_OFFBIG_CFLAGS_568, +___CS_POSIX_V6_LPBIG_OFFBIG_LDFLAGS_569, +___CS_POSIX_V6_LPBIG_OFFBIG_LIBS_570, +___CS_POSIX_V6_LPBIG_OFFBIG_LINTFLAGS_571, +___CS_POSIX_V7_ILP32_OFF32_CFLAGS_572, +___CS_POSIX_V7_ILP32_OFF32_LDFLAGS_573, +___CS_POSIX_V7_ILP32_OFF32_LIBS_574, +___CS_POSIX_V7_ILP32_OFF32_LINTFLAGS_575, +___CS_POSIX_V7_ILP32_OFFBIG_CFLAGS_576, +___CS_POSIX_V7_ILP32_OFFBIG_LDFLAGS_577, +___CS_POSIX_V7_ILP32_OFFBIG_LIBS_578, +___CS_POSIX_V7_ILP32_OFFBIG_LINTFLAGS_579, +___CS_POSIX_V7_LP64_OFF64_CFLAGS_580, +___CS_POSIX_V7_LP64_OFF64_LDFLAGS_581, +___CS_POSIX_V7_LP64_OFF64_LIBS_582, +___CS_POSIX_V7_LP64_OFF64_LINTFLAGS_583, +___CS_POSIX_V7_LPBIG_OFFBIG_CFLAGS_584, +___CS_POSIX_V7_LPBIG_OFFBIG_LDFLAGS_585, +___CS_POSIX_V7_LPBIG_OFFBIG_LIBS_586, +___CS_POSIX_V7_LPBIG_OFFBIG_LINTFLAGS_587, +___CS_V6_ENV_588, +___CS_V7_ENV_589, }; -typedef struct __forward_tag_reference_937 __FILE_938;// L48 -typedef struct __forward_tag_reference_937 ____FILE_939;// L64 -union ____anonymous_tag_940_941 { -unsigned int ____wch_942;// L265 -char ____wchb_943[4];// L92 +typedef struct __forward_tag_reference_1084 __FILE_1085;// L48 +typedef struct __forward_tag_reference_1084 ____FILE_1086;// L64 +union ____anonymous_tag_1087_1088 { +unsigned int ____wch_1089;// L265 +char ____wchb_1090[4];// L92 }; -struct ____anonymous_tag_944_945 { -int ____count_946;// L84 -union ____anonymous_tag_940_941 ____value_947;// L85 +struct ____anonymous_tag_1091_1092 { +int ____count_1093;// L84 +union ____anonymous_tag_1087_1088 ____value_1094;// L85 }; -typedef struct ____anonymous_tag_944_945 ____mbstate_t_948;// L82:L94 -struct ____anonymous_tag_949_950 { -____off_t_21 ____pos_951;// L0 -____mbstate_t_948 ____state_952;// L0 +typedef struct ____anonymous_tag_1091_1092 ____mbstate_t_1095;// L82:L94 +struct ____anonymous_tag_1096_1097 { +____off_t_21 ____pos_1098;// L0 +____mbstate_t_1095 ____state_1100;// L0 }; -typedef struct ____anonymous_tag_949_950 ___G_fpos_t_955;// L21:L25 -struct ____anonymous_tag_956_957 { -____off64_t_22 ____pos_958;// L0 -____mbstate_t_948 ____state_959;// L0 +typedef struct ____anonymous_tag_1096_1097 ___G_fpos_t_1103;// L21:L25 +struct ____anonymous_tag_1104_1105 { +____off64_t_22 ____pos_1106;// L0 +____mbstate_t_1095 ____state_1108;// L0 }; -typedef struct ____anonymous_tag_956_957 ___G_fpos64_t_962;// L26:L30 -typedef __builtin_va_list ____gnuc_va_list_963;// L40 -typedef void ___IO_lock_t_965;// L150 -struct ___IO_marker_967 { -struct __forward_tag_reference_966 * (___next_968);// L0 -struct __forward_tag_reference_937 * (___sbuf_969);// L0 -int ___pos_970;// L162 +typedef struct ____anonymous_tag_1104_1105 ___G_fpos64_t_1111;// L26:L30 +typedef __builtin_va_list ____gnuc_va_list_1112;// L40 +typedef void ___IO_lock_t_1114;// L150 +struct ___IO_marker_1116 { +struct __forward_tag_reference_1115 * (___next_1117);// L0 +struct __forward_tag_reference_1084 * (___sbuf_1118);// L0 +int ___pos_1119;// L162 }; -enum ____codecvt_result_975 { -____codecvt_ok_971, -____codecvt_partial_972, -____codecvt_error_973, -____codecvt_noconv_974, +enum ____codecvt_result_1124 { +____codecvt_ok_1120, +____codecvt_partial_1121, +____codecvt_error_1122, +____codecvt_noconv_1123, }; -struct ___IO_FILE_976 { -int ___flags_977;// L242 -char * (___IO_read_ptr_978);// L247 -char * (___IO_read_end_979);// L248 -char * (___IO_read_base_980);// L249 -char * (___IO_write_base_981);// L250 -char * (___IO_write_ptr_982);// L251 -char * (___IO_write_end_983);// L252 -char * (___IO_buf_base_984);// L253 -char * (___IO_buf_end_985);// L254 -char * (___IO_save_base_986);// L256 -char * (___IO_backup_base_987);// L257 -char * (___IO_save_end_988);// L258 -struct ___IO_marker_967 * (___markers_989);// L260 -struct __forward_tag_reference_937 * (___chain_990);// L0 -int ___fileno_991;// L264 -int ___flags2_992;// L268 -____off_t_21 ___old_offset_993;// L0 -unsigned short ___cur_column_994;// L274 -signed char ___vtable_offset_995;// L275 -char ___shortbuf_996[1];// L276 -___IO_lock_t_965 * (___lock_997);// L0 +struct ___IO_FILE_1125 { +int ___flags_1126;// L242 +char * (___IO_read_ptr_1127);// L247 +char * (___IO_read_end_1128);// L248 +char * (___IO_read_base_1129);// L249 +char * (___IO_write_base_1130);// L250 +char * (___IO_write_ptr_1131);// L251 +char * (___IO_write_end_1132);// L252 +char * (___IO_buf_base_1133);// L253 +char * (___IO_buf_end_1134);// L254 +char * (___IO_save_base_1135);// L256 +char * (___IO_backup_base_1136);// L257 +char * (___IO_save_end_1137);// L258 +struct ___IO_marker_1116 * (___markers_1138);// L260 +struct __forward_tag_reference_1084 * (___chain_1139);// L0 +int ___fileno_1140;// L264 +int ___flags2_1141;// L268 +____off_t_21 ___old_offset_1142;// L0 +unsigned short ___cur_column_1144;// L274 +signed char ___vtable_offset_1145;// L275 +char ___shortbuf_1146[1];// L276 +___IO_lock_t_1114 * (___lock_1147);// L0 }; -struct ___IO_FILE_1000 { -int ___flags_1001;// L242 -char * (___IO_read_ptr_1002);// L247 -char * (___IO_read_end_1003);// L248 -char * (___IO_read_base_1004);// L249 -char * (___IO_write_base_1005);// L250 -char * (___IO_write_ptr_1006);// L251 -char * (___IO_write_end_1007);// L252 -char * (___IO_buf_base_1008);// L253 -char * (___IO_buf_end_1009);// L254 -char * (___IO_save_base_1010);// L256 -char * (___IO_backup_base_1011);// L257 -char * (___IO_save_end_1012);// L258 -struct ___IO_marker_967 * (___markers_1013);// L260 -struct __forward_tag_reference_937 * (___chain_1014);// L0 -int ___fileno_1015;// L264 -int ___flags2_1016;// L268 -____off_t_21 ___old_offset_1017;// L0 -unsigned short ___cur_column_1018;// L274 -signed char ___vtable_offset_1019;// L275 -char ___shortbuf_1020[1];// L276 -___IO_lock_t_965 * (___lock_1021);// L0 -____off64_t_22 ___offset_1023;// L0 -void * (____pad1_1024);// L297 -void * (____pad2_1025);// L298 -void * (____pad3_1026);// L299 -void * (____pad4_1027);// L300 -__size_t_57 ____pad5_1028;// L0 -int ___mode_1029;// L303 -char ___unused2_1030[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +struct ___IO_FILE_1150 { +int ___flags_1151;// L242 +char * (___IO_read_ptr_1152);// L247 +char * (___IO_read_end_1153);// L248 +char * (___IO_read_base_1154);// L249 +char * (___IO_write_base_1155);// L250 +char * (___IO_write_ptr_1156);// L251 +char * (___IO_write_end_1157);// L252 +char * (___IO_buf_base_1158);// L253 +char * (___IO_buf_end_1159);// L254 +char * (___IO_save_base_1160);// L256 +char * (___IO_backup_base_1161);// L257 +char * (___IO_save_end_1162);// L258 +struct ___IO_marker_1116 * (___markers_1163);// L260 +struct __forward_tag_reference_1084 * (___chain_1164);// L0 +int ___fileno_1165;// L264 +int ___flags2_1166;// L268 +____off_t_21 ___old_offset_1167;// L0 +unsigned short ___cur_column_1169;// L274 +signed char ___vtable_offset_1170;// L275 +char ___shortbuf_1171[1];// L276 +___IO_lock_t_1114 * (___lock_1172);// L0 +____off64_t_22 ___offset_1174;// L0 +void * (____pad1_1176);// L297 +void * (____pad2_1177);// L298 +void * (____pad3_1178);// L299 +void * (____pad4_1179);// L300 +__size_t_59 ____pad5_1180;// L0 +int ___mode_1181;// L303 +char ___unused2_1182[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -struct ___IO_FILE_complete_1031 { -struct ___IO_FILE_976 ___file_1032;// L286 -____off64_t_22 ___offset_1034;// L0 -void * (____pad1_1035);// L297 -void * (____pad2_1036);// L298 -void * (____pad3_1037);// L299 -void * (____pad4_1038);// L300 -__size_t_57 ____pad5_1039;// L0 -int ___mode_1040;// L303 -char ___unused2_1041[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +struct ___IO_FILE_complete_1183 { +struct ___IO_FILE_1125 ___file_1184;// L286 +____off64_t_22 ___offset_1186;// L0 +void * (____pad1_1188);// L297 +void * (____pad2_1189);// L298 +void * (____pad3_1190);// L299 +void * (____pad4_1191);// L300 +__size_t_59 ____pad5_1192;// L0 +int ___mode_1193;// L303 +char ___unused2_1194[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -typedef struct ___IO_FILE_976 ___IO_FILE_1044;// L310 -typedef struct ___IO_FILE_1000 ___IO_FILE_1045;// L310 -typedef ____ssize_t_47 (____io_read_fn_1054) (void * (____cookie_1051), char * (____buf_1052), __size_t_57 ____nbytes_1053);// L333 -typedef ____ssize_t_47 (____io_write_fn_1058) (void * (____cookie_1055), const char * (____buf_1056), __size_t_57 ____n_1057);// L341:L342 -typedef int (____io_seek_fn_1062) (void * (____cookie_1059), ____off64_t_22 * (____pos_1060), int ____w_1061);// L350 -typedef int (____io_close_fn_1064) (void * (____cookie_1063));// L353 -typedef ____gnuc_va_list_963 __va_list_1145;// L79 -typedef ___G_fpos_t_955 __fpos_t_1147;// L110 -typedef ___G_fpos64_t_962 __fpos_t_1149;// L112 -extern const char * const __sys_errlist_1666[];// L27 -typedef long int __ptrdiff_t_1928;// L143:L324 -typedef int __wchar_t_1929;// L243:L321 -struct ____anonymous_tag_1930_1931 { -long long ____max_align_ll_1932;// L416 -long double ____max_align_ld_1933;// L417 +typedef struct ___IO_FILE_1125 ___IO_FILE_1197;// L310 +typedef struct ___IO_FILE_1150 ___IO_FILE_1198;// L310 +typedef ____ssize_t_47 (____io_read_fn_1207) (void * (____cookie_1204), char * (____buf_1205), __size_t_59 ____nbytes_1206);// L333 +typedef ____ssize_t_47 (____io_write_fn_1212) (void * (____cookie_1209), const char * (____buf_1210), __size_t_59 ____n_1211);// L341:L342 +typedef int (____io_seek_fn_1218) (void * (____cookie_1214), ____off64_t_22 * (____pos_1215), int ____w_1217);// L350 +typedef int (____io_close_fn_1221) (void * (____cookie_1220));// L353 +typedef ____gnuc_va_list_1112 __va_list_1305;// L79 +typedef ___G_fpos_t_1103 __fpos_t_1307;// L110 +typedef ___G_fpos64_t_1111 __fpos_t_1309;// L112 +extern const char * const __sys_errlist_1850[];// L27 +typedef long int __ptrdiff_t_2112;// L143:L324 +typedef int __wchar_t_2113;// L243:L321 +struct ____anonymous_tag_2114_2115 { +long long ____max_align_ll_2116;// L416 +long double ____max_align_ld_2117;// L417 }; -typedef struct ____anonymous_tag_1930_1931 __max_align_t_1934;// L415:L426 -typedef struct __forward_tag_reference_937 __FILE_1935;// L48 -union ____anonymous_tag_1936_1937 { -unsigned int ____wch_1938;// L265 -char ____wchb_1939[4];// L92 +typedef struct ____anonymous_tag_2114_2115 __max_align_t_2118;// L415:L426 +typedef struct __forward_tag_reference_1084 __FILE_2119;// L48 +union ____anonymous_tag_2120_2121 { +unsigned int ____wch_2122;// L265 +char ____wchb_2123[4];// L92 }; -struct ____anonymous_tag_1940_1941 { -int ____count_1942;// L84 -union ____anonymous_tag_1936_1937 ____value_1943;// L85 +struct ____anonymous_tag_2124_2125 { +int ____count_2126;// L84 +union ____anonymous_tag_2120_2121 ____value_2127;// L85 }; -typedef struct ____anonymous_tag_1940_1941 ____mbstate_t_1944;// L82:L94 -struct ____anonymous_tag_1945_1946 { -____off_t_21 ____pos_1947;// L0 -____mbstate_t_1944 ____state_1948;// L0 +typedef struct ____anonymous_tag_2124_2125 ____mbstate_t_2128;// L82:L94 +struct ____anonymous_tag_2129_2130 { +____off_t_21 ____pos_2131;// L0 +____mbstate_t_2128 ____state_2133;// L0 }; -typedef struct ____anonymous_tag_1945_1946 ___G_fpos_t_1951;// L21:L25 -struct ____anonymous_tag_1952_1953 { -____off64_t_22 ____pos_1954;// L0 -____mbstate_t_1944 ____state_1955;// L0 +typedef struct ____anonymous_tag_2129_2130 ___G_fpos_t_2136;// L21:L25 +struct ____anonymous_tag_2137_2138 { +____off64_t_22 ____pos_2139;// L0 +____mbstate_t_2128 ____state_2141;// L0 }; -typedef struct ____anonymous_tag_1952_1953 ___G_fpos64_t_1958;// L26:L30 -typedef __builtin_va_list ____gnuc_va_list_1959;// L40 -typedef void ___IO_lock_t_1960;// L150 -struct ___IO_marker_1961 { -struct __forward_tag_reference_966 * (___next_1962);// L0 -struct __forward_tag_reference_937 * (___sbuf_1963);// L0 -int ___pos_1964;// L162 +typedef struct ____anonymous_tag_2137_2138 ___G_fpos64_t_2144;// L26:L30 +typedef __builtin_va_list ____gnuc_va_list_2145;// L40 +typedef void ___IO_lock_t_2146;// L150 +struct ___IO_marker_2147 { +struct __forward_tag_reference_1115 * (___next_2148);// L0 +struct __forward_tag_reference_1084 * (___sbuf_2149);// L0 +int ___pos_2150;// L162 }; -enum ____codecvt_result_1969 { -____codecvt_ok_1965, -____codecvt_partial_1966, -____codecvt_error_1967, -____codecvt_noconv_1968, +enum ____codecvt_result_2155 { +____codecvt_ok_2151, +____codecvt_partial_2152, +____codecvt_error_2153, +____codecvt_noconv_2154, }; -struct ___IO_FILE_1970 { -int ___flags_1971;// L242 -char * (___IO_read_ptr_1972);// L247 -char * (___IO_read_end_1973);// L248 -char * (___IO_read_base_1974);// L249 -char * (___IO_write_base_1975);// L250 -char * (___IO_write_ptr_1976);// L251 -char * (___IO_write_end_1977);// L252 -char * (___IO_buf_base_1978);// L253 -char * (___IO_buf_end_1979);// L254 -char * (___IO_save_base_1980);// L256 -char * (___IO_backup_base_1981);// L257 -char * (___IO_save_end_1982);// L258 -struct ___IO_marker_1961 * (___markers_1983);// L260 -struct __forward_tag_reference_937 * (___chain_1984);// L0 -int ___fileno_1985;// L264 -int ___flags2_1986;// L268 -____off_t_21 ___old_offset_1987;// L0 -unsigned short ___cur_column_1988;// L274 -signed char ___vtable_offset_1989;// L275 -char ___shortbuf_1990[1];// L276 -___IO_lock_t_1960 * (___lock_1991);// L0 +struct ___IO_FILE_2156 { +int ___flags_2157;// L242 +char * (___IO_read_ptr_2158);// L247 +char * (___IO_read_end_2159);// L248 +char * (___IO_read_base_2160);// L249 +char * (___IO_write_base_2161);// L250 +char * (___IO_write_ptr_2162);// L251 +char * (___IO_write_end_2163);// L252 +char * (___IO_buf_base_2164);// L253 +char * (___IO_buf_end_2165);// L254 +char * (___IO_save_base_2166);// L256 +char * (___IO_backup_base_2167);// L257 +char * (___IO_save_end_2168);// L258 +struct ___IO_marker_2147 * (___markers_2169);// L260 +struct __forward_tag_reference_1084 * (___chain_2170);// L0 +int ___fileno_2171;// L264 +int ___flags2_2172;// L268 +____off_t_21 ___old_offset_2173;// L0 +unsigned short ___cur_column_2175;// L274 +signed char ___vtable_offset_2176;// L275 +char ___shortbuf_2177[1];// L276 +___IO_lock_t_2146 * (___lock_2178);// L0 }; -struct ___IO_FILE_1994 { -int ___flags_1995;// L242 -char * (___IO_read_ptr_1996);// L247 -char * (___IO_read_end_1997);// L248 -char * (___IO_read_base_1998);// L249 -char * (___IO_write_base_1999);// L250 -char * (___IO_write_ptr_2000);// L251 -char * (___IO_write_end_2001);// L252 -char * (___IO_buf_base_2002);// L253 -char * (___IO_buf_end_2003);// L254 -char * (___IO_save_base_2004);// L256 -char * (___IO_backup_base_2005);// L257 -char * (___IO_save_end_2006);// L258 -struct ___IO_marker_1961 * (___markers_2007);// L260 -struct __forward_tag_reference_937 * (___chain_2008);// L0 -int ___fileno_2009;// L264 -int ___flags2_2010;// L268 -____off_t_21 ___old_offset_2011;// L0 -unsigned short ___cur_column_2012;// L274 -signed char ___vtable_offset_2013;// L275 -char ___shortbuf_2014[1];// L276 -___IO_lock_t_1960 * (___lock_2015);// L0 -____off64_t_22 ___offset_2017;// L0 -void * (____pad1_2018);// L297 -void * (____pad2_2019);// L298 -void * (____pad3_2020);// L299 -void * (____pad4_2021);// L300 -__size_t_57 ____pad5_2022;// L0 -int ___mode_2023;// L303 -char ___unused2_2024[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +struct ___IO_FILE_2181 { +int ___flags_2182;// L242 +char * (___IO_read_ptr_2183);// L247 +char * (___IO_read_end_2184);// L248 +char * (___IO_read_base_2185);// L249 +char * (___IO_write_base_2186);// L250 +char * (___IO_write_ptr_2187);// L251 +char * (___IO_write_end_2188);// L252 +char * (___IO_buf_base_2189);// L253 +char * (___IO_buf_end_2190);// L254 +char * (___IO_save_base_2191);// L256 +char * (___IO_backup_base_2192);// L257 +char * (___IO_save_end_2193);// L258 +struct ___IO_marker_2147 * (___markers_2194);// L260 +struct __forward_tag_reference_1084 * (___chain_2195);// L0 +int ___fileno_2196;// L264 +int ___flags2_2197;// L268 +____off_t_21 ___old_offset_2198;// L0 +unsigned short ___cur_column_2200;// L274 +signed char ___vtable_offset_2201;// L275 +char ___shortbuf_2202[1];// L276 +___IO_lock_t_2146 * (___lock_2203);// L0 +____off64_t_22 ___offset_2205;// L0 +void * (____pad1_2207);// L297 +void * (____pad2_2208);// L298 +void * (____pad3_2209);// L299 +void * (____pad4_2210);// L300 +__size_t_59 ____pad5_2211;// L0 +int ___mode_2212;// L303 +char ___unused2_2213[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -struct ___IO_FILE_complete_2025 { -struct ___IO_FILE_1970 ___file_2026;// L286 -____off64_t_22 ___offset_2028;// L0 -void * (____pad1_2029);// L297 -void * (____pad2_2030);// L298 -void * (____pad3_2031);// L299 -void * (____pad4_2032);// L300 -__size_t_57 ____pad5_2033;// L0 -int ___mode_2034;// L303 -char ___unused2_2035[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +struct ___IO_FILE_complete_2214 { +struct ___IO_FILE_2156 ___file_2215;// L286 +____off64_t_22 ___offset_2217;// L0 +void * (____pad1_2219);// L297 +void * (____pad2_2220);// L298 +void * (____pad3_2221);// L299 +void * (____pad4_2222);// L300 +__size_t_59 ____pad5_2223;// L0 +int ___mode_2224;// L303 +char ___unused2_2225[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -typedef struct ___IO_FILE_1970 ___IO_FILE_2038;// L310 -typedef struct ___IO_FILE_1994 ___IO_FILE_2039;// L310 -typedef ____ssize_t_47 (____io_read_fn_2047) (void * (____cookie_2044), char * (____buf_2045), __size_t_57 ____nbytes_2046);// L333 -typedef ____ssize_t_47 (____io_write_fn_2051) (void * (____cookie_2048), const char * (____buf_2049), __size_t_57 ____n_2050);// L341:L342 -typedef int (____io_seek_fn_2055) (void * (____cookie_2052), ____off64_t_22 * (____pos_2053), int ____w_2054);// L350 -typedef int (____io_close_fn_2057) (void * (____cookie_2056));// L353 -typedef ____gnuc_va_list_1959 __va_list_2138;// L79 -typedef ___G_fpos_t_1951 __fpos_t_2140;// L110 -typedef ___G_fpos64_t_1958 __fpos_t_2142;// L112 -extern const char * const __sys_errlist_2659[];// L27 -struct __mallinfo_2960 { -int __arena_2961;// L81 -int __ordblks_2962;// L82 -int __smblks_2963;// L83 -int __hblks_2964;// L84 -int __hblkhd_2965;// L85 -int __usmblks_2966;// L86 -int __fsmblks_2967;// L87 -int __uordblks_2968;// L88 -int __fordblks_2969;// L89 -int __keepcost_2970;// L90 +typedef struct ___IO_FILE_2156 ___IO_FILE_2228;// L310 +typedef struct ___IO_FILE_2181 ___IO_FILE_2229;// L310 +typedef ____ssize_t_47 (____io_read_fn_2237) (void * (____cookie_2234), char * (____buf_2235), __size_t_59 ____nbytes_2236);// L333 +typedef ____ssize_t_47 (____io_write_fn_2242) (void * (____cookie_2239), const char * (____buf_2240), __size_t_59 ____n_2241);// L341:L342 +typedef int (____io_seek_fn_2248) (void * (____cookie_2244), ____off64_t_22 * (____pos_2245), int ____w_2247);// L350 +typedef int (____io_close_fn_2251) (void * (____cookie_2250));// L353 +typedef ____gnuc_va_list_2145 __va_list_2335;// L79 +typedef ___G_fpos_t_2136 __fpos_t_2337;// L110 +typedef ___G_fpos64_t_2144 __fpos_t_2339;// L112 +extern const char * const __sys_errlist_2880[];// L27 +struct __mallinfo_3181 { +int __arena_3182;// L81 +int __ordblks_3183;// L82 +int __smblks_3184;// L83 +int __hblks_3185;// L84 +int __hblkhd_3186;// L85 +int __usmblks_3187;// L86 +int __fsmblks_3188;// L87 +int __uordblks_3189;// L88 +int __fordblks_3190;// L89 +int __keepcost_3191;// L90 }; -typedef int __wchar_t_3003;// L243:L321 -enum ____anonymous_tag_3007_3008 { -__P_ALL_3004, -__P_PID_3005, -__P_PGID_3006, +typedef int __wchar_t_3224;// L243:L321 +enum ____anonymous_tag_3228_3229 { +__P_ALL_3225, +__P_PID_3226, +__P_PGID_3227, }; -typedef enum ____anonymous_tag_3007_3008 __idtype_t_3009;// L50:L55 -struct ____anonymous_tag_3015_3016 { -unsigned int ____w_termsig_3017 : 7;// L72 -unsigned int ____w_coredump_3018 : 1;// L73 -unsigned int ____w_retcode_3019 : 8;// L74 -unsigned int __anon_id_0_3020 : 16;// L75 +typedef enum ____anonymous_tag_3228_3229 __idtype_t_3230;// L50:L55 +struct ____anonymous_tag_3236_3237 { +unsigned int ____w_termsig_3238 : 7;// L72 +unsigned int ____w_coredump_3239 : 1;// L73 +unsigned int ____w_retcode_3240 : 8;// L74 +unsigned int __anon_id_0_3241 : 16;// L75 }; -struct ____anonymous_tag_3021_3022 { -unsigned int ____w_stopval_3023 : 8;// L87 -unsigned int ____w_stopsig_3024 : 8;// L88 -unsigned int __anon_id_1_3025 : 16;// L89 +struct ____anonymous_tag_3242_3243 { +unsigned int ____w_stopval_3244 : 8;// L87 +unsigned int ____w_stopsig_3245 : 8;// L88 +unsigned int __anon_id_1_3246 : 16;// L89 }; -union __wait_3026 { -int __w_status_3027;// L68 -struct ____anonymous_tag_3015_3016 ____wait_terminated_3028;// L69 -struct ____anonymous_tag_3021_3022 ____wait_stopped_3029;// L84 +union __wait_3247 { +int __w_status_3248;// L68 +struct ____anonymous_tag_3236_3237 ____wait_terminated_3249;// L69 +struct ____anonymous_tag_3242_3243 ____wait_stopped_3250;// L84 }; -union ____anonymous_tag_3030_3031 { -union __wait_3026 * (____uptr_3032);// L69 -int * (____iptr_3033);// L70 +union ____anonymous_tag_3251_3252 { +union __wait_3247 * (____uptr_3253);// L69 +int * (____iptr_3254);// L70 }; -typedef union ____anonymous_tag_3030_3031 ____WAIT_STATUS_3034;// L67:L71 -struct ____anonymous_tag_3035_3036 { -int __quot_3037;// L99 -int __rem_3038;// L100 +typedef union ____anonymous_tag_3251_3252 ____WAIT_STATUS_3255;// L67:L71 +struct ____anonymous_tag_3256_3257 { +int __quot_3258;// L99 +int __rem_3259;// L100 }; -typedef struct ____anonymous_tag_3035_3036 __div_t_3039;// L97:L101 -struct ____anonymous_tag_3040_3041 { -long int __quot_3042;// L107 -long int __rem_3043;// L108 +typedef struct ____anonymous_tag_3256_3257 __div_t_3260;// L97:L101 +struct ____anonymous_tag_3261_3262 { +long int __quot_3263;// L107 +long int __rem_3264;// L108 }; -typedef struct ____anonymous_tag_3040_3041 __ldiv_t_3044;// L105:L109 -struct ____anonymous_tag_3045_3046 { -long long int __quot_3047;// L119 -long long int __rem_3048;// L120 +typedef struct ____anonymous_tag_3261_3262 __ldiv_t_3265;// L105:L109 +struct ____anonymous_tag_3266_3267 { +long long int __quot_3268;// L119 +long long int __rem_3269;// L120 }; -typedef struct ____anonymous_tag_3045_3046 __lldiv_t_3049;// L117:L121 -typedef ____u_char_0 __u_char_3109;// L33 -typedef ____u_short_1 __u_short_3110;// L34 -typedef ____u_int_2 __u_int_3111;// L35 -typedef ____u_long_3 __u_long_3112;// L36 -typedef ____quad_t_12 __quad_t_3113;// L37 -typedef ____u_quad_t_13 __u_quad_t_3114;// L38 -typedef ____fsid_t_27 __fsid_t_3115;// L39 -typedef ____loff_t_50 __loff_t_3116;// L44 -typedef ____ino64_t_18 __ino_t_3117;// L50 -typedef ____ino_t_17 __ino_t_3118;// L48 -typedef ____dev_t_14 __dev_t_3119;// L60 -typedef ____mode_t_19 __mode_t_3120;// L70 -typedef ____mode_t_19 __mode_t_3121;// L70 -typedef ____nlink_t_20 __nlink_t_3122;// L75 -typedef ____id_t_31 __id_t_3123;// L104 -typedef ____daddr_t_35 __daddr_t_3124;// L115 -typedef ____caddr_t_52 __caddr_t_3125;// L116 -typedef ____key_t_36 __key_t_3126;// L122 -typedef ____key_t_36 __key_t_3127;// L122 -typedef ____clock_t_28 __clock_t_3128;// L59 -typedef ____time_t_32 __time_t_3129;// L75 -typedef ____clockid_t_37 __clockid_t_3130;// L91 -typedef ____timer_t_38 __timer_t_3131;// L103 -typedef unsigned long int __ulong_3132;// L150 -typedef unsigned long int __ulong_3133;// L150 -typedef unsigned long int __ulong_3134;// L150 -typedef unsigned short int __ushort_3135;// L151 -typedef unsigned int __uint_3136;// L152 -typedef int __int8_t_3137;// L188:L194 -typedef int __int16_t_3138;// L188:L195 -typedef int __int32_t_3139;// L188:L196 -typedef int __int64_t_3140;// L188:L197 -typedef unsigned int __u_int8_t_3141;// L190:L200 -typedef unsigned int __u_int16_t_3142;// L190:L201 -typedef unsigned int __u_int32_t_3143;// L190:L202 -typedef unsigned int __u_int64_t_3144;// L190:L203 -typedef int __register_t_3145;// L205 -typedef int ____sig_atomic_t_3151;// L22 -struct ____anonymous_tag_3152_3153 { -unsigned long int ____val_3154[( 1024 / ( 8 * sizeof(unsigned long) ) )];// L29 +typedef struct ____anonymous_tag_3266_3267 __lldiv_t_3270;// L117:L121 +typedef ____u_char_0 __u_char_3330;// L33 +typedef ____u_short_1 __u_short_3331;// L34 +typedef ____u_int_2 __u_int_3332;// L35 +typedef ____u_long_3 __u_long_3333;// L36 +typedef ____quad_t_12 __quad_t_3334;// L37 +typedef ____u_quad_t_13 __u_quad_t_3335;// L38 +typedef ____fsid_t_27 __fsid_t_3336;// L39 +typedef ____loff_t_50 __loff_t_3338;// L44 +typedef ____ino64_t_18 __ino_t_3340;// L50 +typedef ____ino_t_17 __ino_t_3342;// L48 +typedef ____dev_t_14 __dev_t_3344;// L60 +typedef ____mode_t_19 __mode_t_3346;// L70 +typedef ____mode_t_19 __mode_t_3348;// L70 +typedef ____nlink_t_20 __nlink_t_3350;// L75 +typedef ____id_t_31 __id_t_3352;// L104 +typedef ____daddr_t_35 __daddr_t_3354;// L115 +typedef ____caddr_t_53 __caddr_t_3356;// L116 +typedef ____key_t_36 __key_t_3357;// L122 +typedef ____key_t_36 __key_t_3359;// L122 +typedef ____clock_t_28 __clock_t_3361;// L59 +typedef ____time_t_32 __time_t_3363;// L75 +typedef ____clockid_t_37 __clockid_t_3365;// L91 +typedef ____timer_t_38 __timer_t_3367;// L103 +typedef unsigned long int __ulong_3369;// L150 +typedef unsigned long int __ulong_3370;// L150 +typedef unsigned long int __ulong_3371;// L150 +typedef unsigned short int __ushort_3372;// L151 +typedef unsigned int __uint_3373;// L152 +typedef int __int8_t_3374;// L188:L194 +typedef int __int16_t_3375;// L188:L195 +typedef int __int32_t_3376;// L188:L196 +typedef int __int64_t_3377;// L188:L197 +typedef unsigned int __u_int8_t_3378;// L190:L200 +typedef unsigned int __u_int16_t_3379;// L190:L201 +typedef unsigned int __u_int32_t_3380;// L190:L202 +typedef unsigned int __u_int64_t_3381;// L190:L203 +typedef int __register_t_3382;// L205 +typedef int ____sig_atomic_t_3388;// L22 +struct ____anonymous_tag_3389_3390 { +unsigned long int ____val_3391[( 1024 / ( 8 * sizeof(unsigned long) ) )];// L29 }; -typedef struct ____anonymous_tag_3152_3153 ____sigset_t_3155;// L27:L30 -typedef ____sigset_t_3155 __sigset_t_3156;// L37 -struct __timespec_3157 { -____time_t_32 __tv_sec_3158;// L0 -____syscall_slong_t_48 __tv_nsec_3159;// L0 +typedef struct ____anonymous_tag_3389_3390 ____sigset_t_3392;// L27:L30 +typedef ____sigset_t_3392 __sigset_t_3393;// L37 +struct __timespec_3394 { +____time_t_32 __tv_sec_3395;// L0 +____syscall_slong_t_48 __tv_nsec_3397;// L0 }; -struct __timeval_3160 { -____time_t_32 __tv_sec_3161;// L0 -____suseconds_t_34 __tv_usec_3162;// L0 +struct __timeval_3400 { +____time_t_32 __tv_sec_3401;// L0 +____suseconds_t_34 __tv_usec_3403;// L0 }; -typedef ____suseconds_t_34 __suseconds_t_3163;// L48 -typedef long int ____fd_mask_3164;// L54 -typedef long int ____fd_mask_3165;// L54 -struct ____anonymous_tag_3166_3167 { -____fd_mask_3164 ____fds_bits_3168[1024 / ( 8 * ( int ) sizeof(long) )];// L0 -____fd_mask_3165 ____fds_bits_3169[1024 / ( 8 * ( int ) sizeof(long) )];// L0 +typedef ____suseconds_t_34 __suseconds_t_3406;// L48 +typedef long int ____fd_mask_3408;// L54 +typedef long int ____fd_mask_3409;// L54 +struct ____anonymous_tag_3410_3411 { +____fd_mask_3408 ____fds_bits_3412[1024 / ( 8 * ( int ) sizeof(long) )];// L0 +____fd_mask_3409 ____fds_bits_3414[1024 / ( 8 * ( int ) sizeof(long) )];// L0 }; -typedef struct ____anonymous_tag_3166_3167 __fd_set_3170;// L64:L75 -typedef ____fd_mask_3164 __fd_mask_3171;// L82 -typedef ____fd_mask_3165 __fd_mask_3172;// L82 -typedef ____blksize_t_39 __blksize_t_3208;// L228 -typedef ____blkcnt_t_40 __blkcnt_t_3209;// L235 -typedef ____fsblkcnt_t_42 __fsblkcnt_t_3210;// L239 -typedef ____blkcnt64_t_41 __blkcnt_t_3211;// L248 -typedef ____fsblkcnt64_t_43 __fsblkcnt_t_3212;// L252 -typedef ____fsfilcnt_t_44 __fsfilcnt_t_3213;// L243 -typedef ____fsfilcnt64_t_45 __fsfilcnt_t_3214;// L256 -typedef unsigned long int __pthread_t_3215;// L60 -union __pthread_attr_t_3216 { -char ____size_3217[56];// L65 -long int ____align_3218;// L66 +typedef struct ____anonymous_tag_3410_3411 __fd_set_3417;// L64:L75 +typedef ____fd_mask_3408 __fd_mask_3418;// L82 +typedef ____fd_mask_3409 __fd_mask_3419;// L82 +typedef ____blksize_t_39 __blksize_t_3467;// L228 +typedef ____blkcnt_t_40 __blkcnt_t_3469;// L235 +typedef ____fsblkcnt_t_42 __fsblkcnt_t_3471;// L239 +typedef ____blkcnt64_t_41 __blkcnt_t_3473;// L248 +typedef ____fsblkcnt64_t_43 __fsblkcnt_t_3475;// L252 +typedef ____fsfilcnt_t_44 __fsfilcnt_t_3477;// L243 +typedef ____fsfilcnt64_t_45 __fsfilcnt_t_3479;// L256 +typedef unsigned long int __pthread_t_3481;// L60 +union __pthread_attr_t_3482 { +char ____size_3483[56];// L65 +long int ____align_3484;// L66 }; -typedef union __pthread_attr_t_3216 __pthread_attr_t_3219;// L69 -struct ____pthread_internal_list_3221 { -struct __forward_tag_reference_3220 * (____prev_3222);// L0 -struct __forward_tag_reference_3220 * (____next_3223);// L0 +typedef union __pthread_attr_t_3482 __pthread_attr_t_3485;// L69 +struct ____pthread_internal_list_3487 { +struct __forward_tag_reference_3486 * (____prev_3488);// L0 +struct __forward_tag_reference_3486 * (____next_3489);// L0 }; -typedef struct ____pthread_internal_list_3221 ____pthread_list_t_3224;// L75:L79 -typedef struct ____pthread_internal_list_3221 ____pthread_list_t_3225;// L75:L79 -struct ____pthread_mutex_s_3226 { -int ____lock_3227;// L94 -unsigned int ____count_3228;// L95 -int ____owner_3229;// L96 -unsigned int ____nusers_3230;// L98 -int ____kind_3231;// L102 -short ____spins_3232;// L104 -short ____elision_3233;// L105 -____pthread_list_t_3224 ____list_3234;// L0 -____pthread_list_t_3225 ____list_3235;// L0 +typedef struct ____pthread_internal_list_3487 ____pthread_list_t_3490;// L75:L79 +typedef struct ____pthread_internal_list_3487 ____pthread_list_t_3491;// L75:L79 +struct ____pthread_mutex_s_3492 { +int ____lock_3493;// L94 +unsigned int ____count_3494;// L95 +int ____owner_3495;// L96 +unsigned int ____nusers_3496;// L98 +int ____kind_3497;// L102 +short ____spins_3498;// L104 +short ____elision_3499;// L105 +____pthread_list_t_3490 ____list_3500;// L0 +____pthread_list_t_3491 ____list_3501;// L0 }; -union ____anonymous_tag_3236_3237 { -struct ____pthread_mutex_s_3226 ____data_3238;// L92 -char ____size_3239[40];// L126 -long int ____align_3240;// L127 +union ____anonymous_tag_3502_3503 { +struct ____pthread_mutex_s_3492 ____data_3504;// L92 +char ____size_3505[40];// L126 +long int ____align_3506;// L127 }; -typedef union ____anonymous_tag_3236_3237 __pthread_mutex_t_3241;// L90:L128 -union ____anonymous_tag_3242_3243 { -char ____size_3244[4];// L132 -int ____align_3245;// L133 +typedef union ____anonymous_tag_3502_3503 __pthread_mutex_t_3507;// L90:L128 +union ____anonymous_tag_3508_3509 { +char ____size_3510[4];// L132 +int ____align_3511;// L133 }; -typedef union ____anonymous_tag_3242_3243 __pthread_mutexattr_t_3246;// L130:L134 -typedef int (* (____compar_fn_t_3373)) (const void *, const void *);// L741 -typedef ____off_t_21 __off_t_3629;// L29 -typedef ____off64_t_22 __off_t_3630;// L31 -typedef ____mode_t_19 __mode_t_3631;// L37 +typedef union ____anonymous_tag_3508_3509 __pthread_mutexattr_t_3512;// L130:L134 +typedef int (* (____compar_fn_t_3639)) (const void *, const void *);// L741 +typedef ____off_t_21 __off_t_3895;// L29 +typedef ____off64_t_22 __off_t_3897;// L31 +typedef ____mode_t_19 __mode_t_3899;// L37 -struct __forward_tag_reference_3220 { // generated union of struct variations +struct __forward_tag_reference_1084 { // generated union of struct variations union { +struct ___IO_FILE_1125 ___IO_FILE_1125; +struct ___IO_FILE_1150 ___IO_FILE_1150; +struct ___IO_FILE_2156 ___IO_FILE_2156; +struct ___IO_FILE_2181 ___IO_FILE_2181; }; }; -struct __forward_tag_reference_966 { // generated union of struct variations +struct __forward_tag_reference_3486 { // generated union of struct variations union { -struct ___IO_marker_967 ___IO_marker_967; -struct ___IO_marker_1961 ___IO_marker_1961; }; }; -struct __forward_tag_reference_964 { // generated union of struct variations +struct __forward_tag_reference_1115 { // generated union of struct variations union { +struct ___IO_marker_1116 ___IO_marker_1116; +struct ___IO_marker_2147 ___IO_marker_2147; }; }; -struct __forward_tag_reference_937 { // generated union of struct variations +struct __forward_tag_reference_1113 { // generated union of struct variations union { -struct ___IO_FILE_976 ___IO_FILE_976; -struct ___IO_FILE_1000 ___IO_FILE_1000; -struct ___IO_FILE_1970 ___IO_FILE_1970; -struct ___IO_FILE_1994 ___IO_FILE_1994; }; }; -struct __forward_tag_reference_1047 { // generated union of struct variations +struct __forward_tag_reference_1200 { // generated union of struct variations union { }; }; @@ -3004,459 +3402,459 @@ union { // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern int (__access_69) (const char * (____name_67), int ____type_68);// L290 -extern int (__access_70) (const char * (____name_67), int ____type_68);// L290 -extern int (__access_71) (const char * (____name_67), int ____type_68);// L290 -extern int (__faccessat_76) (int ____fd_72, const char * (____file_73), int ____type_74, int ____flag_75);// L307:L308 -extern int (__faccessat_77) (int ____fd_72, const char * (____file_73), int ____type_74, int ____flag_75);// L307:L308 -extern ____off_t_21 (__lseek_84) (int ____fd_78, ____off_t_21 ____offset_79, int ____whence_80);// L337 -extern ____off64_t_22 (__lseek_85) (int ____fd_81, ____off64_t_22 ____offset_82, int ____whence_83);// L340:L342 -extern int (__close_87) (int ____fd_86);// L356 -extern __ssize_t_55 (__read_91) (int ____fd_88, void * (____buf_89), __size_t_57 ____nbytes_90);// L363 -extern __ssize_t_55 (__read_93) (int ____fd_88, void * (____buf_89), __size_t_57 ____nbytes_90);// L363 -extern __ssize_t_55 (__write_98) (int ____fd_95, const void * (____buf_96), __size_t_57 ____n_97);// L369 -extern __ssize_t_55 (__write_100) (int ____fd_95, const void * (____buf_96), __size_t_57 ____n_97);// L369 -extern __ssize_t_55 (__pread_106) (int ____fd_102, void * (____buf_103), __size_t_57 ____nbytes_104, ____off_t_21 ____offset_105);// L379:L380 -extern __ssize_t_55 (__pread_108) (int ____fd_102, void * (____buf_103), __size_t_57 ____nbytes_104, ____off_t_21 ____offset_105);// L379:L380 -extern __ssize_t_55 (__pread_118) (int ____fd_114, void * (____buf_115), __size_t_57 ____nbytes_116, ____off64_t_22 ____offset_117);// L391:L393 -extern __ssize_t_55 (__pread_120) (int ____fd_114, void * (____buf_115), __size_t_57 ____nbytes_116, ____off64_t_22 ____offset_117);// L391:L393 -extern __ssize_t_55 (__pwrite_132) (int ____fd_122, const void * (____buf_123), __size_t_57 ____nbytes_124, ____off64_t_22 ____offset_125);// L394:L396 -extern __ssize_t_55 (__pwrite_130) (int ____fd_110, const void * (____buf_111), __size_t_57 ____n_112, ____off_t_21 ____offset_113);// L387:L388 -extern __ssize_t_55 (__pwrite_128) (int ____fd_122, const void * (____buf_123), __size_t_57 ____nbytes_124, ____off64_t_22 ____offset_125);// L394:L396 -extern __ssize_t_55 (__pwrite_126) (int ____fd_110, const void * (____buf_111), __size_t_57 ____n_112, ____off_t_21 ____offset_113);// L387:L388 -extern int (__pipe_135) (int ____pipedes_134[2]);// L420 -extern int (__pipe_136) (int ____pipedes_134[2]);// L420 -extern int (__pipe_137) (int ____pipedes_134[2]);// L420 -extern int (__pipe_138) (int ____pipedes_134[2]);// L420 -extern unsigned int (__alarm_140) (unsigned int ____seconds_139);// L435 -extern unsigned int (__sleep_142) (unsigned int ____seconds_141);// L447 -extern ____useconds_t_33 (__ualarm_145) (____useconds_t_33 ____value_143, ____useconds_t_33 ____interval_144);// L455:L456 -extern int (__usleep_147) (____useconds_t_33 ____useconds_146);// L463 -extern int (__pause_148) (void );// L472 -extern int (__pause_149) (void );// L472 -extern int (__chown_153) (const char * (____file_150), ____uid_t_15 ____owner_151, ____gid_t_16 ____group_152);// L476:L477 -extern int (__chown_154) (const char * (____file_150), ____uid_t_15 ____owner_151, ____gid_t_16 ____group_152);// L476:L477 -extern int (__fchown_158) (int ____fd_155, ____uid_t_15 ____owner_156, ____gid_t_16 ____group_157);// L481 -extern int (__fchown_159) (int ____fd_155, ____uid_t_15 ____owner_156, ____gid_t_16 ____group_157);// L481 -extern int (__lchown_163) (const char * (____file_160), ____uid_t_15 ____owner_161, ____gid_t_16 ____group_162);// L486:L487 -extern int (__lchown_164) (const char * (____file_160), ____uid_t_15 ____owner_161, ____gid_t_16 ____group_162);// L486:L487 -extern int (__fchownat_170) (int ____fd_165, const char * (____file_166), ____uid_t_15 ____owner_167, ____gid_t_16 ____group_168, int ____flag_169);// L494:L496 -extern int (__fchownat_171) (int ____fd_165, const char * (____file_166), ____uid_t_15 ____owner_167, ____gid_t_16 ____group_168, int ____flag_169);// L494:L496 -extern int (__chdir_173) (const char * (____path_172));// L500 -extern int (__chdir_174) (const char * (____path_172));// L500 -extern int (__chdir_175) (const char * (____path_172));// L500 -extern int (__chdir_176) (const char * (____path_172));// L500 -extern int (__fchdir_178) (int ____fd_177);// L504 -extern int (__fchdir_179) (int ____fd_177);// L504 -extern char * ((__getcwd_182) (char * (____buf_180), __size_t_57 ____size_181));// L514 -extern char * ((__getcwd_183) (char * (____buf_180), __size_t_57 ____size_181));// L514 -extern char * ((__getcwd_184) (char * (____buf_180), __size_t_57 ____size_181));// L514 -extern char * ((__getcwd_185) (char * (____buf_180), __size_t_57 ____size_181));// L514 -extern char * ((__getwd_187) (char * (____buf_186)));// L528:L529 -extern char * ((__getwd_188) (char * (____buf_186)));// L528:L529 -extern int (__dup_190) (int ____fd_189);// L534 -extern int (__dup_191) (int ____fd_189);// L534 -extern int (__dup_192) (int ____fd_189);// L534 -extern int (__dup_193) (int ____fd_189);// L534 -extern int (__dup2_196) (int ____fd_194, int ____fd2_195);// L537 -extern char * (* (____environ_197));// L546 -extern int (__execve_201) (const char * (____path_198), char * const ____argv_199[], char * const ____envp_200[]);// L554:L555 -extern int (__fexecve_205) (int ____fd_202, char * const ____argv_203[], char * const ____envp_204[]);// L560:L561 -extern int (__execv_208) (const char * (____path_206), char * const ____argv_207[]);// L566:L567 -extern int (__execv_209) (const char * (____path_206), char * const ____argv_207[]);// L566:L567 -extern int (__execle_212) (const char * (____path_210), const char * (____arg_211), ... );// L571:L572 -extern int (__execl_215) (const char * (____path_213), const char * (____arg_214), ... );// L576:L577 -extern int (__execvp_218) (const char * (____file_216), char * const ____argv_217[]);// L581:L582 -extern int (__execlp_221) (const char * (____file_219), const char * (____arg_220), ... );// L587:L588 -extern int (__nice_223) (int ____inc_222);// L601 -extern int (__nice_224) (int ____inc_222);// L601 -extern void (___exit_226) (int ____status_225);// L606 -extern void (___exit_227) (int ____status_225);// L606 -enum ____anonymous_tag_249_250 ;// L24 -enum ____anonymous_tag_466_467 ;// L71 -enum ____anonymous_tag_532_533 ;// L533 -extern long int (__pathconf_536) (const char * (____path_534), int ____name_535);// L615:L616 -extern long int (__fpathconf_539) (int ____fd_537, int ____name_538);// L619 -extern long int (__sysconf_541) (int ____name_540);// L622 -extern __size_t_57 (__confstr_545) (int ____name_542, char * (____buf_543), __size_t_57 ____len_544);// L626 -extern ____pid_t_23 (__getpid_546) (void );// L631 -extern ____pid_t_23 (__getpid_547) (void );// L631 -extern ____pid_t_23 (__getppid_548) (void );// L634 -extern ____pid_t_23 (__getpgrp_549) (void );// L637 -extern ____pid_t_23 (____getpgid_551) (____pid_t_23 ____pid_550);// L640 -extern ____pid_t_23 (__getpgid_553) (____pid_t_23 ____pid_552);// L642 -extern int (__setpgid_556) (____pid_t_23 ____pid_554, ____pid_t_23 ____pgid_555);// L649 -extern int (__setpgid_557) (____pid_t_23 ____pid_554, ____pid_t_23 ____pgid_555);// L649 -extern int (__setpgrp_558) (void );// L663 -extern ____pid_t_23 (__setsid_559) (void );// L670 -extern ____pid_t_23 (__setsid_560) (void );// L670 -extern ____pid_t_23 (__getsid_562) (____pid_t_23 ____pid_561);// L674 -extern ____uid_t_15 (__getuid_563) (void );// L678 -extern ____uid_t_15 (__getuid_564) (void );// L678 -extern ____uid_t_15 (__geteuid_565) (void );// L681 -extern ____gid_t_16 (__getgid_566) (void );// L684 -extern ____gid_t_16 (__getegid_567) (void );// L687 -extern int (__getgroups_570) (int ____size_568, ____gid_t_16 ____list_569[]);// L692 -extern int (__getgroups_571) (int ____size_568, ____gid_t_16 ____list_569[]);// L692 -extern int (__setuid_573) (____uid_t_15 ____uid_572);// L703 -extern int (__setuid_574) (____uid_t_15 ____uid_572);// L703 -extern int (__setreuid_577) (____uid_t_15 ____ruid_575, ____uid_t_15 ____euid_576);// L708 -extern int (__setreuid_578) (____uid_t_15 ____ruid_575, ____uid_t_15 ____euid_576);// L708 -extern int (__seteuid_580) (____uid_t_15 ____uid_579);// L713 -extern int (__seteuid_581) (____uid_t_15 ____uid_579);// L713 -extern int (__setgid_583) (____gid_t_16 ____gid_582);// L720 -extern int (__setgid_584) (____gid_t_16 ____gid_582);// L720 -extern int (__setgid_585) (____gid_t_16 ____gid_582);// L720 -extern int (__setgid_586) (____gid_t_16 ____gid_582);// L720 -extern int (__setregid_589) (____gid_t_16 ____rgid_587, ____gid_t_16 ____egid_588);// L725 -extern int (__setregid_590) (____gid_t_16 ____rgid_587, ____gid_t_16 ____egid_588);// L725 -extern int (__setegid_592) (____gid_t_16 ____gid_591);// L730 -extern int (__setegid_593) (____gid_t_16 ____gid_591);// L730 -extern ____pid_t_23 (__fork_594) (void );// L759 -extern ____pid_t_23 (__fork_595) (void );// L759 -extern ____pid_t_23 (__vfork_596) (void );// L767 -extern char * ((__ttyname_598) (int ____fd_597));// L773 -extern char * ((__ttyname_599) (int ____fd_597));// L773 -extern int (__ttyname_r_603) (int ____fd_600, char * (____buf_601), __size_t_57 ____buflen_602);// L777:L778 -extern int (__ttyname_r_604) (int ____fd_600, char * (____buf_601), __size_t_57 ____buflen_602);// L777:L778 -extern int (__isatty_606) (int ____fd_605);// L782 -extern int (__ttyslot_607) (void );// L788 -extern int (__link_610) (const char * (____from_608), const char * (____to_609));// L793:L794 -extern int (__link_611) (const char * (____from_608), const char * (____to_609));// L793:L794 -extern int (__link_612) (const char * (____from_608), const char * (____to_609));// L793:L794 -extern int (__link_613) (const char * (____from_608), const char * (____to_609));// L793:L794 -extern int (__linkat_619) (int ____fromfd_614, const char * (____from_615), int ____tofd_616, const char * (____to_617), int ____flags_618);// L799:L801 -extern int (__linkat_620) (int ____fromfd_614, const char * (____from_615), int ____tofd_616, const char * (____to_617), int ____flags_618);// L799:L801 -extern int (__symlink_623) (const char * (____from_621), const char * (____to_622));// L806:L807 -extern int (__symlink_624) (const char * (____from_621), const char * (____to_622));// L806:L807 -extern __ssize_t_55 (__readlink_628) (const char * __restrict ____path_625, char * __restrict ____buf_626, __size_t_57 ____len_627);// L812:L814 -extern __ssize_t_55 (__readlink_630) (const char * __restrict ____path_625, char * __restrict ____buf_626, __size_t_57 ____len_627);// L812:L814 -extern int (__symlinkat_635) (const char * (____from_632), int ____tofd_633, const char * (____to_634));// L819:L820 -extern int (__symlinkat_636) (const char * (____from_632), int ____tofd_633, const char * (____to_634));// L819:L820 -extern __ssize_t_55 (__readlinkat_641) (int ____fd_637, const char * __restrict ____path_638, char * __restrict ____buf_639, __size_t_57 ____len_640);// L823:L825 -extern __ssize_t_55 (__readlinkat_643) (int ____fd_637, const char * __restrict ____path_638, char * __restrict ____buf_639, __size_t_57 ____len_640);// L823:L825 -extern int (__unlink_646) (const char * (____name_645));// L829 -extern int (__unlink_647) (const char * (____name_645));// L829 -extern int (__unlinkat_651) (int ____fd_648, const char * (____name_649), int ____flag_650);// L833:L834 -extern int (__rmdir_653) (const char * (____path_652));// L838 -extern int (__rmdir_654) (const char * (____path_652));// L838 -extern ____pid_t_23 (__tcgetpgrp_656) (int ____fd_655);// L842 -extern int (__tcsetpgrp_659) (int ____fd_657, ____pid_t_23 ____pgrp_id_658);// L845 -extern char * ((__getlogin_660) (void ));// L852 -extern int (__getlogin_r_663) (char * (____name_661), __size_t_57 ____name_len_662);// L860 -extern int (__setlogin_665) (const char * (____name_664));// L865 -extern char * (__optarg_666);// L57 -extern int __optind_667;// L71 -extern int __opterr_668;// L76 -extern int __optopt_669;// L80 -extern int (__getopt_673) (int _____argc_670, char * const * (_____argv_671), const char * (____shortopts_672));// L150:L151 -extern int (__gethostname_676) (char * (____name_674), __size_t_57 ____len_675);// L882 -extern int (__sethostname_679) (const char * (____name_677), __size_t_57 ____len_678);// L889:L890 -extern int (__sethostname_680) (const char * (____name_677), __size_t_57 ____len_678);// L889:L890 -extern int (__sethostid_682) (long int ____id_681);// L894 -extern int (__sethostid_683) (long int ____id_681);// L894 -extern int (__getdomainname_686) (char * (____name_684), __size_t_57 ____len_685);// L900:L901 -extern int (__getdomainname_687) (char * (____name_684), __size_t_57 ____len_685);// L900:L901 -extern int (__setdomainname_690) (const char * (____name_688), __size_t_57 ____len_689);// L902:L903 -extern int (__setdomainname_691) (const char * (____name_688), __size_t_57 ____len_689);// L902:L903 -extern int (__vhangup_692) (void );// L909 -extern int (__revoke_694) (const char * (____file_693));// L912 -extern int (__revoke_695) (const char * (____file_693));// L912 -extern int (__profil_700) (unsigned short int * (____sample_buffer_696), __size_t_57 ____size_697, __size_t_57 ____offset_698, unsigned int ____scale_699);// L920:L922 -extern int (__acct_702) (const char * (____name_701));// L928 -extern char * ((__getusershell_703) (void ));// L932 -extern void (__endusershell_704) (void );// L933 -extern void (__setusershell_705) (void );// L934 -extern int (__daemon_708) (int ____nochdir_706, int ____noclose_707);// L940 -extern int (__daemon_709) (int ____nochdir_706, int ____noclose_707);// L940 -extern int (__chroot_711) (const char * (____path_710));// L947 -extern int (__chroot_712) (const char * (____path_710));// L947 -extern char * ((__getpass_714) (const char * (____prompt_713)));// L951 -extern int (__fsync_716) (int ____fd_715);// L959 -extern int (__fsync_717) (int ____fd_715);// L959 -extern int (__fsync_718) (int ____fd_715);// L959 -extern long int (__gethostid_719) (void );// L972 -extern void (__sync_720) (void );// L975 -extern int (__getpagesize_721) (void );// L981 -extern int (__getdtablesize_722) (void );// L986 -extern int (__truncate_727) (const char * (____file_723), ____off_t_21 ____length_724);// L996:L997 -extern int (__truncate_729) (const char * (____file_723), ____off_t_21 ____length_724);// L996:L997 -extern int (__truncate_728) (const char * (____file_725), ____off64_t_22 ____length_726);// L1000:L1002 -extern int (__truncate_730) (const char * (____file_725), ____off64_t_22 ____length_726);// L1000:L1002 -extern int (__ftruncate_738) (int ____fd_733, ____off64_t_22 ____length_734);// L1022:L1023 -extern int (__ftruncate_737) (int ____fd_731, ____off_t_21 ____length_732);// L1019 -extern int (__ftruncate_736) (int ____fd_733, ____off64_t_22 ____length_734);// L1022:L1023 -extern int (__ftruncate_735) (int ____fd_731, ____off_t_21 ____length_732);// L1019 -extern int (__brk_740) (void * (____addr_739));// L1040 -extern int (__brk_741) (void * (____addr_739));// L1040 -extern void * ((__sbrk_744) (__intptr_t_65 ____delta_742));// L1046 -extern long int (__syscall_747) (long int ____sysno_746, ... );// L1061 -extern int (__lockf_757) (int ____fd_751, int ____cmd_752, ____off64_t_22 ____len_753);// L1087:L1088 -extern int (__lockf_756) (int ____fd_748, int ____cmd_749, ____off_t_21 ____len_750);// L1084 -extern int (__lockf_755) (int ____fd_751, int ____cmd_752, ____off64_t_22 ____len_753);// L1087:L1088 -extern int (__lockf_754) (int ____fd_748, int ____cmd_749, ____off_t_21 ____len_750);// L1084 -extern int (__fdatasync_759) (int ____fildes_758);// L1115 -extern __ssize_t_55 (____read_chk_764) (int ____fd_760, void * (____buf_761), __size_t_57 ____nbytes_762, __size_t_57 ____buflen_763);// L23:L24 -extern __ssize_t_55 (____read_alias_769) (int ____fd_766, void * (____buf_767), __size_t_57 ____nbytes_768);// L25:L26 -extern __ssize_t_55 (____read_chk_warn_775) (int ____fd_771, void * (____buf_772), __size_t_57 ____nbytes_773, __size_t_57 ____buflen_774);// L27:L31 +extern int (__access_78) (const char * (____name_76), int ____type_77);// L290 +extern int (__access_79) (const char * (____name_76), int ____type_77);// L290 +extern int (__access_80) (const char * (____name_76), int ____type_77);// L290 +extern int (__faccessat_85) (int ____fd_81, const char * (____file_82), int ____type_83, int ____flag_84);// L307:L308 +extern int (__faccessat_86) (int ____fd_81, const char * (____file_82), int ____type_83, int ____flag_84);// L307:L308 +extern ____off_t_21 (__lseek_95) (int ____fd_87, ____off_t_21 ____offset_88, int ____whence_90);// L337 +extern ____off64_t_22 (__lseek_97) (int ____fd_91, ____off64_t_22 ____offset_92, int ____whence_94);// L340:L342 +extern int (__close_100) (int ____fd_99);// L356 +extern __ssize_t_56 (__read_104) (int ____fd_101, void * (____buf_102), __size_t_59 ____nbytes_103);// L363 +extern __ssize_t_56 (__read_107) (int ____fd_101, void * (____buf_102), __size_t_59 ____nbytes_103);// L363 +extern __ssize_t_56 (__write_113) (int ____fd_110, const void * (____buf_111), __size_t_59 ____n_112);// L369 +extern __ssize_t_56 (__write_116) (int ____fd_110, const void * (____buf_111), __size_t_59 ____n_112);// L369 +extern __ssize_t_56 (__pread_124) (int ____fd_119, void * (____buf_120), __size_t_59 ____nbytes_121, ____off_t_21 ____offset_122);// L379:L380 +extern __ssize_t_56 (__pread_128) (int ____fd_119, void * (____buf_120), __size_t_59 ____nbytes_121, ____off_t_21 ____offset_122);// L379:L380 +extern __ssize_t_56 (__pread_142) (int ____fd_137, void * (____buf_138), __size_t_59 ____nbytes_139, ____off64_t_22 ____offset_140);// L391:L393 +extern __ssize_t_56 (__pread_146) (int ____fd_137, void * (____buf_138), __size_t_59 ____nbytes_139, ____off64_t_22 ____offset_140);// L391:L393 +extern __ssize_t_56 (__pwrite_167) (int ____fd_150, const void * (____buf_151), __size_t_59 ____nbytes_152, ____off64_t_22 ____offset_153);// L394:L396 +extern __ssize_t_56 (__pwrite_163) (int ____fd_132, const void * (____buf_133), __size_t_59 ____n_134, ____off_t_21 ____offset_135);// L387:L388 +extern __ssize_t_56 (__pwrite_159) (int ____fd_150, const void * (____buf_151), __size_t_59 ____nbytes_152, ____off64_t_22 ____offset_153);// L394:L396 +extern __ssize_t_56 (__pwrite_155) (int ____fd_132, const void * (____buf_133), __size_t_59 ____n_134, ____off_t_21 ____offset_135);// L387:L388 +extern int (__pipe_172) (int ____pipedes_171[2]);// L420 +extern int (__pipe_173) (int ____pipedes_171[2]);// L420 +extern int (__pipe_174) (int ____pipedes_171[2]);// L420 +extern int (__pipe_175) (int ____pipedes_171[2]);// L420 +extern unsigned int (__alarm_177) (unsigned int ____seconds_176);// L435 +extern unsigned int (__sleep_179) (unsigned int ____seconds_178);// L447 +extern ____useconds_t_33 (__ualarm_184) (____useconds_t_33 ____value_180, ____useconds_t_33 ____interval_182);// L455:L456 +extern int (__usleep_188) (____useconds_t_33 ____useconds_186);// L463 +extern int (__pause_190) (void );// L472 +extern int (__pause_191) (void );// L472 +extern int (__chown_197) (const char * (____file_192), ____uid_t_15 ____owner_193, ____gid_t_16 ____group_195);// L476:L477 +extern int (__chown_199) (const char * (____file_192), ____uid_t_15 ____owner_193, ____gid_t_16 ____group_195);// L476:L477 +extern int (__fchown_206) (int ____fd_201, ____uid_t_15 ____owner_202, ____gid_t_16 ____group_204);// L481 +extern int (__fchown_208) (int ____fd_201, ____uid_t_15 ____owner_202, ____gid_t_16 ____group_204);// L481 +extern int (__lchown_215) (const char * (____file_210), ____uid_t_15 ____owner_211, ____gid_t_16 ____group_213);// L486:L487 +extern int (__lchown_217) (const char * (____file_210), ____uid_t_15 ____owner_211, ____gid_t_16 ____group_213);// L486:L487 +extern int (__fchownat_226) (int ____fd_219, const char * (____file_220), ____uid_t_15 ____owner_221, ____gid_t_16 ____group_223, int ____flag_225);// L494:L496 +extern int (__fchownat_228) (int ____fd_219, const char * (____file_220), ____uid_t_15 ____owner_221, ____gid_t_16 ____group_223, int ____flag_225);// L494:L496 +extern int (__chdir_231) (const char * (____path_230));// L500 +extern int (__chdir_232) (const char * (____path_230));// L500 +extern int (__chdir_233) (const char * (____path_230));// L500 +extern int (__chdir_234) (const char * (____path_230));// L500 +extern int (__fchdir_236) (int ____fd_235);// L504 +extern int (__fchdir_237) (int ____fd_235);// L504 +extern char * ((__getcwd_240) (char * (____buf_238), __size_t_59 ____size_239));// L514 +extern char * ((__getcwd_241) (char * (____buf_238), __size_t_59 ____size_239));// L514 +extern char * ((__getcwd_242) (char * (____buf_238), __size_t_59 ____size_239));// L514 +extern char * ((__getcwd_243) (char * (____buf_238), __size_t_59 ____size_239));// L514 +extern char * ((__getwd_245) (char * (____buf_244)));// L528:L529 +extern char * ((__getwd_246) (char * (____buf_244)));// L528:L529 +extern int (__dup_248) (int ____fd_247);// L534 +extern int (__dup_249) (int ____fd_247);// L534 +extern int (__dup_250) (int ____fd_247);// L534 +extern int (__dup_251) (int ____fd_247);// L534 +extern int (__dup2_254) (int ____fd_252, int ____fd2_253);// L537 +extern char * (* (____environ_255));// L546 +extern int (__execve_259) (const char * (____path_256), char * const ____argv_257[], char * const ____envp_258[]);// L554:L555 +extern int (__fexecve_263) (int ____fd_260, char * const ____argv_261[], char * const ____envp_262[]);// L560:L561 +extern int (__execv_266) (const char * (____path_264), char * const ____argv_265[]);// L566:L567 +extern int (__execv_267) (const char * (____path_264), char * const ____argv_265[]);// L566:L567 +extern int (__execle_270) (const char * (____path_268), const char * (____arg_269), ... );// L571:L572 +extern int (__execl_273) (const char * (____path_271), const char * (____arg_272), ... );// L576:L577 +extern int (__execvp_276) (const char * (____file_274), char * const ____argv_275[]);// L581:L582 +extern int (__execlp_279) (const char * (____file_277), const char * (____arg_278), ... );// L587:L588 +extern int (__nice_281) (int ____inc_280);// L601 +extern int (__nice_282) (int ____inc_280);// L601 +extern void (___exit_284) (int ____status_283);// L606 +extern void (___exit_285) (int ____status_283);// L606 +enum ____anonymous_tag_307_308 ;// L24 +enum ____anonymous_tag_524_525 ;// L71 +enum ____anonymous_tag_590_591 ;// L533 +extern long int (__pathconf_594) (const char * (____path_592), int ____name_593);// L615:L616 +extern long int (__fpathconf_597) (int ____fd_595, int ____name_596);// L619 +extern long int (__sysconf_599) (int ____name_598);// L622 +extern __size_t_59 (__confstr_603) (int ____name_600, char * (____buf_601), __size_t_59 ____len_602);// L626 +extern ____pid_t_23 (__getpid_604) (void );// L631 +extern ____pid_t_23 (__getpid_606) (void );// L631 +extern ____pid_t_23 (__getppid_608) (void );// L634 +extern ____pid_t_23 (__getpgrp_610) (void );// L637 +extern ____pid_t_23 (____getpgid_613) (____pid_t_23 ____pid_611);// L640 +extern ____pid_t_23 (__getpgid_616) (____pid_t_23 ____pid_614);// L642 +extern int (__setpgid_622) (____pid_t_23 ____pid_618, ____pid_t_23 ____pgid_620);// L649 +extern int (__setpgid_624) (____pid_t_23 ____pid_618, ____pid_t_23 ____pgid_620);// L649 +extern int (__setpgrp_626) (void );// L663 +extern ____pid_t_23 (__setsid_627) (void );// L670 +extern ____pid_t_23 (__setsid_629) (void );// L670 +extern ____pid_t_23 (__getsid_633) (____pid_t_23 ____pid_631);// L674 +extern ____uid_t_15 (__getuid_635) (void );// L678 +extern ____uid_t_15 (__getuid_637) (void );// L678 +extern ____uid_t_15 (__geteuid_639) (void );// L681 +extern ____gid_t_16 (__getgid_641) (void );// L684 +extern ____gid_t_16 (__getegid_643) (void );// L687 +extern int (__getgroups_647) (int ____size_644, ____gid_t_16 ____list_645[]);// L692 +extern int (__getgroups_649) (int ____size_644, ____gid_t_16 ____list_645[]);// L692 +extern int (__setuid_653) (____uid_t_15 ____uid_651);// L703 +extern int (__setuid_655) (____uid_t_15 ____uid_651);// L703 +extern int (__setreuid_661) (____uid_t_15 ____ruid_657, ____uid_t_15 ____euid_659);// L708 +extern int (__setreuid_663) (____uid_t_15 ____ruid_657, ____uid_t_15 ____euid_659);// L708 +extern int (__seteuid_667) (____uid_t_15 ____uid_665);// L713 +extern int (__seteuid_669) (____uid_t_15 ____uid_665);// L713 +extern int (__setgid_673) (____gid_t_16 ____gid_671);// L720 +extern int (__setgid_675) (____gid_t_16 ____gid_671);// L720 +extern int (__setgid_677) (____gid_t_16 ____gid_671);// L720 +extern int (__setgid_679) (____gid_t_16 ____gid_671);// L720 +extern int (__setregid_685) (____gid_t_16 ____rgid_681, ____gid_t_16 ____egid_683);// L725 +extern int (__setregid_687) (____gid_t_16 ____rgid_681, ____gid_t_16 ____egid_683);// L725 +extern int (__setegid_691) (____gid_t_16 ____gid_689);// L730 +extern int (__setegid_693) (____gid_t_16 ____gid_689);// L730 +extern ____pid_t_23 (__fork_695) (void );// L759 +extern ____pid_t_23 (__fork_697) (void );// L759 +extern ____pid_t_23 (__vfork_699) (void );// L767 +extern char * ((__ttyname_702) (int ____fd_701));// L773 +extern char * ((__ttyname_703) (int ____fd_701));// L773 +extern int (__ttyname_r_707) (int ____fd_704, char * (____buf_705), __size_t_59 ____buflen_706);// L777:L778 +extern int (__ttyname_r_708) (int ____fd_704, char * (____buf_705), __size_t_59 ____buflen_706);// L777:L778 +extern int (__isatty_710) (int ____fd_709);// L782 +extern int (__ttyslot_711) (void );// L788 +extern int (__link_714) (const char * (____from_712), const char * (____to_713));// L793:L794 +extern int (__link_715) (const char * (____from_712), const char * (____to_713));// L793:L794 +extern int (__link_716) (const char * (____from_712), const char * (____to_713));// L793:L794 +extern int (__link_717) (const char * (____from_712), const char * (____to_713));// L793:L794 +extern int (__linkat_723) (int ____fromfd_718, const char * (____from_719), int ____tofd_720, const char * (____to_721), int ____flags_722);// L799:L801 +extern int (__linkat_724) (int ____fromfd_718, const char * (____from_719), int ____tofd_720, const char * (____to_721), int ____flags_722);// L799:L801 +extern int (__symlink_727) (const char * (____from_725), const char * (____to_726));// L806:L807 +extern int (__symlink_728) (const char * (____from_725), const char * (____to_726));// L806:L807 +extern __ssize_t_56 (__readlink_732) (const char * __restrict ____path_729, char * __restrict ____buf_730, __size_t_59 ____len_731);// L812:L814 +extern __ssize_t_56 (__readlink_735) (const char * __restrict ____path_729, char * __restrict ____buf_730, __size_t_59 ____len_731);// L812:L814 +extern int (__symlinkat_741) (const char * (____from_738), int ____tofd_739, const char * (____to_740));// L819:L820 +extern int (__symlinkat_742) (const char * (____from_738), int ____tofd_739, const char * (____to_740));// L819:L820 +extern __ssize_t_56 (__readlinkat_747) (int ____fd_743, const char * __restrict ____path_744, char * __restrict ____buf_745, __size_t_59 ____len_746);// L823:L825 +extern __ssize_t_56 (__readlinkat_750) (int ____fd_743, const char * __restrict ____path_744, char * __restrict ____buf_745, __size_t_59 ____len_746);// L823:L825 +extern int (__unlink_754) (const char * (____name_753));// L829 +extern int (__unlink_755) (const char * (____name_753));// L829 +extern int (__unlinkat_759) (int ____fd_756, const char * (____name_757), int ____flag_758);// L833:L834 +extern int (__rmdir_761) (const char * (____path_760));// L838 +extern int (__rmdir_762) (const char * (____path_760));// L838 +extern ____pid_t_23 (__tcgetpgrp_764) (int ____fd_763);// L842 +extern int (__tcsetpgrp_768) (int ____fd_765, ____pid_t_23 ____pgrp_id_766);// L845 +extern char * ((__getlogin_769) (void ));// L852 +extern int (__getlogin_r_772) (char * (____name_770), __size_t_59 ____name_len_771);// L860 +extern int (__setlogin_774) (const char * (____name_773));// L865 +extern char * (__optarg_775);// L57 +extern int __optind_776;// L71 +extern int __opterr_777;// L76 +extern int __optopt_778;// L80 +extern int (__getopt_782) (int _____argc_779, char * const * (_____argv_780), const char * (____shortopts_781));// L150:L151 +extern int (__gethostname_785) (char * (____name_783), __size_t_59 ____len_784);// L882 +extern int (__sethostname_788) (const char * (____name_786), __size_t_59 ____len_787);// L889:L890 +extern int (__sethostname_789) (const char * (____name_786), __size_t_59 ____len_787);// L889:L890 +extern int (__sethostid_791) (long int ____id_790);// L894 +extern int (__sethostid_792) (long int ____id_790);// L894 +extern int (__getdomainname_795) (char * (____name_793), __size_t_59 ____len_794);// L900:L901 +extern int (__getdomainname_796) (char * (____name_793), __size_t_59 ____len_794);// L900:L901 +extern int (__setdomainname_799) (const char * (____name_797), __size_t_59 ____len_798);// L902:L903 +extern int (__setdomainname_800) (const char * (____name_797), __size_t_59 ____len_798);// L902:L903 +extern int (__vhangup_801) (void );// L909 +extern int (__revoke_803) (const char * (____file_802));// L912 +extern int (__revoke_804) (const char * (____file_802));// L912 +extern int (__profil_809) (unsigned short int * (____sample_buffer_805), __size_t_59 ____size_806, __size_t_59 ____offset_807, unsigned int ____scale_808);// L920:L922 +extern int (__acct_811) (const char * (____name_810));// L928 +extern char * ((__getusershell_812) (void ));// L932 +extern void (__endusershell_813) (void );// L933 +extern void (__setusershell_814) (void );// L934 +extern int (__daemon_817) (int ____nochdir_815, int ____noclose_816);// L940 +extern int (__daemon_818) (int ____nochdir_815, int ____noclose_816);// L940 +extern int (__chroot_820) (const char * (____path_819));// L947 +extern int (__chroot_821) (const char * (____path_819));// L947 +extern char * ((__getpass_823) (const char * (____prompt_822)));// L951 +extern int (__fsync_825) (int ____fd_824);// L959 +extern int (__fsync_826) (int ____fd_824);// L959 +extern int (__fsync_827) (int ____fd_824);// L959 +extern long int (__gethostid_828) (void );// L972 +extern void (__sync_829) (void );// L975 +extern int (__getpagesize_830) (void );// L981 +extern int (__getdtablesize_831) (void );// L986 +extern int (__truncate_838) (const char * (____file_832), ____off_t_21 ____length_833);// L996:L997 +extern int (__truncate_842) (const char * (____file_832), ____off_t_21 ____length_833);// L996:L997 +extern int (__truncate_840) (const char * (____file_835), ____off64_t_22 ____length_836);// L1000:L1002 +extern int (__truncate_844) (const char * (____file_835), ____off64_t_22 ____length_836);// L1000:L1002 +extern int (__ftruncate_858) (int ____fd_849, ____off64_t_22 ____length_850);// L1022:L1023 +extern int (__ftruncate_856) (int ____fd_846, ____off_t_21 ____length_847);// L1019 +extern int (__ftruncate_854) (int ____fd_849, ____off64_t_22 ____length_850);// L1022:L1023 +extern int (__ftruncate_852) (int ____fd_846, ____off_t_21 ____length_847);// L1019 +extern int (__brk_861) (void * (____addr_860));// L1040 +extern int (__brk_862) (void * (____addr_860));// L1040 +extern void * ((__sbrk_865) (__intptr_t_74 ____delta_863));// L1046 +extern long int (__syscall_868) (long int ____sysno_867, ... );// L1061 +extern int (__lockf_883) (int ____fd_873, int ____cmd_874, ____off64_t_22 ____len_875);// L1087:L1088 +extern int (__lockf_881) (int ____fd_869, int ____cmd_870, ____off_t_21 ____len_871);// L1084 +extern int (__lockf_879) (int ____fd_873, int ____cmd_874, ____off64_t_22 ____len_875);// L1087:L1088 +extern int (__lockf_877) (int ____fd_869, int ____cmd_870, ____off_t_21 ____len_871);// L1084 +extern int (__fdatasync_886) (int ____fildes_885);// L1115 +extern __ssize_t_56 (____read_chk_891) (int ____fd_887, void * (____buf_888), __size_t_59 ____nbytes_889, __size_t_59 ____buflen_890);// L23:L24 +extern __ssize_t_56 (____read_alias_897) (int ____fd_894, void * (____buf_895), __size_t_59 ____nbytes_896);// L25:L26 +extern __ssize_t_56 (____read_chk_warn_904) (int ____fd_900, void * (____buf_901), __size_t_59 ____nbytes_902, __size_t_59 ____buflen_903);// L27:L31 /* no function due to type errors in the function prototype */ -extern __ssize_t_55 (____readlink_chk_785) (const char * __restrict ____path_781, char * __restrict ____buf_782, __size_t_57 ____len_783, __size_t_57 ____buflen_784);// L123:L126 -extern __ssize_t_55 (____readlink_alias_790) (const char * __restrict ____path_787, char * __restrict ____buf_788, __size_t_57 ____len_789);// L127:L130 -extern __ssize_t_55 (____readlink_chk_warn_796) (const char * __restrict ____path_792, char * __restrict ____buf_793, __size_t_57 ____len_794, __size_t_57 ____buflen_795);// L131:L136 +extern __ssize_t_56 (____readlink_chk_916) (const char * __restrict ____path_912, char * __restrict ____buf_913, __size_t_59 ____len_914, __size_t_59 ____buflen_915);// L123:L126 +extern __ssize_t_56 (____readlink_alias_922) (const char * __restrict ____path_919, char * __restrict ____buf_920, __size_t_59 ____len_921);// L127:L130 +extern __ssize_t_56 (____readlink_chk_warn_929) (const char * __restrict ____path_925, char * __restrict ____buf_926, __size_t_59 ____len_927, __size_t_59 ____buflen_928);// L131:L136 /* no function due to type errors in the function prototype */ -extern __ssize_t_55 (____readlinkat_chk_807) (int ____fd_802, const char * __restrict ____path_803, char * __restrict ____buf_804, __size_t_57 ____len_805, __size_t_57 ____buflen_806);// L155:L158 -extern __ssize_t_55 (____readlinkat_alias_813) (int ____fd_809, const char * __restrict ____path_810, char * __restrict ____buf_811, __size_t_57 ____len_812);// L159:L163 -extern __ssize_t_55 (____readlinkat_chk_warn_820) (int ____fd_815, const char * __restrict ____path_816, char * __restrict ____buf_817, __size_t_57 ____len_818, __size_t_57 ____buflen_819);// L164:L170 +extern __ssize_t_56 (____readlinkat_chk_942) (int ____fd_937, const char * __restrict ____path_938, char * __restrict ____buf_939, __size_t_59 ____len_940, __size_t_59 ____buflen_941);// L155:L158 +extern __ssize_t_56 (____readlinkat_alias_949) (int ____fd_945, const char * __restrict ____path_946, char * __restrict ____buf_947, __size_t_59 ____len_948);// L159:L163 +extern __ssize_t_56 (____readlinkat_chk_warn_957) (int ____fd_952, const char * __restrict ____path_953, char * __restrict ____buf_954, __size_t_59 ____len_955, __size_t_59 ____buflen_956);// L164:L170 /* no function due to type errors in the function prototype */ -extern char * ((____getcwd_chk_830) (char * (____buf_827), __size_t_57 ____size_828, __size_t_57 ____buflen_829));// L189:L190 -extern char * ((____getcwd_chk_831) (char * (____buf_827), __size_t_57 ____size_828, __size_t_57 ____buflen_829));// L189:L190 -extern char * ((____getcwd_alias_834) (char * (____buf_832), __size_t_57 ____size_833));// L191:L192 -extern char * ((____getcwd_chk_warn_838) (char * (____buf_835), __size_t_57 ____size_836, __size_t_57 ____buflen_837));// L193:L197 +extern char * ((____getcwd_chk_969) (char * (____buf_966), __size_t_59 ____size_967, __size_t_59 ____buflen_968));// L189:L190 +extern char * ((____getcwd_chk_970) (char * (____buf_966), __size_t_59 ____size_967, __size_t_59 ____buflen_968));// L189:L190 +extern char * ((____getcwd_alias_973) (char * (____buf_971), __size_t_59 ____size_972));// L191:L192 +extern char * ((____getcwd_chk_warn_977) (char * (____buf_974), __size_t_59 ____size_975, __size_t_59 ____buflen_976));// L193:L197 /* no function due to type errors in the function prototype */ -extern char * ((____getwd_chk_844) (char * (____buf_842), __size_t_57 __buflen_843));// L214:L215 -extern char * ((____getwd_warn_846) (char * (____buf_845)));// L216:L218 +extern char * ((____getwd_chk_983) (char * (____buf_981), __size_t_59 __buflen_982));// L214:L215 +extern char * ((____getwd_warn_985) (char * (____buf_984)));// L216:L218 /* no function due to type errors in the function prototype */ -extern __size_t_57 (____confstr_chk_853) (int ____name_849, char * (____buf_850), __size_t_57 ____len_851, __size_t_57 ____buflen_852);// L229:L230 -extern __size_t_57 (____confstr_chk_854) (int ____name_849, char * (____buf_850), __size_t_57 ____len_851, __size_t_57 ____buflen_852);// L229:L230 -extern __size_t_57 (____confstr_alias_858) (int ____name_855, char * (____buf_856), __size_t_57 ____len_857);// L231:L232 -extern __size_t_57 (____confstr_chk_warn_863) (int ____name_859, char * (____buf_860), __size_t_57 ____len_861, __size_t_57 ____buflen_862);// L233:L237 +extern __size_t_59 (____confstr_chk_992) (int ____name_988, char * (____buf_989), __size_t_59 ____len_990, __size_t_59 ____buflen_991);// L229:L230 +extern __size_t_59 (____confstr_chk_993) (int ____name_988, char * (____buf_989), __size_t_59 ____len_990, __size_t_59 ____buflen_991);// L229:L230 +extern __size_t_59 (____confstr_alias_997) (int ____name_994, char * (____buf_995), __size_t_59 ____len_996);// L231:L232 +extern __size_t_59 (____confstr_chk_warn_1002) (int ____name_998, char * (____buf_999), __size_t_59 ____len_1000, __size_t_59 ____buflen_1001);// L233:L237 /* no function due to type errors in the function prototype */ -extern int (____getgroups_chk_871) (int ____size_868, ____gid_t_16 ____list_869[], __size_t_57 ____listlen_870);// L254:L255 -extern int (____getgroups_alias_874) (int ____size_872, ____gid_t_16 ____list_873[]);// L256:L257 -extern int (____getgroups_chk_warn_878) (int ____size_875, ____gid_t_16 ____list_876[], __size_t_57 ____listlen_877);// L258:L262 +extern int (____getgroups_chk_1011) (int ____size_1007, ____gid_t_16 ____list_1008[], __size_t_59 ____listlen_1010);// L254:L255 +extern int (____getgroups_alias_1016) (int ____size_1013, ____gid_t_16 ____list_1014[]);// L256:L257 +extern int (____getgroups_chk_warn_1022) (int ____size_1018, ____gid_t_16 ____list_1019[], __size_t_59 ____listlen_1021);// L258:L262 /* no function due to type errors in the function prototype */ -extern int (____ttyname_r_chk_885) (int ____fd_881, char * (____buf_882), __size_t_57 ____buflen_883, __size_t_57 ____nreal_884);// L279:L280 -extern int (____ttyname_r_alias_889) (int ____fd_886, char * (____buf_887), __size_t_57 ____buflen_888);// L281:L283 -extern int (____ttyname_r_chk_warn_894) (int ____fd_890, char * (____buf_891), __size_t_57 ____buflen_892, __size_t_57 ____nreal_893);// L284:L288 +extern int (____ttyname_r_chk_1032) (int ____fd_1028, char * (____buf_1029), __size_t_59 ____buflen_1030, __size_t_59 ____nreal_1031);// L279:L280 +extern int (____ttyname_r_alias_1036) (int ____fd_1033, char * (____buf_1034), __size_t_59 ____buflen_1035);// L281:L283 +extern int (____ttyname_r_chk_warn_1041) (int ____fd_1037, char * (____buf_1038), __size_t_59 ____buflen_1039, __size_t_59 ____nreal_1040);// L284:L288 /* no function due to type errors in the function prototype */ -extern int (____getlogin_r_chk_901) (char * (____buf_898), __size_t_57 ____buflen_899, __size_t_57 ____nreal_900);// L306:L307 -extern int (____getlogin_r_alias_904) (char * (____buf_902), __size_t_57 ____buflen_903);// L308:L309 -extern int (____getlogin_r_chk_warn_908) (char * (____buf_905), __size_t_57 ____buflen_906, __size_t_57 ____nreal_907);// L310:L314 +extern int (____getlogin_r_chk_1048) (char * (____buf_1045), __size_t_59 ____buflen_1046, __size_t_59 ____nreal_1047);// L306:L307 +extern int (____getlogin_r_alias_1051) (char * (____buf_1049), __size_t_59 ____buflen_1050);// L308:L309 +extern int (____getlogin_r_chk_warn_1055) (char * (____buf_1052), __size_t_59 ____buflen_1053, __size_t_59 ____nreal_1054);// L310:L314 /* no function due to type errors in the function prototype */ -extern int (____gethostname_chk_914) (char * (____buf_911), __size_t_57 ____buflen_912, __size_t_57 ____nreal_913);// L333:L334 -extern int (____gethostname_alias_917) (char * (____buf_915), __size_t_57 ____buflen_916);// L335:L336 -extern int (____gethostname_chk_warn_921) (char * (____buf_918), __size_t_57 ____buflen_919, __size_t_57 ____nreal_920);// L337:L341 +extern int (____gethostname_chk_1061) (char * (____buf_1058), __size_t_59 ____buflen_1059, __size_t_59 ____nreal_1060);// L333:L334 +extern int (____gethostname_alias_1064) (char * (____buf_1062), __size_t_59 ____buflen_1063);// L335:L336 +extern int (____gethostname_chk_warn_1068) (char * (____buf_1065), __size_t_59 ____buflen_1066, __size_t_59 ____nreal_1067);// L337:L341 /* no function due to type errors in the function prototype */ -extern int (____getdomainname_chk_927) (char * (____buf_924), __size_t_57 ____buflen_925, __size_t_57 ____nreal_926);// L360:L361 -extern int (____getdomainname_alias_930) (char * (____buf_928), __size_t_57 ____buflen_929);// L362:L364 -extern int (____getdomainname_chk_warn_934) (char * (____buf_931), __size_t_57 ____buflen_932, __size_t_57 ____nreal_933);// L365:L370 +extern int (____getdomainname_chk_1074) (char * (____buf_1071), __size_t_59 ____buflen_1072, __size_t_59 ____nreal_1073);// L360:L361 +extern int (____getdomainname_alias_1077) (char * (____buf_1075), __size_t_59 ____buflen_1076);// L362:L364 +extern int (____getdomainname_chk_warn_1081) (char * (____buf_1078), __size_t_59 ____buflen_1079, __size_t_59 ____nreal_1080);// L365:L370 /* no function due to type errors in the function prototype */ -struct __forward_tag_reference_937 ;// L0 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -struct __forward_tag_reference_964 ;// L0 -struct __forward_tag_reference_964 ;// L0 -struct __forward_tag_reference_937 ;// L0 -// typedef moved to top of scope -struct ___IO_marker_967 ;// L156 -enum ____codecvt_result_975 ;// L176 -struct ___IO_FILE_976 ;// L241 - -struct ___IO_FILE_1000 ;// L241 -struct ___IO_FILE_complete_1031 ;// L241 - -// typedef moved to top of scope -// typedef moved to top of scope -struct __forward_tag_reference_1047 ;// L0 -extern struct __forward_tag_reference_1047 ___IO_2_1_stdin__1048;// L315 -extern struct __forward_tag_reference_1047 ___IO_2_1_stdout__1049;// L316 -extern struct __forward_tag_reference_1047 ___IO_2_1_stderr__1050;// L317 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern int (____underflow_1065) (___IO_FILE_1044 *);// L385 -extern int (____underflow_1066) (___IO_FILE_1045 *);// L385 -extern int (____uflow_1068) (___IO_FILE_1044 *);// L386 -extern int (____uflow_1069) (___IO_FILE_1045 *);// L386 -extern int (____overflow_1071) (___IO_FILE_1044 *, int );// L387 -extern int (____overflow_1072) (___IO_FILE_1045 *, int );// L387 -extern int (___IO_getc_1077) (___IO_FILE_1044 * (____fp_1074));// L429 -extern int (___IO_getc_1078) (___IO_FILE_1045 * (____fp_1075));// L429 -extern int (___IO_putc_1084) (int ____c_1080, ___IO_FILE_1044 * (____fp_1081));// L430 -extern int (___IO_putc_1085) (int ____c_1080, ___IO_FILE_1045 * (____fp_1082));// L430 -extern int (___IO_feof_1090) (___IO_FILE_1044 * (____fp_1087));// L431 -extern int (___IO_feof_1091) (___IO_FILE_1045 * (____fp_1088));// L431 -extern int (___IO_ferror_1096) (___IO_FILE_1044 * (____fp_1093));// L432 -extern int (___IO_ferror_1097) (___IO_FILE_1045 * (____fp_1094));// L432 -extern int (___IO_peekc_locked_1102) (___IO_FILE_1044 * (____fp_1099));// L434 -extern int (___IO_peekc_locked_1103) (___IO_FILE_1045 * (____fp_1100));// L434 -extern void (___IO_flockfile_1105) (___IO_FILE_1044 *);// L440 -extern void (___IO_flockfile_1106) (___IO_FILE_1045 *);// L440 -extern void (___IO_funlockfile_1108) (___IO_FILE_1044 *);// L441 -extern void (___IO_funlockfile_1109) (___IO_FILE_1045 *);// L441 -extern int (___IO_ftrylockfile_1111) (___IO_FILE_1044 *);// L442 -extern int (___IO_ftrylockfile_1112) (___IO_FILE_1045 *);// L442 -extern int (___IO_vfscanf_1114) (___IO_FILE_1044 * __restrict , const char * __restrict , ____gnuc_va_list_963 , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_1116) (___IO_FILE_1045 * __restrict , const char * __restrict , ____gnuc_va_list_963 , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_1120) (___IO_FILE_1044 * __restrict , const char * __restrict , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_1121) (___IO_FILE_1045 * __restrict , const char * __restrict , int * __restrict );// L459:L460 -extern int (___IO_vfprintf_1123) (___IO_FILE_1044 * __restrict , const char * __restrict , ____gnuc_va_list_963 );// L461:L462 -extern int (___IO_vfprintf_1125) (___IO_FILE_1045 * __restrict , const char * __restrict , ____gnuc_va_list_963 );// L461:L462 -extern int (___IO_vfprintf_1129) ();// L461:L462 -extern ____ssize_t_47 (___IO_padn_1130) (___IO_FILE_1044 *, int , ____ssize_t_47 );// L463 -extern ____ssize_t_47 (___IO_padn_1131) (___IO_FILE_1045 *, int , ____ssize_t_47 );// L463 -extern __size_t_57 (___IO_sgetn_1133) (___IO_FILE_1044 *, void *, __size_t_57 );// L464 -extern __size_t_57 (___IO_sgetn_1134) (___IO_FILE_1045 *, void *, __size_t_57 );// L464 -extern ____off64_t_22 (___IO_seekoff_1136) (___IO_FILE_1044 *, ____off64_t_22 , int , int );// L466 -extern ____off64_t_22 (___IO_seekoff_1137) (___IO_FILE_1045 *, ____off64_t_22 , int , int );// L466 -extern ____off64_t_22 (___IO_seekpos_1139) (___IO_FILE_1044 *, ____off64_t_22 , int );// L467 -extern ____off64_t_22 (___IO_seekpos_1140) (___IO_FILE_1045 *, ____off64_t_22 , int );// L467 -extern void (___IO_free_backup_area_1142) (___IO_FILE_1044 *);// L469 -extern void (___IO_free_backup_area_1143) (___IO_FILE_1045 *);// L469 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern struct ___IO_FILE_976 * (__stdin_1151);// L168 -extern struct ___IO_FILE_1000 * (__stdin_1152);// L168 -extern struct ___IO_FILE_976 * (__stdout_1154);// L169 -extern struct ___IO_FILE_1000 * (__stdout_1155);// L169 -extern struct ___IO_FILE_976 * (__stderr_1157);// L170 -extern struct ___IO_FILE_1000 * (__stderr_1158);// L170 -extern int (__remove_1161) (const char * (____filename_1160));// L178 -extern int (__rename_1164) (const char * (____old_1162), const char * (____new_1163));// L180 -extern int (__renameat_1169) (int ____oldfd_1165, const char * (____old_1166), int ____newfd_1167, const char * (____new_1168));// L185:L186 -extern __FILE_938 * ((__tmpfile_1170) (void ));// L195 -extern __FILE_938 * ((__tmpfile_1176) (void ));// L198 -extern __FILE_938 * ((__tmpfile_1174) (void ));// L195 -extern __FILE_938 * ((__tmpfile_1172) (void ));// L198 -extern char * ((__tmpnam_1179) (char * (____s_1178)));// L209 -extern char * ((__tmpnam_1180) (char * (____s_1178)));// L209 -extern char * ((__tmpnam_r_1182) (char * (____s_1181)));// L215 -extern char * ((__tmpnam_r_1183) (char * (____s_1181)));// L215 -extern char * ((__tempnam_1186) (const char * (____dir_1184), const char * (____pfx_1185)));// L227:L228 -extern char * ((__tempnam_1187) (const char * (____dir_1184), const char * (____pfx_1185)));// L227:L228 -extern int (__fclose_1190) (__FILE_938 * (____stream_1188));// L237 -extern int (__fclose_1192) (__FILE_938 * (____stream_1188));// L237 -extern int (__fflush_1196) (__FILE_938 * (____stream_1194));// L242 -extern int (__fflush_unlocked_1200) (__FILE_938 * (____stream_1198));// L252 -extern __FILE_938 * ((__fopen_1204) (const char * __restrict ____filename_1202, const char * __restrict ____modes_1203));// L272:L273 -extern __FILE_938 * ((__fopen_1206) (const char * __restrict ____filename_1202, const char * __restrict ____modes_1203));// L272:L273 -extern __FILE_938 * ((__fopen_1214) (const char * __restrict ____filename_1212, const char * __restrict ____modes_1213));// L283:L285 -extern __FILE_938 * ((__fopen_1216) (const char * __restrict ____filename_1212, const char * __restrict ____modes_1213));// L283:L285 -extern __FILE_938 * ((__freopen_1222) (const char * __restrict ____filename_1208, const char * __restrict ____modes_1209, __FILE_938 * __restrict ____stream_1210));// L278:L280 -extern __FILE_938 * ((__freopen_1228) (const char * __restrict ____filename_1208, const char * __restrict ____modes_1209, __FILE_938 * __restrict ____stream_1210));// L278:L280 -extern __FILE_938 * ((__freopen_1226) (const char * __restrict ____filename_1218, const char * __restrict ____modes_1219, __FILE_938 * __restrict ____stream_1220));// L286:L289 -extern __FILE_938 * ((__freopen_1224) (const char * __restrict ____filename_1218, const char * __restrict ____modes_1219, __FILE_938 * __restrict ____stream_1220));// L286:L289 -extern __FILE_938 * ((__fdopen_1232) (int ____fd_1230, const char * (____modes_1231)));// L306 -extern __FILE_938 * ((__fdopen_1234) (int ____fd_1230, const char * (____modes_1231)));// L306 -extern __FILE_938 * ((__fmemopen_1239) (void * (____s_1236), __size_t_57 ____len_1237, const char * (____modes_1238)));// L319:L320 -extern __FILE_938 * ((__fmemopen_1241) (void * (____s_1236), __size_t_57 ____len_1237, const char * (____modes_1238)));// L319:L320 -extern __FILE_938 * ((__open_memstream_1245) (char * (* (____bufloc_1243)), __size_t_57 * (____sizeloc_1244)));// L325 -extern __FILE_938 * ((__open_memstream_1247) (char * (* (____bufloc_1243)), __size_t_57 * (____sizeloc_1244)));// L325 -extern void (__setbuf_1252) (__FILE_938 * __restrict ____stream_1249, char * __restrict ____buf_1251);// L332 -extern void (__setbuf_1254) (__FILE_938 * __restrict ____stream_1249, char * __restrict ____buf_1251);// L332 -extern int (__setvbuf_1261) (__FILE_938 * __restrict ____stream_1256, char * __restrict ____buf_1258, int ____modes_1259, __size_t_57 ____n_1260);// L336:L337 -extern void (__setbuffer_1267) (__FILE_938 * __restrict ____stream_1263, char * __restrict ____buf_1265, __size_t_57 ____size_1266);// L343:L344 -extern void (__setlinebuf_1271) (__FILE_938 * (____stream_1269));// L347 -extern int (__fprintf_1276) (__FILE_938 * __restrict ____stream_1273, const char * __restrict ____format_1275, ... );// L356:L357 -extern int (__fprintf_1278) (__FILE_938 * __restrict ____stream_1273, const char * __restrict ____format_1275, ... );// L356:L357 -extern int (__printf_1281) (const char * __restrict ____format_1280, ... );// L362 -extern int (__sprintf_1284) (char * __restrict ____s_1282, const char * __restrict ____format_1283, ... );// L364:L365 -extern int (__vfprintf_1290) (__FILE_938 * __restrict ____s_1285, const char * __restrict ____format_1287, ____gnuc_va_list_963 ____arg_1288);// L371:L372 -extern int (__vprintf_1297) (const char * __restrict ____format_1294, ____gnuc_va_list_963 ____arg_1295);// L377 -extern int (__vsprintf_1303) (char * __restrict ____s_1299, const char * __restrict ____format_1300, ____gnuc_va_list_963 ____arg_1301);// L379:L380 -extern int (__snprintf_1308) (char * __restrict ____s_1305, __size_t_57 ____maxlen_1306, const char * __restrict ____format_1307, ... );// L386:L388 -extern int (__vsnprintf_1314) (char * __restrict ____s_1309, __size_t_57 ____maxlen_1310, const char * __restrict ____format_1311, ____gnuc_va_list_963 ____arg_1312);// L390:L392 -extern int (__vdprintf_1320) (int ____fd_1316, const char * __restrict ____fmt_1317, ____gnuc_va_list_963 ____arg_1318);// L412:L414 -extern int (__dprintf_1324) (int ____fd_1322, const char * __restrict ____fmt_1323, ... );// L415:L416 -extern int (__fscanf_1328) (__FILE_938 * __restrict ____stream_1325, const char * __restrict ____format_1327, ... );// L425:L426 -extern int (__fscanf_1330) (__FILE_938 * __restrict ____stream_1325, const char * __restrict ____format_1327, ... );// L425:L426 -extern int (__fscanf_1332) (__FILE_938 * __restrict ____stream_1325, const char * __restrict ____format_1327, ... );// L425:L426 -extern int (__fscanf_1334) (__FILE_938 * __restrict ____stream_1325, const char * __restrict ____format_1327, ... );// L425:L426 -extern int (__scanf_1337) (const char * __restrict ____format_1336, ... );// L431 -extern int (__scanf_1338) (const char * __restrict ____format_1336, ... );// L431 -extern int (__sscanf_1341) (const char * __restrict ____s_1339, const char * __restrict ____format_1340, ... );// L433:L434 - - - - - - - -extern int (__vfscanf_1369) (__FILE_938 * __restrict ____s_1364, const char * __restrict ____format_1366, ____gnuc_va_list_963 ____arg_1367);// L471:L473 -extern int (__vfscanf_1373) (__FILE_938 * __restrict ____s_1364, const char * __restrict ____format_1366, ____gnuc_va_list_963 ____arg_1367);// L471:L473 -extern int (__vscanf_1380) (const char * __restrict ____format_1377, ____gnuc_va_list_963 ____arg_1378);// L479:L480 -extern int (__vscanf_1382) (const char * __restrict ____format_1377, ____gnuc_va_list_963 ____arg_1378);// L479:L480 -extern int (__vsscanf_1388) (const char * __restrict ____s_1384, const char * __restrict ____format_1385, ____gnuc_va_list_963 ____arg_1386);// L483:L485 - - - - - -extern int (__fgetc_1423) (__FILE_938 * (____stream_1421));// L531 -extern int (__getc_1427) (__FILE_938 * (____stream_1425));// L532 -extern int (__getchar_1429) (void );// L538 -extern int (__getc_unlocked_1432) (__FILE_938 * (____stream_1430));// L550 -extern int (__getchar_unlocked_1434) (void );// L551 -extern int (__fgetc_unlocked_1437) (__FILE_938 * (____stream_1435));// L561 -extern int (__fputc_1442) (int ____c_1439, __FILE_938 * (____stream_1440));// L573 -extern int (__fputc_1444) (int ____c_1439, __FILE_938 * (____stream_1440));// L573 -extern int (__putc_1449) (int ____c_1446, __FILE_938 * (____stream_1447));// L574 -extern int (__putchar_1452) (int ____c_1451);// L580 -extern int (__fputc_unlocked_1456) (int ____c_1453, __FILE_938 * (____stream_1454));// L594 -extern int (__putc_unlocked_1461) (int ____c_1458, __FILE_938 * (____stream_1459));// L602 -extern int (__putchar_unlocked_1464) (int ____c_1463);// L603 -extern int (__getw_1467) (__FILE_938 * (____stream_1465));// L610 -extern int (__putw_1472) (int ____w_1469, __FILE_938 * (____stream_1470));// L613 -extern char * ((__fgets_1478) (char * __restrict ____s_1474, int ____n_1475, __FILE_938 * __restrict ____stream_1476));// L622:L623 -extern char * ((__fgets_1480) (char * __restrict ____s_1474, int ____n_1475, __FILE_938 * __restrict ____stream_1476));// L622:L623 -extern char * ((__fgets_1482) (char * __restrict ____s_1474, int ____n_1475, __FILE_938 * __restrict ____stream_1476));// L622:L623 -extern char * ((__fgets_1484) (char * __restrict ____s_1474, int ____n_1475, __FILE_938 * __restrict ____stream_1476));// L622:L623 -extern ____ssize_t_47 (____getdelim_1491) (char * (* __restrict ____lineptr_1486), __size_t_57 * __restrict ____n_1487, int ____delimiter_1488, __FILE_938 * __restrict ____stream_1489);// L665:L667 -extern ____ssize_t_47 (____getdelim_1493) (char * (* __restrict ____lineptr_1486), __size_t_57 * __restrict ____n_1487, int ____delimiter_1488, __FILE_938 * __restrict ____stream_1489);// L665:L667 -extern ____ssize_t_47 (__getdelim_1500) (char * (* __restrict ____lineptr_1495), __size_t_57 * __restrict ____n_1496, int ____delimiter_1497, __FILE_938 * __restrict ____stream_1498);// L668:L670 -extern ____ssize_t_47 (__getdelim_1502) (char * (* __restrict ____lineptr_1495), __size_t_57 * __restrict ____n_1496, int ____delimiter_1497, __FILE_938 * __restrict ____stream_1498);// L668:L670 -extern ____ssize_t_47 (__getline_1508) (char * (* __restrict ____lineptr_1504), __size_t_57 * __restrict ____n_1505, __FILE_938 * __restrict ____stream_1506);// L678:L680 -extern ____ssize_t_47 (__getline_1510) (char * (* __restrict ____lineptr_1504), __size_t_57 * __restrict ____n_1505, __FILE_938 * __restrict ____stream_1506);// L678:L680 -extern int (__fputs_1515) (const char * __restrict ____s_1512, __FILE_938 * __restrict ____stream_1513);// L689 -extern int (__fputs_1517) (const char * __restrict ____s_1512, __FILE_938 * __restrict ____stream_1513);// L689 -extern int (__puts_1520) (const char * (____s_1519));// L695 -extern int (__ungetc_1524) (int ____c_1521, __FILE_938 * (____stream_1522));// L702 -extern int (__fseek_1562) (__FILE_938 * (____stream_1558), long int ____off_1560, int ____whence_1561);// L749 -extern int (__fseek_1564) (__FILE_938 * (____stream_1558), long int ____off_1560, int ____whence_1561);// L749 -extern long int (__ftell_1568) (__FILE_938 * (____stream_1566));// L754 -extern long int (__ftell_1570) (__FILE_938 * (____stream_1566));// L754 -extern void (__rewind_1574) (__FILE_938 * (____stream_1572));// L759 -extern int (__fseeko_1580) (__FILE_938 * (____stream_1576), ____off_t_21 ____off_1578, int ____whence_1579);// L773 -extern int (__fseeko_1588) (__FILE_938 * (____stream_1584), ____off64_t_22 ____off_1586, int ____whence_1587);// L781:L783 -extern ____off_t_21 (__ftello_1596) (__FILE_938 * (____stream_1582));// L778 -extern ____off_t_21 (__ftello_1592) (__FILE_938 * (____stream_1582));// L778 -extern int (__fgetpos_1602) (__FILE_938 * __restrict ____stream_1598, __fpos_t_1147 * __restrict ____pos_1600);// L798 -extern ____off64_t_22 (__ftello_1594) (__FILE_938 * (____stream_1590));// L784 -extern int (__fgetpos_1614) (__FILE_938 * __restrict ____stream_1610, __fpos_t_1149 * __restrict ____pos_1612);// L806:L807 -extern int (__fsetpos_1622) (__FILE_938 * (____stream_1606), const __fpos_t_1147 * (____pos_1608));// L803 -extern int (__fsetpos_1626) (__FILE_938 * (____stream_1618), const __fpos_t_1149 * (____pos_1620));// L808:L809 -extern void (__clearerr_1632) (__FILE_938 * (____stream_1630));// L826 -extern int (__feof_1636) (__FILE_938 * (____stream_1634));// L828 -extern int (__feof_1638) (__FILE_938 * (____stream_1634));// L828 -extern int (__ferror_1642) (__FILE_938 * (____stream_1640));// L830 -extern int (__ferror_1644) (__FILE_938 * (____stream_1640));// L830 -extern void (__clearerr_unlocked_1648) (__FILE_938 * (____stream_1646));// L835 -extern int (__feof_unlocked_1652) (__FILE_938 * (____stream_1650));// L836 -extern int (__feof_unlocked_1654) (__FILE_938 * (____stream_1650));// L836 -extern int (__ferror_unlocked_1658) (__FILE_938 * (____stream_1656));// L837 -extern int (__ferror_unlocked_1660) (__FILE_938 * (____stream_1656));// L837 -extern void (__perror_1663) (const char * (____s_1662));// L846 -extern void (__perror_1664) (const char * (____s_1662));// L846 -extern int __sys_nerr_1665;// L26 - -extern int (__fileno_1671) (__FILE_938 * (____stream_1667));// L858 -extern int (__fileno_1669) (__FILE_938 * (____stream_1667));// L858 -extern int (__fileno_unlocked_1677) (__FILE_938 * (____stream_1673));// L863 -extern int (__fileno_unlocked_1675) (__FILE_938 * (____stream_1673));// L863 -extern __FILE_938 * ((__popen_1681) (const char * (____command_1679), const char * (____modes_1680)));// L872 -extern __FILE_938 * ((__popen_1683) (const char * (____command_1679), const char * (____modes_1680)));// L872 -extern int (__pclose_1687) (__FILE_938 * (____stream_1685));// L878 -extern char * ((__ctermid_1690) (char * (____s_1689)));// L884 -extern void (__flockfile_1693) (__FILE_938 * (____stream_1691));// L912 -extern int (__ftrylockfile_1697) (__FILE_938 * (____stream_1695));// L916 -extern int (__ftrylockfile_1699) (__FILE_938 * (____stream_1695));// L916 -extern void (__funlockfile_1703) (__FILE_938 * (____stream_1701));// L919 +struct __forward_tag_reference_1084 ;// L0 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +struct __forward_tag_reference_1113 ;// L0 +struct __forward_tag_reference_1113 ;// L0 +struct __forward_tag_reference_1084 ;// L0 +// typedef moved to top of scope +struct ___IO_marker_1116 ;// L156 +enum ____codecvt_result_1124 ;// L176 +struct ___IO_FILE_1125 ;// L241 + +struct ___IO_FILE_1150 ;// L241 +struct ___IO_FILE_complete_1183 ;// L241 + +// typedef moved to top of scope +// typedef moved to top of scope +struct __forward_tag_reference_1200 ;// L0 +extern struct __forward_tag_reference_1200 ___IO_2_1_stdin__1201;// L315 +extern struct __forward_tag_reference_1200 ___IO_2_1_stdout__1202;// L316 +extern struct __forward_tag_reference_1200 ___IO_2_1_stderr__1203;// L317 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern int (____underflow_1222) (___IO_FILE_1197 *);// L385 +extern int (____underflow_1223) (___IO_FILE_1198 *);// L385 +extern int (____uflow_1225) (___IO_FILE_1197 *);// L386 +extern int (____uflow_1226) (___IO_FILE_1198 *);// L386 +extern int (____overflow_1228) (___IO_FILE_1197 *, int );// L387 +extern int (____overflow_1229) (___IO_FILE_1198 *, int );// L387 +extern int (___IO_getc_1234) (___IO_FILE_1197 * (____fp_1231));// L429 +extern int (___IO_getc_1235) (___IO_FILE_1198 * (____fp_1232));// L429 +extern int (___IO_putc_1241) (int ____c_1237, ___IO_FILE_1197 * (____fp_1238));// L430 +extern int (___IO_putc_1242) (int ____c_1237, ___IO_FILE_1198 * (____fp_1239));// L430 +extern int (___IO_feof_1247) (___IO_FILE_1197 * (____fp_1244));// L431 +extern int (___IO_feof_1248) (___IO_FILE_1198 * (____fp_1245));// L431 +extern int (___IO_ferror_1253) (___IO_FILE_1197 * (____fp_1250));// L432 +extern int (___IO_ferror_1254) (___IO_FILE_1198 * (____fp_1251));// L432 +extern int (___IO_peekc_locked_1259) (___IO_FILE_1197 * (____fp_1256));// L434 +extern int (___IO_peekc_locked_1260) (___IO_FILE_1198 * (____fp_1257));// L434 +extern void (___IO_flockfile_1262) (___IO_FILE_1197 *);// L440 +extern void (___IO_flockfile_1263) (___IO_FILE_1198 *);// L440 +extern void (___IO_funlockfile_1265) (___IO_FILE_1197 *);// L441 +extern void (___IO_funlockfile_1266) (___IO_FILE_1198 *);// L441 +extern int (___IO_ftrylockfile_1268) (___IO_FILE_1197 *);// L442 +extern int (___IO_ftrylockfile_1269) (___IO_FILE_1198 *);// L442 +extern int (___IO_vfscanf_1271) (___IO_FILE_1197 * __restrict , const char * __restrict , ____gnuc_va_list_1112 , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_1273) (___IO_FILE_1198 * __restrict , const char * __restrict , ____gnuc_va_list_1112 , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_1277) (___IO_FILE_1197 * __restrict , const char * __restrict , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_1278) (___IO_FILE_1198 * __restrict , const char * __restrict , int * __restrict );// L459:L460 +extern int (___IO_vfprintf_1280) (___IO_FILE_1197 * __restrict , const char * __restrict , ____gnuc_va_list_1112 );// L461:L462 +extern int (___IO_vfprintf_1282) (___IO_FILE_1198 * __restrict , const char * __restrict , ____gnuc_va_list_1112 );// L461:L462 +extern int (___IO_vfprintf_1286) ();// L461:L462 +extern ____ssize_t_47 (___IO_padn_1287) (___IO_FILE_1197 *, int , ____ssize_t_47 );// L463 +extern ____ssize_t_47 (___IO_padn_1288) (___IO_FILE_1198 *, int , ____ssize_t_47 );// L463 +extern __size_t_59 (___IO_sgetn_1291) (___IO_FILE_1197 *, void *, __size_t_59 );// L464 +extern __size_t_59 (___IO_sgetn_1292) (___IO_FILE_1198 *, void *, __size_t_59 );// L464 +extern ____off64_t_22 (___IO_seekoff_1294) (___IO_FILE_1197 *, ____off64_t_22 , int , int );// L466 +extern ____off64_t_22 (___IO_seekoff_1295) (___IO_FILE_1198 *, ____off64_t_22 , int , int );// L466 +extern ____off64_t_22 (___IO_seekpos_1298) (___IO_FILE_1197 *, ____off64_t_22 , int );// L467 +extern ____off64_t_22 (___IO_seekpos_1299) (___IO_FILE_1198 *, ____off64_t_22 , int );// L467 +extern void (___IO_free_backup_area_1302) (___IO_FILE_1197 *);// L469 +extern void (___IO_free_backup_area_1303) (___IO_FILE_1198 *);// L469 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern struct ___IO_FILE_1125 * (__stdin_1311);// L168 +extern struct ___IO_FILE_1150 * (__stdin_1312);// L168 +extern struct ___IO_FILE_1125 * (__stdout_1314);// L169 +extern struct ___IO_FILE_1150 * (__stdout_1315);// L169 +extern struct ___IO_FILE_1125 * (__stderr_1317);// L170 +extern struct ___IO_FILE_1150 * (__stderr_1318);// L170 +extern int (__remove_1321) (const char * (____filename_1320));// L178 +extern int (__rename_1324) (const char * (____old_1322), const char * (____new_1323));// L180 +extern int (__renameat_1329) (int ____oldfd_1325, const char * (____old_1326), int ____newfd_1327, const char * (____new_1328));// L185:L186 +extern __FILE_1085 * ((__tmpfile_1330) (void ));// L195 +extern __FILE_1085 * ((__tmpfile_1336) (void ));// L198 +extern __FILE_1085 * ((__tmpfile_1334) (void ));// L195 +extern __FILE_1085 * ((__tmpfile_1332) (void ));// L198 +extern char * ((__tmpnam_1339) (char * (____s_1338)));// L209 +extern char * ((__tmpnam_1340) (char * (____s_1338)));// L209 +extern char * ((__tmpnam_r_1342) (char * (____s_1341)));// L215 +extern char * ((__tmpnam_r_1343) (char * (____s_1341)));// L215 +extern char * ((__tempnam_1346) (const char * (____dir_1344), const char * (____pfx_1345)));// L227:L228 +extern char * ((__tempnam_1347) (const char * (____dir_1344), const char * (____pfx_1345)));// L227:L228 +extern int (__fclose_1350) (__FILE_1085 * (____stream_1348));// L237 +extern int (__fclose_1352) (__FILE_1085 * (____stream_1348));// L237 +extern int (__fflush_1356) (__FILE_1085 * (____stream_1354));// L242 +extern int (__fflush_unlocked_1360) (__FILE_1085 * (____stream_1358));// L252 +extern __FILE_1085 * ((__fopen_1364) (const char * __restrict ____filename_1362, const char * __restrict ____modes_1363));// L272:L273 +extern __FILE_1085 * ((__fopen_1366) (const char * __restrict ____filename_1362, const char * __restrict ____modes_1363));// L272:L273 +extern __FILE_1085 * ((__fopen_1374) (const char * __restrict ____filename_1372, const char * __restrict ____modes_1373));// L283:L285 +extern __FILE_1085 * ((__fopen_1376) (const char * __restrict ____filename_1372, const char * __restrict ____modes_1373));// L283:L285 +extern __FILE_1085 * ((__freopen_1382) (const char * __restrict ____filename_1368, const char * __restrict ____modes_1369, __FILE_1085 * __restrict ____stream_1370));// L278:L280 +extern __FILE_1085 * ((__freopen_1388) (const char * __restrict ____filename_1368, const char * __restrict ____modes_1369, __FILE_1085 * __restrict ____stream_1370));// L278:L280 +extern __FILE_1085 * ((__freopen_1386) (const char * __restrict ____filename_1378, const char * __restrict ____modes_1379, __FILE_1085 * __restrict ____stream_1380));// L286:L289 +extern __FILE_1085 * ((__freopen_1384) (const char * __restrict ____filename_1378, const char * __restrict ____modes_1379, __FILE_1085 * __restrict ____stream_1380));// L286:L289 +extern __FILE_1085 * ((__fdopen_1392) (int ____fd_1390, const char * (____modes_1391)));// L306 +extern __FILE_1085 * ((__fdopen_1394) (int ____fd_1390, const char * (____modes_1391)));// L306 +extern __FILE_1085 * ((__fmemopen_1399) (void * (____s_1396), __size_t_59 ____len_1397, const char * (____modes_1398)));// L319:L320 +extern __FILE_1085 * ((__fmemopen_1401) (void * (____s_1396), __size_t_59 ____len_1397, const char * (____modes_1398)));// L319:L320 +extern __FILE_1085 * ((__open_memstream_1405) (char * (* (____bufloc_1403)), __size_t_59 * (____sizeloc_1404)));// L325 +extern __FILE_1085 * ((__open_memstream_1407) (char * (* (____bufloc_1403)), __size_t_59 * (____sizeloc_1404)));// L325 +extern void (__setbuf_1412) (__FILE_1085 * __restrict ____stream_1409, char * __restrict ____buf_1411);// L332 +extern void (__setbuf_1414) (__FILE_1085 * __restrict ____stream_1409, char * __restrict ____buf_1411);// L332 +extern int (__setvbuf_1421) (__FILE_1085 * __restrict ____stream_1416, char * __restrict ____buf_1418, int ____modes_1419, __size_t_59 ____n_1420);// L336:L337 +extern void (__setbuffer_1427) (__FILE_1085 * __restrict ____stream_1423, char * __restrict ____buf_1425, __size_t_59 ____size_1426);// L343:L344 +extern void (__setlinebuf_1431) (__FILE_1085 * (____stream_1429));// L347 +extern int (__fprintf_1436) (__FILE_1085 * __restrict ____stream_1433, const char * __restrict ____format_1435, ... );// L356:L357 +extern int (__fprintf_1438) (__FILE_1085 * __restrict ____stream_1433, const char * __restrict ____format_1435, ... );// L356:L357 +extern int (__printf_1441) (const char * __restrict ____format_1440, ... );// L362 +extern int (__sprintf_1444) (char * __restrict ____s_1442, const char * __restrict ____format_1443, ... );// L364:L365 +extern int (__vfprintf_1450) (__FILE_1085 * __restrict ____s_1445, const char * __restrict ____format_1447, ____gnuc_va_list_1112 ____arg_1448);// L371:L372 +extern int (__vprintf_1457) (const char * __restrict ____format_1454, ____gnuc_va_list_1112 ____arg_1455);// L377 +extern int (__vsprintf_1463) (char * __restrict ____s_1459, const char * __restrict ____format_1460, ____gnuc_va_list_1112 ____arg_1461);// L379:L380 +extern int (__snprintf_1468) (char * __restrict ____s_1465, __size_t_59 ____maxlen_1466, const char * __restrict ____format_1467, ... );// L386:L388 +extern int (__vsnprintf_1474) (char * __restrict ____s_1469, __size_t_59 ____maxlen_1470, const char * __restrict ____format_1471, ____gnuc_va_list_1112 ____arg_1472);// L390:L392 +extern int (__vdprintf_1480) (int ____fd_1476, const char * __restrict ____fmt_1477, ____gnuc_va_list_1112 ____arg_1478);// L412:L414 +extern int (__dprintf_1484) (int ____fd_1482, const char * __restrict ____fmt_1483, ... );// L415:L416 +extern int (__fscanf_1488) (__FILE_1085 * __restrict ____stream_1485, const char * __restrict ____format_1487, ... );// L425:L426 +extern int (__fscanf_1490) (__FILE_1085 * __restrict ____stream_1485, const char * __restrict ____format_1487, ... );// L425:L426 +extern int (__fscanf_1492) (__FILE_1085 * __restrict ____stream_1485, const char * __restrict ____format_1487, ... );// L425:L426 +extern int (__fscanf_1494) (__FILE_1085 * __restrict ____stream_1485, const char * __restrict ____format_1487, ... );// L425:L426 +extern int (__scanf_1497) (const char * __restrict ____format_1496, ... );// L431 +extern int (__scanf_1498) (const char * __restrict ____format_1496, ... );// L431 +extern int (__sscanf_1501) (const char * __restrict ____s_1499, const char * __restrict ____format_1500, ... );// L433:L434 + + + + + + + +extern int (__vfscanf_1529) (__FILE_1085 * __restrict ____s_1524, const char * __restrict ____format_1526, ____gnuc_va_list_1112 ____arg_1527);// L471:L473 +extern int (__vfscanf_1533) (__FILE_1085 * __restrict ____s_1524, const char * __restrict ____format_1526, ____gnuc_va_list_1112 ____arg_1527);// L471:L473 +extern int (__vscanf_1540) (const char * __restrict ____format_1537, ____gnuc_va_list_1112 ____arg_1538);// L479:L480 +extern int (__vscanf_1542) (const char * __restrict ____format_1537, ____gnuc_va_list_1112 ____arg_1538);// L479:L480 +extern int (__vsscanf_1548) (const char * __restrict ____s_1544, const char * __restrict ____format_1545, ____gnuc_va_list_1112 ____arg_1546);// L483:L485 + + + + + +extern int (__fgetc_1583) (__FILE_1085 * (____stream_1581));// L531 +extern int (__getc_1587) (__FILE_1085 * (____stream_1585));// L532 +extern int (__getchar_1589) (void );// L538 +extern int (__getc_unlocked_1592) (__FILE_1085 * (____stream_1590));// L550 +extern int (__getchar_unlocked_1594) (void );// L551 +extern int (__fgetc_unlocked_1597) (__FILE_1085 * (____stream_1595));// L561 +extern int (__fputc_1602) (int ____c_1599, __FILE_1085 * (____stream_1600));// L573 +extern int (__fputc_1604) (int ____c_1599, __FILE_1085 * (____stream_1600));// L573 +extern int (__putc_1609) (int ____c_1606, __FILE_1085 * (____stream_1607));// L574 +extern int (__putchar_1612) (int ____c_1611);// L580 +extern int (__fputc_unlocked_1616) (int ____c_1613, __FILE_1085 * (____stream_1614));// L594 +extern int (__putc_unlocked_1621) (int ____c_1618, __FILE_1085 * (____stream_1619));// L602 +extern int (__putchar_unlocked_1624) (int ____c_1623);// L603 +extern int (__getw_1627) (__FILE_1085 * (____stream_1625));// L610 +extern int (__putw_1632) (int ____w_1629, __FILE_1085 * (____stream_1630));// L613 +extern char * ((__fgets_1638) (char * __restrict ____s_1634, int ____n_1635, __FILE_1085 * __restrict ____stream_1636));// L622:L623 +extern char * ((__fgets_1640) (char * __restrict ____s_1634, int ____n_1635, __FILE_1085 * __restrict ____stream_1636));// L622:L623 +extern char * ((__fgets_1642) (char * __restrict ____s_1634, int ____n_1635, __FILE_1085 * __restrict ____stream_1636));// L622:L623 +extern char * ((__fgets_1644) (char * __restrict ____s_1634, int ____n_1635, __FILE_1085 * __restrict ____stream_1636));// L622:L623 +extern ____ssize_t_47 (____getdelim_1651) (char * (* __restrict ____lineptr_1646), __size_t_59 * __restrict ____n_1647, int ____delimiter_1648, __FILE_1085 * __restrict ____stream_1649);// L665:L667 +extern ____ssize_t_47 (____getdelim_1655) (char * (* __restrict ____lineptr_1646), __size_t_59 * __restrict ____n_1647, int ____delimiter_1648, __FILE_1085 * __restrict ____stream_1649);// L665:L667 +extern ____ssize_t_47 (__getdelim_1664) (char * (* __restrict ____lineptr_1659), __size_t_59 * __restrict ____n_1660, int ____delimiter_1661, __FILE_1085 * __restrict ____stream_1662);// L668:L670 +extern ____ssize_t_47 (__getdelim_1668) (char * (* __restrict ____lineptr_1659), __size_t_59 * __restrict ____n_1660, int ____delimiter_1661, __FILE_1085 * __restrict ____stream_1662);// L668:L670 +extern ____ssize_t_47 (__getline_1676) (char * (* __restrict ____lineptr_1672), __size_t_59 * __restrict ____n_1673, __FILE_1085 * __restrict ____stream_1674);// L678:L680 +extern ____ssize_t_47 (__getline_1680) (char * (* __restrict ____lineptr_1672), __size_t_59 * __restrict ____n_1673, __FILE_1085 * __restrict ____stream_1674);// L678:L680 +extern int (__fputs_1687) (const char * __restrict ____s_1684, __FILE_1085 * __restrict ____stream_1685);// L689 +extern int (__fputs_1689) (const char * __restrict ____s_1684, __FILE_1085 * __restrict ____stream_1685);// L689 +extern int (__puts_1692) (const char * (____s_1691));// L695 +extern int (__ungetc_1696) (int ____c_1693, __FILE_1085 * (____stream_1694));// L702 +extern int (__fseek_1734) (__FILE_1085 * (____stream_1730), long int ____off_1732, int ____whence_1733);// L749 +extern int (__fseek_1736) (__FILE_1085 * (____stream_1730), long int ____off_1732, int ____whence_1733);// L749 +extern long int (__ftell_1740) (__FILE_1085 * (____stream_1738));// L754 +extern long int (__ftell_1742) (__FILE_1085 * (____stream_1738));// L754 +extern void (__rewind_1746) (__FILE_1085 * (____stream_1744));// L759 +extern int (__fseeko_1753) (__FILE_1085 * (____stream_1748), ____off_t_21 ____off_1750, int ____whence_1752);// L773 +extern int (__fseeko_1764) (__FILE_1085 * (____stream_1759), ____off64_t_22 ____off_1761, int ____whence_1763);// L781:L783 +extern ____off_t_21 (__ftello_1778) (__FILE_1085 * (____stream_1757));// L778 +extern ____off_t_21 (__ftello_1770) (__FILE_1085 * (____stream_1757));// L778 +extern int (__fgetpos_1786) (__FILE_1085 * __restrict ____stream_1782, __fpos_t_1307 * __restrict ____pos_1784);// L798 +extern ____off64_t_22 (__ftello_1774) (__FILE_1085 * (____stream_1768));// L784 +extern int (__fgetpos_1798) (__FILE_1085 * __restrict ____stream_1794, __fpos_t_1309 * __restrict ____pos_1796);// L806:L807 +extern int (__fsetpos_1806) (__FILE_1085 * (____stream_1790), const __fpos_t_1307 * (____pos_1792));// L803 +extern int (__fsetpos_1810) (__FILE_1085 * (____stream_1802), const __fpos_t_1309 * (____pos_1804));// L808:L809 +extern void (__clearerr_1816) (__FILE_1085 * (____stream_1814));// L826 +extern int (__feof_1820) (__FILE_1085 * (____stream_1818));// L828 +extern int (__feof_1822) (__FILE_1085 * (____stream_1818));// L828 +extern int (__ferror_1826) (__FILE_1085 * (____stream_1824));// L830 +extern int (__ferror_1828) (__FILE_1085 * (____stream_1824));// L830 +extern void (__clearerr_unlocked_1832) (__FILE_1085 * (____stream_1830));// L835 +extern int (__feof_unlocked_1836) (__FILE_1085 * (____stream_1834));// L836 +extern int (__feof_unlocked_1838) (__FILE_1085 * (____stream_1834));// L836 +extern int (__ferror_unlocked_1842) (__FILE_1085 * (____stream_1840));// L837 +extern int (__ferror_unlocked_1844) (__FILE_1085 * (____stream_1840));// L837 +extern void (__perror_1847) (const char * (____s_1846));// L846 +extern void (__perror_1848) (const char * (____s_1846));// L846 +extern int __sys_nerr_1849;// L26 + +extern int (__fileno_1855) (__FILE_1085 * (____stream_1851));// L858 +extern int (__fileno_1853) (__FILE_1085 * (____stream_1851));// L858 +extern int (__fileno_unlocked_1861) (__FILE_1085 * (____stream_1857));// L863 +extern int (__fileno_unlocked_1859) (__FILE_1085 * (____stream_1857));// L863 +extern __FILE_1085 * ((__popen_1865) (const char * (____command_1863), const char * (____modes_1864)));// L872 +extern __FILE_1085 * ((__popen_1867) (const char * (____command_1863), const char * (____modes_1864)));// L872 +extern int (__pclose_1871) (__FILE_1085 * (____stream_1869));// L878 +extern char * ((__ctermid_1874) (char * (____s_1873)));// L884 +extern void (__flockfile_1877) (__FILE_1085 * (____stream_1875));// L912 +extern int (__ftrylockfile_1881) (__FILE_1085 * (____stream_1879));// L916 +extern int (__ftrylockfile_1883) (__FILE_1085 * (____stream_1879));// L916 +extern void (__funlockfile_1887) (__FILE_1085 * (____stream_1885));// L919 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ @@ -3468,252 +3866,252 @@ extern void (__funlockfile_1703) (__FILE_938 * (____stream_1701));// L919 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____sprintf_chk_1735) (char * __restrict ____s_1731, int ____flag_1732, __size_t_57 ____slen_1733, const char * __restrict ____format_1734, ... );// L23:L24 -extern int (____vsprintf_chk_1742) (char * __restrict ____s_1736, int ____flag_1737, __size_t_57 ____slen_1738, const char * __restrict ____format_1739, ____gnuc_va_list_963 ____ap_1740);// L25:L27 +extern int (____sprintf_chk_1919) (char * __restrict ____s_1915, int ____flag_1916, __size_t_59 ____slen_1917, const char * __restrict ____format_1918, ... );// L23:L24 +extern int (____vsprintf_chk_1926) (char * __restrict ____s_1920, int ____flag_1921, __size_t_59 ____slen_1922, const char * __restrict ____format_1923, ____gnuc_va_list_1112 ____ap_1924);// L25:L27 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____snprintf_chk_1756) (char * __restrict ____s_1751, __size_t_57 ____n_1752, int ____flag_1753, __size_t_57 ____slen_1754, const char * __restrict ____format_1755, ... );// L52:L54 -extern int (____vsnprintf_chk_1764) (char * __restrict ____s_1757, __size_t_57 ____n_1758, int ____flag_1759, __size_t_57 ____slen_1760, const char * __restrict ____format_1761, ____gnuc_va_list_963 ____ap_1762);// L55:L57 +extern int (____snprintf_chk_1940) (char * __restrict ____s_1935, __size_t_59 ____n_1936, int ____flag_1937, __size_t_59 ____slen_1938, const char * __restrict ____format_1939, ... );// L52:L54 +extern int (____vsnprintf_chk_1948) (char * __restrict ____s_1941, __size_t_59 ____n_1942, int ____flag_1943, __size_t_59 ____slen_1944, const char * __restrict ____format_1945, ____gnuc_va_list_1112 ____ap_1946);// L55:L57 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____fprintf_chk_1779) (__FILE_938 * __restrict ____stream_1775, int ____flag_1777, const char * __restrict ____format_1778, ... );// L85:L86 -extern int (____printf_chk_1783) (int ____flag_1781, const char * __restrict ____format_1782, ... );// L87 -extern int (____vfprintf_chk_1790) (__FILE_938 * __restrict ____stream_1784, int ____flag_1786, const char * __restrict ____format_1787, ____gnuc_va_list_963 ____ap_1788);// L88:L89 -extern int (____vprintf_chk_1798) (int ____flag_1794, const char * __restrict ____format_1795, ____gnuc_va_list_963 ____ap_1796);// L90:L91 +extern int (____fprintf_chk_1963) (__FILE_1085 * __restrict ____stream_1959, int ____flag_1961, const char * __restrict ____format_1962, ... );// L85:L86 +extern int (____printf_chk_1967) (int ____flag_1965, const char * __restrict ____format_1966, ... );// L87 +extern int (____vfprintf_chk_1974) (__FILE_1085 * __restrict ____stream_1968, int ____flag_1970, const char * __restrict ____format_1971, ____gnuc_va_list_1112 ____ap_1972);// L88:L89 +extern int (____vprintf_chk_1982) (int ____flag_1978, const char * __restrict ____format_1979, ____gnuc_va_list_1112 ____ap_1980);// L90:L91 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____dprintf_chk_1820) (int ____fd_1817, int ____flag_1818, const char * __restrict ____fmt_1819, ... );// L131:L132 -extern int (____vdprintf_chk_1826) (int ____fd_1821, int ____flag_1822, const char * __restrict ____fmt_1823, ____gnuc_va_list_963 ____arg_1824);// L133:L135 +extern int (____dprintf_chk_2004) (int ____fd_2001, int ____flag_2002, const char * __restrict ____fmt_2003, ... );// L131:L132 +extern int (____vdprintf_chk_2010) (int ____fd_2005, int ____flag_2006, const char * __restrict ____fmt_2007, ____gnuc_va_list_1112 ____arg_2008);// L133:L135 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern char * ((____fgets_chk_1840) (char * __restrict ____s_1835, __size_t_57 ____size_1836, int ____n_1837, __FILE_938 * __restrict ____stream_1838));// L241:L242 -extern char * ((____fgets_chk_1842) (char * __restrict ____s_1835, __size_t_57 ____size_1836, int ____n_1837, __FILE_938 * __restrict ____stream_1838));// L241:L242 -extern char * ((____fgets_chk_1844) (char * __restrict ____s_1835, __size_t_57 ____size_1836, int ____n_1837, __FILE_938 * __restrict ____stream_1838));// L241:L242 -extern char * ((____fgets_alias_1850) (char * __restrict ____s_1846, int ____n_1847, __FILE_938 * __restrict ____stream_1848));// L243:L245 -extern char * ((____fgets_chk_warn_1857) (char * __restrict ____s_1852, __size_t_57 ____size_1853, int ____n_1854, __FILE_938 * __restrict ____stream_1855));// L246:L250 +extern char * ((____fgets_chk_2024) (char * __restrict ____s_2019, __size_t_59 ____size_2020, int ____n_2021, __FILE_1085 * __restrict ____stream_2022));// L241:L242 +extern char * ((____fgets_chk_2026) (char * __restrict ____s_2019, __size_t_59 ____size_2020, int ____n_2021, __FILE_1085 * __restrict ____stream_2022));// L241:L242 +extern char * ((____fgets_chk_2028) (char * __restrict ____s_2019, __size_t_59 ____size_2020, int ____n_2021, __FILE_1085 * __restrict ____stream_2022));// L241:L242 +extern char * ((____fgets_alias_2034) (char * __restrict ____s_2030, int ____n_2031, __FILE_1085 * __restrict ____stream_2032));// L243:L245 +extern char * ((____fgets_chk_warn_2041) (char * __restrict ____s_2036, __size_t_59 ____size_2037, int ____n_2038, __FILE_1085 * __restrict ____stream_2039));// L246:L250 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_937 ;// L0 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -struct __forward_tag_reference_964 ;// L0 -struct __forward_tag_reference_964 ;// L0 -struct __forward_tag_reference_937 ;// L0 -// typedef moved to top of scope -struct ___IO_marker_1961 ;// L156 -enum ____codecvt_result_1969 ;// L176 -struct ___IO_FILE_1970 ;// L241 - -struct ___IO_FILE_1994 ;// L241 -struct ___IO_FILE_complete_2025 ;// L241 - -// typedef moved to top of scope -// typedef moved to top of scope -struct __forward_tag_reference_1047 ;// L0 -extern struct __forward_tag_reference_1047 ___IO_2_1_stdin__2041;// L315 -extern struct __forward_tag_reference_1047 ___IO_2_1_stdout__2042;// L316 -extern struct __forward_tag_reference_1047 ___IO_2_1_stderr__2043;// L317 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern int (____underflow_2058) (___IO_FILE_2038 *);// L385 -extern int (____underflow_2059) (___IO_FILE_2039 *);// L385 -extern int (____uflow_2061) (___IO_FILE_2038 *);// L386 -extern int (____uflow_2062) (___IO_FILE_2039 *);// L386 -extern int (____overflow_2064) (___IO_FILE_2038 *, int );// L387 -extern int (____overflow_2065) (___IO_FILE_2039 *, int );// L387 -extern int (___IO_getc_2070) (___IO_FILE_2038 * (____fp_2067));// L429 -extern int (___IO_getc_2071) (___IO_FILE_2039 * (____fp_2068));// L429 -extern int (___IO_putc_2077) (int ____c_2073, ___IO_FILE_2038 * (____fp_2074));// L430 -extern int (___IO_putc_2078) (int ____c_2073, ___IO_FILE_2039 * (____fp_2075));// L430 -extern int (___IO_feof_2083) (___IO_FILE_2038 * (____fp_2080));// L431 -extern int (___IO_feof_2084) (___IO_FILE_2039 * (____fp_2081));// L431 -extern int (___IO_ferror_2089) (___IO_FILE_2038 * (____fp_2086));// L432 -extern int (___IO_ferror_2090) (___IO_FILE_2039 * (____fp_2087));// L432 -extern int (___IO_peekc_locked_2095) (___IO_FILE_2038 * (____fp_2092));// L434 -extern int (___IO_peekc_locked_2096) (___IO_FILE_2039 * (____fp_2093));// L434 -extern void (___IO_flockfile_2098) (___IO_FILE_2038 *);// L440 -extern void (___IO_flockfile_2099) (___IO_FILE_2039 *);// L440 -extern void (___IO_funlockfile_2101) (___IO_FILE_2038 *);// L441 -extern void (___IO_funlockfile_2102) (___IO_FILE_2039 *);// L441 -extern int (___IO_ftrylockfile_2104) (___IO_FILE_2038 *);// L442 -extern int (___IO_ftrylockfile_2105) (___IO_FILE_2039 *);// L442 -extern int (___IO_vfscanf_2107) (___IO_FILE_2038 * __restrict , const char * __restrict , ____gnuc_va_list_1959 , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_2109) (___IO_FILE_2039 * __restrict , const char * __restrict , ____gnuc_va_list_1959 , int * __restrict );// L459:L460 - - -extern int (___IO_vfprintf_2116) (___IO_FILE_2038 * __restrict , const char * __restrict , ____gnuc_va_list_1959 );// L461:L462 -extern int (___IO_vfprintf_2118) (___IO_FILE_2039 * __restrict , const char * __restrict , ____gnuc_va_list_1959 );// L461:L462 - -extern ____ssize_t_47 (___IO_padn_2123) (___IO_FILE_2038 *, int , ____ssize_t_47 );// L463 -extern ____ssize_t_47 (___IO_padn_2124) (___IO_FILE_2039 *, int , ____ssize_t_47 );// L463 -extern __size_t_57 (___IO_sgetn_2126) (___IO_FILE_2038 *, void *, __size_t_57 );// L464 -extern __size_t_57 (___IO_sgetn_2127) (___IO_FILE_2039 *, void *, __size_t_57 );// L464 -extern ____off64_t_22 (___IO_seekoff_2129) (___IO_FILE_2038 *, ____off64_t_22 , int , int );// L466 -extern ____off64_t_22 (___IO_seekoff_2130) (___IO_FILE_2039 *, ____off64_t_22 , int , int );// L466 -extern ____off64_t_22 (___IO_seekpos_2132) (___IO_FILE_2038 *, ____off64_t_22 , int );// L467 -extern ____off64_t_22 (___IO_seekpos_2133) (___IO_FILE_2039 *, ____off64_t_22 , int );// L467 -extern void (___IO_free_backup_area_2135) (___IO_FILE_2038 *);// L469 -extern void (___IO_free_backup_area_2136) (___IO_FILE_2039 *);// L469 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern struct ___IO_FILE_1970 * (__stdin_2144);// L168 -extern struct ___IO_FILE_1994 * (__stdin_2145);// L168 -extern struct ___IO_FILE_1970 * (__stdout_2147);// L169 -extern struct ___IO_FILE_1994 * (__stdout_2148);// L169 -extern struct ___IO_FILE_1970 * (__stderr_2150);// L170 -extern struct ___IO_FILE_1994 * (__stderr_2151);// L170 -extern int (__remove_2154) (const char * (____filename_2153));// L178 -extern int (__rename_2157) (const char * (____old_2155), const char * (____new_2156));// L180 -extern int (__renameat_2162) (int ____oldfd_2158, const char * (____old_2159), int ____newfd_2160, const char * (____new_2161));// L185:L186 -extern __FILE_1935 * ((__tmpfile_2163) (void ));// L195 -extern __FILE_1935 * ((__tmpfile_2165) (void ));// L198 -extern __FILE_1935 * ((__tmpfile_2167) (void ));// L195 -extern __FILE_1935 * ((__tmpfile_2169) (void ));// L198 -extern char * ((__tmpnam_2172) (char * (____s_2171)));// L209 -extern char * ((__tmpnam_2173) (char * (____s_2171)));// L209 -extern char * ((__tmpnam_r_2175) (char * (____s_2174)));// L215 -extern char * ((__tmpnam_r_2176) (char * (____s_2174)));// L215 -extern char * ((__tempnam_2179) (const char * (____dir_2177), const char * (____pfx_2178)));// L227:L228 -extern char * ((__tempnam_2180) (const char * (____dir_2177), const char * (____pfx_2178)));// L227:L228 -extern int (__fclose_2183) (__FILE_1935 * (____stream_2181));// L237 -extern int (__fclose_2185) (__FILE_1935 * (____stream_2181));// L237 -extern int (__fflush_2189) (__FILE_1935 * (____stream_2187));// L242 -extern int (__fflush_unlocked_2193) (__FILE_1935 * (____stream_2191));// L252 -extern __FILE_1935 * ((__fopen_2197) (const char * __restrict ____filename_2195, const char * __restrict ____modes_2196));// L272:L273 -extern __FILE_1935 * ((__fopen_2199) (const char * __restrict ____filename_2195, const char * __restrict ____modes_2196));// L272:L273 -extern __FILE_1935 * ((__fopen_2207) (const char * __restrict ____filename_2205, const char * __restrict ____modes_2206));// L283:L285 -extern __FILE_1935 * ((__fopen_2209) (const char * __restrict ____filename_2205, const char * __restrict ____modes_2206));// L283:L285 -extern __FILE_1935 * ((__freopen_2215) (const char * __restrict ____filename_2201, const char * __restrict ____modes_2202, __FILE_1935 * __restrict ____stream_2203));// L278:L280 -extern __FILE_1935 * ((__freopen_2217) (const char * __restrict ____filename_2211, const char * __restrict ____modes_2212, __FILE_1935 * __restrict ____stream_2213));// L286:L289 -extern __FILE_1935 * ((__freopen_2219) (const char * __restrict ____filename_2211, const char * __restrict ____modes_2212, __FILE_1935 * __restrict ____stream_2213));// L286:L289 -extern __FILE_1935 * ((__freopen_2221) (const char * __restrict ____filename_2201, const char * __restrict ____modes_2202, __FILE_1935 * __restrict ____stream_2203));// L278:L280 -extern __FILE_1935 * ((__fdopen_2225) (int ____fd_2223, const char * (____modes_2224)));// L306 -extern __FILE_1935 * ((__fdopen_2227) (int ____fd_2223, const char * (____modes_2224)));// L306 -extern __FILE_1935 * ((__fmemopen_2232) (void * (____s_2229), __size_t_57 ____len_2230, const char * (____modes_2231)));// L319:L320 -extern __FILE_1935 * ((__fmemopen_2234) (void * (____s_2229), __size_t_57 ____len_2230, const char * (____modes_2231)));// L319:L320 -extern __FILE_1935 * ((__open_memstream_2238) (char * (* (____bufloc_2236)), __size_t_57 * (____sizeloc_2237)));// L325 -extern __FILE_1935 * ((__open_memstream_2240) (char * (* (____bufloc_2236)), __size_t_57 * (____sizeloc_2237)));// L325 -extern void (__setbuf_2245) (__FILE_1935 * __restrict ____stream_2242, char * __restrict ____buf_2244);// L332 -extern void (__setbuf_2247) (__FILE_1935 * __restrict ____stream_2242, char * __restrict ____buf_2244);// L332 -extern int (__setvbuf_2254) (__FILE_1935 * __restrict ____stream_2249, char * __restrict ____buf_2251, int ____modes_2252, __size_t_57 ____n_2253);// L336:L337 -extern void (__setbuffer_2260) (__FILE_1935 * __restrict ____stream_2256, char * __restrict ____buf_2258, __size_t_57 ____size_2259);// L343:L344 -extern void (__setlinebuf_2264) (__FILE_1935 * (____stream_2262));// L347 -extern int (__fprintf_2269) (__FILE_1935 * __restrict ____stream_2266, const char * __restrict ____format_2268, ... );// L356:L357 -extern int (__fprintf_2271) (__FILE_1935 * __restrict ____stream_2266, const char * __restrict ____format_2268, ... );// L356:L357 -extern int (__printf_2274) (const char * __restrict ____format_2273, ... );// L362 -extern int (__sprintf_2277) (char * __restrict ____s_2275, const char * __restrict ____format_2276, ... );// L364:L365 -extern int (__vfprintf_2283) (__FILE_1935 * __restrict ____s_2278, const char * __restrict ____format_2280, ____gnuc_va_list_1959 ____arg_2281);// L371:L372 -extern int (__vprintf_2290) (const char * __restrict ____format_2287, ____gnuc_va_list_1959 ____arg_2288);// L377 -extern int (__vsprintf_2296) (char * __restrict ____s_2292, const char * __restrict ____format_2293, ____gnuc_va_list_1959 ____arg_2294);// L379:L380 -extern int (__snprintf_2301) (char * __restrict ____s_2298, __size_t_57 ____maxlen_2299, const char * __restrict ____format_2300, ... );// L386:L388 -extern int (__vsnprintf_2307) (char * __restrict ____s_2302, __size_t_57 ____maxlen_2303, const char * __restrict ____format_2304, ____gnuc_va_list_1959 ____arg_2305);// L390:L392 -extern int (__vdprintf_2313) (int ____fd_2309, const char * __restrict ____fmt_2310, ____gnuc_va_list_1959 ____arg_2311);// L412:L414 -extern int (__dprintf_2317) (int ____fd_2315, const char * __restrict ____fmt_2316, ... );// L415:L416 -extern int (__fscanf_2321) (__FILE_1935 * __restrict ____stream_2318, const char * __restrict ____format_2320, ... );// L425:L426 -extern int (__fscanf_2323) (__FILE_1935 * __restrict ____stream_2318, const char * __restrict ____format_2320, ... );// L425:L426 -extern int (__fscanf_2325) (__FILE_1935 * __restrict ____stream_2318, const char * __restrict ____format_2320, ... );// L425:L426 -extern int (__fscanf_2327) (__FILE_1935 * __restrict ____stream_2318, const char * __restrict ____format_2320, ... );// L425:L426 -extern int (__scanf_2330) (const char * __restrict ____format_2329, ... );// L431 -extern int (__scanf_2331) (const char * __restrict ____format_2329, ... );// L431 -extern int (__sscanf_2334) (const char * __restrict ____s_2332, const char * __restrict ____format_2333, ... );// L433:L434 - - - - - - - -extern int (__vfscanf_2362) (__FILE_1935 * __restrict ____s_2357, const char * __restrict ____format_2359, ____gnuc_va_list_1959 ____arg_2360);// L471:L473 -extern int (__vfscanf_2366) (__FILE_1935 * __restrict ____s_2357, const char * __restrict ____format_2359, ____gnuc_va_list_1959 ____arg_2360);// L471:L473 -extern int (__vscanf_2373) (const char * __restrict ____format_2370, ____gnuc_va_list_1959 ____arg_2371);// L479:L480 -extern int (__vscanf_2375) (const char * __restrict ____format_2370, ____gnuc_va_list_1959 ____arg_2371);// L479:L480 -extern int (__vsscanf_2381) (const char * __restrict ____s_2377, const char * __restrict ____format_2378, ____gnuc_va_list_1959 ____arg_2379);// L483:L485 - - - - - -extern int (__fgetc_2416) (__FILE_1935 * (____stream_2414));// L531 -extern int (__getc_2420) (__FILE_1935 * (____stream_2418));// L532 -extern int (__getchar_2422) (void );// L538 -extern int (__getc_unlocked_2425) (__FILE_1935 * (____stream_2423));// L550 -extern int (__getchar_unlocked_2427) (void );// L551 -extern int (__fgetc_unlocked_2430) (__FILE_1935 * (____stream_2428));// L561 -extern int (__fputc_2435) (int ____c_2432, __FILE_1935 * (____stream_2433));// L573 -extern int (__fputc_2437) (int ____c_2432, __FILE_1935 * (____stream_2433));// L573 -extern int (__putc_2442) (int ____c_2439, __FILE_1935 * (____stream_2440));// L574 -extern int (__putchar_2445) (int ____c_2444);// L580 -extern int (__fputc_unlocked_2449) (int ____c_2446, __FILE_1935 * (____stream_2447));// L594 -extern int (__putc_unlocked_2454) (int ____c_2451, __FILE_1935 * (____stream_2452));// L602 -extern int (__putchar_unlocked_2457) (int ____c_2456);// L603 -extern int (__getw_2460) (__FILE_1935 * (____stream_2458));// L610 -extern int (__putw_2465) (int ____w_2462, __FILE_1935 * (____stream_2463));// L613 -extern char * ((__fgets_2471) (char * __restrict ____s_2467, int ____n_2468, __FILE_1935 * __restrict ____stream_2469));// L622:L623 -extern char * ((__fgets_2473) (char * __restrict ____s_2467, int ____n_2468, __FILE_1935 * __restrict ____stream_2469));// L622:L623 -extern char * ((__fgets_2475) (char * __restrict ____s_2467, int ____n_2468, __FILE_1935 * __restrict ____stream_2469));// L622:L623 -extern char * ((__fgets_2477) (char * __restrict ____s_2467, int ____n_2468, __FILE_1935 * __restrict ____stream_2469));// L622:L623 -extern ____ssize_t_47 (____getdelim_2484) (char * (* __restrict ____lineptr_2479), __size_t_57 * __restrict ____n_2480, int ____delimiter_2481, __FILE_1935 * __restrict ____stream_2482);// L665:L667 -extern ____ssize_t_47 (____getdelim_2486) (char * (* __restrict ____lineptr_2479), __size_t_57 * __restrict ____n_2480, int ____delimiter_2481, __FILE_1935 * __restrict ____stream_2482);// L665:L667 -extern ____ssize_t_47 (__getdelim_2493) (char * (* __restrict ____lineptr_2488), __size_t_57 * __restrict ____n_2489, int ____delimiter_2490, __FILE_1935 * __restrict ____stream_2491);// L668:L670 -extern ____ssize_t_47 (__getdelim_2495) (char * (* __restrict ____lineptr_2488), __size_t_57 * __restrict ____n_2489, int ____delimiter_2490, __FILE_1935 * __restrict ____stream_2491);// L668:L670 -extern ____ssize_t_47 (__getline_2501) (char * (* __restrict ____lineptr_2497), __size_t_57 * __restrict ____n_2498, __FILE_1935 * __restrict ____stream_2499);// L678:L680 -extern ____ssize_t_47 (__getline_2503) (char * (* __restrict ____lineptr_2497), __size_t_57 * __restrict ____n_2498, __FILE_1935 * __restrict ____stream_2499);// L678:L680 -extern int (__fputs_2508) (const char * __restrict ____s_2505, __FILE_1935 * __restrict ____stream_2506);// L689 -extern int (__fputs_2510) (const char * __restrict ____s_2505, __FILE_1935 * __restrict ____stream_2506);// L689 -extern int (__puts_2513) (const char * (____s_2512));// L695 -extern int (__ungetc_2517) (int ____c_2514, __FILE_1935 * (____stream_2515));// L702 -extern int (__fseek_2555) (__FILE_1935 * (____stream_2551), long int ____off_2553, int ____whence_2554);// L749 -extern int (__fseek_2557) (__FILE_1935 * (____stream_2551), long int ____off_2553, int ____whence_2554);// L749 -extern long int (__ftell_2561) (__FILE_1935 * (____stream_2559));// L754 -extern long int (__ftell_2563) (__FILE_1935 * (____stream_2559));// L754 -extern void (__rewind_2567) (__FILE_1935 * (____stream_2565));// L759 -extern int (__fseeko_2573) (__FILE_1935 * (____stream_2569), ____off_t_21 ____off_2571, int ____whence_2572);// L773 -extern int (__fseeko_2581) (__FILE_1935 * (____stream_2577), ____off64_t_22 ____off_2579, int ____whence_2580);// L781:L783 -extern ____off_t_21 (__ftello_2585) (__FILE_1935 * (____stream_2575));// L778 -extern ____off_t_21 (__ftello_2589) (__FILE_1935 * (____stream_2575));// L778 -extern int (__fgetpos_2595) (__FILE_1935 * __restrict ____stream_2591, __fpos_t_2140 * __restrict ____pos_2593);// L798 -extern ____off64_t_22 (__ftello_2587) (__FILE_1935 * (____stream_2583));// L784 -extern int (__fgetpos_2607) (__FILE_1935 * __restrict ____stream_2603, __fpos_t_2142 * __restrict ____pos_2605);// L806:L807 -extern int (__fsetpos_2615) (__FILE_1935 * (____stream_2599), const __fpos_t_2140 * (____pos_2601));// L803 -extern int (__fsetpos_2619) (__FILE_1935 * (____stream_2611), const __fpos_t_2142 * (____pos_2613));// L808:L809 -extern void (__clearerr_2625) (__FILE_1935 * (____stream_2623));// L826 -extern int (__feof_2629) (__FILE_1935 * (____stream_2627));// L828 -extern int (__feof_2631) (__FILE_1935 * (____stream_2627));// L828 -extern int (__ferror_2635) (__FILE_1935 * (____stream_2633));// L830 -extern int (__ferror_2637) (__FILE_1935 * (____stream_2633));// L830 -extern void (__clearerr_unlocked_2641) (__FILE_1935 * (____stream_2639));// L835 -extern int (__feof_unlocked_2645) (__FILE_1935 * (____stream_2643));// L836 -extern int (__feof_unlocked_2647) (__FILE_1935 * (____stream_2643));// L836 -extern int (__ferror_unlocked_2651) (__FILE_1935 * (____stream_2649));// L837 -extern int (__ferror_unlocked_2653) (__FILE_1935 * (____stream_2649));// L837 -extern void (__perror_2656) (const char * (____s_2655));// L846 -extern void (__perror_2657) (const char * (____s_2655));// L846 -extern int __sys_nerr_2658;// L26 - -extern int (__fileno_2664) (__FILE_1935 * (____stream_2660));// L858 -extern int (__fileno_2662) (__FILE_1935 * (____stream_2660));// L858 -extern int (__fileno_unlocked_2670) (__FILE_1935 * (____stream_2666));// L863 -extern int (__fileno_unlocked_2668) (__FILE_1935 * (____stream_2666));// L863 -extern __FILE_1935 * ((__popen_2674) (const char * (____command_2672), const char * (____modes_2673)));// L872 -extern __FILE_1935 * ((__popen_2676) (const char * (____command_2672), const char * (____modes_2673)));// L872 -extern int (__pclose_2680) (__FILE_1935 * (____stream_2678));// L878 -extern char * ((__ctermid_2683) (char * (____s_2682)));// L884 -extern void (__flockfile_2686) (__FILE_1935 * (____stream_2684));// L912 -extern int (__ftrylockfile_2690) (__FILE_1935 * (____stream_2688));// L916 -extern int (__ftrylockfile_2692) (__FILE_1935 * (____stream_2688));// L916 -extern void (__funlockfile_2696) (__FILE_1935 * (____stream_2694));// L919 +struct __forward_tag_reference_1084 ;// L0 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +struct __forward_tag_reference_1113 ;// L0 +struct __forward_tag_reference_1113 ;// L0 +struct __forward_tag_reference_1084 ;// L0 +// typedef moved to top of scope +struct ___IO_marker_2147 ;// L156 +enum ____codecvt_result_2155 ;// L176 +struct ___IO_FILE_2156 ;// L241 + +struct ___IO_FILE_2181 ;// L241 +struct ___IO_FILE_complete_2214 ;// L241 + +// typedef moved to top of scope +// typedef moved to top of scope +struct __forward_tag_reference_1200 ;// L0 +extern struct __forward_tag_reference_1200 ___IO_2_1_stdin__2231;// L315 +extern struct __forward_tag_reference_1200 ___IO_2_1_stdout__2232;// L316 +extern struct __forward_tag_reference_1200 ___IO_2_1_stderr__2233;// L317 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern int (____underflow_2252) (___IO_FILE_2228 *);// L385 +extern int (____underflow_2253) (___IO_FILE_2229 *);// L385 +extern int (____uflow_2255) (___IO_FILE_2228 *);// L386 +extern int (____uflow_2256) (___IO_FILE_2229 *);// L386 +extern int (____overflow_2258) (___IO_FILE_2228 *, int );// L387 +extern int (____overflow_2259) (___IO_FILE_2229 *, int );// L387 +extern int (___IO_getc_2264) (___IO_FILE_2228 * (____fp_2261));// L429 +extern int (___IO_getc_2265) (___IO_FILE_2229 * (____fp_2262));// L429 +extern int (___IO_putc_2271) (int ____c_2267, ___IO_FILE_2228 * (____fp_2268));// L430 +extern int (___IO_putc_2272) (int ____c_2267, ___IO_FILE_2229 * (____fp_2269));// L430 +extern int (___IO_feof_2277) (___IO_FILE_2228 * (____fp_2274));// L431 +extern int (___IO_feof_2278) (___IO_FILE_2229 * (____fp_2275));// L431 +extern int (___IO_ferror_2283) (___IO_FILE_2228 * (____fp_2280));// L432 +extern int (___IO_ferror_2284) (___IO_FILE_2229 * (____fp_2281));// L432 +extern int (___IO_peekc_locked_2289) (___IO_FILE_2228 * (____fp_2286));// L434 +extern int (___IO_peekc_locked_2290) (___IO_FILE_2229 * (____fp_2287));// L434 +extern void (___IO_flockfile_2292) (___IO_FILE_2228 *);// L440 +extern void (___IO_flockfile_2293) (___IO_FILE_2229 *);// L440 +extern void (___IO_funlockfile_2295) (___IO_FILE_2228 *);// L441 +extern void (___IO_funlockfile_2296) (___IO_FILE_2229 *);// L441 +extern int (___IO_ftrylockfile_2298) (___IO_FILE_2228 *);// L442 +extern int (___IO_ftrylockfile_2299) (___IO_FILE_2229 *);// L442 +extern int (___IO_vfscanf_2301) (___IO_FILE_2228 * __restrict , const char * __restrict , ____gnuc_va_list_2145 , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_2303) (___IO_FILE_2229 * __restrict , const char * __restrict , ____gnuc_va_list_2145 , int * __restrict );// L459:L460 + + +extern int (___IO_vfprintf_2310) (___IO_FILE_2228 * __restrict , const char * __restrict , ____gnuc_va_list_2145 );// L461:L462 +extern int (___IO_vfprintf_2312) (___IO_FILE_2229 * __restrict , const char * __restrict , ____gnuc_va_list_2145 );// L461:L462 + +extern ____ssize_t_47 (___IO_padn_2317) (___IO_FILE_2228 *, int , ____ssize_t_47 );// L463 +extern ____ssize_t_47 (___IO_padn_2318) (___IO_FILE_2229 *, int , ____ssize_t_47 );// L463 +extern __size_t_59 (___IO_sgetn_2321) (___IO_FILE_2228 *, void *, __size_t_59 );// L464 +extern __size_t_59 (___IO_sgetn_2322) (___IO_FILE_2229 *, void *, __size_t_59 );// L464 +extern ____off64_t_22 (___IO_seekoff_2324) (___IO_FILE_2228 *, ____off64_t_22 , int , int );// L466 +extern ____off64_t_22 (___IO_seekoff_2325) (___IO_FILE_2229 *, ____off64_t_22 , int , int );// L466 +extern ____off64_t_22 (___IO_seekpos_2328) (___IO_FILE_2228 *, ____off64_t_22 , int );// L467 +extern ____off64_t_22 (___IO_seekpos_2329) (___IO_FILE_2229 *, ____off64_t_22 , int );// L467 +extern void (___IO_free_backup_area_2332) (___IO_FILE_2228 *);// L469 +extern void (___IO_free_backup_area_2333) (___IO_FILE_2229 *);// L469 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern struct ___IO_FILE_2156 * (__stdin_2341);// L168 +extern struct ___IO_FILE_2181 * (__stdin_2342);// L168 +extern struct ___IO_FILE_2156 * (__stdout_2344);// L169 +extern struct ___IO_FILE_2181 * (__stdout_2345);// L169 +extern struct ___IO_FILE_2156 * (__stderr_2347);// L170 +extern struct ___IO_FILE_2181 * (__stderr_2348);// L170 +extern int (__remove_2351) (const char * (____filename_2350));// L178 +extern int (__rename_2354) (const char * (____old_2352), const char * (____new_2353));// L180 +extern int (__renameat_2359) (int ____oldfd_2355, const char * (____old_2356), int ____newfd_2357, const char * (____new_2358));// L185:L186 +extern __FILE_2119 * ((__tmpfile_2360) (void ));// L195 +extern __FILE_2119 * ((__tmpfile_2362) (void ));// L198 +extern __FILE_2119 * ((__tmpfile_2364) (void ));// L195 +extern __FILE_2119 * ((__tmpfile_2366) (void ));// L198 +extern char * ((__tmpnam_2369) (char * (____s_2368)));// L209 +extern char * ((__tmpnam_2370) (char * (____s_2368)));// L209 +extern char * ((__tmpnam_r_2372) (char * (____s_2371)));// L215 +extern char * ((__tmpnam_r_2373) (char * (____s_2371)));// L215 +extern char * ((__tempnam_2376) (const char * (____dir_2374), const char * (____pfx_2375)));// L227:L228 +extern char * ((__tempnam_2377) (const char * (____dir_2374), const char * (____pfx_2375)));// L227:L228 +extern int (__fclose_2380) (__FILE_2119 * (____stream_2378));// L237 +extern int (__fclose_2382) (__FILE_2119 * (____stream_2378));// L237 +extern int (__fflush_2386) (__FILE_2119 * (____stream_2384));// L242 +extern int (__fflush_unlocked_2390) (__FILE_2119 * (____stream_2388));// L252 +extern __FILE_2119 * ((__fopen_2394) (const char * __restrict ____filename_2392, const char * __restrict ____modes_2393));// L272:L273 +extern __FILE_2119 * ((__fopen_2396) (const char * __restrict ____filename_2392, const char * __restrict ____modes_2393));// L272:L273 +extern __FILE_2119 * ((__fopen_2404) (const char * __restrict ____filename_2402, const char * __restrict ____modes_2403));// L283:L285 +extern __FILE_2119 * ((__fopen_2406) (const char * __restrict ____filename_2402, const char * __restrict ____modes_2403));// L283:L285 +extern __FILE_2119 * ((__freopen_2412) (const char * __restrict ____filename_2398, const char * __restrict ____modes_2399, __FILE_2119 * __restrict ____stream_2400));// L278:L280 +extern __FILE_2119 * ((__freopen_2414) (const char * __restrict ____filename_2408, const char * __restrict ____modes_2409, __FILE_2119 * __restrict ____stream_2410));// L286:L289 +extern __FILE_2119 * ((__freopen_2416) (const char * __restrict ____filename_2408, const char * __restrict ____modes_2409, __FILE_2119 * __restrict ____stream_2410));// L286:L289 +extern __FILE_2119 * ((__freopen_2418) (const char * __restrict ____filename_2398, const char * __restrict ____modes_2399, __FILE_2119 * __restrict ____stream_2400));// L278:L280 +extern __FILE_2119 * ((__fdopen_2422) (int ____fd_2420, const char * (____modes_2421)));// L306 +extern __FILE_2119 * ((__fdopen_2424) (int ____fd_2420, const char * (____modes_2421)));// L306 +extern __FILE_2119 * ((__fmemopen_2429) (void * (____s_2426), __size_t_59 ____len_2427, const char * (____modes_2428)));// L319:L320 +extern __FILE_2119 * ((__fmemopen_2431) (void * (____s_2426), __size_t_59 ____len_2427, const char * (____modes_2428)));// L319:L320 +extern __FILE_2119 * ((__open_memstream_2435) (char * (* (____bufloc_2433)), __size_t_59 * (____sizeloc_2434)));// L325 +extern __FILE_2119 * ((__open_memstream_2437) (char * (* (____bufloc_2433)), __size_t_59 * (____sizeloc_2434)));// L325 +extern void (__setbuf_2442) (__FILE_2119 * __restrict ____stream_2439, char * __restrict ____buf_2441);// L332 +extern void (__setbuf_2444) (__FILE_2119 * __restrict ____stream_2439, char * __restrict ____buf_2441);// L332 +extern int (__setvbuf_2451) (__FILE_2119 * __restrict ____stream_2446, char * __restrict ____buf_2448, int ____modes_2449, __size_t_59 ____n_2450);// L336:L337 +extern void (__setbuffer_2457) (__FILE_2119 * __restrict ____stream_2453, char * __restrict ____buf_2455, __size_t_59 ____size_2456);// L343:L344 +extern void (__setlinebuf_2461) (__FILE_2119 * (____stream_2459));// L347 +extern int (__fprintf_2466) (__FILE_2119 * __restrict ____stream_2463, const char * __restrict ____format_2465, ... );// L356:L357 +extern int (__fprintf_2468) (__FILE_2119 * __restrict ____stream_2463, const char * __restrict ____format_2465, ... );// L356:L357 +extern int (__printf_2471) (const char * __restrict ____format_2470, ... );// L362 +extern int (__sprintf_2474) (char * __restrict ____s_2472, const char * __restrict ____format_2473, ... );// L364:L365 +extern int (__vfprintf_2480) (__FILE_2119 * __restrict ____s_2475, const char * __restrict ____format_2477, ____gnuc_va_list_2145 ____arg_2478);// L371:L372 +extern int (__vprintf_2487) (const char * __restrict ____format_2484, ____gnuc_va_list_2145 ____arg_2485);// L377 +extern int (__vsprintf_2493) (char * __restrict ____s_2489, const char * __restrict ____format_2490, ____gnuc_va_list_2145 ____arg_2491);// L379:L380 +extern int (__snprintf_2498) (char * __restrict ____s_2495, __size_t_59 ____maxlen_2496, const char * __restrict ____format_2497, ... );// L386:L388 +extern int (__vsnprintf_2504) (char * __restrict ____s_2499, __size_t_59 ____maxlen_2500, const char * __restrict ____format_2501, ____gnuc_va_list_2145 ____arg_2502);// L390:L392 +extern int (__vdprintf_2510) (int ____fd_2506, const char * __restrict ____fmt_2507, ____gnuc_va_list_2145 ____arg_2508);// L412:L414 +extern int (__dprintf_2514) (int ____fd_2512, const char * __restrict ____fmt_2513, ... );// L415:L416 +extern int (__fscanf_2518) (__FILE_2119 * __restrict ____stream_2515, const char * __restrict ____format_2517, ... );// L425:L426 +extern int (__fscanf_2520) (__FILE_2119 * __restrict ____stream_2515, const char * __restrict ____format_2517, ... );// L425:L426 +extern int (__fscanf_2522) (__FILE_2119 * __restrict ____stream_2515, const char * __restrict ____format_2517, ... );// L425:L426 +extern int (__fscanf_2524) (__FILE_2119 * __restrict ____stream_2515, const char * __restrict ____format_2517, ... );// L425:L426 +extern int (__scanf_2527) (const char * __restrict ____format_2526, ... );// L431 +extern int (__scanf_2528) (const char * __restrict ____format_2526, ... );// L431 +extern int (__sscanf_2531) (const char * __restrict ____s_2529, const char * __restrict ____format_2530, ... );// L433:L434 + + + + + + + +extern int (__vfscanf_2559) (__FILE_2119 * __restrict ____s_2554, const char * __restrict ____format_2556, ____gnuc_va_list_2145 ____arg_2557);// L471:L473 +extern int (__vfscanf_2563) (__FILE_2119 * __restrict ____s_2554, const char * __restrict ____format_2556, ____gnuc_va_list_2145 ____arg_2557);// L471:L473 +extern int (__vscanf_2570) (const char * __restrict ____format_2567, ____gnuc_va_list_2145 ____arg_2568);// L479:L480 +extern int (__vscanf_2572) (const char * __restrict ____format_2567, ____gnuc_va_list_2145 ____arg_2568);// L479:L480 +extern int (__vsscanf_2578) (const char * __restrict ____s_2574, const char * __restrict ____format_2575, ____gnuc_va_list_2145 ____arg_2576);// L483:L485 + + + + + +extern int (__fgetc_2613) (__FILE_2119 * (____stream_2611));// L531 +extern int (__getc_2617) (__FILE_2119 * (____stream_2615));// L532 +extern int (__getchar_2619) (void );// L538 +extern int (__getc_unlocked_2622) (__FILE_2119 * (____stream_2620));// L550 +extern int (__getchar_unlocked_2624) (void );// L551 +extern int (__fgetc_unlocked_2627) (__FILE_2119 * (____stream_2625));// L561 +extern int (__fputc_2632) (int ____c_2629, __FILE_2119 * (____stream_2630));// L573 +extern int (__fputc_2634) (int ____c_2629, __FILE_2119 * (____stream_2630));// L573 +extern int (__putc_2639) (int ____c_2636, __FILE_2119 * (____stream_2637));// L574 +extern int (__putchar_2642) (int ____c_2641);// L580 +extern int (__fputc_unlocked_2646) (int ____c_2643, __FILE_2119 * (____stream_2644));// L594 +extern int (__putc_unlocked_2651) (int ____c_2648, __FILE_2119 * (____stream_2649));// L602 +extern int (__putchar_unlocked_2654) (int ____c_2653);// L603 +extern int (__getw_2657) (__FILE_2119 * (____stream_2655));// L610 +extern int (__putw_2662) (int ____w_2659, __FILE_2119 * (____stream_2660));// L613 +extern char * ((__fgets_2668) (char * __restrict ____s_2664, int ____n_2665, __FILE_2119 * __restrict ____stream_2666));// L622:L623 +extern char * ((__fgets_2670) (char * __restrict ____s_2664, int ____n_2665, __FILE_2119 * __restrict ____stream_2666));// L622:L623 +extern char * ((__fgets_2672) (char * __restrict ____s_2664, int ____n_2665, __FILE_2119 * __restrict ____stream_2666));// L622:L623 +extern char * ((__fgets_2674) (char * __restrict ____s_2664, int ____n_2665, __FILE_2119 * __restrict ____stream_2666));// L622:L623 +extern ____ssize_t_47 (____getdelim_2681) (char * (* __restrict ____lineptr_2676), __size_t_59 * __restrict ____n_2677, int ____delimiter_2678, __FILE_2119 * __restrict ____stream_2679);// L665:L667 +extern ____ssize_t_47 (____getdelim_2685) (char * (* __restrict ____lineptr_2676), __size_t_59 * __restrict ____n_2677, int ____delimiter_2678, __FILE_2119 * __restrict ____stream_2679);// L665:L667 +extern ____ssize_t_47 (__getdelim_2694) (char * (* __restrict ____lineptr_2689), __size_t_59 * __restrict ____n_2690, int ____delimiter_2691, __FILE_2119 * __restrict ____stream_2692);// L668:L670 +extern ____ssize_t_47 (__getdelim_2698) (char * (* __restrict ____lineptr_2689), __size_t_59 * __restrict ____n_2690, int ____delimiter_2691, __FILE_2119 * __restrict ____stream_2692);// L668:L670 +extern ____ssize_t_47 (__getline_2706) (char * (* __restrict ____lineptr_2702), __size_t_59 * __restrict ____n_2703, __FILE_2119 * __restrict ____stream_2704);// L678:L680 +extern ____ssize_t_47 (__getline_2710) (char * (* __restrict ____lineptr_2702), __size_t_59 * __restrict ____n_2703, __FILE_2119 * __restrict ____stream_2704);// L678:L680 +extern int (__fputs_2717) (const char * __restrict ____s_2714, __FILE_2119 * __restrict ____stream_2715);// L689 +extern int (__fputs_2719) (const char * __restrict ____s_2714, __FILE_2119 * __restrict ____stream_2715);// L689 +extern int (__puts_2722) (const char * (____s_2721));// L695 +extern int (__ungetc_2726) (int ____c_2723, __FILE_2119 * (____stream_2724));// L702 +extern int (__fseek_2764) (__FILE_2119 * (____stream_2760), long int ____off_2762, int ____whence_2763);// L749 +extern int (__fseek_2766) (__FILE_2119 * (____stream_2760), long int ____off_2762, int ____whence_2763);// L749 +extern long int (__ftell_2770) (__FILE_2119 * (____stream_2768));// L754 +extern long int (__ftell_2772) (__FILE_2119 * (____stream_2768));// L754 +extern void (__rewind_2776) (__FILE_2119 * (____stream_2774));// L759 +extern int (__fseeko_2783) (__FILE_2119 * (____stream_2778), ____off_t_21 ____off_2780, int ____whence_2782);// L773 +extern int (__fseeko_2794) (__FILE_2119 * (____stream_2789), ____off64_t_22 ____off_2791, int ____whence_2793);// L781:L783 +extern ____off_t_21 (__ftello_2800) (__FILE_2119 * (____stream_2787));// L778 +extern ____off_t_21 (__ftello_2808) (__FILE_2119 * (____stream_2787));// L778 +extern int (__fgetpos_2816) (__FILE_2119 * __restrict ____stream_2812, __fpos_t_2337 * __restrict ____pos_2814);// L798 +extern ____off64_t_22 (__ftello_2804) (__FILE_2119 * (____stream_2798));// L784 +extern int (__fgetpos_2828) (__FILE_2119 * __restrict ____stream_2824, __fpos_t_2339 * __restrict ____pos_2826);// L806:L807 +extern int (__fsetpos_2836) (__FILE_2119 * (____stream_2820), const __fpos_t_2337 * (____pos_2822));// L803 +extern int (__fsetpos_2840) (__FILE_2119 * (____stream_2832), const __fpos_t_2339 * (____pos_2834));// L808:L809 +extern void (__clearerr_2846) (__FILE_2119 * (____stream_2844));// L826 +extern int (__feof_2850) (__FILE_2119 * (____stream_2848));// L828 +extern int (__feof_2852) (__FILE_2119 * (____stream_2848));// L828 +extern int (__ferror_2856) (__FILE_2119 * (____stream_2854));// L830 +extern int (__ferror_2858) (__FILE_2119 * (____stream_2854));// L830 +extern void (__clearerr_unlocked_2862) (__FILE_2119 * (____stream_2860));// L835 +extern int (__feof_unlocked_2866) (__FILE_2119 * (____stream_2864));// L836 +extern int (__feof_unlocked_2868) (__FILE_2119 * (____stream_2864));// L836 +extern int (__ferror_unlocked_2872) (__FILE_2119 * (____stream_2870));// L837 +extern int (__ferror_unlocked_2874) (__FILE_2119 * (____stream_2870));// L837 +extern void (__perror_2877) (const char * (____s_2876));// L846 +extern void (__perror_2878) (const char * (____s_2876));// L846 +extern int __sys_nerr_2879;// L26 + +extern int (__fileno_2885) (__FILE_2119 * (____stream_2881));// L858 +extern int (__fileno_2883) (__FILE_2119 * (____stream_2881));// L858 +extern int (__fileno_unlocked_2891) (__FILE_2119 * (____stream_2887));// L863 +extern int (__fileno_unlocked_2889) (__FILE_2119 * (____stream_2887));// L863 +extern __FILE_2119 * ((__popen_2895) (const char * (____command_2893), const char * (____modes_2894)));// L872 +extern __FILE_2119 * ((__popen_2897) (const char * (____command_2893), const char * (____modes_2894)));// L872 +extern int (__pclose_2901) (__FILE_2119 * (____stream_2899));// L878 +extern char * ((__ctermid_2904) (char * (____s_2903)));// L884 +extern void (__flockfile_2907) (__FILE_2119 * (____stream_2905));// L912 +extern int (__ftrylockfile_2911) (__FILE_2119 * (____stream_2909));// L916 +extern int (__ftrylockfile_2913) (__FILE_2119 * (____stream_2909));// L916 +extern void (__funlockfile_2917) (__FILE_2119 * (____stream_2915));// L919 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ @@ -3725,77 +4123,77 @@ extern void (__funlockfile_2696) (__FILE_1935 * (____stream_2694));// L919 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____sprintf_chk_2728) (char * __restrict ____s_2724, int ____flag_2725, __size_t_57 ____slen_2726, const char * __restrict ____format_2727, ... );// L23:L24 -extern int (____vsprintf_chk_2735) (char * __restrict ____s_2729, int ____flag_2730, __size_t_57 ____slen_2731, const char * __restrict ____format_2732, ____gnuc_va_list_1959 ____ap_2733);// L25:L27 +extern int (____sprintf_chk_2949) (char * __restrict ____s_2945, int ____flag_2946, __size_t_59 ____slen_2947, const char * __restrict ____format_2948, ... );// L23:L24 +extern int (____vsprintf_chk_2956) (char * __restrict ____s_2950, int ____flag_2951, __size_t_59 ____slen_2952, const char * __restrict ____format_2953, ____gnuc_va_list_2145 ____ap_2954);// L25:L27 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____snprintf_chk_2749) (char * __restrict ____s_2744, __size_t_57 ____n_2745, int ____flag_2746, __size_t_57 ____slen_2747, const char * __restrict ____format_2748, ... );// L52:L54 -extern int (____vsnprintf_chk_2757) (char * __restrict ____s_2750, __size_t_57 ____n_2751, int ____flag_2752, __size_t_57 ____slen_2753, const char * __restrict ____format_2754, ____gnuc_va_list_1959 ____ap_2755);// L55:L57 +extern int (____snprintf_chk_2970) (char * __restrict ____s_2965, __size_t_59 ____n_2966, int ____flag_2967, __size_t_59 ____slen_2968, const char * __restrict ____format_2969, ... );// L52:L54 +extern int (____vsnprintf_chk_2978) (char * __restrict ____s_2971, __size_t_59 ____n_2972, int ____flag_2973, __size_t_59 ____slen_2974, const char * __restrict ____format_2975, ____gnuc_va_list_2145 ____ap_2976);// L55:L57 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____fprintf_chk_2772) (__FILE_1935 * __restrict ____stream_2768, int ____flag_2770, const char * __restrict ____format_2771, ... );// L85:L86 -extern int (____printf_chk_2776) (int ____flag_2774, const char * __restrict ____format_2775, ... );// L87 -extern int (____vfprintf_chk_2783) (__FILE_1935 * __restrict ____stream_2777, int ____flag_2779, const char * __restrict ____format_2780, ____gnuc_va_list_1959 ____ap_2781);// L88:L89 -extern int (____vprintf_chk_2791) (int ____flag_2787, const char * __restrict ____format_2788, ____gnuc_va_list_1959 ____ap_2789);// L90:L91 +extern int (____fprintf_chk_2993) (__FILE_2119 * __restrict ____stream_2989, int ____flag_2991, const char * __restrict ____format_2992, ... );// L85:L86 +extern int (____printf_chk_2997) (int ____flag_2995, const char * __restrict ____format_2996, ... );// L87 +extern int (____vfprintf_chk_3004) (__FILE_2119 * __restrict ____stream_2998, int ____flag_3000, const char * __restrict ____format_3001, ____gnuc_va_list_2145 ____ap_3002);// L88:L89 +extern int (____vprintf_chk_3012) (int ____flag_3008, const char * __restrict ____format_3009, ____gnuc_va_list_2145 ____ap_3010);// L90:L91 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____dprintf_chk_2813) (int ____fd_2810, int ____flag_2811, const char * __restrict ____fmt_2812, ... );// L131:L132 -extern int (____vdprintf_chk_2819) (int ____fd_2814, int ____flag_2815, const char * __restrict ____fmt_2816, ____gnuc_va_list_1959 ____arg_2817);// L133:L135 +extern int (____dprintf_chk_3034) (int ____fd_3031, int ____flag_3032, const char * __restrict ____fmt_3033, ... );// L131:L132 +extern int (____vdprintf_chk_3040) (int ____fd_3035, int ____flag_3036, const char * __restrict ____fmt_3037, ____gnuc_va_list_2145 ____arg_3038);// L133:L135 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern char * ((____fgets_chk_2833) (char * __restrict ____s_2828, __size_t_57 ____size_2829, int ____n_2830, __FILE_1935 * __restrict ____stream_2831));// L241:L242 -extern char * ((____fgets_chk_2835) (char * __restrict ____s_2828, __size_t_57 ____size_2829, int ____n_2830, __FILE_1935 * __restrict ____stream_2831));// L241:L242 -extern char * ((____fgets_chk_2837) (char * __restrict ____s_2828, __size_t_57 ____size_2829, int ____n_2830, __FILE_1935 * __restrict ____stream_2831));// L241:L242 -extern char * ((____fgets_alias_2843) (char * __restrict ____s_2839, int ____n_2840, __FILE_1935 * __restrict ____stream_2841));// L243:L245 -extern char * ((____fgets_chk_warn_2850) (char * __restrict ____s_2845, __size_t_57 ____size_2846, int ____n_2847, __FILE_1935 * __restrict ____stream_2848));// L246:L250 +extern char * ((____fgets_chk_3054) (char * __restrict ____s_3049, __size_t_59 ____size_3050, int ____n_3051, __FILE_2119 * __restrict ____stream_3052));// L241:L242 +extern char * ((____fgets_chk_3056) (char * __restrict ____s_3049, __size_t_59 ____size_3050, int ____n_3051, __FILE_2119 * __restrict ____stream_3052));// L241:L242 +extern char * ((____fgets_chk_3058) (char * __restrict ____s_3049, __size_t_59 ____size_3050, int ____n_3051, __FILE_2119 * __restrict ____stream_3052));// L241:L242 +extern char * ((____fgets_alias_3064) (char * __restrict ____s_3060, int ____n_3061, __FILE_2119 * __restrict ____stream_3062));// L243:L245 +extern char * ((____fgets_chk_warn_3071) (char * __restrict ____s_3066, __size_t_59 ____size_3067, int ____n_3068, __FILE_2119 * __restrict ____stream_3069));// L246:L250 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern void * ((__malloc_2922) (__size_t_57 ____size_2921));// L38 -extern void * ((__malloc_2923) (__size_t_57 ____size_2921));// L38 -extern void * ((__malloc_2924) (__size_t_57 ____size_2921));// L38 -extern void * ((__malloc_2925) (__size_t_57 ____size_2921));// L38 -extern void * ((__malloc_2926) (__size_t_57 ____size_2921));// L38 -extern void * ((__malloc_2927) (__size_t_57 ____size_2921));// L38 -extern void * ((__calloc_2930) (__size_t_57 ____nmemb_2928, __size_t_57 ____size_2929));// L41:L42 -extern void * ((__calloc_2931) (__size_t_57 ____nmemb_2928, __size_t_57 ____size_2929));// L41:L42 -extern void * ((__realloc_2934) (void * (____ptr_2932), __size_t_57 ____size_2933));// L49:L50 -extern void (__free_2936) (void * (____ptr_2935));// L53 -extern void (__cfree_2938) (void * (____ptr_2937));// L56 -extern void * ((__memalign_2941) (__size_t_57 ____alignment_2939, __size_t_57 ____size_2940));// L59:L60 -extern void * ((__memalign_2942) (__size_t_57 ____alignment_2939, __size_t_57 ____size_2940));// L59:L60 -extern void * ((__valloc_2944) (__size_t_57 ____size_2943));// L63 -extern void * ((__valloc_2945) (__size_t_57 ____size_2943));// L63 -extern void * ((__pvalloc_2947) (__size_t_57 ____size_2946));// L67 -extern void * ((__pvalloc_2948) (__size_t_57 ____size_2946));// L67 -extern void * ((* (____morecore_2952)) (__ptrdiff_t_56 ____size_2949));// L71 -extern void * ((* (____morecore_2953)) (__ptrdiff_t_1928 ____size_2950));// L71 -extern void * ((____default_morecore_2958) (__ptrdiff_t_56 ____size_2955));// L74:L75 -extern void * ((____default_morecore_2959) (__ptrdiff_t_1928 ____size_2956));// L74:L75 -struct __mallinfo_2960 ;// L79 -extern struct __mallinfo_2960 (__mallinfo_2971) (void );// L94 -extern int (__mallopt_2974) (int ____param_2972, int ____val_2973);// L121 -extern int (__malloc_trim_2976) (__size_t_57 ____pad_2975);// L125 -extern __size_t_57 (__malloc_usable_size_2978) (void * (____ptr_2977));// L129 -extern void (__malloc_stats_2979) (void );// L132 -extern int (__malloc_info_2984) (int ____options_2980, __FILE_938 * (____fp_2981));// L135 -extern int (__malloc_info_2985) (int ____options_2980, __FILE_1935 * (____fp_2982));// L135 -extern void * ((__malloc_get_state_2987) (void ));// L138 -extern int (__malloc_set_state_2989) (void * (____ptr_2988));// L142 -extern void (* volatile ____malloc_initialize_hook_2990) (void );// L147:L148 -extern void (* volatile ____free_hook_2992) (void * (____ptr_2991), const void *);// L150:L152 -extern void * ((* volatile ____malloc_hook_2994) (__size_t_57 ____size_2993, const void *));// L153:L155 -extern void * ((* volatile ____realloc_hook_2997) (void * (____ptr_2995), __size_t_57 ____size_2996, const void *));// L156:L159 -extern void * ((* volatile ____memalign_hook_3000) (__size_t_57 ____alignment_2998, __size_t_57 ____size_2999, const void *));// L160:L163 -extern void (* volatile ____after_morecore_hook_3001) (void );// L164 -extern void (____malloc_check_init_3002) (void );// L167 -// typedef moved to top of scope -// typedef moved to top of scope -static __inline unsigned int (____bswap_32_3011) (unsigned int ____bsx_3010) { - -if (__static_condition_default_3012) { +extern void * ((__malloc_3143) (__size_t_59 ____size_3142));// L38 +extern void * ((__malloc_3144) (__size_t_59 ____size_3142));// L38 +extern void * ((__malloc_3145) (__size_t_59 ____size_3142));// L38 +extern void * ((__malloc_3146) (__size_t_59 ____size_3142));// L38 +extern void * ((__malloc_3147) (__size_t_59 ____size_3142));// L38 +extern void * ((__malloc_3148) (__size_t_59 ____size_3142));// L38 +extern void * ((__calloc_3151) (__size_t_59 ____nmemb_3149, __size_t_59 ____size_3150));// L41:L42 +extern void * ((__calloc_3152) (__size_t_59 ____nmemb_3149, __size_t_59 ____size_3150));// L41:L42 +extern void * ((__realloc_3155) (void * (____ptr_3153), __size_t_59 ____size_3154));// L49:L50 +extern void (__free_3157) (void * (____ptr_3156));// L53 +extern void (__cfree_3159) (void * (____ptr_3158));// L56 +extern void * ((__memalign_3162) (__size_t_59 ____alignment_3160, __size_t_59 ____size_3161));// L59:L60 +extern void * ((__memalign_3163) (__size_t_59 ____alignment_3160, __size_t_59 ____size_3161));// L59:L60 +extern void * ((__valloc_3165) (__size_t_59 ____size_3164));// L63 +extern void * ((__valloc_3166) (__size_t_59 ____size_3164));// L63 +extern void * ((__pvalloc_3168) (__size_t_59 ____size_3167));// L67 +extern void * ((__pvalloc_3169) (__size_t_59 ____size_3167));// L67 +extern void * ((* (____morecore_3173)) (__ptrdiff_t_58 ____size_3170));// L71 +extern void * ((* (____morecore_3174)) (__ptrdiff_t_2112 ____size_3171));// L71 +extern void * ((____default_morecore_3179) (__ptrdiff_t_58 ____size_3176));// L74:L75 +extern void * ((____default_morecore_3180) (__ptrdiff_t_2112 ____size_3177));// L74:L75 +struct __mallinfo_3181 ;// L79 +extern struct __mallinfo_3181 (__mallinfo_3192) (void );// L94 +extern int (__mallopt_3195) (int ____param_3193, int ____val_3194);// L121 +extern int (__malloc_trim_3197) (__size_t_59 ____pad_3196);// L125 +extern __size_t_59 (__malloc_usable_size_3199) (void * (____ptr_3198));// L129 +extern void (__malloc_stats_3200) (void );// L132 +extern int (__malloc_info_3205) (int ____options_3201, __FILE_1085 * (____fp_3202));// L135 +extern int (__malloc_info_3206) (int ____options_3201, __FILE_2119 * (____fp_3203));// L135 +extern void * ((__malloc_get_state_3208) (void ));// L138 +extern int (__malloc_set_state_3210) (void * (____ptr_3209));// L142 +extern void (* volatile ____malloc_initialize_hook_3211) (void );// L147:L148 +extern void (* volatile ____free_hook_3213) (void * (____ptr_3212), const void *);// L150:L152 +extern void * ((* volatile ____malloc_hook_3215) (__size_t_59 ____size_3214, const void *));// L153:L155 +extern void * ((* volatile ____realloc_hook_3218) (void * (____ptr_3216), __size_t_59 ____size_3217, const void *));// L156:L159 +extern void * ((* volatile ____memalign_hook_3221) (__size_t_59 ____alignment_3219, __size_t_59 ____size_3220, const void *));// L160:L163 +extern void (* volatile ____after_morecore_hook_3222) (void );// L164 +extern void (____malloc_check_init_3223) (void );// L167 +// typedef moved to top of scope +// typedef moved to top of scope +static __inline unsigned int (____bswap_32_3232) (unsigned int ____bsx_3231) { + +if (__static_condition_default_3233) { { { @@ -3809,9 +4207,9 @@ __static_type_error("invalid type found in return expression"); } } -static __inline ____uint64_t_11 (____bswap_64_3014) (____uint64_t_11 ____bsx_3013) { +static __inline ____uint64_t_11 (____bswap_64_3235) (____uint64_t_11 ____bsx_3234) { -if (__static_condition_default_3012) { +if (__static_condition_default_3233) { { { @@ -3825,40 +4223,40 @@ __static_type_error("invalid type found in return expression"); } } -union __wait_3026 ;// L66 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern __size_t_57 (____ctype_get_mb_cur_max_3050) (void );// L139 -extern __size_t_57 (____ctype_get_mb_cur_max_3051) (void );// L139 -extern __size_t_57 (____ctype_get_mb_cur_max_3052) (void );// L139 -extern __size_t_57 (____ctype_get_mb_cur_max_3053) (void );// L139 -extern double (__atof_3055) (const char * (____nptr_3054));// L144:L145 -extern double (__atof_3056) (const char * (____nptr_3054));// L144:L145 -extern int (__atoi_3058) (const char * (____nptr_3057));// L147:L148 -extern int (__atoi_3059) (const char * (____nptr_3057));// L147:L148 -extern long int (__atol_3061) (const char * (____nptr_3060));// L150:L151 -extern long int (__atol_3062) (const char * (____nptr_3060));// L150:L151 -extern long long int (__atoll_3064) (const char * (____nptr_3063));// L157:L158 -extern long long int (__atoll_3065) (const char * (____nptr_3063));// L157:L158 -extern double (__strtod_3068) (const char * __restrict ____nptr_3066, char * (* __restrict ____endptr_3067));// L164:L166 -extern float (__strtof_3071) (const char * __restrict ____nptr_3069, char * (* __restrict ____endptr_3070));// L172:L173 -extern long double (__strtold_3074) (const char * __restrict ____nptr_3072, char * (* __restrict ____endptr_3073));// L175:L177 -extern long int (__strtol_3078) (const char * __restrict ____nptr_3075, char * (* __restrict ____endptr_3076), int ____base_3077);// L183:L185 -extern unsigned long int (__strtoul_3082) (const char * __restrict ____nptr_3079, char * (* __restrict ____endptr_3080), int ____base_3081);// L187:L189 -extern long long int (__strtoq_3086) (const char * __restrict ____nptr_3083, char * (* __restrict ____endptr_3084), int ____base_3085);// L195:L197 -extern unsigned long long int (__strtouq_3090) (const char * __restrict ____nptr_3087, char * (* __restrict ____endptr_3088), int ____base_3089);// L200:L202 -extern long long int (__strtoll_3094) (const char * __restrict ____nptr_3091, char * (* __restrict ____endptr_3092), int ____base_3093);// L209:L211 -extern long long int (__strtoll_3095) (const char * __restrict ____nptr_3091, char * (* __restrict ____endptr_3092), int ____base_3093);// L209:L211 -extern unsigned long long int (__strtoull_3099) (const char * __restrict ____nptr_3096, char * (* __restrict ____endptr_3097), int ____base_3098);// L214:L216 +union __wait_3247 ;// L66 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern __size_t_59 (____ctype_get_mb_cur_max_3271) (void );// L139 +extern __size_t_59 (____ctype_get_mb_cur_max_3272) (void );// L139 +extern __size_t_59 (____ctype_get_mb_cur_max_3273) (void );// L139 +extern __size_t_59 (____ctype_get_mb_cur_max_3274) (void );// L139 +extern double (__atof_3276) (const char * (____nptr_3275));// L144:L145 +extern double (__atof_3277) (const char * (____nptr_3275));// L144:L145 +extern int (__atoi_3279) (const char * (____nptr_3278));// L147:L148 +extern int (__atoi_3280) (const char * (____nptr_3278));// L147:L148 +extern long int (__atol_3282) (const char * (____nptr_3281));// L150:L151 +extern long int (__atol_3283) (const char * (____nptr_3281));// L150:L151 +extern long long int (__atoll_3285) (const char * (____nptr_3284));// L157:L158 +extern long long int (__atoll_3286) (const char * (____nptr_3284));// L157:L158 +extern double (__strtod_3289) (const char * __restrict ____nptr_3287, char * (* __restrict ____endptr_3288));// L164:L166 +extern float (__strtof_3292) (const char * __restrict ____nptr_3290, char * (* __restrict ____endptr_3291));// L172:L173 +extern long double (__strtold_3295) (const char * __restrict ____nptr_3293, char * (* __restrict ____endptr_3294));// L175:L177 +extern long int (__strtol_3299) (const char * __restrict ____nptr_3296, char * (* __restrict ____endptr_3297), int ____base_3298);// L183:L185 +extern unsigned long int (__strtoul_3303) (const char * __restrict ____nptr_3300, char * (* __restrict ____endptr_3301), int ____base_3302);// L187:L189 +extern long long int (__strtoq_3307) (const char * __restrict ____nptr_3304, char * (* __restrict ____endptr_3305), int ____base_3306);// L195:L197 +extern unsigned long long int (__strtouq_3311) (const char * __restrict ____nptr_3308, char * (* __restrict ____endptr_3309), int ____base_3310);// L200:L202 +extern long long int (__strtoll_3315) (const char * __restrict ____nptr_3312, char * (* __restrict ____endptr_3313), int ____base_3314);// L209:L211 +extern long long int (__strtoll_3316) (const char * __restrict ____nptr_3312, char * (* __restrict ____endptr_3313), int ____base_3314);// L209:L211 +extern unsigned long long int (__strtoull_3320) (const char * __restrict ____nptr_3317, char * (* __restrict ____endptr_3318), int ____base_3319);// L214:L216 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ __extension__/* no function due to type errors in the function prototype */ -extern char * ((__l64a_3104) (long int ____n_3103));// L305 -extern char * ((__l64a_3105) (long int ____n_3103));// L305 -extern long int (__a64l_3107) (const char * (____s_3106));// L308:L309 -extern long int (__a64l_3108) (const char * (____s_3106));// L308:L309 +extern char * ((__l64a_3325) (long int ____n_3324));// L305 +extern char * ((__l64a_3326) (long int ____n_3324));// L305 +extern long int (__a64l_3328) (const char * (____s_3327));// L308:L309 +extern long int (__a64l_3329) (const char * (____s_3327));// L308:L309 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope @@ -3896,9 +4294,9 @@ extern long int (__a64l_3108) (const char * (____s_3106));// L308:L309 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -static __inline unsigned int (____bswap_32_3147) (unsigned int ____bsx_3146) { +static __inline unsigned int (____bswap_32_3384) (unsigned int ____bsx_3383) { -if (__static_condition_default_3148) { +if (__static_condition_default_3385) { { { @@ -3912,9 +4310,9 @@ __static_type_error("invalid type found in return expression"); } } -static __inline ____uint64_t_11 (____bswap_64_3150) (____uint64_t_11 ____bsx_3149) { +static __inline ____uint64_t_11 (____bswap_64_3387) (____uint64_t_11 ____bsx_3386) { -if (__static_condition_default_3148) { +if (__static_condition_default_3385) { { { @@ -3931,24 +4329,26 @@ __static_type_error("invalid type found in return expression"); // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __timespec_3157 ;// L120 -struct __timeval_3160 ;// L30 +struct __timespec_3394 ;// L120 + +struct __timeval_3400 ;// L30 + // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern int (__select_3180) (int ____nfds_3173, __fd_set_3170 * __restrict ____readfds_3174, __fd_set_3170 * __restrict ____writefds_3175, __fd_set_3170 * __restrict ____exceptfds_3176, struct __timeval_3160 * __restrict ____timeout_3178);// L106:L109 -extern int (__select_3181) (int ____nfds_3173, __fd_set_3170 * __restrict ____readfds_3174, __fd_set_3170 * __restrict ____writefds_3175, __fd_set_3170 * __restrict ____exceptfds_3176, struct __forward_tag_reference_3177 * __restrict ____timeout_3179);// L106:L109 -extern int (__pselect_3190) (int ____nfds_3182, __fd_set_3170 * __restrict ____readfds_3183, __fd_set_3170 * __restrict ____writefds_3184, __fd_set_3170 * __restrict ____exceptfds_3185, const struct __timespec_3157 * __restrict ____timeout_3187, const ____sigset_t_3155 * __restrict ____sigmask_3189);// L118:L122 -extern int (__pselect_3191) (int ____nfds_3182, __fd_set_3170 * __restrict ____readfds_3183, __fd_set_3170 * __restrict ____writefds_3184, __fd_set_3170 * __restrict ____exceptfds_3185, const struct __forward_tag_reference_3186 * __restrict ____timeout_3188, const ____sigset_t_3155 * __restrict ____sigmask_3189);// L118:L122 -extern long int (____fdelt_chk_3193) (long int ____d_3192);// L24 -extern long int (____fdelt_warn_3195) (long int ____d_3194);// L25:L26 -extern unsigned int (__gnu_dev_major_3197) (unsigned long long int ____dev_3196);// L27:L28 -extern unsigned int (__gnu_dev_major_3198) (unsigned long long int ____dev_3196);// L27:L28 -extern unsigned int (__gnu_dev_minor_3200) (unsigned long long int ____dev_3199);// L30:L31 -extern unsigned long long int (__gnu_dev_makedev_3203) (unsigned int ____major_3201, unsigned int ____minor_3202);// L33:L35 +extern int (__select_3431) (int ____nfds_3420, __fd_set_3417 * __restrict ____readfds_3421, __fd_set_3417 * __restrict ____writefds_3423, __fd_set_3417 * __restrict ____exceptfds_3425, struct __timeval_3400 * __restrict ____timeout_3428);// L106:L109 +extern int (__select_3432) (int ____nfds_3420, __fd_set_3417 * __restrict ____readfds_3421, __fd_set_3417 * __restrict ____writefds_3423, __fd_set_3417 * __restrict ____exceptfds_3425, struct __forward_tag_reference_3427 * __restrict ____timeout_3430);// L106:L109 +extern int (__pselect_3447) (int ____nfds_3435, __fd_set_3417 * __restrict ____readfds_3436, __fd_set_3417 * __restrict ____writefds_3438, __fd_set_3417 * __restrict ____exceptfds_3440, const struct __timespec_3394 * __restrict ____timeout_3443, const ____sigset_t_3392 * __restrict ____sigmask_3446);// L118:L122 +extern int (__pselect_3448) (int ____nfds_3435, __fd_set_3417 * __restrict ____readfds_3436, __fd_set_3417 * __restrict ____writefds_3438, __fd_set_3417 * __restrict ____exceptfds_3440, const struct __forward_tag_reference_3442 * __restrict ____timeout_3445, const ____sigset_t_3392 * __restrict ____sigmask_3446);// L118:L122 +extern long int (____fdelt_chk_3452) (long int ____d_3451);// L24 +extern long int (____fdelt_warn_3454) (long int ____d_3453);// L25:L26 +extern unsigned int (__gnu_dev_major_3456) (unsigned long long int ____dev_3455);// L27:L28 +extern unsigned int (__gnu_dev_major_3457) (unsigned long long int ____dev_3455);// L27:L28 +extern unsigned int (__gnu_dev_minor_3459) (unsigned long long int ____dev_3458);// L30:L31 +extern unsigned long long int (__gnu_dev_makedev_3462) (unsigned int ____major_3460, unsigned int ____minor_3461);// L33:L35 __extension__/* no function due to type errors in the function prototype */ __extension__/* no function due to type errors in the function prototype */ __extension__/* no function due to type errors in the function prototype */ @@ -3960,24 +4360,24 @@ __extension__/* no function due to type errors in the function prototype */ // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -union __pthread_attr_t_3216 ;// L63 +union __pthread_attr_t_3482 ;// L63 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern int (__rand_3247) (void );// L374 -extern void (__srand_3249) (unsigned int ____seed_3248);// L376 -extern int (__rand_r_3251) (unsigned int * (____seed_3250));// L381 -extern double (__drand48_3252) (void );// L389 -extern double (__erand48_3254) (unsigned short int ____xsubi_3253[3]);// L390 -extern long int (__lrand48_3255) (void );// L393 -extern long int (__nrand48_3257) (unsigned short int ____xsubi_3256[3]);// L394:L395 -extern long int (__mrand48_3258) (void );// L398 -extern long int (__jrand48_3260) (unsigned short int ____xsubi_3259[3]);// L399:L400 -extern void (__srand48_3262) (long int ____seedval_3261);// L403 -extern unsigned short int * ((__seed48_3264) (unsigned short int ____seed16v_3263[3]));// L404:L405 -extern void (__lcong48_3266) (unsigned short int ____param_3265[7]);// L406 +extern int (__rand_3513) (void );// L374 +extern void (__srand_3515) (unsigned int ____seed_3514);// L376 +extern int (__rand_r_3517) (unsigned int * (____seed_3516));// L381 +extern double (__drand48_3518) (void );// L389 +extern double (__erand48_3520) (unsigned short int ____xsubi_3519[3]);// L390 +extern long int (__lrand48_3521) (void );// L393 +extern long int (__nrand48_3523) (unsigned short int ____xsubi_3522[3]);// L394:L395 +extern long int (__mrand48_3524) (void );// L398 +extern long int (__jrand48_3526) (unsigned short int ____xsubi_3525[3]);// L399:L400 +extern void (__srand48_3528) (long int ____seedval_3527);// L403 +extern unsigned short int * ((__seed48_3530) (unsigned short int ____seed16v_3529[3]));// L404:L405 +extern void (__lcong48_3532) (unsigned short int ____param_3531[7]);// L406 @@ -3990,159 +4390,159 @@ extern void (__lcong48_3266) (unsigned short int ____param_3265[7]);// L406 -extern void * ((__alloca_3299) (__size_t_57 ____size_3298));// L32 +extern void * ((__alloca_3565) (__size_t_59 ____size_3564));// L32 -extern int (__posix_memalign_3308) (void * (* (____memptr_3305)), __size_t_57 ____alignment_3306, __size_t_57 ____size_3307);// L503:L504 -extern int (__posix_memalign_3309) (void * (* (____memptr_3305)), __size_t_57 ____alignment_3306, __size_t_57 ____size_3307);// L503:L504 -extern void * ((__aligned_alloc_3312) (__size_t_57 ____alignment_3310, __size_t_57 ____size_3311));// L509:L510 -extern void * ((__aligned_alloc_3313) (__size_t_57 ____alignment_3310, __size_t_57 ____size_3311));// L509:L510 -extern void * ((__aligned_alloc_3314) (__size_t_57 ____alignment_3310, __size_t_57 ____size_3311));// L509:L510 -extern void * ((__aligned_alloc_3315) (__size_t_57 ____alignment_3310, __size_t_57 ____size_3311));// L509:L510 -extern void (__abort_3316) (void );// L515 -extern int (__atexit_3318) (void (* (____func_3317)) (void ));// L519 -extern int (__at_quick_exit_3320) (void (* (____func_3319)) (void ));// L527 -extern int (__on_exit_3325) (void (* (____func_3323)) (int ____status_3321, void * (____arg_3322)), void * (____arg_3324));// L535:L536 -extern void (__exit_3327) (int ____status_3326);// L543 -extern void (__exit_3328) (int ____status_3326);// L543 -extern void (__quick_exit_3330) (int ____status_3329);// L549 -extern void (___Exit_3332) (int ____status_3331);// L557 -extern char * ((__getenv_3334) (const char * (____name_3333)));// L564 -extern char * ((__getenv_3335) (const char * (____name_3333)));// L564 -extern int (__putenv_3337) (char * (____string_3336));// L578 -extern int (__setenv_3341) (const char * (____name_3338), const char * (____value_3339), int ____replace_3340);// L584:L585 -extern int (__unsetenv_3343) (const char * (____name_3342));// L588 -extern int (__clearenv_3344) (void );// L595 -extern char * ((__mktemp_3346) (char * (____template_3345)));// L606 -extern int (__mkstemp_3349) (char * (____template_3347));// L619 -extern int (__mkstemp_3351) (char * (____template_3347));// L619 -extern int (__mkstemp_3350) (char * (____template_3348));// L622:L623 -extern int (__mkstemp_3352) (char * (____template_3348));// L622:L623 -extern int (__mkstemps_3357) (char * (____template_3353), int ____suffixlen_3354);// L641 -extern int (__mkstemps_3358) (char * (____template_3355), int ____suffixlen_3356);// L644:L645 -extern int (__mkstemps_3359) (char * (____template_3353), int ____suffixlen_3354);// L641 -extern int (__mkstemps_3360) (char * (____template_3355), int ____suffixlen_3356);// L644:L645 -extern char * ((__mkdtemp_3362) (char * (____template_3361)));// L662 -extern char * ((__mkdtemp_3363) (char * (____template_3361)));// L662 -extern int (__system_3365) (const char * (____command_3364));// L716 -extern int (__system_3366) (const char * (____command_3364));// L716 -extern int (__system_3367) (const char * (____command_3364));// L716 -extern int (__system_3368) (const char * (____command_3364));// L716 -extern char * ((__realpath_3371) (const char * __restrict ____name_3369, char * __restrict ____resolved_3370));// L733:L734 -extern char * ((__realpath_3372) (const char * __restrict ____name_3369, char * __restrict ____resolved_3370));// L733:L734 +extern int (__posix_memalign_3574) (void * (* (____memptr_3571)), __size_t_59 ____alignment_3572, __size_t_59 ____size_3573);// L503:L504 +extern int (__posix_memalign_3575) (void * (* (____memptr_3571)), __size_t_59 ____alignment_3572, __size_t_59 ____size_3573);// L503:L504 +extern void * ((__aligned_alloc_3578) (__size_t_59 ____alignment_3576, __size_t_59 ____size_3577));// L509:L510 +extern void * ((__aligned_alloc_3579) (__size_t_59 ____alignment_3576, __size_t_59 ____size_3577));// L509:L510 +extern void * ((__aligned_alloc_3580) (__size_t_59 ____alignment_3576, __size_t_59 ____size_3577));// L509:L510 +extern void * ((__aligned_alloc_3581) (__size_t_59 ____alignment_3576, __size_t_59 ____size_3577));// L509:L510 +extern void (__abort_3582) (void );// L515 +extern int (__atexit_3584) (void (* (____func_3583)) (void ));// L519 +extern int (__at_quick_exit_3586) (void (* (____func_3585)) (void ));// L527 +extern int (__on_exit_3591) (void (* (____func_3589)) (int ____status_3587, void * (____arg_3588)), void * (____arg_3590));// L535:L536 +extern void (__exit_3593) (int ____status_3592);// L543 +extern void (__exit_3594) (int ____status_3592);// L543 +extern void (__quick_exit_3596) (int ____status_3595);// L549 +extern void (___Exit_3598) (int ____status_3597);// L557 +extern char * ((__getenv_3600) (const char * (____name_3599)));// L564 +extern char * ((__getenv_3601) (const char * (____name_3599)));// L564 +extern int (__putenv_3603) (char * (____string_3602));// L578 +extern int (__setenv_3607) (const char * (____name_3604), const char * (____value_3605), int ____replace_3606);// L584:L585 +extern int (__unsetenv_3609) (const char * (____name_3608));// L588 +extern int (__clearenv_3610) (void );// L595 +extern char * ((__mktemp_3612) (char * (____template_3611)));// L606 +extern int (__mkstemp_3615) (char * (____template_3613));// L619 +extern int (__mkstemp_3617) (char * (____template_3613));// L619 +extern int (__mkstemp_3616) (char * (____template_3614));// L622:L623 +extern int (__mkstemp_3618) (char * (____template_3614));// L622:L623 +extern int (__mkstemps_3623) (char * (____template_3619), int ____suffixlen_3620);// L641 +extern int (__mkstemps_3624) (char * (____template_3621), int ____suffixlen_3622);// L644:L645 +extern int (__mkstemps_3625) (char * (____template_3619), int ____suffixlen_3620);// L641 +extern int (__mkstemps_3626) (char * (____template_3621), int ____suffixlen_3622);// L644:L645 +extern char * ((__mkdtemp_3628) (char * (____template_3627)));// L662 +extern char * ((__mkdtemp_3629) (char * (____template_3627)));// L662 +extern int (__system_3631) (const char * (____command_3630));// L716 +extern int (__system_3632) (const char * (____command_3630));// L716 +extern int (__system_3633) (const char * (____command_3630));// L716 +extern int (__system_3634) (const char * (____command_3630));// L716 +extern char * ((__realpath_3637) (const char * __restrict ____name_3635, char * __restrict ____resolved_3636));// L733:L734 +extern char * ((__realpath_3638) (const char * __restrict ____name_3635, char * __restrict ____resolved_3636));// L733:L734 // typedef moved to top of scope -extern void * ((__bsearch_3381) (const void * (____key_3374), const void * (____base_3375), __size_t_57 ____nmemb_3376, __size_t_57 ____size_3377, ____compar_fn_t_3373 ____compar_3378));// L754:L756 -extern void * ((__bsearch_3383) (const void * (____key_3374), const void * (____base_3375), __size_t_57 ____nmemb_3376, __size_t_57 ____size_3377, ____compar_fn_t_3373 ____compar_3378));// L754:L756 +extern void * ((__bsearch_3647) (const void * (____key_3640), const void * (____base_3641), __size_t_59 ____nmemb_3642, __size_t_59 ____size_3643, ____compar_fn_t_3639 ____compar_3644));// L754:L756 +extern void * ((__bsearch_3649) (const void * (____key_3640), const void * (____base_3641), __size_t_59 ____nmemb_3642, __size_t_59 ____size_3643, ____compar_fn_t_3639 ____compar_3644));// L754:L756 /* no function due to type errors in the function prototype */ -extern void (__qsort_3402) (void * (____base_3397), __size_t_57 ____nmemb_3398, __size_t_57 ____size_3399, ____compar_fn_t_3373 ____compar_3400);// L764:L765 -extern void (__qsort_3404) (void * (____base_3397), __size_t_57 ____nmemb_3398, __size_t_57 ____size_3399, ____compar_fn_t_3373 ____compar_3400);// L764:L765 -extern int (__abs_3407) (int ____x_3406);// L774 -extern int (__abs_3408) (int ____x_3406);// L774 -extern long int (__labs_3410) (long int ____x_3409);// L775 -extern long int (__labs_3411) (long int ____x_3409);// L775 -extern long long int (__llabs_3413) (long long int ____x_3412);// L779:L780 -extern long long int (__llabs_3414) (long long int ____x_3412);// L779:L780 -extern __div_t_3039 (__div_3417) (int ____numer_3415, int ____denom_3416);// L788:L789 -extern __div_t_3039 (__div_3418) (int ____numer_3415, int ____denom_3416);// L788:L789 -extern __ldiv_t_3044 (__ldiv_3421) (long int ____numer_3419, long int ____denom_3420);// L790:L791 -extern __ldiv_t_3044 (__ldiv_3423) (long int ____numer_3419, long int ____denom_3420);// L790:L791 -extern __lldiv_t_3049 (__lldiv_3427) (long long int ____numer_3425, long long int ____denom_3426);// L796:L798 -extern __lldiv_t_3049 (__lldiv_3429) (long long int ____numer_3425, long long int ____denom_3426);// L796:L798 -extern char * ((__ecvt_3435) (double ____value_3431, int ____ndigit_3432, int * __restrict ____decpt_3433, int * __restrict ____sign_3434));// L811:L812 -extern char * ((__ecvt_3436) (double ____value_3431, int ____ndigit_3432, int * __restrict ____decpt_3433, int * __restrict ____sign_3434));// L811:L812 -extern char * ((__fcvt_3441) (double ____value_3437, int ____ndigit_3438, int * __restrict ____decpt_3439, int * __restrict ____sign_3440));// L817:L818 -extern char * ((__fcvt_3442) (double ____value_3437, int ____ndigit_3438, int * __restrict ____decpt_3439, int * __restrict ____sign_3440));// L817:L818 -extern char * ((__gcvt_3446) (double ____value_3443, int ____ndigit_3444, char * (____buf_3445)));// L823:L824 -extern char * ((__gcvt_3447) (double ____value_3443, int ____ndigit_3444, char * (____buf_3445)));// L823:L824 -extern char * ((__qecvt_3452) (long double ____value_3448, int ____ndigit_3449, int * __restrict ____decpt_3450, int * __restrict ____sign_3451));// L829:L831 -extern char * ((__qecvt_3453) (long double ____value_3448, int ____ndigit_3449, int * __restrict ____decpt_3450, int * __restrict ____sign_3451));// L829:L831 -extern char * ((__qfcvt_3458) (long double ____value_3454, int ____ndigit_3455, int * __restrict ____decpt_3456, int * __restrict ____sign_3457));// L832:L834 -extern char * ((__qfcvt_3459) (long double ____value_3454, int ____ndigit_3455, int * __restrict ____decpt_3456, int * __restrict ____sign_3457));// L832:L834 -extern char * ((__qgcvt_3463) (long double ____value_3460, int ____ndigit_3461, char * (____buf_3462)));// L835:L836 -extern char * ((__qgcvt_3464) (long double ____value_3460, int ____ndigit_3461, char * (____buf_3462)));// L835:L836 -extern int (__ecvt_r_3471) (double ____value_3465, int ____ndigit_3466, int * __restrict ____decpt_3467, int * __restrict ____sign_3468, char * __restrict ____buf_3469, __size_t_57 ____len_3470);// L841:L843 -extern int (__fcvt_r_3478) (double ____value_3472, int ____ndigit_3473, int * __restrict ____decpt_3474, int * __restrict ____sign_3475, char * __restrict ____buf_3476, __size_t_57 ____len_3477);// L844:L846 -extern int (__qecvt_r_3485) (long double ____value_3479, int ____ndigit_3480, int * __restrict ____decpt_3481, int * __restrict ____sign_3482, char * __restrict ____buf_3483, __size_t_57 ____len_3484);// L848:L851 -extern int (__qfcvt_r_3492) (long double ____value_3486, int ____ndigit_3487, int * __restrict ____decpt_3488, int * __restrict ____sign_3489, char * __restrict ____buf_3490, __size_t_57 ____len_3491);// L852:L855 -extern int (__mblen_3495) (const char * (____s_3493), __size_t_57 ____n_3494);// L862 -extern int (__mblen_3496) (const char * (____s_3493), __size_t_57 ____n_3494);// L862 -extern int (__mbtowc_3501) (__wchar_t_1929 * __restrict ____pwc_3497, const char * __restrict ____s_3499, __size_t_57 ____n_3500);// L865:L866 -extern int (__mbtowc_3502) (__wchar_t_3003 * __restrict ____pwc_3498, const char * __restrict ____s_3499, __size_t_57 ____n_3500);// L865:L866 -extern int (__wctomb_3506) (char * (____s_3503), __wchar_t_1929 ____wchar_3504);// L869 -extern int (__wctomb_3507) (char * (____s_3503), __wchar_t_3003 ____wchar_3505);// L869 -extern __size_t_57 (__mbstowcs_3512) (__wchar_t_1929 * __restrict ____pwcs_3508, const char * __restrict ____s_3510, __size_t_57 ____n_3511);// L873:L874 -extern __size_t_57 (__mbstowcs_3513) (__wchar_t_3003 * __restrict ____pwcs_3509, const char * __restrict ____s_3510, __size_t_57 ____n_3511);// L873:L874 -extern __size_t_57 (__wcstombs_3518) (char * __restrict ____s_3514, const __wchar_t_1929 * __restrict ____pwcs_3515, __size_t_57 ____n_3517);// L876:L878 -extern __size_t_57 (__wcstombs_3519) (char * __restrict ____s_3514, const __wchar_t_3003 * __restrict ____pwcs_3516, __size_t_57 ____n_3517);// L876:L878 -extern int (__rpmatch_3522) (const char * (____response_3520));// L887 -extern int (__rpmatch_3521) (const char * (____response_3520));// L887 -extern int (__getsubopt_3527) (char * (* __restrict ____optionp_3523), char * const * __restrict ____tokens_3524, char * (* __restrict ____valuep_3525));// L898:L901 -extern int (__getsubopt_3526) (char * (* __restrict ____optionp_3523), char * const * __restrict ____tokens_3524, char * (* __restrict ____valuep_3525));// L898:L901 -extern int (__getloadavg_3530) (double ____loadavg_3528[], int ____nelem_3529);// L950:L951 +extern void (__qsort_3668) (void * (____base_3663), __size_t_59 ____nmemb_3664, __size_t_59 ____size_3665, ____compar_fn_t_3639 ____compar_3666);// L764:L765 +extern void (__qsort_3670) (void * (____base_3663), __size_t_59 ____nmemb_3664, __size_t_59 ____size_3665, ____compar_fn_t_3639 ____compar_3666);// L764:L765 +extern int (__abs_3673) (int ____x_3672);// L774 +extern int (__abs_3674) (int ____x_3672);// L774 +extern long int (__labs_3676) (long int ____x_3675);// L775 +extern long int (__labs_3677) (long int ____x_3675);// L775 +extern long long int (__llabs_3679) (long long int ____x_3678);// L779:L780 +extern long long int (__llabs_3680) (long long int ____x_3678);// L779:L780 +extern __div_t_3260 (__div_3683) (int ____numer_3681, int ____denom_3682);// L788:L789 +extern __div_t_3260 (__div_3684) (int ____numer_3681, int ____denom_3682);// L788:L789 +extern __ldiv_t_3265 (__ldiv_3687) (long int ____numer_3685, long int ____denom_3686);// L790:L791 +extern __ldiv_t_3265 (__ldiv_3689) (long int ____numer_3685, long int ____denom_3686);// L790:L791 +extern __lldiv_t_3270 (__lldiv_3693) (long long int ____numer_3691, long long int ____denom_3692);// L796:L798 +extern __lldiv_t_3270 (__lldiv_3695) (long long int ____numer_3691, long long int ____denom_3692);// L796:L798 +extern char * ((__ecvt_3701) (double ____value_3697, int ____ndigit_3698, int * __restrict ____decpt_3699, int * __restrict ____sign_3700));// L811:L812 +extern char * ((__ecvt_3702) (double ____value_3697, int ____ndigit_3698, int * __restrict ____decpt_3699, int * __restrict ____sign_3700));// L811:L812 +extern char * ((__fcvt_3707) (double ____value_3703, int ____ndigit_3704, int * __restrict ____decpt_3705, int * __restrict ____sign_3706));// L817:L818 +extern char * ((__fcvt_3708) (double ____value_3703, int ____ndigit_3704, int * __restrict ____decpt_3705, int * __restrict ____sign_3706));// L817:L818 +extern char * ((__gcvt_3712) (double ____value_3709, int ____ndigit_3710, char * (____buf_3711)));// L823:L824 +extern char * ((__gcvt_3713) (double ____value_3709, int ____ndigit_3710, char * (____buf_3711)));// L823:L824 +extern char * ((__qecvt_3718) (long double ____value_3714, int ____ndigit_3715, int * __restrict ____decpt_3716, int * __restrict ____sign_3717));// L829:L831 +extern char * ((__qecvt_3719) (long double ____value_3714, int ____ndigit_3715, int * __restrict ____decpt_3716, int * __restrict ____sign_3717));// L829:L831 +extern char * ((__qfcvt_3724) (long double ____value_3720, int ____ndigit_3721, int * __restrict ____decpt_3722, int * __restrict ____sign_3723));// L832:L834 +extern char * ((__qfcvt_3725) (long double ____value_3720, int ____ndigit_3721, int * __restrict ____decpt_3722, int * __restrict ____sign_3723));// L832:L834 +extern char * ((__qgcvt_3729) (long double ____value_3726, int ____ndigit_3727, char * (____buf_3728)));// L835:L836 +extern char * ((__qgcvt_3730) (long double ____value_3726, int ____ndigit_3727, char * (____buf_3728)));// L835:L836 +extern int (__ecvt_r_3737) (double ____value_3731, int ____ndigit_3732, int * __restrict ____decpt_3733, int * __restrict ____sign_3734, char * __restrict ____buf_3735, __size_t_59 ____len_3736);// L841:L843 +extern int (__fcvt_r_3744) (double ____value_3738, int ____ndigit_3739, int * __restrict ____decpt_3740, int * __restrict ____sign_3741, char * __restrict ____buf_3742, __size_t_59 ____len_3743);// L844:L846 +extern int (__qecvt_r_3751) (long double ____value_3745, int ____ndigit_3746, int * __restrict ____decpt_3747, int * __restrict ____sign_3748, char * __restrict ____buf_3749, __size_t_59 ____len_3750);// L848:L851 +extern int (__qfcvt_r_3758) (long double ____value_3752, int ____ndigit_3753, int * __restrict ____decpt_3754, int * __restrict ____sign_3755, char * __restrict ____buf_3756, __size_t_59 ____len_3757);// L852:L855 +extern int (__mblen_3761) (const char * (____s_3759), __size_t_59 ____n_3760);// L862 +extern int (__mblen_3762) (const char * (____s_3759), __size_t_59 ____n_3760);// L862 +extern int (__mbtowc_3767) (__wchar_t_2113 * __restrict ____pwc_3763, const char * __restrict ____s_3765, __size_t_59 ____n_3766);// L865:L866 +extern int (__mbtowc_3768) (__wchar_t_3224 * __restrict ____pwc_3764, const char * __restrict ____s_3765, __size_t_59 ____n_3766);// L865:L866 +extern int (__wctomb_3772) (char * (____s_3769), __wchar_t_2113 ____wchar_3770);// L869 +extern int (__wctomb_3773) (char * (____s_3769), __wchar_t_3224 ____wchar_3771);// L869 +extern __size_t_59 (__mbstowcs_3778) (__wchar_t_2113 * __restrict ____pwcs_3774, const char * __restrict ____s_3776, __size_t_59 ____n_3777);// L873:L874 +extern __size_t_59 (__mbstowcs_3779) (__wchar_t_3224 * __restrict ____pwcs_3775, const char * __restrict ____s_3776, __size_t_59 ____n_3777);// L873:L874 +extern __size_t_59 (__wcstombs_3784) (char * __restrict ____s_3780, const __wchar_t_2113 * __restrict ____pwcs_3781, __size_t_59 ____n_3783);// L876:L878 +extern __size_t_59 (__wcstombs_3785) (char * __restrict ____s_3780, const __wchar_t_3224 * __restrict ____pwcs_3782, __size_t_59 ____n_3783);// L876:L878 +extern int (__rpmatch_3788) (const char * (____response_3786));// L887 +extern int (__rpmatch_3787) (const char * (____response_3786));// L887 +extern int (__getsubopt_3793) (char * (* __restrict ____optionp_3789), char * const * __restrict ____tokens_3790, char * (* __restrict ____valuep_3791));// L898:L901 +extern int (__getsubopt_3792) (char * (* __restrict ____optionp_3789), char * const * __restrict ____tokens_3790, char * (* __restrict ____valuep_3791));// L898:L901 +extern int (__getloadavg_3796) (double ____loadavg_3794[], int ____nelem_3795);// L950:L951 /* no function due to type errors in the function prototype */ -extern char * ((____realpath_chk_3535) (const char * __restrict ____name_3532, char * __restrict ____resolved_3533, __size_t_57 ____resolvedlen_3534));// L23:L25 -extern char * ((____realpath_alias_3538) (const char * __restrict ____name_3536, char * __restrict ____resolved_3537));// L26:L28 -extern char * ((____realpath_chk_warn_3542) (const char * __restrict ____name_3539, char * __restrict ____resolved_3540, __size_t_57 ____resolvedlen_3541));// L29:L34 +extern char * ((____realpath_chk_3801) (const char * __restrict ____name_3798, char * __restrict ____resolved_3799, __size_t_59 ____resolvedlen_3800));// L23:L25 +extern char * ((____realpath_alias_3804) (const char * __restrict ____name_3802, char * __restrict ____resolved_3803));// L26:L28 +extern char * ((____realpath_chk_warn_3808) (const char * __restrict ____name_3805, char * __restrict ____resolved_3806, __size_t_59 ____resolvedlen_3807));// L29:L34 /* no function due to type errors in the function prototype */ -extern int (____ptsname_r_chk_3550) (int ____fd_3546, char * (____buf_3547), __size_t_57 ____buflen_3548, __size_t_57 ____nreal_3549);// L52:L53 -extern int (____ptsname_r_alias_3554) (int ____fd_3551, char * (____buf_3552), __size_t_57 ____buflen_3553);// L54:L56 -extern int (____ptsname_r_chk_warn_3559) (int ____fd_3555, char * (____buf_3556), __size_t_57 ____buflen_3557, __size_t_57 ____nreal_3558);// L57:L61 +extern int (____ptsname_r_chk_3816) (int ____fd_3812, char * (____buf_3813), __size_t_59 ____buflen_3814, __size_t_59 ____nreal_3815);// L52:L53 +extern int (____ptsname_r_alias_3820) (int ____fd_3817, char * (____buf_3818), __size_t_59 ____buflen_3819);// L54:L56 +extern int (____ptsname_r_chk_warn_3825) (int ____fd_3821, char * (____buf_3822), __size_t_59 ____buflen_3823, __size_t_59 ____nreal_3824);// L57:L61 /* no function due to type errors in the function prototype */ -extern int (____wctomb_chk_3568) (char * (____s_3564), __wchar_t_1929 ____wchar_3565, __size_t_57 ____buflen_3567);// L77:L78 -extern int (____wctomb_chk_3569) (char * (____s_3564), __wchar_t_3003 ____wchar_3566, __size_t_57 ____buflen_3567);// L77:L78 -extern int (____wctomb_alias_3573) (char * (____s_3570), __wchar_t_1929 ____wchar_3571);// L79:L80 -extern int (____wctomb_alias_3574) (char * (____s_3570), __wchar_t_3003 ____wchar_3572);// L79:L80 +extern int (____wctomb_chk_3834) (char * (____s_3830), __wchar_t_2113 ____wchar_3831, __size_t_59 ____buflen_3833);// L77:L78 +extern int (____wctomb_chk_3835) (char * (____s_3830), __wchar_t_3224 ____wchar_3832, __size_t_59 ____buflen_3833);// L77:L78 +extern int (____wctomb_alias_3839) (char * (____s_3836), __wchar_t_2113 ____wchar_3837);// L79:L80 +extern int (____wctomb_alias_3840) (char * (____s_3836), __wchar_t_3224 ____wchar_3838);// L79:L80 /* no function due to type errors in the function prototype */ -extern __size_t_57 (____mbstowcs_chk_3583) (__wchar_t_1929 * __restrict ____dst_3578, const char * __restrict ____src_3580, __size_t_57 ____len_3581, __size_t_57 ____dstlen_3582);// L98:L100 -extern __size_t_57 (____mbstowcs_chk_3584) (__wchar_t_3003 * __restrict ____dst_3579, const char * __restrict ____src_3580, __size_t_57 ____len_3581, __size_t_57 ____dstlen_3582);// L98:L100 -extern __size_t_57 (____mbstowcs_alias_3589) (__wchar_t_1929 * __restrict ____dst_3585, const char * __restrict ____src_3587, __size_t_57 ____len_3588);// L101:L104 -extern __size_t_57 (____mbstowcs_alias_3590) (__wchar_t_3003 * __restrict ____dst_3586, const char * __restrict ____src_3587, __size_t_57 ____len_3588);// L101:L104 -extern __size_t_57 (____mbstowcs_chk_warn_3596) (__wchar_t_1929 * __restrict ____dst_3591, const char * __restrict ____src_3593, __size_t_57 ____len_3594, __size_t_57 ____dstlen_3595);// L105:L110 -extern __size_t_57 (____mbstowcs_chk_warn_3597) (__wchar_t_3003 * __restrict ____dst_3592, const char * __restrict ____src_3593, __size_t_57 ____len_3594, __size_t_57 ____dstlen_3595);// L105:L110 +extern __size_t_59 (____mbstowcs_chk_3849) (__wchar_t_2113 * __restrict ____dst_3844, const char * __restrict ____src_3846, __size_t_59 ____len_3847, __size_t_59 ____dstlen_3848);// L98:L100 +extern __size_t_59 (____mbstowcs_chk_3850) (__wchar_t_3224 * __restrict ____dst_3845, const char * __restrict ____src_3846, __size_t_59 ____len_3847, __size_t_59 ____dstlen_3848);// L98:L100 +extern __size_t_59 (____mbstowcs_alias_3855) (__wchar_t_2113 * __restrict ____dst_3851, const char * __restrict ____src_3853, __size_t_59 ____len_3854);// L101:L104 +extern __size_t_59 (____mbstowcs_alias_3856) (__wchar_t_3224 * __restrict ____dst_3852, const char * __restrict ____src_3853, __size_t_59 ____len_3854);// L101:L104 +extern __size_t_59 (____mbstowcs_chk_warn_3862) (__wchar_t_2113 * __restrict ____dst_3857, const char * __restrict ____src_3859, __size_t_59 ____len_3860, __size_t_59 ____dstlen_3861);// L105:L110 +extern __size_t_59 (____mbstowcs_chk_warn_3863) (__wchar_t_3224 * __restrict ____dst_3858, const char * __restrict ____src_3859, __size_t_59 ____len_3860, __size_t_59 ____dstlen_3861);// L105:L110 /* no function due to type errors in the function prototype */ -extern __size_t_57 (____wcstombs_chk_3607) (char * __restrict ____dst_3602, const __wchar_t_1929 * __restrict ____src_3603, __size_t_57 ____len_3605, __size_t_57 ____dstlen_3606);// L130:L132 -extern __size_t_57 (____wcstombs_chk_3608) (char * __restrict ____dst_3602, const __wchar_t_3003 * __restrict ____src_3604, __size_t_57 ____len_3605, __size_t_57 ____dstlen_3606);// L130:L132 -extern __size_t_57 (____wcstombs_alias_3613) (char * __restrict ____dst_3609, const __wchar_t_1929 * __restrict ____src_3610, __size_t_57 ____len_3612);// L133:L136 -extern __size_t_57 (____wcstombs_alias_3614) (char * __restrict ____dst_3609, const __wchar_t_3003 * __restrict ____src_3611, __size_t_57 ____len_3612);// L133:L136 -extern __size_t_57 (____wcstombs_chk_warn_3620) (char * __restrict ____dst_3615, const __wchar_t_1929 * __restrict ____src_3616, __size_t_57 ____len_3618, __size_t_57 ____dstlen_3619);// L137:L141 -extern __size_t_57 (____wcstombs_chk_warn_3621) (char * __restrict ____dst_3615, const __wchar_t_3003 * __restrict ____src_3617, __size_t_57 ____len_3618, __size_t_57 ____dstlen_3619);// L137:L141 +extern __size_t_59 (____wcstombs_chk_3873) (char * __restrict ____dst_3868, const __wchar_t_2113 * __restrict ____src_3869, __size_t_59 ____len_3871, __size_t_59 ____dstlen_3872);// L130:L132 +extern __size_t_59 (____wcstombs_chk_3874) (char * __restrict ____dst_3868, const __wchar_t_3224 * __restrict ____src_3870, __size_t_59 ____len_3871, __size_t_59 ____dstlen_3872);// L130:L132 +extern __size_t_59 (____wcstombs_alias_3879) (char * __restrict ____dst_3875, const __wchar_t_2113 * __restrict ____src_3876, __size_t_59 ____len_3878);// L133:L136 +extern __size_t_59 (____wcstombs_alias_3880) (char * __restrict ____dst_3875, const __wchar_t_3224 * __restrict ____src_3877, __size_t_59 ____len_3878);// L133:L136 +extern __size_t_59 (____wcstombs_chk_warn_3886) (char * __restrict ____dst_3881, const __wchar_t_2113 * __restrict ____src_3882, __size_t_59 ____len_3884, __size_t_59 ____dstlen_3885);// L137:L141 +extern __size_t_59 (____wcstombs_chk_warn_3887) (char * __restrict ____dst_3881, const __wchar_t_3224 * __restrict ____src_3883, __size_t_59 ____len_3884, __size_t_59 ____dstlen_3885);// L137:L141 /* no function due to type errors in the function prototype */ -extern int * ((____errno_location_3626) (void ));// L50 -extern int * ((____errno_location_3627) (void ));// L50 -extern int * ((____errno_location_3628) (void ));// L50 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern void * ((__mmap_3644) (void * (____addr_3632), __size_t_57 ____len_3633, int ____prot_3634, int ____flags_3635, int ____fd_3636, ____off_t_21 ____offset_3637));// L57:L58 -extern void * ((__mmap_3645) (void * (____addr_3638), __size_t_57 ____len_3639, int ____prot_3640, int ____flags_3641, int ____fd_3642, ____off64_t_22 ____offset_3643));// L61:L64 -extern int (__munmap_3648) (void * (____addr_3646), __size_t_57 ____len_3647);// L76 -extern int (__mprotect_3652) (void * (____addr_3649), __size_t_57 ____len_3650, int ____prot_3651);// L81 -extern int (__msync_3656) (void * (____addr_3653), __size_t_57 ____len_3654, int ____flags_3655);// L89 -extern int (__madvise_3660) (void * (____addr_3657), __size_t_57 ____len_3658, int ____advice_3659);// L94 -extern int (__posix_madvise_3664) (void * (____addr_3661), __size_t_57 ____len_3662, int ____advice_3663);// L98 -extern int (__mlock_3667) (const void * (____addr_3665), __size_t_57 ____len_3666);// L103 -extern int (__mlock_3668) (const void * (____addr_3665), __size_t_57 ____len_3666);// L103 -extern int (__munlock_3671) (const void * (____addr_3669), __size_t_57 ____len_3670);// L106 -extern int (__mlockall_3673) (int ____flags_3672);// L111 -extern int (__munlockall_3674) (void );// L115 -extern int (__mincore_3678) (void * (____start_3675), __size_t_57 ____len_3676, unsigned char * (____vec_3677));// L123:L124 -extern int (__shm_open_3684) (const char * (____name_3679), int ____oflag_3680, __mode_t_3631 ____mode_3683);// L144 -extern int (__shm_open_3687) (const char * (____name_3679), int ____oflag_3680, __mode_t_3631 ____mode_3683);// L144 -extern int (__shm_unlink_3689) (const char * (____name_3688));// L147 -char * (__buffer_3690);// L11 -void (__allocate_buffer_3692) () { - -if (__static_condition_default_3693) { +extern int * ((____errno_location_3892) (void ));// L50 +extern int * ((____errno_location_3893) (void ));// L50 +extern int * ((____errno_location_3894) (void ));// L50 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern void * ((__mmap_3915) (void * (____addr_3901), __size_t_59 ____len_3902, int ____prot_3903, int ____flags_3904, int ____fd_3905, ____off_t_21 ____offset_3906));// L57:L58 +extern void * ((__mmap_3917) (void * (____addr_3908), __size_t_59 ____len_3909, int ____prot_3910, int ____flags_3911, int ____fd_3912, ____off64_t_22 ____offset_3913));// L61:L64 +extern int (__munmap_3921) (void * (____addr_3919), __size_t_59 ____len_3920);// L76 +extern int (__mprotect_3925) (void * (____addr_3922), __size_t_59 ____len_3923, int ____prot_3924);// L81 +extern int (__msync_3929) (void * (____addr_3926), __size_t_59 ____len_3927, int ____flags_3928);// L89 +extern int (__madvise_3933) (void * (____addr_3930), __size_t_59 ____len_3931, int ____advice_3932);// L94 +extern int (__posix_madvise_3937) (void * (____addr_3934), __size_t_59 ____len_3935, int ____advice_3936);// L98 +extern int (__mlock_3940) (const void * (____addr_3938), __size_t_59 ____len_3939);// L103 +extern int (__mlock_3941) (const void * (____addr_3938), __size_t_59 ____len_3939);// L103 +extern int (__munlock_3944) (const void * (____addr_3942), __size_t_59 ____len_3943);// L106 +extern int (__mlockall_3946) (int ____flags_3945);// L111 +extern int (__munlockall_3947) (void );// L115 +extern int (__mincore_3951) (void * (____start_3948), __size_t_59 ____len_3949, unsigned char * (____vec_3950));// L123:L124 +extern int (__shm_open_3958) (const char * (____name_3952), int ____oflag_3953, __mode_t_3899 ____mode_3956);// L144 +extern int (__shm_open_3962) (const char * (____name_3952), int ____oflag_3953, __mode_t_3899 ____mode_3956);// L144 +extern int (__shm_unlink_3965) (const char * (____name_3964));// L147 +char * (__buffer_3966);// L11 +void (__allocate_buffer_3968) () { + +if (__static_condition_default_3969) { { { -int __pagesize_3691;// L15 +int __pagesize_3967;// L15 - __pagesize_3691 = __sysconf_541 ( ___SC_PAGESIZE_281 ) ; // L17 -if ( __pagesize_3691 == - 1 )// L18 + __pagesize_3967 = __sysconf_599 ( ___SC_PAGESIZE_339 ) ; // L17 +if ( __pagesize_3967 == - 1 )// L18 { do { @@ -4152,22 +4552,22 @@ do -if (__static_condition_default_3694) { - __perror_1663 ("sysconf") ; // L9 +if (__static_condition_default_3970) { + __perror_1847 ("sysconf") ; // L9 } -if (__static_condition_default_3695) { - __perror_1664 ("sysconf") ; // L9 +if (__static_condition_default_3971) { + __perror_1848 ("sysconf") ; // L9 } -if (__static_condition_default_3696) { - __perror_2656 ("sysconf") ; // L9 +if (__static_condition_default_3972) { + __perror_2877 ("sysconf") ; // L9 } -if (__static_condition_default_3697) { - __perror_2657 ("sysconf") ; // L9 +if (__static_condition_default_3973) { + __perror_2878 ("sysconf") ; // L9 } -if (__static_condition_default_3698) { - __exit_3327 (1) ; // L9 +if (__static_condition_default_3974) { + __exit_3593 (1) ; // L9 } -if (__static_condition_default_3699) { +if (__static_condition_default_3975) { __static_type_error("type error : no valid expression"); // L9 } } @@ -4175,13 +4575,13 @@ __static_type_error("type error : no valid expression"); // L9 } while( 0 );// L9:L19 } -if (__static_condition_default_3700) { - __buffer_3690 = __memalign_2941 ( __pagesize_3691 ,4 * __pagesize_3691 ) ; // L21 +if (__static_condition_default_3976) { + __buffer_3966 = __memalign_3162 ( __pagesize_3967 ,4 * __pagesize_3967 ) ; // L21 } -if (__static_condition_default_3701) { - __buffer_3690 = __memalign_2942 ( __pagesize_3691 ,4 * __pagesize_3691 ) ; // L21 +if (__static_condition_default_3977) { + __buffer_3966 = __memalign_3163 ( __pagesize_3967 ,4 * __pagesize_3967 ) ; // L21 } -if ( __buffer_3690 == ( ( void * ) 0 ) )// L22 +if ( __buffer_3966 == ( ( void * ) 0 ) )// L22 { do { @@ -4191,22 +4591,22 @@ do -if (__static_condition_default_3702) { - __perror_1663 ("memalign") ; // L9 +if (__static_condition_default_3978) { + __perror_1847 ("memalign") ; // L9 } -if (__static_condition_default_3703) { - __perror_1664 ("memalign") ; // L9 +if (__static_condition_default_3979) { + __perror_1848 ("memalign") ; // L9 } -if (__static_condition_default_3704) { - __perror_2656 ("memalign") ; // L9 +if (__static_condition_default_3980) { + __perror_2877 ("memalign") ; // L9 } -if (__static_condition_default_3705) { - __perror_2657 ("memalign") ; // L9 +if (__static_condition_default_3981) { + __perror_2878 ("memalign") ; // L9 } -if (__static_condition_default_3706) { - __exit_3327 (1) ; // L9 +if (__static_condition_default_3982) { + __exit_3593 (1) ; // L9 } -if (__static_condition_default_3707) { +if (__static_condition_default_3983) { __static_type_error("type error : no valid expression"); // L9 } } @@ -4214,7 +4614,7 @@ __static_type_error("type error : no valid expression"); // L9 } while( 0 );// L9:L23 } -if ( __mprotect_3652 ( __buffer_3690 ,4 * __pagesize_3691 ,0x1) == - 1 )// L25 +if ( __mprotect_3925 ( __buffer_3966 ,4 * __pagesize_3967 ,0x1) == - 1 )// L25 { do { @@ -4224,22 +4624,22 @@ do -if (__static_condition_default_3708) { - __perror_1663 ("mprotect") ; // L9 +if (__static_condition_default_3984) { + __perror_1847 ("mprotect") ; // L9 } -if (__static_condition_default_3709) { - __perror_1664 ("mprotect") ; // L9 +if (__static_condition_default_3985) { + __perror_1848 ("mprotect") ; // L9 } -if (__static_condition_default_3710) { - __perror_2656 ("mprotect") ; // L9 +if (__static_condition_default_3986) { + __perror_2877 ("mprotect") ; // L9 } -if (__static_condition_default_3711) { - __perror_2657 ("mprotect") ; // L9 +if (__static_condition_default_3987) { + __perror_2878 ("mprotect") ; // L9 } -if (__static_condition_default_3712) { - __exit_3327 (1) ; // L9 +if (__static_condition_default_3988) { + __exit_3593 (1) ; // L9 } -if (__static_condition_default_3713) { +if (__static_condition_default_3989) { __static_type_error("type error : no valid expression"); // L9 } } @@ -4253,85 +4653,85 @@ while( 0 );// L9:L26 } } -int (__main_3716) (int __argc_3714, char * (* (__argv_3715))) { +int (__main_3992) (int __argc_3990, char * (* (__argv_3991))) { -if (__static_condition_default_3718) { +if (__static_condition_default_3994) { { { -if (__static_condition_default_3719) { +if (__static_condition_default_3995) { ( { - __buffer_3690 = malloc (4092) ; // L29 + __buffer_3966 = malloc (4092) ; // L29 } ) ; // L29:L35 } -if (__static_condition_default_3720) { +if (__static_condition_default_3996) { ( { - __buffer_3690 = malloc (4092) ; // L29 + __buffer_3966 = malloc (4092) ; // L29 } ) ; // L29:L35 } -if (__static_condition_default_3721) { +if (__static_condition_default_3997) { ( { - __buffer_3690 = malloc (4092) ; // L29 + __buffer_3966 = malloc (4092) ; // L29 } ) ; // L29:L35 } -if (__static_condition_default_3722) { +if (__static_condition_default_3998) { ( { - __buffer_3690 = malloc (4092) ; // L29 + __buffer_3966 = malloc (4092) ; // L29 } ) ; // L29:L35 } -if (__static_condition_default_3723) { +if (__static_condition_default_3999) { ( { - __buffer_3690 = malloc (4092) ; // L29 + __buffer_3966 = malloc (4092) ; // L29 } ) ; // L29:L35 } -if (__static_condition_default_3724) { +if (__static_condition_default_4000) { ( { - __buffer_3690 = malloc (4092) ; // L29 + __buffer_3966 = malloc (4092) ; // L29 } ) ; // L29:L35 } -if (__static_condition_default_3725) { +if (__static_condition_default_4001) { __static_type_error("type error") ; // L29:L35 } -if (__static_condition_default_3726) { -* __buffer_3690 = 'a' ; // L37 +if (__static_condition_default_4002) { +* __buffer_3966 = 'a' ; // L37 } -if (__static_condition_default_3727) { +if (__static_condition_default_4003) { return 0 ;// L39 } -if (__static_condition_default_3728) { +if (__static_condition_default_4004) { return 0 ;// L39 } } @@ -4340,23 +4740,23 @@ return 0 ;// L39 } } -int (__main_3717) (int __argc_3714, char * (* (__argv_3715))) { +int (__main_3993) (int __argc_3990, char * (* (__argv_3991))) { -if (__static_condition_default_3729) { +if (__static_condition_default_4005) { { { - __allocate_buffer_3692 ( ) ; // L35 -if (__static_condition_default_3730) { -* __buffer_3690 = 'a' ; // L37 + __allocate_buffer_3968 ( ) ; // L35 +if (__static_condition_default_4006) { +* __buffer_3966 = 'a' ; // L37 } -if (__static_condition_default_3731) { +if (__static_condition_default_4007) { return 0 ;// L39 } -if (__static_condition_default_3732) { +if (__static_condition_default_4008) { return 0 ;// L39 } } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/221ac329e93.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/221ac329e93.desugared.inferres new file mode 100644 index 00000000..2df07414 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/221ac329e93.desugared.inferres @@ -0,0 +1,41 @@ + +LINUX/221ac329e93.desugared.c:4742: error: Memory Leak + Memory dynamically allocated by `malloc` on line 4681 is not freed after the last access at line 4742, column 1. + 4740. + 4741. } + 4742. } + ^ + 4743. int (__main_3993) (int __argc_3990, char * (* (__argv_3991))) { + 4744. + +LINUX/221ac329e93.desugared.c:4742: error: Memory Leak + Memory dynamically allocated by `malloc` on line 4691 is not freed after the last access at line 4742, column 1. + 4740. + 4741. } + 4742. } + ^ + 4743. int (__main_3993) (int __argc_3990, char * (* (__argv_3991))) { + 4744. + +LINUX/221ac329e93.desugared.c:4742: error: Memory Leak + Memory dynamically allocated by `malloc` on line 4701 is not freed after the last access at line 4742, column 1. + 4740. + 4741. } + 4742. } + ^ + 4743. int (__main_3993) (int __argc_3990, char * (* (__argv_3991))) { + 4744. + +LINUX/221ac329e93.desugared.c:4742: error: Memory Leak + Memory dynamically allocated by `malloc` on line 4711 is not freed after the last access at line 4742, column 1. + 4740. + 4741. } + 4742. } + ^ + 4743. int (__main_3993) (int __argc_3990, char * (* (__argv_3991))) { + 4744. + + +Found 4 issues + Issue Type(ISSUED_TYPE_ID): # + Memory Leak(MEMORY_LEAK_C): 4 diff --git a/fonda/cpp_testsuite/varBugs/LINUX/221ac329e93.inferres b/fonda/cpp_testsuite/varBugs/LINUX/221ac329e93.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/221ac329e93.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/242f1a34377.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/242f1a34377.desugared.c index 9f996973..ad922eb8 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/242f1a34377.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/242f1a34377.desugared.c @@ -10,8 +10,8 @@ void __static_initializer_default(); extern const bool __static_condition_default_3; extern const bool __static_condition_default_10; extern const bool __static_condition_default_4; -extern const bool __static_condition_default_1; extern const bool __static_condition_default_5; +extern const bool __static_condition_default_1; extern const bool __static_condition_default_11; void __static_initializer_default() { __static_renaming("__crypto_alloc_ablkcipher_0", "crypto_alloc_ablkcipher"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/242f1a34377.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/242f1a34377.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/242f1a34377.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/242f1a34377.inferres b/fonda/cpp_testsuite/varBugs/LINUX/242f1a34377.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/242f1a34377.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/2f02c15a5d9.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/2f02c15a5d9.desugared.c index ce864e8b..9237ba8f 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/2f02c15a5d9.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/2f02c15a5d9.desugared.c @@ -7,12 +7,12 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_3; -extern const bool __static_condition_default_4; extern const bool __static_condition_default_11; -extern const bool __static_condition_default_10; extern const bool __static_condition_default_5; +extern const bool __static_condition_default_4; extern const bool __static_condition_default_1; +extern const bool __static_condition_default_10; +extern const bool __static_condition_default_3; void __static_initializer_default() { __static_renaming("__ssb_extif_gpio_in_0", "ssb_extif_gpio_in"); __static_renaming("__bcm47xx_gpio_get_value_2", "bcm47xx_gpio_get_value"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/2f02c15a5d9.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/2f02c15a5d9.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/2f02c15a5d9.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/2f02c15a5d9.inferres b/fonda/cpp_testsuite/varBugs/LINUX/2f02c15a5d9.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/2f02c15a5d9.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.desugared.c index 2fb0d440..36159f2b 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.desugared.c @@ -7,9 +7,9 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); +extern const bool __static_condition_default_5; extern const bool __static_condition_default_6; extern const bool __static_condition_default_11; -extern const bool __static_condition_default_5; void __static_initializer_default() { __static_renaming("__nondet_0", "nondet"); __static_renaming("__security_old_inode_init_security_3", "security_old_inode_init_security"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.inferres b/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.inferres new file mode 100644 index 00000000..d55e12ea --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.inferres @@ -0,0 +1,14 @@ + +LINUX/30e053248da.c:41: error: Uninitialized Value + `length` is read without initialization during the call to `reiserfs_security_init()`. + 39. int length; // (2) + 40. + 41. retval = reiserfs_security_init(&length); // (3) length not initialized + ^ + 42. if (retval < 0) + 43. { + + +Found 1 issue + Issue Type(ISSUED_TYPE_ID): # + Uninitialized Value(PULSE_UNINITIALIZED_VALUE): 1 diff --git a/fonda/cpp_testsuite/varBugs/LINUX/36855dcfc98.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/36855dcfc98.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/36855dcfc98.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/36855dcfc98.inferres b/fonda/cpp_testsuite/varBugs/LINUX/36855dcfc98.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/36855dcfc98.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/472a474c663.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/472a474c663.desugared.c index 6d2f24dd..b322bcb6 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/472a474c663.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/472a474c663.desugared.c @@ -7,11 +7,11 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_6; extern const bool __static_condition_default_7; +extern const bool __static_condition_default_14; extern const bool __static_condition_default_10; +extern const bool __static_condition_default_6; extern const bool __static_condition_default_15; -extern const bool __static_condition_default_14; void __static_initializer_default() { __static_renaming("__nondet_0", "nondet"); __static_renaming("__smp_found_config_1", "smp_found_config"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/472a474c663.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/472a474c663.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/472a474c663.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/472a474c663.inferres b/fonda/cpp_testsuite/varBugs/LINUX/472a474c663.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/472a474c663.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.c index 2b6cd9b7..6a38cbc8 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.c @@ -7,9 +7,27 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_33; extern const bool __static_condition_default_43; +extern const bool __static_condition_default_54; +extern const bool __static_condition_default_29; +extern const bool __static_condition_default_56; +extern const bool __static_condition_default_59; +extern const bool __static_condition_default_36; +extern const bool __static_condition_default_39; +extern const bool __static_condition_default_58; +extern const bool __static_condition_default_60; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_52; +extern const bool __static_condition_default_31; +extern const bool __static_condition_default_44; +extern const bool __static_condition_default_57; +extern const bool __static_condition_default_45; +extern const bool __static_condition_default_51; extern const bool __static_condition_default_42; +extern const bool __static_condition_default_50; +extern const bool __static_condition_default_55; +extern const bool __static_condition_default_35; +extern const bool __static_condition_default_61; void __static_initializer_default() { __static_renaming("__int8_t_0", "int8_t"); __static_renaming("__int16_t_1", "int16_t"); @@ -40,21 +58,39 @@ __static_renaming("__uintptr_t_25", "uintptr_t"); __static_renaming("__intmax_t_26", "intmax_t"); __static_renaming("__uintmax_t_27", "uintmax_t"); __static_renaming("__s32_28", "s32"); -__static_renaming("__s64_29", "s64"); -__static_renaming("__u64_30", "u64"); -__static_renaming("__ktime_set_32", "ktime_set"); -__static_renaming("__tmp_35", "tmp"); -__static_renaming("__sec_36", "sec"); -__static_renaming("__ktime_add_ns_37", "ktime_add_ns"); -__static_renaming("__time_delta_38", "time_delta"); -__static_renaming("__expires_39", "expires"); -__static_renaming("__tick_nohz_stop_sched_tick_40", "tick_nohz_stop_sched_tick"); -__static_renaming("__tick_nohz_stop_sched_tick_41", "tick_nohz_stop_sched_tick"); -__static_renaming("__main_46", "main"); - -__static_condition_renaming("__static_condition_default_33", "!(defined CONFIG_64BIT) && !(defined CONFIG_KTIME_SCALAR)"); -__static_condition_renaming("__static_condition_default_42", "!(defined CONFIG_64BIT) && (defined CONFIG_KTIME_SCALAR) || (defined CONFIG_64BIT)"); -__static_condition_renaming("__static_condition_default_43", "!(defined CONFIG_64BIT) && !(defined CONFIG_KTIME_SCALAR)"); +__static_renaming("__s64_30", "s64"); +__static_renaming("__u64_32", "u64"); +__static_renaming("__ktime_set_34", "ktime_set"); +__static_renaming("__tmp_38", "tmp"); +__static_renaming("__sec_40", "sec"); +__static_renaming("__ktime_add_ns_41", "ktime_add_ns"); +__static_renaming("__time_delta_46", "time_delta"); +__static_renaming("__expires_47", "expires"); +__static_renaming("__tick_nohz_stop_sched_tick_48", "tick_nohz_stop_sched_tick"); +__static_renaming("__tick_nohz_stop_sched_tick_49", "tick_nohz_stop_sched_tick"); +__static_renaming("__main_64", "main"); + +__static_condition_renaming("__static_condition_default_29", "(defined __int8_t_defined)"); +__static_condition_renaming("__static_condition_default_31", "(defined __int8_t_defined)"); +__static_condition_renaming("__static_condition_default_35", "(defined __int8_t_defined) && !(defined CONFIG_64BIT) && !(defined CONFIG_KTIME_SCALAR)"); +__static_condition_renaming("__static_condition_default_36", "!(defined __int8_t_defined) && !(defined CONFIG_64BIT) && !(defined CONFIG_KTIME_SCALAR)"); +__static_condition_renaming("__static_condition_default_39", "(defined __int8_t_defined) && !(defined CONFIG_64BIT) && !(defined CONFIG_KTIME_SCALAR)"); +__static_condition_renaming("__static_condition_default_42", "(defined __int8_t_defined) && !(defined CONFIG_64BIT) && !(defined CONFIG_KTIME_SCALAR)"); +__static_condition_renaming("__static_condition_default_43", "!(defined __int8_t_defined) && !(defined CONFIG_64BIT) && !(defined CONFIG_KTIME_SCALAR)"); +__static_condition_renaming("__static_condition_default_44", "!(defined __int8_t_defined) && !(defined CONFIG_64BIT) && !(defined CONFIG_KTIME_SCALAR)"); +__static_condition_renaming("__static_condition_default_45", "!(defined __int8_t_defined) && !(defined CONFIG_64BIT) && !(defined CONFIG_KTIME_SCALAR)"); +__static_condition_renaming("__static_condition_default_50", "!(defined CONFIG_64BIT) && (defined CONFIG_KTIME_SCALAR) || (defined CONFIG_64BIT)"); +__static_condition_renaming("__static_condition_default_51", "!(defined __int8_t_defined) && !(defined CONFIG_64BIT) && (defined CONFIG_KTIME_SCALAR) || !(defined __int8_t_defined) && (defined CONFIG_64BIT)"); +__static_condition_renaming("__static_condition_default_52", "!(defined __int8_t_defined) && !(defined CONFIG_64BIT) && (defined CONFIG_KTIME_SCALAR) || !(defined __int8_t_defined) && (defined CONFIG_64BIT)"); +__static_condition_renaming("__static_condition_default_53", "(defined __int8_t_defined) && !(defined CONFIG_64BIT) && (defined CONFIG_KTIME_SCALAR) || (defined __int8_t_defined) && (defined CONFIG_64BIT)"); +__static_condition_renaming("__static_condition_default_54", "!(defined __int8_t_defined) && !(defined CONFIG_64BIT) && (defined CONFIG_KTIME_SCALAR) || !(defined __int8_t_defined) && (defined CONFIG_64BIT)"); +__static_condition_renaming("__static_condition_default_55", "(defined __int8_t_defined) && !(defined CONFIG_64BIT) && (defined CONFIG_KTIME_SCALAR) || (defined __int8_t_defined) && (defined CONFIG_64BIT)"); +__static_condition_renaming("__static_condition_default_56", "!(defined CONFIG_64BIT) && !(defined CONFIG_KTIME_SCALAR)"); +__static_condition_renaming("__static_condition_default_57", "!(defined __int8_t_defined) && !(defined CONFIG_64BIT) && !(defined CONFIG_KTIME_SCALAR)"); +__static_condition_renaming("__static_condition_default_58", "!(defined __int8_t_defined) && !(defined CONFIG_64BIT) && !(defined CONFIG_KTIME_SCALAR)"); +__static_condition_renaming("__static_condition_default_59", "(defined __int8_t_defined) && !(defined CONFIG_64BIT) && !(defined CONFIG_KTIME_SCALAR)"); +__static_condition_renaming("__static_condition_default_60", "!(defined __int8_t_defined) && !(defined CONFIG_64BIT) && !(defined CONFIG_KTIME_SCALAR)"); +__static_condition_renaming("__static_condition_default_61", "(defined __int8_t_defined) && !(defined CONFIG_64BIT) && !(defined CONFIG_KTIME_SCALAR)"); }; typedef signed char __int8_t_0;// L36 @@ -86,8 +122,8 @@ typedef unsigned long int __uintptr_t_25;// L122 typedef long int __intmax_t_26;// L134 typedef unsigned long int __uintmax_t_27;// L135 typedef __int32_t_2 __s32_28;// L4 -typedef __int64_t_3 __s64_29;// L5 -typedef __uint64_t_7 __u64_30;// L6 +typedef __int64_t_3 __s64_30;// L5 +typedef __uint64_t_7 __u64_32;// L6 // typedef moved to top of scope // typedef moved to top of scope @@ -120,138 +156,170 @@ typedef __uint64_t_7 __u64_30;// L6 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -static inline __s64_29 (__ktime_set_32) (const long __secs_31) { +static inline __s64_30 (__ktime_set_34) (const long __secs_33) { -if (__static_condition_default_33) { +if (__static_condition_default_36) { { { -return ( __s64_29 ) __secs_31 * 1000000000L ;// L31 +return ( __s64_30 ) __secs_33 * 1000000000L ;// L31 } } } } -__s64_29 (__ktime_add_ns_37) (__u64_30 __nsec_34) { +__s64_30 (__ktime_add_ns_41) (__u64_32 __nsec_37) { -if (__static_condition_default_33) { +if (__static_condition_default_43) { { { -__s64_29 __tmp_35;// L36 +__s64_30 __tmp_38;// L36 -if ( __nsec_34 < 1000000000L )// L38 +if ( __nsec_37 < 1000000000L )// L38 { +if (__static_condition_default_44) { { { - __tmp_35 = __nsec_34 ; // L39 + __tmp_38 = __nsec_37 ; // L39 +} } } } else { +if (__static_condition_default_45) { { { -unsigned long __sec_36= __nsec_34 / 1000000000L;// L41 +unsigned long __sec_40= __nsec_37 / 1000000000L;// L41 - __tmp_35 = __ktime_set_32 (( __s32_28 ) __sec_36 ) ; // L42 + __tmp_38 = __ktime_set_34 (( __s32_28 ) __sec_40 ) ; // L42 +} } } } -return __tmp_35 ;// L45 +return __tmp_38 ;// L45 } } } } -static __u64_30 (__tick_nohz_stop_sched_tick_40) () { +static __u64_32 (__tick_nohz_stop_sched_tick_48) () { -if (__static_condition_default_42) { +if (__static_condition_default_50) { { { -__u64_30 __time_delta_38= ( __u64_30 ) 7881299347898368000;// L52 +__u64_32 __time_delta_46= ( __u64_32 ) 7881299347898368000;// L52 -__s64_29 __expires_39;// L53 +__s64_30 __expires_47;// L53 + +if (__static_condition_default_31) { +__static_type_error("invalid declaration of expires under this presence condition"); +} -if ( __time_delta_38 < ( ( __s64_29 ) ~ ( ( __u64_30 ) 1 << 63 ) ) )// L55 +if (__static_condition_default_51) { +if ( __time_delta_46 < ( ( __s64_30 ) ~ ( ( __u64_32 ) 1 << 63 ) ) )// L55 { - __expires_39 = ( __time_delta_38 ) ; // L25:L56 + __expires_47 = ( __time_delta_46 ) ; // L25:L56 } else { -if (__static_condition_default_42) { - __expires_39 = ( ( __s64_29 ) ~ ( ( __u64_30 ) 1 << 63 ) ) ; // L16:L58 +if (__static_condition_default_52) { + __expires_47 = ( ( __s64_30 ) ~ ( ( __u64_32 ) 1 << 63 ) ) ; // L16:L58 +} +} +} +if (__static_condition_default_53) { +__static_type_error("invalid type found in ifelse statement"); +} +if (__static_condition_default_54) { +return __expires_47 ;// L60 } +if (__static_condition_default_55) { +__static_type_error("invalid type found in return expression"); } -return __expires_39 ;// L60 } } } } -static __u64_30 (__tick_nohz_stop_sched_tick_41) () { +static __u64_32 (__tick_nohz_stop_sched_tick_49) () { -if (__static_condition_default_43) { +if (__static_condition_default_56) { { { -__u64_30 __time_delta_38= ( __u64_30 ) 7881299347898368000;// L52 +__u64_32 __time_delta_46= ( __u64_32 ) 7881299347898368000;// L52 + +__s64_30 __expires_47;// L53 -__s64_29 __expires_39;// L53 +if (__static_condition_default_31) { +__static_type_error("invalid declaration of expires under this presence condition"); +} -if ( __time_delta_38 < ( ( __s64_29 ) ~ ( ( __u64_30 ) 1 << 63 ) ) )// L55 +if (__static_condition_default_57) { +if ( __time_delta_46 < ( ( __s64_30 ) ~ ( ( __u64_32 ) 1 << 63 ) ) )// L55 { - __expires_39 = __ktime_add_ns_37 ( __time_delta_38 ) ; // L56 + __expires_47 = __ktime_add_ns_41 ( __time_delta_46 ) ; // L56 } else { -if (__static_condition_default_43) { - __expires_39 = ( ( __s64_29 ) ~ ( ( __u64_30 ) 1 << 63 ) ) ; // L16:L58 +if (__static_condition_default_58) { + __expires_47 = ( ( __s64_30 ) ~ ( ( __u64_32 ) 1 << 63 ) ) ; // L16:L58 +} } } -return __expires_39 ;// L60 +if (__static_condition_default_59) { +__static_type_error("invalid type found in ifelse statement"); +} +if (__static_condition_default_60) { +return __expires_47 ;// L60 +} +if (__static_condition_default_61) { +__static_type_error("invalid type found in return expression"); +} } } } } -int (__main_46) (int __argc_44, char * (* (__argv_45))) { +int (__main_64) (int __argc_62, char * (* (__argv_63))) { { { -if (__static_condition_default_42) { - __tick_nohz_stop_sched_tick_40 ( ) ; // L65 +if (__static_condition_default_50) { + __tick_nohz_stop_sched_tick_48 ( ) ; // L65 } -if (__static_condition_default_43) { - __tick_nohz_stop_sched_tick_41 ( ) ; // L65 +if (__static_condition_default_56) { + __tick_nohz_stop_sched_tick_49 ( ) ; // L65 } return 0 ;// L66 } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.clangres index e69de29b..bc21d33f 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.clangres @@ -0,0 +1,10 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.c:216:1: warning: Undefined or garbage value returned to caller [core.uninitialized.UndefReturn] +return __tmp_38 ;// L45 +^~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.c:256:1: warning: Undefined or garbage value returned to caller [core.uninitialized.UndefReturn] +return __expires_47 ;// L60 +^~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.c:300:1: warning: Undefined or garbage value returned to caller [core.uninitialized.UndefReturn] +return __expires_47 ;// L60 +^~~~~~~~~~~~~~~~~~~~ +3 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.inferres b/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.desugared.c index 23916e64..f12f4566 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.desugared.c @@ -7,284 +7,284 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_490; -extern const bool __static_condition_default_722; -extern const bool __static_condition_default_754; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_888; +extern const bool __static_condition_default_434; +extern const bool __static_condition_default_781; extern const bool __static_condition_default_849; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_383; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_609; -extern const bool __static_condition_default_495; -extern const bool __static_condition_default_476; -extern const bool __static_condition_default_837; -extern const bool __static_condition_default_239; -extern const bool __static_condition_default_291; -extern const bool __static_condition_default_958; -extern const bool __static_condition_default_586; -extern const bool __static_condition_default_638; +extern const bool __static_condition_default_648; +extern const bool __static_condition_default_420; +extern const bool __static_condition_default_663; extern const bool __static_condition_default_709; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_892; -extern const bool __static_condition_default_434; -extern const bool __static_condition_default_356; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_804; -extern const bool __static_condition_default_810; -extern const bool __static_condition_default_276; -extern const bool __static_condition_default_780; -extern const bool __static_condition_default_622; -extern const bool __static_condition_default_1099; -extern const bool __static_condition_default_279; -extern const bool __static_condition_default_569; -extern const bool __static_condition_default_332; -extern const bool __static_condition_default_1006; -extern const bool __static_condition_default_376; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_957; -extern const bool __static_condition_default_512; -extern const bool __static_condition_default_939; -extern const bool __static_condition_default_639; -extern const bool __static_condition_default_1102; -extern const bool __static_condition_default_826; -extern const bool __static_condition_default_624; -extern const bool __static_condition_default_394; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_224; -extern const bool __static_condition_default_462; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_671; -extern const bool __static_condition_default_281; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_1092; -extern const bool __static_condition_default_1104; -extern const bool __static_condition_default_798; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_445; -extern const bool __static_condition_default_285; -extern const bool __static_condition_default_1074; -extern const bool __static_condition_default_647; +extern const bool __static_condition_default_841; +extern const bool __static_condition_default_358; +extern const bool __static_condition_default_476; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_474; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_183; +extern const bool __static_condition_default_1029; +extern const bool __static_condition_default_530; +extern const bool __static_condition_default_199; +extern const bool __static_condition_default_859; +extern const bool __static_condition_default_124; +extern const bool __static_condition_default_702; +extern const bool __static_condition_default_348; extern const bool __static_condition_default_554; -extern const bool __static_condition_default_748; -extern const bool __static_condition_default_603; +extern const bool __static_condition_default_820; +extern const bool __static_condition_default_413; +extern const bool __static_condition_default_489; +extern const bool __static_condition_default_579; extern const bool __static_condition_default_634; -extern const bool __static_condition_default_853; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_635; -extern const bool __static_condition_default_964; -extern const bool __static_condition_default_565; -extern const bool __static_condition_default_1109; -extern const bool __static_condition_default_456; -extern const bool __static_condition_default_620; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_268; -extern const bool __static_condition_default_869; -extern const bool __static_condition_default_1023; +extern const bool __static_condition_default_490; extern const bool __static_condition_default_188; -extern const bool __static_condition_default_879; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_1111; -extern const bool __static_condition_default_524; -extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_256; -extern const bool __static_condition_default_694; -extern const bool __static_condition_default_761; -extern const bool __static_condition_default_793; -extern const bool __static_condition_default_409; -extern const bool __static_condition_default_1029; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_824; -extern const bool __static_condition_default_574; -extern const bool __static_condition_default_230; -extern const bool __static_condition_default_945; +extern const bool __static_condition_default_865; +extern const bool __static_condition_default_374; +extern const bool __static_condition_default_622; +extern const bool __static_condition_default_194; +extern const bool __static_condition_default_394; extern const bool __static_condition_default_999; -extern const bool __static_condition_default_540; -extern const bool __static_condition_default_1008; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_413; -extern const bool __static_condition_default_334; -extern const bool __static_condition_default_439; +extern const bool __static_condition_default_1010; +extern const bool __static_condition_default_312; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_826; +extern const bool __static_condition_default_964; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_678; +extern const bool __static_condition_default_366; +extern const bool __static_condition_default_1103; +extern const bool __static_condition_default_281; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_54; +extern const bool __static_condition_default_614; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_1110; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_718; extern const bool __static_condition_default_1106; -extern const bool __static_condition_default_370; -extern const bool __static_condition_default_492; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_722; +extern const bool __static_condition_default_754; +extern const bool __static_condition_default_522; +extern const bool __static_condition_default_892; +extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_1016; extern const bool __static_condition_default_260; -extern const bool __static_condition_default_403; -extern const bool __static_condition_default_314; -extern const bool __static_condition_default_865; -extern const bool __static_condition_default_205; -extern const bool __static_condition_default_297; -extern const bool __static_condition_default_614; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_793; extern const bool __static_condition_default_895; -extern const bool __static_condition_default_124; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_254; +extern const bool __static_condition_default_456; +extern const bool __static_condition_default_245; +extern const bool __static_condition_default_1074; extern const bool __static_condition_default_516; -extern const bool __static_condition_default_930; -extern const bool __static_condition_default_1110; -extern const bool __static_condition_default_1016; -extern const bool __static_condition_default_264; +extern const bool __static_condition_default_544; +extern const bool __static_condition_default_565; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_224; +extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_492; +extern const bool __static_condition_default_338; extern const bool __static_condition_default_470; -extern const bool __static_condition_default_245; -extern const bool __static_condition_default_389; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_664; extern const bool __static_condition_default_551; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_876; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_884; -extern const bool __static_condition_default_626; -extern const bool __static_condition_default_728; -extern const bool __static_condition_default_802; -extern const bool __static_condition_default_863; -extern const bool __static_condition_default_318; -extern const bool __static_condition_default_553; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_524; +extern const bool __static_condition_default_869; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_445; +extern const bool __static_condition_default_1023; +extern const bool __static_condition_default_368; +extern const bool __static_condition_default_790; +extern const bool __static_condition_default_389; +extern const bool __static_condition_default_1008; extern const bool __static_condition_default_756; -extern const bool __static_condition_default_54; -extern const bool __static_condition_default_283; -extern const bool __static_condition_default_287; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_366; -extern const bool __static_condition_default_522; -extern const bool __static_condition_default_652; -extern const bool __static_condition_default_199; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_312; -extern const bool __static_condition_default_660; -extern const bool __static_condition_default_1103; +extern const bool __static_condition_default_77; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_789; +extern const bool __static_condition_default_236; +extern const bool __static_condition_default_439; +extern const bool __static_condition_default_540; +extern const bool __static_condition_default_550; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_332; +extern const bool __static_condition_default_1052; +extern const bool __static_condition_default_992; +extern const bool __static_condition_default_635; +extern const bool __static_condition_default_843; +extern const bool __static_condition_default_487; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_247; extern const bool __static_condition_default_396; -extern const bool __static_condition_default_489; +extern const bool __static_condition_default_884; extern const bool __static_condition_default_1082; -extern const bool __static_condition_default_358; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_171; -extern const bool __static_condition_default_843; -extern const bool __static_condition_default_368; -extern const bool __static_condition_default_859; -extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_272; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_218; -extern const bool __static_condition_default_472; -extern const bool __static_condition_default_718; -extern const bool __static_condition_default_1067; -extern const bool __static_condition_default_782; extern const bool __static_condition_default_591; -extern const bool __static_condition_default_236; -extern const bool __static_condition_default_364; -extern const bool __static_condition_default_790; -extern const bool __static_condition_default_818; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_648; -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_1108; -extern const bool __static_condition_default_418; -extern const bool __static_condition_default_1052; -extern const bool __static_condition_default_808; -extern const bool __static_condition_default_504; -extern const bool __static_condition_default_561; -extern const bool __static_condition_default_342; -extern const bool __static_condition_default_579; -extern const bool __static_condition_default_736; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_1037; +extern const bool __static_condition_default_297; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_626; +extern const bool __static_condition_default_609; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_403; +extern const bool __static_condition_default_334; extern const bool __static_condition_default_498; -extern const bool __static_condition_default_316; -extern const bool __static_condition_default_500; -extern const bool __static_condition_default_758; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_294; -extern const bool __static_condition_default_338; +extern const bool __static_condition_default_658; extern const bool __static_condition_default_724; -extern const bool __static_condition_default_685; -extern const bool __static_condition_default_702; -extern const bool __static_condition_default_348; -extern const bool __static_condition_default_254; -extern const bool __static_condition_default_513; -extern const bool __static_condition_default_769; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_530; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_981; -extern const bool __static_condition_default_381; +extern const bool __static_condition_default_915; +extern const bool __static_condition_default_272; +extern const bool __static_condition_default_586; +extern const bool __static_condition_default_652; extern const bool __static_condition_default_973; -extern const bool __static_condition_default_1044; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_77; -extern const bool __static_condition_default_908; -extern const bool __static_condition_default_346; -extern const bool __static_condition_default_1037; +extern const bool __static_condition_default_356; +extern const bool __static_condition_default_1099; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_462; +extern const bool __static_condition_default_804; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_770; extern const bool __static_condition_default_1115; -extern const bool __static_condition_default_289; -extern const bool __static_condition_default_517; -extern const bool __static_condition_default_737; -extern const bool __static_condition_default_746; +extern const bool __static_condition_default_364; +extern const bool __static_condition_default_598; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_1105; +extern const bool __static_condition_default_268; extern const bool __static_condition_default_710; -extern const bool __static_condition_default_915; -extern const bool __static_condition_default_545; -extern const bool __static_condition_default_873; -extern const bool __static_condition_default_174; -extern const bool __static_condition_default_747; -extern const bool __static_condition_default_968; -extern const bool __static_condition_default_820; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_693; -extern const bool __static_condition_default_770; -extern const bool __static_condition_default_956; -extern const bool __static_condition_default_251; -extern const bool __static_condition_default_474; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_835; -extern const bool __static_condition_default_847; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_1059; -extern const bool __static_condition_default_387; -extern const bool __static_condition_default_183; -extern const bool __static_condition_default_888; -extern const bool __static_condition_default_992; -extern const bool __static_condition_default_265; extern const bool __static_condition_default_716; -extern const bool __static_condition_default_762; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_202; -extern const bool __static_condition_default_194; +extern const bool __static_condition_default_1109; +extern const bool __static_condition_default_239; +extern const bool __static_condition_default_824; +extern const bool __static_condition_default_283; +extern const bool __static_condition_default_294; +extern const bool __static_condition_default_747; +extern const bool __static_condition_default_574; +extern const bool __static_condition_default_381; +extern const bool __static_condition_default_818; +extern const bool __static_condition_default_1006; +extern const bool __static_condition_default_879; +extern const bool __static_condition_default_737; +extern const bool __static_condition_default_218; +extern const bool __static_condition_default_837; +extern const bool __static_condition_default_409; +extern const bool __static_condition_default_753; +extern const bool __static_condition_default_694; +extern const bool __static_condition_default_1028; extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_598; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_420; extern const bool __static_condition_default_300; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_584; -extern const bool __static_condition_default_701; -extern const bool __static_condition_default_374; +extern const bool __static_condition_default_512; +extern const bool __static_condition_default_810; +extern const bool __static_condition_default_279; +extern const bool __static_condition_default_251; +extern const bool __static_condition_default_930; +extern const bool __static_condition_default_1108; +extern const bool __static_condition_default_174; +extern const bool __static_condition_default_863; +extern const bool __static_condition_default_1044; extern const bool __static_condition_default_543; -extern const bool __static_condition_default_646; -extern const bool __static_condition_default_664; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_247; -extern const bool __static_condition_default_669; -extern const bool __static_condition_default_789; +extern const bool __static_condition_default_205; +extern const bool __static_condition_default_660; +extern const bool __static_condition_default_1104; +extern const bool __static_condition_default_603; +extern const bool __static_condition_default_1059; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_728; +extern const bool __static_condition_default_370; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_561; +extern const bool __static_condition_default_1067; +extern const bool __static_condition_default_289; +extern const bool __static_condition_default_1111; +extern const bool __static_condition_default_958; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_504; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_748; +extern const bool __static_condition_default_808; +extern const bool __static_condition_default_968; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_939; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_981; extern const bool __static_condition_default_703; extern const bool __static_condition_default_814; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_211; -extern const bool __static_condition_default_678; -extern const bool __static_condition_default_1010; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_841; -extern const bool __static_condition_default_487; +extern const bool __static_condition_default_314; +extern const bool __static_condition_default_908; +extern const bool __static_condition_default_620; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_256; +extern const bool __static_condition_default_517; +extern const bool __static_condition_default_761; extern const bool __static_condition_default_687; +extern const bool __static_condition_default_873; extern const bool __static_condition_default_792; +extern const bool __static_condition_default_500; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_835; +extern const bool __static_condition_default_669; +extern const bool __static_condition_default_545; +extern const bool __static_condition_default_265; +extern const bool __static_condition_default_318; +extern const bool __static_condition_default_342; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_876; +extern const bool __static_condition_default_1092; +extern const bool __static_condition_default_276; +extern const bool __static_condition_default_853; +extern const bool __static_condition_default_794; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_639; +extern const bool __static_condition_default_802; +extern const bool __static_condition_default_264; extern const bool __static_condition_default_85; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_230; +extern const bool __static_condition_default_287; +extern const bool __static_condition_default_211; extern const bool __static_condition_default_242; -extern const bool __static_condition_default_753; -extern const bool __static_condition_default_794; -extern const bool __static_condition_default_1105; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_513; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_945; +extern const bool __static_condition_default_847; +extern const bool __static_condition_default_285; +extern const bool __static_condition_default_762; +extern const bool __static_condition_default_387; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_291; +extern const bool __static_condition_default_758; +extern const bool __static_condition_default_383; +extern const bool __static_condition_default_624; +extern const bool __static_condition_default_671; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_1102; +extern const bool __static_condition_default_346; +extern const bool __static_condition_default_376; +extern const bool __static_condition_default_418; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_569; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_584; +extern const bool __static_condition_default_316; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_171; +extern const bool __static_condition_default_495; +extern const bool __static_condition_default_782; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_202; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_769; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_472; +extern const bool __static_condition_default_798; +extern const bool __static_condition_default_757; void __static_initializer_default() { __static_renaming("____errno_location_0", "__errno_location"); __static_renaming("__ptrdiff_t_1", "ptrdiff_t"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.inferres b/fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.desugared.c index 5aa566fd..62cb611b 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.desugared.c @@ -7,14 +7,14 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_10; extern const bool __static_condition_default_14; -extern const bool __static_condition_default_9; -extern const bool __static_condition_default_4; extern const bool __static_condition_default_8; -extern const bool __static_condition_default_16; +extern const bool __static_condition_default_10; extern const bool __static_condition_default_7; +extern const bool __static_condition_default_9; +extern const bool __static_condition_default_4; extern const bool __static_condition_default_15; +extern const bool __static_condition_default_16; void __static_initializer_default() { __static_renaming("__irq_domain_simple_ops_0", "irq_domain_simple_ops"); __static_renaming("__irq_2", "irq"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.inferres b/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.desugared.c index 21c68084..d97323a1 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.desugared.c @@ -7,20 +7,20 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_25; -extern const bool __static_condition_default_30; +extern const bool __static_condition_default_14; +extern const bool __static_condition_default_11; +extern const bool __static_condition_default_27; extern const bool __static_condition_default_18; -extern const bool __static_condition_default_31; -extern const bool __static_condition_default_20; -extern const bool __static_condition_default_23; -extern const bool __static_condition_default_24; extern const bool __static_condition_default_19; +extern const bool __static_condition_default_30; extern const bool __static_condition_default_8; +extern const bool __static_condition_default_25; extern const bool __static_condition_default_15; +extern const bool __static_condition_default_23; extern const bool __static_condition_default_26; -extern const bool __static_condition_default_11; -extern const bool __static_condition_default_27; -extern const bool __static_condition_default_14; +extern const bool __static_condition_default_20; +extern const bool __static_condition_default_24; +extern const bool __static_condition_default_31; void __static_initializer_default() { __static_renaming("____assert_fail_4", "__assert_fail"); __static_renaming("__nondet_5", "nondet"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.inferres b/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/6515e48932c.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/6515e48932c.desugared.c index bc807b0d..b773195f 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/6515e48932c.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/6515e48932c.desugared.c @@ -7,12 +7,12 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); +extern const bool __static_condition_default_4; extern const bool __static_condition_default_11; -extern const bool __static_condition_default_10; -extern const bool __static_condition_default_5; extern const bool __static_condition_default_3; +extern const bool __static_condition_default_10; extern const bool __static_condition_default_1; -extern const bool __static_condition_default_4; +extern const bool __static_condition_default_5; void __static_initializer_default() { __static_renaming("__omap2_set_globals_242x_0", "omap2_set_globals_242x"); __static_renaming("__omap_h4_map_io_2", "omap_h4_map_io"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/6515e48932c.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/6515e48932c.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/6515e48932c.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/6515e48932c.inferres b/fonda/cpp_testsuite/varBugs/LINUX/6515e48932c.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/657e9649e74.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/657e9649e74.desugared.c index 9e244b81..5e730773 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/657e9649e74.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/657e9649e74.desugared.c @@ -7,13 +7,19 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_31; -extern const bool __static_condition_default_16; -extern const bool __static_condition_default_33; -extern const bool __static_condition_default_21; -extern const bool __static_condition_default_22; extern const bool __static_condition_default_17; -extern const bool __static_condition_default_32; +extern const bool __static_condition_default_21; +extern const bool __static_condition_default_27; +extern const bool __static_condition_default_16; +extern const bool __static_condition_default_20; +extern const bool __static_condition_default_37; +extern const bool __static_condition_default_39; +extern const bool __static_condition_default_26; +extern const bool __static_condition_default_28; +extern const bool __static_condition_default_38; +extern const bool __static_condition_default_23; +extern const bool __static_condition_default_29; +extern const bool __static_condition_default_24; void __static_initializer_default() { __static_renaming("____assert_fail_4", "__assert_fail"); __static_renaming("____assert_perror_fail_9", "__assert_perror_fail"); @@ -22,24 +28,30 @@ __static_renaming("__nondet_14", "nondet"); __static_renaming("__nondet_15", "nondet"); __static_renaming("__preempt_counter_18", "preempt_counter"); __static_renaming("__tcp_free_md5sig_pool_19", "tcp_free_md5sig_pool"); -__static_renaming("__tcp_put_md5sig_pool_20", "tcp_put_md5sig_pool"); -__static_renaming("__tcp_twsk_destructor_23", "tcp_twsk_destructor"); -__static_renaming("__twsk_destructor_24", "twsk_destructor"); -__static_renaming("__inet_twsk_free_25", "inet_twsk_free"); -__static_renaming("__inet_twsk_put_26", "inet_twsk_put"); -__static_renaming("__inet_twdr_do_twkill_work_27", "inet_twdr_do_twkill_work"); -__static_renaming("__inet_twdr_hangman_28", "inet_twdr_hangman"); -__static_renaming("__preempt_count_29", "preempt_count"); -__static_renaming("____run_timers_30", "__run_timers"); -__static_renaming("__main_34", "main"); +__static_renaming("__tcp_put_md5sig_pool_22", "tcp_put_md5sig_pool"); +__static_renaming("__tcp_twsk_destructor_25", "tcp_twsk_destructor"); +__static_renaming("__twsk_destructor_30", "twsk_destructor"); +__static_renaming("__inet_twsk_free_31", "inet_twsk_free"); +__static_renaming("__inet_twsk_put_32", "inet_twsk_put"); +__static_renaming("__inet_twdr_do_twkill_work_33", "inet_twdr_do_twkill_work"); +__static_renaming("__inet_twdr_hangman_34", "inet_twdr_hangman"); +__static_renaming("__preempt_count_35", "preempt_count"); +__static_renaming("____run_timers_36", "__run_timers"); +__static_renaming("__main_40", "main"); __static_condition_renaming("__static_condition_default_16", "!(defined NDEBUG) && (defined _ASSERT_H_DECLS) || (defined NDEBUG)"); __static_condition_renaming("__static_condition_default_17", "!(defined NDEBUG) && !(defined _ASSERT_H_DECLS)"); -__static_condition_renaming("__static_condition_default_21", "!(defined CONFIG_PREEMPT)"); -__static_condition_renaming("__static_condition_default_22", "(defined CONFIG_PREEMPT)"); -__static_condition_renaming("__static_condition_default_31", "(defined NDEBUG)"); -__static_condition_renaming("__static_condition_default_32", "!(defined NDEBUG) && !(defined _ASSERT_H_DECLS)"); -__static_condition_renaming("__static_condition_default_33", "!(defined NDEBUG) && (defined _ASSERT_H_DECLS)"); +__static_condition_renaming("__static_condition_default_20", "(defined CONFIG_TCP_MD5SIG)"); +__static_condition_renaming("__static_condition_default_21", "!(defined CONFIG_TCP_MD5SIG)"); +__static_condition_renaming("__static_condition_default_23", "!(defined CONFIG_PREEMPT)"); +__static_condition_renaming("__static_condition_default_24", "(defined CONFIG_PREEMPT)"); +__static_condition_renaming("__static_condition_default_26", "!(defined CONFIG_TCP_MD5SIG)"); +__static_condition_renaming("__static_condition_default_27", "(defined CONFIG_TCP_MD5SIG)"); +__static_condition_renaming("__static_condition_default_28", "!(defined NDEBUG) && (defined _ASSERT_H_DECLS) && (defined CONFIG_TCP_MD5SIG) || (defined NDEBUG) && (defined CONFIG_TCP_MD5SIG)"); +__static_condition_renaming("__static_condition_default_29", "!(defined NDEBUG) && !(defined _ASSERT_H_DECLS) && (defined CONFIG_TCP_MD5SIG)"); +__static_condition_renaming("__static_condition_default_37", "(defined NDEBUG)"); +__static_condition_renaming("__static_condition_default_38", "!(defined NDEBUG) && !(defined _ASSERT_H_DECLS)"); +__static_condition_renaming("__static_condition_default_39", "!(defined NDEBUG) && (defined _ASSERT_H_DECLS)"); }; @@ -86,23 +98,28 @@ static inline void (__tcp_free_md5sig_pool_19) (void ) { +if (__static_condition_default_20) { ; // L21 } +if (__static_condition_default_21) { +__static_type_error("type error : no valid expression"); // L21 +} +} } } -static inline void (__tcp_put_md5sig_pool_20) (void ) { +static inline void (__tcp_put_md5sig_pool_22) (void ) { { { -if (__static_condition_default_21) { +if (__static_condition_default_23) { ; // L26 } -if (__static_condition_default_22) { +if (__static_condition_default_24) { ( __preempt_counter_18 -- ) ; // L10:L26 } } @@ -110,23 +127,39 @@ if (__static_condition_default_22) { } -void (__tcp_twsk_destructor_23) () { +void (__tcp_twsk_destructor_25) () { + +{ +if (__static_condition_default_26) { { { -if (__static_condition_default_16) { +} +} + + +} + +if (__static_condition_default_27) { + +{ +{ + + + +if (__static_condition_default_28) { if ( __nondet_14 ( ) )// L32 { - __tcp_put_md5sig_pool_20 ( ) ; // L33 + __tcp_put_md5sig_pool_22 ( ) ; // L33 } } -if (__static_condition_default_17) { +if (__static_condition_default_29) { if ( __nondet_15 ( ) )// L32 { - __tcp_put_md5sig_pool_20 ( ) ; // L33 + __tcp_put_md5sig_pool_22 ( ) ; // L33 } } } @@ -134,83 +167,85 @@ if ( __nondet_15 ( ) )// L32 } -static inline void (__twsk_destructor_24) () { + +}} +static inline void (__twsk_destructor_30) () { { { - __tcp_twsk_destructor_23 ( ) ; // L39 + __tcp_twsk_destructor_25 ( ) ; // L39 } } } -static void (__inet_twsk_free_25) () { +static void (__inet_twsk_free_31) () { { { - __twsk_destructor_24 ( ) ; // L44 + __twsk_destructor_30 ( ) ; // L44 } } } -void (__inet_twsk_put_26) () { +void (__inet_twsk_put_32) () { { { - __inet_twsk_free_25 ( ) ; // L49 + __inet_twsk_free_31 ( ) ; // L49 } } } -static int (__inet_twdr_do_twkill_work_27) () { +static int (__inet_twdr_do_twkill_work_33) () { { { - __inet_twsk_put_26 ( ) ; // L54 + __inet_twsk_put_32 ( ) ; // L54 return 0 ;// L55 } } } -void (__inet_twdr_hangman_28) () { +void (__inet_twdr_hangman_34) () { { { - __inet_twdr_do_twkill_work_27 ( ) ; // L60 + __inet_twdr_do_twkill_work_33 ( ) ; // L60 } } } -static inline void (____run_timers_30) () { +static inline void (____run_timers_36) () { { { -int __preempt_count_29= ( __preempt_counter_18 );// L65 +int __preempt_count_35= ( __preempt_counter_18 );// L65 - __inet_twdr_hangman_28 ( ) ; // L66 -if ( __preempt_count_29 != ( __preempt_counter_18 ) )// L67 + __inet_twdr_hangman_34 ( ) ; // L66 +if ( __preempt_count_35 != ( __preempt_counter_18 ) )// L67 { { @@ -218,13 +253,13 @@ if ( __preempt_count_29 != ( __preempt_counter_18 ) )// L67 -if (__static_condition_default_31) { +if (__static_condition_default_37) { ( ( void ) ( 0 ) ) ; // L50:L68 } -if (__static_condition_default_32) { +if (__static_condition_default_38) { ( ( 0 ) ? ( void ) ( 0 ) : ____assert_fail_4 ("0","/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/657e9649e74.c",68, __PRETTY_FUNCTION__ ) ) ; // L68:L91 } -if (__static_condition_default_33) { +if (__static_condition_default_39) { __static_type_error("type error") ; // L68:L91 } } @@ -235,14 +270,14 @@ __static_type_error("type error") ; // L68:L91 } -int (__main_34) (void ) { +int (__main_40) (void ) { { { - ____run_timers_30 ( ) ; // L74 + ____run_timers_36 ( ) ; // L74 return 0 ;// L75 } } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/657e9649e74.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/657e9649e74.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/657e9649e74.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/657e9649e74.inferres b/fonda/cpp_testsuite/varBugs/LINUX/657e9649e74.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/657e9649e74.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.desugared.c index dc7555a7..f11acd7b 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.desugared.c @@ -7,14 +7,14 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_4; -extern const bool __static_condition_default_14; extern const bool __static_condition_default_2; -extern const bool __static_condition_default_8; -extern const bool __static_condition_default_13; extern const bool __static_condition_default_6; extern const bool __static_condition_default_15; +extern const bool __static_condition_default_4; +extern const bool __static_condition_default_14; extern const bool __static_condition_default_16; +extern const bool __static_condition_default_13; +extern const bool __static_condition_default_8; void __static_initializer_default() { __static_renaming("__i2c_master_send_0", "i2c_master_send"); __static_renaming("__codec_hw_write_1", "codec_hw_write"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.inferres b/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.desugared.c index 59a52f71..92a71846 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.desugared.c @@ -7,16 +7,16 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_7; -extern const bool __static_condition_default_4; -extern const bool __static_condition_default_9; -extern const bool __static_condition_default_11; +extern const bool __static_condition_default_10; +extern const bool __static_condition_default_13; extern const bool __static_condition_default_8; -extern const bool __static_condition_default_12; extern const bool __static_condition_default_1; extern const bool __static_condition_default_2; -extern const bool __static_condition_default_10; -extern const bool __static_condition_default_13; +extern const bool __static_condition_default_12; +extern const bool __static_condition_default_4; +extern const bool __static_condition_default_7; +extern const bool __static_condition_default_9; +extern const bool __static_condition_default_11; void __static_initializer_default() { __static_renaming("__i2c_dw_init_0", "i2c_dw_init"); __static_renaming("__i2c_dw_init_3", "i2c_dw_init"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.inferres b/fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.c index 177fc2b6..8dfa1f57 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.c @@ -7,9 +7,9 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); +extern const bool __static_condition_default_17; extern const bool __static_condition_default_15; extern const bool __static_condition_default_16; -extern const bool __static_condition_default_17; extern const bool __static_condition_default_14; void __static_initializer_default() { __static_renaming("__malloc_1", "malloc"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.inferres b/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/76baeebf7df.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/76baeebf7df.desugared.c index e69de29b..0ab8a96f 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/76baeebf7df.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/76baeebf7df.desugared.c @@ -0,0 +1,1728 @@ +#include + +extern void __static_parse_error(char *msg); +extern void __static_type_error(char *msg); +extern void __static_renaming(char *renaming, char *original); +extern void __static_condition_renaming(char *expression, char *renaming); + +void __static_initializer_default(); + +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_1158; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_290; +extern const bool __static_condition_default_702; +extern const bool __static_condition_default_1108; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_1141; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_759; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_1119; +extern const bool __static_condition_default_1127; +extern const bool __static_condition_default_1138; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_544; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_347; +extern const bool __static_condition_default_84; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_1153; +extern const bool __static_condition_default_559; +extern const bool __static_condition_default_789; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_333; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_1115; +extern const bool __static_condition_default_891; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_583; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_550; +extern const bool __static_condition_default_1118; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_636; +extern const bool __static_condition_default_386; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_1140; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_388; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_1155; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_1110; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_1130; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_747; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_1125; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_791; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_311; +extern const bool __static_condition_default_536; +extern const bool __static_condition_default_1124; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_670; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_1117; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_1114; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_753; +extern const bool __static_condition_default_367; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_779; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_1139; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_894; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_1107; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_677; +extern const bool __static_condition_default_488; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_337; +extern const bool __static_condition_default_761; +extern const bool __static_condition_default_568; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_549; +extern const bool __static_condition_default_1126; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_1152; +extern const bool __static_condition_default_834; +extern const bool __static_condition_default_846; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_721; +extern const bool __static_condition_default_907; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_619; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_76; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_512; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_1109; +extern const bool __static_condition_default_955; +extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_769; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_380; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_365; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_204; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_1146; +extern const bool __static_condition_default_963; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_1157; +extern const bool __static_condition_default_187; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_382; +extern const bool __static_condition_default_419; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_1137; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_1154; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_1156; +extern const bool __static_condition_default_613; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_875; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_455; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_521; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_489; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_929; +extern const bool __static_condition_default_842; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_1116; +void __static_initializer_default() { +__static_renaming("__ptrdiff_t_0", "ptrdiff_t"); +__static_renaming("__size_t_1", "size_t"); +__static_renaming("____u_char_2", "__u_char"); +__static_renaming("____u_short_3", "__u_short"); +__static_renaming("____u_int_4", "__u_int"); +__static_renaming("____u_long_5", "__u_long"); +__static_renaming("____int8_t_6", "__int8_t"); +__static_renaming("____uint8_t_7", "__uint8_t"); +__static_renaming("____int16_t_8", "__int16_t"); +__static_renaming("____uint16_t_9", "__uint16_t"); +__static_renaming("____int32_t_10", "__int32_t"); +__static_renaming("____uint32_t_11", "__uint32_t"); +__static_renaming("____int64_t_12", "__int64_t"); +__static_renaming("____uint64_t_13", "__uint64_t"); +__static_renaming("____quad_t_14", "__quad_t"); +__static_renaming("____u_quad_t_15", "__u_quad_t"); +__static_renaming("____dev_t_16", "__dev_t"); +__static_renaming("____uid_t_17", "__uid_t"); +__static_renaming("____gid_t_18", "__gid_t"); +__static_renaming("____ino_t_19", "__ino_t"); +__static_renaming("____ino64_t_20", "__ino64_t"); +__static_renaming("____mode_t_21", "__mode_t"); +__static_renaming("____nlink_t_22", "__nlink_t"); +__static_renaming("____off_t_23", "__off_t"); +__static_renaming("____off64_t_24", "__off64_t"); +__static_renaming("____pid_t_25", "__pid_t"); +__static_renaming("____fsid_t_29", "__fsid_t"); +__static_renaming("____clock_t_30", "__clock_t"); +__static_renaming("____rlim_t_31", "__rlim_t"); +__static_renaming("____rlim64_t_32", "__rlim64_t"); +__static_renaming("____id_t_33", "__id_t"); +__static_renaming("____time_t_34", "__time_t"); +__static_renaming("____useconds_t_35", "__useconds_t"); +__static_renaming("____suseconds_t_36", "__suseconds_t"); +__static_renaming("____daddr_t_37", "__daddr_t"); +__static_renaming("____key_t_38", "__key_t"); +__static_renaming("____clockid_t_39", "__clockid_t"); +__static_renaming("____timer_t_40", "__timer_t"); +__static_renaming("____blksize_t_41", "__blksize_t"); +__static_renaming("____blkcnt_t_42", "__blkcnt_t"); +__static_renaming("____blkcnt64_t_43", "__blkcnt64_t"); +__static_renaming("____fsblkcnt_t_44", "__fsblkcnt_t"); +__static_renaming("____fsblkcnt64_t_45", "__fsblkcnt64_t"); +__static_renaming("____fsfilcnt_t_46", "__fsfilcnt_t"); +__static_renaming("____fsfilcnt64_t_47", "__fsfilcnt64_t"); +__static_renaming("____fsword_t_48", "__fsword_t"); +__static_renaming("____ssize_t_49", "__ssize_t"); +__static_renaming("____syscall_slong_t_50", "__syscall_slong_t"); +__static_renaming("____syscall_ulong_t_51", "__syscall_ulong_t"); +__static_renaming("____loff_t_52", "__loff_t"); +__static_renaming("____qaddr_t_54", "__qaddr_t"); +__static_renaming("____caddr_t_55", "__caddr_t"); +__static_renaming("____intptr_t_56", "__intptr_t"); +__static_renaming("____socklen_t_57", "__socklen_t"); +__static_renaming("__FILE_59", "FILE"); +__static_renaming("____FILE_60", "__FILE"); +__static_renaming("____mbstate_t_69", "__mbstate_t"); +__static_renaming("___G_fpos_t_77", "_G_fpos_t"); +__static_renaming("___G_fpos64_t_85", "_G_fpos64_t"); +__static_renaming("____gnuc_va_list_86", "__gnuc_va_list"); +__static_renaming("___IO_lock_t_88", "_IO_lock_t"); +__static_renaming("___IO_FILE_171", "_IO_FILE"); +__static_renaming("___IO_FILE_172", "_IO_FILE"); +__static_renaming("___IO_2_1_stdin__175", "_IO_2_1_stdin_"); +__static_renaming("___IO_2_1_stdout__176", "_IO_2_1_stdout_"); +__static_renaming("___IO_2_1_stderr__177", "_IO_2_1_stderr_"); +__static_renaming("____io_read_fn_181", "__io_read_fn"); +__static_renaming("____io_write_fn_186", "__io_write_fn"); +__static_renaming("____io_seek_fn_192", "__io_seek_fn"); +__static_renaming("____io_close_fn_195", "__io_close_fn"); +__static_renaming("____underflow_196", "__underflow"); +__static_renaming("____underflow_197", "__underflow"); +__static_renaming("____uflow_199", "__uflow"); +__static_renaming("____uflow_200", "__uflow"); +__static_renaming("____overflow_202", "__overflow"); +__static_renaming("____overflow_203", "__overflow"); +__static_renaming("___IO_getc_208", "_IO_getc"); +__static_renaming("___IO_getc_209", "_IO_getc"); +__static_renaming("___IO_putc_215", "_IO_putc"); +__static_renaming("___IO_putc_216", "_IO_putc"); +__static_renaming("___IO_feof_221", "_IO_feof"); +__static_renaming("___IO_feof_222", "_IO_feof"); +__static_renaming("___IO_ferror_227", "_IO_ferror"); +__static_renaming("___IO_ferror_228", "_IO_ferror"); +__static_renaming("___IO_peekc_locked_233", "_IO_peekc_locked"); +__static_renaming("___IO_peekc_locked_234", "_IO_peekc_locked"); +__static_renaming("___IO_flockfile_236", "_IO_flockfile"); +__static_renaming("___IO_flockfile_237", "_IO_flockfile"); +__static_renaming("___IO_funlockfile_239", "_IO_funlockfile"); +__static_renaming("___IO_funlockfile_240", "_IO_funlockfile"); +__static_renaming("___IO_ftrylockfile_242", "_IO_ftrylockfile"); +__static_renaming("___IO_ftrylockfile_243", "_IO_ftrylockfile"); +__static_renaming("___IO_vfscanf_245", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_247", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_251", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_252", "_IO_vfscanf"); +__static_renaming("___IO_vfprintf_254", "_IO_vfprintf"); +__static_renaming("___IO_vfprintf_256", "_IO_vfprintf"); +__static_renaming("___IO_vfprintf_260", "_IO_vfprintf"); +__static_renaming("___IO_padn_261", "_IO_padn"); +__static_renaming("___IO_padn_262", "_IO_padn"); +__static_renaming("___IO_sgetn_265", "_IO_sgetn"); +__static_renaming("___IO_sgetn_266", "_IO_sgetn"); +__static_renaming("___IO_seekoff_268", "_IO_seekoff"); +__static_renaming("___IO_seekoff_269", "_IO_seekoff"); +__static_renaming("___IO_seekpos_272", "_IO_seekpos"); +__static_renaming("___IO_seekpos_273", "_IO_seekpos"); +__static_renaming("___IO_free_backup_area_276", "_IO_free_backup_area"); +__static_renaming("___IO_free_backup_area_277", "_IO_free_backup_area"); +__static_renaming("__va_list_279", "va_list"); +__static_renaming("__off_t_281", "off_t"); +__static_renaming("__off_t_283", "off_t"); +__static_renaming("__ssize_t_285", "ssize_t"); +__static_renaming("__fpos_t_287", "fpos_t"); +__static_renaming("__fpos_t_289", "fpos_t"); +__static_renaming("__stdin_291", "stdin"); +__static_renaming("__stdin_292", "stdin"); +__static_renaming("__stdout_294", "stdout"); +__static_renaming("__stdout_295", "stdout"); +__static_renaming("__stderr_297", "stderr"); +__static_renaming("__stderr_298", "stderr"); +__static_renaming("__remove_301", "remove"); +__static_renaming("__rename_304", "rename"); +__static_renaming("__renameat_309", "renameat"); +__static_renaming("__tmpfile_310", "tmpfile"); +__static_renaming("__tmpfile_312", "tmpfile"); +__static_renaming("__tmpfile_314", "tmpfile"); +__static_renaming("__tmpfile_316", "tmpfile"); +__static_renaming("__tmpnam_319", "tmpnam"); +__static_renaming("__tmpnam_320", "tmpnam"); +__static_renaming("__tmpnam_r_322", "tmpnam_r"); +__static_renaming("__tmpnam_r_323", "tmpnam_r"); +__static_renaming("__tempnam_326", "tempnam"); +__static_renaming("__tempnam_327", "tempnam"); +__static_renaming("__fclose_330", "fclose"); +__static_renaming("__fclose_332", "fclose"); +__static_renaming("__fflush_336", "fflush"); +__static_renaming("__fflush_unlocked_340", "fflush_unlocked"); +__static_renaming("__fopen_344", "fopen"); +__static_renaming("__fopen_346", "fopen"); +__static_renaming("__fopen_354", "fopen"); +__static_renaming("__fopen_356", "fopen"); +__static_renaming("__freopen_362", "freopen"); +__static_renaming("__freopen_364", "freopen"); +__static_renaming("__freopen_366", "freopen"); +__static_renaming("__freopen_368", "freopen"); +__static_renaming("__fdopen_372", "fdopen"); +__static_renaming("__fdopen_374", "fdopen"); +__static_renaming("__fmemopen_379", "fmemopen"); +__static_renaming("__fmemopen_381", "fmemopen"); +__static_renaming("__open_memstream_385", "open_memstream"); +__static_renaming("__open_memstream_387", "open_memstream"); +__static_renaming("__setbuf_392", "setbuf"); +__static_renaming("__setbuf_394", "setbuf"); +__static_renaming("__setvbuf_401", "setvbuf"); +__static_renaming("__setbuffer_407", "setbuffer"); +__static_renaming("__setlinebuf_411", "setlinebuf"); +__static_renaming("__fprintf_416", "fprintf"); +__static_renaming("__fprintf_418", "fprintf"); +__static_renaming("__printf_421", "printf"); +__static_renaming("__sprintf_424", "sprintf"); +__static_renaming("__vfprintf_430", "vfprintf"); +__static_renaming("__vprintf_437", "vprintf"); +__static_renaming("__vsprintf_443", "vsprintf"); +__static_renaming("__snprintf_448", "snprintf"); +__static_renaming("__vsnprintf_454", "vsnprintf"); +__static_renaming("__vdprintf_460", "vdprintf"); +__static_renaming("__dprintf_464", "dprintf"); +__static_renaming("__fscanf_468", "fscanf"); +__static_renaming("__fscanf_470", "fscanf"); +__static_renaming("__fscanf_472", "fscanf"); +__static_renaming("__fscanf_474", "fscanf"); +__static_renaming("__scanf_477", "scanf"); +__static_renaming("__scanf_478", "scanf"); +__static_renaming("__sscanf_481", "sscanf"); +__static_renaming("__vfscanf_509", "vfscanf"); +__static_renaming("__vfscanf_513", "vfscanf"); +__static_renaming("__vscanf_520", "vscanf"); +__static_renaming("__vscanf_522", "vscanf"); +__static_renaming("__vsscanf_528", "vsscanf"); +__static_renaming("__fgetc_563", "fgetc"); +__static_renaming("__getc_567", "getc"); +__static_renaming("__getchar_569", "getchar"); +__static_renaming("__getc_unlocked_572", "getc_unlocked"); +__static_renaming("__getchar_unlocked_574", "getchar_unlocked"); +__static_renaming("__fgetc_unlocked_577", "fgetc_unlocked"); +__static_renaming("__fputc_582", "fputc"); +__static_renaming("__fputc_584", "fputc"); +__static_renaming("__putc_589", "putc"); +__static_renaming("__putchar_592", "putchar"); +__static_renaming("__fputc_unlocked_596", "fputc_unlocked"); +__static_renaming("__putc_unlocked_601", "putc_unlocked"); +__static_renaming("__putchar_unlocked_604", "putchar_unlocked"); +__static_renaming("__getw_607", "getw"); +__static_renaming("__putw_612", "putw"); +__static_renaming("__fgets_618", "fgets"); +__static_renaming("__fgets_620", "fgets"); +__static_renaming("__fgets_622", "fgets"); +__static_renaming("__fgets_624", "fgets"); +__static_renaming("____getdelim_631", "__getdelim"); +__static_renaming("____getdelim_635", "__getdelim"); +__static_renaming("__getdelim_644", "getdelim"); +__static_renaming("__getdelim_648", "getdelim"); +__static_renaming("__getline_656", "getline"); +__static_renaming("__getline_660", "getline"); +__static_renaming("__fputs_667", "fputs"); +__static_renaming("__fputs_669", "fputs"); +__static_renaming("__puts_672", "puts"); +__static_renaming("__ungetc_676", "ungetc"); +__static_renaming("__fseek_714", "fseek"); +__static_renaming("__fseek_716", "fseek"); +__static_renaming("__ftell_720", "ftell"); +__static_renaming("__ftell_722", "ftell"); +__static_renaming("__rewind_726", "rewind"); +__static_renaming("__fseeko_733", "fseeko"); +__static_renaming("__fseeko_744", "fseeko"); +__static_renaming("__ftello_750", "ftello"); +__static_renaming("__ftello_754", "ftello"); +__static_renaming("__ftello_758", "ftello"); +__static_renaming("__fgetpos_766", "fgetpos"); +__static_renaming("__fgetpos_778", "fgetpos"); +__static_renaming("__fsetpos_786", "fsetpos"); +__static_renaming("__fsetpos_790", "fsetpos"); +__static_renaming("__clearerr_796", "clearerr"); +__static_renaming("__feof_800", "feof"); +__static_renaming("__feof_802", "feof"); +__static_renaming("__ferror_806", "ferror"); +__static_renaming("__ferror_808", "ferror"); +__static_renaming("__clearerr_unlocked_812", "clearerr_unlocked"); +__static_renaming("__feof_unlocked_816", "feof_unlocked"); +__static_renaming("__feof_unlocked_818", "feof_unlocked"); +__static_renaming("__ferror_unlocked_822", "ferror_unlocked"); +__static_renaming("__ferror_unlocked_824", "ferror_unlocked"); +__static_renaming("__perror_827", "perror"); +__static_renaming("__perror_828", "perror"); +__static_renaming("__sys_nerr_829", "sys_nerr"); +__static_renaming("__sys_errlist_830", "sys_errlist"); +__static_renaming("__fileno_833", "fileno"); +__static_renaming("__fileno_835", "fileno"); +__static_renaming("__fileno_unlocked_839", "fileno_unlocked"); +__static_renaming("__fileno_unlocked_841", "fileno_unlocked"); +__static_renaming("__popen_845", "popen"); +__static_renaming("__popen_847", "popen"); +__static_renaming("__pclose_851", "pclose"); +__static_renaming("__ctermid_854", "ctermid"); +__static_renaming("__flockfile_857", "flockfile"); +__static_renaming("__ftrylockfile_861", "ftrylockfile"); +__static_renaming("__ftrylockfile_863", "ftrylockfile"); +__static_renaming("__funlockfile_867", "funlockfile"); +__static_renaming("____sprintf_chk_899", "__sprintf_chk"); +__static_renaming("____vsprintf_chk_906", "__vsprintf_chk"); +__static_renaming("____snprintf_chk_920", "__snprintf_chk"); +__static_renaming("____vsnprintf_chk_928", "__vsnprintf_chk"); +__static_renaming("____fprintf_chk_943", "__fprintf_chk"); +__static_renaming("____printf_chk_947", "__printf_chk"); +__static_renaming("____vfprintf_chk_954", "__vfprintf_chk"); +__static_renaming("____vprintf_chk_962", "__vprintf_chk"); +__static_renaming("____dprintf_chk_984", "__dprintf_chk"); +__static_renaming("____vdprintf_chk_990", "__vdprintf_chk"); +__static_renaming("____fgets_chk_1004", "__fgets_chk"); +__static_renaming("____fgets_chk_1006", "__fgets_chk"); +__static_renaming("____fgets_chk_1008", "__fgets_chk"); +__static_renaming("____fgets_alias_1014", "__fgets_alias"); +__static_renaming("____fgets_chk_warn_1021", "__fgets_chk_warn"); +__static_renaming("____cnt_1087", "__cnt"); +__static_renaming("____cptr_1088", "__cptr"); +__static_renaming("__cpumask_t_1092", "cpumask_t"); +__static_renaming("__cpumask_t_1093", "cpumask_t"); +__static_renaming("__cpumask_t_1094", "cpumask_t"); +__static_renaming("__cpu_none_mask_1095", "cpu_none_mask"); +__static_renaming("__cpu_none_mask_1096", "cpu_none_mask"); +__static_renaming("__cpu_none_mask_1097", "cpu_none_mask"); +__static_renaming("__cpu_online_mask_1098", "cpu_online_mask"); +__static_renaming("__cpu_online_mask_1099", "cpu_online_mask"); +__static_renaming("__cpu_online_mask_1100", "cpu_online_mask"); +__static_renaming("__nr_node_ids_1101", "nr_node_ids"); +__static_renaming("__node_to_cpumask_map_1102", "node_to_cpumask_map"); +__static_renaming("__node_to_cpumask_map_1103", "node_to_cpumask_map"); +__static_renaming("__node_to_cpumask_map_1104", "node_to_cpumask_map"); +__static_renaming("__node_1105", "node"); +__static_renaming("__setup_node_to_cpumask_map_1106", "setup_node_to_cpumask_map"); +__static_renaming("__setup_node_to_cpumask_map_1120", "setup_node_to_cpumask_map"); +__static_renaming("__cpumask_of_node_1121", "cpumask_of_node"); +__static_renaming("__cpumask_of_node_1122", "cpumask_of_node"); +__static_renaming("__cpumask_of_node_1123", "cpumask_of_node"); +__static_renaming("__get_mp_bus_to_node_1129", "get_mp_bus_to_node"); +__static_renaming("__mask_1132", "mask"); +__static_renaming("__mask_1133", "mask"); +__static_renaming("__mask_1134", "mask"); +__static_renaming("__len_1135", "len"); +__static_renaming("__local_cpus_show_1136", "local_cpus_show"); +__static_renaming("__ret_1143", "ret"); +__static_renaming("__dev_attr_show_1144", "dev_attr_show"); +__static_renaming("__pcibios_scan_root_1145", "pcibios_scan_root"); +__static_renaming("__node_1149", "node"); +__static_renaming("__main_1150", "main"); +__static_renaming("__main_1151", "main"); + +__static_condition_renaming("__static_condition_default_53", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_76", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_84", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_123", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_169", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_170", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_173", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_182", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_187", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_193", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_198", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_201", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_204", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_210", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_217", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_223", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_229", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_235", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_238", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_241", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_244", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_246", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_248", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_249", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_250", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_253", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_255", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_257", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_258", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_259", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_263", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_264", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_267", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_270", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_271", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_274", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_275", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_278", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_280", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); +__static_condition_renaming("__static_condition_default_282", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_284", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_286", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_288", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_290", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_293", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_296", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_299", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_311", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_313", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_315", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_317", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_331", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_333", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_337", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_341", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_345", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_347", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_355", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_357", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_363", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_365", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_367", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_369", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_373", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_375", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_380", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_382", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_386", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_388", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_393", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_395", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_402", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_408", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_412", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_417", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_419", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_431", "!(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_432", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_433", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_438", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_444", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_455", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_461", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_469", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_471", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_473", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_475", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_486", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_488", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_489", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_491", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_493", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_494", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_497", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_499", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_503", "!(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_510", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_511", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_512", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_514", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_515", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_516", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_521", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_523", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_529", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_536", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_537", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_538", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_539", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_541", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_542", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_543", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_544", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_549", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_550", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_552", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_553", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_559", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_560", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_564", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_568", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_573", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_578", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_583", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_585", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_590", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_597", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_602", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_608", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_613", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_619", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_621", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_623", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_625", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_632", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_633", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_634", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_636", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_637", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_638", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_645", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_646", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_647", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_649", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_650", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_651", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_657", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_658", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_659", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_661", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_662", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_663", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_668", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_670", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_677", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_683", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_684", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_685", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_686", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_692", "!(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_693", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_699", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_700", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_701", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_702", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_708", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_709", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_715", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_717", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_721", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_723", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_727", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_734", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_735", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_736", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_745", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_746", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_747", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_751", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_752", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_753", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_755", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_756", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_757", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_759", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_760", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_761", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_767", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_768", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_769", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_779", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_780", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_781", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_787", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_788", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_789", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_791", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_792", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_793", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_797", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_801", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_803", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_807", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_809", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_813", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_817", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_819", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_823", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_825", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_834", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_836", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_840", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_842", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_846", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_848", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_852", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_858", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_862", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_864", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_868", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_872", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_875", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_878", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_883", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_887", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_891", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_894", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_907", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_914", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_929", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_938", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_944", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_955", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_956", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_957", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_963", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_967", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_972", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_978", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_979", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_980", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_991", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_998", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1005", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1007", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1009", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1015", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1022", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1027", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1028", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1035", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1036", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1042", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1043", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1050", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1051", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1057", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1058", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1065", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1066", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1072", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1073", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1080", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1081", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1089", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_1090", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1091", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1107", "(defined CONFIG_NUMA)"); +__static_condition_renaming("__static_condition_default_1108", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined CONFIG_NUMA) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined CONFIG_NUMA) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined CONFIG_NUMA) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined CONFIG_NUMA) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined CONFIG_NUMA)"); +__static_condition_renaming("__static_condition_default_1109", "(defined __need___FILE) && (defined CONFIG_NUMA)"); +__static_condition_renaming("__static_condition_default_1110", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined CONFIG_NUMA)"); +__static_condition_renaming("__static_condition_default_1114", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined CONFIG_NUMA) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined CONFIG_NUMA) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined CONFIG_NUMA) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined CONFIG_NUMA) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined CONFIG_NUMA)"); +__static_condition_renaming("__static_condition_default_1115", "(defined __need___FILE) && !(defined CONFIG_NUMA)"); +__static_condition_renaming("__static_condition_default_1116", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined CONFIG_NUMA)"); +__static_condition_renaming("__static_condition_default_1117", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined CONFIG_NUMA) && !(defined CONFIG_DEBUG_PER_CPU_MAPS) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined CONFIG_NUMA) && !(defined CONFIG_DEBUG_PER_CPU_MAPS) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined CONFIG_NUMA) && !(defined CONFIG_DEBUG_PER_CPU_MAPS) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined CONFIG_NUMA) && !(defined CONFIG_DEBUG_PER_CPU_MAPS) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined CONFIG_NUMA) && !(defined CONFIG_DEBUG_PER_CPU_MAPS)"); +__static_condition_renaming("__static_condition_default_1118", "(defined __need___FILE) && (defined CONFIG_NUMA) && !(defined CONFIG_DEBUG_PER_CPU_MAPS)"); +__static_condition_renaming("__static_condition_default_1119", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined CONFIG_NUMA) && !(defined CONFIG_DEBUG_PER_CPU_MAPS)"); +__static_condition_renaming("__static_condition_default_1124", "!(defined CONFIG_NUMA)"); +__static_condition_renaming("__static_condition_default_1125", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined CONFIG_NUMA) && (defined CONFIG_DEBUG_PER_CPU_MAPS) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined CONFIG_NUMA) && (defined CONFIG_DEBUG_PER_CPU_MAPS) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined CONFIG_NUMA) && (defined CONFIG_DEBUG_PER_CPU_MAPS) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined CONFIG_NUMA) && (defined CONFIG_DEBUG_PER_CPU_MAPS) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined CONFIG_NUMA) && (defined CONFIG_DEBUG_PER_CPU_MAPS)"); +__static_condition_renaming("__static_condition_default_1126", "(defined __need___FILE) && (defined CONFIG_NUMA) && (defined CONFIG_DEBUG_PER_CPU_MAPS)"); +__static_condition_renaming("__static_condition_default_1127", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined CONFIG_NUMA) && (defined CONFIG_DEBUG_PER_CPU_MAPS)"); +__static_condition_renaming("__static_condition_default_1130", "!(defined CONFIG_NUMA) && (defined CONFIG_PCI)"); +__static_condition_renaming("__static_condition_default_1137", "(defined CONFIG_PCI)"); +__static_condition_renaming("__static_condition_default_1138", "!(defined CONFIG_NUMA) && (defined CONFIG_PCI)"); +__static_condition_renaming("__static_condition_default_1139", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined CONFIG_PCI) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined CONFIG_PCI) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined CONFIG_PCI) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined CONFIG_PCI) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined CONFIG_PCI)"); +__static_condition_renaming("__static_condition_default_1140", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined CONFIG_PCI)"); +__static_condition_renaming("__static_condition_default_1141", "(defined __need___FILE) && (defined CONFIG_PCI)"); +__static_condition_renaming("__static_condition_default_1146", "!(defined CONFIG_NUMA) && (defined CONFIG_PCI)"); +__static_condition_renaming("__static_condition_default_1152", "!(defined CONFIG_PCI)"); +__static_condition_renaming("__static_condition_default_1153", "(defined CONFIG_NUMA) && !(defined CONFIG_PCI)"); +__static_condition_renaming("__static_condition_default_1154", "!(defined CONFIG_NUMA) && !(defined CONFIG_PCI)"); +__static_condition_renaming("__static_condition_default_1155", "(defined CONFIG_NUMA) && !(defined CONFIG_PCI)"); +__static_condition_renaming("__static_condition_default_1156", "(defined CONFIG_PCI)"); +__static_condition_renaming("__static_condition_default_1157", "!(defined CONFIG_NUMA) && (defined CONFIG_PCI)"); +__static_condition_renaming("__static_condition_default_1158", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && (defined CONFIG_NUMA) && (defined CONFIG_PCI) || !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && (defined CONFIG_NUMA) && (defined CONFIG_PCI) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) || (defined __need___FILE) && (defined CONFIG_NUMA) && (defined CONFIG_PCI)"); + +if (__static_condition_default_1158) { +__static_parse_error("Unable to parse"); +} +}; +typedef long int __ptrdiff_t_0;// L143:L324 +typedef long unsigned int __size_t_1;// L177:L209 +typedef unsigned char ____u_char_2;// L30 +typedef unsigned short int ____u_short_3;// L31 +typedef unsigned int ____u_int_4;// L32 +typedef unsigned long int ____u_long_5;// L33 +typedef signed char ____int8_t_6;// L36 +typedef unsigned char ____uint8_t_7;// L37 +typedef signed short int ____int16_t_8;// L38 +typedef unsigned short int ____uint16_t_9;// L39 +typedef signed int ____int32_t_10;// L40 +typedef unsigned int ____uint32_t_11;// L41 +typedef signed long int ____int64_t_12;// L43 +typedef unsigned long int ____uint64_t_13;// L44 +typedef long int ____quad_t_14;// L52 +typedef unsigned long int ____u_quad_t_15;// L53 +typedef unsigned long int ____dev_t_16;// L109:L124 +typedef unsigned int ____uid_t_17;// L92:L125 +typedef unsigned int ____gid_t_18;// L92:L126 +typedef unsigned long int ____ino_t_19;// L94:L127 +typedef unsigned long int ____ino64_t_20;// L109:L128 +typedef unsigned int ____mode_t_21;// L92:L129 +typedef unsigned long int ____nlink_t_22;// L94:L130 +typedef long int ____off_t_23;// L93:L131 +typedef long int ____off64_t_24;// L108:L132 +typedef int ____pid_t_25;// L91:L133 +struct ____anonymous_tag_26_27 { +int ____val_28[2];// L72 +}; +typedef struct ____anonymous_tag_26_27 ____fsid_t_29;// L72:L134 +typedef long int ____clock_t_30;// L93:L135 +typedef unsigned long int ____rlim_t_31;// L94:L136 +typedef unsigned long int ____rlim64_t_32;// L109:L137 +typedef unsigned int ____id_t_33;// L92:L138 +typedef long int ____time_t_34;// L93:L139 +typedef unsigned int ____useconds_t_35;// L92:L140 +typedef long int ____suseconds_t_36;// L93:L141 +typedef int ____daddr_t_37;// L91:L143 +typedef int ____key_t_38;// L91:L144 +typedef int ____clockid_t_39;// L91:L147 +typedef void * (____timer_t_40);// L70:L150 +typedef long int ____blksize_t_41;// L93:L153 +typedef long int ____blkcnt_t_42;// L93:L158 +typedef long int ____blkcnt64_t_43;// L108:L159 +typedef unsigned long int ____fsblkcnt_t_44;// L94:L162 +typedef unsigned long int ____fsblkcnt64_t_45;// L109:L163 +typedef unsigned long int ____fsfilcnt_t_46;// L94:L166 +typedef unsigned long int ____fsfilcnt64_t_47;// L109:L167 +typedef long int ____fsword_t_48;// L93:L170 +typedef long int ____ssize_t_49;// L110:L172 +typedef long int ____syscall_slong_t_50;// L93:L175 +typedef unsigned long int ____syscall_ulong_t_51;// L94:L177 +typedef ____off64_t_24 ____loff_t_52;// L181 +typedef ____quad_t_14 * (____qaddr_t_54);// L182 +typedef char * (____caddr_t_55);// L183 +typedef long int ____intptr_t_56;// L110:L186 +typedef unsigned int ____socklen_t_57;// L92:L189 +typedef struct __forward_tag_reference_58 __FILE_59;// L48 +typedef struct __forward_tag_reference_58 ____FILE_60;// L64 +union ____anonymous_tag_61_62 { +unsigned int ____wch_63;// L265 +char ____wchb_64[4];// L92 +}; +struct ____anonymous_tag_65_66 { +int ____count_67;// L84 +union ____anonymous_tag_61_62 ____value_68;// L85 +}; +typedef struct ____anonymous_tag_65_66 ____mbstate_t_69;// L82:L94 +struct ____anonymous_tag_70_71 { +____off_t_23 ____pos_72;// L0 +____mbstate_t_69 ____state_74;// L0 +}; +typedef struct ____anonymous_tag_70_71 ___G_fpos_t_77;// L21:L25 +struct ____anonymous_tag_78_79 { +____off64_t_24 ____pos_80;// L0 +____mbstate_t_69 ____state_82;// L0 +}; +typedef struct ____anonymous_tag_78_79 ___G_fpos64_t_85;// L26:L30 +typedef __builtin_va_list ____gnuc_va_list_86;// L40 +typedef void ___IO_lock_t_88;// L150 +struct ___IO_marker_90 { +struct __forward_tag_reference_89 * (___next_91);// L0 +struct __forward_tag_reference_58 * (___sbuf_92);// L0 +int ___pos_93;// L162 +}; +enum ____codecvt_result_98 { +____codecvt_ok_94, +____codecvt_partial_95, +____codecvt_error_96, +____codecvt_noconv_97, +}; +struct ___IO_FILE_99 { +int ___flags_100;// L242 +char * (___IO_read_ptr_101);// L247 +char * (___IO_read_end_102);// L248 +char * (___IO_read_base_103);// L249 +char * (___IO_write_base_104);// L250 +char * (___IO_write_ptr_105);// L251 +char * (___IO_write_end_106);// L252 +char * (___IO_buf_base_107);// L253 +char * (___IO_buf_end_108);// L254 +char * (___IO_save_base_109);// L256 +char * (___IO_backup_base_110);// L257 +char * (___IO_save_end_111);// L258 +struct ___IO_marker_90 * (___markers_112);// L260 +struct __forward_tag_reference_58 * (___chain_113);// L0 +int ___fileno_114;// L264 +int ___flags2_115;// L268 +____off_t_23 ___old_offset_116;// L0 +unsigned short ___cur_column_118;// L274 +signed char ___vtable_offset_119;// L275 +char ___shortbuf_120[1];// L276 +___IO_lock_t_88 * (___lock_121);// L0 +}; +struct ___IO_FILE_124 { +int ___flags_125;// L242 +char * (___IO_read_ptr_126);// L247 +char * (___IO_read_end_127);// L248 +char * (___IO_read_base_128);// L249 +char * (___IO_write_base_129);// L250 +char * (___IO_write_ptr_130);// L251 +char * (___IO_write_end_131);// L252 +char * (___IO_buf_base_132);// L253 +char * (___IO_buf_end_133);// L254 +char * (___IO_save_base_134);// L256 +char * (___IO_backup_base_135);// L257 +char * (___IO_save_end_136);// L258 +struct ___IO_marker_90 * (___markers_137);// L260 +struct __forward_tag_reference_58 * (___chain_138);// L0 +int ___fileno_139;// L264 +int ___flags2_140;// L268 +____off_t_23 ___old_offset_141;// L0 +unsigned short ___cur_column_143;// L274 +signed char ___vtable_offset_144;// L275 +char ___shortbuf_145[1];// L276 +___IO_lock_t_88 * (___lock_146);// L0 +____off64_t_24 ___offset_148;// L0 +void * (____pad1_150);// L297 +void * (____pad2_151);// L298 +void * (____pad3_152);// L299 +void * (____pad4_153);// L300 +__size_t_1 ____pad5_154;// L0 +int ___mode_155;// L303 +char ___unused2_156[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +}; +struct ___IO_FILE_complete_157 { +struct ___IO_FILE_99 ___file_158;// L286 +____off64_t_24 ___offset_160;// L0 +void * (____pad1_162);// L297 +void * (____pad2_163);// L298 +void * (____pad3_164);// L299 +void * (____pad4_165);// L300 +__size_t_1 ____pad5_166;// L0 +int ___mode_167;// L303 +char ___unused2_168[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +}; +typedef struct ___IO_FILE_99 ___IO_FILE_171;// L310 +typedef struct ___IO_FILE_124 ___IO_FILE_172;// L310 +typedef ____ssize_t_49 (____io_read_fn_181) (void * (____cookie_178), char * (____buf_179), __size_t_1 ____nbytes_180);// L333 +typedef ____ssize_t_49 (____io_write_fn_186) (void * (____cookie_183), const char * (____buf_184), __size_t_1 ____n_185);// L341:L342 +typedef int (____io_seek_fn_192) (void * (____cookie_188), ____off64_t_24 * (____pos_189), int ____w_191);// L350 +typedef int (____io_close_fn_195) (void * (____cookie_194));// L353 +typedef ____gnuc_va_list_86 __va_list_279;// L79 +typedef ____off_t_23 __off_t_281;// L90 +typedef ____off64_t_24 __off_t_283;// L92 +typedef ____ssize_t_49 __ssize_t_285;// L102 +typedef ___G_fpos_t_77 __fpos_t_287;// L110 +typedef ___G_fpos64_t_85 __fpos_t_289;// L112 +extern const char * const __sys_errlist_830[];// L27 +typedef unsigned long __cpumask_t_1092;// L8 +typedef unsigned long __cpumask_t_1093;// L8 +typedef unsigned long __cpumask_t_1094;// L8 + +struct __forward_tag_reference_89 { // generated union of struct variations +union { +struct ___IO_marker_90 ___IO_marker_90; +}; +}; + +struct __forward_tag_reference_58 { // generated union of struct variations +union { +struct ___IO_FILE_99 ___IO_FILE_99; +struct ___IO_FILE_124 ___IO_FILE_124; +}; +}; + +struct __forward_tag_reference_87 { // generated union of struct variations +union { +}; +}; + +struct __forward_tag_reference_174 { // generated union of struct variations +union { +}; +}; + +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +struct __forward_tag_reference_58 ;// L0 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +struct __forward_tag_reference_87 ;// L0 +struct __forward_tag_reference_87 ;// L0 +struct __forward_tag_reference_58 ;// L0 +// typedef moved to top of scope +struct ___IO_marker_90 ;// L156 +enum ____codecvt_result_98 ;// L176 +struct ___IO_FILE_99 ;// L241 + +struct ___IO_FILE_124 ;// L241 +struct ___IO_FILE_complete_157 ;// L241 + +// typedef moved to top of scope +// typedef moved to top of scope +struct __forward_tag_reference_174 ;// L0 +extern struct __forward_tag_reference_174 ___IO_2_1_stdin__175;// L315 +extern struct __forward_tag_reference_174 ___IO_2_1_stdout__176;// L316 +extern struct __forward_tag_reference_174 ___IO_2_1_stderr__177;// L317 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern int (____underflow_196) (___IO_FILE_171 *);// L385 +extern int (____underflow_197) (___IO_FILE_172 *);// L385 +extern int (____uflow_199) (___IO_FILE_171 *);// L386 +extern int (____uflow_200) (___IO_FILE_172 *);// L386 +extern int (____overflow_202) (___IO_FILE_171 *, int );// L387 +extern int (____overflow_203) (___IO_FILE_172 *, int );// L387 +extern int (___IO_getc_208) (___IO_FILE_171 * (____fp_205));// L429 +extern int (___IO_getc_209) (___IO_FILE_172 * (____fp_206));// L429 +extern int (___IO_putc_215) (int ____c_211, ___IO_FILE_171 * (____fp_212));// L430 +extern int (___IO_putc_216) (int ____c_211, ___IO_FILE_172 * (____fp_213));// L430 +extern int (___IO_feof_221) (___IO_FILE_171 * (____fp_218));// L431 +extern int (___IO_feof_222) (___IO_FILE_172 * (____fp_219));// L431 +extern int (___IO_ferror_227) (___IO_FILE_171 * (____fp_224));// L432 +extern int (___IO_ferror_228) (___IO_FILE_172 * (____fp_225));// L432 +extern int (___IO_peekc_locked_233) (___IO_FILE_171 * (____fp_230));// L434 +extern int (___IO_peekc_locked_234) (___IO_FILE_172 * (____fp_231));// L434 +extern void (___IO_flockfile_236) (___IO_FILE_171 *);// L440 +extern void (___IO_flockfile_237) (___IO_FILE_172 *);// L440 +extern void (___IO_funlockfile_239) (___IO_FILE_171 *);// L441 +extern void (___IO_funlockfile_240) (___IO_FILE_172 *);// L441 +extern int (___IO_ftrylockfile_242) (___IO_FILE_171 *);// L442 +extern int (___IO_ftrylockfile_243) (___IO_FILE_172 *);// L442 +extern int (___IO_vfscanf_245) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_247) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_251) (___IO_FILE_171 * __restrict , const char * __restrict , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_252) (___IO_FILE_172 * __restrict , const char * __restrict , int * __restrict );// L459:L460 +extern int (___IO_vfprintf_254) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 +extern int (___IO_vfprintf_256) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 +extern int (___IO_vfprintf_260) ();// L461:L462 +extern ____ssize_t_49 (___IO_padn_261) (___IO_FILE_171 *, int , ____ssize_t_49 );// L463 +extern ____ssize_t_49 (___IO_padn_262) (___IO_FILE_172 *, int , ____ssize_t_49 );// L463 +extern __size_t_1 (___IO_sgetn_265) (___IO_FILE_171 *, void *, __size_t_1 );// L464 +extern __size_t_1 (___IO_sgetn_266) (___IO_FILE_172 *, void *, __size_t_1 );// L464 +extern ____off64_t_24 (___IO_seekoff_268) (___IO_FILE_171 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekoff_269) (___IO_FILE_172 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekpos_272) (___IO_FILE_171 *, ____off64_t_24 , int );// L467 +extern ____off64_t_24 (___IO_seekpos_273) (___IO_FILE_172 *, ____off64_t_24 , int );// L467 +extern void (___IO_free_backup_area_276) (___IO_FILE_171 *);// L469 +extern void (___IO_free_backup_area_277) (___IO_FILE_172 *);// L469 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern struct ___IO_FILE_99 * (__stdin_291);// L168 +extern struct ___IO_FILE_124 * (__stdin_292);// L168 +extern struct ___IO_FILE_99 * (__stdout_294);// L169 +extern struct ___IO_FILE_124 * (__stdout_295);// L169 +extern struct ___IO_FILE_99 * (__stderr_297);// L170 +extern struct ___IO_FILE_124 * (__stderr_298);// L170 +extern int (__remove_301) (const char * (____filename_300));// L178 +extern int (__rename_304) (const char * (____old_302), const char * (____new_303));// L180 +extern int (__renameat_309) (int ____oldfd_305, const char * (____old_306), int ____newfd_307, const char * (____new_308));// L185:L186 +extern __FILE_59 * ((__tmpfile_310) (void ));// L195 +extern __FILE_59 * ((__tmpfile_316) (void ));// L198 +extern __FILE_59 * ((__tmpfile_314) (void ));// L195 +extern __FILE_59 * ((__tmpfile_312) (void ));// L198 +extern char * ((__tmpnam_319) (char * (____s_318)));// L209 +extern char * ((__tmpnam_320) (char * (____s_318)));// L209 +extern char * ((__tmpnam_r_322) (char * (____s_321)));// L215 +extern char * ((__tmpnam_r_323) (char * (____s_321)));// L215 +extern char * ((__tempnam_326) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 +extern char * ((__tempnam_327) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 +extern int (__fclose_330) (__FILE_59 * (____stream_328));// L237 +extern int (__fclose_332) (__FILE_59 * (____stream_328));// L237 +extern int (__fflush_336) (__FILE_59 * (____stream_334));// L242 +extern int (__fflush_unlocked_340) (__FILE_59 * (____stream_338));// L252 +extern __FILE_59 * ((__fopen_344) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 +extern __FILE_59 * ((__fopen_346) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 +extern __FILE_59 * ((__fopen_354) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 +extern __FILE_59 * ((__fopen_356) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 +extern __FILE_59 * ((__freopen_362) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 +extern __FILE_59 * ((__freopen_368) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 +extern __FILE_59 * ((__freopen_366) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 +extern __FILE_59 * ((__freopen_364) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 +extern __FILE_59 * ((__fdopen_372) (int ____fd_370, const char * (____modes_371)));// L306 +extern __FILE_59 * ((__fdopen_374) (int ____fd_370, const char * (____modes_371)));// L306 +extern __FILE_59 * ((__fmemopen_379) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 +extern __FILE_59 * ((__fmemopen_381) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 +extern __FILE_59 * ((__open_memstream_385) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 +extern __FILE_59 * ((__open_memstream_387) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 +extern void (__setbuf_392) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 +extern void (__setbuf_394) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 +extern int (__setvbuf_401) (__FILE_59 * __restrict ____stream_396, char * __restrict ____buf_398, int ____modes_399, __size_t_1 ____n_400);// L336:L337 +extern void (__setbuffer_407) (__FILE_59 * __restrict ____stream_403, char * __restrict ____buf_405, __size_t_1 ____size_406);// L343:L344 +extern void (__setlinebuf_411) (__FILE_59 * (____stream_409));// L347 +extern int (__fprintf_416) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 +extern int (__fprintf_418) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 +extern int (__printf_421) (const char * __restrict ____format_420, ... );// L362 +extern int (__sprintf_424) (char * __restrict ____s_422, const char * __restrict ____format_423, ... );// L364:L365 +extern int (__vfprintf_430) (__FILE_59 * __restrict ____s_425, const char * __restrict ____format_427, ____gnuc_va_list_86 ____arg_428);// L371:L372 +extern int (__vprintf_437) (const char * __restrict ____format_434, ____gnuc_va_list_86 ____arg_435);// L377 +extern int (__vsprintf_443) (char * __restrict ____s_439, const char * __restrict ____format_440, ____gnuc_va_list_86 ____arg_441);// L379:L380 +extern int (__snprintf_448) (char * __restrict ____s_445, __size_t_1 ____maxlen_446, const char * __restrict ____format_447, ... );// L386:L388 +extern int (__vsnprintf_454) (char * __restrict ____s_449, __size_t_1 ____maxlen_450, const char * __restrict ____format_451, ____gnuc_va_list_86 ____arg_452);// L390:L392 +extern int (__vdprintf_460) (int ____fd_456, const char * __restrict ____fmt_457, ____gnuc_va_list_86 ____arg_458);// L412:L414 +extern int (__dprintf_464) (int ____fd_462, const char * __restrict ____fmt_463, ... );// L415:L416 +extern int (__fscanf_468) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_470) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_472) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_474) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__scanf_477) (const char * __restrict ____format_476, ... );// L431 +extern int (__scanf_478) (const char * __restrict ____format_476, ... );// L431 +extern int (__sscanf_481) (const char * __restrict ____s_479, const char * __restrict ____format_480, ... );// L433:L434 + + + + + + + +extern int (__vfscanf_509) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 +extern int (__vfscanf_513) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 +extern int (__vscanf_520) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 +extern int (__vscanf_522) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 +extern int (__vsscanf_528) (const char * __restrict ____s_524, const char * __restrict ____format_525, ____gnuc_va_list_86 ____arg_526);// L483:L485 + + + + + +extern int (__fgetc_563) (__FILE_59 * (____stream_561));// L531 +extern int (__getc_567) (__FILE_59 * (____stream_565));// L532 +extern int (__getchar_569) (void );// L538 +extern int (__getc_unlocked_572) (__FILE_59 * (____stream_570));// L550 +extern int (__getchar_unlocked_574) (void );// L551 +extern int (__fgetc_unlocked_577) (__FILE_59 * (____stream_575));// L561 +extern int (__fputc_582) (int ____c_579, __FILE_59 * (____stream_580));// L573 +extern int (__fputc_584) (int ____c_579, __FILE_59 * (____stream_580));// L573 +extern int (__putc_589) (int ____c_586, __FILE_59 * (____stream_587));// L574 +extern int (__putchar_592) (int ____c_591);// L580 +extern int (__fputc_unlocked_596) (int ____c_593, __FILE_59 * (____stream_594));// L594 +extern int (__putc_unlocked_601) (int ____c_598, __FILE_59 * (____stream_599));// L602 +extern int (__putchar_unlocked_604) (int ____c_603);// L603 +extern int (__getw_607) (__FILE_59 * (____stream_605));// L610 +extern int (__putw_612) (int ____w_609, __FILE_59 * (____stream_610));// L613 +extern char * ((__fgets_618) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_620) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_622) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_624) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern ____ssize_t_49 (____getdelim_631) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 +extern ____ssize_t_49 (____getdelim_635) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 +extern ____ssize_t_49 (__getdelim_644) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 +extern ____ssize_t_49 (__getdelim_648) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 +extern ____ssize_t_49 (__getline_656) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 +extern ____ssize_t_49 (__getline_660) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 +extern int (__fputs_667) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 +extern int (__fputs_669) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 +extern int (__puts_672) (const char * (____s_671));// L695 +extern int (__ungetc_676) (int ____c_673, __FILE_59 * (____stream_674));// L702 +extern int (__fseek_714) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 +extern int (__fseek_716) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 +extern long int (__ftell_720) (__FILE_59 * (____stream_718));// L754 +extern long int (__ftell_722) (__FILE_59 * (____stream_718));// L754 +extern void (__rewind_726) (__FILE_59 * (____stream_724));// L759 +extern int (__fseeko_733) (__FILE_59 * (____stream_728), ____off_t_23 ____off_730, int ____whence_732);// L773 +extern int (__fseeko_744) (__FILE_59 * (____stream_739), ____off64_t_24 ____off_741, int ____whence_743);// L781:L783 +extern ____off_t_23 (__ftello_758) (__FILE_59 * (____stream_737));// L778 +extern ____off_t_23 (__ftello_750) (__FILE_59 * (____stream_737));// L778 +extern int (__fgetpos_766) (__FILE_59 * __restrict ____stream_762, __fpos_t_287 * __restrict ____pos_764);// L798 +extern ____off64_t_24 (__ftello_754) (__FILE_59 * (____stream_748));// L784 +extern int (__fgetpos_778) (__FILE_59 * __restrict ____stream_774, __fpos_t_289 * __restrict ____pos_776);// L806:L807 +extern int (__fsetpos_786) (__FILE_59 * (____stream_770), const __fpos_t_287 * (____pos_772));// L803 +extern int (__fsetpos_790) (__FILE_59 * (____stream_782), const __fpos_t_289 * (____pos_784));// L808:L809 +extern void (__clearerr_796) (__FILE_59 * (____stream_794));// L826 +extern int (__feof_800) (__FILE_59 * (____stream_798));// L828 +extern int (__feof_802) (__FILE_59 * (____stream_798));// L828 +extern int (__ferror_806) (__FILE_59 * (____stream_804));// L830 +extern int (__ferror_808) (__FILE_59 * (____stream_804));// L830 +extern void (__clearerr_unlocked_812) (__FILE_59 * (____stream_810));// L835 +extern int (__feof_unlocked_816) (__FILE_59 * (____stream_814));// L836 +extern int (__feof_unlocked_818) (__FILE_59 * (____stream_814));// L836 +extern int (__ferror_unlocked_822) (__FILE_59 * (____stream_820));// L837 +extern int (__ferror_unlocked_824) (__FILE_59 * (____stream_820));// L837 +extern void (__perror_827) (const char * (____s_826));// L846 +extern void (__perror_828) (const char * (____s_826));// L846 +extern int __sys_nerr_829;// L26 + +extern int (__fileno_835) (__FILE_59 * (____stream_831));// L858 +extern int (__fileno_833) (__FILE_59 * (____stream_831));// L858 +extern int (__fileno_unlocked_841) (__FILE_59 * (____stream_837));// L863 +extern int (__fileno_unlocked_839) (__FILE_59 * (____stream_837));// L863 +extern __FILE_59 * ((__popen_845) (const char * (____command_843), const char * (____modes_844)));// L872 +extern __FILE_59 * ((__popen_847) (const char * (____command_843), const char * (____modes_844)));// L872 +extern int (__pclose_851) (__FILE_59 * (____stream_849));// L878 +extern char * ((__ctermid_854) (char * (____s_853)));// L884 +extern void (__flockfile_857) (__FILE_59 * (____stream_855));// L912 +extern int (__ftrylockfile_861) (__FILE_59 * (____stream_859));// L916 +extern int (__ftrylockfile_863) (__FILE_59 * (____stream_859));// L916 +extern void (__funlockfile_867) (__FILE_59 * (____stream_865));// L919 +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +extern int (____sprintf_chk_899) (char * __restrict ____s_895, int ____flag_896, __size_t_1 ____slen_897, const char * __restrict ____format_898, ... );// L23:L24 +extern int (____vsprintf_chk_906) (char * __restrict ____s_900, int ____flag_901, __size_t_1 ____slen_902, const char * __restrict ____format_903, ____gnuc_va_list_86 ____ap_904);// L25:L27 +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +extern int (____snprintf_chk_920) (char * __restrict ____s_915, __size_t_1 ____n_916, int ____flag_917, __size_t_1 ____slen_918, const char * __restrict ____format_919, ... );// L52:L54 +extern int (____vsnprintf_chk_928) (char * __restrict ____s_921, __size_t_1 ____n_922, int ____flag_923, __size_t_1 ____slen_924, const char * __restrict ____format_925, ____gnuc_va_list_86 ____ap_926);// L55:L57 +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +extern int (____fprintf_chk_943) (__FILE_59 * __restrict ____stream_939, int ____flag_941, const char * __restrict ____format_942, ... );// L85:L86 +extern int (____printf_chk_947) (int ____flag_945, const char * __restrict ____format_946, ... );// L87 +extern int (____vfprintf_chk_954) (__FILE_59 * __restrict ____stream_948, int ____flag_950, const char * __restrict ____format_951, ____gnuc_va_list_86 ____ap_952);// L88:L89 +extern int (____vprintf_chk_962) (int ____flag_958, const char * __restrict ____format_959, ____gnuc_va_list_86 ____ap_960);// L90:L91 +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +extern int (____dprintf_chk_984) (int ____fd_981, int ____flag_982, const char * __restrict ____fmt_983, ... );// L131:L132 +extern int (____vdprintf_chk_990) (int ____fd_985, int ____flag_986, const char * __restrict ____fmt_987, ____gnuc_va_list_86 ____arg_988);// L133:L135 +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +extern char * ((____fgets_chk_1004) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_chk_1006) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_chk_1008) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_alias_1014) (char * __restrict ____s_1010, int ____n_1011, __FILE_59 * __restrict ____stream_1012));// L243:L245 +extern char * ((____fgets_chk_warn_1021) (char * __restrict ____s_1016, __size_t_1 ____size_1017, int ____n_1018, __FILE_59 * __restrict ____stream_1019));// L246:L250 +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +__cpumask_t_1092 __cpu_none_mask_1095= 0;// L10 +__cpumask_t_1093 __cpu_none_mask_1096= 0;// L10 +__cpumask_t_1094 __cpu_none_mask_1097= 0;// L10 +__cpumask_t_1092 __cpu_online_mask_1098= 0;// L11 +__cpumask_t_1093 __cpu_online_mask_1099= 0;// L11 +__cpumask_t_1094 __cpu_online_mask_1100= 0;// L11 +int __nr_node_ids_1101;// L17 +__cpumask_t_1092 * (__node_to_cpumask_map_1102[( 1 << 8 )]);// L19 +__cpumask_t_1093 * (__node_to_cpumask_map_1103[( 1 << 8 )]);// L19 +__cpumask_t_1094 * (__node_to_cpumask_map_1104[( 1 << 8 )]);// L19 +void (__setup_node_to_cpumask_map_1106) (void ) { + +if (__static_condition_default_1107) { + +{ +{ + + + +unsigned int __node_1105;// L28 + +for ( __node_1105 = 0 ; __node_1105 < __nr_node_ids_1101 ; __node_1105 ++ )// L31 +{ +if (__static_condition_default_1108) { + __node_to_cpumask_map_1102 [ __node_1105 ] = & __cpu_online_mask_1098 ; // L32 +} +if (__static_condition_default_1109) { + __node_to_cpumask_map_1103 [ __node_1105 ] = & __cpu_online_mask_1099 ; // L32 +} +if (__static_condition_default_1110) { + __node_to_cpumask_map_1104 [ __node_1105 ] = & __cpu_online_mask_1100 ; // L32 +} +} +} +} + + +} +} +/* no function due to type errors in the function prototype */ +static inline void (__setup_node_to_cpumask_map_1120) (void ) { + +{ +if (__static_condition_default_1124) { + +{ +{ + + + +} +} + + +} + +}} +const __cpumask_t_1092 * ((__cpumask_of_node_1121) (int __node_1111)) { + +{ +if (__static_condition_default_1125) { + +{ +{ + + + +if ( __node_1111 >= __nr_node_ids_1101 )// L38 +{ + +{ +{ + + + +__static_type_error("type error : no valid expression"); // L39:L40 +return __cpu_none_mask_1095 ;// L41 +} +} +} +if ( __node_to_cpumask_map_1102 [ __node_1111 ] == ( ( void * ) 0 ) )// L43 +{ + +{ +{ + + + +__static_type_error("type error : no valid expression"); // L44 +return __cpu_online_mask_1098 ;// L45 +} +} +} +return __node_to_cpumask_map_1102 [ __node_1111 ] ;// L47 +} +} + + +} + +}} +const __cpumask_t_1093 * ((__cpumask_of_node_1122) (int __node_1111)) { + +{ +if (__static_condition_default_1126) { + +{ +{ + + + +if ( __node_1111 >= __nr_node_ids_1101 )// L38 +{ + +{ +{ + + + +__static_type_error("type error : no valid expression"); // L39:L40 +return __cpu_none_mask_1096 ;// L41 +} +} +} +__static_type_error("invalid type found in if statement"); +return __node_to_cpumask_map_1103 [ __node_1111 ] ;// L47 +} +} + + +} + +}} +const __cpumask_t_1094 * ((__cpumask_of_node_1123) (int __node_1111)) { + +{ +if (__static_condition_default_1127) { + +{ +{ + + + +if ( __node_1111 >= __nr_node_ids_1101 )// L38 +{ + +{ +{ + + + +__static_type_error("type error : no valid expression"); // L39:L40 +return __cpu_none_mask_1097 ;// L41 +} +} +} +if ( __node_to_cpumask_map_1104 [ __node_1111 ] == ( ( void * ) 0 ) )// L43 +{ + +{ +{ + + + +__static_type_error("type error : no valid expression"); // L44 +return __cpu_online_mask_1100 ;// L45 +} +} +} +return __node_to_cpumask_map_1104 [ __node_1111 ] ;// L47 +} +} + + +} + +}} +static inline int (__get_mp_bus_to_node_1129) (int __busnum_1128) { + +if (__static_condition_default_1130) { + +{ +{ + + + +return 0 ;// L113 +} +} + + +} +} +static int (__local_cpus_show_1136) (int __node_1131) { + +if (__static_condition_default_1137) { + +{ +{ + + + +const __cpumask_t_1092 * (__mask_1132);// L129 + +const __cpumask_t_1093 * (__mask_1133);// L129 + +const __cpumask_t_1094 * (__mask_1134);// L129 + +int __len_1135= 1;// L130 + +if (__static_condition_default_1138) { +__static_type_error("type error : no valid expression"); // L135 +} +if (__static_condition_default_1139) { + __printf_421 ("mask: %ld\n",* __mask_1132 ) ; // L137 +} +if (__static_condition_default_1140) { + __printf_421 ("mask: %ld\n",* __mask_1134 ) ; // L137 +} +if (__static_condition_default_1141) { +__static_type_error("type error") ; // L137 +} +return __len_1135 ;// L139 +} +} + + +} +} +static int (__dev_attr_show_1144) (int __node_1142) { + +if (__static_condition_default_1137) { + +{ +{ + + + +int __ret_1143;// L144 + + __ret_1143 = __local_cpus_show_1136 ( __node_1142 ) ; // L145 +return __ret_1143 ;// L146 +} +} + + +} +} +int (__pcibios_scan_root_1145) () { + +if (__static_condition_default_1137) { + +{ +{ + + + +if (__static_condition_default_1146) { +return __get_mp_bus_to_node_1129 (0) ;// L151 +} +} +} + + +} +} +int (__main_1150) (int __argc_1147, char * (* (__argv_1148))) { + +if (__static_condition_default_1152) { + +{ +{ + + + +if (__static_condition_default_1153) { +__static_type_error("type error : no valid expression"); // L158 +} +if (__static_condition_default_1154) { + __setup_node_to_cpumask_map_1120 ( ) ; // L160 +} +if (__static_condition_default_1155) { + __setup_node_to_cpumask_map_1106 ( ) ; // L160 +} +return 0 ;// L165 +} +} + + +} +} +int (__main_1151) (int __argc_1147, char * (* (__argv_1148))) { + +if (__static_condition_default_1156) { + +{ +{ + + + +if (__static_condition_default_1157) { + __setup_node_to_cpumask_map_1120 ( ) ; // L160 +} +int __node_1149= __pcibios_scan_root_1145 ( );// L162 + + __dev_attr_show_1144 ( __node_1149 ) ; // L163 +return 0 ;// L165 +} +} + + +} +} + diff --git a/fonda/cpp_testsuite/varBugs/LINUX/76baeebf7df.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/76baeebf7df.desugared.clangres new file mode 100644 index 00000000..7bbc8f95 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/76baeebf7df.desugared.clangres @@ -0,0 +1,7 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/76baeebf7df.desugared.c:1629:31: warning: Dereference of undefined pointer value (loaded from variable '__mask_1132') [core.NullDereference] + __printf_421 ("mask: %ld\n",* __mask_1132 ) ; // L137 + ^~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/76baeebf7df.desugared.c:1632:31: warning: Dereference of undefined pointer value (loaded from variable '__mask_1134') [core.NullDereference] + __printf_421 ("mask: %ld\n",* __mask_1134 ) ; // L137 + ^~~~~~~~~~~~~~ +2 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/LINUX/76baeebf7df.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/76baeebf7df.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/76baeebf7df.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/76baeebf7df.inferres b/fonda/cpp_testsuite/varBugs/LINUX/76baeebf7df.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/76baeebf7df.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.desugared.c index dfd48d5a..21971c5c 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.desugared.c @@ -7,13 +7,13 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); +extern const bool __static_condition_default_5; extern const bool __static_condition_default_21; extern const bool __static_condition_default_17; +extern const bool __static_condition_default_20; extern const bool __static_condition_default_6; -extern const bool __static_condition_default_11; extern const bool __static_condition_default_12; -extern const bool __static_condition_default_5; -extern const bool __static_condition_default_20; +extern const bool __static_condition_default_11; void __static_initializer_default() { __static_renaming("__nondet_0", "nondet"); __static_renaming("__some_int_1", "some_int"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.inferres b/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.inferres new file mode 100644 index 00000000..a4d6a576 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.inferres @@ -0,0 +1,14 @@ + +LINUX/7acf6cd80b2.c:44: error: Uninitialized Value + `driver_data` is read without initialization. + 42. + 43. err_release: + 44. tty_release(driver_data); // (3) + ^ + 45. return -1; + 46. } + + +Found 1 issue + Issue Type(ISSUED_TYPE_ID): # + Uninitialized Value(PULSE_UNINITIALIZED_VALUE): 1 diff --git a/fonda/cpp_testsuite/varBugs/LINUX/7c6048b7c83.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/7c6048b7c83.desugared.c index 1cf75e4d..b08eccbf 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/7c6048b7c83.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/7c6048b7c83.desugared.c @@ -7,15 +7,15 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_10; +extern const bool __static_condition_default_12; extern const bool __static_condition_default_14; -extern const bool __static_condition_default_3; extern const bool __static_condition_default_4; extern const bool __static_condition_default_5; -extern const bool __static_condition_default_11; -extern const bool __static_condition_default_12; extern const bool __static_condition_default_13; extern const bool __static_condition_default_1; +extern const bool __static_condition_default_3; +extern const bool __static_condition_default_10; +extern const bool __static_condition_default_11; void __static_initializer_default() { __static_renaming("__backlight_device_unregister_0", "backlight_device_unregister"); __static_renaming("__acpi_video_bus_put_one_device_2", "acpi_video_bus_put_one_device"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/7c6048b7c83.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/7c6048b7c83.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/7c6048b7c83.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/7c6048b7c83.inferres b/fonda/cpp_testsuite/varBugs/LINUX/7c6048b7c83.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/809e660f438.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/809e660f438.desugared.c index 4a0c42d3..76046116 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/809e660f438.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/809e660f438.desugared.c @@ -7,8 +7,8 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_4; extern const bool __static_condition_default_3; +extern const bool __static_condition_default_4; void __static_initializer_default() { __static_renaming("__do_page_fault_0", "do_page_fault"); __static_renaming("__do_sect_fault_1", "do_sect_fault"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/809e660f438.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/809e660f438.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/809e660f438.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/809e660f438.inferres b/fonda/cpp_testsuite/varBugs/LINUX/809e660f438.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/809e660f438.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/8c8296223f3.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/8c8296223f3.desugared.c index bdd64b9f..574adee0 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/8c8296223f3.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/8c8296223f3.desugared.c @@ -7,68 +7,68 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_810; -extern const bool __static_condition_default_427; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_68; -extern const bool __static_condition_default_289; -extern const bool __static_condition_default_603; -extern const bool __static_condition_default_309; -extern const bool __static_condition_default_353; extern const bool __static_condition_default_582; -extern const bool __static_condition_default_424; -extern const bool __static_condition_default_430; -extern const bool __static_condition_default_737; -extern const bool __static_condition_default_303; -extern const bool __static_condition_default_350; -extern const bool __static_condition_default_624; -extern const bool __static_condition_default_605; -extern const bool __static_condition_default_259; +extern const bool __static_condition_default_61; extern const bool __static_condition_default_271; +extern const bool __static_condition_default_289; extern const bool __static_condition_default_808; -extern const bool __static_condition_default_630; -extern const bool __static_condition_default_216; -extern const bool __static_condition_default_628; -extern const bool __static_condition_default_262; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_256; -extern const bool __static_condition_default_265; +extern const bool __static_condition_default_415; +extern const bool __static_condition_default_326; +extern const bool __static_condition_default_283; extern const bool __static_condition_default_380; +extern const bool __static_condition_default_68; +extern const bool __static_condition_default_247; extern const bool __static_condition_default_342; -extern const bool __static_condition_default_421; -extern const bool __static_condition_default_396; +extern const bool __static_condition_default_294; +extern const bool __static_condition_default_303; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_256; extern const bool __static_condition_default_596; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_622; +extern const bool __static_condition_default_737; +extern const bool __static_condition_default_265; extern const bool __static_condition_default_580; -extern const bool __static_condition_default_595; -extern const bool __static_condition_default_247; +extern const bool __static_condition_default_306; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_421; +extern const bool __static_condition_default_424; +extern const bool __static_condition_default_628; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_418; +extern const bool __static_condition_default_816; +extern const bool __static_condition_default_216; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_605; +extern const bool __static_condition_default_300; +extern const bool __static_condition_default_268; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_379; +extern const bool __static_condition_default_603; +extern const bool __static_condition_default_244; extern const bool __static_condition_default_297; +extern const bool __static_condition_default_430; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_309; +extern const bool __static_condition_default_350; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_624; extern const bool __static_condition_default_277; -extern const bool __static_condition_default_816; +extern const bool __static_condition_default_396; +extern const bool __static_condition_default_595; +extern const bool __static_condition_default_810; extern const bool __static_condition_default_280; extern const bool __static_condition_default_235; -extern const bool __static_condition_default_415; -extern const bool __static_condition_default_326; +extern const bool __static_condition_default_427; +extern const bool __static_condition_default_353; +extern const bool __static_condition_default_815; +extern const bool __static_condition_default_362; extern const bool __static_condition_default_274; -extern const bool __static_condition_default_283; -extern const bool __static_condition_default_379; +extern const bool __static_condition_default_433; extern const bool __static_condition_default_809; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_268; -extern const bool __static_condition_default_306; -extern const bool __static_condition_default_300; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_622; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_362; -extern const bool __static_condition_default_61; +extern const bool __static_condition_default_262; +extern const bool __static_condition_default_630; extern const bool __static_condition_default_817; -extern const bool __static_condition_default_418; -extern const bool __static_condition_default_815; -extern const bool __static_condition_default_294; -extern const bool __static_condition_default_803; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_433; void __static_initializer_default() { __static_renaming("____errno_location_0", "__errno_location"); __static_renaming("__ptrdiff_t_1", "ptrdiff_t"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/8c8296223f3.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/8c8296223f3.desugared.inferres new file mode 100644 index 00000000..9cb66db1 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/8c8296223f3.desugared.inferres @@ -0,0 +1,14 @@ + +LINUX/8c8296223f3.desugared.c:1413: error: Memory Leak + Memory dynamically allocated by `malloc` on line 1393 is not freed after the last access at line 1413, column 1. + 1411. + 1412. } + 1413. } + ^ + 1414. int (__main_813) (int __argc_811, char * (* (__argv_812))) { + 1415. + + +Found 1 issue + Issue Type(ISSUED_TYPE_ID): # + Memory Leak(MEMORY_LEAK_C): 1 diff --git a/fonda/cpp_testsuite/varBugs/LINUX/8c8296223f3.inferres b/fonda/cpp_testsuite/varBugs/LINUX/8c8296223f3.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/8c8296223f3.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/91ea8207168.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/91ea8207168.desugared.c index 0d504c6a..ef94f313 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/91ea8207168.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/91ea8207168.desugared.c @@ -7,36 +7,37 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_245; -extern const bool __static_condition_default_260; -extern const bool __static_condition_default_27; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_237; -extern const bool __static_condition_default_240; -extern const bool __static_condition_default_252; +extern const bool __static_condition_default_209; extern const bool __static_condition_default_263; -extern const bool __static_condition_default_206; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_226; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_237; +extern const bool __static_condition_default_247; extern const bool __static_condition_default_255; -extern const bool __static_condition_default_190; +extern const bool __static_condition_default_189; +extern const bool __static_condition_default_27; +extern const bool __static_condition_default_236; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_250; extern const bool __static_condition_default_238; -extern const bool __static_condition_default_231; -extern const bool __static_condition_default_261; -extern const bool __static_condition_default_197; -extern const bool __static_condition_default_205; +extern const bool __static_condition_default_196; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_230; +extern const bool __static_condition_default_243; extern const bool __static_condition_default_265; +extern const bool __static_condition_default_251; +extern const bool __static_condition_default_222; +extern const bool __static_condition_default_261; +extern const bool __static_condition_default_204; extern const bool __static_condition_default_239; -extern const bool __static_condition_default_244; +extern const bool __static_condition_default_254; extern const bool __static_condition_default_256; -extern const bool __static_condition_default_251; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_230; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_248; extern const bool __static_condition_default_262; -extern const bool __static_condition_default_223; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_260; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_225; +extern const bool __static_condition_default_205; void __static_initializer_default() { __static_renaming("____assert_fail_4", "__assert_fail"); __static_renaming("____assert_perror_fail_9", "__assert_perror_fail"); @@ -63,84 +64,87 @@ __static_renaming("__strxfrm_l_86", "strxfrm_l"); __static_renaming("__strdup_88", "strdup"); __static_renaming("__strndup_91", "strndup"); __static_renaming("__strchr_94", "strchr"); -__static_renaming("__strchr_95", "strchr"); -__static_renaming("__strrchr_98", "strrchr"); -__static_renaming("__strcspn_101", "strcspn"); -__static_renaming("__strspn_104", "strspn"); -__static_renaming("__strpbrk_107", "strpbrk"); -__static_renaming("__strstr_110", "strstr"); -__static_renaming("__strtok_113", "strtok"); -__static_renaming("____strtok_r_117", "__strtok_r"); -__static_renaming("__strtok_r_121", "strtok_r"); +__static_renaming("__strrchr_97", "strrchr"); +__static_renaming("__strcspn_100", "strcspn"); +__static_renaming("__strspn_103", "strspn"); +__static_renaming("__strpbrk_106", "strpbrk"); +__static_renaming("__strstr_109", "strstr"); +__static_renaming("__strtok_112", "strtok"); +__static_renaming("____strtok_r_116", "__strtok_r"); +__static_renaming("__strtok_r_120", "strtok_r"); +__static_renaming("__strlen_122", "strlen"); __static_renaming("__strlen_123", "strlen"); -__static_renaming("__strlen_124", "strlen"); -__static_renaming("__strnlen_127", "strnlen"); +__static_renaming("__strnlen_126", "strnlen"); +__static_renaming("__strerror_128", "strerror"); __static_renaming("__strerror_129", "strerror"); -__static_renaming("__strerror_130", "strerror"); -__static_renaming("__strerror_r_134", "strerror_r"); -__static_renaming("__strerror_l_137", "strerror_l"); +__static_renaming("__strerror_r_133", "strerror_r"); +__static_renaming("__strerror_l_136", "strerror_l"); +__static_renaming("____bzero_139", "__bzero"); __static_renaming("____bzero_140", "__bzero"); -__static_renaming("____bzero_141", "__bzero"); -__static_renaming("__bcopy_145", "bcopy"); -__static_renaming("__bzero_148", "bzero"); -__static_renaming("__bcmp_152", "bcmp"); -__static_renaming("__index_155", "index"); -__static_renaming("__rindex_158", "rindex"); -__static_renaming("__ffs_160", "ffs"); -__static_renaming("__strcasecmp_163", "strcasecmp"); -__static_renaming("__strncasecmp_167", "strncasecmp"); -__static_renaming("__strsep_170", "strsep"); -__static_renaming("__strsignal_172", "strsignal"); -__static_renaming("____stpcpy_175", "__stpcpy"); -__static_renaming("__stpcpy_178", "stpcpy"); -__static_renaming("____stpncpy_182", "__stpncpy"); -__static_renaming("__stpncpy_186", "stpncpy"); -__static_renaming("____stpncpy_chk_215", "__stpncpy_chk"); -__static_renaming("____stpncpy_alias_219", "__stpncpy_alias"); -__static_renaming("__node_data_232", "node_data"); -__static_renaming("__pfnnid_map_233", "pfnnid_map"); -__static_renaming("__max_pfn_234", "max_pfn"); -__static_renaming("__pfn_to_nid_236", "pfn_to_nid"); -__static_renaming("__nid_242", "nid"); -__static_renaming("__pfn_valid_243", "pfn_valid"); +__static_renaming("__bcopy_144", "bcopy"); +__static_renaming("__bzero_147", "bzero"); +__static_renaming("__bcmp_151", "bcmp"); +__static_renaming("__index_154", "index"); +__static_renaming("__rindex_157", "rindex"); +__static_renaming("__ffs_159", "ffs"); +__static_renaming("__strcasecmp_162", "strcasecmp"); +__static_renaming("__strncasecmp_166", "strncasecmp"); +__static_renaming("__strsep_169", "strsep"); +__static_renaming("__strsignal_171", "strsignal"); +__static_renaming("____stpcpy_174", "__stpcpy"); +__static_renaming("__stpcpy_177", "stpcpy"); +__static_renaming("____stpncpy_181", "__stpncpy"); +__static_renaming("__stpncpy_185", "stpncpy"); +__static_renaming("____stpncpy_chk_214", "__stpncpy_chk"); +__static_renaming("____stpncpy_alias_218", "__stpncpy_alias"); +__static_renaming("__node_data_231", "node_data"); +__static_renaming("__pfnnid_map_232", "pfnnid_map"); +__static_renaming("__max_pfn_233", "max_pfn"); +__static_renaming("__pfn_to_nid_235", "pfn_to_nid"); +__static_renaming("__nid_241", "nid"); +__static_renaming("__pfn_valid_242", "pfn_valid"); +__static_renaming("__setup_bootmem_245", "setup_bootmem"); __static_renaming("__setup_bootmem_246", "setup_bootmem"); -__static_renaming("__setup_bootmem_247", "setup_bootmem"); -__static_renaming("__pfn_253", "pfn"); -__static_renaming("__kpageflags_read_254", "kpageflags_read"); +__static_renaming("__pfn_252", "pfn"); +__static_renaming("__kpageflags_read_253", "kpageflags_read"); +__static_renaming("__main_257", "main"); __static_renaming("__main_258", "main"); -__static_renaming("__main_259", "main"); __static_condition_renaming("__static_condition_default_27", "!(defined __STRICT_ANSI__)"); -__static_condition_renaming("__static_condition_default_190", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_197", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_205", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_206", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_210", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_223", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_226", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_230", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_231", "(defined CONFIG_NODES_SHIFT) && (defined CONFIG_DISCONTIGMEM)"); -__static_condition_renaming("__static_condition_default_237", "(defined CONFIG_DISCONTIGMEM)"); -__static_condition_renaming("__static_condition_default_238", "(defined NDEBUG) && (defined CONFIG_DISCONTIGMEM)"); -__static_condition_renaming("__static_condition_default_239", "!(defined NDEBUG) && !(defined _ASSERT_H_DECLS) && (defined CONFIG_DISCONTIGMEM)"); -__static_condition_renaming("__static_condition_default_240", "!(defined NDEBUG) && (defined _ASSERT_H_DECLS) && (defined CONFIG_DISCONTIGMEM)"); -__static_condition_renaming("__static_condition_default_244", "!(defined CONFIG_NODES_SHIFT) && (defined CONFIG_DISCONTIGMEM)"); -__static_condition_renaming("__static_condition_default_245", "(defined CONFIG_NODES_SHIFT) && (defined CONFIG_DISCONTIGMEM)"); -__static_condition_renaming("__static_condition_default_248", "!(defined CONFIG_DISCONTIGMEM)"); -__static_condition_renaming("__static_condition_default_249", "(defined CONFIG_DISCONTIGMEM)"); -__static_condition_renaming("__static_condition_default_250", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined CONFIG_DISCONTIGMEM) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined CONFIG_DISCONTIGMEM) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined CONFIG_DISCONTIGMEM) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined CONFIG_DISCONTIGMEM)"); -__static_condition_renaming("__static_condition_default_251", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined CONFIG_DISCONTIGMEM) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined CONFIG_DISCONTIGMEM) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined CONFIG_DISCONTIGMEM) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined CONFIG_DISCONTIGMEM)"); -__static_condition_renaming("__static_condition_default_252", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined CONFIG_DISCONTIGMEM)"); -__static_condition_renaming("__static_condition_default_255", "(defined CONFIG_PROC_PAGE_MONITOR)"); -__static_condition_renaming("__static_condition_default_256", "!(defined CONFIG_DISCONTIGMEM) && (defined CONFIG_PROC_PAGE_MONITOR)"); -__static_condition_renaming("__static_condition_default_257", "(defined CONFIG_DISCONTIGMEM) && (defined CONFIG_PROC_PAGE_MONITOR)"); -__static_condition_renaming("__static_condition_default_260", "!(defined CONFIG_PROC_PAGE_MONITOR)"); -__static_condition_renaming("__static_condition_default_261", "!(defined CONFIG_DISCONTIGMEM) && !(defined CONFIG_PROC_PAGE_MONITOR)"); -__static_condition_renaming("__static_condition_default_262", "(defined CONFIG_DISCONTIGMEM) && !(defined CONFIG_PROC_PAGE_MONITOR)"); -__static_condition_renaming("__static_condition_default_263", "(defined CONFIG_PROC_PAGE_MONITOR)"); -__static_condition_renaming("__static_condition_default_264", "!(defined CONFIG_DISCONTIGMEM) && (defined CONFIG_PROC_PAGE_MONITOR)"); -__static_condition_renaming("__static_condition_default_265", "(defined CONFIG_DISCONTIGMEM) && (defined CONFIG_PROC_PAGE_MONITOR)"); +__static_condition_renaming("__static_condition_default_189", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_196", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_204", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_205", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_209", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_222", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_225", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_229", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_230", "(defined CONFIG_NODES_SHIFT) && (defined CONFIG_DISCONTIGMEM)"); +__static_condition_renaming("__static_condition_default_236", "(defined CONFIG_DISCONTIGMEM)"); +__static_condition_renaming("__static_condition_default_237", "(defined NDEBUG) && (defined CONFIG_DISCONTIGMEM)"); +__static_condition_renaming("__static_condition_default_238", "!(defined NDEBUG) && !(defined _ASSERT_H_DECLS) && (defined CONFIG_DISCONTIGMEM)"); +__static_condition_renaming("__static_condition_default_239", "!(defined NDEBUG) && (defined _ASSERT_H_DECLS) && (defined CONFIG_DISCONTIGMEM)"); +__static_condition_renaming("__static_condition_default_243", "!(defined CONFIG_NODES_SHIFT) && (defined CONFIG_DISCONTIGMEM)"); +__static_condition_renaming("__static_condition_default_244", "(defined CONFIG_NODES_SHIFT) && (defined CONFIG_DISCONTIGMEM)"); +__static_condition_renaming("__static_condition_default_247", "!(defined CONFIG_DISCONTIGMEM)"); +__static_condition_renaming("__static_condition_default_248", "(defined CONFIG_DISCONTIGMEM)"); +__static_condition_renaming("__static_condition_default_249", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined CONFIG_DISCONTIGMEM) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined CONFIG_DISCONTIGMEM) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined CONFIG_DISCONTIGMEM) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined CONFIG_DISCONTIGMEM)"); +__static_condition_renaming("__static_condition_default_250", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined CONFIG_DISCONTIGMEM) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined CONFIG_DISCONTIGMEM) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined CONFIG_DISCONTIGMEM) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined CONFIG_DISCONTIGMEM)"); +__static_condition_renaming("__static_condition_default_251", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined CONFIG_DISCONTIGMEM)"); +__static_condition_renaming("__static_condition_default_254", "(defined CONFIG_PROC_PAGE_MONITOR)"); +__static_condition_renaming("__static_condition_default_255", "!(defined CONFIG_DISCONTIGMEM) && (defined CONFIG_PROC_PAGE_MONITOR)"); +__static_condition_renaming("__static_condition_default_256", "(defined CONFIG_DISCONTIGMEM) && (defined CONFIG_PROC_PAGE_MONITOR)"); +__static_condition_renaming("__static_condition_default_259", "!(defined CONFIG_PROC_PAGE_MONITOR)"); +__static_condition_renaming("__static_condition_default_260", "!(defined CONFIG_DISCONTIGMEM) && !(defined CONFIG_PROC_PAGE_MONITOR)"); +__static_condition_renaming("__static_condition_default_261", "(defined CONFIG_DISCONTIGMEM) && !(defined CONFIG_PROC_PAGE_MONITOR)"); +__static_condition_renaming("__static_condition_default_262", "(defined CONFIG_PROC_PAGE_MONITOR)"); +__static_condition_renaming("__static_condition_default_263", "!(defined CONFIG_DISCONTIGMEM) && (defined CONFIG_PROC_PAGE_MONITOR)"); +__static_condition_renaming("__static_condition_default_264", "(defined CONFIG_DISCONTIGMEM) && (defined CONFIG_PROC_PAGE_MONITOR)"); +__static_condition_renaming("__static_condition_default_265", "(defined __CORRECT_ISO_CPP_STRING_H_PROTO)"); +if (__static_condition_default_265) { +__static_parse_error("Unable to parse"); +} }; typedef long int __ptrdiff_t_14;// L143:L324 typedef long unsigned int __size_t_15;// L177:L209 @@ -184,38 +188,37 @@ extern __size_t_15 (__strxfrm_l_86) (char * (____dest_82), const char * (____ extern char * ((__strdup_88) (const char * (____s_87)));// L171:L172 extern char * ((__strndup_91) (const char * (____string_89), __size_t_15 ____n_90));// L179:L180 extern char * ((__strchr_94) (const char * (____s_92), int ____c_93));// L231:L232 -extern char * ((__strchr_95) (const char * (____s_92), int ____c_93));// L231:L232 -extern char * ((__strrchr_98) (const char * (____s_96), int ____c_97));// L258:L259 -extern __size_t_15 (__strcspn_101) (const char * (____s_99), const char * (____reject_100));// L280:L281 -extern __size_t_15 (__strspn_104) (const char * (____s_102), const char * (____accept_103));// L284:L285 -extern char * ((__strpbrk_107) (const char * (____s_105), const char * (____accept_106)));// L310:L311 -extern char * ((__strstr_110) (const char * (____haystack_108), const char * (____needle_109)));// L337:L338 -extern char * ((__strtok_113) (char * __restrict ____s_111, const char * __restrict ____delim_112));// L343:L344 -extern char * ((____strtok_r_117) (char * __restrict ____s_114, const char * __restrict ____delim_115, char * (* __restrict ____save_ptr_116)));// L349:L352 -extern char * ((__strtok_r_121) (char * __restrict ____s_118, const char * __restrict ____delim_119, char * (* __restrict ____save_ptr_120)));// L354:L356 -extern __size_t_15 (__strlen_123) (const char * (____s_122));// L394:L395 -extern __size_t_15 (__strlen_124) (const char * (____s_122));// L394:L395 -extern __size_t_15 (__strnlen_127) (const char * (____string_125), __size_t_15 ____maxlen_126);// L401:L402 -extern char * ((__strerror_129) (int ____errnum_128));// L408 -extern char * ((__strerror_130) (int ____errnum_128));// L408 -extern int (__strerror_r_134) (int ____errnum_131, char * (____buf_132), __size_t_15 ____buflen_133);// L422:L424 -extern char * ((__strerror_l_137) (int ____errnum_135, ____locale_t_76 ____l_136));// L440 -extern void (____bzero_140) (void * (____s_138), __size_t_15 ____n_139);// L446 -extern void (____bzero_141) (void * (____s_138), __size_t_15 ____n_139);// L446 -extern void (__bcopy_145) (const void * (____src_142), void * (____dest_143), __size_t_15 ____n_144);// L450:L451 -extern void (__bzero_148) (void * (____s_146), __size_t_15 ____n_147);// L454 -extern int (__bcmp_152) (const void * (____s1_149), const void * (____s2_150), __size_t_15 ____n_151);// L457:L458 -extern char * ((__index_155) (const char * (____s_153), int ____c_154));// L484:L485 -extern char * ((__rindex_158) (const char * (____s_156), int ____c_157));// L512:L513 -extern int (__ffs_160) (int ____i_159);// L518 -extern int (__strcasecmp_163) (const char * (____s1_161), const char * (____s2_162));// L529:L530 -extern int (__strncasecmp_167) (const char * (____s1_164), const char * (____s2_165), __size_t_15 ____n_166);// L533:L534 -extern char * ((__strsep_170) (char * (* __restrict ____stringp_168), const char * __restrict ____delim_169));// L552:L554 -extern char * ((__strsignal_172) (int ____sig_171));// L559 -extern char * ((____stpcpy_175) (char * __restrict ____dest_173, const char * __restrict ____src_174));// L562:L563 -extern char * ((__stpcpy_178) (char * __restrict ____dest_176, const char * __restrict ____src_177));// L564:L565 -extern char * ((____stpncpy_182) (char * __restrict ____dest_179, const char * __restrict ____src_180, __size_t_15 ____n_181));// L569:L571 -extern char * ((__stpncpy_186) (char * __restrict ____dest_183, const char * __restrict ____src_184, __size_t_15 ____n_185));// L572:L574 +extern char * ((__strrchr_97) (const char * (____s_95), int ____c_96));// L258:L259 +extern __size_t_15 (__strcspn_100) (const char * (____s_98), const char * (____reject_99));// L280:L281 +extern __size_t_15 (__strspn_103) (const char * (____s_101), const char * (____accept_102));// L284:L285 +extern char * ((__strpbrk_106) (const char * (____s_104), const char * (____accept_105)));// L310:L311 +extern char * ((__strstr_109) (const char * (____haystack_107), const char * (____needle_108)));// L337:L338 +extern char * ((__strtok_112) (char * __restrict ____s_110, const char * __restrict ____delim_111));// L343:L344 +extern char * ((____strtok_r_116) (char * __restrict ____s_113, const char * __restrict ____delim_114, char * (* __restrict ____save_ptr_115)));// L349:L352 +extern char * ((__strtok_r_120) (char * __restrict ____s_117, const char * __restrict ____delim_118, char * (* __restrict ____save_ptr_119)));// L354:L356 +extern __size_t_15 (__strlen_122) (const char * (____s_121));// L394:L395 +extern __size_t_15 (__strlen_123) (const char * (____s_121));// L394:L395 +extern __size_t_15 (__strnlen_126) (const char * (____string_124), __size_t_15 ____maxlen_125);// L401:L402 +extern char * ((__strerror_128) (int ____errnum_127));// L408 +extern char * ((__strerror_129) (int ____errnum_127));// L408 +extern int (__strerror_r_133) (int ____errnum_130, char * (____buf_131), __size_t_15 ____buflen_132);// L422:L424 +extern char * ((__strerror_l_136) (int ____errnum_134, ____locale_t_76 ____l_135));// L440 +extern void (____bzero_139) (void * (____s_137), __size_t_15 ____n_138);// L446 +extern void (____bzero_140) (void * (____s_137), __size_t_15 ____n_138);// L446 +extern void (__bcopy_144) (const void * (____src_141), void * (____dest_142), __size_t_15 ____n_143);// L450:L451 +extern void (__bzero_147) (void * (____s_145), __size_t_15 ____n_146);// L454 +extern int (__bcmp_151) (const void * (____s1_148), const void * (____s2_149), __size_t_15 ____n_150);// L457:L458 +extern char * ((__index_154) (const char * (____s_152), int ____c_153));// L484:L485 +extern char * ((__rindex_157) (const char * (____s_155), int ____c_156));// L512:L513 +extern int (__ffs_159) (int ____i_158);// L518 +extern int (__strcasecmp_162) (const char * (____s1_160), const char * (____s2_161));// L529:L530 +extern int (__strncasecmp_166) (const char * (____s1_163), const char * (____s2_164), __size_t_15 ____n_165);// L533:L534 +extern char * ((__strsep_169) (char * (* __restrict ____stringp_167), const char * __restrict ____delim_168));// L552:L554 +extern char * ((__strsignal_171) (int ____sig_170));// L559 +extern char * ((____stpcpy_174) (char * __restrict ____dest_172, const char * __restrict ____src_173));// L562:L563 +extern char * ((__stpcpy_177) (char * __restrict ____dest_175, const char * __restrict ____src_176));// L564:L565 +extern char * ((____stpncpy_181) (char * __restrict ____dest_178, const char * __restrict ____src_179, __size_t_15 ____n_180));// L569:L571 +extern char * ((__stpncpy_185) (char * __restrict ____dest_182, const char * __restrict ____src_183, __size_t_15 ____n_184));// L572:L574 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ @@ -223,56 +226,56 @@ extern char * ((__stpncpy_186) (char * __restrict ____dest_183, const char * /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern char * ((____stpncpy_chk_215) (char * (____dest_211), const char * (____src_212), __size_t_15 ____n_213, __size_t_15 ____destlen_214));// L130:L131 -extern char * ((____stpncpy_alias_219) (char * (____dest_216), const char * (____src_217), __size_t_15 ____n_218));// L132:L133 +extern char * ((____stpncpy_chk_214) (char * (____dest_210), const char * (____src_211), __size_t_15 ____n_212, __size_t_15 ____destlen_213));// L130:L131 +extern char * ((____stpncpy_alias_218) (char * (____dest_215), const char * (____src_216), __size_t_15 ____n_217));// L132:L133 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -int __node_data_232[( 1 << 0 )];// L19 -unsigned char __pfnnid_map_233[512];// L24 -unsigned long __max_pfn_234= 512;// L25 -int (__pfn_to_nid_236) (unsigned int __pfn_235) { +int __node_data_231[( 1 << 0 )];// L19 +unsigned char __pfnnid_map_232[512];// L24 +unsigned long __max_pfn_233= 512;// L25 +int (__pfn_to_nid_235) (unsigned int __pfn_234) { -if (__static_condition_default_237) { +if (__static_condition_default_236) { { { -if (__static_condition_default_238) { +if (__static_condition_default_237) { ( ( void ) ( 0 ) ) ; // L29:L50 } -if (__static_condition_default_239) { -( ( __pfn_235 < 512 ) ? ( void ) ( 0 ) : ____assert_fail_4 ("pfn < PFNNID_MAP_MAX","/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/91ea8207168.c",29, __PRETTY_FUNCTION__ ) ) ; // L29:L91 +if (__static_condition_default_238) { +( ( __pfn_234 < 512 ) ? ( void ) ( 0 ) : ____assert_fail_4 ("pfn < PFNNID_MAP_MAX","/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/91ea8207168.c",29, __PRETTY_FUNCTION__ ) ) ; // L29:L91 } -if (__static_condition_default_240) { +if (__static_condition_default_239) { __static_type_error("type error") ; // L29:L91 } -return ( int ) __pfnnid_map_233 [ __pfn_235 ] ;// L30 +return ( int ) __pfnnid_map_232 [ __pfn_234 ] ;// L30 } } } } -int (__pfn_valid_243) (unsigned int __pfn_241) { +int (__pfn_valid_242) (unsigned int __pfn_240) { -if (__static_condition_default_237) { +if (__static_condition_default_236) { { { -int __nid_242= __pfn_to_nid_236 ( __pfn_241 );// L35 +int __nid_241= __pfn_to_nid_235 ( __pfn_240 );// L35 -if ( __nid_242 >= 0 )// L37 +if ( __nid_241 >= 0 )// L37 { -if (__static_condition_default_244) { -return ( __pfn_241 < ( __node_data_232 [ __nid_242 ] ) ) ;// L38 +if (__static_condition_default_243) { +return ( __pfn_240 < ( __node_data_231 [ __nid_241 ] ) ) ;// L38 } -if (__static_condition_default_245) { +if (__static_condition_default_244) { __static_type_error("invalid type found in return expression"); } } @@ -283,10 +286,10 @@ return 0 ;// L39 } } -void (__setup_bootmem_246) (void ) { +void (__setup_bootmem_245) (void ) { { -if (__static_condition_default_248) { +if (__static_condition_default_247) { { { @@ -300,23 +303,23 @@ if (__static_condition_default_248) { } }} -void (__setup_bootmem_247) (void ) { +void (__setup_bootmem_246) (void ) { { -if (__static_condition_default_249) { +if (__static_condition_default_248) { { { +if (__static_condition_default_249) { + __memset_31 ( __pfnnid_map_232 ,0xff,sizeof(( __pfnnid_map_232 ))) ; // L52 +} if (__static_condition_default_250) { - __memset_31 ( __pfnnid_map_233 ,0xff,sizeof(( __pfnnid_map_233 ))) ; // L52 + __memset_32 ( __pfnnid_map_232 ,0xff,sizeof(( __pfnnid_map_232 ))) ; // L52 } if (__static_condition_default_251) { - __memset_32 ( __pfnnid_map_233 ,0xff,sizeof(( __pfnnid_map_233 ))) ; // L52 -} -if (__static_condition_default_252) { __static_type_error("type error") ; // L52 } } @@ -326,19 +329,19 @@ __static_type_error("type error") ; // L52 } }} -int (__kpageflags_read_254) () { +int (__kpageflags_read_253) () { -if (__static_condition_default_255) { +if (__static_condition_default_254) { { { -unsigned int __pfn_253= 0;// L59 +unsigned int __pfn_252= 0;// L59 -if (__static_condition_default_256) { -for ( ; __pfn_253 < 0 ; __pfn_253 ++ )// L61 +if (__static_condition_default_255) { +for ( ; __pfn_252 < 0 ; __pfn_252 ++ )// L61 { { @@ -354,8 +357,8 @@ if ( ( 1 ) )// L62 } } } -if (__static_condition_default_257) { -for ( ; __pfn_253 < __max_pfn_234 ; __pfn_253 ++ )// L61 +if (__static_condition_default_256) { +for ( ; __pfn_252 < __max_pfn_233 ; __pfn_252 ++ )// L61 { { @@ -363,7 +366,7 @@ for ( ; __pfn_253 < __max_pfn_234 ; __pfn_253 ++ )// L61 -if ( __pfn_valid_243 ( __pfn_253 ) )// L62 +if ( __pfn_valid_242 ( __pfn_252 ) )// L62 { ; // L63 } @@ -378,21 +381,21 @@ return 0 ;// L66 } } -int (__main_258) () { +int (__main_257) () { -if (__static_condition_default_260) { +if (__static_condition_default_259) { { { +if (__static_condition_default_260) { + __setup_bootmem_245 ( ) ; // L72 +} if (__static_condition_default_261) { __setup_bootmem_246 ( ) ; // L72 } -if (__static_condition_default_262) { - __setup_bootmem_247 ( ) ; // L72 -} return 0 ;// L76 } } @@ -400,22 +403,22 @@ return 0 ;// L76 } } -int (__main_259) () { +int (__main_258) () { -if (__static_condition_default_263) { +if (__static_condition_default_262) { { { +if (__static_condition_default_263) { + __setup_bootmem_245 ( ) ; // L72 +} if (__static_condition_default_264) { __setup_bootmem_246 ( ) ; // L72 } -if (__static_condition_default_265) { - __setup_bootmem_247 ( ) ; // L72 -} - __kpageflags_read_254 ( ) ; // L74 + __kpageflags_read_253 ( ) ; // L74 return 0 ;// L76 } } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/91ea8207168.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/91ea8207168.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/91ea8207168.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/91ea8207168.inferres b/fonda/cpp_testsuite/varBugs/LINUX/91ea8207168.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/91ea8207168.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.desugared.c index ece25d97..d1c409a7 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.desugared.c @@ -7,44 +7,44 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_262; -extern const bool __static_condition_default_271; +extern const bool __static_condition_default_273; extern const bool __static_condition_default_259; -extern const bool __static_condition_default_230; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_261; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_260; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_266; -extern const bool __static_condition_default_240; -extern const bool __static_condition_default_28; -extern const bool __static_condition_default_205; -extern const bool __static_condition_default_246; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_269; +extern const bool __static_condition_default_241; extern const bool __static_condition_default_265; +extern const bool __static_condition_default_190; +extern const bool __static_condition_default_258; extern const bool __static_condition_default_264; -extern const bool __static_condition_default_254; +extern const bool __static_condition_default_197; +extern const bool __static_condition_default_238; extern const bool __static_condition_default_272; -extern const bool __static_condition_default_190; -extern const bool __static_condition_default_239; -extern const bool __static_condition_default_226; +extern const bool __static_condition_default_205; +extern const bool __static_condition_default_243; +extern const bool __static_condition_default_206; extern const bool __static_condition_default_242; +extern const bool __static_condition_default_240; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_262; +extern const bool __static_condition_default_263; extern const bool __static_condition_default_244; -extern const bool __static_condition_default_267; +extern const bool __static_condition_default_28; +extern const bool __static_condition_default_253; extern const bool __static_condition_default_250; extern const bool __static_condition_default_19; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_243; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_206; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_269; -extern const bool __static_condition_default_273; -extern const bool __static_condition_default_197; extern const bool __static_condition_default_245; -extern const bool __static_condition_default_255; +extern const bool __static_condition_default_266; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_260; +extern const bool __static_condition_default_226; +extern const bool __static_condition_default_261; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_239; +extern const bool __static_condition_default_254; +extern const bool __static_condition_default_230; +extern const bool __static_condition_default_267; void __static_initializer_default() { __static_renaming("____assert_fail_4", "__assert_fail"); __static_renaming("____assert_perror_fail_9", "__assert_perror_fail"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.inferres b/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/bc8cec0dff0.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/bc8cec0dff0.desugared.c index 12533c31..c77b36d3 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/bc8cec0dff0.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/bc8cec0dff0.desugared.c @@ -7,11 +7,11 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_10; -extern const bool __static_condition_default_16; -extern const bool __static_condition_default_9; extern const bool __static_condition_default_12; extern const bool __static_condition_default_15; +extern const bool __static_condition_default_16; +extern const bool __static_condition_default_9; +extern const bool __static_condition_default_10; void __static_initializer_default() { __static_renaming("__size_t_0", "size_t"); __static_renaming("__malloc_2", "malloc"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/bc8cec0dff0.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/bc8cec0dff0.desugared.inferres new file mode 100644 index 00000000..2f0d87fe --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/bc8cec0dff0.desugared.inferres @@ -0,0 +1,13 @@ + +LINUX/bc8cec0dff0.desugared.c:198: error: Memory Leak + Memory dynamically allocated by `malloc`, indirectly via call to `__jffs2_nor_wbuf_flash_setup_7()` on line 187 is not freed after the last access at line 198, column 1. + 196. + 197. + 198. } + ^ + 199. + + +Found 1 issue + Issue Type(ISSUED_TYPE_ID): # + Memory Leak(MEMORY_LEAK_C): 1 diff --git a/fonda/cpp_testsuite/varBugs/LINUX/bc8cec0dff0.inferres b/fonda/cpp_testsuite/varBugs/LINUX/bc8cec0dff0.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/bc8cec0dff0.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/c708c57e247.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/c708c57e247.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/c708c57e247.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/c708c57e247.inferres b/fonda/cpp_testsuite/varBugs/LINUX/c708c57e247.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/c708c57e247.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d530db0db90.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/d530db0db90.desugared.c index d28baff0..0c99b8fc 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/d530db0db90.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/d530db0db90.desugared.c @@ -7,68 +7,68 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_811; -extern const bool __static_condition_default_285; -extern const bool __static_condition_default_379; -extern const bool __static_condition_default_420; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_604; -extern const bool __static_condition_default_279; -extern const bool __static_condition_default_378; -extern const bool __static_condition_default_361; extern const bool __static_condition_default_623; -extern const bool __static_condition_default_60; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_810; -extern const bool __static_condition_default_579; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_349; extern const bool __static_condition_default_293; -extern const bool __static_condition_default_252; -extern const bool __static_condition_default_804; -extern const bool __static_condition_default_308; -extern const bool __static_condition_default_243; -extern const bool __static_condition_default_270; +extern const bool __static_condition_default_285; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_810; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_234; +extern const bool __static_condition_default_267; extern const bool __static_condition_default_273; -extern const bool __static_condition_default_629; -extern const bool __static_condition_default_240; -extern const bool __static_condition_default_595; +extern const bool __static_condition_default_426; +extern const bool __static_condition_default_414; +extern const bool __static_condition_default_420; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_811; +extern const bool __static_condition_default_806; extern const bool __static_condition_default_305; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_252; +extern const bool __static_condition_default_429; +extern const bool __static_condition_default_629; +extern const bool __static_condition_default_341; extern const bool __static_condition_default_237; -extern const bool __static_condition_default_805; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_234; -extern const bool __static_condition_default_276; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_394; -extern const bool __static_condition_default_594; extern const bool __static_condition_default_249; -extern const bool __static_condition_default_302; -extern const bool __static_condition_default_423; extern const bool __static_condition_default_352; +extern const bool __static_condition_default_302; +extern const bool __static_condition_default_361; extern const bool __static_condition_default_417; -extern const bool __static_condition_default_621; +extern const bool __static_condition_default_595; +extern const bool __static_condition_default_423; +extern const bool __static_condition_default_604; +extern const bool __static_condition_default_215; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_240; extern const bool __static_condition_default_282; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_627; -extern const bool __static_condition_default_414; -extern const bool __static_condition_default_581; -extern const bool __static_condition_default_429; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_805; +extern const bool __static_condition_default_349; +extern const bool __static_condition_default_378; +extern const bool __static_condition_default_325; +extern const bool __static_condition_default_394; +extern const bool __static_condition_default_276; +extern const bool __static_condition_default_60; +extern const bool __static_condition_default_804; extern const bool __static_condition_default_736; +extern const bool __static_condition_default_579; extern const bool __static_condition_default_809; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_806; -extern const bool __static_condition_default_803; -extern const bool __static_condition_default_246; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_627; +extern const bool __static_condition_default_243; extern const bool __static_condition_default_261; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_279; +extern const bool __static_condition_default_594; +extern const bool __static_condition_default_581; extern const bool __static_condition_default_67; -extern const bool __static_condition_default_325; +extern const bool __static_condition_default_379; +extern const bool __static_condition_default_602; extern const bool __static_condition_default_395; -extern const bool __static_condition_default_426; -extern const bool __static_condition_default_215; -extern const bool __static_condition_default_264; +extern const bool __static_condition_default_308; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_270; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d530db0db90.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/d530db0db90.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/d530db0db90.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d530db0db90.inferres b/fonda/cpp_testsuite/varBugs/LINUX/d530db0db90.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/d530db0db90.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.desugared.c index f13aba4a..64931768 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.desugared.c @@ -7,27 +7,76 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_269; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_144; -extern const bool __static_condition_default_146; -extern const bool __static_condition_default_136; +extern const bool __static_condition_default_409; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_307; +extern const bool __static_condition_default_593; extern const bool __static_condition_default_281; -extern const bool __static_condition_default_121; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_137; +extern const bool __static_condition_default_339; +extern const bool __static_condition_default_635; +extern const bool __static_condition_default_302; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_440; +extern const bool __static_condition_default_643; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_750; +extern const bool __static_condition_default_820; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_616; +extern const bool __static_condition_default_322; +extern const bool __static_condition_default_831; +extern const bool __static_condition_default_826; +extern const bool __static_condition_default_824; +extern const bool __static_condition_default_446; +extern const bool __static_condition_default_609; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_822; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_816; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_319; +extern const bool __static_condition_default_832; +extern const bool __static_condition_default_74; +extern const bool __static_condition_default_392; +extern const bool __static_condition_default_251; +extern const bool __static_condition_default_266; +extern const bool __static_condition_default_814; extern const bool __static_condition_default_272; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_165; -extern const bool __static_condition_default_163; -extern const bool __static_condition_default_276; -extern const bool __static_condition_default_171; -extern const bool __static_condition_default_204; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_268; -extern const bool __static_condition_default_282; +extern const bool __static_condition_default_443; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_641; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_81; +extern const bool __static_condition_default_290; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_434; +extern const bool __static_condition_default_437; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_815; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_618; +extern const bool __static_condition_default_428; +extern const bool __static_condition_default_821; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_310; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_260; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_818; +extern const bool __static_condition_default_833; +extern const bool __static_condition_default_254; +extern const bool __static_condition_default_269; +extern const bool __static_condition_default_287; +extern const bool __static_condition_default_366; +extern const bool __static_condition_default_595; +extern const bool __static_condition_default_316; void __static_initializer_default() { __static_renaming("____assert_fail_4", "__assert_fail"); __static_renaming("____assert_perror_fail_9", "__assert_perror_fail"); @@ -35,139 +84,782 @@ __static_renaming("____assert_13", "__assert"); __static_renaming("__ptrdiff_t_14", "ptrdiff_t"); __static_renaming("__size_t_15", "size_t"); __static_renaming("__wchar_t_16", "wchar_t"); -__static_renaming("__div_t_21", "div_t"); -__static_renaming("__ldiv_t_26", "ldiv_t"); -__static_renaming("__lldiv_t_31", "lldiv_t"); -__static_renaming("____ctype_get_mb_cur_max_32", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_33", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_34", "__ctype_get_mb_cur_max"); -__static_renaming("____ctype_get_mb_cur_max_35", "__ctype_get_mb_cur_max"); -__static_renaming("__atof_37", "atof"); -__static_renaming("__atof_38", "atof"); -__static_renaming("__atoi_40", "atoi"); -__static_renaming("__atoi_41", "atoi"); -__static_renaming("__atol_43", "atol"); -__static_renaming("__atol_44", "atol"); -__static_renaming("__atoll_46", "atoll"); -__static_renaming("__atoll_47", "atoll"); -__static_renaming("__strtod_50", "strtod"); -__static_renaming("__strtof_53", "strtof"); -__static_renaming("__strtold_56", "strtold"); -__static_renaming("__strtol_60", "strtol"); -__static_renaming("__strtoul_64", "strtoul"); -__static_renaming("__strtoll_68", "strtoll"); -__static_renaming("__strtoull_72", "strtoull"); -__static_renaming("__rand_76", "rand"); -__static_renaming("__rand_77", "rand"); -__static_renaming("__srand_79", "srand"); -__static_renaming("__malloc_81", "malloc"); -__static_renaming("__malloc_82", "malloc"); -__static_renaming("__calloc_85", "calloc"); -__static_renaming("__calloc_86", "calloc"); -__static_renaming("__realloc_89", "realloc"); -__static_renaming("__realloc_90", "realloc"); -__static_renaming("__free_92", "free"); -__static_renaming("__aligned_alloc_95", "aligned_alloc"); -__static_renaming("__aligned_alloc_96", "aligned_alloc"); -__static_renaming("__abort_97", "abort"); -__static_renaming("__atexit_99", "atexit"); -__static_renaming("__at_quick_exit_101", "at_quick_exit"); -__static_renaming("__exit_103", "exit"); -__static_renaming("__quick_exit_105", "quick_exit"); -__static_renaming("___Exit_107", "_Exit"); -__static_renaming("__getenv_109", "getenv"); -__static_renaming("__getenv_110", "getenv"); -__static_renaming("__system_112", "system"); -__static_renaming("__system_113", "system"); -__static_renaming("____compar_fn_t_114", "__compar_fn_t"); -__static_renaming("__bsearch_122", "bsearch"); -__static_renaming("__bsearch_124", "bsearch"); -__static_renaming("____l_131", "__l"); -__static_renaming("____u_132", "__u"); -__static_renaming("____idx_133", "__idx"); -__static_renaming("____p_134", "__p"); -__static_renaming("____comparison_135", "__comparison"); -__static_renaming("__qsort_143", "qsort"); -__static_renaming("__qsort_145", "qsort"); -__static_renaming("__abs_148", "abs"); -__static_renaming("__abs_149", "abs"); -__static_renaming("__labs_151", "labs"); -__static_renaming("__labs_152", "labs"); -__static_renaming("__llabs_154", "llabs"); -__static_renaming("__llabs_155", "llabs"); -__static_renaming("__div_158", "div"); -__static_renaming("__div_159", "div"); -__static_renaming("__ldiv_162", "ldiv"); -__static_renaming("__ldiv_164", "ldiv"); -__static_renaming("__lldiv_168", "lldiv"); -__static_renaming("__lldiv_170", "lldiv"); -__static_renaming("__mblen_174", "mblen"); -__static_renaming("__mbtowc_178", "mbtowc"); -__static_renaming("__wctomb_181", "wctomb"); -__static_renaming("__mbstowcs_185", "mbstowcs"); -__static_renaming("__wcstombs_189", "wcstombs"); -__static_renaming("____realpath_chk_194", "__realpath_chk"); -__static_renaming("____realpath_alias_197", "__realpath_alias"); -__static_renaming("____realpath_chk_warn_201", "__realpath_chk_warn"); -__static_renaming("____ptsname_r_chk_209", "__ptsname_r_chk"); -__static_renaming("____ptsname_r_alias_213", "__ptsname_r_alias"); -__static_renaming("____ptsname_r_chk_warn_218", "__ptsname_r_chk_warn"); -__static_renaming("____wctomb_chk_226", "__wctomb_chk"); -__static_renaming("____wctomb_alias_229", "__wctomb_alias"); -__static_renaming("____mbstowcs_chk_236", "__mbstowcs_chk"); -__static_renaming("____mbstowcs_alias_240", "__mbstowcs_alias"); -__static_renaming("____mbstowcs_chk_warn_245", "__mbstowcs_chk_warn"); -__static_renaming("____wcstombs_chk_253", "__wcstombs_chk"); -__static_renaming("____wcstombs_alias_257", "__wcstombs_alias"); -__static_renaming("____wcstombs_chk_warn_262", "__wcstombs_chk_warn"); -__static_renaming("__vlan_dev_real_dev_266", "vlan_dev_real_dev"); -__static_renaming("__vlan_dev_real_dev_271", "vlan_dev_real_dev"); -__static_renaming("__ocrdma_inet6addr_event_273", "ocrdma_inet6addr_event"); -__static_renaming("__main_279", "main"); -__static_renaming("__main_280", "main"); - -__static_condition_renaming("__static_condition_default_121", "!(defined _FORTIFY_SOURCE) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_123", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_136", "(defined __USE_EXTERN_INLINES) && !(defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_137", "(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_144", "!(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_146", "(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); -__static_condition_renaming("__static_condition_default_163", "!(defined _FORTIFY_SOURCE) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_165", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __ldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_169", "!(defined _FORTIFY_SOURCE) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_171", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __lldiv_t_defined)"); -__static_condition_renaming("__static_condition_default_204", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_267", "!(defined CONFIG_VLAN_8021Q)"); -__static_condition_renaming("__static_condition_default_268", "(defined NDEBUG) && !(defined CONFIG_VLAN_8021Q)"); -__static_condition_renaming("__static_condition_default_269", "!(defined NDEBUG) && !(defined _ASSERT_H_DECLS) && !(defined CONFIG_VLAN_8021Q)"); -__static_condition_renaming("__static_condition_default_270", "!(defined NDEBUG) && (defined _ASSERT_H_DECLS) && !(defined CONFIG_VLAN_8021Q)"); -__static_condition_renaming("__static_condition_default_272", "(defined CONFIG_VLAN_8021Q)"); -__static_condition_renaming("__static_condition_default_274", "!(defined CONFIG_VLAN_8021Q) && (defined CONFIG_IPV6) || (defined CONFIG_VLAN_8021Q)"); -__static_condition_renaming("__static_condition_default_275", "!(defined CONFIG_VLAN_8021Q) && (defined CONFIG_IPV6)"); -__static_condition_renaming("__static_condition_default_276", "(defined CONFIG_VLAN_8021Q)"); -__static_condition_renaming("__static_condition_default_281", "!(defined CONFIG_VLAN_8021Q) && !(defined CONFIG_IPV6)"); -__static_condition_renaming("__static_condition_default_282", "!(defined CONFIG_VLAN_8021Q) && (defined CONFIG_IPV6) || (defined CONFIG_VLAN_8021Q)"); +__static_renaming("__idtype_t_22", "idtype_t"); +__static_renaming("____u_char_23", "__u_char"); +__static_renaming("____u_short_24", "__u_short"); +__static_renaming("____u_int_25", "__u_int"); +__static_renaming("____u_long_26", "__u_long"); +__static_renaming("____int8_t_27", "__int8_t"); +__static_renaming("____uint8_t_28", "__uint8_t"); +__static_renaming("____int16_t_29", "__int16_t"); +__static_renaming("____uint16_t_30", "__uint16_t"); +__static_renaming("____int32_t_31", "__int32_t"); +__static_renaming("____uint32_t_32", "__uint32_t"); +__static_renaming("____int64_t_33", "__int64_t"); +__static_renaming("____uint64_t_34", "__uint64_t"); +__static_renaming("____quad_t_35", "__quad_t"); +__static_renaming("____u_quad_t_36", "__u_quad_t"); +__static_renaming("____dev_t_37", "__dev_t"); +__static_renaming("____uid_t_38", "__uid_t"); +__static_renaming("____gid_t_39", "__gid_t"); +__static_renaming("____ino_t_40", "__ino_t"); +__static_renaming("____ino64_t_41", "__ino64_t"); +__static_renaming("____mode_t_42", "__mode_t"); +__static_renaming("____nlink_t_43", "__nlink_t"); +__static_renaming("____off_t_44", "__off_t"); +__static_renaming("____off64_t_45", "__off64_t"); +__static_renaming("____pid_t_46", "__pid_t"); +__static_renaming("____fsid_t_50", "__fsid_t"); +__static_renaming("____clock_t_51", "__clock_t"); +__static_renaming("____rlim_t_52", "__rlim_t"); +__static_renaming("____rlim64_t_53", "__rlim64_t"); +__static_renaming("____id_t_54", "__id_t"); +__static_renaming("____time_t_55", "__time_t"); +__static_renaming("____useconds_t_56", "__useconds_t"); +__static_renaming("____suseconds_t_57", "__suseconds_t"); +__static_renaming("____daddr_t_58", "__daddr_t"); +__static_renaming("____key_t_59", "__key_t"); +__static_renaming("____clockid_t_60", "__clockid_t"); +__static_renaming("____timer_t_61", "__timer_t"); +__static_renaming("____blksize_t_62", "__blksize_t"); +__static_renaming("____blkcnt_t_63", "__blkcnt_t"); +__static_renaming("____blkcnt64_t_64", "__blkcnt64_t"); +__static_renaming("____fsblkcnt_t_65", "__fsblkcnt_t"); +__static_renaming("____fsblkcnt64_t_66", "__fsblkcnt64_t"); +__static_renaming("____fsfilcnt_t_67", "__fsfilcnt_t"); +__static_renaming("____fsfilcnt64_t_68", "__fsfilcnt64_t"); +__static_renaming("____fsword_t_69", "__fsword_t"); +__static_renaming("____ssize_t_70", "__ssize_t"); +__static_renaming("____syscall_slong_t_71", "__syscall_slong_t"); +__static_renaming("____syscall_ulong_t_72", "__syscall_ulong_t"); +__static_renaming("____loff_t_73", "__loff_t"); +__static_renaming("____qaddr_t_75", "__qaddr_t"); +__static_renaming("____caddr_t_76", "__caddr_t"); +__static_renaming("____intptr_t_77", "__intptr_t"); +__static_renaming("____socklen_t_78", "__socklen_t"); +__static_renaming("____bswap_32_80", "__bswap_32"); +__static_renaming("____bswap_64_83", "__bswap_64"); +__static_renaming("____WAIT_STATUS_103", "__WAIT_STATUS"); +__static_renaming("__div_t_108", "div_t"); +__static_renaming("__ldiv_t_113", "ldiv_t"); +__static_renaming("__lldiv_t_118", "lldiv_t"); +__static_renaming("____ctype_get_mb_cur_max_119", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_120", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_121", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_122", "__ctype_get_mb_cur_max"); +__static_renaming("__atof_124", "atof"); +__static_renaming("__atof_125", "atof"); +__static_renaming("__atoi_127", "atoi"); +__static_renaming("__atoi_128", "atoi"); +__static_renaming("__atol_130", "atol"); +__static_renaming("__atol_131", "atol"); +__static_renaming("__atoll_133", "atoll"); +__static_renaming("__atoll_134", "atoll"); +__static_renaming("__strtod_137", "strtod"); +__static_renaming("__strtof_140", "strtof"); +__static_renaming("__strtold_143", "strtold"); +__static_renaming("__strtol_147", "strtol"); +__static_renaming("__strtoul_151", "strtoul"); +__static_renaming("__strtoq_155", "strtoq"); +__static_renaming("__strtouq_159", "strtouq"); +__static_renaming("__strtoll_163", "strtoll"); +__static_renaming("__strtoll_164", "strtoll"); +__static_renaming("__strtoull_168", "strtoull"); +__static_renaming("__l64a_173", "l64a"); +__static_renaming("__l64a_174", "l64a"); +__static_renaming("__a64l_176", "a64l"); +__static_renaming("__a64l_177", "a64l"); +__static_renaming("____u_char_178", "__u_char"); +__static_renaming("____u_short_179", "__u_short"); +__static_renaming("____u_int_180", "__u_int"); +__static_renaming("____u_long_181", "__u_long"); +__static_renaming("____int8_t_182", "__int8_t"); +__static_renaming("____uint8_t_183", "__uint8_t"); +__static_renaming("____int16_t_184", "__int16_t"); +__static_renaming("____uint16_t_185", "__uint16_t"); +__static_renaming("____int32_t_186", "__int32_t"); +__static_renaming("____uint32_t_187", "__uint32_t"); +__static_renaming("____int64_t_188", "__int64_t"); +__static_renaming("____uint64_t_189", "__uint64_t"); +__static_renaming("____quad_t_190", "__quad_t"); +__static_renaming("____u_quad_t_191", "__u_quad_t"); +__static_renaming("____dev_t_192", "__dev_t"); +__static_renaming("____uid_t_193", "__uid_t"); +__static_renaming("____gid_t_194", "__gid_t"); +__static_renaming("____ino_t_195", "__ino_t"); +__static_renaming("____ino64_t_196", "__ino64_t"); +__static_renaming("____mode_t_197", "__mode_t"); +__static_renaming("____nlink_t_198", "__nlink_t"); +__static_renaming("____off_t_199", "__off_t"); +__static_renaming("____off64_t_200", "__off64_t"); +__static_renaming("____pid_t_201", "__pid_t"); +__static_renaming("____fsid_t_205", "__fsid_t"); +__static_renaming("____clock_t_206", "__clock_t"); +__static_renaming("____rlim_t_207", "__rlim_t"); +__static_renaming("____rlim64_t_208", "__rlim64_t"); +__static_renaming("____id_t_209", "__id_t"); +__static_renaming("____time_t_210", "__time_t"); +__static_renaming("____useconds_t_211", "__useconds_t"); +__static_renaming("____suseconds_t_212", "__suseconds_t"); +__static_renaming("____daddr_t_213", "__daddr_t"); +__static_renaming("____key_t_214", "__key_t"); +__static_renaming("____clockid_t_215", "__clockid_t"); +__static_renaming("____timer_t_216", "__timer_t"); +__static_renaming("____blksize_t_217", "__blksize_t"); +__static_renaming("____blkcnt_t_218", "__blkcnt_t"); +__static_renaming("____blkcnt64_t_219", "__blkcnt64_t"); +__static_renaming("____fsblkcnt_t_220", "__fsblkcnt_t"); +__static_renaming("____fsblkcnt64_t_221", "__fsblkcnt64_t"); +__static_renaming("____fsfilcnt_t_222", "__fsfilcnt_t"); +__static_renaming("____fsfilcnt64_t_223", "__fsfilcnt64_t"); +__static_renaming("____fsword_t_224", "__fsword_t"); +__static_renaming("____ssize_t_225", "__ssize_t"); +__static_renaming("____syscall_slong_t_226", "__syscall_slong_t"); +__static_renaming("____syscall_ulong_t_227", "__syscall_ulong_t"); +__static_renaming("____loff_t_228", "__loff_t"); +__static_renaming("____qaddr_t_230", "__qaddr_t"); +__static_renaming("____caddr_t_231", "__caddr_t"); +__static_renaming("____intptr_t_232", "__intptr_t"); +__static_renaming("____socklen_t_233", "__socklen_t"); +__static_renaming("__u_char_234", "u_char"); +__static_renaming("__u_char_235", "u_char"); +__static_renaming("__u_short_236", "u_short"); +__static_renaming("__u_short_237", "u_short"); +__static_renaming("__u_int_238", "u_int"); +__static_renaming("__u_int_239", "u_int"); +__static_renaming("__u_long_240", "u_long"); +__static_renaming("__u_long_241", "u_long"); +__static_renaming("__quad_t_242", "quad_t"); +__static_renaming("__quad_t_243", "quad_t"); +__static_renaming("__u_quad_t_244", "u_quad_t"); +__static_renaming("__u_quad_t_245", "u_quad_t"); +__static_renaming("__fsid_t_246", "fsid_t"); +__static_renaming("__fsid_t_247", "fsid_t"); +__static_renaming("__loff_t_249", "loff_t"); +__static_renaming("__loff_t_250", "loff_t"); +__static_renaming("__loff_t_252", "loff_t"); +__static_renaming("__loff_t_253", "loff_t"); +__static_renaming("__ino_t_255", "ino_t"); +__static_renaming("__ino_t_256", "ino_t"); +__static_renaming("__ino_t_258", "ino_t"); +__static_renaming("__ino_t_259", "ino_t"); +__static_renaming("__dev_t_261", "dev_t"); +__static_renaming("__dev_t_262", "dev_t"); +__static_renaming("__gid_t_264", "gid_t"); +__static_renaming("__gid_t_265", "gid_t"); +__static_renaming("__gid_t_267", "gid_t"); +__static_renaming("__gid_t_268", "gid_t"); +__static_renaming("__mode_t_270", "mode_t"); +__static_renaming("__mode_t_271", "mode_t"); +__static_renaming("__nlink_t_273", "nlink_t"); +__static_renaming("__nlink_t_274", "nlink_t"); +__static_renaming("__uid_t_276", "uid_t"); +__static_renaming("__uid_t_277", "uid_t"); +__static_renaming("__uid_t_279", "uid_t"); +__static_renaming("__uid_t_280", "uid_t"); +__static_renaming("__off_t_282", "off_t"); +__static_renaming("__off_t_283", "off_t"); +__static_renaming("__off_t_285", "off_t"); +__static_renaming("__off_t_286", "off_t"); +__static_renaming("__pid_t_288", "pid_t"); +__static_renaming("__pid_t_289", "pid_t"); +__static_renaming("__pid_t_291", "pid_t"); +__static_renaming("__pid_t_292", "pid_t"); +__static_renaming("__id_t_294", "id_t"); +__static_renaming("__id_t_295", "id_t"); +__static_renaming("__ssize_t_297", "ssize_t"); +__static_renaming("__ssize_t_298", "ssize_t"); +__static_renaming("__daddr_t_300", "daddr_t"); +__static_renaming("__daddr_t_301", "daddr_t"); +__static_renaming("__caddr_t_303", "caddr_t"); +__static_renaming("__caddr_t_304", "caddr_t"); +__static_renaming("__key_t_305", "key_t"); +__static_renaming("__key_t_306", "key_t"); +__static_renaming("__key_t_308", "key_t"); +__static_renaming("__key_t_309", "key_t"); +__static_renaming("__clock_t_311", "clock_t"); +__static_renaming("__clock_t_312", "clock_t"); +__static_renaming("__time_t_314", "time_t"); +__static_renaming("__time_t_315", "time_t"); +__static_renaming("__clockid_t_317", "clockid_t"); +__static_renaming("__clockid_t_318", "clockid_t"); +__static_renaming("__timer_t_320", "timer_t"); +__static_renaming("__timer_t_321", "timer_t"); +__static_renaming("__ulong_323", "ulong"); +__static_renaming("__ulong_324", "ulong"); +__static_renaming("__ulong_325", "ulong"); +__static_renaming("__ushort_326", "ushort"); +__static_renaming("__uint_327", "uint"); +__static_renaming("__int8_t_328", "int8_t"); +__static_renaming("__int16_t_329", "int16_t"); +__static_renaming("__int32_t_330", "int32_t"); +__static_renaming("__int64_t_331", "int64_t"); +__static_renaming("__u_int8_t_332", "u_int8_t"); +__static_renaming("__u_int16_t_333", "u_int16_t"); +__static_renaming("__u_int32_t_334", "u_int32_t"); +__static_renaming("__u_int64_t_335", "u_int64_t"); +__static_renaming("__register_t_336", "register_t"); +__static_renaming("____bswap_32_338", "__bswap_32"); +__static_renaming("____bswap_64_341", "__bswap_64"); +__static_renaming("____sig_atomic_t_342", "__sig_atomic_t"); +__static_renaming("____sigset_t_346", "__sigset_t"); +__static_renaming("__sigset_t_347", "sigset_t"); +__static_renaming("__suseconds_t_364", "suseconds_t"); +__static_renaming("__suseconds_t_365", "suseconds_t"); +__static_renaming("____fd_mask_367", "__fd_mask"); +__static_renaming("____fd_mask_368", "__fd_mask"); +__static_renaming("__fd_set_376", "fd_set"); +__static_renaming("__fd_mask_377", "fd_mask"); +__static_renaming("__fd_mask_378", "fd_mask"); +__static_renaming("__select_390", "select"); +__static_renaming("__select_391", "select"); +__static_renaming("__pselect_406", "pselect"); +__static_renaming("__pselect_407", "pselect"); +__static_renaming("____fdelt_chk_411", "__fdelt_chk"); +__static_renaming("____fdelt_warn_413", "__fdelt_warn"); +__static_renaming("__gnu_dev_major_415", "gnu_dev_major"); +__static_renaming("__gnu_dev_major_416", "gnu_dev_major"); +__static_renaming("__gnu_dev_minor_418", "gnu_dev_minor"); +__static_renaming("__gnu_dev_makedev_421", "gnu_dev_makedev"); +__static_renaming("__blksize_t_426", "blksize_t"); +__static_renaming("__blksize_t_427", "blksize_t"); +__static_renaming("__blkcnt_t_429", "blkcnt_t"); +__static_renaming("__blkcnt_t_430", "blkcnt_t"); +__static_renaming("__fsblkcnt_t_432", "fsblkcnt_t"); +__static_renaming("__fsblkcnt_t_433", "fsblkcnt_t"); +__static_renaming("__blkcnt_t_435", "blkcnt_t"); +__static_renaming("__blkcnt_t_436", "blkcnt_t"); +__static_renaming("__fsblkcnt_t_438", "fsblkcnt_t"); +__static_renaming("__fsblkcnt_t_439", "fsblkcnt_t"); +__static_renaming("__fsfilcnt_t_441", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_442", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_444", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_445", "fsfilcnt_t"); +__static_renaming("__pthread_t_447", "pthread_t"); +__static_renaming("__pthread_attr_t_451", "pthread_attr_t"); +__static_renaming("____pthread_list_t_456", "__pthread_list_t"); +__static_renaming("____pthread_list_t_457", "__pthread_list_t"); +__static_renaming("__pthread_mutex_t_473", "pthread_mutex_t"); +__static_renaming("__pthread_mutexattr_t_478", "pthread_mutexattr_t"); +__static_renaming("__rand_479", "rand"); +__static_renaming("__srand_481", "srand"); +__static_renaming("__rand_r_483", "rand_r"); +__static_renaming("__drand48_484", "drand48"); +__static_renaming("__erand48_486", "erand48"); +__static_renaming("__lrand48_487", "lrand48"); +__static_renaming("__nrand48_489", "nrand48"); +__static_renaming("__mrand48_490", "mrand48"); +__static_renaming("__jrand48_492", "jrand48"); +__static_renaming("__srand48_494", "srand48"); +__static_renaming("__seed48_496", "seed48"); +__static_renaming("__lcong48_498", "lcong48"); +__static_renaming("__malloc_500", "malloc"); +__static_renaming("__malloc_501", "malloc"); +__static_renaming("__calloc_504", "calloc"); +__static_renaming("__calloc_505", "calloc"); +__static_renaming("__realloc_508", "realloc"); +__static_renaming("__free_510", "free"); +__static_renaming("__cfree_512", "cfree"); +__static_renaming("__alloca_514", "alloca"); +__static_renaming("__valloc_516", "valloc"); +__static_renaming("__valloc_517", "valloc"); +__static_renaming("__posix_memalign_521", "posix_memalign"); +__static_renaming("__posix_memalign_522", "posix_memalign"); +__static_renaming("__aligned_alloc_525", "aligned_alloc"); +__static_renaming("__aligned_alloc_526", "aligned_alloc"); +__static_renaming("__aligned_alloc_527", "aligned_alloc"); +__static_renaming("__aligned_alloc_528", "aligned_alloc"); +__static_renaming("__abort_529", "abort"); +__static_renaming("__atexit_531", "atexit"); +__static_renaming("__at_quick_exit_533", "at_quick_exit"); +__static_renaming("__on_exit_538", "on_exit"); +__static_renaming("__exit_540", "exit"); +__static_renaming("__exit_541", "exit"); +__static_renaming("__quick_exit_543", "quick_exit"); +__static_renaming("___Exit_545", "_Exit"); +__static_renaming("__getenv_547", "getenv"); +__static_renaming("__getenv_548", "getenv"); +__static_renaming("__putenv_550", "putenv"); +__static_renaming("__setenv_554", "setenv"); +__static_renaming("__unsetenv_556", "unsetenv"); +__static_renaming("__clearenv_557", "clearenv"); +__static_renaming("__mktemp_559", "mktemp"); +__static_renaming("__mkstemp_562", "mkstemp"); +__static_renaming("__mkstemp_563", "mkstemp"); +__static_renaming("__mkstemp_564", "mkstemp"); +__static_renaming("__mkstemp_565", "mkstemp"); +__static_renaming("__mkstemps_570", "mkstemps"); +__static_renaming("__mkstemps_571", "mkstemps"); +__static_renaming("__mkstemps_572", "mkstemps"); +__static_renaming("__mkstemps_573", "mkstemps"); +__static_renaming("__mkdtemp_575", "mkdtemp"); +__static_renaming("__mkdtemp_576", "mkdtemp"); +__static_renaming("__system_578", "system"); +__static_renaming("__system_579", "system"); +__static_renaming("__system_580", "system"); +__static_renaming("__system_581", "system"); +__static_renaming("__realpath_584", "realpath"); +__static_renaming("__realpath_585", "realpath"); +__static_renaming("____compar_fn_t_586", "__compar_fn_t"); +__static_renaming("__bsearch_594", "bsearch"); +__static_renaming("__bsearch_596", "bsearch"); +__static_renaming("____l_603", "__l"); +__static_renaming("____u_604", "__u"); +__static_renaming("____idx_605", "__idx"); +__static_renaming("____p_606", "__p"); +__static_renaming("____comparison_607", "__comparison"); +__static_renaming("__qsort_615", "qsort"); +__static_renaming("__qsort_617", "qsort"); +__static_renaming("__abs_620", "abs"); +__static_renaming("__abs_621", "abs"); +__static_renaming("__labs_623", "labs"); +__static_renaming("__labs_624", "labs"); +__static_renaming("__llabs_626", "llabs"); +__static_renaming("__llabs_627", "llabs"); +__static_renaming("__div_630", "div"); +__static_renaming("__div_631", "div"); +__static_renaming("__ldiv_634", "ldiv"); +__static_renaming("__ldiv_636", "ldiv"); +__static_renaming("__lldiv_640", "lldiv"); +__static_renaming("__lldiv_642", "lldiv"); +__static_renaming("__ecvt_648", "ecvt"); +__static_renaming("__ecvt_649", "ecvt"); +__static_renaming("__fcvt_654", "fcvt"); +__static_renaming("__fcvt_655", "fcvt"); +__static_renaming("__gcvt_659", "gcvt"); +__static_renaming("__gcvt_660", "gcvt"); +__static_renaming("__qecvt_665", "qecvt"); +__static_renaming("__qecvt_666", "qecvt"); +__static_renaming("__qfcvt_671", "qfcvt"); +__static_renaming("__qfcvt_672", "qfcvt"); +__static_renaming("__qgcvt_676", "qgcvt"); +__static_renaming("__qgcvt_677", "qgcvt"); +__static_renaming("__ecvt_r_684", "ecvt_r"); +__static_renaming("__fcvt_r_691", "fcvt_r"); +__static_renaming("__qecvt_r_698", "qecvt_r"); +__static_renaming("__qfcvt_r_705", "qfcvt_r"); +__static_renaming("__mblen_708", "mblen"); +__static_renaming("__mblen_709", "mblen"); +__static_renaming("__mbtowc_713", "mbtowc"); +__static_renaming("__wctomb_716", "wctomb"); +__static_renaming("__mbstowcs_720", "mbstowcs"); +__static_renaming("__wcstombs_724", "wcstombs"); +__static_renaming("__rpmatch_726", "rpmatch"); +__static_renaming("__rpmatch_727", "rpmatch"); +__static_renaming("__getsubopt_731", "getsubopt"); +__static_renaming("__getsubopt_732", "getsubopt"); +__static_renaming("__getloadavg_735", "getloadavg"); +__static_renaming("____realpath_chk_740", "__realpath_chk"); +__static_renaming("____realpath_alias_743", "__realpath_alias"); +__static_renaming("____realpath_chk_warn_747", "__realpath_chk_warn"); +__static_renaming("____ptsname_r_chk_755", "__ptsname_r_chk"); +__static_renaming("____ptsname_r_alias_759", "__ptsname_r_alias"); +__static_renaming("____ptsname_r_chk_warn_764", "__ptsname_r_chk_warn"); +__static_renaming("____wctomb_chk_772", "__wctomb_chk"); +__static_renaming("____wctomb_alias_775", "__wctomb_alias"); +__static_renaming("____mbstowcs_chk_782", "__mbstowcs_chk"); +__static_renaming("____mbstowcs_alias_786", "__mbstowcs_alias"); +__static_renaming("____mbstowcs_chk_warn_791", "__mbstowcs_chk_warn"); +__static_renaming("____wcstombs_chk_799", "__wcstombs_chk"); +__static_renaming("____wcstombs_alias_803", "__wcstombs_alias"); +__static_renaming("____wcstombs_chk_warn_808", "__wcstombs_chk_warn"); +__static_renaming("__vlan_dev_real_dev_812", "vlan_dev_real_dev"); +__static_renaming("__vlan_dev_real_dev_819", "vlan_dev_real_dev"); +__static_renaming("__ocrdma_inet6addr_event_823", "ocrdma_inet6addr_event"); +__static_renaming("__main_829", "main"); +__static_renaming("__main_830", "main"); + +__static_condition_renaming("__static_condition_default_74", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_81", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_229", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_248", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __u_char_defined)"); +__static_condition_renaming("__static_condition_default_251", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __u_char_defined)"); +__static_condition_renaming("__static_condition_default_254", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __u_char_defined)"); +__static_condition_renaming("__static_condition_default_257", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ino_t_defined)"); +__static_condition_renaming("__static_condition_default_260", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ino_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ino_t_defined)"); +__static_condition_renaming("__static_condition_default_263", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_266", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_269", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_272", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_275", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __nlink_t_defined)"); +__static_condition_renaming("__static_condition_default_278", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __nlink_t_defined)"); +__static_condition_renaming("__static_condition_default_281", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __nlink_t_defined)"); +__static_condition_renaming("__static_condition_default_284", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_287", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_290", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_293", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_296", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __id_t_defined)"); +__static_condition_renaming("__static_condition_default_299", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_302", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_307", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_310", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_313", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __clock_t_defined)"); +__static_condition_renaming("__static_condition_default_316", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __time_t_defined)"); +__static_condition_renaming("__static_condition_default_319", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __clockid_t_defined)"); +__static_condition_renaming("__static_condition_default_322", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __timer_t_defined)"); +__static_condition_renaming("__static_condition_default_339", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_355", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_363", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_366", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __suseconds_t_defined)"); +__static_condition_renaming("__static_condition_default_375", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_392", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_393", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_408", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_409", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_428", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blksize_t_defined)"); +__static_condition_renaming("__static_condition_default_431", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blkcnt_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blkcnt_t_defined)"); +__static_condition_renaming("__static_condition_default_434", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_437", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blkcnt_t_defined)"); +__static_condition_renaming("__static_condition_default_440", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_443", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_446", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_593", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_595", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_608", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __USE_EXTERN_INLINES) && !(defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_609", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_616", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_618", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_635", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_637", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_641", "!(defined _FORTIFY_SOURCE) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_643", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_750", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_813", "!(defined CONFIG_VLAN_8021Q)"); +__static_condition_renaming("__static_condition_default_814", "(defined NDEBUG) && !(defined CONFIG_VLAN_8021Q)"); +__static_condition_renaming("__static_condition_default_815", "!(defined NDEBUG) && !(defined _ASSERT_H_DECLS) && !(defined CONFIG_VLAN_8021Q)"); +__static_condition_renaming("__static_condition_default_816", "!(defined NDEBUG) && (defined _ASSERT_H_DECLS) && !(defined CONFIG_VLAN_8021Q)"); +__static_condition_renaming("__static_condition_default_817", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_VLAN_8021Q)"); +__static_condition_renaming("__static_condition_default_818", "!(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && !(defined CONFIG_VLAN_8021Q) || (defined _STDLIB_H) && !(defined CONFIG_VLAN_8021Q)"); +__static_condition_renaming("__static_condition_default_820", "(defined CONFIG_VLAN_8021Q)"); +__static_condition_renaming("__static_condition_default_821", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined CONFIG_VLAN_8021Q)"); +__static_condition_renaming("__static_condition_default_822", "!(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined CONFIG_VLAN_8021Q) || (defined _STDLIB_H) && (defined CONFIG_VLAN_8021Q)"); +__static_condition_renaming("__static_condition_default_824", "!(defined CONFIG_VLAN_8021Q) && (defined CONFIG_IPV6) || (defined CONFIG_VLAN_8021Q)"); +__static_condition_renaming("__static_condition_default_825", "!(defined CONFIG_VLAN_8021Q) && (defined CONFIG_IPV6)"); +__static_condition_renaming("__static_condition_default_826", "(defined CONFIG_VLAN_8021Q)"); +__static_condition_renaming("__static_condition_default_831", "!(defined CONFIG_VLAN_8021Q) && !(defined CONFIG_IPV6)"); +__static_condition_renaming("__static_condition_default_832", "!(defined CONFIG_VLAN_8021Q) && (defined CONFIG_IPV6) || (defined CONFIG_VLAN_8021Q)"); +__static_condition_renaming("__static_condition_default_833", "!(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); +if (__static_condition_default_833) { +__static_parse_error("Unable to parse"); +} }; typedef long int __ptrdiff_t_14;// L143:L324 typedef long unsigned int __size_t_15;// L177:L209 typedef int __wchar_t_16;// L243:L321 -struct ____anonymous_tag_17_18 { -int __quot_19;// L99 -int __rem_20;// L100 +enum ____anonymous_tag_20_21 { +__P_ALL_17, +__P_PID_18, +__P_PGID_19, +}; +typedef enum ____anonymous_tag_20_21 __idtype_t_22;// L50:L55 +typedef unsigned char ____u_char_23;// L30 +typedef unsigned short int ____u_short_24;// L31 +typedef unsigned int ____u_int_25;// L32 +typedef unsigned long int ____u_long_26;// L33 +typedef signed char ____int8_t_27;// L36 +typedef unsigned char ____uint8_t_28;// L37 +typedef signed short int ____int16_t_29;// L38 +typedef unsigned short int ____uint16_t_30;// L39 +typedef signed int ____int32_t_31;// L40 +typedef unsigned int ____uint32_t_32;// L41 +typedef signed long int ____int64_t_33;// L43 +typedef unsigned long int ____uint64_t_34;// L44 +typedef long int ____quad_t_35;// L52 +typedef unsigned long int ____u_quad_t_36;// L53 +typedef unsigned long int ____dev_t_37;// L109:L124 +typedef unsigned int ____uid_t_38;// L92:L125 +typedef unsigned int ____gid_t_39;// L92:L126 +typedef unsigned long int ____ino_t_40;// L94:L127 +typedef unsigned long int ____ino64_t_41;// L109:L128 +typedef unsigned int ____mode_t_42;// L92:L129 +typedef unsigned long int ____nlink_t_43;// L94:L130 +typedef long int ____off_t_44;// L93:L131 +typedef long int ____off64_t_45;// L108:L132 +typedef int ____pid_t_46;// L91:L133 +struct ____anonymous_tag_47_48 { +int ____val_49[2];// L72 +}; +typedef struct ____anonymous_tag_47_48 ____fsid_t_50;// L72:L134 +typedef long int ____clock_t_51;// L93:L135 +typedef unsigned long int ____rlim_t_52;// L94:L136 +typedef unsigned long int ____rlim64_t_53;// L109:L137 +typedef unsigned int ____id_t_54;// L92:L138 +typedef long int ____time_t_55;// L93:L139 +typedef unsigned int ____useconds_t_56;// L92:L140 +typedef long int ____suseconds_t_57;// L93:L141 +typedef int ____daddr_t_58;// L91:L143 +typedef int ____key_t_59;// L91:L144 +typedef int ____clockid_t_60;// L91:L147 +typedef void * (____timer_t_61);// L70:L150 +typedef long int ____blksize_t_62;// L93:L153 +typedef long int ____blkcnt_t_63;// L93:L158 +typedef long int ____blkcnt64_t_64;// L108:L159 +typedef unsigned long int ____fsblkcnt_t_65;// L94:L162 +typedef unsigned long int ____fsblkcnt64_t_66;// L109:L163 +typedef unsigned long int ____fsfilcnt_t_67;// L94:L166 +typedef unsigned long int ____fsfilcnt64_t_68;// L109:L167 +typedef long int ____fsword_t_69;// L93:L170 +typedef long int ____ssize_t_70;// L110:L172 +typedef long int ____syscall_slong_t_71;// L93:L175 +typedef unsigned long int ____syscall_ulong_t_72;// L94:L177 +typedef ____off64_t_45 ____loff_t_73;// L181 +typedef ____quad_t_35 * (____qaddr_t_75);// L182 +typedef char * (____caddr_t_76);// L183 +typedef long int ____intptr_t_77;// L110:L186 +typedef unsigned int ____socklen_t_78;// L92:L189 +struct ____anonymous_tag_84_85 { +unsigned int ____w_termsig_86 : 7;// L72 +unsigned int ____w_coredump_87 : 1;// L73 +unsigned int ____w_retcode_88 : 8;// L74 +unsigned int __anon_id_0_89 : 16;// L75 +}; +struct ____anonymous_tag_90_91 { +unsigned int ____w_stopval_92 : 8;// L87 +unsigned int ____w_stopsig_93 : 8;// L88 +unsigned int __anon_id_1_94 : 16;// L89 +}; +union __wait_95 { +int __w_status_96;// L68 +struct ____anonymous_tag_84_85 ____wait_terminated_97;// L69 +struct ____anonymous_tag_90_91 ____wait_stopped_98;// L84 +}; +union ____anonymous_tag_99_100 { +union __wait_95 * (____uptr_101);// L69 +int * (____iptr_102);// L70 +}; +typedef union ____anonymous_tag_99_100 ____WAIT_STATUS_103;// L67:L71 +struct ____anonymous_tag_104_105 { +int __quot_106;// L99 +int __rem_107;// L100 +}; +typedef struct ____anonymous_tag_104_105 __div_t_108;// L97:L101 +struct ____anonymous_tag_109_110 { +long int __quot_111;// L107 +long int __rem_112;// L108 +}; +typedef struct ____anonymous_tag_109_110 __ldiv_t_113;// L105:L109 +struct ____anonymous_tag_114_115 { +long long int __quot_116;// L119 +long long int __rem_117;// L120 +}; +typedef struct ____anonymous_tag_114_115 __lldiv_t_118;// L117:L121 +typedef unsigned char ____u_char_178;// L30 +typedef unsigned short int ____u_short_179;// L31 +typedef unsigned int ____u_int_180;// L32 +typedef unsigned long int ____u_long_181;// L33 +typedef signed char ____int8_t_182;// L36 +typedef unsigned char ____uint8_t_183;// L37 +typedef signed short int ____int16_t_184;// L38 +typedef unsigned short int ____uint16_t_185;// L39 +typedef signed int ____int32_t_186;// L40 +typedef unsigned int ____uint32_t_187;// L41 +typedef signed long int ____int64_t_188;// L43 +typedef unsigned long int ____uint64_t_189;// L44 +typedef long int ____quad_t_190;// L52 +typedef unsigned long int ____u_quad_t_191;// L53 +typedef unsigned long int ____dev_t_192;// L109:L124 +typedef unsigned int ____uid_t_193;// L92:L125 +typedef unsigned int ____gid_t_194;// L92:L126 +typedef unsigned long int ____ino_t_195;// L94:L127 +typedef unsigned long int ____ino64_t_196;// L109:L128 +typedef unsigned int ____mode_t_197;// L92:L129 +typedef unsigned long int ____nlink_t_198;// L94:L130 +typedef long int ____off_t_199;// L93:L131 +typedef long int ____off64_t_200;// L108:L132 +typedef int ____pid_t_201;// L91:L133 +struct ____anonymous_tag_202_203 { +int ____val_204[2];// L72 +}; +typedef struct ____anonymous_tag_202_203 ____fsid_t_205;// L72:L134 +typedef long int ____clock_t_206;// L93:L135 +typedef unsigned long int ____rlim_t_207;// L94:L136 +typedef unsigned long int ____rlim64_t_208;// L109:L137 +typedef unsigned int ____id_t_209;// L92:L138 +typedef long int ____time_t_210;// L93:L139 +typedef unsigned int ____useconds_t_211;// L92:L140 +typedef long int ____suseconds_t_212;// L93:L141 +typedef int ____daddr_t_213;// L91:L143 +typedef int ____key_t_214;// L91:L144 +typedef int ____clockid_t_215;// L91:L147 +typedef void * (____timer_t_216);// L70:L150 +typedef long int ____blksize_t_217;// L93:L153 +typedef long int ____blkcnt_t_218;// L93:L158 +typedef long int ____blkcnt64_t_219;// L108:L159 +typedef unsigned long int ____fsblkcnt_t_220;// L94:L162 +typedef unsigned long int ____fsblkcnt64_t_221;// L109:L163 +typedef unsigned long int ____fsfilcnt_t_222;// L94:L166 +typedef unsigned long int ____fsfilcnt64_t_223;// L109:L167 +typedef long int ____fsword_t_224;// L93:L170 +typedef long int ____ssize_t_225;// L110:L172 +typedef long int ____syscall_slong_t_226;// L93:L175 +typedef unsigned long int ____syscall_ulong_t_227;// L94:L177 +typedef ____off64_t_200 ____loff_t_228;// L181 +typedef ____quad_t_190 * (____qaddr_t_230);// L182 +typedef char * (____caddr_t_231);// L183 +typedef long int ____intptr_t_232;// L110:L186 +typedef unsigned int ____socklen_t_233;// L92:L189 +typedef ____u_char_23 __u_char_234;// L33 +typedef ____u_char_178 __u_char_235;// L33 +typedef ____u_short_24 __u_short_236;// L34 +typedef ____u_short_179 __u_short_237;// L34 +typedef ____u_int_25 __u_int_238;// L35 +typedef ____u_int_180 __u_int_239;// L35 +typedef ____u_long_26 __u_long_240;// L36 +typedef ____u_long_181 __u_long_241;// L36 +typedef ____quad_t_35 __quad_t_242;// L37 +typedef ____quad_t_190 __quad_t_243;// L37 +typedef ____u_quad_t_36 __u_quad_t_244;// L38 +typedef ____u_quad_t_191 __u_quad_t_245;// L38 +typedef ____fsid_t_50 __fsid_t_246;// L39 +typedef ____fsid_t_205 __fsid_t_247;// L39 +typedef ____loff_t_73 __loff_t_249;// L44 +typedef ____loff_t_228 __loff_t_250;// L44 +typedef ____loff_t_73 __loff_t_252;// L44 +typedef ____loff_t_228 __loff_t_253;// L44 +typedef ____ino64_t_41 __ino_t_255;// L50 +typedef ____ino64_t_196 __ino_t_256;// L50 +typedef ____ino_t_40 __ino_t_258;// L48 +typedef ____ino_t_195 __ino_t_259;// L48 +typedef ____dev_t_37 __dev_t_261;// L60 +typedef ____dev_t_192 __dev_t_262;// L60 +typedef ____gid_t_39 __gid_t_264;// L65 +typedef ____gid_t_194 __gid_t_265;// L65 +typedef ____gid_t_39 __gid_t_267;// L65 +typedef ____gid_t_194 __gid_t_268;// L65 +typedef ____mode_t_42 __mode_t_270;// L70 +typedef ____mode_t_197 __mode_t_271;// L70 +typedef ____nlink_t_43 __nlink_t_273;// L75 +typedef ____nlink_t_198 __nlink_t_274;// L75 +typedef ____uid_t_38 __uid_t_276;// L80 +typedef ____uid_t_193 __uid_t_277;// L80 +typedef ____uid_t_38 __uid_t_279;// L80 +typedef ____uid_t_193 __uid_t_280;// L80 +typedef ____off64_t_45 __off_t_282;// L88 +typedef ____off64_t_200 __off_t_283;// L88 +typedef ____off_t_44 __off_t_285;// L86 +typedef ____off_t_199 __off_t_286;// L86 +typedef ____pid_t_46 __pid_t_288;// L98 +typedef ____pid_t_201 __pid_t_289;// L98 +typedef ____pid_t_46 __pid_t_291;// L98 +typedef ____pid_t_201 __pid_t_292;// L98 +typedef ____id_t_54 __id_t_294;// L104 +typedef ____id_t_209 __id_t_295;// L104 +typedef ____ssize_t_70 __ssize_t_297;// L109 +typedef ____ssize_t_225 __ssize_t_298;// L109 +typedef ____daddr_t_58 __daddr_t_300;// L115 +typedef ____daddr_t_213 __daddr_t_301;// L115 +typedef ____caddr_t_76 __caddr_t_303;// L116 +typedef ____caddr_t_231 __caddr_t_304;// L116 +typedef ____key_t_59 __key_t_305;// L122 +typedef ____key_t_214 __key_t_306;// L122 +typedef ____key_t_59 __key_t_308;// L122 +typedef ____key_t_214 __key_t_309;// L122 +typedef ____clock_t_51 __clock_t_311;// L59 +typedef ____clock_t_206 __clock_t_312;// L59 +typedef ____time_t_55 __time_t_314;// L75 +typedef ____time_t_210 __time_t_315;// L75 +typedef ____clockid_t_60 __clockid_t_317;// L91 +typedef ____clockid_t_215 __clockid_t_318;// L91 +typedef ____timer_t_61 __timer_t_320;// L103 +typedef ____timer_t_216 __timer_t_321;// L103 +typedef unsigned long int __ulong_323;// L150 +typedef unsigned long int __ulong_324;// L150 +typedef unsigned long int __ulong_325;// L150 +typedef unsigned short int __ushort_326;// L151 +typedef unsigned int __uint_327;// L152 +typedef int __int8_t_328;// L188:L194 +typedef int __int16_t_329;// L188:L195 +typedef int __int32_t_330;// L188:L196 +typedef int __int64_t_331;// L188:L197 +typedef unsigned int __u_int8_t_332;// L190:L200 +typedef unsigned int __u_int16_t_333;// L190:L201 +typedef unsigned int __u_int32_t_334;// L190:L202 +typedef unsigned int __u_int64_t_335;// L190:L203 +typedef int __register_t_336;// L205 +typedef int ____sig_atomic_t_342;// L22 +struct ____anonymous_tag_343_344 { +unsigned long int ____val_345[( 1024 / ( 8 * sizeof(unsigned long) ) )];// L29 +}; +typedef struct ____anonymous_tag_343_344 ____sigset_t_346;// L27:L30 +typedef ____sigset_t_346 __sigset_t_347;// L37 +struct __timespec_348 { +____time_t_55 __tv_sec_349;// L0 +____time_t_210 __tv_sec_350;// L0 +____syscall_slong_t_71 __tv_nsec_352;// L0 +____syscall_slong_t_226 __tv_nsec_353;// L0 +}; +struct __timeval_356 { +____time_t_55 __tv_sec_357;// L0 +____time_t_210 __tv_sec_358;// L0 +____suseconds_t_57 __tv_usec_360;// L0 +____suseconds_t_212 __tv_usec_361;// L0 +}; +typedef ____suseconds_t_57 __suseconds_t_364;// L48 +typedef ____suseconds_t_212 __suseconds_t_365;// L48 +typedef long int ____fd_mask_367;// L54 +typedef long int ____fd_mask_368;// L54 +struct ____anonymous_tag_369_370 { +____fd_mask_367 ____fds_bits_371[1024 / ( 8 * ( int ) sizeof(long) )];// L0 +____fd_mask_368 ____fds_bits_373[1024 / ( 8 * ( int ) sizeof(long) )];// L0 }; -typedef struct ____anonymous_tag_17_18 __div_t_21;// L97:L101 -struct ____anonymous_tag_22_23 { -long int __quot_24;// L107 -long int __rem_25;// L108 +typedef struct ____anonymous_tag_369_370 __fd_set_376;// L64:L75 +typedef ____fd_mask_367 __fd_mask_377;// L82 +typedef ____fd_mask_368 __fd_mask_378;// L82 +typedef ____blksize_t_62 __blksize_t_426;// L228 +typedef ____blksize_t_217 __blksize_t_427;// L228 +typedef ____blkcnt_t_63 __blkcnt_t_429;// L235 +typedef ____blkcnt_t_218 __blkcnt_t_430;// L235 +typedef ____fsblkcnt_t_65 __fsblkcnt_t_432;// L239 +typedef ____fsblkcnt_t_220 __fsblkcnt_t_433;// L239 +typedef ____blkcnt64_t_64 __blkcnt_t_435;// L248 +typedef ____blkcnt64_t_219 __blkcnt_t_436;// L248 +typedef ____fsblkcnt64_t_66 __fsblkcnt_t_438;// L252 +typedef ____fsblkcnt64_t_221 __fsblkcnt_t_439;// L252 +typedef ____fsfilcnt_t_67 __fsfilcnt_t_441;// L243 +typedef ____fsfilcnt_t_222 __fsfilcnt_t_442;// L243 +typedef ____fsfilcnt64_t_68 __fsfilcnt_t_444;// L256 +typedef ____fsfilcnt64_t_223 __fsfilcnt_t_445;// L256 +typedef unsigned long int __pthread_t_447;// L60 +union __pthread_attr_t_448 { +char ____size_449[56];// L65 +long int ____align_450;// L66 +}; +typedef union __pthread_attr_t_448 __pthread_attr_t_451;// L69 +struct ____pthread_internal_list_453 { +struct __forward_tag_reference_452 * (____prev_454);// L0 +struct __forward_tag_reference_452 * (____next_455);// L0 +}; +typedef struct ____pthread_internal_list_453 ____pthread_list_t_456;// L75:L79 +typedef struct ____pthread_internal_list_453 ____pthread_list_t_457;// L75:L79 +struct ____pthread_mutex_s_458 { +int ____lock_459;// L94 +unsigned int ____count_460;// L95 +int ____owner_461;// L96 +unsigned int ____nusers_462;// L98 +int ____kind_463;// L102 +short ____spins_464;// L104 +short ____elision_465;// L105 +____pthread_list_t_456 ____list_466;// L0 +____pthread_list_t_457 ____list_467;// L0 +}; +union ____anonymous_tag_468_469 { +struct ____pthread_mutex_s_458 ____data_470;// L92 +char ____size_471[40];// L126 +long int ____align_472;// L127 +}; +typedef union ____anonymous_tag_468_469 __pthread_mutex_t_473;// L90:L128 +union ____anonymous_tag_474_475 { +char ____size_476[4];// L132 +int ____align_477;// L133 +}; +typedef union ____anonymous_tag_474_475 __pthread_mutexattr_t_478;// L130:L134 +typedef int (* (____compar_fn_t_586)) (const void *, const void *);// L741 + +struct __forward_tag_reference_452 { // generated union of struct variations +union { }; -typedef struct ____anonymous_tag_22_23 __ldiv_t_26;// L105:L109 -struct ____anonymous_tag_27_28 { -long long int __quot_29;// L119 -long long int __rem_30;// L120 }; -typedef struct ____anonymous_tag_27_28 __lldiv_t_31;// L117:L121 -typedef int (* (____compar_fn_t_114)) (const void *, const void *);// L741 extern void (____assert_fail_4) (const char * (____assertion_0), const char * (____file_1), unsigned int ____line_2, const char * (____function_3));// L69:L71 extern void (____assert_perror_fail_9) (int ____errnum_5, const char * (____file_6), unsigned int ____line_7, const char * (____function_8));// L74:L76 @@ -178,148 +870,521 @@ extern void (____assert_13) (const char * (____assertion_10), const char * (_ // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern __size_t_15 (____ctype_get_mb_cur_max_32) (void );// L139 -extern __size_t_15 (____ctype_get_mb_cur_max_33) (void );// L139 -extern __size_t_15 (____ctype_get_mb_cur_max_34) (void );// L139 -extern __size_t_15 (____ctype_get_mb_cur_max_35) (void );// L139 -extern double (__atof_37) (const char * (____nptr_36));// L144:L145 -extern double (__atof_38) (const char * (____nptr_36));// L144:L145 -extern int (__atoi_40) (const char * (____nptr_39));// L147:L148 -extern int (__atoi_41) (const char * (____nptr_39));// L147:L148 -extern long int (__atol_43) (const char * (____nptr_42));// L150:L151 -extern long int (__atol_44) (const char * (____nptr_42));// L150:L151 -extern long long int (__atoll_46) (const char * (____nptr_45));// L157:L158 -extern long long int (__atoll_47) (const char * (____nptr_45));// L157:L158 -extern double (__strtod_50) (const char * __restrict ____nptr_48, char * (* __restrict ____endptr_49));// L164:L166 -extern float (__strtof_53) (const char * __restrict ____nptr_51, char * (* __restrict ____endptr_52));// L172:L173 -extern long double (__strtold_56) (const char * __restrict ____nptr_54, char * (* __restrict ____endptr_55));// L175:L177 -extern long int (__strtol_60) (const char * __restrict ____nptr_57, char * (* __restrict ____endptr_58), int ____base_59);// L183:L185 -extern unsigned long int (__strtoul_64) (const char * __restrict ____nptr_61, char * (* __restrict ____endptr_62), int ____base_63);// L187:L189 -extern long long int (__strtoll_68) (const char * __restrict ____nptr_65, char * (* __restrict ____endptr_66), int ____base_67);// L209:L211 -extern unsigned long long int (__strtoull_72) (const char * __restrict ____nptr_69, char * (* __restrict ____endptr_70), int ____base_71);// L214:L216 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +static __inline unsigned int (____bswap_32_80) (unsigned int ____bsx_79) { + +if (__static_condition_default_81) { + +{ +{ + + + +__static_type_error("invalid type found in return expression"); +} +} + + +} +} +static __inline ____uint64_t_34 (____bswap_64_83) (____uint64_t_34 ____bsx_82) { + +if (__static_condition_default_81) { + +{ +{ + + + +__static_type_error("invalid type found in return expression"); +} +} + + +} +} +union __wait_95 ;// L66 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern __size_t_15 (____ctype_get_mb_cur_max_119) (void );// L139 +extern __size_t_15 (____ctype_get_mb_cur_max_120) (void );// L139 +extern __size_t_15 (____ctype_get_mb_cur_max_121) (void );// L139 +extern __size_t_15 (____ctype_get_mb_cur_max_122) (void );// L139 +extern double (__atof_124) (const char * (____nptr_123));// L144:L145 +extern double (__atof_125) (const char * (____nptr_123));// L144:L145 +extern int (__atoi_127) (const char * (____nptr_126));// L147:L148 +extern int (__atoi_128) (const char * (____nptr_126));// L147:L148 +extern long int (__atol_130) (const char * (____nptr_129));// L150:L151 +extern long int (__atol_131) (const char * (____nptr_129));// L150:L151 +extern long long int (__atoll_133) (const char * (____nptr_132));// L157:L158 +extern long long int (__atoll_134) (const char * (____nptr_132));// L157:L158 +extern double (__strtod_137) (const char * __restrict ____nptr_135, char * (* __restrict ____endptr_136));// L164:L166 +extern float (__strtof_140) (const char * __restrict ____nptr_138, char * (* __restrict ____endptr_139));// L172:L173 +extern long double (__strtold_143) (const char * __restrict ____nptr_141, char * (* __restrict ____endptr_142));// L175:L177 +extern long int (__strtol_147) (const char * __restrict ____nptr_144, char * (* __restrict ____endptr_145), int ____base_146);// L183:L185 +extern unsigned long int (__strtoul_151) (const char * __restrict ____nptr_148, char * (* __restrict ____endptr_149), int ____base_150);// L187:L189 +extern long long int (__strtoq_155) (const char * __restrict ____nptr_152, char * (* __restrict ____endptr_153), int ____base_154);// L195:L197 +extern unsigned long long int (__strtouq_159) (const char * __restrict ____nptr_156, char * (* __restrict ____endptr_157), int ____base_158);// L200:L202 +extern long long int (__strtoll_163) (const char * __restrict ____nptr_160, char * (* __restrict ____endptr_161), int ____base_162);// L209:L211 +extern long long int (__strtoll_164) (const char * __restrict ____nptr_160, char * (* __restrict ____endptr_161), int ____base_162);// L209:L211 +extern unsigned long long int (__strtoull_168) (const char * __restrict ____nptr_165, char * (* __restrict ____endptr_166), int ____base_167);// L214:L216 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ __extension__/* no function due to type errors in the function prototype */ -extern int (__rand_76) (void );// L374 -extern int (__rand_77) (void );// L374 -extern void (__srand_79) (unsigned int ____seed_78);// L376 -extern void * ((__malloc_81) (__size_t_15 ____size_80));// L466 -extern void * ((__malloc_82) (__size_t_15 ____size_80));// L466 -extern void * ((__calloc_85) (__size_t_15 ____nmemb_83, __size_t_15 ____size_84));// L468:L469 -extern void * ((__calloc_86) (__size_t_15 ____nmemb_83, __size_t_15 ____size_84));// L468:L469 -extern void * ((__realloc_89) (void * (____ptr_87), __size_t_15 ____size_88));// L480:L481 -extern void * ((__realloc_90) (void * (____ptr_87), __size_t_15 ____size_88));// L480:L481 -extern void (__free_92) (void * (____ptr_91));// L483 -extern void * ((__aligned_alloc_95) (__size_t_15 ____alignment_93, __size_t_15 ____size_94));// L509:L510 -extern void * ((__aligned_alloc_96) (__size_t_15 ____alignment_93, __size_t_15 ____size_94));// L509:L510 -extern void (__abort_97) (void );// L515 -extern int (__atexit_99) (void (* (____func_98)) (void ));// L519 -extern int (__at_quick_exit_101) (void (* (____func_100)) (void ));// L527 -extern void (__exit_103) (int ____status_102);// L543 -extern void (__quick_exit_105) (int ____status_104);// L549 -extern void (___Exit_107) (int ____status_106);// L557 -extern char * ((__getenv_109) (const char * (____name_108)));// L564 -extern char * ((__getenv_110) (const char * (____name_108)));// L564 -extern int (__system_112) (const char * (____command_111));// L716 -extern int (__system_113) (const char * (____command_111));// L716 -// typedef moved to top of scope -extern void * ((__bsearch_122) (const void * (____key_115), const void * (____base_116), __size_t_15 ____nmemb_117, __size_t_15 ____size_118, ____compar_fn_t_114 ____compar_119));// L754:L756 -extern void * ((__bsearch_124) (const void * (____key_115), const void * (____base_116), __size_t_15 ____nmemb_117, __size_t_15 ____size_118, ____compar_fn_t_114 ____compar_119));// L754:L756 +extern char * ((__l64a_173) (long int ____n_172));// L305 +extern char * ((__l64a_174) (long int ____n_172));// L305 +extern long int (__a64l_176) (const char * (____s_175));// L308:L309 +extern long int (__a64l_177) (const char * (____s_175));// L308:L309 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +static __inline unsigned int (____bswap_32_338) (unsigned int ____bsx_337) { + +if (__static_condition_default_339) { + +{ +{ + + + +__static_type_error("invalid type found in return expression"); +} +} + + +} +} +static __inline ____uint64_t_189 (____bswap_64_341) (____uint64_t_189 ____bsx_340) { + +if (__static_condition_default_339) { + +{ +{ + + + +__static_type_error("invalid type found in return expression"); +} +} + + +} +} +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +struct __timespec_348 ;// L120 + +struct __timeval_356 ;// L30 + +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern int (__select_390) (int ____nfds_379, __fd_set_376 * __restrict ____readfds_380, __fd_set_376 * __restrict ____writefds_382, __fd_set_376 * __restrict ____exceptfds_384, struct __timeval_356 * __restrict ____timeout_387);// L106:L109 +extern int (__select_391) (int ____nfds_379, __fd_set_376 * __restrict ____readfds_380, __fd_set_376 * __restrict ____writefds_382, __fd_set_376 * __restrict ____exceptfds_384, struct __forward_tag_reference_386 * __restrict ____timeout_389);// L106:L109 +extern int (__pselect_406) (int ____nfds_394, __fd_set_376 * __restrict ____readfds_395, __fd_set_376 * __restrict ____writefds_397, __fd_set_376 * __restrict ____exceptfds_399, const struct __timespec_348 * __restrict ____timeout_402, const ____sigset_t_346 * __restrict ____sigmask_405);// L118:L122 +extern int (__pselect_407) (int ____nfds_394, __fd_set_376 * __restrict ____readfds_395, __fd_set_376 * __restrict ____writefds_397, __fd_set_376 * __restrict ____exceptfds_399, const struct __forward_tag_reference_401 * __restrict ____timeout_404, const ____sigset_t_346 * __restrict ____sigmask_405);// L118:L122 +extern long int (____fdelt_chk_411) (long int ____d_410);// L24 +extern long int (____fdelt_warn_413) (long int ____d_412);// L25:L26 +extern unsigned int (__gnu_dev_major_415) (unsigned long long int ____dev_414);// L27:L28 +extern unsigned int (__gnu_dev_major_416) (unsigned long long int ____dev_414);// L27:L28 +extern unsigned int (__gnu_dev_minor_418) (unsigned long long int ____dev_417);// L30:L31 +extern unsigned long long int (__gnu_dev_makedev_421) (unsigned int ____major_419, unsigned int ____minor_420);// L33:L35 +__extension__/* no function due to type errors in the function prototype */ +__extension__/* no function due to type errors in the function prototype */ +__extension__/* no function due to type errors in the function prototype */ +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +union __pthread_attr_t_448 ;// L63 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern int (__rand_479) (void );// L374 +extern void (__srand_481) (unsigned int ____seed_480);// L376 +extern int (__rand_r_483) (unsigned int * (____seed_482));// L381 +extern double (__drand48_484) (void );// L389 +extern double (__erand48_486) (unsigned short int ____xsubi_485[3]);// L390 +extern long int (__lrand48_487) (void );// L393 +extern long int (__nrand48_489) (unsigned short int ____xsubi_488[3]);// L394:L395 +extern long int (__mrand48_490) (void );// L398 +extern long int (__jrand48_492) (unsigned short int ____xsubi_491[3]);// L399:L400 +extern void (__srand48_494) (long int ____seedval_493);// L403 +extern unsigned short int * ((__seed48_496) (unsigned short int ____seed16v_495[3]));// L404:L405 +extern void (__lcong48_498) (unsigned short int ____param_497[7]);// L406 +extern void * ((__malloc_500) (__size_t_15 ____size_499));// L466 +extern void * ((__malloc_501) (__size_t_15 ____size_499));// L466 +extern void * ((__calloc_504) (__size_t_15 ____nmemb_502, __size_t_15 ____size_503));// L468:L469 +extern void * ((__calloc_505) (__size_t_15 ____nmemb_502, __size_t_15 ____size_503));// L468:L469 +extern void * ((__realloc_508) (void * (____ptr_506), __size_t_15 ____size_507));// L480:L481 +extern void (__free_510) (void * (____ptr_509));// L483 +extern void (__cfree_512) (void * (____ptr_511));// L488 +extern void * ((__alloca_514) (__size_t_15 ____size_513));// L32 +extern void * ((__valloc_516) (__size_t_15 ____size_515));// L498 +extern void * ((__valloc_517) (__size_t_15 ____size_515));// L498 +extern int (__posix_memalign_521) (void * (* (____memptr_518)), __size_t_15 ____alignment_519, __size_t_15 ____size_520);// L503:L504 +extern int (__posix_memalign_522) (void * (* (____memptr_518)), __size_t_15 ____alignment_519, __size_t_15 ____size_520);// L503:L504 +extern void * ((__aligned_alloc_525) (__size_t_15 ____alignment_523, __size_t_15 ____size_524));// L509:L510 +extern void * ((__aligned_alloc_526) (__size_t_15 ____alignment_523, __size_t_15 ____size_524));// L509:L510 +extern void * ((__aligned_alloc_527) (__size_t_15 ____alignment_523, __size_t_15 ____size_524));// L509:L510 +extern void * ((__aligned_alloc_528) (__size_t_15 ____alignment_523, __size_t_15 ____size_524));// L509:L510 +extern void (__abort_529) (void );// L515 +extern int (__atexit_531) (void (* (____func_530)) (void ));// L519 +extern int (__at_quick_exit_533) (void (* (____func_532)) (void ));// L527 +extern int (__on_exit_538) (void (* (____func_536)) (int ____status_534, void * (____arg_535)), void * (____arg_537));// L535:L536 +extern void (__exit_540) (int ____status_539);// L543 +extern void (__exit_541) (int ____status_539);// L543 +extern void (__quick_exit_543) (int ____status_542);// L549 +extern void (___Exit_545) (int ____status_544);// L557 +extern char * ((__getenv_547) (const char * (____name_546)));// L564 +extern char * ((__getenv_548) (const char * (____name_546)));// L564 +extern int (__putenv_550) (char * (____string_549));// L578 +extern int (__setenv_554) (const char * (____name_551), const char * (____value_552), int ____replace_553);// L584:L585 +extern int (__unsetenv_556) (const char * (____name_555));// L588 +extern int (__clearenv_557) (void );// L595 +extern char * ((__mktemp_559) (char * (____template_558)));// L606 +extern int (__mkstemp_562) (char * (____template_560));// L619 +extern int (__mkstemp_564) (char * (____template_560));// L619 +extern int (__mkstemp_563) (char * (____template_561));// L622:L623 +extern int (__mkstemp_565) (char * (____template_561));// L622:L623 +extern int (__mkstemps_570) (char * (____template_566), int ____suffixlen_567);// L641 +extern int (__mkstemps_571) (char * (____template_568), int ____suffixlen_569);// L644:L645 +extern int (__mkstemps_572) (char * (____template_566), int ____suffixlen_567);// L641 +extern int (__mkstemps_573) (char * (____template_568), int ____suffixlen_569);// L644:L645 +extern char * ((__mkdtemp_575) (char * (____template_574)));// L662 +extern char * ((__mkdtemp_576) (char * (____template_574)));// L662 +extern int (__system_578) (const char * (____command_577));// L716 +extern int (__system_579) (const char * (____command_577));// L716 +extern int (__system_580) (const char * (____command_577));// L716 +extern int (__system_581) (const char * (____command_577));// L716 +extern char * ((__realpath_584) (const char * __restrict ____name_582, char * __restrict ____resolved_583));// L733:L734 +extern char * ((__realpath_585) (const char * __restrict ____name_582, char * __restrict ____resolved_583));// L733:L734 +// typedef moved to top of scope +extern void * ((__bsearch_594) (const void * (____key_587), const void * (____base_588), __size_t_15 ____nmemb_589, __size_t_15 ____size_590, ____compar_fn_t_586 ____compar_591));// L754:L756 +extern void * ((__bsearch_596) (const void * (____key_587), const void * (____base_588), __size_t_15 ____nmemb_589, __size_t_15 ____size_590, ____compar_fn_t_586 ____compar_591));// L754:L756 /* no function due to type errors in the function prototype */ -extern void (__qsort_143) (void * (____base_138), __size_t_15 ____nmemb_139, __size_t_15 ____size_140, ____compar_fn_t_114 ____compar_141);// L764:L765 -extern void (__qsort_145) (void * (____base_138), __size_t_15 ____nmemb_139, __size_t_15 ____size_140, ____compar_fn_t_114 ____compar_141);// L764:L765 -extern int (__abs_148) (int ____x_147);// L774 -extern int (__abs_149) (int ____x_147);// L774 -extern long int (__labs_151) (long int ____x_150);// L775 -extern long int (__labs_152) (long int ____x_150);// L775 -extern long long int (__llabs_154) (long long int ____x_153);// L779:L780 -extern long long int (__llabs_155) (long long int ____x_153);// L779:L780 -extern __div_t_21 (__div_158) (int ____numer_156, int ____denom_157);// L788:L789 -extern __div_t_21 (__div_159) (int ____numer_156, int ____denom_157);// L788:L789 -extern __ldiv_t_26 (__ldiv_162) (long int ____numer_160, long int ____denom_161);// L790:L791 -extern __ldiv_t_26 (__ldiv_164) (long int ____numer_160, long int ____denom_161);// L790:L791 -extern __lldiv_t_31 (__lldiv_168) (long long int ____numer_166, long long int ____denom_167);// L796:L798 -extern __lldiv_t_31 (__lldiv_170) (long long int ____numer_166, long long int ____denom_167);// L796:L798 -extern int (__mblen_174) (const char * (____s_172), __size_t_15 ____n_173);// L862 -extern int (__mbtowc_178) (__wchar_t_16 * __restrict ____pwc_175, const char * __restrict ____s_176, __size_t_15 ____n_177);// L865:L866 -extern int (__wctomb_181) (char * (____s_179), __wchar_t_16 ____wchar_180);// L869 -extern __size_t_15 (__mbstowcs_185) (__wchar_t_16 * __restrict ____pwcs_182, const char * __restrict ____s_183, __size_t_15 ____n_184);// L873:L874 -extern __size_t_15 (__wcstombs_189) (char * __restrict ____s_186, const __wchar_t_16 * __restrict ____pwcs_187, __size_t_15 ____n_188);// L876:L878 +extern void (__qsort_615) (void * (____base_610), __size_t_15 ____nmemb_611, __size_t_15 ____size_612, ____compar_fn_t_586 ____compar_613);// L764:L765 +extern void (__qsort_617) (void * (____base_610), __size_t_15 ____nmemb_611, __size_t_15 ____size_612, ____compar_fn_t_586 ____compar_613);// L764:L765 +extern int (__abs_620) (int ____x_619);// L774 +extern int (__abs_621) (int ____x_619);// L774 +extern long int (__labs_623) (long int ____x_622);// L775 +extern long int (__labs_624) (long int ____x_622);// L775 +extern long long int (__llabs_626) (long long int ____x_625);// L779:L780 +extern long long int (__llabs_627) (long long int ____x_625);// L779:L780 +extern __div_t_108 (__div_630) (int ____numer_628, int ____denom_629);// L788:L789 +extern __div_t_108 (__div_631) (int ____numer_628, int ____denom_629);// L788:L789 +extern __ldiv_t_113 (__ldiv_634) (long int ____numer_632, long int ____denom_633);// L790:L791 +extern __ldiv_t_113 (__ldiv_636) (long int ____numer_632, long int ____denom_633);// L790:L791 +extern __lldiv_t_118 (__lldiv_640) (long long int ____numer_638, long long int ____denom_639);// L796:L798 +extern __lldiv_t_118 (__lldiv_642) (long long int ____numer_638, long long int ____denom_639);// L796:L798 +extern char * ((__ecvt_648) (double ____value_644, int ____ndigit_645, int * __restrict ____decpt_646, int * __restrict ____sign_647));// L811:L812 +extern char * ((__ecvt_649) (double ____value_644, int ____ndigit_645, int * __restrict ____decpt_646, int * __restrict ____sign_647));// L811:L812 +extern char * ((__fcvt_654) (double ____value_650, int ____ndigit_651, int * __restrict ____decpt_652, int * __restrict ____sign_653));// L817:L818 +extern char * ((__fcvt_655) (double ____value_650, int ____ndigit_651, int * __restrict ____decpt_652, int * __restrict ____sign_653));// L817:L818 +extern char * ((__gcvt_659) (double ____value_656, int ____ndigit_657, char * (____buf_658)));// L823:L824 +extern char * ((__gcvt_660) (double ____value_656, int ____ndigit_657, char * (____buf_658)));// L823:L824 +extern char * ((__qecvt_665) (long double ____value_661, int ____ndigit_662, int * __restrict ____decpt_663, int * __restrict ____sign_664));// L829:L831 +extern char * ((__qecvt_666) (long double ____value_661, int ____ndigit_662, int * __restrict ____decpt_663, int * __restrict ____sign_664));// L829:L831 +extern char * ((__qfcvt_671) (long double ____value_667, int ____ndigit_668, int * __restrict ____decpt_669, int * __restrict ____sign_670));// L832:L834 +extern char * ((__qfcvt_672) (long double ____value_667, int ____ndigit_668, int * __restrict ____decpt_669, int * __restrict ____sign_670));// L832:L834 +extern char * ((__qgcvt_676) (long double ____value_673, int ____ndigit_674, char * (____buf_675)));// L835:L836 +extern char * ((__qgcvt_677) (long double ____value_673, int ____ndigit_674, char * (____buf_675)));// L835:L836 +extern int (__ecvt_r_684) (double ____value_678, int ____ndigit_679, int * __restrict ____decpt_680, int * __restrict ____sign_681, char * __restrict ____buf_682, __size_t_15 ____len_683);// L841:L843 +extern int (__fcvt_r_691) (double ____value_685, int ____ndigit_686, int * __restrict ____decpt_687, int * __restrict ____sign_688, char * __restrict ____buf_689, __size_t_15 ____len_690);// L844:L846 +extern int (__qecvt_r_698) (long double ____value_692, int ____ndigit_693, int * __restrict ____decpt_694, int * __restrict ____sign_695, char * __restrict ____buf_696, __size_t_15 ____len_697);// L848:L851 +extern int (__qfcvt_r_705) (long double ____value_699, int ____ndigit_700, int * __restrict ____decpt_701, int * __restrict ____sign_702, char * __restrict ____buf_703, __size_t_15 ____len_704);// L852:L855 +extern int (__mblen_708) (const char * (____s_706), __size_t_15 ____n_707);// L862 +extern int (__mblen_709) (const char * (____s_706), __size_t_15 ____n_707);// L862 +extern int (__mbtowc_713) (__wchar_t_16 * __restrict ____pwc_710, const char * __restrict ____s_711, __size_t_15 ____n_712);// L865:L866 +extern int (__wctomb_716) (char * (____s_714), __wchar_t_16 ____wchar_715);// L869 +extern __size_t_15 (__mbstowcs_720) (__wchar_t_16 * __restrict ____pwcs_717, const char * __restrict ____s_718, __size_t_15 ____n_719);// L873:L874 +extern __size_t_15 (__wcstombs_724) (char * __restrict ____s_721, const __wchar_t_16 * __restrict ____pwcs_722, __size_t_15 ____n_723);// L876:L878 +extern int (__rpmatch_727) (const char * (____response_725));// L887 +extern int (__rpmatch_726) (const char * (____response_725));// L887 +extern int (__getsubopt_732) (char * (* __restrict ____optionp_728), char * const * __restrict ____tokens_729, char * (* __restrict ____valuep_730));// L898:L901 +extern int (__getsubopt_731) (char * (* __restrict ____optionp_728), char * const * __restrict ____tokens_729, char * (* __restrict ____valuep_730));// L898:L901 +extern int (__getloadavg_735) (double ____loadavg_733[], int ____nelem_734);// L950:L951 /* no function due to type errors in the function prototype */ -extern char * ((____realpath_chk_194) (const char * __restrict ____name_191, char * __restrict ____resolved_192, __size_t_15 ____resolvedlen_193));// L23:L25 -extern char * ((____realpath_alias_197) (const char * __restrict ____name_195, char * __restrict ____resolved_196));// L26:L28 -extern char * ((____realpath_chk_warn_201) (const char * __restrict ____name_198, char * __restrict ____resolved_199, __size_t_15 ____resolvedlen_200));// L29:L34 +extern char * ((____realpath_chk_740) (const char * __restrict ____name_737, char * __restrict ____resolved_738, __size_t_15 ____resolvedlen_739));// L23:L25 +extern char * ((____realpath_alias_743) (const char * __restrict ____name_741, char * __restrict ____resolved_742));// L26:L28 +extern char * ((____realpath_chk_warn_747) (const char * __restrict ____name_744, char * __restrict ____resolved_745, __size_t_15 ____resolvedlen_746));// L29:L34 /* no function due to type errors in the function prototype */ -extern int (____ptsname_r_chk_209) (int ____fd_205, char * (____buf_206), __size_t_15 ____buflen_207, __size_t_15 ____nreal_208);// L52:L53 -extern int (____ptsname_r_alias_213) (int ____fd_210, char * (____buf_211), __size_t_15 ____buflen_212);// L54:L56 -extern int (____ptsname_r_chk_warn_218) (int ____fd_214, char * (____buf_215), __size_t_15 ____buflen_216, __size_t_15 ____nreal_217);// L57:L61 +extern int (____ptsname_r_chk_755) (int ____fd_751, char * (____buf_752), __size_t_15 ____buflen_753, __size_t_15 ____nreal_754);// L52:L53 +extern int (____ptsname_r_alias_759) (int ____fd_756, char * (____buf_757), __size_t_15 ____buflen_758);// L54:L56 +extern int (____ptsname_r_chk_warn_764) (int ____fd_760, char * (____buf_761), __size_t_15 ____buflen_762, __size_t_15 ____nreal_763);// L57:L61 /* no function due to type errors in the function prototype */ -extern int (____wctomb_chk_226) (char * (____s_223), __wchar_t_16 ____wchar_224, __size_t_15 ____buflen_225);// L77:L78 -extern int (____wctomb_alias_229) (char * (____s_227), __wchar_t_16 ____wchar_228);// L79:L80 +extern int (____wctomb_chk_772) (char * (____s_769), __wchar_t_16 ____wchar_770, __size_t_15 ____buflen_771);// L77:L78 +extern int (____wctomb_alias_775) (char * (____s_773), __wchar_t_16 ____wchar_774);// L79:L80 /* no function due to type errors in the function prototype */ -extern __size_t_15 (____mbstowcs_chk_236) (__wchar_t_16 * __restrict ____dst_232, const char * __restrict ____src_233, __size_t_15 ____len_234, __size_t_15 ____dstlen_235);// L98:L100 -extern __size_t_15 (____mbstowcs_alias_240) (__wchar_t_16 * __restrict ____dst_237, const char * __restrict ____src_238, __size_t_15 ____len_239);// L101:L104 -extern __size_t_15 (____mbstowcs_chk_warn_245) (__wchar_t_16 * __restrict ____dst_241, const char * __restrict ____src_242, __size_t_15 ____len_243, __size_t_15 ____dstlen_244);// L105:L110 +extern __size_t_15 (____mbstowcs_chk_782) (__wchar_t_16 * __restrict ____dst_778, const char * __restrict ____src_779, __size_t_15 ____len_780, __size_t_15 ____dstlen_781);// L98:L100 +extern __size_t_15 (____mbstowcs_alias_786) (__wchar_t_16 * __restrict ____dst_783, const char * __restrict ____src_784, __size_t_15 ____len_785);// L101:L104 +extern __size_t_15 (____mbstowcs_chk_warn_791) (__wchar_t_16 * __restrict ____dst_787, const char * __restrict ____src_788, __size_t_15 ____len_789, __size_t_15 ____dstlen_790);// L105:L110 /* no function due to type errors in the function prototype */ -extern __size_t_15 (____wcstombs_chk_253) (char * __restrict ____dst_249, const __wchar_t_16 * __restrict ____src_250, __size_t_15 ____len_251, __size_t_15 ____dstlen_252);// L130:L132 -extern __size_t_15 (____wcstombs_alias_257) (char * __restrict ____dst_254, const __wchar_t_16 * __restrict ____src_255, __size_t_15 ____len_256);// L133:L136 -extern __size_t_15 (____wcstombs_chk_warn_262) (char * __restrict ____dst_258, const __wchar_t_16 * __restrict ____src_259, __size_t_15 ____len_260, __size_t_15 ____dstlen_261);// L137:L141 +extern __size_t_15 (____wcstombs_chk_799) (char * __restrict ____dst_795, const __wchar_t_16 * __restrict ____src_796, __size_t_15 ____len_797, __size_t_15 ____dstlen_798);// L130:L132 +extern __size_t_15 (____wcstombs_alias_803) (char * __restrict ____dst_800, const __wchar_t_16 * __restrict ____src_801, __size_t_15 ____len_802);// L133:L136 +extern __size_t_15 (____wcstombs_chk_warn_808) (char * __restrict ____dst_804, const __wchar_t_16 * __restrict ____src_805, __size_t_15 ____len_806, __size_t_15 ____dstlen_807);// L137:L141 /* no function due to type errors in the function prototype */ -void * ((__vlan_dev_real_dev_266) ()) { +void * ((__vlan_dev_real_dev_812) ()) { -if (__static_condition_default_267) { +if (__static_condition_default_813) { { { -if (__static_condition_default_268) { +if (__static_condition_default_814) { ( ( void ) ( 0 ) ) ; // L13:L50 } -if (__static_condition_default_269) { +if (__static_condition_default_815) { ( ( 0 ) ? ( void ) ( 0 ) : ____assert_fail_4 ("false","/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.c",13, __PRETTY_FUNCTION__ ) ) ; // L13:L91 } -if (__static_condition_default_270) { +if (__static_condition_default_816) { __static_type_error("type error") ; // L13:L91 } +if (__static_condition_default_817) { return ( ( void * ) 0 ) ;// L14 } +if (__static_condition_default_818) { +__static_type_error("invalid type found in return expression"); +} +} } } } -void * ((__vlan_dev_real_dev_271) ()) { +void * ((__vlan_dev_real_dev_819) ()) { -if (__static_condition_default_272) { +if (__static_condition_default_820) { { { +if (__static_condition_default_821) { return ( ( void * ) 0 ) ;// L8 } +if (__static_condition_default_822) { +__static_type_error("invalid type found in return expression"); +} +} } } } -static int (__ocrdma_inet6addr_event_273) () { +static int (__ocrdma_inet6addr_event_823) () { -if (__static_condition_default_274) { +if (__static_condition_default_824) { { { -if (__static_condition_default_275) { - __vlan_dev_real_dev_266 ( ) ; // L21 +if (__static_condition_default_825) { + __vlan_dev_real_dev_812 ( ) ; // L21 } -if (__static_condition_default_276) { - __vlan_dev_real_dev_271 ( ) ; // L21 +if (__static_condition_default_826) { + __vlan_dev_real_dev_819 ( ) ; // L21 } return 0 ;// L23 } @@ -328,9 +1393,9 @@ return 0 ;// L23 } } -int (__main_279) (int __argc_277, char * (* (__argv_278))) { +int (__main_829) (int __argc_827, char * (* (__argv_828))) { -if (__static_condition_default_281) { +if (__static_condition_default_831) { { { @@ -344,16 +1409,16 @@ return 0 ;// L32 } } -int (__main_280) (int __argc_277, char * (* (__argv_278))) { +int (__main_830) (int __argc_827, char * (* (__argv_828))) { -if (__static_condition_default_282) { +if (__static_condition_default_832) { { { - __ocrdma_inet6addr_event_273 ( ) ; // L30 + __ocrdma_inet6addr_event_823 ( ) ; // L30 return 0 ;// L32 } } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.inferres b/fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d6c7e113959.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/d6c7e113959.desugared.c index f92f29f8..16f56e92 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/d6c7e113959.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/d6c7e113959.desugared.c @@ -8,10 +8,10 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); extern const bool __static_condition_default_8; -extern const bool __static_condition_default_13; extern const bool __static_condition_default_14; extern const bool __static_condition_default_9; extern const bool __static_condition_default_4; +extern const bool __static_condition_default_13; extern const bool __static_condition_default_10; extern const bool __static_condition_default_5; void __static_initializer_default() { diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d6c7e113959.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/d6c7e113959.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/d6c7e113959.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d6c7e113959.inferres b/fonda/cpp_testsuite/varBugs/LINUX/d6c7e113959.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/d6c7e113959.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.desugared.c index e69de29b..d1dff52e 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.desugared.c @@ -0,0 +1,1423 @@ +#include + +extern void __static_parse_error(char *msg); +extern void __static_type_error(char *msg); +extern void __static_renaming(char *renaming, char *original); +extern void __static_condition_renaming(char *expression, char *renaming); + +void __static_initializer_default(); + +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_414; +extern const bool __static_condition_default_595; +extern const bool __static_condition_default_261; +extern const bool __static_condition_default_378; +extern const bool __static_condition_default_60; +extern const bool __static_condition_default_252; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_627; +extern const bool __static_condition_default_629; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_426; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_579; +extern const bool __static_condition_default_810; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_379; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_361; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_305; +extern const bool __static_condition_default_594; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_243; +extern const bool __static_condition_default_240; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_279; +extern const bool __static_condition_default_429; +extern const bool __static_condition_default_273; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_798; +extern const bool __static_condition_default_394; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_276; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_67; +extern const bool __static_condition_default_799; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_816; +extern const bool __static_condition_default_812; +extern const bool __static_condition_default_215; +extern const bool __static_condition_default_325; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_800; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_352; +extern const bool __static_condition_default_349; +extern const bool __static_condition_default_234; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_308; +extern const bool __static_condition_default_604; +extern const bool __static_condition_default_302; +extern const bool __static_condition_default_285; +extern const bool __static_condition_default_237; +extern const bool __static_condition_default_811; +extern const bool __static_condition_default_420; +extern const bool __static_condition_default_581; +extern const bool __static_condition_default_423; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_270; +void __static_initializer_default() { +__static_renaming("__ptrdiff_t_0", "ptrdiff_t"); +__static_renaming("__size_t_1", "size_t"); +__static_renaming("__wchar_t_2", "wchar_t"); +__static_renaming("__idtype_t_8", "idtype_t"); +__static_renaming("____u_char_9", "__u_char"); +__static_renaming("____u_short_10", "__u_short"); +__static_renaming("____u_int_11", "__u_int"); +__static_renaming("____u_long_12", "__u_long"); +__static_renaming("____int8_t_13", "__int8_t"); +__static_renaming("____uint8_t_14", "__uint8_t"); +__static_renaming("____int16_t_15", "__int16_t"); +__static_renaming("____uint16_t_16", "__uint16_t"); +__static_renaming("____int32_t_17", "__int32_t"); +__static_renaming("____uint32_t_18", "__uint32_t"); +__static_renaming("____int64_t_19", "__int64_t"); +__static_renaming("____uint64_t_20", "__uint64_t"); +__static_renaming("____quad_t_21", "__quad_t"); +__static_renaming("____u_quad_t_22", "__u_quad_t"); +__static_renaming("____dev_t_23", "__dev_t"); +__static_renaming("____uid_t_24", "__uid_t"); +__static_renaming("____gid_t_25", "__gid_t"); +__static_renaming("____ino_t_26", "__ino_t"); +__static_renaming("____ino64_t_27", "__ino64_t"); +__static_renaming("____mode_t_28", "__mode_t"); +__static_renaming("____nlink_t_29", "__nlink_t"); +__static_renaming("____off_t_30", "__off_t"); +__static_renaming("____off64_t_31", "__off64_t"); +__static_renaming("____pid_t_32", "__pid_t"); +__static_renaming("____fsid_t_36", "__fsid_t"); +__static_renaming("____clock_t_37", "__clock_t"); +__static_renaming("____rlim_t_38", "__rlim_t"); +__static_renaming("____rlim64_t_39", "__rlim64_t"); +__static_renaming("____id_t_40", "__id_t"); +__static_renaming("____time_t_41", "__time_t"); +__static_renaming("____useconds_t_42", "__useconds_t"); +__static_renaming("____suseconds_t_43", "__suseconds_t"); +__static_renaming("____daddr_t_44", "__daddr_t"); +__static_renaming("____key_t_45", "__key_t"); +__static_renaming("____clockid_t_46", "__clockid_t"); +__static_renaming("____timer_t_47", "__timer_t"); +__static_renaming("____blksize_t_48", "__blksize_t"); +__static_renaming("____blkcnt_t_49", "__blkcnt_t"); +__static_renaming("____blkcnt64_t_50", "__blkcnt64_t"); +__static_renaming("____fsblkcnt_t_51", "__fsblkcnt_t"); +__static_renaming("____fsblkcnt64_t_52", "__fsblkcnt64_t"); +__static_renaming("____fsfilcnt_t_53", "__fsfilcnt_t"); +__static_renaming("____fsfilcnt64_t_54", "__fsfilcnt64_t"); +__static_renaming("____fsword_t_55", "__fsword_t"); +__static_renaming("____ssize_t_56", "__ssize_t"); +__static_renaming("____syscall_slong_t_57", "__syscall_slong_t"); +__static_renaming("____syscall_ulong_t_58", "__syscall_ulong_t"); +__static_renaming("____loff_t_59", "__loff_t"); +__static_renaming("____qaddr_t_61", "__qaddr_t"); +__static_renaming("____caddr_t_62", "__caddr_t"); +__static_renaming("____intptr_t_63", "__intptr_t"); +__static_renaming("____socklen_t_64", "__socklen_t"); +__static_renaming("____bswap_32_66", "__bswap_32"); +__static_renaming("____bswap_64_69", "__bswap_64"); +__static_renaming("____WAIT_STATUS_89", "__WAIT_STATUS"); +__static_renaming("__div_t_94", "div_t"); +__static_renaming("__ldiv_t_99", "ldiv_t"); +__static_renaming("__lldiv_t_104", "lldiv_t"); +__static_renaming("____ctype_get_mb_cur_max_105", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_106", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_107", "__ctype_get_mb_cur_max"); +__static_renaming("____ctype_get_mb_cur_max_108", "__ctype_get_mb_cur_max"); +__static_renaming("__atof_110", "atof"); +__static_renaming("__atof_111", "atof"); +__static_renaming("__atoi_113", "atoi"); +__static_renaming("__atoi_114", "atoi"); +__static_renaming("__atol_116", "atol"); +__static_renaming("__atol_117", "atol"); +__static_renaming("__atoll_119", "atoll"); +__static_renaming("__atoll_120", "atoll"); +__static_renaming("__strtod_123", "strtod"); +__static_renaming("__strtof_126", "strtof"); +__static_renaming("__strtold_129", "strtold"); +__static_renaming("__strtol_133", "strtol"); +__static_renaming("__strtoul_137", "strtoul"); +__static_renaming("__strtoq_141", "strtoq"); +__static_renaming("__strtouq_145", "strtouq"); +__static_renaming("__strtoll_149", "strtoll"); +__static_renaming("__strtoll_150", "strtoll"); +__static_renaming("__strtoull_154", "strtoull"); +__static_renaming("__l64a_159", "l64a"); +__static_renaming("__l64a_160", "l64a"); +__static_renaming("__a64l_162", "a64l"); +__static_renaming("__a64l_163", "a64l"); +__static_renaming("____u_char_164", "__u_char"); +__static_renaming("____u_short_165", "__u_short"); +__static_renaming("____u_int_166", "__u_int"); +__static_renaming("____u_long_167", "__u_long"); +__static_renaming("____int8_t_168", "__int8_t"); +__static_renaming("____uint8_t_169", "__uint8_t"); +__static_renaming("____int16_t_170", "__int16_t"); +__static_renaming("____uint16_t_171", "__uint16_t"); +__static_renaming("____int32_t_172", "__int32_t"); +__static_renaming("____uint32_t_173", "__uint32_t"); +__static_renaming("____int64_t_174", "__int64_t"); +__static_renaming("____uint64_t_175", "__uint64_t"); +__static_renaming("____quad_t_176", "__quad_t"); +__static_renaming("____u_quad_t_177", "__u_quad_t"); +__static_renaming("____dev_t_178", "__dev_t"); +__static_renaming("____uid_t_179", "__uid_t"); +__static_renaming("____gid_t_180", "__gid_t"); +__static_renaming("____ino_t_181", "__ino_t"); +__static_renaming("____ino64_t_182", "__ino64_t"); +__static_renaming("____mode_t_183", "__mode_t"); +__static_renaming("____nlink_t_184", "__nlink_t"); +__static_renaming("____off_t_185", "__off_t"); +__static_renaming("____off64_t_186", "__off64_t"); +__static_renaming("____pid_t_187", "__pid_t"); +__static_renaming("____fsid_t_191", "__fsid_t"); +__static_renaming("____clock_t_192", "__clock_t"); +__static_renaming("____rlim_t_193", "__rlim_t"); +__static_renaming("____rlim64_t_194", "__rlim64_t"); +__static_renaming("____id_t_195", "__id_t"); +__static_renaming("____time_t_196", "__time_t"); +__static_renaming("____useconds_t_197", "__useconds_t"); +__static_renaming("____suseconds_t_198", "__suseconds_t"); +__static_renaming("____daddr_t_199", "__daddr_t"); +__static_renaming("____key_t_200", "__key_t"); +__static_renaming("____clockid_t_201", "__clockid_t"); +__static_renaming("____timer_t_202", "__timer_t"); +__static_renaming("____blksize_t_203", "__blksize_t"); +__static_renaming("____blkcnt_t_204", "__blkcnt_t"); +__static_renaming("____blkcnt64_t_205", "__blkcnt64_t"); +__static_renaming("____fsblkcnt_t_206", "__fsblkcnt_t"); +__static_renaming("____fsblkcnt64_t_207", "__fsblkcnt64_t"); +__static_renaming("____fsfilcnt_t_208", "__fsfilcnt_t"); +__static_renaming("____fsfilcnt64_t_209", "__fsfilcnt64_t"); +__static_renaming("____fsword_t_210", "__fsword_t"); +__static_renaming("____ssize_t_211", "__ssize_t"); +__static_renaming("____syscall_slong_t_212", "__syscall_slong_t"); +__static_renaming("____syscall_ulong_t_213", "__syscall_ulong_t"); +__static_renaming("____loff_t_214", "__loff_t"); +__static_renaming("____qaddr_t_216", "__qaddr_t"); +__static_renaming("____caddr_t_217", "__caddr_t"); +__static_renaming("____intptr_t_218", "__intptr_t"); +__static_renaming("____socklen_t_219", "__socklen_t"); +__static_renaming("__u_char_220", "u_char"); +__static_renaming("__u_char_221", "u_char"); +__static_renaming("__u_short_222", "u_short"); +__static_renaming("__u_short_223", "u_short"); +__static_renaming("__u_int_224", "u_int"); +__static_renaming("__u_int_225", "u_int"); +__static_renaming("__u_long_226", "u_long"); +__static_renaming("__u_long_227", "u_long"); +__static_renaming("__quad_t_228", "quad_t"); +__static_renaming("__quad_t_229", "quad_t"); +__static_renaming("__u_quad_t_230", "u_quad_t"); +__static_renaming("__u_quad_t_231", "u_quad_t"); +__static_renaming("__fsid_t_232", "fsid_t"); +__static_renaming("__fsid_t_233", "fsid_t"); +__static_renaming("__loff_t_235", "loff_t"); +__static_renaming("__loff_t_236", "loff_t"); +__static_renaming("__loff_t_238", "loff_t"); +__static_renaming("__loff_t_239", "loff_t"); +__static_renaming("__ino_t_241", "ino_t"); +__static_renaming("__ino_t_242", "ino_t"); +__static_renaming("__ino_t_244", "ino_t"); +__static_renaming("__ino_t_245", "ino_t"); +__static_renaming("__dev_t_247", "dev_t"); +__static_renaming("__dev_t_248", "dev_t"); +__static_renaming("__gid_t_250", "gid_t"); +__static_renaming("__gid_t_251", "gid_t"); +__static_renaming("__gid_t_253", "gid_t"); +__static_renaming("__gid_t_254", "gid_t"); +__static_renaming("__mode_t_256", "mode_t"); +__static_renaming("__mode_t_257", "mode_t"); +__static_renaming("__nlink_t_259", "nlink_t"); +__static_renaming("__nlink_t_260", "nlink_t"); +__static_renaming("__uid_t_262", "uid_t"); +__static_renaming("__uid_t_263", "uid_t"); +__static_renaming("__uid_t_265", "uid_t"); +__static_renaming("__uid_t_266", "uid_t"); +__static_renaming("__off_t_268", "off_t"); +__static_renaming("__off_t_269", "off_t"); +__static_renaming("__off_t_271", "off_t"); +__static_renaming("__off_t_272", "off_t"); +__static_renaming("__pid_t_274", "pid_t"); +__static_renaming("__pid_t_275", "pid_t"); +__static_renaming("__pid_t_277", "pid_t"); +__static_renaming("__pid_t_278", "pid_t"); +__static_renaming("__id_t_280", "id_t"); +__static_renaming("__id_t_281", "id_t"); +__static_renaming("__ssize_t_283", "ssize_t"); +__static_renaming("__ssize_t_284", "ssize_t"); +__static_renaming("__daddr_t_286", "daddr_t"); +__static_renaming("__daddr_t_287", "daddr_t"); +__static_renaming("__caddr_t_289", "caddr_t"); +__static_renaming("__caddr_t_290", "caddr_t"); +__static_renaming("__key_t_291", "key_t"); +__static_renaming("__key_t_292", "key_t"); +__static_renaming("__key_t_294", "key_t"); +__static_renaming("__key_t_295", "key_t"); +__static_renaming("__clock_t_297", "clock_t"); +__static_renaming("__clock_t_298", "clock_t"); +__static_renaming("__time_t_300", "time_t"); +__static_renaming("__time_t_301", "time_t"); +__static_renaming("__clockid_t_303", "clockid_t"); +__static_renaming("__clockid_t_304", "clockid_t"); +__static_renaming("__timer_t_306", "timer_t"); +__static_renaming("__timer_t_307", "timer_t"); +__static_renaming("__ulong_309", "ulong"); +__static_renaming("__ulong_310", "ulong"); +__static_renaming("__ulong_311", "ulong"); +__static_renaming("__ushort_312", "ushort"); +__static_renaming("__uint_313", "uint"); +__static_renaming("__int8_t_314", "int8_t"); +__static_renaming("__int16_t_315", "int16_t"); +__static_renaming("__int32_t_316", "int32_t"); +__static_renaming("__int64_t_317", "int64_t"); +__static_renaming("__u_int8_t_318", "u_int8_t"); +__static_renaming("__u_int16_t_319", "u_int16_t"); +__static_renaming("__u_int32_t_320", "u_int32_t"); +__static_renaming("__u_int64_t_321", "u_int64_t"); +__static_renaming("__register_t_322", "register_t"); +__static_renaming("____bswap_32_324", "__bswap_32"); +__static_renaming("____bswap_64_327", "__bswap_64"); +__static_renaming("____sig_atomic_t_328", "__sig_atomic_t"); +__static_renaming("____sigset_t_332", "__sigset_t"); +__static_renaming("__sigset_t_333", "sigset_t"); +__static_renaming("__suseconds_t_350", "suseconds_t"); +__static_renaming("__suseconds_t_351", "suseconds_t"); +__static_renaming("____fd_mask_353", "__fd_mask"); +__static_renaming("____fd_mask_354", "__fd_mask"); +__static_renaming("__fd_set_362", "fd_set"); +__static_renaming("__fd_mask_363", "fd_mask"); +__static_renaming("__fd_mask_364", "fd_mask"); +__static_renaming("__select_376", "select"); +__static_renaming("__select_377", "select"); +__static_renaming("__pselect_392", "pselect"); +__static_renaming("__pselect_393", "pselect"); +__static_renaming("____fdelt_chk_397", "__fdelt_chk"); +__static_renaming("____fdelt_warn_399", "__fdelt_warn"); +__static_renaming("__gnu_dev_major_401", "gnu_dev_major"); +__static_renaming("__gnu_dev_major_402", "gnu_dev_major"); +__static_renaming("__gnu_dev_minor_404", "gnu_dev_minor"); +__static_renaming("__gnu_dev_makedev_407", "gnu_dev_makedev"); +__static_renaming("__blksize_t_412", "blksize_t"); +__static_renaming("__blksize_t_413", "blksize_t"); +__static_renaming("__blkcnt_t_415", "blkcnt_t"); +__static_renaming("__blkcnt_t_416", "blkcnt_t"); +__static_renaming("__fsblkcnt_t_418", "fsblkcnt_t"); +__static_renaming("__fsblkcnt_t_419", "fsblkcnt_t"); +__static_renaming("__blkcnt_t_421", "blkcnt_t"); +__static_renaming("__blkcnt_t_422", "blkcnt_t"); +__static_renaming("__fsblkcnt_t_424", "fsblkcnt_t"); +__static_renaming("__fsblkcnt_t_425", "fsblkcnt_t"); +__static_renaming("__fsfilcnt_t_427", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_428", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_430", "fsfilcnt_t"); +__static_renaming("__fsfilcnt_t_431", "fsfilcnt_t"); +__static_renaming("__pthread_t_433", "pthread_t"); +__static_renaming("__pthread_attr_t_437", "pthread_attr_t"); +__static_renaming("____pthread_list_t_442", "__pthread_list_t"); +__static_renaming("____pthread_list_t_443", "__pthread_list_t"); +__static_renaming("__pthread_mutex_t_459", "pthread_mutex_t"); +__static_renaming("__pthread_mutexattr_t_464", "pthread_mutexattr_t"); +__static_renaming("__rand_465", "rand"); +__static_renaming("__srand_467", "srand"); +__static_renaming("__rand_r_469", "rand_r"); +__static_renaming("__drand48_470", "drand48"); +__static_renaming("__erand48_472", "erand48"); +__static_renaming("__lrand48_473", "lrand48"); +__static_renaming("__nrand48_475", "nrand48"); +__static_renaming("__mrand48_476", "mrand48"); +__static_renaming("__jrand48_478", "jrand48"); +__static_renaming("__srand48_480", "srand48"); +__static_renaming("__seed48_482", "seed48"); +__static_renaming("__lcong48_484", "lcong48"); +__static_renaming("__malloc_486", "malloc"); +__static_renaming("__malloc_487", "malloc"); +__static_renaming("__calloc_490", "calloc"); +__static_renaming("__calloc_491", "calloc"); +__static_renaming("__realloc_494", "realloc"); +__static_renaming("__free_496", "free"); +__static_renaming("__cfree_498", "cfree"); +__static_renaming("__alloca_500", "alloca"); +__static_renaming("__valloc_502", "valloc"); +__static_renaming("__valloc_503", "valloc"); +__static_renaming("__posix_memalign_507", "posix_memalign"); +__static_renaming("__posix_memalign_508", "posix_memalign"); +__static_renaming("__aligned_alloc_511", "aligned_alloc"); +__static_renaming("__aligned_alloc_512", "aligned_alloc"); +__static_renaming("__aligned_alloc_513", "aligned_alloc"); +__static_renaming("__aligned_alloc_514", "aligned_alloc"); +__static_renaming("__abort_515", "abort"); +__static_renaming("__atexit_517", "atexit"); +__static_renaming("__at_quick_exit_519", "at_quick_exit"); +__static_renaming("__on_exit_524", "on_exit"); +__static_renaming("__exit_526", "exit"); +__static_renaming("__exit_527", "exit"); +__static_renaming("__quick_exit_529", "quick_exit"); +__static_renaming("___Exit_531", "_Exit"); +__static_renaming("__getenv_533", "getenv"); +__static_renaming("__getenv_534", "getenv"); +__static_renaming("__putenv_536", "putenv"); +__static_renaming("__setenv_540", "setenv"); +__static_renaming("__unsetenv_542", "unsetenv"); +__static_renaming("__clearenv_543", "clearenv"); +__static_renaming("__mktemp_545", "mktemp"); +__static_renaming("__mkstemp_548", "mkstemp"); +__static_renaming("__mkstemp_549", "mkstemp"); +__static_renaming("__mkstemp_550", "mkstemp"); +__static_renaming("__mkstemp_551", "mkstemp"); +__static_renaming("__mkstemps_556", "mkstemps"); +__static_renaming("__mkstemps_557", "mkstemps"); +__static_renaming("__mkstemps_558", "mkstemps"); +__static_renaming("__mkstemps_559", "mkstemps"); +__static_renaming("__mkdtemp_561", "mkdtemp"); +__static_renaming("__mkdtemp_562", "mkdtemp"); +__static_renaming("__system_564", "system"); +__static_renaming("__system_565", "system"); +__static_renaming("__system_566", "system"); +__static_renaming("__system_567", "system"); +__static_renaming("__realpath_570", "realpath"); +__static_renaming("__realpath_571", "realpath"); +__static_renaming("____compar_fn_t_572", "__compar_fn_t"); +__static_renaming("__bsearch_580", "bsearch"); +__static_renaming("__bsearch_582", "bsearch"); +__static_renaming("____l_589", "__l"); +__static_renaming("____u_590", "__u"); +__static_renaming("____idx_591", "__idx"); +__static_renaming("____p_592", "__p"); +__static_renaming("____comparison_593", "__comparison"); +__static_renaming("__qsort_601", "qsort"); +__static_renaming("__qsort_603", "qsort"); +__static_renaming("__abs_606", "abs"); +__static_renaming("__abs_607", "abs"); +__static_renaming("__labs_609", "labs"); +__static_renaming("__labs_610", "labs"); +__static_renaming("__llabs_612", "llabs"); +__static_renaming("__llabs_613", "llabs"); +__static_renaming("__div_616", "div"); +__static_renaming("__div_617", "div"); +__static_renaming("__ldiv_620", "ldiv"); +__static_renaming("__ldiv_622", "ldiv"); +__static_renaming("__lldiv_626", "lldiv"); +__static_renaming("__lldiv_628", "lldiv"); +__static_renaming("__ecvt_634", "ecvt"); +__static_renaming("__ecvt_635", "ecvt"); +__static_renaming("__fcvt_640", "fcvt"); +__static_renaming("__fcvt_641", "fcvt"); +__static_renaming("__gcvt_645", "gcvt"); +__static_renaming("__gcvt_646", "gcvt"); +__static_renaming("__qecvt_651", "qecvt"); +__static_renaming("__qecvt_652", "qecvt"); +__static_renaming("__qfcvt_657", "qfcvt"); +__static_renaming("__qfcvt_658", "qfcvt"); +__static_renaming("__qgcvt_662", "qgcvt"); +__static_renaming("__qgcvt_663", "qgcvt"); +__static_renaming("__ecvt_r_670", "ecvt_r"); +__static_renaming("__fcvt_r_677", "fcvt_r"); +__static_renaming("__qecvt_r_684", "qecvt_r"); +__static_renaming("__qfcvt_r_691", "qfcvt_r"); +__static_renaming("__mblen_694", "mblen"); +__static_renaming("__mblen_695", "mblen"); +__static_renaming("__mbtowc_699", "mbtowc"); +__static_renaming("__wctomb_702", "wctomb"); +__static_renaming("__mbstowcs_706", "mbstowcs"); +__static_renaming("__wcstombs_710", "wcstombs"); +__static_renaming("__rpmatch_712", "rpmatch"); +__static_renaming("__rpmatch_713", "rpmatch"); +__static_renaming("__getsubopt_717", "getsubopt"); +__static_renaming("__getsubopt_718", "getsubopt"); +__static_renaming("__getloadavg_721", "getloadavg"); +__static_renaming("____realpath_chk_726", "__realpath_chk"); +__static_renaming("____realpath_alias_729", "__realpath_alias"); +__static_renaming("____realpath_chk_warn_733", "__realpath_chk_warn"); +__static_renaming("____ptsname_r_chk_741", "__ptsname_r_chk"); +__static_renaming("____ptsname_r_alias_745", "__ptsname_r_alias"); +__static_renaming("____ptsname_r_chk_warn_750", "__ptsname_r_chk_warn"); +__static_renaming("____wctomb_chk_758", "__wctomb_chk"); +__static_renaming("____wctomb_alias_761", "__wctomb_alias"); +__static_renaming("____mbstowcs_chk_768", "__mbstowcs_chk"); +__static_renaming("____mbstowcs_alias_772", "__mbstowcs_alias"); +__static_renaming("____mbstowcs_chk_warn_777", "__mbstowcs_chk_warn"); +__static_renaming("____wcstombs_chk_785", "__wcstombs_chk"); +__static_renaming("____wcstombs_alias_789", "__wcstombs_alias"); +__static_renaming("____wcstombs_chk_warn_794", "__wcstombs_chk_warn"); +__static_renaming("__inode_get_rsv_space_802", "inode_get_rsv_space"); +__static_renaming("__reserved_803", "reserved"); +__static_renaming("__i_804", "i"); +__static_renaming("__i_805", "i"); +__static_renaming("__j_806", "j"); +__static_renaming("__j_807", "j"); +__static_renaming("__add_dquot_ref_808", "add_dquot_ref"); +__static_renaming("__main_815", "main"); + +__static_condition_renaming("__static_condition_default_60", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_67", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && !(defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_215", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_234", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __u_char_defined)"); +__static_condition_renaming("__static_condition_default_237", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __u_char_defined)"); +__static_condition_renaming("__static_condition_default_240", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __u_char_defined)"); +__static_condition_renaming("__static_condition_default_243", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ino_t_defined)"); +__static_condition_renaming("__static_condition_default_246", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ino_t_defined) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ino_t_defined)"); +__static_condition_renaming("__static_condition_default_249", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_252", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_255", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __dev_t_defined)"); +__static_condition_renaming("__static_condition_default_258", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_261", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __nlink_t_defined)"); +__static_condition_renaming("__static_condition_default_264", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __nlink_t_defined)"); +__static_condition_renaming("__static_condition_default_267", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __nlink_t_defined)"); +__static_condition_renaming("__static_condition_default_270", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_273", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_276", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_279", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_282", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __id_t_defined)"); +__static_condition_renaming("__static_condition_default_285", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_288", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_293", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_296", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __daddr_t_defined)"); +__static_condition_renaming("__static_condition_default_299", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __clock_t_defined)"); +__static_condition_renaming("__static_condition_default_302", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __time_t_defined)"); +__static_condition_renaming("__static_condition_default_305", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __clockid_t_defined)"); +__static_condition_renaming("__static_condition_default_308", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __timer_t_defined)"); +__static_condition_renaming("__static_condition_default_325", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _SYS_WAIT_H)"); +__static_condition_renaming("__static_condition_default_341", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_349", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_352", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __suseconds_t_defined)"); +__static_condition_renaming("__static_condition_default_361", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_378", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_379", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined _STRUCT_TIMEVAL)"); +__static_condition_renaming("__static_condition_default_394", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_395", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && (defined __timespec_defined)"); +__static_condition_renaming("__static_condition_default_414", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blksize_t_defined)"); +__static_condition_renaming("__static_condition_default_417", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blkcnt_t_defined) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blkcnt_t_defined)"); +__static_condition_renaming("__static_condition_default_420", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_423", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) && !(defined __blkcnt_t_defined)"); +__static_condition_renaming("__static_condition_default_426", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_429", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_432", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need_malloc_and_calloc) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_579", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_581", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_594", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __USE_EXTERN_INLINES) && !(defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_595", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_602", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && !(defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_604", "!(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) && (defined __USE_EXTERN_INLINES) && (defined __COMPAR_FN_T)"); +__static_condition_renaming("__static_condition_default_621", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_623", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __ldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_627", "!(defined _STDLIB_H) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined) || !(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_629", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc) && (defined __lldiv_t_defined)"); +__static_condition_renaming("__static_condition_default_736", "!(defined _STDLIB_H) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_798", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_799", "!(defined _STDLIB_H) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need_malloc_and_calloc) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_800", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_801", "!(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need_malloc_and_calloc)"); +__static_condition_renaming("__static_condition_default_809", "!(defined CONFIG_QUOTA_DEBUG)"); +__static_condition_renaming("__static_condition_default_810", "!(defined _STDLIB_H) && (defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && !(defined CONFIG_QUOTA_DEBUG)"); +__static_condition_renaming("__static_condition_default_811", "(defined CONFIG_QUOTA_DEBUG)"); +__static_condition_renaming("__static_condition_default_812", "!(defined _STDLIB_H) && (defined __STRICT_ANSI__) && !(defined __need_malloc_and_calloc) && (defined CONFIG_QUOTA_DEBUG)"); +__static_condition_renaming("__static_condition_default_816", "!(defined _STDLIB_H) && !(defined __STRICT_ANSI__) || !(defined _STDLIB_H) && (defined __STRICT_ANSI__) && (defined __need_malloc_and_calloc) || (defined _STDLIB_H)"); + +if (__static_condition_default_816) { +__static_parse_error("Unable to parse"); +} +}; +typedef long int __ptrdiff_t_0;// L143:L324 +typedef long unsigned int __size_t_1;// L177:L209 +typedef int __wchar_t_2;// L243:L321 +enum ____anonymous_tag_6_7 { +__P_ALL_3, +__P_PID_4, +__P_PGID_5, +}; +typedef enum ____anonymous_tag_6_7 __idtype_t_8;// L50:L55 +typedef unsigned char ____u_char_9;// L30 +typedef unsigned short int ____u_short_10;// L31 +typedef unsigned int ____u_int_11;// L32 +typedef unsigned long int ____u_long_12;// L33 +typedef signed char ____int8_t_13;// L36 +typedef unsigned char ____uint8_t_14;// L37 +typedef signed short int ____int16_t_15;// L38 +typedef unsigned short int ____uint16_t_16;// L39 +typedef signed int ____int32_t_17;// L40 +typedef unsigned int ____uint32_t_18;// L41 +typedef signed long int ____int64_t_19;// L43 +typedef unsigned long int ____uint64_t_20;// L44 +typedef long int ____quad_t_21;// L52 +typedef unsigned long int ____u_quad_t_22;// L53 +typedef unsigned long int ____dev_t_23;// L109:L124 +typedef unsigned int ____uid_t_24;// L92:L125 +typedef unsigned int ____gid_t_25;// L92:L126 +typedef unsigned long int ____ino_t_26;// L94:L127 +typedef unsigned long int ____ino64_t_27;// L109:L128 +typedef unsigned int ____mode_t_28;// L92:L129 +typedef unsigned long int ____nlink_t_29;// L94:L130 +typedef long int ____off_t_30;// L93:L131 +typedef long int ____off64_t_31;// L108:L132 +typedef int ____pid_t_32;// L91:L133 +struct ____anonymous_tag_33_34 { +int ____val_35[2];// L72 +}; +typedef struct ____anonymous_tag_33_34 ____fsid_t_36;// L72:L134 +typedef long int ____clock_t_37;// L93:L135 +typedef unsigned long int ____rlim_t_38;// L94:L136 +typedef unsigned long int ____rlim64_t_39;// L109:L137 +typedef unsigned int ____id_t_40;// L92:L138 +typedef long int ____time_t_41;// L93:L139 +typedef unsigned int ____useconds_t_42;// L92:L140 +typedef long int ____suseconds_t_43;// L93:L141 +typedef int ____daddr_t_44;// L91:L143 +typedef int ____key_t_45;// L91:L144 +typedef int ____clockid_t_46;// L91:L147 +typedef void * (____timer_t_47);// L70:L150 +typedef long int ____blksize_t_48;// L93:L153 +typedef long int ____blkcnt_t_49;// L93:L158 +typedef long int ____blkcnt64_t_50;// L108:L159 +typedef unsigned long int ____fsblkcnt_t_51;// L94:L162 +typedef unsigned long int ____fsblkcnt64_t_52;// L109:L163 +typedef unsigned long int ____fsfilcnt_t_53;// L94:L166 +typedef unsigned long int ____fsfilcnt64_t_54;// L109:L167 +typedef long int ____fsword_t_55;// L93:L170 +typedef long int ____ssize_t_56;// L110:L172 +typedef long int ____syscall_slong_t_57;// L93:L175 +typedef unsigned long int ____syscall_ulong_t_58;// L94:L177 +typedef ____off64_t_31 ____loff_t_59;// L181 +typedef ____quad_t_21 * (____qaddr_t_61);// L182 +typedef char * (____caddr_t_62);// L183 +typedef long int ____intptr_t_63;// L110:L186 +typedef unsigned int ____socklen_t_64;// L92:L189 +struct ____anonymous_tag_70_71 { +unsigned int ____w_termsig_72 : 7;// L72 +unsigned int ____w_coredump_73 : 1;// L73 +unsigned int ____w_retcode_74 : 8;// L74 +unsigned int __anon_id_0_75 : 16;// L75 +}; +struct ____anonymous_tag_76_77 { +unsigned int ____w_stopval_78 : 8;// L87 +unsigned int ____w_stopsig_79 : 8;// L88 +unsigned int __anon_id_1_80 : 16;// L89 +}; +union __wait_81 { +int __w_status_82;// L68 +struct ____anonymous_tag_70_71 ____wait_terminated_83;// L69 +struct ____anonymous_tag_76_77 ____wait_stopped_84;// L84 +}; +union ____anonymous_tag_85_86 { +union __wait_81 * (____uptr_87);// L69 +int * (____iptr_88);// L70 +}; +typedef union ____anonymous_tag_85_86 ____WAIT_STATUS_89;// L67:L71 +struct ____anonymous_tag_90_91 { +int __quot_92;// L99 +int __rem_93;// L100 +}; +typedef struct ____anonymous_tag_90_91 __div_t_94;// L97:L101 +struct ____anonymous_tag_95_96 { +long int __quot_97;// L107 +long int __rem_98;// L108 +}; +typedef struct ____anonymous_tag_95_96 __ldiv_t_99;// L105:L109 +struct ____anonymous_tag_100_101 { +long long int __quot_102;// L119 +long long int __rem_103;// L120 +}; +typedef struct ____anonymous_tag_100_101 __lldiv_t_104;// L117:L121 +typedef unsigned char ____u_char_164;// L30 +typedef unsigned short int ____u_short_165;// L31 +typedef unsigned int ____u_int_166;// L32 +typedef unsigned long int ____u_long_167;// L33 +typedef signed char ____int8_t_168;// L36 +typedef unsigned char ____uint8_t_169;// L37 +typedef signed short int ____int16_t_170;// L38 +typedef unsigned short int ____uint16_t_171;// L39 +typedef signed int ____int32_t_172;// L40 +typedef unsigned int ____uint32_t_173;// L41 +typedef signed long int ____int64_t_174;// L43 +typedef unsigned long int ____uint64_t_175;// L44 +typedef long int ____quad_t_176;// L52 +typedef unsigned long int ____u_quad_t_177;// L53 +typedef unsigned long int ____dev_t_178;// L109:L124 +typedef unsigned int ____uid_t_179;// L92:L125 +typedef unsigned int ____gid_t_180;// L92:L126 +typedef unsigned long int ____ino_t_181;// L94:L127 +typedef unsigned long int ____ino64_t_182;// L109:L128 +typedef unsigned int ____mode_t_183;// L92:L129 +typedef unsigned long int ____nlink_t_184;// L94:L130 +typedef long int ____off_t_185;// L93:L131 +typedef long int ____off64_t_186;// L108:L132 +typedef int ____pid_t_187;// L91:L133 +struct ____anonymous_tag_188_189 { +int ____val_190[2];// L72 +}; +typedef struct ____anonymous_tag_188_189 ____fsid_t_191;// L72:L134 +typedef long int ____clock_t_192;// L93:L135 +typedef unsigned long int ____rlim_t_193;// L94:L136 +typedef unsigned long int ____rlim64_t_194;// L109:L137 +typedef unsigned int ____id_t_195;// L92:L138 +typedef long int ____time_t_196;// L93:L139 +typedef unsigned int ____useconds_t_197;// L92:L140 +typedef long int ____suseconds_t_198;// L93:L141 +typedef int ____daddr_t_199;// L91:L143 +typedef int ____key_t_200;// L91:L144 +typedef int ____clockid_t_201;// L91:L147 +typedef void * (____timer_t_202);// L70:L150 +typedef long int ____blksize_t_203;// L93:L153 +typedef long int ____blkcnt_t_204;// L93:L158 +typedef long int ____blkcnt64_t_205;// L108:L159 +typedef unsigned long int ____fsblkcnt_t_206;// L94:L162 +typedef unsigned long int ____fsblkcnt64_t_207;// L109:L163 +typedef unsigned long int ____fsfilcnt_t_208;// L94:L166 +typedef unsigned long int ____fsfilcnt64_t_209;// L109:L167 +typedef long int ____fsword_t_210;// L93:L170 +typedef long int ____ssize_t_211;// L110:L172 +typedef long int ____syscall_slong_t_212;// L93:L175 +typedef unsigned long int ____syscall_ulong_t_213;// L94:L177 +typedef ____off64_t_186 ____loff_t_214;// L181 +typedef ____quad_t_176 * (____qaddr_t_216);// L182 +typedef char * (____caddr_t_217);// L183 +typedef long int ____intptr_t_218;// L110:L186 +typedef unsigned int ____socklen_t_219;// L92:L189 +typedef ____u_char_9 __u_char_220;// L33 +typedef ____u_char_164 __u_char_221;// L33 +typedef ____u_short_10 __u_short_222;// L34 +typedef ____u_short_165 __u_short_223;// L34 +typedef ____u_int_11 __u_int_224;// L35 +typedef ____u_int_166 __u_int_225;// L35 +typedef ____u_long_12 __u_long_226;// L36 +typedef ____u_long_167 __u_long_227;// L36 +typedef ____quad_t_21 __quad_t_228;// L37 +typedef ____quad_t_176 __quad_t_229;// L37 +typedef ____u_quad_t_22 __u_quad_t_230;// L38 +typedef ____u_quad_t_177 __u_quad_t_231;// L38 +typedef ____fsid_t_36 __fsid_t_232;// L39 +typedef ____fsid_t_191 __fsid_t_233;// L39 +typedef ____loff_t_59 __loff_t_235;// L44 +typedef ____loff_t_214 __loff_t_236;// L44 +typedef ____loff_t_59 __loff_t_238;// L44 +typedef ____loff_t_214 __loff_t_239;// L44 +typedef ____ino64_t_27 __ino_t_241;// L50 +typedef ____ino64_t_182 __ino_t_242;// L50 +typedef ____ino_t_26 __ino_t_244;// L48 +typedef ____ino_t_181 __ino_t_245;// L48 +typedef ____dev_t_23 __dev_t_247;// L60 +typedef ____dev_t_178 __dev_t_248;// L60 +typedef ____gid_t_25 __gid_t_250;// L65 +typedef ____gid_t_180 __gid_t_251;// L65 +typedef ____gid_t_25 __gid_t_253;// L65 +typedef ____gid_t_180 __gid_t_254;// L65 +typedef ____mode_t_28 __mode_t_256;// L70 +typedef ____mode_t_183 __mode_t_257;// L70 +typedef ____nlink_t_29 __nlink_t_259;// L75 +typedef ____nlink_t_184 __nlink_t_260;// L75 +typedef ____uid_t_24 __uid_t_262;// L80 +typedef ____uid_t_179 __uid_t_263;// L80 +typedef ____uid_t_24 __uid_t_265;// L80 +typedef ____uid_t_179 __uid_t_266;// L80 +typedef ____off64_t_31 __off_t_268;// L88 +typedef ____off64_t_186 __off_t_269;// L88 +typedef ____off_t_30 __off_t_271;// L86 +typedef ____off_t_185 __off_t_272;// L86 +typedef ____pid_t_32 __pid_t_274;// L98 +typedef ____pid_t_187 __pid_t_275;// L98 +typedef ____pid_t_32 __pid_t_277;// L98 +typedef ____pid_t_187 __pid_t_278;// L98 +typedef ____id_t_40 __id_t_280;// L104 +typedef ____id_t_195 __id_t_281;// L104 +typedef ____ssize_t_56 __ssize_t_283;// L109 +typedef ____ssize_t_211 __ssize_t_284;// L109 +typedef ____daddr_t_44 __daddr_t_286;// L115 +typedef ____daddr_t_199 __daddr_t_287;// L115 +typedef ____caddr_t_62 __caddr_t_289;// L116 +typedef ____caddr_t_217 __caddr_t_290;// L116 +typedef ____key_t_45 __key_t_291;// L122 +typedef ____key_t_200 __key_t_292;// L122 +typedef ____key_t_45 __key_t_294;// L122 +typedef ____key_t_200 __key_t_295;// L122 +typedef ____clock_t_37 __clock_t_297;// L59 +typedef ____clock_t_192 __clock_t_298;// L59 +typedef ____time_t_41 __time_t_300;// L75 +typedef ____time_t_196 __time_t_301;// L75 +typedef ____clockid_t_46 __clockid_t_303;// L91 +typedef ____clockid_t_201 __clockid_t_304;// L91 +typedef ____timer_t_47 __timer_t_306;// L103 +typedef ____timer_t_202 __timer_t_307;// L103 +typedef unsigned long int __ulong_309;// L150 +typedef unsigned long int __ulong_310;// L150 +typedef unsigned long int __ulong_311;// L150 +typedef unsigned short int __ushort_312;// L151 +typedef unsigned int __uint_313;// L152 +typedef int __int8_t_314;// L188:L194 +typedef int __int16_t_315;// L188:L195 +typedef int __int32_t_316;// L188:L196 +typedef int __int64_t_317;// L188:L197 +typedef unsigned int __u_int8_t_318;// L190:L200 +typedef unsigned int __u_int16_t_319;// L190:L201 +typedef unsigned int __u_int32_t_320;// L190:L202 +typedef unsigned int __u_int64_t_321;// L190:L203 +typedef int __register_t_322;// L205 +typedef int ____sig_atomic_t_328;// L22 +struct ____anonymous_tag_329_330 { +unsigned long int ____val_331[( 1024 / ( 8 * sizeof(unsigned long) ) )];// L29 +}; +typedef struct ____anonymous_tag_329_330 ____sigset_t_332;// L27:L30 +typedef ____sigset_t_332 __sigset_t_333;// L37 +struct __timespec_334 { +____time_t_41 __tv_sec_335;// L0 +____time_t_196 __tv_sec_336;// L0 +____syscall_slong_t_57 __tv_nsec_338;// L0 +____syscall_slong_t_212 __tv_nsec_339;// L0 +}; +struct __timeval_342 { +____time_t_41 __tv_sec_343;// L0 +____time_t_196 __tv_sec_344;// L0 +____suseconds_t_43 __tv_usec_346;// L0 +____suseconds_t_198 __tv_usec_347;// L0 +}; +typedef ____suseconds_t_43 __suseconds_t_350;// L48 +typedef ____suseconds_t_198 __suseconds_t_351;// L48 +typedef long int ____fd_mask_353;// L54 +typedef long int ____fd_mask_354;// L54 +struct ____anonymous_tag_355_356 { +____fd_mask_353 ____fds_bits_357[1024 / ( 8 * ( int ) sizeof(long) )];// L0 +____fd_mask_354 ____fds_bits_359[1024 / ( 8 * ( int ) sizeof(long) )];// L0 +}; +typedef struct ____anonymous_tag_355_356 __fd_set_362;// L64:L75 +typedef ____fd_mask_353 __fd_mask_363;// L82 +typedef ____fd_mask_354 __fd_mask_364;// L82 +typedef ____blksize_t_48 __blksize_t_412;// L228 +typedef ____blksize_t_203 __blksize_t_413;// L228 +typedef ____blkcnt_t_49 __blkcnt_t_415;// L235 +typedef ____blkcnt_t_204 __blkcnt_t_416;// L235 +typedef ____fsblkcnt_t_51 __fsblkcnt_t_418;// L239 +typedef ____fsblkcnt_t_206 __fsblkcnt_t_419;// L239 +typedef ____blkcnt64_t_50 __blkcnt_t_421;// L248 +typedef ____blkcnt64_t_205 __blkcnt_t_422;// L248 +typedef ____fsblkcnt64_t_52 __fsblkcnt_t_424;// L252 +typedef ____fsblkcnt64_t_207 __fsblkcnt_t_425;// L252 +typedef ____fsfilcnt_t_53 __fsfilcnt_t_427;// L243 +typedef ____fsfilcnt_t_208 __fsfilcnt_t_428;// L243 +typedef ____fsfilcnt64_t_54 __fsfilcnt_t_430;// L256 +typedef ____fsfilcnt64_t_209 __fsfilcnt_t_431;// L256 +typedef unsigned long int __pthread_t_433;// L60 +union __pthread_attr_t_434 { +char ____size_435[56];// L65 +long int ____align_436;// L66 +}; +typedef union __pthread_attr_t_434 __pthread_attr_t_437;// L69 +struct ____pthread_internal_list_439 { +struct __forward_tag_reference_438 * (____prev_440);// L0 +struct __forward_tag_reference_438 * (____next_441);// L0 +}; +typedef struct ____pthread_internal_list_439 ____pthread_list_t_442;// L75:L79 +typedef struct ____pthread_internal_list_439 ____pthread_list_t_443;// L75:L79 +struct ____pthread_mutex_s_444 { +int ____lock_445;// L94 +unsigned int ____count_446;// L95 +int ____owner_447;// L96 +unsigned int ____nusers_448;// L98 +int ____kind_449;// L102 +short ____spins_450;// L104 +short ____elision_451;// L105 +____pthread_list_t_442 ____list_452;// L0 +____pthread_list_t_443 ____list_453;// L0 +}; +union ____anonymous_tag_454_455 { +struct ____pthread_mutex_s_444 ____data_456;// L92 +char ____size_457[40];// L126 +long int ____align_458;// L127 +}; +typedef union ____anonymous_tag_454_455 __pthread_mutex_t_459;// L90:L128 +union ____anonymous_tag_460_461 { +char ____size_462[4];// L132 +int ____align_463;// L133 +}; +typedef union ____anonymous_tag_460_461 __pthread_mutexattr_t_464;// L130:L134 +typedef int (* (____compar_fn_t_572)) (const void *, const void *);// L741 + +struct __forward_tag_reference_438 { // generated union of struct variations +union { +}; +}; + +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +static __inline unsigned int (____bswap_32_66) (unsigned int ____bsx_65) { + +if (__static_condition_default_67) { + +{ +{ + + + +__static_type_error("invalid type found in return expression"); +} +} + + +} +} +static __inline ____uint64_t_20 (____bswap_64_69) (____uint64_t_20 ____bsx_68) { + +if (__static_condition_default_67) { + +{ +{ + + + +__static_type_error("invalid type found in return expression"); +} +} + + +} +} +union __wait_81 ;// L66 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern __size_t_1 (____ctype_get_mb_cur_max_105) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_106) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_107) (void );// L139 +extern __size_t_1 (____ctype_get_mb_cur_max_108) (void );// L139 +extern double (__atof_110) (const char * (____nptr_109));// L144:L145 +extern double (__atof_111) (const char * (____nptr_109));// L144:L145 +extern int (__atoi_113) (const char * (____nptr_112));// L147:L148 +extern int (__atoi_114) (const char * (____nptr_112));// L147:L148 +extern long int (__atol_116) (const char * (____nptr_115));// L150:L151 +extern long int (__atol_117) (const char * (____nptr_115));// L150:L151 +extern long long int (__atoll_119) (const char * (____nptr_118));// L157:L158 +extern long long int (__atoll_120) (const char * (____nptr_118));// L157:L158 +extern double (__strtod_123) (const char * __restrict ____nptr_121, char * (* __restrict ____endptr_122));// L164:L166 +extern float (__strtof_126) (const char * __restrict ____nptr_124, char * (* __restrict ____endptr_125));// L172:L173 +extern long double (__strtold_129) (const char * __restrict ____nptr_127, char * (* __restrict ____endptr_128));// L175:L177 +extern long int (__strtol_133) (const char * __restrict ____nptr_130, char * (* __restrict ____endptr_131), int ____base_132);// L183:L185 +extern unsigned long int (__strtoul_137) (const char * __restrict ____nptr_134, char * (* __restrict ____endptr_135), int ____base_136);// L187:L189 +extern long long int (__strtoq_141) (const char * __restrict ____nptr_138, char * (* __restrict ____endptr_139), int ____base_140);// L195:L197 +extern unsigned long long int (__strtouq_145) (const char * __restrict ____nptr_142, char * (* __restrict ____endptr_143), int ____base_144);// L200:L202 +extern long long int (__strtoll_149) (const char * __restrict ____nptr_146, char * (* __restrict ____endptr_147), int ____base_148);// L209:L211 +extern long long int (__strtoll_150) (const char * __restrict ____nptr_146, char * (* __restrict ____endptr_147), int ____base_148);// L209:L211 +extern unsigned long long int (__strtoull_154) (const char * __restrict ____nptr_151, char * (* __restrict ____endptr_152), int ____base_153);// L214:L216 +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +__extension__/* no function due to type errors in the function prototype */ +extern char * ((__l64a_159) (long int ____n_158));// L305 +extern char * ((__l64a_160) (long int ____n_158));// L305 +extern long int (__a64l_162) (const char * (____s_161));// L308:L309 +extern long int (__a64l_163) (const char * (____s_161));// L308:L309 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +static __inline unsigned int (____bswap_32_324) (unsigned int ____bsx_323) { + +if (__static_condition_default_325) { + +{ +{ + + + +__static_type_error("invalid type found in return expression"); +} +} + + +} +} +static __inline ____uint64_t_175 (____bswap_64_327) (____uint64_t_175 ____bsx_326) { + +if (__static_condition_default_325) { + +{ +{ + + + +__static_type_error("invalid type found in return expression"); +} +} + + +} +} +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +struct __timespec_334 ;// L120 + +struct __timeval_342 ;// L30 + +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern int (__select_376) (int ____nfds_365, __fd_set_362 * __restrict ____readfds_366, __fd_set_362 * __restrict ____writefds_368, __fd_set_362 * __restrict ____exceptfds_370, struct __timeval_342 * __restrict ____timeout_373);// L106:L109 +extern int (__select_377) (int ____nfds_365, __fd_set_362 * __restrict ____readfds_366, __fd_set_362 * __restrict ____writefds_368, __fd_set_362 * __restrict ____exceptfds_370, struct __forward_tag_reference_372 * __restrict ____timeout_375);// L106:L109 +extern int (__pselect_392) (int ____nfds_380, __fd_set_362 * __restrict ____readfds_381, __fd_set_362 * __restrict ____writefds_383, __fd_set_362 * __restrict ____exceptfds_385, const struct __timespec_334 * __restrict ____timeout_388, const ____sigset_t_332 * __restrict ____sigmask_391);// L118:L122 +extern int (__pselect_393) (int ____nfds_380, __fd_set_362 * __restrict ____readfds_381, __fd_set_362 * __restrict ____writefds_383, __fd_set_362 * __restrict ____exceptfds_385, const struct __forward_tag_reference_387 * __restrict ____timeout_390, const ____sigset_t_332 * __restrict ____sigmask_391);// L118:L122 +extern long int (____fdelt_chk_397) (long int ____d_396);// L24 +extern long int (____fdelt_warn_399) (long int ____d_398);// L25:L26 +extern unsigned int (__gnu_dev_major_401) (unsigned long long int ____dev_400);// L27:L28 +extern unsigned int (__gnu_dev_major_402) (unsigned long long int ____dev_400);// L27:L28 +extern unsigned int (__gnu_dev_minor_404) (unsigned long long int ____dev_403);// L30:L31 +extern unsigned long long int (__gnu_dev_makedev_407) (unsigned int ____major_405, unsigned int ____minor_406);// L33:L35 +__extension__/* no function due to type errors in the function prototype */ +__extension__/* no function due to type errors in the function prototype */ +__extension__/* no function due to type errors in the function prototype */ +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +union __pthread_attr_t_434 ;// L63 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern int (__rand_465) (void );// L374 +extern void (__srand_467) (unsigned int ____seed_466);// L376 +extern int (__rand_r_469) (unsigned int * (____seed_468));// L381 +extern double (__drand48_470) (void );// L389 +extern double (__erand48_472) (unsigned short int ____xsubi_471[3]);// L390 +extern long int (__lrand48_473) (void );// L393 +extern long int (__nrand48_475) (unsigned short int ____xsubi_474[3]);// L394:L395 +extern long int (__mrand48_476) (void );// L398 +extern long int (__jrand48_478) (unsigned short int ____xsubi_477[3]);// L399:L400 +extern void (__srand48_480) (long int ____seedval_479);// L403 +extern unsigned short int * ((__seed48_482) (unsigned short int ____seed16v_481[3]));// L404:L405 +extern void (__lcong48_484) (unsigned short int ____param_483[7]);// L406 +extern void * ((__malloc_486) (__size_t_1 ____size_485));// L466 +extern void * ((__malloc_487) (__size_t_1 ____size_485));// L466 +extern void * ((__calloc_490) (__size_t_1 ____nmemb_488, __size_t_1 ____size_489));// L468:L469 +extern void * ((__calloc_491) (__size_t_1 ____nmemb_488, __size_t_1 ____size_489));// L468:L469 +extern void * ((__realloc_494) (void * (____ptr_492), __size_t_1 ____size_493));// L480:L481 +extern void (__free_496) (void * (____ptr_495));// L483 +extern void (__cfree_498) (void * (____ptr_497));// L488 +extern void * ((__alloca_500) (__size_t_1 ____size_499));// L32 +extern void * ((__valloc_502) (__size_t_1 ____size_501));// L498 +extern void * ((__valloc_503) (__size_t_1 ____size_501));// L498 +extern int (__posix_memalign_507) (void * (* (____memptr_504)), __size_t_1 ____alignment_505, __size_t_1 ____size_506);// L503:L504 +extern int (__posix_memalign_508) (void * (* (____memptr_504)), __size_t_1 ____alignment_505, __size_t_1 ____size_506);// L503:L504 +extern void * ((__aligned_alloc_511) (__size_t_1 ____alignment_509, __size_t_1 ____size_510));// L509:L510 +extern void * ((__aligned_alloc_512) (__size_t_1 ____alignment_509, __size_t_1 ____size_510));// L509:L510 +extern void * ((__aligned_alloc_513) (__size_t_1 ____alignment_509, __size_t_1 ____size_510));// L509:L510 +extern void * ((__aligned_alloc_514) (__size_t_1 ____alignment_509, __size_t_1 ____size_510));// L509:L510 +extern void (__abort_515) (void );// L515 +extern int (__atexit_517) (void (* (____func_516)) (void ));// L519 +extern int (__at_quick_exit_519) (void (* (____func_518)) (void ));// L527 +extern int (__on_exit_524) (void (* (____func_522)) (int ____status_520, void * (____arg_521)), void * (____arg_523));// L535:L536 +extern void (__exit_526) (int ____status_525);// L543 +extern void (__exit_527) (int ____status_525);// L543 +extern void (__quick_exit_529) (int ____status_528);// L549 +extern void (___Exit_531) (int ____status_530);// L557 +extern char * ((__getenv_533) (const char * (____name_532)));// L564 +extern char * ((__getenv_534) (const char * (____name_532)));// L564 +extern int (__putenv_536) (char * (____string_535));// L578 +extern int (__setenv_540) (const char * (____name_537), const char * (____value_538), int ____replace_539);// L584:L585 +extern int (__unsetenv_542) (const char * (____name_541));// L588 +extern int (__clearenv_543) (void );// L595 +extern char * ((__mktemp_545) (char * (____template_544)));// L606 +extern int (__mkstemp_548) (char * (____template_546));// L619 +extern int (__mkstemp_550) (char * (____template_546));// L619 +extern int (__mkstemp_549) (char * (____template_547));// L622:L623 +extern int (__mkstemp_551) (char * (____template_547));// L622:L623 +extern int (__mkstemps_556) (char * (____template_552), int ____suffixlen_553);// L641 +extern int (__mkstemps_557) (char * (____template_554), int ____suffixlen_555);// L644:L645 +extern int (__mkstemps_558) (char * (____template_552), int ____suffixlen_553);// L641 +extern int (__mkstemps_559) (char * (____template_554), int ____suffixlen_555);// L644:L645 +extern char * ((__mkdtemp_561) (char * (____template_560)));// L662 +extern char * ((__mkdtemp_562) (char * (____template_560)));// L662 +extern int (__system_564) (const char * (____command_563));// L716 +extern int (__system_565) (const char * (____command_563));// L716 +extern int (__system_566) (const char * (____command_563));// L716 +extern int (__system_567) (const char * (____command_563));// L716 +extern char * ((__realpath_570) (const char * __restrict ____name_568, char * __restrict ____resolved_569));// L733:L734 +extern char * ((__realpath_571) (const char * __restrict ____name_568, char * __restrict ____resolved_569));// L733:L734 +// typedef moved to top of scope +extern void * ((__bsearch_580) (const void * (____key_573), const void * (____base_574), __size_t_1 ____nmemb_575, __size_t_1 ____size_576, ____compar_fn_t_572 ____compar_577));// L754:L756 +extern void * ((__bsearch_582) (const void * (____key_573), const void * (____base_574), __size_t_1 ____nmemb_575, __size_t_1 ____size_576, ____compar_fn_t_572 ____compar_577));// L754:L756 +/* no function due to type errors in the function prototype */ +extern void (__qsort_601) (void * (____base_596), __size_t_1 ____nmemb_597, __size_t_1 ____size_598, ____compar_fn_t_572 ____compar_599);// L764:L765 +extern void (__qsort_603) (void * (____base_596), __size_t_1 ____nmemb_597, __size_t_1 ____size_598, ____compar_fn_t_572 ____compar_599);// L764:L765 +extern int (__abs_606) (int ____x_605);// L774 +extern int (__abs_607) (int ____x_605);// L774 +extern long int (__labs_609) (long int ____x_608);// L775 +extern long int (__labs_610) (long int ____x_608);// L775 +extern long long int (__llabs_612) (long long int ____x_611);// L779:L780 +extern long long int (__llabs_613) (long long int ____x_611);// L779:L780 +extern __div_t_94 (__div_616) (int ____numer_614, int ____denom_615);// L788:L789 +extern __div_t_94 (__div_617) (int ____numer_614, int ____denom_615);// L788:L789 +extern __ldiv_t_99 (__ldiv_620) (long int ____numer_618, long int ____denom_619);// L790:L791 +extern __ldiv_t_99 (__ldiv_622) (long int ____numer_618, long int ____denom_619);// L790:L791 +extern __lldiv_t_104 (__lldiv_626) (long long int ____numer_624, long long int ____denom_625);// L796:L798 +extern __lldiv_t_104 (__lldiv_628) (long long int ____numer_624, long long int ____denom_625);// L796:L798 +extern char * ((__ecvt_634) (double ____value_630, int ____ndigit_631, int * __restrict ____decpt_632, int * __restrict ____sign_633));// L811:L812 +extern char * ((__ecvt_635) (double ____value_630, int ____ndigit_631, int * __restrict ____decpt_632, int * __restrict ____sign_633));// L811:L812 +extern char * ((__fcvt_640) (double ____value_636, int ____ndigit_637, int * __restrict ____decpt_638, int * __restrict ____sign_639));// L817:L818 +extern char * ((__fcvt_641) (double ____value_636, int ____ndigit_637, int * __restrict ____decpt_638, int * __restrict ____sign_639));// L817:L818 +extern char * ((__gcvt_645) (double ____value_642, int ____ndigit_643, char * (____buf_644)));// L823:L824 +extern char * ((__gcvt_646) (double ____value_642, int ____ndigit_643, char * (____buf_644)));// L823:L824 +extern char * ((__qecvt_651) (long double ____value_647, int ____ndigit_648, int * __restrict ____decpt_649, int * __restrict ____sign_650));// L829:L831 +extern char * ((__qecvt_652) (long double ____value_647, int ____ndigit_648, int * __restrict ____decpt_649, int * __restrict ____sign_650));// L829:L831 +extern char * ((__qfcvt_657) (long double ____value_653, int ____ndigit_654, int * __restrict ____decpt_655, int * __restrict ____sign_656));// L832:L834 +extern char * ((__qfcvt_658) (long double ____value_653, int ____ndigit_654, int * __restrict ____decpt_655, int * __restrict ____sign_656));// L832:L834 +extern char * ((__qgcvt_662) (long double ____value_659, int ____ndigit_660, char * (____buf_661)));// L835:L836 +extern char * ((__qgcvt_663) (long double ____value_659, int ____ndigit_660, char * (____buf_661)));// L835:L836 +extern int (__ecvt_r_670) (double ____value_664, int ____ndigit_665, int * __restrict ____decpt_666, int * __restrict ____sign_667, char * __restrict ____buf_668, __size_t_1 ____len_669);// L841:L843 +extern int (__fcvt_r_677) (double ____value_671, int ____ndigit_672, int * __restrict ____decpt_673, int * __restrict ____sign_674, char * __restrict ____buf_675, __size_t_1 ____len_676);// L844:L846 +extern int (__qecvt_r_684) (long double ____value_678, int ____ndigit_679, int * __restrict ____decpt_680, int * __restrict ____sign_681, char * __restrict ____buf_682, __size_t_1 ____len_683);// L848:L851 +extern int (__qfcvt_r_691) (long double ____value_685, int ____ndigit_686, int * __restrict ____decpt_687, int * __restrict ____sign_688, char * __restrict ____buf_689, __size_t_1 ____len_690);// L852:L855 +extern int (__mblen_694) (const char * (____s_692), __size_t_1 ____n_693);// L862 +extern int (__mblen_695) (const char * (____s_692), __size_t_1 ____n_693);// L862 +extern int (__mbtowc_699) (__wchar_t_2 * __restrict ____pwc_696, const char * __restrict ____s_697, __size_t_1 ____n_698);// L865:L866 +extern int (__wctomb_702) (char * (____s_700), __wchar_t_2 ____wchar_701);// L869 +extern __size_t_1 (__mbstowcs_706) (__wchar_t_2 * __restrict ____pwcs_703, const char * __restrict ____s_704, __size_t_1 ____n_705);// L873:L874 +extern __size_t_1 (__wcstombs_710) (char * __restrict ____s_707, const __wchar_t_2 * __restrict ____pwcs_708, __size_t_1 ____n_709);// L876:L878 +extern int (__rpmatch_713) (const char * (____response_711));// L887 +extern int (__rpmatch_712) (const char * (____response_711));// L887 +extern int (__getsubopt_718) (char * (* __restrict ____optionp_714), char * const * __restrict ____tokens_715, char * (* __restrict ____valuep_716));// L898:L901 +extern int (__getsubopt_717) (char * (* __restrict ____optionp_714), char * const * __restrict ____tokens_715, char * (* __restrict ____valuep_716));// L898:L901 +extern int (__getloadavg_721) (double ____loadavg_719[], int ____nelem_720);// L950:L951 +/* no function due to type errors in the function prototype */ +extern char * ((____realpath_chk_726) (const char * __restrict ____name_723, char * __restrict ____resolved_724, __size_t_1 ____resolvedlen_725));// L23:L25 +extern char * ((____realpath_alias_729) (const char * __restrict ____name_727, char * __restrict ____resolved_728));// L26:L28 +extern char * ((____realpath_chk_warn_733) (const char * __restrict ____name_730, char * __restrict ____resolved_731, __size_t_1 ____resolvedlen_732));// L29:L34 +/* no function due to type errors in the function prototype */ +extern int (____ptsname_r_chk_741) (int ____fd_737, char * (____buf_738), __size_t_1 ____buflen_739, __size_t_1 ____nreal_740);// L52:L53 +extern int (____ptsname_r_alias_745) (int ____fd_742, char * (____buf_743), __size_t_1 ____buflen_744);// L54:L56 +extern int (____ptsname_r_chk_warn_750) (int ____fd_746, char * (____buf_747), __size_t_1 ____buflen_748, __size_t_1 ____nreal_749);// L57:L61 +/* no function due to type errors in the function prototype */ +extern int (____wctomb_chk_758) (char * (____s_755), __wchar_t_2 ____wchar_756, __size_t_1 ____buflen_757);// L77:L78 +extern int (____wctomb_alias_761) (char * (____s_759), __wchar_t_2 ____wchar_760);// L79:L80 +/* no function due to type errors in the function prototype */ +extern __size_t_1 (____mbstowcs_chk_768) (__wchar_t_2 * __restrict ____dst_764, const char * __restrict ____src_765, __size_t_1 ____len_766, __size_t_1 ____dstlen_767);// L98:L100 +extern __size_t_1 (____mbstowcs_alias_772) (__wchar_t_2 * __restrict ____dst_769, const char * __restrict ____src_770, __size_t_1 ____len_771);// L101:L104 +extern __size_t_1 (____mbstowcs_chk_warn_777) (__wchar_t_2 * __restrict ____dst_773, const char * __restrict ____src_774, __size_t_1 ____len_775, __size_t_1 ____dstlen_776);// L105:L110 +/* no function due to type errors in the function prototype */ +extern __size_t_1 (____wcstombs_chk_785) (char * __restrict ____dst_781, const __wchar_t_2 * __restrict ____src_782, __size_t_1 ____len_783, __size_t_1 ____dstlen_784);// L130:L132 +extern __size_t_1 (____wcstombs_alias_789) (char * __restrict ____dst_786, const __wchar_t_2 * __restrict ____src_787, __size_t_1 ____len_788);// L133:L136 +extern __size_t_1 (____wcstombs_chk_warn_794) (char * __restrict ____dst_790, const __wchar_t_2 * __restrict ____src_791, __size_t_1 ____len_792, __size_t_1 ____dstlen_793);// L137:L141 +/* no function due to type errors in the function prototype */ +static int (__inode_get_rsv_space_802) (void ) { + +{ +{ + + + +__static_type_error("type error : no valid expression"); // L8 +__static_type_error("type error : no valid expression"); // L10 +return 0 ;// L11 +} +} + + +} +static void (__add_dquot_ref_808) (void ) { + +{ +{ + + + +int __reserved_803= 0;// L17 + +int __i_804;// L20 + +int __i_805;// L20 + +int __j_806;// L20 + +int __j_807;// L20 + +if (__static_condition_default_809) { +for ( __i_804 = 0 ; __i_804 < 10 ; __i_804 ++ )// L21 +{ + +{ +{ + + + +__static_type_error("type error : no valid expression"); // L22 +if (__static_condition_default_810) { +if ( rand( ) % 2 )// L23 +{ + +{ +{ + + + +__static_type_error("type error : no valid expression"); // L24 +continue ; // L25 +} +} +} +} +__static_type_error("type error : no valid expression"); // L33 +} +} +} +} +if (__static_condition_default_811) { +for ( __i_805 = 0 ; __i_805 < 10 ; __i_805 ++ )// L21 +{ + +{ +{ + + + +__static_type_error("type error : no valid expression"); // L22 +if (__static_condition_default_812) { +if ( rand( ) % 2 )// L23 +{ + +{ +{ + + + +__static_type_error("type error : no valid expression"); // L24 +continue ; // L25 +} +} +} +} +if ( __inode_get_rsv_space_802 ( ) > 0 )// L29 +{ + __reserved_803 = 1 ; // L30 +} +__static_type_error("type error : no valid expression"); // L33 +} +} +} +} +} +} + + +} +int (__main_815) (int __argc_813, char * (* (__arv_814))) { + +{ +{ + + + + __add_dquot_ref_808 ( ) ; // L38 +return 0 ;// L39 +} +} + + +} + diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.inferres b/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/e1fbd9210d5.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/e1fbd9210d5.desugared.c index acb99776..500b1212 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/e1fbd9210d5.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/e1fbd9210d5.desugared.c @@ -7,282 +7,282 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_646; +extern const bool __static_condition_default_559; +extern const bool __static_condition_default_670; +extern const bool __static_condition_default_1100; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_846; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_894; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_875; +extern const bool __static_condition_default_290; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_613; +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_1107; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_258; extern const bool __static_condition_default_284; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_791; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_636; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_388; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_723; extern const bool __static_condition_default_538; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_204; extern const bool __static_condition_default_568; -extern const bool __static_condition_default_956; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_803; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_872; -extern const bool __static_condition_default_438; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_761; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_779; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_521; extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_278; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_759; +extern const bool __static_condition_default_337; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_967; extern const bool __static_condition_default_317; -extern const bool __static_condition_default_559; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_670; -extern const bool __static_condition_default_210; +extern const bool __static_condition_default_1097; +extern const bool __static_condition_default_523; extern const bool __static_condition_default_623; -extern const bool __static_condition_default_846; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_791; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_661; extern const bool __static_condition_default_702; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_752; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_721; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_1043; extern const bool __static_condition_default_193; -extern const bool __static_condition_default_1106; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_963; -extern const bool __static_condition_default_709; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_333; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_980; +extern const bool __static_condition_default_891; +extern const bool __static_condition_default_311; +extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_1102; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_489; +extern const bool __static_condition_default_536; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_380; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_488; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_779; extern const bool __static_condition_default_769; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_619; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_419; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_255; extern const bool __static_condition_default_602; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_621; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_367; +extern const bool __static_condition_default_907; +extern const bool __static_condition_default_834; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_761; +extern const bool __static_condition_default_382; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_512; extern const bool __static_condition_default_693; -extern const bool __static_condition_default_858; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_1105; -extern const bool __static_condition_default_1096; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_248; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_564; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_1097; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_380; -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_685; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_386; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_1073; extern const bool __static_condition_default_510; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_613; -extern const bool __static_condition_default_894; -extern const bool __static_condition_default_583; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_1107; -extern const bool __static_condition_default_955; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_677; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_365; extern const bool __static_condition_default_755; +extern const bool __static_condition_default_1105; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_735; extern const bool __static_condition_default_789; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_887; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_187; -extern const bool __static_condition_default_842; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_753; -extern const bool __static_condition_default_636; +extern const bool __static_condition_default_955; extern const bool __static_condition_default_1101; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_957; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_388; -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_363; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_84; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_333; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_929; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_685; extern const bool __static_condition_default_408; -extern const bool __static_condition_default_543; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_315; -extern const bool __static_condition_default_217; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_204; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_848; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_274; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_549; +extern const bool __static_condition_default_355; extern const bool __static_condition_default_801; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_645; +extern const bool __static_condition_default_753; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_781; extern const bool __static_condition_default_123; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_875; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_488; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_1100; -extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_536; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_914; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_313; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_550; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_386; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_544; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_842; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_583; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_395; extern const bool __static_condition_default_734; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_780; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_455; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_539; extern const bool __static_condition_default_825; -extern const bool __static_condition_default_412; -extern const bool __static_condition_default_677; -extern const bool __static_condition_default_787; -extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_549; -extern const bool __static_condition_default_347; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_419; +extern const bool __static_condition_default_991; extern const bool __static_condition_default_198; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_290; -extern const bool __static_condition_default_431; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_868; +extern const bool __static_condition_default_1080; extern const bool __static_condition_default_373; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_187; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_76; +extern const bool __static_condition_default_747; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_521; +extern const bool __static_condition_default_347; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_1106; +extern const bool __static_condition_default_658; extern const bool __static_condition_default_1099; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_781; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_341; extern const bool __static_condition_default_745; -extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_402; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_1102; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_747; -extern const bool __static_condition_default_756; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_1096; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_963; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_210; extern const bool __static_condition_default_767; -extern const bool __static_condition_default_929; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_461; -extern const bool __static_condition_default_907; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_638; -extern const bool __static_condition_default_382; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_76; -extern const bool __static_condition_default_793; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_393; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_311; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_701; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_53; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_590; -extern const bool __static_condition_default_632; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_823; extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_891; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_512; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_367; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_357; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_836; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/e1fbd9210d5.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/e1fbd9210d5.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/e1fbd9210d5.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/e1fbd9210d5.inferres b/fonda/cpp_testsuite/varBugs/LINUX/e1fbd9210d5.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/e1fbd9210d5.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.desugared.c index f4bbfb23..14182c4e 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.desugared.c @@ -7,12 +7,12 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); +extern const bool __static_condition_default_4; extern const bool __static_condition_default_5; extern const bool __static_condition_default_6; -extern const bool __static_condition_default_10; -extern const bool __static_condition_default_3; extern const bool __static_condition_default_9; -extern const bool __static_condition_default_4; +extern const bool __static_condition_default_3; +extern const bool __static_condition_default_10; void __static_initializer_default() { __static_renaming("__nondet_0", "nondet"); __static_renaming("__err_1", "err"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.inferres b/fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/e67bc51e574.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/e67bc51e574.desugared.c index 2f1231c6..38b346bc 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/e67bc51e574.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/e67bc51e574.desugared.c @@ -7,15 +7,25 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); +extern const bool __static_condition_default_3; +extern const bool __static_condition_default_4; +extern const bool __static_condition_default_8; void __static_initializer_default() { __static_renaming("__trace_dump_stack_1", "trace_dump_stack"); -__static_renaming("__main_4", "main"); +__static_renaming("__trace_dump_stack_2", "trace_dump_stack"); +__static_renaming("__main_7", "main"); +__static_condition_renaming("__static_condition_default_3", "(defined CONFIG_TRACING)"); +__static_condition_renaming("__static_condition_default_4", "!(defined CONFIG_TRACING)"); +__static_condition_renaming("__static_condition_default_8", "!(defined CONFIG_TRACING)"); }; void (__trace_dump_stack_1) (int __skip_0) { +{ +if (__static_condition_default_3) { + { { @@ -27,14 +37,38 @@ return ;// L4 } -int (__main_4) (int __argc_2, char * (* (__argv_3))) { + +}} +static inline void (__trace_dump_stack_2) (void ) { + +{ +if (__static_condition_default_4) { { { +} +} + + +} + +}} +int (__main_7) (int __argc_5, char * (* (__argv_6))) { + +{ +{ + + + +if (__static_condition_default_3) { __trace_dump_stack_1 (0) ; // L11 +} +if (__static_condition_default_8) { +__static_type_error("type error") ; // L11 +} return 0 ;// L12 } } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/e67bc51e574.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/e67bc51e574.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/e67bc51e574.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/e67bc51e574.inferres b/fonda/cpp_testsuite/varBugs/LINUX/e67bc51e574.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.desugared.c index 4b974551..2765b22e 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.desugared.c @@ -7,36 +7,36 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_66; -extern const bool __static_condition_default_41; +extern const bool __static_condition_default_22; +extern const bool __static_condition_default_34; +extern const bool __static_condition_default_23; +extern const bool __static_condition_default_74; +extern const bool __static_condition_default_42; +extern const bool __static_condition_default_83; +extern const bool __static_condition_default_77; +extern const bool __static_condition_default_24; extern const bool __static_condition_default_60; extern const bool __static_condition_default_32; -extern const bool __static_condition_default_67; -extern const bool __static_condition_default_47; extern const bool __static_condition_default_58; -extern const bool __static_condition_default_68; -extern const bool __static_condition_default_42; -extern const bool __static_condition_default_81; -extern const bool __static_condition_default_23; -extern const bool __static_condition_default_24; +extern const bool __static_condition_default_41; extern const bool __static_condition_default_57; -extern const bool __static_condition_default_25; -extern const bool __static_condition_default_74; -extern const bool __static_condition_default_48; -extern const bool __static_condition_default_77; -extern const bool __static_condition_default_39; -extern const bool __static_condition_default_22; extern const bool __static_condition_default_33; -extern const bool __static_condition_default_70; -extern const bool __static_condition_default_83; +extern const bool __static_condition_default_48; extern const bool __static_condition_default_65; +extern const bool __static_condition_default_70; +extern const bool __static_condition_default_69; +extern const bool __static_condition_default_67; +extern const bool __static_condition_default_68; extern const bool __static_condition_default_40; -extern const bool __static_condition_default_59; extern const bool __static_condition_default_75; +extern const bool __static_condition_default_25; +extern const bool __static_condition_default_47; +extern const bool __static_condition_default_59; +extern const bool __static_condition_default_81; +extern const bool __static_condition_default_39; extern const bool __static_condition_default_76; -extern const bool __static_condition_default_34; +extern const bool __static_condition_default_66; extern const bool __static_condition_default_72; -extern const bool __static_condition_default_69; void __static_initializer_default() { __static_renaming("____assert_fail_4", "__assert_fail"); __static_renaming("____assert_perror_fail_9", "__assert_perror_fail"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.inferres b/fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.desugared.c index 9421db00..8cffba32 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.desugared.c @@ -7,85 +7,85 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_821; -extern const bool __static_condition_default_234; -extern const bool __static_condition_default_341; +extern const bool __static_condition_default_832; +extern const bool __static_condition_default_423; extern const bool __static_condition_default_305; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_817; +extern const bool __static_condition_default_420; extern const bool __static_condition_default_594; -extern const bool __static_condition_default_581; -extern const bool __static_condition_default_629; -extern const bool __static_condition_default_426; -extern const bool __static_condition_default_67; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_429; -extern const bool __static_condition_default_826; -extern const bool __static_condition_default_827; -extern const bool __static_condition_default_258; +extern const bool __static_condition_default_821; extern const bool __static_condition_default_803; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_811; -extern const bool __static_condition_default_579; -extern const bool __static_condition_default_308; +extern const bool __static_condition_default_352; +extern const bool __static_condition_default_822; +extern const bool __static_condition_default_246; extern const bool __static_condition_default_288; -extern const bool __static_condition_default_252; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_818; -extern const bool __static_condition_default_237; +extern const bool __static_condition_default_827; +extern const bool __static_condition_default_308; +extern const bool __static_condition_default_834; +extern const bool __static_condition_default_815; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_804; +extern const bool __static_condition_default_429; +extern const bool __static_condition_default_234; +extern const bool __static_condition_default_414; +extern const bool __static_condition_default_432; extern const bool __static_condition_default_267; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_379; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_302; +extern const bool __static_condition_default_818; +extern const bool __static_condition_default_255; extern const bool __static_condition_default_813; -extern const bool __static_condition_default_604; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_829; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_581; +extern const bool __static_condition_default_243; extern const bool __static_condition_default_627; extern const bool __static_condition_default_802; -extern const bool __static_condition_default_394; -extern const bool __static_condition_default_825; +extern const bool __static_condition_default_276; +extern const bool __static_condition_default_279; +extern const bool __static_condition_default_426; +extern const bool __static_condition_default_604; +extern const bool __static_condition_default_273; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_361; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_828; +extern const bool __static_condition_default_595; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_349; +extern const bool __static_condition_default_325; +extern const bool __static_condition_default_237; +extern const bool __static_condition_default_378; extern const bool __static_condition_default_270; extern const bool __static_condition_default_820; -extern const bool __static_condition_default_832; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_804; -extern const bool __static_condition_default_379; -extern const bool __static_condition_default_325; -extern const bool __static_condition_default_273; -extern const bool __static_condition_default_423; -extern const bool __static_condition_default_808; -extern const bool __static_condition_default_261; +extern const bool __static_condition_default_285; +extern const bool __static_condition_default_293; extern const bool __static_condition_default_417; -extern const bool __static_condition_default_378; -extern const bool __static_condition_default_215; -extern const bool __static_condition_default_822; +extern const bool __static_condition_default_826; extern const bool __static_condition_default_833; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_349; -extern const bool __static_condition_default_420; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_829; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_808; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_252; +extern const bool __static_condition_default_579; +extern const bool __static_condition_default_261; extern const bool __static_condition_default_240; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_60; -extern const bool __static_condition_default_361; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_243; -extern const bool __static_condition_default_828; -extern const bool __static_condition_default_302; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_279; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_276; +extern const bool __static_condition_default_811; +extern const bool __static_condition_default_394; extern const bool __static_condition_default_824; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_815; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_352; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_414; -extern const bool __static_condition_default_285; -extern const bool __static_condition_default_595; +extern const bool __static_condition_default_67; +extern const bool __static_condition_default_215; +extern const bool __static_condition_default_60; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_629; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.inferres b/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/f3d83e24154.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/f3d83e24154.desugared.c index 04e56bdc..855c40aa 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/f3d83e24154.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/f3d83e24154.desugared.c @@ -7,24 +7,24 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_230; -extern const bool __static_condition_default_212; -extern const bool __static_condition_default_191; -extern const bool __static_condition_default_232; extern const bool __static_condition_default_5; -extern const bool __static_condition_default_14; -extern const bool __static_condition_default_221; -extern const bool __static_condition_default_176; +extern const bool __static_condition_default_191; +extern const bool __static_condition_default_212; extern const bool __static_condition_default_222; +extern const bool __static_condition_default_221; +extern const bool __static_condition_default_14; +extern const bool __static_condition_default_183; +extern const bool __static_condition_default_232; extern const bool __static_condition_default_225; -extern const bool __static_condition_default_224; +extern const bool __static_condition_default_209; extern const bool __static_condition_default_231; -extern const bool __static_condition_default_192; -extern const bool __static_condition_default_183; -extern const bool __static_condition_default_216; extern const bool __static_condition_default_223; +extern const bool __static_condition_default_176; extern const bool __static_condition_default_196; -extern const bool __static_condition_default_209; +extern const bool __static_condition_default_224; +extern const bool __static_condition_default_216; +extern const bool __static_condition_default_230; +extern const bool __static_condition_default_192; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/f3d83e24154.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/f3d83e24154.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/f3d83e24154.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/f3d83e24154.inferres b/fonda/cpp_testsuite/varBugs/LINUX/f3d83e24154.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/f48ec1d7885.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/f48ec1d7885.desugared.c index 5d3bb2eb..167f04d1 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/f48ec1d7885.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/f48ec1d7885.desugared.c @@ -7,13 +7,43 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); +extern const bool __static_condition_default_5; +extern const bool __static_condition_default_6; +extern const bool __static_condition_default_2; void __static_initializer_default() { -__static_renaming("__main_0", "main"); +__static_renaming("__d_0", "d"); +__static_renaming("__cfq_scale_slice_1", "cfq_scale_slice"); +__static_renaming("__main_3", "main"); +__static_renaming("__main_4", "main"); +__static_condition_renaming("__static_condition_default_2", "(defined CONFIG_IOSCHED_CFQ)"); +__static_condition_renaming("__static_condition_default_5", "!(defined CONFIG_IOSCHED_CFQ)"); +__static_condition_renaming("__static_condition_default_6", "(defined CONFIG_IOSCHED_CFQ)"); }; -int (__main_0) () { +static long (__cfq_scale_slice_1) () { + +if (__static_condition_default_2) { + +{ +{ + + + +long __d_0= 1;// L8 + +__static_type_error("type error : no valid expression"); // L9 +return __d_0 ;// L10 +} +} + + +} +} +int (__main_3) () { + +if (__static_condition_default_5) { { { @@ -26,4 +56,22 @@ return 0 ;// L20 } +} +int (__main_4) () { + +if (__static_condition_default_6) { + +{ +{ + + + + __cfq_scale_slice_1 ( ) ; // L18 +return 0 ;// L20 +} +} + + +} +} diff --git a/fonda/cpp_testsuite/varBugs/LINUX/f48ec1d7885.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/f48ec1d7885.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/f48ec1d7885.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/f48ec1d7885.inferres b/fonda/cpp_testsuite/varBugs/LINUX/f48ec1d7885.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/LINUX/f7ab9b407b3.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/f7ab9b407b3.desugared.c index 1d11abc6..95eb3b2a 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/f7ab9b407b3.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/f7ab9b407b3.desugared.c @@ -7,13 +7,13 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_40; +extern const bool __static_condition_default_10; extern const bool __static_condition_default_8; extern const bool __static_condition_default_9; extern const bool __static_condition_default_7; -extern const bool __static_condition_default_10; -extern const bool __static_condition_default_14; +extern const bool __static_condition_default_40; extern const bool __static_condition_default_41; +extern const bool __static_condition_default_14; void __static_initializer_default() { __static_renaming("__filler_t_0", "filler_t"); __static_renaming("__some_fun_2", "some_fun"); diff --git a/fonda/cpp_testsuite/varBugs/LINUX/f7ab9b407b3.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/f7ab9b407b3.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/f7ab9b407b3.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/f7ab9b407b3.inferres b/fonda/cpp_testsuite/varBugs/LINUX/f7ab9b407b3.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/LINUX/f7ab9b407b3.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN-2d22902d080.report b/fonda/cpp_testsuite/varBugs/MARLIN-2d22902d080.report index ef8500d4..fa1de4c3 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN-2d22902d080.report +++ b/fonda/cpp_testsuite/varBugs/MARLIN-2d22902d080.report @@ -3,4 +3,8 @@ Macros: SDSUPPORT [-USDSUPPORT ] Desugared Clang Results: +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/MARLIN-2db384a21d6.report b/fonda/cpp_testsuite/varBugs/MARLIN-2db384a21d6.report index 9c3da19b..61434f8a 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN-2db384a21d6.report +++ b/fonda/cpp_testsuite/varBugs/MARLIN-2db384a21d6.report @@ -7,4 +7,8 @@ Macros: [-UMESH_BED_LEVELING -DDISABLE_M503=1 ] [-DMESH_BED_LEVELING=1 -DDISABLE_M503=1 ] Desugared Clang Results: +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/MARLIN-30248214c7f.report b/fonda/cpp_testsuite/varBugs/MARLIN-30248214c7f.report index ef7f1f47..49ff0e69 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN-30248214c7f.report +++ b/fonda/cpp_testsuite/varBugs/MARLIN-30248214c7f.report @@ -3,4 +3,8 @@ Macros: defined [-Udefined ] Desugared Clang Results: +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/MARLIN-31873ec707d.report b/fonda/cpp_testsuite/varBugs/MARLIN-31873ec707d.report index 49b27502..744814e2 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN-31873ec707d.report +++ b/fonda/cpp_testsuite/varBugs/MARLIN-31873ec707d.report @@ -3,4 +3,8 @@ Macros: ULTRA_LCD [-UULTRA_LCD ] Desugared Clang Results: +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/MARLIN-53be0f3399e.report b/fonda/cpp_testsuite/varBugs/MARLIN-53be0f3399e.report index 3dab2ea8..d0fef5bb 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN-53be0f3399e.report +++ b/fonda/cpp_testsuite/varBugs/MARLIN-53be0f3399e.report @@ -6,5 +6,4 @@ Macros: [-DBABYSTEPPING=1 -UDELTA ] [-UBABYSTEPPING -DDELTA=1 ] [-DBABYSTEPPING=1 -DDELTA=1 ] -Desugared Clang Results: -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/MARLIN-7336e6df070.report b/fonda/cpp_testsuite/varBugs/MARLIN-7336e6df070.report index 6a1bb234..192ec294 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN-7336e6df070.report +++ b/fonda/cpp_testsuite/varBugs/MARLIN-7336e6df070.report @@ -21,4 +21,8 @@ Macros: [-UZ_DUAL_STEPPER_DRIVERS -DZ_DUAL_ENDSTOPS=1 -DHAS_Z_MIN=1 -DHAS_Z_MAX=1 ] [-DZ_DUAL_STEPPER_DRIVERS=1 -DZ_DUAL_ENDSTOPS=1 -DHAS_Z_MIN=1 -DHAS_Z_MAX=1 ] Desugared Clang Results: +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/MARLIN-831016b09f7.report b/fonda/cpp_testsuite/varBugs/MARLIN-831016b09f7.report index e30c1b70..420e0786 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN-831016b09f7.report +++ b/fonda/cpp_testsuite/varBugs/MARLIN-831016b09f7.report @@ -7,4 +7,12 @@ Macros: [-UULTRA_LCD -DSDSUPPORT=1 ] [-DULTRA_LCD=1 -DSDSUPPORT=1 ] Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.desugared.c:81:7: warning: Value stored to '__time_7' during its initialization is never read [deadcode.DeadStores] +char __time_7[30]= "time_here";// L14 + ^~~~~~~~ ~~~~~~~~~~~ +1 warning generated. +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/MARLIN-8c4377dd635.report b/fonda/cpp_testsuite/varBugs/MARLIN-8c4377dd635.report index 33f21ae9..3a0bad9f 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN-8c4377dd635.report +++ b/fonda/cpp_testsuite/varBugs/MARLIN-8c4377dd635.report @@ -4,29 +4,35 @@ Macros: PIDTEMP PID_DEBUG [-UMARLIN_H -UPIDTEMP -UPID_DEBUG ] -1 :: Line:19 +clang :: 1 :: Line:19 Value stored to 'pid_output' is never read [deadcode.DeadStores] [-DMARLIN_H=1 -UPIDTEMP -UPID_DEBUG ] -2 :: Line:19 +clang :: 2 :: Line:19 Value stored to 'pid_output' is never read [deadcode.DeadStores] [-UMARLIN_H -DPIDTEMP=1 -UPID_DEBUG ] [-DMARLIN_H=1 -DPIDTEMP=1 -UPID_DEBUG ] [-UMARLIN_H -UPIDTEMP -DPID_DEBUG=1 ] -3 :: Line:19 +clang :: 3 :: Line:19 Value stored to 'pid_output' is never read [deadcode.DeadStores] [-DMARLIN_H=1 -UPIDTEMP -DPID_DEBUG=1 ] -4 :: Line:19 +clang :: 4 :: Line:19 Value stored to 'pid_output' is never read [deadcode.DeadStores] [-UMARLIN_H -DPIDTEMP=1 -DPID_DEBUG=1 ] [-DMARLIN_H=1 -DPIDTEMP=1 -DPID_DEBUG=1 ] [-UMARLIN_H -UPIDTEMP -UPID_DEBUG ] -5 :: Line:19 +clang :: 5 :: Line:19 Value stored to 'pid_output' is never read [deadcode.DeadStores] Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.c:59:2: warning: Value stored to '__pid_output_0' is never read [deadcode.DeadStores] - __pid_output_0 = 0 ; // L19 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.c:94:2: warning: Value stored to '__pid_output_4' is never read [deadcode.DeadStores] + __pid_output_4 = 0 ; // L19 ^ ~ -1 warning generated. +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.c:138:2: warning: Value stored to '__pid_output_4' is never read [deadcode.DeadStores] + __pid_output_4 = 0 ; // L19 + ^ ~ +2 warnings generated. +Desugared Infer Results: + + No issues found Matches: 1 has a match! 2 has a match! @@ -35,3 +41,4 @@ Matches: 5 has a match! Unmatched ids: None! +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/MARLIN-a7fc1f83c81.report b/fonda/cpp_testsuite/varBugs/MARLIN-a7fc1f83c81.report index 9e14f4d1..1d0d1a6a 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN-a7fc1f83c81.report +++ b/fonda/cpp_testsuite/varBugs/MARLIN-a7fc1f83c81.report @@ -3,4 +3,18 @@ Macros: SDSUPPORT [-USDSUPPORT ] Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.c:199:6: warning: Value stored to '__len_217' during its initialization is never read [deadcode.DeadStores] +int __len_217= __strlen_108 ( __prepend_216 ) + 13 + 1;// L10 + ^~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.c:201:6: warning: Value stored to '__len_218' during its initialization is never read [deadcode.DeadStores] +int __len_218= __strlen_109 ( __prepend_216 ) + 13 + 1;// L10 + ^~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.c:211:7: warning: Value stored to '__lfilename_221' during its initialization is never read [deadcode.DeadStores] +char __lfilename_221[13]= "FOLDERNAME12\0";// L15 + ^~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~ +3 warnings generated. +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/MARLIN-b8e79dce897.report b/fonda/cpp_testsuite/varBugs/MARLIN-b8e79dce897.report index 238d21fb..4e5f7a81 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN-b8e79dce897.report +++ b/fonda/cpp_testsuite/varBugs/MARLIN-b8e79dce897.report @@ -13,4 +13,8 @@ Macros: [-DULTRA_LCD=1 -DENCODER_RATE_MULTIPLIER=1 -DTEMP_SENSOR_0=1 ] [-UULTRA_LCD -UENCODER_RATE_MULTIPLIER -UTEMP_SENSOR_0 ] Desugared Clang Results: +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/MARLIN-e30bfedce4d.report b/fonda/cpp_testsuite/varBugs/MARLIN-e30bfedce4d.report index 35db9d9f..e7beb40d 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN-e30bfedce4d.report +++ b/fonda/cpp_testsuite/varBugs/MARLIN-e30bfedce4d.report @@ -4,19 +4,23 @@ Macros: AUTO_BED_LEVELING_GRID [-UENABLE_AUTO_BED_LEVELING -UAUTO_BED_LEVELING_GRID ] [-DENABLE_AUTO_BED_LEVELING=1 -UAUTO_BED_LEVELING_GRID ] -8 :: Line:24 +clang :: 8 :: Line:24 Value stored to 'xGridSpacing' during its initialization is never read [deadcode.DeadStores] [-UENABLE_AUTO_BED_LEVELING -DAUTO_BED_LEVELING_GRID=1 ] [-DENABLE_AUTO_BED_LEVELING=1 -DAUTO_BED_LEVELING_GRID=1 ] -9 :: Line:24 +clang :: 9 :: Line:24 Value stored to 'xGridSpacing' during its initialization is never read [deadcode.DeadStores] Desugared Clang Results: /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.desugared.c:48:6: warning: Value stored to '__xGridSpacing_1' during its initialization is never read [deadcode.DeadStores] int __xGridSpacing_1= __left_probe_bed_position_0 ;// L24 ^~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~ 1 warning generated. +Desugared Infer Results: + + No issues found Matches: 8 has a match! 9 has a match! Unmatched ids: None! +Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/MARLIN-f87c80889fe.report b/fonda/cpp_testsuite/varBugs/MARLIN-f87c80889fe.report index 2a9e141a..bc02965c 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN-f87c80889fe.report +++ b/fonda/cpp_testsuite/varBugs/MARLIN-f87c80889fe.report @@ -3,4 +3,8 @@ Macros: TEMP_RESIDENCY_TIME [-UTEMP_RESIDENCY_TIME ] Desugared Clang Results: +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/MARLIN-fc3c76fc164.report b/fonda/cpp_testsuite/varBugs/MARLIN-fc3c76fc164.report index e5921d28..92c51aef 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN-fc3c76fc164.report +++ b/fonda/cpp_testsuite/varBugs/MARLIN-fc3c76fc164.report @@ -7,4 +7,8 @@ Macros: [-UHAS_HEATER_THERMAL_PROTECTION -DHAS_BED_THERMAL_PROTECTION=1 ] [-DHAS_HEATER_THERMAL_PROTECTION=1 -DHAS_BED_THERMAL_PROTECTION=1 ] Desugared Clang Results: +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/MARLIN-fdac8f6cece.report b/fonda/cpp_testsuite/varBugs/MARLIN-fdac8f6cece.report index f0f395d0..8c430303 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN-fdac8f6cece.report +++ b/fonda/cpp_testsuite/varBugs/MARLIN-fdac8f6cece.report @@ -3,4 +3,8 @@ Macros: ENABLE_AUTO_BED_LEVELING [-UENABLE_AUTO_BED_LEVELING ] Desugared Clang Results: +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/2d22902d080.desugared.c b/fonda/cpp_testsuite/varBugs/MARLIN/2d22902d080.desugared.c index fb934faf..f62c53c5 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/2d22902d080.desugared.c +++ b/fonda/cpp_testsuite/varBugs/MARLIN/2d22902d080.desugared.c @@ -7,21 +7,20 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); +extern const bool __static_condition_default_190; +extern const bool __static_condition_default_221; +extern const bool __static_condition_default_220; +extern const bool __static_condition_default_195; +extern const bool __static_condition_default_208; +extern const bool __static_condition_default_211; +extern const bool __static_condition_default_227; extern const bool __static_condition_default_223; -extern const bool __static_condition_default_224; -extern const bool __static_condition_default_183; -extern const bool __static_condition_default_225; -extern const bool __static_condition_default_209; -extern const bool __static_condition_default_226; -extern const bool __static_condition_default_192; -extern const bool __static_condition_default_212; +extern const bool __static_condition_default_175; +extern const bool __static_condition_default_215; extern const bool __static_condition_default_222; extern const bool __static_condition_default_191; -extern const bool __static_condition_default_216; -extern const bool __static_condition_default_221; +extern const bool __static_condition_default_182; extern const bool __static_condition_default_13; -extern const bool __static_condition_default_196; -extern const bool __static_condition_default_176; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -45,62 +44,63 @@ __static_renaming("__strxfrm_l_72", "strxfrm_l"); __static_renaming("__strdup_74", "strdup"); __static_renaming("__strndup_77", "strndup"); __static_renaming("__strchr_80", "strchr"); -__static_renaming("__strchr_81", "strchr"); -__static_renaming("__strrchr_84", "strrchr"); -__static_renaming("__strcspn_87", "strcspn"); -__static_renaming("__strspn_90", "strspn"); -__static_renaming("__strpbrk_93", "strpbrk"); -__static_renaming("__strstr_96", "strstr"); -__static_renaming("__strtok_99", "strtok"); -__static_renaming("____strtok_r_103", "__strtok_r"); -__static_renaming("__strtok_r_107", "strtok_r"); +__static_renaming("__strrchr_83", "strrchr"); +__static_renaming("__strcspn_86", "strcspn"); +__static_renaming("__strspn_89", "strspn"); +__static_renaming("__strpbrk_92", "strpbrk"); +__static_renaming("__strstr_95", "strstr"); +__static_renaming("__strtok_98", "strtok"); +__static_renaming("____strtok_r_102", "__strtok_r"); +__static_renaming("__strtok_r_106", "strtok_r"); +__static_renaming("__strlen_108", "strlen"); __static_renaming("__strlen_109", "strlen"); -__static_renaming("__strlen_110", "strlen"); -__static_renaming("__strnlen_113", "strnlen"); +__static_renaming("__strnlen_112", "strnlen"); +__static_renaming("__strerror_114", "strerror"); __static_renaming("__strerror_115", "strerror"); -__static_renaming("__strerror_116", "strerror"); -__static_renaming("__strerror_r_120", "strerror_r"); -__static_renaming("__strerror_l_123", "strerror_l"); +__static_renaming("__strerror_r_119", "strerror_r"); +__static_renaming("__strerror_l_122", "strerror_l"); +__static_renaming("____bzero_125", "__bzero"); __static_renaming("____bzero_126", "__bzero"); -__static_renaming("____bzero_127", "__bzero"); -__static_renaming("__bcopy_131", "bcopy"); -__static_renaming("__bzero_134", "bzero"); -__static_renaming("__bcmp_138", "bcmp"); -__static_renaming("__index_141", "index"); -__static_renaming("__rindex_144", "rindex"); -__static_renaming("__ffs_146", "ffs"); -__static_renaming("__strcasecmp_149", "strcasecmp"); -__static_renaming("__strncasecmp_153", "strncasecmp"); -__static_renaming("__strsep_156", "strsep"); -__static_renaming("__strsignal_158", "strsignal"); -__static_renaming("____stpcpy_161", "__stpcpy"); -__static_renaming("__stpcpy_164", "stpcpy"); -__static_renaming("____stpncpy_168", "__stpncpy"); -__static_renaming("__stpncpy_172", "stpncpy"); -__static_renaming("____stpncpy_chk_201", "__stpncpy_chk"); -__static_renaming("____stpncpy_alias_205", "__stpncpy_alias"); +__static_renaming("__bcopy_130", "bcopy"); +__static_renaming("__bzero_133", "bzero"); +__static_renaming("__bcmp_137", "bcmp"); +__static_renaming("__index_140", "index"); +__static_renaming("__rindex_143", "rindex"); +__static_renaming("__ffs_145", "ffs"); +__static_renaming("__strcasecmp_148", "strcasecmp"); +__static_renaming("__strncasecmp_152", "strncasecmp"); +__static_renaming("__strsep_155", "strsep"); +__static_renaming("__strsignal_157", "strsignal"); +__static_renaming("____stpcpy_160", "__stpcpy"); +__static_renaming("__stpcpy_163", "stpcpy"); +__static_renaming("____stpncpy_167", "__stpncpy"); +__static_renaming("__stpncpy_171", "stpncpy"); +__static_renaming("____stpncpy_chk_200", "__stpncpy_chk"); +__static_renaming("____stpncpy_alias_204", "__stpncpy_alias"); +__static_renaming("__strchr_pointer_216", "strchr_pointer"); __static_renaming("__strchr_pointer_217", "strchr_pointer"); -__static_renaming("__strchr_pointer_218", "strchr_pointer"); -__static_renaming("__starpos_219", "starpos"); -__static_renaming("__process_commands_220", "process_commands"); -__static_renaming("__main_229", "main"); +__static_renaming("__starpos_218", "starpos"); +__static_renaming("__process_commands_219", "process_commands"); +__static_renaming("__main_226", "main"); __static_condition_renaming("__static_condition_default_13", "!(defined __STRICT_ANSI__)"); -__static_condition_renaming("__static_condition_default_176", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_183", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_191", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_192", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_196", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_209", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_212", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_216", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_221", "!(defined SDSUPPORT)"); -__static_condition_renaming("__static_condition_default_222", "(defined SDSUPPORT)"); -__static_condition_renaming("__static_condition_default_223", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined SDSUPPORT) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined SDSUPPORT) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined SDSUPPORT) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined SDSUPPORT)"); -__static_condition_renaming("__static_condition_default_224", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined SDSUPPORT)"); -__static_condition_renaming("__static_condition_default_225", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined SDSUPPORT) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined SDSUPPORT) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined SDSUPPORT) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined SDSUPPORT)"); -__static_condition_renaming("__static_condition_default_226", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined SDSUPPORT)"); - +__static_condition_renaming("__static_condition_default_175", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_182", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_190", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_191", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_195", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_208", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_211", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_215", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_220", "!(defined SDSUPPORT)"); +__static_condition_renaming("__static_condition_default_221", "(defined SDSUPPORT)"); +__static_condition_renaming("__static_condition_default_222", "!(defined _FORTIFY_SOURCE) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined SDSUPPORT) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined SDSUPPORT) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined SDSUPPORT) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined SDSUPPORT)"); +__static_condition_renaming("__static_condition_default_223", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __CORRECT_ISO_CPP_STRING_H_PROTO) && (defined SDSUPPORT)"); +__static_condition_renaming("__static_condition_default_227", "(defined __CORRECT_ISO_CPP_STRING_H_PROTO)"); + +if (__static_condition_default_227) { +__static_parse_error("Unable to parse"); +} }; typedef long int __ptrdiff_t_0;// L143:L324 typedef long unsigned int __size_t_1;// L177:L209 @@ -141,38 +141,37 @@ extern __size_t_1 (__strxfrm_l_72) (char * (____dest_68), const char * (____s extern char * ((__strdup_74) (const char * (____s_73)));// L171:L172 extern char * ((__strndup_77) (const char * (____string_75), __size_t_1 ____n_76));// L179:L180 extern char * ((__strchr_80) (const char * (____s_78), int ____c_79));// L231:L232 -extern char * ((__strchr_81) (const char * (____s_78), int ____c_79));// L231:L232 -extern char * ((__strrchr_84) (const char * (____s_82), int ____c_83));// L258:L259 -extern __size_t_1 (__strcspn_87) (const char * (____s_85), const char * (____reject_86));// L280:L281 -extern __size_t_1 (__strspn_90) (const char * (____s_88), const char * (____accept_89));// L284:L285 -extern char * ((__strpbrk_93) (const char * (____s_91), const char * (____accept_92)));// L310:L311 -extern char * ((__strstr_96) (const char * (____haystack_94), const char * (____needle_95)));// L337:L338 -extern char * ((__strtok_99) (char * __restrict ____s_97, const char * __restrict ____delim_98));// L343:L344 -extern char * ((____strtok_r_103) (char * __restrict ____s_100, const char * __restrict ____delim_101, char * (* __restrict ____save_ptr_102)));// L349:L352 -extern char * ((__strtok_r_107) (char * __restrict ____s_104, const char * __restrict ____delim_105, char * (* __restrict ____save_ptr_106)));// L354:L356 -extern __size_t_1 (__strlen_109) (const char * (____s_108));// L394:L395 -extern __size_t_1 (__strlen_110) (const char * (____s_108));// L394:L395 -extern __size_t_1 (__strnlen_113) (const char * (____string_111), __size_t_1 ____maxlen_112);// L401:L402 -extern char * ((__strerror_115) (int ____errnum_114));// L408 -extern char * ((__strerror_116) (int ____errnum_114));// L408 -extern int (__strerror_r_120) (int ____errnum_117, char * (____buf_118), __size_t_1 ____buflen_119);// L422:L424 -extern char * ((__strerror_l_123) (int ____errnum_121, ____locale_t_62 ____l_122));// L440 -extern void (____bzero_126) (void * (____s_124), __size_t_1 ____n_125);// L446 -extern void (____bzero_127) (void * (____s_124), __size_t_1 ____n_125);// L446 -extern void (__bcopy_131) (const void * (____src_128), void * (____dest_129), __size_t_1 ____n_130);// L450:L451 -extern void (__bzero_134) (void * (____s_132), __size_t_1 ____n_133);// L454 -extern int (__bcmp_138) (const void * (____s1_135), const void * (____s2_136), __size_t_1 ____n_137);// L457:L458 -extern char * ((__index_141) (const char * (____s_139), int ____c_140));// L484:L485 -extern char * ((__rindex_144) (const char * (____s_142), int ____c_143));// L512:L513 -extern int (__ffs_146) (int ____i_145);// L518 -extern int (__strcasecmp_149) (const char * (____s1_147), const char * (____s2_148));// L529:L530 -extern int (__strncasecmp_153) (const char * (____s1_150), const char * (____s2_151), __size_t_1 ____n_152);// L533:L534 -extern char * ((__strsep_156) (char * (* __restrict ____stringp_154), const char * __restrict ____delim_155));// L552:L554 -extern char * ((__strsignal_158) (int ____sig_157));// L559 -extern char * ((____stpcpy_161) (char * __restrict ____dest_159, const char * __restrict ____src_160));// L562:L563 -extern char * ((__stpcpy_164) (char * __restrict ____dest_162, const char * __restrict ____src_163));// L564:L565 -extern char * ((____stpncpy_168) (char * __restrict ____dest_165, const char * __restrict ____src_166, __size_t_1 ____n_167));// L569:L571 -extern char * ((__stpncpy_172) (char * __restrict ____dest_169, const char * __restrict ____src_170, __size_t_1 ____n_171));// L572:L574 +extern char * ((__strrchr_83) (const char * (____s_81), int ____c_82));// L258:L259 +extern __size_t_1 (__strcspn_86) (const char * (____s_84), const char * (____reject_85));// L280:L281 +extern __size_t_1 (__strspn_89) (const char * (____s_87), const char * (____accept_88));// L284:L285 +extern char * ((__strpbrk_92) (const char * (____s_90), const char * (____accept_91)));// L310:L311 +extern char * ((__strstr_95) (const char * (____haystack_93), const char * (____needle_94)));// L337:L338 +extern char * ((__strtok_98) (char * __restrict ____s_96, const char * __restrict ____delim_97));// L343:L344 +extern char * ((____strtok_r_102) (char * __restrict ____s_99, const char * __restrict ____delim_100, char * (* __restrict ____save_ptr_101)));// L349:L352 +extern char * ((__strtok_r_106) (char * __restrict ____s_103, const char * __restrict ____delim_104, char * (* __restrict ____save_ptr_105)));// L354:L356 +extern __size_t_1 (__strlen_108) (const char * (____s_107));// L394:L395 +extern __size_t_1 (__strlen_109) (const char * (____s_107));// L394:L395 +extern __size_t_1 (__strnlen_112) (const char * (____string_110), __size_t_1 ____maxlen_111);// L401:L402 +extern char * ((__strerror_114) (int ____errnum_113));// L408 +extern char * ((__strerror_115) (int ____errnum_113));// L408 +extern int (__strerror_r_119) (int ____errnum_116, char * (____buf_117), __size_t_1 ____buflen_118);// L422:L424 +extern char * ((__strerror_l_122) (int ____errnum_120, ____locale_t_62 ____l_121));// L440 +extern void (____bzero_125) (void * (____s_123), __size_t_1 ____n_124);// L446 +extern void (____bzero_126) (void * (____s_123), __size_t_1 ____n_124);// L446 +extern void (__bcopy_130) (const void * (____src_127), void * (____dest_128), __size_t_1 ____n_129);// L450:L451 +extern void (__bzero_133) (void * (____s_131), __size_t_1 ____n_132);// L454 +extern int (__bcmp_137) (const void * (____s1_134), const void * (____s2_135), __size_t_1 ____n_136);// L457:L458 +extern char * ((__index_140) (const char * (____s_138), int ____c_139));// L484:L485 +extern char * ((__rindex_143) (const char * (____s_141), int ____c_142));// L512:L513 +extern int (__ffs_145) (int ____i_144);// L518 +extern int (__strcasecmp_148) (const char * (____s1_146), const char * (____s2_147));// L529:L530 +extern int (__strncasecmp_152) (const char * (____s1_149), const char * (____s2_150), __size_t_1 ____n_151);// L533:L534 +extern char * ((__strsep_155) (char * (* __restrict ____stringp_153), const char * __restrict ____delim_154));// L552:L554 +extern char * ((__strsignal_157) (int ____sig_156));// L559 +extern char * ((____stpcpy_160) (char * __restrict ____dest_158, const char * __restrict ____src_159));// L562:L563 +extern char * ((__stpcpy_163) (char * __restrict ____dest_161, const char * __restrict ____src_162));// L564:L565 +extern char * ((____stpncpy_167) (char * __restrict ____dest_164, const char * __restrict ____src_165, __size_t_1 ____n_166));// L569:L571 +extern char * ((__stpncpy_171) (char * __restrict ____dest_168, const char * __restrict ____src_169, __size_t_1 ____n_170));// L572:L574 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ @@ -180,24 +179,24 @@ extern char * ((__stpncpy_172) (char * __restrict ____dest_169, const char * /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern char * ((____stpncpy_chk_201) (char * (____dest_197), const char * (____src_198), __size_t_1 ____n_199, __size_t_1 ____destlen_200));// L130:L131 -extern char * ((____stpncpy_alias_205) (char * (____dest_202), const char * (____src_203), __size_t_1 ____n_204));// L132:L133 +extern char * ((____stpncpy_chk_200) (char * (____dest_196), const char * (____src_197), __size_t_1 ____n_198, __size_t_1 ____destlen_199));// L130:L131 +extern char * ((____stpncpy_alias_204) (char * (____dest_201), const char * (____src_202), __size_t_1 ____n_203));// L132:L133 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ +static char * (__strchr_pointer_216)= "eiffel~1.gco*57";// L3 static char * (__strchr_pointer_217)= "eiffel~1.gco*57";// L3 -static char * (__strchr_pointer_218)= "eiffel~1.gco*57";// L3 -void (__process_commands_220) () { +void (__process_commands_219) () { { -if (__static_condition_default_221) { +if (__static_condition_default_220) { { { -char * (__starpos_219)= ( ( void * ) 0 );// L7 +char * (__starpos_218)= ( ( void * ) 0 );// L7 } } @@ -205,30 +204,24 @@ char * (__starpos_219)= ( ( void * ) 0 );// L7 } -if (__static_condition_default_222) { +if (__static_condition_default_221) { { { -char * (__starpos_219)= ( ( void * ) 0 );// L7 +char * (__starpos_218)= ( ( void * ) 0 );// L7 -if (__static_condition_default_223) { - __starpos_219 = ( __strchr_80 ( __strchr_pointer_217 + 4,'*') ) ; // L9 -} -if (__static_condition_default_224) { - __starpos_219 = ( __strchr_80 ( __strchr_pointer_218 + 4,'*') ) ; // L9 -} -if (__static_condition_default_225) { - __starpos_219 = ( __strchr_81 ( __strchr_pointer_217 + 4,'*') ) ; // L9 +if (__static_condition_default_222) { + __starpos_218 = ( __strchr_80 ( __strchr_pointer_216 + 4,'*') ) ; // L9 } -if (__static_condition_default_226) { - __starpos_219 = ( __strchr_81 ( __strchr_pointer_218 + 4,'*') ) ; // L9 +if (__static_condition_default_223) { + __starpos_218 = ( __strchr_80 ( __strchr_pointer_217 + 4,'*') ) ; // L9 } -if ( __starpos_219 != ( ( void * ) 0 ) )// L10 +if ( __starpos_218 != ( ( void * ) 0 ) )// L10 { -* ( __starpos_219 - 1 ) = '\0' ; // L11 +* ( __starpos_218 - 1 ) = '\0' ; // L11 } __static_type_error("type error : no valid expression"); // L12 } @@ -238,14 +231,14 @@ __static_type_error("type error : no valid expression"); // L12 } }} -int (__main_229) (int __argc_227, char * (* (__argv_228))) { +int (__main_226) (int __argc_224, char * (* (__argv_225))) { { { - __process_commands_220 ( ) ; // L18 + __process_commands_219 ( ) ; // L18 return 0 ;// L19 } } diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/2d22902d080.desugared.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/2d22902d080.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/2d22902d080.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/2d22902d080.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/2d22902d080.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/2d22902d080.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/2db384a21d6.desugared.c b/fonda/cpp_testsuite/varBugs/MARLIN/2db384a21d6.desugared.c index df440517..c235a270 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/2db384a21d6.desugared.c +++ b/fonda/cpp_testsuite/varBugs/MARLIN/2db384a21d6.desugared.c @@ -7,15 +7,20 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_5; +extern const bool __static_condition_default_11; extern const bool __static_condition_default_6; +extern const bool __static_condition_default_5; +extern const bool __static_condition_default_12; void __static_initializer_default() { __static_renaming("__serial_echopair_P_l_2", "serial_echopair_P_l"); __static_renaming("__Config_PrintSettings_4", "Config_PrintSettings"); __static_renaming("__main_9", "main"); +__static_renaming("__main_10", "main"); -__static_condition_renaming("__static_condition_default_5", "!(defined MESH_BED_LEVELING)"); -__static_condition_renaming("__static_condition_default_6", "(defined MESH_BED_LEVELING)"); +__static_condition_renaming("__static_condition_default_5", "!(defined MESH_BED_LEVELING) && !(defined DISABLE_M503)"); +__static_condition_renaming("__static_condition_default_6", "(defined MESH_BED_LEVELING) && !(defined DISABLE_M503)"); +__static_condition_renaming("__static_condition_default_11", "(defined DISABLE_M503)"); +__static_condition_renaming("__static_condition_default_12", "!(defined DISABLE_M503)"); }; @@ -91,6 +96,25 @@ while( 0 );// L5:L15 }} int (__main_9) (int __argc_7, char * (* (__argv_8))) { +if (__static_condition_default_11) { + +{ +{ + + + +__static_type_error("type error") ; // L24 +return 0 ;// L25 +} +} + + +} +} +int (__main_10) (int __argc_7, char * (* (__argv_8))) { + +if (__static_condition_default_12) { + { { @@ -103,4 +127,5 @@ return 0 ;// L25 } +} diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/2db384a21d6.desugared.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/2db384a21d6.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/2db384a21d6.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/2db384a21d6.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/2db384a21d6.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/2db384a21d6.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/30248214c7f.desugared.c b/fonda/cpp_testsuite/varBugs/MARLIN/30248214c7f.desugared.c index b96f12c9..fc4d8f6a 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/30248214c7f.desugared.c +++ b/fonda/cpp_testsuite/varBugs/MARLIN/30248214c7f.desugared.c @@ -7,211 +7,280 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_870; -extern const bool __static_condition_default_820; -extern const bool __static_condition_default_74; -extern const bool __static_condition_default_338; -extern const bool __static_condition_default_474; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_577; -extern const bool __static_condition_default_707; -extern const bool __static_condition_default_924; -extern const bool __static_condition_default_162; -extern const bool __static_condition_default_626; -extern const bool __static_condition_default_395; +extern const bool __static_condition_default_455; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_333; +extern const bool __static_condition_default_347; +extern const bool __static_condition_default_929; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_559; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_512; +extern const bool __static_condition_default_1109; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_84; extern const bool __static_condition_default_473; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_308; -extern const bool __static_condition_default_551; -extern const bool __static_condition_default_236; -extern const bool __static_condition_default_743; -extern const bool __static_condition_default_318; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_274; extern const bool __static_condition_default_991; -extern const bool __static_condition_default_435; -extern const bool __static_condition_default_575; -extern const bool __static_condition_default_774; -extern const bool __static_condition_default_790; +extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_759; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_568; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_311; +extern const bool __static_condition_default_521; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_753; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_544; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_1103; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_636; +extern const bool __static_condition_default_613; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_388; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_549; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_1106; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_1105; extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_955; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_337; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_761; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_846; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_789; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_386; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_702; +extern const bool __static_condition_default_270; extern const bool __static_condition_default_296; -extern const bool __static_condition_default_680; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_714; -extern const bool __static_condition_default_933; -extern const bool __static_condition_default_762; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_907; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_365; +extern const bool __static_condition_default_963; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_1090; extern const bool __static_condition_default_686; -extern const bool __static_condition_default_223; +extern const bool __static_condition_default_550; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_583; +extern const bool __static_condition_default_875; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_380; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_894; extern const bool __static_condition_default_657; -extern const bool __static_condition_default_969; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_881; -extern const bool __static_condition_default_234; -extern const bool __static_condition_default_772; -extern const bool __static_condition_default_1029; -extern const bool __static_condition_default_336; -extern const bool __static_condition_default_320; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_719; -extern const bool __static_condition_default_586; -extern const bool __static_condition_default_733; -extern const bool __static_condition_default_641; -extern const bool __static_condition_default_356; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_495; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_488; +extern const bool __static_condition_default_842; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_1110; +extern const bool __static_condition_default_288; extern const bool __static_condition_default_625; -extern const bool __static_condition_default_343; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_276; -extern const bool __static_condition_default_706; -extern const bool __static_condition_default_695; -extern const bool __static_condition_default_605; -extern const bool __static_condition_default_528; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_961; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_431; -extern const bool __static_condition_default_766; -extern const bool __static_condition_default_905; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_540; -extern const bool __static_condition_default_457; -extern const bool __static_condition_default_421; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_204; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_1111; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_1104; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_779; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_367; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_76; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_1066; extern const bool __static_condition_default_751; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_226; -extern const bool __static_condition_default_379; -extern const bool __static_condition_default_595; -extern const bool __static_condition_default_225; -extern const bool __static_condition_default_400; -extern const bool __static_condition_default_935; -extern const bool __static_condition_default_784; -extern const bool __static_condition_default_696; -extern const bool __static_condition_default_496; -extern const bool __static_condition_default_556; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_567; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_374; -extern const bool __static_condition_default_358; -extern const bool __static_condition_default_501; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_893; -extern const bool __static_condition_default_500; -extern const bool __static_condition_default_300; -extern const bool __static_condition_default_1031; -extern const bool __static_condition_default_349; -extern const bool __static_condition_default_953; -extern const bool __static_condition_default_508; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_446; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_992; -extern const bool __static_condition_default_332; -extern const bool __static_condition_default_451; -extern const bool __static_condition_default_502; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_536; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_619; +extern const bool __static_condition_default_250; extern const bool __static_condition_default_597; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_304; -extern const bool __static_condition_default_562; -extern const bool __static_condition_default_507; -extern const bool __static_condition_default_1017; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_482; -extern const bool __static_condition_default_517; -extern const bool __static_condition_default_749; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_330; -extern const bool __static_condition_default_448; -extern const bool __static_condition_default_889; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_161; -extern const bool __static_condition_default_165; -extern const bool __static_condition_default_470; -extern const bool __static_condition_default_254; -extern const bool __static_condition_default_720; -extern const bool __static_condition_default_906; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_419; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_721; +extern const bool __static_condition_default_290; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_791; +extern const bool __static_condition_default_651; extern const bool __static_condition_default_801; -extern const bool __static_condition_default_694; -extern const bool __static_condition_default_459; -extern const bool __static_condition_default_983; -extern const bool __static_condition_default_882; -extern const bool __static_condition_default_968; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_118; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_798; -extern const bool __static_condition_default_833; -extern const bool __static_condition_default_954; -extern const bool __static_condition_default_381; -extern const bool __static_condition_default_579; -extern const bool __static_condition_default_672; -extern const bool __static_condition_default_904; -extern const bool __static_condition_default_610; -extern const bool __static_condition_default_612; -extern const bool __static_condition_default_648; -extern const bool __static_condition_default_962; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_688; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_917; -extern const bool __static_condition_default_227; -extern const bool __static_condition_default_588; -extern const bool __static_condition_default_294; -extern const bool __static_condition_default_898; -extern const bool __static_condition_default_328; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_729; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_739; -extern const bool __static_condition_default_453; -extern const bool __static_condition_default_984; -extern const bool __static_condition_default_1016; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_639; -extern const bool __static_condition_default_976; -extern const bool __static_condition_default_370; -extern const bool __static_condition_default_449; -extern const bool __static_condition_default_778; -extern const bool __static_condition_default_480; -extern const bool __static_condition_default_454; -extern const bool __static_condition_default_256; -extern const bool __static_condition_default_640; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_230; -extern const bool __static_condition_default_948; -extern const bool __static_condition_default_232; -extern const bool __static_condition_default_310; -extern const bool __static_condition_default_999; -extern const bool __static_condition_default_394; -extern const bool __static_condition_default_977; -extern const bool __static_condition_default_393; -extern const bool __static_condition_default_931; -extern const bool __static_condition_default_429; -extern const bool __static_condition_default_603; -extern const bool __static_condition_default_642; -extern const bool __static_condition_default_533; -extern const bool __static_condition_default_351; -extern const bool __static_condition_default_627; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_941; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_489; extern const bool __static_condition_default_735; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_716; -extern const bool __static_condition_default_624; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_804; -extern const bool __static_condition_default_718; -extern const bool __static_condition_default_794; -extern const bool __static_condition_default_326; -extern const bool __static_condition_default_855; -extern const bool __static_condition_default_1006; -extern const bool __static_condition_default_655; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_769; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_862; extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_670; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_382; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_834; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_187; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_891; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_747; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_677; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_978; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -263,431 +332,505 @@ __static_renaming("____ssize_t_49", "__ssize_t"); __static_renaming("____syscall_slong_t_50", "__syscall_slong_t"); __static_renaming("____syscall_ulong_t_51", "__syscall_ulong_t"); __static_renaming("____loff_t_52", "__loff_t"); -__static_renaming("____qaddr_t_53", "__qaddr_t"); -__static_renaming("____caddr_t_54", "__caddr_t"); -__static_renaming("____intptr_t_55", "__intptr_t"); -__static_renaming("____socklen_t_56", "__socklen_t"); -__static_renaming("__FILE_58", "FILE"); -__static_renaming("____FILE_59", "__FILE"); -__static_renaming("____mbstate_t_68", "__mbstate_t"); -__static_renaming("___G_fpos_t_75", "_G_fpos_t"); -__static_renaming("___G_fpos64_t_81", "_G_fpos64_t"); -__static_renaming("____gnuc_va_list_82", "__gnuc_va_list"); -__static_renaming("___IO_lock_t_84", "_IO_lock_t"); -__static_renaming("___IO_FILE_163", "_IO_FILE"); -__static_renaming("___IO_FILE_164", "_IO_FILE"); -__static_renaming("___IO_2_1_stdin__167", "_IO_2_1_stdin_"); -__static_renaming("___IO_2_1_stdout__168", "_IO_2_1_stdout_"); -__static_renaming("___IO_2_1_stderr__169", "_IO_2_1_stderr_"); -__static_renaming("____io_read_fn_173", "__io_read_fn"); -__static_renaming("____io_write_fn_177", "__io_write_fn"); -__static_renaming("____io_seek_fn_181", "__io_seek_fn"); -__static_renaming("____io_close_fn_183", "__io_close_fn"); -__static_renaming("____underflow_184", "__underflow"); -__static_renaming("____underflow_185", "__underflow"); -__static_renaming("____uflow_186", "__uflow"); -__static_renaming("____uflow_187", "__uflow"); -__static_renaming("____overflow_188", "__overflow"); -__static_renaming("____overflow_189", "__overflow"); -__static_renaming("___IO_getc_193", "_IO_getc"); -__static_renaming("___IO_getc_194", "_IO_getc"); -__static_renaming("___IO_putc_199", "_IO_putc"); -__static_renaming("___IO_putc_200", "_IO_putc"); -__static_renaming("___IO_feof_204", "_IO_feof"); -__static_renaming("___IO_feof_205", "_IO_feof"); -__static_renaming("___IO_ferror_209", "_IO_ferror"); -__static_renaming("___IO_ferror_210", "_IO_ferror"); -__static_renaming("___IO_peekc_locked_214", "_IO_peekc_locked"); -__static_renaming("___IO_peekc_locked_215", "_IO_peekc_locked"); -__static_renaming("___IO_flockfile_216", "_IO_flockfile"); -__static_renaming("___IO_flockfile_217", "_IO_flockfile"); -__static_renaming("___IO_funlockfile_218", "_IO_funlockfile"); -__static_renaming("___IO_funlockfile_219", "_IO_funlockfile"); -__static_renaming("___IO_ftrylockfile_220", "_IO_ftrylockfile"); -__static_renaming("___IO_ftrylockfile_221", "_IO_ftrylockfile"); -__static_renaming("___IO_vfscanf_222", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_224", "_IO_vfscanf"); -__static_renaming("___IO_vfprintf_231", "_IO_vfprintf"); -__static_renaming("___IO_vfprintf_233", "_IO_vfprintf"); -__static_renaming("___IO_padn_238", "_IO_padn"); -__static_renaming("___IO_padn_239", "_IO_padn"); -__static_renaming("___IO_sgetn_240", "_IO_sgetn"); -__static_renaming("___IO_sgetn_241", "_IO_sgetn"); -__static_renaming("___IO_seekoff_242", "_IO_seekoff"); -__static_renaming("___IO_seekoff_243", "_IO_seekoff"); -__static_renaming("___IO_seekpos_244", "_IO_seekpos"); -__static_renaming("___IO_seekpos_245", "_IO_seekpos"); -__static_renaming("___IO_free_backup_area_246", "_IO_free_backup_area"); -__static_renaming("___IO_free_backup_area_247", "_IO_free_backup_area"); -__static_renaming("__va_list_248", "va_list"); -__static_renaming("__off_t_250", "off_t"); -__static_renaming("__off_t_251", "off_t"); -__static_renaming("__ssize_t_252", "ssize_t"); -__static_renaming("__fpos_t_253", "fpos_t"); -__static_renaming("__fpos_t_255", "fpos_t"); -__static_renaming("__stdin_257", "stdin"); -__static_renaming("__stdin_258", "stdin"); -__static_renaming("__stdout_259", "stdout"); -__static_renaming("__stdout_260", "stdout"); -__static_renaming("__stderr_261", "stderr"); -__static_renaming("__stderr_262", "stderr"); -__static_renaming("__remove_264", "remove"); -__static_renaming("__rename_267", "rename"); -__static_renaming("__renameat_272", "renameat"); -__static_renaming("__tmpfile_273", "tmpfile"); -__static_renaming("__tmpfile_275", "tmpfile"); -__static_renaming("__tmpfile_277", "tmpfile"); -__static_renaming("__tmpfile_279", "tmpfile"); -__static_renaming("__tmpnam_282", "tmpnam"); -__static_renaming("__tmpnam_283", "tmpnam"); -__static_renaming("__tmpnam_r_285", "tmpnam_r"); -__static_renaming("__tmpnam_r_286", "tmpnam_r"); -__static_renaming("__tempnam_289", "tempnam"); -__static_renaming("__tempnam_290", "tempnam"); -__static_renaming("__fclose_293", "fclose"); -__static_renaming("__fclose_295", "fclose"); -__static_renaming("__fflush_299", "fflush"); -__static_renaming("__fflush_unlocked_303", "fflush_unlocked"); -__static_renaming("__fopen_307", "fopen"); -__static_renaming("__fopen_309", "fopen"); -__static_renaming("__fopen_317", "fopen"); -__static_renaming("__fopen_319", "fopen"); -__static_renaming("__freopen_325", "freopen"); -__static_renaming("__freopen_327", "freopen"); -__static_renaming("__freopen_329", "freopen"); -__static_renaming("__freopen_331", "freopen"); -__static_renaming("__fdopen_335", "fdopen"); -__static_renaming("__fdopen_337", "fdopen"); -__static_renaming("__fmemopen_342", "fmemopen"); -__static_renaming("__fmemopen_344", "fmemopen"); -__static_renaming("__open_memstream_348", "open_memstream"); -__static_renaming("__open_memstream_350", "open_memstream"); -__static_renaming("__setbuf_355", "setbuf"); -__static_renaming("__setbuf_357", "setbuf"); -__static_renaming("__setvbuf_364", "setvbuf"); -__static_renaming("__setbuffer_369", "setbuffer"); -__static_renaming("__setlinebuf_373", "setlinebuf"); -__static_renaming("__fprintf_378", "fprintf"); -__static_renaming("__fprintf_380", "fprintf"); -__static_renaming("__printf_383", "printf"); -__static_renaming("__sprintf_386", "sprintf"); -__static_renaming("__vfprintf_392", "vfprintf"); -__static_renaming("__vprintf_399", "vprintf"); -__static_renaming("__vsprintf_405", "vsprintf"); -__static_renaming("__snprintf_409", "snprintf"); -__static_renaming("__vsnprintf_415", "vsnprintf"); -__static_renaming("__vdprintf_420", "vdprintf"); -__static_renaming("__dprintf_424", "dprintf"); -__static_renaming("__fscanf_428", "fscanf"); -__static_renaming("__fscanf_430", "fscanf"); -__static_renaming("__fscanf_432", "fscanf"); -__static_renaming("__fscanf_434", "fscanf"); -__static_renaming("__scanf_437", "scanf"); -__static_renaming("__scanf_438", "scanf"); -__static_renaming("__sscanf_441", "sscanf"); -__static_renaming("__vfscanf_468", "vfscanf"); -__static_renaming("__vfscanf_472", "vfscanf"); -__static_renaming("__vscanf_479", "vscanf"); -__static_renaming("__vscanf_481", "vscanf"); -__static_renaming("__vsscanf_487", "vsscanf"); -__static_renaming("__fgetc_520", "fgetc"); -__static_renaming("__getc_523", "getc"); -__static_renaming("__getchar_524", "getchar"); -__static_renaming("__getc_unlocked_527", "getc_unlocked"); -__static_renaming("__getchar_unlocked_529", "getchar_unlocked"); -__static_renaming("__fgetc_unlocked_532", "fgetc_unlocked"); -__static_renaming("__fputc_537", "fputc"); -__static_renaming("__fputc_539", "fputc"); -__static_renaming("__putc_544", "putc"); -__static_renaming("__putchar_546", "putchar"); -__static_renaming("__fputc_unlocked_550", "fputc_unlocked"); -__static_renaming("__putc_unlocked_555", "putc_unlocked"); -__static_renaming("__putchar_unlocked_558", "putchar_unlocked"); -__static_renaming("__getw_561", "getw"); -__static_renaming("__putw_566", "putw"); -__static_renaming("__fgets_572", "fgets"); -__static_renaming("__fgets_574", "fgets"); -__static_renaming("__fgets_576", "fgets"); -__static_renaming("__fgets_578", "fgets"); -__static_renaming("____getdelim_585", "__getdelim"); -__static_renaming("____getdelim_587", "__getdelim"); -__static_renaming("__getdelim_594", "getdelim"); -__static_renaming("__getdelim_596", "getdelim"); -__static_renaming("__getline_602", "getline"); -__static_renaming("__getline_604", "getline"); -__static_renaming("__fputs_609", "fputs"); -__static_renaming("__fputs_611", "fputs"); -__static_renaming("__puts_614", "puts"); -__static_renaming("__ungetc_618", "ungetc"); -__static_renaming("__fseek_654", "fseek"); -__static_renaming("__fseek_656", "fseek"); -__static_renaming("__ftell_660", "ftell"); -__static_renaming("__ftell_662", "ftell"); -__static_renaming("__rewind_666", "rewind"); -__static_renaming("__fseeko_671", "fseeko"); -__static_renaming("__fseeko_679", "fseeko"); -__static_renaming("__ftello_683", "ftello"); -__static_renaming("__ftello_685", "ftello"); -__static_renaming("__ftello_687", "ftello"); -__static_renaming("__fgetpos_693", "fgetpos"); -__static_renaming("__fgetpos_705", "fgetpos"); -__static_renaming("__fsetpos_713", "fsetpos"); -__static_renaming("__fsetpos_717", "fsetpos"); -__static_renaming("__clearerr_723", "clearerr"); -__static_renaming("__feof_726", "feof"); -__static_renaming("__feof_728", "feof"); -__static_renaming("__ferror_732", "ferror"); -__static_renaming("__ferror_734", "ferror"); -__static_renaming("__clearerr_unlocked_738", "clearerr_unlocked"); -__static_renaming("__feof_unlocked_742", "feof_unlocked"); -__static_renaming("__feof_unlocked_744", "feof_unlocked"); -__static_renaming("__ferror_unlocked_748", "ferror_unlocked"); -__static_renaming("__ferror_unlocked_750", "ferror_unlocked"); -__static_renaming("__perror_753", "perror"); -__static_renaming("__perror_754", "perror"); -__static_renaming("__sys_nerr_755", "sys_nerr"); -__static_renaming("__sys_errlist_756", "sys_errlist"); -__static_renaming("__fileno_759", "fileno"); -__static_renaming("__fileno_761", "fileno"); -__static_renaming("__fileno_unlocked_765", "fileno_unlocked"); -__static_renaming("__fileno_unlocked_767", "fileno_unlocked"); -__static_renaming("__popen_771", "popen"); -__static_renaming("__popen_773", "popen"); -__static_renaming("__pclose_777", "pclose"); -__static_renaming("__ctermid_780", "ctermid"); -__static_renaming("__flockfile_783", "flockfile"); -__static_renaming("__ftrylockfile_787", "ftrylockfile"); -__static_renaming("__ftrylockfile_789", "ftrylockfile"); -__static_renaming("__funlockfile_793", "funlockfile"); -__static_renaming("____sprintf_chk_825", "__sprintf_chk"); -__static_renaming("____vsprintf_chk_832", "__vsprintf_chk"); -__static_renaming("____snprintf_chk_846", "__snprintf_chk"); -__static_renaming("____vsnprintf_chk_854", "__vsnprintf_chk"); -__static_renaming("____fprintf_chk_869", "__fprintf_chk"); -__static_renaming("____printf_chk_873", "__printf_chk"); -__static_renaming("____vfprintf_chk_880", "__vfprintf_chk"); -__static_renaming("____vprintf_chk_888", "__vprintf_chk"); -__static_renaming("____dprintf_chk_910", "__dprintf_chk"); -__static_renaming("____vdprintf_chk_916", "__vdprintf_chk"); -__static_renaming("____fgets_chk_930", "__fgets_chk"); -__static_renaming("____fgets_chk_932", "__fgets_chk"); -__static_renaming("____fgets_chk_934", "__fgets_chk"); -__static_renaming("____fgets_alias_940", "__fgets_alias"); -__static_renaming("____fgets_chk_warn_947", "__fgets_chk_warn"); -__static_renaming("____cnt_1013", "__cnt"); -__static_renaming("____cptr_1014", "__cptr"); -__static_renaming("__millis_1018", "millis"); -__static_renaming("__millis_1019", "millis"); -__static_renaming("__thermal_runaway_protection_1027", "thermal_runaway_protection"); -__static_renaming("__main_1030", "main"); +__static_renaming("____qaddr_t_54", "__qaddr_t"); +__static_renaming("____caddr_t_55", "__caddr_t"); +__static_renaming("____intptr_t_56", "__intptr_t"); +__static_renaming("____socklen_t_57", "__socklen_t"); +__static_renaming("__FILE_59", "FILE"); +__static_renaming("____FILE_60", "__FILE"); +__static_renaming("____mbstate_t_69", "__mbstate_t"); +__static_renaming("___G_fpos_t_77", "_G_fpos_t"); +__static_renaming("___G_fpos64_t_85", "_G_fpos64_t"); +__static_renaming("____gnuc_va_list_86", "__gnuc_va_list"); +__static_renaming("___IO_lock_t_88", "_IO_lock_t"); +__static_renaming("___IO_FILE_171", "_IO_FILE"); +__static_renaming("___IO_FILE_172", "_IO_FILE"); +__static_renaming("___IO_2_1_stdin__175", "_IO_2_1_stdin_"); +__static_renaming("___IO_2_1_stdout__176", "_IO_2_1_stdout_"); +__static_renaming("___IO_2_1_stderr__177", "_IO_2_1_stderr_"); +__static_renaming("____io_read_fn_181", "__io_read_fn"); +__static_renaming("____io_write_fn_186", "__io_write_fn"); +__static_renaming("____io_seek_fn_192", "__io_seek_fn"); +__static_renaming("____io_close_fn_195", "__io_close_fn"); +__static_renaming("____underflow_196", "__underflow"); +__static_renaming("____underflow_197", "__underflow"); +__static_renaming("____uflow_199", "__uflow"); +__static_renaming("____uflow_200", "__uflow"); +__static_renaming("____overflow_202", "__overflow"); +__static_renaming("____overflow_203", "__overflow"); +__static_renaming("___IO_getc_208", "_IO_getc"); +__static_renaming("___IO_getc_209", "_IO_getc"); +__static_renaming("___IO_putc_215", "_IO_putc"); +__static_renaming("___IO_putc_216", "_IO_putc"); +__static_renaming("___IO_feof_221", "_IO_feof"); +__static_renaming("___IO_feof_222", "_IO_feof"); +__static_renaming("___IO_ferror_227", "_IO_ferror"); +__static_renaming("___IO_ferror_228", "_IO_ferror"); +__static_renaming("___IO_peekc_locked_233", "_IO_peekc_locked"); +__static_renaming("___IO_peekc_locked_234", "_IO_peekc_locked"); +__static_renaming("___IO_flockfile_236", "_IO_flockfile"); +__static_renaming("___IO_flockfile_237", "_IO_flockfile"); +__static_renaming("___IO_funlockfile_239", "_IO_funlockfile"); +__static_renaming("___IO_funlockfile_240", "_IO_funlockfile"); +__static_renaming("___IO_ftrylockfile_242", "_IO_ftrylockfile"); +__static_renaming("___IO_ftrylockfile_243", "_IO_ftrylockfile"); +__static_renaming("___IO_vfscanf_245", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_247", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_251", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_252", "_IO_vfscanf"); +__static_renaming("___IO_vfprintf_254", "_IO_vfprintf"); +__static_renaming("___IO_vfprintf_256", "_IO_vfprintf"); +__static_renaming("___IO_vfprintf_260", "_IO_vfprintf"); +__static_renaming("___IO_padn_261", "_IO_padn"); +__static_renaming("___IO_padn_262", "_IO_padn"); +__static_renaming("___IO_sgetn_265", "_IO_sgetn"); +__static_renaming("___IO_sgetn_266", "_IO_sgetn"); +__static_renaming("___IO_seekoff_268", "_IO_seekoff"); +__static_renaming("___IO_seekoff_269", "_IO_seekoff"); +__static_renaming("___IO_seekpos_272", "_IO_seekpos"); +__static_renaming("___IO_seekpos_273", "_IO_seekpos"); +__static_renaming("___IO_free_backup_area_276", "_IO_free_backup_area"); +__static_renaming("___IO_free_backup_area_277", "_IO_free_backup_area"); +__static_renaming("__va_list_279", "va_list"); +__static_renaming("__off_t_281", "off_t"); +__static_renaming("__off_t_283", "off_t"); +__static_renaming("__ssize_t_285", "ssize_t"); +__static_renaming("__fpos_t_287", "fpos_t"); +__static_renaming("__fpos_t_289", "fpos_t"); +__static_renaming("__stdin_291", "stdin"); +__static_renaming("__stdin_292", "stdin"); +__static_renaming("__stdout_294", "stdout"); +__static_renaming("__stdout_295", "stdout"); +__static_renaming("__stderr_297", "stderr"); +__static_renaming("__stderr_298", "stderr"); +__static_renaming("__remove_301", "remove"); +__static_renaming("__rename_304", "rename"); +__static_renaming("__renameat_309", "renameat"); +__static_renaming("__tmpfile_310", "tmpfile"); +__static_renaming("__tmpfile_312", "tmpfile"); +__static_renaming("__tmpfile_314", "tmpfile"); +__static_renaming("__tmpfile_316", "tmpfile"); +__static_renaming("__tmpnam_319", "tmpnam"); +__static_renaming("__tmpnam_320", "tmpnam"); +__static_renaming("__tmpnam_r_322", "tmpnam_r"); +__static_renaming("__tmpnam_r_323", "tmpnam_r"); +__static_renaming("__tempnam_326", "tempnam"); +__static_renaming("__tempnam_327", "tempnam"); +__static_renaming("__fclose_330", "fclose"); +__static_renaming("__fclose_332", "fclose"); +__static_renaming("__fflush_336", "fflush"); +__static_renaming("__fflush_unlocked_340", "fflush_unlocked"); +__static_renaming("__fopen_344", "fopen"); +__static_renaming("__fopen_346", "fopen"); +__static_renaming("__fopen_354", "fopen"); +__static_renaming("__fopen_356", "fopen"); +__static_renaming("__freopen_362", "freopen"); +__static_renaming("__freopen_364", "freopen"); +__static_renaming("__freopen_366", "freopen"); +__static_renaming("__freopen_368", "freopen"); +__static_renaming("__fdopen_372", "fdopen"); +__static_renaming("__fdopen_374", "fdopen"); +__static_renaming("__fmemopen_379", "fmemopen"); +__static_renaming("__fmemopen_381", "fmemopen"); +__static_renaming("__open_memstream_385", "open_memstream"); +__static_renaming("__open_memstream_387", "open_memstream"); +__static_renaming("__setbuf_392", "setbuf"); +__static_renaming("__setbuf_394", "setbuf"); +__static_renaming("__setvbuf_401", "setvbuf"); +__static_renaming("__setbuffer_407", "setbuffer"); +__static_renaming("__setlinebuf_411", "setlinebuf"); +__static_renaming("__fprintf_416", "fprintf"); +__static_renaming("__fprintf_418", "fprintf"); +__static_renaming("__printf_421", "printf"); +__static_renaming("__sprintf_424", "sprintf"); +__static_renaming("__vfprintf_430", "vfprintf"); +__static_renaming("__vprintf_437", "vprintf"); +__static_renaming("__vsprintf_443", "vsprintf"); +__static_renaming("__snprintf_448", "snprintf"); +__static_renaming("__vsnprintf_454", "vsnprintf"); +__static_renaming("__vdprintf_460", "vdprintf"); +__static_renaming("__dprintf_464", "dprintf"); +__static_renaming("__fscanf_468", "fscanf"); +__static_renaming("__fscanf_470", "fscanf"); +__static_renaming("__fscanf_472", "fscanf"); +__static_renaming("__fscanf_474", "fscanf"); +__static_renaming("__scanf_477", "scanf"); +__static_renaming("__scanf_478", "scanf"); +__static_renaming("__sscanf_481", "sscanf"); +__static_renaming("__vfscanf_509", "vfscanf"); +__static_renaming("__vfscanf_513", "vfscanf"); +__static_renaming("__vscanf_520", "vscanf"); +__static_renaming("__vscanf_522", "vscanf"); +__static_renaming("__vsscanf_528", "vsscanf"); +__static_renaming("__fgetc_563", "fgetc"); +__static_renaming("__getc_567", "getc"); +__static_renaming("__getchar_569", "getchar"); +__static_renaming("__getc_unlocked_572", "getc_unlocked"); +__static_renaming("__getchar_unlocked_574", "getchar_unlocked"); +__static_renaming("__fgetc_unlocked_577", "fgetc_unlocked"); +__static_renaming("__fputc_582", "fputc"); +__static_renaming("__fputc_584", "fputc"); +__static_renaming("__putc_589", "putc"); +__static_renaming("__putchar_592", "putchar"); +__static_renaming("__fputc_unlocked_596", "fputc_unlocked"); +__static_renaming("__putc_unlocked_601", "putc_unlocked"); +__static_renaming("__putchar_unlocked_604", "putchar_unlocked"); +__static_renaming("__getw_607", "getw"); +__static_renaming("__putw_612", "putw"); +__static_renaming("__fgets_618", "fgets"); +__static_renaming("__fgets_620", "fgets"); +__static_renaming("__fgets_622", "fgets"); +__static_renaming("__fgets_624", "fgets"); +__static_renaming("____getdelim_631", "__getdelim"); +__static_renaming("____getdelim_635", "__getdelim"); +__static_renaming("__getdelim_644", "getdelim"); +__static_renaming("__getdelim_648", "getdelim"); +__static_renaming("__getline_656", "getline"); +__static_renaming("__getline_660", "getline"); +__static_renaming("__fputs_667", "fputs"); +__static_renaming("__fputs_669", "fputs"); +__static_renaming("__puts_672", "puts"); +__static_renaming("__ungetc_676", "ungetc"); +__static_renaming("__fseek_714", "fseek"); +__static_renaming("__fseek_716", "fseek"); +__static_renaming("__ftell_720", "ftell"); +__static_renaming("__ftell_722", "ftell"); +__static_renaming("__rewind_726", "rewind"); +__static_renaming("__fseeko_733", "fseeko"); +__static_renaming("__fseeko_744", "fseeko"); +__static_renaming("__ftello_750", "ftello"); +__static_renaming("__ftello_754", "ftello"); +__static_renaming("__ftello_758", "ftello"); +__static_renaming("__fgetpos_766", "fgetpos"); +__static_renaming("__fgetpos_778", "fgetpos"); +__static_renaming("__fsetpos_786", "fsetpos"); +__static_renaming("__fsetpos_790", "fsetpos"); +__static_renaming("__clearerr_796", "clearerr"); +__static_renaming("__feof_800", "feof"); +__static_renaming("__feof_802", "feof"); +__static_renaming("__ferror_806", "ferror"); +__static_renaming("__ferror_808", "ferror"); +__static_renaming("__clearerr_unlocked_812", "clearerr_unlocked"); +__static_renaming("__feof_unlocked_816", "feof_unlocked"); +__static_renaming("__feof_unlocked_818", "feof_unlocked"); +__static_renaming("__ferror_unlocked_822", "ferror_unlocked"); +__static_renaming("__ferror_unlocked_824", "ferror_unlocked"); +__static_renaming("__perror_827", "perror"); +__static_renaming("__perror_828", "perror"); +__static_renaming("__sys_nerr_829", "sys_nerr"); +__static_renaming("__sys_errlist_830", "sys_errlist"); +__static_renaming("__fileno_833", "fileno"); +__static_renaming("__fileno_835", "fileno"); +__static_renaming("__fileno_unlocked_839", "fileno_unlocked"); +__static_renaming("__fileno_unlocked_841", "fileno_unlocked"); +__static_renaming("__popen_845", "popen"); +__static_renaming("__popen_847", "popen"); +__static_renaming("__pclose_851", "pclose"); +__static_renaming("__ctermid_854", "ctermid"); +__static_renaming("__flockfile_857", "flockfile"); +__static_renaming("__ftrylockfile_861", "ftrylockfile"); +__static_renaming("__ftrylockfile_863", "ftrylockfile"); +__static_renaming("__funlockfile_867", "funlockfile"); +__static_renaming("____sprintf_chk_899", "__sprintf_chk"); +__static_renaming("____vsprintf_chk_906", "__vsprintf_chk"); +__static_renaming("____snprintf_chk_920", "__snprintf_chk"); +__static_renaming("____vsnprintf_chk_928", "__vsnprintf_chk"); +__static_renaming("____fprintf_chk_943", "__fprintf_chk"); +__static_renaming("____printf_chk_947", "__printf_chk"); +__static_renaming("____vfprintf_chk_954", "__vfprintf_chk"); +__static_renaming("____vprintf_chk_962", "__vprintf_chk"); +__static_renaming("____dprintf_chk_984", "__dprintf_chk"); +__static_renaming("____vdprintf_chk_990", "__vdprintf_chk"); +__static_renaming("____fgets_chk_1004", "__fgets_chk"); +__static_renaming("____fgets_chk_1006", "__fgets_chk"); +__static_renaming("____fgets_chk_1008", "__fgets_chk"); +__static_renaming("____fgets_alias_1014", "__fgets_alias"); +__static_renaming("____fgets_chk_warn_1021", "__fgets_chk_warn"); +__static_renaming("____cnt_1087", "__cnt"); +__static_renaming("____cptr_1088", "__cptr"); +__static_renaming("__millis_1092", "millis"); +__static_renaming("__millis_1093", "millis"); +__static_renaming("__millis_1094", "millis"); +__static_renaming("__thermal_runaway_protection_1102", "thermal_runaway_protection"); +__static_renaming("__main_1107", "main"); +__static_renaming("__main_1108", "main"); -__static_condition_renaming("__static_condition_default_74", "(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_118", "(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_161", "(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_162", "(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_165", "(defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_223", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_225", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_226", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_227", "(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_230", "(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_232", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_234", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_235", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_236", "(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_249", "!(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); -__static_condition_renaming("__static_condition_default_254", "!(defined _FILE_OFFSET_BITS) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_256", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_274", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_276", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_278", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_280", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_294", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_296", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_300", "(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_304", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_308", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_310", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_318", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_320", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_326", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_328", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_330", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_332", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_336", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_338", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_343", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_345", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_349", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_351", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_356", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_358", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_370", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_374", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_379", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_381", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_393", "!(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_394", "(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_395", "(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_400", "!(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_421", "!(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_429", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_431", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_433", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_435", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_446", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_448", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_449", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_451", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_453", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_454", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_457", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_459", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_469", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_470", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_471", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_473", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_474", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_475", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_480", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_482", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_494", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_495", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_496", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_497", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_499", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_500", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_501", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_502", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_507", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_508", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_510", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_511", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_517", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_528", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_533", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_538", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_540", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_551", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_556", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_562", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_567", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_573", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_575", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_577", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_579", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_586", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_588", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_595", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_597", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_603", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_605", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_610", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_612", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_624", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_625", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_626", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_627", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_633", "!(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_639", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_640", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_641", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_642", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_648", "!(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_649", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_655", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_657", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_661", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_663", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_672", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_680", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_684", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_686", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_688", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_694", "!(defined _FILE_OFFSET_BITS) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_695", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_696", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_706", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_707", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_708", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_714", "!(defined _FILE_OFFSET_BITS) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_715", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_716", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_718", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_719", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_720", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_727", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_729", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_733", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_735", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_739", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_743", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_745", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_749", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_751", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_760", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_762", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_766", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_768", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_772", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_774", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_778", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_784", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_788", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_790", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_794", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_798", "!(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_801", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_804", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_809", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_813", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_817", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_820", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_833", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_840", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_855", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_864", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_870", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_881", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_882", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_883", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_889", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_893", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_898", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_904", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_905", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_906", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_917", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_924", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_931", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_933", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_935", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_941", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_948", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_953", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_954", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_961", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_962", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_968", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_969", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_976", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_977", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_983", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_984", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_991", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_992", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_998", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_999", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1006", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1007", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1015", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_1016", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1017", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1028", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) || (defined __STRICT_ANSI__)"); -__static_condition_renaming("__static_condition_default_1029", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1031", "(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_53", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_76", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_84", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_123", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_169", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_170", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_173", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_182", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_187", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_193", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_198", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_201", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_204", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_210", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_217", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_223", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_229", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_235", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_238", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_241", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_244", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_246", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_248", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_249", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_250", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_253", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_255", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_257", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_258", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_259", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_263", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_264", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_267", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_270", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_271", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_274", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_275", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_278", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_280", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); +__static_condition_renaming("__static_condition_default_282", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_284", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_286", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_288", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_290", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_293", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_296", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_299", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_311", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_313", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_315", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_317", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_331", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_333", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_337", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_341", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_345", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_347", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_355", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_357", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_363", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_365", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_367", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_369", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_373", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_375", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_380", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_382", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_386", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_388", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_393", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_395", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_402", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_408", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_412", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_417", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_419", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_431", "!(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_432", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_433", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_438", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_444", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_455", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_461", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_469", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_471", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_473", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_475", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_486", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_488", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_489", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_491", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_493", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_494", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_497", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_499", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_503", "!(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_510", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_511", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_512", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_514", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_515", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_516", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_521", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_523", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_529", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_536", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_537", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_538", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_539", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_541", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_542", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_543", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_544", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_549", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_550", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_552", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_553", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_559", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_560", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_564", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_568", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_573", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_578", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_583", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_585", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_590", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_597", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_602", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_608", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_613", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_619", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_621", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_623", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_625", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_632", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_633", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_634", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_636", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_637", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_638", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_645", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_646", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_647", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_649", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_650", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_651", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_657", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_658", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_659", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_661", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_662", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_663", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_668", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_670", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_677", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_683", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_684", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_685", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_686", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_692", "!(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_693", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_699", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_700", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_701", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_702", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_708", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_709", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_715", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_717", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_721", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_723", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_727", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_734", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_735", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_736", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_745", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_746", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_747", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_751", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_752", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_753", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_755", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_756", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_757", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_759", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_760", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_761", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_767", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_768", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_769", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_779", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_780", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_781", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_787", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_788", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_789", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_791", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_792", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_793", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_797", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_801", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_803", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_807", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_809", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_813", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_817", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_819", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_823", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_825", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_834", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_836", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_840", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_842", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_846", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_848", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_852", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_858", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_862", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_864", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_868", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_872", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_875", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_878", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_883", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_887", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_891", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_894", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_907", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_914", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_929", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_938", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_944", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_955", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_956", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_957", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_963", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_967", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_972", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_978", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_979", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_980", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_991", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_998", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1005", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1007", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1009", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1015", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1022", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1027", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1028", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1035", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1036", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1042", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1043", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1050", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1051", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1057", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1058", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1065", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1066", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1072", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1073", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1080", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1081", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1089", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_1090", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1091", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1103", "(defined THERMAL_RUNAWAY_PROTECTION_PERIOD) && (THERMAL_RUNAWAY_PROTECTION_PERIOD > 0)"); +__static_condition_renaming("__static_condition_default_1104", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined THERMAL_RUNAWAY_PROTECTION_PERIOD) && (THERMAL_RUNAWAY_PROTECTION_PERIOD > 0) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined THERMAL_RUNAWAY_PROTECTION_PERIOD) && (THERMAL_RUNAWAY_PROTECTION_PERIOD > 0) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined THERMAL_RUNAWAY_PROTECTION_PERIOD) && (THERMAL_RUNAWAY_PROTECTION_PERIOD > 0) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined THERMAL_RUNAWAY_PROTECTION_PERIOD) && (THERMAL_RUNAWAY_PROTECTION_PERIOD > 0) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined THERMAL_RUNAWAY_PROTECTION_PERIOD) && (THERMAL_RUNAWAY_PROTECTION_PERIOD > 0)"); +__static_condition_renaming("__static_condition_default_1105", "(defined __need___FILE) && (defined THERMAL_RUNAWAY_PROTECTION_PERIOD) && (THERMAL_RUNAWAY_PROTECTION_PERIOD > 0)"); +__static_condition_renaming("__static_condition_default_1106", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined THERMAL_RUNAWAY_PROTECTION_PERIOD) && (THERMAL_RUNAWAY_PROTECTION_PERIOD > 0)"); +__static_condition_renaming("__static_condition_default_1109", "!(defined THERMAL_RUNAWAY_PROTECTION_PERIOD) || (defined THERMAL_RUNAWAY_PROTECTION_PERIOD) && !(THERMAL_RUNAWAY_PROTECTION_PERIOD > 0)"); +__static_condition_renaming("__static_condition_default_1110", "(defined THERMAL_RUNAWAY_PROTECTION_PERIOD) && (THERMAL_RUNAWAY_PROTECTION_PERIOD > 0)"); +__static_condition_renaming("__static_condition_default_1111", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); -if (__static_condition_default_1031) { +if (__static_condition_default_1111) { __static_parse_error("Unable to parse"); } }; @@ -744,142 +887,142 @@ typedef long int ____ssize_t_49;// L110:L172 typedef long int ____syscall_slong_t_50;// L93:L175 typedef unsigned long int ____syscall_ulong_t_51;// L94:L177 typedef ____off64_t_24 ____loff_t_52;// L181 -typedef ____quad_t_14 * (____qaddr_t_53);// L182 -typedef char * (____caddr_t_54);// L183 -typedef long int ____intptr_t_55;// L110:L186 -typedef unsigned int ____socklen_t_56;// L92:L189 -typedef struct __forward_tag_reference_57 __FILE_58;// L48 -typedef struct __forward_tag_reference_57 ____FILE_59;// L64 -union ____anonymous_tag_60_61 { -unsigned int ____wch_62;// L265 -char ____wchb_63[4];// L92 +typedef ____quad_t_14 * (____qaddr_t_54);// L182 +typedef char * (____caddr_t_55);// L183 +typedef long int ____intptr_t_56;// L110:L186 +typedef unsigned int ____socklen_t_57;// L92:L189 +typedef struct __forward_tag_reference_58 __FILE_59;// L48 +typedef struct __forward_tag_reference_58 ____FILE_60;// L64 +union ____anonymous_tag_61_62 { +unsigned int ____wch_63;// L265 +char ____wchb_64[4];// L92 }; -struct ____anonymous_tag_64_65 { -int ____count_66;// L84 -union ____anonymous_tag_60_61 ____value_67;// L85 +struct ____anonymous_tag_65_66 { +int ____count_67;// L84 +union ____anonymous_tag_61_62 ____value_68;// L85 }; -typedef struct ____anonymous_tag_64_65 ____mbstate_t_68;// L82:L94 -struct ____anonymous_tag_69_70 { -____off_t_23 ____pos_71;// L0 -____mbstate_t_68 ____state_72;// L0 +typedef struct ____anonymous_tag_65_66 ____mbstate_t_69;// L82:L94 +struct ____anonymous_tag_70_71 { +____off_t_23 ____pos_72;// L0 +____mbstate_t_69 ____state_74;// L0 }; -typedef struct ____anonymous_tag_69_70 ___G_fpos_t_75;// L21:L25 -struct ____anonymous_tag_76_77 { -____off64_t_24 ____pos_78;// L0 -____mbstate_t_68 ____state_79;// L0 +typedef struct ____anonymous_tag_70_71 ___G_fpos_t_77;// L21:L25 +struct ____anonymous_tag_78_79 { +____off64_t_24 ____pos_80;// L0 +____mbstate_t_69 ____state_82;// L0 }; -typedef struct ____anonymous_tag_76_77 ___G_fpos64_t_81;// L26:L30 -typedef __builtin_va_list ____gnuc_va_list_82;// L40 -typedef void ___IO_lock_t_84;// L150 -struct ___IO_marker_86 { -struct __forward_tag_reference_85 * (___next_87);// L0 -struct __forward_tag_reference_57 * (___sbuf_88);// L0 -int ___pos_89;// L162 +typedef struct ____anonymous_tag_78_79 ___G_fpos64_t_85;// L26:L30 +typedef __builtin_va_list ____gnuc_va_list_86;// L40 +typedef void ___IO_lock_t_88;// L150 +struct ___IO_marker_90 { +struct __forward_tag_reference_89 * (___next_91);// L0 +struct __forward_tag_reference_58 * (___sbuf_92);// L0 +int ___pos_93;// L162 }; -enum ____codecvt_result_94 { -____codecvt_ok_90, -____codecvt_partial_91, -____codecvt_error_92, -____codecvt_noconv_93, +enum ____codecvt_result_98 { +____codecvt_ok_94, +____codecvt_partial_95, +____codecvt_error_96, +____codecvt_noconv_97, }; -struct ___IO_FILE_95 { -int ___flags_96;// L242 -char * (___IO_read_ptr_97);// L247 -char * (___IO_read_end_98);// L248 -char * (___IO_read_base_99);// L249 -char * (___IO_write_base_100);// L250 -char * (___IO_write_ptr_101);// L251 -char * (___IO_write_end_102);// L252 -char * (___IO_buf_base_103);// L253 -char * (___IO_buf_end_104);// L254 -char * (___IO_save_base_105);// L256 -char * (___IO_backup_base_106);// L257 -char * (___IO_save_end_107);// L258 -struct ___IO_marker_86 * (___markers_108);// L260 -struct __forward_tag_reference_57 * (___chain_109);// L0 -int ___fileno_110;// L264 -int ___flags2_111;// L268 -____off_t_23 ___old_offset_112;// L0 -unsigned short ___cur_column_113;// L274 -signed char ___vtable_offset_114;// L275 -char ___shortbuf_115[1];// L276 -___IO_lock_t_84 * (___lock_116);// L0 +struct ___IO_FILE_99 { +int ___flags_100;// L242 +char * (___IO_read_ptr_101);// L247 +char * (___IO_read_end_102);// L248 +char * (___IO_read_base_103);// L249 +char * (___IO_write_base_104);// L250 +char * (___IO_write_ptr_105);// L251 +char * (___IO_write_end_106);// L252 +char * (___IO_buf_base_107);// L253 +char * (___IO_buf_end_108);// L254 +char * (___IO_save_base_109);// L256 +char * (___IO_backup_base_110);// L257 +char * (___IO_save_end_111);// L258 +struct ___IO_marker_90 * (___markers_112);// L260 +struct __forward_tag_reference_58 * (___chain_113);// L0 +int ___fileno_114;// L264 +int ___flags2_115;// L268 +____off_t_23 ___old_offset_116;// L0 +unsigned short ___cur_column_118;// L274 +signed char ___vtable_offset_119;// L275 +char ___shortbuf_120[1];// L276 +___IO_lock_t_88 * (___lock_121);// L0 }; -struct ___IO_FILE_119 { -int ___flags_120;// L242 -char * (___IO_read_ptr_121);// L247 -char * (___IO_read_end_122);// L248 -char * (___IO_read_base_123);// L249 -char * (___IO_write_base_124);// L250 -char * (___IO_write_ptr_125);// L251 -char * (___IO_write_end_126);// L252 -char * (___IO_buf_base_127);// L253 -char * (___IO_buf_end_128);// L254 -char * (___IO_save_base_129);// L256 -char * (___IO_backup_base_130);// L257 -char * (___IO_save_end_131);// L258 -struct ___IO_marker_86 * (___markers_132);// L260 -struct __forward_tag_reference_57 * (___chain_133);// L0 -int ___fileno_134;// L264 -int ___flags2_135;// L268 -____off_t_23 ___old_offset_136;// L0 -unsigned short ___cur_column_137;// L274 -signed char ___vtable_offset_138;// L275 -char ___shortbuf_139[1];// L276 -___IO_lock_t_84 * (___lock_140);// L0 -____off64_t_24 ___offset_142;// L0 -void * (____pad1_143);// L297 -void * (____pad2_144);// L298 -void * (____pad3_145);// L299 -void * (____pad4_146);// L300 -__size_t_1 ____pad5_147;// L0 -int ___mode_148;// L303 -char ___unused2_149[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +struct ___IO_FILE_124 { +int ___flags_125;// L242 +char * (___IO_read_ptr_126);// L247 +char * (___IO_read_end_127);// L248 +char * (___IO_read_base_128);// L249 +char * (___IO_write_base_129);// L250 +char * (___IO_write_ptr_130);// L251 +char * (___IO_write_end_131);// L252 +char * (___IO_buf_base_132);// L253 +char * (___IO_buf_end_133);// L254 +char * (___IO_save_base_134);// L256 +char * (___IO_backup_base_135);// L257 +char * (___IO_save_end_136);// L258 +struct ___IO_marker_90 * (___markers_137);// L260 +struct __forward_tag_reference_58 * (___chain_138);// L0 +int ___fileno_139;// L264 +int ___flags2_140;// L268 +____off_t_23 ___old_offset_141;// L0 +unsigned short ___cur_column_143;// L274 +signed char ___vtable_offset_144;// L275 +char ___shortbuf_145[1];// L276 +___IO_lock_t_88 * (___lock_146);// L0 +____off64_t_24 ___offset_148;// L0 +void * (____pad1_150);// L297 +void * (____pad2_151);// L298 +void * (____pad3_152);// L299 +void * (____pad4_153);// L300 +__size_t_1 ____pad5_154;// L0 +int ___mode_155;// L303 +char ___unused2_156[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -struct ___IO_FILE_complete_150 { -struct ___IO_FILE_95 ___file_151;// L286 -____off64_t_24 ___offset_153;// L0 -void * (____pad1_154);// L297 -void * (____pad2_155);// L298 -void * (____pad3_156);// L299 -void * (____pad4_157);// L300 -__size_t_1 ____pad5_158;// L0 -int ___mode_159;// L303 -char ___unused2_160[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +struct ___IO_FILE_complete_157 { +struct ___IO_FILE_99 ___file_158;// L286 +____off64_t_24 ___offset_160;// L0 +void * (____pad1_162);// L297 +void * (____pad2_163);// L298 +void * (____pad3_164);// L299 +void * (____pad4_165);// L300 +__size_t_1 ____pad5_166;// L0 +int ___mode_167;// L303 +char ___unused2_168[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -typedef struct ___IO_FILE_95 ___IO_FILE_163;// L310 -typedef struct ___IO_FILE_119 ___IO_FILE_164;// L310 -typedef ____ssize_t_49 (____io_read_fn_173) (void * (____cookie_170), char * (____buf_171), __size_t_1 ____nbytes_172);// L333 -typedef ____ssize_t_49 (____io_write_fn_177) (void * (____cookie_174), const char * (____buf_175), __size_t_1 ____n_176);// L341:L342 -typedef int (____io_seek_fn_181) (void * (____cookie_178), ____off64_t_24 * (____pos_179), int ____w_180);// L350 -typedef int (____io_close_fn_183) (void * (____cookie_182));// L353 -typedef ____gnuc_va_list_82 __va_list_248;// L79 -typedef ____off_t_23 __off_t_250;// L90 -typedef ____off64_t_24 __off_t_251;// L92 -typedef ____ssize_t_49 __ssize_t_252;// L102 -typedef ___G_fpos_t_75 __fpos_t_253;// L110 -typedef ___G_fpos64_t_81 __fpos_t_255;// L112 -extern const char * const __sys_errlist_756[];// L27 +typedef struct ___IO_FILE_99 ___IO_FILE_171;// L310 +typedef struct ___IO_FILE_124 ___IO_FILE_172;// L310 +typedef ____ssize_t_49 (____io_read_fn_181) (void * (____cookie_178), char * (____buf_179), __size_t_1 ____nbytes_180);// L333 +typedef ____ssize_t_49 (____io_write_fn_186) (void * (____cookie_183), const char * (____buf_184), __size_t_1 ____n_185);// L341:L342 +typedef int (____io_seek_fn_192) (void * (____cookie_188), ____off64_t_24 * (____pos_189), int ____w_191);// L350 +typedef int (____io_close_fn_195) (void * (____cookie_194));// L353 +typedef ____gnuc_va_list_86 __va_list_279;// L79 +typedef ____off_t_23 __off_t_281;// L90 +typedef ____off64_t_24 __off_t_283;// L92 +typedef ____ssize_t_49 __ssize_t_285;// L102 +typedef ___G_fpos_t_77 __fpos_t_287;// L110 +typedef ___G_fpos64_t_85 __fpos_t_289;// L112 +extern const char * const __sys_errlist_830[];// L27 -struct __forward_tag_reference_57 { // generated union of struct variations +struct __forward_tag_reference_89 { // generated union of struct variations union { -struct ___IO_FILE_95 ___IO_FILE_95; -struct ___IO_FILE_119 ___IO_FILE_119; +struct ___IO_marker_90 ___IO_marker_90; }; }; -struct __forward_tag_reference_85 { // generated union of struct variations +struct __forward_tag_reference_58 { // generated union of struct variations union { -struct ___IO_marker_86 ___IO_marker_86; +struct ___IO_FILE_99 ___IO_FILE_99; +struct ___IO_FILE_124 ___IO_FILE_124; }; }; -struct __forward_tag_reference_83 { // generated union of struct variations +struct __forward_tag_reference_87 { // generated union of struct variations union { }; }; -struct __forward_tag_reference_166 { // generated union of struct variations +struct __forward_tag_reference_174 { // generated union of struct variations union { }; }; @@ -938,225 +1081,225 @@ union { // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_57 ;// L0 +struct __forward_tag_reference_58 ;// L0 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_83 ;// L0 -struct __forward_tag_reference_83 ;// L0 -struct __forward_tag_reference_57 ;// L0 +struct __forward_tag_reference_87 ;// L0 +struct __forward_tag_reference_87 ;// L0 +struct __forward_tag_reference_58 ;// L0 // typedef moved to top of scope -struct ___IO_marker_86 ;// L156 -enum ____codecvt_result_94 ;// L176 -struct ___IO_FILE_95 ;// L241 +struct ___IO_marker_90 ;// L156 +enum ____codecvt_result_98 ;// L176 +struct ___IO_FILE_99 ;// L241 -struct ___IO_FILE_119 ;// L241 -struct ___IO_FILE_complete_150 ;// L241 +struct ___IO_FILE_124 ;// L241 +struct ___IO_FILE_complete_157 ;// L241 // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_166 ;// L0 -extern struct __forward_tag_reference_166 ___IO_2_1_stdin__167;// L315 -extern struct __forward_tag_reference_166 ___IO_2_1_stdout__168;// L316 -extern struct __forward_tag_reference_166 ___IO_2_1_stderr__169;// L317 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern int (____underflow_184) (___IO_FILE_163 *);// L385 -extern int (____underflow_185) (___IO_FILE_164 *);// L385 -extern int (____uflow_186) (___IO_FILE_163 *);// L386 -extern int (____uflow_187) (___IO_FILE_164 *);// L386 -extern int (____overflow_188) (___IO_FILE_163 *, int );// L387 -extern int (____overflow_189) (___IO_FILE_164 *, int );// L387 -extern int (___IO_getc_193) (___IO_FILE_163 * (____fp_190));// L429 -extern int (___IO_getc_194) (___IO_FILE_164 * (____fp_191));// L429 -extern int (___IO_putc_199) (int ____c_195, ___IO_FILE_163 * (____fp_196));// L430 -extern int (___IO_putc_200) (int ____c_195, ___IO_FILE_164 * (____fp_197));// L430 -extern int (___IO_feof_204) (___IO_FILE_163 * (____fp_201));// L431 -extern int (___IO_feof_205) (___IO_FILE_164 * (____fp_202));// L431 -extern int (___IO_ferror_209) (___IO_FILE_163 * (____fp_206));// L432 -extern int (___IO_ferror_210) (___IO_FILE_164 * (____fp_207));// L432 -extern int (___IO_peekc_locked_214) (___IO_FILE_163 * (____fp_211));// L434 -extern int (___IO_peekc_locked_215) (___IO_FILE_164 * (____fp_212));// L434 -extern void (___IO_flockfile_216) (___IO_FILE_163 *);// L440 -extern void (___IO_flockfile_217) (___IO_FILE_164 *);// L440 -extern void (___IO_funlockfile_218) (___IO_FILE_163 *);// L441 -extern void (___IO_funlockfile_219) (___IO_FILE_164 *);// L441 -extern int (___IO_ftrylockfile_220) (___IO_FILE_163 *);// L442 -extern int (___IO_ftrylockfile_221) (___IO_FILE_164 *);// L442 -extern int (___IO_vfscanf_222) (___IO_FILE_163 * __restrict , const char * __restrict , ____gnuc_va_list_82 , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_224) (___IO_FILE_164 * __restrict , const char * __restrict , ____gnuc_va_list_82 , int * __restrict );// L459:L460 - +struct __forward_tag_reference_174 ;// L0 +extern struct __forward_tag_reference_174 ___IO_2_1_stdin__175;// L315 +extern struct __forward_tag_reference_174 ___IO_2_1_stdout__176;// L316 +extern struct __forward_tag_reference_174 ___IO_2_1_stderr__177;// L317 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern int (____underflow_196) (___IO_FILE_171 *);// L385 +extern int (____underflow_197) (___IO_FILE_172 *);// L385 +extern int (____uflow_199) (___IO_FILE_171 *);// L386 +extern int (____uflow_200) (___IO_FILE_172 *);// L386 +extern int (____overflow_202) (___IO_FILE_171 *, int );// L387 +extern int (____overflow_203) (___IO_FILE_172 *, int );// L387 +extern int (___IO_getc_208) (___IO_FILE_171 * (____fp_205));// L429 +extern int (___IO_getc_209) (___IO_FILE_172 * (____fp_206));// L429 +extern int (___IO_putc_215) (int ____c_211, ___IO_FILE_171 * (____fp_212));// L430 +extern int (___IO_putc_216) (int ____c_211, ___IO_FILE_172 * (____fp_213));// L430 +extern int (___IO_feof_221) (___IO_FILE_171 * (____fp_218));// L431 +extern int (___IO_feof_222) (___IO_FILE_172 * (____fp_219));// L431 +extern int (___IO_ferror_227) (___IO_FILE_171 * (____fp_224));// L432 +extern int (___IO_ferror_228) (___IO_FILE_172 * (____fp_225));// L432 +extern int (___IO_peekc_locked_233) (___IO_FILE_171 * (____fp_230));// L434 +extern int (___IO_peekc_locked_234) (___IO_FILE_172 * (____fp_231));// L434 +extern void (___IO_flockfile_236) (___IO_FILE_171 *);// L440 +extern void (___IO_flockfile_237) (___IO_FILE_172 *);// L440 +extern void (___IO_funlockfile_239) (___IO_FILE_171 *);// L441 +extern void (___IO_funlockfile_240) (___IO_FILE_172 *);// L441 +extern int (___IO_ftrylockfile_242) (___IO_FILE_171 *);// L442 +extern int (___IO_ftrylockfile_243) (___IO_FILE_172 *);// L442 +extern int (___IO_vfscanf_245) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_247) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_251) (___IO_FILE_171 * __restrict , const char * __restrict , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_252) (___IO_FILE_172 * __restrict , const char * __restrict , int * __restrict );// L459:L460 +extern int (___IO_vfprintf_254) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 +extern int (___IO_vfprintf_256) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 +extern int (___IO_vfprintf_260) ();// L461:L462 +extern ____ssize_t_49 (___IO_padn_261) (___IO_FILE_171 *, int , ____ssize_t_49 );// L463 +extern ____ssize_t_49 (___IO_padn_262) (___IO_FILE_172 *, int , ____ssize_t_49 );// L463 +extern __size_t_1 (___IO_sgetn_265) (___IO_FILE_171 *, void *, __size_t_1 );// L464 +extern __size_t_1 (___IO_sgetn_266) (___IO_FILE_172 *, void *, __size_t_1 );// L464 +extern ____off64_t_24 (___IO_seekoff_268) (___IO_FILE_171 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekoff_269) (___IO_FILE_172 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekpos_272) (___IO_FILE_171 *, ____off64_t_24 , int );// L467 +extern ____off64_t_24 (___IO_seekpos_273) (___IO_FILE_172 *, ____off64_t_24 , int );// L467 +extern void (___IO_free_backup_area_276) (___IO_FILE_171 *);// L469 +extern void (___IO_free_backup_area_277) (___IO_FILE_172 *);// L469 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern struct ___IO_FILE_99 * (__stdin_291);// L168 +extern struct ___IO_FILE_124 * (__stdin_292);// L168 +extern struct ___IO_FILE_99 * (__stdout_294);// L169 +extern struct ___IO_FILE_124 * (__stdout_295);// L169 +extern struct ___IO_FILE_99 * (__stderr_297);// L170 +extern struct ___IO_FILE_124 * (__stderr_298);// L170 +extern int (__remove_301) (const char * (____filename_300));// L178 +extern int (__rename_304) (const char * (____old_302), const char * (____new_303));// L180 +extern int (__renameat_309) (int ____oldfd_305, const char * (____old_306), int ____newfd_307, const char * (____new_308));// L185:L186 +extern __FILE_59 * ((__tmpfile_310) (void ));// L195 +extern __FILE_59 * ((__tmpfile_316) (void ));// L198 +extern __FILE_59 * ((__tmpfile_314) (void ));// L195 +extern __FILE_59 * ((__tmpfile_312) (void ));// L198 +extern char * ((__tmpnam_319) (char * (____s_318)));// L209 +extern char * ((__tmpnam_320) (char * (____s_318)));// L209 +extern char * ((__tmpnam_r_322) (char * (____s_321)));// L215 +extern char * ((__tmpnam_r_323) (char * (____s_321)));// L215 +extern char * ((__tempnam_326) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 +extern char * ((__tempnam_327) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 +extern int (__fclose_330) (__FILE_59 * (____stream_328));// L237 +extern int (__fclose_332) (__FILE_59 * (____stream_328));// L237 +extern int (__fflush_336) (__FILE_59 * (____stream_334));// L242 +extern int (__fflush_unlocked_340) (__FILE_59 * (____stream_338));// L252 +extern __FILE_59 * ((__fopen_344) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 +extern __FILE_59 * ((__fopen_346) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 +extern __FILE_59 * ((__fopen_354) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 +extern __FILE_59 * ((__fopen_356) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 +extern __FILE_59 * ((__freopen_362) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 +extern __FILE_59 * ((__freopen_368) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 +extern __FILE_59 * ((__freopen_366) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 +extern __FILE_59 * ((__freopen_364) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 +extern __FILE_59 * ((__fdopen_372) (int ____fd_370, const char * (____modes_371)));// L306 +extern __FILE_59 * ((__fdopen_374) (int ____fd_370, const char * (____modes_371)));// L306 +extern __FILE_59 * ((__fmemopen_379) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 +extern __FILE_59 * ((__fmemopen_381) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 +extern __FILE_59 * ((__open_memstream_385) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 +extern __FILE_59 * ((__open_memstream_387) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 +extern void (__setbuf_392) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 +extern void (__setbuf_394) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 +extern int (__setvbuf_401) (__FILE_59 * __restrict ____stream_396, char * __restrict ____buf_398, int ____modes_399, __size_t_1 ____n_400);// L336:L337 +extern void (__setbuffer_407) (__FILE_59 * __restrict ____stream_403, char * __restrict ____buf_405, __size_t_1 ____size_406);// L343:L344 +extern void (__setlinebuf_411) (__FILE_59 * (____stream_409));// L347 +extern int (__fprintf_416) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 +extern int (__fprintf_418) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 +extern int (__printf_421) (const char * __restrict ____format_420, ... );// L362 +extern int (__sprintf_424) (char * __restrict ____s_422, const char * __restrict ____format_423, ... );// L364:L365 +extern int (__vfprintf_430) (__FILE_59 * __restrict ____s_425, const char * __restrict ____format_427, ____gnuc_va_list_86 ____arg_428);// L371:L372 +extern int (__vprintf_437) (const char * __restrict ____format_434, ____gnuc_va_list_86 ____arg_435);// L377 +extern int (__vsprintf_443) (char * __restrict ____s_439, const char * __restrict ____format_440, ____gnuc_va_list_86 ____arg_441);// L379:L380 +extern int (__snprintf_448) (char * __restrict ____s_445, __size_t_1 ____maxlen_446, const char * __restrict ____format_447, ... );// L386:L388 +extern int (__vsnprintf_454) (char * __restrict ____s_449, __size_t_1 ____maxlen_450, const char * __restrict ____format_451, ____gnuc_va_list_86 ____arg_452);// L390:L392 +extern int (__vdprintf_460) (int ____fd_456, const char * __restrict ____fmt_457, ____gnuc_va_list_86 ____arg_458);// L412:L414 +extern int (__dprintf_464) (int ____fd_462, const char * __restrict ____fmt_463, ... );// L415:L416 +extern int (__fscanf_468) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_470) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_472) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_474) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__scanf_477) (const char * __restrict ____format_476, ... );// L431 +extern int (__scanf_478) (const char * __restrict ____format_476, ... );// L431 +extern int (__sscanf_481) (const char * __restrict ____s_479, const char * __restrict ____format_480, ... );// L433:L434 -extern int (___IO_vfprintf_231) (___IO_FILE_163 * __restrict , const char * __restrict , ____gnuc_va_list_82 );// L461:L462 -extern int (___IO_vfprintf_233) (___IO_FILE_164 * __restrict , const char * __restrict , ____gnuc_va_list_82 );// L461:L462 -extern ____ssize_t_49 (___IO_padn_238) (___IO_FILE_163 *, int , ____ssize_t_49 );// L463 -extern ____ssize_t_49 (___IO_padn_239) (___IO_FILE_164 *, int , ____ssize_t_49 );// L463 -extern __size_t_1 (___IO_sgetn_240) (___IO_FILE_163 *, void *, __size_t_1 );// L464 -extern __size_t_1 (___IO_sgetn_241) (___IO_FILE_164 *, void *, __size_t_1 );// L464 -extern ____off64_t_24 (___IO_seekoff_242) (___IO_FILE_163 *, ____off64_t_24 , int , int );// L466 -extern ____off64_t_24 (___IO_seekoff_243) (___IO_FILE_164 *, ____off64_t_24 , int , int );// L466 -extern ____off64_t_24 (___IO_seekpos_244) (___IO_FILE_163 *, ____off64_t_24 , int );// L467 -extern ____off64_t_24 (___IO_seekpos_245) (___IO_FILE_164 *, ____off64_t_24 , int );// L467 -extern void (___IO_free_backup_area_246) (___IO_FILE_163 *);// L469 -extern void (___IO_free_backup_area_247) (___IO_FILE_164 *);// L469 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -extern struct ___IO_FILE_95 * (__stdin_257);// L168 -extern struct ___IO_FILE_119 * (__stdin_258);// L168 -extern struct ___IO_FILE_95 * (__stdout_259);// L169 -extern struct ___IO_FILE_119 * (__stdout_260);// L169 -extern struct ___IO_FILE_95 * (__stderr_261);// L170 -extern struct ___IO_FILE_119 * (__stderr_262);// L170 -extern int (__remove_264) (const char * (____filename_263));// L178 -extern int (__rename_267) (const char * (____old_265), const char * (____new_266));// L180 -extern int (__renameat_272) (int ____oldfd_268, const char * (____old_269), int ____newfd_270, const char * (____new_271));// L185:L186 -extern __FILE_58 * ((__tmpfile_273) (void ));// L195 -extern __FILE_58 * ((__tmpfile_279) (void ));// L198 -extern __FILE_58 * ((__tmpfile_277) (void ));// L198 -extern __FILE_58 * ((__tmpfile_275) (void ));// L195 -extern char * ((__tmpnam_282) (char * (____s_281)));// L209 -extern char * ((__tmpnam_283) (char * (____s_281)));// L209 -extern char * ((__tmpnam_r_285) (char * (____s_284)));// L215 -extern char * ((__tmpnam_r_286) (char * (____s_284)));// L215 -extern char * ((__tempnam_289) (const char * (____dir_287), const char * (____pfx_288)));// L227:L228 -extern char * ((__tempnam_290) (const char * (____dir_287), const char * (____pfx_288)));// L227:L228 -extern int (__fclose_293) (__FILE_58 * (____stream_291));// L237 -extern int (__fclose_295) (__FILE_58 * (____stream_291));// L237 -extern int (__fflush_299) (__FILE_58 * (____stream_297));// L242 -extern int (__fflush_unlocked_303) (__FILE_58 * (____stream_301));// L252 -extern __FILE_58 * ((__fopen_307) (const char * __restrict ____filename_305, const char * __restrict ____modes_306));// L272:L273 -extern __FILE_58 * ((__fopen_309) (const char * __restrict ____filename_305, const char * __restrict ____modes_306));// L272:L273 -extern __FILE_58 * ((__fopen_317) (const char * __restrict ____filename_315, const char * __restrict ____modes_316));// L283:L285 -extern __FILE_58 * ((__fopen_319) (const char * __restrict ____filename_315, const char * __restrict ____modes_316));// L283:L285 -extern __FILE_58 * ((__freopen_325) (const char * __restrict ____filename_311, const char * __restrict ____modes_312, __FILE_58 * __restrict ____stream_313));// L278:L280 -extern __FILE_58 * ((__freopen_331) (const char * __restrict ____filename_321, const char * __restrict ____modes_322, __FILE_58 * __restrict ____stream_323));// L286:L289 -extern __FILE_58 * ((__freopen_329) (const char * __restrict ____filename_321, const char * __restrict ____modes_322, __FILE_58 * __restrict ____stream_323));// L286:L289 -extern __FILE_58 * ((__freopen_327) (const char * __restrict ____filename_311, const char * __restrict ____modes_312, __FILE_58 * __restrict ____stream_313));// L278:L280 -extern __FILE_58 * ((__fdopen_335) (int ____fd_333, const char * (____modes_334)));// L306 -extern __FILE_58 * ((__fdopen_337) (int ____fd_333, const char * (____modes_334)));// L306 -extern __FILE_58 * ((__fmemopen_342) (void * (____s_339), __size_t_1 ____len_340, const char * (____modes_341)));// L319:L320 -extern __FILE_58 * ((__fmemopen_344) (void * (____s_339), __size_t_1 ____len_340, const char * (____modes_341)));// L319:L320 -extern __FILE_58 * ((__open_memstream_348) (char * (* (____bufloc_346)), __size_t_1 * (____sizeloc_347)));// L325 -extern __FILE_58 * ((__open_memstream_350) (char * (* (____bufloc_346)), __size_t_1 * (____sizeloc_347)));// L325 -extern void (__setbuf_355) (__FILE_58 * __restrict ____stream_352, char * __restrict ____buf_354);// L332 -extern void (__setbuf_357) (__FILE_58 * __restrict ____stream_352, char * __restrict ____buf_354);// L332 -extern int (__setvbuf_364) (__FILE_58 * __restrict ____stream_359, char * __restrict ____buf_361, int ____modes_362, __size_t_1 ____n_363);// L336:L337 -extern void (__setbuffer_369) (__FILE_58 * __restrict ____stream_365, char * __restrict ____buf_367, __size_t_1 ____size_368);// L343:L344 -extern void (__setlinebuf_373) (__FILE_58 * (____stream_371));// L347 -extern int (__fprintf_378) (__FILE_58 * __restrict ____stream_375, const char * __restrict ____format_377, ... );// L356:L357 -extern int (__fprintf_380) (__FILE_58 * __restrict ____stream_375, const char * __restrict ____format_377, ... );// L356:L357 -extern int (__printf_383) (const char * __restrict ____format_382, ... );// L362 -extern int (__sprintf_386) (char * __restrict ____s_384, const char * __restrict ____format_385, ... );// L364:L365 -extern int (__vfprintf_392) (__FILE_58 * __restrict ____s_387, const char * __restrict ____format_389, ____gnuc_va_list_82 ____arg_390);// L371:L372 -extern int (__vprintf_399) (const char * __restrict ____format_396, ____gnuc_va_list_82 ____arg_397);// L377 -extern int (__vsprintf_405) (char * __restrict ____s_401, const char * __restrict ____format_402, ____gnuc_va_list_82 ____arg_403);// L379:L380 -extern int (__snprintf_409) (char * __restrict ____s_406, __size_t_1 ____maxlen_407, const char * __restrict ____format_408, ... );// L386:L388 -extern int (__vsnprintf_415) (char * __restrict ____s_410, __size_t_1 ____maxlen_411, const char * __restrict ____format_412, ____gnuc_va_list_82 ____arg_413);// L390:L392 -extern int (__vdprintf_420) (int ____fd_416, const char * __restrict ____fmt_417, ____gnuc_va_list_82 ____arg_418);// L412:L414 -extern int (__dprintf_424) (int ____fd_422, const char * __restrict ____fmt_423, ... );// L415:L416 -extern int (__fscanf_428) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 -extern int (__fscanf_430) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 -extern int (__fscanf_432) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 -extern int (__fscanf_434) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 -extern int (__scanf_437) (const char * __restrict ____format_436, ... );// L431 -extern int (__scanf_438) (const char * __restrict ____format_436, ... );// L431 -extern int (__sscanf_441) (const char * __restrict ____s_439, const char * __restrict ____format_440, ... );// L433:L434 +extern int (__vfscanf_509) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 +extern int (__vfscanf_513) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 +extern int (__vscanf_520) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 +extern int (__vscanf_522) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 +extern int (__vsscanf_528) (const char * __restrict ____s_524, const char * __restrict ____format_525, ____gnuc_va_list_86 ____arg_526);// L483:L485 -extern int (__vfscanf_468) (__FILE_58 * __restrict ____s_463, const char * __restrict ____format_465, ____gnuc_va_list_82 ____arg_466);// L471:L473 -extern int (__vfscanf_472) (__FILE_58 * __restrict ____s_463, const char * __restrict ____format_465, ____gnuc_va_list_82 ____arg_466);// L471:L473 -extern int (__vscanf_479) (const char * __restrict ____format_476, ____gnuc_va_list_82 ____arg_477);// L479:L480 -extern int (__vscanf_481) (const char * __restrict ____format_476, ____gnuc_va_list_82 ____arg_477);// L479:L480 -extern int (__vsscanf_487) (const char * __restrict ____s_483, const char * __restrict ____format_484, ____gnuc_va_list_82 ____arg_485);// L483:L485 +extern int (__fgetc_563) (__FILE_59 * (____stream_561));// L531 +extern int (__getc_567) (__FILE_59 * (____stream_565));// L532 +extern int (__getchar_569) (void );// L538 +extern int (__getc_unlocked_572) (__FILE_59 * (____stream_570));// L550 +extern int (__getchar_unlocked_574) (void );// L551 +extern int (__fgetc_unlocked_577) (__FILE_59 * (____stream_575));// L561 +extern int (__fputc_582) (int ____c_579, __FILE_59 * (____stream_580));// L573 +extern int (__fputc_584) (int ____c_579, __FILE_59 * (____stream_580));// L573 +extern int (__putc_589) (int ____c_586, __FILE_59 * (____stream_587));// L574 +extern int (__putchar_592) (int ____c_591);// L580 +extern int (__fputc_unlocked_596) (int ____c_593, __FILE_59 * (____stream_594));// L594 +extern int (__putc_unlocked_601) (int ____c_598, __FILE_59 * (____stream_599));// L602 +extern int (__putchar_unlocked_604) (int ____c_603);// L603 +extern int (__getw_607) (__FILE_59 * (____stream_605));// L610 +extern int (__putw_612) (int ____w_609, __FILE_59 * (____stream_610));// L613 +extern char * ((__fgets_618) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_620) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_622) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_624) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern ____ssize_t_49 (____getdelim_631) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 +extern ____ssize_t_49 (____getdelim_635) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 +extern ____ssize_t_49 (__getdelim_644) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 +extern ____ssize_t_49 (__getdelim_648) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 +extern ____ssize_t_49 (__getline_656) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 +extern ____ssize_t_49 (__getline_660) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 +extern int (__fputs_667) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 +extern int (__fputs_669) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 +extern int (__puts_672) (const char * (____s_671));// L695 +extern int (__ungetc_676) (int ____c_673, __FILE_59 * (____stream_674));// L702 +extern int (__fseek_714) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 +extern int (__fseek_716) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 +extern long int (__ftell_720) (__FILE_59 * (____stream_718));// L754 +extern long int (__ftell_722) (__FILE_59 * (____stream_718));// L754 +extern void (__rewind_726) (__FILE_59 * (____stream_724));// L759 +extern int (__fseeko_733) (__FILE_59 * (____stream_728), ____off_t_23 ____off_730, int ____whence_732);// L773 +extern int (__fseeko_744) (__FILE_59 * (____stream_739), ____off64_t_24 ____off_741, int ____whence_743);// L781:L783 +extern ____off_t_23 (__ftello_758) (__FILE_59 * (____stream_737));// L778 +extern ____off_t_23 (__ftello_750) (__FILE_59 * (____stream_737));// L778 +extern int (__fgetpos_766) (__FILE_59 * __restrict ____stream_762, __fpos_t_287 * __restrict ____pos_764);// L798 +extern ____off64_t_24 (__ftello_754) (__FILE_59 * (____stream_748));// L784 +extern int (__fgetpos_778) (__FILE_59 * __restrict ____stream_774, __fpos_t_289 * __restrict ____pos_776);// L806:L807 +extern int (__fsetpos_786) (__FILE_59 * (____stream_770), const __fpos_t_287 * (____pos_772));// L803 +extern int (__fsetpos_790) (__FILE_59 * (____stream_782), const __fpos_t_289 * (____pos_784));// L808:L809 +extern void (__clearerr_796) (__FILE_59 * (____stream_794));// L826 +extern int (__feof_800) (__FILE_59 * (____stream_798));// L828 +extern int (__feof_802) (__FILE_59 * (____stream_798));// L828 +extern int (__ferror_806) (__FILE_59 * (____stream_804));// L830 +extern int (__ferror_808) (__FILE_59 * (____stream_804));// L830 +extern void (__clearerr_unlocked_812) (__FILE_59 * (____stream_810));// L835 +extern int (__feof_unlocked_816) (__FILE_59 * (____stream_814));// L836 +extern int (__feof_unlocked_818) (__FILE_59 * (____stream_814));// L836 +extern int (__ferror_unlocked_822) (__FILE_59 * (____stream_820));// L837 +extern int (__ferror_unlocked_824) (__FILE_59 * (____stream_820));// L837 +extern void (__perror_827) (const char * (____s_826));// L846 +extern void (__perror_828) (const char * (____s_826));// L846 +extern int __sys_nerr_829;// L26 - -extern int (__fgetc_520) (__FILE_58 * (____stream_518));// L531 -extern int (__getc_523) (__FILE_58 * (____stream_521));// L532 -extern int (__getchar_524) (void );// L538 -extern int (__getc_unlocked_527) (__FILE_58 * (____stream_525));// L550 -extern int (__getchar_unlocked_529) (void );// L551 -extern int (__fgetc_unlocked_532) (__FILE_58 * (____stream_530));// L561 -extern int (__fputc_537) (int ____c_534, __FILE_58 * (____stream_535));// L573 -extern int (__fputc_539) (int ____c_534, __FILE_58 * (____stream_535));// L573 -extern int (__putc_544) (int ____c_541, __FILE_58 * (____stream_542));// L574 -extern int (__putchar_546) (int ____c_545);// L580 -extern int (__fputc_unlocked_550) (int ____c_547, __FILE_58 * (____stream_548));// L594 -extern int (__putc_unlocked_555) (int ____c_552, __FILE_58 * (____stream_553));// L602 -extern int (__putchar_unlocked_558) (int ____c_557);// L603 -extern int (__getw_561) (__FILE_58 * (____stream_559));// L610 -extern int (__putw_566) (int ____w_563, __FILE_58 * (____stream_564));// L613 -extern char * ((__fgets_572) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 -extern char * ((__fgets_574) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 -extern char * ((__fgets_576) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 -extern char * ((__fgets_578) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 -extern ____ssize_t_49 (____getdelim_585) (char * (* __restrict ____lineptr_580), __size_t_1 * __restrict ____n_581, int ____delimiter_582, __FILE_58 * __restrict ____stream_583);// L665:L667 -extern ____ssize_t_49 (____getdelim_587) (char * (* __restrict ____lineptr_580), __size_t_1 * __restrict ____n_581, int ____delimiter_582, __FILE_58 * __restrict ____stream_583);// L665:L667 -extern ____ssize_t_49 (__getdelim_594) (char * (* __restrict ____lineptr_589), __size_t_1 * __restrict ____n_590, int ____delimiter_591, __FILE_58 * __restrict ____stream_592);// L668:L670 -extern ____ssize_t_49 (__getdelim_596) (char * (* __restrict ____lineptr_589), __size_t_1 * __restrict ____n_590, int ____delimiter_591, __FILE_58 * __restrict ____stream_592);// L668:L670 -extern ____ssize_t_49 (__getline_602) (char * (* __restrict ____lineptr_598), __size_t_1 * __restrict ____n_599, __FILE_58 * __restrict ____stream_600);// L678:L680 -extern ____ssize_t_49 (__getline_604) (char * (* __restrict ____lineptr_598), __size_t_1 * __restrict ____n_599, __FILE_58 * __restrict ____stream_600);// L678:L680 -extern int (__fputs_609) (const char * __restrict ____s_606, __FILE_58 * __restrict ____stream_607);// L689 -extern int (__fputs_611) (const char * __restrict ____s_606, __FILE_58 * __restrict ____stream_607);// L689 -extern int (__puts_614) (const char * (____s_613));// L695 -extern int (__ungetc_618) (int ____c_615, __FILE_58 * (____stream_616));// L702 -extern int (__fseek_654) (__FILE_58 * (____stream_650), long int ____off_652, int ____whence_653);// L749 -extern int (__fseek_656) (__FILE_58 * (____stream_650), long int ____off_652, int ____whence_653);// L749 -extern long int (__ftell_660) (__FILE_58 * (____stream_658));// L754 -extern long int (__ftell_662) (__FILE_58 * (____stream_658));// L754 -extern void (__rewind_666) (__FILE_58 * (____stream_664));// L759 -extern int (__fseeko_671) (__FILE_58 * (____stream_667), ____off_t_23 ____off_669, int ____whence_670);// L773 -extern int (__fseeko_679) (__FILE_58 * (____stream_675), ____off64_t_24 ____off_677, int ____whence_678);// L781:L783 -extern ____off_t_23 (__ftello_683) (__FILE_58 * (____stream_673));// L778 -extern ____off_t_23 (__ftello_685) (__FILE_58 * (____stream_673));// L778 -extern int (__fgetpos_693) (__FILE_58 * __restrict ____stream_689, __fpos_t_253 * __restrict ____pos_691);// L798 -extern ____off64_t_24 (__ftello_687) (__FILE_58 * (____stream_681));// L784 -extern int (__fgetpos_705) (__FILE_58 * __restrict ____stream_701, __fpos_t_255 * __restrict ____pos_703);// L806:L807 -extern int (__fsetpos_713) (__FILE_58 * (____stream_697), const __fpos_t_253 * (____pos_699));// L803 -extern int (__fsetpos_717) (__FILE_58 * (____stream_709), const __fpos_t_255 * (____pos_711));// L808:L809 -extern void (__clearerr_723) (__FILE_58 * (____stream_721));// L826 -extern int (__feof_726) (__FILE_58 * (____stream_724));// L828 -extern int (__feof_728) (__FILE_58 * (____stream_724));// L828 -extern int (__ferror_732) (__FILE_58 * (____stream_730));// L830 -extern int (__ferror_734) (__FILE_58 * (____stream_730));// L830 -extern void (__clearerr_unlocked_738) (__FILE_58 * (____stream_736));// L835 -extern int (__feof_unlocked_742) (__FILE_58 * (____stream_740));// L836 -extern int (__feof_unlocked_744) (__FILE_58 * (____stream_740));// L836 -extern int (__ferror_unlocked_748) (__FILE_58 * (____stream_746));// L837 -extern int (__ferror_unlocked_750) (__FILE_58 * (____stream_746));// L837 -extern void (__perror_753) (const char * (____s_752));// L846 -extern void (__perror_754) (const char * (____s_752));// L846 -extern int __sys_nerr_755;// L26 - -extern int (__fileno_761) (__FILE_58 * (____stream_757));// L858 -extern int (__fileno_759) (__FILE_58 * (____stream_757));// L858 -extern int (__fileno_unlocked_767) (__FILE_58 * (____stream_763));// L863 -extern int (__fileno_unlocked_765) (__FILE_58 * (____stream_763));// L863 -extern __FILE_58 * ((__popen_771) (const char * (____command_769), const char * (____modes_770)));// L872 -extern __FILE_58 * ((__popen_773) (const char * (____command_769), const char * (____modes_770)));// L872 -extern int (__pclose_777) (__FILE_58 * (____stream_775));// L878 -extern char * ((__ctermid_780) (char * (____s_779)));// L884 -extern void (__flockfile_783) (__FILE_58 * (____stream_781));// L912 -extern int (__ftrylockfile_787) (__FILE_58 * (____stream_785));// L916 -extern int (__ftrylockfile_789) (__FILE_58 * (____stream_785));// L916 -extern void (__funlockfile_793) (__FILE_58 * (____stream_791));// L919 +extern int (__fileno_835) (__FILE_59 * (____stream_831));// L858 +extern int (__fileno_833) (__FILE_59 * (____stream_831));// L858 +extern int (__fileno_unlocked_841) (__FILE_59 * (____stream_837));// L863 +extern int (__fileno_unlocked_839) (__FILE_59 * (____stream_837));// L863 +extern __FILE_59 * ((__popen_845) (const char * (____command_843), const char * (____modes_844)));// L872 +extern __FILE_59 * ((__popen_847) (const char * (____command_843), const char * (____modes_844)));// L872 +extern int (__pclose_851) (__FILE_59 * (____stream_849));// L878 +extern char * ((__ctermid_854) (char * (____s_853)));// L884 +extern void (__flockfile_857) (__FILE_59 * (____stream_855));// L912 +extern int (__ftrylockfile_861) (__FILE_59 * (____stream_859));// L916 +extern int (__ftrylockfile_863) (__FILE_59 * (____stream_859));// L916 +extern void (__funlockfile_867) (__FILE_59 * (____stream_865));// L919 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ @@ -1168,44 +1311,47 @@ extern void (__funlockfile_793) (__FILE_58 * (____stream_791));// L919 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____sprintf_chk_825) (char * __restrict ____s_821, int ____flag_822, __size_t_1 ____slen_823, const char * __restrict ____format_824, ... );// L23:L24 -extern int (____vsprintf_chk_832) (char * __restrict ____s_826, int ____flag_827, __size_t_1 ____slen_828, const char * __restrict ____format_829, ____gnuc_va_list_82 ____ap_830);// L25:L27 +extern int (____sprintf_chk_899) (char * __restrict ____s_895, int ____flag_896, __size_t_1 ____slen_897, const char * __restrict ____format_898, ... );// L23:L24 +extern int (____vsprintf_chk_906) (char * __restrict ____s_900, int ____flag_901, __size_t_1 ____slen_902, const char * __restrict ____format_903, ____gnuc_va_list_86 ____ap_904);// L25:L27 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____snprintf_chk_846) (char * __restrict ____s_841, __size_t_1 ____n_842, int ____flag_843, __size_t_1 ____slen_844, const char * __restrict ____format_845, ... );// L52:L54 -extern int (____vsnprintf_chk_854) (char * __restrict ____s_847, __size_t_1 ____n_848, int ____flag_849, __size_t_1 ____slen_850, const char * __restrict ____format_851, ____gnuc_va_list_82 ____ap_852);// L55:L57 +extern int (____snprintf_chk_920) (char * __restrict ____s_915, __size_t_1 ____n_916, int ____flag_917, __size_t_1 ____slen_918, const char * __restrict ____format_919, ... );// L52:L54 +extern int (____vsnprintf_chk_928) (char * __restrict ____s_921, __size_t_1 ____n_922, int ____flag_923, __size_t_1 ____slen_924, const char * __restrict ____format_925, ____gnuc_va_list_86 ____ap_926);// L55:L57 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____fprintf_chk_869) (__FILE_58 * __restrict ____stream_865, int ____flag_867, const char * __restrict ____format_868, ... );// L85:L86 -extern int (____printf_chk_873) (int ____flag_871, const char * __restrict ____format_872, ... );// L87 -extern int (____vfprintf_chk_880) (__FILE_58 * __restrict ____stream_874, int ____flag_876, const char * __restrict ____format_877, ____gnuc_va_list_82 ____ap_878);// L88:L89 -extern int (____vprintf_chk_888) (int ____flag_884, const char * __restrict ____format_885, ____gnuc_va_list_82 ____ap_886);// L90:L91 +extern int (____fprintf_chk_943) (__FILE_59 * __restrict ____stream_939, int ____flag_941, const char * __restrict ____format_942, ... );// L85:L86 +extern int (____printf_chk_947) (int ____flag_945, const char * __restrict ____format_946, ... );// L87 +extern int (____vfprintf_chk_954) (__FILE_59 * __restrict ____stream_948, int ____flag_950, const char * __restrict ____format_951, ____gnuc_va_list_86 ____ap_952);// L88:L89 +extern int (____vprintf_chk_962) (int ____flag_958, const char * __restrict ____format_959, ____gnuc_va_list_86 ____ap_960);// L90:L91 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____dprintf_chk_910) (int ____fd_907, int ____flag_908, const char * __restrict ____fmt_909, ... );// L131:L132 -extern int (____vdprintf_chk_916) (int ____fd_911, int ____flag_912, const char * __restrict ____fmt_913, ____gnuc_va_list_82 ____arg_914);// L133:L135 +extern int (____dprintf_chk_984) (int ____fd_981, int ____flag_982, const char * __restrict ____fmt_983, ... );// L131:L132 +extern int (____vdprintf_chk_990) (int ____fd_985, int ____flag_986, const char * __restrict ____fmt_987, ____gnuc_va_list_86 ____arg_988);// L133:L135 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern char * ((____fgets_chk_930) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 -extern char * ((____fgets_chk_932) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 -extern char * ((____fgets_chk_934) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 -extern char * ((____fgets_alias_940) (char * __restrict ____s_936, int ____n_937, __FILE_58 * __restrict ____stream_938));// L243:L245 -extern char * ((____fgets_chk_warn_947) (char * __restrict ____s_942, __size_t_1 ____size_943, int ____n_944, __FILE_58 * __restrict ____stream_945));// L246:L250 +extern char * ((____fgets_chk_1004) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_chk_1006) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_chk_1008) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_alias_1014) (char * __restrict ____s_1010, int ____n_1011, __FILE_59 * __restrict ____stream_1012));// L243:L245 +extern char * ((____fgets_chk_warn_1021) (char * __restrict ____s_1016, __size_t_1 ____size_1017, int ____n_1018, __FILE_59 * __restrict ____stream_1019));// L246:L250 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -unsigned long __millis_1018= 123456789l;// L3 -unsigned long __millis_1019= 123456789l;// L3 -void (__thermal_runaway_protection_1027) (int * (__state_1020), unsigned long * (__timer_1021), float __temperature_1022, float __target_temperature_1023, int __heater_id_1024, int __period_seconds_1025, int __hysteresis_degc_1026) { +unsigned long __millis_1092= 123456789l;// L3 +unsigned long __millis_1093= 123456789l;// L3 +unsigned long __millis_1094= 123456789l;// L3 +void (__thermal_runaway_protection_1102) (int * (__state_1095), unsigned long * (__timer_1096), float __temperature_1097, float __target_temperature_1098, int __heater_id_1099, int __period_seconds_1100, int __hysteresis_degc_1101) { + +if (__static_condition_default_1103) { { { -if ( __temperature_1022 >= ( __target_temperature_1023 - __hysteresis_degc_1026 ) )// L7 +if ( __temperature_1097 >= ( __target_temperature_1098 - __hysteresis_degc_1101 ) )// L7 { { @@ -1213,14 +1359,14 @@ if ( __temperature_1022 >= ( __target_temperature_1023 - __hysteresis_degc_ -* __timer_1021 = 123456782l ; // L9 +* __timer_1096 = 123456782l ; // L9 } } } else { -if (__static_condition_default_1028) { -if ( ( __millis_1018 - * __timer_1021 ) > ( __period_seconds_1025 ) * 1000 )// L11 +if (__static_condition_default_1104) { +if ( ( __millis_1092 - * __timer_1096 ) > ( __period_seconds_1100 ) * 1000 )// L11 { { @@ -1228,15 +1374,15 @@ if ( ( __millis_1018 - * __timer_1021 ) > ( __period_seconds_1025 ) * 1000 - __printf_383 ("%s","Thermal Runaway, system stopped! Heater_ID: ") ; // L13 - __printf_383 ("%d",( int ) __heater_id_1024 ) ; // L14 - __printf_383 ("%s","THERMAL RUNAWAY") ; // L15 + __printf_421 ("%s","Thermal Runaway, system stopped! Heater_ID: ") ; // L13 + __printf_421 ("%d",( int ) __heater_id_1099 ) ; // L14 + __printf_421 ("%s","THERMAL RUNAWAY") ; // L15 } } } } -if (__static_condition_default_1029) { -if ( ( __millis_1019 - * __timer_1021 ) > ( __period_seconds_1025 ) * 1000 )// L11 +if (__static_condition_default_1105) { +if ( ( __millis_1093 - * __timer_1096 ) > ( __period_seconds_1100 ) * 1000 )// L11 { { @@ -1244,31 +1390,68 @@ if ( ( __millis_1019 - * __timer_1021 ) > ( __period_seconds_1025 ) * 1000 - __printf_383 ("%s","Thermal Runaway, system stopped! Heater_ID: ") ; // L13 - __printf_383 ("%d",( int ) __heater_id_1024 ) ; // L14 - __printf_383 ("%s","THERMAL RUNAWAY") ; // L15 +__static_type_error("type error") ; // L13 +__static_type_error("type error") ; // L14 +__static_type_error("type error") ; // L15 } } } } +if (__static_condition_default_1106) { +if ( ( __millis_1094 - * __timer_1096 ) > ( __period_seconds_1100 ) * 1000 )// L11 +{ + +{ +{ + + + + __printf_421 ("%s","Thermal Runaway, system stopped! Heater_ID: ") ; // L13 + __printf_421 ("%d",( int ) __heater_id_1099 ) ; // L14 + __printf_421 ("%s","THERMAL RUNAWAY") ; // L15 +} +} +} +} +} +} +} + + } } +int (__main_1107) (void ) { + +if (__static_condition_default_1109) { + +{ +{ + + + +__static_type_error("type error") ; // L21 +return 0 ;// L22 +} } } -int (__main_1030) (void ) { +} +int (__main_1108) (void ) { + +if (__static_condition_default_1110) { { { - __thermal_runaway_protection_1027 (0,123456783,145.0f,200.0f,1,10,1) ; // L21 + __thermal_runaway_protection_1102 (0,123456783,145.0f,200.0f,1,10,1) ; // L21 return 0 ;// L22 } } } +} diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/30248214c7f.desugared.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/30248214c7f.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/30248214c7f.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/30248214c7f.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/30248214c7f.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.desugared.c b/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.desugared.c index 577013a1..be450851 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.desugared.c +++ b/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.desugared.c @@ -7,6 +7,275 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_311; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_536; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_846; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_761; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_875; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_677; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_489; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_386; +extern const bool __static_condition_default_455; +extern const bool __static_condition_default_834; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_512; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_544; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_204; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_290; +extern const bool __static_condition_default_955; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_842; +extern const bool __static_condition_default_929; +extern const bool __static_condition_default_779; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_759; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_367; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_1096; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_84; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_382; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_568; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_894; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_549; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_747; +extern const bool __static_condition_default_753; +extern const bool __static_condition_default_337; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_583; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_550; +extern const bool __static_condition_default_613; +extern const bool __static_condition_default_963; +extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_488; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_769; +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_636; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_907; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_365; +extern const bool __static_condition_default_187; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_702; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_791; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_419; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_619; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_380; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_721; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_347; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_789; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_388; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_891; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_333; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_521; +extern const bool __static_condition_default_1097; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_76; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_670; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_559; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -58,134 +327,497 @@ __static_renaming("____ssize_t_49", "__ssize_t"); __static_renaming("____syscall_slong_t_50", "__syscall_slong_t"); __static_renaming("____syscall_ulong_t_51", "__syscall_ulong_t"); __static_renaming("____loff_t_52", "__loff_t"); -__static_renaming("____qaddr_t_53", "__qaddr_t"); -__static_renaming("____caddr_t_54", "__caddr_t"); -__static_renaming("____intptr_t_55", "__intptr_t"); -__static_renaming("____socklen_t_56", "__socklen_t"); -__static_renaming("__FILE_58", "FILE"); -__static_renaming("____FILE_59", "__FILE"); -__static_renaming("____mbstate_t_68", "__mbstate_t"); +__static_renaming("____qaddr_t_54", "__qaddr_t"); +__static_renaming("____caddr_t_55", "__caddr_t"); +__static_renaming("____intptr_t_56", "__intptr_t"); +__static_renaming("____socklen_t_57", "__socklen_t"); +__static_renaming("__FILE_59", "FILE"); +__static_renaming("____FILE_60", "__FILE"); __static_renaming("____mbstate_t_69", "__mbstate_t"); -__static_renaming("___G_fpos_t_75", "_G_fpos_t"); -__static_renaming("___G_fpos64_t_81", "_G_fpos64_t"); -__static_renaming("____gnuc_va_list_82", "__gnuc_va_list"); -__static_renaming("___IO_lock_t_84", "_IO_lock_t"); -__static_renaming("___IO_FILE_125", "_IO_FILE"); -__static_renaming("___IO_2_1_stdin__127", "_IO_2_1_stdin_"); -__static_renaming("___IO_2_1_stdout__128", "_IO_2_1_stdout_"); -__static_renaming("___IO_2_1_stderr__129", "_IO_2_1_stderr_"); -__static_renaming("____io_read_fn_133", "__io_read_fn"); -__static_renaming("____io_write_fn_137", "__io_write_fn"); -__static_renaming("____io_seek_fn_141", "__io_seek_fn"); -__static_renaming("____io_close_fn_143", "__io_close_fn"); -__static_renaming("____underflow_144", "__underflow"); -__static_renaming("____uflow_145", "__uflow"); -__static_renaming("____overflow_146", "__overflow"); -__static_renaming("___IO_getc_148", "_IO_getc"); -__static_renaming("___IO_putc_151", "_IO_putc"); -__static_renaming("___IO_feof_153", "_IO_feof"); -__static_renaming("___IO_ferror_155", "_IO_ferror"); -__static_renaming("___IO_peekc_locked_157", "_IO_peekc_locked"); -__static_renaming("___IO_flockfile_158", "_IO_flockfile"); -__static_renaming("___IO_funlockfile_159", "_IO_funlockfile"); -__static_renaming("___IO_ftrylockfile_160", "_IO_ftrylockfile"); -__static_renaming("___IO_vfscanf_161", "_IO_vfscanf"); -__static_renaming("___IO_vfprintf_162", "_IO_vfprintf"); -__static_renaming("___IO_padn_163", "_IO_padn"); -__static_renaming("___IO_sgetn_164", "_IO_sgetn"); -__static_renaming("___IO_seekoff_165", "_IO_seekoff"); -__static_renaming("___IO_seekpos_166", "_IO_seekpos"); -__static_renaming("___IO_free_backup_area_167", "_IO_free_backup_area"); -__static_renaming("__va_list_168", "va_list"); -__static_renaming("__off_t_169", "off_t"); -__static_renaming("__ssize_t_170", "ssize_t"); -__static_renaming("__fpos_t_171", "fpos_t"); -__static_renaming("__stdin_172", "stdin"); -__static_renaming("__stdout_173", "stdout"); -__static_renaming("__stderr_174", "stderr"); -__static_renaming("__remove_176", "remove"); -__static_renaming("__rename_179", "rename"); -__static_renaming("__renameat_184", "renameat"); -__static_renaming("__tmpfile_185", "tmpfile"); -__static_renaming("__tmpnam_187", "tmpnam"); -__static_renaming("__tmpnam_r_189", "tmpnam_r"); -__static_renaming("__tempnam_192", "tempnam"); -__static_renaming("__fclose_194", "fclose"); -__static_renaming("__fflush_196", "fflush"); -__static_renaming("__fflush_unlocked_198", "fflush_unlocked"); -__static_renaming("__fopen_201", "fopen"); -__static_renaming("__freopen_205", "freopen"); -__static_renaming("__fdopen_208", "fdopen"); -__static_renaming("__fmemopen_212", "fmemopen"); -__static_renaming("__open_memstream_215", "open_memstream"); -__static_renaming("__setbuf_218", "setbuf"); -__static_renaming("__setvbuf_223", "setvbuf"); -__static_renaming("__setbuffer_227", "setbuffer"); -__static_renaming("__setlinebuf_229", "setlinebuf"); -__static_renaming("__fprintf_232", "fprintf"); -__static_renaming("__printf_234", "printf"); -__static_renaming("__sprintf_237", "sprintf"); -__static_renaming("__vfprintf_241", "vfprintf"); -__static_renaming("__vprintf_244", "vprintf"); -__static_renaming("__vsprintf_248", "vsprintf"); -__static_renaming("__snprintf_252", "snprintf"); -__static_renaming("__vsnprintf_257", "vsnprintf"); -__static_renaming("__vdprintf_261", "vdprintf"); -__static_renaming("__dprintf_264", "dprintf"); -__static_renaming("__fscanf_267", "fscanf"); -__static_renaming("__scanf_269", "scanf"); -__static_renaming("__sscanf_272", "sscanf"); -__static_renaming("__vfscanf_284", "vfscanf"); -__static_renaming("__vscanf_287", "vscanf"); -__static_renaming("__vsscanf_291", "vsscanf"); -__static_renaming("__fgetc_304", "fgetc"); -__static_renaming("__getc_306", "getc"); -__static_renaming("__getchar_307", "getchar"); -__static_renaming("__getc_unlocked_309", "getc_unlocked"); -__static_renaming("__getchar_unlocked_310", "getchar_unlocked"); -__static_renaming("__fgetc_unlocked_312", "fgetc_unlocked"); -__static_renaming("__fputc_315", "fputc"); -__static_renaming("__putc_318", "putc"); -__static_renaming("__putchar_320", "putchar"); -__static_renaming("__fputc_unlocked_323", "fputc_unlocked"); -__static_renaming("__putc_unlocked_326", "putc_unlocked"); -__static_renaming("__putchar_unlocked_328", "putchar_unlocked"); -__static_renaming("__getw_330", "getw"); -__static_renaming("__putw_333", "putw"); -__static_renaming("__fgets_337", "fgets"); -__static_renaming("____getdelim_342", "__getdelim"); -__static_renaming("__getdelim_347", "getdelim"); -__static_renaming("__getline_351", "getline"); -__static_renaming("__fputs_354", "fputs"); -__static_renaming("__puts_356", "puts"); -__static_renaming("__ungetc_359", "ungetc"); -__static_renaming("__fseek_379", "fseek"); -__static_renaming("__ftell_381", "ftell"); -__static_renaming("__rewind_383", "rewind"); -__static_renaming("__fseeko_387", "fseeko"); -__static_renaming("__ftello_389", "ftello"); -__static_renaming("__fgetpos_392", "fgetpos"); -__static_renaming("__fsetpos_395", "fsetpos"); -__static_renaming("__clearerr_397", "clearerr"); -__static_renaming("__feof_399", "feof"); -__static_renaming("__ferror_401", "ferror"); -__static_renaming("__clearerr_unlocked_403", "clearerr_unlocked"); -__static_renaming("__feof_unlocked_405", "feof_unlocked"); -__static_renaming("__ferror_unlocked_407", "ferror_unlocked"); -__static_renaming("__perror_409", "perror"); -__static_renaming("__sys_nerr_410", "sys_nerr"); -__static_renaming("__sys_errlist_411", "sys_errlist"); -__static_renaming("__fileno_413", "fileno"); -__static_renaming("__fileno_unlocked_415", "fileno_unlocked"); -__static_renaming("__popen_418", "popen"); -__static_renaming("__pclose_420", "pclose"); -__static_renaming("__ctermid_422", "ctermid"); -__static_renaming("__flockfile_424", "flockfile"); -__static_renaming("__ftrylockfile_426", "ftrylockfile"); -__static_renaming("__funlockfile_428", "funlockfile"); -__static_renaming("__main_431", "main"); +__static_renaming("___G_fpos_t_77", "_G_fpos_t"); +__static_renaming("___G_fpos64_t_85", "_G_fpos64_t"); +__static_renaming("____gnuc_va_list_86", "__gnuc_va_list"); +__static_renaming("___IO_lock_t_88", "_IO_lock_t"); +__static_renaming("___IO_FILE_171", "_IO_FILE"); +__static_renaming("___IO_FILE_172", "_IO_FILE"); +__static_renaming("___IO_2_1_stdin__175", "_IO_2_1_stdin_"); +__static_renaming("___IO_2_1_stdout__176", "_IO_2_1_stdout_"); +__static_renaming("___IO_2_1_stderr__177", "_IO_2_1_stderr_"); +__static_renaming("____io_read_fn_181", "__io_read_fn"); +__static_renaming("____io_write_fn_186", "__io_write_fn"); +__static_renaming("____io_seek_fn_192", "__io_seek_fn"); +__static_renaming("____io_close_fn_195", "__io_close_fn"); +__static_renaming("____underflow_196", "__underflow"); +__static_renaming("____underflow_197", "__underflow"); +__static_renaming("____uflow_199", "__uflow"); +__static_renaming("____uflow_200", "__uflow"); +__static_renaming("____overflow_202", "__overflow"); +__static_renaming("____overflow_203", "__overflow"); +__static_renaming("___IO_getc_208", "_IO_getc"); +__static_renaming("___IO_getc_209", "_IO_getc"); +__static_renaming("___IO_putc_215", "_IO_putc"); +__static_renaming("___IO_putc_216", "_IO_putc"); +__static_renaming("___IO_feof_221", "_IO_feof"); +__static_renaming("___IO_feof_222", "_IO_feof"); +__static_renaming("___IO_ferror_227", "_IO_ferror"); +__static_renaming("___IO_ferror_228", "_IO_ferror"); +__static_renaming("___IO_peekc_locked_233", "_IO_peekc_locked"); +__static_renaming("___IO_peekc_locked_234", "_IO_peekc_locked"); +__static_renaming("___IO_flockfile_236", "_IO_flockfile"); +__static_renaming("___IO_flockfile_237", "_IO_flockfile"); +__static_renaming("___IO_funlockfile_239", "_IO_funlockfile"); +__static_renaming("___IO_funlockfile_240", "_IO_funlockfile"); +__static_renaming("___IO_ftrylockfile_242", "_IO_ftrylockfile"); +__static_renaming("___IO_ftrylockfile_243", "_IO_ftrylockfile"); +__static_renaming("___IO_vfscanf_245", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_247", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_251", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_252", "_IO_vfscanf"); +__static_renaming("___IO_vfprintf_254", "_IO_vfprintf"); +__static_renaming("___IO_vfprintf_256", "_IO_vfprintf"); +__static_renaming("___IO_vfprintf_260", "_IO_vfprintf"); +__static_renaming("___IO_padn_261", "_IO_padn"); +__static_renaming("___IO_padn_262", "_IO_padn"); +__static_renaming("___IO_sgetn_265", "_IO_sgetn"); +__static_renaming("___IO_sgetn_266", "_IO_sgetn"); +__static_renaming("___IO_seekoff_268", "_IO_seekoff"); +__static_renaming("___IO_seekoff_269", "_IO_seekoff"); +__static_renaming("___IO_seekpos_272", "_IO_seekpos"); +__static_renaming("___IO_seekpos_273", "_IO_seekpos"); +__static_renaming("___IO_free_backup_area_276", "_IO_free_backup_area"); +__static_renaming("___IO_free_backup_area_277", "_IO_free_backup_area"); +__static_renaming("__va_list_279", "va_list"); +__static_renaming("__off_t_281", "off_t"); +__static_renaming("__off_t_283", "off_t"); +__static_renaming("__ssize_t_285", "ssize_t"); +__static_renaming("__fpos_t_287", "fpos_t"); +__static_renaming("__fpos_t_289", "fpos_t"); +__static_renaming("__stdin_291", "stdin"); +__static_renaming("__stdin_292", "stdin"); +__static_renaming("__stdout_294", "stdout"); +__static_renaming("__stdout_295", "stdout"); +__static_renaming("__stderr_297", "stderr"); +__static_renaming("__stderr_298", "stderr"); +__static_renaming("__remove_301", "remove"); +__static_renaming("__rename_304", "rename"); +__static_renaming("__renameat_309", "renameat"); +__static_renaming("__tmpfile_310", "tmpfile"); +__static_renaming("__tmpfile_312", "tmpfile"); +__static_renaming("__tmpfile_314", "tmpfile"); +__static_renaming("__tmpfile_316", "tmpfile"); +__static_renaming("__tmpnam_319", "tmpnam"); +__static_renaming("__tmpnam_320", "tmpnam"); +__static_renaming("__tmpnam_r_322", "tmpnam_r"); +__static_renaming("__tmpnam_r_323", "tmpnam_r"); +__static_renaming("__tempnam_326", "tempnam"); +__static_renaming("__tempnam_327", "tempnam"); +__static_renaming("__fclose_330", "fclose"); +__static_renaming("__fclose_332", "fclose"); +__static_renaming("__fflush_336", "fflush"); +__static_renaming("__fflush_unlocked_340", "fflush_unlocked"); +__static_renaming("__fopen_344", "fopen"); +__static_renaming("__fopen_346", "fopen"); +__static_renaming("__fopen_354", "fopen"); +__static_renaming("__fopen_356", "fopen"); +__static_renaming("__freopen_362", "freopen"); +__static_renaming("__freopen_364", "freopen"); +__static_renaming("__freopen_366", "freopen"); +__static_renaming("__freopen_368", "freopen"); +__static_renaming("__fdopen_372", "fdopen"); +__static_renaming("__fdopen_374", "fdopen"); +__static_renaming("__fmemopen_379", "fmemopen"); +__static_renaming("__fmemopen_381", "fmemopen"); +__static_renaming("__open_memstream_385", "open_memstream"); +__static_renaming("__open_memstream_387", "open_memstream"); +__static_renaming("__setbuf_392", "setbuf"); +__static_renaming("__setbuf_394", "setbuf"); +__static_renaming("__setvbuf_401", "setvbuf"); +__static_renaming("__setbuffer_407", "setbuffer"); +__static_renaming("__setlinebuf_411", "setlinebuf"); +__static_renaming("__fprintf_416", "fprintf"); +__static_renaming("__fprintf_418", "fprintf"); +__static_renaming("__printf_421", "printf"); +__static_renaming("__sprintf_424", "sprintf"); +__static_renaming("__vfprintf_430", "vfprintf"); +__static_renaming("__vprintf_437", "vprintf"); +__static_renaming("__vsprintf_443", "vsprintf"); +__static_renaming("__snprintf_448", "snprintf"); +__static_renaming("__vsnprintf_454", "vsnprintf"); +__static_renaming("__vdprintf_460", "vdprintf"); +__static_renaming("__dprintf_464", "dprintf"); +__static_renaming("__fscanf_468", "fscanf"); +__static_renaming("__fscanf_470", "fscanf"); +__static_renaming("__fscanf_472", "fscanf"); +__static_renaming("__fscanf_474", "fscanf"); +__static_renaming("__scanf_477", "scanf"); +__static_renaming("__scanf_478", "scanf"); +__static_renaming("__sscanf_481", "sscanf"); +__static_renaming("__vfscanf_509", "vfscanf"); +__static_renaming("__vfscanf_513", "vfscanf"); +__static_renaming("__vscanf_520", "vscanf"); +__static_renaming("__vscanf_522", "vscanf"); +__static_renaming("__vsscanf_528", "vsscanf"); +__static_renaming("__fgetc_563", "fgetc"); +__static_renaming("__getc_567", "getc"); +__static_renaming("__getchar_569", "getchar"); +__static_renaming("__getc_unlocked_572", "getc_unlocked"); +__static_renaming("__getchar_unlocked_574", "getchar_unlocked"); +__static_renaming("__fgetc_unlocked_577", "fgetc_unlocked"); +__static_renaming("__fputc_582", "fputc"); +__static_renaming("__fputc_584", "fputc"); +__static_renaming("__putc_589", "putc"); +__static_renaming("__putchar_592", "putchar"); +__static_renaming("__fputc_unlocked_596", "fputc_unlocked"); +__static_renaming("__putc_unlocked_601", "putc_unlocked"); +__static_renaming("__putchar_unlocked_604", "putchar_unlocked"); +__static_renaming("__getw_607", "getw"); +__static_renaming("__putw_612", "putw"); +__static_renaming("__fgets_618", "fgets"); +__static_renaming("__fgets_620", "fgets"); +__static_renaming("__fgets_622", "fgets"); +__static_renaming("__fgets_624", "fgets"); +__static_renaming("____getdelim_631", "__getdelim"); +__static_renaming("____getdelim_635", "__getdelim"); +__static_renaming("__getdelim_644", "getdelim"); +__static_renaming("__getdelim_648", "getdelim"); +__static_renaming("__getline_656", "getline"); +__static_renaming("__getline_660", "getline"); +__static_renaming("__fputs_667", "fputs"); +__static_renaming("__fputs_669", "fputs"); +__static_renaming("__puts_672", "puts"); +__static_renaming("__ungetc_676", "ungetc"); +__static_renaming("__fseek_714", "fseek"); +__static_renaming("__fseek_716", "fseek"); +__static_renaming("__ftell_720", "ftell"); +__static_renaming("__ftell_722", "ftell"); +__static_renaming("__rewind_726", "rewind"); +__static_renaming("__fseeko_733", "fseeko"); +__static_renaming("__fseeko_744", "fseeko"); +__static_renaming("__ftello_750", "ftello"); +__static_renaming("__ftello_754", "ftello"); +__static_renaming("__ftello_758", "ftello"); +__static_renaming("__fgetpos_766", "fgetpos"); +__static_renaming("__fgetpos_778", "fgetpos"); +__static_renaming("__fsetpos_786", "fsetpos"); +__static_renaming("__fsetpos_790", "fsetpos"); +__static_renaming("__clearerr_796", "clearerr"); +__static_renaming("__feof_800", "feof"); +__static_renaming("__feof_802", "feof"); +__static_renaming("__ferror_806", "ferror"); +__static_renaming("__ferror_808", "ferror"); +__static_renaming("__clearerr_unlocked_812", "clearerr_unlocked"); +__static_renaming("__feof_unlocked_816", "feof_unlocked"); +__static_renaming("__feof_unlocked_818", "feof_unlocked"); +__static_renaming("__ferror_unlocked_822", "ferror_unlocked"); +__static_renaming("__ferror_unlocked_824", "ferror_unlocked"); +__static_renaming("__perror_827", "perror"); +__static_renaming("__perror_828", "perror"); +__static_renaming("__sys_nerr_829", "sys_nerr"); +__static_renaming("__sys_errlist_830", "sys_errlist"); +__static_renaming("__fileno_833", "fileno"); +__static_renaming("__fileno_835", "fileno"); +__static_renaming("__fileno_unlocked_839", "fileno_unlocked"); +__static_renaming("__fileno_unlocked_841", "fileno_unlocked"); +__static_renaming("__popen_845", "popen"); +__static_renaming("__popen_847", "popen"); +__static_renaming("__pclose_851", "pclose"); +__static_renaming("__ctermid_854", "ctermid"); +__static_renaming("__flockfile_857", "flockfile"); +__static_renaming("__ftrylockfile_861", "ftrylockfile"); +__static_renaming("__ftrylockfile_863", "ftrylockfile"); +__static_renaming("__funlockfile_867", "funlockfile"); +__static_renaming("____sprintf_chk_899", "__sprintf_chk"); +__static_renaming("____vsprintf_chk_906", "__vsprintf_chk"); +__static_renaming("____snprintf_chk_920", "__snprintf_chk"); +__static_renaming("____vsnprintf_chk_928", "__vsnprintf_chk"); +__static_renaming("____fprintf_chk_943", "__fprintf_chk"); +__static_renaming("____printf_chk_947", "__printf_chk"); +__static_renaming("____vfprintf_chk_954", "__vfprintf_chk"); +__static_renaming("____vprintf_chk_962", "__vprintf_chk"); +__static_renaming("____dprintf_chk_984", "__dprintf_chk"); +__static_renaming("____vdprintf_chk_990", "__vdprintf_chk"); +__static_renaming("____fgets_chk_1004", "__fgets_chk"); +__static_renaming("____fgets_chk_1006", "__fgets_chk"); +__static_renaming("____fgets_chk_1008", "__fgets_chk"); +__static_renaming("____fgets_alias_1014", "__fgets_alias"); +__static_renaming("____fgets_chk_warn_1021", "__fgets_chk_warn"); +__static_renaming("____cnt_1087", "__cnt"); +__static_renaming("____cptr_1088", "__cptr"); +__static_renaming("__main_1095", "main"); +__static_condition_renaming("__static_condition_default_53", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_76", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_84", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_123", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_169", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_170", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_173", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_182", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_187", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_193", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_198", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_201", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_204", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_210", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_217", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_223", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_229", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_235", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_238", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_241", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_244", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_246", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_248", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_249", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_250", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_253", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_255", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_257", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_258", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_259", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_263", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_264", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_267", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_270", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_271", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_274", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_275", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_278", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_280", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); +__static_condition_renaming("__static_condition_default_282", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_284", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_286", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_288", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_290", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_293", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_296", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_299", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_311", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_313", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_315", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_317", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_331", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_333", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_337", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_341", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_345", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_347", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_355", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_357", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_363", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_365", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_367", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_369", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_373", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_375", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_380", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_382", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_386", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_388", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_393", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_395", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_402", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_408", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_412", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_417", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_419", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_431", "!(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_432", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_433", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_438", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_444", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_455", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_461", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_469", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_471", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_473", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_475", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_486", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_488", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_489", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_491", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_493", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_494", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_497", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_499", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_503", "!(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_510", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_511", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_512", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_514", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_515", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_516", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_521", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_523", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_529", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_536", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_537", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_538", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_539", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_541", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_542", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_543", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_544", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_549", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_550", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_552", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_553", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_559", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_560", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_564", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_568", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_573", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_578", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_583", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_585", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_590", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_597", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_602", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_608", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_613", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_619", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_621", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_623", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_625", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_632", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_633", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_634", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_636", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_637", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_638", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_645", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_646", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_647", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_649", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_650", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_651", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_657", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_658", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_659", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_661", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_662", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_663", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_668", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_670", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_677", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_683", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_684", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_685", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_686", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_692", "!(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_693", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_699", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_700", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_701", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_702", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_708", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_709", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_715", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_717", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_721", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_723", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_727", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_734", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_735", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_736", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_745", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_746", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_747", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_751", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_752", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_753", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_755", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_756", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_757", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_759", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_760", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_761", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_767", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_768", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_769", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_779", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_780", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_781", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_787", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_788", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_789", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_791", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_792", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_793", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_797", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_801", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_803", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_807", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_809", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_813", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_817", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_819", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_823", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_825", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_834", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_836", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_840", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_842", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_846", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_848", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_852", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_858", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_862", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_864", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_868", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_872", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_875", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_878", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_883", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_887", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_891", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_894", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_907", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_914", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_929", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_938", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_944", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_955", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_956", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_957", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_963", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_967", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_972", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_978", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_979", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_980", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_991", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_998", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1005", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1007", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1009", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1015", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1022", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1027", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1028", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1035", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1036", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1042", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1043", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1050", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1051", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1057", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1058", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1065", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1066", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1072", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1073", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1080", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1081", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1089", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_1090", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1091", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1096", "!(defined ULTRA_LCD)"); +__static_condition_renaming("__static_condition_default_1097", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && (defined ULTRA_LCD) || !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && (defined ULTRA_LCD) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) || (defined __need___FILE) && (defined ULTRA_LCD)"); +if (__static_condition_default_1097) { +__static_parse_error("Unable to parse"); +} }; typedef long int __ptrdiff_t_0;// L143:L324 typedef long unsigned int __size_t_1;// L177:L209 @@ -240,107 +872,142 @@ typedef long int ____ssize_t_49;// L110:L172 typedef long int ____syscall_slong_t_50;// L93:L175 typedef unsigned long int ____syscall_ulong_t_51;// L94:L177 typedef ____off64_t_24 ____loff_t_52;// L181 -typedef ____quad_t_14 * (____qaddr_t_53);// L182 -typedef char * (____caddr_t_54);// L183 -typedef long int ____intptr_t_55;// L110:L186 -typedef unsigned int ____socklen_t_56;// L92:L189 -typedef struct __forward_tag_reference_57 __FILE_58;// L48 -typedef struct __forward_tag_reference_57 ____FILE_59;// L64 -union ____anonymous_tag_60_61 { -unsigned int ____wch_62;// L265 -char ____wchb_63[4];// L92 +typedef ____quad_t_14 * (____qaddr_t_54);// L182 +typedef char * (____caddr_t_55);// L183 +typedef long int ____intptr_t_56;// L110:L186 +typedef unsigned int ____socklen_t_57;// L92:L189 +typedef struct __forward_tag_reference_58 __FILE_59;// L48 +typedef struct __forward_tag_reference_58 ____FILE_60;// L64 +union ____anonymous_tag_61_62 { +unsigned int ____wch_63;// L265 +char ____wchb_64[4];// L92 }; -struct ____anonymous_tag_64_65 { -int ____count_66;// L84 -union ____anonymous_tag_60_61 ____value_67;// L85 +struct ____anonymous_tag_65_66 { +int ____count_67;// L84 +union ____anonymous_tag_61_62 ____value_68;// L85 }; -typedef struct ____anonymous_tag_64_65 ____mbstate_t_68;// L82:L94 -typedef struct ____anonymous_tag_64_65 ____mbstate_t_69;// L82:L94 +typedef struct ____anonymous_tag_65_66 ____mbstate_t_69;// L82:L94 struct ____anonymous_tag_70_71 { ____off_t_23 ____pos_72;// L0 -____mbstate_t_68 ____state_73;// L0 ____mbstate_t_69 ____state_74;// L0 }; -typedef struct ____anonymous_tag_70_71 ___G_fpos_t_75;// L21:L25 -struct ____anonymous_tag_76_77 { -____off64_t_24 ____pos_78;// L0 -____mbstate_t_68 ____state_79;// L0 -____mbstate_t_69 ____state_80;// L0 +typedef struct ____anonymous_tag_70_71 ___G_fpos_t_77;// L21:L25 +struct ____anonymous_tag_78_79 { +____off64_t_24 ____pos_80;// L0 +____mbstate_t_69 ____state_82;// L0 +}; +typedef struct ____anonymous_tag_78_79 ___G_fpos64_t_85;// L26:L30 +typedef __builtin_va_list ____gnuc_va_list_86;// L40 +typedef void ___IO_lock_t_88;// L150 +struct ___IO_marker_90 { +struct __forward_tag_reference_89 * (___next_91);// L0 +struct __forward_tag_reference_58 * (___sbuf_92);// L0 +int ___pos_93;// L162 +}; +enum ____codecvt_result_98 { +____codecvt_ok_94, +____codecvt_partial_95, +____codecvt_error_96, +____codecvt_noconv_97, }; -typedef struct ____anonymous_tag_76_77 ___G_fpos64_t_81;// L26:L30 -typedef __builtin_va_list ____gnuc_va_list_82;// L40 -typedef void ___IO_lock_t_84;// L150 -struct ___IO_marker_86 { -struct __forward_tag_reference_85 * (___next_87);// L0 -struct __forward_tag_reference_57 * (___sbuf_88);// L0 -int ___pos_89;// L162 +struct ___IO_FILE_99 { +int ___flags_100;// L242 +char * (___IO_read_ptr_101);// L247 +char * (___IO_read_end_102);// L248 +char * (___IO_read_base_103);// L249 +char * (___IO_write_base_104);// L250 +char * (___IO_write_ptr_105);// L251 +char * (___IO_write_end_106);// L252 +char * (___IO_buf_base_107);// L253 +char * (___IO_buf_end_108);// L254 +char * (___IO_save_base_109);// L256 +char * (___IO_backup_base_110);// L257 +char * (___IO_save_end_111);// L258 +struct ___IO_marker_90 * (___markers_112);// L260 +struct __forward_tag_reference_58 * (___chain_113);// L0 +int ___fileno_114;// L264 +int ___flags2_115;// L268 +____off_t_23 ___old_offset_116;// L0 +unsigned short ___cur_column_118;// L274 +signed char ___vtable_offset_119;// L275 +char ___shortbuf_120[1];// L276 +___IO_lock_t_88 * (___lock_121);// L0 }; -enum ____codecvt_result_94 { -____codecvt_ok_90, -____codecvt_partial_91, -____codecvt_error_92, -____codecvt_noconv_93, +struct ___IO_FILE_124 { +int ___flags_125;// L242 +char * (___IO_read_ptr_126);// L247 +char * (___IO_read_end_127);// L248 +char * (___IO_read_base_128);// L249 +char * (___IO_write_base_129);// L250 +char * (___IO_write_ptr_130);// L251 +char * (___IO_write_end_131);// L252 +char * (___IO_buf_base_132);// L253 +char * (___IO_buf_end_133);// L254 +char * (___IO_save_base_134);// L256 +char * (___IO_backup_base_135);// L257 +char * (___IO_save_end_136);// L258 +struct ___IO_marker_90 * (___markers_137);// L260 +struct __forward_tag_reference_58 * (___chain_138);// L0 +int ___fileno_139;// L264 +int ___flags2_140;// L268 +____off_t_23 ___old_offset_141;// L0 +unsigned short ___cur_column_143;// L274 +signed char ___vtable_offset_144;// L275 +char ___shortbuf_145[1];// L276 +___IO_lock_t_88 * (___lock_146);// L0 +____off64_t_24 ___offset_148;// L0 +void * (____pad1_150);// L297 +void * (____pad2_151);// L298 +void * (____pad3_152);// L299 +void * (____pad4_153);// L300 +__size_t_1 ____pad5_154;// L0 +int ___mode_155;// L303 +char ___unused2_156[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -struct ___IO_FILE_95 { -int ___flags_96;// L242 -char * (___IO_read_ptr_97);// L247 -char * (___IO_read_end_98);// L248 -char * (___IO_read_base_99);// L249 -char * (___IO_write_base_100);// L250 -char * (___IO_write_ptr_101);// L251 -char * (___IO_write_end_102);// L252 -char * (___IO_buf_base_103);// L253 -char * (___IO_buf_end_104);// L254 -char * (___IO_save_base_105);// L256 -char * (___IO_backup_base_106);// L257 -char * (___IO_save_end_107);// L258 -struct ___IO_marker_86 * (___markers_108);// L260 -struct __forward_tag_reference_57 * (___chain_109);// L0 -int ___fileno_110;// L264 -int ___flags2_111;// L268 -____off_t_23 ___old_offset_112;// L0 -unsigned short ___cur_column_113;// L274 -signed char ___vtable_offset_114;// L275 -char ___shortbuf_115[1];// L276 -___IO_lock_t_84 * (___lock_116);// L0 -____off64_t_24 ___offset_117;// L0 -void * (____pad1_118);// L297 -void * (____pad2_119);// L298 -void * (____pad3_120);// L299 -void * (____pad4_121);// L300 -__size_t_1 ____pad5_122;// L0 -int ___mode_123;// L303 -char ___unused2_124[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +struct ___IO_FILE_complete_157 { +struct ___IO_FILE_99 ___file_158;// L286 +____off64_t_24 ___offset_160;// L0 +void * (____pad1_162);// L297 +void * (____pad2_163);// L298 +void * (____pad3_164);// L299 +void * (____pad4_165);// L300 +__size_t_1 ____pad5_166;// L0 +int ___mode_167;// L303 +char ___unused2_168[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 }; -typedef struct ___IO_FILE_95 ___IO_FILE_125;// L310 -typedef ____ssize_t_49 (____io_read_fn_133) (void * (____cookie_130), char * (____buf_131), __size_t_1 ____nbytes_132);// L333 -typedef ____ssize_t_49 (____io_write_fn_137) (void * (____cookie_134), const char * (____buf_135), __size_t_1 ____n_136);// L341:L342 -typedef int (____io_seek_fn_141) (void * (____cookie_138), ____off64_t_24 * (____pos_139), int ____w_140);// L350 -typedef int (____io_close_fn_143) (void * (____cookie_142));// L353 -typedef ____gnuc_va_list_82 __va_list_168;// L79 -typedef ____off_t_23 __off_t_169;// L90 -typedef ____ssize_t_49 __ssize_t_170;// L102 -typedef ___G_fpos_t_75 __fpos_t_171;// L110 -extern const char * const __sys_errlist_411[];// L27 - -struct __forward_tag_reference_126 { // generated union of struct variations +typedef struct ___IO_FILE_99 ___IO_FILE_171;// L310 +typedef struct ___IO_FILE_124 ___IO_FILE_172;// L310 +typedef ____ssize_t_49 (____io_read_fn_181) (void * (____cookie_178), char * (____buf_179), __size_t_1 ____nbytes_180);// L333 +typedef ____ssize_t_49 (____io_write_fn_186) (void * (____cookie_183), const char * (____buf_184), __size_t_1 ____n_185);// L341:L342 +typedef int (____io_seek_fn_192) (void * (____cookie_188), ____off64_t_24 * (____pos_189), int ____w_191);// L350 +typedef int (____io_close_fn_195) (void * (____cookie_194));// L353 +typedef ____gnuc_va_list_86 __va_list_279;// L79 +typedef ____off_t_23 __off_t_281;// L90 +typedef ____off64_t_24 __off_t_283;// L92 +typedef ____ssize_t_49 __ssize_t_285;// L102 +typedef ___G_fpos_t_77 __fpos_t_287;// L110 +typedef ___G_fpos64_t_85 __fpos_t_289;// L112 +extern const char * const __sys_errlist_830[];// L27 + +struct __forward_tag_reference_89 { // generated union of struct variations union { +struct ___IO_marker_90 ___IO_marker_90; }; }; -struct __forward_tag_reference_57 { // generated union of struct variations +struct __forward_tag_reference_58 { // generated union of struct variations union { -struct ___IO_FILE_95 ___IO_FILE_95; +struct ___IO_FILE_99 ___IO_FILE_99; +struct ___IO_FILE_124 ___IO_FILE_124; }; }; -struct __forward_tag_reference_85 { // generated union of struct variations +struct __forward_tag_reference_87 { // generated union of struct variations union { -struct ___IO_marker_86 ___IO_marker_86; }; }; -struct __forward_tag_reference_83 { // generated union of struct variations +struct __forward_tag_reference_174 { // generated union of struct variations union { }; }; @@ -399,141 +1066,267 @@ union { // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_57 ;// L0 -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -// typedef moved to top of scope -struct __forward_tag_reference_83 ;// L0 -struct __forward_tag_reference_57 ;// L0 -// typedef moved to top of scope -struct ___IO_marker_86 ;// L156 -enum ____codecvt_result_94 ;// L176 -struct ___IO_FILE_95 ;// L241 +struct __forward_tag_reference_58 ;// L0 // typedef moved to top of scope -struct __forward_tag_reference_126 ;// L0 -extern struct __forward_tag_reference_126 ___IO_2_1_stdin__127;// L315 -extern struct __forward_tag_reference_126 ___IO_2_1_stdout__128;// L316 -extern struct __forward_tag_reference_126 ___IO_2_1_stderr__129;// L317 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern int (____underflow_144) (___IO_FILE_125 *);// L385 -extern int (____uflow_145) (___IO_FILE_125 *);// L386 -extern int (____overflow_146) (___IO_FILE_125 *, int );// L387 -extern int (___IO_getc_148) (___IO_FILE_125 * (____fp_147));// L429 -extern int (___IO_putc_151) (int ____c_149, ___IO_FILE_125 * (____fp_150));// L430 -extern int (___IO_feof_153) (___IO_FILE_125 * (____fp_152));// L431 -extern int (___IO_ferror_155) (___IO_FILE_125 * (____fp_154));// L432 -extern int (___IO_peekc_locked_157) (___IO_FILE_125 * (____fp_156));// L434 -extern void (___IO_flockfile_158) (___IO_FILE_125 *);// L440 -extern void (___IO_funlockfile_159) (___IO_FILE_125 *);// L441 -extern int (___IO_ftrylockfile_160) (___IO_FILE_125 *);// L442 -extern int (___IO_vfscanf_161) (___IO_FILE_125 * __restrict , const char * __restrict , ____gnuc_va_list_82 , int * __restrict );// L459:L460 -extern int (___IO_vfprintf_162) (___IO_FILE_125 * __restrict , const char * __restrict , ____gnuc_va_list_82 );// L461:L462 -extern ____ssize_t_49 (___IO_padn_163) (___IO_FILE_125 *, int , ____ssize_t_49 );// L463 -extern __size_t_1 (___IO_sgetn_164) (___IO_FILE_125 *, void *, __size_t_1 );// L464 -extern ____off64_t_24 (___IO_seekoff_165) (___IO_FILE_125 *, ____off64_t_24 , int , int );// L466 -extern ____off64_t_24 (___IO_seekpos_166) (___IO_FILE_125 *, ____off64_t_24 , int );// L467 -extern void (___IO_free_backup_area_167) (___IO_FILE_125 *);// L469 // typedef moved to top of scope +struct __forward_tag_reference_87 ;// L0 +struct __forward_tag_reference_87 ;// L0 +struct __forward_tag_reference_58 ;// L0 // typedef moved to top of scope +struct ___IO_marker_90 ;// L156 +enum ____codecvt_result_98 ;// L176 +struct ___IO_FILE_99 ;// L241 + +struct ___IO_FILE_124 ;// L241 +struct ___IO_FILE_complete_157 ;// L241 + // typedef moved to top of scope // typedef moved to top of scope -extern struct ___IO_FILE_95 * (__stdin_172);// L168 -extern struct ___IO_FILE_95 * (__stdout_173);// L169 -extern struct ___IO_FILE_95 * (__stderr_174);// L170 -extern int (__remove_176) (const char * (____filename_175));// L178 -extern int (__rename_179) (const char * (____old_177), const char * (____new_178));// L180 -extern int (__renameat_184) (int ____oldfd_180, const char * (____old_181), int ____newfd_182, const char * (____new_183));// L185:L186 -extern __FILE_58 * ((__tmpfile_185) (void ));// L195 -extern char * ((__tmpnam_187) (char * (____s_186)));// L209 -extern char * ((__tmpnam_r_189) (char * (____s_188)));// L215 -extern char * ((__tempnam_192) (const char * (____dir_190), const char * (____pfx_191)));// L227:L228 -extern int (__fclose_194) (__FILE_58 * (____stream_193));// L237 -extern int (__fflush_196) (__FILE_58 * (____stream_195));// L242 -extern int (__fflush_unlocked_198) (__FILE_58 * (____stream_197));// L252 -extern __FILE_58 * ((__fopen_201) (const char * __restrict ____filename_199, const char * __restrict ____modes_200));// L272:L273 -extern __FILE_58 * ((__freopen_205) (const char * __restrict ____filename_202, const char * __restrict ____modes_203, __FILE_58 * __restrict ____stream_204));// L278:L280 -extern __FILE_58 * ((__fdopen_208) (int ____fd_206, const char * (____modes_207)));// L306 -extern __FILE_58 * ((__fmemopen_212) (void * (____s_209), __size_t_1 ____len_210, const char * (____modes_211)));// L319:L320 -extern __FILE_58 * ((__open_memstream_215) (char * (* (____bufloc_213)), __size_t_1 * (____sizeloc_214)));// L325 -extern void (__setbuf_218) (__FILE_58 * __restrict ____stream_216, char * __restrict ____buf_217);// L332 -extern int (__setvbuf_223) (__FILE_58 * __restrict ____stream_219, char * __restrict ____buf_220, int ____modes_221, __size_t_1 ____n_222);// L336:L337 -extern void (__setbuffer_227) (__FILE_58 * __restrict ____stream_224, char * __restrict ____buf_225, __size_t_1 ____size_226);// L343:L344 -extern void (__setlinebuf_229) (__FILE_58 * (____stream_228));// L347 -extern int (__fprintf_232) (__FILE_58 * __restrict ____stream_230, const char * __restrict ____format_231, ... );// L356:L357 -extern int (__printf_234) (const char * __restrict ____format_233, ... );// L362 -extern int (__sprintf_237) (char * __restrict ____s_235, const char * __restrict ____format_236, ... );// L364:L365 -extern int (__vfprintf_241) (__FILE_58 * __restrict ____s_238, const char * __restrict ____format_239, ____gnuc_va_list_82 ____arg_240);// L371:L372 -extern int (__vprintf_244) (const char * __restrict ____format_242, ____gnuc_va_list_82 ____arg_243);// L377 -extern int (__vsprintf_248) (char * __restrict ____s_245, const char * __restrict ____format_246, ____gnuc_va_list_82 ____arg_247);// L379:L380 -extern int (__snprintf_252) (char * __restrict ____s_249, __size_t_1 ____maxlen_250, const char * __restrict ____format_251, ... );// L386:L388 -extern int (__vsnprintf_257) (char * __restrict ____s_253, __size_t_1 ____maxlen_254, const char * __restrict ____format_255, ____gnuc_va_list_82 ____arg_256);// L390:L392 -extern int (__vdprintf_261) (int ____fd_258, const char * __restrict ____fmt_259, ____gnuc_va_list_82 ____arg_260);// L412:L414 -extern int (__dprintf_264) (int ____fd_262, const char * __restrict ____fmt_263, ... );// L415:L416 -extern int (__fscanf_267) (__FILE_58 * __restrict ____stream_265, const char * __restrict ____format_266, ... );// L425:L426 -extern int (__scanf_269) (const char * __restrict ____format_268, ... );// L431 -extern int (__sscanf_272) (const char * __restrict ____s_270, const char * __restrict ____format_271, ... );// L433:L434 +struct __forward_tag_reference_174 ;// L0 +extern struct __forward_tag_reference_174 ___IO_2_1_stdin__175;// L315 +extern struct __forward_tag_reference_174 ___IO_2_1_stdout__176;// L316 +extern struct __forward_tag_reference_174 ___IO_2_1_stderr__177;// L317 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern int (____underflow_196) (___IO_FILE_171 *);// L385 +extern int (____underflow_197) (___IO_FILE_172 *);// L385 +extern int (____uflow_199) (___IO_FILE_171 *);// L386 +extern int (____uflow_200) (___IO_FILE_172 *);// L386 +extern int (____overflow_202) (___IO_FILE_171 *, int );// L387 +extern int (____overflow_203) (___IO_FILE_172 *, int );// L387 +extern int (___IO_getc_208) (___IO_FILE_171 * (____fp_205));// L429 +extern int (___IO_getc_209) (___IO_FILE_172 * (____fp_206));// L429 +extern int (___IO_putc_215) (int ____c_211, ___IO_FILE_171 * (____fp_212));// L430 +extern int (___IO_putc_216) (int ____c_211, ___IO_FILE_172 * (____fp_213));// L430 +extern int (___IO_feof_221) (___IO_FILE_171 * (____fp_218));// L431 +extern int (___IO_feof_222) (___IO_FILE_172 * (____fp_219));// L431 +extern int (___IO_ferror_227) (___IO_FILE_171 * (____fp_224));// L432 +extern int (___IO_ferror_228) (___IO_FILE_172 * (____fp_225));// L432 +extern int (___IO_peekc_locked_233) (___IO_FILE_171 * (____fp_230));// L434 +extern int (___IO_peekc_locked_234) (___IO_FILE_172 * (____fp_231));// L434 +extern void (___IO_flockfile_236) (___IO_FILE_171 *);// L440 +extern void (___IO_flockfile_237) (___IO_FILE_172 *);// L440 +extern void (___IO_funlockfile_239) (___IO_FILE_171 *);// L441 +extern void (___IO_funlockfile_240) (___IO_FILE_172 *);// L441 +extern int (___IO_ftrylockfile_242) (___IO_FILE_171 *);// L442 +extern int (___IO_ftrylockfile_243) (___IO_FILE_172 *);// L442 +extern int (___IO_vfscanf_245) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_247) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_251) (___IO_FILE_171 * __restrict , const char * __restrict , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_252) (___IO_FILE_172 * __restrict , const char * __restrict , int * __restrict );// L459:L460 +extern int (___IO_vfprintf_254) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 +extern int (___IO_vfprintf_256) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 +extern int (___IO_vfprintf_260) ();// L461:L462 +extern ____ssize_t_49 (___IO_padn_261) (___IO_FILE_171 *, int , ____ssize_t_49 );// L463 +extern ____ssize_t_49 (___IO_padn_262) (___IO_FILE_172 *, int , ____ssize_t_49 );// L463 +extern __size_t_1 (___IO_sgetn_265) (___IO_FILE_171 *, void *, __size_t_1 );// L464 +extern __size_t_1 (___IO_sgetn_266) (___IO_FILE_172 *, void *, __size_t_1 );// L464 +extern ____off64_t_24 (___IO_seekoff_268) (___IO_FILE_171 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekoff_269) (___IO_FILE_172 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekpos_272) (___IO_FILE_171 *, ____off64_t_24 , int );// L467 +extern ____off64_t_24 (___IO_seekpos_273) (___IO_FILE_172 *, ____off64_t_24 , int );// L467 +extern void (___IO_free_backup_area_276) (___IO_FILE_171 *);// L469 +extern void (___IO_free_backup_area_277) (___IO_FILE_172 *);// L469 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern struct ___IO_FILE_99 * (__stdin_291);// L168 +extern struct ___IO_FILE_124 * (__stdin_292);// L168 +extern struct ___IO_FILE_99 * (__stdout_294);// L169 +extern struct ___IO_FILE_124 * (__stdout_295);// L169 +extern struct ___IO_FILE_99 * (__stderr_297);// L170 +extern struct ___IO_FILE_124 * (__stderr_298);// L170 +extern int (__remove_301) (const char * (____filename_300));// L178 +extern int (__rename_304) (const char * (____old_302), const char * (____new_303));// L180 +extern int (__renameat_309) (int ____oldfd_305, const char * (____old_306), int ____newfd_307, const char * (____new_308));// L185:L186 +extern __FILE_59 * ((__tmpfile_310) (void ));// L195 +extern __FILE_59 * ((__tmpfile_316) (void ));// L198 +extern __FILE_59 * ((__tmpfile_314) (void ));// L195 +extern __FILE_59 * ((__tmpfile_312) (void ));// L198 +extern char * ((__tmpnam_319) (char * (____s_318)));// L209 +extern char * ((__tmpnam_320) (char * (____s_318)));// L209 +extern char * ((__tmpnam_r_322) (char * (____s_321)));// L215 +extern char * ((__tmpnam_r_323) (char * (____s_321)));// L215 +extern char * ((__tempnam_326) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 +extern char * ((__tempnam_327) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 +extern int (__fclose_330) (__FILE_59 * (____stream_328));// L237 +extern int (__fclose_332) (__FILE_59 * (____stream_328));// L237 +extern int (__fflush_336) (__FILE_59 * (____stream_334));// L242 +extern int (__fflush_unlocked_340) (__FILE_59 * (____stream_338));// L252 +extern __FILE_59 * ((__fopen_344) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 +extern __FILE_59 * ((__fopen_346) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 +extern __FILE_59 * ((__fopen_354) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 +extern __FILE_59 * ((__fopen_356) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 +extern __FILE_59 * ((__freopen_362) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 +extern __FILE_59 * ((__freopen_368) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 +extern __FILE_59 * ((__freopen_366) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 +extern __FILE_59 * ((__freopen_364) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 +extern __FILE_59 * ((__fdopen_372) (int ____fd_370, const char * (____modes_371)));// L306 +extern __FILE_59 * ((__fdopen_374) (int ____fd_370, const char * (____modes_371)));// L306 +extern __FILE_59 * ((__fmemopen_379) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 +extern __FILE_59 * ((__fmemopen_381) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 +extern __FILE_59 * ((__open_memstream_385) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 +extern __FILE_59 * ((__open_memstream_387) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 +extern void (__setbuf_392) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 +extern void (__setbuf_394) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 +extern int (__setvbuf_401) (__FILE_59 * __restrict ____stream_396, char * __restrict ____buf_398, int ____modes_399, __size_t_1 ____n_400);// L336:L337 +extern void (__setbuffer_407) (__FILE_59 * __restrict ____stream_403, char * __restrict ____buf_405, __size_t_1 ____size_406);// L343:L344 +extern void (__setlinebuf_411) (__FILE_59 * (____stream_409));// L347 +extern int (__fprintf_416) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 +extern int (__fprintf_418) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 +extern int (__printf_421) (const char * __restrict ____format_420, ... );// L362 +extern int (__sprintf_424) (char * __restrict ____s_422, const char * __restrict ____format_423, ... );// L364:L365 +extern int (__vfprintf_430) (__FILE_59 * __restrict ____s_425, const char * __restrict ____format_427, ____gnuc_va_list_86 ____arg_428);// L371:L372 +extern int (__vprintf_437) (const char * __restrict ____format_434, ____gnuc_va_list_86 ____arg_435);// L377 +extern int (__vsprintf_443) (char * __restrict ____s_439, const char * __restrict ____format_440, ____gnuc_va_list_86 ____arg_441);// L379:L380 +extern int (__snprintf_448) (char * __restrict ____s_445, __size_t_1 ____maxlen_446, const char * __restrict ____format_447, ... );// L386:L388 +extern int (__vsnprintf_454) (char * __restrict ____s_449, __size_t_1 ____maxlen_450, const char * __restrict ____format_451, ____gnuc_va_list_86 ____arg_452);// L390:L392 +extern int (__vdprintf_460) (int ____fd_456, const char * __restrict ____fmt_457, ____gnuc_va_list_86 ____arg_458);// L412:L414 +extern int (__dprintf_464) (int ____fd_462, const char * __restrict ____fmt_463, ... );// L415:L416 +extern int (__fscanf_468) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_470) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_472) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_474) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__scanf_477) (const char * __restrict ____format_476, ... );// L431 +extern int (__scanf_478) (const char * __restrict ____format_476, ... );// L431 +extern int (__sscanf_481) (const char * __restrict ____s_479, const char * __restrict ____format_480, ... );// L433:L434 + + + + -extern int (__vfscanf_284) (__FILE_58 * __restrict ____s_281, const char * __restrict ____format_282, ____gnuc_va_list_82 ____arg_283);// L471:L473 -extern int (__vscanf_287) (const char * __restrict ____format_285, ____gnuc_va_list_82 ____arg_286);// L479:L480 -extern int (__vsscanf_291) (const char * __restrict ____s_288, const char * __restrict ____format_289, ____gnuc_va_list_82 ____arg_290);// L483:L485 +extern int (__vfscanf_509) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 +extern int (__vfscanf_513) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 +extern int (__vscanf_520) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 +extern int (__vscanf_522) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 +extern int (__vsscanf_528) (const char * __restrict ____s_524, const char * __restrict ____format_525, ____gnuc_va_list_86 ____arg_526);// L483:L485 -extern int (__fgetc_304) (__FILE_58 * (____stream_303));// L531 -extern int (__getc_306) (__FILE_58 * (____stream_305));// L532 -extern int (__getchar_307) (void );// L538 -extern int (__getc_unlocked_309) (__FILE_58 * (____stream_308));// L550 -extern int (__getchar_unlocked_310) (void );// L551 -extern int (__fgetc_unlocked_312) (__FILE_58 * (____stream_311));// L561 -extern int (__fputc_315) (int ____c_313, __FILE_58 * (____stream_314));// L573 -extern int (__putc_318) (int ____c_316, __FILE_58 * (____stream_317));// L574 -extern int (__putchar_320) (int ____c_319);// L580 -extern int (__fputc_unlocked_323) (int ____c_321, __FILE_58 * (____stream_322));// L594 -extern int (__putc_unlocked_326) (int ____c_324, __FILE_58 * (____stream_325));// L602 -extern int (__putchar_unlocked_328) (int ____c_327);// L603 -extern int (__getw_330) (__FILE_58 * (____stream_329));// L610 -extern int (__putw_333) (int ____w_331, __FILE_58 * (____stream_332));// L613 -extern char * ((__fgets_337) (char * __restrict ____s_334, int ____n_335, __FILE_58 * __restrict ____stream_336));// L622:L623 -extern ____ssize_t_49 (____getdelim_342) (char * (* __restrict ____lineptr_338), __size_t_1 * __restrict ____n_339, int ____delimiter_340, __FILE_58 * __restrict ____stream_341);// L665:L667 -extern ____ssize_t_49 (__getdelim_347) (char * (* __restrict ____lineptr_343), __size_t_1 * __restrict ____n_344, int ____delimiter_345, __FILE_58 * __restrict ____stream_346);// L668:L670 -extern ____ssize_t_49 (__getline_351) (char * (* __restrict ____lineptr_348), __size_t_1 * __restrict ____n_349, __FILE_58 * __restrict ____stream_350);// L678:L680 -extern int (__fputs_354) (const char * __restrict ____s_352, __FILE_58 * __restrict ____stream_353);// L689 -extern int (__puts_356) (const char * (____s_355));// L695 -extern int (__ungetc_359) (int ____c_357, __FILE_58 * (____stream_358));// L702 -extern int (__fseek_379) (__FILE_58 * (____stream_376), long int ____off_377, int ____whence_378);// L749 -extern long int (__ftell_381) (__FILE_58 * (____stream_380));// L754 -extern void (__rewind_383) (__FILE_58 * (____stream_382));// L759 -extern int (__fseeko_387) (__FILE_58 * (____stream_384), ____off_t_23 ____off_385, int ____whence_386);// L773 -extern ____off_t_23 (__ftello_389) (__FILE_58 * (____stream_388));// L778 -extern int (__fgetpos_392) (__FILE_58 * __restrict ____stream_390, __fpos_t_171 * __restrict ____pos_391);// L798 -extern int (__fsetpos_395) (__FILE_58 * (____stream_393), const __fpos_t_171 * (____pos_394));// L803 -extern void (__clearerr_397) (__FILE_58 * (____stream_396));// L826 -extern int (__feof_399) (__FILE_58 * (____stream_398));// L828 -extern int (__ferror_401) (__FILE_58 * (____stream_400));// L830 -extern void (__clearerr_unlocked_403) (__FILE_58 * (____stream_402));// L835 -extern int (__feof_unlocked_405) (__FILE_58 * (____stream_404));// L836 -extern int (__ferror_unlocked_407) (__FILE_58 * (____stream_406));// L837 -extern void (__perror_409) (const char * (____s_408));// L846 -extern int __sys_nerr_410;// L26 - -extern int (__fileno_413) (__FILE_58 * (____stream_412));// L858 -extern int (__fileno_unlocked_415) (__FILE_58 * (____stream_414));// L863 -extern __FILE_58 * ((__popen_418) (const char * (____command_416), const char * (____modes_417)));// L872 -extern int (__pclose_420) (__FILE_58 * (____stream_419));// L878 -extern char * ((__ctermid_422) (char * (____s_421)));// L884 -extern void (__flockfile_424) (__FILE_58 * (____stream_423));// L912 -extern int (__ftrylockfile_426) (__FILE_58 * (____stream_425));// L916 -extern void (__funlockfile_428) (__FILE_58 * (____stream_427));// L919 -int (__main_431) (int __argc_429, char * (* (__argv_430))) { + + +extern int (__fgetc_563) (__FILE_59 * (____stream_561));// L531 +extern int (__getc_567) (__FILE_59 * (____stream_565));// L532 +extern int (__getchar_569) (void );// L538 +extern int (__getc_unlocked_572) (__FILE_59 * (____stream_570));// L550 +extern int (__getchar_unlocked_574) (void );// L551 +extern int (__fgetc_unlocked_577) (__FILE_59 * (____stream_575));// L561 +extern int (__fputc_582) (int ____c_579, __FILE_59 * (____stream_580));// L573 +extern int (__fputc_584) (int ____c_579, __FILE_59 * (____stream_580));// L573 +extern int (__putc_589) (int ____c_586, __FILE_59 * (____stream_587));// L574 +extern int (__putchar_592) (int ____c_591);// L580 +extern int (__fputc_unlocked_596) (int ____c_593, __FILE_59 * (____stream_594));// L594 +extern int (__putc_unlocked_601) (int ____c_598, __FILE_59 * (____stream_599));// L602 +extern int (__putchar_unlocked_604) (int ____c_603);// L603 +extern int (__getw_607) (__FILE_59 * (____stream_605));// L610 +extern int (__putw_612) (int ____w_609, __FILE_59 * (____stream_610));// L613 +extern char * ((__fgets_618) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_620) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_622) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_624) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern ____ssize_t_49 (____getdelim_631) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 +extern ____ssize_t_49 (____getdelim_635) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 +extern ____ssize_t_49 (__getdelim_644) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 +extern ____ssize_t_49 (__getdelim_648) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 +extern ____ssize_t_49 (__getline_656) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 +extern ____ssize_t_49 (__getline_660) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 +extern int (__fputs_667) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 +extern int (__fputs_669) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 +extern int (__puts_672) (const char * (____s_671));// L695 +extern int (__ungetc_676) (int ____c_673, __FILE_59 * (____stream_674));// L702 +extern int (__fseek_714) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 +extern int (__fseek_716) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 +extern long int (__ftell_720) (__FILE_59 * (____stream_718));// L754 +extern long int (__ftell_722) (__FILE_59 * (____stream_718));// L754 +extern void (__rewind_726) (__FILE_59 * (____stream_724));// L759 +extern int (__fseeko_733) (__FILE_59 * (____stream_728), ____off_t_23 ____off_730, int ____whence_732);// L773 +extern int (__fseeko_744) (__FILE_59 * (____stream_739), ____off64_t_24 ____off_741, int ____whence_743);// L781:L783 +extern ____off_t_23 (__ftello_758) (__FILE_59 * (____stream_737));// L778 +extern ____off_t_23 (__ftello_750) (__FILE_59 * (____stream_737));// L778 +extern int (__fgetpos_766) (__FILE_59 * __restrict ____stream_762, __fpos_t_287 * __restrict ____pos_764);// L798 +extern ____off64_t_24 (__ftello_754) (__FILE_59 * (____stream_748));// L784 +extern int (__fgetpos_778) (__FILE_59 * __restrict ____stream_774, __fpos_t_289 * __restrict ____pos_776);// L806:L807 +extern int (__fsetpos_786) (__FILE_59 * (____stream_770), const __fpos_t_287 * (____pos_772));// L803 +extern int (__fsetpos_790) (__FILE_59 * (____stream_782), const __fpos_t_289 * (____pos_784));// L808:L809 +extern void (__clearerr_796) (__FILE_59 * (____stream_794));// L826 +extern int (__feof_800) (__FILE_59 * (____stream_798));// L828 +extern int (__feof_802) (__FILE_59 * (____stream_798));// L828 +extern int (__ferror_806) (__FILE_59 * (____stream_804));// L830 +extern int (__ferror_808) (__FILE_59 * (____stream_804));// L830 +extern void (__clearerr_unlocked_812) (__FILE_59 * (____stream_810));// L835 +extern int (__feof_unlocked_816) (__FILE_59 * (____stream_814));// L836 +extern int (__feof_unlocked_818) (__FILE_59 * (____stream_814));// L836 +extern int (__ferror_unlocked_822) (__FILE_59 * (____stream_820));// L837 +extern int (__ferror_unlocked_824) (__FILE_59 * (____stream_820));// L837 +extern void (__perror_827) (const char * (____s_826));// L846 +extern void (__perror_828) (const char * (____s_826));// L846 +extern int __sys_nerr_829;// L26 + +extern int (__fileno_835) (__FILE_59 * (____stream_831));// L858 +extern int (__fileno_833) (__FILE_59 * (____stream_831));// L858 +extern int (__fileno_unlocked_841) (__FILE_59 * (____stream_837));// L863 +extern int (__fileno_unlocked_839) (__FILE_59 * (____stream_837));// L863 +extern __FILE_59 * ((__popen_845) (const char * (____command_843), const char * (____modes_844)));// L872 +extern __FILE_59 * ((__popen_847) (const char * (____command_843), const char * (____modes_844)));// L872 +extern int (__pclose_851) (__FILE_59 * (____stream_849));// L878 +extern char * ((__ctermid_854) (char * (____s_853)));// L884 +extern void (__flockfile_857) (__FILE_59 * (____stream_855));// L912 +extern int (__ftrylockfile_861) (__FILE_59 * (____stream_859));// L916 +extern int (__ftrylockfile_863) (__FILE_59 * (____stream_859));// L916 +extern void (__funlockfile_867) (__FILE_59 * (____stream_865));// L919 +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +extern int (____sprintf_chk_899) (char * __restrict ____s_895, int ____flag_896, __size_t_1 ____slen_897, const char * __restrict ____format_898, ... );// L23:L24 +extern int (____vsprintf_chk_906) (char * __restrict ____s_900, int ____flag_901, __size_t_1 ____slen_902, const char * __restrict ____format_903, ____gnuc_va_list_86 ____ap_904);// L25:L27 +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +extern int (____snprintf_chk_920) (char * __restrict ____s_915, __size_t_1 ____n_916, int ____flag_917, __size_t_1 ____slen_918, const char * __restrict ____format_919, ... );// L52:L54 +extern int (____vsnprintf_chk_928) (char * __restrict ____s_921, __size_t_1 ____n_922, int ____flag_923, __size_t_1 ____slen_924, const char * __restrict ____format_925, ____gnuc_va_list_86 ____ap_926);// L55:L57 +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +extern int (____fprintf_chk_943) (__FILE_59 * __restrict ____stream_939, int ____flag_941, const char * __restrict ____format_942, ... );// L85:L86 +extern int (____printf_chk_947) (int ____flag_945, const char * __restrict ____format_946, ... );// L87 +extern int (____vfprintf_chk_954) (__FILE_59 * __restrict ____stream_948, int ____flag_950, const char * __restrict ____format_951, ____gnuc_va_list_86 ____ap_952);// L88:L89 +extern int (____vprintf_chk_962) (int ____flag_958, const char * __restrict ____format_959, ____gnuc_va_list_86 ____ap_960);// L90:L91 +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +extern int (____dprintf_chk_984) (int ____fd_981, int ____flag_982, const char * __restrict ____fmt_983, ... );// L131:L132 +extern int (____vdprintf_chk_990) (int ____fd_985, int ____flag_986, const char * __restrict ____fmt_987, ____gnuc_va_list_86 ____arg_988);// L133:L135 +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +extern char * ((____fgets_chk_1004) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_chk_1006) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_chk_1008) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_alias_1014) (char * __restrict ____s_1010, int ____n_1011, __FILE_59 * __restrict ____stream_1012));// L243:L245 +extern char * ((____fgets_chk_warn_1021) (char * __restrict ____s_1016, __size_t_1 ____size_1017, int ____n_1018, __FILE_59 * __restrict ____stream_1019));// L246:L250 +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +int (__main_1095) (int __argc_1093, char * (* (__argv_1094))) { + +if (__static_condition_default_1096) { { { @@ -547,4 +1340,5 @@ return 0 ;// L24 } +} diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.desugared.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.desugared.c b/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.desugared.c index 651f8a5c..b4b23432 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.desugared.c +++ b/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.desugared.c @@ -7,881 +7,1813 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_326; -extern const bool __static_condition_default_328; -extern const bool __static_condition_default_1020; -extern const bool __static_condition_default_1025; -extern const bool __static_condition_default_612; -extern const bool __static_condition_default_449; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_446; -extern const bool __static_condition_default_162; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_931; -extern const bool __static_condition_default_338; -extern const bool __static_condition_default_567; -extern const bool __static_condition_default_507; -extern const bool __static_condition_default_969; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_304; -extern const bool __static_condition_default_435; -extern const bool __static_condition_default_999; -extern const bool __static_condition_default_610; -extern const bool __static_condition_default_718; -extern const bool __static_condition_default_1016; -extern const bool __static_condition_default_575; -extern const bool __static_condition_default_500; -extern const bool __static_condition_default_470; -extern const bool __static_condition_default_696; -extern const bool __static_condition_default_648; -extern const bool __static_condition_default_627; -extern const bool __static_condition_default_459; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_588; -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_870; -extern const bool __static_condition_default_917; -extern const bool __static_condition_default_794; -extern const bool __static_condition_default_642; -extern const bool __static_condition_default_454; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_688; -extern const bool __static_condition_default_739; -extern const bool __static_condition_default_562; -extern const bool __static_condition_default_820; -extern const bool __static_condition_default_586; -extern const bool __static_condition_default_953; -extern const bool __static_condition_default_605; -extern const bool __static_condition_default_672; -extern const bool __static_condition_default_719; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_1021; -extern const bool __static_condition_default_733; -extern const bool __static_condition_default_254; -extern const bool __static_condition_default_680; -extern const bool __static_condition_default_508; -extern const bool __static_condition_default_626; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_294; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_933; -extern const bool __static_condition_default_226; -extern const bool __static_condition_default_400; -extern const bool __static_condition_default_517; -extern const bool __static_condition_default_992; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_374; -extern const bool __static_condition_default_624; -extern const bool __static_condition_default_225; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_941; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_882; -extern const bool __static_condition_default_457; -extern const bool __static_condition_default_349; -extern const bool __static_condition_default_74; -extern const bool __static_condition_default_528; -extern const bool __static_condition_default_351; -extern const bool __static_condition_default_983; -extern const bool __static_condition_default_421; -extern const bool __static_condition_default_977; -extern const bool __static_condition_default_336; -extern const bool __static_condition_default_429; -extern const bool __static_condition_default_1006; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_161; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_640; -extern const bool __static_condition_default_165; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_431; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_720; -extern const bool __static_condition_default_230; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_762; -extern const bool __static_condition_default_784; -extern const bool __static_condition_default_381; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_320; -extern const bool __static_condition_default_729; +extern const bool __static_condition_default_1137; +extern const bool __static_condition_default_2059; +extern const bool __static_condition_default_2169; +extern const bool __static_condition_default_2227; +extern const bool __static_condition_default_1893; +extern const bool __static_condition_default_1899; +extern const bool __static_condition_default_1983; +extern const bool __static_condition_default_1176; +extern const bool __static_condition_default_1908; +extern const bool __static_condition_default_2146; +extern const bool __static_condition_default_1900; +extern const bool __static_condition_default_1506; +extern const bool __static_condition_default_1868; +extern const bool __static_condition_default_2271; +extern const bool __static_condition_default_2300; +extern const bool __static_condition_default_119; +extern const bool __static_condition_default_2014; +extern const bool __static_condition_default_1694; +extern const bool __static_condition_default_1584; +extern const bool __static_condition_default_1502; +extern const bool __static_condition_default_1170; +extern const bool __static_condition_default_55; +extern const bool __static_condition_default_1755; +extern const bool __static_condition_default_1130; +extern const bool __static_condition_default_1143; +extern const bool __static_condition_default_1622; +extern const bool __static_condition_default_1906; +extern const bool __static_condition_default_1992; +extern const bool __static_condition_default_2016; +extern const bool __static_condition_default_2170; +extern const bool __static_condition_default_1948; +extern const bool __static_condition_default_1918; +extern const bool __static_condition_default_1132; +extern const bool __static_condition_default_1168; +extern const bool __static_condition_default_2129; +extern const bool __static_condition_default_1267; +extern const bool __static_condition_default_1926; +extern const bool __static_condition_default_2302; +extern const bool __static_condition_default_1836; +extern const bool __static_condition_default_2233; +extern const bool __static_condition_default_1735; +extern const bool __static_condition_default_1479; +extern const bool __static_condition_default_1853; +extern const bool __static_condition_default_1158; +extern const bool __static_condition_default_2198; +extern const bool __static_condition_default_1458; +extern const bool __static_condition_default_1135; +extern const bool __static_condition_default_1946; +extern const bool __static_condition_default_1471; +extern const bool __static_condition_default_1824; +extern const bool __static_condition_default_1481; +extern const bool __static_condition_default_1714; +extern const bool __static_condition_default_2242; +extern const bool __static_condition_default_1171; +extern const bool __static_condition_default_1842; +extern const bool __static_condition_default_1448; +extern const bool __static_condition_default_1938; +extern const bool __static_condition_default_1971; +extern const bool __static_condition_default_1117; +extern const bool __static_condition_default_2257; +extern const bool __static_condition_default_2098; +extern const bool __static_condition_default_1172; +extern const bool __static_condition_default_1840; +extern const bool __static_condition_default_1859; +extern const bool __static_condition_default_1730; +extern const bool __static_condition_default_1925; +extern const bool __static_condition_default_1124; +extern const bool __static_condition_default_1980; +extern const bool __static_condition_default_2063; +extern const bool __static_condition_default_1685; +extern const bool __static_condition_default_2206; +extern const bool __static_condition_default_2306; +extern const bool __static_condition_default_1461; +extern const bool __static_condition_default_1960; +extern const bool __static_condition_default_1116; +extern const bool __static_condition_default_1361; +extern const bool __static_condition_default_1454; +extern const bool __static_condition_default_1705; +extern const bool __static_condition_default_2307; +extern const bool __static_condition_default_1750; +extern const bool __static_condition_default_1140; +extern const bool __static_condition_default_2004; +extern const bool __static_condition_default_1156; +extern const bool __static_condition_default_1829; +extern const bool __static_condition_default_2008; +extern const bool __static_condition_default_1586; +extern const bool __static_condition_default_1432; +extern const bool __static_condition_default_1603; +extern const bool __static_condition_default_1876; extern const bool __static_condition_default_118; -extern const bool __static_condition_default_227; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_256; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_332; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_904; -extern const bool __static_condition_default_310; -extern const bool __static_condition_default_482; -extern const bool __static_condition_default_694; -extern const bool __static_condition_default_707; -extern const bool __static_condition_default_300; -extern const bool __static_condition_default_556; -extern const bool __static_condition_default_448; -extern const bool __static_condition_default_716; -extern const bool __static_condition_default_453; -extern const bool __static_condition_default_766; -extern const bool __static_condition_default_232; -extern const bool __static_condition_default_772; -extern const bool __static_condition_default_236; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_495; -extern const bool __static_condition_default_976; -extern const bool __static_condition_default_641; -extern const bool __static_condition_default_639; -extern const bool __static_condition_default_984; -extern const bool __static_condition_default_893; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_898; -extern const bool __static_condition_default_330; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_595; -extern const bool __static_condition_default_954; -extern const bool __static_condition_default_379; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_905; -extern const bool __static_condition_default_343; -extern const bool __static_condition_default_804; -extern const bool __static_condition_default_948; -extern const bool __static_condition_default_706; -extern const bool __static_condition_default_889; -extern const bool __static_condition_default_393; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_577; -extern const bool __static_condition_default_308; -extern const bool __static_condition_default_603; -extern const bool __static_condition_default_798; -extern const bool __static_condition_default_370; -extern const bool __static_condition_default_1017; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_501; -extern const bool __static_condition_default_962; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_714; -extern const bool __static_condition_default_774; -extern const bool __static_condition_default_906; -extern const bool __static_condition_default_394; -extern const bool __static_condition_default_833; -extern const bool __static_condition_default_533; -extern const bool __static_condition_default_579; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_695; -extern const bool __static_condition_default_935; -extern const bool __static_condition_default_496; -extern const bool __static_condition_default_474; -extern const bool __static_condition_default_358; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_234; -extern const bool __static_condition_default_540; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_968; -extern const bool __static_condition_default_356; -extern const bool __static_condition_default_743; -extern const bool __static_condition_default_502; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_480; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_655; -extern const bool __static_condition_default_749; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_778; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_855; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_551; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_318; -extern const bool __static_condition_default_790; -extern const bool __static_condition_default_961; -extern const bool __static_condition_default_451; -extern const bool __static_condition_default_881; -extern const bool __static_condition_default_924; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_276; +extern const bool __static_condition_default_1175; +extern const bool __static_condition_default_2309; +extern const bool __static_condition_default_1720; +extern const bool __static_condition_default_1183; +extern const bool __static_condition_default_1849; +extern const bool __static_condition_default_1679; +extern const bool __static_condition_default_1450; +extern const bool __static_condition_default_1825; +extern const bool __static_condition_default_1449; +extern const bool __static_condition_default_1852; +extern const bool __static_condition_default_1823; +extern const bool __static_condition_default_105; +extern const bool __static_condition_default_2288; +extern const bool __static_condition_default_1141; +extern const bool __static_condition_default_1827; +extern const bool __static_condition_default_2290; +extern const bool __static_condition_default_1793; +extern const bool __static_condition_default_1446; +extern const bool __static_condition_default_1167; +extern const bool __static_condition_default_2301; +extern const bool __static_condition_default_1816; +extern const bool __static_condition_default_1161; +extern const bool __static_condition_default_1524; +extern const bool __static_condition_default_1112; +extern const bool __static_condition_default_1728; +extern const bool __static_condition_default_2171; +extern const bool __static_condition_default_122; +extern const bool __static_condition_default_1958; +extern const bool __static_condition_default_1113; +extern const bool __static_condition_default_1189; +extern const bool __static_condition_default_1120; +extern const bool __static_condition_default_1164; +extern const bool __static_condition_default_1173; +extern const bool __static_condition_default_1275; +extern const bool __static_condition_default_1733; +extern const bool __static_condition_default_1484; +extern const bool __static_condition_default_1850; +extern const bool __static_condition_default_2314; +extern const bool __static_condition_default_1389; +extern const bool __static_condition_default_2074; +extern const bool __static_condition_default_1804; +extern const bool __static_condition_default_1677; +extern const bool __static_condition_default_1664; +extern const bool __static_condition_default_2313; +extern const bool __static_condition_default_1828; +extern const bool __static_condition_default_2025; +extern const bool __static_condition_default_1942; +extern const bool __static_condition_default_1528; +extern const bool __static_condition_default_1174; +extern const bool __static_condition_default_1712; +extern const bool __static_condition_default_2286; +extern const bool __static_condition_default_1244; +extern const bool __static_condition_default_1883; +extern const bool __static_condition_default_1414; +extern const bool __static_condition_default_1554; +extern const bool __static_condition_default_1145; +extern const bool __static_condition_default_1952; +extern const bool __static_condition_default_1579; +extern const bool __static_condition_default_1729; +extern const bool __static_condition_default_1743; +extern const bool __static_condition_default_1764; +extern const bool __static_condition_default_1439; +extern const bool __static_condition_default_1891; +extern const bool __static_condition_default_1776; +extern const bool __static_condition_default_1155; +extern const bool __static_condition_default_2082; +extern const bool __static_condition_default_2154; +extern const bool __static_condition_default_89; +extern const bool __static_condition_default_2069; +extern const bool __static_condition_default_2281; +extern const bool __static_condition_default_1128; +extern const bool __static_condition_default_1487; +extern const bool __static_condition_default_1838; +extern const bool __static_condition_default_1727; +extern const bool __static_condition_default_1988; +extern const bool __static_condition_default_1688; +extern const bool __static_condition_default_2226; +extern const bool __static_condition_default_1890; +extern const bool __static_condition_default_2248; +extern const bool __static_condition_default_1165; +extern const bool __static_condition_default_2316; +extern const bool __static_condition_default_1774; +extern const bool __static_condition_default_2291; +extern const bool __static_condition_default_1157; +extern const bool __static_condition_default_1426; +extern const bool __static_condition_default_2085; +extern const bool __static_condition_default_1837; +extern const bool __static_condition_default_1127; +extern const bool __static_condition_default_2311; +extern const bool __static_condition_default_1190; +extern const bool __static_condition_default_1440; +extern const bool __static_condition_default_1812; +extern const bool __static_condition_default_1166; +extern const bool __static_condition_default_2037; +extern const bool __static_condition_default_1378; +extern const bool __static_condition_default_1548; +extern const bool __static_condition_default_2010; +extern const bool __static_condition_default_1556; +extern const bool __static_condition_default_1947; +extern const bool __static_condition_default_1536; +extern const bool __static_condition_default_2163; +extern const bool __static_condition_default_2219; +extern const bool __static_condition_default_2049; +extern const bool __static_condition_default_2147; +extern const bool __static_condition_default_1702; +extern const bool __static_condition_default_1437; +extern const bool __static_condition_default_1706; +extern const bool __static_condition_default_2033; +extern const bool __static_condition_default_1184; +extern const bool __static_condition_default_1154; +extern const bool __static_condition_default_1666; +extern const bool __static_condition_default_2120; +extern const bool __static_condition_default_2249; +extern const bool __static_condition_default_1759; +extern const bool __static_condition_default_2189; +extern const bool __static_condition_default_1660; +extern const bool __static_condition_default_1532; +extern const bool __static_condition_default_1142; +extern const bool __static_condition_default_1972; +extern const bool __static_condition_default_1178; +extern const bool __static_condition_default_1126; +extern const bool __static_condition_default_1133; +extern const bool __static_condition_default_1136; +extern const bool __static_condition_default_1160; +extern const bool __static_condition_default_2317; +extern const bool __static_condition_default_1115; +extern const bool __static_condition_default_1395; +extern const bool __static_condition_default_1740; +extern const bool __static_condition_default_1984; +extern const bool __static_condition_default_2053; +extern const bool __static_condition_default_1122; +extern const bool __static_condition_default_1144; +extern const bool __static_condition_default_1814; +extern const bool __static_condition_default_1998; +extern const bool __static_condition_default_1179; +extern const bool __static_condition_default_2308; +extern const bool __static_condition_default_2312; +extern const bool __static_condition_default_1788; +extern const bool __static_condition_default_1558; +extern const bool __static_condition_default_1635; +extern const bool __static_condition_default_2263; +extern const bool __static_condition_default_1564; +extern const bool __static_condition_default_1951; +extern const bool __static_condition_default_1884; +extern const bool __static_condition_default_2305; +extern const bool __static_condition_default_1841; +extern const bool __static_condition_default_1408; +extern const bool __static_condition_default_1734; +extern const bool __static_condition_default_1646; +extern const bool __static_condition_default_1781; +extern const bool __static_condition_default_1662; +extern const bool __static_condition_default_1944; +extern const bool __static_condition_default_2280; +extern const bool __static_condition_default_1373; +extern const bool __static_condition_default_1538; +extern const bool __static_condition_default_1744; +extern const bool __static_condition_default_1169; +extern const bool __static_condition_default_1810; +extern const bool __static_condition_default_1936; +extern const bool __static_condition_default_2043; +extern const bool __static_condition_default_1522; +extern const bool __static_condition_default_1610; +extern const bool __static_condition_default_1769; +extern const bool __static_condition_default_1444; +extern const bool __static_condition_default_2218; +extern const bool __static_condition_default_2310; +extern const bool __static_condition_default_1577; +extern const bool __static_condition_default_2264; +extern const bool __static_condition_default_1360; +extern const bool __static_condition_default_1914; +extern const bool __static_condition_default_2272; +extern const bool __static_condition_default_1629; +extern const bool __static_condition_default_1652; +extern const bool __static_condition_default_1707; +extern const bool __static_condition_default_1874; +extern const bool __static_condition_default_1978; +extern const bool __static_condition_default_1121; +extern const bool __static_condition_default_1188; +extern const bool __static_condition_default_1314; +extern const bool __static_condition_default_1392; +extern const bool __static_condition_default_2303; +extern const bool __static_condition_default_2200; +extern const bool __static_condition_default_1571; +extern const bool __static_condition_default_1608; +extern const bool __static_condition_default_2055; +extern const bool __static_condition_default_1875; +extern const bool __static_condition_default_1180; +extern const bool __static_condition_default_2105; +extern const bool __static_condition_default_2287; +extern const bool __static_condition_default_1927; +extern const bool __static_condition_default_1508; +extern const bool __static_condition_default_1943; +extern const bool __static_condition_default_1732; +extern const bool __static_condition_default_1435; +extern const bool __static_condition_default_1912; +extern const bool __static_condition_default_2135; +extern const bool __static_condition_default_1123; +extern const bool __static_condition_default_1475; +extern const bool __static_condition_default_2299; +extern const bool __static_condition_default_1163; +extern const bool __static_condition_default_1490; +extern const bool __static_condition_default_2322; +extern const bool __static_condition_default_1441; +extern const bool __static_condition_default_2027; +extern const bool __static_condition_default_2282; +extern const bool __static_condition_default_1799; +extern const bool __static_condition_default_1138; +extern const bool __static_condition_default_1187; +extern const bool __static_condition_default_1177; +extern const bool __static_condition_default_1118; +extern const bool __static_condition_default_1861; +extern const bool __static_condition_default_1599; +extern const bool __static_condition_default_2196; +extern const bool __static_condition_default_2000; +extern const bool __static_condition_default_1125; +extern const bool __static_condition_default_1186; +extern const bool __static_condition_default_1573; +extern const bool __static_condition_default_1465; +extern const bool __static_condition_default_2320; +extern const bool __static_condition_default_1504; +extern const bool __static_condition_default_95; +extern const bool __static_condition_default_1950; +extern const bool __static_condition_default_1690; +extern const bool __static_condition_default_111; +extern const bool __static_condition_default_1473; +extern const bool __static_condition_default_1751; +extern const bool __static_condition_default_1119; +extern const bool __static_condition_default_1466; +extern const bool __static_condition_default_2241; +extern const bool __static_condition_default_1937; +extern const bool __static_condition_default_1401; +extern const bool __static_condition_default_2031; +extern const bool __static_condition_default_1139; +extern const bool __static_condition_default_2234; +extern const bool __static_condition_default_1114; +extern const bool __static_condition_default_1477; +extern const bool __static_condition_default_2304; +extern const bool __static_condition_default_1131; +extern const bool __static_condition_default_1623; +extern const bool __static_condition_default_2078; +extern const bool __static_condition_default_2158; +extern const bool __static_condition_default_1560; +extern const bool __static_condition_default_1566; +extern const bool __static_condition_default_1159; +extern const bool __static_condition_default_1455; +extern const bool __static_condition_default_2256; +extern const bool __static_condition_default_1877; +extern const bool __static_condition_default_2315; +extern const bool __static_condition_default_1970; +extern const bool __static_condition_default_1701; +extern const bool __static_condition_default_1384; +extern const bool __static_condition_default_2213; +extern const bool __static_condition_default_1364; +extern const bool __static_condition_default_1982; +extern const bool __static_condition_default_1994; +extern const bool __static_condition_default_1624; +extern const bool __static_condition_default_1593; +extern const bool __static_condition_default_1134; +extern const bool __static_condition_default_1546; +extern const bool __static_condition_default_1684; +extern const bool __static_condition_default_1848; +extern const bool __static_condition_default_2321; +extern const bool __static_condition_default_1703; +extern const bool __static_condition_default_2039; +extern const bool __static_condition_default_1741; +extern const bool __static_condition_default_1181; +extern const bool __static_condition_default_1182; +extern const bool __static_condition_default_1959; +extern const bool __static_condition_default_1469; +extern const bool __static_condition_default_1429; +extern const bool __static_condition_default_1420; +extern const bool __static_condition_default_1854; +extern const bool __static_condition_default_1129; +extern const bool __static_condition_default_1892; +extern const bool __static_condition_default_1462; +extern const bool __static_condition_default_1979; +extern const bool __static_condition_default_2148; +extern const bool __static_condition_default_87; +extern const bool __static_condition_default_103; +extern const bool __static_condition_default_1185; +extern const bool __static_condition_default_2182; +extern const bool __static_condition_default_1680; +extern const bool __static_condition_default_2066; +extern const bool __static_condition_default_1682; +extern const bool __static_condition_default_1162; void __static_initializer_default() { -__static_renaming("__ptrdiff_t_0", "ptrdiff_t"); -__static_renaming("__size_t_1", "size_t"); -__static_renaming("____u_char_2", "__u_char"); -__static_renaming("____u_short_3", "__u_short"); -__static_renaming("____u_int_4", "__u_int"); -__static_renaming("____u_long_5", "__u_long"); -__static_renaming("____int8_t_6", "__int8_t"); -__static_renaming("____uint8_t_7", "__uint8_t"); -__static_renaming("____int16_t_8", "__int16_t"); -__static_renaming("____uint16_t_9", "__uint16_t"); -__static_renaming("____int32_t_10", "__int32_t"); -__static_renaming("____uint32_t_11", "__uint32_t"); -__static_renaming("____int64_t_12", "__int64_t"); -__static_renaming("____uint64_t_13", "__uint64_t"); -__static_renaming("____quad_t_14", "__quad_t"); -__static_renaming("____u_quad_t_15", "__u_quad_t"); -__static_renaming("____dev_t_16", "__dev_t"); -__static_renaming("____uid_t_17", "__uid_t"); -__static_renaming("____gid_t_18", "__gid_t"); -__static_renaming("____ino_t_19", "__ino_t"); -__static_renaming("____ino64_t_20", "__ino64_t"); -__static_renaming("____mode_t_21", "__mode_t"); -__static_renaming("____nlink_t_22", "__nlink_t"); -__static_renaming("____off_t_23", "__off_t"); -__static_renaming("____off64_t_24", "__off64_t"); -__static_renaming("____pid_t_25", "__pid_t"); -__static_renaming("____fsid_t_29", "__fsid_t"); -__static_renaming("____clock_t_30", "__clock_t"); -__static_renaming("____rlim_t_31", "__rlim_t"); -__static_renaming("____rlim64_t_32", "__rlim64_t"); -__static_renaming("____id_t_33", "__id_t"); -__static_renaming("____time_t_34", "__time_t"); -__static_renaming("____useconds_t_35", "__useconds_t"); -__static_renaming("____suseconds_t_36", "__suseconds_t"); -__static_renaming("____daddr_t_37", "__daddr_t"); -__static_renaming("____key_t_38", "__key_t"); -__static_renaming("____clockid_t_39", "__clockid_t"); -__static_renaming("____timer_t_40", "__timer_t"); -__static_renaming("____blksize_t_41", "__blksize_t"); -__static_renaming("____blkcnt_t_42", "__blkcnt_t"); -__static_renaming("____blkcnt64_t_43", "__blkcnt64_t"); -__static_renaming("____fsblkcnt_t_44", "__fsblkcnt_t"); -__static_renaming("____fsblkcnt64_t_45", "__fsblkcnt64_t"); -__static_renaming("____fsfilcnt_t_46", "__fsfilcnt_t"); -__static_renaming("____fsfilcnt64_t_47", "__fsfilcnt64_t"); -__static_renaming("____fsword_t_48", "__fsword_t"); -__static_renaming("____ssize_t_49", "__ssize_t"); -__static_renaming("____syscall_slong_t_50", "__syscall_slong_t"); -__static_renaming("____syscall_ulong_t_51", "__syscall_ulong_t"); -__static_renaming("____loff_t_52", "__loff_t"); -__static_renaming("____qaddr_t_53", "__qaddr_t"); -__static_renaming("____caddr_t_54", "__caddr_t"); -__static_renaming("____intptr_t_55", "__intptr_t"); -__static_renaming("____socklen_t_56", "__socklen_t"); -__static_renaming("__FILE_58", "FILE"); -__static_renaming("____FILE_59", "__FILE"); -__static_renaming("____mbstate_t_68", "__mbstate_t"); -__static_renaming("___G_fpos_t_75", "_G_fpos_t"); -__static_renaming("___G_fpos64_t_81", "_G_fpos64_t"); -__static_renaming("____gnuc_va_list_82", "__gnuc_va_list"); -__static_renaming("___IO_lock_t_84", "_IO_lock_t"); -__static_renaming("___IO_FILE_163", "_IO_FILE"); -__static_renaming("___IO_FILE_164", "_IO_FILE"); -__static_renaming("___IO_2_1_stdin__167", "_IO_2_1_stdin_"); -__static_renaming("___IO_2_1_stdout__168", "_IO_2_1_stdout_"); -__static_renaming("___IO_2_1_stderr__169", "_IO_2_1_stderr_"); -__static_renaming("____io_read_fn_173", "__io_read_fn"); -__static_renaming("____io_write_fn_177", "__io_write_fn"); -__static_renaming("____io_seek_fn_181", "__io_seek_fn"); -__static_renaming("____io_close_fn_183", "__io_close_fn"); -__static_renaming("____underflow_184", "__underflow"); -__static_renaming("____underflow_185", "__underflow"); -__static_renaming("____uflow_186", "__uflow"); -__static_renaming("____uflow_187", "__uflow"); -__static_renaming("____overflow_188", "__overflow"); -__static_renaming("____overflow_189", "__overflow"); -__static_renaming("___IO_getc_193", "_IO_getc"); -__static_renaming("___IO_getc_194", "_IO_getc"); -__static_renaming("___IO_putc_199", "_IO_putc"); -__static_renaming("___IO_putc_200", "_IO_putc"); -__static_renaming("___IO_feof_204", "_IO_feof"); -__static_renaming("___IO_feof_205", "_IO_feof"); -__static_renaming("___IO_ferror_209", "_IO_ferror"); -__static_renaming("___IO_ferror_210", "_IO_ferror"); -__static_renaming("___IO_peekc_locked_214", "_IO_peekc_locked"); -__static_renaming("___IO_peekc_locked_215", "_IO_peekc_locked"); -__static_renaming("___IO_flockfile_216", "_IO_flockfile"); -__static_renaming("___IO_flockfile_217", "_IO_flockfile"); -__static_renaming("___IO_funlockfile_218", "_IO_funlockfile"); -__static_renaming("___IO_funlockfile_219", "_IO_funlockfile"); -__static_renaming("___IO_ftrylockfile_220", "_IO_ftrylockfile"); -__static_renaming("___IO_ftrylockfile_221", "_IO_ftrylockfile"); -__static_renaming("___IO_vfscanf_222", "_IO_vfscanf"); -__static_renaming("___IO_vfscanf_224", "_IO_vfscanf"); -__static_renaming("___IO_vfprintf_231", "_IO_vfprintf"); -__static_renaming("___IO_vfprintf_233", "_IO_vfprintf"); -__static_renaming("___IO_padn_238", "_IO_padn"); -__static_renaming("___IO_padn_239", "_IO_padn"); -__static_renaming("___IO_sgetn_240", "_IO_sgetn"); -__static_renaming("___IO_sgetn_241", "_IO_sgetn"); -__static_renaming("___IO_seekoff_242", "_IO_seekoff"); -__static_renaming("___IO_seekoff_243", "_IO_seekoff"); -__static_renaming("___IO_seekpos_244", "_IO_seekpos"); -__static_renaming("___IO_seekpos_245", "_IO_seekpos"); -__static_renaming("___IO_free_backup_area_246", "_IO_free_backup_area"); -__static_renaming("___IO_free_backup_area_247", "_IO_free_backup_area"); -__static_renaming("__va_list_248", "va_list"); -__static_renaming("__off_t_250", "off_t"); -__static_renaming("__off_t_251", "off_t"); -__static_renaming("__ssize_t_252", "ssize_t"); -__static_renaming("__fpos_t_253", "fpos_t"); -__static_renaming("__fpos_t_255", "fpos_t"); -__static_renaming("__stdin_257", "stdin"); -__static_renaming("__stdin_258", "stdin"); -__static_renaming("__stdout_259", "stdout"); -__static_renaming("__stdout_260", "stdout"); -__static_renaming("__stderr_261", "stderr"); -__static_renaming("__stderr_262", "stderr"); -__static_renaming("__remove_264", "remove"); -__static_renaming("__rename_267", "rename"); -__static_renaming("__renameat_272", "renameat"); -__static_renaming("__tmpfile_273", "tmpfile"); -__static_renaming("__tmpfile_275", "tmpfile"); -__static_renaming("__tmpfile_277", "tmpfile"); -__static_renaming("__tmpfile_279", "tmpfile"); -__static_renaming("__tmpnam_282", "tmpnam"); -__static_renaming("__tmpnam_283", "tmpnam"); -__static_renaming("__tmpnam_r_285", "tmpnam_r"); -__static_renaming("__tmpnam_r_286", "tmpnam_r"); -__static_renaming("__tempnam_289", "tempnam"); -__static_renaming("__tempnam_290", "tempnam"); -__static_renaming("__fclose_293", "fclose"); -__static_renaming("__fclose_295", "fclose"); -__static_renaming("__fflush_299", "fflush"); -__static_renaming("__fflush_unlocked_303", "fflush_unlocked"); -__static_renaming("__fopen_307", "fopen"); -__static_renaming("__fopen_309", "fopen"); -__static_renaming("__fopen_317", "fopen"); -__static_renaming("__fopen_319", "fopen"); -__static_renaming("__freopen_325", "freopen"); -__static_renaming("__freopen_327", "freopen"); -__static_renaming("__freopen_329", "freopen"); -__static_renaming("__freopen_331", "freopen"); -__static_renaming("__fdopen_335", "fdopen"); -__static_renaming("__fdopen_337", "fdopen"); -__static_renaming("__fmemopen_342", "fmemopen"); -__static_renaming("__fmemopen_344", "fmemopen"); -__static_renaming("__open_memstream_348", "open_memstream"); -__static_renaming("__open_memstream_350", "open_memstream"); -__static_renaming("__setbuf_355", "setbuf"); -__static_renaming("__setbuf_357", "setbuf"); -__static_renaming("__setvbuf_364", "setvbuf"); -__static_renaming("__setbuffer_369", "setbuffer"); -__static_renaming("__setlinebuf_373", "setlinebuf"); -__static_renaming("__fprintf_378", "fprintf"); -__static_renaming("__fprintf_380", "fprintf"); -__static_renaming("__printf_383", "printf"); -__static_renaming("__sprintf_386", "sprintf"); -__static_renaming("__vfprintf_392", "vfprintf"); -__static_renaming("__vprintf_399", "vprintf"); -__static_renaming("__vsprintf_405", "vsprintf"); -__static_renaming("__snprintf_409", "snprintf"); -__static_renaming("__vsnprintf_415", "vsnprintf"); -__static_renaming("__vdprintf_420", "vdprintf"); -__static_renaming("__dprintf_424", "dprintf"); -__static_renaming("__fscanf_428", "fscanf"); -__static_renaming("__fscanf_430", "fscanf"); -__static_renaming("__fscanf_432", "fscanf"); -__static_renaming("__fscanf_434", "fscanf"); -__static_renaming("__scanf_437", "scanf"); -__static_renaming("__scanf_438", "scanf"); -__static_renaming("__sscanf_441", "sscanf"); -__static_renaming("__vfscanf_468", "vfscanf"); -__static_renaming("__vfscanf_472", "vfscanf"); -__static_renaming("__vscanf_479", "vscanf"); -__static_renaming("__vscanf_481", "vscanf"); -__static_renaming("__vsscanf_487", "vsscanf"); -__static_renaming("__fgetc_520", "fgetc"); -__static_renaming("__getc_523", "getc"); -__static_renaming("__getchar_524", "getchar"); -__static_renaming("__getc_unlocked_527", "getc_unlocked"); -__static_renaming("__getchar_unlocked_529", "getchar_unlocked"); -__static_renaming("__fgetc_unlocked_532", "fgetc_unlocked"); -__static_renaming("__fputc_537", "fputc"); -__static_renaming("__fputc_539", "fputc"); -__static_renaming("__putc_544", "putc"); -__static_renaming("__putchar_546", "putchar"); -__static_renaming("__fputc_unlocked_550", "fputc_unlocked"); -__static_renaming("__putc_unlocked_555", "putc_unlocked"); -__static_renaming("__putchar_unlocked_558", "putchar_unlocked"); -__static_renaming("__getw_561", "getw"); -__static_renaming("__putw_566", "putw"); -__static_renaming("__fgets_572", "fgets"); -__static_renaming("__fgets_574", "fgets"); -__static_renaming("__fgets_576", "fgets"); -__static_renaming("__fgets_578", "fgets"); -__static_renaming("____getdelim_585", "__getdelim"); -__static_renaming("____getdelim_587", "__getdelim"); -__static_renaming("__getdelim_594", "getdelim"); -__static_renaming("__getdelim_596", "getdelim"); -__static_renaming("__getline_602", "getline"); -__static_renaming("__getline_604", "getline"); -__static_renaming("__fputs_609", "fputs"); -__static_renaming("__fputs_611", "fputs"); -__static_renaming("__puts_614", "puts"); -__static_renaming("__ungetc_618", "ungetc"); -__static_renaming("__fseek_654", "fseek"); -__static_renaming("__fseek_656", "fseek"); -__static_renaming("__ftell_660", "ftell"); -__static_renaming("__ftell_662", "ftell"); -__static_renaming("__rewind_666", "rewind"); -__static_renaming("__fseeko_671", "fseeko"); -__static_renaming("__fseeko_679", "fseeko"); -__static_renaming("__ftello_683", "ftello"); -__static_renaming("__ftello_685", "ftello"); -__static_renaming("__ftello_687", "ftello"); -__static_renaming("__fgetpos_693", "fgetpos"); -__static_renaming("__fgetpos_705", "fgetpos"); -__static_renaming("__fsetpos_713", "fsetpos"); -__static_renaming("__fsetpos_717", "fsetpos"); -__static_renaming("__clearerr_723", "clearerr"); -__static_renaming("__feof_726", "feof"); -__static_renaming("__feof_728", "feof"); -__static_renaming("__ferror_732", "ferror"); -__static_renaming("__ferror_734", "ferror"); -__static_renaming("__clearerr_unlocked_738", "clearerr_unlocked"); -__static_renaming("__feof_unlocked_742", "feof_unlocked"); -__static_renaming("__feof_unlocked_744", "feof_unlocked"); -__static_renaming("__ferror_unlocked_748", "ferror_unlocked"); -__static_renaming("__ferror_unlocked_750", "ferror_unlocked"); -__static_renaming("__perror_753", "perror"); -__static_renaming("__perror_754", "perror"); -__static_renaming("__sys_nerr_755", "sys_nerr"); -__static_renaming("__sys_errlist_756", "sys_errlist"); -__static_renaming("__fileno_759", "fileno"); -__static_renaming("__fileno_761", "fileno"); -__static_renaming("__fileno_unlocked_765", "fileno_unlocked"); -__static_renaming("__fileno_unlocked_767", "fileno_unlocked"); -__static_renaming("__popen_771", "popen"); -__static_renaming("__popen_773", "popen"); -__static_renaming("__pclose_777", "pclose"); -__static_renaming("__ctermid_780", "ctermid"); -__static_renaming("__flockfile_783", "flockfile"); -__static_renaming("__ftrylockfile_787", "ftrylockfile"); -__static_renaming("__ftrylockfile_789", "ftrylockfile"); -__static_renaming("__funlockfile_793", "funlockfile"); -__static_renaming("____sprintf_chk_825", "__sprintf_chk"); -__static_renaming("____vsprintf_chk_832", "__vsprintf_chk"); -__static_renaming("____snprintf_chk_846", "__snprintf_chk"); -__static_renaming("____vsnprintf_chk_854", "__vsnprintf_chk"); -__static_renaming("____fprintf_chk_869", "__fprintf_chk"); -__static_renaming("____printf_chk_873", "__printf_chk"); -__static_renaming("____vfprintf_chk_880", "__vfprintf_chk"); -__static_renaming("____vprintf_chk_888", "__vprintf_chk"); -__static_renaming("____dprintf_chk_910", "__dprintf_chk"); -__static_renaming("____vdprintf_chk_916", "__vdprintf_chk"); -__static_renaming("____fgets_chk_930", "__fgets_chk"); -__static_renaming("____fgets_chk_932", "__fgets_chk"); -__static_renaming("____fgets_chk_934", "__fgets_chk"); -__static_renaming("____fgets_alias_940", "__fgets_alias"); -__static_renaming("____fgets_chk_warn_947", "__fgets_chk_warn"); -__static_renaming("____cnt_1013", "__cnt"); -__static_renaming("____cptr_1014", "__cptr"); -__static_renaming("__enable_x_1018", "enable_x"); -__static_renaming("__enable_x_1019", "enable_x"); -__static_renaming("__enable_y_1022", "enable_y"); -__static_renaming("__enable_z_1023", "enable_z"); -__static_renaming("__main_1024", "main"); - -__static_condition_renaming("__static_condition_default_74", "(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_118", "(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_161", "(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_162", "(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_165", "(defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_223", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_225", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_226", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_227", "(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_230", "(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_232", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_234", "(defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); -__static_condition_renaming("__static_condition_default_235", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_236", "(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO)"); -__static_condition_renaming("__static_condition_default_249", "!(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); -__static_condition_renaming("__static_condition_default_254", "!(defined _FILE_OFFSET_BITS) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_256", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_274", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_276", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_278", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_280", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_294", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_296", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_300", "(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_304", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_308", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_310", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_318", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_320", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_326", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_328", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_330", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_332", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_336", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_338", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_343", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_345", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_349", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_351", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_356", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_358", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_370", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_374", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_379", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_381", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_393", "!(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_394", "(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_395", "(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_400", "!(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_421", "!(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_429", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_431", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_433", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_435", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_446", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_448", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_449", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_451", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_453", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_454", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_457", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_459", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_469", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_470", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_471", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_473", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_474", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_475", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_480", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_482", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_494", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_495", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_496", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_497", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_499", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_500", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_501", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_502", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_507", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_508", "!(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_510", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_511", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_517", "!(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_528", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_533", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_538", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_540", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_551", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_556", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_562", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_567", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_573", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_575", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_577", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_579", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_586", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_588", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_595", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_597", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_603", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_605", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_610", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_612", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_624", "!(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_625", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_626", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_627", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_633", "!(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_639", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_640", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_641", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_642", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_648", "!(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_649", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_655", "(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_657", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_661", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_663", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_672", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_680", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_684", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_686", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_688", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_694", "!(defined _FILE_OFFSET_BITS) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_695", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_696", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_706", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_707", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_708", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_714", "!(defined _FILE_OFFSET_BITS) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_715", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_716", "!(defined _FILE_OFFSET_BITS) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_718", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_719", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_720", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined __FILE_defined) && (defined ____mbstate_t_defined)"); -__static_condition_renaming("__static_condition_default_727", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_729", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_733", "!(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_735", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_739", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_743", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_745", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_749", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_751", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_760", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_762", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_766", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_768", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_772", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_774", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_778", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_784", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_788", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_790", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_794", "!(defined __STRICT_ANSI__) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_798", "!(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_801", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_804", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_809", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_813", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_817", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_820", "!(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_833", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_840", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_855", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_864", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_870", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_881", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_882", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_883", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_889", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_893", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_898", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_904", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_905", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); -__static_condition_renaming("__static_condition_default_906", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_917", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_924", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); -__static_condition_renaming("__static_condition_default_931", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_933", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_935", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_941", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_948", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_953", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_954", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_961", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_962", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_968", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_969", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_976", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_977", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_983", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_984", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_991", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_992", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_998", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_999", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1006", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1007", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1015", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); -__static_condition_renaming("__static_condition_default_1016", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1017", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1020", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) || (defined __STRICT_ANSI__)"); -__static_condition_renaming("__static_condition_default_1021", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_1025", "(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); - -if (__static_condition_default_1025) { +__static_renaming("__int8_t_0", "int8_t"); +__static_renaming("__int16_t_1", "int16_t"); +__static_renaming("__int32_t_2", "int32_t"); +__static_renaming("__int64_t_3", "int64_t"); +__static_renaming("__uint8_t_4", "uint8_t"); +__static_renaming("__uint16_t_5", "uint16_t"); +__static_renaming("__uint32_t_6", "uint32_t"); +__static_renaming("__uint64_t_7", "uint64_t"); +__static_renaming("__int_least8_t_8", "int_least8_t"); +__static_renaming("__int_least16_t_9", "int_least16_t"); +__static_renaming("__int_least32_t_10", "int_least32_t"); +__static_renaming("__int_least64_t_11", "int_least64_t"); +__static_renaming("__uint_least8_t_12", "uint_least8_t"); +__static_renaming("__uint_least16_t_13", "uint_least16_t"); +__static_renaming("__uint_least32_t_14", "uint_least32_t"); +__static_renaming("__uint_least64_t_15", "uint_least64_t"); +__static_renaming("__int_fast8_t_16", "int_fast8_t"); +__static_renaming("__int_fast16_t_17", "int_fast16_t"); +__static_renaming("__int_fast32_t_18", "int_fast32_t"); +__static_renaming("__int_fast64_t_19", "int_fast64_t"); +__static_renaming("__uint_fast8_t_20", "uint_fast8_t"); +__static_renaming("__uint_fast16_t_21", "uint_fast16_t"); +__static_renaming("__uint_fast32_t_22", "uint_fast32_t"); +__static_renaming("__uint_fast64_t_23", "uint_fast64_t"); +__static_renaming("__intptr_t_24", "intptr_t"); +__static_renaming("__uintptr_t_25", "uintptr_t"); +__static_renaming("__intmax_t_26", "intmax_t"); +__static_renaming("__uintmax_t_27", "uintmax_t"); +__static_renaming("____gwchar_t_28", "__gwchar_t"); +__static_renaming("__imaxdiv_t_33", "imaxdiv_t"); +__static_renaming("__imaxdiv_t_34", "imaxdiv_t"); +__static_renaming("__imaxabs_36", "imaxabs"); +__static_renaming("__imaxdiv_39", "imaxdiv"); +__static_renaming("__imaxdiv_40", "imaxdiv"); +__static_renaming("__strtoimax_44", "strtoimax"); +__static_renaming("__strtoumax_48", "strtoumax"); +__static_renaming("__wcstoimax_54", "wcstoimax"); +__static_renaming("__wcstoumax_61", "wcstoumax"); +__static_renaming("____strtol_internal_66", "__strtol_internal"); +__static_renaming("____strtol_internal_67", "__strtol_internal"); +__static_renaming("____strtoul_internal_75", "__strtoul_internal"); +__static_renaming("____strtoul_internal_76", "__strtoul_internal"); +__static_renaming("____wcstol_internal_86", "__wcstol_internal"); +__static_renaming("____wcstol_internal_88", "__wcstol_internal"); +__static_renaming("____wcstoul_internal_102", "__wcstoul_internal"); +__static_renaming("____wcstoul_internal_104", "__wcstoul_internal"); +__static_renaming("___delay_loop_1_113", "_delay_loop_1"); +__static_renaming("___delay_loop_2_115", "_delay_loop_2"); +__static_renaming("___delay_loop_1_117", "_delay_loop_1"); +__static_renaming("___delay_loop_2_121", "_delay_loop_2"); +__static_renaming("__float_t_123", "float_t"); +__static_renaming("__double_t_124", "double_t"); +__static_renaming("__acos_126", "acos"); +__static_renaming("____acos_128", "__acos"); +__static_renaming("__asin_130", "asin"); +__static_renaming("____asin_132", "__asin"); +__static_renaming("__atan_134", "atan"); +__static_renaming("____atan_136", "__atan"); +__static_renaming("__atan2_139", "atan2"); +__static_renaming("____atan2_142", "__atan2"); +__static_renaming("__cos_144", "cos"); +__static_renaming("__cos_145", "cos"); +__static_renaming("____cos_147", "__cos"); +__static_renaming("__sin_149", "sin"); +__static_renaming("__sin_150", "sin"); +__static_renaming("____sin_152", "__sin"); +__static_renaming("__tan_154", "tan"); +__static_renaming("____tan_156", "__tan"); +__static_renaming("__cosh_158", "cosh"); +__static_renaming("____cosh_160", "__cosh"); +__static_renaming("__sinh_162", "sinh"); +__static_renaming("____sinh_164", "__sinh"); +__static_renaming("__tanh_166", "tanh"); +__static_renaming("____tanh_168", "__tanh"); +__static_renaming("__acosh_170", "acosh"); +__static_renaming("____acosh_172", "__acosh"); +__static_renaming("__asinh_174", "asinh"); +__static_renaming("____asinh_176", "__asinh"); +__static_renaming("__atanh_178", "atanh"); +__static_renaming("____atanh_180", "__atanh"); +__static_renaming("__exp_182", "exp"); +__static_renaming("__exp_183", "exp"); +__static_renaming("____exp_185", "__exp"); +__static_renaming("__frexp_188", "frexp"); +__static_renaming("____frexp_191", "__frexp"); +__static_renaming("__ldexp_194", "ldexp"); +__static_renaming("____ldexp_197", "__ldexp"); +__static_renaming("__log_199", "log"); +__static_renaming("__log_200", "log"); +__static_renaming("____log_202", "__log"); +__static_renaming("__log10_204", "log10"); +__static_renaming("____log10_206", "__log10"); +__static_renaming("__modf_209", "modf"); +__static_renaming("____modf_212", "__modf"); +__static_renaming("__expm1_214", "expm1"); +__static_renaming("____expm1_216", "__expm1"); +__static_renaming("__log1p_218", "log1p"); +__static_renaming("____log1p_220", "__log1p"); +__static_renaming("__logb_222", "logb"); +__static_renaming("____logb_224", "__logb"); +__static_renaming("__exp2_226", "exp2"); +__static_renaming("____exp2_228", "__exp2"); +__static_renaming("__log2_230", "log2"); +__static_renaming("____log2_232", "__log2"); +__static_renaming("__pow_235", "pow"); +__static_renaming("__pow_236", "pow"); +__static_renaming("____pow_239", "__pow"); +__static_renaming("__sqrt_241", "sqrt"); +__static_renaming("____sqrt_243", "__sqrt"); +__static_renaming("__hypot_246", "hypot"); +__static_renaming("____hypot_249", "__hypot"); +__static_renaming("__cbrt_251", "cbrt"); +__static_renaming("____cbrt_253", "__cbrt"); +__static_renaming("__ceil_255", "ceil"); +__static_renaming("____ceil_257", "__ceil"); +__static_renaming("__fabs_259", "fabs"); +__static_renaming("____fabs_261", "__fabs"); +__static_renaming("__floor_263", "floor"); +__static_renaming("____floor_265", "__floor"); +__static_renaming("__fmod_268", "fmod"); +__static_renaming("____fmod_271", "__fmod"); +__static_renaming("____isinf_273", "__isinf"); +__static_renaming("____finite_275", "__finite"); +__static_renaming("__isinf_277", "isinf"); +__static_renaming("__finite_279", "finite"); +__static_renaming("__drem_282", "drem"); +__static_renaming("____drem_285", "__drem"); +__static_renaming("__significand_287", "significand"); +__static_renaming("____significand_289", "__significand"); +__static_renaming("__copysign_292", "copysign"); +__static_renaming("__copysign_293", "copysign"); +__static_renaming("____copysign_296", "__copysign"); +__static_renaming("__nan_298", "nan"); +__static_renaming("____nan_300", "__nan"); +__static_renaming("____isnan_302", "__isnan"); +__static_renaming("__isnan_304", "isnan"); +__static_renaming("__j0_305", "j0"); +__static_renaming("____j0_306", "__j0"); +__static_renaming("__j1_307", "j1"); +__static_renaming("____j1_308", "__j1"); +__static_renaming("__jn_309", "jn"); +__static_renaming("____jn_310", "__jn"); +__static_renaming("__y0_311", "y0"); +__static_renaming("____y0_312", "__y0"); +__static_renaming("__y1_313", "y1"); +__static_renaming("____y1_314", "__y1"); +__static_renaming("__yn_315", "yn"); +__static_renaming("____yn_316", "__yn"); +__static_renaming("__erf_317", "erf"); +__static_renaming("__erf_318", "erf"); +__static_renaming("____erf_319", "__erf"); +__static_renaming("__erfc_320", "erfc"); +__static_renaming("____erfc_321", "__erfc"); +__static_renaming("__lgamma_322", "lgamma"); +__static_renaming("____lgamma_323", "__lgamma"); +__static_renaming("__tgamma_324", "tgamma"); +__static_renaming("____tgamma_325", "__tgamma"); +__static_renaming("__gamma_326", "gamma"); +__static_renaming("____gamma_327", "__gamma"); +__static_renaming("__lgamma_r_329", "lgamma_r"); +__static_renaming("____lgamma_r_331", "__lgamma_r"); +__static_renaming("__rint_333", "rint"); +__static_renaming("__rint_334", "rint"); +__static_renaming("____rint_336", "__rint"); +__static_renaming("__nextafter_339", "nextafter"); +__static_renaming("____nextafter_342", "__nextafter"); +__static_renaming("__nexttoward_345", "nexttoward"); +__static_renaming("____nexttoward_348", "__nexttoward"); +__static_renaming("__remainder_351", "remainder"); +__static_renaming("____remainder_354", "__remainder"); +__static_renaming("__scalbn_357", "scalbn"); +__static_renaming("____scalbn_360", "__scalbn"); +__static_renaming("__ilogb_362", "ilogb"); +__static_renaming("____ilogb_364", "__ilogb"); +__static_renaming("__scalbln_367", "scalbln"); +__static_renaming("____scalbln_370", "__scalbln"); +__static_renaming("__nearbyint_372", "nearbyint"); +__static_renaming("____nearbyint_374", "__nearbyint"); +__static_renaming("__round_376", "round"); +__static_renaming("____round_378", "__round"); +__static_renaming("__trunc_380", "trunc"); +__static_renaming("____trunc_382", "__trunc"); +__static_renaming("__remquo_386", "remquo"); +__static_renaming("____remquo_390", "__remquo"); +__static_renaming("__lrint_392", "lrint"); +__static_renaming("____lrint_394", "__lrint"); +__static_renaming("__llrint_396", "llrint"); +__static_renaming("____llrint_398", "__llrint"); +__static_renaming("__lround_400", "lround"); +__static_renaming("____lround_402", "__lround"); +__static_renaming("__llround_404", "llround"); +__static_renaming("____llround_406", "__llround"); +__static_renaming("__fdim_409", "fdim"); +__static_renaming("____fdim_412", "__fdim"); +__static_renaming("__fmax_415", "fmax"); +__static_renaming("____fmax_418", "__fmax"); +__static_renaming("__fmin_421", "fmin"); +__static_renaming("____fmin_424", "__fmin"); +__static_renaming("____fpclassify_426", "__fpclassify"); +__static_renaming("____signbit_428", "__signbit"); +__static_renaming("__fma_432", "fma"); +__static_renaming("____fma_436", "__fma"); +__static_renaming("__scalb_439", "scalb"); +__static_renaming("____scalb_442", "__scalb"); +__static_renaming("__acosf_444", "acosf"); +__static_renaming("__acosf_445", "acosf"); +__static_renaming("____acosf_447", "__acosf"); +__static_renaming("__asinf_449", "asinf"); +__static_renaming("____asinf_451", "__asinf"); +__static_renaming("__atanf_453", "atanf"); +__static_renaming("____atanf_455", "__atanf"); +__static_renaming("__atan2f_458", "atan2f"); +__static_renaming("____atan2f_461", "__atan2f"); +__static_renaming("__cosf_463", "cosf"); +__static_renaming("__cosf_464", "cosf"); +__static_renaming("____cosf_466", "__cosf"); +__static_renaming("__sinf_468", "sinf"); +__static_renaming("__sinf_469", "sinf"); +__static_renaming("____sinf_471", "__sinf"); +__static_renaming("__tanf_473", "tanf"); +__static_renaming("____tanf_475", "__tanf"); +__static_renaming("__coshf_477", "coshf"); +__static_renaming("____coshf_479", "__coshf"); +__static_renaming("__sinhf_481", "sinhf"); +__static_renaming("____sinhf_483", "__sinhf"); +__static_renaming("__tanhf_485", "tanhf"); +__static_renaming("____tanhf_487", "__tanhf"); +__static_renaming("__acoshf_489", "acoshf"); +__static_renaming("____acoshf_491", "__acoshf"); +__static_renaming("__asinhf_493", "asinhf"); +__static_renaming("____asinhf_495", "__asinhf"); +__static_renaming("__atanhf_497", "atanhf"); +__static_renaming("____atanhf_499", "__atanhf"); +__static_renaming("__expf_501", "expf"); +__static_renaming("__expf_502", "expf"); +__static_renaming("____expf_504", "__expf"); +__static_renaming("__frexpf_507", "frexpf"); +__static_renaming("____frexpf_510", "__frexpf"); +__static_renaming("__ldexpf_513", "ldexpf"); +__static_renaming("____ldexpf_516", "__ldexpf"); +__static_renaming("__logf_518", "logf"); +__static_renaming("__logf_519", "logf"); +__static_renaming("____logf_521", "__logf"); +__static_renaming("__log10f_523", "log10f"); +__static_renaming("____log10f_525", "__log10f"); +__static_renaming("__modff_528", "modff"); +__static_renaming("____modff_531", "__modff"); +__static_renaming("__expm1f_533", "expm1f"); +__static_renaming("____expm1f_535", "__expm1f"); +__static_renaming("__log1pf_537", "log1pf"); +__static_renaming("____log1pf_539", "__log1pf"); +__static_renaming("__logbf_541", "logbf"); +__static_renaming("____logbf_543", "__logbf"); +__static_renaming("__exp2f_545", "exp2f"); +__static_renaming("____exp2f_547", "__exp2f"); +__static_renaming("__log2f_549", "log2f"); +__static_renaming("____log2f_551", "__log2f"); +__static_renaming("__powf_554", "powf"); +__static_renaming("__powf_555", "powf"); +__static_renaming("____powf_558", "__powf"); +__static_renaming("__sqrtf_560", "sqrtf"); +__static_renaming("____sqrtf_562", "__sqrtf"); +__static_renaming("__hypotf_565", "hypotf"); +__static_renaming("____hypotf_568", "__hypotf"); +__static_renaming("__cbrtf_570", "cbrtf"); +__static_renaming("____cbrtf_572", "__cbrtf"); +__static_renaming("__ceilf_574", "ceilf"); +__static_renaming("____ceilf_576", "__ceilf"); +__static_renaming("__fabsf_578", "fabsf"); +__static_renaming("____fabsf_580", "__fabsf"); +__static_renaming("__floorf_582", "floorf"); +__static_renaming("____floorf_584", "__floorf"); +__static_renaming("__fmodf_587", "fmodf"); +__static_renaming("____fmodf_590", "__fmodf"); +__static_renaming("____isinff_592", "__isinff"); +__static_renaming("____finitef_594", "__finitef"); +__static_renaming("__isinff_596", "isinff"); +__static_renaming("__finitef_598", "finitef"); +__static_renaming("__dremf_601", "dremf"); +__static_renaming("____dremf_604", "__dremf"); +__static_renaming("__significandf_606", "significandf"); +__static_renaming("____significandf_608", "__significandf"); +__static_renaming("__copysignf_611", "copysignf"); +__static_renaming("__copysignf_612", "copysignf"); +__static_renaming("____copysignf_615", "__copysignf"); +__static_renaming("__nanf_617", "nanf"); +__static_renaming("____nanf_619", "__nanf"); +__static_renaming("____isnanf_621", "__isnanf"); +__static_renaming("__isnanf_623", "isnanf"); +__static_renaming("__j0f_624", "j0f"); +__static_renaming("____j0f_625", "__j0f"); +__static_renaming("__j1f_626", "j1f"); +__static_renaming("____j1f_627", "__j1f"); +__static_renaming("__jnf_628", "jnf"); +__static_renaming("____jnf_629", "__jnf"); +__static_renaming("__y0f_630", "y0f"); +__static_renaming("____y0f_631", "__y0f"); +__static_renaming("__y1f_632", "y1f"); +__static_renaming("____y1f_633", "__y1f"); +__static_renaming("__ynf_634", "ynf"); +__static_renaming("____ynf_635", "__ynf"); +__static_renaming("__erff_636", "erff"); +__static_renaming("__erff_637", "erff"); +__static_renaming("____erff_638", "__erff"); +__static_renaming("__erfcf_639", "erfcf"); +__static_renaming("____erfcf_640", "__erfcf"); +__static_renaming("__lgammaf_641", "lgammaf"); +__static_renaming("____lgammaf_642", "__lgammaf"); +__static_renaming("__tgammaf_643", "tgammaf"); +__static_renaming("____tgammaf_644", "__tgammaf"); +__static_renaming("__gammaf_645", "gammaf"); +__static_renaming("____gammaf_646", "__gammaf"); +__static_renaming("__lgammaf_r_648", "lgammaf_r"); +__static_renaming("____lgammaf_r_650", "__lgammaf_r"); +__static_renaming("__rintf_652", "rintf"); +__static_renaming("__rintf_653", "rintf"); +__static_renaming("____rintf_655", "__rintf"); +__static_renaming("__nextafterf_658", "nextafterf"); +__static_renaming("____nextafterf_661", "__nextafterf"); +__static_renaming("__nexttowardf_664", "nexttowardf"); +__static_renaming("____nexttowardf_667", "__nexttowardf"); +__static_renaming("__remainderf_670", "remainderf"); +__static_renaming("____remainderf_673", "__remainderf"); +__static_renaming("__scalbnf_676", "scalbnf"); +__static_renaming("____scalbnf_679", "__scalbnf"); +__static_renaming("__ilogbf_681", "ilogbf"); +__static_renaming("____ilogbf_683", "__ilogbf"); +__static_renaming("__scalblnf_686", "scalblnf"); +__static_renaming("____scalblnf_689", "__scalblnf"); +__static_renaming("__nearbyintf_691", "nearbyintf"); +__static_renaming("____nearbyintf_693", "__nearbyintf"); +__static_renaming("__roundf_695", "roundf"); +__static_renaming("____roundf_697", "__roundf"); +__static_renaming("__truncf_699", "truncf"); +__static_renaming("____truncf_701", "__truncf"); +__static_renaming("__remquof_705", "remquof"); +__static_renaming("____remquof_709", "__remquof"); +__static_renaming("__lrintf_711", "lrintf"); +__static_renaming("____lrintf_713", "__lrintf"); +__static_renaming("__llrintf_715", "llrintf"); +__static_renaming("____llrintf_717", "__llrintf"); +__static_renaming("__lroundf_719", "lroundf"); +__static_renaming("____lroundf_721", "__lroundf"); +__static_renaming("__llroundf_723", "llroundf"); +__static_renaming("____llroundf_725", "__llroundf"); +__static_renaming("__fdimf_728", "fdimf"); +__static_renaming("____fdimf_731", "__fdimf"); +__static_renaming("__fmaxf_734", "fmaxf"); +__static_renaming("____fmaxf_737", "__fmaxf"); +__static_renaming("__fminf_740", "fminf"); +__static_renaming("____fminf_743", "__fminf"); +__static_renaming("____fpclassifyf_745", "__fpclassifyf"); +__static_renaming("____signbitf_747", "__signbitf"); +__static_renaming("__fmaf_751", "fmaf"); +__static_renaming("____fmaf_755", "__fmaf"); +__static_renaming("__scalbf_758", "scalbf"); +__static_renaming("____scalbf_761", "__scalbf"); +__static_renaming("__acosl_763", "acosl"); +__static_renaming("__acosl_764", "acosl"); +__static_renaming("____acosl_766", "__acosl"); +__static_renaming("__asinl_768", "asinl"); +__static_renaming("____asinl_770", "__asinl"); +__static_renaming("__atanl_772", "atanl"); +__static_renaming("____atanl_774", "__atanl"); +__static_renaming("__atan2l_777", "atan2l"); +__static_renaming("____atan2l_780", "__atan2l"); +__static_renaming("__cosl_782", "cosl"); +__static_renaming("____cosl_784", "__cosl"); +__static_renaming("__sinl_786", "sinl"); +__static_renaming("____sinl_788", "__sinl"); +__static_renaming("__tanl_790", "tanl"); +__static_renaming("____tanl_792", "__tanl"); +__static_renaming("__coshl_794", "coshl"); +__static_renaming("____coshl_796", "__coshl"); +__static_renaming("__sinhl_798", "sinhl"); +__static_renaming("____sinhl_800", "__sinhl"); +__static_renaming("__tanhl_802", "tanhl"); +__static_renaming("____tanhl_804", "__tanhl"); +__static_renaming("__acoshl_806", "acoshl"); +__static_renaming("____acoshl_808", "__acoshl"); +__static_renaming("__asinhl_810", "asinhl"); +__static_renaming("____asinhl_812", "__asinhl"); +__static_renaming("__atanhl_814", "atanhl"); +__static_renaming("____atanhl_816", "__atanhl"); +__static_renaming("__expl_818", "expl"); +__static_renaming("____expl_820", "__expl"); +__static_renaming("__frexpl_823", "frexpl"); +__static_renaming("____frexpl_826", "__frexpl"); +__static_renaming("__ldexpl_829", "ldexpl"); +__static_renaming("____ldexpl_832", "__ldexpl"); +__static_renaming("__logl_834", "logl"); +__static_renaming("____logl_836", "__logl"); +__static_renaming("__log10l_838", "log10l"); +__static_renaming("____log10l_840", "__log10l"); +__static_renaming("__modfl_843", "modfl"); +__static_renaming("____modfl_846", "__modfl"); +__static_renaming("__expm1l_848", "expm1l"); +__static_renaming("____expm1l_850", "__expm1l"); +__static_renaming("__log1pl_852", "log1pl"); +__static_renaming("____log1pl_854", "__log1pl"); +__static_renaming("__logbl_856", "logbl"); +__static_renaming("____logbl_858", "__logbl"); +__static_renaming("__exp2l_860", "exp2l"); +__static_renaming("____exp2l_862", "__exp2l"); +__static_renaming("__log2l_864", "log2l"); +__static_renaming("____log2l_866", "__log2l"); +__static_renaming("__powl_869", "powl"); +__static_renaming("____powl_872", "__powl"); +__static_renaming("__sqrtl_874", "sqrtl"); +__static_renaming("____sqrtl_876", "__sqrtl"); +__static_renaming("__hypotl_879", "hypotl"); +__static_renaming("____hypotl_882", "__hypotl"); +__static_renaming("__cbrtl_884", "cbrtl"); +__static_renaming("____cbrtl_886", "__cbrtl"); +__static_renaming("__ceill_888", "ceill"); +__static_renaming("____ceill_890", "__ceill"); +__static_renaming("__fabsl_892", "fabsl"); +__static_renaming("____fabsl_894", "__fabsl"); +__static_renaming("__floorl_896", "floorl"); +__static_renaming("____floorl_898", "__floorl"); +__static_renaming("__fmodl_901", "fmodl"); +__static_renaming("____fmodl_904", "__fmodl"); +__static_renaming("____isinfl_906", "__isinfl"); +__static_renaming("____finitel_908", "__finitel"); +__static_renaming("__isinfl_910", "isinfl"); +__static_renaming("__finitel_912", "finitel"); +__static_renaming("__dreml_915", "dreml"); +__static_renaming("____dreml_918", "__dreml"); +__static_renaming("__significandl_920", "significandl"); +__static_renaming("____significandl_922", "__significandl"); +__static_renaming("__copysignl_925", "copysignl"); +__static_renaming("__copysignl_926", "copysignl"); +__static_renaming("____copysignl_929", "__copysignl"); +__static_renaming("__nanl_931", "nanl"); +__static_renaming("____nanl_933", "__nanl"); +__static_renaming("____isnanl_935", "__isnanl"); +__static_renaming("__isnanl_937", "isnanl"); +__static_renaming("__j0l_938", "j0l"); +__static_renaming("____j0l_939", "__j0l"); +__static_renaming("__j1l_940", "j1l"); +__static_renaming("____j1l_941", "__j1l"); +__static_renaming("__jnl_942", "jnl"); +__static_renaming("____jnl_943", "__jnl"); +__static_renaming("__y0l_944", "y0l"); +__static_renaming("____y0l_945", "__y0l"); +__static_renaming("__y1l_946", "y1l"); +__static_renaming("____y1l_947", "__y1l"); +__static_renaming("__ynl_948", "ynl"); +__static_renaming("____ynl_949", "__ynl"); +__static_renaming("__erfl_950", "erfl"); +__static_renaming("__erfl_951", "erfl"); +__static_renaming("____erfl_952", "__erfl"); +__static_renaming("__erfcl_953", "erfcl"); +__static_renaming("____erfcl_954", "__erfcl"); +__static_renaming("__lgammal_955", "lgammal"); +__static_renaming("____lgammal_956", "__lgammal"); +__static_renaming("__tgammal_957", "tgammal"); +__static_renaming("____tgammal_958", "__tgammal"); +__static_renaming("__gammal_959", "gammal"); +__static_renaming("____gammal_960", "__gammal"); +__static_renaming("__lgammal_r_962", "lgammal_r"); +__static_renaming("____lgammal_r_964", "__lgammal_r"); +__static_renaming("__rintl_966", "rintl"); +__static_renaming("__rintl_967", "rintl"); +__static_renaming("____rintl_969", "__rintl"); +__static_renaming("__nextafterl_972", "nextafterl"); +__static_renaming("____nextafterl_975", "__nextafterl"); +__static_renaming("__nexttowardl_978", "nexttowardl"); +__static_renaming("____nexttowardl_981", "__nexttowardl"); +__static_renaming("__remainderl_984", "remainderl"); +__static_renaming("____remainderl_987", "__remainderl"); +__static_renaming("__scalbnl_990", "scalbnl"); +__static_renaming("____scalbnl_993", "__scalbnl"); +__static_renaming("__ilogbl_995", "ilogbl"); +__static_renaming("____ilogbl_997", "__ilogbl"); +__static_renaming("__scalblnl_1000", "scalblnl"); +__static_renaming("____scalblnl_1003", "__scalblnl"); +__static_renaming("__nearbyintl_1005", "nearbyintl"); +__static_renaming("____nearbyintl_1007", "__nearbyintl"); +__static_renaming("__roundl_1009", "roundl"); +__static_renaming("____roundl_1011", "__roundl"); +__static_renaming("__truncl_1013", "truncl"); +__static_renaming("____truncl_1015", "__truncl"); +__static_renaming("__remquol_1019", "remquol"); +__static_renaming("____remquol_1023", "__remquol"); +__static_renaming("__lrintl_1025", "lrintl"); +__static_renaming("____lrintl_1027", "__lrintl"); +__static_renaming("__llrintl_1029", "llrintl"); +__static_renaming("____llrintl_1031", "__llrintl"); +__static_renaming("__lroundl_1033", "lroundl"); +__static_renaming("____lroundl_1035", "__lroundl"); +__static_renaming("__llroundl_1037", "llroundl"); +__static_renaming("____llroundl_1039", "__llroundl"); +__static_renaming("__fdiml_1042", "fdiml"); +__static_renaming("____fdiml_1045", "__fdiml"); +__static_renaming("__fmaxl_1048", "fmaxl"); +__static_renaming("____fmaxl_1051", "__fmaxl"); +__static_renaming("__fminl_1054", "fminl"); +__static_renaming("____fminl_1057", "__fminl"); +__static_renaming("____fpclassifyl_1059", "__fpclassifyl"); +__static_renaming("____signbitl_1061", "__signbitl"); +__static_renaming("__fmal_1065", "fmal"); +__static_renaming("____fmal_1069", "__fmal"); +__static_renaming("__scalbl_1072", "scalbl"); +__static_renaming("____scalbl_1075", "__scalbl"); +__static_renaming("__signgam_1076", "signgam"); +__static_renaming("___LIB_VERSION_TYPE_1092", "_LIB_VERSION_TYPE"); +__static_renaming("___LIB_VERSION_1093", "_LIB_VERSION"); +__static_renaming("__matherr_1101", "matherr"); +__static_renaming("___delay_us_1103", "_delay_us"); +__static_renaming("___delay_ms_1105", "_delay_ms"); +__static_renaming("____tmp_1107", "__tmp"); +__static_renaming("____ticks_dc_1108", "__ticks_dc"); +__static_renaming("____builtin_avr_delay_cycles_1109", "__builtin_avr_delay_cycles"); +__static_renaming("____ticks_1110", "__ticks"); +__static_renaming("___delay_ms_1111", "_delay_ms"); +__static_renaming("____tmp_1147", "__tmp"); +__static_renaming("____ticks_dc_1148", "__ticks_dc"); +__static_renaming("____builtin_avr_delay_cycles_1149", "__builtin_avr_delay_cycles"); +__static_renaming("____ticks_1150", "__ticks"); +__static_renaming("____tmp2_1151", "__tmp2"); +__static_renaming("____ticks_1152", "__ticks"); +__static_renaming("___delay_us_1153", "_delay_us"); +__static_renaming("__ptrdiff_t_1191", "ptrdiff_t"); +__static_renaming("__size_t_1192", "size_t"); +__static_renaming("____u_char_1193", "__u_char"); +__static_renaming("____u_short_1194", "__u_short"); +__static_renaming("____u_int_1195", "__u_int"); +__static_renaming("____u_long_1196", "__u_long"); +__static_renaming("____int8_t_1197", "__int8_t"); +__static_renaming("____uint8_t_1198", "__uint8_t"); +__static_renaming("____int16_t_1199", "__int16_t"); +__static_renaming("____uint16_t_1200", "__uint16_t"); +__static_renaming("____int32_t_1201", "__int32_t"); +__static_renaming("____uint32_t_1202", "__uint32_t"); +__static_renaming("____int64_t_1203", "__int64_t"); +__static_renaming("____uint64_t_1204", "__uint64_t"); +__static_renaming("____quad_t_1205", "__quad_t"); +__static_renaming("____u_quad_t_1206", "__u_quad_t"); +__static_renaming("____dev_t_1207", "__dev_t"); +__static_renaming("____uid_t_1208", "__uid_t"); +__static_renaming("____gid_t_1209", "__gid_t"); +__static_renaming("____ino_t_1210", "__ino_t"); +__static_renaming("____ino64_t_1211", "__ino64_t"); +__static_renaming("____mode_t_1212", "__mode_t"); +__static_renaming("____nlink_t_1213", "__nlink_t"); +__static_renaming("____off_t_1214", "__off_t"); +__static_renaming("____off64_t_1215", "__off64_t"); +__static_renaming("____pid_t_1216", "__pid_t"); +__static_renaming("____fsid_t_1220", "__fsid_t"); +__static_renaming("____clock_t_1221", "__clock_t"); +__static_renaming("____rlim_t_1222", "__rlim_t"); +__static_renaming("____rlim64_t_1223", "__rlim64_t"); +__static_renaming("____id_t_1224", "__id_t"); +__static_renaming("____time_t_1225", "__time_t"); +__static_renaming("____useconds_t_1226", "__useconds_t"); +__static_renaming("____suseconds_t_1227", "__suseconds_t"); +__static_renaming("____daddr_t_1228", "__daddr_t"); +__static_renaming("____key_t_1229", "__key_t"); +__static_renaming("____clockid_t_1230", "__clockid_t"); +__static_renaming("____timer_t_1231", "__timer_t"); +__static_renaming("____blksize_t_1232", "__blksize_t"); +__static_renaming("____blkcnt_t_1233", "__blkcnt_t"); +__static_renaming("____blkcnt64_t_1234", "__blkcnt64_t"); +__static_renaming("____fsblkcnt_t_1235", "__fsblkcnt_t"); +__static_renaming("____fsblkcnt64_t_1236", "__fsblkcnt64_t"); +__static_renaming("____fsfilcnt_t_1237", "__fsfilcnt_t"); +__static_renaming("____fsfilcnt64_t_1238", "__fsfilcnt64_t"); +__static_renaming("____fsword_t_1239", "__fsword_t"); +__static_renaming("____ssize_t_1240", "__ssize_t"); +__static_renaming("____syscall_slong_t_1241", "__syscall_slong_t"); +__static_renaming("____syscall_ulong_t_1242", "__syscall_ulong_t"); +__static_renaming("____loff_t_1243", "__loff_t"); +__static_renaming("____qaddr_t_1245", "__qaddr_t"); +__static_renaming("____caddr_t_1246", "__caddr_t"); +__static_renaming("____intptr_t_1247", "__intptr_t"); +__static_renaming("____socklen_t_1248", "__socklen_t"); +__static_renaming("__FILE_1250", "FILE"); +__static_renaming("____FILE_1251", "__FILE"); +__static_renaming("____mbstate_t_1260", "__mbstate_t"); +__static_renaming("___G_fpos_t_1268", "_G_fpos_t"); +__static_renaming("___G_fpos64_t_1276", "_G_fpos64_t"); +__static_renaming("____gnuc_va_list_1277", "__gnuc_va_list"); +__static_renaming("___IO_lock_t_1279", "_IO_lock_t"); +__static_renaming("___IO_FILE_1362", "_IO_FILE"); +__static_renaming("___IO_FILE_1363", "_IO_FILE"); +__static_renaming("___IO_2_1_stdin__1366", "_IO_2_1_stdin_"); +__static_renaming("___IO_2_1_stdout__1367", "_IO_2_1_stdout_"); +__static_renaming("___IO_2_1_stderr__1368", "_IO_2_1_stderr_"); +__static_renaming("____io_read_fn_1372", "__io_read_fn"); +__static_renaming("____io_write_fn_1377", "__io_write_fn"); +__static_renaming("____io_seek_fn_1383", "__io_seek_fn"); +__static_renaming("____io_close_fn_1386", "__io_close_fn"); +__static_renaming("____underflow_1387", "__underflow"); +__static_renaming("____underflow_1388", "__underflow"); +__static_renaming("____uflow_1390", "__uflow"); +__static_renaming("____uflow_1391", "__uflow"); +__static_renaming("____overflow_1393", "__overflow"); +__static_renaming("____overflow_1394", "__overflow"); +__static_renaming("___IO_getc_1399", "_IO_getc"); +__static_renaming("___IO_getc_1400", "_IO_getc"); +__static_renaming("___IO_putc_1406", "_IO_putc"); +__static_renaming("___IO_putc_1407", "_IO_putc"); +__static_renaming("___IO_feof_1412", "_IO_feof"); +__static_renaming("___IO_feof_1413", "_IO_feof"); +__static_renaming("___IO_ferror_1418", "_IO_ferror"); +__static_renaming("___IO_ferror_1419", "_IO_ferror"); +__static_renaming("___IO_peekc_locked_1424", "_IO_peekc_locked"); +__static_renaming("___IO_peekc_locked_1425", "_IO_peekc_locked"); +__static_renaming("___IO_flockfile_1427", "_IO_flockfile"); +__static_renaming("___IO_flockfile_1428", "_IO_flockfile"); +__static_renaming("___IO_funlockfile_1430", "_IO_funlockfile"); +__static_renaming("___IO_funlockfile_1431", "_IO_funlockfile"); +__static_renaming("___IO_ftrylockfile_1433", "_IO_ftrylockfile"); +__static_renaming("___IO_ftrylockfile_1434", "_IO_ftrylockfile"); +__static_renaming("___IO_vfscanf_1436", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_1438", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_1442", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_1443", "_IO_vfscanf"); +__static_renaming("___IO_vfprintf_1445", "_IO_vfprintf"); +__static_renaming("___IO_vfprintf_1447", "_IO_vfprintf"); +__static_renaming("___IO_vfprintf_1451", "_IO_vfprintf"); +__static_renaming("___IO_padn_1452", "_IO_padn"); +__static_renaming("___IO_padn_1453", "_IO_padn"); +__static_renaming("___IO_sgetn_1456", "_IO_sgetn"); +__static_renaming("___IO_sgetn_1457", "_IO_sgetn"); +__static_renaming("___IO_seekoff_1459", "_IO_seekoff"); +__static_renaming("___IO_seekoff_1460", "_IO_seekoff"); +__static_renaming("___IO_seekpos_1463", "_IO_seekpos"); +__static_renaming("___IO_seekpos_1464", "_IO_seekpos"); +__static_renaming("___IO_free_backup_area_1467", "_IO_free_backup_area"); +__static_renaming("___IO_free_backup_area_1468", "_IO_free_backup_area"); +__static_renaming("__va_list_1470", "va_list"); +__static_renaming("__off_t_1472", "off_t"); +__static_renaming("__off_t_1474", "off_t"); +__static_renaming("__ssize_t_1476", "ssize_t"); +__static_renaming("__fpos_t_1478", "fpos_t"); +__static_renaming("__fpos_t_1480", "fpos_t"); +__static_renaming("__stdin_1482", "stdin"); +__static_renaming("__stdin_1483", "stdin"); +__static_renaming("__stdout_1485", "stdout"); +__static_renaming("__stdout_1486", "stdout"); +__static_renaming("__stderr_1488", "stderr"); +__static_renaming("__stderr_1489", "stderr"); +__static_renaming("__remove_1492", "remove"); +__static_renaming("__rename_1495", "rename"); +__static_renaming("__renameat_1500", "renameat"); +__static_renaming("__tmpfile_1501", "tmpfile"); +__static_renaming("__tmpfile_1503", "tmpfile"); +__static_renaming("__tmpfile_1505", "tmpfile"); +__static_renaming("__tmpfile_1507", "tmpfile"); +__static_renaming("__tmpnam_1510", "tmpnam"); +__static_renaming("__tmpnam_1511", "tmpnam"); +__static_renaming("__tmpnam_r_1513", "tmpnam_r"); +__static_renaming("__tmpnam_r_1514", "tmpnam_r"); +__static_renaming("__tempnam_1517", "tempnam"); +__static_renaming("__tempnam_1518", "tempnam"); +__static_renaming("__fclose_1521", "fclose"); +__static_renaming("__fclose_1523", "fclose"); +__static_renaming("__fflush_1527", "fflush"); +__static_renaming("__fflush_unlocked_1531", "fflush_unlocked"); +__static_renaming("__fopen_1535", "fopen"); +__static_renaming("__fopen_1537", "fopen"); +__static_renaming("__fopen_1545", "fopen"); +__static_renaming("__fopen_1547", "fopen"); +__static_renaming("__freopen_1553", "freopen"); +__static_renaming("__freopen_1555", "freopen"); +__static_renaming("__freopen_1557", "freopen"); +__static_renaming("__freopen_1559", "freopen"); +__static_renaming("__fdopen_1563", "fdopen"); +__static_renaming("__fdopen_1565", "fdopen"); +__static_renaming("__fmemopen_1570", "fmemopen"); +__static_renaming("__fmemopen_1572", "fmemopen"); +__static_renaming("__open_memstream_1576", "open_memstream"); +__static_renaming("__open_memstream_1578", "open_memstream"); +__static_renaming("__setbuf_1583", "setbuf"); +__static_renaming("__setbuf_1585", "setbuf"); +__static_renaming("__setvbuf_1592", "setvbuf"); +__static_renaming("__setbuffer_1598", "setbuffer"); +__static_renaming("__setlinebuf_1602", "setlinebuf"); +__static_renaming("__fprintf_1607", "fprintf"); +__static_renaming("__fprintf_1609", "fprintf"); +__static_renaming("__printf_1612", "printf"); +__static_renaming("__sprintf_1615", "sprintf"); +__static_renaming("__vfprintf_1621", "vfprintf"); +__static_renaming("__vprintf_1628", "vprintf"); +__static_renaming("__vsprintf_1634", "vsprintf"); +__static_renaming("__snprintf_1639", "snprintf"); +__static_renaming("__vsnprintf_1645", "vsnprintf"); +__static_renaming("__vdprintf_1651", "vdprintf"); +__static_renaming("__dprintf_1655", "dprintf"); +__static_renaming("__fscanf_1659", "fscanf"); +__static_renaming("__fscanf_1661", "fscanf"); +__static_renaming("__fscanf_1663", "fscanf"); +__static_renaming("__fscanf_1665", "fscanf"); +__static_renaming("__scanf_1668", "scanf"); +__static_renaming("__scanf_1669", "scanf"); +__static_renaming("__sscanf_1672", "sscanf"); +__static_renaming("__vfscanf_1700", "vfscanf"); +__static_renaming("__vfscanf_1704", "vfscanf"); +__static_renaming("__vscanf_1711", "vscanf"); +__static_renaming("__vscanf_1713", "vscanf"); +__static_renaming("__vsscanf_1719", "vsscanf"); +__static_renaming("__fgetc_1754", "fgetc"); +__static_renaming("__getc_1758", "getc"); +__static_renaming("__getchar_1760", "getchar"); +__static_renaming("__getc_unlocked_1763", "getc_unlocked"); +__static_renaming("__getchar_unlocked_1765", "getchar_unlocked"); +__static_renaming("__fgetc_unlocked_1768", "fgetc_unlocked"); +__static_renaming("__fputc_1773", "fputc"); +__static_renaming("__fputc_1775", "fputc"); +__static_renaming("__putc_1780", "putc"); +__static_renaming("__putchar_1783", "putchar"); +__static_renaming("__fputc_unlocked_1787", "fputc_unlocked"); +__static_renaming("__putc_unlocked_1792", "putc_unlocked"); +__static_renaming("__putchar_unlocked_1795", "putchar_unlocked"); +__static_renaming("__getw_1798", "getw"); +__static_renaming("__putw_1803", "putw"); +__static_renaming("__fgets_1809", "fgets"); +__static_renaming("__fgets_1811", "fgets"); +__static_renaming("__fgets_1813", "fgets"); +__static_renaming("__fgets_1815", "fgets"); +__static_renaming("____getdelim_1822", "__getdelim"); +__static_renaming("____getdelim_1826", "__getdelim"); +__static_renaming("__getdelim_1835", "getdelim"); +__static_renaming("__getdelim_1839", "getdelim"); +__static_renaming("__getline_1847", "getline"); +__static_renaming("__getline_1851", "getline"); +__static_renaming("__fputs_1858", "fputs"); +__static_renaming("__fputs_1860", "fputs"); +__static_renaming("__puts_1863", "puts"); +__static_renaming("__ungetc_1867", "ungetc"); +__static_renaming("__fseek_1905", "fseek"); +__static_renaming("__fseek_1907", "fseek"); +__static_renaming("__ftell_1911", "ftell"); +__static_renaming("__ftell_1913", "ftell"); +__static_renaming("__rewind_1917", "rewind"); +__static_renaming("__fseeko_1924", "fseeko"); +__static_renaming("__fseeko_1935", "fseeko"); +__static_renaming("__ftello_1941", "ftello"); +__static_renaming("__ftello_1945", "ftello"); +__static_renaming("__ftello_1949", "ftello"); +__static_renaming("__fgetpos_1957", "fgetpos"); +__static_renaming("__fgetpos_1969", "fgetpos"); +__static_renaming("__fsetpos_1977", "fsetpos"); +__static_renaming("__fsetpos_1981", "fsetpos"); +__static_renaming("__clearerr_1987", "clearerr"); +__static_renaming("__feof_1991", "feof"); +__static_renaming("__feof_1993", "feof"); +__static_renaming("__ferror_1997", "ferror"); +__static_renaming("__ferror_1999", "ferror"); +__static_renaming("__clearerr_unlocked_2003", "clearerr_unlocked"); +__static_renaming("__feof_unlocked_2007", "feof_unlocked"); +__static_renaming("__feof_unlocked_2009", "feof_unlocked"); +__static_renaming("__ferror_unlocked_2013", "ferror_unlocked"); +__static_renaming("__ferror_unlocked_2015", "ferror_unlocked"); +__static_renaming("__perror_2018", "perror"); +__static_renaming("__perror_2019", "perror"); +__static_renaming("__sys_nerr_2020", "sys_nerr"); +__static_renaming("__sys_errlist_2021", "sys_errlist"); +__static_renaming("__fileno_2024", "fileno"); +__static_renaming("__fileno_2026", "fileno"); +__static_renaming("__fileno_unlocked_2030", "fileno_unlocked"); +__static_renaming("__fileno_unlocked_2032", "fileno_unlocked"); +__static_renaming("__popen_2036", "popen"); +__static_renaming("__popen_2038", "popen"); +__static_renaming("__pclose_2042", "pclose"); +__static_renaming("__ctermid_2045", "ctermid"); +__static_renaming("__flockfile_2048", "flockfile"); +__static_renaming("__ftrylockfile_2052", "ftrylockfile"); +__static_renaming("__ftrylockfile_2054", "ftrylockfile"); +__static_renaming("__funlockfile_2058", "funlockfile"); +__static_renaming("____sprintf_chk_2090", "__sprintf_chk"); +__static_renaming("____vsprintf_chk_2097", "__vsprintf_chk"); +__static_renaming("____snprintf_chk_2111", "__snprintf_chk"); +__static_renaming("____vsnprintf_chk_2119", "__vsnprintf_chk"); +__static_renaming("____fprintf_chk_2134", "__fprintf_chk"); +__static_renaming("____printf_chk_2138", "__printf_chk"); +__static_renaming("____vfprintf_chk_2145", "__vfprintf_chk"); +__static_renaming("____vprintf_chk_2153", "__vprintf_chk"); +__static_renaming("____dprintf_chk_2175", "__dprintf_chk"); +__static_renaming("____vdprintf_chk_2181", "__vdprintf_chk"); +__static_renaming("____fgets_chk_2195", "__fgets_chk"); +__static_renaming("____fgets_chk_2197", "__fgets_chk"); +__static_renaming("____fgets_chk_2199", "__fgets_chk"); +__static_renaming("____fgets_alias_2205", "__fgets_alias"); +__static_renaming("____fgets_chk_warn_2212", "__fgets_chk_warn"); +__static_renaming("____cnt_2278", "__cnt"); +__static_renaming("____cptr_2279", "__cptr"); +__static_renaming("__enable_x_2283", "enable_x"); +__static_renaming("__enable_x_2284", "enable_x"); +__static_renaming("__enable_x_2285", "enable_x"); +__static_renaming("__enable_y_2289", "enable_y"); +__static_renaming("__enable_z_2292", "enable_z"); +__static_renaming("__old_pin_2295", "old_pin"); +__static_renaming("__old_pin_2296", "old_pin"); +__static_renaming("__old_pin_2297", "old_pin"); +__static_renaming("__babystep_2298", "babystep"); +__static_renaming("__main_2318", "main"); +__static_renaming("__main_2319", "main"); + +__static_condition_renaming("__static_condition_default_55", "(defined ____gwchar_t_defined)"); +__static_condition_renaming("__static_condition_default_87", "!(defined _FORTIFY_SOURCE) && (defined ____gwchar_t_defined) && (defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined ____gwchar_t_defined) && (defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined ____gwchar_t_defined) && (defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined ____gwchar_t_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_89", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined ____gwchar_t_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_95", "(defined ____gwchar_t_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_103", "!(defined _FORTIFY_SOURCE) && (defined ____gwchar_t_defined) && (defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined ____gwchar_t_defined) && (defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined ____gwchar_t_defined) && (defined __USE_EXTERN_INLINES) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined ____gwchar_t_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_105", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined ____gwchar_t_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_111", "(defined ____gwchar_t_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_118", "!(defined __DOXYGEN__)"); +__static_condition_renaming("__static_condition_default_119", "(defined __DOXYGEN__)"); +__static_condition_renaming("__static_condition_default_122", "(defined __DOXYGEN__)"); +__static_condition_renaming("__static_condition_default_1112", "(defined __DOXYGEN__)"); +__static_condition_renaming("__static_condition_default_1113", "(defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES"); +__static_condition_renaming("__static_condition_default_1114", "(defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES"); +__static_condition_renaming("__static_condition_default_1115", "(defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES && !(defined __DELAY_ROUND_DOWN__) && (defined __DELAY_ROUND_CLOSEST__)"); +__static_condition_renaming("__static_condition_default_1116", "(defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES && (defined __DELAY_ROUND_DOWN__)"); +__static_condition_renaming("__static_condition_default_1117", "(defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES && !(defined __DELAY_ROUND_DOWN__) && !(defined __DELAY_ROUND_CLOSEST__)"); +__static_condition_renaming("__static_condition_default_1118", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) && !(defined F_CPU) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1119", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) && (defined F_CPU) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1120", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1121", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1122", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1123", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1124", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) && !(defined F_CPU) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1125", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) && (defined F_CPU) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1126", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1127", "(defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES"); +__static_condition_renaming("__static_condition_default_1128", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1129", "!(defined __DOXYGEN__)"); +__static_condition_renaming("__static_condition_default_1130", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES"); +__static_condition_renaming("__static_condition_default_1131", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES"); +__static_condition_renaming("__static_condition_default_1132", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !(defined __DELAY_ROUND_DOWN__) && (defined __DELAY_ROUND_CLOSEST__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES && !(defined __DELAY_ROUND_DOWN__) && (defined __DELAY_ROUND_CLOSEST__)"); +__static_condition_renaming("__static_condition_default_1133", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && (defined __DELAY_ROUND_DOWN__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES && (defined __DELAY_ROUND_DOWN__)"); +__static_condition_renaming("__static_condition_default_1134", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !(defined __DELAY_ROUND_DOWN__) && !(defined __DELAY_ROUND_CLOSEST__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES && !(defined __DELAY_ROUND_DOWN__) && !(defined __DELAY_ROUND_CLOSEST__)"); +__static_condition_renaming("__static_condition_default_1135", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) && !(defined F_CPU) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) && !(defined F_CPU) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1136", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) && (defined F_CPU) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) && (defined F_CPU) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1137", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1138", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1139", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1140", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1141", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) && !(defined F_CPU) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) && !(defined F_CPU) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1142", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) && (defined F_CPU) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) && (defined F_CPU) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1143", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1144", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES"); +__static_condition_renaming("__static_condition_default_1145", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1154", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES"); +__static_condition_renaming("__static_condition_default_1155", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES"); +__static_condition_renaming("__static_condition_default_1156", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !(defined __DELAY_ROUND_DOWN__) && (defined __DELAY_ROUND_CLOSEST__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES && !(defined __DELAY_ROUND_DOWN__) && (defined __DELAY_ROUND_CLOSEST__)"); +__static_condition_renaming("__static_condition_default_1157", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && (defined __DELAY_ROUND_DOWN__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES && (defined __DELAY_ROUND_DOWN__)"); +__static_condition_renaming("__static_condition_default_1158", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !(defined __DELAY_ROUND_DOWN__) && !(defined __DELAY_ROUND_CLOSEST__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES && !(defined __DELAY_ROUND_DOWN__) && !(defined __DELAY_ROUND_CLOSEST__)"); +__static_condition_renaming("__static_condition_default_1159", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) && !(defined F_CPU) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) && !(defined F_CPU) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1160", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) && (defined F_CPU) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) && (defined F_CPU) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1161", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) && !(defined F_CPU) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) && !(defined F_CPU) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1162", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) && (defined F_CPU) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) && (defined F_CPU) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1163", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1164", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1165", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1166", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1167", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1168", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1169", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1170", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES"); +__static_condition_renaming("__static_condition_default_1171", "!(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && !(defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && !(defined __OPTIMIZE__) || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || !(defined __DOXYGEN__) && (defined __HAS_DELAY_CYCLES) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1172", "(defined __DOXYGEN__)"); +__static_condition_renaming("__static_condition_default_1173", "(defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES"); +__static_condition_renaming("__static_condition_default_1174", "(defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES"); +__static_condition_renaming("__static_condition_default_1175", "(defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES && !(defined __DELAY_ROUND_DOWN__) && (defined __DELAY_ROUND_CLOSEST__)"); +__static_condition_renaming("__static_condition_default_1176", "(defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES && (defined __DELAY_ROUND_DOWN__)"); +__static_condition_renaming("__static_condition_default_1177", "(defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES && !(defined __DELAY_ROUND_DOWN__) && !(defined __DELAY_ROUND_CLOSEST__)"); +__static_condition_renaming("__static_condition_default_1178", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) && !(defined F_CPU) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1179", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) && (defined F_CPU) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1180", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) && !(defined F_CPU) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1181", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) && (defined F_CPU) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined F_CPU) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined F_CPU) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1182", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1183", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1184", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1185", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1186", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1187", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1188", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1189", "(defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && __HAS_DELAY_CYCLES"); +__static_condition_renaming("__static_condition_default_1190", "(defined __DOXYGEN__) && !(defined __OPTIMIZE__) || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && !(defined __DELAY_BACKWARD_COMPATIBLE__) && !__HAS_DELAY_CYCLES || (defined __DOXYGEN__) && (defined __OPTIMIZE__) && (defined __DELAY_BACKWARD_COMPATIBLE__)"); +__static_condition_renaming("__static_condition_default_1244", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1267", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1275", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1314", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_1360", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_1361", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_1364", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1373", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1378", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1384", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1389", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1392", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1395", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1401", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1408", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1414", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1420", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1426", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1429", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1432", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1435", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1437", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_1439", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_1440", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_1441", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_1444", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_1446", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_1448", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_1449", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_1450", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_1454", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_1455", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1458", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1461", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_1462", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1465", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_1466", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1469", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1471", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); +__static_condition_renaming("__static_condition_default_1473", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_1475", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_1477", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_1479", "!(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1481", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1484", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1487", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1490", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1502", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1504", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1506", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1508", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1522", "(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1524", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1528", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1532", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1536", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1538", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1546", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1548", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1554", "!(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1556", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1558", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1560", "!(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1564", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1566", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1571", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1573", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1577", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1579", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1584", "(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1586", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1593", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1599", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1603", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1608", "(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1610", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1622", "!(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1623", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_1624", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1629", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1635", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1646", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1652", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1660", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1662", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1664", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1666", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1677", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1679", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1680", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1682", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1684", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1685", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1688", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_1690", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_1694", "!(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_1701", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1702", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_1703", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1705", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1706", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_1707", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1712", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1714", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1720", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1727", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_1728", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1729", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_1730", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1732", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_1733", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1734", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_1735", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1740", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_1741", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1743", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_1744", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1750", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_1751", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1755", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1759", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1764", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1769", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1774", "(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1776", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1781", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1788", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1793", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1799", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1804", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1810", "(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1812", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1814", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1816", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1823", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1824", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1825", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1827", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1828", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1829", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1836", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1837", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1838", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1840", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1841", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1842", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1848", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1849", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1850", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1852", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1853", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1854", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1859", "(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1861", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1868", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1874", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1875", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1876", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1877", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1883", "!(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1884", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1890", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1891", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1892", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1893", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1899", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1900", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1906", "(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1908", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1912", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1914", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1918", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1925", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1926", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1927", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1936", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1937", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1938", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1942", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1943", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1944", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1946", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1947", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1948", "!(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1950", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1951", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1952", "!(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1958", "!(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1959", "!(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_1960", "!(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1970", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1971", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_1972", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1978", "!(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1979", "!(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_1980", "!(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined _FILE_OFFSET_BITS) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1982", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1983", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_1984", "(defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1988", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1992", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1994", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1998", "!(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2000", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2004", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2008", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2010", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2014", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2016", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2025", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2027", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2031", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2033", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2037", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2039", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2043", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2049", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2053", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined __FILE_defined) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2055", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2059", "!(defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2063", "!(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2066", "!(defined __STRICT_ANSI__) && (defined __USE_EXTERN_INLINES) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2069", "!(defined __STRICT_ANSI__) && (defined __USE_EXTERN_INLINES) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2074", "!(defined __STRICT_ANSI__) && (defined __USE_EXTERN_INLINES) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2078", "!(defined __STRICT_ANSI__) && (defined __USE_EXTERN_INLINES) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2082", "!(defined __STRICT_ANSI__) && (defined __USE_EXTERN_INLINES) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2085", "!(defined __STRICT_ANSI__) && (defined __USE_EXTERN_INLINES) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2098", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2105", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2120", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2129", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2135", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2146", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2147", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_2148", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2154", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2158", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2163", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2169", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2170", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_2171", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2182", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2189", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_2196", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2198", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2200", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2206", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2213", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2218", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2219", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2226", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2227", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2233", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2234", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2241", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2242", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2248", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2249", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2256", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2257", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2263", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2264", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2271", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2272", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2280", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_2281", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2282", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_2286", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) || (defined __STRICT_ANSI__) && !(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_2287", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_2288", "(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_2290", "!(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_2291", "(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_2299", "(defined BABYSTEPPING)"); +__static_condition_renaming("__static_condition_default_2300", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined BABYSTEPPING) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined BABYSTEPPING) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined BABYSTEPPING) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined BABYSTEPPING) || (defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined BABYSTEPPING)"); +__static_condition_renaming("__static_condition_default_2301", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined BABYSTEPPING)"); +__static_condition_renaming("__static_condition_default_2302", "(defined __need___FILE) && (defined BABYSTEPPING)"); +__static_condition_renaming("__static_condition_default_2303", "!(defined __DOXYGEN__) && (defined BABYSTEPPING)"); +__static_condition_renaming("__static_condition_default_2304", "(defined __DOXYGEN__) && (defined BABYSTEPPING)"); +__static_condition_renaming("__static_condition_default_2305", "!(defined __DOXYGEN__) && (defined BABYSTEPPING)"); +__static_condition_renaming("__static_condition_default_2306", "(defined __DOXYGEN__) && (defined BABYSTEPPING)"); +__static_condition_renaming("__static_condition_default_2307", "(defined BABYSTEPPING) && !(defined DELTA)"); +__static_condition_renaming("__static_condition_default_2308", "!(defined __DOXYGEN__) && (defined BABYSTEPPING) && !(defined DELTA)"); +__static_condition_renaming("__static_condition_default_2309", "(defined __DOXYGEN__) && (defined BABYSTEPPING) && !(defined DELTA)"); +__static_condition_renaming("__static_condition_default_2310", "!(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __need___FILE) && (defined BABYSTEPPING) && (defined DELTA) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __need___FILE) && (defined BABYSTEPPING) && (defined DELTA) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __need___FILE) && (defined BABYSTEPPING) && (defined DELTA) || !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined BABYSTEPPING) && (defined DELTA) || (defined __STRICT_ANSI__) && !(defined __need___FILE) && (defined BABYSTEPPING) && (defined DELTA)"); +__static_condition_renaming("__static_condition_default_2311", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __need___FILE) && (defined BABYSTEPPING) && (defined DELTA)"); +__static_condition_renaming("__static_condition_default_2312", "(defined __need___FILE) && (defined BABYSTEPPING) && (defined DELTA)"); +__static_condition_renaming("__static_condition_default_2313", "(defined BABYSTEPPING) && (defined DELTA)"); +__static_condition_renaming("__static_condition_default_2314", "(defined BABYSTEPPING) && (defined DELTA)"); +__static_condition_renaming("__static_condition_default_2315", "(defined BABYSTEPPING) && !(defined DELTA)"); +__static_condition_renaming("__static_condition_default_2316", "!(defined __DOXYGEN__) && (defined BABYSTEPPING) && (defined DELTA)"); +__static_condition_renaming("__static_condition_default_2317", "(defined __DOXYGEN__) && (defined BABYSTEPPING) && (defined DELTA)"); +__static_condition_renaming("__static_condition_default_2320", "!(defined BABYSTEPPING)"); +__static_condition_renaming("__static_condition_default_2321", "(defined BABYSTEPPING)"); +__static_condition_renaming("__static_condition_default_2322", "!(defined __FAST_MATH__) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __FAST_MATH__) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) || (defined __FAST_MATH__) && !(defined _OPENMP) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined __FAST_MATH__) && !(defined _OPENMP) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) || (defined __FAST_MATH__) && (defined _OPENMP) && !(_OPENMP >= 201307) && !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || (defined __FAST_MATH__) && (defined _OPENMP) && !(_OPENMP >= 201307) && !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) || (defined __FAST_MATH__) && (defined _OPENMP) && (_OPENMP >= 201307)"); + +if (__static_condition_default_2322) { __static_parse_error("Unable to parse"); } }; -typedef long int __ptrdiff_t_0;// L143:L324 -typedef long unsigned int __size_t_1;// L177:L209 -typedef unsigned char ____u_char_2;// L30 -typedef unsigned short int ____u_short_3;// L31 -typedef unsigned int ____u_int_4;// L32 -typedef unsigned long int ____u_long_5;// L33 -typedef signed char ____int8_t_6;// L36 -typedef unsigned char ____uint8_t_7;// L37 -typedef signed short int ____int16_t_8;// L38 -typedef unsigned short int ____uint16_t_9;// L39 -typedef signed int ____int32_t_10;// L40 -typedef unsigned int ____uint32_t_11;// L41 -typedef signed long int ____int64_t_12;// L43 -typedef unsigned long int ____uint64_t_13;// L44 -typedef long int ____quad_t_14;// L52 -typedef unsigned long int ____u_quad_t_15;// L53 -typedef unsigned long int ____dev_t_16;// L109:L124 -typedef unsigned int ____uid_t_17;// L92:L125 -typedef unsigned int ____gid_t_18;// L92:L126 -typedef unsigned long int ____ino_t_19;// L94:L127 -typedef unsigned long int ____ino64_t_20;// L109:L128 -typedef unsigned int ____mode_t_21;// L92:L129 -typedef unsigned long int ____nlink_t_22;// L94:L130 -typedef long int ____off_t_23;// L93:L131 -typedef long int ____off64_t_24;// L108:L132 -typedef int ____pid_t_25;// L91:L133 -struct ____anonymous_tag_26_27 { -int ____val_28[2];// L72 +typedef signed char __int8_t_0;// L36 +typedef short int __int16_t_1;// L37 +typedef int __int32_t_2;// L38 +typedef long int __int64_t_3;// L40 +typedef unsigned char __uint8_t_4;// L48 +typedef unsigned short int __uint16_t_5;// L49 +typedef unsigned int __uint32_t_6;// L51 +typedef unsigned long int __uint64_t_7;// L55 +typedef signed char __int_least8_t_8;// L65 +typedef short int __int_least16_t_9;// L66 +typedef int __int_least32_t_10;// L67 +typedef long int __int_least64_t_11;// L69 +typedef unsigned char __uint_least8_t_12;// L76 +typedef unsigned short int __uint_least16_t_13;// L77 +typedef unsigned int __uint_least32_t_14;// L78 +typedef unsigned long int __uint_least64_t_15;// L80 +typedef signed char __int_fast8_t_16;// L90 +typedef long int __int_fast16_t_17;// L92 +typedef long int __int_fast32_t_18;// L93 +typedef long int __int_fast64_t_19;// L94 +typedef unsigned char __uint_fast8_t_20;// L103 +typedef unsigned long int __uint_fast16_t_21;// L105 +typedef unsigned long int __uint_fast32_t_22;// L106 +typedef unsigned long int __uint_fast64_t_23;// L107 +typedef long int __intptr_t_24;// L119 +typedef unsigned long int __uintptr_t_25;// L122 +typedef long int __intmax_t_26;// L134 +typedef unsigned long int __uintmax_t_27;// L135 +typedef int ____gwchar_t_28;// L34:L243 +struct ____anonymous_tag_29_30 { +long int __quot_31;// L273 +long int __rem_32;// L274 +}; +typedef struct ____anonymous_tag_29_30 __imaxdiv_t_33;// L271:L275 +typedef struct ____anonymous_tag_29_30 __imaxdiv_t_34;// L271:L275 +typedef float __float_t_123;// L28 +typedef double __double_t_124;// L29 +enum ____anonymous_tag_1083_1084 { +__FP_NAN_1077 = 0, +__FP_NAN_1078 = 0, +__FP_INFINITE_1079 = 1, +__FP_ZERO_1080 = 2, +__FP_SUBNORMAL_1081 = 3, +__FP_NORMAL_1082 = 4, +}; +enum ____anonymous_tag_1090_1091 { +___IEEE__1085 = - 1, +___SVID__1086, +___XOPEN__1087, +___POSIX__1088, +___ISOC__1089, }; -typedef struct ____anonymous_tag_26_27 ____fsid_t_29;// L72:L134 -typedef long int ____clock_t_30;// L93:L135 -typedef unsigned long int ____rlim_t_31;// L94:L136 -typedef unsigned long int ____rlim64_t_32;// L109:L137 -typedef unsigned int ____id_t_33;// L92:L138 -typedef long int ____time_t_34;// L93:L139 -typedef unsigned int ____useconds_t_35;// L92:L140 -typedef long int ____suseconds_t_36;// L93:L141 -typedef int ____daddr_t_37;// L91:L143 -typedef int ____key_t_38;// L91:L144 -typedef int ____clockid_t_39;// L91:L147 -typedef void * (____timer_t_40);// L70:L150 -typedef long int ____blksize_t_41;// L93:L153 -typedef long int ____blkcnt_t_42;// L93:L158 -typedef long int ____blkcnt64_t_43;// L108:L159 -typedef unsigned long int ____fsblkcnt_t_44;// L94:L162 -typedef unsigned long int ____fsblkcnt64_t_45;// L109:L163 -typedef unsigned long int ____fsfilcnt_t_46;// L94:L166 -typedef unsigned long int ____fsfilcnt64_t_47;// L109:L167 -typedef long int ____fsword_t_48;// L93:L170 -typedef long int ____ssize_t_49;// L110:L172 -typedef long int ____syscall_slong_t_50;// L93:L175 -typedef unsigned long int ____syscall_ulong_t_51;// L94:L177 -typedef ____off64_t_24 ____loff_t_52;// L181 -typedef ____quad_t_14 * (____qaddr_t_53);// L182 -typedef char * (____caddr_t_54);// L183 -typedef long int ____intptr_t_55;// L110:L186 -typedef unsigned int ____socklen_t_56;// L92:L189 -typedef struct __forward_tag_reference_57 __FILE_58;// L48 -typedef struct __forward_tag_reference_57 ____FILE_59;// L64 -union ____anonymous_tag_60_61 { -unsigned int ____wch_62;// L265 -char ____wchb_63[4];// L92 +typedef enum ____anonymous_tag_1090_1091 ___LIB_VERSION_TYPE_1092;// L347:L354 +struct __exception_1094 { +int __type_1095;// L375 +char * (__name_1096);// L376 +double __arg1_1097;// L377 +double __arg2_1098;// L378 +double __retval_1099;// L379 }; -struct ____anonymous_tag_64_65 { -int ____count_66;// L84 -union ____anonymous_tag_60_61 ____value_67;// L85 +typedef long int __ptrdiff_t_1191;// L143:L324 +typedef long unsigned int __size_t_1192;// L177:L209 +typedef unsigned char ____u_char_1193;// L30 +typedef unsigned short int ____u_short_1194;// L31 +typedef unsigned int ____u_int_1195;// L32 +typedef unsigned long int ____u_long_1196;// L33 +typedef signed char ____int8_t_1197;// L36 +typedef unsigned char ____uint8_t_1198;// L37 +typedef signed short int ____int16_t_1199;// L38 +typedef unsigned short int ____uint16_t_1200;// L39 +typedef signed int ____int32_t_1201;// L40 +typedef unsigned int ____uint32_t_1202;// L41 +typedef signed long int ____int64_t_1203;// L43 +typedef unsigned long int ____uint64_t_1204;// L44 +typedef long int ____quad_t_1205;// L52 +typedef unsigned long int ____u_quad_t_1206;// L53 +typedef unsigned long int ____dev_t_1207;// L109:L124 +typedef unsigned int ____uid_t_1208;// L92:L125 +typedef unsigned int ____gid_t_1209;// L92:L126 +typedef unsigned long int ____ino_t_1210;// L94:L127 +typedef unsigned long int ____ino64_t_1211;// L109:L128 +typedef unsigned int ____mode_t_1212;// L92:L129 +typedef unsigned long int ____nlink_t_1213;// L94:L130 +typedef long int ____off_t_1214;// L93:L131 +typedef long int ____off64_t_1215;// L108:L132 +typedef int ____pid_t_1216;// L91:L133 +struct ____anonymous_tag_1217_1218 { +int ____val_1219[2];// L72 }; -typedef struct ____anonymous_tag_64_65 ____mbstate_t_68;// L82:L94 -struct ____anonymous_tag_69_70 { -____off_t_23 ____pos_71;// L0 -____mbstate_t_68 ____state_72;// L0 +typedef struct ____anonymous_tag_1217_1218 ____fsid_t_1220;// L72:L134 +typedef long int ____clock_t_1221;// L93:L135 +typedef unsigned long int ____rlim_t_1222;// L94:L136 +typedef unsigned long int ____rlim64_t_1223;// L109:L137 +typedef unsigned int ____id_t_1224;// L92:L138 +typedef long int ____time_t_1225;// L93:L139 +typedef unsigned int ____useconds_t_1226;// L92:L140 +typedef long int ____suseconds_t_1227;// L93:L141 +typedef int ____daddr_t_1228;// L91:L143 +typedef int ____key_t_1229;// L91:L144 +typedef int ____clockid_t_1230;// L91:L147 +typedef void * (____timer_t_1231);// L70:L150 +typedef long int ____blksize_t_1232;// L93:L153 +typedef long int ____blkcnt_t_1233;// L93:L158 +typedef long int ____blkcnt64_t_1234;// L108:L159 +typedef unsigned long int ____fsblkcnt_t_1235;// L94:L162 +typedef unsigned long int ____fsblkcnt64_t_1236;// L109:L163 +typedef unsigned long int ____fsfilcnt_t_1237;// L94:L166 +typedef unsigned long int ____fsfilcnt64_t_1238;// L109:L167 +typedef long int ____fsword_t_1239;// L93:L170 +typedef long int ____ssize_t_1240;// L110:L172 +typedef long int ____syscall_slong_t_1241;// L93:L175 +typedef unsigned long int ____syscall_ulong_t_1242;// L94:L177 +typedef ____off64_t_1215 ____loff_t_1243;// L181 +typedef ____quad_t_1205 * (____qaddr_t_1245);// L182 +typedef char * (____caddr_t_1246);// L183 +typedef long int ____intptr_t_1247;// L110:L186 +typedef unsigned int ____socklen_t_1248;// L92:L189 +typedef struct __forward_tag_reference_1249 __FILE_1250;// L48 +typedef struct __forward_tag_reference_1249 ____FILE_1251;// L64 +union ____anonymous_tag_1252_1253 { +unsigned int ____wch_1254;// L265 +char ____wchb_1255[4];// L92 }; -typedef struct ____anonymous_tag_69_70 ___G_fpos_t_75;// L21:L25 -struct ____anonymous_tag_76_77 { -____off64_t_24 ____pos_78;// L0 -____mbstate_t_68 ____state_79;// L0 +struct ____anonymous_tag_1256_1257 { +int ____count_1258;// L84 +union ____anonymous_tag_1252_1253 ____value_1259;// L85 }; -typedef struct ____anonymous_tag_76_77 ___G_fpos64_t_81;// L26:L30 -typedef __builtin_va_list ____gnuc_va_list_82;// L40 -typedef void ___IO_lock_t_84;// L150 -struct ___IO_marker_86 { -struct __forward_tag_reference_85 * (___next_87);// L0 -struct __forward_tag_reference_57 * (___sbuf_88);// L0 -int ___pos_89;// L162 +typedef struct ____anonymous_tag_1256_1257 ____mbstate_t_1260;// L82:L94 +struct ____anonymous_tag_1261_1262 { +____off_t_1214 ____pos_1263;// L0 +____mbstate_t_1260 ____state_1265;// L0 }; -enum ____codecvt_result_94 { -____codecvt_ok_90, -____codecvt_partial_91, -____codecvt_error_92, -____codecvt_noconv_93, +typedef struct ____anonymous_tag_1261_1262 ___G_fpos_t_1268;// L21:L25 +struct ____anonymous_tag_1269_1270 { +____off64_t_1215 ____pos_1271;// L0 +____mbstate_t_1260 ____state_1273;// L0 }; -struct ___IO_FILE_95 { -int ___flags_96;// L242 -char * (___IO_read_ptr_97);// L247 -char * (___IO_read_end_98);// L248 -char * (___IO_read_base_99);// L249 -char * (___IO_write_base_100);// L250 -char * (___IO_write_ptr_101);// L251 -char * (___IO_write_end_102);// L252 -char * (___IO_buf_base_103);// L253 -char * (___IO_buf_end_104);// L254 -char * (___IO_save_base_105);// L256 -char * (___IO_backup_base_106);// L257 -char * (___IO_save_end_107);// L258 -struct ___IO_marker_86 * (___markers_108);// L260 -struct __forward_tag_reference_57 * (___chain_109);// L0 -int ___fileno_110;// L264 -int ___flags2_111;// L268 -____off_t_23 ___old_offset_112;// L0 -unsigned short ___cur_column_113;// L274 -signed char ___vtable_offset_114;// L275 -char ___shortbuf_115[1];// L276 -___IO_lock_t_84 * (___lock_116);// L0 +typedef struct ____anonymous_tag_1269_1270 ___G_fpos64_t_1276;// L26:L30 +typedef __builtin_va_list ____gnuc_va_list_1277;// L40 +typedef void ___IO_lock_t_1279;// L150 +struct ___IO_marker_1281 { +struct __forward_tag_reference_1280 * (___next_1282);// L0 +struct __forward_tag_reference_1249 * (___sbuf_1283);// L0 +int ___pos_1284;// L162 }; -struct ___IO_FILE_119 { -int ___flags_120;// L242 -char * (___IO_read_ptr_121);// L247 -char * (___IO_read_end_122);// L248 -char * (___IO_read_base_123);// L249 -char * (___IO_write_base_124);// L250 -char * (___IO_write_ptr_125);// L251 -char * (___IO_write_end_126);// L252 -char * (___IO_buf_base_127);// L253 -char * (___IO_buf_end_128);// L254 -char * (___IO_save_base_129);// L256 -char * (___IO_backup_base_130);// L257 -char * (___IO_save_end_131);// L258 -struct ___IO_marker_86 * (___markers_132);// L260 -struct __forward_tag_reference_57 * (___chain_133);// L0 -int ___fileno_134;// L264 -int ___flags2_135;// L268 -____off_t_23 ___old_offset_136;// L0 -unsigned short ___cur_column_137;// L274 -signed char ___vtable_offset_138;// L275 -char ___shortbuf_139[1];// L276 -___IO_lock_t_84 * (___lock_140);// L0 -____off64_t_24 ___offset_142;// L0 -void * (____pad1_143);// L297 -void * (____pad2_144);// L298 -void * (____pad3_145);// L299 -void * (____pad4_146);// L300 -__size_t_1 ____pad5_147;// L0 -int ___mode_148;// L303 -char ___unused2_149[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +enum ____codecvt_result_1289 { +____codecvt_ok_1285, +____codecvt_partial_1286, +____codecvt_error_1287, +____codecvt_noconv_1288, }; -struct ___IO_FILE_complete_150 { -struct ___IO_FILE_95 ___file_151;// L286 -____off64_t_24 ___offset_153;// L0 -void * (____pad1_154);// L297 -void * (____pad2_155);// L298 -void * (____pad3_156);// L299 -void * (____pad4_157);// L300 -__size_t_1 ____pad5_158;// L0 -int ___mode_159;// L303 -char ___unused2_160[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +struct ___IO_FILE_1290 { +int ___flags_1291;// L242 +char * (___IO_read_ptr_1292);// L247 +char * (___IO_read_end_1293);// L248 +char * (___IO_read_base_1294);// L249 +char * (___IO_write_base_1295);// L250 +char * (___IO_write_ptr_1296);// L251 +char * (___IO_write_end_1297);// L252 +char * (___IO_buf_base_1298);// L253 +char * (___IO_buf_end_1299);// L254 +char * (___IO_save_base_1300);// L256 +char * (___IO_backup_base_1301);// L257 +char * (___IO_save_end_1302);// L258 +struct ___IO_marker_1281 * (___markers_1303);// L260 +struct __forward_tag_reference_1249 * (___chain_1304);// L0 +int ___fileno_1305;// L264 +int ___flags2_1306;// L268 +____off_t_1214 ___old_offset_1307;// L0 +unsigned short ___cur_column_1309;// L274 +signed char ___vtable_offset_1310;// L275 +char ___shortbuf_1311[1];// L276 +___IO_lock_t_1279 * (___lock_1312);// L0 }; -typedef struct ___IO_FILE_95 ___IO_FILE_163;// L310 -typedef struct ___IO_FILE_119 ___IO_FILE_164;// L310 -typedef ____ssize_t_49 (____io_read_fn_173) (void * (____cookie_170), char * (____buf_171), __size_t_1 ____nbytes_172);// L333 -typedef ____ssize_t_49 (____io_write_fn_177) (void * (____cookie_174), const char * (____buf_175), __size_t_1 ____n_176);// L341:L342 -typedef int (____io_seek_fn_181) (void * (____cookie_178), ____off64_t_24 * (____pos_179), int ____w_180);// L350 -typedef int (____io_close_fn_183) (void * (____cookie_182));// L353 -typedef ____gnuc_va_list_82 __va_list_248;// L79 -typedef ____off_t_23 __off_t_250;// L90 -typedef ____off64_t_24 __off_t_251;// L92 -typedef ____ssize_t_49 __ssize_t_252;// L102 -typedef ___G_fpos_t_75 __fpos_t_253;// L110 -typedef ___G_fpos64_t_81 __fpos_t_255;// L112 -extern const char * const __sys_errlist_756[];// L27 - -struct __forward_tag_reference_57 { // generated union of struct variations +struct ___IO_FILE_1315 { +int ___flags_1316;// L242 +char * (___IO_read_ptr_1317);// L247 +char * (___IO_read_end_1318);// L248 +char * (___IO_read_base_1319);// L249 +char * (___IO_write_base_1320);// L250 +char * (___IO_write_ptr_1321);// L251 +char * (___IO_write_end_1322);// L252 +char * (___IO_buf_base_1323);// L253 +char * (___IO_buf_end_1324);// L254 +char * (___IO_save_base_1325);// L256 +char * (___IO_backup_base_1326);// L257 +char * (___IO_save_end_1327);// L258 +struct ___IO_marker_1281 * (___markers_1328);// L260 +struct __forward_tag_reference_1249 * (___chain_1329);// L0 +int ___fileno_1330;// L264 +int ___flags2_1331;// L268 +____off_t_1214 ___old_offset_1332;// L0 +unsigned short ___cur_column_1334;// L274 +signed char ___vtable_offset_1335;// L275 +char ___shortbuf_1336[1];// L276 +___IO_lock_t_1279 * (___lock_1337);// L0 +____off64_t_1215 ___offset_1339;// L0 +void * (____pad1_1341);// L297 +void * (____pad2_1342);// L298 +void * (____pad3_1343);// L299 +void * (____pad4_1344);// L300 +__size_t_1192 ____pad5_1345;// L0 +int ___mode_1346;// L303 +char ___unused2_1347[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +}; +struct ___IO_FILE_complete_1348 { +struct ___IO_FILE_1290 ___file_1349;// L286 +____off64_t_1215 ___offset_1351;// L0 +void * (____pad1_1353);// L297 +void * (____pad2_1354);// L298 +void * (____pad3_1355);// L299 +void * (____pad4_1356);// L300 +__size_t_1192 ____pad5_1357;// L0 +int ___mode_1358;// L303 +char ___unused2_1359[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +}; +typedef struct ___IO_FILE_1290 ___IO_FILE_1362;// L310 +typedef struct ___IO_FILE_1315 ___IO_FILE_1363;// L310 +typedef ____ssize_t_1240 (____io_read_fn_1372) (void * (____cookie_1369), char * (____buf_1370), __size_t_1192 ____nbytes_1371);// L333 +typedef ____ssize_t_1240 (____io_write_fn_1377) (void * (____cookie_1374), const char * (____buf_1375), __size_t_1192 ____n_1376);// L341:L342 +typedef int (____io_seek_fn_1383) (void * (____cookie_1379), ____off64_t_1215 * (____pos_1380), int ____w_1382);// L350 +typedef int (____io_close_fn_1386) (void * (____cookie_1385));// L353 +typedef ____gnuc_va_list_1277 __va_list_1470;// L79 +typedef ____off_t_1214 __off_t_1472;// L90 +typedef ____off64_t_1215 __off_t_1474;// L92 +typedef ____ssize_t_1240 __ssize_t_1476;// L102 +typedef ___G_fpos_t_1268 __fpos_t_1478;// L110 +typedef ___G_fpos64_t_1276 __fpos_t_1480;// L112 +extern const char * const __sys_errlist_2021[];// L27 + +struct __forward_tag_reference_1365 { // generated union of struct variations union { -struct ___IO_FILE_95 ___IO_FILE_95; -struct ___IO_FILE_119 ___IO_FILE_119; }; }; -struct __forward_tag_reference_85 { // generated union of struct variations +struct __forward_tag_reference_1278 { // generated union of struct variations union { -struct ___IO_marker_86 ___IO_marker_86; }; }; -struct __forward_tag_reference_83 { // generated union of struct variations +struct __forward_tag_reference_1249 { // generated union of struct variations union { +struct ___IO_FILE_1290 ___IO_FILE_1290; +struct ___IO_FILE_1315 ___IO_FILE_1315; }; }; -struct __forward_tag_reference_166 { // generated union of struct variations +struct __forward_tag_reference_1280 { // generated union of struct variations union { +struct ___IO_marker_1281 ___IO_marker_1281; }; }; @@ -916,6 +1848,994 @@ union { // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope +extern __intmax_t_26 (__imaxabs_36) (__intmax_t_26 ____n_35);// L290 +extern __imaxdiv_t_33 (__imaxdiv_39) (__intmax_t_26 ____numer_37, __intmax_t_26 ____denom_38);// L293:L294 +extern __imaxdiv_t_34 (__imaxdiv_40) (__intmax_t_26 ____numer_37, __intmax_t_26 ____denom_38);// L293:L294 +extern __intmax_t_26 (__strtoimax_44) (const char * __restrict ____nptr_41, char * (* __restrict ____endptr_42), int ____base_43);// L297:L298 +extern __uintmax_t_27 (__strtoumax_48) (const char * __restrict ____nptr_45, char * (* __restrict ____endptr_46), int ____base_47);// L301:L302 +extern __intmax_t_26 (__wcstoimax_54) (const ____gwchar_t_28 * __restrict ____nptr_49, ____gwchar_t_28 * (* __restrict ____endptr_51), int ____base_53);// L305:L307 +extern __uintmax_t_27 (__wcstoumax_61) (const ____gwchar_t_28 * __restrict ____nptr_56, ____gwchar_t_28 * (* __restrict ____endptr_58), int ____base_60);// L310:L312 +extern long int (____strtol_internal_66) (const char * __restrict ____nptr_62, char * (* __restrict ____endptr_63), int ____base_64, int ____group_65);// L318:L321 +extern long int (____strtol_internal_67) (const char * __restrict ____nptr_62, char * (* __restrict ____endptr_63), int ____base_64, int ____group_65);// L318:L321 +/* no function due to type errors in the function prototype */ +extern unsigned long int (____strtoul_internal_75) (const char * __restrict ____nptr_71, char * (* __restrict ____endptr_72), int ____base_73, int ____group_74);// L330:L333 +extern unsigned long int (____strtoul_internal_76) (const char * __restrict ____nptr_71, char * (* __restrict ____endptr_72), int ____base_73, int ____group_74);// L330:L333 +/* no function due to type errors in the function prototype */ +extern long int (____wcstol_internal_86) (const ____gwchar_t_28 * __restrict ____nptr_80, ____gwchar_t_28 * (* __restrict ____endptr_82), int ____base_84, int ____group_85);// L342:L345 +extern long int (____wcstol_internal_88) (const ____gwchar_t_28 * __restrict ____nptr_80, ____gwchar_t_28 * (* __restrict ____endptr_82), int ____base_84, int ____group_85);// L342:L345 +/* no function due to type errors in the function prototype */ +extern unsigned long int (____wcstoul_internal_102) (const ____gwchar_t_28 * __restrict ____nptr_96, ____gwchar_t_28 * (* __restrict ____endptr_98), int ____base_100, int ____group_101);// L354:L359 +extern unsigned long int (____wcstoul_internal_104) (const ____gwchar_t_28 * __restrict ____nptr_96, ____gwchar_t_28 * (* __restrict ____endptr_98), int ____base_100, int ____group_101);// L354:L359 +/* no function due to type errors in the function prototype */ +static __inline__ void (___delay_loop_1_113) (__uint8_t_4 ____count_112);// L40 +static __inline__ void (___delay_loop_2_115) (__uint16_t_5 ____count_114);// L41 +void (___delay_loop_1_113) (__uint8_t_4 ____count_116) { + +if (__static_condition_default_118) { + +{ +{ + + + +__asm__ volatile ( "1: dec %0""\n\t""brne 1b" : "=r" ( ____count_116 ) : "0" ( ____count_116 ) ); +} +} + + +} +} +void (___delay_loop_1_117) (__uint8_t_4 ____count_116) { + +if (__static_condition_default_119) { + +{ +{ + + + +__asm__ volatile ( "1: dec %0""\n\t""brne 1b" : "=r" ( ____count_116 ) : "0" ( ____count_116 ) ); +} +} + + +} +} +void (___delay_loop_2_115) (__uint16_t_5 ____count_120) { + +if (__static_condition_default_118) { + +{ +{ + + + +__asm__ volatile ( "1: sbiw %0,1""\n\t""brne 1b" : "=w" ( ____count_120 ) : "0" ( ____count_120 ) ); +} +} + + +} +} +void (___delay_loop_2_121) (__uint16_t_5 ____count_120) { + +if (__static_condition_default_122) { + +{ +{ + + + +__asm__ volatile ( "1: sbiw %0,1""\n\t""brne 1b" : "=w" ( ____count_120 ) : "0" ( ____count_120 ) ); +} +} + + +} +} +// typedef moved to top of scope +// typedef moved to top of scope +extern double (__acos_126) (double ____x_125);// L68:L78 +extern double (____acos_128) (double ____x_127);// L54:L78 +extern double (__asin_130) (double ____x_129);// L68:L78 +extern double (____asin_132) (double ____x_131);// L56:L78 +extern double (__atan_134) (double ____x_133);// L68:L78 +extern double (____atan_136) (double ____x_135);// L58:L78 +extern double (__atan2_139) (double ____y_137, double ____x_138);// L68:L78 +extern double (____atan2_142) (double ____y_140, double ____x_141);// L60:L78 +extern double (__cos_144) (double ____x_143);// L68:L78 +extern double (__cos_145) (double ____x_143);// L68:L78 +extern double (____cos_147) (double ____x_146);// L63:L78 +extern double (__sin_149) (double ____x_148);// L68:L78 +extern double (__sin_150) (double ____x_148);// L68:L78 +extern double (____sin_152) (double ____x_151);// L65:L78 +extern double (__tan_154) (double ____x_153);// L68:L78 +extern double (____tan_156) (double ____x_155);// L67:L78 +extern double (__cosh_158) (double ____x_157);// L68:L78 +extern double (____cosh_160) (double ____x_159);// L72:L78 +extern double (__sinh_162) (double ____x_161);// L68:L78 +extern double (____sinh_164) (double ____x_163);// L74:L78 +extern double (__tanh_166) (double ____x_165);// L68:L78 +extern double (____tanh_168) (double ____x_167);// L76:L78 +extern double (__acosh_170) (double ____x_169);// L68:L78 +extern double (____acosh_172) (double ____x_171);// L76:L88 +extern double (__asinh_174) (double ____x_173);// L68:L78 +extern double (____asinh_176) (double ____x_175);// L76:L90 +extern double (__atanh_178) (double ____x_177);// L68:L78 +extern double (____atanh_180) (double ____x_179);// L76:L92 +extern double (__exp_182) (double ____x_181);// L68:L78 +extern double (__exp_183) (double ____x_181);// L68:L78 +extern double (____exp_185) (double ____x_184);// L76:L100 +extern double (__frexp_188) (double ____x_186, int * (____exponent_187));// L68:L78 +extern double (____frexp_191) (double ____x_189, int * (____exponent_190));// L76:L103 +extern double (__ldexp_194) (double ____x_192, int ____exponent_193);// L68:L78 +extern double (____ldexp_197) (double ____x_195, int ____exponent_196);// L76:L106 +extern double (__log_199) (double ____x_198);// L68:L78 +extern double (__log_200) (double ____x_198);// L68:L78 +extern double (____log_202) (double ____x_201);// L76:L109 +extern double (__log10_204) (double ____x_203);// L68:L78 +extern double (____log10_206) (double ____x_205);// L76:L112 +extern double (__modf_209) (double ____x_207, double * (____iptr_208));// L68:L78 +extern double (____modf_212) (double ____x_210, double * (____iptr_211));// L76:L115 +extern double (__expm1_214) (double ____x_213);// L68:L78 +extern double (____expm1_216) (double ____x_215);// L76:L128 +extern double (__log1p_218) (double ____x_217);// L68:L78 +extern double (____log1p_220) (double ____x_219);// L76:L131 +extern double (__logb_222) (double ____x_221);// L68:L78 +extern double (____logb_224) (double ____x_223);// L76:L134 +extern double (__exp2_226) (double ____x_225);// L68:L78 +extern double (____exp2_228) (double ____x_227);// L76:L141 +extern double (__log2_230) (double ____x_229);// L68:L78 +extern double (____log2_232) (double ____x_231);// L76:L144 +extern double (__pow_235) (double ____x_233, double ____y_234);// L68:L78 +extern double (__pow_236) (double ____x_233, double ____y_234);// L68:L78 +extern double (____pow_239) (double ____x_237, double ____y_238);// L76:L153 +extern double (__sqrt_241) (double ____x_240);// L68:L78 +extern double (____sqrt_243) (double ____x_242);// L76:L156 +extern double (__hypot_246) (double ____x_244, double ____y_245);// L68:L78 +extern double (____hypot_249) (double ____x_247, double ____y_248);// L76:L162 +extern double (__cbrt_251) (double ____x_250);// L68:L78 +extern double (____cbrt_253) (double ____x_252);// L76:L169 +extern double (__ceil_255) (double ____x_254);// L73:L78 +extern double (____ceil_257) (double ____x_256);// L76:L178 +extern double (__fabs_259) (double ____x_258);// L73:L78 +extern double (____fabs_261) (double ____x_260);// L76:L181 +extern double (__floor_263) (double ____x_262);// L73:L78 +extern double (____floor_265) (double ____x_264);// L76:L184 +extern double (__fmod_268) (double ____x_266, double ____y_267);// L68:L78 +extern double (____fmod_271) (double ____x_269, double ____y_270);// L76:L187 +extern int (____isinf_273) (double ____value_272);// L76:L192 +extern int (____finite_275) (double ____value_274);// L76:L195 +extern int (__isinf_277) (double ____value_276);// L76:L204 +extern int (__finite_279) (double ____value_278);// L76:L208 +extern double (__drem_282) (double ____x_280, double ____y_281);// L68:L78 +extern double (____drem_285) (double ____x_283, double ____y_284);// L76:L211 +extern double (__significand_287) (double ____x_286);// L68:L78 +extern double (____significand_289) (double ____x_288);// L76:L215 +extern double (__copysign_292) (double ____x_290, double ____y_291);// L73:L78 +extern double (__copysign_293) (double ____x_290, double ____y_291);// L73:L78 +extern double (____copysign_296) (double ____x_294, double ____y_295);// L76:L221 +extern double (__nan_298) (const char * (____tagb_297));// L73:L78 +extern double (____nan_300) (const char * (____tagb_299));// L76:L228 +extern int (____isnan_302) (double ____value_301);// L76:L234 +extern int (__isnan_304) (double ____value_303);// L76:L241 +extern double (__j0_305) (double );// L68:L78 +extern double (____j0_306) (double );// L76:L247 +extern double (__j1_307) (double );// L68:L78 +extern double (____j1_308) (double );// L76:L248 +extern double (__jn_309) (int , double );// L68:L78 +extern double (____jn_310) (int , double );// L76:L249 +extern double (__y0_311) (double );// L68:L78 +extern double (____y0_312) (double );// L76:L250 +extern double (__y1_313) (double );// L68:L78 +extern double (____y1_314) (double );// L76:L251 +extern double (__yn_315) (int , double );// L68:L78 +extern double (____yn_316) (int , double );// L76:L252 +extern double (__erf_317) (double );// L68:L78 +extern double (__erf_318) (double );// L68:L78 +extern double (____erf_319) (double );// L76:L259 +extern double (__erfc_320) (double );// L68:L78 +extern double (____erfc_321) (double );// L76:L260 +extern double (__lgamma_322) (double );// L68:L78 +extern double (____lgamma_323) (double );// L76:L261 +extern double (__tgamma_324) (double );// L68:L78 +extern double (____tgamma_325) (double );// L76:L268 +extern double (__gamma_326) (double );// L68:L78 +extern double (____gamma_327) (double );// L76:L274 +extern double (__lgamma_r_329) (double , int * (____signgamp_328));// L68:L78 +extern double (____lgamma_r_331) (double , int * (____signgamp_330));// L76:L281 +extern double (__rint_333) (double ____x_332);// L68:L78 +extern double (__rint_334) (double ____x_332);// L68:L78 +extern double (____rint_336) (double ____x_335);// L76:L289 +extern double (__nextafter_339) (double ____x_337, double ____y_338);// L73:L78 +extern double (____nextafter_342) (double ____x_340, double ____y_341);// L76:L292 +extern double (__nexttoward_345) (double ____x_343, long double ____y_344);// L73:L78 +extern double (____nexttoward_348) (double ____x_346, long double ____y_347);// L76:L294 +extern double (__remainder_351) (double ____x_349, double ____y_350);// L68:L78 +extern double (____remainder_354) (double ____x_352, double ____y_353);// L76:L298 +extern double (__scalbn_357) (double ____x_355, int ____n_356);// L68:L78 +extern double (____scalbn_360) (double ____x_358, int ____n_359);// L76:L302 +extern int (__ilogb_362) (double ____x_361);// L68:L306 +extern int (____ilogb_364) (double ____x_363);// L76:L306 +extern double (__scalbln_367) (double ____x_365, long int ____n_366);// L68:L78 +extern double (____scalbln_370) (double ____x_368, long int ____n_369);// L76:L311 +extern double (__nearbyint_372) (double ____x_371);// L68:L78 +extern double (____nearbyint_374) (double ____x_373);// L76:L315 +extern double (__round_376) (double ____x_375);// L73:L78 +extern double (____round_378) (double ____x_377);// L76:L319 +extern double (__trunc_380) (double ____x_379);// L73:L78 +extern double (____trunc_382) (double ____x_381);// L76:L323 +extern double (__remquo_386) (double ____x_383, double ____y_384, int * (____quo_385));// L68:L78 +extern double (____remquo_390) (double ____x_387, double ____y_388, int * (____quo_389));// L76:L328 +extern long int (__lrint_392) (double ____x_391);// L68:L335 +extern long int (____lrint_394) (double ____x_393);// L76:L335 +extern long long int (__llrint_396) (double ____x_395);// L68:L337 +extern long long int (____llrint_398) (double ____x_397);// L76:L337 +extern long int (__lround_400) (double ____x_399);// L68:L341 +extern long int (____lround_402) (double ____x_401);// L76:L341 +extern long long int (__llround_404) (double ____x_403);// L68:L343 +extern long long int (____llround_406) (double ____x_405);// L76:L343 +extern double (__fdim_409) (double ____x_407, double ____y_408);// L68:L78 +extern double (____fdim_412) (double ____x_410, double ____y_411);// L76:L347 +extern double (__fmax_415) (double ____x_413, double ____y_414);// L73:L78 +extern double (____fmax_418) (double ____x_416, double ____y_417);// L76:L350 +extern double (__fmin_421) (double ____x_419, double ____y_420);// L73:L78 +extern double (____fmin_424) (double ____x_422, double ____y_423);// L76:L353 +extern int (____fpclassify_426) (double ____value_425);// L76:L358 +extern int (____signbit_428) (double ____value_427);// L76:L362 +extern double (__fma_432) (double ____x_429, double ____y_430, double ____z_431);// L68:L78 +extern double (____fma_436) (double ____x_433, double ____y_434, double ____z_435);// L76:L366 +extern double (__scalb_439) (double ____x_437, double ____n_438);// L68:L78 +extern double (____scalb_442) (double ____x_440, double ____n_441);// L76:L383 +extern float (__acosf_444) (float ____x_443);// L68:L97 +extern float (__acosf_445) (float ____x_443);// L68:L97 +extern float (____acosf_447) (float ____x_446);// L54:L97 +extern float (__asinf_449) (float ____x_448);// L68:L97 +extern float (____asinf_451) (float ____x_450);// L56:L97 +extern float (__atanf_453) (float ____x_452);// L68:L97 +extern float (____atanf_455) (float ____x_454);// L58:L97 +extern float (__atan2f_458) (float ____y_456, float ____x_457);// L68:L97 +extern float (____atan2f_461) (float ____y_459, float ____x_460);// L60:L97 +extern float (__cosf_463) (float ____x_462);// L68:L97 +extern float (__cosf_464) (float ____x_462);// L68:L97 +extern float (____cosf_466) (float ____x_465);// L63:L97 +extern float (__sinf_468) (float ____x_467);// L68:L97 +extern float (__sinf_469) (float ____x_467);// L68:L97 +extern float (____sinf_471) (float ____x_470);// L65:L97 +extern float (__tanf_473) (float ____x_472);// L68:L97 +extern float (____tanf_475) (float ____x_474);// L67:L97 +extern float (__coshf_477) (float ____x_476);// L68:L97 +extern float (____coshf_479) (float ____x_478);// L72:L97 +extern float (__sinhf_481) (float ____x_480);// L68:L97 +extern float (____sinhf_483) (float ____x_482);// L74:L97 +extern float (__tanhf_485) (float ____x_484);// L68:L97 +extern float (____tanhf_487) (float ____x_486);// L76:L97 +extern float (__acoshf_489) (float ____x_488);// L68:L97 +extern float (____acoshf_491) (float ____x_490);// L76:L97 +extern float (__asinhf_493) (float ____x_492);// L68:L97 +extern float (____asinhf_495) (float ____x_494);// L76:L97 +extern float (__atanhf_497) (float ____x_496);// L68:L97 +extern float (____atanhf_499) (float ____x_498);// L76:L97 +extern float (__expf_501) (float ____x_500);// L68:L97 +extern float (__expf_502) (float ____x_500);// L68:L97 +extern float (____expf_504) (float ____x_503);// L76:L100 +extern float (__frexpf_507) (float ____x_505, int * (____exponent_506));// L68:L97 +extern float (____frexpf_510) (float ____x_508, int * (____exponent_509));// L76:L103 +extern float (__ldexpf_513) (float ____x_511, int ____exponent_512);// L68:L97 +extern float (____ldexpf_516) (float ____x_514, int ____exponent_515);// L76:L106 +extern float (__logf_518) (float ____x_517);// L68:L97 +extern float (__logf_519) (float ____x_517);// L68:L97 +extern float (____logf_521) (float ____x_520);// L76:L109 +extern float (__log10f_523) (float ____x_522);// L68:L97 +extern float (____log10f_525) (float ____x_524);// L76:L112 +extern float (__modff_528) (float ____x_526, float * (____iptr_527));// L68:L97 +extern float (____modff_531) (float ____x_529, float * (____iptr_530));// L76:L115 +extern float (__expm1f_533) (float ____x_532);// L68:L97 +extern float (____expm1f_535) (float ____x_534);// L76:L128 +extern float (__log1pf_537) (float ____x_536);// L68:L97 +extern float (____log1pf_539) (float ____x_538);// L76:L131 +extern float (__logbf_541) (float ____x_540);// L68:L97 +extern float (____logbf_543) (float ____x_542);// L76:L134 +extern float (__exp2f_545) (float ____x_544);// L68:L97 +extern float (____exp2f_547) (float ____x_546);// L76:L141 +extern float (__log2f_549) (float ____x_548);// L68:L97 +extern float (____log2f_551) (float ____x_550);// L76:L144 +extern float (__powf_554) (float ____x_552, float ____y_553);// L68:L97 +extern float (__powf_555) (float ____x_552, float ____y_553);// L68:L97 +extern float (____powf_558) (float ____x_556, float ____y_557);// L76:L153 +extern float (__sqrtf_560) (float ____x_559);// L68:L97 +extern float (____sqrtf_562) (float ____x_561);// L76:L156 +extern float (__hypotf_565) (float ____x_563, float ____y_564);// L68:L97 +extern float (____hypotf_568) (float ____x_566, float ____y_567);// L76:L162 +extern float (__cbrtf_570) (float ____x_569);// L68:L97 +extern float (____cbrtf_572) (float ____x_571);// L76:L169 +extern float (__ceilf_574) (float ____x_573);// L73:L97 +extern float (____ceilf_576) (float ____x_575);// L76:L178 +extern float (__fabsf_578) (float ____x_577);// L73:L97 +extern float (____fabsf_580) (float ____x_579);// L76:L181 +extern float (__floorf_582) (float ____x_581);// L73:L97 +extern float (____floorf_584) (float ____x_583);// L76:L184 +extern float (__fmodf_587) (float ____x_585, float ____y_586);// L68:L97 +extern float (____fmodf_590) (float ____x_588, float ____y_589);// L76:L187 +extern int (____isinff_592) (float ____value_591);// L76:L192 +extern int (____finitef_594) (float ____value_593);// L76:L195 +extern int (__isinff_596) (float ____value_595);// L76:L204 +extern int (__finitef_598) (float ____value_597);// L76:L208 +extern float (__dremf_601) (float ____x_599, float ____y_600);// L68:L97 +extern float (____dremf_604) (float ____x_602, float ____y_603);// L76:L211 +extern float (__significandf_606) (float ____x_605);// L68:L97 +extern float (____significandf_608) (float ____x_607);// L76:L215 +extern float (__copysignf_611) (float ____x_609, float ____y_610);// L73:L97 +extern float (__copysignf_612) (float ____x_609, float ____y_610);// L73:L97 +extern float (____copysignf_615) (float ____x_613, float ____y_614);// L76:L221 +extern float (__nanf_617) (const char * (____tagb_616));// L73:L97 +extern float (____nanf_619) (const char * (____tagb_618));// L76:L228 +extern int (____isnanf_621) (float ____value_620);// L76:L234 +extern int (__isnanf_623) (float ____value_622);// L76:L241 +extern float (__j0f_624) (float );// L68:L97 +extern float (____j0f_625) (float );// L76:L247 +extern float (__j1f_626) (float );// L68:L97 +extern float (____j1f_627) (float );// L76:L248 +extern float (__jnf_628) (int , float );// L68:L97 +extern float (____jnf_629) (int , float );// L76:L249 +extern float (__y0f_630) (float );// L68:L97 +extern float (____y0f_631) (float );// L76:L250 +extern float (__y1f_632) (float );// L68:L97 +extern float (____y1f_633) (float );// L76:L251 +extern float (__ynf_634) (int , float );// L68:L97 +extern float (____ynf_635) (int , float );// L76:L252 +extern float (__erff_636) (float );// L68:L97 +extern float (__erff_637) (float );// L68:L97 +extern float (____erff_638) (float );// L76:L259 +extern float (__erfcf_639) (float );// L68:L97 +extern float (____erfcf_640) (float );// L76:L260 +extern float (__lgammaf_641) (float );// L68:L97 +extern float (____lgammaf_642) (float );// L76:L261 +extern float (__tgammaf_643) (float );// L68:L97 +extern float (____tgammaf_644) (float );// L76:L268 +extern float (__gammaf_645) (float );// L68:L97 +extern float (____gammaf_646) (float );// L76:L274 +extern float (__lgammaf_r_648) (float , int * (____signgamp_647));// L68:L97 +extern float (____lgammaf_r_650) (float , int * (____signgamp_649));// L76:L281 +extern float (__rintf_652) (float ____x_651);// L68:L97 +extern float (__rintf_653) (float ____x_651);// L68:L97 +extern float (____rintf_655) (float ____x_654);// L76:L289 +extern float (__nextafterf_658) (float ____x_656, float ____y_657);// L73:L97 +extern float (____nextafterf_661) (float ____x_659, float ____y_660);// L76:L292 +extern float (__nexttowardf_664) (float ____x_662, long double ____y_663);// L73:L97 +extern float (____nexttowardf_667) (float ____x_665, long double ____y_666);// L76:L294 +extern float (__remainderf_670) (float ____x_668, float ____y_669);// L68:L97 +extern float (____remainderf_673) (float ____x_671, float ____y_672);// L76:L298 +extern float (__scalbnf_676) (float ____x_674, int ____n_675);// L68:L97 +extern float (____scalbnf_679) (float ____x_677, int ____n_678);// L76:L302 +extern int (__ilogbf_681) (float ____x_680);// L68:L306 +extern int (____ilogbf_683) (float ____x_682);// L76:L306 +extern float (__scalblnf_686) (float ____x_684, long int ____n_685);// L68:L97 +extern float (____scalblnf_689) (float ____x_687, long int ____n_688);// L76:L311 +extern float (__nearbyintf_691) (float ____x_690);// L68:L97 +extern float (____nearbyintf_693) (float ____x_692);// L76:L315 +extern float (__roundf_695) (float ____x_694);// L73:L97 +extern float (____roundf_697) (float ____x_696);// L76:L319 +extern float (__truncf_699) (float ____x_698);// L73:L97 +extern float (____truncf_701) (float ____x_700);// L76:L323 +extern float (__remquof_705) (float ____x_702, float ____y_703, int * (____quo_704));// L68:L97 +extern float (____remquof_709) (float ____x_706, float ____y_707, int * (____quo_708));// L76:L328 +extern long int (__lrintf_711) (float ____x_710);// L68:L335 +extern long int (____lrintf_713) (float ____x_712);// L76:L335 +extern long long int (__llrintf_715) (float ____x_714);// L68:L337 +extern long long int (____llrintf_717) (float ____x_716);// L76:L337 +extern long int (__lroundf_719) (float ____x_718);// L68:L341 +extern long int (____lroundf_721) (float ____x_720);// L76:L341 +extern long long int (__llroundf_723) (float ____x_722);// L68:L343 +extern long long int (____llroundf_725) (float ____x_724);// L76:L343 +extern float (__fdimf_728) (float ____x_726, float ____y_727);// L68:L97 +extern float (____fdimf_731) (float ____x_729, float ____y_730);// L76:L347 +extern float (__fmaxf_734) (float ____x_732, float ____y_733);// L73:L97 +extern float (____fmaxf_737) (float ____x_735, float ____y_736);// L76:L350 +extern float (__fminf_740) (float ____x_738, float ____y_739);// L73:L97 +extern float (____fminf_743) (float ____x_741, float ____y_742);// L76:L353 +extern int (____fpclassifyf_745) (float ____value_744);// L76:L358 +extern int (____signbitf_747) (float ____value_746);// L76:L362 +extern float (__fmaf_751) (float ____x_748, float ____y_749, float ____z_750);// L68:L97 +extern float (____fmaf_755) (float ____x_752, float ____y_753, float ____z_754);// L76:L366 +extern float (__scalbf_758) (float ____x_756, float ____n_757);// L68:L97 +extern float (____scalbf_761) (float ____x_759, float ____n_760);// L76:L383 +extern long double (__acosl_763) (long double ____x_762);// L68:L143 +extern long double (__acosl_764) (long double ____x_762);// L68:L143 +extern long double (____acosl_766) (long double ____x_765);// L54:L143 +extern long double (__asinl_768) (long double ____x_767);// L68:L143 +extern long double (____asinl_770) (long double ____x_769);// L56:L143 +extern long double (__atanl_772) (long double ____x_771);// L68:L143 +extern long double (____atanl_774) (long double ____x_773);// L58:L143 +extern long double (__atan2l_777) (long double ____y_775, long double ____x_776);// L68:L143 +extern long double (____atan2l_780) (long double ____y_778, long double ____x_779);// L60:L143 +extern long double (__cosl_782) (long double ____x_781);// L68:L143 +extern long double (____cosl_784) (long double ____x_783);// L63:L143 +extern long double (__sinl_786) (long double ____x_785);// L68:L143 +extern long double (____sinl_788) (long double ____x_787);// L65:L143 +extern long double (__tanl_790) (long double ____x_789);// L68:L143 +extern long double (____tanl_792) (long double ____x_791);// L67:L143 +extern long double (__coshl_794) (long double ____x_793);// L68:L143 +extern long double (____coshl_796) (long double ____x_795);// L72:L143 +extern long double (__sinhl_798) (long double ____x_797);// L68:L143 +extern long double (____sinhl_800) (long double ____x_799);// L74:L143 +extern long double (__tanhl_802) (long double ____x_801);// L68:L143 +extern long double (____tanhl_804) (long double ____x_803);// L76:L143 +extern long double (__acoshl_806) (long double ____x_805);// L68:L143 +extern long double (____acoshl_808) (long double ____x_807);// L76:L143 +extern long double (__asinhl_810) (long double ____x_809);// L68:L143 +extern long double (____asinhl_812) (long double ____x_811);// L76:L143 +extern long double (__atanhl_814) (long double ____x_813);// L68:L143 +extern long double (____atanhl_816) (long double ____x_815);// L76:L143 +extern long double (__expl_818) (long double ____x_817);// L68:L143 +extern long double (____expl_820) (long double ____x_819);// L76:L143 +extern long double (__frexpl_823) (long double ____x_821, int * (____exponent_822));// L68:L143 +extern long double (____frexpl_826) (long double ____x_824, int * (____exponent_825));// L76:L143 +extern long double (__ldexpl_829) (long double ____x_827, int ____exponent_828);// L68:L143 +extern long double (____ldexpl_832) (long double ____x_830, int ____exponent_831);// L76:L143 +extern long double (__logl_834) (long double ____x_833);// L68:L143 +extern long double (____logl_836) (long double ____x_835);// L76:L143 +extern long double (__log10l_838) (long double ____x_837);// L68:L143 +extern long double (____log10l_840) (long double ____x_839);// L76:L143 +extern long double (__modfl_843) (long double ____x_841, long double * (____iptr_842));// L68:L143 +extern long double (____modfl_846) (long double ____x_844, long double * (____iptr_845));// L76:L143 +extern long double (__expm1l_848) (long double ____x_847);// L68:L143 +extern long double (____expm1l_850) (long double ____x_849);// L76:L143 +extern long double (__log1pl_852) (long double ____x_851);// L68:L143 +extern long double (____log1pl_854) (long double ____x_853);// L76:L143 +extern long double (__logbl_856) (long double ____x_855);// L68:L143 +extern long double (____logbl_858) (long double ____x_857);// L76:L143 +extern long double (__exp2l_860) (long double ____x_859);// L68:L143 +extern long double (____exp2l_862) (long double ____x_861);// L76:L143 +extern long double (__log2l_864) (long double ____x_863);// L68:L143 +extern long double (____log2l_866) (long double ____x_865);// L76:L144 +extern long double (__powl_869) (long double ____x_867, long double ____y_868);// L68:L143 +extern long double (____powl_872) (long double ____x_870, long double ____y_871);// L76:L153 +extern long double (__sqrtl_874) (long double ____x_873);// L68:L143 +extern long double (____sqrtl_876) (long double ____x_875);// L76:L156 +extern long double (__hypotl_879) (long double ____x_877, long double ____y_878);// L68:L143 +extern long double (____hypotl_882) (long double ____x_880, long double ____y_881);// L76:L162 +extern long double (__cbrtl_884) (long double ____x_883);// L68:L143 +extern long double (____cbrtl_886) (long double ____x_885);// L76:L169 +extern long double (__ceill_888) (long double ____x_887);// L73:L143 +extern long double (____ceill_890) (long double ____x_889);// L76:L178 +extern long double (__fabsl_892) (long double ____x_891);// L73:L143 +extern long double (____fabsl_894) (long double ____x_893);// L76:L181 +extern long double (__floorl_896) (long double ____x_895);// L73:L143 +extern long double (____floorl_898) (long double ____x_897);// L76:L184 +extern long double (__fmodl_901) (long double ____x_899, long double ____y_900);// L68:L143 +extern long double (____fmodl_904) (long double ____x_902, long double ____y_903);// L76:L187 +extern int (____isinfl_906) (long double ____value_905);// L76:L192 +extern int (____finitel_908) (long double ____value_907);// L76:L195 +extern int (__isinfl_910) (long double ____value_909);// L76:L204 +extern int (__finitel_912) (long double ____value_911);// L76:L208 +extern long double (__dreml_915) (long double ____x_913, long double ____y_914);// L68:L143 +extern long double (____dreml_918) (long double ____x_916, long double ____y_917);// L76:L211 +extern long double (__significandl_920) (long double ____x_919);// L68:L143 +extern long double (____significandl_922) (long double ____x_921);// L76:L215 +extern long double (__copysignl_925) (long double ____x_923, long double ____y_924);// L73:L143 +extern long double (__copysignl_926) (long double ____x_923, long double ____y_924);// L73:L143 +extern long double (____copysignl_929) (long double ____x_927, long double ____y_928);// L76:L221 +extern long double (__nanl_931) (const char * (____tagb_930));// L73:L143 +extern long double (____nanl_933) (const char * (____tagb_932));// L76:L228 +extern int (____isnanl_935) (long double ____value_934);// L76:L234 +extern int (__isnanl_937) (long double ____value_936);// L76:L241 +extern long double (__j0l_938) (long double );// L68:L143 +extern long double (____j0l_939) (long double );// L76:L247 +extern long double (__j1l_940) (long double );// L68:L143 +extern long double (____j1l_941) (long double );// L76:L248 +extern long double (__jnl_942) (int , long double );// L68:L143 +extern long double (____jnl_943) (int , long double );// L76:L249 +extern long double (__y0l_944) (long double );// L68:L143 +extern long double (____y0l_945) (long double );// L76:L250 +extern long double (__y1l_946) (long double );// L68:L143 +extern long double (____y1l_947) (long double );// L76:L251 +extern long double (__ynl_948) (int , long double );// L68:L143 +extern long double (____ynl_949) (int , long double );// L76:L252 +extern long double (__erfl_950) (long double );// L68:L143 +extern long double (__erfl_951) (long double );// L68:L143 +extern long double (____erfl_952) (long double );// L76:L259 +extern long double (__erfcl_953) (long double );// L68:L143 +extern long double (____erfcl_954) (long double );// L76:L260 +extern long double (__lgammal_955) (long double );// L68:L143 +extern long double (____lgammal_956) (long double );// L76:L261 +extern long double (__tgammal_957) (long double );// L68:L143 +extern long double (____tgammal_958) (long double );// L76:L268 +extern long double (__gammal_959) (long double );// L68:L143 +extern long double (____gammal_960) (long double );// L76:L274 +extern long double (__lgammal_r_962) (long double , int * (____signgamp_961));// L68:L143 +extern long double (____lgammal_r_964) (long double , int * (____signgamp_963));// L76:L281 +extern long double (__rintl_966) (long double ____x_965);// L68:L143 +extern long double (__rintl_967) (long double ____x_965);// L68:L143 +extern long double (____rintl_969) (long double ____x_968);// L76:L289 +extern long double (__nextafterl_972) (long double ____x_970, long double ____y_971);// L73:L143 +extern long double (____nextafterl_975) (long double ____x_973, long double ____y_974);// L76:L292 +extern long double (__nexttowardl_978) (long double ____x_976, long double ____y_977);// L73:L143 +extern long double (____nexttowardl_981) (long double ____x_979, long double ____y_980);// L76:L294 +extern long double (__remainderl_984) (long double ____x_982, long double ____y_983);// L68:L143 +extern long double (____remainderl_987) (long double ____x_985, long double ____y_986);// L76:L298 +extern long double (__scalbnl_990) (long double ____x_988, int ____n_989);// L68:L143 +extern long double (____scalbnl_993) (long double ____x_991, int ____n_992);// L76:L302 +extern int (__ilogbl_995) (long double ____x_994);// L68:L306 +extern int (____ilogbl_997) (long double ____x_996);// L76:L306 +extern long double (__scalblnl_1000) (long double ____x_998, long int ____n_999);// L68:L143 +extern long double (____scalblnl_1003) (long double ____x_1001, long int ____n_1002);// L76:L311 +extern long double (__nearbyintl_1005) (long double ____x_1004);// L68:L143 +extern long double (____nearbyintl_1007) (long double ____x_1006);// L76:L315 +extern long double (__roundl_1009) (long double ____x_1008);// L73:L143 +extern long double (____roundl_1011) (long double ____x_1010);// L76:L319 +extern long double (__truncl_1013) (long double ____x_1012);// L73:L143 +extern long double (____truncl_1015) (long double ____x_1014);// L76:L323 +extern long double (__remquol_1019) (long double ____x_1016, long double ____y_1017, int * (____quo_1018));// L68:L143 +extern long double (____remquol_1023) (long double ____x_1020, long double ____y_1021, int * (____quo_1022));// L76:L328 +extern long int (__lrintl_1025) (long double ____x_1024);// L68:L335 +extern long int (____lrintl_1027) (long double ____x_1026);// L76:L335 +extern long long int (__llrintl_1029) (long double ____x_1028);// L68:L337 +extern long long int (____llrintl_1031) (long double ____x_1030);// L76:L337 +extern long int (__lroundl_1033) (long double ____x_1032);// L68:L341 +extern long int (____lroundl_1035) (long double ____x_1034);// L76:L341 +extern long long int (__llroundl_1037) (long double ____x_1036);// L68:L343 +extern long long int (____llroundl_1039) (long double ____x_1038);// L76:L343 +extern long double (__fdiml_1042) (long double ____x_1040, long double ____y_1041);// L68:L143 +extern long double (____fdiml_1045) (long double ____x_1043, long double ____y_1044);// L76:L347 +extern long double (__fmaxl_1048) (long double ____x_1046, long double ____y_1047);// L73:L143 +extern long double (____fmaxl_1051) (long double ____x_1049, long double ____y_1050);// L76:L350 +extern long double (__fminl_1054) (long double ____x_1052, long double ____y_1053);// L73:L143 +extern long double (____fminl_1057) (long double ____x_1055, long double ____y_1056);// L76:L353 +extern int (____fpclassifyl_1059) (long double ____value_1058);// L76:L358 +extern int (____signbitl_1061) (long double ____value_1060);// L76:L362 +extern long double (__fmal_1065) (long double ____x_1062, long double ____y_1063, long double ____z_1064);// L68:L143 +extern long double (____fmal_1069) (long double ____x_1066, long double ____y_1067, long double ____z_1068);// L76:L366 +extern long double (__scalbl_1072) (long double ____x_1070, long double ____n_1071);// L68:L143 +extern long double (____scalbl_1075) (long double ____x_1073, long double ____n_1074);// L76:L383 +extern int __signgam_1076;// L168 +enum ____anonymous_tag_1083_1084 ;// L209 +// typedef moved to top of scope +extern ___LIB_VERSION_TYPE_1092 ___LIB_VERSION_1093;// L359 +struct __exception_1094 ;// L372 +extern int (__matherr_1101) (struct __exception_1094 * (____exc_1100));// L385 +static __inline__ void (___delay_us_1103) (double ____us_1102);// L86 +static __inline__ void (___delay_ms_1105) (double ____ms_1104);// L87 +void (___delay_ms_1111) (double ____ms_1106) { + +if (__static_condition_default_1112) { + +{ +{ + + + +double ____tmp_1107;// L168 + +__uint32_t_6 ____ticks_dc_1108;// L172 + +extern void (____builtin_avr_delay_cycles_1109) (unsigned long );// L173 + +if (__static_condition_default_1113) { + ____tmp_1107 = ( ( 1000000UL ) / 1e3 ) * ____ms_1106 ; // L174 +} +if (__static_condition_default_1114) { +__static_type_error("type error : no valid expression"); // L174 +} +if (__static_condition_default_1115) { + ____ticks_dc_1108 = ( __uint32_t_6 ) ( __fabs_259 ( ____tmp_1107 ) + 0.5 ) ; // L180 +} +if (__static_condition_default_1116) { + ____ticks_dc_1108 = ( __uint32_t_6 ) __fabs_259 ( ____tmp_1107 ) ; // L177 +} +if (__static_condition_default_1117) { + ____ticks_dc_1108 = ( __uint32_t_6 ) ( __ceil_255 ( __fabs_259 ( ____tmp_1107 )) ) ; // L184 +} +__uint16_t_5 ____ticks_1110;// L190 + +if (__static_condition_default_1118) { + ____tmp_1107 = ( ( 1000000UL ) / 4e3 ) * ____ms_1106 ; // L191 +} +if (__static_condition_default_1119) { +__static_type_error("type error : no valid expression"); // L191 +} +if (__static_condition_default_1120) { +if ( ____tmp_1107 < 1.0 )// L192 +{ +if (__static_condition_default_1121) { + ____ticks_1110 = 1 ; // L193 +} +} +else +{ +if (__static_condition_default_1122) { +if ( ____tmp_1107 > 65535 )// L194 +{ +if (__static_condition_default_1123) { + +{ +{ + + + + ____ticks_1110 = ( __uint16_t_5 ) ( ____ms_1106 * 10.0 ) ; // L197 +while ( ____ticks_1110 )// L198 +{ + +{ +{ + + + +if (__static_condition_default_1124) { + ___delay_loop_2_121 (( ( 1000000UL ) / 4e3 ) / 10) ; // L201 +} +if (__static_condition_default_1125) { +__static_type_error("type error : no valid expression"); // L201 +} + ____ticks_1110 -- ; // L202 +} +} +} +return ;// L204 +} +} +} +} +else +{ +if (__static_condition_default_1126) { + ____ticks_1110 = ( __uint16_t_5 ) ____tmp_1107 ; // L207 +} +} +} +} +} +if (__static_condition_default_1127) { + ____builtin_avr_delay_cycles_1109 ( ____ticks_dc_1108 ) ; // L187 +} +if (__static_condition_default_1128) { + ___delay_loop_2_121 ( ____ticks_1110 ) ; // L208 +} +} +} + + +} +} +void (___delay_ms_1105) (double ____ms_1106) { + +if (__static_condition_default_1129) { + +{ +{ + + + +double ____tmp_1107;// L168 + +__uint32_t_6 ____ticks_dc_1108;// L172 + +extern void (____builtin_avr_delay_cycles_1109) (unsigned long );// L173 + +if (__static_condition_default_1130) { + ____tmp_1107 = ( ( 1000000UL ) / 1e3 ) * ____ms_1106 ; // L174 +} +if (__static_condition_default_1131) { +__static_type_error("type error : no valid expression"); // L174 +} +if (__static_condition_default_1132) { + ____ticks_dc_1108 = ( __uint32_t_6 ) ( __fabs_259 ( ____tmp_1107 ) + 0.5 ) ; // L180 +} +if (__static_condition_default_1133) { + ____ticks_dc_1108 = ( __uint32_t_6 ) __fabs_259 ( ____tmp_1107 ) ; // L177 +} +if (__static_condition_default_1134) { + ____ticks_dc_1108 = ( __uint32_t_6 ) ( __ceil_255 ( __fabs_259 ( ____tmp_1107 )) ) ; // L184 +} +__uint16_t_5 ____ticks_1110;// L190 + +if (__static_condition_default_1135) { + ____tmp_1107 = ( ( 1000000UL ) / 4e3 ) * ____ms_1106 ; // L191 +} +if (__static_condition_default_1136) { +__static_type_error("type error : no valid expression"); // L191 +} +if (__static_condition_default_1137) { +if ( ____tmp_1107 < 1.0 )// L192 +{ +if (__static_condition_default_1138) { + ____ticks_1110 = 1 ; // L193 +} +} +else +{ +if (__static_condition_default_1139) { +if ( ____tmp_1107 > 65535 )// L194 +{ +if (__static_condition_default_1140) { + +{ +{ + + + + ____ticks_1110 = ( __uint16_t_5 ) ( ____ms_1106 * 10.0 ) ; // L197 +while ( ____ticks_1110 )// L198 +{ + +{ +{ + + + +if (__static_condition_default_1141) { + ___delay_loop_2_115 (( ( 1000000UL ) / 4e3 ) / 10) ; // L201 +} +if (__static_condition_default_1142) { +__static_type_error("type error : no valid expression"); // L201 +} + ____ticks_1110 -- ; // L202 +} +} +} +return ;// L204 +} +} +} +} +else +{ +if (__static_condition_default_1143) { + ____ticks_1110 = ( __uint16_t_5 ) ____tmp_1107 ; // L207 +} +} +} +} +} +if (__static_condition_default_1144) { + ____builtin_avr_delay_cycles_1109 ( ____ticks_dc_1108 ) ; // L187 +} +if (__static_condition_default_1145) { + ___delay_loop_2_115 ( ____ticks_1110 ) ; // L208 +} +} +} + + +} +} +void (___delay_us_1103) (double ____us_1146) { + +if (__static_condition_default_1129) { + +{ +{ + + + +double ____tmp_1147;// L257 + +__uint32_t_6 ____ticks_dc_1148;// L261 + +extern void (____builtin_avr_delay_cycles_1149) (unsigned long );// L262 + +if (__static_condition_default_1154) { + ____tmp_1147 = ( ( 1000000UL ) / 1e6 ) * ____us_1146 ; // L263 +} +if (__static_condition_default_1155) { +__static_type_error("type error : no valid expression"); // L263 +} +if (__static_condition_default_1156) { + ____ticks_dc_1148 = ( __uint32_t_6 ) ( __fabs_259 ( ____tmp_1147 ) + 0.5 ) ; // L269 +} +if (__static_condition_default_1157) { + ____ticks_dc_1148 = ( __uint32_t_6 ) __fabs_259 ( ____tmp_1147 ) ; // L266 +} +if (__static_condition_default_1158) { + ____ticks_dc_1148 = ( __uint32_t_6 ) ( __ceil_255 ( __fabs_259 ( ____tmp_1147 )) ) ; // L273 +} +__uint8_t_4 ____ticks_1150;// L279 + +double ____tmp2_1151;// L280 + +if (__static_condition_default_1159) { + ____tmp_1147 = ( ( 1000000UL ) / 3e6 ) * ____us_1146 ; // L281 +} +if (__static_condition_default_1160) { +__static_type_error("type error : no valid expression"); // L281 +} +if (__static_condition_default_1161) { + ____tmp2_1151 = ( ( 1000000UL ) / 4e6 ) * ____us_1146 ; // L282 +} +if (__static_condition_default_1162) { +__static_type_error("type error : no valid expression"); // L282 +} +if (__static_condition_default_1163) { +if ( ____tmp_1147 < 1.0 )// L283 +{ +if (__static_condition_default_1164) { + ____ticks_1150 = 1 ; // L284 +} +} +else +{ +if (__static_condition_default_1165) { +if ( ____tmp2_1151 > 65535 )// L285 +{ +if (__static_condition_default_1166) { + +{ +{ + + + + ___delay_ms_1105 ( ____us_1146 / 1000.0) ; // L287 +} +} +} +} +else +{ +if (__static_condition_default_1167) { +if ( ____tmp_1147 > 255 )// L289 +{ +if (__static_condition_default_1168) { + +{ +{ + + + +__uint16_t_5 ____ticks_1152= ( __uint16_t_5 ) ____tmp2_1151 ;// L291 + + ___delay_loop_2_115 ( ____ticks_1152 ) ; // L292 +return ;// L293 +} +} +} +} +else +{ +if (__static_condition_default_1169) { + ____ticks_1150 = ( __uint8_t_4 ) ____tmp_1147 ; // L296 +} +} +} +} +} +} +} +if (__static_condition_default_1170) { + ____builtin_avr_delay_cycles_1149 ( ____ticks_dc_1148 ) ; // L276 +} +if (__static_condition_default_1171) { + ___delay_loop_1_113 ( ____ticks_1150 ) ; // L297 +} +} +} + + +} +} +void (___delay_us_1153) (double ____us_1146) { + +if (__static_condition_default_1172) { + +{ +{ + + + +double ____tmp_1147;// L257 + +__uint32_t_6 ____ticks_dc_1148;// L261 + +extern void (____builtin_avr_delay_cycles_1149) (unsigned long );// L262 + +if (__static_condition_default_1173) { + ____tmp_1147 = ( ( 1000000UL ) / 1e6 ) * ____us_1146 ; // L263 +} +if (__static_condition_default_1174) { +__static_type_error("type error : no valid expression"); // L263 +} +if (__static_condition_default_1175) { + ____ticks_dc_1148 = ( __uint32_t_6 ) ( __fabs_259 ( ____tmp_1147 ) + 0.5 ) ; // L269 +} +if (__static_condition_default_1176) { + ____ticks_dc_1148 = ( __uint32_t_6 ) __fabs_259 ( ____tmp_1147 ) ; // L266 +} +if (__static_condition_default_1177) { + ____ticks_dc_1148 = ( __uint32_t_6 ) ( __ceil_255 ( __fabs_259 ( ____tmp_1147 )) ) ; // L273 +} +__uint8_t_4 ____ticks_1150;// L279 + +double ____tmp2_1151;// L280 + +if (__static_condition_default_1178) { + ____tmp_1147 = ( ( 1000000UL ) / 3e6 ) * ____us_1146 ; // L281 +} +if (__static_condition_default_1179) { +__static_type_error("type error : no valid expression"); // L281 +} +if (__static_condition_default_1180) { + ____tmp2_1151 = ( ( 1000000UL ) / 4e6 ) * ____us_1146 ; // L282 +} +if (__static_condition_default_1181) { +__static_type_error("type error : no valid expression"); // L282 +} +if (__static_condition_default_1182) { +if ( ____tmp_1147 < 1.0 )// L283 +{ +if (__static_condition_default_1183) { + ____ticks_1150 = 1 ; // L284 +} +} +else +{ +if (__static_condition_default_1184) { +if ( ____tmp2_1151 > 65535 )// L285 +{ +if (__static_condition_default_1185) { + +{ +{ + + + + ___delay_ms_1111 ( ____us_1146 / 1000.0) ; // L287 +} +} +} +} +else +{ +if (__static_condition_default_1186) { +if ( ____tmp_1147 > 255 )// L289 +{ +if (__static_condition_default_1187) { + +{ +{ + + + +__uint16_t_5 ____ticks_1152= ( __uint16_t_5 ) ____tmp2_1151 ;// L291 + + ___delay_loop_2_121 ( ____ticks_1152 ) ; // L292 +return ;// L293 +} +} +} +} +else +{ +if (__static_condition_default_1188) { + ____ticks_1150 = ( __uint8_t_4 ) ____tmp_1147 ; // L296 +} +} +} +} +} +} +} +if (__static_condition_default_1189) { + ____builtin_avr_delay_cycles_1149 ( ____ticks_dc_1148 ) ; // L276 +} +if (__static_condition_default_1190) { + ___delay_loop_1_117 ( ____ticks_1150 ) ; // L297 +} +} +} + + +} +} +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope @@ -939,225 +2859,246 @@ union { // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_57 ;// L0 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_83 ;// L0 -struct __forward_tag_reference_83 ;// L0 -struct __forward_tag_reference_57 ;// L0 // typedef moved to top of scope -struct ___IO_marker_86 ;// L156 -enum ____codecvt_result_94 ;// L176 -struct ___IO_FILE_95 ;// L241 - -struct ___IO_FILE_119 ;// L241 -struct ___IO_FILE_complete_150 ;// L241 - // typedef moved to top of scope // typedef moved to top of scope -struct __forward_tag_reference_166 ;// L0 -extern struct __forward_tag_reference_166 ___IO_2_1_stdin__167;// L315 -extern struct __forward_tag_reference_166 ___IO_2_1_stdout__168;// L316 -extern struct __forward_tag_reference_166 ___IO_2_1_stderr__169;// L317 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern int (____underflow_184) (___IO_FILE_163 *);// L385 -extern int (____underflow_185) (___IO_FILE_164 *);// L385 -extern int (____uflow_186) (___IO_FILE_163 *);// L386 -extern int (____uflow_187) (___IO_FILE_164 *);// L386 -extern int (____overflow_188) (___IO_FILE_163 *, int );// L387 -extern int (____overflow_189) (___IO_FILE_164 *, int );// L387 -extern int (___IO_getc_193) (___IO_FILE_163 * (____fp_190));// L429 -extern int (___IO_getc_194) (___IO_FILE_164 * (____fp_191));// L429 -extern int (___IO_putc_199) (int ____c_195, ___IO_FILE_163 * (____fp_196));// L430 -extern int (___IO_putc_200) (int ____c_195, ___IO_FILE_164 * (____fp_197));// L430 -extern int (___IO_feof_204) (___IO_FILE_163 * (____fp_201));// L431 -extern int (___IO_feof_205) (___IO_FILE_164 * (____fp_202));// L431 -extern int (___IO_ferror_209) (___IO_FILE_163 * (____fp_206));// L432 -extern int (___IO_ferror_210) (___IO_FILE_164 * (____fp_207));// L432 -extern int (___IO_peekc_locked_214) (___IO_FILE_163 * (____fp_211));// L434 -extern int (___IO_peekc_locked_215) (___IO_FILE_164 * (____fp_212));// L434 -extern void (___IO_flockfile_216) (___IO_FILE_163 *);// L440 -extern void (___IO_flockfile_217) (___IO_FILE_164 *);// L440 -extern void (___IO_funlockfile_218) (___IO_FILE_163 *);// L441 -extern void (___IO_funlockfile_219) (___IO_FILE_164 *);// L441 -extern int (___IO_ftrylockfile_220) (___IO_FILE_163 *);// L442 -extern int (___IO_ftrylockfile_221) (___IO_FILE_164 *);// L442 -extern int (___IO_vfscanf_222) (___IO_FILE_163 * __restrict , const char * __restrict , ____gnuc_va_list_82 , int * __restrict );// L459:L460 -extern int (___IO_vfscanf_224) (___IO_FILE_164 * __restrict , const char * __restrict , ____gnuc_va_list_82 , int * __restrict );// L459:L460 - - -extern int (___IO_vfprintf_231) (___IO_FILE_163 * __restrict , const char * __restrict , ____gnuc_va_list_82 );// L461:L462 -extern int (___IO_vfprintf_233) (___IO_FILE_164 * __restrict , const char * __restrict , ____gnuc_va_list_82 );// L461:L462 - -extern ____ssize_t_49 (___IO_padn_238) (___IO_FILE_163 *, int , ____ssize_t_49 );// L463 -extern ____ssize_t_49 (___IO_padn_239) (___IO_FILE_164 *, int , ____ssize_t_49 );// L463 -extern __size_t_1 (___IO_sgetn_240) (___IO_FILE_163 *, void *, __size_t_1 );// L464 -extern __size_t_1 (___IO_sgetn_241) (___IO_FILE_164 *, void *, __size_t_1 );// L464 -extern ____off64_t_24 (___IO_seekoff_242) (___IO_FILE_163 *, ____off64_t_24 , int , int );// L466 -extern ____off64_t_24 (___IO_seekoff_243) (___IO_FILE_164 *, ____off64_t_24 , int , int );// L466 -extern ____off64_t_24 (___IO_seekpos_244) (___IO_FILE_163 *, ____off64_t_24 , int );// L467 -extern ____off64_t_24 (___IO_seekpos_245) (___IO_FILE_164 *, ____off64_t_24 , int );// L467 -extern void (___IO_free_backup_area_246) (___IO_FILE_163 *);// L469 -extern void (___IO_free_backup_area_247) (___IO_FILE_164 *);// L469 // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope // typedef moved to top of scope -extern struct ___IO_FILE_95 * (__stdin_257);// L168 -extern struct ___IO_FILE_119 * (__stdin_258);// L168 -extern struct ___IO_FILE_95 * (__stdout_259);// L169 -extern struct ___IO_FILE_119 * (__stdout_260);// L169 -extern struct ___IO_FILE_95 * (__stderr_261);// L170 -extern struct ___IO_FILE_119 * (__stderr_262);// L170 -extern int (__remove_264) (const char * (____filename_263));// L178 -extern int (__rename_267) (const char * (____old_265), const char * (____new_266));// L180 -extern int (__renameat_272) (int ____oldfd_268, const char * (____old_269), int ____newfd_270, const char * (____new_271));// L185:L186 -extern __FILE_58 * ((__tmpfile_273) (void ));// L195 -extern __FILE_58 * ((__tmpfile_279) (void ));// L198 -extern __FILE_58 * ((__tmpfile_277) (void ));// L198 -extern __FILE_58 * ((__tmpfile_275) (void ));// L195 -extern char * ((__tmpnam_282) (char * (____s_281)));// L209 -extern char * ((__tmpnam_283) (char * (____s_281)));// L209 -extern char * ((__tmpnam_r_285) (char * (____s_284)));// L215 -extern char * ((__tmpnam_r_286) (char * (____s_284)));// L215 -extern char * ((__tempnam_289) (const char * (____dir_287), const char * (____pfx_288)));// L227:L228 -extern char * ((__tempnam_290) (const char * (____dir_287), const char * (____pfx_288)));// L227:L228 -extern int (__fclose_293) (__FILE_58 * (____stream_291));// L237 -extern int (__fclose_295) (__FILE_58 * (____stream_291));// L237 -extern int (__fflush_299) (__FILE_58 * (____stream_297));// L242 -extern int (__fflush_unlocked_303) (__FILE_58 * (____stream_301));// L252 -extern __FILE_58 * ((__fopen_307) (const char * __restrict ____filename_305, const char * __restrict ____modes_306));// L272:L273 -extern __FILE_58 * ((__fopen_309) (const char * __restrict ____filename_305, const char * __restrict ____modes_306));// L272:L273 -extern __FILE_58 * ((__fopen_317) (const char * __restrict ____filename_315, const char * __restrict ____modes_316));// L283:L285 -extern __FILE_58 * ((__fopen_319) (const char * __restrict ____filename_315, const char * __restrict ____modes_316));// L283:L285 -extern __FILE_58 * ((__freopen_325) (const char * __restrict ____filename_311, const char * __restrict ____modes_312, __FILE_58 * __restrict ____stream_313));// L278:L280 -extern __FILE_58 * ((__freopen_331) (const char * __restrict ____filename_321, const char * __restrict ____modes_322, __FILE_58 * __restrict ____stream_323));// L286:L289 -extern __FILE_58 * ((__freopen_329) (const char * __restrict ____filename_321, const char * __restrict ____modes_322, __FILE_58 * __restrict ____stream_323));// L286:L289 -extern __FILE_58 * ((__freopen_327) (const char * __restrict ____filename_311, const char * __restrict ____modes_312, __FILE_58 * __restrict ____stream_313));// L278:L280 -extern __FILE_58 * ((__fdopen_335) (int ____fd_333, const char * (____modes_334)));// L306 -extern __FILE_58 * ((__fdopen_337) (int ____fd_333, const char * (____modes_334)));// L306 -extern __FILE_58 * ((__fmemopen_342) (void * (____s_339), __size_t_1 ____len_340, const char * (____modes_341)));// L319:L320 -extern __FILE_58 * ((__fmemopen_344) (void * (____s_339), __size_t_1 ____len_340, const char * (____modes_341)));// L319:L320 -extern __FILE_58 * ((__open_memstream_348) (char * (* (____bufloc_346)), __size_t_1 * (____sizeloc_347)));// L325 -extern __FILE_58 * ((__open_memstream_350) (char * (* (____bufloc_346)), __size_t_1 * (____sizeloc_347)));// L325 -extern void (__setbuf_355) (__FILE_58 * __restrict ____stream_352, char * __restrict ____buf_354);// L332 -extern void (__setbuf_357) (__FILE_58 * __restrict ____stream_352, char * __restrict ____buf_354);// L332 -extern int (__setvbuf_364) (__FILE_58 * __restrict ____stream_359, char * __restrict ____buf_361, int ____modes_362, __size_t_1 ____n_363);// L336:L337 -extern void (__setbuffer_369) (__FILE_58 * __restrict ____stream_365, char * __restrict ____buf_367, __size_t_1 ____size_368);// L343:L344 -extern void (__setlinebuf_373) (__FILE_58 * (____stream_371));// L347 -extern int (__fprintf_378) (__FILE_58 * __restrict ____stream_375, const char * __restrict ____format_377, ... );// L356:L357 -extern int (__fprintf_380) (__FILE_58 * __restrict ____stream_375, const char * __restrict ____format_377, ... );// L356:L357 -extern int (__printf_383) (const char * __restrict ____format_382, ... );// L362 -extern int (__sprintf_386) (char * __restrict ____s_384, const char * __restrict ____format_385, ... );// L364:L365 -extern int (__vfprintf_392) (__FILE_58 * __restrict ____s_387, const char * __restrict ____format_389, ____gnuc_va_list_82 ____arg_390);// L371:L372 -extern int (__vprintf_399) (const char * __restrict ____format_396, ____gnuc_va_list_82 ____arg_397);// L377 -extern int (__vsprintf_405) (char * __restrict ____s_401, const char * __restrict ____format_402, ____gnuc_va_list_82 ____arg_403);// L379:L380 -extern int (__snprintf_409) (char * __restrict ____s_406, __size_t_1 ____maxlen_407, const char * __restrict ____format_408, ... );// L386:L388 -extern int (__vsnprintf_415) (char * __restrict ____s_410, __size_t_1 ____maxlen_411, const char * __restrict ____format_412, ____gnuc_va_list_82 ____arg_413);// L390:L392 -extern int (__vdprintf_420) (int ____fd_416, const char * __restrict ____fmt_417, ____gnuc_va_list_82 ____arg_418);// L412:L414 -extern int (__dprintf_424) (int ____fd_422, const char * __restrict ____fmt_423, ... );// L415:L416 -extern int (__fscanf_428) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 -extern int (__fscanf_430) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 -extern int (__fscanf_432) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 -extern int (__fscanf_434) (__FILE_58 * __restrict ____stream_425, const char * __restrict ____format_427, ... );// L425:L426 -extern int (__scanf_437) (const char * __restrict ____format_436, ... );// L431 -extern int (__scanf_438) (const char * __restrict ____format_436, ... );// L431 -extern int (__sscanf_441) (const char * __restrict ____s_439, const char * __restrict ____format_440, ... );// L433:L434 - - - - - - - -extern int (__vfscanf_468) (__FILE_58 * __restrict ____s_463, const char * __restrict ____format_465, ____gnuc_va_list_82 ____arg_466);// L471:L473 -extern int (__vfscanf_472) (__FILE_58 * __restrict ____s_463, const char * __restrict ____format_465, ____gnuc_va_list_82 ____arg_466);// L471:L473 -extern int (__vscanf_479) (const char * __restrict ____format_476, ____gnuc_va_list_82 ____arg_477);// L479:L480 -extern int (__vscanf_481) (const char * __restrict ____format_476, ____gnuc_va_list_82 ____arg_477);// L479:L480 -extern int (__vsscanf_487) (const char * __restrict ____s_483, const char * __restrict ____format_484, ____gnuc_va_list_82 ____arg_485);// L483:L485 - - - - - -extern int (__fgetc_520) (__FILE_58 * (____stream_518));// L531 -extern int (__getc_523) (__FILE_58 * (____stream_521));// L532 -extern int (__getchar_524) (void );// L538 -extern int (__getc_unlocked_527) (__FILE_58 * (____stream_525));// L550 -extern int (__getchar_unlocked_529) (void );// L551 -extern int (__fgetc_unlocked_532) (__FILE_58 * (____stream_530));// L561 -extern int (__fputc_537) (int ____c_534, __FILE_58 * (____stream_535));// L573 -extern int (__fputc_539) (int ____c_534, __FILE_58 * (____stream_535));// L573 -extern int (__putc_544) (int ____c_541, __FILE_58 * (____stream_542));// L574 -extern int (__putchar_546) (int ____c_545);// L580 -extern int (__fputc_unlocked_550) (int ____c_547, __FILE_58 * (____stream_548));// L594 -extern int (__putc_unlocked_555) (int ____c_552, __FILE_58 * (____stream_553));// L602 -extern int (__putchar_unlocked_558) (int ____c_557);// L603 -extern int (__getw_561) (__FILE_58 * (____stream_559));// L610 -extern int (__putw_566) (int ____w_563, __FILE_58 * (____stream_564));// L613 -extern char * ((__fgets_572) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 -extern char * ((__fgets_574) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 -extern char * ((__fgets_576) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 -extern char * ((__fgets_578) (char * __restrict ____s_568, int ____n_569, __FILE_58 * __restrict ____stream_570));// L622:L623 -extern ____ssize_t_49 (____getdelim_585) (char * (* __restrict ____lineptr_580), __size_t_1 * __restrict ____n_581, int ____delimiter_582, __FILE_58 * __restrict ____stream_583);// L665:L667 -extern ____ssize_t_49 (____getdelim_587) (char * (* __restrict ____lineptr_580), __size_t_1 * __restrict ____n_581, int ____delimiter_582, __FILE_58 * __restrict ____stream_583);// L665:L667 -extern ____ssize_t_49 (__getdelim_594) (char * (* __restrict ____lineptr_589), __size_t_1 * __restrict ____n_590, int ____delimiter_591, __FILE_58 * __restrict ____stream_592);// L668:L670 -extern ____ssize_t_49 (__getdelim_596) (char * (* __restrict ____lineptr_589), __size_t_1 * __restrict ____n_590, int ____delimiter_591, __FILE_58 * __restrict ____stream_592);// L668:L670 -extern ____ssize_t_49 (__getline_602) (char * (* __restrict ____lineptr_598), __size_t_1 * __restrict ____n_599, __FILE_58 * __restrict ____stream_600);// L678:L680 -extern ____ssize_t_49 (__getline_604) (char * (* __restrict ____lineptr_598), __size_t_1 * __restrict ____n_599, __FILE_58 * __restrict ____stream_600);// L678:L680 -extern int (__fputs_609) (const char * __restrict ____s_606, __FILE_58 * __restrict ____stream_607);// L689 -extern int (__fputs_611) (const char * __restrict ____s_606, __FILE_58 * __restrict ____stream_607);// L689 -extern int (__puts_614) (const char * (____s_613));// L695 -extern int (__ungetc_618) (int ____c_615, __FILE_58 * (____stream_616));// L702 -extern int (__fseek_654) (__FILE_58 * (____stream_650), long int ____off_652, int ____whence_653);// L749 -extern int (__fseek_656) (__FILE_58 * (____stream_650), long int ____off_652, int ____whence_653);// L749 -extern long int (__ftell_660) (__FILE_58 * (____stream_658));// L754 -extern long int (__ftell_662) (__FILE_58 * (____stream_658));// L754 -extern void (__rewind_666) (__FILE_58 * (____stream_664));// L759 -extern int (__fseeko_671) (__FILE_58 * (____stream_667), ____off_t_23 ____off_669, int ____whence_670);// L773 -extern int (__fseeko_679) (__FILE_58 * (____stream_675), ____off64_t_24 ____off_677, int ____whence_678);// L781:L783 -extern ____off_t_23 (__ftello_683) (__FILE_58 * (____stream_673));// L778 -extern ____off_t_23 (__ftello_685) (__FILE_58 * (____stream_673));// L778 -extern int (__fgetpos_693) (__FILE_58 * __restrict ____stream_689, __fpos_t_253 * __restrict ____pos_691);// L798 -extern ____off64_t_24 (__ftello_687) (__FILE_58 * (____stream_681));// L784 -extern int (__fgetpos_705) (__FILE_58 * __restrict ____stream_701, __fpos_t_255 * __restrict ____pos_703);// L806:L807 -extern int (__fsetpos_713) (__FILE_58 * (____stream_697), const __fpos_t_253 * (____pos_699));// L803 -extern int (__fsetpos_717) (__FILE_58 * (____stream_709), const __fpos_t_255 * (____pos_711));// L808:L809 -extern void (__clearerr_723) (__FILE_58 * (____stream_721));// L826 -extern int (__feof_726) (__FILE_58 * (____stream_724));// L828 -extern int (__feof_728) (__FILE_58 * (____stream_724));// L828 -extern int (__ferror_732) (__FILE_58 * (____stream_730));// L830 -extern int (__ferror_734) (__FILE_58 * (____stream_730));// L830 -extern void (__clearerr_unlocked_738) (__FILE_58 * (____stream_736));// L835 -extern int (__feof_unlocked_742) (__FILE_58 * (____stream_740));// L836 -extern int (__feof_unlocked_744) (__FILE_58 * (____stream_740));// L836 -extern int (__ferror_unlocked_748) (__FILE_58 * (____stream_746));// L837 -extern int (__ferror_unlocked_750) (__FILE_58 * (____stream_746));// L837 -extern void (__perror_753) (const char * (____s_752));// L846 -extern void (__perror_754) (const char * (____s_752));// L846 -extern int __sys_nerr_755;// L26 - -extern int (__fileno_761) (__FILE_58 * (____stream_757));// L858 -extern int (__fileno_759) (__FILE_58 * (____stream_757));// L858 -extern int (__fileno_unlocked_767) (__FILE_58 * (____stream_763));// L863 -extern int (__fileno_unlocked_765) (__FILE_58 * (____stream_763));// L863 -extern __FILE_58 * ((__popen_771) (const char * (____command_769), const char * (____modes_770)));// L872 -extern __FILE_58 * ((__popen_773) (const char * (____command_769), const char * (____modes_770)));// L872 -extern int (__pclose_777) (__FILE_58 * (____stream_775));// L878 -extern char * ((__ctermid_780) (char * (____s_779)));// L884 -extern void (__flockfile_783) (__FILE_58 * (____stream_781));// L912 -extern int (__ftrylockfile_787) (__FILE_58 * (____stream_785));// L916 -extern int (__ftrylockfile_789) (__FILE_58 * (____stream_785));// L916 -extern void (__funlockfile_793) (__FILE_58 * (____stream_791));// L919 +// typedef moved to top of scope +// typedef moved to top of scope +struct __forward_tag_reference_1249 ;// L0 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +struct __forward_tag_reference_1278 ;// L0 +struct __forward_tag_reference_1278 ;// L0 +struct __forward_tag_reference_1249 ;// L0 +// typedef moved to top of scope +struct ___IO_marker_1281 ;// L156 +enum ____codecvt_result_1289 ;// L176 +struct ___IO_FILE_1290 ;// L241 + +struct ___IO_FILE_1315 ;// L241 +struct ___IO_FILE_complete_1348 ;// L241 + +// typedef moved to top of scope +// typedef moved to top of scope +struct __forward_tag_reference_1365 ;// L0 +extern struct __forward_tag_reference_1365 ___IO_2_1_stdin__1366;// L315 +extern struct __forward_tag_reference_1365 ___IO_2_1_stdout__1367;// L316 +extern struct __forward_tag_reference_1365 ___IO_2_1_stderr__1368;// L317 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern int (____underflow_1387) (___IO_FILE_1362 *);// L385 +extern int (____underflow_1388) (___IO_FILE_1363 *);// L385 +extern int (____uflow_1390) (___IO_FILE_1362 *);// L386 +extern int (____uflow_1391) (___IO_FILE_1363 *);// L386 +extern int (____overflow_1393) (___IO_FILE_1362 *, int );// L387 +extern int (____overflow_1394) (___IO_FILE_1363 *, int );// L387 +extern int (___IO_getc_1399) (___IO_FILE_1362 * (____fp_1396));// L429 +extern int (___IO_getc_1400) (___IO_FILE_1363 * (____fp_1397));// L429 +extern int (___IO_putc_1406) (int ____c_1402, ___IO_FILE_1362 * (____fp_1403));// L430 +extern int (___IO_putc_1407) (int ____c_1402, ___IO_FILE_1363 * (____fp_1404));// L430 +extern int (___IO_feof_1412) (___IO_FILE_1362 * (____fp_1409));// L431 +extern int (___IO_feof_1413) (___IO_FILE_1363 * (____fp_1410));// L431 +extern int (___IO_ferror_1418) (___IO_FILE_1362 * (____fp_1415));// L432 +extern int (___IO_ferror_1419) (___IO_FILE_1363 * (____fp_1416));// L432 +extern int (___IO_peekc_locked_1424) (___IO_FILE_1362 * (____fp_1421));// L434 +extern int (___IO_peekc_locked_1425) (___IO_FILE_1363 * (____fp_1422));// L434 +extern void (___IO_flockfile_1427) (___IO_FILE_1362 *);// L440 +extern void (___IO_flockfile_1428) (___IO_FILE_1363 *);// L440 +extern void (___IO_funlockfile_1430) (___IO_FILE_1362 *);// L441 +extern void (___IO_funlockfile_1431) (___IO_FILE_1363 *);// L441 +extern int (___IO_ftrylockfile_1433) (___IO_FILE_1362 *);// L442 +extern int (___IO_ftrylockfile_1434) (___IO_FILE_1363 *);// L442 +extern int (___IO_vfscanf_1436) (___IO_FILE_1362 * __restrict , const char * __restrict , ____gnuc_va_list_1277 , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_1438) (___IO_FILE_1363 * __restrict , const char * __restrict , ____gnuc_va_list_1277 , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_1442) (___IO_FILE_1362 * __restrict , const char * __restrict , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_1443) (___IO_FILE_1363 * __restrict , const char * __restrict , int * __restrict );// L459:L460 +extern int (___IO_vfprintf_1445) (___IO_FILE_1362 * __restrict , const char * __restrict , ____gnuc_va_list_1277 );// L461:L462 +extern int (___IO_vfprintf_1447) (___IO_FILE_1363 * __restrict , const char * __restrict , ____gnuc_va_list_1277 );// L461:L462 +extern int (___IO_vfprintf_1451) ();// L461:L462 +extern ____ssize_t_1240 (___IO_padn_1452) (___IO_FILE_1362 *, int , ____ssize_t_1240 );// L463 +extern ____ssize_t_1240 (___IO_padn_1453) (___IO_FILE_1363 *, int , ____ssize_t_1240 );// L463 +extern __size_t_1192 (___IO_sgetn_1456) (___IO_FILE_1362 *, void *, __size_t_1192 );// L464 +extern __size_t_1192 (___IO_sgetn_1457) (___IO_FILE_1363 *, void *, __size_t_1192 );// L464 +extern ____off64_t_1215 (___IO_seekoff_1459) (___IO_FILE_1362 *, ____off64_t_1215 , int , int );// L466 +extern ____off64_t_1215 (___IO_seekoff_1460) (___IO_FILE_1363 *, ____off64_t_1215 , int , int );// L466 +extern ____off64_t_1215 (___IO_seekpos_1463) (___IO_FILE_1362 *, ____off64_t_1215 , int );// L467 +extern ____off64_t_1215 (___IO_seekpos_1464) (___IO_FILE_1363 *, ____off64_t_1215 , int );// L467 +extern void (___IO_free_backup_area_1467) (___IO_FILE_1362 *);// L469 +extern void (___IO_free_backup_area_1468) (___IO_FILE_1363 *);// L469 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern struct ___IO_FILE_1290 * (__stdin_1482);// L168 +extern struct ___IO_FILE_1315 * (__stdin_1483);// L168 +extern struct ___IO_FILE_1290 * (__stdout_1485);// L169 +extern struct ___IO_FILE_1315 * (__stdout_1486);// L169 +extern struct ___IO_FILE_1290 * (__stderr_1488);// L170 +extern struct ___IO_FILE_1315 * (__stderr_1489);// L170 +extern int (__remove_1492) (const char * (____filename_1491));// L178 +extern int (__rename_1495) (const char * (____old_1493), const char * (____new_1494));// L180 +extern int (__renameat_1500) (int ____oldfd_1496, const char * (____old_1497), int ____newfd_1498, const char * (____new_1499));// L185:L186 +extern __FILE_1250 * ((__tmpfile_1501) (void ));// L195 +extern __FILE_1250 * ((__tmpfile_1507) (void ));// L198 +extern __FILE_1250 * ((__tmpfile_1505) (void ));// L195 +extern __FILE_1250 * ((__tmpfile_1503) (void ));// L198 +extern char * ((__tmpnam_1510) (char * (____s_1509)));// L209 +extern char * ((__tmpnam_1511) (char * (____s_1509)));// L209 +extern char * ((__tmpnam_r_1513) (char * (____s_1512)));// L215 +extern char * ((__tmpnam_r_1514) (char * (____s_1512)));// L215 +extern char * ((__tempnam_1517) (const char * (____dir_1515), const char * (____pfx_1516)));// L227:L228 +extern char * ((__tempnam_1518) (const char * (____dir_1515), const char * (____pfx_1516)));// L227:L228 +extern int (__fclose_1521) (__FILE_1250 * (____stream_1519));// L237 +extern int (__fclose_1523) (__FILE_1250 * (____stream_1519));// L237 +extern int (__fflush_1527) (__FILE_1250 * (____stream_1525));// L242 +extern int (__fflush_unlocked_1531) (__FILE_1250 * (____stream_1529));// L252 +extern __FILE_1250 * ((__fopen_1535) (const char * __restrict ____filename_1533, const char * __restrict ____modes_1534));// L272:L273 +extern __FILE_1250 * ((__fopen_1537) (const char * __restrict ____filename_1533, const char * __restrict ____modes_1534));// L272:L273 +extern __FILE_1250 * ((__fopen_1545) (const char * __restrict ____filename_1543, const char * __restrict ____modes_1544));// L283:L285 +extern __FILE_1250 * ((__fopen_1547) (const char * __restrict ____filename_1543, const char * __restrict ____modes_1544));// L283:L285 +extern __FILE_1250 * ((__freopen_1553) (const char * __restrict ____filename_1539, const char * __restrict ____modes_1540, __FILE_1250 * __restrict ____stream_1541));// L278:L280 +extern __FILE_1250 * ((__freopen_1559) (const char * __restrict ____filename_1539, const char * __restrict ____modes_1540, __FILE_1250 * __restrict ____stream_1541));// L278:L280 +extern __FILE_1250 * ((__freopen_1557) (const char * __restrict ____filename_1549, const char * __restrict ____modes_1550, __FILE_1250 * __restrict ____stream_1551));// L286:L289 +extern __FILE_1250 * ((__freopen_1555) (const char * __restrict ____filename_1549, const char * __restrict ____modes_1550, __FILE_1250 * __restrict ____stream_1551));// L286:L289 +extern __FILE_1250 * ((__fdopen_1563) (int ____fd_1561, const char * (____modes_1562)));// L306 +extern __FILE_1250 * ((__fdopen_1565) (int ____fd_1561, const char * (____modes_1562)));// L306 +extern __FILE_1250 * ((__fmemopen_1570) (void * (____s_1567), __size_t_1192 ____len_1568, const char * (____modes_1569)));// L319:L320 +extern __FILE_1250 * ((__fmemopen_1572) (void * (____s_1567), __size_t_1192 ____len_1568, const char * (____modes_1569)));// L319:L320 +extern __FILE_1250 * ((__open_memstream_1576) (char * (* (____bufloc_1574)), __size_t_1192 * (____sizeloc_1575)));// L325 +extern __FILE_1250 * ((__open_memstream_1578) (char * (* (____bufloc_1574)), __size_t_1192 * (____sizeloc_1575)));// L325 +extern void (__setbuf_1583) (__FILE_1250 * __restrict ____stream_1580, char * __restrict ____buf_1582);// L332 +extern void (__setbuf_1585) (__FILE_1250 * __restrict ____stream_1580, char * __restrict ____buf_1582);// L332 +extern int (__setvbuf_1592) (__FILE_1250 * __restrict ____stream_1587, char * __restrict ____buf_1589, int ____modes_1590, __size_t_1192 ____n_1591);// L336:L337 +extern void (__setbuffer_1598) (__FILE_1250 * __restrict ____stream_1594, char * __restrict ____buf_1596, __size_t_1192 ____size_1597);// L343:L344 +extern void (__setlinebuf_1602) (__FILE_1250 * (____stream_1600));// L347 +extern int (__fprintf_1607) (__FILE_1250 * __restrict ____stream_1604, const char * __restrict ____format_1606, ... );// L356:L357 +extern int (__fprintf_1609) (__FILE_1250 * __restrict ____stream_1604, const char * __restrict ____format_1606, ... );// L356:L357 +extern int (__printf_1612) (const char * __restrict ____format_1611, ... );// L362 +extern int (__sprintf_1615) (char * __restrict ____s_1613, const char * __restrict ____format_1614, ... );// L364:L365 +extern int (__vfprintf_1621) (__FILE_1250 * __restrict ____s_1616, const char * __restrict ____format_1618, ____gnuc_va_list_1277 ____arg_1619);// L371:L372 +extern int (__vprintf_1628) (const char * __restrict ____format_1625, ____gnuc_va_list_1277 ____arg_1626);// L377 +extern int (__vsprintf_1634) (char * __restrict ____s_1630, const char * __restrict ____format_1631, ____gnuc_va_list_1277 ____arg_1632);// L379:L380 +extern int (__snprintf_1639) (char * __restrict ____s_1636, __size_t_1192 ____maxlen_1637, const char * __restrict ____format_1638, ... );// L386:L388 +extern int (__vsnprintf_1645) (char * __restrict ____s_1640, __size_t_1192 ____maxlen_1641, const char * __restrict ____format_1642, ____gnuc_va_list_1277 ____arg_1643);// L390:L392 +extern int (__vdprintf_1651) (int ____fd_1647, const char * __restrict ____fmt_1648, ____gnuc_va_list_1277 ____arg_1649);// L412:L414 +extern int (__dprintf_1655) (int ____fd_1653, const char * __restrict ____fmt_1654, ... );// L415:L416 +extern int (__fscanf_1659) (__FILE_1250 * __restrict ____stream_1656, const char * __restrict ____format_1658, ... );// L425:L426 +extern int (__fscanf_1661) (__FILE_1250 * __restrict ____stream_1656, const char * __restrict ____format_1658, ... );// L425:L426 +extern int (__fscanf_1663) (__FILE_1250 * __restrict ____stream_1656, const char * __restrict ____format_1658, ... );// L425:L426 +extern int (__fscanf_1665) (__FILE_1250 * __restrict ____stream_1656, const char * __restrict ____format_1658, ... );// L425:L426 +extern int (__scanf_1668) (const char * __restrict ____format_1667, ... );// L431 +extern int (__scanf_1669) (const char * __restrict ____format_1667, ... );// L431 +extern int (__sscanf_1672) (const char * __restrict ____s_1670, const char * __restrict ____format_1671, ... );// L433:L434 + + + + + + + +extern int (__vfscanf_1700) (__FILE_1250 * __restrict ____s_1695, const char * __restrict ____format_1697, ____gnuc_va_list_1277 ____arg_1698);// L471:L473 +extern int (__vfscanf_1704) (__FILE_1250 * __restrict ____s_1695, const char * __restrict ____format_1697, ____gnuc_va_list_1277 ____arg_1698);// L471:L473 +extern int (__vscanf_1711) (const char * __restrict ____format_1708, ____gnuc_va_list_1277 ____arg_1709);// L479:L480 +extern int (__vscanf_1713) (const char * __restrict ____format_1708, ____gnuc_va_list_1277 ____arg_1709);// L479:L480 +extern int (__vsscanf_1719) (const char * __restrict ____s_1715, const char * __restrict ____format_1716, ____gnuc_va_list_1277 ____arg_1717);// L483:L485 + + + + + +extern int (__fgetc_1754) (__FILE_1250 * (____stream_1752));// L531 +extern int (__getc_1758) (__FILE_1250 * (____stream_1756));// L532 +extern int (__getchar_1760) (void );// L538 +extern int (__getc_unlocked_1763) (__FILE_1250 * (____stream_1761));// L550 +extern int (__getchar_unlocked_1765) (void );// L551 +extern int (__fgetc_unlocked_1768) (__FILE_1250 * (____stream_1766));// L561 +extern int (__fputc_1773) (int ____c_1770, __FILE_1250 * (____stream_1771));// L573 +extern int (__fputc_1775) (int ____c_1770, __FILE_1250 * (____stream_1771));// L573 +extern int (__putc_1780) (int ____c_1777, __FILE_1250 * (____stream_1778));// L574 +extern int (__putchar_1783) (int ____c_1782);// L580 +extern int (__fputc_unlocked_1787) (int ____c_1784, __FILE_1250 * (____stream_1785));// L594 +extern int (__putc_unlocked_1792) (int ____c_1789, __FILE_1250 * (____stream_1790));// L602 +extern int (__putchar_unlocked_1795) (int ____c_1794);// L603 +extern int (__getw_1798) (__FILE_1250 * (____stream_1796));// L610 +extern int (__putw_1803) (int ____w_1800, __FILE_1250 * (____stream_1801));// L613 +extern char * ((__fgets_1809) (char * __restrict ____s_1805, int ____n_1806, __FILE_1250 * __restrict ____stream_1807));// L622:L623 +extern char * ((__fgets_1811) (char * __restrict ____s_1805, int ____n_1806, __FILE_1250 * __restrict ____stream_1807));// L622:L623 +extern char * ((__fgets_1813) (char * __restrict ____s_1805, int ____n_1806, __FILE_1250 * __restrict ____stream_1807));// L622:L623 +extern char * ((__fgets_1815) (char * __restrict ____s_1805, int ____n_1806, __FILE_1250 * __restrict ____stream_1807));// L622:L623 +extern ____ssize_t_1240 (____getdelim_1822) (char * (* __restrict ____lineptr_1817), __size_t_1192 * __restrict ____n_1818, int ____delimiter_1819, __FILE_1250 * __restrict ____stream_1820);// L665:L667 +extern ____ssize_t_1240 (____getdelim_1826) (char * (* __restrict ____lineptr_1817), __size_t_1192 * __restrict ____n_1818, int ____delimiter_1819, __FILE_1250 * __restrict ____stream_1820);// L665:L667 +extern ____ssize_t_1240 (__getdelim_1835) (char * (* __restrict ____lineptr_1830), __size_t_1192 * __restrict ____n_1831, int ____delimiter_1832, __FILE_1250 * __restrict ____stream_1833);// L668:L670 +extern ____ssize_t_1240 (__getdelim_1839) (char * (* __restrict ____lineptr_1830), __size_t_1192 * __restrict ____n_1831, int ____delimiter_1832, __FILE_1250 * __restrict ____stream_1833);// L668:L670 +extern ____ssize_t_1240 (__getline_1847) (char * (* __restrict ____lineptr_1843), __size_t_1192 * __restrict ____n_1844, __FILE_1250 * __restrict ____stream_1845);// L678:L680 +extern ____ssize_t_1240 (__getline_1851) (char * (* __restrict ____lineptr_1843), __size_t_1192 * __restrict ____n_1844, __FILE_1250 * __restrict ____stream_1845);// L678:L680 +extern int (__fputs_1858) (const char * __restrict ____s_1855, __FILE_1250 * __restrict ____stream_1856);// L689 +extern int (__fputs_1860) (const char * __restrict ____s_1855, __FILE_1250 * __restrict ____stream_1856);// L689 +extern int (__puts_1863) (const char * (____s_1862));// L695 +extern int (__ungetc_1867) (int ____c_1864, __FILE_1250 * (____stream_1865));// L702 +extern int (__fseek_1905) (__FILE_1250 * (____stream_1901), long int ____off_1903, int ____whence_1904);// L749 +extern int (__fseek_1907) (__FILE_1250 * (____stream_1901), long int ____off_1903, int ____whence_1904);// L749 +extern long int (__ftell_1911) (__FILE_1250 * (____stream_1909));// L754 +extern long int (__ftell_1913) (__FILE_1250 * (____stream_1909));// L754 +extern void (__rewind_1917) (__FILE_1250 * (____stream_1915));// L759 +extern int (__fseeko_1924) (__FILE_1250 * (____stream_1919), ____off_t_1214 ____off_1921, int ____whence_1923);// L773 +extern int (__fseeko_1935) (__FILE_1250 * (____stream_1930), ____off64_t_1215 ____off_1932, int ____whence_1934);// L781:L783 +extern ____off_t_1214 (__ftello_1949) (__FILE_1250 * (____stream_1928));// L778 +extern ____off_t_1214 (__ftello_1941) (__FILE_1250 * (____stream_1928));// L778 +extern int (__fgetpos_1957) (__FILE_1250 * __restrict ____stream_1953, __fpos_t_1478 * __restrict ____pos_1955);// L798 +extern ____off64_t_1215 (__ftello_1945) (__FILE_1250 * (____stream_1939));// L784 +extern int (__fgetpos_1969) (__FILE_1250 * __restrict ____stream_1965, __fpos_t_1480 * __restrict ____pos_1967);// L806:L807 +extern int (__fsetpos_1977) (__FILE_1250 * (____stream_1961), const __fpos_t_1478 * (____pos_1963));// L803 +extern int (__fsetpos_1981) (__FILE_1250 * (____stream_1973), const __fpos_t_1480 * (____pos_1975));// L808:L809 +extern void (__clearerr_1987) (__FILE_1250 * (____stream_1985));// L826 +extern int (__feof_1991) (__FILE_1250 * (____stream_1989));// L828 +extern int (__feof_1993) (__FILE_1250 * (____stream_1989));// L828 +extern int (__ferror_1997) (__FILE_1250 * (____stream_1995));// L830 +extern int (__ferror_1999) (__FILE_1250 * (____stream_1995));// L830 +extern void (__clearerr_unlocked_2003) (__FILE_1250 * (____stream_2001));// L835 +extern int (__feof_unlocked_2007) (__FILE_1250 * (____stream_2005));// L836 +extern int (__feof_unlocked_2009) (__FILE_1250 * (____stream_2005));// L836 +extern int (__ferror_unlocked_2013) (__FILE_1250 * (____stream_2011));// L837 +extern int (__ferror_unlocked_2015) (__FILE_1250 * (____stream_2011));// L837 +extern void (__perror_2018) (const char * (____s_2017));// L846 +extern void (__perror_2019) (const char * (____s_2017));// L846 +extern int __sys_nerr_2020;// L26 + +extern int (__fileno_2026) (__FILE_1250 * (____stream_2022));// L858 +extern int (__fileno_2024) (__FILE_1250 * (____stream_2022));// L858 +extern int (__fileno_unlocked_2032) (__FILE_1250 * (____stream_2028));// L863 +extern int (__fileno_unlocked_2030) (__FILE_1250 * (____stream_2028));// L863 +extern __FILE_1250 * ((__popen_2036) (const char * (____command_2034), const char * (____modes_2035)));// L872 +extern __FILE_1250 * ((__popen_2038) (const char * (____command_2034), const char * (____modes_2035)));// L872 +extern int (__pclose_2042) (__FILE_1250 * (____stream_2040));// L878 +extern char * ((__ctermid_2045) (char * (____s_2044)));// L884 +extern void (__flockfile_2048) (__FILE_1250 * (____stream_2046));// L912 +extern int (__ftrylockfile_2052) (__FILE_1250 * (____stream_2050));// L916 +extern int (__ftrylockfile_2054) (__FILE_1250 * (____stream_2050));// L916 +extern void (__funlockfile_2058) (__FILE_1250 * (____stream_2056));// L919 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ @@ -1169,93 +3110,262 @@ extern void (__funlockfile_793) (__FILE_58 * (____stream_791));// L919 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____sprintf_chk_825) (char * __restrict ____s_821, int ____flag_822, __size_t_1 ____slen_823, const char * __restrict ____format_824, ... );// L23:L24 -extern int (____vsprintf_chk_832) (char * __restrict ____s_826, int ____flag_827, __size_t_1 ____slen_828, const char * __restrict ____format_829, ____gnuc_va_list_82 ____ap_830);// L25:L27 +extern int (____sprintf_chk_2090) (char * __restrict ____s_2086, int ____flag_2087, __size_t_1192 ____slen_2088, const char * __restrict ____format_2089, ... );// L23:L24 +extern int (____vsprintf_chk_2097) (char * __restrict ____s_2091, int ____flag_2092, __size_t_1192 ____slen_2093, const char * __restrict ____format_2094, ____gnuc_va_list_1277 ____ap_2095);// L25:L27 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____snprintf_chk_846) (char * __restrict ____s_841, __size_t_1 ____n_842, int ____flag_843, __size_t_1 ____slen_844, const char * __restrict ____format_845, ... );// L52:L54 -extern int (____vsnprintf_chk_854) (char * __restrict ____s_847, __size_t_1 ____n_848, int ____flag_849, __size_t_1 ____slen_850, const char * __restrict ____format_851, ____gnuc_va_list_82 ____ap_852);// L55:L57 +extern int (____snprintf_chk_2111) (char * __restrict ____s_2106, __size_t_1192 ____n_2107, int ____flag_2108, __size_t_1192 ____slen_2109, const char * __restrict ____format_2110, ... );// L52:L54 +extern int (____vsnprintf_chk_2119) (char * __restrict ____s_2112, __size_t_1192 ____n_2113, int ____flag_2114, __size_t_1192 ____slen_2115, const char * __restrict ____format_2116, ____gnuc_va_list_1277 ____ap_2117);// L55:L57 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____fprintf_chk_869) (__FILE_58 * __restrict ____stream_865, int ____flag_867, const char * __restrict ____format_868, ... );// L85:L86 -extern int (____printf_chk_873) (int ____flag_871, const char * __restrict ____format_872, ... );// L87 -extern int (____vfprintf_chk_880) (__FILE_58 * __restrict ____stream_874, int ____flag_876, const char * __restrict ____format_877, ____gnuc_va_list_82 ____ap_878);// L88:L89 -extern int (____vprintf_chk_888) (int ____flag_884, const char * __restrict ____format_885, ____gnuc_va_list_82 ____ap_886);// L90:L91 +extern int (____fprintf_chk_2134) (__FILE_1250 * __restrict ____stream_2130, int ____flag_2132, const char * __restrict ____format_2133, ... );// L85:L86 +extern int (____printf_chk_2138) (int ____flag_2136, const char * __restrict ____format_2137, ... );// L87 +extern int (____vfprintf_chk_2145) (__FILE_1250 * __restrict ____stream_2139, int ____flag_2141, const char * __restrict ____format_2142, ____gnuc_va_list_1277 ____ap_2143);// L88:L89 +extern int (____vprintf_chk_2153) (int ____flag_2149, const char * __restrict ____format_2150, ____gnuc_va_list_1277 ____ap_2151);// L90:L91 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern int (____dprintf_chk_910) (int ____fd_907, int ____flag_908, const char * __restrict ____fmt_909, ... );// L131:L132 -extern int (____vdprintf_chk_916) (int ____fd_911, int ____flag_912, const char * __restrict ____fmt_913, ____gnuc_va_list_82 ____arg_914);// L133:L135 +extern int (____dprintf_chk_2175) (int ____fd_2172, int ____flag_2173, const char * __restrict ____fmt_2174, ... );// L131:L132 +extern int (____vdprintf_chk_2181) (int ____fd_2176, int ____flag_2177, const char * __restrict ____fmt_2178, ____gnuc_va_list_1277 ____arg_2179);// L133:L135 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern char * ((____fgets_chk_930) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 -extern char * ((____fgets_chk_932) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 -extern char * ((____fgets_chk_934) (char * __restrict ____s_925, __size_t_1 ____size_926, int ____n_927, __FILE_58 * __restrict ____stream_928));// L241:L242 -extern char * ((____fgets_alias_940) (char * __restrict ____s_936, int ____n_937, __FILE_58 * __restrict ____stream_938));// L243:L245 -extern char * ((____fgets_chk_warn_947) (char * __restrict ____s_942, __size_t_1 ____size_943, int ____n_944, __FILE_58 * __restrict ____stream_945));// L246:L250 +extern char * ((____fgets_chk_2195) (char * __restrict ____s_2190, __size_t_1192 ____size_2191, int ____n_2192, __FILE_1250 * __restrict ____stream_2193));// L241:L242 +extern char * ((____fgets_chk_2197) (char * __restrict ____s_2190, __size_t_1192 ____size_2191, int ____n_2192, __FILE_1250 * __restrict ____stream_2193));// L241:L242 +extern char * ((____fgets_chk_2199) (char * __restrict ____s_2190, __size_t_1192 ____size_2191, int ____n_2192, __FILE_1250 * __restrict ____stream_2193));// L241:L242 +extern char * ((____fgets_alias_2205) (char * __restrict ____s_2201, int ____n_2202, __FILE_1250 * __restrict ____stream_2203));// L243:L245 +extern char * ((____fgets_chk_warn_2212) (char * __restrict ____s_2207, __size_t_1192 ____size_2208, int ____n_2209, __FILE_1250 * __restrict ____stream_2210));// L246:L250 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -void (__enable_x_1018) () { +void (__enable_x_2283) () { -if (__static_condition_default_1020) { +if (__static_condition_default_2286) { { { - __printf_383 ("%s","enabling x axis") ; // L15 + __printf_1612 ("%s","enabling x axis") ; // L15 } } } } -void (__enable_x_1019) () { +void (__enable_x_2284) () { -if (__static_condition_default_1021) { +if (__static_condition_default_2287) { { { - __printf_383 ("%s","enabling x axis") ; // L15 + __printf_1612 ("%s","enabling x axis") ; // L15 } } } } -void (__enable_y_1022) () { +void (__enable_x_2285) () { + +if (__static_condition_default_2288) { { { - __printf_383 ("%s","enabling y axis") ; // L20 +__static_type_error("type error") ; // L15 } } } -void (__enable_z_1023) () { +} +void (__enable_y_2289) () { { { - __printf_383 ("%s","enabling z axis") ; // L25 +if (__static_condition_default_2290) { + __printf_1612 ("%s","enabling y axis") ; // L20 +} +if (__static_condition_default_2291) { +__static_type_error("type error") ; // L20 } } +} + + +} +void (__enable_z_2292) () { + +{ +{ + + + +if (__static_condition_default_2290) { + __printf_1612 ("%s","enabling z axis") ; // L25 +} +if (__static_condition_default_2291) { +__static_type_error("type error") ; // L25 +} +} +} + + +} +void (__babystep_2298) (const __uint8_t_4 __axis_2293, const _Bool __direction_2294) { + +if (__static_condition_default_2299) { + +{ +{ + + + +switch ( __axis_2293 )// L43 +{ +case 0 : +{ + + + + +{ +{ + + + +if (__static_condition_default_2300) { + __enable_x_2283 ( ) ; // L36 +} +if (__static_condition_default_2301) { + __enable_x_2284 ( ) ; // L36 +} +if (__static_condition_default_2302) { + __enable_x_2285 ( ) ; // L36 +} +__uint8_t_4 __old_pin_2295= 0;// L37 + +if (__static_condition_default_2303) { + ___delay_us_1103 (1U) ; // L39 +} +if (__static_condition_default_2304) { + ___delay_us_1153 (1U) ; // L39 +} +} +} + ; // L46 +break ; // L47 +} +case 1 : +{ + + + + +{ +{ + + + + __enable_y_2289 ( ) ; // L36 +__uint8_t_4 __old_pin_2296= 1;// L37 + +if (__static_condition_default_2305) { + ___delay_us_1103 (1U) ; // L39 +} +if (__static_condition_default_2306) { + ___delay_us_1153 (1U) ; // L39 +} +} +} + ; // L50 +break ; // L51 +} +case 2 : +{ + + + + +{ +{ + + + +if (__static_condition_default_2307) { + +{ +{ + + __enable_z_2292 ( ) ; // L36 +__uint8_t_4 __old_pin_2297= 2;// L37 + +if (__static_condition_default_2308) { + ___delay_us_1103 (1U) ; // L39 +} +if (__static_condition_default_2309) { + ___delay_us_1153 (1U) ; // L39 +} +} +} +} +if (__static_condition_default_2310) { + __enable_x_2283 ( ) ; // L61 +} +if (__static_condition_default_2311) { + __enable_x_2284 ( ) ; // L61 +} +if (__static_condition_default_2312) { + __enable_x_2285 ( ) ; // L61 +} +if (__static_condition_default_2313) { + __enable_y_2289 ( ) ; // L62 +} +if (__static_condition_default_2314) { + __enable_z_2292 ( ) ; // L63 +} +if (__static_condition_default_2315) { + ; // L57 +} +if (__static_condition_default_2316) { + ___delay_us_1103 (1U) ; // L66 +} +if (__static_condition_default_2317) { + ___delay_us_1153 (1U) ; // L66 +} +} } -int (__main_1024) (void ) { +break ; // L71 +} +default: +{ + + + +break ; // L73 +} +} +} +} + + +} +} +int (__main_2318) (void ) { + +if (__static_condition_default_2320) { { { @@ -1268,4 +3378,22 @@ return 0 ;// L84 } +} +int (__main_2319) (void ) { + +if (__static_condition_default_2321) { + +{ +{ + + + +__static_type_error("type error : no valid expression"); // L82 +return 0 ;// L84 +} +} + + +} +} diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.desugared.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.desugared.clangres index e69de29b..32ec53e9 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.desugared.clangres @@ -0,0 +1,7 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.desugared.c:1913:55: error: invalid output constraint '=w' in asm +__asm__ volatile ( "1: sbiw %0,1""\n\t""brne 1b" : "=w" ( ____count_120 ) : "0" ( ____count_120 ) ); + ^ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.desugared.c:1929:55: error: invalid output constraint '=w' in asm +__asm__ volatile ( "1: sbiw %0,1""\n\t""brne 1b" : "=w" ( ____count_120 ) : "0" ( ____count_120 ) ); + ^ +2 errors generated. diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.desugared.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.desugared.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/7336e6df070.desugared.c b/fonda/cpp_testsuite/varBugs/MARLIN/7336e6df070.desugared.c index 87a793be..f90eb873 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/7336e6df070.desugared.c +++ b/fonda/cpp_testsuite/varBugs/MARLIN/7336e6df070.desugared.c @@ -7,276 +7,275 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_367; -extern const bool __static_condition_default_887; -extern const bool __static_condition_default_747; -extern const bool __static_condition_default_875; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_779; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_568; -extern const bool __static_condition_default_402; -extern const bool __static_condition_default_229; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_753; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_549; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_761; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_204; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_914; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_677; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_380; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_883; extern const bool __static_condition_default_248; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_963; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_76; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_715; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_753; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_891; +extern const bool __static_condition_default_583; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_846; extern const bool __static_condition_default_315; -extern const bool __static_condition_default_388; -extern const bool __static_condition_default_789; -extern const bool __static_condition_default_296; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_721; +extern const bool __static_condition_default_659; extern const bool __static_condition_default_709; -extern const bool __static_condition_default_317; -extern const bool __static_condition_default_363; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_894; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_553; extern const bool __static_condition_default_393; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_347; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_1096; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_590; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_419; -extern const bool __static_condition_default_499; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_1099; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_559; +extern const bool __static_condition_default_388; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_280; extern const bool __static_condition_default_431; -extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_846; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_842; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_746; extern const bool __static_condition_default_84; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_53; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_280; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_929; +extern const bool __static_condition_default_187; +extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_670; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_761; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_473; extern const bool __static_condition_default_536; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_123; +extern const bool __static_condition_default_793; extern const bool __static_condition_default_278; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_685; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_755; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_701; -extern const bool __static_condition_default_333; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_583; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_380; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_700; -extern const bool __static_condition_default_412; -extern const bool __static_condition_default_645; -extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_907; -extern const bool __static_condition_default_198; -extern const bool __static_condition_default_337; extern const bool __static_condition_default_760; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_875; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_792; extern const bool __static_condition_default_290; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_512; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_858; -extern const bool __static_condition_default_852; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_544; +extern const bool __static_condition_default_759; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_755; extern const bool __static_condition_default_613; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_637; +extern const bool __static_condition_default_1100; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_791; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_980; extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_891; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_780; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_779; +extern const bool __static_condition_default_789; +extern const bool __static_condition_default_311; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_204; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_417; extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_386; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_313; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_752; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_1098; +extern const bool __static_condition_default_347; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_637; extern const bool __static_condition_default_955; -extern const bool __static_condition_default_311; -extern const bool __static_condition_default_552; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_963; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_489; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_333; +extern const bool __static_condition_default_568; +extern const bool __static_condition_default_419; extern const bool __static_condition_default_633; -extern const bool __static_condition_default_819; extern const bool __static_condition_default_668; -extern const bool __static_condition_default_670; -extern const bool __static_condition_default_169; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_76; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_907; +extern const bool __static_condition_default_747; extern const bool __static_condition_default_523; -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_521; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_646; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_1097; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_956; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_408; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_543; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_702; -extern const bool __static_condition_default_957; -extern const bool __static_condition_default_769; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_842; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_559; -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_872; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_541; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_834; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_1007; extern const bool __static_condition_default_275; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_382; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_797; extern const bool __static_condition_default_503; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_249; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_550; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_198; extern const bool __static_condition_default_264; -extern const bool __static_condition_default_848; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_632; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_894; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_883; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_1091; extern const bool __static_condition_default_258; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_382; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_686; -extern const bool __static_condition_default_638; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_549; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_769; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_193; extern const bool __static_condition_default_488; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_683; extern const bool __static_condition_default_807; -extern const bool __static_condition_default_217; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_357; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_187; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_929; -extern const bool __static_condition_default_793; -extern const bool __static_condition_default_438; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_395; extern const bool __static_condition_default_803; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_788; +extern const bool __static_condition_default_337; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_677; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_455; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_702; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_636; +extern const bool __static_condition_default_367; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_1051; extern const bool __static_condition_default_998; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_693; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_564; -extern const bool __static_condition_default_787; -extern const bool __static_condition_default_585; extern const bool __static_condition_default_978; -extern const bool __static_condition_default_511; -extern const bool __static_condition_default_461; -extern const bool __static_condition_default_494; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_619; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_365; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_521; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_386; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_512; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -546,9 +545,10 @@ __static_renaming("____cnt_1087", "__cnt"); __static_renaming("____cptr_1088", "__cptr"); __static_renaming("__old_z_min_endstop_1092", "old_z_min_endstop"); __static_renaming("__old_z_max_endstop_1093", "old_z_max_endstop"); -__static_renaming("__function_1094", "function"); -__static_renaming("__function_1095", "function"); -__static_renaming("__main_1098", "main"); +__static_renaming("__old_z2_min_endstop_1094", "old_z2_min_endstop"); +__static_renaming("__old_z2_max_endstop_1095", "old_z2_max_endstop"); +__static_renaming("__function_1096", "function"); +__static_renaming("__main_1099", "main"); __static_condition_renaming("__static_condition_default_53", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); __static_condition_renaming("__static_condition_default_76", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); @@ -817,11 +817,10 @@ __static_condition_renaming("__static_condition_default_1081", "!(defined __need __static_condition_renaming("__static_condition_default_1089", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); __static_condition_renaming("__static_condition_default_1090", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); __static_condition_renaming("__static_condition_default_1091", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); -__static_condition_renaming("__static_condition_default_1096", "!(defined Z_MAX_PIN) || (defined Z_MAX_PIN) && !(Z_MAX_PIN >= 0)"); -__static_condition_renaming("__static_condition_default_1097", "(defined Z_MAX_PIN) && (Z_MAX_PIN >= 0)"); -__static_condition_renaming("__static_condition_default_1099", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_1098", "!(defined Z_DUAL_STEPPER_DRIVERS) && !(defined Z_DUAL_ENDSTOPS)"); +__static_condition_renaming("__static_condition_default_1100", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined Z_DUAL_STEPPER_DRIVERS) && (defined Z_DUAL_ENDSTOPS) || !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && (defined Z_DUAL_STEPPER_DRIVERS) || !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined Z_DUAL_STEPPER_DRIVERS) && (defined Z_DUAL_ENDSTOPS) || !(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && (defined Z_DUAL_STEPPER_DRIVERS) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) || (defined __need___FILE) && !(defined Z_DUAL_STEPPER_DRIVERS) && (defined Z_DUAL_ENDSTOPS) || (defined __need___FILE) && (defined Z_DUAL_STEPPER_DRIVERS)"); -if (__static_condition_default_1099) { +if (__static_condition_default_1100) { __static_parse_error("Unable to parse"); } }; @@ -1332,24 +1331,12 @@ extern char * ((____fgets_chk_warn_1021) (char * __restrict ____s_1016, __siz /* no function due to type errors in the function prototype */ static _Bool __old_z_min_endstop_1092= 0;// L28:L33 static _Bool __old_z_max_endstop_1093= 0;// L32:L33 -void (__function_1094) () { - -if (__static_condition_default_1096) { +static _Bool __old_z2_min_endstop_1094= 0;// L33:L36 +static _Bool __old_z2_max_endstop_1095= 0;// L33:L37 +void (__function_1096) () { { -{ - - - -} -} - - -} -} -void (__function_1095) () { - -if (__static_condition_default_1097) { +if (__static_condition_default_1098) { { { @@ -1361,8 +1348,9 @@ if (__static_condition_default_1097) { } -} -void (__main_1098) () { + +}} +void (__main_1099) () { { { diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/7336e6df070.desugared.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/7336e6df070.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/7336e6df070.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/7336e6df070.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/7336e6df070.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.desugared.c b/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.desugared.c index 39c6f420..94056865 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.desugared.c +++ b/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.desugared.c @@ -7,16 +7,21 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); +extern const bool __static_condition_default_10; extern const bool __static_condition_default_3; +extern const bool __static_condition_default_9; extern const bool __static_condition_default_6; void __static_initializer_default() { __static_renaming("__lcd_setstatus_2", "lcd_setstatus"); __static_renaming("__lcd_setstatus_5", "lcd_setstatus"); -__static_renaming("__getCode_7", "getCode"); -__static_renaming("__main_10", "main"); +__static_renaming("__time_7", "time"); +__static_renaming("__getCode_8", "getCode"); +__static_renaming("__main_13", "main"); __static_condition_renaming("__static_condition_default_3", "(defined ULTRA_LCD)"); __static_condition_renaming("__static_condition_default_6", "!(defined ULTRA_LCD)"); +__static_condition_renaming("__static_condition_default_9", "!(defined SDSUPPORT)"); +__static_condition_renaming("__static_condition_default_10", "(defined SDSUPPORT)"); }; @@ -50,26 +55,47 @@ if (__static_condition_default_6) { } } -;;void (__getCode_7) () { +;;void (__getCode_8) () { + +{ +if (__static_condition_default_9) { + +{ +{ + + + +} +} + + +} + +if (__static_condition_default_10) { { { +char __time_7[30]= "time_here";// L14 + +__static_type_error("type error : no valid expression"); // L15 } } } -int (__main_10) (int __argc_8, char * (* (__argv_9))) { + +}} +int (__main_13) (int __argc_11, char * (* (__argv_12))) { { { - __getCode_7 ( ) ; // L21 + __getCode_8 ( ) ; // L21 return 0 ;// L22 } } diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.desugared.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.desugared.clangres index e69de29b..0636af1c 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.desugared.clangres @@ -0,0 +1,4 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.desugared.c:81:7: warning: Value stored to '__time_7' during its initialization is never read [deadcode.DeadStores] +char __time_7[30]= "time_here";// L14 + ^~~~~~~~ ~~~~~~~~~~~ +1 warning generated. diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.desugared.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.c b/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.c index 9fc3ccef..21c76046 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.c +++ b/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.c @@ -8,25 +8,43 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); extern const bool __static_condition_default_3; -extern const bool __static_condition_default_5; -extern const bool __static_condition_default_6; -extern const bool __static_condition_default_4; +extern const bool __static_condition_default_9; +extern const bool __static_condition_default_8; +extern const bool __static_condition_default_13; +extern const bool __static_condition_default_11; +extern const bool __static_condition_default_14; +extern const bool __static_condition_default_20; +extern const bool __static_condition_default_10; +extern const bool __static_condition_default_12; +extern const bool __static_condition_default_19; +extern const bool __static_condition_default_15; void __static_initializer_default() { -__static_renaming("__pid_output_0", "pid_output"); -__static_renaming("__e_1", "e"); -__static_renaming("__manage_heater_2", "manage_heater"); -__static_renaming("__main_9", "main"); - -__static_condition_renaming("__static_condition_default_3", "(defined PIDTEMP) && !(defined PID_DEBUG)"); -__static_condition_renaming("__static_condition_default_4", "!(defined PIDTEMP) || (defined PIDTEMP) && (defined PID_DEBUG)"); -__static_condition_renaming("__static_condition_default_5", "!(defined PIDTEMP)"); -__static_condition_renaming("__static_condition_default_6", "(defined PIDTEMP) && (defined PID_DEBUG)"); +__static_renaming("__echomagic_0", "echomagic"); +__static_renaming("__serialprint_2", "serialprint"); +__static_renaming("__pid_output_4", "pid_output"); +__static_renaming("__e_5", "e"); +__static_renaming("__manage_heater_6", "manage_heater"); +__static_renaming("__manage_heater_7", "manage_heater"); +__static_renaming("__main_18", "main"); + +__static_condition_renaming("__static_condition_default_3", "!(defined MARLIN_H)"); +__static_condition_renaming("__static_condition_default_8", "(defined MARLIN_H) && (defined PIDTEMP) && !(defined PID_DEBUG)"); +__static_condition_renaming("__static_condition_default_9", "(defined MARLIN_H) && !(defined PIDTEMP) || (defined MARLIN_H) && (defined PIDTEMP) && (defined PID_DEBUG)"); +__static_condition_renaming("__static_condition_default_10", "(defined MARLIN_H) && !(defined PIDTEMP)"); +__static_condition_renaming("__static_condition_default_11", "(defined MARLIN_H) && (defined PIDTEMP) && (defined PID_DEBUG)"); +__static_condition_renaming("__static_condition_default_12", "!(defined MARLIN_H) && (defined PIDTEMP) && !(defined PID_DEBUG)"); +__static_condition_renaming("__static_condition_default_13", "!(defined MARLIN_H) && !(defined PIDTEMP) || !(defined MARLIN_H) && (defined PIDTEMP) && (defined PID_DEBUG)"); +__static_condition_renaming("__static_condition_default_14", "!(defined MARLIN_H) && !(defined PIDTEMP)"); +__static_condition_renaming("__static_condition_default_15", "!(defined MARLIN_H) && (defined PIDTEMP) && (defined PID_DEBUG)"); +__static_condition_renaming("__static_condition_default_19", "(defined MARLIN_H)"); +__static_condition_renaming("__static_condition_default_20", "!(defined MARLIN_H)"); }; +const char __echomagic_0[]= "echo:";// L2 -void (__manage_heater_2) () { -{ +void (__serialprint_2) (const char * (__str_1)) { + if (__static_condition_default_3) { { @@ -34,9 +52,26 @@ if (__static_condition_default_3) { -float __pid_output_0= 1;// L11 +__static_type_error("type error : no valid expression"); // L6 +} +} + + +} +} +void (__manage_heater_6) () { + +{ +if (__static_condition_default_8) { + +{ +{ + + + +float __pid_output_4= 1;// L11 -int __e_1= 0;// L12 +int __e_5= 0;// L12 } } @@ -44,21 +79,21 @@ int __e_1= 0;// L12 } -if (__static_condition_default_4) { +if (__static_condition_default_9) { { { -float __pid_output_0= 1;// L11 +float __pid_output_4= 1;// L11 -int __e_1= 0;// L12 +int __e_5= 0;// L12 -if (__static_condition_default_5) { - __pid_output_0 = 0 ; // L19 +if (__static_condition_default_10) { + __pid_output_4 = 0 ; // L19 } -if (__static_condition_default_6) { +if (__static_condition_default_11) { __static_type_error("type error : no valid expression"); // L16 } } @@ -68,14 +103,63 @@ __static_type_error("type error : no valid expression"); // L16 } }} -int (__main_9) (int __argc_7, char * (* (__argv_8))) { +void (__manage_heater_7) () { + +{ +if (__static_condition_default_12) { + +{ +{ + + + +float __pid_output_4= 1;// L11 + +int __e_5= 0;// L12 + +} +} + + +} + +if (__static_condition_default_13) { + +{ +{ + + + +float __pid_output_4= 1;// L11 + +int __e_5= 0;// L12 + +if (__static_condition_default_14) { + __pid_output_4 = 0 ; // L19 +} +if (__static_condition_default_15) { +__static_type_error("type error : no valid expression"); // L3:L16 +} +} +} + + +} + +}} +int (__main_18) (int __argc_16, char * (* (__argv_17))) { { { - __manage_heater_2 ( ) ; // L26 +if (__static_condition_default_19) { + __manage_heater_6 ( ) ; // L26 +} +if (__static_condition_default_20) { + __manage_heater_7 ( ) ; // L26 +} return 0 ;// L27 } } diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.clangres index 328192de..1a58c3bb 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.clangres @@ -1,4 +1,7 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.c:59:2: warning: Value stored to '__pid_output_0' is never read [deadcode.DeadStores] - __pid_output_0 = 0 ; // L19 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.c:94:2: warning: Value stored to '__pid_output_4' is never read [deadcode.DeadStores] + __pid_output_4 = 0 ; // L19 ^ ~ -1 warning generated. +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.c:138:2: warning: Value stored to '__pid_output_4' is never read [deadcode.DeadStores] + __pid_output_4 = 0 ; // L19 + ^ ~ +2 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.c b/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.c index 5334f1cf..0942ce60 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.c +++ b/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.c @@ -7,73 +7,117 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); +extern const bool __static_condition_default_175; +extern const bool __static_condition_default_190; +extern const bool __static_condition_default_211; +extern const bool __static_condition_default_220; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_208; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_191; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_195; +extern const bool __static_condition_default_219; +extern const bool __static_condition_default_215; +extern const bool __static_condition_default_13; +extern const bool __static_condition_default_230; +extern const bool __static_condition_default_228; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); __static_renaming("__memmove_8", "memmove"); -__static_renaming("__memset_16", "memset"); -__static_renaming("__memcmp_20", "memcmp"); -__static_renaming("__memchr_24", "memchr"); -__static_renaming("__strcpy_27", "strcpy"); -__static_renaming("__strncpy_31", "strncpy"); -__static_renaming("__strcat_34", "strcat"); -__static_renaming("__strncat_38", "strncat"); -__static_renaming("__strcmp_41", "strcmp"); -__static_renaming("__strncmp_45", "strncmp"); -__static_renaming("__strcoll_48", "strcoll"); -__static_renaming("__strxfrm_52", "strxfrm"); -__static_renaming("____locale_t_60", "__locale_t"); -__static_renaming("__locale_t_61", "locale_t"); -__static_renaming("__strcoll_l_65", "strcoll_l"); -__static_renaming("__strxfrm_l_70", "strxfrm_l"); -__static_renaming("__strdup_72", "strdup"); -__static_renaming("__strndup_75", "strndup"); -__static_renaming("__strchr_78", "strchr"); -__static_renaming("__strrchr_81", "strrchr"); -__static_renaming("__strcspn_84", "strcspn"); -__static_renaming("__strspn_87", "strspn"); -__static_renaming("__strpbrk_90", "strpbrk"); -__static_renaming("__strstr_93", "strstr"); -__static_renaming("__strtok_96", "strtok"); -__static_renaming("____strtok_r_100", "__strtok_r"); -__static_renaming("__strtok_r_104", "strtok_r"); -__static_renaming("__strlen_106", "strlen"); -__static_renaming("__strnlen_109", "strnlen"); -__static_renaming("__strerror_111", "strerror"); -__static_renaming("__strerror_r_115", "strerror_r"); -__static_renaming("__strerror_l_118", "strerror_l"); -__static_renaming("____bzero_121", "__bzero"); -__static_renaming("__bcopy_125", "bcopy"); -__static_renaming("__bzero_128", "bzero"); -__static_renaming("__bcmp_132", "bcmp"); -__static_renaming("__index_135", "index"); -__static_renaming("__rindex_138", "rindex"); -__static_renaming("__ffs_140", "ffs"); -__static_renaming("__strcasecmp_143", "strcasecmp"); -__static_renaming("__strncasecmp_147", "strncasecmp"); -__static_renaming("__strsep_150", "strsep"); -__static_renaming("__strsignal_152", "strsignal"); -__static_renaming("____stpcpy_155", "__stpcpy"); -__static_renaming("__stpcpy_158", "stpcpy"); -__static_renaming("____stpncpy_162", "__stpncpy"); -__static_renaming("__stpncpy_166", "stpncpy"); -__static_renaming("__main_169", "main"); +__static_renaming("__memset_17", "memset"); +__static_renaming("__memset_18", "memset"); +__static_renaming("__memcmp_22", "memcmp"); +__static_renaming("__memchr_26", "memchr"); +__static_renaming("__strcpy_29", "strcpy"); +__static_renaming("__strncpy_33", "strncpy"); +__static_renaming("__strcat_36", "strcat"); +__static_renaming("__strncat_40", "strncat"); +__static_renaming("__strcmp_43", "strcmp"); +__static_renaming("__strncmp_47", "strncmp"); +__static_renaming("__strcoll_50", "strcoll"); +__static_renaming("__strxfrm_54", "strxfrm"); +__static_renaming("____locale_t_62", "__locale_t"); +__static_renaming("__locale_t_63", "locale_t"); +__static_renaming("__strcoll_l_67", "strcoll_l"); +__static_renaming("__strxfrm_l_72", "strxfrm_l"); +__static_renaming("__strdup_74", "strdup"); +__static_renaming("__strndup_77", "strndup"); +__static_renaming("__strchr_80", "strchr"); +__static_renaming("__strrchr_83", "strrchr"); +__static_renaming("__strcspn_86", "strcspn"); +__static_renaming("__strspn_89", "strspn"); +__static_renaming("__strpbrk_92", "strpbrk"); +__static_renaming("__strstr_95", "strstr"); +__static_renaming("__strtok_98", "strtok"); +__static_renaming("____strtok_r_102", "__strtok_r"); +__static_renaming("__strtok_r_106", "strtok_r"); +__static_renaming("__strlen_108", "strlen"); +__static_renaming("__strlen_109", "strlen"); +__static_renaming("__strnlen_112", "strnlen"); +__static_renaming("__strerror_114", "strerror"); +__static_renaming("__strerror_115", "strerror"); +__static_renaming("__strerror_r_119", "strerror_r"); +__static_renaming("__strerror_l_122", "strerror_l"); +__static_renaming("____bzero_125", "__bzero"); +__static_renaming("____bzero_126", "__bzero"); +__static_renaming("__bcopy_130", "bcopy"); +__static_renaming("__bzero_133", "bzero"); +__static_renaming("__bcmp_137", "bcmp"); +__static_renaming("__index_140", "index"); +__static_renaming("__rindex_143", "rindex"); +__static_renaming("__ffs_145", "ffs"); +__static_renaming("__strcasecmp_148", "strcasecmp"); +__static_renaming("__strncasecmp_152", "strncasecmp"); +__static_renaming("__strsep_155", "strsep"); +__static_renaming("__strsignal_157", "strsignal"); +__static_renaming("____stpcpy_160", "__stpcpy"); +__static_renaming("__stpcpy_163", "stpcpy"); +__static_renaming("____stpncpy_167", "__stpncpy"); +__static_renaming("__stpncpy_171", "stpncpy"); +__static_renaming("____stpncpy_chk_200", "__stpncpy_chk"); +__static_renaming("____stpncpy_alias_204", "__stpncpy_alias"); +__static_renaming("__len_217", "len"); +__static_renaming("__len_218", "len"); +__static_renaming("__lfilename_221", "lfilename"); +__static_renaming("__cardreader_222", "cardreader"); +__static_renaming("__main_226", "main"); +__static_renaming("__main_227", "main"); +__static_condition_renaming("__static_condition_default_13", "!(defined __STRICT_ANSI__)"); +__static_condition_renaming("__static_condition_default_175", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_182", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_190", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_191", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_195", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_208", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_211", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_215", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_219", "(defined __STRICT_ANSI__) && (defined SDSUPPORT)"); +__static_condition_renaming("__static_condition_default_220", "!(defined __STRICT_ANSI__) && (defined SDSUPPORT)"); +__static_condition_renaming("__static_condition_default_223", "(defined SDSUPPORT)"); +__static_condition_renaming("__static_condition_default_228", "!(defined SDSUPPORT)"); +__static_condition_renaming("__static_condition_default_229", "(defined SDSUPPORT)"); +__static_condition_renaming("__static_condition_default_230", "(defined __CORRECT_ISO_CPP_STRING_H_PROTO)"); +if (__static_condition_default_230) { +__static_parse_error("Unable to parse"); +} }; typedef long int __ptrdiff_t_0;// L143:L324 typedef long unsigned int __size_t_1;// L177:L209 -struct ____locale_struct_54 { -struct __forward_tag_reference_53 * (____locales_55[13]);// L0 -const unsigned short int * (____ctype_b_56);// L33 -const int * (____ctype_tolower_57);// L34 -const int * (____ctype_toupper_58);// L35 -const char * (____names_59[13]);// L38 +struct ____locale_struct_56 { +struct __forward_tag_reference_55 * (____locales_57[13]);// L0 +const unsigned short int * (____ctype_b_58);// L33 +const int * (____ctype_tolower_59);// L34 +const int * (____ctype_toupper_60);// L35 +const char * (____names_61[13]);// L38 }; -typedef struct ____locale_struct_54 * (____locale_t_60);// L27:L39 -typedef ____locale_t_60 __locale_t_61;// L42 +typedef struct ____locale_struct_56 * (____locale_t_62);// L27:L39 +typedef ____locale_t_62 __locale_t_63;// L42 -struct __forward_tag_reference_53 { // generated union of struct variations +struct __forward_tag_reference_55 { // generated union of struct variations union { }; }; @@ -81,64 +125,137 @@ union { // typedef moved to top of scope // typedef moved to top of scope extern void * ((__memmove_8) (void * (____dest_5), const void * (____src_6), __size_t_1 ____n_7));// L46:L47 -extern void * ((__memset_16) (void * (____s_13), int ____c_14, __size_t_1 ____n_15));// L62 -extern int (__memcmp_20) (const void * (____s1_17), const void * (____s2_18), __size_t_1 ____n_19);// L65:L66 -extern void * ((__memchr_24) (const void * (____s_21), int ____c_22, __size_t_1 ____n_23));// L92:L93 -extern char * ((__strcpy_27) (char * __restrict ____dest_25, const char * __restrict ____src_26));// L125:L126 -extern char * ((__strncpy_31) (char * __restrict ____dest_28, const char * __restrict ____src_29, __size_t_1 ____n_30));// L128:L130 -extern char * ((__strcat_34) (char * __restrict ____dest_32, const char * __restrict ____src_33));// L133:L134 -extern char * ((__strncat_38) (char * __restrict ____dest_35, const char * __restrict ____src_36, __size_t_1 ____n_37));// L136:L137 -extern int (__strcmp_41) (const char * (____s1_39), const char * (____s2_40));// L140:L141 -extern int (__strncmp_45) (const char * (____s1_42), const char * (____s2_43), __size_t_1 ____n_44);// L143:L144 -extern int (__strcoll_48) (const char * (____s1_46), const char * (____s2_47));// L147:L148 -extern __size_t_1 (__strxfrm_52) (char * __restrict ____dest_49, const char * __restrict ____src_50, __size_t_1 ____n_51);// L150:L152 +extern void * ((__memset_17) (void * (____s_14), int ____c_15, __size_t_1 ____n_16));// L62 +extern void * ((__memset_18) (void * (____s_14), int ____c_15, __size_t_1 ____n_16));// L62 +extern int (__memcmp_22) (const void * (____s1_19), const void * (____s2_20), __size_t_1 ____n_21);// L65:L66 +extern void * ((__memchr_26) (const void * (____s_23), int ____c_24, __size_t_1 ____n_25));// L92:L93 +extern char * ((__strcpy_29) (char * __restrict ____dest_27, const char * __restrict ____src_28));// L125:L126 +extern char * ((__strncpy_33) (char * __restrict ____dest_30, const char * __restrict ____src_31, __size_t_1 ____n_32));// L128:L130 +extern char * ((__strcat_36) (char * __restrict ____dest_34, const char * __restrict ____src_35));// L133:L134 +extern char * ((__strncat_40) (char * __restrict ____dest_37, const char * __restrict ____src_38, __size_t_1 ____n_39));// L136:L137 +extern int (__strcmp_43) (const char * (____s1_41), const char * (____s2_42));// L140:L141 +extern int (__strncmp_47) (const char * (____s1_44), const char * (____s2_45), __size_t_1 ____n_46);// L143:L144 +extern int (__strcoll_50) (const char * (____s1_48), const char * (____s2_49));// L147:L148 +extern __size_t_1 (__strxfrm_54) (char * __restrict ____dest_51, const char * __restrict ____src_52, __size_t_1 ____n_53);// L150:L152 // typedef moved to top of scope // typedef moved to top of scope -extern int (__strcoll_l_65) (const char * (____s1_62), const char * (____s2_63), ____locale_t_60 ____l_64);// L162:L163 -extern __size_t_1 (__strxfrm_l_70) (char * (____dest_66), const char * (____src_67), __size_t_1 ____n_68, ____locale_t_60 ____l_69);// L165:L166 -extern char * ((__strdup_72) (const char * (____s_71)));// L171:L172 -extern char * ((__strndup_75) (const char * (____string_73), __size_t_1 ____n_74));// L179:L180 -extern char * ((__strchr_78) (const char * (____s_76), int ____c_77));// L231:L232 -extern char * ((__strrchr_81) (const char * (____s_79), int ____c_80));// L258:L259 -extern __size_t_1 (__strcspn_84) (const char * (____s_82), const char * (____reject_83));// L280:L281 -extern __size_t_1 (__strspn_87) (const char * (____s_85), const char * (____accept_86));// L284:L285 -extern char * ((__strpbrk_90) (const char * (____s_88), const char * (____accept_89)));// L310:L311 -extern char * ((__strstr_93) (const char * (____haystack_91), const char * (____needle_92)));// L337:L338 -extern char * ((__strtok_96) (char * __restrict ____s_94, const char * __restrict ____delim_95));// L343:L344 -extern char * ((____strtok_r_100) (char * __restrict ____s_97, const char * __restrict ____delim_98, char * (* __restrict ____save_ptr_99)));// L349:L352 -extern char * ((__strtok_r_104) (char * __restrict ____s_101, const char * __restrict ____delim_102, char * (* __restrict ____save_ptr_103)));// L354:L356 -extern __size_t_1 (__strlen_106) (const char * (____s_105));// L394:L395 -extern __size_t_1 (__strnlen_109) (const char * (____string_107), __size_t_1 ____maxlen_108);// L401:L402 -extern char * ((__strerror_111) (int ____errnum_110));// L408 -extern int (__strerror_r_115) (int ____errnum_112, char * (____buf_113), __size_t_1 ____buflen_114);// L422:L424 -extern char * ((__strerror_l_118) (int ____errnum_116, ____locale_t_60 ____l_117));// L440 -extern void (____bzero_121) (void * (____s_119), __size_t_1 ____n_120);// L446 -extern void (__bcopy_125) (const void * (____src_122), void * (____dest_123), __size_t_1 ____n_124);// L450:L451 -extern void (__bzero_128) (void * (____s_126), __size_t_1 ____n_127);// L454 -extern int (__bcmp_132) (const void * (____s1_129), const void * (____s2_130), __size_t_1 ____n_131);// L457:L458 -extern char * ((__index_135) (const char * (____s_133), int ____c_134));// L484:L485 -extern char * ((__rindex_138) (const char * (____s_136), int ____c_137));// L512:L513 -extern int (__ffs_140) (int ____i_139);// L518 -extern int (__strcasecmp_143) (const char * (____s1_141), const char * (____s2_142));// L529:L530 -extern int (__strncasecmp_147) (const char * (____s1_144), const char * (____s2_145), __size_t_1 ____n_146);// L533:L534 -extern char * ((__strsep_150) (char * (* __restrict ____stringp_148), const char * __restrict ____delim_149));// L552:L554 -extern char * ((__strsignal_152) (int ____sig_151));// L559 -extern char * ((____stpcpy_155) (char * __restrict ____dest_153, const char * __restrict ____src_154));// L562:L563 -extern char * ((__stpcpy_158) (char * __restrict ____dest_156, const char * __restrict ____src_157));// L564:L565 -extern char * ((____stpncpy_162) (char * __restrict ____dest_159, const char * __restrict ____src_160, __size_t_1 ____n_161));// L569:L571 -extern char * ((__stpncpy_166) (char * __restrict ____dest_163, const char * __restrict ____src_164, __size_t_1 ____n_165));// L572:L574 -int (__main_169) (int __argc_167, char * (* (__argv_168))) { +extern int (__strcoll_l_67) (const char * (____s1_64), const char * (____s2_65), ____locale_t_62 ____l_66);// L162:L163 +extern __size_t_1 (__strxfrm_l_72) (char * (____dest_68), const char * (____src_69), __size_t_1 ____n_70, ____locale_t_62 ____l_71);// L165:L166 +extern char * ((__strdup_74) (const char * (____s_73)));// L171:L172 +extern char * ((__strndup_77) (const char * (____string_75), __size_t_1 ____n_76));// L179:L180 +extern char * ((__strchr_80) (const char * (____s_78), int ____c_79));// L231:L232 +extern char * ((__strrchr_83) (const char * (____s_81), int ____c_82));// L258:L259 +extern __size_t_1 (__strcspn_86) (const char * (____s_84), const char * (____reject_85));// L280:L281 +extern __size_t_1 (__strspn_89) (const char * (____s_87), const char * (____accept_88));// L284:L285 +extern char * ((__strpbrk_92) (const char * (____s_90), const char * (____accept_91)));// L310:L311 +extern char * ((__strstr_95) (const char * (____haystack_93), const char * (____needle_94)));// L337:L338 +extern char * ((__strtok_98) (char * __restrict ____s_96, const char * __restrict ____delim_97));// L343:L344 +extern char * ((____strtok_r_102) (char * __restrict ____s_99, const char * __restrict ____delim_100, char * (* __restrict ____save_ptr_101)));// L349:L352 +extern char * ((__strtok_r_106) (char * __restrict ____s_103, const char * __restrict ____delim_104, char * (* __restrict ____save_ptr_105)));// L354:L356 +extern __size_t_1 (__strlen_108) (const char * (____s_107));// L394:L395 +extern __size_t_1 (__strlen_109) (const char * (____s_107));// L394:L395 +extern __size_t_1 (__strnlen_112) (const char * (____string_110), __size_t_1 ____maxlen_111);// L401:L402 +extern char * ((__strerror_114) (int ____errnum_113));// L408 +extern char * ((__strerror_115) (int ____errnum_113));// L408 +extern int (__strerror_r_119) (int ____errnum_116, char * (____buf_117), __size_t_1 ____buflen_118);// L422:L424 +extern char * ((__strerror_l_122) (int ____errnum_120, ____locale_t_62 ____l_121));// L440 +extern void (____bzero_125) (void * (____s_123), __size_t_1 ____n_124);// L446 +extern void (____bzero_126) (void * (____s_123), __size_t_1 ____n_124);// L446 +extern void (__bcopy_130) (const void * (____src_127), void * (____dest_128), __size_t_1 ____n_129);// L450:L451 +extern void (__bzero_133) (void * (____s_131), __size_t_1 ____n_132);// L454 +extern int (__bcmp_137) (const void * (____s1_134), const void * (____s2_135), __size_t_1 ____n_136);// L457:L458 +extern char * ((__index_140) (const char * (____s_138), int ____c_139));// L484:L485 +extern char * ((__rindex_143) (const char * (____s_141), int ____c_142));// L512:L513 +extern int (__ffs_145) (int ____i_144);// L518 +extern int (__strcasecmp_148) (const char * (____s1_146), const char * (____s2_147));// L529:L530 +extern int (__strncasecmp_152) (const char * (____s1_149), const char * (____s2_150), __size_t_1 ____n_151);// L533:L534 +extern char * ((__strsep_155) (char * (* __restrict ____stringp_153), const char * __restrict ____delim_154));// L552:L554 +extern char * ((__strsignal_157) (int ____sig_156));// L559 +extern char * ((____stpcpy_160) (char * __restrict ____dest_158, const char * __restrict ____src_159));// L562:L563 +extern char * ((__stpcpy_163) (char * __restrict ____dest_161, const char * __restrict ____src_162));// L564:L565 +extern char * ((____stpncpy_167) (char * __restrict ____dest_164, const char * __restrict ____src_165, __size_t_1 ____n_166));// L569:L571 +extern char * ((__stpncpy_171) (char * __restrict ____dest_168, const char * __restrict ____src_169, __size_t_1 ____n_170));// L572:L574 +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +extern char * ((____stpncpy_chk_200) (char * (____dest_196), const char * (____src_197), __size_t_1 ____n_198, __size_t_1 ____destlen_199));// L130:L131 +extern char * ((____stpncpy_alias_204) (char * (____dest_201), const char * (____src_202), __size_t_1 ____n_203));// L132:L133 +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +void (__cardreader_222) (char * (__prepend_216)) { + +if (__static_condition_default_223) { { { -__static_type_error("type error : no valid expression"); // L31 +int __len_217= __strlen_108 ( __prepend_216 ) + 13 + 1;// L10 + +int __len_218= __strlen_109 ( __prepend_216 ) + 13 + 1;// L10 + +if (__static_condition_default_219) { +__static_type_error("invalid declaration of path under this presence condition"); +} + +if (__static_condition_default_220) { +__static_type_error("invalid declaration of path under this presence condition"); +} + +char __lfilename_221[13]= "FOLDERNAME12\0";// L15 + +__static_type_error("type error : no valid expression"); // L19 +if ( __prepend_216 [ 0 ] == '\0' )// L20 +{ +__static_type_error("type error : no valid expression"); // L20 +} +__static_type_error("type error : no valid expression"); // L21 +__static_type_error("type error : no valid expression"); // L22 +__static_type_error("type error : no valid expression"); // L23 +} +} + + +} +} +int (__main_226) (int __argc_224, char * (* (__argv_225))) { + +if (__static_condition_default_228) { + +{ +{ + + + +__static_type_error("type error") ; // L31 return 0 ;// L32 } } } +} +int (__main_227) (int __argc_224, char * (* (__argv_225))) { + +if (__static_condition_default_229) { + +{ +{ + + + + __cardreader_222 ("") ; // L31 +return 0 ;// L32 +} +} + + +} +} diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.clangres index e69de29b..ac256a78 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.clangres @@ -0,0 +1,10 @@ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.c:199:6: warning: Value stored to '__len_217' during its initialization is never read [deadcode.DeadStores] +int __len_217= __strlen_108 ( __prepend_216 ) + 13 + 1;// L10 + ^~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.c:201:6: warning: Value stored to '__len_218' during its initialization is never read [deadcode.DeadStores] +int __len_218= __strlen_109 ( __prepend_216 ) + 13 + 1;// L10 + ^~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.c:211:7: warning: Value stored to '__lfilename_221' during its initialization is never read [deadcode.DeadStores] +char __lfilename_221[13]= "FOLDERNAME12\0";// L15 + ^~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~ +3 warnings generated. diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/b8e79dce897.desugared.c b/fonda/cpp_testsuite/varBugs/MARLIN/b8e79dce897.desugared.c index 67c108c4..efb149a9 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/b8e79dce897.desugared.c +++ b/fonda/cpp_testsuite/varBugs/MARLIN/b8e79dce897.desugared.c @@ -7,289 +7,289 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_313; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_217; -extern const bool __static_condition_default_388; -extern const bool __static_condition_default_198; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_769; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_699; +extern const bool __static_condition_default_510; extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_637; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_204; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_1097; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_1095; -extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_907; extern const bool __static_condition_default_317; -extern const bool __static_condition_default_536; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_380; -extern const bool __static_condition_default_846; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_1110; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_619; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_549; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_1101; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_1111; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_246; extern const bool __static_condition_default_488; -extern const bool __static_condition_default_288; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_494; extern const bool __static_condition_default_521; -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_701; -extern const bool __static_condition_default_568; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_789; extern const bool __static_condition_default_650; -extern const bool __static_condition_default_963; -extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_542; -extern const bool __static_condition_default_386; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_523; extern const bool __static_condition_default_431; -extern const bool __static_condition_default_270; +extern const bool __static_condition_default_169; extern const bool __static_condition_default_735; -extern const bool __static_condition_default_700; +extern const bool __static_condition_default_1099; +extern const bool __static_condition_default_455; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_1096; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_670; +extern const bool __static_condition_default_267; extern const bool __static_condition_default_819; -extern const bool __static_condition_default_1109; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_956; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_761; +extern const bool __static_condition_default_894; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_1104; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_333; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_809; extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_693; -extern const bool __static_condition_default_549; -extern const bool __static_condition_default_1108; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_957; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_907; -extern const bool __static_condition_default_1101; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_461; -extern const bool __static_condition_default_646; -extern const bool __static_condition_default_564; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_862; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_386; +extern const bool __static_condition_default_419; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_955; +extern const bool __static_condition_default_559; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_1095; +extern const bool __static_condition_default_1100; extern const bool __static_condition_default_686; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_1106; -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_315; -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_250; +extern const bool __static_condition_default_583; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_759; +extern const bool __static_condition_default_1042; extern const bool __static_condition_default_76; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_868; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_590; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_347; -extern const bool __static_condition_default_848; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_393; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_677; -extern const bool __static_condition_default_632; -extern const bool __static_condition_default_746; +extern const bool __static_condition_default_382; extern const bool __static_condition_default_229; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_613; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_1111; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_779; -extern const bool __static_condition_default_872; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_248; -extern const bool __static_condition_default_363; -extern const bool __static_condition_default_723; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_1098; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_536; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_791; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_834; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_380; +extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_395; extern const bool __static_condition_default_662; -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_709; -extern const bool __static_condition_default_258; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_842; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_408; extern const bool __static_condition_default_633; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_636; extern const bool __static_condition_default_311; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_1072; extern const bool __static_condition_default_274; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_333; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_875; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_408; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_511; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_544; extern const bool __static_condition_default_793; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_944; -extern const bool __static_condition_default_887; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_891; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_1102; -extern const bool __static_condition_default_290; -extern const bool __static_condition_default_842; -extern const bool __static_condition_default_858; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_357; extern const bool __static_condition_default_187; -extern const bool __static_condition_default_512; -extern const bool __static_condition_default_647; -extern const bool __static_condition_default_1096; -extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_1100; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_967; -extern const bool __static_condition_default_1110; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_1104; -extern const bool __static_condition_default_702; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_1103; -extern const bool __static_condition_default_244; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_797; -extern const bool __static_condition_default_803; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_438; -extern const bool __static_condition_default_734; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_747; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_257; extern const bool __static_condition_default_182; -extern const bool __static_condition_default_578; -extern const bool __static_condition_default_489; -extern const bool __static_condition_default_929; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_583; -extern const bool __static_condition_default_293; -extern const bool __static_condition_default_412; -extern const bool __static_condition_default_670; -extern const bool __static_condition_default_755; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_53; -extern const bool __static_condition_default_787; -extern const bool __static_condition_default_789; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_1099; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_955; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_914; -extern const bool __static_condition_default_402; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_780; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_645; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_573; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_668; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_367; +extern const bool __static_condition_default_646; extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_217; extern const bool __static_condition_default_651; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_543; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_491; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_388; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_489; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_929; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_702; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_846; +extern const bool __static_condition_default_290; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_747; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_1105; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_1106; +extern const bool __static_condition_default_204; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_1109; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_512; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_1098; extern const bool __static_condition_default_365; -extern const bool __static_condition_default_499; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_721; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_1108; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_769; +extern const bool __static_condition_default_249; extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_761; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_367; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_419; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_382; -extern const bool __static_condition_default_559; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_663; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_173; extern const bool __static_condition_default_685; -extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_894; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_455; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_963; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_891; +extern const bool __static_condition_default_550; extern const bool __static_condition_default_753; -extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_235; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_658; extern const bool __static_condition_default_123; -extern const bool __static_condition_default_638; -extern const bool __static_condition_default_1105; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_552; +extern const bool __static_condition_default_84; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_1103; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_337; +extern const bool __static_condition_default_347; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_875; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_1097; +extern const bool __static_condition_default_568; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_677; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_613; +extern const bool __static_condition_default_779; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_1102; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/b8e79dce897.desugared.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/b8e79dce897.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/b8e79dce897.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/b8e79dce897.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/b8e79dce897.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/b8e79dce897.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.desugared.c b/fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.desugared.c index aea45246..f540d3c5 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.desugared.c +++ b/fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.desugared.c @@ -7,8 +7,8 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_4; extern const bool __static_condition_default_3; +extern const bool __static_condition_default_4; void __static_initializer_default() { __static_renaming("__left_probe_bed_position_0", "left_probe_bed_position"); __static_renaming("__xGridSpacing_1", "xGridSpacing"); diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.desugared.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/f87c80889fe.desugared.c b/fonda/cpp_testsuite/varBugs/MARLIN/f87c80889fe.desugared.c index 57d33bd6..4bb8a49d 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/f87c80889fe.desugared.c +++ b/fonda/cpp_testsuite/varBugs/MARLIN/f87c80889fe.desugared.c @@ -7,370 +7,370 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_781; -extern const bool __static_condition_default_395; -extern const bool __static_condition_default_488; -extern const bool __static_condition_default_552; -extern const bool __static_condition_default_1369; -extern const bool __static_condition_default_625; -extern const bool __static_condition_default_755; -extern const bool __static_condition_default_1165; -extern const bool __static_condition_default_862; -extern const bool __static_condition_default_2400; -extern const bool __static_condition_default_872; -extern const bool __static_condition_default_1416; -extern const bool __static_condition_default_2352; +extern const bool __static_condition_default_455; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_2321; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_1753; +extern const bool __static_condition_default_512; +extern const bool __static_condition_default_204; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_791; +extern const bool __static_condition_default_1381; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_1405; +extern const bool __static_condition_default_2342; +extern const bool __static_condition_default_2329; extern const bool __static_condition_default_357; -extern const bool __static_condition_default_538; -extern const bool __static_condition_default_684; -extern const bool __static_condition_default_957; -extern const bool __static_condition_default_875; -extern const bool __static_condition_default_1791; -extern const bool __static_condition_default_544; -extern const bool __static_condition_default_658; -extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_1420; -extern const bool __static_condition_default_539; -extern const bool __static_condition_default_560; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_499; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_550; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_1357; extern const bool __static_condition_default_76; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_1944; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_1315; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_1361; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_388; +extern const bool __static_condition_default_2381; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_1556; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_753; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_894; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_2322; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_677; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_721; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_559; +extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_789; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_2389; +extern const bool __static_condition_default_1774; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_1789; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_1353; +extern const bool __static_condition_default_1515; +extern const bool __static_condition_default_1432; +extern const bool __static_condition_default_1776; +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_1152; +extern const bool __static_condition_default_963; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_670; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_1531; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_1349; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_419; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_1785; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_2314; extern const bool __static_condition_default_647; -extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_590; -extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_2046; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_2349; +extern const bool __static_condition_default_544; +extern const bool __static_condition_default_1750; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_1754; +extern const bool __static_condition_default_2312; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_53; extern const bool __static_condition_default_244; -extern const bool __static_condition_default_1345; -extern const bool __static_condition_default_1776; -extern const bool __static_condition_default_2064; -extern const bool __static_condition_default_1814; -extern const bool __static_condition_default_223; -extern const bool __static_condition_default_753; -extern const bool __static_condition_default_1402; -extern const bool __static_condition_default_529; -extern const bool __static_condition_default_914; -extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_1424; +extern const bool __static_condition_default_1385; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_2328; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_2330; +extern const bool __static_condition_default_2343; +extern const bool __static_condition_default_2350; +extern const bool __static_condition_default_1475; +extern const bool __static_condition_default_1791; +extern const bool __static_condition_default_521; +extern const bool __static_condition_default_1459; +extern const bool __static_condition_default_2376; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_333; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_1572; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_1808; +extern const bool __static_condition_default_1164; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_568; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_1568; +extern const bool __static_condition_default_1377; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_2387; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_1516; +extern const bool __static_condition_default_84; +extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_583; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_2063; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_747; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_187; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_779; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_632; extern const bool __static_condition_default_734; -extern const bool __static_condition_default_1532; -extern const bool __static_condition_default_585; -extern const bool __static_condition_default_419; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_613; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_1345; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_755; extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_956; -extern const bool __static_condition_default_1498; -extern const bool __static_condition_default_1556; -extern const bool __static_condition_default_198; -extern const bool __static_condition_default_380; -extern const bool __static_condition_default_1398; -extern const bool __static_condition_default_182; -extern const bool __static_condition_default_512; -extern const bool __static_condition_default_53; -extern const bool __static_condition_default_248; +extern const bool __static_condition_default_1560; +extern const bool __static_condition_default_299; extern const bool __static_condition_default_868; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_1485; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_1773; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_1749; +extern const bool __static_condition_default_549; extern const bool __static_condition_default_290; -extern const bool __static_condition_default_788; -extern const bool __static_condition_default_1391; -extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_1409; -extern const bool __static_condition_default_646; +extern const bool __static_condition_default_2378; extern const bool __static_condition_default_511; -extern const bool __static_condition_default_699; -extern const bool __static_condition_default_1381; -extern const bool __static_condition_default_1152; -extern const bool __static_condition_default_1753; -extern const bool __static_condition_default_1775; -extern const bool __static_condition_default_549; -extern const bool __static_condition_default_267; -extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_1432; -extern const bool __static_condition_default_355; -extern const bool __static_condition_default_493; -extern const bool __static_condition_default_271; -extern const bool __static_condition_default_792; -extern const bool __static_condition_default_780; -extern const bool __static_condition_default_1405; -extern const bool __static_condition_default_382; -extern const bool __static_condition_default_1395; -extern const bool __static_condition_default_2313; -extern const bool __static_condition_default_510; -extern const bool __static_condition_default_503; -extern const bool __static_condition_default_735; -extern const bool __static_condition_default_433; -extern const bool __static_condition_default_1787; -extern const bool __static_condition_default_619; -extern const bool __static_condition_default_2047; -extern const bool __static_condition_default_573; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_634; extern const bool __static_condition_default_700; -extern const bool __static_condition_default_1015; -extern const bool __static_condition_default_852; -extern const bool __static_condition_default_280; -extern const bool __static_condition_default_461; -extern const bool __static_condition_default_683; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_2344; -extern const bool __static_condition_default_386; -extern const bool __static_condition_default_978; -extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_1564; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_929; extern const bool __static_condition_default_293; -extern const bool __static_condition_default_657; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_1080; -extern const bool __static_condition_default_1424; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_702; +extern const bool __static_condition_default_2399; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_760; extern const bool __static_condition_default_842; -extern const bool __static_condition_default_998; -extern const bool __static_condition_default_2062; -extern const bool __static_condition_default_373; -extern const bool __static_condition_default_1485; -extern const bool __static_condition_default_1749; -extern const bool __static_condition_default_2045; -extern const bool __static_condition_default_803; -extern const bool __static_condition_default_2350; -extern const bool __static_condition_default_661; -extern const bool __static_condition_default_282; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_746; -extern const bool __static_condition_default_2378; -extern const bool __static_condition_default_840; -extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_288; -extern const bool __static_condition_default_715; -extern const bool __static_condition_default_299; -extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_1944; -extern const bool __static_condition_default_967; +extern const bool __static_condition_default_2351; +extern const bool __static_condition_default_1409; +extern const bool __static_condition_default_1816; +extern const bool __static_condition_default_536; +extern const bool __static_condition_default_761; +extern const bool __static_condition_default_864; extern const bool __static_condition_default_229; -extern const bool __static_condition_default_516; -extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_2395; -extern const bool __static_condition_default_759; -extern const bool __static_condition_default_752; -extern const bool __static_condition_default_333; -extern const bool __static_condition_default_583; -extern const bool __static_condition_default_537; -extern const bool __static_condition_default_685; -extern const bool __static_condition_default_2314; +extern const bool __static_condition_default_1369; +extern const bool __static_condition_default_263; extern const bool __static_condition_default_637; -extern const bool __static_condition_default_907; -extern const bool __static_condition_default_402; -extern const bool __static_condition_default_408; -extern const bool __static_condition_default_708; -extern const bool __static_condition_default_296; -extern const bool __static_condition_default_2379; -extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_341; -extern const bool __static_condition_default_1810; -extern const bool __static_condition_default_455; -extern const bool __static_condition_default_417; -extern const bool __static_condition_default_521; -extern const bool __static_condition_default_2343; -extern const bool __static_condition_default_250; -extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_258; -extern const bool __static_condition_default_756; -extern const bool __static_condition_default_187; +extern const bool __static_condition_default_801; extern const bool __static_condition_default_1073; -extern const bool __static_condition_default_84; -extern const bool __static_condition_default_721; -extern const bool __static_condition_default_1365; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_769; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_1373; extern const bool __static_condition_default_944; -extern const bool __static_condition_default_709; -extern const bool __static_condition_default_787; -extern const bool __static_condition_default_938; -extern const bool __static_condition_default_1475; -extern const bool __static_condition_default_650; -extern const bool __static_condition_default_1773; -extern const bool __static_condition_default_204; -extern const bool __static_condition_default_692; -extern const bool __static_condition_default_375; -extern const bool __static_condition_default_432; -extern const bool __static_condition_default_331; -extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_1353; -extern const bool __static_condition_default_311; -extern const bool __static_condition_default_638; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_1164; -extern const bool __static_condition_default_848; -extern const bool __static_condition_default_747; -extern const bool __static_condition_default_2396; -extern const bool __static_condition_default_523; -extern const bool __static_condition_default_929; -extern const bool __static_condition_default_972; -extern const bool __static_condition_default_745; -extern const bool __static_condition_default_894; +extern const bool __static_condition_default_1810; +extern const bool __static_condition_default_365; +extern const bool __static_condition_default_657; extern const bool __static_condition_default_431; -extern const bool __static_condition_default_1373; -extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_717; -extern const bool __static_condition_default_668; -extern const bool __static_condition_default_633; -extern const bool __static_condition_default_797; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_636; +extern const bool __static_condition_default_1532; +extern const bool __static_condition_default_1552; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_2044; +extern const bool __static_condition_default_2045; +extern const bool __static_condition_default_1428; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_684; extern const bool __static_condition_default_1005; -extern const bool __static_condition_default_2315; -extern const bool __static_condition_default_760; -extern const bool __static_condition_default_883; -extern const bool __static_condition_default_1436; -extern const bool __static_condition_default_235; -extern const bool __static_condition_default_2390; +extern const bool __static_condition_default_1388; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_380; +extern const bool __static_condition_default_1576; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_1395; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_846; +extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_891; +extern const bool __static_condition_default_1398; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_907; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_1489; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_787; extern const bool __static_condition_default_809; -extern const bool __static_condition_default_659; -extern const bool __static_condition_default_597; -extern const bool __static_condition_default_1349; -extern const bool __static_condition_default_1459; -extern const bool __static_condition_default_536; -extern const bool __static_condition_default_388; -extern const bool __static_condition_default_2323; -extern const bool __static_condition_default_257; -extern const bool __static_condition_default_541; -extern const bool __static_condition_default_686; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_367; +extern const bool __static_condition_default_2047; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_2064; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_1402; +extern const bool __static_condition_default_382; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_875; extern const bool __static_condition_default_1453; -extern const bool __static_condition_default_1516; -extern const bool __static_condition_default_979; -extern const bool __static_condition_default_769; -extern const bool __static_condition_default_246; -extern const bool __static_condition_default_955; -extern const bool __static_condition_default_169; -extern const bool __static_condition_default_274; -extern const bool __static_condition_default_649; -extern const bool __static_condition_default_543; -extern const bool __static_condition_default_313; -extern const bool __static_condition_default_670; -extern const bool __static_condition_default_1361; -extern const bool __static_condition_default_2389; -extern const bool __static_condition_default_2046; -extern const bool __static_condition_default_444; -extern const bool __static_condition_default_241; -extern const bool __static_condition_default_980; -extern const bool __static_condition_default_2351; -extern const bool __static_condition_default_170; -extern const bool __static_condition_default_813; +extern const bool __static_condition_default_759; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_2320; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_1814; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_797; extern const bool __static_condition_default_887; -extern const bool __static_condition_default_1357; -extern const bool __static_condition_default_1377; -extern const bool __static_condition_default_701; -extern const bool __static_condition_default_514; -extern const bool __static_condition_default_1515; -extern const bool __static_condition_default_438; -extern const bool __static_condition_default_1458; -extern const bool __static_condition_default_1572; +extern const bool __static_condition_default_834; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_1365; +extern const bool __static_condition_default_1775; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_955; extern const bool __static_condition_default_2043; -extern const bool __static_condition_default_751; -extern const bool __static_condition_default_473; -extern const bool __static_condition_default_757; -extern const bool __static_condition_default_249; -extern const bool __static_condition_default_193; -extern const bool __static_condition_default_761; -extern const bool __static_condition_default_317; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_201; -extern const bool __static_condition_default_2329; -extern const bool __static_condition_default_278; -extern const bool __static_condition_default_469; -extern const bool __static_condition_default_497; -extern const bool __static_condition_default_891; -extern const bool __static_condition_default_550; -extern const bool __static_condition_default_677; -extern const bool __static_condition_default_846; -extern const bool __static_condition_default_1385; -extern const bool __static_condition_default_123; -extern const bool __static_condition_default_486; -extern const bool __static_condition_default_253; -extern const bool __static_condition_default_2388; -extern const bool __static_condition_default_494; -extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_1774; -extern const bool __static_condition_default_1568; -extern const bool __static_condition_default_736; +extern const bool __static_condition_default_701; extern const bool __static_condition_default_363; -extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_311; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_2388; +extern const bool __static_condition_default_1436; +extern const bool __static_condition_default_2394; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_386; +extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_1391; +extern const bool __static_condition_default_1416; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_1165; +extern const bool __static_condition_default_1341; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_1042; extern const bool __static_condition_default_2377; -extern const bool __static_condition_default_1785; -extern const bool __static_condition_default_365; -extern const bool __static_condition_default_173; -extern const bool __static_condition_default_636; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_702; -extern const bool __static_condition_default_632; -extern const bool __static_condition_default_693; -extern const bool __static_condition_default_393; -extern const bool __static_condition_default_1576; -extern const bool __static_condition_default_723; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_271; extern const bool __static_condition_default_347; -extern const bool __static_condition_default_475; -extern const bool __static_condition_default_727; -extern const bool __static_condition_default_1754; -extern const bool __static_condition_default_367; -extern const bool __static_condition_default_613; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_663; -extern const bool __static_condition_default_779; -extern const bool __static_condition_default_645; -extern const bool __static_condition_default_263; -extern const bool __static_condition_default_284; -extern const bool __static_condition_default_634; -extern const bool __static_condition_default_491; -extern const bool __static_condition_default_2063; -extern const bool __static_condition_default_768; -extern const bool __static_condition_default_2330; -extern const bool __static_condition_default_2322; -extern const bool __static_condition_default_767; -extern const bool __static_condition_default_1564; -extern const bool __static_condition_default_337; -extern const bool __static_condition_default_568; extern const bool __static_condition_default_578; -extern const bool __static_condition_default_315; -extern const bool __static_condition_default_1789; -extern const bool __static_condition_default_1531; -extern const bool __static_condition_default_238; -extern const bool __static_condition_default_471; -extern const bool __static_condition_default_1341; -extern const bool __static_condition_default_369; -extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_651; -extern const bool __static_condition_default_1552; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_1489; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_2062; extern const bool __static_condition_default_489; -extern const bool __static_condition_default_553; -extern const bool __static_condition_default_1750; -extern const bool __static_condition_default_255; -extern const bool __static_condition_default_836; -extern const bool __static_condition_default_412; -extern const bool __static_condition_default_2044; -extern const bool __static_condition_default_1315; -extern const bool __static_condition_default_1560; -extern const bool __static_condition_default_2331; -extern const bool __static_condition_default_210; -extern const bool __static_condition_default_662; -extern const bool __static_condition_default_789; -extern const bool __static_condition_default_1816; -extern const bool __static_condition_default_1428; -extern const bool __static_condition_default_559; -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_2321; -extern const bool __static_condition_default_542; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_1065; extern const bool __static_condition_default_1159; -extern const bool __static_condition_default_878; -extern const bool __static_condition_default_1388; -extern const bool __static_condition_default_564; -extern const bool __static_condition_default_864; -extern const bool __static_condition_default_217; -extern const bool __static_condition_default_286; -extern const bool __static_condition_default_259; -extern const bool __static_condition_default_963; -extern const bool __static_condition_default_275; -extern const bool __static_condition_default_991; -extern const bool __static_condition_default_515; -extern const bool __static_condition_default_1808; -extern const bool __static_condition_default_791; -extern const bool __static_condition_default_264; -extern const bool __static_condition_default_345; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_2382; -extern const bool __static_condition_default_793; -extern const bool __static_condition_default_858; -extern const bool __static_condition_default_825; +extern const bool __static_condition_default_619; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_1420; +extern const bool __static_condition_default_488; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_2395; +extern const bool __static_condition_default_337; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_1458; +extern const bool __static_condition_default_1787; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_2313; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_1498; +extern const bool __static_condition_default_473; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -1148,77 +1148,76 @@ __static_renaming("__strndup_2164", "strndup"); __static_renaming("__strndup_2165", "strndup"); __static_renaming("__strndup_2166", "strndup"); __static_renaming("__strchr_2169", "strchr"); -__static_renaming("__strchr_2170", "strchr"); -__static_renaming("__strrchr_2173", "strrchr"); +__static_renaming("__strrchr_2172", "strrchr"); +__static_renaming("__strcspn_2175", "strcspn"); __static_renaming("__strcspn_2176", "strcspn"); __static_renaming("__strcspn_2177", "strcspn"); -__static_renaming("__strcspn_2178", "strcspn"); +__static_renaming("__strspn_2180", "strspn"); __static_renaming("__strspn_2181", "strspn"); __static_renaming("__strspn_2182", "strspn"); -__static_renaming("__strspn_2183", "strspn"); -__static_renaming("__strpbrk_2186", "strpbrk"); -__static_renaming("__strstr_2189", "strstr"); -__static_renaming("__strtok_2192", "strtok"); -__static_renaming("____strtok_r_2196", "__strtok_r"); -__static_renaming("__strtok_r_2200", "strtok_r"); +__static_renaming("__strpbrk_2185", "strpbrk"); +__static_renaming("__strstr_2188", "strstr"); +__static_renaming("__strtok_2191", "strtok"); +__static_renaming("____strtok_r_2195", "__strtok_r"); +__static_renaming("__strtok_r_2199", "strtok_r"); +__static_renaming("__strlen_2201", "strlen"); __static_renaming("__strlen_2202", "strlen"); __static_renaming("__strlen_2203", "strlen"); __static_renaming("__strlen_2204", "strlen"); __static_renaming("__strlen_2205", "strlen"); __static_renaming("__strlen_2206", "strlen"); -__static_renaming("__strlen_2207", "strlen"); +__static_renaming("__strnlen_2211", "strnlen"); __static_renaming("__strnlen_2212", "strnlen"); __static_renaming("__strnlen_2213", "strnlen"); -__static_renaming("__strnlen_2214", "strnlen"); +__static_renaming("__strerror_2215", "strerror"); __static_renaming("__strerror_2216", "strerror"); -__static_renaming("__strerror_2217", "strerror"); +__static_renaming("__strerror_r_2222", "strerror_r"); __static_renaming("__strerror_r_2223", "strerror_r"); __static_renaming("__strerror_r_2224", "strerror_r"); -__static_renaming("__strerror_r_2225", "strerror_r"); -__static_renaming("__strerror_l_2228", "strerror_l"); +__static_renaming("__strerror_l_2227", "strerror_l"); +__static_renaming("____bzero_2232", "__bzero"); __static_renaming("____bzero_2233", "__bzero"); __static_renaming("____bzero_2234", "__bzero"); __static_renaming("____bzero_2235", "__bzero"); __static_renaming("____bzero_2236", "__bzero"); __static_renaming("____bzero_2237", "__bzero"); -__static_renaming("____bzero_2238", "__bzero"); +__static_renaming("__bcopy_2243", "bcopy"); __static_renaming("__bcopy_2244", "bcopy"); __static_renaming("__bcopy_2245", "bcopy"); -__static_renaming("__bcopy_2246", "bcopy"); +__static_renaming("__bzero_2250", "bzero"); __static_renaming("__bzero_2251", "bzero"); __static_renaming("__bzero_2252", "bzero"); -__static_renaming("__bzero_2253", "bzero"); +__static_renaming("__bcmp_2258", "bcmp"); __static_renaming("__bcmp_2259", "bcmp"); __static_renaming("__bcmp_2260", "bcmp"); -__static_renaming("__bcmp_2261", "bcmp"); -__static_renaming("__index_2264", "index"); -__static_renaming("__rindex_2267", "rindex"); -__static_renaming("__ffs_2269", "ffs"); -__static_renaming("__strcasecmp_2272", "strcasecmp"); +__static_renaming("__index_2263", "index"); +__static_renaming("__rindex_2266", "rindex"); +__static_renaming("__ffs_2268", "ffs"); +__static_renaming("__strcasecmp_2271", "strcasecmp"); +__static_renaming("__strncasecmp_2277", "strncasecmp"); __static_renaming("__strncasecmp_2278", "strncasecmp"); __static_renaming("__strncasecmp_2279", "strncasecmp"); -__static_renaming("__strncasecmp_2280", "strncasecmp"); -__static_renaming("__strsep_2283", "strsep"); -__static_renaming("__strsignal_2285", "strsignal"); -__static_renaming("____stpcpy_2288", "__stpcpy"); -__static_renaming("__stpcpy_2291", "stpcpy"); +__static_renaming("__strsep_2282", "strsep"); +__static_renaming("__strsignal_2284", "strsignal"); +__static_renaming("____stpcpy_2287", "__stpcpy"); +__static_renaming("__stpcpy_2290", "stpcpy"); +__static_renaming("____stpncpy_2296", "__stpncpy"); __static_renaming("____stpncpy_2297", "__stpncpy"); __static_renaming("____stpncpy_2298", "__stpncpy"); -__static_renaming("____stpncpy_2299", "__stpncpy"); +__static_renaming("__stpncpy_2304", "stpncpy"); __static_renaming("__stpncpy_2305", "stpncpy"); __static_renaming("__stpncpy_2306", "stpncpy"); -__static_renaming("__stpncpy_2307", "stpncpy"); +__static_renaming("____stpncpy_chk_2360", "__stpncpy_chk"); __static_renaming("____stpncpy_chk_2361", "__stpncpy_chk"); __static_renaming("____stpncpy_chk_2362", "__stpncpy_chk"); -__static_renaming("____stpncpy_chk_2363", "__stpncpy_chk"); +__static_renaming("____stpncpy_alias_2368", "__stpncpy_alias"); __static_renaming("____stpncpy_alias_2369", "__stpncpy_alias"); __static_renaming("____stpncpy_alias_2370", "__stpncpy_alias"); -__static_renaming("____stpncpy_alias_2371", "__stpncpy_alias"); -__static_renaming("__millis_2391", "millis"); -__static_renaming("__residencyStart_2392", "residencyStart"); +__static_renaming("__millis_2390", "millis"); +__static_renaming("__residencyStart_2391", "residencyStart"); +__static_renaming("__process_commands_2392", "process_commands"); __static_renaming("__process_commands_2393", "process_commands"); -__static_renaming("__process_commands_2394", "process_commands"); -__static_renaming("__main_2399", "main"); +__static_renaming("__main_2398", "main"); __static_condition_renaming("__static_condition_default_53", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); __static_condition_renaming("__static_condition_default_76", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); @@ -1560,32 +1559,32 @@ __static_condition_renaming("__static_condition_default_2047", "(defined __need_ __static_condition_renaming("__static_condition_default_2062", "!(defined __need___FILE) && !(defined __STRICT_ANSI__)"); __static_condition_renaming("__static_condition_default_2063", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H)"); __static_condition_renaming("__static_condition_default_2064", "(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2313", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2314", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2315", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2321", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2322", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2323", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2329", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2330", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2331", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2343", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2344", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2350", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2351", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2352", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2377", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2378", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2379", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2382", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2388", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2389", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2390", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); -__static_condition_renaming("__static_condition_default_2395", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2396", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); -__static_condition_renaming("__static_condition_default_2400", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc)"); - -if (__static_condition_default_2400) { +__static_condition_renaming("__static_condition_default_2312", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2313", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2314", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2320", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2321", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2322", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2328", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2329", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2330", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2342", "(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2343", "!(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2349", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2350", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2351", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2376", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2377", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2378", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2381", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2387", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2388", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2389", "(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _STDLIB_H)"); +__static_condition_renaming("__static_condition_default_2394", "!(defined _FORTIFY_SOURCE) || (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2395", "(defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_2399", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && (defined _STDLIB_H) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && (defined _STDLIB_H) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && !(defined __need_malloc_and_calloc) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _STDLIB_H) && (defined __need_malloc_and_calloc) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || (defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _STDLIB_H) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO) || (defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __CORRECT_ISO_CPP_STRING_H_PROTO)"); + +if (__static_condition_default_2399) { __static_parse_error("Unable to parse"); } }; @@ -3077,66 +3076,65 @@ extern char * ((__strndup_2164) (const char * (____string_2160), __size_t_1 _ extern char * ((__strndup_2165) (const char * (____string_2160), __size_t_1093 ____n_2162));// L179:L180 extern char * ((__strndup_2166) (const char * (____string_2160), __size_t_2037 ____n_2163));// L179:L180 extern char * ((__strchr_2169) (const char * (____s_2167), int ____c_2168));// L231:L232 -extern char * ((__strchr_2170) (const char * (____s_2167), int ____c_2168));// L231:L232 -extern char * ((__strrchr_2173) (const char * (____s_2171), int ____c_2172));// L258:L259 -extern __size_t_1 (__strcspn_2176) (const char * (____s_2174), const char * (____reject_2175));// L280:L281 -extern __size_t_1093 (__strcspn_2177) (const char * (____s_2174), const char * (____reject_2175));// L280:L281 -extern __size_t_2037 (__strcspn_2178) (const char * (____s_2174), const char * (____reject_2175));// L280:L281 -extern __size_t_1 (__strspn_2181) (const char * (____s_2179), const char * (____accept_2180));// L284:L285 -extern __size_t_1093 (__strspn_2182) (const char * (____s_2179), const char * (____accept_2180));// L284:L285 -extern __size_t_2037 (__strspn_2183) (const char * (____s_2179), const char * (____accept_2180));// L284:L285 -extern char * ((__strpbrk_2186) (const char * (____s_2184), const char * (____accept_2185)));// L310:L311 -extern char * ((__strstr_2189) (const char * (____haystack_2187), const char * (____needle_2188)));// L337:L338 -extern char * ((__strtok_2192) (char * __restrict ____s_2190, const char * __restrict ____delim_2191));// L343:L344 -extern char * ((____strtok_r_2196) (char * __restrict ____s_2193, const char * __restrict ____delim_2194, char * (* __restrict ____save_ptr_2195)));// L349:L352 -extern char * ((__strtok_r_2200) (char * __restrict ____s_2197, const char * __restrict ____delim_2198, char * (* __restrict ____save_ptr_2199)));// L354:L356 -extern __size_t_1 (__strlen_2202) (const char * (____s_2201));// L394:L395 -extern __size_t_1093 (__strlen_2203) (const char * (____s_2201));// L394:L395 -extern __size_t_2037 (__strlen_2204) (const char * (____s_2201));// L394:L395 -extern __size_t_1 (__strlen_2205) (const char * (____s_2201));// L394:L395 -extern __size_t_1093 (__strlen_2206) (const char * (____s_2201));// L394:L395 -extern __size_t_2037 (__strlen_2207) (const char * (____s_2201));// L394:L395 -extern __size_t_1 (__strnlen_2212) (const char * (____string_2208), __size_t_1 ____maxlen_2209);// L401:L402 -extern __size_t_1093 (__strnlen_2213) (const char * (____string_2208), __size_t_1093 ____maxlen_2210);// L401:L402 -extern __size_t_2037 (__strnlen_2214) (const char * (____string_2208), __size_t_2037 ____maxlen_2211);// L401:L402 -extern char * ((__strerror_2216) (int ____errnum_2215));// L408 -extern char * ((__strerror_2217) (int ____errnum_2215));// L408 -extern int (__strerror_r_2223) (int ____errnum_2218, char * (____buf_2219), __size_t_1 ____buflen_2220);// L422:L424 -extern int (__strerror_r_2224) (int ____errnum_2218, char * (____buf_2219), __size_t_1093 ____buflen_2221);// L422:L424 -extern int (__strerror_r_2225) (int ____errnum_2218, char * (____buf_2219), __size_t_2037 ____buflen_2222);// L422:L424 -extern char * ((__strerror_l_2228) (int ____errnum_2226, ____locale_t_2143 ____l_2227));// L440 -extern void (____bzero_2233) (void * (____s_2229), __size_t_1 ____n_2230);// L446 -extern void (____bzero_2234) (void * (____s_2229), __size_t_1093 ____n_2231);// L446 -extern void (____bzero_2235) (void * (____s_2229), __size_t_2037 ____n_2232);// L446 -extern void (____bzero_2236) (void * (____s_2229), __size_t_1 ____n_2230);// L446 -extern void (____bzero_2237) (void * (____s_2229), __size_t_1093 ____n_2231);// L446 -extern void (____bzero_2238) (void * (____s_2229), __size_t_2037 ____n_2232);// L446 -extern void (__bcopy_2244) (const void * (____src_2239), void * (____dest_2240), __size_t_1 ____n_2241);// L450:L451 -extern void (__bcopy_2245) (const void * (____src_2239), void * (____dest_2240), __size_t_1093 ____n_2242);// L450:L451 -extern void (__bcopy_2246) (const void * (____src_2239), void * (____dest_2240), __size_t_2037 ____n_2243);// L450:L451 -extern void (__bzero_2251) (void * (____s_2247), __size_t_1 ____n_2248);// L454 -extern void (__bzero_2252) (void * (____s_2247), __size_t_1093 ____n_2249);// L454 -extern void (__bzero_2253) (void * (____s_2247), __size_t_2037 ____n_2250);// L454 -extern int (__bcmp_2259) (const void * (____s1_2254), const void * (____s2_2255), __size_t_1 ____n_2256);// L457:L458 -extern int (__bcmp_2260) (const void * (____s1_2254), const void * (____s2_2255), __size_t_1093 ____n_2257);// L457:L458 -extern int (__bcmp_2261) (const void * (____s1_2254), const void * (____s2_2255), __size_t_2037 ____n_2258);// L457:L458 -extern char * ((__index_2264) (const char * (____s_2262), int ____c_2263));// L484:L485 -extern char * ((__rindex_2267) (const char * (____s_2265), int ____c_2266));// L512:L513 -extern int (__ffs_2269) (int ____i_2268);// L518 -extern int (__strcasecmp_2272) (const char * (____s1_2270), const char * (____s2_2271));// L529:L530 -extern int (__strncasecmp_2278) (const char * (____s1_2273), const char * (____s2_2274), __size_t_1 ____n_2275);// L533:L534 -extern int (__strncasecmp_2279) (const char * (____s1_2273), const char * (____s2_2274), __size_t_1093 ____n_2276);// L533:L534 -extern int (__strncasecmp_2280) (const char * (____s1_2273), const char * (____s2_2274), __size_t_2037 ____n_2277);// L533:L534 -extern char * ((__strsep_2283) (char * (* __restrict ____stringp_2281), const char * __restrict ____delim_2282));// L552:L554 -extern char * ((__strsignal_2285) (int ____sig_2284));// L559 -extern char * ((____stpcpy_2288) (char * __restrict ____dest_2286, const char * __restrict ____src_2287));// L562:L563 -extern char * ((__stpcpy_2291) (char * __restrict ____dest_2289, const char * __restrict ____src_2290));// L564:L565 -extern char * ((____stpncpy_2297) (char * __restrict ____dest_2292, const char * __restrict ____src_2293, __size_t_1 ____n_2294));// L569:L571 -extern char * ((____stpncpy_2298) (char * __restrict ____dest_2292, const char * __restrict ____src_2293, __size_t_1093 ____n_2295));// L569:L571 -extern char * ((____stpncpy_2299) (char * __restrict ____dest_2292, const char * __restrict ____src_2293, __size_t_2037 ____n_2296));// L569:L571 -extern char * ((__stpncpy_2305) (char * __restrict ____dest_2300, const char * __restrict ____src_2301, __size_t_1 ____n_2302));// L572:L574 -extern char * ((__stpncpy_2306) (char * __restrict ____dest_2300, const char * __restrict ____src_2301, __size_t_1093 ____n_2303));// L572:L574 -extern char * ((__stpncpy_2307) (char * __restrict ____dest_2300, const char * __restrict ____src_2301, __size_t_2037 ____n_2304));// L572:L574 +extern char * ((__strrchr_2172) (const char * (____s_2170), int ____c_2171));// L258:L259 +extern __size_t_1 (__strcspn_2175) (const char * (____s_2173), const char * (____reject_2174));// L280:L281 +extern __size_t_1093 (__strcspn_2176) (const char * (____s_2173), const char * (____reject_2174));// L280:L281 +extern __size_t_2037 (__strcspn_2177) (const char * (____s_2173), const char * (____reject_2174));// L280:L281 +extern __size_t_1 (__strspn_2180) (const char * (____s_2178), const char * (____accept_2179));// L284:L285 +extern __size_t_1093 (__strspn_2181) (const char * (____s_2178), const char * (____accept_2179));// L284:L285 +extern __size_t_2037 (__strspn_2182) (const char * (____s_2178), const char * (____accept_2179));// L284:L285 +extern char * ((__strpbrk_2185) (const char * (____s_2183), const char * (____accept_2184)));// L310:L311 +extern char * ((__strstr_2188) (const char * (____haystack_2186), const char * (____needle_2187)));// L337:L338 +extern char * ((__strtok_2191) (char * __restrict ____s_2189, const char * __restrict ____delim_2190));// L343:L344 +extern char * ((____strtok_r_2195) (char * __restrict ____s_2192, const char * __restrict ____delim_2193, char * (* __restrict ____save_ptr_2194)));// L349:L352 +extern char * ((__strtok_r_2199) (char * __restrict ____s_2196, const char * __restrict ____delim_2197, char * (* __restrict ____save_ptr_2198)));// L354:L356 +extern __size_t_1 (__strlen_2201) (const char * (____s_2200));// L394:L395 +extern __size_t_1093 (__strlen_2202) (const char * (____s_2200));// L394:L395 +extern __size_t_2037 (__strlen_2203) (const char * (____s_2200));// L394:L395 +extern __size_t_1 (__strlen_2204) (const char * (____s_2200));// L394:L395 +extern __size_t_1093 (__strlen_2205) (const char * (____s_2200));// L394:L395 +extern __size_t_2037 (__strlen_2206) (const char * (____s_2200));// L394:L395 +extern __size_t_1 (__strnlen_2211) (const char * (____string_2207), __size_t_1 ____maxlen_2208);// L401:L402 +extern __size_t_1093 (__strnlen_2212) (const char * (____string_2207), __size_t_1093 ____maxlen_2209);// L401:L402 +extern __size_t_2037 (__strnlen_2213) (const char * (____string_2207), __size_t_2037 ____maxlen_2210);// L401:L402 +extern char * ((__strerror_2215) (int ____errnum_2214));// L408 +extern char * ((__strerror_2216) (int ____errnum_2214));// L408 +extern int (__strerror_r_2222) (int ____errnum_2217, char * (____buf_2218), __size_t_1 ____buflen_2219);// L422:L424 +extern int (__strerror_r_2223) (int ____errnum_2217, char * (____buf_2218), __size_t_1093 ____buflen_2220);// L422:L424 +extern int (__strerror_r_2224) (int ____errnum_2217, char * (____buf_2218), __size_t_2037 ____buflen_2221);// L422:L424 +extern char * ((__strerror_l_2227) (int ____errnum_2225, ____locale_t_2143 ____l_2226));// L440 +extern void (____bzero_2232) (void * (____s_2228), __size_t_1 ____n_2229);// L446 +extern void (____bzero_2233) (void * (____s_2228), __size_t_1093 ____n_2230);// L446 +extern void (____bzero_2234) (void * (____s_2228), __size_t_2037 ____n_2231);// L446 +extern void (____bzero_2235) (void * (____s_2228), __size_t_1 ____n_2229);// L446 +extern void (____bzero_2236) (void * (____s_2228), __size_t_1093 ____n_2230);// L446 +extern void (____bzero_2237) (void * (____s_2228), __size_t_2037 ____n_2231);// L446 +extern void (__bcopy_2243) (const void * (____src_2238), void * (____dest_2239), __size_t_1 ____n_2240);// L450:L451 +extern void (__bcopy_2244) (const void * (____src_2238), void * (____dest_2239), __size_t_1093 ____n_2241);// L450:L451 +extern void (__bcopy_2245) (const void * (____src_2238), void * (____dest_2239), __size_t_2037 ____n_2242);// L450:L451 +extern void (__bzero_2250) (void * (____s_2246), __size_t_1 ____n_2247);// L454 +extern void (__bzero_2251) (void * (____s_2246), __size_t_1093 ____n_2248);// L454 +extern void (__bzero_2252) (void * (____s_2246), __size_t_2037 ____n_2249);// L454 +extern int (__bcmp_2258) (const void * (____s1_2253), const void * (____s2_2254), __size_t_1 ____n_2255);// L457:L458 +extern int (__bcmp_2259) (const void * (____s1_2253), const void * (____s2_2254), __size_t_1093 ____n_2256);// L457:L458 +extern int (__bcmp_2260) (const void * (____s1_2253), const void * (____s2_2254), __size_t_2037 ____n_2257);// L457:L458 +extern char * ((__index_2263) (const char * (____s_2261), int ____c_2262));// L484:L485 +extern char * ((__rindex_2266) (const char * (____s_2264), int ____c_2265));// L512:L513 +extern int (__ffs_2268) (int ____i_2267);// L518 +extern int (__strcasecmp_2271) (const char * (____s1_2269), const char * (____s2_2270));// L529:L530 +extern int (__strncasecmp_2277) (const char * (____s1_2272), const char * (____s2_2273), __size_t_1 ____n_2274);// L533:L534 +extern int (__strncasecmp_2278) (const char * (____s1_2272), const char * (____s2_2273), __size_t_1093 ____n_2275);// L533:L534 +extern int (__strncasecmp_2279) (const char * (____s1_2272), const char * (____s2_2273), __size_t_2037 ____n_2276);// L533:L534 +extern char * ((__strsep_2282) (char * (* __restrict ____stringp_2280), const char * __restrict ____delim_2281));// L552:L554 +extern char * ((__strsignal_2284) (int ____sig_2283));// L559 +extern char * ((____stpcpy_2287) (char * __restrict ____dest_2285, const char * __restrict ____src_2286));// L562:L563 +extern char * ((__stpcpy_2290) (char * __restrict ____dest_2288, const char * __restrict ____src_2289));// L564:L565 +extern char * ((____stpncpy_2296) (char * __restrict ____dest_2291, const char * __restrict ____src_2292, __size_t_1 ____n_2293));// L569:L571 +extern char * ((____stpncpy_2297) (char * __restrict ____dest_2291, const char * __restrict ____src_2292, __size_t_1093 ____n_2294));// L569:L571 +extern char * ((____stpncpy_2298) (char * __restrict ____dest_2291, const char * __restrict ____src_2292, __size_t_2037 ____n_2295));// L569:L571 +extern char * ((__stpncpy_2304) (char * __restrict ____dest_2299, const char * __restrict ____src_2300, __size_t_1 ____n_2301));// L572:L574 +extern char * ((__stpncpy_2305) (char * __restrict ____dest_2299, const char * __restrict ____src_2300, __size_t_1093 ____n_2302));// L572:L574 +extern char * ((__stpncpy_2306) (char * __restrict ____dest_2299, const char * __restrict ____src_2300, __size_t_2037 ____n_2303));// L572:L574 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ @@ -3144,30 +3142,30 @@ extern char * ((__stpncpy_2307) (char * __restrict ____dest_2300, const char /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -extern char * ((____stpncpy_chk_2361) (char * (____dest_2353), const char * (____src_2354), __size_t_1 ____n_2355, __size_t_1 ____destlen_2358));// L130:L131 -extern char * ((____stpncpy_chk_2362) (char * (____dest_2353), const char * (____src_2354), __size_t_1093 ____n_2356, __size_t_1093 ____destlen_2359));// L130:L131 -extern char * ((____stpncpy_chk_2363) (char * (____dest_2353), const char * (____src_2354), __size_t_2037 ____n_2357, __size_t_2037 ____destlen_2360));// L130:L131 -extern char * ((____stpncpy_alias_2369) (char * (____dest_2364), const char * (____src_2365), __size_t_1 ____n_2366));// L132:L133 -extern char * ((____stpncpy_alias_2370) (char * (____dest_2364), const char * (____src_2365), __size_t_1093 ____n_2367));// L132:L133 -extern char * ((____stpncpy_alias_2371) (char * (____dest_2364), const char * (____src_2365), __size_t_2037 ____n_2368));// L132:L133 +extern char * ((____stpncpy_chk_2360) (char * (____dest_2352), const char * (____src_2353), __size_t_1 ____n_2354, __size_t_1 ____destlen_2357));// L130:L131 +extern char * ((____stpncpy_chk_2361) (char * (____dest_2352), const char * (____src_2353), __size_t_1093 ____n_2355, __size_t_1093 ____destlen_2358));// L130:L131 +extern char * ((____stpncpy_chk_2362) (char * (____dest_2352), const char * (____src_2353), __size_t_2037 ____n_2356, __size_t_2037 ____destlen_2359));// L130:L131 +extern char * ((____stpncpy_alias_2368) (char * (____dest_2363), const char * (____src_2364), __size_t_1 ____n_2365));// L132:L133 +extern char * ((____stpncpy_alias_2369) (char * (____dest_2363), const char * (____src_2364), __size_t_1093 ____n_2366));// L132:L133 +extern char * ((____stpncpy_alias_2370) (char * (____dest_2363), const char * (____src_2364), __size_t_2037 ____n_2367));// L132:L133 /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ /* no function due to type errors in the function prototype */ -void (__process_commands_2393) () { +void (__process_commands_2392) () { -if (__static_condition_default_2395) { +if (__static_condition_default_2394) { { { -unsigned long __millis_2391= 123456789l;// L8 +unsigned long __millis_2390= 123456789l;// L8 -long __residencyStart_2392;// L10 +long __residencyStart_2391;// L10 - __residencyStart_2392 = - 1 ; // L11 -while ( ( __residencyStart_2392 == - 1 ) || ( __residencyStart_2392 > - 1 && ( __millis_2391 - __residencyStart_2392 ) < 30 * 1000 ) )// L14:L15 + __residencyStart_2391 = - 1 ; // L11 +while ( ( __residencyStart_2391 == - 1 ) || ( __residencyStart_2391 > - 1 && ( __millis_2390 - __residencyStart_2391 ) < 30 * 1000 ) )// L14:L15 { { @@ -3184,21 +3182,21 @@ while ( ( __residencyStart_2392 == - 1 ) || ( __residencyStart_2392 > - 1 && } } -void (__process_commands_2394) () { +void (__process_commands_2393) () { -if (__static_condition_default_2396) { +if (__static_condition_default_2395) { { { -unsigned long __millis_2391= 123456789l;// L8 +unsigned long __millis_2390= 123456789l;// L8 -long __residencyStart_2392;// L10 +long __residencyStart_2391;// L10 - __residencyStart_2392 = - 1 ; // L11 -while ( ( __residencyStart_2392 == - 1 ) || ( __residencyStart_2392 > - 1 && ( __millis_2391 - __residencyStart_2392 ) < 30 * 1000 ) )// L14:L15 + __residencyStart_2391 = - 1 ; // L11 +while ( ( __residencyStart_2391 == - 1 ) || ( __residencyStart_2391 > - 1 && ( __millis_2390 - __residencyStart_2391 ) < 30 * 1000 ) )// L14:L15 { { @@ -3215,19 +3213,19 @@ while ( ( __residencyStart_2392 == - 1 ) || ( __residencyStart_2392 > - 1 && } } -int (__main_2399) (int __argc_2397, char * (* (__argv_2398))) { +int (__main_2398) (int __argc_2396, char * (* (__argv_2397))) { { { +if (__static_condition_default_2394) { + __process_commands_2392 ( ) ; // L26 +} if (__static_condition_default_2395) { __process_commands_2393 ( ) ; // L26 } -if (__static_condition_default_2396) { - __process_commands_2394 ( ) ; // L26 -} return 0 ;// L28 } } diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/f87c80889fe.desugared.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/f87c80889fe.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/f87c80889fe.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/f87c80889fe.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/f87c80889fe.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/f87c80889fe.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/fc3c76fc164.desugared.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/fc3c76fc164.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/fc3c76fc164.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/fc3c76fc164.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/fc3c76fc164.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/fdac8f6cece.desugared.c b/fonda/cpp_testsuite/varBugs/MARLIN/fdac8f6cece.desugared.c index de1cc89f..36bf2cf4 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/fdac8f6cece.desugared.c +++ b/fonda/cpp_testsuite/varBugs/MARLIN/fdac8f6cece.desugared.c @@ -7,11 +7,15 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); +extern const bool __static_condition_default_3; +extern const bool __static_condition_default_2; void __static_initializer_default() { __static_renaming("__zprobe_zoffset_0", "zprobe_zoffset"); __static_renaming("__Config_ResetDefault_1", "Config_ResetDefault"); -__static_renaming("__main_4", "main"); +__static_renaming("__main_6", "main"); +__static_condition_renaming("__static_condition_default_2", "(defined ENABLE_AUTO_BED_LEVELING)"); +__static_condition_renaming("__static_condition_default_3", "!(defined ENABLE_AUTO_BED_LEVELING)"); }; @@ -23,13 +27,18 @@ void (__Config_ResetDefault_1) () { +if (__static_condition_default_2) { __zprobe_zoffset_0 = - 7 ; // L2:L9 } +if (__static_condition_default_3) { +__static_type_error("type error : no valid expression"); // L9 +} +} } } -int (__main_4) (int __argc_2, char * (* (__argv_3))) { +int (__main_6) (int __argc_4, char * (* (__argv_5))) { { { diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/fdac8f6cece.desugared.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/fdac8f6cece.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/MARLIN/fdac8f6cece.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/fdac8f6cece.inferres b/fonda/cpp_testsuite/varBugs/MARLIN/fdac8f6cece.inferres new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/runTests.py b/fonda/cpp_testsuite/varBugs/runTests.py index 493ef404..1d9876b6 100644 --- a/fonda/cpp_testsuite/varBugs/runTests.py +++ b/fonda/cpp_testsuite/varBugs/runTests.py @@ -87,54 +87,50 @@ def getClangAlarm(fi,warningsO): rep += '\tNone!\n' return rep -def getInferAlarm(fi,firel): - orig = fi + ".inferres" +def getInferAlarm(fi,warningsI): + if len(warningsI) == 0: + return 'Original file has no warnings\n' desug = fi + ".desugared.inferres" - warningsO = [] warningsD = [] - f = open(orig) - for x in f: - if firel in x and 'error:' in x: - x = x.rstrip() - y = Warning() - y.msg = x.split('error:')[1] - y.line = int(x.split(':')[1]) - warningsO.append(y) - f.close() - f = open(desug) - lines = [] - for x in f: - lines.append(x.rstrip()) - i = 0 - while i < len(lines) - 4: - l = lines[i] - if firel in l and 'error:' in l and '// L' in lines[i+4]: - z = Warning() - z.msg = l.split('error:')[1] - linestr = lines[i+4].split('// L')[1] - if ':L' in linestr: - z.lineA = int(linestr.split(':L')[0]) - z.lineB = int(linestr.split(':L')[1]) - else: - z.lineA = int(linestr) - z.lineB = int(linestr) - warningsD.append(z) - i = i+1 - i = i+1 - f.close() + warningsDI = 0 + desugs = warningSolver.main(fi.split('/')[-2],fi.split('/')[-1],fi+".desugared.c") + warnDStr = '' + for d in desugs: + if d['feasible']: + if d['correNum'] != '-1': + z = Warning() + z.msg = d['msg'] + linestr = d['correNum'] + if ':L' in linestr: + z.lineA = int(linestr.split(':L')[0]) + z.lineB = int(linestr.split(':L')[1]) + else: + z.lineA = int(linestr) + z.lineB = int(linestr) + warningsD.append(z) + warnDStr += d['msg'] + ' ' + d['correNum'] + ' ' + str(d['model']) + '\n' + else: + warningsDI += 1 i = 0 - if len(warningsO) == 0: - return 'none ' + str( len(warningsO)) + ' ' + str(len(warningsD)) - while i < len(warningsO): + notFound = [] + rep = 'Matches:\n' + while i < len(warningsI): found = False for d in warningsD: - if d.areEq(warningsO[i]): + if d.areEq(warningsI[i]): found = True break if not found: - return 'missing' + str( len(warningsO)) + ' ' + str(len(warningsD)) + notFound.append(str(warningsI[i].idn)) + else: + rep += '\t'+str(warningsI[i].idn) + ' has a match!\n' i = i+1 - return 'match ' + str( len(warningsO)) + ' ' + str(len(warningsD)) + rep += 'Unmatched ids:\n' + for x in notFound: + rep += '\t' + x + '\n' + if len(notFound) == 0: + rep += '\tNone!\n' + return rep def remove_prefix(text, prefix): @@ -143,7 +139,9 @@ def remove_prefix(text, prefix): def alarmsBase(fpa,macros): rep = '' cFile = fpa[:len(fpa) - 2] + '.clangres' - warningsO = [] + iFile = fpa[:len(fpa) - 2] + '.inferres' + warningsOc = [] + warningsOi = [] for i in range(len(macros)**2): inc = '' for m in range(len(macros)): @@ -153,18 +151,31 @@ def alarmsBase(fpa,macros): inc += '-U' + macros[m] + ' ' rep += '['+inc+']\n' os.system('clang --analyze ' + inc + ' ' + fpa + " 2> " + cFile) - f = open(cFile, 'r') - txt = f.read() - f.close() - for x in txt.split('\n'): + os.system('infer --pulse-only -- clang -c ' + inc + ' ' + fpa + " > " + iFile) + fc = open(cFile, 'r') + txtc = fc.read() + fc.close() + fi = open(iFile, 'r') + txti = fi.read() + fi.close() + for x in txtc.split('\n'): if fpa.split('/')[-1] in x and 'warning:' in x: x = x.rstrip() y = Warning() y.msg = x.split('warning: ')[1] y.line = int(x.split(':')[1]) - warningsO.append(y) - rep += str(y.idn) + ' :: Line:' + str(y.line) + '\n\t' + y.msg + '\n' - return rep, warningsO + warningsOc.append(y) + rep += 'clang :: ' + str(y.idn) + ' :: Line:' + str(y.line) + '\n\t' + y.msg + '\n' + for x in txti.split('\n'): + if fpa.split('/')[-1] in x and 'error:' in x: + x = x.rstrip() + y = Warning() + y.msg = x.split('error: ')[1] + y.line = int(x.split(':')[1]) + warningsOi.append(y) + rep += 'infer :: ' + str(y.idn) + ' :: Line:' + str(y.line) + '\n\t' + y.msg + '\n' + + return rep, warningsOc, warningsOi def main(toinclude): @@ -219,11 +230,11 @@ def main(toinclude): report += realFile.split('/')[-2] + ' ' + realFile.split('/')[-1] + '\nMacros:\n' for lm in listOfMacros: report += '\t' + lm + "\n" - rep, warningsC = alarmsBase(realFile, listOfMacros) + rep, warningsC, warningsI = alarmsBase(realFile, listOfMacros) report += rep #------------------------------------------ - #''' + ''' os.system('echo | gcc -dM -E - > ' + RECLOC) toAppend = [''] while len(toAppend) > 0: @@ -238,9 +249,9 @@ def main(toinclude): #ABOVE IS USING A RECURSIVE METHOD #BELOW IS WITH STANDARD INCLUSIONS #------------------------------------------ - ''' + #''' os.system( 'java superc.SugarC -keep-mem ' + stdInc + " -I " + curDir + " " + curDir + '/' + dirFiles + ' > ' + curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.desugared.c 2> ' + curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.Log') - ''' + #''' #------------------------------------------ ''' filewobase = (curDir + '/' + dirFiles)[len(os.getcwd()):] @@ -252,27 +263,28 @@ def main(toinclude): js[filewobase] = inc ''' - os.system('infer --pulse -- clang -c ' + stdInc + ' ' + curDir + '/' + dirFiles + " > " + curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.inferres') - if os.path.getsize(curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.desugared.c') <= 32: sumTable.write(sumTOut + (maxC - len(sumTOut))*' ' + 'SuperC failed\n') else: os.system('clang -Wno-everything -emit-llvm -c ' + curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.desugared.c') os.system('clang --analyze ' + curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.desugared.c 2> ' + curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.desugared.clangres') - os.system('infer --pulse --enable-issue-type -- clang -c ' + curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.desugared.c > ' + curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.desugared.inferres') + os.system('infer --pulse-only -- clang -c ' + curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.desugared.c > ' + curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.desugared.inferres') if os.path.exists(os.getcwd() + '/' + dirFiles[:len(dirFiles) - 2] + '.desugared.bc'): report += 'Desugared Clang Results:\n' ff = open (curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.desugared.clangres','r') report += ff.read() ff.close() + report += 'Desugared Infer Results:\n' + ff = open (curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.desugared.inferres','r') + report += ff.read() + ff.close() os.system('mv ' + dirFiles[:len(dirFiles) - 2] + '.desugared.bc ' + curDir + '/' + dirFiles[:len(dirFiles) - 2] + '.desugared.bc') report += getClangAlarm(realFile[:-2], warningsC) - alarmi = getInferAlarm(curDir + '/' + dirFiles[:len(dirFiles) - 2],sumTOut) - sumTable.write(report + "\n" + alarmi + "\n") + report += getInferAlarm(realFile[:-2], warningsI) else: report += 'File Failed\n' - sumTable.write(report) + sumTable.write(report) fff = open(realFile.split('/')[-2] + '-' + realFile.split('/')[-1][:-2]+'.report','w') fff.write(report) fff.close() diff --git a/fonda/cpp_testsuite/varBugs/summaryTable.txt b/fonda/cpp_testsuite/varBugs/summaryTable.txt index cbed33ca..949d162b 100644 --- a/fonda/cpp_testsuite/varBugs/summaryTable.txt +++ b/fonda/cpp_testsuite/varBugs/summaryTable.txt @@ -3,9 +3,11 @@ Macros: TEMP_RESIDENCY_TIME [-UTEMP_RESIDENCY_TIME ] Desugared Clang Results: -Original file has no warnings +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings MARLIN 53be0f3399e.c Macros: BABYSTEPPING @@ -14,42 +16,57 @@ Macros: [-DBABYSTEPPING=1 -UDELTA ] [-UBABYSTEPPING -DDELTA=1 ] [-DBABYSTEPPING=1 -DDELTA=1 ] -Desugared Clang Results: -Original file has no warnings - -none 0 0 +File Failed MARLIN 31873ec707d.c Macros: ULTRA_LCD [-UULTRA_LCD ] Desugared Clang Results: -Original file has no warnings +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings MARLIN 2d22902d080.c Macros: SDSUPPORT [-USDSUPPORT ] Desugared Clang Results: -Original file has no warnings +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings MARLIN a7fc1f83c81.c Macros: SDSUPPORT [-USDSUPPORT ] Desugared Clang Results: -Original file has no warnings +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.c:199:6: warning: Value stored to '__len_217' during its initialization is never read [deadcode.DeadStores] +int __len_217= __strlen_108 ( __prepend_216 ) + 13 + 1;// L10 + ^~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.c:201:6: warning: Value stored to '__len_218' during its initialization is never read [deadcode.DeadStores] +int __len_218= __strlen_109 ( __prepend_216 ) + 13 + 1;// L10 + ^~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.c:211:7: warning: Value stored to '__lfilename_221' during its initialization is never read [deadcode.DeadStores] +char __lfilename_221[13]= "FOLDERNAME12\0";// L15 + ^~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~ +3 warnings generated. +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings MARLIN 30248214c7f.c Macros: defined [-Udefined ] Desugared Clang Results: -Original file has no warnings +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings MARLIN 2db384a21d6.c Macros: MESH_BED_LEVELING @@ -59,9 +76,11 @@ Macros: [-UMESH_BED_LEVELING -DDISABLE_M503=1 ] [-DMESH_BED_LEVELING=1 -DDISABLE_M503=1 ] Desugared Clang Results: -Original file has no warnings +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings MARLIN b8e79dce897.c Macros: ULTRA_LCD @@ -77,38 +96,46 @@ Macros: [-DULTRA_LCD=1 -DENCODER_RATE_MULTIPLIER=1 -DTEMP_SENSOR_0=1 ] [-UULTRA_LCD -UENCODER_RATE_MULTIPLIER -UTEMP_SENSOR_0 ] Desugared Clang Results: -Original file has no warnings +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings MARLIN 8c4377dd635.c Macros: MARLIN_H PIDTEMP PID_DEBUG [-UMARLIN_H -UPIDTEMP -UPID_DEBUG ] -1 :: Line:19 +clang :: 1 :: Line:19 Value stored to 'pid_output' is never read [deadcode.DeadStores] [-DMARLIN_H=1 -UPIDTEMP -UPID_DEBUG ] -2 :: Line:19 +clang :: 2 :: Line:19 Value stored to 'pid_output' is never read [deadcode.DeadStores] [-UMARLIN_H -DPIDTEMP=1 -UPID_DEBUG ] [-DMARLIN_H=1 -DPIDTEMP=1 -UPID_DEBUG ] [-UMARLIN_H -UPIDTEMP -DPID_DEBUG=1 ] -3 :: Line:19 +clang :: 3 :: Line:19 Value stored to 'pid_output' is never read [deadcode.DeadStores] [-DMARLIN_H=1 -UPIDTEMP -DPID_DEBUG=1 ] -4 :: Line:19 +clang :: 4 :: Line:19 Value stored to 'pid_output' is never read [deadcode.DeadStores] [-UMARLIN_H -DPIDTEMP=1 -DPID_DEBUG=1 ] [-DMARLIN_H=1 -DPIDTEMP=1 -DPID_DEBUG=1 ] [-UMARLIN_H -UPIDTEMP -UPID_DEBUG ] -5 :: Line:19 +clang :: 5 :: Line:19 Value stored to 'pid_output' is never read [deadcode.DeadStores] Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.c:59:2: warning: Value stored to '__pid_output_0' is never read [deadcode.DeadStores] - __pid_output_0 = 0 ; // L19 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.c:94:2: warning: Value stored to '__pid_output_4' is never read [deadcode.DeadStores] + __pid_output_4 = 0 ; // L19 ^ ~ -1 warning generated. +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.c:138:2: warning: Value stored to '__pid_output_4' is never read [deadcode.DeadStores] + __pid_output_4 = 0 ; // L19 + ^ ~ +2 warnings generated. +Desugared Infer Results: + + No issues found Matches: 1 has a match! 2 has a match! @@ -117,8 +144,7 @@ Matches: 5 has a match! Unmatched ids: None! - -missing1 0 +Original file has no warnings MARLIN fc3c76fc164.c Macros: HAS_HEATER_THERMAL_PROTECTION @@ -128,9 +154,11 @@ Macros: [-UHAS_HEATER_THERMAL_PROTECTION -DHAS_BED_THERMAL_PROTECTION=1 ] [-DHAS_HEATER_THERMAL_PROTECTION=1 -DHAS_BED_THERMAL_PROTECTION=1 ] Desugared Clang Results: -Original file has no warnings +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings MARLIN 831016b09f7.c Macros: ULTRA_LCD @@ -140,33 +168,41 @@ Macros: [-UULTRA_LCD -DSDSUPPORT=1 ] [-DULTRA_LCD=1 -DSDSUPPORT=1 ] Desugared Clang Results: -Original file has no warnings +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.desugared.c:81:7: warning: Value stored to '__time_7' during its initialization is never read [deadcode.DeadStores] +char __time_7[30]= "time_here";// L14 + ^~~~~~~~ ~~~~~~~~~~~ +1 warning generated. +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings MARLIN e30bfedce4d.c Macros: ENABLE_AUTO_BED_LEVELING AUTO_BED_LEVELING_GRID [-UENABLE_AUTO_BED_LEVELING -UAUTO_BED_LEVELING_GRID ] [-DENABLE_AUTO_BED_LEVELING=1 -UAUTO_BED_LEVELING_GRID ] -8 :: Line:24 +clang :: 8 :: Line:24 Value stored to 'xGridSpacing' during its initialization is never read [deadcode.DeadStores] [-UENABLE_AUTO_BED_LEVELING -DAUTO_BED_LEVELING_GRID=1 ] [-DENABLE_AUTO_BED_LEVELING=1 -DAUTO_BED_LEVELING_GRID=1 ] -9 :: Line:24 +clang :: 9 :: Line:24 Value stored to 'xGridSpacing' during its initialization is never read [deadcode.DeadStores] Desugared Clang Results: /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.desugared.c:48:6: warning: Value stored to '__xGridSpacing_1' during its initialization is never read [deadcode.DeadStores] int __xGridSpacing_1= __left_probe_bed_position_0 ;// L24 ^~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~ 1 warning generated. +Desugared Infer Results: + + No issues found Matches: 8 has a match! 9 has a match! Unmatched ids: None! - -none 0 0 +Original file has no warnings MARLIN 7336e6df070.c Macros: Z_DUAL_STEPPER_DRIVERS @@ -190,17 +226,21 @@ Macros: [-UZ_DUAL_STEPPER_DRIVERS -DZ_DUAL_ENDSTOPS=1 -DHAS_Z_MIN=1 -DHAS_Z_MAX=1 ] [-DZ_DUAL_STEPPER_DRIVERS=1 -DZ_DUAL_ENDSTOPS=1 -DHAS_Z_MIN=1 -DHAS_Z_MAX=1 ] Desugared Clang Results: -Original file has no warnings +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings MARLIN fdac8f6cece.c Macros: ENABLE_AUTO_BED_LEVELING [-UENABLE_AUTO_BED_LEVELING ] Desugared Clang Results: -Original file has no warnings +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings LINUX d530db0db90.c Macros: CONFIG_VORTEX @@ -210,47 +250,125 @@ Macros: [-UCONFIG_VORTEX -DCONFIG_PCI=1 ] [-DCONFIG_VORTEX=1 -DCONFIG_PCI=1 ] Desugared Clang Results: -Original file has no warnings +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings LINUX bc8cec0dff0.c Macros: CONFIG_JFFS2_FS_WBUF_VERIFY [-UCONFIG_JFFS2_FS_WBUF_VERIFY ] Desugared Clang Results: -Original file has no warnings +Desugared Infer Results: -none 0 0 -LINUX/d7e9711760a SuperC failed +LINUX/bc8cec0dff0.desugared.c:198: error: Memory Leak + Memory dynamically allocated by `malloc`, indirectly via call to `__jffs2_nor_wbuf_flash_setup_7()` on line 187 is not freed after the last access at line 198, column 1. + 196. + 197. + 198. } + ^ + 199. + + +Found 1 issue + Issue Type(ISSUED_TYPE_ID): # + Memory Leak(MEMORY_LEAK_C): 1 +Original file has no warnings +Original file has no warnings LINUX d7e9711760a.c Macros: CONFIG_QUOTA_DEBUG [-UCONFIG_QUOTA_DEBUG ] -File Failed +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.desugared.c:1397:2: warning: Value stored to '__reserved_803' is never read [deadcode.DeadStores] + __reserved_803 = 1 ; // L30 + ^ ~ +1 warning generated. +Desugared Infer Results: + + No issues found +Original file has no warnings +Original file has no warnings LINUX 221ac329e93.c Macros: CONFIG_KPROBES [-UCONFIG_KPROBES ] Desugared Clang Results: +Desugared Infer Results: + +LINUX/221ac329e93.desugared.c:4742: error: Memory Leak + Memory dynamically allocated by `malloc` on line 4681 is not freed after the last access at line 4742, column 1. + 4740. + 4741. } + 4742. } + ^ + 4743. int (__main_3993) (int __argc_3990, char * (* (__argv_3991))) { + 4744. + +LINUX/221ac329e93.desugared.c:4742: error: Memory Leak + Memory dynamically allocated by `malloc` on line 4691 is not freed after the last access at line 4742, column 1. + 4740. + 4741. } + 4742. } + ^ + 4743. int (__main_3993) (int __argc_3990, char * (* (__argv_3991))) { + 4744. + +LINUX/221ac329e93.desugared.c:4742: error: Memory Leak + Memory dynamically allocated by `malloc` on line 4701 is not freed after the last access at line 4742, column 1. + 4740. + 4741. } + 4742. } + ^ + 4743. int (__main_3993) (int __argc_3990, char * (* (__argv_3991))) { + 4744. + +LINUX/221ac329e93.desugared.c:4742: error: Memory Leak + Memory dynamically allocated by `malloc` on line 4711 is not freed after the last access at line 4742, column 1. + 4740. + 4741. } + 4742. } + ^ + 4743. int (__main_3993) (int __argc_3990, char * (* (__argv_3991))) { + 4744. + + +Found 4 issues + Issue Type(ISSUED_TYPE_ID): # + Memory Leak(MEMORY_LEAK_C): 4 +Original file has no warnings Original file has no warnings - -none 0 0 LINUX 51fd36f3fad.c Macros: CONFIG_64BIT [-UCONFIG_64BIT ] Desugared Clang Results: -Original file has no warnings +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.c:216:1: warning: Undefined or garbage value returned to caller [core.uninitialized.UndefReturn] +return __tmp_38 ;// L45 +^~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.c:256:1: warning: Undefined or garbage value returned to caller [core.uninitialized.UndefReturn] +return __expires_47 ;// L60 +^~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.c:300:1: warning: Undefined or garbage value returned to caller [core.uninitialized.UndefReturn] +return __expires_47 ;// L60 +^~~~~~~~~~~~~~~~~~~~ +3 warnings generated. +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings LINUX 208d89843b7.c Macros: CONFIG_HIGHMEM [-UCONFIG_HIGHMEM ] Desugared Clang Results: -Original file has no warnings +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings LINUX ee3f34e8572.c Macros: SCTP_DEBUG @@ -273,9 +391,11 @@ Desugared Clang Results: ( ( * __rt_814 ) ++ ) ; // L23:L45 ^~~~~~~~~~~~~~~~~~~ 2 warnings generated. -Original file has no warnings +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings LINUX 472a474c663.c Macros: CONFIG_SMP @@ -285,9 +405,11 @@ Desugared Clang Results: * __ptr_3 = 'a' ; // L14 ~~~~~~~ ^ 1 warning generated. -Original file has no warnings +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings LINUX 657e9649e74.c Macros: CONFIG_PREEMPT @@ -297,9 +419,11 @@ Macros: [-UCONFIG_PREEMPT -DCONFIG_TCP_MD5SIG=1 ] [-DCONFIG_PREEMPT=1 -DCONFIG_TCP_MD5SIG=1 ] Desugared Clang Results: -Original file has no warnings +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings LINUX f7ab9b407b3.c Macros: CONFIG_TMPFS @@ -315,26 +439,30 @@ Macros: [-DCONFIG_TMPFS=1 -DCONFIG_SHMEM=1 -DCONFIG_DRM_I915=1 ] [-UCONFIG_TMPFS -UCONFIG_SHMEM -UCONFIG_DRM_I915 ] Desugared Clang Results: -Original file has no warnings +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings LINUX 36855dcfc98.c Macros: CONFIG_BF60x [-UCONFIG_BF60x ] -11 :: Line:6 +clang :: 11 :: Line:6 Value stored to 'wakeup' is never read [deadcode.DeadStores] Desugared Clang Results: /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/36855dcfc98.desugared.c:32:2: warning: Value stored to '__wakeup_0' is never read [deadcode.DeadStores] __wakeup_0 = 0 ; // L6 ^ ~ 1 warning generated. +Desugared Infer Results: + + No issues found Matches: 11 has a match! Unmatched ids: None! - -none 0 0 +Original file has no warnings LINUX e1fbd9210d5.c Macros: CONFIG_LBDAF @@ -344,9 +472,11 @@ Macros: [-UCONFIG_LBDAF -DCONFIG_AMIGA_Z2RAM=1 ] [-DCONFIG_LBDAF=1 -DCONFIG_AMIGA_Z2RAM=1 ] Desugared Clang Results: -Original file has no warnings +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings LINUX 66517915e09.c Macros: CONFIG_SND_FSI_AK4642 @@ -360,55 +490,55 @@ Macros: [-DCONFIG_SND_FSI_AK4642=1 -DCONFIG_SND_FSI_DA7210=1 -UCONFIG_I2C -UCONFIG_SND_SOC_DA7210 -UCONFIG_SND_SOC_AK4642 ] [-UCONFIG_SND_FSI_AK4642 -UCONFIG_SND_FSI_DA7210 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -UCONFIG_SND_SOC_AK4642 ] [-DCONFIG_SND_FSI_AK4642=1 -UCONFIG_SND_FSI_DA7210 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -UCONFIG_SND_SOC_AK4642 ] -13 :: Line:24 +clang :: 13 :: Line:24 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-UCONFIG_SND_FSI_AK4642 -DCONFIG_SND_FSI_DA7210=1 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -UCONFIG_SND_SOC_AK4642 ] -14 :: Line:16 +clang :: 14 :: Line:16 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-DCONFIG_SND_FSI_AK4642=1 -DCONFIG_SND_FSI_DA7210=1 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -UCONFIG_SND_SOC_AK4642 ] -15 :: Line:16 +clang :: 15 :: Line:16 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] -16 :: Line:24 +clang :: 16 :: Line:24 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-UCONFIG_SND_FSI_AK4642 -UCONFIG_SND_FSI_DA7210 -UCONFIG_I2C -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] [-DCONFIG_SND_FSI_AK4642=1 -UCONFIG_SND_FSI_DA7210 -UCONFIG_I2C -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] [-UCONFIG_SND_FSI_AK4642 -DCONFIG_SND_FSI_DA7210=1 -UCONFIG_I2C -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] [-DCONFIG_SND_FSI_AK4642=1 -DCONFIG_SND_FSI_DA7210=1 -UCONFIG_I2C -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] [-UCONFIG_SND_FSI_AK4642 -UCONFIG_SND_FSI_DA7210 -DCONFIG_I2C=1 -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] -17 :: Line:16 +clang :: 17 :: Line:16 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-DCONFIG_SND_FSI_AK4642=1 -UCONFIG_SND_FSI_DA7210 -DCONFIG_I2C=1 -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] -18 :: Line:16 +clang :: 18 :: Line:16 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] -19 :: Line:24 +clang :: 19 :: Line:24 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-UCONFIG_SND_FSI_AK4642 -DCONFIG_SND_FSI_DA7210=1 -DCONFIG_I2C=1 -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] -20 :: Line:16 +clang :: 20 :: Line:16 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-DCONFIG_SND_FSI_AK4642=1 -DCONFIG_SND_FSI_DA7210=1 -DCONFIG_I2C=1 -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] -21 :: Line:16 +clang :: 21 :: Line:16 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] -22 :: Line:24 +clang :: 22 :: Line:24 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-UCONFIG_SND_FSI_AK4642 -UCONFIG_SND_FSI_DA7210 -UCONFIG_I2C -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] [-DCONFIG_SND_FSI_AK4642=1 -UCONFIG_SND_FSI_DA7210 -UCONFIG_I2C -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] [-UCONFIG_SND_FSI_AK4642 -DCONFIG_SND_FSI_DA7210=1 -UCONFIG_I2C -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] [-DCONFIG_SND_FSI_AK4642=1 -DCONFIG_SND_FSI_DA7210=1 -UCONFIG_I2C -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] [-UCONFIG_SND_FSI_AK4642 -UCONFIG_SND_FSI_DA7210 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] -23 :: Line:24 +clang :: 23 :: Line:24 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-DCONFIG_SND_FSI_AK4642=1 -UCONFIG_SND_FSI_DA7210 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] -24 :: Line:24 +clang :: 24 :: Line:24 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-UCONFIG_SND_FSI_AK4642 -DCONFIG_SND_FSI_DA7210=1 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] -25 :: Line:16 +clang :: 25 :: Line:16 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] -26 :: Line:24 +clang :: 26 :: Line:24 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-DCONFIG_SND_FSI_AK4642=1 -DCONFIG_SND_FSI_DA7210=1 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] -27 :: Line:16 +clang :: 27 :: Line:16 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] -28 :: Line:24 +clang :: 28 :: Line:24 Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-UCONFIG_SND_FSI_AK4642 -UCONFIG_SND_FSI_DA7210 -UCONFIG_I2C -DCONFIG_SND_SOC_DA7210=1 -DCONFIG_SND_SOC_AK4642=1 ] Desugared Clang Results: @@ -419,6 +549,9 @@ int __codec_hw_write_1= __i2c_master_send_0 ;// L16 int __codec_hw_write_5= __i2c_master_send_0 ;// L24 ^~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~ 2 warnings generated. +Desugared Infer Results: + + No issues found Matches: 13 has a match! 14 has a match! @@ -438,8 +571,7 @@ Matches: 28 has a match! Unmatched ids: None! - -none 0 0 +Original file has no warnings LINUX 7c6048b7c83.c Macros: defined @@ -455,17 +587,21 @@ Macros: [-Ddefined=1 -DCONFIG_BACKLIGHT_CLASS_DEVICE=1 -DCONFIG_ACPI_VIDEO=1 ] [-Udefined -UCONFIG_BACKLIGHT_CLASS_DEVICE -UCONFIG_ACPI_VIDEO ] Desugared Clang Results: -Original file has no warnings +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings LINUX f3d83e24154.c Macros: defined [-Udefined ] Desugared Clang Results: -Original file has no warnings +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings LINUX eb91f1d0a53.c Macros: defined @@ -489,9 +625,11 @@ Macros: [-Udefined -DCONFIG_SLAB=1 -DCONFIG_NUMA=1 -DCONFIG_KMEMTRACE=1 ] [-Ddefined=1 -DCONFIG_SLAB=1 -DCONFIG_NUMA=1 -DCONFIG_KMEMTRACE=1 ] Desugared Clang Results: -Original file has no warnings +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings LINUX 1f758a4341a.c Macros: CONFIG_ZONE_DMA @@ -501,9 +639,11 @@ Macros: [-UCONFIG_ZONE_DMA -DCONFIG_EP93XX_ETH=1 ] [-DCONFIG_ZONE_DMA=1 -DCONFIG_EP93XX_ETH=1 ] Desugared Clang Results: -Original file has no warnings +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings LINUX 0988c4c7fb5.c Macros: CONFIG_VLAN_8021Q @@ -513,9 +653,11 @@ Macros: [-UCONFIG_VLAN_8021Q -DCONFIG_RPS=1 ] [-DCONFIG_VLAN_8021Q=1 -DCONFIG_RPS=1 ] Desugared Clang Results: -Original file has no warnings +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings LINUX 242f1a34377.c Macros: CONFIG_CRYPTO_BLKCIPHER @@ -525,9 +667,11 @@ Macros: [-UCONFIG_CRYPTO_BLKCIPHER -DCONFIG_CRYPTO_TEST=1 ] [-DCONFIG_CRYPTO_BLKCIPHER=1 -DCONFIG_CRYPTO_TEST=1 ] Desugared Clang Results: -Original file has no warnings +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings LINUX 2f02c15a5d9.c Macros: CONFIG_SSB_DRIVER_EXTIF @@ -537,17 +681,33 @@ Macros: [-UCONFIG_SSB_DRIVER_EXTIF -DCONFIG_BCM47XX=1 ] [-DCONFIG_SSB_DRIVER_EXTIF=1 -DCONFIG_BCM47XX=1 ] Desugared Clang Results: -Original file has no warnings +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings LINUX 8c8296223f3.c Macros: CONFIG_PROC_PAGE_MONITOR [-UCONFIG_PROC_PAGE_MONITOR ] Desugared Clang Results: -Original file has no warnings +Desugared Infer Results: + +LINUX/8c8296223f3.desugared.c:1413: error: Memory Leak + Memory dynamically allocated by `malloc` on line 1393 is not freed after the last access at line 1413, column 1. + 1411. + 1412. } + 1413. } + ^ + 1414. int (__main_813) (int __argc_811, char * (* (__argv_812))) { + 1415. -none 0 0 + +Found 1 issue + Issue Type(ISSUED_TYPE_ID): # + Memory Leak(MEMORY_LEAK_C): 1 +Original file has no warnings +Original file has no warnings LINUX 68bb91baa0.c Macros: CONFIG_I2C_DESIGNWARE_PLATFORM @@ -563,9 +723,11 @@ Macros: [-DCONFIG_I2C_DESIGNWARE_PLATFORM=1 -DCONFIG_I2C_DESIGNWARE_PCI=1 -Ddefined=1 ] [-UCONFIG_I2C_DESIGNWARE_PLATFORM -UCONFIG_I2C_DESIGNWARE_PCI -Udefined ] Desugared Clang Results: -Original file has no warnings +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings LINUX 1c17e4d4437.c Macros: CONFIG_RCU_CPU_STALL_INFO @@ -575,9 +737,11 @@ Macros: [-UCONFIG_RCU_CPU_STALL_INFO -DCONFIG_RCU_FAST_NO_HZ=1 ] [-DCONFIG_RCU_CPU_STALL_INFO=1 -DCONFIG_RCU_FAST_NO_HZ=1 ] Desugared Clang Results: -Original file has no warnings +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings LINUX f48ec1d7885.c Macros: CONFIG_BLK_CGROUP @@ -587,9 +751,11 @@ Macros: [-UCONFIG_BLK_CGROUP -DCONFIG_IOSCHED_CFQ=1 ] [-DCONFIG_BLK_CGROUP=1 -DCONFIG_IOSCHED_CFQ=1 ] Desugared Clang Results: -Original file has no warnings +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings LINUX 0dc77b6dabe.c Macros: CONFIG_ANDROID @@ -613,9 +779,22 @@ Macros: [-UCONFIG_ANDROID -DCONFIG_SYSFS=1 -DCONFIG_EXTCON=1 -Ddefined=1 ] [-DCONFIG_ANDROID=1 -DCONFIG_SYSFS=1 -DCONFIG_EXTCON=1 -Ddefined=1 ] Desugared Clang Results: -Original file has no warnings +Desugared Infer Results: + +LINUX/0dc77b6dabe.desugared.c:303: error: Memory Leak + Memory dynamically allocated by `malloc`, indirectly via call to `__extcon_class_init_34()` on line 294 is not freed after the last access at line 303, column 1. + 301. + 302. } + 303. } + ^ + 304. + -none 0 0 +Found 1 issue + Issue Type(ISSUED_TYPE_ID): # + Memory Leak(MEMORY_LEAK_C): 1 +Original file has no warnings +Original file has no warnings LINUX 6515e48932c.c Macros: defined @@ -625,9 +804,11 @@ Macros: [-Udefined -DCONFIG_MACH_OMAP_H4=1 ] [-Ddefined=1 -DCONFIG_MACH_OMAP_H4=1 ] Desugared Clang Results: -Original file has no warnings +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings LINUX 91ea8207168.c Macros: CONFIG_NODES_SHIFT @@ -643,9 +824,11 @@ Macros: [-DCONFIG_NODES_SHIFT=1 -DCONFIG_DISCONTIGMEM=1 -DCONFIG_PROC_PAGE_MONITOR=1 ] [-UCONFIG_NODES_SHIFT -UCONFIG_DISCONTIGMEM -UCONFIG_PROC_PAGE_MONITOR ] Desugared Clang Results: -Original file has no warnings +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings LINUX 6e2b75740be.c Macros: defined @@ -670,10 +853,11 @@ free ( __hdr_8 ) ; // L67 return __err_10 ;// L69 ^~~~~~~~ 6 warnings generated. -Original file has no warnings +Desugared Infer Results: -none 0 0 -LINUX/76baeebf7df SuperC failed + No issues found +Original file has no warnings +Original file has no warnings LINUX 76baeebf7df.c Macros: CONFIG_X86_32 @@ -706,15 +890,49 @@ Macros: [-UCONFIG_X86_32 -DCONFIG_NUMA=1 -DCONFIG_DEBUG_PER_CPU_MAPS=1 -UCONFIG_PCI -DCONFIG_X86_64=1 ] [-DCONFIG_X86_32=1 -DCONFIG_NUMA=1 -DCONFIG_DEBUG_PER_CPU_MAPS=1 -UCONFIG_PCI -DCONFIG_X86_64=1 ] [-UCONFIG_X86_32 -UCONFIG_NUMA -UCONFIG_DEBUG_PER_CPU_MAPS -DCONFIG_PCI=1 -DCONFIG_X86_64=1 ] -File Failed +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/76baeebf7df.desugared.c:1629:31: warning: Dereference of undefined pointer value (loaded from variable '__mask_1132') [core.NullDereference] + __printf_421 ("mask: %ld\n",* __mask_1132 ) ; // L137 + ^~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/76baeebf7df.desugared.c:1632:31: warning: Dereference of undefined pointer value (loaded from variable '__mask_1134') [core.NullDereference] + __printf_421 ("mask: %ld\n",* __mask_1134 ) ; // L137 + ^~~~~~~~~~~~~~ +2 warnings generated. +Desugared Infer Results: + + No issues found +Original file has no warnings +Original file has no warnings LINUX 218ad12f42e.c Macros: CONFIG_NUMA [-UCONFIG_NUMA ] Desugared Clang Results: -Original file has no warnings +Desugared Infer Results: + +LINUX/218ad12f42e.desugared.c:63: error: Memory Leak + Memory dynamically allocated by `malloc` on line 42 is not freed after the last access at line 63, column 1. + 61. + 62. + 63. } + ^ + 64. void (__inet_ehash_locks_free_9) () { + 65. + +LINUX/218ad12f42e.desugared.c:123: error: Memory Leak + Memory dynamically allocated by `malloc`, indirectly via call to `__inet_ehash_locks_alloc_6()` on line 116 is not freed after the last access at line 123, column 1. + 121. + 122. + 123. } + ^ + 124. -none 0 0 + +Found 2 issues + Issue Type(ISSUED_TYPE_ID): # + Memory Leak(MEMORY_LEAK_C): 2 +Original file has no warnings +Original file has no warnings LINUX ae249b5fa27.c Macros: CONFIG_DISCONTIGMEM @@ -731,17 +949,21 @@ Desugared Clang Results: return ( int ) __r_236 ;// L21 ^~~~~~~~~~~~~~~~~~~~~~~~~ 2 warnings generated. -Original file has no warnings +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings LINUX e67bc51e574.c Macros: CONFIG_TRACING [-UCONFIG_TRACING ] Desugared Clang Results: -Original file has no warnings +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings LINUX c708c57e247.c Macros: CONFIG_S390_PRNG @@ -751,17 +973,21 @@ Desugared Clang Results: * ( ( ____u64_0 * ) __parm_block_1 ) ^= * ( ( ____u64_0 * ) __buf_3 + __i_4 * 8 ) ; // L18 ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 1 warning generated. -Original file has no warnings +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings LINUX 809e660f438.c Macros: CONFIG_ARM_LPAE [-UCONFIG_ARM_LPAE ] Desugared Clang Results: -Original file has no warnings +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings LINUX 0f8f8094d28.c Macros: CONFIG_FORCE_MAX_ZONEORDER @@ -795,9 +1021,11 @@ Macros: [-DCONFIG_FORCE_MAX_ZONEORDER=1 -Ddefined=1 -DCONFIG_SLAB=1 -UCONFIG_SLOB -DCONFIG_LOCKDEP=1 ] [-UCONFIG_FORCE_MAX_ZONEORDER -Udefined -UCONFIG_SLAB -DCONFIG_SLOB=1 -DCONFIG_LOCKDEP=1 ] Desugared Clang Results: -Original file has no warnings +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings LINUX 6252547b8a7.c Macros: CONFIG_TWL4030_CORE @@ -805,27 +1033,31 @@ Macros: CONFIG_OF_IRQ [-UCONFIG_TWL4030_CORE -UCONFIG_IRQ_DOMAIN -UCONFIG_OF_IRQ ] [-DCONFIG_TWL4030_CORE=1 -UCONFIG_IRQ_DOMAIN -UCONFIG_OF_IRQ ] -31 :: Line:12 +clang :: 31 :: Line:12 Value stored to 'irq' during its initialization is never read [deadcode.DeadStores] -32 :: Line:12 +clang :: 32 :: Line:12 Dereference of null pointer (loaded from variable 'ops') [core.NullDereference] +infer :: 33 :: Line:25 + Null Dereference [-UCONFIG_TWL4030_CORE -DCONFIG_IRQ_DOMAIN=1 -UCONFIG_OF_IRQ ] -33 :: Line:12 +clang :: 34 :: Line:12 Value stored to 'irq' during its initialization is never read [deadcode.DeadStores] [-DCONFIG_TWL4030_CORE=1 -DCONFIG_IRQ_DOMAIN=1 -UCONFIG_OF_IRQ ] -34 :: Line:12 +clang :: 35 :: Line:12 Value stored to 'irq' during its initialization is never read [deadcode.DeadStores] -35 :: Line:12 +clang :: 36 :: Line:12 Dereference of null pointer (loaded from variable 'ops') [core.NullDereference] +infer :: 37 :: Line:25 + Null Dereference [-UCONFIG_TWL4030_CORE -UCONFIG_IRQ_DOMAIN -DCONFIG_OF_IRQ=1 ] [-DCONFIG_TWL4030_CORE=1 -UCONFIG_IRQ_DOMAIN -DCONFIG_OF_IRQ=1 ] -36 :: Line:12 +clang :: 38 :: Line:12 Value stored to 'irq' during its initialization is never read [deadcode.DeadStores] [-UCONFIG_TWL4030_CORE -DCONFIG_IRQ_DOMAIN=1 -DCONFIG_OF_IRQ=1 ] -37 :: Line:12 +clang :: 39 :: Line:12 Value stored to 'irq' during its initialization is never read [deadcode.DeadStores] [-DCONFIG_TWL4030_CORE=1 -DCONFIG_IRQ_DOMAIN=1 -DCONFIG_OF_IRQ=1 ] -38 :: Line:12 +clang :: 40 :: Line:12 Value stored to 'irq' during its initialization is never read [deadcode.DeadStores] [-UCONFIG_TWL4030_CORE -UCONFIG_IRQ_DOMAIN -UCONFIG_OF_IRQ ] Desugared Clang Results: @@ -836,19 +1068,24 @@ int __irq_2= * __ops_1 ;// L12 int __irq_2= * __ops_1 ;// L12 ^~~~~~~~~~ 2 warnings generated. +Desugared Infer Results: + + No issues found Matches: 31 has a match! 32 has a match! - 33 has a match! 34 has a match! 35 has a match! 36 has a match! - 37 has a match! 38 has a match! + 39 has a match! + 40 has a match! Unmatched ids: None! - -none 0 0 +Matches: +Unmatched ids: + 33 + 37 LINUX d6c7e113959.c Macros: CONFIG_REGULATOR_MAX8660 @@ -858,17 +1095,21 @@ Macros: [-UCONFIG_REGULATOR_MAX8660 -DCONFIG_OF=1 ] [-DCONFIG_REGULATOR_MAX8660=1 -DCONFIG_OF=1 ] Desugared Clang Results: -Original file has no warnings +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings LINUX e39363a9def.c Macros: CONFIG_NETPOLL CONFIG_IPV6 [-UCONFIG_NETPOLL -UCONFIG_IPV6 ] [-DCONFIG_NETPOLL=1 -UCONFIG_IPV6 ] -41 :: Line:17 +clang :: 45 :: Line:17 Undefined or garbage value returned to caller [core.uninitialized.UndefReturn] +infer :: 46 :: Line:17 + Uninitialized Value [-UCONFIG_NETPOLL -DCONFIG_IPV6=1 ] [-DCONFIG_NETPOLL=1 -DCONFIG_IPV6=1 ] Desugared Clang Results: @@ -876,20 +1117,26 @@ Desugared Clang Results: return __err_1 ;// L17 ^~~~~~~~~~~~~~~ 1 warning generated. +Desugared Infer Results: + + No issues found Matches: - 41 has a match! + 45 has a match! Unmatched ids: None! - -none 0 0 +Matches: +Unmatched ids: + 46 LINUX 30e053248da.c Macros: CONFIG_SECURITY [-UCONFIG_SECURITY ] -43 :: Line:31 +clang :: 49 :: Line:31 Assigned value is garbage or undefined [core.uninitialized.Assign] -44 :: Line:31 +clang :: 50 :: Line:31 Value stored to 'x' during its initialization is never read [deadcode.DeadStores] +infer :: 51 :: Line:41 + Uninitialized Value Desugared Clang Results: /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.desugared.c:111:7: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] if ( __error_8 )// L26 @@ -901,12 +1148,16 @@ int __x_9= * __length_7 ;// L31 int __x_9= * __length_7 ;// L31 ^~~~~ ~~~~~~~~~~~~~ 3 warnings generated. +Desugared Infer Results: + + No issues found Matches: - 44 has a match! + 50 has a match! Unmatched ids: - 43 - -missing2 0 + 49 +Matches: +Unmatched ids: + 51 LINUX d549f55f2e1.c Macros: CONFIG_VLAN_8021Q @@ -916,29 +1167,35 @@ Macros: [-UCONFIG_VLAN_8021Q -Ddefined=1 ] [-DCONFIG_VLAN_8021Q=1 -Ddefined=1 ] Desugared Clang Results: -Original file has no warnings +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings LINUX 7acf6cd80b2.c Macros: CONFIG_DEVPTS_MULTIPLE_INSTANCES CONFIG_UNIX98_PTYS [-UCONFIG_DEVPTS_MULTIPLE_INSTANCES -UCONFIG_UNIX98_PTYS ] [-DCONFIG_DEVPTS_MULTIPLE_INSTANCES=1 -UCONFIG_UNIX98_PTYS ] -48 :: Line:8 +clang :: 54 :: Line:8 Value stored to 'x' during its initialization is never read [deadcode.DeadStores] [-UCONFIG_DEVPTS_MULTIPLE_INSTANCES -DCONFIG_UNIX98_PTYS=1 ] -49 :: Line:39 +clang :: 55 :: Line:39 Value stored to 'driver_data' is never read [deadcode.DeadStores] -50 :: Line:44 +clang :: 56 :: Line:44 1st function call argument is an uninitialized value [core.CallAndMessage] +infer :: 57 :: Line:44 + Uninitialized Value [-DCONFIG_DEVPTS_MULTIPLE_INSTANCES=1 -DCONFIG_UNIX98_PTYS=1 ] -51 :: Line:8 +clang :: 58 :: Line:8 Value stored to 'x' during its initialization is never read [deadcode.DeadStores] -52 :: Line:39 +clang :: 59 :: Line:39 Value stored to 'driver_data' is never read [deadcode.DeadStores] -53 :: Line:44 +clang :: 60 :: Line:44 1st function call argument is an uninitialized value [core.CallAndMessage] +infer :: 61 :: Line:44 + Uninitialized Value Desugared Clang Results: /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.desugared.c:77:6: warning: Value stored to '__x_3' during its initialization is never read [deadcode.DeadStores] int __x_3= * __inode_2 ;// L8 @@ -950,25 +1207,32 @@ int __x_3= * __inode_2 ;// L8 __tty_release_14 ( __driver_data_15 ) ; // L44 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 3 warnings generated. +Desugared Infer Results: + + No issues found Matches: - 48 has a match! - 49 has a match! - 50 has a match! - 51 has a match! - 52 has a match! - 53 has a match! + 54 has a match! + 55 has a match! + 56 has a match! + 58 has a match! + 59 has a match! + 60 has a match! Unmatched ids: None! - -none 0 0 +Matches: +Unmatched ids: + 57 + 61 LINUX 60e233a5660.c Macros: defined [-Udefined ] Desugared Clang Results: -Original file has no warnings +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings LINUX 63878acfafb.c Macros: CONFIG_ARCH_OMAP3 @@ -988,60 +1252,61 @@ Desugared Clang Results: return __v_16 ;// L40 ^~~~~~~~~~~~~~ 1 warning generated. -Original file has no warnings +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings BUSYBOX 5275b1e49f6.c Macros: CONFIG_FEATURE_INSMOD_VERSION_CHECKING [-UCONFIG_FEATURE_INSMOD_VERSION_CHECKING ] Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1135:2: warning: Value stored to '__m_has_modinfo_967' is never read [deadcode.DeadStores] - __m_has_modinfo_967 = 0 ; // L16 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1141:2: warning: Value stored to '__m_has_modinfo_967' is never read [deadcode.DeadStores] - __m_has_modinfo_967 = 1 ; // L18 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1149:2: warning: Value stored to '__m_has_modinfo_967' is never read [deadcode.DeadStores] - __m_has_modinfo_967 = 0 ; // L16 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1155:2: warning: Value stored to '__m_has_modinfo_967' is never read [deadcode.DeadStores] - __m_has_modinfo_967 = 1 ; // L18 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1159:2: warning: Value stored to '__k_crcs_970' is never read [deadcode.DeadStores] - __k_crcs_970 = 0 ; // L21 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1170:2: warning: Value stored to '__k_crcs_970' is never read [deadcode.DeadStores] - __k_crcs_970 = __someInt_969 ; // L25 - ^ ~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1204:2: warning: Value stored to '__k_crcs_970' is never read [deadcode.DeadStores] - __k_crcs_970 = __someInt_969 ; // L25 - ^ ~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1265:2: warning: Value stored to '__m_has_modinfo_967' is never read [deadcode.DeadStores] - __m_has_modinfo_967 = 0 ; // L16 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1271:2: warning: Value stored to '__m_has_modinfo_967' is never read [deadcode.DeadStores] - __m_has_modinfo_967 = 1 ; // L18 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1279:2: warning: Value stored to '__m_has_modinfo_967' is never read [deadcode.DeadStores] - __m_has_modinfo_967 = 0 ; // L16 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1285:2: warning: Value stored to '__m_has_modinfo_967' is never read [deadcode.DeadStores] - __m_has_modinfo_967 = 1 ; // L18 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1289:2: warning: Value stored to '__k_crcs_970' is never read [deadcode.DeadStores] - __k_crcs_970 = 0 ; // L21 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1300:2: warning: Value stored to '__k_crcs_970' is never read [deadcode.DeadStores] - __k_crcs_970 = __someInt_969 ; // L25 - ^ ~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:1334:2: warning: Value stored to '__k_crcs_970' is never read [deadcode.DeadStores] - __k_crcs_970 = __someInt_969 ; // L25 - ^ ~~~~~~~~~~~~~ -14 warnings generated. +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:2928:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] + __m_has_modinfo_2040 = 0 ; // L16 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:2934:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] + __m_has_modinfo_2040 = 1 ; // L18 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:2942:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] + __m_has_modinfo_2040 = 0 ; // L16 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:2948:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] + __m_has_modinfo_2040 = 1 ; // L18 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:2953:2: warning: Value stored to '__k_crcs_2043' is never read [deadcode.DeadStores] + __k_crcs_2043 = 0 ; // L21 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3004:2: warning: Value stored to '__k_crcs_2043' is never read [deadcode.DeadStores] + __k_crcs_2043 = __someInt_2042 ; // L25 + ^ ~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3068:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] + __m_has_modinfo_2040 = 0 ; // L16 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3074:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] + __m_has_modinfo_2040 = 1 ; // L18 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3082:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] + __m_has_modinfo_2040 = 0 ; // L16 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3088:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] + __m_has_modinfo_2040 = 1 ; // L18 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3093:2: warning: Value stored to '__k_crcs_2043' is never read [deadcode.DeadStores] + __k_crcs_2043 = 0 ; // L21 + ^ ~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3144:2: warning: Value stored to '__k_crcs_2043' is never read [deadcode.DeadStores] + __k_crcs_2043 = __someInt_2042 ; // L25 + ^ ~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3208:2: warning: Value stored to '__k_crcs_2043' is never read [deadcode.DeadStores] + __k_crcs_2043 = 0 ; // L21 + ^ ~ +13 warnings generated. +Desugared Infer Results: + + No issues found +Original file has no warnings Original file has no warnings - -none 0 0 BUSYBOX 5cd6461b6fb.c Macros: CONFIG_FEATURE_HTTPD_CGI @@ -1057,17 +1322,21 @@ Macros: [-DCONFIG_FEATURE_HTTPD_CGI=1 -DCONFIG_LFS=1 -DCONFIG_FEATURE_HTTPD_BASIC_AUTH=1 ] [-UCONFIG_FEATURE_HTTPD_CGI -UCONFIG_LFS -UCONFIG_FEATURE_HTTPD_BASIC_AUTH ] Desugared Clang Results: -Original file has no warnings +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings BUSYBOX 1b487ea8a69.c Macros: ENABLE_SELINUX ENABLE_FEATURE_STAT_FORMAT [-UENABLE_SELINUX -UENABLE_FEATURE_STAT_FORMAT ] [-DENABLE_SELINUX=1 -UENABLE_FEATURE_STAT_FORMAT ] -57 :: Line:14 +clang :: 68 :: Line:14 Dereference of null pointer (loaded from variable 'scontext') [core.NullDereference] +infer :: 69 :: Line:14 + Null Dereference [-UENABLE_SELINUX -DENABLE_FEATURE_STAT_FORMAT=1 ] [-DENABLE_SELINUX=1 -DENABLE_FEATURE_STAT_FORMAT=1 ] Desugared Clang Results: @@ -1078,20 +1347,26 @@ Desugared Clang Results: __printf_421 (" %lc\n",* __scontext_2038 ) ; // L14 ^~~~~~~~~~~~~~~~~~ 2 warnings generated. +Desugared Infer Results: + + No issues found Matches: - 57 has a match! + 68 has a match! Unmatched ids: None! - -none 0 0 +Matches: +Unmatched ids: + 69 BUSYBOX b7ebc61b54f.c Macros: CONFIG_FEATURE_LS_TIMESTAMPS [-UCONFIG_FEATURE_LS_TIMESTAMPS ] Desugared Clang Results: -Original file has no warnings +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings BUSYBOX ebee301c8b0.c Macros: defined @@ -1104,17 +1379,21 @@ Desugared Clang Results: __copySubFile_2038 ( __src_2042 , __dst_2043 ) ; // L18 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2 warnings generated. -Original file has no warnings +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings BUSYBOX b273d665181.c Macros: BB_FEATURE_LS_FILETYPES BB_FEATURE_LS_USERNAME [-UBB_FEATURE_LS_FILETYPES -UBB_FEATURE_LS_USERNAME ] [-DBB_FEATURE_LS_FILETYPES=1 -UBB_FEATURE_LS_USERNAME ] -60 :: Line:16 +clang :: 74 :: Line:16 2nd function call argument is an uninitialized value [core.CallAndMessage] +infer :: 75 :: Line:16 + Uninitialized Value [-UBB_FEATURE_LS_FILETYPES -DBB_FEATURE_LS_USERNAME=1 ] [-DBB_FEATURE_LS_FILETYPES=1 -DBB_FEATURE_LS_USERNAME=1 ] Desugared Clang Results: @@ -1134,104 +1413,245 @@ Desugared Clang Results: __info_2036 = 0 ; // L11 ^ ~ 5 warnings generated. +Desugared Infer Results: + + No issues found Matches: - 60 has a match! + 74 has a match! Unmatched ids: None! - -none 0 0 +Matches: +Unmatched ids: + 75 BUSYBOX df7b6577c6a.c Macros: ENABLE_DESKTOP [-UENABLE_DESKTOP ] Desugared Clang Results: -Original file has no warnings +Desugared Infer Results: -none 0 0 -BUSYBOX/061fd0a353e SuperC failed + No issues found +Original file has no warnings +Original file has no warnings BUSYBOX 061fd0a353e.c Macros: CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF [-UCONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF -UCONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF ] -64 :: Line:16 +clang :: 82 :: Line:16 Value stored to 'p' is never read [deadcode.DeadStores] [-DCONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF=1 -UCONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF ] [-UCONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF -DCONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF=1 ] -65 :: Line:16 +clang :: 83 :: Line:16 Value stored to 'p' is never read [deadcode.DeadStores] -66 :: Line:27 +clang :: 84 :: Line:27 Branch condition evaluates to a garbage value [core.uninitialized.Branch] +infer :: 85 :: Line:27 + Uninitialized Value [-DCONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF=1 -DCONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF=1 ] -67 :: Line:16 +clang :: 86 :: Line:16 Value stored to 'p' is never read [deadcode.DeadStores] -68 :: Line:20 +clang :: 87 :: Line:20 Branch condition evaluates to a garbage value [core.uninitialized.Branch] -69 :: Line:27 +clang :: 88 :: Line:27 Branch condition evaluates to a garbage value [core.uninitialized.Branch] -File Failed -BUSYBOX/eef2317b9f5 SuperC failed +infer :: 89 :: Line:20 + Uninitialized Value +infer :: 90 :: Line:27 + Uninitialized Value +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.c:3062:2: warning: Value stored to '__p_2040' is never read [deadcode.DeadStores] + __p_2040 = * __argv_2037 ++ , -- __argc_2036 ; // L16 + ^ ~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.c:3229:2: warning: Value stored to '__p_2040' is never read [deadcode.DeadStores] + __p_2040 = * __argv_2037 ++ , -- __argc_2036 ; // L16 + ^ ~~~~~~~~~~~~~~~~~~ +2 warnings generated. +Desugared Infer Results: + + No issues found +Matches: + 82 has a match! + 83 has a match! + 86 has a match! +Unmatched ids: + 84 + 87 + 88 +Matches: +Unmatched ids: + 85 + 89 + 90 BUSYBOX eef2317b9f5.c Macros: CONFIG_FEATURE_CLEAN_UP [-UCONFIG_FEATURE_CLEAN_UP ] -70 :: Line:26 +clang :: 95 :: Line:26 Value stored to 'buf' is never read [deadcode.DeadStores] -71 :: Line:34 +clang :: 96 :: Line:34 Potential leak of memory pointed to by 'buf' [unix.Malloc] -File Failed +infer :: 97 :: Line:26 + Memory Leak +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c:1686:5: warning: Potential leak of memory pointed to by '__buf_964' [unix.Malloc] +if (__static_condition_default_972) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c:1692:7: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] +if ( __buf_964 )// L30 + ^~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c:1703:5: warning: Potential leak of memory pointed to by '__buf_964' [unix.Malloc] +if (__static_condition_default_974) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c:1749:2: warning: Value stored to '__buf_964' is never read [deadcode.DeadStores] + __buf_964 = malloc ( __bufsize_965 ) ; // L26 + ^ ~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c:1752:2: warning: Value stored to '__buf_964' is never read [deadcode.DeadStores] + __buf_964 = malloc ( __bufsize_965 ) ; // L26 + ^ ~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c:1754:5: warning: Potential leak of memory pointed to by '__buf_964' [unix.Malloc] +if (__static_condition_default_978) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c:1754:5: warning: Potential leak of memory pointed to by '__buf_964' [unix.Malloc] +if (__static_condition_default_978) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +7 warnings generated. +Desugared Infer Results: + +BUSYBOX/eef2317b9f5.desugared.c:1749: error: Memory Leak + Memory dynamically allocated by `malloc` on line 1749 is not freed after the last access at line 1749, column 2. + 1747. } + 1748. if (__static_condition_default_976) { + 1749. __buf_964 = malloc ( __bufsize_965 ) ; // L26 + ^ + 1750. } + 1751. if (__static_condition_default_977) { + +BUSYBOX/eef2317b9f5.desugared.c:1752: error: Memory Leak + Memory dynamically allocated by `malloc` on line 1752 is not freed after the last access at line 1752, column 2. + 1750. } + 1751. if (__static_condition_default_977) { + 1752. __buf_964 = malloc ( __bufsize_965 ) ; // L26 + ^ + 1753. } + 1754. if (__static_condition_default_978) { + + +Found 2 issues + Issue Type(ISSUED_TYPE_ID): # + Memory Leak(MEMORY_LEAK_C): 2 +Matches: + 95 has a match! +Unmatched ids: + 96 +Matches: +Unmatched ids: + 97 BUSYBOX 192c35f6eb2.c Macros: CONFIG_FEATURE_REMOTE_LOG [-UCONFIG_FEATURE_REMOTE_LOG ] Desugared Clang Results: -Original file has no warnings +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings BUSYBOX 2631486f1bf.c Macros: CONFIG_FEATURE_LS_RECURSIVE CONFIG_FEATURE_LS_SORTFILES [-UCONFIG_FEATURE_LS_RECURSIVE -UCONFIG_FEATURE_LS_SORTFILES ] -72 :: Line:67 +clang :: 110 :: Line:67 Assigned value is garbage or undefined [core.uninitialized.Assign] +infer :: 111 :: Line:66 + Null Dereference +infer :: 112 :: Line:67 + Uninitialized Value [-DCONFIG_FEATURE_LS_RECURSIVE=1 -UCONFIG_FEATURE_LS_SORTFILES ] -73 :: Line:67 +clang :: 113 :: Line:67 Assigned value is garbage or undefined [core.uninitialized.Assign] +infer :: 114 :: Line:66 + Null Dereference +infer :: 115 :: Line:67 + Uninitialized Value [-UCONFIG_FEATURE_LS_RECURSIVE -DCONFIG_FEATURE_LS_SORTFILES=1 ] -74 :: Line:67 +clang :: 116 :: Line:67 Assigned value is garbage or undefined [core.uninitialized.Assign] +infer :: 117 :: Line:66 + Null Dereference +infer :: 118 :: Line:67 + Uninitialized Value [-DCONFIG_FEATURE_LS_RECURSIVE=1 -DCONFIG_FEATURE_LS_SORTFILES=1 ] -75 :: Line:67 +clang :: 119 :: Line:67 Assigned value is garbage or undefined [core.uninitialized.Assign] -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1250:42: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_963', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_986)' [unix.MallocSizeof] - __curr_979 = ( struct __dnode_963 * ) malloc (sizeof(typeof(__sizeofStandin_986))) ; // L65 - ~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1253:42: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_963', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_986)' [unix.MallocSizeof] - __curr_979 = ( struct __dnode_963 * ) malloc (sizeof(typeof(__sizeofStandin_986))) ; // L65 - ~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1256:27: warning: Access to field '__val_964' results in a dereference of an undefined pointer value (loaded from variable '__curr_979') [core.NullDereference] - __curr_979 -> __val_964 = rand( ) % 10 ; // L66 - ~~~~~~~~~~ ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1259:27: warning: Access to field '__val_964' results in a dereference of an undefined pointer value (loaded from variable '__curr_979') [core.NullDereference] - __curr_979 -> __val_964 = rand( ) % 10 ; // L66 - ~~~~~~~~~~ ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1261:28: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] - __curr_979 -> __next_965 = __head_980 ; // L67 - ^ ~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:1261:28: warning: Access to field '__next_965' results in a dereference of an undefined pointer value (loaded from variable '__curr_979') [core.NullDereference] - __curr_979 -> __next_965 = __head_980 ; // L67 - ~~~~~~~~~~ ^ -6 warnings generated. +infer :: 120 :: Line:66 + Null Dereference +infer :: 121 :: Line:67 + Uninitialized Value +Desugared Clang Results: +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3171:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] + __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 + ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3174:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] + __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 + ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3177:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] + __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 + ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3180:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] + __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 + ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3186:29: warning: Access to field '__val_2038' results in a dereference of an undefined pointer value (loaded from variable '__curr_2072') [core.NullDereference] + __curr_2072 -> __val_2038 = rand( ) % 10 ; // L66 + ~~~~~~~~~~~ ^ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3191:30: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] + __curr_2072 -> __next_2039 = __head_2073 ; // L67 + ^ ~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3191:30: warning: Access to field '__next_2039' results in a dereference of an undefined pointer value (loaded from variable '__curr_2072') [core.NullDereference] + __curr_2072 -> __next_2039 = __head_2073 ; // L67 + ~~~~~~~~~~~ ^ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3255:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] + __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 + ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3258:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] + __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 + ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3261:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] + __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 + ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3264:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] + __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 + ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3270:29: warning: Access to field '__val_2038' results in a dereference of an undefined pointer value (loaded from variable '__curr_2072') [core.NullDereference] + __curr_2072 -> __val_2038 = rand( ) % 10 ; // L66 + ~~~~~~~~~~~ ^ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3275:30: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] + __curr_2072 -> __next_2039 = __head_2073 ; // L67 + ^ ~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3275:30: warning: Access to field '__next_2039' results in a dereference of an undefined pointer value (loaded from variable '__curr_2072') [core.NullDereference] + __curr_2072 -> __next_2039 = __head_2073 ; // L67 + ~~~~~~~~~~~ ^ +14 warnings generated. +Desugared Infer Results: + + No issues found Matches: Unmatched ids: - 72 - 73 - 74 - 75 - -missing3 0 + 110 + 113 + 116 + 119 +Matches: +Unmatched ids: + 111 + 112 + 114 + 115 + 117 + 118 + 120 + 121 BUSYBOX 95755181b82.c Macros: ENABLE_FEATURE_HTTPD_GZIP @@ -1250,75 +1670,115 @@ File Failed BUSYBOX cc3f20b9bdf.c Macros: Desugared Clang Results: -Original file has no warnings +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings BUSYBOX cf1f2ace391.c Macros: ENABLE_DEBUG_INIT [-UENABLE_DEBUG_INIT ] Desugared Clang Results: -Original file has no warnings +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings BUSYBOX bc0ffc0e971.c Macros: ENABLE_FEATURE_CLEAN_UP [-UENABLE_FEATURE_CLEAN_UP ] -81 :: Line:46 +clang :: 138 :: Line:46 Potential leak of memory pointed to by 'clist' [unix.Malloc] +infer :: 139 :: Line:40 + Memory Leak +infer :: 140 :: Line:40 + Null Dereference Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2184:1: warning: Attempt to free released memory [unix.Malloc] -free ( __ch_1826 -> __ifname_1822) ; // L15 -^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2257:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_1823', which is incompatible with sizeof operand type 'struct (unnamed struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2238:1)' [unix.MallocSizeof] - __ch_1848 = malloc (sizeof(__sizeofStandin_1852)) ; // L29 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3380:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_2394', which is incompatible with sizeof operand type 'struct (unnamed struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3337:1)' [unix.MallocSizeof] + __ch_2419 = malloc (sizeof(__sizeofStandin_2423)) ; // L29 ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2260:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_1823', which is incompatible with sizeof operand type 'struct (unnamed struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2238:1)' [unix.MallocSizeof] - __ch_1848 = malloc (sizeof(__sizeofStandin_1852)) ; // L29 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3383:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_2394', which is incompatible with sizeof operand type 'struct (unnamed struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3337:1)' [unix.MallocSizeof] + __ch_2419 = malloc (sizeof(__sizeofStandin_2423)) ; // L29 ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2262:30: warning: Access to field '__ifname_1822' results in a dereference of an undefined pointer value (loaded from variable '__ch_1848') [core.NullDereference] - __ch_1848 -> __ifname_1822 = __ifname_1847 ; // L30 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3385:5: warning: Potential leak of memory pointed to by '__ch_2419' [unix.Malloc] +if (__static_condition_default_2438) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3388:30: warning: Access to field '__ifname_2393' results in a dereference of an undefined pointer value (loaded from variable '__ch_2419') [core.NullDereference] + __ch_2419 -> __ifname_2393 = __ifname_2418 ; // L30 ~~~~~~~~~ ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2262:33: warning: Potential leak of memory pointed to by '__ch_1848' [unix.Malloc] - __ch_1848 -> __ifname_1822 = __ifname_1847 ; // L30 - ^~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2297:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_1824', which is incompatible with sizeof operand type 'struct (unnamed struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2279:1)' [unix.MallocSizeof] - __ch_1849 = malloc (sizeof(__sizeofStandin_1855)) ; // L29 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3447:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_2395', which is incompatible with sizeof operand type 'struct (unnamed struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3405:1)' [unix.MallocSizeof] + __ch_2420 = malloc (sizeof(__sizeofStandin_2426)) ; // L29 ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2300:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_1824', which is incompatible with sizeof operand type 'struct (unnamed struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2279:1)' [unix.MallocSizeof] - __ch_1849 = malloc (sizeof(__sizeofStandin_1855)) ; // L29 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3450:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_2395', which is incompatible with sizeof operand type 'struct (unnamed struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3405:1)' [unix.MallocSizeof] + __ch_2420 = malloc (sizeof(__sizeofStandin_2426)) ; // L29 ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2302:30: warning: Access to field '__ifname_1822' results in a dereference of an undefined pointer value (loaded from variable '__ch_1849') [core.NullDereference] - __ch_1849 -> __ifname_1822 = __ifname_1847 ; // L30 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3452:5: warning: Potential leak of memory pointed to by '__ch_2420' [unix.Malloc] +if (__static_condition_default_2448) { + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3455:30: warning: Access to field '__ifname_2393' results in a dereference of an undefined pointer value (loaded from variable '__ch_2420') [core.NullDereference] + __ch_2420 -> __ifname_2393 = __ifname_2418 ; // L30 ~~~~~~~~~ ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2302:33: warning: Potential leak of memory pointed to by '__ch_1849' [unix.Malloc] - __ch_1849 -> __ifname_1822 = __ifname_1847 ; // L30 - ^~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2333:39: warning: Potential leak of memory pointed to by '__ch_1872' [unix.Malloc] -for ( __ch_1872 = __clist_1870 ; __ch_1872 ; __ch_1872 = __ch_1872 -> __next_1821 )// L43 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3486:39: warning: Potential leak of memory pointed to by '__ch_2453' [unix.Malloc] +for ( __ch_2453 = __clist_2451 ; __ch_2453 ; __ch_2453 = __ch_2453 -> __next_2392 )// L43 ^~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2333:67: warning: Use of memory after it is freed [unix.Malloc] -for ( __ch_1872 = __clist_1870 ; __ch_1872 ; __ch_1872 = __ch_1872 -> __next_1821 )// L43 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3486:67: warning: Use of memory after it is freed [unix.Malloc] +for ( __ch_2453 = __clist_2451 ; __ch_2453 ; __ch_2453 = __ch_2453 -> __next_2392 )// L43 ^~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2338:5: warning: Potential leak of memory pointed to by '__clist_1870' [unix.Malloc] -if (__static_condition_default_1876) { +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3491:5: warning: Potential leak of memory pointed to by '__clist_2451' [unix.Malloc] +if (__static_condition_default_2457) { ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2339:39: warning: Potential leak of memory pointed to by '__ch_1873' [unix.Malloc] -for ( __ch_1873 = __clist_1871 ; __ch_1873 ; __ch_1873 = __ch_1873 -> __next_1821 )// L43 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3492:39: warning: Potential leak of memory pointed to by '__ch_2454' [unix.Malloc] +for ( __ch_2454 = __clist_2452 ; __ch_2454 ; __ch_2454 = __ch_2454 -> __next_2392 )// L43 ^~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2339:67: warning: Use of memory after it is freed [unix.Malloc] -for ( __ch_1873 = __clist_1871 ; __ch_1873 ; __ch_1873 = __ch_1873 -> __next_1821 )// L43 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3492:67: warning: Use of memory after it is freed [unix.Malloc] +for ( __ch_2454 = __clist_2452 ; __ch_2454 ; __ch_2454 = __ch_2454 -> __next_2392 )// L43 ^~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:2344:5: warning: Potential leak of memory pointed to by '__clist_1871' [unix.Malloc] -if (__static_condition_default_1877) { +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3497:5: warning: Potential leak of memory pointed to by '__clist_2452' [unix.Malloc] +if (__static_condition_default_2458) { ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -15 warnings generated. +14 warnings generated. +Desugared Infer Results: + +BUSYBOX/bc0ffc0e971.desugared.c:3382: error: Memory Leak + Memory dynamically allocated by `malloc` on line 3380 is not freed after the last access at line 3382, column 5. + 3380. __ch_2419 = malloc (sizeof(__sizeofStandin_2423)) ; // L29 + 3381. } + 3382. if (__static_condition_default_2437) { + ^ + 3383. __ch_2419 = malloc (sizeof(__sizeofStandin_2423)) ; // L29 + 3384. } + +BUSYBOX/bc0ffc0e971.desugared.c:3449: error: Memory Leak + Memory dynamically allocated by `malloc` on line 3447 is not freed after the last access at line 3449, column 5. + 3447. __ch_2420 = malloc (sizeof(__sizeofStandin_2426)) ; // L29 + 3448. } + 3449. if (__static_condition_default_2447) { + ^ + 3450. __ch_2420 = malloc (sizeof(__sizeofStandin_2426)) ; // L29 + 3451. } + +BUSYBOX/bc0ffc0e971.desugared.c:3491: error: Memory Leak + Memory dynamically allocated by `malloc`, indirectly via call to `__prepend_new_eth_table_2428()` on line 3483 is not freed after the last access at line 3491, column 5. + 3489. } + 3490. } + 3491. if (__static_condition_default_2457) { + ^ + 3492. for ( __ch_2454 = __clist_2452 ; __ch_2454 ; __ch_2454 = __ch_2454 -> __next_2392 )// L43 + 3493. { + + +Found 3 issues + Issue Type(ISSUED_TYPE_ID): # + Memory Leak(MEMORY_LEAK_C): 3 Matches: Unmatched ids: - 81 - -missing3 0 + 138 +Matches: +Unmatched ids: + 139 + 140 BUSYBOX b62bd7b261b.c Macros: ENABLE_FEATURE_MDEV_CONF @@ -1328,93 +1788,110 @@ Macros: [-DENABLE_FEATURE_MDEV_CONF=1 -UENABLE_FEATURE_MDEV_RENAME -UENABLE_FEATURE_MDEV_RENAME_REGEXP ] [-UENABLE_FEATURE_MDEV_CONF -DENABLE_FEATURE_MDEV_RENAME=1 -UENABLE_FEATURE_MDEV_RENAME_REGEXP ] [-DENABLE_FEATURE_MDEV_CONF=1 -DENABLE_FEATURE_MDEV_RENAME=1 -UENABLE_FEATURE_MDEV_RENAME_REGEXP ] -89 :: Line:14 +clang :: 149 :: Line:14 Value stored to 'a' during its initialization is never read [deadcode.DeadStores] -90 :: Line:16 +clang :: 150 :: Line:16 Value stored to 'val' is never read [deadcode.DeadStores] [-UENABLE_FEATURE_MDEV_CONF -UENABLE_FEATURE_MDEV_RENAME -DENABLE_FEATURE_MDEV_RENAME_REGEXP=1 ] [-DENABLE_FEATURE_MDEV_CONF=1 -UENABLE_FEATURE_MDEV_RENAME -DENABLE_FEATURE_MDEV_RENAME_REGEXP=1 ] [-UENABLE_FEATURE_MDEV_CONF -DENABLE_FEATURE_MDEV_RENAME=1 -DENABLE_FEATURE_MDEV_RENAME_REGEXP=1 ] [-DENABLE_FEATURE_MDEV_CONF=1 -DENABLE_FEATURE_MDEV_RENAME=1 -DENABLE_FEATURE_MDEV_RENAME_REGEXP=1 ] -91 :: Line:16 +clang :: 151 :: Line:16 Value stored to 'val' is never read [deadcode.DeadStores] -92 :: Line:24 +clang :: 152 :: Line:24 Dereference of undefined pointer value (loaded from variable 'p') [core.NullDereference] +infer :: 153 :: Line:24 + Uninitialized Value [-UENABLE_FEATURE_MDEV_CONF -UENABLE_FEATURE_MDEV_RENAME -UENABLE_FEATURE_MDEV_RENAME_REGEXP ] Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1451:1: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] -char * (__a_1261)= __val_1258 ;// L14 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3212:1: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] +char * (__a_2393)= __val_2390 ;// L14 ^~~~~~~~~~~~~~~~~ ~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1451:10: warning: Value stored to '__a_1261' during its initialization is never read [deadcode.DeadStores] -char * (__a_1261)= __val_1258 ;// L14 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3212:10: warning: Value stored to '__a_2393' during its initialization is never read [deadcode.DeadStores] +char * (__a_2393)= __val_2390 ;// L14 ^~~~~~~~ ~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1457:2: warning: Value stored to '__val_1258' is never read [deadcode.DeadStores] - __val_1258 = ( __s_1259 && __s_1259 [ 1 ] ) ? __s_1259 + 1 : ( ( void * ) 0 ) ; // L16:L395 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3218:2: warning: Value stored to '__val_2390' is never read [deadcode.DeadStores] + __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1457:19: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] - __val_1258 = ( __s_1259 && __s_1259 [ 1 ] ) ? __s_1259 + 1 : ( ( void * ) 0 ) ; // L16:L395 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3218:19: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] + __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 ^~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1482:2: warning: Value stored to '__val_1258' is never read [deadcode.DeadStores] - __val_1258 = ( __s_1259 && __s_1259 [ 1 ] ) ? __s_1259 + 1 : ( ( void * ) 0 ) ; // L16:L395 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3245:2: warning: Value stored to '__val_2390' is never read [deadcode.DeadStores] + __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1494:14: warning: Dereference of undefined pointer value (loaded from variable '__p_1260') [core.NullDereference] -* __p_1260 = * __s_1259 ; // L24 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3245:19: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] + __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 + ^~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3257:14: warning: Dereference of undefined pointer value (loaded from variable '__p_2392') [core.NullDereference] +* __p_2392 = * __s_2391 ; // L24 ~~~~~~~~ ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1556:1: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] -char * (__a_1261)= __val_1258 ;// L14 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3307:1: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] +char * (__a_2393)= __val_2390 ;// L14 ^~~~~~~~~~~~~~~~~ ~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1556:10: warning: Value stored to '__a_1261' during its initialization is never read [deadcode.DeadStores] -char * (__a_1261)= __val_1258 ;// L14 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3307:10: warning: Value stored to '__a_2393' during its initialization is never read [deadcode.DeadStores] +char * (__a_2393)= __val_2390 ;// L14 ^~~~~~~~ ~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1562:2: warning: Value stored to '__val_1258' is never read [deadcode.DeadStores] - __val_1258 = ( __s_1259 && __s_1259 [ 1 ] ) ? __s_1259 + 1 : ( ( void * ) 0 ) ; // L16:L395 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3313:2: warning: Value stored to '__val_2390' is never read [deadcode.DeadStores] + __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1562:19: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] - __val_1258 = ( __s_1259 && __s_1259 [ 1 ] ) ? __s_1259 + 1 : ( ( void * ) 0 ) ; // L16:L395 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3313:19: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] + __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 ^~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1587:2: warning: Value stored to '__val_1258' is never read [deadcode.DeadStores] - __val_1258 = ( __s_1259 && __s_1259 [ 1 ] ) ? __s_1259 + 1 : ( ( void * ) 0 ) ; // L16:L395 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3340:2: warning: Value stored to '__val_2390' is never read [deadcode.DeadStores] + __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:1599:14: warning: Dereference of undefined pointer value (loaded from variable '__p_1260') [core.NullDereference] -* __p_1260 = * __s_1259 ; // L24 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3340:19: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] + __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 + ^~~~~~~~ +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3352:14: warning: Dereference of undefined pointer value (loaded from variable '__p_2392') [core.NullDereference] +* __p_2392 = * __s_2391 ; // L24 ~~~~~~~~ ^ -12 warnings generated. +14 warnings generated. +Desugared Infer Results: + + No issues found Matches: - 89 has a match! - 90 has a match! - 91 has a match! - 92 has a match! + 149 has a match! + 150 has a match! + 151 has a match! + 152 has a match! Unmatched ids: None! - -none 0 0 +Matches: +Unmatched ids: + 153 BUSYBOX 0301ffab3d9.c Macros: EXT2FS_ENABLE_SWAPFS [-UEXT2FS_ENABLE_SWAPFS ] Desugared Clang Results: -Original file has no warnings +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.desugared.c:51:2: warning: Value stored to '__gdp_0' is never read [deadcode.DeadStores] + __gdp_0 = "group_desc" ; // L7 + ^ ~~~~~~~~~~~~ +1 warning generated. +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings BUSYBOX 199501f2a00.c Macros: ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS [-UENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS ] -103 :: Line:21 +clang :: 182 :: Line:21 Null pointer passed to 2nd parameter expecting 'nonnull' [core.NonNullParamChecker] Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.c:1543:2: warning: Value stored to '__dt_1258' is never read [deadcode.DeadStores] - __dt_1258 = "-i" ; // L10 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.c:3282:2: warning: Value stored to '__dt_2390' is never read [deadcode.DeadStores] + __dt_2390 = "-i" ; // L10 ^ ~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.c:1557:2: warning: Value stored to '__dt_1258' is never read [deadcode.DeadStores] - __dt_1258 = "-i" ; // L10 - ^ ~~~~ -2 warnings generated. +1 warning generated. +Desugared Infer Results: + + No issues found Matches: Unmatched ids: - 103 - -missing1 0 + 182 +Original file has no warnings APACHE d0040a07aec.c Macros: defined @@ -1424,9 +1901,11 @@ Macros: [-Udefined -DRLIMIT_NPROC=1 ] [-Ddefined=1 -DRLIMIT_NPROC=1 ] Desugared Clang Results: -Original file has no warnings +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings APACHE c76df14dfb4.c Macros: CROSS_COMPILE @@ -1442,54 +1921,64 @@ Macros: [-DCROSS_COMPILE=1 -Ddefined=1 -DNEED_ENHANCED_ESCAPES=1 ] [-UCROSS_COMPILE -Udefined -UNEED_ENHANCED_ESCAPES ] Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c:2149:2: warning: Value stored to '__flags_1818' is never read [deadcode.DeadStores] - __flags_1818 |= ( 0x01 ) ; // L4:L42 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c:3171:2: warning: Value stored to '__flags_2323' is never read [deadcode.DeadStores] + __flags_2323 |= ( 0x01 ) ; // L4:L42 ^ ~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c:2213:2: warning: Value stored to '__flags_1818' is never read [deadcode.DeadStores] - __flags_1818 |= ( 0x01 ) ; // L4:L42 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c:3240:2: warning: Value stored to '__flags_2323' is never read [deadcode.DeadStores] + __flags_2323 |= ( 0x01 ) ; // L4:L42 ^ ~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c:2305:2: warning: Value stored to '__flags_1818' is never read [deadcode.DeadStores] - __flags_1818 |= ( 0x01 ) ; // L4:L42 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c:3309:2: warning: Value stored to '__flags_2323' is never read [deadcode.DeadStores] + __flags_2323 |= ( 0x01 ) ; // L4:L42 ^ ~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c:2397:2: warning: Value stored to '__flags_1818' is never read [deadcode.DeadStores] - __flags_1818 |= ( 0x01 ) ; // L4:L42 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c:3378:2: warning: Value stored to '__flags_2323' is never read [deadcode.DeadStores] + __flags_2323 |= ( 0x01 ) ; // L4:L42 ^ ~~~~~~~~ 4 warnings generated. -Original file has no warnings +Desugared Infer Results: -missing1 0 + No issues found +Original file has no warnings +Original file has no warnings APACHE 97ecbec1237.c Macros: APR_HAS_SHARED_MEMORY [-UAPR_HAS_SHARED_MEMORY ] Desugared Clang Results: -Original file has no warnings +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings APACHE bbeb0516cf0.c Macros: APR_FILES_AS_SOCKETS [-UAPR_FILES_AS_SOCKETS ] Desugared Clang Results: -Original file has no warnings +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings APACHE 1f46088b38d.c Macros: SIGPIPE [-USIGPIPE ] Desugared Clang Results: -Original file has no warnings +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings APACHE 9327311d30f.c Macros: APR_HAS_SHARED_MEMORY [-UAPR_HAS_SHARED_MEMORY ] Desugared Clang Results: -Original file has no warnings +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings APACHE 35ae2e259e4.c Macros: HAVE_ECC @@ -1530,9 +2019,59 @@ if (__static_condition_default_823) { if (__static_condition_default_823) { ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 10 warnings generated. +Desugared Infer Results: + +APACHE/35ae2e259e4.desugared.c:1366: error: Memory Leak + Memory dynamically allocated by `malloc` on line 1358 is not freed after the last access at line 1366, column 5. + 1364. if ( rand( ) % 2 )// L11 + 1365. { + 1366. if (__static_condition_default_806) { + ^ + 1367. + 1368. { + +APACHE/35ae2e259e4.desugared.c:1373: error: Memory Leak + Memory dynamically allocated by `malloc` on line 1358 is not freed after the last access at line 1373, column 1. + 1371. + 1372. + 1373. * __eckey_798 = 30 ; // L12 + ^ + 1374. } + 1375. } + +APACHE/35ae2e259e4.desugared.c:1397: error: Memory Leak + Memory dynamically allocated by `malloc` on line 1358 is not freed after the last access at line 1397, column 1. + 1395. + 1396. + 1397. * __eckey_798 = 15 ; // L17 + ^ + 1398. } + 1399. } + +APACHE/35ae2e259e4.desugared.c:1435: error: Memory Leak + Memory dynamically allocated by `malloc` on line 1427 is not freed after the last access at line 1435, column 5. + 1433. if ( rand( ) % 2 )// L11 + 1434. { + 1435. if (__static_condition_default_815) { + ^ + 1436. + 1437. { + +APACHE/35ae2e259e4.desugared.c:1442: error: Memory Leak + Memory dynamically allocated by `malloc` on line 1427 is not freed after the last access at line 1442, column 1. + 1440. + 1441. + 1442. * __eckey_798 = 30 ; // L12 + ^ + 1443. } + 1444. } + + +Found 8 issues (console output truncated to 5, see '/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/infer-out/report.txt' for the full list) + Issue Type(ISSUED_TYPE_ID): # + Memory Leak(MEMORY_LEAK_C): 8 +Original file has no warnings Original file has no warnings - -none 0 0 APACHE 4202d5fee3e.c Macros: APU_HAS_LDAP @@ -1542,9 +2081,11 @@ Macros: [-UAPU_HAS_LDAP -DAPU_HAS_LDAP_NETSCAPE_SSL=1 ] [-DAPU_HAS_LDAP=1 -DAPU_HAS_LDAP_NETSCAPE_SSL=1 ] Desugared Clang Results: -Original file has no warnings +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings APACHE/b833f064550 SuperC failed APACHE b833f064550.c Macros: @@ -1556,58 +2097,61 @@ Macros: APR_HAVE_IPV6 [-UAPR_HAVE_IPV6 ] Desugared Clang Results: -Original file has no warnings +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings APACHE 2a6cbfa00e0.c Macros: SHARED_MODULE [-USHARED_MODULE ] -108 :: Line:16 +clang :: 184 :: Line:16 Potential leak of memory pointed to by 'sc' [unix.Malloc] Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c:1496:5: warning: Potential leak of memory pointed to by '__sc_1019' [unix.Malloc] -if (__static_condition_default_1028) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c:1499:5: warning: Potential leak of memory pointed to by '__sc_1018' [unix.Malloc] -if (__static_condition_default_1029) { +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c:1569:5: warning: Potential leak of memory pointed to by '__sc_1084' [unix.Malloc] +if (__static_condition_default_1093) { ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c:1525:10: warning: Value stored to '__sc_1021' during its initialization is never read [deadcode.DeadStores] -char * (__sc_1021)= malloc (sizeof(char) * 45);// L6 - ^~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c:1527:1: warning: Potential leak of memory pointed to by '__sc_1021' [unix.Malloc] -__static_type_error("type error") ; // L9 -^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c:1531:5: warning: Potential leak of memory pointed to by '__sc_1020' [unix.Malloc] -if (__static_condition_default_1034) { +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c:1603:5: warning: Potential leak of memory pointed to by '__sc_1085' [unix.Malloc] +if (__static_condition_default_1098) { ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -5 warnings generated. +2 warnings generated. +Desugared Infer Results: + +APACHE/2a6cbfa00e0.desugared.c:1600: error: Memory Leak + Memory dynamically allocated by `malloc` on line 1593 is not freed after the last access at line 1600, column 5. + 1598. + 1599. __static_type_error("type error") ; // L9 + 1600. if (__static_condition_default_1097) { + ^ + 1601. free ( __sc_1085 ) ; // L12 + 1602. } + + +Found 1 issue + Issue Type(ISSUED_TYPE_ID): # + Memory Leak(MEMORY_LEAK_C): 1 Matches: Unmatched ids: - 108 - -missing1 0 + 184 +Original file has no warnings APACHE 1a3c8e3d840.c Macros: HAVE_TLSV1_X [-UHAVE_TLSV1_X ] Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.c:273:2: warning: Value stored to '__thisopt_252' is never read [deadcode.DeadStores] - __thisopt_252 = ( 1 << 3 ) ; // L4:L13 - ^ ~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.c:287:2: warning: Value stored to '__thisopt_252' is never read [deadcode.DeadStores] - __thisopt_252 = ( 1 << 3 ) ; // L4:L13 - ^ ~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.c:318:2: warning: Value stored to '__thisopt_252' is never read [deadcode.DeadStores] - __thisopt_252 = ( 1 << 3 ) ; // L4:L13 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.c:1332:2: warning: Value stored to '__thisopt_798' is never read [deadcode.DeadStores] + __thisopt_798 = ( 1 << 3 ) ; // L4:L13 ^ ~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.c:332:2: warning: Value stored to '__thisopt_252' is never read [deadcode.DeadStores] - __thisopt_252 = ( 1 << 3 ) ; // L4:L13 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.c:1368:2: warning: Value stored to '__thisopt_798' is never read [deadcode.DeadStores] + __thisopt_798 = ( 1 << 3 ) ; // L4:L13 ^ ~~~~~~~~~~ -4 warnings generated. -Original file has no warnings +2 warnings generated. +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings APACHE test.c Macros: XX @@ -1623,33 +2167,41 @@ Macros: [-DXX=1 -DYY=1 -DZZ=1 ] [-UXX -UYY -UZZ ] Desugared Clang Results: -Original file has no warnings +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings APACHE dbafef17dd1.c Macros: HAS_APACHE_REGEX_LIB [-UHAS_APACHE_REGEX_LIB ] Desugared Clang Results: -Original file has no warnings +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings APACHE 3407eccc321.c Macros: __STDC_VERSION__ [-U__STDC_VERSION__ ] Desugared Clang Results: -Original file has no warnings +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings APACHE 664e3aac6dd.c Macros: WIN32X [-UWIN32X ] Desugared Clang Results: -Original file has no warnings +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings APACHE d05e574ec26.c Macros: APR_HAS_SHARED_MEMORY @@ -1692,17 +2244,21 @@ if (__static_condition_default_2056) { if (__static_condition_default_2057) { ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 12 warnings generated. -Original file has no warnings +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings APACHE 6338509eb37.c Macros: HAVE_FIPS [-UHAVE_FIPS ] Desugared Clang Results: -Original file has no warnings +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings APACHE 0900800fbab.c Macros: HAVE_SYSLOG @@ -1712,17 +2268,21 @@ Macros: [-UHAVE_SYSLOG -DAPLOG_MAX_LOGLEVEL=1 ] [-DHAVE_SYSLOG=1 -DAPLOG_MAX_LOGLEVEL=1 ] Desugared Clang Results: -Original file has no warnings +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings APACHE 0ddfa412ee9.c Macros: HAVE_TLS_ALPN [-UHAVE_TLS_ALPN ] Desugared Clang Results: -Original file has no warnings +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings APACHE 4945115b2e7.c Macros: DEBUG_CGI @@ -1732,17 +2292,21 @@ Macros: [-UDEBUG_CGI -DOS2=1 ] [-DDEBUG_CGI=1 -DOS2=1 ] Desugared Clang Results: -Original file has no warnings +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings APACHE 56d9881993f.c Macros: APR_HAS_SENDFILE [-UAPR_HAS_SENDFILE ] Desugared Clang Results: -Original file has no warnings +Desugared Infer Results: -none 0 0 + No issues found +Original file has no warnings +Original file has no warnings APACHE 1b48bb3c1af.c Macros: APU_HAS_LDAP @@ -1751,19 +2315,28 @@ Macros: [-DAPU_HAS_LDAP=1 -UAPR_HAS_SHARED_MEMORY ] [-UAPU_HAS_LDAP -DAPR_HAS_SHARED_MEMORY=1 ] [-DAPU_HAS_LDAP=1 -DAPR_HAS_SHARED_MEMORY=1 ] -115 :: Line:14 +clang :: 186 :: Line:14 1st function call argument is an uninitialized value [core.CallAndMessage] +infer :: 187 :: Line:14 + Uninitialized Value Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c:1273:2: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] - __apr_rmm_init_1019 ( __rmm_lock_1023 ) ; // L14 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c:1427:2: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] + __apr_rmm_init_1093 ( __rmm_lock_1099 ) ; // L14 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c:1276:2: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] - __apr_rmm_init_1020 ( __rmm_lock_1023 ) ; // L14 +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c:1430:2: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] + __apr_rmm_init_1094 ( __rmm_lock_1099 ) ; // L14 ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -2 warnings generated. +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c:1433:2: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] + __apr_rmm_init_1095 ( __rmm_lock_1099 ) ; // L14 + ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +3 warnings generated. +Desugared Infer Results: + + No issues found Matches: - 115 has a match! + 186 has a match! Unmatched ids: None! - -none 0 0 +Matches: +Unmatched ids: + 187 From 3b5f9e7026480f545c24678a06a21fd80cabae23 Mon Sep 17 00:00:00 2001 From: pattersonzUTD Date: Fri, 16 Sep 2022 10:42:27 -0500 Subject: [PATCH 18/77] updated make-main to take command line args --- src/superc/SugarC.java | 6 +++++- src/superc/cdesugarer/CActions.java | 9 +++++++-- src/superc/cdesugarer/desugarer.y | 9 +++++++-- 3 files changed, 19 insertions(+), 5 deletions(-) diff --git a/src/superc/SugarC.java b/src/superc/SugarC.java index 0bf727c7..7623da23 100644 --- a/src/superc/SugarC.java +++ b/src/superc/SugarC.java @@ -552,6 +552,10 @@ public Node parse(Reader in, File file) throws IOException, ParseException { CContext scope = initialParsingContext; SymbolTable symtab = scope.getSymbolTable(); PresenceCondition pcTrue = presenceConditionManager.newTrue(); + String mainMethod = ""; + if (runtime.test("make-main")) { + mainMethod = actions.printMain(scope, pcTrue); + } // emit headers System.out.print("#include \n"); @@ -586,7 +590,7 @@ public Node parse(Reader in, File file) throws IOException, ParseException { } if (runtime.test("make-main")) { - System.out.print(actions.printMain(scope, pcTrue)); + System.out.print(mainMethod); } } diff --git a/src/superc/cdesugarer/CActions.java b/src/superc/cdesugarer/CActions.java index e20fe85b..e05facd6 100644 --- a/src/superc/cdesugarer/CActions.java +++ b/src/superc/cdesugarer/CActions.java @@ -11167,7 +11167,7 @@ private void recordRenaming(String renaming, String original) { public String printMain(CContext scope, PresenceCondition pc) { String ret = ""; - ret += "int main() {\n"; + ret += "int main(int argc, char **argv) {\n"; Multiverse> entries = scope.getInCurrentScope("main", pc); for (Element> entry : entries) { ret += "if ("; @@ -11180,7 +11180,12 @@ public String printMain(CContext scope, PresenceCondition pc) { } else if (!(entry.getData().getValue() instanceof FunctionOrMethodT)){ ret += emitError("main illegally defined") + ";\n"; } else { - ret += "return " + ((NamedFunctionT) entry.getData().getValue()).getName() + "();"; + NamedFunctionT mainMethod = (NamedFunctionT) entry.getData().getValue(); + ret += "return " + mainMethod.getName() + "("; + if (mainMethod.getParameters().size() == 2) { + ret += "argc, argv"; + } + ret += ");"; } // end test of symtab entry type ret += "}\n"; } // end loop over symtab entries diff --git a/src/superc/cdesugarer/desugarer.y b/src/superc/cdesugarer/desugarer.y index a36403a3..bbe0e848 100644 --- a/src/superc/cdesugarer/desugarer.y +++ b/src/superc/cdesugarer/desugarer.y @@ -11029,7 +11029,7 @@ private void recordRenaming(String renaming, String original) { public String printMain(CContext scope, PresenceCondition pc) { String ret = ""; - ret += "int main() {\n"; + ret += "int main(int argc, char **argv) {\n"; Multiverse> entries = scope.getInCurrentScope("main", pc); for (Element> entry : entries) { ret += "if ("; @@ -11042,7 +11042,12 @@ public String printMain(CContext scope, PresenceCondition pc) { } else if (!(entry.getData().getValue() instanceof FunctionOrMethodT)){ ret += emitError("main illegally defined") + ";\n"; } else { - ret += "return " + ((NamedFunctionT) entry.getData().getValue()).getName() + "();"; + NamedFunctionT mainMethod = (NamedFunctionT) entry.getData().getValue(); + ret += "return " + mainMethod.getName() + "("; + if (mainMethod.getParameters().size() == 2) { + ret += "argc, argv"; + } + ret += ");"; } // end test of symtab entry type ret += "}\n"; } // end loop over symtab entries From 478f6eec4053120f9c66f664e38311a9b939feb3 Mon Sep 17 00:00:00 2001 From: pattersonz Date: Fri, 16 Sep 2022 11:10:15 -0500 Subject: [PATCH 19/77] now checks return type in make-main --- src/superc/cdesugarer/CActions.java | 10 ++++++++-- src/superc/cdesugarer/desugarer.y | 10 ++++++++-- 2 files changed, 16 insertions(+), 4 deletions(-) diff --git a/src/superc/cdesugarer/CActions.java b/src/superc/cdesugarer/CActions.java index e05facd6..62874111 100644 --- a/src/superc/cdesugarer/CActions.java +++ b/src/superc/cdesugarer/CActions.java @@ -11181,11 +11181,17 @@ public String printMain(CContext scope, PresenceCondition pc) { ret += emitError("main illegally defined") + ";\n"; } else { NamedFunctionT mainMethod = (NamedFunctionT) entry.getData().getValue(); - ret += "return " + mainMethod.getName() + "("; + if (mainMethod.getResult().isInteger()) { + ret += "return "; + } + ret += mainMethod.getName() + "("; if (mainMethod.getParameters().size() == 2) { ret += "argc, argv"; } - ret += ");"; + ret += ");\n"; + if (!mainMethod.getResult().isInteger()) { + ret += "return 0;\n"; + } } // end test of symtab entry type ret += "}\n"; } // end loop over symtab entries diff --git a/src/superc/cdesugarer/desugarer.y b/src/superc/cdesugarer/desugarer.y index bbe0e848..a06fdce2 100644 --- a/src/superc/cdesugarer/desugarer.y +++ b/src/superc/cdesugarer/desugarer.y @@ -11043,11 +11043,17 @@ public String printMain(CContext scope, PresenceCondition pc) { ret += emitError("main illegally defined") + ";\n"; } else { NamedFunctionT mainMethod = (NamedFunctionT) entry.getData().getValue(); - ret += "return " + mainMethod.getName() + "("; + if (mainMethod.getResult().isInteger()) { + ret += "return "; + } + ret += mainMethod.getName() + "("; if (mainMethod.getParameters().size() == 2) { ret += "argc, argv"; } - ret += ");"; + ret += ");\n"; + if (!mainMethod.getResult().isInteger()) { + ret += "return 0;\n"; + } } // end test of symtab entry type ret += "}\n"; } // end loop over symtab entries From 169605fee3efcec3b614a6049c42c61cb60e0a2a Mon Sep 17 00:00:00 2001 From: pattersonz Date: Tue, 20 Sep 2022 12:58:43 -0500 Subject: [PATCH 20/77] added more line numbers --- src/superc/cdesugarer/CActions.java | 29 ++++++++++++++++++++--------- src/superc/cdesugarer/desugarer.y | 29 ++++++++++++++++++++--------- 2 files changed, 40 insertions(+), 18 deletions(-) diff --git a/src/superc/cdesugarer/CActions.java b/src/superc/cdesugarer/CActions.java index 62874111..c1a57055 100644 --- a/src/superc/cdesugarer/CActions.java +++ b/src/superc/cdesugarer/CActions.java @@ -4683,13 +4683,15 @@ public Object action(int production, Subparser subparser, Object value) { case 355: { + LineNumbers lBraceLN = new LineNumbers((Syntax)getNodeAt(subparser,5)); + LineNumbers rBraceLN = new LineNumbers((Syntax)getNodeAt(subparser,1)); PresenceCondition pc = subparser.getPresenceCondition(); CContext scope = ((CContext) subparser.scope); List> body = (List>) getTransformationValue(subparser, 3); StringBuilder valuesb = new StringBuilder(); DeclarationOrStatementValue dsv = new DeclarationOrStatementValue(""); - dsv.setChildrenBlock("{",body,"}"); + dsv.setChildrenBlock("{"+lBraceLN.getComment(),body,"}"+rBraceLN.getComment()); setTransformationValue(value, dsv); } @@ -4856,7 +4858,7 @@ public Object action(int production, Subparser subparser, Object value) { // should not violate mutual-exclusion in the multiverse // TODO: use dce and other optimizations to remove superfluous __static_type_error calls // since desugarOps can't have empty multiverses we need to add error entries - // so here we should purge the errorCond from the string multiverse before appending + // so here we should purge the errorCond from the string multiverse before appending todoReminder("add emitError back to ExpressionStatement once type checking is done"); if (errorCond.isNotFalse()) { expr = expr.filter(errorCond.not()); @@ -4887,7 +4889,7 @@ public Object action(int production, Subparser subparser, Object value) { todoReminder("check the type of the conditional expression SelectionStatement (1)"); PresenceCondition pc = subparser.getPresenceCondition(); ExpressionValue exprval = getCompleteNodeExpressionValue(subparser, 3, pc); - System.err.println(exprval); + System.err.println(exprval); Syntax ifsyn = (getSyntaxMV(subparser, 5,pc)).get(0).getData(); String ifstr = ifsyn.getTokenText(); String lparenstr = (getSyntaxMV(subparser, 4,pc)).get(0).getData().getTokenText(); @@ -4935,6 +4937,8 @@ public Object action(int production, Subparser subparser, Object value) { LineNumbers lw = new LineNumbers(ifsyn, rparensyn); Multiverse ifbranchmv = getCompleteNodeMultiverseValue(subparser, 3, pc); String elsestr = (getSyntaxMV(subparser, 2,pc)).get(0).getData().getTokenText(); + LineNumbers elw = new LineNumbers((getSyntaxMV(subparser, 2,pc)).get(0).getData()); + elsestr += elw.getComment(); Multiverse elsebranchmv = getCompleteNodeMultiverseValue(subparser, 1, pc); String errorstmt = String.format("%s;", emitError("invalid type found in ifelse statement")); @@ -4949,7 +4953,7 @@ public Object action(int production, Subparser subparser, Object value) { Multiverse dsv = DesugarOps.StringToDSV.transform(appendmv); for (Element d : dsv) { - d.getData().setChildrenElse(ifbranchmv,elsebranchmv); + d.getData().setChildrenElse(ifbranchmv,elsestr,elsebranchmv); } PresenceCondition invalidCond = exprval.invalidTypeCondition(pc); @@ -5119,10 +5123,10 @@ public Object action(int production, Subparser subparser, Object value) { ExpressionValue initval = getCompleteNodeExpressionValue(subparser, 7, pc); String semi1 = ";"; ExpressionValue testval = getCompleteNodeExpressionValue(subparser, 5, pc); - String semi2 = ";"; + String semi2 = ";"; ExpressionValue updateval = getCompleteNodeExpressionValue(subparser, 3, pc); - System.err.println(updateval); - Syntax rparensyn = (getSyntaxMV(subparser, 2,pc)).get(0).getData(); + System.err.println(updateval); + Syntax rparensyn = (getSyntaxMV(subparser, 2,pc)).get(0).getData(); String rparen = rparensyn.getTokenText(); LineNumbers lw = new LineNumbers(forsyn,rparensyn); @@ -10106,6 +10110,7 @@ public static class DeclarationOrStatementValue implements Copyable{ private List switchChildren; private String childPrepend; private boolean isElse; + private String elseString; private boolean isDo; private String childAppend; private boolean isDecl; @@ -10122,6 +10127,7 @@ public DeclarationOrStatementValue() { children = null; switchChildren = null; isElse = false; + elseString = "else"; isDo = false; isDecl = false; isEmpty = false; @@ -10142,6 +10148,7 @@ public DeclarationOrStatementValue(String x) { children = null; switchChildren = null; isElse = false; + elseString = "else"; isDo = false; isDecl = false; isLabel = false; @@ -10159,6 +10166,7 @@ public DeclarationOrStatementValue(DeclarationOrStatementValue x) { children = x.children; switchChildren = x.switchChildren; isElse = x.isElse; + elseString = x.elseString; isDo = x.isDo; isDecl = x.isDecl; isLabel = x.isLabel; @@ -10199,6 +10207,7 @@ public DeclarationOrStatementValue deepCopy() { d.switchChildren = null; } d.isElse = isElse; + d.elseString = elseString; d.isDo = isDo; d.isDecl = isDecl; d.isLabel = isLabel; @@ -10251,8 +10260,9 @@ public void setSwitchChildrenBlock(String p, List c isEmpty = false; } - public void setChildrenElse(Multiverse a,Multiverse b) { + public void setChildrenElse(Multiverse a, String elseStr, Multiverse b) { isElse = true; + elseString = elseStr; children = new LinkedList>(); children.add(a); children.add(b); @@ -10378,7 +10388,8 @@ public String getString(PresenceCondition p, CActions ca) { } } ret += "}\n"; - ret += "else\n{\n"; + ret += elseString; + ret += "\n{\n"; for (Element e : children.get(1)) { if (e.getCondition().and(p).isNotFalse()) { if (e.getCondition().is(p) || e.getData().isDecl) { diff --git a/src/superc/cdesugarer/desugarer.y b/src/superc/cdesugarer/desugarer.y index a06fdce2..de34f748 100644 --- a/src/superc/cdesugarer/desugarer.y +++ b/src/superc/cdesugarer/desugarer.y @@ -4757,13 +4757,15 @@ SwitchLabeledStatementList: /** list, nomerge **/ // Multiverse> CompoundStatement: /** complete **/ /* ADDED */ // String LBRACE { ReenterScope(subparser); } CompoundStatementBody { ExitScope(subparser); } RBRACE { + LineNumbers lBraceLN = new LineNumbers((Syntax)getNodeAt(subparser,5)); + LineNumbers rBraceLN = new LineNumbers((Syntax)getNodeAt(subparser,1)); PresenceCondition pc = subparser.getPresenceCondition(); CContext scope = ((CContext) subparser.scope); List> body = (List>) getTransformationValue(subparser, 3); StringBuilder valuesb = new StringBuilder(); DeclarationOrStatementValue dsv = new DeclarationOrStatementValue(""); - dsv.setChildrenBlock("{",body,"}"); + dsv.setChildrenBlock("{"+lBraceLN.getComment(),body,"}"+rBraceLN.getComment()); setTransformationValue(value, dsv); } @@ -4952,7 +4954,7 @@ ExpressionStatement: /** complete **/ // Multiverse // should not violate mutual-exclusion in the multiverse // TODO: use dce and other optimizations to remove superfluous __static_type_error calls // since desugarOps can't have empty multiverses we need to add error entries - // so here we should purge the errorCond from the string multiverse before appending + // so here we should purge the errorCond from the string multiverse before appending todoReminder("add emitError back to ExpressionStatement once type checking is done"); if (errorCond.isNotFalse()) { expr = expr.filter(errorCond.not()); @@ -4986,7 +4988,7 @@ SelectionStatement: /** complete **/ // Multiverse todoReminder("check the type of the conditional expression SelectionStatement (1)"); PresenceCondition pc = subparser.getPresenceCondition(); ExpressionValue exprval = getCompleteNodeExpressionValue(subparser, 3, pc); - System.err.println(exprval); + System.err.println(exprval); Syntax ifsyn = (getSyntaxMV(subparser, 5,pc)).get(0).getData(); String ifstr = ifsyn.getTokenText(); String lparenstr = (getSyntaxMV(subparser, 4,pc)).get(0).getData().getTokenText(); @@ -5032,6 +5034,8 @@ SelectionStatement: /** complete **/ // Multiverse LineNumbers lw = new LineNumbers(ifsyn, rparensyn); Multiverse ifbranchmv = getCompleteNodeMultiverseValue(subparser, 3, pc); String elsestr = (getSyntaxMV(subparser, 2,pc)).get(0).getData().getTokenText(); + LineNumbers elw = new LineNumbers((getSyntaxMV(subparser, 2,pc)).get(0).getData()); + elsestr += elw.getComment(); Multiverse elsebranchmv = getCompleteNodeMultiverseValue(subparser, 1, pc); String errorstmt = String.format("%s;", emitError("invalid type found in ifelse statement")); @@ -5046,7 +5050,7 @@ SelectionStatement: /** complete **/ // Multiverse Multiverse dsv = DesugarOps.StringToDSV.transform(appendmv); for (Element d : dsv) { - d.getData().setChildrenElse(ifbranchmv,elsebranchmv); + d.getData().setChildrenElse(ifbranchmv,elsestr,elsebranchmv); } PresenceCondition invalidCond = exprval.invalidTypeCondition(pc); @@ -5212,10 +5216,10 @@ IterationStatement: /** complete **/ // Multiverse ExpressionValue initval = getCompleteNodeExpressionValue(subparser, 7, pc); String semi1 = ";"; ExpressionValue testval = getCompleteNodeExpressionValue(subparser, 5, pc); - String semi2 = ";"; + String semi2 = ";"; ExpressionValue updateval = getCompleteNodeExpressionValue(subparser, 3, pc); - System.err.println(updateval); - Syntax rparensyn = (getSyntaxMV(subparser, 2,pc)).get(0).getData(); + System.err.println(updateval); + Syntax rparensyn = (getSyntaxMV(subparser, 2,pc)).get(0).getData(); String rparen = rparensyn.getTokenText(); LineNumbers lw = new LineNumbers(forsyn,rparensyn); @@ -9968,6 +9972,7 @@ public static class DeclarationOrStatementValue implements Copyable{ private List switchChildren; private String childPrepend; private boolean isElse; + private String elseString; private boolean isDo; private String childAppend; private boolean isDecl; @@ -9984,6 +9989,7 @@ public static class DeclarationOrStatementValue implements Copyable{ children = null; switchChildren = null; isElse = false; + elseString = "else"; isDo = false; isDecl = false; isEmpty = false; @@ -10004,6 +10010,7 @@ public static class DeclarationOrStatementValue implements Copyable{ children = null; switchChildren = null; isElse = false; + elseString = "else"; isDo = false; isDecl = false; isLabel = false; @@ -10021,6 +10028,7 @@ public static class DeclarationOrStatementValue implements Copyable{ children = x.children; switchChildren = x.switchChildren; isElse = x.isElse; + elseString = x.elseString; isDo = x.isDo; isDecl = x.isDecl; isLabel = x.isLabel; @@ -10061,6 +10069,7 @@ public static class DeclarationOrStatementValue implements Copyable{ d.switchChildren = null; } d.isElse = isElse; + d.elseString = elseString; d.isDo = isDo; d.isDecl = isDecl; d.isLabel = isLabel; @@ -10113,8 +10122,9 @@ public static class DeclarationOrStatementValue implements Copyable{ isEmpty = false; } - public void setChildrenElse(Multiverse a,Multiverse b) { + public void setChildrenElse(Multiverse a, String elseStr, Multiverse b) { isElse = true; + elseString = elseStr; children = new LinkedList>(); children.add(a); children.add(b); @@ -10240,7 +10250,8 @@ public static class DeclarationOrStatementValue implements Copyable{ } } ret += "}\n"; - ret += "else\n{\n"; + ret += elseString; + ret += "\n{\n"; for (Element e : children.get(1)) { if (e.getCondition().and(p).isNotFalse()) { if (e.getCondition().is(p) || e.getData().isDecl) { From 8c3c6a33edbacf0c03f770f4baf31f23197595b8 Mon Sep 17 00:00:00 2001 From: pattersonz Date: Wed, 28 Sep 2022 20:59:34 -0500 Subject: [PATCH 21/77] updated keep-mem --- src/superc/SugarC.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/superc/SugarC.java b/src/superc/SugarC.java index 7623da23..b0edaf9d 100644 --- a/src/superc/SugarC.java +++ b/src/superc/SugarC.java @@ -559,6 +559,10 @@ public Node parse(Reader in, File file) throws IOException, ParseException { // emit headers System.out.print("#include \n"); + if (runtime.test("keep-mem")) { + System.out.print("#include \n"); + } + System.out.print("\n"); // emit extern declarations for desugaring runtime. From e7b95bcf984398e477b8218e8acbb6b16ac17a82 Mon Sep 17 00:00:00 2001 From: pattersonz Date: Thu, 29 Sep 2022 14:48:55 -0500 Subject: [PATCH 22/77] updated grabbing token text and line number results --- .../varBugs/APACHE-0900800fbab.report | 7 +- .../varBugs/APACHE-0ddfa412ee9.report | 7 +- .../varBugs/APACHE-1a3c8e3d840.report | 14 +- .../varBugs/APACHE-1b48bb3c1af.report | 26 +- .../varBugs/APACHE-1f46088b38d.report | 7 +- .../varBugs/APACHE-2a6cbfa00e0.report | 30 +- .../varBugs/APACHE-3407eccc321.report | 7 +- .../varBugs/APACHE-35ae2e259e4.report | 86 +- .../varBugs/APACHE-4202d5fee3e.report | 7 +- .../varBugs/APACHE-4945115b2e7.report | 7 +- .../varBugs/APACHE-56d9881993f.report | 7 +- .../varBugs/APACHE-581635e28f1.report | 7 +- .../varBugs/APACHE-6338509eb37.report | 7 +- .../varBugs/APACHE-664e3aac6dd.report | 7 +- .../varBugs/APACHE-9327311d30f.report | 7 +- .../varBugs/APACHE-97ecbec1237.report | 7 +- .../varBugs/APACHE-bbeb0516cf0.report | 7 +- .../varBugs/APACHE-c76df14dfb4.report | 20 +- .../varBugs/APACHE-d0040a07aec.report | 7 +- .../varBugs/APACHE-d05e574ec26.report | 44 +- .../varBugs/APACHE-dbafef17dd1.report | 7 +- .../cpp_testsuite/varBugs/APACHE-test.report | 7 +- .../varBugs/APACHE/0900800fbab.clangres | 1 + .../varBugs/APACHE/0900800fbab.desugared.c | 17 +- .../APACHE/0900800fbab.desugared.clangres | 1 + .../varBugs/APACHE/0ddfa412ee9.clangres | 1 + .../varBugs/APACHE/0ddfa412ee9.desugared.c | 21 +- .../APACHE/0ddfa412ee9.desugared.clangres | 1 + .../varBugs/APACHE/1a3c8e3d840.clangres | 5 +- .../varBugs/APACHE/1a3c8e3d840.desugared.c | 81 +- .../APACHE/1a3c8e3d840.desugared.clangres | 8 +- .../varBugs/APACHE/1b48bb3c1af.clangres | 5 +- .../varBugs/APACHE/1b48bb3c1af.desugared.c | 29 +- .../APACHE/1b48bb3c1af.desugared.clangres | 11 +- .../varBugs/APACHE/1f46088b38d.clangres | 5 +- .../varBugs/APACHE/1f46088b38d.desugared.c | 17 +- .../APACHE/1f46088b38d.desugared.clangres | 1 + .../varBugs/APACHE/2a6cbfa00e0.clangres | 5 +- .../varBugs/APACHE/2a6cbfa00e0.desugared.c | 109 +- .../APACHE/2a6cbfa00e0.desugared.clangres | 8 +- .../APACHE/2a6cbfa00e0.desugared.inferres | 14 +- .../varBugs/APACHE/3407eccc321.clangres | 1 + .../varBugs/APACHE/3407eccc321.desugared.c | 99 +- .../APACHE/3407eccc321.desugared.clangres | 1 + .../varBugs/APACHE/35ae2e259e4.clangres | 6 +- .../varBugs/APACHE/35ae2e259e4.desugared.c | 143 +- .../APACHE/35ae2e259e4.desugared.clangres | 32 +- .../APACHE/35ae2e259e4.desugared.inferres | 58 +- .../varBugs/APACHE/4202d5fee3e.clangres | 9 +- .../varBugs/APACHE/4202d5fee3e.desugared.c | 17 +- .../APACHE/4202d5fee3e.desugared.clangres | 1 + .../varBugs/APACHE/4945115b2e7.clangres | 1 + .../varBugs/APACHE/4945115b2e7.desugared.c | 209 +-- .../APACHE/4945115b2e7.desugared.clangres | 1 + .../varBugs/APACHE/56d9881993f.clangres | 1 + .../varBugs/APACHE/56d9881993f.desugared.c | 13 +- .../APACHE/56d9881993f.desugared.clangres | 1 + .../varBugs/APACHE/581635e28f1.clangres | 5 +- .../varBugs/APACHE/581635e28f1.desugared.c | 9 +- .../APACHE/581635e28f1.desugared.clangres | 1 + .../varBugs/APACHE/6338509eb37.clangres | 5 +- .../varBugs/APACHE/6338509eb37.desugared.c | 13 +- .../APACHE/6338509eb37.desugared.clangres | 1 + .../varBugs/APACHE/664e3aac6dd.clangres | 1 + .../varBugs/APACHE/664e3aac6dd.desugared.c | 105 +- .../APACHE/664e3aac6dd.desugared.clangres | 1 + .../varBugs/APACHE/9327311d30f.clangres | 1 + .../varBugs/APACHE/9327311d30f.desugared.c | 17 +- .../APACHE/9327311d30f.desugared.clangres | 1 + .../varBugs/APACHE/97ecbec1237.clangres | 1 + .../varBugs/APACHE/97ecbec1237.desugared.c | 107 +- .../APACHE/97ecbec1237.desugared.clangres | 1 + .../varBugs/APACHE/b833f064550.clangres | 1 + .../varBugs/APACHE/b833f064550.desugared.c | 1464 +++++++++++++++ .../APACHE/b833f064550.desugared.clangres | 1 + .../APACHE/b833f064550.desugared.inferres | 2 + .../varBugs/APACHE/bbeb0516cf0.clangres | 1 + .../varBugs/APACHE/bbeb0516cf0.desugared.c | 103 +- .../APACHE/bbeb0516cf0.desugared.clangres | 1 + .../varBugs/APACHE/c76df14dfb4.clangres | 6 +- .../varBugs/APACHE/c76df14dfb4.desugared.c | 157 +- .../APACHE/c76df14dfb4.desugared.clangres | 14 +- .../varBugs/APACHE/d0040a07aec.clangres | 12 +- .../varBugs/APACHE/d0040a07aec.desugared.c | 93 +- .../APACHE/d0040a07aec.desugared.clangres | 1 + .../varBugs/APACHE/d05e574ec26.clangres | 1 + .../varBugs/APACHE/d05e574ec26.desugared.c | 93 +- .../APACHE/d05e574ec26.desugared.clangres | 38 +- .../varBugs/APACHE/dbafef17dd1.clangres | 1 + .../varBugs/APACHE/dbafef17dd1.desugared.c | 107 +- .../APACHE/dbafef17dd1.desugared.clangres | 1 + .../varBugs/APACHE/test.clangres | 5 +- .../varBugs/APACHE/test.desugared.c | 9 +- .../varBugs/APACHE/test.desugared.clangres | 1 + .../varBugs/BUSYBOX-0301ffab3d9.report | 11 +- .../varBugs/BUSYBOX-061fd0a353e.report | 43 +- .../varBugs/BUSYBOX-192c35f6eb2.report | 7 +- .../varBugs/BUSYBOX-199501f2a00.report | 15 +- .../varBugs/BUSYBOX-1b487ea8a69.report | 23 +- .../varBugs/BUSYBOX-2631486f1bf.report | 88 +- .../varBugs/BUSYBOX-5275b1e49f6.report | 47 +- .../varBugs/BUSYBOX-5cd6461b6fb.report | 7 +- .../varBugs/BUSYBOX-b273d665181.report | 32 +- .../varBugs/BUSYBOX-b62bd7b261b.report | 68 +- .../varBugs/BUSYBOX-b7ebc61b54f.report | 7 +- .../varBugs/BUSYBOX-bc0ffc0e971.report | 91 +- .../varBugs/BUSYBOX-cc3f20b9bdf.report | 7 +- .../varBugs/BUSYBOX-cf1f2ace391.report | 7 +- .../varBugs/BUSYBOX-df7b6577c6a.report | 7 +- .../varBugs/BUSYBOX-ebee301c8b0.report | 14 +- .../varBugs/BUSYBOX-eef2317b9f5.report | 61 +- .../varBugs/BUSYBOX/0301ffab3d9.clangres | 1 + .../varBugs/BUSYBOX/0301ffab3d9.desugared.c | 21 +- .../BUSYBOX/0301ffab3d9.desugared.clangres | 5 +- .../varBugs/BUSYBOX/061fd0a353e.clangres | 11 +- .../varBugs/BUSYBOX/061fd0a353e.desugared.c | 135 +- .../BUSYBOX/061fd0a353e.desugared.clangres | 8 +- .../varBugs/BUSYBOX/192c35f6eb2.clangres | 1 + .../varBugs/BUSYBOX/192c35f6eb2.desugared.c | 33 +- .../BUSYBOX/192c35f6eb2.desugared.clangres | 1 + .../varBugs/BUSYBOX/199501f2a00.clangres | 5 +- .../varBugs/BUSYBOX/199501f2a00.desugared.c | 181 +- .../BUSYBOX/199501f2a00.desugared.clangres | 5 +- .../varBugs/BUSYBOX/1b487ea8a69.clangres | 1 + .../varBugs/BUSYBOX/1b487ea8a69.desugared.c | 137 +- .../BUSYBOX/1b487ea8a69.desugared.clangres | 8 +- .../varBugs/BUSYBOX/2631486f1bf.clangres | 5 +- .../varBugs/BUSYBOX/2631486f1bf.desugared.c | 195 +- .../BUSYBOX/2631486f1bf.desugared.clangres | 44 +- .../varBugs/BUSYBOX/5275b1e49f6.clangres | 5 +- .../varBugs/BUSYBOX/5275b1e49f6.desugared.c | 167 +- .../BUSYBOX/5275b1e49f6.desugared.clangres | 41 +- .../varBugs/BUSYBOX/5cd6461b6fb.clangres | 1 + .../varBugs/BUSYBOX/5cd6461b6fb.desugared.c | 125 +- .../BUSYBOX/5cd6461b6fb.desugared.clangres | 1 + .../varBugs/BUSYBOX/95755181b82.clangres | 11 +- .../varBugs/BUSYBOX/95755181b82.desugared.c | 257 +-- .../BUSYBOX/95755181b82.desugared.clangres | 26 +- .../varBugs/BUSYBOX/b273d665181.clangres | 1 + .../varBugs/BUSYBOX/b273d665181.desugared.c | 151 +- .../BUSYBOX/b273d665181.desugared.clangres | 17 +- .../varBugs/BUSYBOX/b62bd7b261b.clangres | 1 + .../varBugs/BUSYBOX/b62bd7b261b.desugared.c | 187 +- .../BUSYBOX/b62bd7b261b.desugared.clangres | 44 +- .../varBugs/BUSYBOX/b7ebc61b54f.clangres | 11 +- .../varBugs/BUSYBOX/b7ebc61b54f.desugared.c | 55 +- .../BUSYBOX/b7ebc61b54f.desugared.clangres | 1 + .../varBugs/BUSYBOX/bc0ffc0e971.clangres | 5 +- .../varBugs/BUSYBOX/bc0ffc0e971.desugared.c | 211 +-- .../BUSYBOX/bc0ffc0e971.desugared.clangres | 44 +- .../BUSYBOX/bc0ffc0e971.desugared.inferres | 40 +- .../varBugs/BUSYBOX/cc3f20b9bdf.desugared.c | 1 + .../BUSYBOX/cc3f20b9bdf.desugared.clangres | 1 + .../varBugs/BUSYBOX/cf1f2ace391.clangres | 1 + .../varBugs/BUSYBOX/cf1f2ace391.desugared.c | 53 +- .../BUSYBOX/cf1f2ace391.desugared.clangres | 1 + .../varBugs/BUSYBOX/df7b6577c6a.clangres | 1 + .../varBugs/BUSYBOX/df7b6577c6a.desugared.c | 37 +- .../BUSYBOX/df7b6577c6a.desugared.clangres | 1 + .../varBugs/BUSYBOX/ebee301c8b0.clangres | 6 +- .../varBugs/BUSYBOX/ebee301c8b0.desugared.c | 91 +- .../BUSYBOX/ebee301c8b0.desugared.clangres | 8 +- .../varBugs/BUSYBOX/eef2317b9f5.clangres | 8 +- .../varBugs/BUSYBOX/eef2317b9f5.desugared.c | 85 +- .../BUSYBOX/eef2317b9f5.desugared.clangres | 23 +- .../BUSYBOX/eef2317b9f5.desugared.inferres | 28 +- .../varBugs/LINUX-0988c4c7fb5.report | 7 +- .../varBugs/LINUX-0dc77b6dabe.report | 18 +- .../varBugs/LINUX-0f8f8094d28.report | 7 +- .../varBugs/LINUX-1c17e4d4437.report | 7 +- .../varBugs/LINUX-1f758a4341a.report | 7 +- .../varBugs/LINUX-208d89843b7.report | 7 +- .../varBugs/LINUX-218ad12f42e.report | 27 +- .../varBugs/LINUX-221ac329e93.report | 46 +- .../varBugs/LINUX-242f1a34377.report | 7 +- .../varBugs/LINUX-2f02c15a5d9.report | 7 +- .../varBugs/LINUX-30e053248da.report | 28 +- .../varBugs/LINUX-36855dcfc98.report | 16 +- .../varBugs/LINUX-472a474c663.report | 11 +- .../varBugs/LINUX-51fd36f3fad.report | 17 +- .../varBugs/LINUX-60e233a5660.report | 7 +- .../varBugs/LINUX-6252547b8a7.report | 47 +- .../varBugs/LINUX-63878acfafb.report | 11 +- .../varBugs/LINUX-6515e48932c.report | 7 +- .../varBugs/LINUX-657e9649e74.report | 7 +- .../varBugs/LINUX-66517915e09.report | 64 +- .../varBugs/LINUX-68bb91baa0.report | 7 +- .../varBugs/LINUX-6e2b75740be.report | 26 +- .../varBugs/LINUX-76baeebf7df.report | 14 +- .../varBugs/LINUX-7acf6cd80b2.report | 44 +- .../varBugs/LINUX-7c6048b7c83.report | 7 +- .../varBugs/LINUX-809e660f438.report | 7 +- .../varBugs/LINUX-8c8296223f3.report | 19 +- .../varBugs/LINUX-91ea8207168.report | 7 +- .../varBugs/LINUX-ae249b5fa27.report | 14 +- .../varBugs/LINUX-bc8cec0dff0.report | 18 +- .../varBugs/LINUX-c708c57e247.report | 11 +- .../varBugs/LINUX-d530db0db90.report | 7 +- .../varBugs/LINUX-d549f55f2e1.report | 7 +- .../varBugs/LINUX-d6c7e113959.report | 7 +- .../varBugs/LINUX-d7e9711760a.report | 11 +- .../varBugs/LINUX-e1fbd9210d5.report | 7 +- .../varBugs/LINUX-e39363a9def.report | 20 +- .../varBugs/LINUX-e67bc51e574.report | 7 +- .../varBugs/LINUX-eb91f1d0a53.report | 7 +- .../varBugs/LINUX-ee3f34e8572.report | 14 +- .../varBugs/LINUX-f3d83e24154.report | 7 +- .../varBugs/LINUX-f48ec1d7885.report | 7 +- .../varBugs/LINUX-f7ab9b407b3.report | 7 +- .../varBugs/LINUX/0988c4c7fb5.clangres | 1 + .../varBugs/LINUX/0988c4c7fb5.desugared.c | 37 +- .../LINUX/0988c4c7fb5.desugared.clangres | 1 + .../varBugs/LINUX/0dc77b6dabe.clangres | 6 +- .../varBugs/LINUX/0dc77b6dabe.desugared.c | 53 +- .../LINUX/0dc77b6dabe.desugared.clangres | 1 + .../LINUX/0dc77b6dabe.desugared.inferres | 10 +- .../varBugs/LINUX/0f8f8094d28.clangres | 12 +- .../varBugs/LINUX/0f8f8094d28.desugared.c | 25 +- .../LINUX/0f8f8094d28.desugared.clangres | 1 + .../varBugs/LINUX/1c17e4d4437.clangres | 1 + .../varBugs/LINUX/1c17e4d4437.desugared.c | 21 +- .../LINUX/1c17e4d4437.desugared.clangres | 1 + .../varBugs/LINUX/1f758a4341a.clangres | 1 + .../varBugs/LINUX/1f758a4341a.desugared.c | 21 +- .../LINUX/1f758a4341a.desugared.clangres | 1 + .../varBugs/LINUX/208d89843b7.clangres | 1 + .../varBugs/LINUX/208d89843b7.desugared.c | 117 +- .../LINUX/208d89843b7.desugared.clangres | 1 + .../varBugs/LINUX/218ad12f42e.clangres | 1 + .../varBugs/LINUX/218ad12f42e.desugared.c | 27 +- .../LINUX/218ad12f42e.desugared.clangres | 1 + .../LINUX/218ad12f42e.desugared.inferres | 22 +- .../varBugs/LINUX/221ac329e93.clangres | 1 + .../varBugs/LINUX/221ac329e93.desugared.c | 149 +- .../LINUX/221ac329e93.desugared.clangres | 1 + .../LINUX/221ac329e93.desugared.inferres | 48 +- .../varBugs/LINUX/242f1a34377.clangres | 1 + .../varBugs/LINUX/242f1a34377.desugared.c | 17 +- .../LINUX/242f1a34377.desugared.clangres | 1 + .../varBugs/LINUX/2f02c15a5d9.clangres | 1 + .../varBugs/LINUX/2f02c15a5d9.desugared.c | 17 +- .../LINUX/2f02c15a5d9.desugared.clangres | 1 + .../varBugs/LINUX/30e053248da.clangres | 8 +- .../varBugs/LINUX/30e053248da.desugared.c | 41 +- .../LINUX/30e053248da.desugared.clangres | 11 +- .../varBugs/LINUX/36855dcfc98.clangres | 5 +- .../varBugs/LINUX/36855dcfc98.desugared.c | 9 +- .../LINUX/36855dcfc98.desugared.clangres | 5 +- .../varBugs/LINUX/472a474c663.clangres | 1 + .../varBugs/LINUX/472a474c663.desugared.c | 33 +- .../LINUX/472a474c663.desugared.clangres | 5 +- .../varBugs/LINUX/51fd36f3fad.clangres | 1 + .../varBugs/LINUX/51fd36f3fad.desugared.c | 57 +- .../LINUX/51fd36f3fad.desugared.clangres | 11 +- .../varBugs/LINUX/60e233a5660.clangres | 6 +- .../varBugs/LINUX/60e233a5660.desugared.c | 17 +- .../LINUX/60e233a5660.desugared.clangres | 1 + .../varBugs/LINUX/6252547b8a7.clangres | 1 + .../varBugs/LINUX/6252547b8a7.desugared.c | 21 +- .../LINUX/6252547b8a7.desugared.clangres | 8 +- .../varBugs/LINUX/63878acfafb.clangres | 6 +- .../varBugs/LINUX/63878acfafb.desugared.c | 57 +- .../LINUX/63878acfafb.desugared.clangres | 5 +- .../varBugs/LINUX/6515e48932c.clangres | 6 +- .../varBugs/LINUX/6515e48932c.desugared.c | 17 +- .../LINUX/6515e48932c.desugared.clangres | 1 + .../varBugs/LINUX/657e9649e74.clangres | 1 + .../varBugs/LINUX/657e9649e74.desugared.c | 57 +- .../LINUX/657e9649e74.desugared.clangres | 1 + .../varBugs/LINUX/66517915e09.clangres | 8 +- .../varBugs/LINUX/66517915e09.desugared.c | 17 +- .../LINUX/66517915e09.desugared.clangres | 8 +- .../varBugs/LINUX/68bb91baa0.clangres | 6 +- .../varBugs/LINUX/68bb91baa0.desugared.c | 17 +- .../LINUX/68bb91baa0.desugared.clangres | 1 + .../varBugs/LINUX/6e2b75740be.clangres | 6 +- .../varBugs/LINUX/6e2b75740be.desugared.c | 25 +- .../LINUX/6e2b75740be.desugared.clangres | 20 +- .../varBugs/LINUX/76baeebf7df.clangres | 1 + .../varBugs/LINUX/76baeebf7df.desugared.c | 65 +- .../LINUX/76baeebf7df.desugared.clangres | 8 +- .../varBugs/LINUX/7acf6cd80b2.clangres | 11 +- .../varBugs/LINUX/7acf6cd80b2.desugared.c | 45 +- .../LINUX/7acf6cd80b2.desugared.clangres | 11 +- .../varBugs/LINUX/7c6048b7c83.clangres | 6 +- .../varBugs/LINUX/7c6048b7c83.desugared.c | 17 +- .../LINUX/7c6048b7c83.desugared.clangres | 1 + .../varBugs/LINUX/809e660f438.clangres | 1 + .../varBugs/LINUX/809e660f438.desugared.c | 13 +- .../LINUX/809e660f438.desugared.clangres | 1 + .../varBugs/LINUX/8c8296223f3.clangres | 1 + .../varBugs/LINUX/8c8296223f3.desugared.c | 75 +- .../LINUX/8c8296223f3.desugared.clangres | 1 + .../LINUX/8c8296223f3.desugared.inferres | 12 +- .../varBugs/LINUX/91ea8207168.clangres | 1 + .../varBugs/LINUX/91ea8207168.desugared.c | 37 +- .../LINUX/91ea8207168.desugared.clangres | 1 + .../varBugs/LINUX/ae249b5fa27.clangres | 1 + .../varBugs/LINUX/ae249b5fa27.desugared.c | 37 +- .../LINUX/ae249b5fa27.desugared.clangres | 8 +- .../varBugs/LINUX/bc8cec0dff0.clangres | 1 + .../varBugs/LINUX/bc8cec0dff0.desugared.c | 37 +- .../LINUX/bc8cec0dff0.desugared.clangres | 1 + .../LINUX/bc8cec0dff0.desugared.inferres | 10 +- .../varBugs/LINUX/c708c57e247.clangres | 1 + .../varBugs/LINUX/c708c57e247.desugared.c | 17 +- .../LINUX/c708c57e247.desugared.clangres | 5 +- .../varBugs/LINUX/d530db0db90.clangres | 1 + .../varBugs/LINUX/d530db0db90.desugared.c | 63 +- .../LINUX/d530db0db90.desugared.clangres | 1 + .../varBugs/LINUX/d549f55f2e1.clangres | 6 +- .../varBugs/LINUX/d549f55f2e1.desugared.c | 81 +- .../LINUX/d549f55f2e1.desugared.clangres | 1 + .../varBugs/LINUX/d6c7e113959.clangres | 1 + .../varBugs/LINUX/d6c7e113959.desugared.c | 21 +- .../LINUX/d6c7e113959.desugared.clangres | 1 + .../varBugs/LINUX/d7e9711760a.clangres | 1 + .../varBugs/LINUX/d7e9711760a.desugared.c | 79 +- .../LINUX/d7e9711760a.desugared.clangres | 5 +- .../varBugs/LINUX/e1fbd9210d5.clangres | 1 + .../varBugs/LINUX/e1fbd9210d5.desugared.c | 21 +- .../LINUX/e1fbd9210d5.desugared.clangres | 1 + .../varBugs/LINUX/e39363a9def.clangres | 1 + .../varBugs/LINUX/e39363a9def.desugared.c | 17 +- .../LINUX/e39363a9def.desugared.clangres | 5 +- .../varBugs/LINUX/e67bc51e574.clangres | 8 +- .../varBugs/LINUX/e67bc51e574.desugared.c | 13 +- .../LINUX/e67bc51e574.desugared.clangres | 1 + .../varBugs/LINUX/eb91f1d0a53.clangres | 6 +- .../varBugs/LINUX/eb91f1d0a53.desugared.c | 93 +- .../LINUX/eb91f1d0a53.desugared.clangres | 1 + .../varBugs/LINUX/ee3f34e8572.clangres | 6 +- .../varBugs/LINUX/ee3f34e8572.desugared.c | 127 +- .../LINUX/ee3f34e8572.desugared.clangres | 8 +- .../varBugs/LINUX/f3d83e24154.clangres | 6 +- .../varBugs/LINUX/f3d83e24154.desugared.c | 21 +- .../LINUX/f3d83e24154.desugared.clangres | 1 + .../varBugs/LINUX/f48ec1d7885.clangres | 5 +- .../varBugs/LINUX/f48ec1d7885.desugared.c | 13 +- .../LINUX/f48ec1d7885.desugared.clangres | 1 + .../varBugs/LINUX/f7ab9b407b3.clangres | 1 + .../varBugs/LINUX/f7ab9b407b3.desugared.c | 73 +- .../LINUX/f7ab9b407b3.desugared.clangres | 1 + .../varBugs/MARLIN-2d22902d080.report | 7 +- .../varBugs/MARLIN-2db384a21d6.report | 7 +- .../varBugs/MARLIN-30248214c7f.report | 7 +- .../varBugs/MARLIN-31873ec707d.report | 7 +- .../varBugs/MARLIN-7336e6df070.report | 7 +- .../varBugs/MARLIN-831016b09f7.report | 11 +- .../varBugs/MARLIN-8c4377dd635.report | 31 +- .../varBugs/MARLIN-a7fc1f83c81.report | 17 +- .../varBugs/MARLIN-b8e79dce897.report | 7 +- .../varBugs/MARLIN-e30bfedce4d.report | 19 +- .../varBugs/MARLIN-f87c80889fe.report | 7 +- .../varBugs/MARLIN-fc3c76fc164.report | 7 +- .../varBugs/MARLIN-fdac8f6cece.report | 7 +- .../varBugs/MARLIN/2d22902d080.clangres | 1 + .../varBugs/MARLIN/2d22902d080.desugared.c | 13 +- .../MARLIN/2d22902d080.desugared.clangres | 1 + .../varBugs/MARLIN/2db384a21d6.clangres | 1 + .../varBugs/MARLIN/2db384a21d6.desugared.c | 29 +- .../MARLIN/2db384a21d6.desugared.clangres | 1 + .../varBugs/MARLIN/30248214c7f.clangres | 6 +- .../varBugs/MARLIN/30248214c7f.desugared.c | 45 +- .../MARLIN/30248214c7f.desugared.clangres | 1 + .../varBugs/MARLIN/31873ec707d.clangres | 1 + .../varBugs/MARLIN/31873ec707d.desugared.c | 5 +- .../MARLIN/31873ec707d.desugared.clangres | 1 + .../varBugs/MARLIN/53be0f3399e.clangres | 10 +- .../varBugs/MARLIN/53be0f3399e.desugared.c | 807 ++++---- .../MARLIN/53be0f3399e.desugared.clangres | 8 +- .../varBugs/MARLIN/7336e6df070.clangres | 9 +- .../varBugs/MARLIN/7336e6df070.desugared.c | 9 +- .../MARLIN/7336e6df070.desugared.clangres | 1 + .../varBugs/MARLIN/831016b09f7.clangres | 1 + .../varBugs/MARLIN/831016b09f7.desugared.c | 21 +- .../MARLIN/831016b09f7.desugared.clangres | 5 +- .../varBugs/MARLIN/8c4377dd635.clangres | 5 +- .../varBugs/MARLIN/8c4377dd635.desugared.c | 25 +- .../MARLIN/8c4377dd635.desugared.clangres | 8 +- .../varBugs/MARLIN/a7fc1f83c81.clangres | 1 + .../varBugs/MARLIN/a7fc1f83c81.desugared.c | 13 +- .../MARLIN/a7fc1f83c81.desugared.clangres | 11 +- .../varBugs/MARLIN/b8e79dce897.clangres | 1 + .../varBugs/MARLIN/b8e79dce897.desugared.c | 41 +- .../MARLIN/b8e79dce897.desugared.clangres | 1 + .../varBugs/MARLIN/e30bfedce4d.clangres | 5 +- .../varBugs/MARLIN/e30bfedce4d.desugared.c | 13 +- .../MARLIN/e30bfedce4d.desugared.clangres | 5 +- .../varBugs/MARLIN/f87c80889fe.clangres | 1 + .../varBugs/MARLIN/f87c80889fe.desugared.c | 135 +- .../MARLIN/f87c80889fe.desugared.clangres | 1 + .../varBugs/MARLIN/fc3c76fc164.clangres | 6 +- .../varBugs/MARLIN/fc3c76fc164.desugared.c | 5 +- .../MARLIN/fc3c76fc164.desugared.clangres | 1 + .../varBugs/MARLIN/fdac8f6cece.clangres | 5 +- .../varBugs/MARLIN/fdac8f6cece.desugared.c | 9 +- .../MARLIN/fdac8f6cece.desugared.clangres | 1 + .../varBugs/infer-out/.infer_runstate.json | 1 + .../cpp_testsuite/varBugs/infer-out/bugs.txt | 1 + .../infer-out/config-impact-report.json | 1 + .../varBugs/infer-out/costs-report.json | 1 + fonda/cpp_testsuite/varBugs/infer-out/logs | 119 ++ .../varBugs/infer-out/report.json | 1 + .../varBugs/infer-out/report.txt | 0 .../varBugs/infer-out/results.db | Bin 0 -> 294912 bytes .../varBugs/infer-out/results.db-shm | Bin 0 -> 32768 bytes .../varBugs/infer-out/results.db-wal | Bin 0 -> 1901968 bytes .../tmp/clang_command_.tmp.e6a66f.txt | 11 + .../tmp/clang_command_.tmp.ea4558.txt | 67 + fonda/cpp_testsuite/varBugs/summaryTable.txt | 1646 ++--------------- src/superc/cdesugarer/CActions.java | 8 +- src/superc/cdesugarer/desugarer.y | 8 +- 413 files changed, 5617 insertions(+), 7237 deletions(-) create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/b833f064550.desugared.clangres create mode 100644 fonda/cpp_testsuite/varBugs/APACHE/b833f064550.desugared.inferres create mode 100644 fonda/cpp_testsuite/varBugs/infer-out/.infer_runstate.json create mode 100644 fonda/cpp_testsuite/varBugs/infer-out/bugs.txt create mode 100644 fonda/cpp_testsuite/varBugs/infer-out/config-impact-report.json create mode 100644 fonda/cpp_testsuite/varBugs/infer-out/costs-report.json create mode 100644 fonda/cpp_testsuite/varBugs/infer-out/logs create mode 100644 fonda/cpp_testsuite/varBugs/infer-out/report.json create mode 100644 fonda/cpp_testsuite/varBugs/infer-out/report.txt create mode 100644 fonda/cpp_testsuite/varBugs/infer-out/results.db create mode 100644 fonda/cpp_testsuite/varBugs/infer-out/results.db-shm create mode 100644 fonda/cpp_testsuite/varBugs/infer-out/results.db-wal create mode 100644 fonda/cpp_testsuite/varBugs/infer-out/tmp/clang_command_.tmp.e6a66f.txt create mode 100644 fonda/cpp_testsuite/varBugs/infer-out/tmp/clang_command_.tmp.ea4558.txt diff --git a/fonda/cpp_testsuite/varBugs/APACHE-0900800fbab.report b/fonda/cpp_testsuite/varBugs/APACHE-0900800fbab.report index 9b7b918c..946d2cd4 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE-0900800fbab.report +++ b/fonda/cpp_testsuite/varBugs/APACHE-0900800fbab.report @@ -6,9 +6,4 @@ Macros: [-DHAVE_SYSLOG=1 -UAPLOG_MAX_LOGLEVEL ] [-UHAVE_SYSLOG -DAPLOG_MAX_LOGLEVEL=1 ] [-DHAVE_SYSLOG=1 -DAPLOG_MAX_LOGLEVEL=1 ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/APACHE-0ddfa412ee9.report b/fonda/cpp_testsuite/varBugs/APACHE-0ddfa412ee9.report index 832bf90e..9a1c2c5b 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE-0ddfa412ee9.report +++ b/fonda/cpp_testsuite/varBugs/APACHE-0ddfa412ee9.report @@ -2,9 +2,4 @@ APACHE 0ddfa412ee9.c Macros: HAVE_TLS_ALPN [-UHAVE_TLS_ALPN ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/APACHE-1a3c8e3d840.report b/fonda/cpp_testsuite/varBugs/APACHE-1a3c8e3d840.report index d07185ce..95a9b6f1 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE-1a3c8e3d840.report +++ b/fonda/cpp_testsuite/varBugs/APACHE-1a3c8e3d840.report @@ -2,16 +2,4 @@ APACHE 1a3c8e3d840.c Macros: HAVE_TLSV1_X [-UHAVE_TLSV1_X ] -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.c:1332:2: warning: Value stored to '__thisopt_798' is never read [deadcode.DeadStores] - __thisopt_798 = ( 1 << 3 ) ; // L4:L13 - ^ ~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.c:1368:2: warning: Value stored to '__thisopt_798' is never read [deadcode.DeadStores] - __thisopt_798 = ( 1 << 3 ) ; // L4:L13 - ^ ~~~~~~~~~~ -2 warnings generated. -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/APACHE-1b48bb3c1af.report b/fonda/cpp_testsuite/varBugs/APACHE-1b48bb3c1af.report index 874c7351..2f9c7607 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE-1b48bb3c1af.report +++ b/fonda/cpp_testsuite/varBugs/APACHE-1b48bb3c1af.report @@ -6,28 +6,6 @@ Macros: [-DAPU_HAS_LDAP=1 -UAPR_HAS_SHARED_MEMORY ] [-UAPU_HAS_LDAP -DAPR_HAS_SHARED_MEMORY=1 ] [-DAPU_HAS_LDAP=1 -DAPR_HAS_SHARED_MEMORY=1 ] -clang :: 186 :: Line:14 - 1st function call argument is an uninitialized value [core.CallAndMessage] -infer :: 187 :: Line:14 +infer :: 24 :: Line:14 Uninitialized Value -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c:1427:2: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] - __apr_rmm_init_1093 ( __rmm_lock_1099 ) ; // L14 - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c:1430:2: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] - __apr_rmm_init_1094 ( __rmm_lock_1099 ) ; // L14 - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c:1433:2: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] - __apr_rmm_init_1095 ( __rmm_lock_1099 ) ; // L14 - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -3 warnings generated. -Desugared Infer Results: - - No issues found -Matches: - 186 has a match! -Unmatched ids: - None! -Matches: -Unmatched ids: - 187 +File Failed diff --git a/fonda/cpp_testsuite/varBugs/APACHE-1f46088b38d.report b/fonda/cpp_testsuite/varBugs/APACHE-1f46088b38d.report index 332e1077..9e57a60e 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE-1f46088b38d.report +++ b/fonda/cpp_testsuite/varBugs/APACHE-1f46088b38d.report @@ -2,9 +2,4 @@ APACHE 1f46088b38d.c Macros: SIGPIPE [-USIGPIPE ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/APACHE-2a6cbfa00e0.report b/fonda/cpp_testsuite/varBugs/APACHE-2a6cbfa00e0.report index 173a67f5..35c10e7c 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE-2a6cbfa00e0.report +++ b/fonda/cpp_testsuite/varBugs/APACHE-2a6cbfa00e0.report @@ -2,32 +2,4 @@ APACHE 2a6cbfa00e0.c Macros: SHARED_MODULE [-USHARED_MODULE ] -clang :: 184 :: Line:16 - Potential leak of memory pointed to by 'sc' [unix.Malloc] -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c:1569:5: warning: Potential leak of memory pointed to by '__sc_1084' [unix.Malloc] -if (__static_condition_default_1093) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c:1603:5: warning: Potential leak of memory pointed to by '__sc_1085' [unix.Malloc] -if (__static_condition_default_1098) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -2 warnings generated. -Desugared Infer Results: - -APACHE/2a6cbfa00e0.desugared.c:1600: error: Memory Leak - Memory dynamically allocated by `malloc` on line 1593 is not freed after the last access at line 1600, column 5. - 1598. - 1599. __static_type_error("type error") ; // L9 - 1600. if (__static_condition_default_1097) { - ^ - 1601. free ( __sc_1085 ) ; // L12 - 1602. } - - -Found 1 issue - Issue Type(ISSUED_TYPE_ID): # - Memory Leak(MEMORY_LEAK_C): 1 -Matches: -Unmatched ids: - 184 -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/APACHE-3407eccc321.report b/fonda/cpp_testsuite/varBugs/APACHE-3407eccc321.report index 149c1bb5..1b638147 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE-3407eccc321.report +++ b/fonda/cpp_testsuite/varBugs/APACHE-3407eccc321.report @@ -2,9 +2,4 @@ APACHE 3407eccc321.c Macros: __STDC_VERSION__ [-U__STDC_VERSION__ ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/APACHE-35ae2e259e4.report b/fonda/cpp_testsuite/varBugs/APACHE-35ae2e259e4.report index bcf2246e..59556762 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE-35ae2e259e4.report +++ b/fonda/cpp_testsuite/varBugs/APACHE-35ae2e259e4.report @@ -6,88 +6,4 @@ Macros: [-DHAVE_ECC=1 -Udefined ] [-UHAVE_ECC -Ddefined=1 ] [-DHAVE_ECC=1 -Ddefined=1 ] -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1373:17: warning: Dereference of undefined pointer value (loaded from variable '__eckey_798') [core.NullDereference] -* __eckey_798 = 30 ; // L12 - ~~~~~~~~~~~ ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1397:17: warning: Dereference of undefined pointer value (loaded from variable '__eckey_798') [core.NullDereference] -* __eckey_798 = 15 ; // L17 - ~~~~~~~~~~~ ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1403:5: warning: Potential leak of memory pointed to by '__eckey_798' [unix.Malloc] -if (__static_condition_default_809) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1442:17: warning: Dereference of undefined pointer value (loaded from variable '__eckey_798') [core.NullDereference] -* __eckey_798 = 30 ; // L12 - ~~~~~~~~~~~ ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1466:17: warning: Dereference of undefined pointer value (loaded from variable '__eckey_798') [core.NullDereference] -* __eckey_798 = 15 ; // L17 - ~~~~~~~~~~~ ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1472:5: warning: Potential leak of memory pointed to by '__eckey_798' [unix.Malloc] -if (__static_condition_default_818) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1496:2: warning: Value stored to '__eckey_798' is never read [deadcode.DeadStores] - __eckey_798 = malloc (sizeof(int)) ; // L10 - ^ ~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1499:2: warning: Value stored to '__eckey_798' is never read [deadcode.DeadStores] - __eckey_798 = malloc (sizeof(int)) ; // L10 - ^ ~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1501:5: warning: Potential leak of memory pointed to by '__eckey_798' [unix.Malloc] -if (__static_condition_default_823) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1501:5: warning: Potential leak of memory pointed to by '__eckey_798' [unix.Malloc] -if (__static_condition_default_823) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -10 warnings generated. -Desugared Infer Results: - -APACHE/35ae2e259e4.desugared.c:1366: error: Memory Leak - Memory dynamically allocated by `malloc` on line 1358 is not freed after the last access at line 1366, column 5. - 1364. if ( rand( ) % 2 )// L11 - 1365. { - 1366. if (__static_condition_default_806) { - ^ - 1367. - 1368. { - -APACHE/35ae2e259e4.desugared.c:1373: error: Memory Leak - Memory dynamically allocated by `malloc` on line 1358 is not freed after the last access at line 1373, column 1. - 1371. - 1372. - 1373. * __eckey_798 = 30 ; // L12 - ^ - 1374. } - 1375. } - -APACHE/35ae2e259e4.desugared.c:1397: error: Memory Leak - Memory dynamically allocated by `malloc` on line 1358 is not freed after the last access at line 1397, column 1. - 1395. - 1396. - 1397. * __eckey_798 = 15 ; // L17 - ^ - 1398. } - 1399. } - -APACHE/35ae2e259e4.desugared.c:1435: error: Memory Leak - Memory dynamically allocated by `malloc` on line 1427 is not freed after the last access at line 1435, column 5. - 1433. if ( rand( ) % 2 )// L11 - 1434. { - 1435. if (__static_condition_default_815) { - ^ - 1436. - 1437. { - -APACHE/35ae2e259e4.desugared.c:1442: error: Memory Leak - Memory dynamically allocated by `malloc` on line 1427 is not freed after the last access at line 1442, column 1. - 1440. - 1441. - 1442. * __eckey_798 = 30 ; // L12 - ^ - 1443. } - 1444. } - - -Found 8 issues (console output truncated to 5, see '/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/infer-out/report.txt' for the full list) - Issue Type(ISSUED_TYPE_ID): # - Memory Leak(MEMORY_LEAK_C): 8 -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/APACHE-4202d5fee3e.report b/fonda/cpp_testsuite/varBugs/APACHE-4202d5fee3e.report index ba5f4e94..5c7b44cd 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE-4202d5fee3e.report +++ b/fonda/cpp_testsuite/varBugs/APACHE-4202d5fee3e.report @@ -6,9 +6,4 @@ Macros: [-DAPU_HAS_LDAP=1 -UAPU_HAS_LDAP_NETSCAPE_SSL ] [-UAPU_HAS_LDAP -DAPU_HAS_LDAP_NETSCAPE_SSL=1 ] [-DAPU_HAS_LDAP=1 -DAPU_HAS_LDAP_NETSCAPE_SSL=1 ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/APACHE-4945115b2e7.report b/fonda/cpp_testsuite/varBugs/APACHE-4945115b2e7.report index 4b10b2f4..239bf3c2 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE-4945115b2e7.report +++ b/fonda/cpp_testsuite/varBugs/APACHE-4945115b2e7.report @@ -6,9 +6,4 @@ Macros: [-DDEBUG_CGI=1 -UOS2 ] [-UDEBUG_CGI -DOS2=1 ] [-DDEBUG_CGI=1 -DOS2=1 ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/APACHE-56d9881993f.report b/fonda/cpp_testsuite/varBugs/APACHE-56d9881993f.report index 499dbeec..f3911d84 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE-56d9881993f.report +++ b/fonda/cpp_testsuite/varBugs/APACHE-56d9881993f.report @@ -2,9 +2,4 @@ APACHE 56d9881993f.c Macros: APR_HAS_SENDFILE [-UAPR_HAS_SENDFILE ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/APACHE-581635e28f1.report b/fonda/cpp_testsuite/varBugs/APACHE-581635e28f1.report index 194655f8..fc1c846e 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE-581635e28f1.report +++ b/fonda/cpp_testsuite/varBugs/APACHE-581635e28f1.report @@ -2,9 +2,4 @@ APACHE 581635e28f1.c Macros: APR_HAVE_IPV6 [-UAPR_HAVE_IPV6 ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/APACHE-6338509eb37.report b/fonda/cpp_testsuite/varBugs/APACHE-6338509eb37.report index cc51bea9..04851bd6 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE-6338509eb37.report +++ b/fonda/cpp_testsuite/varBugs/APACHE-6338509eb37.report @@ -2,9 +2,4 @@ APACHE 6338509eb37.c Macros: HAVE_FIPS [-UHAVE_FIPS ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/APACHE-664e3aac6dd.report b/fonda/cpp_testsuite/varBugs/APACHE-664e3aac6dd.report index ee2f7073..6c53152d 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE-664e3aac6dd.report +++ b/fonda/cpp_testsuite/varBugs/APACHE-664e3aac6dd.report @@ -2,9 +2,4 @@ APACHE 664e3aac6dd.c Macros: WIN32X [-UWIN32X ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/APACHE-9327311d30f.report b/fonda/cpp_testsuite/varBugs/APACHE-9327311d30f.report index 1f1c4b6f..c2bb29d7 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE-9327311d30f.report +++ b/fonda/cpp_testsuite/varBugs/APACHE-9327311d30f.report @@ -2,9 +2,4 @@ APACHE 9327311d30f.c Macros: APR_HAS_SHARED_MEMORY [-UAPR_HAS_SHARED_MEMORY ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/APACHE-97ecbec1237.report b/fonda/cpp_testsuite/varBugs/APACHE-97ecbec1237.report index 912ac29c..a08512e4 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE-97ecbec1237.report +++ b/fonda/cpp_testsuite/varBugs/APACHE-97ecbec1237.report @@ -2,9 +2,4 @@ APACHE 97ecbec1237.c Macros: APR_HAS_SHARED_MEMORY [-UAPR_HAS_SHARED_MEMORY ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/APACHE-bbeb0516cf0.report b/fonda/cpp_testsuite/varBugs/APACHE-bbeb0516cf0.report index 859089bb..0955a533 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE-bbeb0516cf0.report +++ b/fonda/cpp_testsuite/varBugs/APACHE-bbeb0516cf0.report @@ -2,9 +2,4 @@ APACHE bbeb0516cf0.c Macros: APR_FILES_AS_SOCKETS [-UAPR_FILES_AS_SOCKETS ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/APACHE-c76df14dfb4.report b/fonda/cpp_testsuite/varBugs/APACHE-c76df14dfb4.report index d25b5834..0c919ea0 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE-c76df14dfb4.report +++ b/fonda/cpp_testsuite/varBugs/APACHE-c76df14dfb4.report @@ -12,22 +12,4 @@ Macros: [-UCROSS_COMPILE -Ddefined=1 -DNEED_ENHANCED_ESCAPES=1 ] [-DCROSS_COMPILE=1 -Ddefined=1 -DNEED_ENHANCED_ESCAPES=1 ] [-UCROSS_COMPILE -Udefined -UNEED_ENHANCED_ESCAPES ] -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c:3171:2: warning: Value stored to '__flags_2323' is never read [deadcode.DeadStores] - __flags_2323 |= ( 0x01 ) ; // L4:L42 - ^ ~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c:3240:2: warning: Value stored to '__flags_2323' is never read [deadcode.DeadStores] - __flags_2323 |= ( 0x01 ) ; // L4:L42 - ^ ~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c:3309:2: warning: Value stored to '__flags_2323' is never read [deadcode.DeadStores] - __flags_2323 |= ( 0x01 ) ; // L4:L42 - ^ ~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c:3378:2: warning: Value stored to '__flags_2323' is never read [deadcode.DeadStores] - __flags_2323 |= ( 0x01 ) ; // L4:L42 - ^ ~~~~~~~~ -4 warnings generated. -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/APACHE-d0040a07aec.report b/fonda/cpp_testsuite/varBugs/APACHE-d0040a07aec.report index 0b654f95..45f3a88d 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE-d0040a07aec.report +++ b/fonda/cpp_testsuite/varBugs/APACHE-d0040a07aec.report @@ -6,9 +6,4 @@ Macros: [-Ddefined=1 -URLIMIT_NPROC ] [-Udefined -DRLIMIT_NPROC=1 ] [-Ddefined=1 -DRLIMIT_NPROC=1 ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/APACHE-d05e574ec26.report b/fonda/cpp_testsuite/varBugs/APACHE-d05e574ec26.report index 5d31eda9..70a5913b 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE-d05e574ec26.report +++ b/fonda/cpp_testsuite/varBugs/APACHE-d05e574ec26.report @@ -2,46 +2,4 @@ APACHE d05e574ec26.c Macros: APR_HAS_SHARED_MEMORY [-UAPR_HAS_SHARED_MEMORY ] -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2919:10: warning: Value stored to '__buf_2043' during its initialization is never read [deadcode.DeadStores] -char * (__buf_2043)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2037 ,sizeof(char)));// L16 - ^~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2921:10: warning: Value stored to '__buf_2044' during its initialization is never read [deadcode.DeadStores] -char * (__buf_2044)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2038 ,sizeof(char)));// L16 - ^~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2921:62: warning: Potential leak of memory pointed to by '__buf_2043' [unix.Malloc] -char * (__buf_2044)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2038 ,sizeof(char)));// L16 - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2923:62: warning: Potential leak of memory pointed to by '__buf_2044' [unix.Malloc] -char * (__buf_2045)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2036 ,sizeof(char)));// L16 - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2927:10: warning: Value stored to '__buf_2047' during its initialization is never read [deadcode.DeadStores] -char * (__buf_2047)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2036 ,sizeof(char)));// L16 - ^~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2929:10: warning: Value stored to '__buf_2048' during its initialization is never read [deadcode.DeadStores] -char * (__buf_2048)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2038 ,sizeof(char)));// L16 - ^~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2929:62: warning: Potential leak of memory pointed to by '__buf_2047' [unix.Malloc] -char * (__buf_2048)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2038 ,sizeof(char)));// L16 - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2935:5: warning: Potential leak of memory pointed to by '__buf_2048' [unix.Malloc] -if (__static_condition_default_2053) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2938:5: warning: Potential leak of memory pointed to by '__buf_2041' [unix.Malloc] -if (__static_condition_default_2054) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2941:5: warning: Potential leak of memory pointed to by '__buf_2042' [unix.Malloc] -if (__static_condition_default_2055) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2944:5: warning: Potential leak of memory pointed to by '__buf_2045' [unix.Malloc] -if (__static_condition_default_2056) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2947:5: warning: Potential leak of memory pointed to by '__buf_2046' [unix.Malloc] -if (__static_condition_default_2057) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -12 warnings generated. -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/APACHE-dbafef17dd1.report b/fonda/cpp_testsuite/varBugs/APACHE-dbafef17dd1.report index 1bdda520..48256d4f 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE-dbafef17dd1.report +++ b/fonda/cpp_testsuite/varBugs/APACHE-dbafef17dd1.report @@ -2,9 +2,4 @@ APACHE dbafef17dd1.c Macros: HAS_APACHE_REGEX_LIB [-UHAS_APACHE_REGEX_LIB ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/APACHE-test.report b/fonda/cpp_testsuite/varBugs/APACHE-test.report index e5ae7ddf..d2403d5d 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE-test.report +++ b/fonda/cpp_testsuite/varBugs/APACHE-test.report @@ -12,9 +12,4 @@ Macros: [-UXX -DYY=1 -DZZ=1 ] [-DXX=1 -DYY=1 -DZZ=1 ] [-UXX -UYY -UZZ ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/APACHE/0900800fbab.clangres b/fonda/cpp_testsuite/varBugs/APACHE/0900800fbab.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/0900800fbab.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/0900800fbab.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/0900800fbab.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/0900800fbab.desugared.c index c8a91ac8..cc519cd5 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/0900800fbab.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/0900800fbab.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -36,7 +37,7 @@ int (__main_1) (void ) { if (__static_condition_default_3) { -{ +{// L14 { @@ -55,7 +56,7 @@ __static_type_error("type error") ; // L20 } return 0 ;// L23 } -} +}// L24 } @@ -64,7 +65,7 @@ int (__main_2) (void ) { if (__static_condition_default_6) { -{ +{// L14 { @@ -87,13 +88,13 @@ if ( 1 <= 2 )// L16 do { -{ +{// L9 { } -} +}// L9 } while( 0 );// L9:L17 } @@ -104,20 +105,20 @@ if ( 1 <= 3 )// L16 do { -{ +{// L9 { } -} +}// L9 } while( 0 );// L9:L20 } } return 0 ;// L23 } -} +}// L24 } diff --git a/fonda/cpp_testsuite/varBugs/APACHE/0900800fbab.desugared.clangres b/fonda/cpp_testsuite/varBugs/APACHE/0900800fbab.desugared.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/0900800fbab.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/0900800fbab.desugared.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/0ddfa412ee9.clangres b/fonda/cpp_testsuite/varBugs/APACHE/0ddfa412ee9.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/0ddfa412ee9.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/0ddfa412ee9.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/0ddfa412ee9.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/0ddfa412ee9.desugared.c index 1f7c0429..475c9c6f 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/0ddfa412ee9.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/0ddfa412ee9.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -25,13 +26,13 @@ __static_condition_renaming("__static_condition_default_7", "(defined HAVE_TLS_A void (__ssl_array_index_0) () { -{ +{// L2 { } -} +}// L3 } @@ -39,14 +40,14 @@ void (__ssl_cmp_alpn_protos_1) () { if (__static_condition_default_2) { -{ +{// L7 { __ssl_array_index_0 ( ) ; // L8 } -} +}// L9 } @@ -55,14 +56,14 @@ void (__ssl_callback_alpn_select_3) () { if (__static_condition_default_2) { -{ +{// L12 { __ssl_cmp_alpn_protos_1 ( ) ; // L13 } -} +}// L14 } @@ -71,14 +72,14 @@ int (__main_4) (void ) { if (__static_condition_default_6) { -{ +{// L18 { return 0 ;// L22 } -} +}// L23 } @@ -87,7 +88,7 @@ int (__main_5) (void ) { if (__static_condition_default_7) { -{ +{// L18 { @@ -95,7 +96,7 @@ if (__static_condition_default_7) { __ssl_callback_alpn_select_3 ( ) ; // L20 return 0 ;// L22 } -} +}// L23 } diff --git a/fonda/cpp_testsuite/varBugs/APACHE/0ddfa412ee9.desugared.clangres b/fonda/cpp_testsuite/varBugs/APACHE/0ddfa412ee9.desugared.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/0ddfa412ee9.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/0ddfa412ee9.desugared.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.clangres b/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.clangres index 152097a8..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.clangres @@ -1,4 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.c:13:17: error: use of undeclared identifier 'SSL_PROTOCOL_TLSV1_1' - thisopt = SSL_PROTOCOL_TLSV1_1; - ^ -1 error generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.c index 7613572d..0be9ca62 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -7,73 +8,73 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_806; +extern const bool __static_condition_default_810; extern const bool __static_condition_default_255; +extern const bool __static_condition_default_627; extern const bool __static_condition_default_302; extern const bool __static_condition_default_261; +extern const bool __static_condition_default_805; extern const bool __static_condition_default_414; +extern const bool __static_condition_default_807; extern const bool __static_condition_default_215; extern const bool __static_condition_default_378; extern const bool __static_condition_default_282; extern const bool __static_condition_default_273; extern const bool __static_condition_default_305; extern const bool __static_condition_default_308; -extern const bool __static_condition_default_812; extern const bool __static_condition_default_267; -extern const bool __static_condition_default_623; extern const bool __static_condition_default_325; -extern const bool __static_condition_default_810; +extern const bool __static_condition_default_629; extern const bool __static_condition_default_246; extern const bool __static_condition_default_429; extern const bool __static_condition_default_243; extern const bool __static_condition_default_420; +extern const bool __static_condition_default_595; extern const bool __static_condition_default_237; +extern const bool __static_condition_default_602; extern const bool __static_condition_default_395; extern const bool __static_condition_default_293; extern const bool __static_condition_default_581; -extern const bool __static_condition_default_807; extern const bool __static_condition_default_270; extern const bool __static_condition_default_352; extern const bool __static_condition_default_252; -extern const bool __static_condition_default_802; -extern const bool __static_condition_default_627; -extern const bool __static_condition_default_804; +extern const bool __static_condition_default_814; +extern const bool __static_condition_default_812; extern const bool __static_condition_default_276; -extern const bool __static_condition_default_805; -extern const bool __static_condition_default_594; +extern const bool __static_condition_default_808; extern const bool __static_condition_default_279; extern const bool __static_condition_default_296; extern const bool __static_condition_default_285; extern const bool __static_condition_default_394; extern const bool __static_condition_default_361; extern const bool __static_condition_default_60; -extern const bool __static_condition_default_604; +extern const bool __static_condition_default_623; extern const bool __static_condition_default_234; extern const bool __static_condition_default_426; -extern const bool __static_condition_default_803; extern const bool __static_condition_default_579; extern const bool __static_condition_default_258; -extern const bool __static_condition_default_809; extern const bool __static_condition_default_417; extern const bool __static_condition_default_288; extern const bool __static_condition_default_67; +extern const bool __static_condition_default_621; extern const bool __static_condition_default_423; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_804; +extern const bool __static_condition_default_802; extern const bool __static_condition_default_240; -extern const bool __static_condition_default_814; extern const bool __static_condition_default_349; +extern const bool __static_condition_default_604; +extern const bool __static_condition_default_813; extern const bool __static_condition_default_736; -extern const bool __static_condition_default_621; extern const bool __static_condition_default_299; extern const bool __static_condition_default_432; -extern const bool __static_condition_default_808; +extern const bool __static_condition_default_594; extern const bool __static_condition_default_249; extern const bool __static_condition_default_264; -extern const bool __static_condition_default_595; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_629; extern const bool __static_condition_default_379; extern const bool __static_condition_default_341; -extern const bool __static_condition_default_813; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_806; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -912,14 +913,14 @@ static __inline unsigned int (____bswap_32_66) (unsigned int ____bsx_65) { if (__static_condition_default_67) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -928,14 +929,14 @@ static __inline ____uint64_t_20 (____bswap_64_69) (____uint64_t_20 ____bsx_68) if (__static_condition_default_67) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -1108,14 +1109,14 @@ static __inline unsigned int (____bswap_32_324) (unsigned int ____bsx_323) { if (__static_condition_default_325) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -1124,14 +1125,14 @@ static __inline ____uint64_t_175 (____bswap_64_327) (____uint64_t_175 ____bsx_ if (__static_condition_default_325) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -1312,7 +1313,7 @@ void (__ssl_cmd_protocol_parse_799) () { if (__static_condition_default_802) { -{ +{// L8 { @@ -1323,7 +1324,7 @@ if (__static_condition_default_803) { if ( rand( ) % 2 )// L11 { -{ +{// L12 { @@ -1335,11 +1336,11 @@ if (__static_condition_default_805) { __static_type_error("type error : no valid expression"); // L13 } } +}// L14 } } } -} -} +}// L15 } @@ -1348,7 +1349,7 @@ void (__ssl_cmd_protocol_parse_800) () { if (__static_condition_default_806) { -{ +{// L8 { @@ -1359,7 +1360,7 @@ if (__static_condition_default_807) { if ( rand( ) % 2 )// L11 { -{ +{// L12 { @@ -1371,11 +1372,11 @@ if (__static_condition_default_809) { __static_type_error("type error : no valid expression"); // L13 } } +}// L14 } } } -} -} +}// L15 } @@ -1384,7 +1385,7 @@ void (__ssl_cmd_protocol_parse_801) () { if (__static_condition_default_810) { -{ +{// L8 { @@ -1393,14 +1394,14 @@ int __thisopt_798;// L9 __static_type_error("invalid type found in if statement"); } -} +}// L15 } } int (__main_811) (void ) { -{ +{// L18 { @@ -1416,7 +1417,7 @@ if (__static_condition_default_810) { } return 0 ;// L20 } -} +}// L21 } diff --git a/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.clangres b/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.clangres index 95c5ae87..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.clangres @@ -1,7 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.c:1332:2: warning: Value stored to '__thisopt_798' is never read [deadcode.DeadStores] - __thisopt_798 = ( 1 << 3 ) ; // L4:L13 - ^ ~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.c:1368:2: warning: Value stored to '__thisopt_798' is never read [deadcode.DeadStores] - __thisopt_798 = ( 1 << 3 ) ; // L4:L13 - ^ ~~~~~~~~~~ -2 warnings generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.clangres b/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.clangres index 27d9c35d..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.clangres @@ -1,4 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.c:14:3: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] - apr_rmm_init(rmm_lock); // ERROR: rmm_lock uninitialized - ^~~~~~~~~~~~~~~~~~~~~~ -1 warning generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c index 6eccf22a..729d5afb 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -1352,14 +1353,14 @@ void (__apr_rmm_init_1093) (char * (__rmm_lock_1092)) { if (__static_condition_default_1096) { -{ +{// L4 { __printf_421 ("%s\n", __rmm_lock_1092 ) ; // L5 } -} +}// L6 } @@ -1368,14 +1369,14 @@ void (__apr_rmm_init_1094) (char * (__rmm_lock_1092)) { if (__static_condition_default_1097) { -{ +{// L4 { __printf_421 ("%s\n", __rmm_lock_1092 ) ; // L5 } -} +}// L6 } @@ -1384,14 +1385,14 @@ void (__apr_rmm_init_1095) (char * (__rmm_lock_1092)) { if (__static_condition_default_1098) { -{ +{// L4 { __static_type_error("type error") ; // L5 } -} +}// L6 } @@ -1401,7 +1402,7 @@ void (__util_ldap_cache_init_1100) () { { if (__static_condition_default_1101) { -{ +{// L10 { @@ -1409,14 +1410,14 @@ if (__static_condition_default_1101) { char * (__rmm_lock_1099);// L11 } -} +}// L16 } if (__static_condition_default_1102) { -{ +{// L10 { @@ -1433,7 +1434,7 @@ if (__static_condition_default_1105) { __apr_rmm_init_1095 ( __rmm_lock_1099 ) ; // L14 } } -} +}// L16 } @@ -1443,14 +1444,14 @@ int (__main_1106) (void ) { if (__static_condition_default_1108) { -{ +{// L20 { return 0 ;// L24 } -} +}// L25 } @@ -1459,7 +1460,7 @@ int (__main_1107) (void ) { if (__static_condition_default_1109) { -{ +{// L20 { @@ -1467,7 +1468,7 @@ if (__static_condition_default_1109) { __util_ldap_cache_init_1100 ( ) ; // L22 return 0 ;// L24 } -} +}// L25 } diff --git a/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.clangres b/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.clangres index c9ebc321..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.clangres @@ -1,10 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c:1427:2: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] - __apr_rmm_init_1093 ( __rmm_lock_1099 ) ; // L14 - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c:1430:2: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] - __apr_rmm_init_1094 ( __rmm_lock_1099 ) ; // L14 - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c:1433:2: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] - __apr_rmm_init_1095 ( __rmm_lock_1099 ) ; // L14 - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -3 warnings generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/1f46088b38d.clangres b/fonda/cpp_testsuite/varBugs/APACHE/1f46088b38d.clangres index 4980b088..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/1f46088b38d.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/1f46088b38d.clangres @@ -1,4 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1f46088b38d.c:14:20: error: use of undeclared identifier 'SIGPIPE' - apr_signal_block(SIGPIPE); // ERROR: SIGPIPE undeclared - ^ -1 error generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/1f46088b38d.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/1f46088b38d.desugared.c index 16ccb79b..9dc6d4fb 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/1f46088b38d.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/1f46088b38d.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -1343,14 +1344,14 @@ void (__apr_signal_block_1093) (int __signal_1092) { if (__static_condition_default_1096) { -{ +{// L8 { __printf_421 ("%d\n", __signal_1092 ) ; // L9 } -} +}// L10 } @@ -1359,14 +1360,14 @@ void (__apr_signal_block_1094) (int __signal_1092) { if (__static_condition_default_1097) { -{ +{// L8 { __printf_421 ("%d\n", __signal_1092 ) ; // L9 } -} +}// L10 } @@ -1375,21 +1376,21 @@ void (__apr_signal_block_1095) (int __signal_1092) { if (__static_condition_default_1098) { -{ +{// L8 { __static_type_error("type error") ; // L9 } -} +}// L10 } } int (__main_1099) (void ) { -{ +{// L13 { @@ -1408,7 +1409,7 @@ __static_type_error("type error : no valid expression"); // L14 } return 0 ;// L15 } -} +}// L16 } diff --git a/fonda/cpp_testsuite/varBugs/APACHE/1f46088b38d.desugared.clangres b/fonda/cpp_testsuite/varBugs/APACHE/1f46088b38d.desugared.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/1f46088b38d.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/1f46088b38d.desugared.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.clangres b/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.clangres index c62ba6d3..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.clangres @@ -1,4 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.c:16:3: warning: Potential leak of memory pointed to by 'sc' [unix.Malloc] - return; - ^~~~~~ -1 warning generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c index f3f96f65..83233b84 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -11,91 +12,91 @@ extern const bool __static_condition_default_246; extern const bool __static_condition_default_394; extern const bool __static_condition_default_341; extern const bool __static_condition_default_67; -extern const bool __static_condition_default_1037; extern const bool __static_condition_default_249; -extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_1047; +extern const bool __static_condition_default_1100; extern const bool __static_condition_default_261; +extern const bool __static_condition_default_1024; +extern const bool __static_condition_default_1095; +extern const bool __static_condition_default_1089; extern const bool __static_condition_default_627; -extern const bool __static_condition_default_1047; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_1096; extern const bool __static_condition_default_243; -extern const bool __static_condition_default_604; -extern const bool __static_condition_default_1092; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_1102; +extern const bool __static_condition_default_1082; +extern const bool __static_condition_default_623; extern const bool __static_condition_default_426; -extern const bool __static_condition_default_1024; +extern const bool __static_condition_default_1053; extern const bool __static_condition_default_237; -extern const bool __static_condition_default_1093; extern const bool __static_condition_default_423; -extern const bool __static_condition_default_819; +extern const bool __static_condition_default_1090; extern const bool __static_condition_default_293; extern const bool __static_condition_default_361; -extern const bool __static_condition_default_736; +extern const bool __static_condition_default_594; +extern const bool __static_condition_default_1086; extern const bool __static_condition_default_267; -extern const bool __static_condition_default_1100; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_1077; -extern const bool __static_condition_default_1099; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_818; -extern const bool __static_condition_default_1082; -extern const bool __static_condition_default_1098; -extern const bool __static_condition_default_804; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_595; extern const bool __static_condition_default_1074; +extern const bool __static_condition_default_629; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_1054; +extern const bool __static_condition_default_1077; +extern const bool __static_condition_default_1073; extern const bool __static_condition_default_258; extern const bool __static_condition_default_240; -extern const bool __static_condition_default_1054; -extern const bool __static_condition_default_349; -extern const bool __static_condition_default_594; -extern const bool __static_condition_default_1094; extern const bool __static_condition_default_1025; -extern const bool __static_condition_default_806; +extern const bool __static_condition_default_1048; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_1097; +extern const bool __static_condition_default_349; +extern const bool __static_condition_default_1037; extern const bool __static_condition_default_276; extern const bool __static_condition_default_414; +extern const bool __static_condition_default_1092; extern const bool __static_condition_default_417; -extern const bool __static_condition_default_1053; +extern const bool __static_condition_default_604; +extern const bool __static_condition_default_1031; +extern const bool __static_condition_default_1094; extern const bool __static_condition_default_285; extern const bool __static_condition_default_273; extern const bool __static_condition_default_432; -extern const bool __static_condition_default_1030; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_1096; extern const bool __static_condition_default_325; extern const bool __static_condition_default_255; -extern const bool __static_condition_default_1048; extern const bool __static_condition_default_579; -extern const bool __static_condition_default_1086; +extern const bool __static_condition_default_1102; +extern const bool __static_condition_default_804; extern const bool __static_condition_default_296; -extern const bool __static_condition_default_805; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_1091; extern const bool __static_condition_default_305; extern const bool __static_condition_default_379; -extern const bool __static_condition_default_1031; extern const bool __static_condition_default_288; extern const bool __static_condition_default_302; +extern const bool __static_condition_default_1098; extern const bool __static_condition_default_581; +extern const bool __static_condition_default_1093; +extern const bool __static_condition_default_1099; extern const bool __static_condition_default_308; -extern const bool __static_condition_default_595; +extern const bool __static_condition_default_621; extern const bool __static_condition_default_60; extern const bool __static_condition_default_378; extern const bool __static_condition_default_1083; extern const bool __static_condition_default_252; extern const bool __static_condition_default_420; +extern const bool __static_condition_default_805; extern const bool __static_condition_default_299; -extern const bool __static_condition_default_629; extern const bool __static_condition_default_352; +extern const bool __static_condition_default_806; extern const bool __static_condition_default_264; extern const bool __static_condition_default_395; extern const bool __static_condition_default_279; extern const bool __static_condition_default_282; -extern const bool __static_condition_default_1095; -extern const bool __static_condition_default_1097; extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_1090; extern const bool __static_condition_default_429; +extern const bool __static_condition_default_1030; extern const bool __static_condition_default_215; extern const bool __static_condition_default_234; +extern const bool __static_condition_default_818; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -1054,14 +1055,14 @@ static __inline unsigned int (____bswap_32_66) (unsigned int ____bsx_65) { if (__static_condition_default_67) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -1070,14 +1071,14 @@ static __inline ____uint64_t_20 (____bswap_64_69) (____uint64_t_20 ____bsx_68) if (__static_condition_default_67) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -1250,14 +1251,14 @@ static __inline unsigned int (____bswap_32_324) (unsigned int ____bsx_323) { if (__static_condition_default_325) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -1266,14 +1267,14 @@ static __inline ____uint64_t_175 (____bswap_64_327) (____uint64_t_175 ____bsx_ if (__static_condition_default_325) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -1546,7 +1547,7 @@ void (__ssl_init_ModuleKill_1087) () { if (__static_condition_default_1089) { -{ +{// L5 { @@ -1576,7 +1577,7 @@ if (__static_condition_default_1095) { return ;// L16 } } -} +}// L17 } @@ -1585,7 +1586,7 @@ void (__ssl_init_ModuleKill_1088) () { if (__static_condition_default_1096) { -{ +{// L5 { @@ -1610,14 +1611,14 @@ if (__static_condition_default_1100) { return ;// L16 } } -} +}// L17 } } int (__main_1101) (void ) { -{ +{// L20 { @@ -1630,7 +1631,7 @@ if (__static_condition_default_1096) { } return 0 ;// L22 } -} +}// L23 } diff --git a/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.clangres b/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.clangres index b2195459..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.clangres @@ -1,7 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c:1569:5: warning: Potential leak of memory pointed to by '__sc_1084' [unix.Malloc] -if (__static_condition_default_1093) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c:1603:5: warning: Potential leak of memory pointed to by '__sc_1085' [unix.Malloc] -if (__static_condition_default_1098) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -2 warnings generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.inferres index 2f0cf119..d2981e40 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.inferres +++ b/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.inferres @@ -1,12 +1,12 @@ -APACHE/2a6cbfa00e0.desugared.c:1600: error: Memory Leak - Memory dynamically allocated by `malloc` on line 1593 is not freed after the last access at line 1600, column 5. - 1598. - 1599. __static_type_error("type error") ; // L9 - 1600. if (__static_condition_default_1097) { +APACHE/2a6cbfa00e0.desugared.c:1601: error: Memory Leak + Memory dynamically allocated by `malloc` on line 1594 is not freed after the last access at line 1601, column 5. + 1599. + 1600. __static_type_error("type error") ; // L9 + 1601. if (__static_condition_default_1097) { ^ - 1601. free ( __sc_1085 ) ; // L12 - 1602. } + 1602. free ( __sc_1085 ) ; // L12 + 1603. } Found 1 issue diff --git a/fonda/cpp_testsuite/varBugs/APACHE/3407eccc321.clangres b/fonda/cpp_testsuite/varBugs/APACHE/3407eccc321.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/3407eccc321.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/3407eccc321.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/3407eccc321.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/3407eccc321.desugared.c index 41a87b5a..cee64152 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/3407eccc321.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/3407eccc321.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -11,7 +12,6 @@ extern const bool __static_condition_default_568; extern const bool __static_condition_default_313; extern const bool __static_condition_default_278; extern const bool __static_condition_default_1428; -extern const bool __static_condition_default_1808; extern const bool __static_condition_default_433; extern const bool __static_condition_default_393; extern const bool __static_condition_default_991; @@ -21,7 +21,6 @@ extern const bool __static_condition_default_1532; extern const bool __static_condition_default_241; extern const bool __static_condition_default_907; extern const bool __static_condition_default_1395; -extern const bool __static_condition_default_1785; extern const bool __static_condition_default_683; extern const bool __static_condition_default_1022; extern const bool __static_condition_default_647; @@ -29,18 +28,18 @@ extern const bool __static_condition_default_823; extern const bool __static_condition_default_1315; extern const bool __static_condition_default_402; extern const bool __static_condition_default_317; +extern const bool __static_condition_default_2052; extern const bool __static_condition_default_746; -extern const bool __static_condition_default_2042; extern const bool __static_condition_default_497; extern const bool __static_condition_default_633; extern const bool __static_condition_default_455; extern const bool __static_condition_default_1027; extern const bool __static_condition_default_700; extern const bool __static_condition_default_715; +extern const bool __static_condition_default_1775; extern const bool __static_condition_default_864; extern const bool __static_condition_default_1381; extern const bool __static_condition_default_542; -extern const bool __static_condition_default_2043; extern const bool __static_condition_default_552; extern const bool __static_condition_default_590; extern const bool __static_condition_default_686; @@ -58,10 +57,10 @@ extern const bool __static_condition_default_1009; extern const bool __static_condition_default_1164; extern const bool __static_condition_default_709; extern const bool __static_condition_default_1750; -extern const bool __static_condition_default_2051; extern const bool __static_condition_default_846; extern const bool __static_condition_default_1388; extern const bool __static_condition_default_373; +extern const bool __static_condition_default_1816; extern const bool __static_condition_default_862; extern const bool __static_condition_default_182; extern const bool __static_condition_default_299; @@ -75,7 +74,7 @@ extern const bool __static_condition_default_564; extern const bool __static_condition_default_357; extern const bool __static_condition_default_193; extern const bool __static_condition_default_1409; -extern const bool __static_condition_default_1791; +extern const bool __static_condition_default_1776; extern const bool __static_condition_default_1391; extern const bool __static_condition_default_286; extern const bool __static_condition_default_573; @@ -86,31 +85,29 @@ extern const bool __static_condition_default_1159; extern const bool __static_condition_default_677; extern const bool __static_condition_default_1564; extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_2045; extern const bool __static_condition_default_1753; extern const bool __static_condition_default_550; extern const bool __static_condition_default_979; extern const bool __static_condition_default_275; -extern const bool __static_condition_default_2052; extern const bool __static_condition_default_1091; extern const bool __static_condition_default_417; +extern const bool __static_condition_default_2044; extern const bool __static_condition_default_817; extern const bool __static_condition_default_1459; -extern const bool __static_condition_default_1816; extern const bool __static_condition_default_250; extern const bool __static_condition_default_257; extern const bool __static_condition_default_1373; extern const bool __static_condition_default_1475; extern const bool __static_condition_default_779; -extern const bool __static_condition_default_2048; extern const bool __static_condition_default_229; extern const bool __static_condition_default_432; +extern const bool __static_condition_default_2054; extern const bool __static_condition_default_274; -extern const bool __static_condition_default_1776; extern const bool __static_condition_default_1424; extern const bool __static_condition_default_636; extern const bool __static_condition_default_521; extern const bool __static_condition_default_634; -extern const bool __static_condition_default_2041; extern const bool __static_condition_default_734; extern const bool __static_condition_default_1402; extern const bool __static_condition_default_386; @@ -120,21 +117,22 @@ extern const bool __static_condition_default_333; extern const bool __static_condition_default_789; extern const bool __static_condition_default_583; extern const bool __static_condition_default_944; -extern const bool __static_condition_default_1774; extern const bool __static_condition_default_1005; extern const bool __static_condition_default_1458; extern const bool __static_condition_default_53; extern const bool __static_condition_default_621; extern const bool __static_condition_default_1341; extern const bool __static_condition_default_538; -extern const bool __static_condition_default_2053; +extern const bool __static_condition_default_2051; extern const bool __static_condition_default_296; extern const bool __static_condition_default_1568; extern const bool __static_condition_default_315; +extern const bool __static_condition_default_1785; +extern const bool __static_condition_default_1814; extern const bool __static_condition_default_169; extern const bool __static_condition_default_787; extern const bool __static_condition_default_1405; -extern const bool __static_condition_default_2054; +extern const bool __static_condition_default_2048; extern const bool __static_condition_default_684; extern const bool __static_condition_default_769; extern const bool __static_condition_default_957; @@ -154,12 +152,11 @@ extern const bool __static_condition_default_848; extern const bool __static_condition_default_1081; extern const bool __static_condition_default_170; extern const bool __static_condition_default_1749; +extern const bool __static_condition_default_1810; extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_2050; extern const bool __static_condition_default_544; extern const bool __static_condition_default_613; extern const bool __static_condition_default_662; -extern const bool __static_condition_default_2044; extern const bool __static_condition_default_431; extern const bool __static_condition_default_819; extern const bool __static_condition_default_380; @@ -179,6 +176,7 @@ extern const bool __static_condition_default_956; extern const bool __static_condition_default_891; extern const bool __static_condition_default_663; extern const bool __static_condition_default_836; +extern const bool __static_condition_default_1808; extern const bool __static_condition_default_887; extern const bool __static_condition_default_355; extern const bool __static_condition_default_511; @@ -191,6 +189,7 @@ extern const bool __static_condition_default_1432; extern const bool __static_condition_default_367; extern const bool __static_condition_default_929; extern const bool __static_condition_default_341; +extern const bool __static_condition_default_2053; extern const bool __static_condition_default_842; extern const bool __static_condition_default_938; extern const bool __static_condition_default_1349; @@ -217,7 +216,9 @@ extern const bool __static_condition_default_661; extern const bool __static_condition_default_745; extern const bool __static_condition_default_751; extern const bool __static_condition_default_235; +extern const bool __static_condition_default_2040; extern const bool __static_condition_default_515; +extern const bool __static_condition_default_1773; extern const bool __static_condition_default_288; extern const bool __static_condition_default_536; extern const bool __static_condition_default_752; @@ -229,22 +230,21 @@ extern const bool __static_condition_default_1361; extern const bool __static_condition_default_780; extern const bool __static_condition_default_619; extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_2040; +extern const bool __static_condition_default_1774; extern const bool __static_condition_default_755; -extern const bool __static_condition_default_1789; extern const bool __static_condition_default_753; extern const bool __static_condition_default_553; extern const bool __static_condition_default_419; extern const bool __static_condition_default_1516; extern const bool __static_condition_default_438; extern const bool __static_condition_default_632; +extern const bool __static_condition_default_2050; extern const bool __static_condition_default_955; extern const bool __static_condition_default_1080; extern const bool __static_condition_default_792; extern const bool __static_condition_default_1072; extern const bool __static_condition_default_791; extern const bool __static_condition_default_840; -extern const bool __static_condition_default_1814; extern const bool __static_condition_default_756; extern const bool __static_condition_default_408; extern const bool __static_condition_default_768; @@ -263,25 +263,25 @@ extern const bool __static_condition_default_559; extern const bool __static_condition_default_793; extern const bool __static_condition_default_488; extern const bool __static_condition_default_1152; +extern const bool __static_condition_default_2042; extern const bool __static_condition_default_388; +extern const bool __static_condition_default_2041; +extern const bool __static_condition_default_2047; extern const bool __static_condition_default_1531; extern const bool __static_condition_default_290; extern const bool __static_condition_default_284; -extern const bool __static_condition_default_1775; extern const bool __static_condition_default_311; +extern const bool __static_condition_default_1944; extern const bool __static_condition_default_345; extern const bool __static_condition_default_461; extern const bool __static_condition_default_1369; -extern const bool __static_condition_default_1773; extern const bool __static_condition_default_813; -extern const bool __static_condition_default_2047; extern const bool __static_condition_default_198; extern const bool __static_condition_default_578; extern const bool __static_condition_default_1398; extern const bool __static_condition_default_658; extern const bool __static_condition_default_875; extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_1944; extern const bool __static_condition_default_539; extern const bool __static_condition_default_646; extern const bool __static_condition_default_659; @@ -294,8 +294,8 @@ extern const bool __static_condition_default_1042; extern const bool __static_condition_default_1043; extern const bool __static_condition_default_512; extern const bool __static_condition_default_223; -extern const bool __static_condition_default_1787; extern const bool __static_condition_default_541; +extern const bool __static_condition_default_2046; extern const bool __static_condition_default_293; extern const bool __static_condition_default_585; extern const bool __static_condition_default_852; @@ -307,6 +307,7 @@ extern const bool __static_condition_default_1436; extern const bool __static_condition_default_801; extern const bool __static_condition_default_1353; extern const bool __static_condition_default_173; +extern const bool __static_condition_default_1789; extern const bool __static_condition_default_263; extern const bool __static_condition_default_1345; extern const bool __static_condition_default_668; @@ -317,11 +318,9 @@ extern const bool __static_condition_default_282; extern const bool __static_condition_default_1576; extern const bool __static_condition_default_625; extern const bool __static_condition_default_375; -extern const bool __static_condition_default_2045; extern const bool __static_condition_default_1015; extern const bool __static_condition_default_872; extern const bool __static_condition_default_491; -extern const bool __static_condition_default_1810; extern const bool __static_condition_default_84; extern const bool __static_condition_default_217; extern const bool __static_condition_default_494; @@ -333,6 +332,7 @@ extern const bool __static_condition_default_365; extern const bool __static_condition_default_708; extern const bool __static_condition_default_1065; extern const bool __static_condition_default_809; +extern const bool __static_condition_default_1787; extern const bool __static_condition_default_670; extern const bool __static_condition_default_637; extern const bool __static_condition_default_204; @@ -343,15 +343,16 @@ extern const bool __static_condition_default_529; extern const bool __static_condition_default_1036; extern const bool __static_condition_default_1552; extern const bool __static_condition_default_757; +extern const bool __static_condition_default_2043; extern const bool __static_condition_default_602; extern const bool __static_condition_default_914; extern const bool __static_condition_default_1485; extern const bool __static_condition_default_382; extern const bool __static_condition_default_489; -extern const bool __static_condition_default_2046; extern const bool __static_condition_default_516; extern const bool __static_condition_default_510; extern const bool __static_condition_default_727; +extern const bool __static_condition_default_1791; extern const bool __static_condition_default_246; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); @@ -2363,14 +2364,14 @@ static __inline unsigned int (____bswap_32_1158) (unsigned int ____bsx_1157) { if (__static_condition_default_1159) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -2379,14 +2380,14 @@ static __inline ____uint64_t_13 (____bswap_64_1162) (____uint64_t_13 ____bsx_1 if (__static_condition_default_1164) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2395,14 +2396,14 @@ static __inline ____uint64_t_1112 (____bswap_64_1163) (____uint64_t_1112 ____b if (__static_condition_default_1165) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2607,14 +2608,14 @@ static __inline unsigned int (____bswap_32_1452) (unsigned int ____bsx_1451) { if (__static_condition_default_1453) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -2623,14 +2624,14 @@ static __inline ____uint64_t_13 (____bswap_64_1456) (____uint64_t_13 ____bsx_1 if (__static_condition_default_1458) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2639,14 +2640,14 @@ static __inline ____uint64_t_1275 (____bswap_64_1457) (____uint64_t_1275 ____b if (__static_condition_default_1459) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2874,7 +2875,7 @@ void (__ap_log_perror__2037) (int __level_2036) { if (__static_condition_default_2040) { -{ +{// L5 { @@ -2886,7 +2887,7 @@ if (__static_condition_default_2042) { __static_type_error("type error") ; // L6 } } -} +}// L7 } @@ -2895,7 +2896,7 @@ void (__ap_log_perror__2038) (int __level_2036) { if (__static_condition_default_2043) { -{ +{// L5 { @@ -2907,7 +2908,7 @@ if (__static_condition_default_2045) { __static_type_error("type error") ; // L6 } } -} +}// L7 } @@ -2916,7 +2917,7 @@ void (__ap_log_perror__2039) (int __level_2036) { if (__static_condition_default_2046) { -{ +{// L5 { @@ -2928,14 +2929,14 @@ if (__static_condition_default_2048) { __static_type_error("type error") ; // L6 } } -} +}// L7 } } int (__main_2049) (void ) { -{ +{// L15 { @@ -2944,14 +2945,14 @@ if (__static_condition_default_2050) { if ( rand( ) % 2 )// L11 { -{ +{// L11 { __static_type_error("type error : no valid expression"); // L11 } -} +}// L11 } } if (__static_condition_default_2051) { @@ -2967,7 +2968,7 @@ if (__static_condition_default_2052) { return 0 ;// L19 } } -} +}// L20 } diff --git a/fonda/cpp_testsuite/varBugs/APACHE/3407eccc321.desugared.clangres b/fonda/cpp_testsuite/varBugs/APACHE/3407eccc321.desugared.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/3407eccc321.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/3407eccc321.desugared.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.clangres b/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.clangres index f78a7d92..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.clangres @@ -1,5 +1 @@ -In file included from :344: -:2:9: error: 'defined' cannot be used as a macro name -#define defined 1 - ^ -1 error generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c index cd5ce4ce..c11f8707 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -7,89 +8,89 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_812; -extern const bool __static_condition_default_623; extern const bool __static_condition_default_822; -extern const bool __static_condition_default_824; -extern const bool __static_condition_default_828; +extern const bool __static_condition_default_806; extern const bool __static_condition_default_267; extern const bool __static_condition_default_414; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_595; +extern const bool __static_condition_default_627; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_825; extern const bool __static_condition_default_261; -extern const bool __static_condition_default_820; -extern const bool __static_condition_default_818; extern const bool __static_condition_default_378; extern const bool __static_condition_default_60; +extern const bool __static_condition_default_815; extern const bool __static_condition_default_252; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_627; -extern const bool __static_condition_default_629; +extern const bool __static_condition_default_833; extern const bool __static_condition_default_288; extern const bool __static_condition_default_426; -extern const bool __static_condition_default_736; extern const bool __static_condition_default_579; +extern const bool __static_condition_default_814; extern const bool __static_condition_default_417; +extern const bool __static_condition_default_808; extern const bool __static_condition_default_811; +extern const bool __static_condition_default_802; extern const bool __static_condition_default_379; +extern const bool __static_condition_default_810; extern const bool __static_condition_default_282; extern const bool __static_condition_default_361; +extern const bool __static_condition_default_829; extern const bool __static_condition_default_264; extern const bool __static_condition_default_305; -extern const bool __static_condition_default_808; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_594; -extern const bool __static_condition_default_823; extern const bool __static_condition_default_293; extern const bool __static_condition_default_432; extern const bool __static_condition_default_243; +extern const bool __static_condition_default_816; extern const bool __static_condition_default_240; extern const bool __static_condition_default_246; -extern const bool __static_condition_default_803; +extern const bool __static_condition_default_736; extern const bool __static_condition_default_279; -extern const bool __static_condition_default_804; extern const bool __static_condition_default_429; -extern const bool __static_condition_default_825; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_807; extern const bool __static_condition_default_273; extern const bool __static_condition_default_395; +extern const bool __static_condition_default_809; extern const bool __static_condition_default_394; -extern const bool __static_condition_default_815; -extern const bool __static_condition_default_807; +extern const bool __static_condition_default_824; +extern const bool __static_condition_default_621; extern const bool __static_condition_default_249; +extern const bool __static_condition_default_604; extern const bool __static_condition_default_276; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_805; +extern const bool __static_condition_default_803; extern const bool __static_condition_default_67; +extern const bool __static_condition_default_819; extern const bool __static_condition_default_341; +extern const bool __static_condition_default_804; extern const bool __static_condition_default_215; -extern const bool __static_condition_default_829; -extern const bool __static_condition_default_826; +extern const bool __static_condition_default_821; extern const bool __static_condition_default_325; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_828; extern const bool __static_condition_default_296; -extern const bool __static_condition_default_806; extern const bool __static_condition_default_255; extern const bool __static_condition_default_352; -extern const bool __static_condition_default_809; extern const bool __static_condition_default_349; +extern const bool __static_condition_default_805; extern const bool __static_condition_default_234; extern const bool __static_condition_default_258; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_816; +extern const bool __static_condition_default_820; extern const bool __static_condition_default_299; +extern const bool __static_condition_default_818; extern const bool __static_condition_default_308; -extern const bool __static_condition_default_604; extern const bool __static_condition_default_302; extern const bool __static_condition_default_285; -extern const bool __static_condition_default_802; +extern const bool __static_condition_default_629; +extern const bool __static_condition_default_826; extern const bool __static_condition_default_237; extern const bool __static_condition_default_420; -extern const bool __static_condition_default_810; -extern const bool __static_condition_default_821; -extern const bool __static_condition_default_833; +extern const bool __static_condition_default_812; extern const bool __static_condition_default_581; -extern const bool __static_condition_default_814; extern const bool __static_condition_default_423; +extern const bool __static_condition_default_594; +extern const bool __static_condition_default_817; extern const bool __static_condition_default_270; +extern const bool __static_condition_default_595; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -947,14 +948,14 @@ static __inline unsigned int (____bswap_32_66) (unsigned int ____bsx_65) { if (__static_condition_default_67) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -963,14 +964,14 @@ static __inline ____uint64_t_20 (____bswap_64_69) (____uint64_t_20 ____bsx_68) if (__static_condition_default_67) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -1143,14 +1144,14 @@ static __inline unsigned int (____bswap_32_324) (unsigned int ____bsx_323) { if (__static_condition_default_325) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -1159,14 +1160,14 @@ static __inline ____uint64_t_175 (____bswap_64_327) (____uint64_t_175 ____bsx_ if (__static_condition_default_325) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -1347,7 +1348,7 @@ int (__ssl_init_server_certs_799) () { if (__static_condition_default_802) { -{ +{// L4 { @@ -1365,38 +1366,38 @@ if ( rand( ) % 2 )// L11 { if (__static_condition_default_806) { -{ +{// L11 { * __eckey_798 = 30 ; // L12 } +}// L13 } } -} -else +else// L13 { if (__static_condition_default_807) { -{ +{// L13 { } -} +}// L19 } if (__static_condition_default_808) { -{ +{// L13 { * __eckey_798 = 15 ; // L17 } -} +}// L19 } } } @@ -1407,7 +1408,7 @@ if (__static_condition_default_810) { return 0 ;// L24 } } -} +}// L25 } @@ -1416,7 +1417,7 @@ int (__ssl_init_server_certs_800) () { if (__static_condition_default_811) { -{ +{// L4 { @@ -1434,38 +1435,38 @@ if ( rand( ) % 2 )// L11 { if (__static_condition_default_815) { -{ +{// L11 { * __eckey_798 = 30 ; // L12 } +}// L13 } } -} -else +else// L13 { if (__static_condition_default_816) { -{ +{// L13 { } -} +}// L19 } if (__static_condition_default_817) { -{ +{// L13 { * __eckey_798 = 15 ; // L17 } -} +}// L19 } } } @@ -1476,7 +1477,7 @@ if (__static_condition_default_819) { return 0 ;// L24 } } -} +}// L25 } @@ -1485,7 +1486,7 @@ int (__ssl_init_server_certs_801) () { if (__static_condition_default_820) { -{ +{// L4 { @@ -1511,14 +1512,14 @@ if (__static_condition_default_826) { return 0 ;// L24 } } -} +}// L25 } } int (__ssl_init_server_ctx_827) () { -{ +{// L28 { @@ -1533,39 +1534,39 @@ if (__static_condition_default_820) { return __ssl_init_server_certs_801 ( ) ;// L29 } } -} +}// L30 } int (__ssl_init_ConfigureServer_830) () { -{ +{// L33 { return __ssl_init_server_ctx_827 ( ) ;// L34 } -} +}// L35 } int (__ssl_init_Module_831) () { -{ +{// L38 { return __ssl_init_ConfigureServer_830 ( ) ;// L39 } -} +}// L40 } int (__main_832) (void ) { -{ +{// L43 { @@ -1573,7 +1574,7 @@ int (__main_832) (void ) { __ssl_init_Module_831 ( ) ; // L44 return 0 ;// L45 } -} +}// L46 } diff --git a/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.clangres b/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.clangres index 94146951..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.clangres @@ -1,31 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1373:17: warning: Dereference of undefined pointer value (loaded from variable '__eckey_798') [core.NullDereference] -* __eckey_798 = 30 ; // L12 - ~~~~~~~~~~~ ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1397:17: warning: Dereference of undefined pointer value (loaded from variable '__eckey_798') [core.NullDereference] -* __eckey_798 = 15 ; // L17 - ~~~~~~~~~~~ ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1403:5: warning: Potential leak of memory pointed to by '__eckey_798' [unix.Malloc] -if (__static_condition_default_809) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1442:17: warning: Dereference of undefined pointer value (loaded from variable '__eckey_798') [core.NullDereference] -* __eckey_798 = 30 ; // L12 - ~~~~~~~~~~~ ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1466:17: warning: Dereference of undefined pointer value (loaded from variable '__eckey_798') [core.NullDereference] -* __eckey_798 = 15 ; // L17 - ~~~~~~~~~~~ ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1472:5: warning: Potential leak of memory pointed to by '__eckey_798' [unix.Malloc] -if (__static_condition_default_818) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1496:2: warning: Value stored to '__eckey_798' is never read [deadcode.DeadStores] - __eckey_798 = malloc (sizeof(int)) ; // L10 - ^ ~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1499:2: warning: Value stored to '__eckey_798' is never read [deadcode.DeadStores] - __eckey_798 = malloc (sizeof(int)) ; // L10 - ^ ~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1501:5: warning: Potential leak of memory pointed to by '__eckey_798' [unix.Malloc] -if (__static_condition_default_823) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1501:5: warning: Potential leak of memory pointed to by '__eckey_798' [unix.Malloc] -if (__static_condition_default_823) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -10 warnings generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.inferres index 4738c3a9..dda128fa 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.inferres +++ b/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.inferres @@ -1,48 +1,48 @@ -APACHE/35ae2e259e4.desugared.c:1366: error: Memory Leak - Memory dynamically allocated by `malloc` on line 1358 is not freed after the last access at line 1366, column 5. - 1364. if ( rand( ) % 2 )// L11 - 1365. { - 1366. if (__static_condition_default_806) { +APACHE/35ae2e259e4.desugared.c:1367: error: Memory Leak + Memory dynamically allocated by `malloc` on line 1359 is not freed after the last access at line 1367, column 5. + 1365. if ( rand( ) % 2 )// L11 + 1366. { + 1367. if (__static_condition_default_806) { ^ - 1367. - 1368. { + 1368. + 1369. {// L11 -APACHE/35ae2e259e4.desugared.c:1373: error: Memory Leak - Memory dynamically allocated by `malloc` on line 1358 is not freed after the last access at line 1373, column 1. - 1371. +APACHE/35ae2e259e4.desugared.c:1374: error: Memory Leak + Memory dynamically allocated by `malloc` on line 1359 is not freed after the last access at line 1374, column 1. 1372. - 1373. * __eckey_798 = 30 ; // L12 + 1373. + 1374. * __eckey_798 = 30 ; // L12 ^ - 1374. } 1375. } + 1376. }// L13 -APACHE/35ae2e259e4.desugared.c:1397: error: Memory Leak - Memory dynamically allocated by `malloc` on line 1358 is not freed after the last access at line 1397, column 1. - 1395. +APACHE/35ae2e259e4.desugared.c:1398: error: Memory Leak + Memory dynamically allocated by `malloc` on line 1359 is not freed after the last access at line 1398, column 1. 1396. - 1397. * __eckey_798 = 15 ; // L17 + 1397. + 1398. * __eckey_798 = 15 ; // L17 ^ - 1398. } 1399. } + 1400. }// L19 -APACHE/35ae2e259e4.desugared.c:1435: error: Memory Leak - Memory dynamically allocated by `malloc` on line 1427 is not freed after the last access at line 1435, column 5. - 1433. if ( rand( ) % 2 )// L11 - 1434. { - 1435. if (__static_condition_default_815) { +APACHE/35ae2e259e4.desugared.c:1436: error: Memory Leak + Memory dynamically allocated by `malloc` on line 1428 is not freed after the last access at line 1436, column 5. + 1434. if ( rand( ) % 2 )// L11 + 1435. { + 1436. if (__static_condition_default_815) { ^ - 1436. - 1437. { + 1437. + 1438. {// L11 -APACHE/35ae2e259e4.desugared.c:1442: error: Memory Leak - Memory dynamically allocated by `malloc` on line 1427 is not freed after the last access at line 1442, column 1. - 1440. +APACHE/35ae2e259e4.desugared.c:1443: error: Memory Leak + Memory dynamically allocated by `malloc` on line 1428 is not freed after the last access at line 1443, column 1. 1441. - 1442. * __eckey_798 = 30 ; // L12 + 1442. + 1443. * __eckey_798 = 30 ; // L12 ^ - 1443. } 1444. } + 1445. }// L13 Found 8 issues (console output truncated to 5, see '/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/infer-out/report.txt' for the full list) diff --git a/fonda/cpp_testsuite/varBugs/APACHE/4202d5fee3e.clangres b/fonda/cpp_testsuite/varBugs/APACHE/4202d5fee3e.clangres index 4e2d06e6..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/4202d5fee3e.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/4202d5fee3e.clangres @@ -1,8 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/4202d5fee3e.c:9:16: error: use of undeclared identifier 'certdb'; did you mean 'certtdb'? - printf("%c", certdb); // ERROR: certdb undeclared - ^~~~~~ - certtdb -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/4202d5fee3e.c:4:6: note: 'certtdb' declared here -char certtdb = 'A'; - ^ -1 error generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/4202d5fee3e.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/4202d5fee3e.desugared.c index 7cab6db5..66ff57e8 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/4202d5fee3e.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/4202d5fee3e.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -1339,27 +1340,27 @@ void (__util_ldap_connection_open_1093) () { { if (__static_condition_default_1094) { -{ +{// L7 { } -} +}// L11 } if (__static_condition_default_1095) { -{ +{// L7 { __static_type_error("type error : no valid expression"); // L9 } -} +}// L11 } @@ -1369,14 +1370,14 @@ int (__main_1096) (void ) { if (__static_condition_default_1098) { -{ +{// L15 { return 0 ;// L19 } -} +}// L20 } @@ -1385,7 +1386,7 @@ int (__main_1097) (void ) { if (__static_condition_default_1099) { -{ +{// L15 { @@ -1393,7 +1394,7 @@ if (__static_condition_default_1099) { __util_ldap_connection_open_1093 ( ) ; // L17 return 0 ;// L19 } -} +}// L20 } diff --git a/fonda/cpp_testsuite/varBugs/APACHE/4202d5fee3e.desugared.clangres b/fonda/cpp_testsuite/varBugs/APACHE/4202d5fee3e.desugared.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/4202d5fee3e.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/4202d5fee3e.desugared.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/4945115b2e7.clangres b/fonda/cpp_testsuite/varBugs/APACHE/4945115b2e7.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/4945115b2e7.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/4945115b2e7.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/4945115b2e7.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/4945115b2e7.desugared.c index 6d355632..58489284 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/4945115b2e7.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/4945115b2e7.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -9,90 +10,100 @@ void __static_initializer_default(); extern const bool __static_condition_default_568; extern const bool __static_condition_default_313; +extern const bool __static_condition_default_2112; extern const bool __static_condition_default_278; -extern const bool __static_condition_default_1808; extern const bool __static_condition_default_393; extern const bool __static_condition_default_241; extern const bool __static_condition_default_907; extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_2105; extern const bool __static_condition_default_647; extern const bool __static_condition_default_823; +extern const bool __static_condition_default_2084; extern const bool __static_condition_default_317; extern const bool __static_condition_default_746; extern const bool __static_condition_default_497; extern const bool __static_condition_default_455; extern const bool __static_condition_default_700; -extern const bool __static_condition_default_2058; +extern const bool __static_condition_default_2064; extern const bool __static_condition_default_761; +extern const bool __static_condition_default_2093; extern const bool __static_condition_default_267; extern const bool __static_condition_default_76; +extern const bool __static_condition_default_2118; extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_2052; extern const bool __static_condition_default_1164; extern const bool __static_condition_default_709; -extern const bool __static_condition_default_2096; +extern const bool __static_condition_default_1816; +extern const bool __static_condition_default_2077; extern const bool __static_condition_default_182; extern const bool __static_condition_default_299; extern const bool __static_condition_default_767; -extern const bool __static_condition_default_2105; extern const bool __static_condition_default_1028; extern const bool __static_condition_default_564; extern const bool __static_condition_default_357; extern const bool __static_condition_default_1409; -extern const bool __static_condition_default_2051; +extern const bool __static_condition_default_1776; extern const bool __static_condition_default_803; extern const bool __static_condition_default_677; extern const bool __static_condition_default_1050; extern const bool __static_condition_default_979; extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_1816; extern const bool __static_condition_default_250; extern const bool __static_condition_default_257; extern const bool __static_condition_default_779; +extern const bool __static_condition_default_2075; +extern const bool __static_condition_default_2094; extern const bool __static_condition_default_229; extern const bool __static_condition_default_274; -extern const bool __static_condition_default_2067; +extern const bool __static_condition_default_2110; +extern const bool __static_condition_default_2062; +extern const bool __static_condition_default_2071; extern const bool __static_condition_default_521; extern const bool __static_condition_default_634; extern const bool __static_condition_default_734; extern const bool __static_condition_default_514; extern const bool __static_condition_default_980; +extern const bool __static_condition_default_2059; extern const bool __static_condition_default_333; extern const bool __static_condition_default_583; +extern const bool __static_condition_default_2069; extern const bool __static_condition_default_944; -extern const bool __static_condition_default_2112; -extern const bool __static_condition_default_2090; +extern const bool __static_condition_default_2046; +extern const bool __static_condition_default_2087; extern const bool __static_condition_default_53; -extern const bool __static_condition_default_2088; -extern const bool __static_condition_default_2092; -extern const bool __static_condition_default_2101; extern const bool __static_condition_default_1568; extern const bool __static_condition_default_315; -extern const bool __static_condition_default_2065; +extern const bool __static_condition_default_1785; +extern const bool __static_condition_default_1814; extern const bool __static_condition_default_769; extern const bool __static_condition_default_957; extern const bool __static_condition_default_868; -extern const bool __static_condition_default_2059; -extern const bool __static_condition_default_2087; +extern const bool __static_condition_default_2085; +extern const bool __static_condition_default_2102; extern const bool __static_condition_default_735; extern const bool __static_condition_default_878; extern const bool __static_condition_default_1572; extern const bool __static_condition_default_978; +extern const bool __static_condition_default_1810; +extern const bool __static_condition_default_2090; extern const bool __static_condition_default_613; extern const bool __static_condition_default_819; extern const bool __static_condition_default_759; extern const bool __static_condition_default_271; extern const bool __static_condition_default_1420; extern const bool __static_condition_default_249; +extern const bool __static_condition_default_2058; extern const bool __static_condition_default_834; -extern const bool __static_condition_default_2056; extern const bool __static_condition_default_836; extern const bool __static_condition_default_760; extern const bool __static_condition_default_1432; +extern const bool __static_condition_default_2104; extern const bool __static_condition_default_929; extern const bool __static_condition_default_341; extern const bool __static_condition_default_238; extern const bool __static_condition_default_825; +extern const bool __static_condition_default_2070; extern const bool __static_condition_default_693; extern const bool __static_condition_default_187; extern const bool __static_condition_default_244; @@ -100,39 +111,39 @@ extern const bool __static_condition_default_363; extern const bool __static_condition_default_967; extern const bool __static_condition_default_475; extern const bool __static_condition_default_736; -extern const bool __static_condition_default_2082; +extern const bool __static_condition_default_2107; extern const bool __static_condition_default_537; extern const bool __static_condition_default_661; extern const bool __static_condition_default_745; extern const bool __static_condition_default_751; extern const bool __static_condition_default_235; +extern const bool __static_condition_default_2068; +extern const bool __static_condition_default_1773; extern const bool __static_condition_default_536; extern const bool __static_condition_default_752; +extern const bool __static_condition_default_2055; extern const bool __static_condition_default_486; extern const bool __static_condition_default_788; extern const bool __static_condition_default_1361; extern const bool __static_condition_default_619; extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_1774; extern const bool __static_condition_default_755; -extern const bool __static_condition_default_2113; +extern const bool __static_condition_default_2057; extern const bool __static_condition_default_438; extern const bool __static_condition_default_632; extern const bool __static_condition_default_955; extern const bool __static_condition_default_792; -extern const bool __static_condition_default_2116; extern const bool __static_condition_default_1072; extern const bool __static_condition_default_2076; -extern const bool __static_condition_default_2109; extern const bool __static_condition_default_791; -extern const bool __static_condition_default_1814; +extern const bool __static_condition_default_2116; extern const bool __static_condition_default_756; -extern const bool __static_condition_default_2118; extern const bool __static_condition_default_1057; extern const bool __static_condition_default_649; extern const bool __static_condition_default_549; -extern const bool __static_condition_default_2073; extern const bool __static_condition_default_560; -extern const bool __static_condition_default_2106; +extern const bool __static_condition_default_2089; extern const bool __static_condition_default_369; extern const bool __static_condition_default_337; extern const bool __static_condition_default_559; @@ -140,80 +151,85 @@ extern const bool __static_condition_default_793; extern const bool __static_condition_default_1152; extern const bool __static_condition_default_388; extern const bool __static_condition_default_1531; +extern const bool __static_condition_default_2100; extern const bool __static_condition_default_311; +extern const bool __static_condition_default_1944; +extern const bool __static_condition_default_2111; +extern const bool __static_condition_default_2047; extern const bool __static_condition_default_1369; extern const bool __static_condition_default_813; -extern const bool __static_condition_default_2081; +extern const bool __static_condition_default_2054; extern const bool __static_condition_default_198; extern const bool __static_condition_default_578; -extern const bool __static_condition_default_2085; extern const bool __static_condition_default_1398; extern const bool __static_condition_default_875; -extern const bool __static_condition_default_1944; extern const bool __static_condition_default_659; extern const bool __static_condition_default_543; extern const bool __static_condition_default_1042; extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_2107; extern const bool __static_condition_default_223; extern const bool __static_condition_default_293; extern const bool __static_condition_default_585; extern const bool __static_condition_default_852; extern const bool __static_condition_default_1353; +extern const bool __static_condition_default_2078; extern const bool __static_condition_default_173; extern const bool __static_condition_default_263; extern const bool __static_condition_default_668; -extern const bool __static_condition_default_2108; +extern const bool __static_condition_default_2053; +extern const bool __static_condition_default_2109; extern const bool __static_condition_default_797; extern const bool __static_condition_default_282; +extern const bool __static_condition_default_2091; extern const bool __static_condition_default_625; -extern const bool __static_condition_default_2079; extern const bool __static_condition_default_375; -extern const bool __static_condition_default_1810; extern const bool __static_condition_default_217; extern const bool __static_condition_default_494; extern const bool __static_condition_default_708; extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_1787; extern const bool __static_condition_default_637; extern const bool __static_condition_default_204; extern const bool __static_condition_default_123; extern const bool __static_condition_default_702; extern const bool __static_condition_default_529; -extern const bool __static_condition_default_2068; -extern const bool __static_condition_default_2046; +extern const bool __static_condition_default_2040; extern const bool __static_condition_default_914; extern const bool __static_condition_default_1485; +extern const bool __static_condition_default_2074; extern const bool __static_condition_default_489; extern const bool __static_condition_default_516; extern const bool __static_condition_default_510; -extern const bool __static_condition_default_2041; +extern const bool __static_condition_default_2067; +extern const bool __static_condition_default_2092; +extern const bool __static_condition_default_2106; extern const bool __static_condition_default_246; -extern const bool __static_condition_default_2069; -extern const bool __static_condition_default_2070; -extern const bool __static_condition_default_2098; +extern const bool __static_condition_default_2051; +extern const bool __static_condition_default_2072; extern const bool __static_condition_default_1428; extern const bool __static_condition_default_433; extern const bool __static_condition_default_991; extern const bool __static_condition_default_1165; extern const bool __static_condition_default_1489; extern const bool __static_condition_default_1532; -extern const bool __static_condition_default_2040; extern const bool __static_condition_default_1395; -extern const bool __static_condition_default_1785; extern const bool __static_condition_default_683; +extern const bool __static_condition_default_2099; extern const bool __static_condition_default_1315; extern const bool __static_condition_default_402; extern const bool __static_condition_default_633; extern const bool __static_condition_default_1027; extern const bool __static_condition_default_715; +extern const bool __static_condition_default_1775; extern const bool __static_condition_default_864; extern const bool __static_condition_default_1381; +extern const bool __static_condition_default_2115; extern const bool __static_condition_default_542; -extern const bool __static_condition_default_2064; +extern const bool __static_condition_default_2066; +extern const bool __static_condition_default_2056; extern const bool __static_condition_default_552; extern const bool __static_condition_default_590; extern const bool __static_condition_default_686; -extern const bool __static_condition_default_2115; extern const bool __static_condition_default_253; extern const bool __static_condition_default_210; extern const bool __static_condition_default_685; @@ -226,46 +242,45 @@ extern const bool __static_condition_default_846; extern const bool __static_condition_default_1388; extern const bool __static_condition_default_373; extern const bool __static_condition_default_862; +extern const bool __static_condition_default_2098; extern const bool __static_condition_default_469; extern const bool __static_condition_default_499; +extern const bool __static_condition_default_2073; extern const bool __static_condition_default_248; extern const bool __static_condition_default_444; -extern const bool __static_condition_default_2104; extern const bool __static_condition_default_193; -extern const bool __static_condition_default_1791; extern const bool __static_condition_default_1391; -extern const bool __static_condition_default_2103; extern const bool __static_condition_default_286; extern const bool __static_condition_default_573; +extern const bool __static_condition_default_2108; extern const bool __static_condition_default_1073; extern const bool __static_condition_default_657; extern const bool __static_condition_default_1159; extern const bool __static_condition_default_1564; extern const bool __static_condition_default_1753; extern const bool __static_condition_default_550; -extern const bool __static_condition_default_2074; extern const bool __static_condition_default_275; +extern const bool __static_condition_default_2088; +extern const bool __static_condition_default_2096; extern const bool __static_condition_default_417; extern const bool __static_condition_default_817; extern const bool __static_condition_default_1459; extern const bool __static_condition_default_1373; extern const bool __static_condition_default_1475; -extern const bool __static_condition_default_2047; extern const bool __static_condition_default_432; -extern const bool __static_condition_default_1776; -extern const bool __static_condition_default_2089; -extern const bool __static_condition_default_2110; +extern const bool __static_condition_default_2041; +extern const bool __static_condition_default_2097; extern const bool __static_condition_default_1424; extern const bool __static_condition_default_636; +extern const bool __static_condition_default_2082; extern const bool __static_condition_default_1402; extern const bool __static_condition_default_386; extern const bool __static_condition_default_789; -extern const bool __static_condition_default_1774; extern const bool __static_condition_default_1005; extern const bool __static_condition_default_1458; -extern const bool __static_condition_default_2072; extern const bool __static_condition_default_621; extern const bool __static_condition_default_1341; +extern const bool __static_condition_default_2065; extern const bool __static_condition_default_538; extern const bool __static_condition_default_296; extern const bool __static_condition_default_169; @@ -279,19 +294,17 @@ extern const bool __static_condition_default_645; extern const bool __static_condition_default_781; extern const bool __static_condition_default_721; extern const bool __static_condition_default_1357; +extern const bool __static_condition_default_2086; extern const bool __static_condition_default_848; extern const bool __static_condition_default_1081; -extern const bool __static_condition_default_2093; extern const bool __static_condition_default_170; -extern const bool __static_condition_default_2111; extern const bool __static_condition_default_1749; extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_2081; extern const bool __static_condition_default_544; extern const bool __static_condition_default_662; -extern const bool __static_condition_default_2066; extern const bool __static_condition_default_431; extern const bool __static_condition_default_380; -extern const bool __static_condition_default_2060; extern const bool __static_condition_default_1089; extern const bool __static_condition_default_894; extern const bool __static_condition_default_1754; @@ -301,8 +314,8 @@ extern const bool __static_condition_default_270; extern const bool __static_condition_default_493; extern const bool __static_condition_default_956; extern const bool __static_condition_default_891; -extern const bool __static_condition_default_2091; extern const bool __static_condition_default_663; +extern const bool __static_condition_default_1808; extern const bool __static_condition_default_887; extern const bool __static_condition_default_355; extern const bool __static_condition_default_511; @@ -311,8 +324,6 @@ extern const bool __static_condition_default_471; extern const bool __static_condition_default_701; extern const bool __static_condition_default_717; extern const bool __static_condition_default_367; -extern const bool __static_condition_default_2078; -extern const bool __static_condition_default_2075; extern const bool __static_condition_default_842; extern const bool __static_condition_default_938; extern const bool __static_condition_default_1349; @@ -328,20 +339,15 @@ extern const bool __static_condition_default_255; extern const bool __static_condition_default_515; extern const bool __static_condition_default_288; extern const bool __static_condition_default_1560; -extern const bool __static_condition_default_2095; extern const bool __static_condition_default_1377; -extern const bool __static_condition_default_2071; extern const bool __static_condition_default_780; -extern const bool __static_condition_default_1789; +extern const bool __static_condition_default_2101; extern const bool __static_condition_default_753; -extern const bool __static_condition_default_2099; -extern const bool __static_condition_default_2102; extern const bool __static_condition_default_553; extern const bool __static_condition_default_419; extern const bool __static_condition_default_1516; extern const bool __static_condition_default_1080; extern const bool __static_condition_default_840; -extern const bool __static_condition_default_2086; extern const bool __static_condition_default_408; extern const bool __static_condition_default_768; extern const bool __static_condition_default_1453; @@ -349,56 +355,50 @@ extern const bool __static_condition_default_1498; extern const bool __static_condition_default_608; extern const bool __static_condition_default_650; extern const bool __static_condition_default_972; -extern const bool __static_condition_default_2080; extern const bool __static_condition_default_488; -extern const bool __static_condition_default_2077; +extern const bool __static_condition_default_2063; +extern const bool __static_condition_default_2095; extern const bool __static_condition_default_290; extern const bool __static_condition_default_284; -extern const bool __static_condition_default_2054; -extern const bool __static_condition_default_1775; extern const bool __static_condition_default_345; extern const bool __static_condition_default_461; -extern const bool __static_condition_default_2084; -extern const bool __static_condition_default_1773; -extern const bool __static_condition_default_2094; extern const bool __static_condition_default_658; -extern const bool __static_condition_default_2055; extern const bool __static_condition_default_1035; extern const bool __static_condition_default_539; +extern const bool __static_condition_default_2083; extern const bool __static_condition_default_646; extern const bool __static_condition_default_883; extern const bool __static_condition_default_1515; extern const bool __static_condition_default_264; extern const bool __static_condition_default_280; extern const bool __static_condition_default_512; -extern const bool __static_condition_default_1787; extern const bool __static_condition_default_541; -extern const bool __static_condition_default_2062; +extern const bool __static_condition_default_2080; extern const bool __static_condition_default_1066; extern const bool __static_condition_default_747; extern const bool __static_condition_default_1007; extern const bool __static_condition_default_998; +extern const bool __static_condition_default_2079; extern const bool __static_condition_default_1436; extern const bool __static_condition_default_801; -extern const bool __static_condition_default_2061; -extern const bool __static_condition_default_2057; +extern const bool __static_condition_default_1789; extern const bool __static_condition_default_1345; extern const bool __static_condition_default_723; -extern const bool __static_condition_default_2053; extern const bool __static_condition_default_858; -extern const bool __static_condition_default_2083; +extern const bool __static_condition_default_2061; extern const bool __static_condition_default_1576; +extern const bool __static_condition_default_2052; +extern const bool __static_condition_default_2060; extern const bool __static_condition_default_1015; extern const bool __static_condition_default_872; +extern const bool __static_condition_default_2113; extern const bool __static_condition_default_491; extern const bool __static_condition_default_84; extern const bool __static_condition_default_1058; extern const bool __static_condition_default_347; extern const bool __static_condition_default_597; extern const bool __static_condition_default_1365; -extern const bool __static_condition_default_2100; extern const bool __static_condition_default_365; -extern const bool __static_condition_default_2097; extern const bool __static_condition_default_809; extern const bool __static_condition_default_670; extern const bool __static_condition_default_395; @@ -406,9 +406,10 @@ extern const bool __static_condition_default_1036; extern const bool __static_condition_default_1552; extern const bool __static_condition_default_757; extern const bool __static_condition_default_602; -extern const bool __static_condition_default_2063; extern const bool __static_condition_default_382; +extern const bool __static_condition_default_2103; extern const bool __static_condition_default_727; +extern const bool __static_condition_default_1791; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -2484,14 +2485,14 @@ static __inline unsigned int (____bswap_32_1158) (unsigned int ____bsx_1157) { if (__static_condition_default_1159) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -2500,14 +2501,14 @@ static __inline ____uint64_t_13 (____bswap_64_1162) (____uint64_t_13 ____bsx_1 if (__static_condition_default_1164) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2516,14 +2517,14 @@ static __inline ____uint64_t_1112 (____bswap_64_1163) (____uint64_t_1112 ____b if (__static_condition_default_1165) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2728,14 +2729,14 @@ static __inline unsigned int (____bswap_32_1452) (unsigned int ____bsx_1451) { if (__static_condition_default_1453) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -2744,14 +2745,14 @@ static __inline ____uint64_t_13 (____bswap_64_1456) (____uint64_t_13 ____bsx_1 if (__static_condition_default_1458) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2760,14 +2761,14 @@ static __inline ____uint64_t_1275 (____bswap_64_1457) (____uint64_t_1275 ____b if (__static_condition_default_1459) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2995,7 +2996,7 @@ void (__run_cgi_child_2048) () { if (__static_condition_default_2051) { -{ +{// L5 { @@ -3068,7 +3069,7 @@ return ;// L19 } return ;// L24 } -} +}// L25 } @@ -3077,7 +3078,7 @@ void (__run_cgi_child_2049) () { if (__static_condition_default_2064) { -{ +{// L5 { @@ -3150,7 +3151,7 @@ return ;// L19 } return ;// L24 } -} +}// L25 } @@ -3159,7 +3160,7 @@ void (__run_cgi_child_2050) () { if (__static_condition_default_2077) { -{ +{// L5 { @@ -3306,14 +3307,14 @@ __static_type_error("invalid type found in if statement"); } return ;// L24 } -} +}// L25 } } void (__cgi_handler_2114) () { -{ +{// L28 { @@ -3328,13 +3329,13 @@ if (__static_condition_default_2077) { __run_cgi_child_2050 ( ) ; // L29 } } -} +}// L30 } int (__main_2117) (void ) { -{ +{// L33 { @@ -3342,7 +3343,7 @@ int (__main_2117) (void ) { __cgi_handler_2114 ( ) ; // L34 return 0 ;// L35 } -} +}// L36 } diff --git a/fonda/cpp_testsuite/varBugs/APACHE/4945115b2e7.desugared.clangres b/fonda/cpp_testsuite/varBugs/APACHE/4945115b2e7.desugared.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/4945115b2e7.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/4945115b2e7.desugared.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/56d9881993f.clangres b/fonda/cpp_testsuite/varBugs/APACHE/56d9881993f.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/56d9881993f.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/56d9881993f.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/56d9881993f.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/56d9881993f.desugared.c index bea4dd8d..2f3bf5ce 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/56d9881993f.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/56d9881993f.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -25,27 +26,27 @@ void (__send_brigade_nonblocking_1) () { { if (__static_condition_default_2) { -{ +{// L4 { } -} +}// L8 } if (__static_condition_default_3) { -{ +{// L4 { __sendfile_nonblocking_0 ( ) ; // L6 } -} +}// L8 } @@ -53,7 +54,7 @@ if (__static_condition_default_3) { }} int (__main_4) (void ) { -{ +{// L11 { @@ -61,7 +62,7 @@ int (__main_4) (void ) { __send_brigade_nonblocking_1 ( ) ; // L12 return 0 ;// L13 } -} +}// L14 } diff --git a/fonda/cpp_testsuite/varBugs/APACHE/56d9881993f.desugared.clangres b/fonda/cpp_testsuite/varBugs/APACHE/56d9881993f.desugared.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/56d9881993f.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/56d9881993f.desugared.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/581635e28f1.clangres b/fonda/cpp_testsuite/varBugs/APACHE/581635e28f1.clangres index ad79bfc0..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/581635e28f1.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/581635e28f1.clangres @@ -1,4 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/581635e28f1.c:7:16: error: use of undeclared identifier 'APR_INET6' - int family = APR_INET6; - ^ -1 error generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/581635e28f1.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/581635e28f1.desugared.c index bc770c11..c74aaa87 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/581635e28f1.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/581635e28f1.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -19,7 +20,7 @@ __static_condition_renaming("__static_condition_default_1", "!APR_HAVE_IPV6"); int (__parse_url_2) () { -{ +{// L6 { @@ -31,13 +32,13 @@ __static_type_error("invalid declaration of family under this presence condition } } -} +}// L8 } int (__main_3) (void ) { -{ +{// L11 { @@ -45,7 +46,7 @@ int (__main_3) (void ) { __parse_url_2 ( ) ; // L12 return 0 ;// L13 } -} +}// L14 } diff --git a/fonda/cpp_testsuite/varBugs/APACHE/581635e28f1.desugared.clangres b/fonda/cpp_testsuite/varBugs/APACHE/581635e28f1.desugared.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/581635e28f1.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/581635e28f1.desugared.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/6338509eb37.clangres b/fonda/cpp_testsuite/varBugs/APACHE/6338509eb37.clangres index 13d694f7..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/6338509eb37.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/6338509eb37.clangres @@ -1,4 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/6338509eb37.c:9:7: error: use of undeclared identifier 'fips' - if (fips == 0) - ^ -1 error generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/6338509eb37.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/6338509eb37.desugared.c index 62d9bc6f..a8ca1f46 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/6338509eb37.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/6338509eb37.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -1338,14 +1339,14 @@ void (__ssl_init_Module_1093) () { if (__static_condition_default_1095) { -{ +{// L8 { __static_type_error("invalid type found in if statement"); } -} +}// L11 } @@ -1354,7 +1355,7 @@ void (__ssl_init_Module_1094) () { if (__static_condition_default_1096) { -{ +{// L8 { @@ -1369,14 +1370,14 @@ __static_type_error("type error") ; // L10 } } } -} +}// L11 } } int (__main_1099) (void ) { -{ +{// L14 { @@ -1389,7 +1390,7 @@ if (__static_condition_default_1096) { } return 0 ;// L16 } -} +}// L17 } diff --git a/fonda/cpp_testsuite/varBugs/APACHE/6338509eb37.desugared.clangres b/fonda/cpp_testsuite/varBugs/APACHE/6338509eb37.desugared.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/6338509eb37.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/6338509eb37.desugared.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/664e3aac6dd.clangres b/fonda/cpp_testsuite/varBugs/APACHE/664e3aac6dd.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/664e3aac6dd.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/664e3aac6dd.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/664e3aac6dd.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/664e3aac6dd.desugared.c index 39451deb..1f931a22 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/664e3aac6dd.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/664e3aac6dd.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -7,85 +8,85 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_806; extern const bool __static_condition_default_246; extern const bool __static_condition_default_394; +extern const bool __static_condition_default_1048; extern const bool __static_condition_default_341; +extern const bool __static_condition_default_1077; extern const bool __static_condition_default_67; +extern const bool __static_condition_default_1036; extern const bool __static_condition_default_249; -extern const bool __static_condition_default_1077; +extern const bool __static_condition_default_1047; extern const bool __static_condition_default_261; +extern const bool __static_condition_default_1054; extern const bool __static_condition_default_627; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_1048; -extern const bool __static_condition_default_805; -extern const bool __static_condition_default_1053; +extern const bool __static_condition_default_1083; extern const bool __static_condition_default_243; -extern const bool __static_condition_default_604; -extern const bool __static_condition_default_621; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_623; extern const bool __static_condition_default_426; extern const bool __static_condition_default_237; -extern const bool __static_condition_default_1036; extern const bool __static_condition_default_423; +extern const bool __static_condition_default_1024; +extern const bool __static_condition_default_818; extern const bool __static_condition_default_293; extern const bool __static_condition_default_361; -extern const bool __static_condition_default_736; +extern const bool __static_condition_default_594; extern const bool __static_condition_default_267; -extern const bool __static_condition_default_818; -extern const bool __static_condition_default_1037; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_1082; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_595; +extern const bool __static_condition_default_629; +extern const bool __static_condition_default_1074; extern const bool __static_condition_default_270; -extern const bool __static_condition_default_1031; -extern const bool __static_condition_default_1083; -extern const bool __static_condition_default_1088; +extern const bool __static_condition_default_1087; extern const bool __static_condition_default_258; -extern const bool __static_condition_default_1047; extern const bool __static_condition_default_240; -extern const bool __static_condition_default_1024; +extern const bool __static_condition_default_804; +extern const bool __static_condition_default_736; extern const bool __static_condition_default_349; -extern const bool __static_condition_default_594; +extern const bool __static_condition_default_1089; extern const bool __static_condition_default_276; +extern const bool __static_condition_default_1031; extern const bool __static_condition_default_414; -extern const bool __static_condition_default_1093; -extern const bool __static_condition_default_1073; extern const bool __static_condition_default_417; +extern const bool __static_condition_default_604; extern const bool __static_condition_default_285; extern const bool __static_condition_default_273; +extern const bool __static_condition_default_819; extern const bool __static_condition_default_432; extern const bool __static_condition_default_325; extern const bool __static_condition_default_255; -extern const bool __static_condition_default_1054; extern const bool __static_condition_default_579; -extern const bool __static_condition_default_1025; -extern const bool __static_condition_default_819; -extern const bool __static_condition_default_1092; +extern const bool __static_condition_default_1093; +extern const bool __static_condition_default_1094; extern const bool __static_condition_default_296; +extern const bool __static_condition_default_1025; +extern const bool __static_condition_default_1030; +extern const bool __static_condition_default_1037; extern const bool __static_condition_default_305; extern const bool __static_condition_default_379; extern const bool __static_condition_default_288; extern const bool __static_condition_default_302; +extern const bool __static_condition_default_1053; extern const bool __static_condition_default_581; extern const bool __static_condition_default_308; -extern const bool __static_condition_default_595; +extern const bool __static_condition_default_621; extern const bool __static_condition_default_60; extern const bool __static_condition_default_378; extern const bool __static_condition_default_252; extern const bool __static_condition_default_420; -extern const bool __static_condition_default_1087; +extern const bool __static_condition_default_806; extern const bool __static_condition_default_299; -extern const bool __static_condition_default_629; extern const bool __static_condition_default_352; extern const bool __static_condition_default_264; extern const bool __static_condition_default_395; +extern const bool __static_condition_default_1082; extern const bool __static_condition_default_279; extern const bool __static_condition_default_282; -extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_1074; +extern const bool __static_condition_default_1092; extern const bool __static_condition_default_429; -extern const bool __static_condition_default_804; -extern const bool __static_condition_default_1094; -extern const bool __static_condition_default_1030; +extern const bool __static_condition_default_1088; +extern const bool __static_condition_default_805; extern const bool __static_condition_default_215; extern const bool __static_condition_default_234; void __static_initializer_default() { @@ -1038,14 +1039,14 @@ static __inline unsigned int (____bswap_32_66) (unsigned int ____bsx_65) { if (__static_condition_default_67) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -1054,14 +1055,14 @@ static __inline ____uint64_t_20 (____bswap_64_69) (____uint64_t_20 ____bsx_68) if (__static_condition_default_67) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -1234,14 +1235,14 @@ static __inline unsigned int (____bswap_32_324) (unsigned int ____bsx_323) { if (__static_condition_default_325) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -1250,14 +1251,14 @@ static __inline ____uint64_t_175 (____bswap_64_327) (____uint64_t_175 ____bsx_ if (__static_condition_default_325) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -1530,7 +1531,7 @@ void (__ap_get_win32_interpreter_1086) () { if (__static_condition_default_1087) { -{ +{// L6 { @@ -1543,7 +1544,7 @@ if (__static_condition_default_1088) { if ( rand( ) % 2 )// L10 { -{ +{// L10 { @@ -1551,24 +1552,24 @@ if ( rand( ) % 2 )// L10 for ( __i_1085 = 0 ; __i_1085 < sizeof(( __buffer_1084 )) ; __i_1085 ++ )// L11 { -{ +{// L11 { } -} +}// L13 } __buffer_1084 [ __i_1085 ] = '\0' ; // L14 } -} +}// L15 } } if (__static_condition_default_1089) { __static_type_error("invalid type found in if statement"); } } -} +}// L16 } @@ -1577,14 +1578,14 @@ int (__main_1090) (void ) { if (__static_condition_default_1092) { -{ +{// L20 { return 0 ;// L24 } -} +}// L25 } @@ -1593,7 +1594,7 @@ int (__main_1091) (void ) { if (__static_condition_default_1093) { -{ +{// L20 { @@ -1601,7 +1602,7 @@ if (__static_condition_default_1093) { __ap_get_win32_interpreter_1086 ( ) ; // L22 return 0 ;// L24 } -} +}// L25 } diff --git a/fonda/cpp_testsuite/varBugs/APACHE/664e3aac6dd.desugared.clangres b/fonda/cpp_testsuite/varBugs/APACHE/664e3aac6dd.desugared.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/664e3aac6dd.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/664e3aac6dd.desugared.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/9327311d30f.clangres b/fonda/cpp_testsuite/varBugs/APACHE/9327311d30f.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/9327311d30f.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/9327311d30f.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/9327311d30f.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/9327311d30f.desugared.c index 623371b4..acba12e4 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/9327311d30f.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/9327311d30f.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -195,20 +196,20 @@ void (__util_ald_create_cache_219) (char * (__rmm_addr_218)) { { if (__static_condition_default_220) { -{ +{// L6 { } -} +}// L12 } if (__static_condition_default_221) { -{ +{// L6 { @@ -220,7 +221,7 @@ if (__static_condition_default_223) { __static_type_error("type error") ; // L8 } } -} +}// L12 } @@ -228,20 +229,20 @@ __static_type_error("type error") ; // L8 }} void (__util_ald_create_caches_225) (char * (__rmm_addr_224)) { -{ +{// L15 { __util_ald_create_cache_219 ( __rmm_addr_224 ) ; // L16 } -} +}// L17 } int (__main_226) (void ) { -{ +{// L20 { @@ -254,7 +255,7 @@ if (__static_condition_default_228) { } return 0 ;// L22 } -} +}// L23 } diff --git a/fonda/cpp_testsuite/varBugs/APACHE/9327311d30f.desugared.clangres b/fonda/cpp_testsuite/varBugs/APACHE/9327311d30f.desugared.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/9327311d30f.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/9327311d30f.desugared.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/97ecbec1237.clangres b/fonda/cpp_testsuite/varBugs/APACHE/97ecbec1237.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/97ecbec1237.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/97ecbec1237.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/97ecbec1237.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/97ecbec1237.desugared.c index 260d8c9c..106ed5dd 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/97ecbec1237.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/97ecbec1237.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -7,81 +8,81 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_804; -extern const bool __static_condition_default_826; extern const bool __static_condition_default_267; extern const bool __static_condition_default_414; -extern const bool __static_condition_default_595; +extern const bool __static_condition_default_627; +extern const bool __static_condition_default_623; extern const bool __static_condition_default_261; -extern const bool __static_condition_default_813; +extern const bool __static_condition_default_811; +extern const bool __static_condition_default_805; extern const bool __static_condition_default_378; extern const bool __static_condition_default_60; -extern const bool __static_condition_default_816; +extern const bool __static_condition_default_814; extern const bool __static_condition_default_252; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_627; -extern const bool __static_condition_default_629; extern const bool __static_condition_default_288; extern const bool __static_condition_default_426; -extern const bool __static_condition_default_736; extern const bool __static_condition_default_579; +extern const bool __static_condition_default_810; extern const bool __static_condition_default_417; +extern const bool __static_condition_default_820; extern const bool __static_condition_default_379; -extern const bool __static_condition_default_819; extern const bool __static_condition_default_282; extern const bool __static_condition_default_361; +extern const bool __static_condition_default_816; extern const bool __static_condition_default_264; extern const bool __static_condition_default_305; -extern const bool __static_condition_default_812; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_594; +extern const bool __static_condition_default_827; extern const bool __static_condition_default_293; extern const bool __static_condition_default_432; extern const bool __static_condition_default_243; extern const bool __static_condition_default_240; -extern const bool __static_condition_default_822; extern const bool __static_condition_default_246; +extern const bool __static_condition_default_736; extern const bool __static_condition_default_279; extern const bool __static_condition_default_429; -extern const bool __static_condition_default_815; +extern const bool __static_condition_default_813; extern const bool __static_condition_default_273; extern const bool __static_condition_default_395; +extern const bool __static_condition_default_823; extern const bool __static_condition_default_394; -extern const bool __static_condition_default_806; +extern const bool __static_condition_default_621; extern const bool __static_condition_default_249; +extern const bool __static_condition_default_604; extern const bool __static_condition_default_276; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_823; -extern const bool __static_condition_default_827; extern const bool __static_condition_default_67; extern const bool __static_condition_default_341; -extern const bool __static_condition_default_811; +extern const bool __static_condition_default_800; extern const bool __static_condition_default_215; extern const bool __static_condition_default_325; -extern const bool __static_condition_default_820; -extern const bool __static_condition_default_800; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_826; extern const bool __static_condition_default_296; extern const bool __static_condition_default_255; extern const bool __static_condition_default_352; -extern const bool __static_condition_default_810; +extern const bool __static_condition_default_822; extern const bool __static_condition_default_349; +extern const bool __static_condition_default_824; extern const bool __static_condition_default_234; extern const bool __static_condition_default_258; +extern const bool __static_condition_default_815; extern const bool __static_condition_default_299; extern const bool __static_condition_default_308; -extern const bool __static_condition_default_604; +extern const bool __static_condition_default_806; extern const bool __static_condition_default_302; extern const bool __static_condition_default_285; +extern const bool __static_condition_default_629; +extern const bool __static_condition_default_825; extern const bool __static_condition_default_237; +extern const bool __static_condition_default_809; extern const bool __static_condition_default_420; -extern const bool __static_condition_default_825; extern const bool __static_condition_default_581; -extern const bool __static_condition_default_824; extern const bool __static_condition_default_423; -extern const bool __static_condition_default_805; -extern const bool __static_condition_default_814; +extern const bool __static_condition_default_594; +extern const bool __static_condition_default_804; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_812; extern const bool __static_condition_default_270; +extern const bool __static_condition_default_595; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -931,14 +932,14 @@ static __inline unsigned int (____bswap_32_66) (unsigned int ____bsx_65) { if (__static_condition_default_67) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -947,14 +948,14 @@ static __inline ____uint64_t_20 (____bswap_64_69) (____uint64_t_20 ____bsx_68) if (__static_condition_default_67) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -1127,14 +1128,14 @@ static __inline unsigned int (____bswap_32_324) (unsigned int ____bsx_323) { if (__static_condition_default_325) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -1143,14 +1144,14 @@ static __inline ____uint64_t_175 (____bswap_64_327) (____uint64_t_175 ____bsx_ if (__static_condition_default_325) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -1332,7 +1333,7 @@ int * (__cache_799)= ( ( void * ) 0 );// L6 int * (__util_ldap_shm_801);// L7 int (__apr_shm_attach_803) (int * (* (__util_ldap_shm_802))) { -{ +{// L10 { @@ -1341,7 +1342,7 @@ if (__static_condition_default_804) { if ( __cache_798 )// L11 { -{ +{// L11 { @@ -1349,14 +1350,14 @@ if ( __cache_798 )// L11 * __util_ldap_shm_802 = __cache_798 ; // L12 return 0 ;// L13 } -} +}// L14 } } if (__static_condition_default_805) { if ( __cache_799 )// L11 { -{ +{// L11 { @@ -1364,7 +1365,7 @@ if ( __cache_799 )// L11 * __util_ldap_shm_802 = __cache_799 ; // L12 return 0 ;// L13 } -} +}// L14 } } if (__static_condition_default_806) { @@ -1372,13 +1373,13 @@ __static_type_error("invalid type found in if statement"); } return - 1 ;// L15 } -} +}// L16 } int (__apr_shm_create_808) (int * (* (__util_ldap_shm_807))) { -{ +{// L19 { @@ -1418,13 +1419,13 @@ __static_type_error("type error") ; // L23 } return 0 ;// L24 } -} +}// L25 } int (__util_ldap_cache_init_818) () { -{ +{// L28 { @@ -1435,14 +1436,14 @@ if (__static_condition_default_819) { if ( __result_817 != 1 )// L31 { -{ +{// L31 { return __result_817 ;// L32 } -} +}// L33 } } if (__static_condition_default_820) { @@ -1452,13 +1453,13 @@ if (__static_condition_default_819) { return 1 ;// L35 } } -} +}// L36 } int (__main_821) (void ) { -{ +{// L39 { @@ -1467,7 +1468,7 @@ if (__static_condition_default_822) { if ( rand( ) % 2 )// L40 { -{ +{// L40 { @@ -1482,7 +1483,7 @@ if (__static_condition_default_825) { __static_type_error("type error") ; // L41 } } -} +}// L42 } } if (__static_condition_default_826) { @@ -1491,7 +1492,7 @@ __static_type_error("invalid type found in if statement"); __util_ldap_cache_init_818 ( ) ; // L43 return 0 ;// L44 } -} +}// L45 } diff --git a/fonda/cpp_testsuite/varBugs/APACHE/97ecbec1237.desugared.clangres b/fonda/cpp_testsuite/varBugs/APACHE/97ecbec1237.desugared.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/97ecbec1237.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/97ecbec1237.desugared.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/b833f064550.clangres b/fonda/cpp_testsuite/varBugs/APACHE/b833f064550.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/b833f064550.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/b833f064550.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/b833f064550.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/b833f064550.desugared.c index e69de29b..04e6bcca 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/b833f064550.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/b833f064550.desugared.c @@ -0,0 +1,1464 @@ +#include +#include + +extern void __static_parse_error(char *msg); +extern void __static_type_error(char *msg); +extern void __static_renaming(char *renaming, char *original); +extern void __static_condition_renaming(char *expression, char *renaming); + +void __static_initializer_default(); + +extern const bool __static_condition_default_455; +extern const bool __static_condition_default_510; +extern const bool __static_condition_default_299; +extern const bool __static_condition_default_229; +extern const bool __static_condition_default_511; +extern const bool __static_condition_default_275; +extern const bool __static_condition_default_333; +extern const bool __static_condition_default_347; +extern const bool __static_condition_default_929; +extern const bool __static_condition_default_345; +extern const bool __static_condition_default_559; +extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_512; +extern const bool __static_condition_default_249; +extern const bool __static_condition_default_573; +extern const bool __static_condition_default_836; +extern const bool __static_condition_default_169; +extern const bool __static_condition_default_84; +extern const bool __static_condition_default_473; +extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_274; +extern const bool __static_condition_default_991; +extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_840; +extern const bool __static_condition_default_198; +extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_503; +extern const bool __static_condition_default_759; +extern const bool __static_condition_default_486; +extern const bool __static_condition_default_1022; +extern const bool __static_condition_default_568; +extern const bool __static_condition_default_1104; +extern const bool __static_condition_default_938; +extern const bool __static_condition_default_1073; +extern const bool __static_condition_default_646; +extern const bool __static_condition_default_585; +extern const bool __static_condition_default_683; +extern const bool __static_condition_default_170; +extern const bool __static_condition_default_793; +extern const bool __static_condition_default_311; +extern const bool __static_condition_default_521; +extern const bool __static_condition_default_809; +extern const bool __static_condition_default_255; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_753; +extern const bool __static_condition_default_623; +extern const bool __static_condition_default_123; +extern const bool __static_condition_default_1110; +extern const bool __static_condition_default_253; +extern const bool __static_condition_default_544; +extern const bool __static_condition_default_807; +extern const bool __static_condition_default_638; +extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_980; +extern const bool __static_condition_default_883; +extern const bool __static_condition_default_1101; +extern const bool __static_condition_default_402; +extern const bool __static_condition_default_636; +extern const bool __static_condition_default_613; +extern const bool __static_condition_default_223; +extern const bool __static_condition_default_723; +extern const bool __static_condition_default_1027; +extern const bool __static_condition_default_217; +extern const bool __static_condition_default_887; +extern const bool __static_condition_default_388; +extern const bool __static_condition_default_469; +extern const bool __static_condition_default_1102; +extern const bool __static_condition_default_645; +extern const bool __static_condition_default_549; +extern const bool __static_condition_default_864; +extern const bool __static_condition_default_263; +extern const bool __static_condition_default_825; +extern const bool __static_condition_default_258; +extern const bool __static_condition_default_264; +extern const bool __static_condition_default_734; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_578; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_955; +extern const bool __static_condition_default_278; +extern const bool __static_condition_default_238; +extern const bool __static_condition_default_727; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_337; +extern const bool __static_condition_default_523; +extern const bool __static_condition_default_761; +extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_878; +extern const bool __static_condition_default_709; +extern const bool __static_condition_default_848; +extern const bool __static_condition_default_797; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_173; +extern const bool __static_condition_default_259; +extern const bool __static_condition_default_355; +extern const bool __static_condition_default_244; +extern const bool __static_condition_default_634; +extern const bool __static_condition_default_267; +extern const bool __static_condition_default_431; +extern const bool __static_condition_default_846; +extern const bool __static_condition_default_369; +extern const bool __static_condition_default_1103; +extern const bool __static_condition_default_375; +extern const bool __static_condition_default_315; +extern const bool __static_condition_default_789; +extern const bool __static_condition_default_792; +extern const bool __static_condition_default_998; +extern const bool __static_condition_default_564; +extern const bool __static_condition_default_386; +extern const bool __static_condition_default_475; +extern const bool __static_condition_default_210; +extern const bool __static_condition_default_715; +extern const bool __static_condition_default_632; +extern const bool __static_condition_default_543; +extern const bool __static_condition_default_433; +extern const bool __static_condition_default_1089; +extern const bool __static_condition_default_363; +extern const bool __static_condition_default_529; +extern const bool __static_condition_default_650; +extern const bool __static_condition_default_702; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_296; +extern const bool __static_condition_default_539; +extern const bool __static_condition_default_760; +extern const bool __static_condition_default_907; +extern const bool __static_condition_default_235; +extern const bool __static_condition_default_461; +extern const bool __static_condition_default_365; +extern const bool __static_condition_default_963; +extern const bool __static_condition_default_493; +extern const bool __static_condition_default_979; +extern const bool __static_condition_default_868; +extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_1100; +extern const bool __static_condition_default_686; +extern const bool __static_condition_default_550; +extern const bool __static_condition_default_780; +extern const bool __static_condition_default_583; +extern const bool __static_condition_default_875; +extern const bool __static_condition_default_957; +extern const bool __static_condition_default_380; +extern const bool __static_condition_default_590; +extern const bool __static_condition_default_701; +extern const bool __static_condition_default_894; +extern const bool __static_condition_default_657; +extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_872; +extern const bool __static_condition_default_282; +extern const bool __static_condition_default_542; +extern const bool __static_condition_default_395; +extern const bool __static_condition_default_488; +extern const bool __static_condition_default_842; +extern const bool __static_condition_default_756; +extern const bool __static_condition_default_745; +extern const bool __static_condition_default_755; +extern const bool __static_condition_default_1099; +extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_288; +extern const bool __static_condition_default_625; +extern const bool __static_condition_default_271; +extern const bool __static_condition_default_708; +extern const bool __static_condition_default_204; +extern const bool __static_condition_default_393; +extern const bool __static_condition_default_668; +extern const bool __static_condition_default_1098; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_286; +extern const bool __static_condition_default_331; +extern const bool __static_condition_default_779; +extern const bool __static_condition_default_967; +extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_1107; +extern const bool __static_condition_default_699; +extern const bool __static_condition_default_193; +extern const bool __static_condition_default_1105; +extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_471; +extern const bool __static_condition_default_537; +extern const bool __static_condition_default_313; +extern const bool __static_condition_default_1097; +extern const bool __static_condition_default_367; +extern const bool __static_condition_default_444; +extern const bool __static_condition_default_76; +extern const bool __static_condition_default_341; +extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_751; +extern const bool __static_condition_default_412; +extern const bool __static_condition_default_767; +extern const bool __static_condition_default_432; +extern const bool __static_condition_default_956; +extern const bool __static_condition_default_241; +extern const bool __static_condition_default_536; +extern const bool __static_condition_default_746; +extern const bool __static_condition_default_757; +extern const bool __static_condition_default_541; +extern const bool __static_condition_default_619; +extern const bool __static_condition_default_250; +extern const bool __static_condition_default_597; +extern const bool __static_condition_default_633; +extern const bool __static_condition_default_419; +extern const bool __static_condition_default_659; +extern const bool __static_condition_default_417; +extern const bool __static_condition_default_914; +extern const bool __static_condition_default_293; +extern const bool __static_condition_default_246; +extern const bool __static_condition_default_721; +extern const bool __static_condition_default_290; +extern const bool __static_condition_default_494; +extern const bool __static_condition_default_658; +extern const bool __static_condition_default_663; +extern const bool __static_condition_default_284; +extern const bool __static_condition_default_791; +extern const bool __static_condition_default_651; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_781; +extern const bool __static_condition_default_182; +extern const bool __static_condition_default_489; +extern const bool __static_condition_default_735; +extern const bool __static_condition_default_552; +extern const bool __static_condition_default_373; +extern const bool __static_condition_default_560; +extern const bool __static_condition_default_357; +extern const bool __static_condition_default_516; +extern const bool __static_condition_default_662; +extern const bool __static_condition_default_257; +extern const bool __static_condition_default_408; +extern const bool __static_condition_default_497; +extern const bool __static_condition_default_661; +extern const bool __static_condition_default_1108; +extern const bool __static_condition_default_553; +extern const bool __static_condition_default_769; +extern const bool __static_condition_default_852; +extern const bool __static_condition_default_717; +extern const bool __static_condition_default_788; +extern const bool __static_condition_default_317; +extern const bool __static_condition_default_862; +extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_670; +extern const bool __static_condition_default_499; +extern const bool __static_condition_default_438; +extern const bool __static_condition_default_1050; +extern const bool __static_condition_default_647; +extern const bool __static_condition_default_787; +extern const bool __static_condition_default_382; +extern const bool __static_condition_default_515; +extern const bool __static_condition_default_834; +extern const bool __static_condition_default_752; +extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_858; +extern const bool __static_condition_default_187; +extern const bool __static_condition_default_538; +extern const bool __static_condition_default_201; +extern const bool __static_condition_default_491; +extern const bool __static_condition_default_693; +extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_280; +extern const bool __static_condition_default_891; +extern const bool __static_condition_default_700; +extern const bool __static_condition_default_53; +extern const bool __static_condition_default_747; +extern const bool __static_condition_default_692; +extern const bool __static_condition_default_684; +extern const bool __static_condition_default_248; +extern const bool __static_condition_default_817; +extern const bool __static_condition_default_514; +extern const bool __static_condition_default_685; +extern const bool __static_condition_default_649; +extern const bool __static_condition_default_944; +extern const bool __static_condition_default_1080; +extern const bool __static_condition_default_637; +extern const bool __static_condition_default_677; +extern const bool __static_condition_default_768; +extern const bool __static_condition_default_978; +void __static_initializer_default() { +__static_renaming("__ptrdiff_t_0", "ptrdiff_t"); +__static_renaming("__size_t_1", "size_t"); +__static_renaming("____u_char_2", "__u_char"); +__static_renaming("____u_short_3", "__u_short"); +__static_renaming("____u_int_4", "__u_int"); +__static_renaming("____u_long_5", "__u_long"); +__static_renaming("____int8_t_6", "__int8_t"); +__static_renaming("____uint8_t_7", "__uint8_t"); +__static_renaming("____int16_t_8", "__int16_t"); +__static_renaming("____uint16_t_9", "__uint16_t"); +__static_renaming("____int32_t_10", "__int32_t"); +__static_renaming("____uint32_t_11", "__uint32_t"); +__static_renaming("____int64_t_12", "__int64_t"); +__static_renaming("____uint64_t_13", "__uint64_t"); +__static_renaming("____quad_t_14", "__quad_t"); +__static_renaming("____u_quad_t_15", "__u_quad_t"); +__static_renaming("____dev_t_16", "__dev_t"); +__static_renaming("____uid_t_17", "__uid_t"); +__static_renaming("____gid_t_18", "__gid_t"); +__static_renaming("____ino_t_19", "__ino_t"); +__static_renaming("____ino64_t_20", "__ino64_t"); +__static_renaming("____mode_t_21", "__mode_t"); +__static_renaming("____nlink_t_22", "__nlink_t"); +__static_renaming("____off_t_23", "__off_t"); +__static_renaming("____off64_t_24", "__off64_t"); +__static_renaming("____pid_t_25", "__pid_t"); +__static_renaming("____fsid_t_29", "__fsid_t"); +__static_renaming("____clock_t_30", "__clock_t"); +__static_renaming("____rlim_t_31", "__rlim_t"); +__static_renaming("____rlim64_t_32", "__rlim64_t"); +__static_renaming("____id_t_33", "__id_t"); +__static_renaming("____time_t_34", "__time_t"); +__static_renaming("____useconds_t_35", "__useconds_t"); +__static_renaming("____suseconds_t_36", "__suseconds_t"); +__static_renaming("____daddr_t_37", "__daddr_t"); +__static_renaming("____key_t_38", "__key_t"); +__static_renaming("____clockid_t_39", "__clockid_t"); +__static_renaming("____timer_t_40", "__timer_t"); +__static_renaming("____blksize_t_41", "__blksize_t"); +__static_renaming("____blkcnt_t_42", "__blkcnt_t"); +__static_renaming("____blkcnt64_t_43", "__blkcnt64_t"); +__static_renaming("____fsblkcnt_t_44", "__fsblkcnt_t"); +__static_renaming("____fsblkcnt64_t_45", "__fsblkcnt64_t"); +__static_renaming("____fsfilcnt_t_46", "__fsfilcnt_t"); +__static_renaming("____fsfilcnt64_t_47", "__fsfilcnt64_t"); +__static_renaming("____fsword_t_48", "__fsword_t"); +__static_renaming("____ssize_t_49", "__ssize_t"); +__static_renaming("____syscall_slong_t_50", "__syscall_slong_t"); +__static_renaming("____syscall_ulong_t_51", "__syscall_ulong_t"); +__static_renaming("____loff_t_52", "__loff_t"); +__static_renaming("____qaddr_t_54", "__qaddr_t"); +__static_renaming("____caddr_t_55", "__caddr_t"); +__static_renaming("____intptr_t_56", "__intptr_t"); +__static_renaming("____socklen_t_57", "__socklen_t"); +__static_renaming("__FILE_59", "FILE"); +__static_renaming("____FILE_60", "__FILE"); +__static_renaming("____mbstate_t_69", "__mbstate_t"); +__static_renaming("___G_fpos_t_77", "_G_fpos_t"); +__static_renaming("___G_fpos64_t_85", "_G_fpos64_t"); +__static_renaming("____gnuc_va_list_86", "__gnuc_va_list"); +__static_renaming("___IO_lock_t_88", "_IO_lock_t"); +__static_renaming("___IO_FILE_171", "_IO_FILE"); +__static_renaming("___IO_FILE_172", "_IO_FILE"); +__static_renaming("___IO_2_1_stdin__175", "_IO_2_1_stdin_"); +__static_renaming("___IO_2_1_stdout__176", "_IO_2_1_stdout_"); +__static_renaming("___IO_2_1_stderr__177", "_IO_2_1_stderr_"); +__static_renaming("____io_read_fn_181", "__io_read_fn"); +__static_renaming("____io_write_fn_186", "__io_write_fn"); +__static_renaming("____io_seek_fn_192", "__io_seek_fn"); +__static_renaming("____io_close_fn_195", "__io_close_fn"); +__static_renaming("____underflow_196", "__underflow"); +__static_renaming("____underflow_197", "__underflow"); +__static_renaming("____uflow_199", "__uflow"); +__static_renaming("____uflow_200", "__uflow"); +__static_renaming("____overflow_202", "__overflow"); +__static_renaming("____overflow_203", "__overflow"); +__static_renaming("___IO_getc_208", "_IO_getc"); +__static_renaming("___IO_getc_209", "_IO_getc"); +__static_renaming("___IO_putc_215", "_IO_putc"); +__static_renaming("___IO_putc_216", "_IO_putc"); +__static_renaming("___IO_feof_221", "_IO_feof"); +__static_renaming("___IO_feof_222", "_IO_feof"); +__static_renaming("___IO_ferror_227", "_IO_ferror"); +__static_renaming("___IO_ferror_228", "_IO_ferror"); +__static_renaming("___IO_peekc_locked_233", "_IO_peekc_locked"); +__static_renaming("___IO_peekc_locked_234", "_IO_peekc_locked"); +__static_renaming("___IO_flockfile_236", "_IO_flockfile"); +__static_renaming("___IO_flockfile_237", "_IO_flockfile"); +__static_renaming("___IO_funlockfile_239", "_IO_funlockfile"); +__static_renaming("___IO_funlockfile_240", "_IO_funlockfile"); +__static_renaming("___IO_ftrylockfile_242", "_IO_ftrylockfile"); +__static_renaming("___IO_ftrylockfile_243", "_IO_ftrylockfile"); +__static_renaming("___IO_vfscanf_245", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_247", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_251", "_IO_vfscanf"); +__static_renaming("___IO_vfscanf_252", "_IO_vfscanf"); +__static_renaming("___IO_vfprintf_254", "_IO_vfprintf"); +__static_renaming("___IO_vfprintf_256", "_IO_vfprintf"); +__static_renaming("___IO_vfprintf_260", "_IO_vfprintf"); +__static_renaming("___IO_padn_261", "_IO_padn"); +__static_renaming("___IO_padn_262", "_IO_padn"); +__static_renaming("___IO_sgetn_265", "_IO_sgetn"); +__static_renaming("___IO_sgetn_266", "_IO_sgetn"); +__static_renaming("___IO_seekoff_268", "_IO_seekoff"); +__static_renaming("___IO_seekoff_269", "_IO_seekoff"); +__static_renaming("___IO_seekpos_272", "_IO_seekpos"); +__static_renaming("___IO_seekpos_273", "_IO_seekpos"); +__static_renaming("___IO_free_backup_area_276", "_IO_free_backup_area"); +__static_renaming("___IO_free_backup_area_277", "_IO_free_backup_area"); +__static_renaming("__va_list_279", "va_list"); +__static_renaming("__off_t_281", "off_t"); +__static_renaming("__off_t_283", "off_t"); +__static_renaming("__ssize_t_285", "ssize_t"); +__static_renaming("__fpos_t_287", "fpos_t"); +__static_renaming("__fpos_t_289", "fpos_t"); +__static_renaming("__stdin_291", "stdin"); +__static_renaming("__stdin_292", "stdin"); +__static_renaming("__stdout_294", "stdout"); +__static_renaming("__stdout_295", "stdout"); +__static_renaming("__stderr_297", "stderr"); +__static_renaming("__stderr_298", "stderr"); +__static_renaming("__remove_301", "remove"); +__static_renaming("__rename_304", "rename"); +__static_renaming("__renameat_309", "renameat"); +__static_renaming("__tmpfile_310", "tmpfile"); +__static_renaming("__tmpfile_312", "tmpfile"); +__static_renaming("__tmpfile_314", "tmpfile"); +__static_renaming("__tmpfile_316", "tmpfile"); +__static_renaming("__tmpnam_319", "tmpnam"); +__static_renaming("__tmpnam_320", "tmpnam"); +__static_renaming("__tmpnam_r_322", "tmpnam_r"); +__static_renaming("__tmpnam_r_323", "tmpnam_r"); +__static_renaming("__tempnam_326", "tempnam"); +__static_renaming("__tempnam_327", "tempnam"); +__static_renaming("__fclose_330", "fclose"); +__static_renaming("__fclose_332", "fclose"); +__static_renaming("__fflush_336", "fflush"); +__static_renaming("__fflush_unlocked_340", "fflush_unlocked"); +__static_renaming("__fopen_344", "fopen"); +__static_renaming("__fopen_346", "fopen"); +__static_renaming("__fopen_354", "fopen"); +__static_renaming("__fopen_356", "fopen"); +__static_renaming("__freopen_362", "freopen"); +__static_renaming("__freopen_364", "freopen"); +__static_renaming("__freopen_366", "freopen"); +__static_renaming("__freopen_368", "freopen"); +__static_renaming("__fdopen_372", "fdopen"); +__static_renaming("__fdopen_374", "fdopen"); +__static_renaming("__fmemopen_379", "fmemopen"); +__static_renaming("__fmemopen_381", "fmemopen"); +__static_renaming("__open_memstream_385", "open_memstream"); +__static_renaming("__open_memstream_387", "open_memstream"); +__static_renaming("__setbuf_392", "setbuf"); +__static_renaming("__setbuf_394", "setbuf"); +__static_renaming("__setvbuf_401", "setvbuf"); +__static_renaming("__setbuffer_407", "setbuffer"); +__static_renaming("__setlinebuf_411", "setlinebuf"); +__static_renaming("__fprintf_416", "fprintf"); +__static_renaming("__fprintf_418", "fprintf"); +__static_renaming("__printf_421", "printf"); +__static_renaming("__sprintf_424", "sprintf"); +__static_renaming("__vfprintf_430", "vfprintf"); +__static_renaming("__vprintf_437", "vprintf"); +__static_renaming("__vsprintf_443", "vsprintf"); +__static_renaming("__snprintf_448", "snprintf"); +__static_renaming("__vsnprintf_454", "vsnprintf"); +__static_renaming("__vdprintf_460", "vdprintf"); +__static_renaming("__dprintf_464", "dprintf"); +__static_renaming("__fscanf_468", "fscanf"); +__static_renaming("__fscanf_470", "fscanf"); +__static_renaming("__fscanf_472", "fscanf"); +__static_renaming("__fscanf_474", "fscanf"); +__static_renaming("__scanf_477", "scanf"); +__static_renaming("__scanf_478", "scanf"); +__static_renaming("__sscanf_481", "sscanf"); +__static_renaming("__vfscanf_509", "vfscanf"); +__static_renaming("__vfscanf_513", "vfscanf"); +__static_renaming("__vscanf_520", "vscanf"); +__static_renaming("__vscanf_522", "vscanf"); +__static_renaming("__vsscanf_528", "vsscanf"); +__static_renaming("__fgetc_563", "fgetc"); +__static_renaming("__getc_567", "getc"); +__static_renaming("__getchar_569", "getchar"); +__static_renaming("__getc_unlocked_572", "getc_unlocked"); +__static_renaming("__getchar_unlocked_574", "getchar_unlocked"); +__static_renaming("__fgetc_unlocked_577", "fgetc_unlocked"); +__static_renaming("__fputc_582", "fputc"); +__static_renaming("__fputc_584", "fputc"); +__static_renaming("__putc_589", "putc"); +__static_renaming("__putchar_592", "putchar"); +__static_renaming("__fputc_unlocked_596", "fputc_unlocked"); +__static_renaming("__putc_unlocked_601", "putc_unlocked"); +__static_renaming("__putchar_unlocked_604", "putchar_unlocked"); +__static_renaming("__getw_607", "getw"); +__static_renaming("__putw_612", "putw"); +__static_renaming("__fgets_618", "fgets"); +__static_renaming("__fgets_620", "fgets"); +__static_renaming("__fgets_622", "fgets"); +__static_renaming("__fgets_624", "fgets"); +__static_renaming("____getdelim_631", "__getdelim"); +__static_renaming("____getdelim_635", "__getdelim"); +__static_renaming("__getdelim_644", "getdelim"); +__static_renaming("__getdelim_648", "getdelim"); +__static_renaming("__getline_656", "getline"); +__static_renaming("__getline_660", "getline"); +__static_renaming("__fputs_667", "fputs"); +__static_renaming("__fputs_669", "fputs"); +__static_renaming("__puts_672", "puts"); +__static_renaming("__ungetc_676", "ungetc"); +__static_renaming("__fseek_714", "fseek"); +__static_renaming("__fseek_716", "fseek"); +__static_renaming("__ftell_720", "ftell"); +__static_renaming("__ftell_722", "ftell"); +__static_renaming("__rewind_726", "rewind"); +__static_renaming("__fseeko_733", "fseeko"); +__static_renaming("__fseeko_744", "fseeko"); +__static_renaming("__ftello_750", "ftello"); +__static_renaming("__ftello_754", "ftello"); +__static_renaming("__ftello_758", "ftello"); +__static_renaming("__fgetpos_766", "fgetpos"); +__static_renaming("__fgetpos_778", "fgetpos"); +__static_renaming("__fsetpos_786", "fsetpos"); +__static_renaming("__fsetpos_790", "fsetpos"); +__static_renaming("__clearerr_796", "clearerr"); +__static_renaming("__feof_800", "feof"); +__static_renaming("__feof_802", "feof"); +__static_renaming("__ferror_806", "ferror"); +__static_renaming("__ferror_808", "ferror"); +__static_renaming("__clearerr_unlocked_812", "clearerr_unlocked"); +__static_renaming("__feof_unlocked_816", "feof_unlocked"); +__static_renaming("__feof_unlocked_818", "feof_unlocked"); +__static_renaming("__ferror_unlocked_822", "ferror_unlocked"); +__static_renaming("__ferror_unlocked_824", "ferror_unlocked"); +__static_renaming("__perror_827", "perror"); +__static_renaming("__perror_828", "perror"); +__static_renaming("__sys_nerr_829", "sys_nerr"); +__static_renaming("__sys_errlist_830", "sys_errlist"); +__static_renaming("__fileno_833", "fileno"); +__static_renaming("__fileno_835", "fileno"); +__static_renaming("__fileno_unlocked_839", "fileno_unlocked"); +__static_renaming("__fileno_unlocked_841", "fileno_unlocked"); +__static_renaming("__popen_845", "popen"); +__static_renaming("__popen_847", "popen"); +__static_renaming("__pclose_851", "pclose"); +__static_renaming("__ctermid_854", "ctermid"); +__static_renaming("__flockfile_857", "flockfile"); +__static_renaming("__ftrylockfile_861", "ftrylockfile"); +__static_renaming("__ftrylockfile_863", "ftrylockfile"); +__static_renaming("__funlockfile_867", "funlockfile"); +__static_renaming("____sprintf_chk_899", "__sprintf_chk"); +__static_renaming("____vsprintf_chk_906", "__vsprintf_chk"); +__static_renaming("____snprintf_chk_920", "__snprintf_chk"); +__static_renaming("____vsnprintf_chk_928", "__vsnprintf_chk"); +__static_renaming("____fprintf_chk_943", "__fprintf_chk"); +__static_renaming("____printf_chk_947", "__printf_chk"); +__static_renaming("____vfprintf_chk_954", "__vfprintf_chk"); +__static_renaming("____vprintf_chk_962", "__vprintf_chk"); +__static_renaming("____dprintf_chk_984", "__dprintf_chk"); +__static_renaming("____vdprintf_chk_990", "__vdprintf_chk"); +__static_renaming("____fgets_chk_1004", "__fgets_chk"); +__static_renaming("____fgets_chk_1006", "__fgets_chk"); +__static_renaming("____fgets_chk_1008", "__fgets_chk"); +__static_renaming("____fgets_alias_1014", "__fgets_alias"); +__static_renaming("____fgets_chk_warn_1021", "__fgets_chk_warn"); +__static_renaming("____cnt_1087", "__cnt"); +__static_renaming("____cptr_1088", "__cptr"); +__static_renaming("__x_1092", "x"); +__static_renaming("__y_1093", "y"); +__static_renaming("__status_handler_1094", "status_handler"); +__static_renaming("__status_handler_1095", "status_handler"); +__static_renaming("__status_handler_1096", "status_handler"); +__static_renaming("__register_hooks_1106", "register_hooks"); +__static_renaming("__main_1109", "main"); + +__static_condition_renaming("__static_condition_default_53", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_76", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_84", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_123", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_169", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_170", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_173", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_182", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_187", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_193", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_198", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_201", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_204", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_210", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_217", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_223", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_229", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_235", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_238", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_241", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_244", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_246", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_248", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_249", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_250", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_253", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_255", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && (defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_257", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && !(defined _IO_MTSAFE_IO) && !(defined _IO_USE_OLD_IO_FILE)"); +__static_condition_renaming("__static_condition_default_258", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_259", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H) && (defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_263", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_264", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_267", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_270", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_271", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_274", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO)"); +__static_condition_renaming("__static_condition_default_275", "!(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_278", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_280", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) && !(defined _VA_LIST_DEFINED) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_) && !(defined _VA_LIST_DEFINED)"); +__static_condition_renaming("__static_condition_default_282", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_284", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __off_t_defined)"); +__static_condition_renaming("__static_condition_default_286", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _BITS_TYPESIZES_H) && !(defined __ssize_t_defined)"); +__static_condition_renaming("__static_condition_default_288", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_290", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_293", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_296", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_299", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _IO_MTSAFE_IO) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); +__static_condition_renaming("__static_condition_default_311", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_313", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_315", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_317", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_331", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_333", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_337", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_341", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_345", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_347", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_355", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_357", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_363", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_365", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_367", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_369", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_373", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_375", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_380", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_382", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_386", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_388", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_393", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_395", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_402", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_408", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_412", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_417", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_419", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_431", "!(defined __need___FILE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_432", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_433", "!(defined __need___FILE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_438", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_444", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_455", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_461", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_469", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_471", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_473", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_475", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_486", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_488", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_489", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_491", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_493", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_494", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_497", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_499", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_503", "!(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_510", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_511", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_512", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_514", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_515", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_516", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_521", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_523", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_529", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_536", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_537", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_538", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_539", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_541", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_542", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_543", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_544", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_549", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_550", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_552", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_553", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_559", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_560", "!(defined __need___FILE) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_564", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_568", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_573", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_578", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_583", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_585", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_590", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_597", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_602", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_608", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_613", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_619", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_621", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_623", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_625", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_632", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_633", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_634", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_636", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_637", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_638", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_645", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_646", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_647", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_649", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_650", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_651", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_657", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_658", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_659", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_661", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_662", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_663", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_668", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_670", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_677", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_683", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_684", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_685", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_686", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_692", "!(defined __need___FILE) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_693", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_699", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_700", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_701", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_702", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_708", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_709", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_715", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_717", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_721", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_723", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_727", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_734", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_735", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_736", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_745", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_746", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_747", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_751", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_752", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_753", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _FORTIFY_SOURCE) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_755", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_756", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_757", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_759", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_760", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_761", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FILE_OFFSET_BITS) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_767", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_768", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_769", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_779", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_780", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_781", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_787", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_788", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_789", "!(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && !(defined _FILE_OFFSET_BITS) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && !(_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_791", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && !(defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_792", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && !(defined ____mbstate_t_defined)"); +__static_condition_renaming("__static_condition_default_793", "!(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && !(defined _BITS_TYPESIZES_H) && (defined __FILE_defined) && (defined ____mbstate_t_defined) || !(defined __need___FILE) && (defined _FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64) && (defined _BITS_TYPESIZES_H) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_797", "!(defined __need___FILE) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_801", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_803", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_807", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_809", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_813", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_817", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_819", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_823", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_825", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_834", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_836", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_840", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_842", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_846", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_848", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_852", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_858", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_862", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __FILE_defined) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_864", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_868", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_872", "!(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined _FORTIFY_SOURCE) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_875", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_878", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_883", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_887", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_891", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_894", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined __FILE_defined) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_907", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_914", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_929", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_938", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_944", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_955", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_956", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_957", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_963", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_967", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_972", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_978", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_979", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST)"); +__static_condition_renaming("__static_condition_default_980", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_991", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_998", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && !(defined _ANSI_STDARG_H_) && (defined __GNUC_VA_LIST) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined _ANSI_STDARG_H_)"); +__static_condition_renaming("__static_condition_default_1005", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1007", "!(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1009", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (_FORTIFY_SOURCE > 1) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1015", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1022", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1027", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1028", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1035", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1036", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1042", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1043", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1050", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1051", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1057", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1058", "!(defined __need___FILE) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1065", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1066", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1072", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1073", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1080", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1081", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1089", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __USE_EXTERN_INLINES)"); +__static_condition_renaming("__static_condition_default_1090", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1091", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined __FILE_defined)"); +__static_condition_renaming("__static_condition_default_1097", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) || !(defined __need___FILE) && (defined __STRICT_ANSI__)"); +__static_condition_renaming("__static_condition_default_1098", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && !(defined HAVE_TIMES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && !(defined HAVE_TIMES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && !(defined HAVE_TIMES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && !(defined HAVE_TIMES) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && !(defined HAVE_TIMES)"); +__static_condition_renaming("__static_condition_default_1099", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) && (defined HAVE_TIMES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) && (defined HAVE_TIMES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) && (defined HAVE_TIMES) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) && (defined HAVE_TIMES) || !(defined __need___FILE) && (defined __STRICT_ANSI__) && (defined HAVE_TIMES)"); +__static_condition_renaming("__static_condition_default_1100", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1101", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && !(defined HAVE_TIMES)"); +__static_condition_renaming("__static_condition_default_1102", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0) && (defined HAVE_TIMES)"); +__static_condition_renaming("__static_condition_default_1103", "(defined __need___FILE)"); +__static_condition_renaming("__static_condition_default_1104", "(defined __need___FILE) && !(defined HAVE_TIMES)"); +__static_condition_renaming("__static_condition_default_1105", "(defined __need___FILE) && (defined HAVE_TIMES)"); +__static_condition_renaming("__static_condition_default_1107", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && !(defined _FORTIFY_SOURCE) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && !(_FORTIFY_SOURCE > 0) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && !(defined __OPTIMIZE__) || !(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && !(__OPTIMIZE__ > 0) || !(defined __need___FILE) && (defined __STRICT_ANSI__)"); +__static_condition_renaming("__static_condition_default_1108", "!(defined __need___FILE) && !(defined __STRICT_ANSI__) && (defined _FORTIFY_SOURCE) && (_FORTIFY_SOURCE > 0) && (defined __OPTIMIZE__) && (__OPTIMIZE__ > 0)"); +__static_condition_renaming("__static_condition_default_1110", "!(defined __need___FILE) && !(defined _BITS_TYPESIZES_H) && (defined _ANSI_STDARG_H_) && !(defined __GNUC_VA_LIST) || !(defined __need___FILE) && (defined _BITS_TYPESIZES_H)"); + +if (__static_condition_default_1110) { +__static_parse_error("Unable to parse"); +} +}; +typedef long int __ptrdiff_t_0;// L143:L324 +typedef long unsigned int __size_t_1;// L177:L209 +typedef unsigned char ____u_char_2;// L30 +typedef unsigned short int ____u_short_3;// L31 +typedef unsigned int ____u_int_4;// L32 +typedef unsigned long int ____u_long_5;// L33 +typedef signed char ____int8_t_6;// L36 +typedef unsigned char ____uint8_t_7;// L37 +typedef signed short int ____int16_t_8;// L38 +typedef unsigned short int ____uint16_t_9;// L39 +typedef signed int ____int32_t_10;// L40 +typedef unsigned int ____uint32_t_11;// L41 +typedef signed long int ____int64_t_12;// L43 +typedef unsigned long int ____uint64_t_13;// L44 +typedef long int ____quad_t_14;// L52 +typedef unsigned long int ____u_quad_t_15;// L53 +typedef unsigned long int ____dev_t_16;// L109:L124 +typedef unsigned int ____uid_t_17;// L92:L125 +typedef unsigned int ____gid_t_18;// L92:L126 +typedef unsigned long int ____ino_t_19;// L94:L127 +typedef unsigned long int ____ino64_t_20;// L109:L128 +typedef unsigned int ____mode_t_21;// L92:L129 +typedef unsigned long int ____nlink_t_22;// L94:L130 +typedef long int ____off_t_23;// L93:L131 +typedef long int ____off64_t_24;// L108:L132 +typedef int ____pid_t_25;// L91:L133 +struct ____anonymous_tag_26_27 { +int ____val_28[2];// L72 +}; +typedef struct ____anonymous_tag_26_27 ____fsid_t_29;// L72:L134 +typedef long int ____clock_t_30;// L93:L135 +typedef unsigned long int ____rlim_t_31;// L94:L136 +typedef unsigned long int ____rlim64_t_32;// L109:L137 +typedef unsigned int ____id_t_33;// L92:L138 +typedef long int ____time_t_34;// L93:L139 +typedef unsigned int ____useconds_t_35;// L92:L140 +typedef long int ____suseconds_t_36;// L93:L141 +typedef int ____daddr_t_37;// L91:L143 +typedef int ____key_t_38;// L91:L144 +typedef int ____clockid_t_39;// L91:L147 +typedef void * (____timer_t_40);// L70:L150 +typedef long int ____blksize_t_41;// L93:L153 +typedef long int ____blkcnt_t_42;// L93:L158 +typedef long int ____blkcnt64_t_43;// L108:L159 +typedef unsigned long int ____fsblkcnt_t_44;// L94:L162 +typedef unsigned long int ____fsblkcnt64_t_45;// L109:L163 +typedef unsigned long int ____fsfilcnt_t_46;// L94:L166 +typedef unsigned long int ____fsfilcnt64_t_47;// L109:L167 +typedef long int ____fsword_t_48;// L93:L170 +typedef long int ____ssize_t_49;// L110:L172 +typedef long int ____syscall_slong_t_50;// L93:L175 +typedef unsigned long int ____syscall_ulong_t_51;// L94:L177 +typedef ____off64_t_24 ____loff_t_52;// L181 +typedef ____quad_t_14 * (____qaddr_t_54);// L182 +typedef char * (____caddr_t_55);// L183 +typedef long int ____intptr_t_56;// L110:L186 +typedef unsigned int ____socklen_t_57;// L92:L189 +typedef struct __forward_tag_reference_58 __FILE_59;// L48 +typedef struct __forward_tag_reference_58 ____FILE_60;// L64 +union ____anonymous_tag_61_62 { +unsigned int ____wch_63;// L265 +char ____wchb_64[4];// L92 +}; +struct ____anonymous_tag_65_66 { +int ____count_67;// L84 +union ____anonymous_tag_61_62 ____value_68;// L85 +}; +typedef struct ____anonymous_tag_65_66 ____mbstate_t_69;// L82:L94 +struct ____anonymous_tag_70_71 { +____off_t_23 ____pos_72;// L0 +____mbstate_t_69 ____state_74;// L0 +}; +typedef struct ____anonymous_tag_70_71 ___G_fpos_t_77;// L21:L25 +struct ____anonymous_tag_78_79 { +____off64_t_24 ____pos_80;// L0 +____mbstate_t_69 ____state_82;// L0 +}; +typedef struct ____anonymous_tag_78_79 ___G_fpos64_t_85;// L26:L30 +typedef __builtin_va_list ____gnuc_va_list_86;// L40 +typedef void ___IO_lock_t_88;// L150 +struct ___IO_marker_90 { +struct __forward_tag_reference_89 * (___next_91);// L0 +struct __forward_tag_reference_58 * (___sbuf_92);// L0 +int ___pos_93;// L162 +}; +enum ____codecvt_result_98 { +____codecvt_ok_94, +____codecvt_partial_95, +____codecvt_error_96, +____codecvt_noconv_97, +}; +struct ___IO_FILE_99 { +int ___flags_100;// L242 +char * (___IO_read_ptr_101);// L247 +char * (___IO_read_end_102);// L248 +char * (___IO_read_base_103);// L249 +char * (___IO_write_base_104);// L250 +char * (___IO_write_ptr_105);// L251 +char * (___IO_write_end_106);// L252 +char * (___IO_buf_base_107);// L253 +char * (___IO_buf_end_108);// L254 +char * (___IO_save_base_109);// L256 +char * (___IO_backup_base_110);// L257 +char * (___IO_save_end_111);// L258 +struct ___IO_marker_90 * (___markers_112);// L260 +struct __forward_tag_reference_58 * (___chain_113);// L0 +int ___fileno_114;// L264 +int ___flags2_115;// L268 +____off_t_23 ___old_offset_116;// L0 +unsigned short ___cur_column_118;// L274 +signed char ___vtable_offset_119;// L275 +char ___shortbuf_120[1];// L276 +___IO_lock_t_88 * (___lock_121);// L0 +}; +struct ___IO_FILE_124 { +int ___flags_125;// L242 +char * (___IO_read_ptr_126);// L247 +char * (___IO_read_end_127);// L248 +char * (___IO_read_base_128);// L249 +char * (___IO_write_base_129);// L250 +char * (___IO_write_ptr_130);// L251 +char * (___IO_write_end_131);// L252 +char * (___IO_buf_base_132);// L253 +char * (___IO_buf_end_133);// L254 +char * (___IO_save_base_134);// L256 +char * (___IO_backup_base_135);// L257 +char * (___IO_save_end_136);// L258 +struct ___IO_marker_90 * (___markers_137);// L260 +struct __forward_tag_reference_58 * (___chain_138);// L0 +int ___fileno_139;// L264 +int ___flags2_140;// L268 +____off_t_23 ___old_offset_141;// L0 +unsigned short ___cur_column_143;// L274 +signed char ___vtable_offset_144;// L275 +char ___shortbuf_145[1];// L276 +___IO_lock_t_88 * (___lock_146);// L0 +____off64_t_24 ___offset_148;// L0 +void * (____pad1_150);// L297 +void * (____pad2_151);// L298 +void * (____pad3_152);// L299 +void * (____pad4_153);// L300 +__size_t_1 ____pad5_154;// L0 +int ___mode_155;// L303 +char ___unused2_156[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +}; +struct ___IO_FILE_complete_157 { +struct ___IO_FILE_99 ___file_158;// L286 +____off64_t_24 ___offset_160;// L0 +void * (____pad1_162);// L297 +void * (____pad2_163);// L298 +void * (____pad3_164);// L299 +void * (____pad4_165);// L300 +__size_t_1 ____pad5_166;// L0 +int ___mode_167;// L303 +char ___unused2_168[15 * sizeof(int) - 4 * sizeof(void*) - sizeof(unsigned long)];// L305 +}; +typedef struct ___IO_FILE_99 ___IO_FILE_171;// L310 +typedef struct ___IO_FILE_124 ___IO_FILE_172;// L310 +typedef ____ssize_t_49 (____io_read_fn_181) (void * (____cookie_178), char * (____buf_179), __size_t_1 ____nbytes_180);// L333 +typedef ____ssize_t_49 (____io_write_fn_186) (void * (____cookie_183), const char * (____buf_184), __size_t_1 ____n_185);// L341:L342 +typedef int (____io_seek_fn_192) (void * (____cookie_188), ____off64_t_24 * (____pos_189), int ____w_191);// L350 +typedef int (____io_close_fn_195) (void * (____cookie_194));// L353 +typedef ____gnuc_va_list_86 __va_list_279;// L79 +typedef ____off_t_23 __off_t_281;// L90 +typedef ____off64_t_24 __off_t_283;// L92 +typedef ____ssize_t_49 __ssize_t_285;// L102 +typedef ___G_fpos_t_77 __fpos_t_287;// L110 +typedef ___G_fpos64_t_85 __fpos_t_289;// L112 +extern const char * const __sys_errlist_830[];// L27 + +struct __forward_tag_reference_89 { // generated union of struct variations +union { +struct ___IO_marker_90 ___IO_marker_90; +}; +}; + +struct __forward_tag_reference_58 { // generated union of struct variations +union { +struct ___IO_FILE_99 ___IO_FILE_99; +struct ___IO_FILE_124 ___IO_FILE_124; +}; +}; + +struct __forward_tag_reference_87 { // generated union of struct variations +union { +}; +}; + +struct __forward_tag_reference_174 { // generated union of struct variations +union { +}; +}; + +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +struct __forward_tag_reference_58 ;// L0 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +struct __forward_tag_reference_87 ;// L0 +struct __forward_tag_reference_87 ;// L0 +struct __forward_tag_reference_58 ;// L0 +// typedef moved to top of scope +struct ___IO_marker_90 ;// L156 +enum ____codecvt_result_98 ;// L176 +struct ___IO_FILE_99 ;// L241 + +struct ___IO_FILE_124 ;// L241 +struct ___IO_FILE_complete_157 ;// L241 + +// typedef moved to top of scope +// typedef moved to top of scope +struct __forward_tag_reference_174 ;// L0 +extern struct __forward_tag_reference_174 ___IO_2_1_stdin__175;// L315 +extern struct __forward_tag_reference_174 ___IO_2_1_stdout__176;// L316 +extern struct __forward_tag_reference_174 ___IO_2_1_stderr__177;// L317 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern int (____underflow_196) (___IO_FILE_171 *);// L385 +extern int (____underflow_197) (___IO_FILE_172 *);// L385 +extern int (____uflow_199) (___IO_FILE_171 *);// L386 +extern int (____uflow_200) (___IO_FILE_172 *);// L386 +extern int (____overflow_202) (___IO_FILE_171 *, int );// L387 +extern int (____overflow_203) (___IO_FILE_172 *, int );// L387 +extern int (___IO_getc_208) (___IO_FILE_171 * (____fp_205));// L429 +extern int (___IO_getc_209) (___IO_FILE_172 * (____fp_206));// L429 +extern int (___IO_putc_215) (int ____c_211, ___IO_FILE_171 * (____fp_212));// L430 +extern int (___IO_putc_216) (int ____c_211, ___IO_FILE_172 * (____fp_213));// L430 +extern int (___IO_feof_221) (___IO_FILE_171 * (____fp_218));// L431 +extern int (___IO_feof_222) (___IO_FILE_172 * (____fp_219));// L431 +extern int (___IO_ferror_227) (___IO_FILE_171 * (____fp_224));// L432 +extern int (___IO_ferror_228) (___IO_FILE_172 * (____fp_225));// L432 +extern int (___IO_peekc_locked_233) (___IO_FILE_171 * (____fp_230));// L434 +extern int (___IO_peekc_locked_234) (___IO_FILE_172 * (____fp_231));// L434 +extern void (___IO_flockfile_236) (___IO_FILE_171 *);// L440 +extern void (___IO_flockfile_237) (___IO_FILE_172 *);// L440 +extern void (___IO_funlockfile_239) (___IO_FILE_171 *);// L441 +extern void (___IO_funlockfile_240) (___IO_FILE_172 *);// L441 +extern int (___IO_ftrylockfile_242) (___IO_FILE_171 *);// L442 +extern int (___IO_ftrylockfile_243) (___IO_FILE_172 *);// L442 +extern int (___IO_vfscanf_245) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_247) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_251) (___IO_FILE_171 * __restrict , const char * __restrict , int * __restrict );// L459:L460 +extern int (___IO_vfscanf_252) (___IO_FILE_172 * __restrict , const char * __restrict , int * __restrict );// L459:L460 +extern int (___IO_vfprintf_254) (___IO_FILE_171 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 +extern int (___IO_vfprintf_256) (___IO_FILE_172 * __restrict , const char * __restrict , ____gnuc_va_list_86 );// L461:L462 +extern int (___IO_vfprintf_260) ();// L461:L462 +extern ____ssize_t_49 (___IO_padn_261) (___IO_FILE_171 *, int , ____ssize_t_49 );// L463 +extern ____ssize_t_49 (___IO_padn_262) (___IO_FILE_172 *, int , ____ssize_t_49 );// L463 +extern __size_t_1 (___IO_sgetn_265) (___IO_FILE_171 *, void *, __size_t_1 );// L464 +extern __size_t_1 (___IO_sgetn_266) (___IO_FILE_172 *, void *, __size_t_1 );// L464 +extern ____off64_t_24 (___IO_seekoff_268) (___IO_FILE_171 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekoff_269) (___IO_FILE_172 *, ____off64_t_24 , int , int );// L466 +extern ____off64_t_24 (___IO_seekpos_272) (___IO_FILE_171 *, ____off64_t_24 , int );// L467 +extern ____off64_t_24 (___IO_seekpos_273) (___IO_FILE_172 *, ____off64_t_24 , int );// L467 +extern void (___IO_free_backup_area_276) (___IO_FILE_171 *);// L469 +extern void (___IO_free_backup_area_277) (___IO_FILE_172 *);// L469 +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +// typedef moved to top of scope +extern struct ___IO_FILE_99 * (__stdin_291);// L168 +extern struct ___IO_FILE_124 * (__stdin_292);// L168 +extern struct ___IO_FILE_99 * (__stdout_294);// L169 +extern struct ___IO_FILE_124 * (__stdout_295);// L169 +extern struct ___IO_FILE_99 * (__stderr_297);// L170 +extern struct ___IO_FILE_124 * (__stderr_298);// L170 +extern int (__remove_301) (const char * (____filename_300));// L178 +extern int (__rename_304) (const char * (____old_302), const char * (____new_303));// L180 +extern int (__renameat_309) (int ____oldfd_305, const char * (____old_306), int ____newfd_307, const char * (____new_308));// L185:L186 +extern __FILE_59 * ((__tmpfile_310) (void ));// L195 +extern __FILE_59 * ((__tmpfile_316) (void ));// L198 +extern __FILE_59 * ((__tmpfile_314) (void ));// L195 +extern __FILE_59 * ((__tmpfile_312) (void ));// L198 +extern char * ((__tmpnam_319) (char * (____s_318)));// L209 +extern char * ((__tmpnam_320) (char * (____s_318)));// L209 +extern char * ((__tmpnam_r_322) (char * (____s_321)));// L215 +extern char * ((__tmpnam_r_323) (char * (____s_321)));// L215 +extern char * ((__tempnam_326) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 +extern char * ((__tempnam_327) (const char * (____dir_324), const char * (____pfx_325)));// L227:L228 +extern int (__fclose_330) (__FILE_59 * (____stream_328));// L237 +extern int (__fclose_332) (__FILE_59 * (____stream_328));// L237 +extern int (__fflush_336) (__FILE_59 * (____stream_334));// L242 +extern int (__fflush_unlocked_340) (__FILE_59 * (____stream_338));// L252 +extern __FILE_59 * ((__fopen_344) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 +extern __FILE_59 * ((__fopen_346) (const char * __restrict ____filename_342, const char * __restrict ____modes_343));// L272:L273 +extern __FILE_59 * ((__fopen_354) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 +extern __FILE_59 * ((__fopen_356) (const char * __restrict ____filename_352, const char * __restrict ____modes_353));// L283:L285 +extern __FILE_59 * ((__freopen_362) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 +extern __FILE_59 * ((__freopen_368) (const char * __restrict ____filename_348, const char * __restrict ____modes_349, __FILE_59 * __restrict ____stream_350));// L278:L280 +extern __FILE_59 * ((__freopen_366) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 +extern __FILE_59 * ((__freopen_364) (const char * __restrict ____filename_358, const char * __restrict ____modes_359, __FILE_59 * __restrict ____stream_360));// L286:L289 +extern __FILE_59 * ((__fdopen_372) (int ____fd_370, const char * (____modes_371)));// L306 +extern __FILE_59 * ((__fdopen_374) (int ____fd_370, const char * (____modes_371)));// L306 +extern __FILE_59 * ((__fmemopen_379) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 +extern __FILE_59 * ((__fmemopen_381) (void * (____s_376), __size_t_1 ____len_377, const char * (____modes_378)));// L319:L320 +extern __FILE_59 * ((__open_memstream_385) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 +extern __FILE_59 * ((__open_memstream_387) (char * (* (____bufloc_383)), __size_t_1 * (____sizeloc_384)));// L325 +extern void (__setbuf_392) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 +extern void (__setbuf_394) (__FILE_59 * __restrict ____stream_389, char * __restrict ____buf_391);// L332 +extern int (__setvbuf_401) (__FILE_59 * __restrict ____stream_396, char * __restrict ____buf_398, int ____modes_399, __size_t_1 ____n_400);// L336:L337 +extern void (__setbuffer_407) (__FILE_59 * __restrict ____stream_403, char * __restrict ____buf_405, __size_t_1 ____size_406);// L343:L344 +extern void (__setlinebuf_411) (__FILE_59 * (____stream_409));// L347 +extern int (__fprintf_416) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 +extern int (__fprintf_418) (__FILE_59 * __restrict ____stream_413, const char * __restrict ____format_415, ... );// L356:L357 +extern int (__printf_421) (const char * __restrict ____format_420, ... );// L362 +extern int (__sprintf_424) (char * __restrict ____s_422, const char * __restrict ____format_423, ... );// L364:L365 +extern int (__vfprintf_430) (__FILE_59 * __restrict ____s_425, const char * __restrict ____format_427, ____gnuc_va_list_86 ____arg_428);// L371:L372 +extern int (__vprintf_437) (const char * __restrict ____format_434, ____gnuc_va_list_86 ____arg_435);// L377 +extern int (__vsprintf_443) (char * __restrict ____s_439, const char * __restrict ____format_440, ____gnuc_va_list_86 ____arg_441);// L379:L380 +extern int (__snprintf_448) (char * __restrict ____s_445, __size_t_1 ____maxlen_446, const char * __restrict ____format_447, ... );// L386:L388 +extern int (__vsnprintf_454) (char * __restrict ____s_449, __size_t_1 ____maxlen_450, const char * __restrict ____format_451, ____gnuc_va_list_86 ____arg_452);// L390:L392 +extern int (__vdprintf_460) (int ____fd_456, const char * __restrict ____fmt_457, ____gnuc_va_list_86 ____arg_458);// L412:L414 +extern int (__dprintf_464) (int ____fd_462, const char * __restrict ____fmt_463, ... );// L415:L416 +extern int (__fscanf_468) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_470) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_472) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__fscanf_474) (__FILE_59 * __restrict ____stream_465, const char * __restrict ____format_467, ... );// L425:L426 +extern int (__scanf_477) (const char * __restrict ____format_476, ... );// L431 +extern int (__scanf_478) (const char * __restrict ____format_476, ... );// L431 +extern int (__sscanf_481) (const char * __restrict ____s_479, const char * __restrict ____format_480, ... );// L433:L434 + + + + + + + +extern int (__vfscanf_509) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 +extern int (__vfscanf_513) (__FILE_59 * __restrict ____s_504, const char * __restrict ____format_506, ____gnuc_va_list_86 ____arg_507);// L471:L473 +extern int (__vscanf_520) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 +extern int (__vscanf_522) (const char * __restrict ____format_517, ____gnuc_va_list_86 ____arg_518);// L479:L480 +extern int (__vsscanf_528) (const char * __restrict ____s_524, const char * __restrict ____format_525, ____gnuc_va_list_86 ____arg_526);// L483:L485 + + + + + +extern int (__fgetc_563) (__FILE_59 * (____stream_561));// L531 +extern int (__getc_567) (__FILE_59 * (____stream_565));// L532 +extern int (__getchar_569) (void );// L538 +extern int (__getc_unlocked_572) (__FILE_59 * (____stream_570));// L550 +extern int (__getchar_unlocked_574) (void );// L551 +extern int (__fgetc_unlocked_577) (__FILE_59 * (____stream_575));// L561 +extern int (__fputc_582) (int ____c_579, __FILE_59 * (____stream_580));// L573 +extern int (__fputc_584) (int ____c_579, __FILE_59 * (____stream_580));// L573 +extern int (__putc_589) (int ____c_586, __FILE_59 * (____stream_587));// L574 +extern int (__putchar_592) (int ____c_591);// L580 +extern int (__fputc_unlocked_596) (int ____c_593, __FILE_59 * (____stream_594));// L594 +extern int (__putc_unlocked_601) (int ____c_598, __FILE_59 * (____stream_599));// L602 +extern int (__putchar_unlocked_604) (int ____c_603);// L603 +extern int (__getw_607) (__FILE_59 * (____stream_605));// L610 +extern int (__putw_612) (int ____w_609, __FILE_59 * (____stream_610));// L613 +extern char * ((__fgets_618) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_620) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_622) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern char * ((__fgets_624) (char * __restrict ____s_614, int ____n_615, __FILE_59 * __restrict ____stream_616));// L622:L623 +extern ____ssize_t_49 (____getdelim_631) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 +extern ____ssize_t_49 (____getdelim_635) (char * (* __restrict ____lineptr_626), __size_t_1 * __restrict ____n_627, int ____delimiter_628, __FILE_59 * __restrict ____stream_629);// L665:L667 +extern ____ssize_t_49 (__getdelim_644) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 +extern ____ssize_t_49 (__getdelim_648) (char * (* __restrict ____lineptr_639), __size_t_1 * __restrict ____n_640, int ____delimiter_641, __FILE_59 * __restrict ____stream_642);// L668:L670 +extern ____ssize_t_49 (__getline_656) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 +extern ____ssize_t_49 (__getline_660) (char * (* __restrict ____lineptr_652), __size_t_1 * __restrict ____n_653, __FILE_59 * __restrict ____stream_654);// L678:L680 +extern int (__fputs_667) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 +extern int (__fputs_669) (const char * __restrict ____s_664, __FILE_59 * __restrict ____stream_665);// L689 +extern int (__puts_672) (const char * (____s_671));// L695 +extern int (__ungetc_676) (int ____c_673, __FILE_59 * (____stream_674));// L702 +extern int (__fseek_714) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 +extern int (__fseek_716) (__FILE_59 * (____stream_710), long int ____off_712, int ____whence_713);// L749 +extern long int (__ftell_720) (__FILE_59 * (____stream_718));// L754 +extern long int (__ftell_722) (__FILE_59 * (____stream_718));// L754 +extern void (__rewind_726) (__FILE_59 * (____stream_724));// L759 +extern int (__fseeko_733) (__FILE_59 * (____stream_728), ____off_t_23 ____off_730, int ____whence_732);// L773 +extern int (__fseeko_744) (__FILE_59 * (____stream_739), ____off64_t_24 ____off_741, int ____whence_743);// L781:L783 +extern ____off_t_23 (__ftello_758) (__FILE_59 * (____stream_737));// L778 +extern ____off_t_23 (__ftello_750) (__FILE_59 * (____stream_737));// L778 +extern int (__fgetpos_766) (__FILE_59 * __restrict ____stream_762, __fpos_t_287 * __restrict ____pos_764);// L798 +extern ____off64_t_24 (__ftello_754) (__FILE_59 * (____stream_748));// L784 +extern int (__fgetpos_778) (__FILE_59 * __restrict ____stream_774, __fpos_t_289 * __restrict ____pos_776);// L806:L807 +extern int (__fsetpos_786) (__FILE_59 * (____stream_770), const __fpos_t_287 * (____pos_772));// L803 +extern int (__fsetpos_790) (__FILE_59 * (____stream_782), const __fpos_t_289 * (____pos_784));// L808:L809 +extern void (__clearerr_796) (__FILE_59 * (____stream_794));// L826 +extern int (__feof_800) (__FILE_59 * (____stream_798));// L828 +extern int (__feof_802) (__FILE_59 * (____stream_798));// L828 +extern int (__ferror_806) (__FILE_59 * (____stream_804));// L830 +extern int (__ferror_808) (__FILE_59 * (____stream_804));// L830 +extern void (__clearerr_unlocked_812) (__FILE_59 * (____stream_810));// L835 +extern int (__feof_unlocked_816) (__FILE_59 * (____stream_814));// L836 +extern int (__feof_unlocked_818) (__FILE_59 * (____stream_814));// L836 +extern int (__ferror_unlocked_822) (__FILE_59 * (____stream_820));// L837 +extern int (__ferror_unlocked_824) (__FILE_59 * (____stream_820));// L837 +extern void (__perror_827) (const char * (____s_826));// L846 +extern void (__perror_828) (const char * (____s_826));// L846 +extern int __sys_nerr_829;// L26 + +extern int (__fileno_835) (__FILE_59 * (____stream_831));// L858 +extern int (__fileno_833) (__FILE_59 * (____stream_831));// L858 +extern int (__fileno_unlocked_841) (__FILE_59 * (____stream_837));// L863 +extern int (__fileno_unlocked_839) (__FILE_59 * (____stream_837));// L863 +extern __FILE_59 * ((__popen_845) (const char * (____command_843), const char * (____modes_844)));// L872 +extern __FILE_59 * ((__popen_847) (const char * (____command_843), const char * (____modes_844)));// L872 +extern int (__pclose_851) (__FILE_59 * (____stream_849));// L878 +extern char * ((__ctermid_854) (char * (____s_853)));// L884 +extern void (__flockfile_857) (__FILE_59 * (____stream_855));// L912 +extern int (__ftrylockfile_861) (__FILE_59 * (____stream_859));// L916 +extern int (__ftrylockfile_863) (__FILE_59 * (____stream_859));// L916 +extern void (__funlockfile_867) (__FILE_59 * (____stream_865));// L919 +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +extern int (____sprintf_chk_899) (char * __restrict ____s_895, int ____flag_896, __size_t_1 ____slen_897, const char * __restrict ____format_898, ... );// L23:L24 +extern int (____vsprintf_chk_906) (char * __restrict ____s_900, int ____flag_901, __size_t_1 ____slen_902, const char * __restrict ____format_903, ____gnuc_va_list_86 ____ap_904);// L25:L27 +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +extern int (____snprintf_chk_920) (char * __restrict ____s_915, __size_t_1 ____n_916, int ____flag_917, __size_t_1 ____slen_918, const char * __restrict ____format_919, ... );// L52:L54 +extern int (____vsnprintf_chk_928) (char * __restrict ____s_921, __size_t_1 ____n_922, int ____flag_923, __size_t_1 ____slen_924, const char * __restrict ____format_925, ____gnuc_va_list_86 ____ap_926);// L55:L57 +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +extern int (____fprintf_chk_943) (__FILE_59 * __restrict ____stream_939, int ____flag_941, const char * __restrict ____format_942, ... );// L85:L86 +extern int (____printf_chk_947) (int ____flag_945, const char * __restrict ____format_946, ... );// L87 +extern int (____vfprintf_chk_954) (__FILE_59 * __restrict ____stream_948, int ____flag_950, const char * __restrict ____format_951, ____gnuc_va_list_86 ____ap_952);// L88:L89 +extern int (____vprintf_chk_962) (int ____flag_958, const char * __restrict ____format_959, ____gnuc_va_list_86 ____ap_960);// L90:L91 +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +extern int (____dprintf_chk_984) (int ____fd_981, int ____flag_982, const char * __restrict ____fmt_983, ... );// L131:L132 +extern int (____vdprintf_chk_990) (int ____fd_985, int ____flag_986, const char * __restrict ____fmt_987, ____gnuc_va_list_86 ____arg_988);// L133:L135 +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +extern char * ((____fgets_chk_1004) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_chk_1006) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_chk_1008) (char * __restrict ____s_999, __size_t_1 ____size_1000, int ____n_1001, __FILE_59 * __restrict ____stream_1002));// L241:L242 +extern char * ((____fgets_alias_1014) (char * __restrict ____s_1010, int ____n_1011, __FILE_59 * __restrict ____stream_1012));// L243:L245 +extern char * ((____fgets_chk_warn_1021) (char * __restrict ____s_1016, __size_t_1 ____size_1017, int ____n_1018, __FILE_59 * __restrict ____stream_1019));// L246:L250 +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +/* no function due to type errors in the function prototype */ +void (__status_handler_1094) () { + +if (__static_condition_default_1097) { + +{// L4 +{ + + + +long __x_1092= 2147483644;// L5 + +long __y_1093= 2147483645;// L6 + +if (__static_condition_default_1098) { + __printf_421 ("%f %ld",( long ) __x_1092 ,( long ) __y_1093 ) ; // L9:L14 +} +if (__static_condition_default_1099) { + __printf_421 ("%ld %ld",( long ) __x_1092 ,( long ) __y_1093 ) ; // L11:L14 +} +} +}// L15 + + +} +} +void (__status_handler_1095) () { + +if (__static_condition_default_1100) { + +{// L4 +{ + + + +long __x_1092= 2147483644;// L5 + +long __y_1093= 2147483645;// L6 + +if (__static_condition_default_1101) { + __printf_421 ("%f %ld",( long ) __x_1092 ,( long ) __y_1093 ) ; // L9:L14 +} +if (__static_condition_default_1102) { + __printf_421 ("%ld %ld",( long ) __x_1092 ,( long ) __y_1093 ) ; // L11:L14 +} +} +}// L15 + + +} +} +void (__status_handler_1096) () { + +if (__static_condition_default_1103) { + +{// L4 +{ + + + +long __x_1092= 2147483644;// L5 + +long __y_1093= 2147483645;// L6 + +if (__static_condition_default_1104) { +__static_type_error("type error") ; // L9:L14 +} +if (__static_condition_default_1105) { +__static_type_error("type error") ; // L11:L14 +} +} +}// L15 + + +} +} +void (__register_hooks_1106) () { + +{// L18 +{ + + + +if (__static_condition_default_1107) { + __status_handler_1094 ( ) ; // L19 +} +if (__static_condition_default_1108) { + __status_handler_1095 ( ) ; // L19 +} +if (__static_condition_default_1103) { + __status_handler_1096 ( ) ; // L19 +} +} +}// L20 + + +} +int (__main_1109) (void ) { + +{// L23 +{ + + + + __register_hooks_1106 ( ) ; // L24 +return 0 ;// L25 +} +}// L26 + + +} + diff --git a/fonda/cpp_testsuite/varBugs/APACHE/b833f064550.desugared.clangres b/fonda/cpp_testsuite/varBugs/APACHE/b833f064550.desugared.clangres new file mode 100644 index 00000000..e4923c47 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/b833f064550.desugared.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/b833f064550.desugared.inferres b/fonda/cpp_testsuite/varBugs/APACHE/b833f064550.desugared.inferres new file mode 100644 index 00000000..11be972e --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/APACHE/b833f064550.desugared.inferres @@ -0,0 +1,2 @@ + + No issues found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/bbeb0516cf0.clangres b/fonda/cpp_testsuite/varBugs/APACHE/bbeb0516cf0.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/bbeb0516cf0.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/bbeb0516cf0.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/bbeb0516cf0.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/bbeb0516cf0.desugared.c index ca6dcc64..e743dcb0 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/bbeb0516cf0.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/bbeb0516cf0.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -9,86 +10,86 @@ void __static_initializer_default(); extern const bool __static_condition_default_246; extern const bool __static_condition_default_394; -extern const bool __static_condition_default_1097; extern const bool __static_condition_default_341; extern const bool __static_condition_default_67; -extern const bool __static_condition_default_1037; extern const bool __static_condition_default_249; +extern const bool __static_condition_default_1047; extern const bool __static_condition_default_261; +extern const bool __static_condition_default_1024; +extern const bool __static_condition_default_1093; extern const bool __static_condition_default_627; -extern const bool __static_condition_default_1047; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_1073; extern const bool __static_condition_default_243; -extern const bool __static_condition_default_604; -extern const bool __static_condition_default_621; +extern const bool __static_condition_default_1082; +extern const bool __static_condition_default_623; extern const bool __static_condition_default_426; -extern const bool __static_condition_default_1024; +extern const bool __static_condition_default_1053; extern const bool __static_condition_default_237; +extern const bool __static_condition_default_1087; extern const bool __static_condition_default_423; -extern const bool __static_condition_default_819; extern const bool __static_condition_default_293; extern const bool __static_condition_default_361; -extern const bool __static_condition_default_736; +extern const bool __static_condition_default_594; extern const bool __static_condition_default_267; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_1077; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_818; -extern const bool __static_condition_default_1082; -extern const bool __static_condition_default_804; +extern const bool __static_condition_default_1088; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_595; extern const bool __static_condition_default_1074; +extern const bool __static_condition_default_629; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_1054; +extern const bool __static_condition_default_1077; +extern const bool __static_condition_default_1073; extern const bool __static_condition_default_258; extern const bool __static_condition_default_240; -extern const bool __static_condition_default_1054; -extern const bool __static_condition_default_349; -extern const bool __static_condition_default_594; extern const bool __static_condition_default_1025; -extern const bool __static_condition_default_806; +extern const bool __static_condition_default_1048; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_1097; +extern const bool __static_condition_default_349; +extern const bool __static_condition_default_1037; +extern const bool __static_condition_default_1094; extern const bool __static_condition_default_276; -extern const bool __static_condition_default_1092; extern const bool __static_condition_default_414; extern const bool __static_condition_default_417; -extern const bool __static_condition_default_1053; +extern const bool __static_condition_default_604; +extern const bool __static_condition_default_1031; extern const bool __static_condition_default_285; extern const bool __static_condition_default_273; extern const bool __static_condition_default_432; -extern const bool __static_condition_default_1030; extern const bool __static_condition_default_325; extern const bool __static_condition_default_255; -extern const bool __static_condition_default_1048; extern const bool __static_condition_default_579; +extern const bool __static_condition_default_804; extern const bool __static_condition_default_296; -extern const bool __static_condition_default_805; +extern const bool __static_condition_default_819; extern const bool __static_condition_default_305; extern const bool __static_condition_default_379; -extern const bool __static_condition_default_1031; extern const bool __static_condition_default_288; extern const bool __static_condition_default_302; extern const bool __static_condition_default_581; -extern const bool __static_condition_default_1087; +extern const bool __static_condition_default_1092; extern const bool __static_condition_default_308; -extern const bool __static_condition_default_595; +extern const bool __static_condition_default_621; extern const bool __static_condition_default_60; extern const bool __static_condition_default_378; -extern const bool __static_condition_default_1094; extern const bool __static_condition_default_1083; extern const bool __static_condition_default_252; extern const bool __static_condition_default_420; -extern const bool __static_condition_default_1093; +extern const bool __static_condition_default_805; extern const bool __static_condition_default_299; -extern const bool __static_condition_default_629; extern const bool __static_condition_default_352; +extern const bool __static_condition_default_806; extern const bool __static_condition_default_264; extern const bool __static_condition_default_395; extern const bool __static_condition_default_279; extern const bool __static_condition_default_282; extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_1088; -extern const bool __static_condition_default_429; extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_429; +extern const bool __static_condition_default_1030; extern const bool __static_condition_default_215; extern const bool __static_condition_default_234; +extern const bool __static_condition_default_818; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -1040,14 +1041,14 @@ static __inline unsigned int (____bswap_32_66) (unsigned int ____bsx_65) { if (__static_condition_default_67) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -1056,14 +1057,14 @@ static __inline ____uint64_t_20 (____bswap_64_69) (____uint64_t_20 ____bsx_68) if (__static_condition_default_67) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -1236,14 +1237,14 @@ static __inline unsigned int (____bswap_32_324) (unsigned int ____bsx_323) { if (__static_condition_default_325) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -1252,14 +1253,14 @@ static __inline ____uint64_t_175 (____bswap_64_327) (____uint64_t_175 ____bsx_ if (__static_condition_default_325) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -1532,14 +1533,14 @@ void (__cgi_bucket_create_1085) (char * (__r_1084)) { if (__static_condition_default_1087) { -{ +{// L5 { __strcat_851 ( __r_1084 ,"something") ; // L6 } -} +}// L7 } @@ -1548,14 +1549,14 @@ void (__cgi_bucket_create_1086) (char * (__r_1084)) { if (__static_condition_default_1088) { -{ +{// L5 { __static_type_error("type error") ; // L6 } -} +}// L7 } @@ -1565,20 +1566,20 @@ void (__cgi_handler_1090) (char * (__r_1089)) { { if (__static_condition_default_1091) { -{ +{// L10 { } -} +}// L14 } if (__static_condition_default_1092) { -{ +{// L10 { @@ -1590,7 +1591,7 @@ if (__static_condition_default_1094) { __cgi_bucket_create_1086 ( __r_1089 ) ; // L12 } } -} +}// L14 } @@ -1598,7 +1599,7 @@ if (__static_condition_default_1094) { }} int (__main_1096) (void ) { -{ +{// L17 { @@ -1608,7 +1609,7 @@ char * (__r_1095)= ( ( void * ) 0 );// L18 __cgi_handler_1090 ( __r_1095 ) ; // L19 return 0 ;// L20 } -} +}// L21 } diff --git a/fonda/cpp_testsuite/varBugs/APACHE/bbeb0516cf0.desugared.clangres b/fonda/cpp_testsuite/varBugs/APACHE/bbeb0516cf0.desugared.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/bbeb0516cf0.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/bbeb0516cf0.desugared.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.clangres b/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.clangres index 8d078084..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.clangres @@ -1,5 +1 @@ -In file included from :344: -:2:8: error: 'defined' cannot be used as a macro name -#undef defined - ^ -1 error generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c index e1fafce7..75ed9445 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -15,31 +16,29 @@ extern const bool __static_condition_default_486; extern const bool __static_condition_default_488; extern const bool __static_condition_default_2039; extern const bool __static_condition_default_2040; -extern const bool __static_condition_default_2075; extern const bool __static_condition_default_819; extern const bool __static_condition_default_963; extern const bool __static_condition_default_355; extern const bool __static_condition_default_380; extern const bool __static_condition_default_914; -extern const bool __static_condition_default_2073; +extern const bool __static_condition_default_2060; extern const bool __static_condition_default_709; extern const bool __static_condition_default_583; extern const bool __static_condition_default_1720; extern const bool __static_condition_default_568; extern const bool __static_condition_default_1836; extern const bool __static_condition_default_290; -extern const bool __static_condition_default_2330; extern const bool __static_condition_default_649; extern const bool __static_condition_default_789; extern const bool __static_condition_default_345; extern const bool __static_condition_default_514; +extern const bool __static_condition_default_2073; extern const bool __static_condition_default_1009; extern const bool __static_condition_default_573; extern const bool __static_condition_default_753; extern const bool __static_condition_default_76; extern const bool __static_condition_default_337; extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_2335; extern const bool __static_condition_default_646; extern const bool __static_condition_default_541; extern const bool __static_condition_default_645; @@ -54,16 +53,15 @@ extern const bool __static_condition_default_791; extern const bool __static_condition_default_852; extern const bool __static_condition_default_1657; extern const bool __static_condition_default_1679; -extern const bool __static_condition_default_2339; +extern const bool __static_condition_default_2346; extern const bool __static_condition_default_1840; extern const bool __static_condition_default_608; +extern const bool __static_condition_default_2100; extern const bool __static_condition_default_395; +extern const bool __static_condition_default_2230; extern const bool __static_condition_default_972; extern const bool __static_condition_default_267; -extern const bool __static_condition_default_2338; -extern const bool __static_condition_default_2102; extern const bool __static_condition_default_938; -extern const bool __static_condition_default_2331; extern const bool __static_condition_default_1371; extern const bool __static_condition_default_1675; extern const bool __static_condition_default_1057; @@ -78,20 +76,22 @@ extern const bool __static_condition_default_1693; extern const bool __static_condition_default_223; extern const bool __static_condition_default_444; extern const bool __static_condition_default_491; +extern const bool __static_condition_default_2338; extern const bool __static_condition_default_1449; extern const bool __static_condition_default_543; +extern const bool __static_condition_default_2062; extern const bool __static_condition_default_84; +extern const bool __static_condition_default_2329; extern const bool __static_condition_default_651; extern const bool __static_condition_default_779; extern const bool __static_condition_default_2035; -extern const bool __static_condition_default_2100; +extern const bool __static_condition_default_2331; extern const bool __static_condition_default_250; extern const bool __static_condition_default_280; extern const bool __static_condition_default_1367; extern const bool __static_condition_default_553; extern const bool __static_condition_default_193; extern const bool __static_condition_default_494; -extern const bool __static_condition_default_2094; extern const bool __static_condition_default_647; extern const bool __static_condition_default_721; extern const bool __static_condition_default_756; @@ -124,16 +124,18 @@ extern const bool __static_condition_default_264; extern const bool __static_condition_default_499; extern const bool __static_condition_default_282; extern const bool __static_condition_default_544; +extern const bool __static_condition_default_2096; extern const bool __static_condition_default_661; +extern const bool __static_condition_default_2077; extern const bool __static_condition_default_288; extern const bool __static_condition_default_759; -extern const bool __static_condition_default_2342; extern const bool __static_condition_default_1050; extern const bool __static_condition_default_210; extern const bool __static_condition_default_752; extern const bool __static_condition_default_787; extern const bool __static_condition_default_979; extern const bool __static_condition_default_512; +extern const bool __static_condition_default_2333; extern const bool __static_condition_default_235; extern const bool __static_condition_default_1093; extern const bool __static_condition_default_341; @@ -161,11 +163,14 @@ extern const bool __static_condition_default_1331; extern const bool __static_condition_default_187; extern const bool __static_condition_default_173; extern const bool __static_condition_default_685; +extern const bool __static_condition_default_2059; extern const bool __static_condition_default_1704; +extern const bool __static_condition_default_2343; extern const bool __static_condition_default_602; extern const bool __static_condition_default_1743; extern const bool __static_condition_default_1073; extern const bool __static_condition_default_1324; +extern const bool __static_condition_default_2102; extern const bool __static_condition_default_840; extern const bool __static_condition_default_955; extern const bool __static_condition_default_536; @@ -176,11 +181,12 @@ extern const bool __static_condition_default_1436; extern const bool __static_condition_default_745; extern const bool __static_condition_default_894; extern const bool __static_condition_default_670; +extern const bool __static_condition_default_2330; extern const bool __static_condition_default_367; -extern const bool __static_condition_default_2341; extern const bool __static_condition_default_1325; extern const bool __static_condition_default_1318; extern const bool __static_condition_default_198; +extern const bool __static_condition_default_2345; extern const bool __static_condition_default_858; extern const bool __static_condition_default_650; extern const bool __static_condition_default_980; @@ -190,6 +196,7 @@ extern const bool __static_condition_default_201; extern const bool __static_condition_default_258; extern const bool __static_condition_default_663; extern const bool __static_condition_default_813; +extern const bool __static_condition_default_2341; extern const bool __static_condition_default_683; extern const bool __static_condition_default_715; extern const bool __static_condition_default_1712; @@ -198,7 +205,6 @@ extern const bool __static_condition_default_382; extern const bool __static_condition_default_846; extern const bool __static_condition_default_1042; extern const bool __static_condition_default_564; -extern const bool __static_condition_default_2332; extern const bool __static_condition_default_1072; extern const bool __static_condition_default_1848; extern const bool __static_condition_default_1856; @@ -207,20 +213,18 @@ extern const bool __static_condition_default_659; extern const bool __static_condition_default_868; extern const bool __static_condition_default_317; extern const bool __static_condition_default_1661; +extern const bool __static_condition_default_2342; extern const bool __static_condition_default_461; extern const bool __static_condition_default_862; extern const bool __static_condition_default_803; -extern const bool __static_condition_default_2060; extern const bool __static_condition_default_363; extern const bool __static_condition_default_693; extern const bool __static_condition_default_702; extern const bool __static_condition_default_271; extern const bool __static_condition_default_516; extern const bool __static_condition_default_998; -extern const bool __static_condition_default_2348; extern const bool __static_condition_default_293; extern const bool __static_condition_default_241; -extern const bool __static_condition_default_2347; extern const bool __static_condition_default_809; extern const bool __static_condition_default_523; extern const bool __static_condition_default_1099; @@ -231,7 +235,6 @@ extern const bool __static_condition_default_315; extern const bool __static_condition_default_1330; extern const bool __static_condition_default_1035; extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_2059; extern const bool __static_condition_default_331; extern const bool __static_condition_default_769; extern const bool __static_condition_default_217; @@ -246,33 +249,31 @@ extern const bool __static_condition_default_1377; extern const bool __static_condition_default_801; extern const bool __static_condition_default_1368; extern const bool __static_condition_default_658; +extern const bool __static_condition_default_2061; extern const bool __static_condition_default_365; extern const bool __static_condition_default_373; extern const bool __static_condition_default_735; -extern const bool __static_condition_default_2328; -extern const bool __static_condition_default_2334; extern const bool __static_condition_default_1007; extern const bool __static_condition_default_1759; extern const bool __static_condition_default_299; -extern const bool __static_condition_default_2077; extern const bool __static_condition_default_1645; extern const bool __static_condition_default_539; +extern const bool __static_condition_default_2336; extern const bool __static_condition_default_1637; extern const bool __static_condition_default_393; extern const bool __static_condition_default_2036; extern const bool __static_condition_default_1769; extern const bool __static_condition_default_275; -extern const bool __static_condition_default_2343; +extern const bool __static_condition_default_2332; extern const bool __static_condition_default_1672; extern const bool __static_condition_default_296; extern const bool __static_condition_default_1599; extern const bool __static_condition_default_286; +extern const bool __static_condition_default_2347; extern const bool __static_condition_default_701; extern const bool __static_condition_default_1348; -extern const bool __static_condition_default_2230; extern const bool __static_condition_default_311; extern const bool __static_condition_default_375; -extern const bool __static_condition_default_2329; extern const bool __static_condition_default_1043; extern const bool __static_condition_default_872; extern const bool __static_condition_default_1113; @@ -290,54 +291,53 @@ extern const bool __static_condition_default_357; extern const bool __static_condition_default_521; extern const bool __static_condition_default_781; extern const bool __static_condition_default_432; -extern const bool __static_condition_default_2061; extern const bool __static_condition_default_864; +extern const bool __static_condition_default_2337; extern const bool __static_condition_default_408; -extern const bool __static_condition_default_2346; +extern const bool __static_condition_default_2339; extern const bool __static_condition_default_780; extern const bool __static_condition_default_956; extern const bool __static_condition_default_1773; extern const bool __static_condition_default_1625; +extern const bool __static_condition_default_2334; +extern const bool __static_condition_default_2094; extern const bool __static_condition_default_274; -extern const bool __static_condition_default_2333; extern const bool __static_condition_default_1080; extern const bool __static_condition_default_1342; extern const bool __static_condition_default_347; extern const bool __static_condition_default_471; extern const bool __static_condition_default_473; -extern const bool __static_condition_default_2062; extern const bool __static_condition_default_662; extern const bool __static_condition_default_757; extern const bool __static_condition_default_1860; extern const bool __static_condition_default_1689; -extern const bool __static_condition_default_2344; extern const bool __static_condition_default_313; extern const bool __static_condition_default_1716; extern const bool __static_condition_default_1065; extern const bool __static_condition_default_1092; extern const bool __static_condition_default_1112; +extern const bool __static_condition_default_2348; extern const bool __static_condition_default_278; extern const bool __static_condition_default_708; -extern const bool __static_condition_default_2096; +extern const bool __static_condition_default_2344; extern const bool __static_condition_default_637; extern const bool __static_condition_default_1641; extern const bool __static_condition_default_1089; extern const bool __static_condition_default_590; extern const bool __static_condition_default_1347; extern const bool __static_condition_default_848; +extern const bool __static_condition_default_2075; extern const bool __static_condition_default_412; extern const bool __static_condition_default_613; extern const bool __static_condition_default_1682; extern const bool __static_condition_default_817; +extern const bool __static_condition_default_2328; extern const bool __static_condition_default_633; extern const bool __static_condition_default_1708; extern const bool __static_condition_default_1341; extern const bool __static_condition_default_621; -extern const bool __static_condition_default_2336; extern const bool __static_condition_default_549; -extern const bool __static_condition_default_2340; extern const bool __static_condition_default_248; -extern const bool __static_condition_default_2337; extern const bool __static_condition_default_257; extern const bool __static_condition_default_489; extern const bool __static_condition_default_727; @@ -349,12 +349,12 @@ extern const bool __static_condition_default_788; extern const bool __static_condition_default_1742; extern const bool __static_condition_default_623; extern const bool __static_condition_default_1844; +extern const bool __static_condition_default_2071; extern const bool __static_condition_default_747; extern const bool __static_condition_default_510; extern const bool __static_condition_default_878; extern const bool __static_condition_default_1319; extern const bool __static_condition_default_842; -extern const bool __static_condition_default_2345; extern const bool __static_condition_default_636; extern const bool __static_condition_default_469; extern const bool __static_condition_default_807; @@ -362,17 +362,18 @@ extern const bool __static_condition_default_875; extern const bool __static_condition_default_475; extern const bool __static_condition_default_1800; extern const bool __static_condition_default_1852; -extern const bool __static_condition_default_2071; extern const bool __static_condition_default_1665; extern const bool __static_condition_default_493; extern const bool __static_condition_default_825; extern const bool __static_condition_default_1027; extern const bool __static_condition_default_1700; +extern const bool __static_condition_default_2340; extern const bool __static_condition_default_123; extern const bool __static_condition_default_978; extern const bool __static_condition_default_761; extern const bool __static_condition_default_182; extern const bool __static_condition_default_699; +extern const bool __static_condition_default_2335; extern const bool __static_condition_default_515; extern const bool __static_condition_default_767; extern const bool __static_condition_default_632; @@ -2605,14 +2606,14 @@ static __inline unsigned int (____bswap_32_1442) (unsigned int ____bsx_1441) { if (__static_condition_default_1443) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -2621,14 +2622,14 @@ static __inline ____uint64_t_13 (____bswap_64_1446) (____uint64_t_13 ____bsx_1 if (__static_condition_default_1448) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2637,14 +2638,14 @@ static __inline ____uint64_t_1396 (____bswap_64_1447) (____uint64_t_1396 ____b if (__static_condition_default_1449) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2849,14 +2850,14 @@ static __inline unsigned int (____bswap_32_1736) (unsigned int ____bsx_1735) { if (__static_condition_default_1737) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -2865,14 +2866,14 @@ static __inline ____uint64_t_13 (____bswap_64_1740) (____uint64_t_13 ____bsx_1 if (__static_condition_default_1742) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2881,14 +2882,14 @@ static __inline ____uint64_t_1559 (____bswap_64_1741) (____uint64_t_1559 ____b if (__static_condition_default_1743) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -3118,7 +3119,7 @@ int (__main_2324) (void ) { if (__static_condition_default_2328) { -{ +{// L16 { @@ -3130,7 +3131,7 @@ unsigned char __flags_2323;// L18 for ( __c_2322 = 0 ; __c_2322 < 256 ; ++ __c_2322 )// L20 { -{ +{// L20 { @@ -3149,36 +3150,36 @@ if (__static_condition_default_2331) { if ( __c_2322 && __strchr_1199 ("&;`'\"|*?~<>^()[]{}$\\\n\r%", __c_2322 ) )// L37 { -{ +{// L37 { __flags_2323 |= ( 0x01 ) ; // L4:L38 } -} +}// L39 } } if (__static_condition_default_2332) { if ( __c_2322 && __strchr_1199 ("&;`'\"|*?~<>^()[]{}$\\\n", __c_2322 ) )// L37 { -{ +{// L41 { __flags_2323 |= ( 0x01 ) ; // L4:L42 } +}// L43 } } } -} -} +}// L45 } return 0 ;// L46 } -} +}// L47 } @@ -3187,7 +3188,7 @@ int (__main_2325) (void ) { if (__static_condition_default_2333) { -{ +{// L16 { @@ -3199,7 +3200,7 @@ unsigned char __flags_2323;// L18 for ( __c_2322 = 0 ; __c_2322 < 256 ; ++ __c_2322 )// L20 { -{ +{// L20 { @@ -3218,36 +3219,36 @@ if (__static_condition_default_2336) { if ( __c_2322 && __strchr_1199 ("&;`'\"|*?~<>^()[]{}$\\\n\r%", __c_2322 ) )// L37 { -{ +{// L37 { __flags_2323 |= ( 0x01 ) ; // L4:L38 } -} +}// L39 } } if (__static_condition_default_2337) { if ( __c_2322 && __strchr_1199 ("&;`'\"|*?~<>^()[]{}$\\\n", __c_2322 ) )// L37 { -{ +{// L41 { __flags_2323 |= ( 0x01 ) ; // L4:L42 } +}// L43 } } } -} -} +}// L45 } return 0 ;// L46 } -} +}// L47 } @@ -3256,7 +3257,7 @@ int (__main_2326) (void ) { if (__static_condition_default_2338) { -{ +{// L16 { @@ -3268,7 +3269,7 @@ unsigned char __flags_2323;// L18 for ( __c_2322 = 0 ; __c_2322 < 256 ; ++ __c_2322 )// L20 { -{ +{// L20 { @@ -3287,36 +3288,36 @@ if (__static_condition_default_2341) { if ( __c_2322 && __strchr_1199 ("&;`'\"|*?~<>^()[]{}$\\\n\r%", __c_2322 ) )// L37 { -{ +{// L37 { __flags_2323 |= ( 0x01 ) ; // L4:L38 } -} +}// L39 } } if (__static_condition_default_2342) { if ( __c_2322 && __strchr_1199 ("&;`'\"|*?~<>^()[]{}$\\\n", __c_2322 ) )// L37 { -{ +{// L41 { __flags_2323 |= ( 0x01 ) ; // L4:L42 } +}// L43 } } } -} -} +}// L45 } return 0 ;// L46 } -} +}// L47 } @@ -3325,7 +3326,7 @@ int (__main_2327) (void ) { if (__static_condition_default_2343) { -{ +{// L16 { @@ -3337,7 +3338,7 @@ unsigned char __flags_2323;// L18 for ( __c_2322 = 0 ; __c_2322 < 256 ; ++ __c_2322 )// L20 { -{ +{// L20 { @@ -3356,36 +3357,36 @@ if (__static_condition_default_2346) { if ( __c_2322 && __strchr_1199 ("&;`'\"|*?~<>^()[]{}$\\\n\r%", __c_2322 ) )// L37 { -{ +{// L37 { __flags_2323 |= ( 0x01 ) ; // L4:L38 } -} +}// L39 } } if (__static_condition_default_2347) { if ( __c_2322 && __strchr_1199 ("&;`'\"|*?~<>^()[]{}$\\\n", __c_2322 ) )// L37 { -{ +{// L41 { __flags_2323 |= ( 0x01 ) ; // L4:L42 } +}// L43 } } } -} -} +}// L45 } return 0 ;// L46 } -} +}// L47 } diff --git a/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.clangres b/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.clangres index 30a140cd..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.clangres @@ -1,13 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c:3171:2: warning: Value stored to '__flags_2323' is never read [deadcode.DeadStores] - __flags_2323 |= ( 0x01 ) ; // L4:L42 - ^ ~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c:3240:2: warning: Value stored to '__flags_2323' is never read [deadcode.DeadStores] - __flags_2323 |= ( 0x01 ) ; // L4:L42 - ^ ~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c:3309:2: warning: Value stored to '__flags_2323' is never read [deadcode.DeadStores] - __flags_2323 |= ( 0x01 ) ; // L4:L42 - ^ ~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c:3378:2: warning: Value stored to '__flags_2323' is never read [deadcode.DeadStores] - __flags_2323 |= ( 0x01 ) ; // L4:L42 - ^ ~~~~~~~~ -4 warnings generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.clangres b/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.clangres index 4465012c..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.clangres @@ -1,11 +1 @@ -In file included from :344: -:1:9: error: 'defined' cannot be used as a macro name -#define defined 1 - ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.c:11:3: error: use of undeclared identifier 'limits' - limits = (rand() % 2) ? 1 : 0; // ERROR: limits not declared - ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.c:12:16: error: use of undeclared identifier 'limits' - printf("%d", limits); - ^ -3 errors generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.desugared.c index 00d2990f..f568f916 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -11,15 +12,12 @@ extern const bool __static_condition_default_1028; extern const bool __static_condition_default_1365; extern const bool __static_condition_default_1475; extern const bool __static_condition_default_503; -extern const bool __static_condition_default_1816; extern const bool __static_condition_default_564; extern const bool __static_condition_default_1750; -extern const bool __static_condition_default_1775; extern const bool __static_condition_default_755; extern const bool __static_condition_default_834; extern const bool __static_condition_default_625; extern const bool __static_condition_default_1564; -extern const bool __static_condition_default_2049; extern const bool __static_condition_default_469; extern const bool __static_condition_default_76; extern const bool __static_condition_default_623; @@ -38,7 +36,8 @@ extern const bool __static_condition_default_846; extern const bool __static_condition_default_1568; extern const bool __static_condition_default_745; extern const bool __static_condition_default_235; -extern const bool __static_condition_default_1776; +extern const bool __static_condition_default_2045; +extern const bool __static_condition_default_2044; extern const bool __static_condition_default_649; extern const bool __static_condition_default_549; extern const bool __static_condition_default_1459; @@ -56,7 +55,6 @@ extern const bool __static_condition_default_259; extern const bool __static_condition_default_883; extern const bool __static_condition_default_1042; extern const bool __static_condition_default_878; -extern const bool __static_condition_default_2044; extern const bool __static_condition_default_284; extern const bool __static_condition_default_373; extern const bool __static_condition_default_123; @@ -99,33 +97,37 @@ extern const bool __static_condition_default_367; extern const bool __static_condition_default_709; extern const bool __static_condition_default_1385; extern const bool __static_condition_default_938; +extern const bool __static_condition_default_1775; extern const bool __static_condition_default_1165; extern const bool __static_condition_default_341; extern const bool __static_condition_default_461; extern const bool __static_condition_default_852; extern const bool __static_condition_default_1369; extern const bool __static_condition_default_1516; -extern const bool __static_condition_default_1787; extern const bool __static_condition_default_1353; extern const bool __static_condition_default_1357; extern const bool __static_condition_default_486; extern const bool __static_condition_default_419; -extern const bool __static_condition_default_2043; extern const bool __static_condition_default_1388; -extern const bool __static_condition_default_2048; +extern const bool __static_condition_default_2041; extern const bool __static_condition_default_253; extern const bool __static_condition_default_249; extern const bool __static_condition_default_1402; +extern const bool __static_condition_default_2040; extern const bool __static_condition_default_347; +extern const bool __static_condition_default_2049; extern const bool __static_condition_default_1341; +extern const bool __static_condition_default_1785; +extern const bool __static_condition_default_2048; extern const bool __static_condition_default_761; extern const bool __static_condition_default_836; extern const bool __static_condition_default_872; extern const bool __static_condition_default_963; extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_1810; +extern const bool __static_condition_default_2043; extern const bool __static_condition_default_686; extern const bool __static_condition_default_1398; -extern const bool __static_condition_default_1808; extern const bool __static_condition_default_258; extern const bool __static_condition_default_299; extern const bool __static_condition_default_717; @@ -136,7 +138,6 @@ extern const bool __static_condition_default_699; extern const bool __static_condition_default_529; extern const bool __static_condition_default_864; extern const bool __static_condition_default_779; -extern const bool __static_condition_default_1944; extern const bool __static_condition_default_645; extern const bool __static_condition_default_290; extern const bool __static_condition_default_512; @@ -145,14 +146,15 @@ extern const bool __static_condition_default_767; extern const bool __static_condition_default_1009; extern const bool __static_condition_default_296; extern const bool __static_condition_default_692; -extern const bool __static_condition_default_2039; extern const bool __static_condition_default_182; extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_1791; extern const bool __static_condition_default_1489; +extern const bool __static_condition_default_1808; extern const bool __static_condition_default_756; extern const bool __static_condition_default_1458; extern const bool __static_condition_default_238; -extern const bool __static_condition_default_1773; +extern const bool __static_condition_default_2046; extern const bool __static_condition_default_1424; extern const bool __static_condition_default_1572; extern const bool __static_condition_default_365; @@ -164,7 +166,6 @@ extern const bool __static_condition_default_395; extern const bool __static_condition_default_229; extern const bool __static_condition_default_264; extern const bool __static_condition_default_280; -extern const bool __static_condition_default_1810; extern const bool __static_condition_default_386; extern const bool __static_condition_default_723; extern const bool __static_condition_default_661; @@ -177,6 +178,7 @@ extern const bool __static_condition_default_282; extern const bool __static_condition_default_510; extern const bool __static_condition_default_585; extern const bool __static_condition_default_753; +extern const bool __static_condition_default_2039; extern const bool __static_condition_default_929; extern const bool __static_condition_default_515; extern const bool __static_condition_default_793; @@ -197,6 +199,7 @@ extern const bool __static_condition_default_734; extern const bool __static_condition_default_746; extern const bool __static_condition_default_288; extern const bool __static_condition_default_559; +extern const bool __static_condition_default_1789; extern const bool __static_condition_default_1560; extern const bool __static_condition_default_539; extern const bool __static_condition_default_663; @@ -205,12 +208,10 @@ extern const bool __static_condition_default_769; extern const bool __static_condition_default_497; extern const bool __static_condition_default_550; extern const bool __static_condition_default_634; -extern const bool __static_condition_default_2042; extern const bool __static_condition_default_246; extern const bool __static_condition_default_257; -extern const bool __static_condition_default_2040; extern const bool __static_condition_default_702; -extern const bool __static_condition_default_1785; +extern const bool __static_condition_default_1774; extern const bool __static_condition_default_173; extern const bool __static_condition_default_1416; extern const bool __static_condition_default_286; @@ -220,6 +221,7 @@ extern const bool __static_condition_default_491; extern const bool __static_condition_default_537; extern const bool __static_condition_default_979; extern const bool __static_condition_default_1043; +extern const bool __static_condition_default_1944; extern const bool __static_condition_default_311; extern const bool __static_condition_default_862; extern const bool __static_condition_default_1152; @@ -227,7 +229,6 @@ extern const bool __static_condition_default_1420; extern const bool __static_condition_default_608; extern const bool __static_condition_default_1050; extern const bool __static_condition_default_659; -extern const bool __static_condition_default_1791; extern const bool __static_condition_default_670; extern const bool __static_condition_default_552; extern const bool __static_condition_default_1080; @@ -240,31 +241,31 @@ extern const bool __static_condition_default_494; extern const bool __static_condition_default_708; extern const bool __static_condition_default_204; extern const bool __static_condition_default_1436; -extern const bool __static_condition_default_2046; extern const bool __static_condition_default_650; extern const bool __static_condition_default_538; extern const bool __static_condition_default_683; extern const bool __static_condition_default_1373; +extern const bool __static_condition_default_2042; extern const bool __static_condition_default_633; -extern const bool __static_condition_default_2045; extern const bool __static_condition_default_293; extern const bool __static_condition_default_1015; extern const bool __static_condition_default_223; extern const bool __static_condition_default_250; extern const bool __static_condition_default_1027; extern const bool __static_condition_default_433; +extern const bool __static_condition_default_2050; extern const bool __static_condition_default_868; extern const bool __static_condition_default_355; extern const bool __static_condition_default_780; extern const bool __static_condition_default_809; extern const bool __static_condition_default_817; -extern const bool __static_condition_default_1814; +extern const bool __static_condition_default_1773; extern const bool __static_condition_default_493; extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_1789; extern const bool __static_condition_default_369; extern const bool __static_condition_default_1532; extern const bool __static_condition_default_169; +extern const bool __static_condition_default_1814; extern const bool __static_condition_default_751; extern const bool __static_condition_default_791; extern const bool __static_condition_default_887; @@ -273,6 +274,7 @@ extern const bool __static_condition_default_170; extern const bool __static_condition_default_388; extern const bool __static_condition_default_333; extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_1776; extern const bool __static_condition_default_894; extern const bool __static_condition_default_1552; extern const bool __static_condition_default_632; @@ -280,6 +282,7 @@ extern const bool __static_condition_default_736; extern const bool __static_condition_default_357; extern const bool __static_condition_default_382; extern const bool __static_condition_default_1391; +extern const bool __static_condition_default_1816; extern const bool __static_condition_default_700; extern const bool __static_condition_default_956; extern const bool __static_condition_default_1315; @@ -293,7 +296,6 @@ extern const bool __static_condition_default_636; extern const bool __static_condition_default_619; extern const bool __static_condition_default_363; extern const bool __static_condition_default_516; -extern const bool __static_condition_default_2050; extern const bool __static_condition_default_823; extern const bool __static_condition_default_536; extern const bool __static_condition_default_957; @@ -305,6 +307,7 @@ extern const bool __static_condition_default_701; extern const bool __static_condition_default_735; extern const bool __static_condition_default_1531; extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_1787; extern const bool __static_condition_default_685; extern const bool __static_condition_default_444; extern const bool __static_condition_default_651; @@ -326,7 +329,6 @@ extern const bool __static_condition_default_1089; extern const bool __static_condition_default_337; extern const bool __static_condition_default_980; extern const bool __static_condition_default_408; -extern const bool __static_condition_default_1774; extern const bool __static_condition_default_944; extern const bool __static_condition_default_727; extern const bool __static_condition_default_1066; @@ -337,7 +339,6 @@ extern const bool __static_condition_default_1377; extern const bool __static_condition_default_1576; extern const bool __static_condition_default_432; extern const bool __static_condition_default_521; -extern const bool __static_condition_default_2041; extern const bool __static_condition_default_788; extern const bool __static_condition_default_1159; extern const bool __static_condition_default_1381; @@ -2357,14 +2358,14 @@ static __inline unsigned int (____bswap_32_1158) (unsigned int ____bsx_1157) { if (__static_condition_default_1159) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -2373,14 +2374,14 @@ static __inline ____uint64_t_13 (____bswap_64_1162) (____uint64_t_13 ____bsx_1 if (__static_condition_default_1164) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2389,14 +2390,14 @@ static __inline ____uint64_t_1112 (____bswap_64_1163) (____uint64_t_1112 ____b if (__static_condition_default_1165) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2601,14 +2602,14 @@ static __inline unsigned int (____bswap_32_1452) (unsigned int ____bsx_1451) { if (__static_condition_default_1453) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -2617,14 +2618,14 @@ static __inline ____uint64_t_13 (____bswap_64_1456) (____uint64_t_13 ____bsx_1 if (__static_condition_default_1458) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2633,14 +2634,14 @@ static __inline ____uint64_t_1275 (____bswap_64_1457) (____uint64_t_1275 ____b if (__static_condition_default_1459) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2870,20 +2871,20 @@ void (__send_req_2037) () { { if (__static_condition_default_2039) { -{ +{// L9 { } -} +}// L14 } if (__static_condition_default_2040) { -{ +{// L9 { @@ -2891,7 +2892,7 @@ if (__static_condition_default_2040) { __static_type_error("type error") ; // L11 __static_type_error("type error") ; // L12 } -} +}// L14 } @@ -2902,20 +2903,20 @@ void (__send_req_2038) () { { if (__static_condition_default_2041) { -{ +{// L9 { } -} +}// L14 } if (__static_condition_default_2042) { -{ +{// L9 { @@ -2933,7 +2934,7 @@ if (__static_condition_default_2046) { __static_type_error("type error") ; // L12 } } -} +}// L14 } @@ -2941,7 +2942,7 @@ __static_type_error("type error") ; // L12 }} int (__main_2047) (void ) { -{ +{// L17 { @@ -2954,7 +2955,7 @@ if (__static_condition_default_2049) { } return 0 ;// L19 } -} +}// L20 } diff --git a/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.desugared.clangres b/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.desugared.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/d0040a07aec.desugared.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.clangres b/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c index 73505f74..af2ed1de 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -7,13 +8,10 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_2049; extern const bool __static_condition_default_568; extern const bool __static_condition_default_313; -extern const bool __static_condition_default_2057; extern const bool __static_condition_default_278; extern const bool __static_condition_default_1428; -extern const bool __static_condition_default_1808; extern const bool __static_condition_default_433; extern const bool __static_condition_default_393; extern const bool __static_condition_default_991; @@ -21,9 +19,10 @@ extern const bool __static_condition_default_1165; extern const bool __static_condition_default_1489; extern const bool __static_condition_default_1532; extern const bool __static_condition_default_241; +extern const bool __static_condition_default_2054; +extern const bool __static_condition_default_2056; extern const bool __static_condition_default_907; extern const bool __static_condition_default_1395; -extern const bool __static_condition_default_1785; extern const bool __static_condition_default_683; extern const bool __static_condition_default_1022; extern const bool __static_condition_default_647; @@ -38,6 +37,7 @@ extern const bool __static_condition_default_455; extern const bool __static_condition_default_1027; extern const bool __static_condition_default_700; extern const bool __static_condition_default_715; +extern const bool __static_condition_default_1775; extern const bool __static_condition_default_864; extern const bool __static_condition_default_1381; extern const bool __static_condition_default_542; @@ -46,6 +46,7 @@ extern const bool __static_condition_default_590; extern const bool __static_condition_default_686; extern const bool __static_condition_default_253; extern const bool __static_condition_default_210; +extern const bool __static_condition_default_2051; extern const bool __static_condition_default_685; extern const bool __static_condition_default_259; extern const bool __static_condition_default_761; @@ -61,6 +62,7 @@ extern const bool __static_condition_default_1750; extern const bool __static_condition_default_846; extern const bool __static_condition_default_1388; extern const bool __static_condition_default_373; +extern const bool __static_condition_default_1816; extern const bool __static_condition_default_862; extern const bool __static_condition_default_182; extern const bool __static_condition_default_299; @@ -72,12 +74,10 @@ extern const bool __static_condition_default_248; extern const bool __static_condition_default_444; extern const bool __static_condition_default_564; extern const bool __static_condition_default_357; -extern const bool __static_condition_default_2056; extern const bool __static_condition_default_193; extern const bool __static_condition_default_1409; -extern const bool __static_condition_default_1791; +extern const bool __static_condition_default_1776; extern const bool __static_condition_default_1391; -extern const bool __static_condition_default_2052; extern const bool __static_condition_default_286; extern const bool __static_condition_default_573; extern const bool __static_condition_default_803; @@ -95,7 +95,6 @@ extern const bool __static_condition_default_1091; extern const bool __static_condition_default_417; extern const bool __static_condition_default_817; extern const bool __static_condition_default_1459; -extern const bool __static_condition_default_1816; extern const bool __static_condition_default_250; extern const bool __static_condition_default_257; extern const bool __static_condition_default_1373; @@ -104,7 +103,6 @@ extern const bool __static_condition_default_779; extern const bool __static_condition_default_229; extern const bool __static_condition_default_432; extern const bool __static_condition_default_274; -extern const bool __static_condition_default_1776; extern const bool __static_condition_default_1424; extern const bool __static_condition_default_636; extern const bool __static_condition_default_521; @@ -118,7 +116,6 @@ extern const bool __static_condition_default_333; extern const bool __static_condition_default_789; extern const bool __static_condition_default_583; extern const bool __static_condition_default_944; -extern const bool __static_condition_default_1774; extern const bool __static_condition_default_1005; extern const bool __static_condition_default_1458; extern const bool __static_condition_default_53; @@ -128,16 +125,18 @@ extern const bool __static_condition_default_538; extern const bool __static_condition_default_296; extern const bool __static_condition_default_1568; extern const bool __static_condition_default_315; +extern const bool __static_condition_default_1785; +extern const bool __static_condition_default_1814; extern const bool __static_condition_default_169; extern const bool __static_condition_default_787; extern const bool __static_condition_default_1405; -extern const bool __static_condition_default_2061; extern const bool __static_condition_default_684; extern const bool __static_condition_default_769; extern const bool __static_condition_default_957; extern const bool __static_condition_default_201; extern const bool __static_condition_default_868; extern const bool __static_condition_default_651; +extern const bool __static_condition_default_2052; extern const bool __static_condition_default_503; extern const bool __static_condition_default_735; extern const bool __static_condition_default_878; @@ -147,10 +146,12 @@ extern const bool __static_condition_default_781; extern const bool __static_condition_default_978; extern const bool __static_condition_default_721; extern const bool __static_condition_default_1357; +extern const bool __static_condition_default_2053; extern const bool __static_condition_default_848; extern const bool __static_condition_default_1081; extern const bool __static_condition_default_170; extern const bool __static_condition_default_1749; +extern const bool __static_condition_default_1810; extern const bool __static_condition_default_1090; extern const bool __static_condition_default_544; extern const bool __static_condition_default_613; @@ -174,6 +175,7 @@ extern const bool __static_condition_default_956; extern const bool __static_condition_default_891; extern const bool __static_condition_default_663; extern const bool __static_condition_default_836; +extern const bool __static_condition_default_1808; extern const bool __static_condition_default_887; extern const bool __static_condition_default_355; extern const bool __static_condition_default_511; @@ -183,10 +185,8 @@ extern const bool __static_condition_default_760; extern const bool __static_condition_default_701; extern const bool __static_condition_default_717; extern const bool __static_condition_default_1432; -extern const bool __static_condition_default_2053; extern const bool __static_condition_default_367; extern const bool __static_condition_default_929; -extern const bool __static_condition_default_2051; extern const bool __static_condition_default_341; extern const bool __static_condition_default_842; extern const bool __static_condition_default_938; @@ -211,11 +211,11 @@ extern const bool __static_condition_default_623; extern const bool __static_condition_default_255; extern const bool __static_condition_default_537; extern const bool __static_condition_default_661; -extern const bool __static_condition_default_2054; extern const bool __static_condition_default_745; extern const bool __static_condition_default_751; extern const bool __static_condition_default_235; extern const bool __static_condition_default_515; +extern const bool __static_condition_default_1773; extern const bool __static_condition_default_288; extern const bool __static_condition_default_536; extern const bool __static_condition_default_752; @@ -227,8 +227,8 @@ extern const bool __static_condition_default_1361; extern const bool __static_condition_default_780; extern const bool __static_condition_default_619; extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_1774; extern const bool __static_condition_default_755; -extern const bool __static_condition_default_1789; extern const bool __static_condition_default_753; extern const bool __static_condition_default_553; extern const bool __static_condition_default_419; @@ -241,7 +241,6 @@ extern const bool __static_condition_default_792; extern const bool __static_condition_default_1072; extern const bool __static_condition_default_791; extern const bool __static_condition_default_840; -extern const bool __static_condition_default_1814; extern const bool __static_condition_default_756; extern const bool __static_condition_default_408; extern const bool __static_condition_default_768; @@ -252,6 +251,7 @@ extern const bool __static_condition_default_1453; extern const bool __static_condition_default_1498; extern const bool __static_condition_default_608; extern const bool __static_condition_default_650; +extern const bool __static_condition_default_2057; extern const bool __static_condition_default_560; extern const bool __static_condition_default_972; extern const bool __static_condition_default_369; @@ -264,12 +264,11 @@ extern const bool __static_condition_default_388; extern const bool __static_condition_default_1531; extern const bool __static_condition_default_290; extern const bool __static_condition_default_284; -extern const bool __static_condition_default_1775; extern const bool __static_condition_default_311; +extern const bool __static_condition_default_1944; extern const bool __static_condition_default_345; extern const bool __static_condition_default_461; extern const bool __static_condition_default_1369; -extern const bool __static_condition_default_1773; extern const bool __static_condition_default_813; extern const bool __static_condition_default_198; extern const bool __static_condition_default_578; @@ -277,7 +276,6 @@ extern const bool __static_condition_default_1398; extern const bool __static_condition_default_658; extern const bool __static_condition_default_875; extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_1944; extern const bool __static_condition_default_539; extern const bool __static_condition_default_646; extern const bool __static_condition_default_659; @@ -290,7 +288,6 @@ extern const bool __static_condition_default_1042; extern const bool __static_condition_default_1043; extern const bool __static_condition_default_512; extern const bool __static_condition_default_223; -extern const bool __static_condition_default_1787; extern const bool __static_condition_default_541; extern const bool __static_condition_default_293; extern const bool __static_condition_default_585; @@ -303,7 +300,7 @@ extern const bool __static_condition_default_1436; extern const bool __static_condition_default_801; extern const bool __static_condition_default_1353; extern const bool __static_condition_default_173; -extern const bool __static_condition_default_2055; +extern const bool __static_condition_default_1789; extern const bool __static_condition_default_263; extern const bool __static_condition_default_1345; extern const bool __static_condition_default_668; @@ -312,16 +309,18 @@ extern const bool __static_condition_default_858; extern const bool __static_condition_default_797; extern const bool __static_condition_default_282; extern const bool __static_condition_default_1576; +extern const bool __static_condition_default_2061; extern const bool __static_condition_default_625; extern const bool __static_condition_default_375; +extern const bool __static_condition_default_2055; extern const bool __static_condition_default_1015; extern const bool __static_condition_default_872; extern const bool __static_condition_default_491; -extern const bool __static_condition_default_1810; extern const bool __static_condition_default_84; extern const bool __static_condition_default_217; extern const bool __static_condition_default_494; extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_2049; extern const bool __static_condition_default_347; extern const bool __static_condition_default_597; extern const bool __static_condition_default_1365; @@ -329,6 +328,7 @@ extern const bool __static_condition_default_365; extern const bool __static_condition_default_708; extern const bool __static_condition_default_1065; extern const bool __static_condition_default_809; +extern const bool __static_condition_default_1787; extern const bool __static_condition_default_670; extern const bool __static_condition_default_637; extern const bool __static_condition_default_204; @@ -347,6 +347,7 @@ extern const bool __static_condition_default_489; extern const bool __static_condition_default_516; extern const bool __static_condition_default_510; extern const bool __static_condition_default_727; +extern const bool __static_condition_default_1791; extern const bool __static_condition_default_246; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); @@ -2365,14 +2366,14 @@ static __inline unsigned int (____bswap_32_1158) (unsigned int ____bsx_1157) { if (__static_condition_default_1159) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -2381,14 +2382,14 @@ static __inline ____uint64_t_13 (____bswap_64_1162) (____uint64_t_13 ____bsx_1 if (__static_condition_default_1164) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2397,14 +2398,14 @@ static __inline ____uint64_t_1112 (____bswap_64_1163) (____uint64_t_1112 ____b if (__static_condition_default_1165) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2609,14 +2610,14 @@ static __inline unsigned int (____bswap_32_1452) (unsigned int ____bsx_1451) { if (__static_condition_default_1453) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -2625,14 +2626,14 @@ static __inline ____uint64_t_13 (____bswap_64_1456) (____uint64_t_13 ____bsx_1 if (__static_condition_default_1458) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2641,14 +2642,14 @@ static __inline ____uint64_t_1275 (____bswap_64_1457) (____uint64_t_1275 ____b if (__static_condition_default_1459) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2877,7 +2878,7 @@ long __rmm_addr_2037= 99999999999999999;// L4 long __rmm_addr_2038= 99999999999999999;// L4 char * ((__apr_rmm_addr_get_2040) (char * (__ptr_2039))) { -{ +{// L7 { @@ -2885,7 +2886,7 @@ char * ((__apr_rmm_addr_get_2040) (char * (__ptr_2039))) { * __ptr_2039 = '\0' ; // L8 return __ptr_2039 ;// L9 } -} +}// L10 } @@ -2894,20 +2895,20 @@ void (__util_ald_alloc_2050) () { { if (__static_condition_default_2051) { -{ +{// L13 { } -} +}// L21 } if (__static_condition_default_2052) { -{ +{// L13 { @@ -2948,7 +2949,7 @@ if (__static_condition_default_2057) { __static_type_error("type error") ; // L17 } } -} +}// L21 } @@ -2956,33 +2957,33 @@ __static_type_error("type error") ; // L17 }} void (__util_ald_create_cache_2058) () { -{ +{// L24 { __util_ald_alloc_2050 ( ) ; // L25 } -} +}// L26 } void (__util_ald_create_caches_2059) () { -{ +{// L29 { __util_ald_create_cache_2058 ( ) ; // L30 } -} +}// L31 } int (__main_2060) (void ) { -{ +{// L34 { @@ -2990,7 +2991,7 @@ int (__main_2060) (void ) { __util_ald_create_caches_2059 ( ) ; // L35 return 0 ;// L36 } -} +}// L37 } diff --git a/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.clangres b/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.clangres index eceaa85d..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.clangres @@ -1,37 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2919:10: warning: Value stored to '__buf_2043' during its initialization is never read [deadcode.DeadStores] -char * (__buf_2043)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2037 ,sizeof(char)));// L16 - ^~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2921:10: warning: Value stored to '__buf_2044' during its initialization is never read [deadcode.DeadStores] -char * (__buf_2044)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2038 ,sizeof(char)));// L16 - ^~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2921:62: warning: Potential leak of memory pointed to by '__buf_2043' [unix.Malloc] -char * (__buf_2044)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2038 ,sizeof(char)));// L16 - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2923:62: warning: Potential leak of memory pointed to by '__buf_2044' [unix.Malloc] -char * (__buf_2045)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2036 ,sizeof(char)));// L16 - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2927:10: warning: Value stored to '__buf_2047' during its initialization is never read [deadcode.DeadStores] -char * (__buf_2047)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2036 ,sizeof(char)));// L16 - ^~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2929:10: warning: Value stored to '__buf_2048' during its initialization is never read [deadcode.DeadStores] -char * (__buf_2048)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2038 ,sizeof(char)));// L16 - ^~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2929:62: warning: Potential leak of memory pointed to by '__buf_2047' [unix.Malloc] -char * (__buf_2048)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2038 ,sizeof(char)));// L16 - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2935:5: warning: Potential leak of memory pointed to by '__buf_2048' [unix.Malloc] -if (__static_condition_default_2053) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2938:5: warning: Potential leak of memory pointed to by '__buf_2041' [unix.Malloc] -if (__static_condition_default_2054) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2941:5: warning: Potential leak of memory pointed to by '__buf_2042' [unix.Malloc] -if (__static_condition_default_2055) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2944:5: warning: Potential leak of memory pointed to by '__buf_2045' [unix.Malloc] -if (__static_condition_default_2056) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2947:5: warning: Potential leak of memory pointed to by '__buf_2046' [unix.Malloc] -if (__static_condition_default_2057) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -12 warnings generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/dbafef17dd1.clangres b/fonda/cpp_testsuite/varBugs/APACHE/dbafef17dd1.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/dbafef17dd1.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/dbafef17dd1.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/dbafef17dd1.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/dbafef17dd1.desugared.c index dfe0af64..123543f4 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/dbafef17dd1.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/dbafef17dd1.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -11,86 +12,86 @@ extern const bool __static_condition_default_246; extern const bool __static_condition_default_394; extern const bool __static_condition_default_341; extern const bool __static_condition_default_67; -extern const bool __static_condition_default_1037; extern const bool __static_condition_default_249; +extern const bool __static_condition_default_1047; +extern const bool __static_condition_default_1088; extern const bool __static_condition_default_261; +extern const bool __static_condition_default_1024; +extern const bool __static_condition_default_1094; extern const bool __static_condition_default_627; -extern const bool __static_condition_default_1047; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_1073; extern const bool __static_condition_default_243; -extern const bool __static_condition_default_604; -extern const bool __static_condition_default_621; +extern const bool __static_condition_default_1082; +extern const bool __static_condition_default_1095; +extern const bool __static_condition_default_623; extern const bool __static_condition_default_426; -extern const bool __static_condition_default_1024; +extern const bool __static_condition_default_1087; +extern const bool __static_condition_default_1053; extern const bool __static_condition_default_237; extern const bool __static_condition_default_423; -extern const bool __static_condition_default_819; extern const bool __static_condition_default_293; extern const bool __static_condition_default_361; -extern const bool __static_condition_default_736; +extern const bool __static_condition_default_594; extern const bool __static_condition_default_267; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_1077; -extern const bool __static_condition_default_270; -extern const bool __static_condition_default_818; -extern const bool __static_condition_default_1082; -extern const bool __static_condition_default_804; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_595; extern const bool __static_condition_default_1074; -extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_629; +extern const bool __static_condition_default_270; +extern const bool __static_condition_default_1054; +extern const bool __static_condition_default_1077; +extern const bool __static_condition_default_1073; extern const bool __static_condition_default_258; extern const bool __static_condition_default_240; -extern const bool __static_condition_default_1054; -extern const bool __static_condition_default_1088; -extern const bool __static_condition_default_1091; -extern const bool __static_condition_default_349; -extern const bool __static_condition_default_594; extern const bool __static_condition_default_1025; -extern const bool __static_condition_default_806; -extern const bool __static_condition_default_276; +extern const bool __static_condition_default_1048; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_349; extern const bool __static_condition_default_1096; +extern const bool __static_condition_default_1037; +extern const bool __static_condition_default_276; extern const bool __static_condition_default_414; extern const bool __static_condition_default_417; -extern const bool __static_condition_default_1053; +extern const bool __static_condition_default_604; +extern const bool __static_condition_default_1031; extern const bool __static_condition_default_285; extern const bool __static_condition_default_273; extern const bool __static_condition_default_432; -extern const bool __static_condition_default_1030; extern const bool __static_condition_default_325; -extern const bool __static_condition_default_1095; extern const bool __static_condition_default_255; -extern const bool __static_condition_default_1048; -extern const bool __static_condition_default_1089; extern const bool __static_condition_default_579; -extern const bool __static_condition_default_1094; +extern const bool __static_condition_default_804; extern const bool __static_condition_default_296; -extern const bool __static_condition_default_805; +extern const bool __static_condition_default_819; +extern const bool __static_condition_default_1089; extern const bool __static_condition_default_305; extern const bool __static_condition_default_379; -extern const bool __static_condition_default_1031; extern const bool __static_condition_default_288; extern const bool __static_condition_default_302; extern const bool __static_condition_default_581; -extern const bool __static_condition_default_1087; extern const bool __static_condition_default_308; -extern const bool __static_condition_default_595; +extern const bool __static_condition_default_621; extern const bool __static_condition_default_60; extern const bool __static_condition_default_378; extern const bool __static_condition_default_1083; extern const bool __static_condition_default_252; extern const bool __static_condition_default_420; +extern const bool __static_condition_default_805; +extern const bool __static_condition_default_1092; extern const bool __static_condition_default_299; -extern const bool __static_condition_default_629; extern const bool __static_condition_default_352; +extern const bool __static_condition_default_806; extern const bool __static_condition_default_264; extern const bool __static_condition_default_395; -extern const bool __static_condition_default_1092; extern const bool __static_condition_default_279; extern const bool __static_condition_default_282; extern const bool __static_condition_default_1036; extern const bool __static_condition_default_429; +extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_1030; extern const bool __static_condition_default_215; extern const bool __static_condition_default_234; +extern const bool __static_condition_default_818; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -1043,14 +1044,14 @@ static __inline unsigned int (____bswap_32_66) (unsigned int ____bsx_65) { if (__static_condition_default_67) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -1059,14 +1060,14 @@ static __inline ____uint64_t_20 (____bswap_64_69) (____uint64_t_20 ____bsx_68) if (__static_condition_default_67) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -1239,14 +1240,14 @@ static __inline unsigned int (____bswap_32_324) (unsigned int ____bsx_323) { if (__static_condition_default_325) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -1255,14 +1256,14 @@ static __inline ____uint64_t_175 (____bswap_64_327) (____uint64_t_175 ____bsx_ if (__static_condition_default_325) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -1536,7 +1537,7 @@ void (__apply_rewrite_rule_1085) () { { if (__static_condition_default_1087) { -{ +{// L7 { @@ -1544,14 +1545,14 @@ if (__static_condition_default_1087) { char __newuri_1084[20];// L8 } -} +}// L16 } if (__static_condition_default_1088) { -{ +{// L7 { @@ -1566,7 +1567,7 @@ if (__static_condition_default_1090) { } __newuri_1084 [ sizeof(( __newuri_1084 - 1 )) ] = '\0' ; // L12 } -} +}// L16 } @@ -1577,7 +1578,7 @@ void (__apply_rewrite_rule_1086) () { { if (__static_condition_default_1091) { -{ +{// L7 { @@ -1585,14 +1586,14 @@ if (__static_condition_default_1091) { char __newuri_1084[20];// L8 } -} +}// L16 } if (__static_condition_default_1092) { -{ +{// L7 { @@ -1602,7 +1603,7 @@ char __newuri_1084[20];// L8 __static_type_error("type error") ; // L11 __newuri_1084 [ sizeof(( __newuri_1084 - 1 )) ] = '\0' ; // L12 } -} +}// L16 } @@ -1610,7 +1611,7 @@ __static_type_error("type error") ; // L11 }} int (__main_1093) (void ) { -{ +{// L19 { @@ -1623,7 +1624,7 @@ if (__static_condition_default_1095) { } return 0 ;// L21 } -} +}// L22 } diff --git a/fonda/cpp_testsuite/varBugs/APACHE/dbafef17dd1.desugared.clangres b/fonda/cpp_testsuite/varBugs/APACHE/dbafef17dd1.desugared.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/dbafef17dd1.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/dbafef17dd1.desugared.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/test.clangres b/fonda/cpp_testsuite/varBugs/APACHE/test.clangres index 974e4dbd..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/test.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/test.clangres @@ -1,4 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/test.c:13:3: error: use of undeclared identifier 'z' - z += 3; - ^ -1 error generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/APACHE/test.desugared.c b/fonda/cpp_testsuite/varBugs/APACHE/test.desugared.c index 12e3e87c..9f68bd75 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/test.desugared.c +++ b/fonda/cpp_testsuite/varBugs/APACHE/test.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -24,7 +25,7 @@ int (__main_1) () { if (__static_condition_default_3) { -{ +{// L12 { @@ -32,7 +33,7 @@ if (__static_condition_default_3) { __static_type_error("type error") ; // L13 return 0 ;// L14 } -} +}// L15 } @@ -41,7 +42,7 @@ int (__main_2) () { if (__static_condition_default_4) { -{ +{// L12 { @@ -49,7 +50,7 @@ if (__static_condition_default_4) { __z_0 += 3 ; // L13 return 0 ;// L14 } -} +}// L15 } diff --git a/fonda/cpp_testsuite/varBugs/APACHE/test.desugared.clangres b/fonda/cpp_testsuite/varBugs/APACHE/test.desugared.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/APACHE/test.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/APACHE/test.desugared.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX-0301ffab3d9.report b/fonda/cpp_testsuite/varBugs/BUSYBOX-0301ffab3d9.report index 85928c1d..e966b0ef 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX-0301ffab3d9.report +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX-0301ffab3d9.report @@ -2,13 +2,4 @@ BUSYBOX 0301ffab3d9.c Macros: EXT2FS_ENABLE_SWAPFS [-UEXT2FS_ENABLE_SWAPFS ] -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.desugared.c:51:2: warning: Value stored to '__gdp_0' is never read [deadcode.DeadStores] - __gdp_0 = "group_desc" ; // L7 - ^ ~~~~~~~~~~~~ -1 warning generated. -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX-061fd0a353e.report b/fonda/cpp_testsuite/varBugs/BUSYBOX-061fd0a353e.report index a94546ef..556bd713 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX-061fd0a353e.report +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX-061fd0a353e.report @@ -3,48 +3,13 @@ Macros: CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF [-UCONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF -UCONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF ] -clang :: 82 :: Line:16 - Value stored to 'p' is never read [deadcode.DeadStores] [-DCONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF=1 -UCONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF ] [-UCONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF -DCONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF=1 ] -clang :: 83 :: Line:16 - Value stored to 'p' is never read [deadcode.DeadStores] -clang :: 84 :: Line:27 - Branch condition evaluates to a garbage value [core.uninitialized.Branch] -infer :: 85 :: Line:27 +infer :: 9 :: Line:27 Uninitialized Value [-DCONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF=1 -DCONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF=1 ] -clang :: 86 :: Line:16 - Value stored to 'p' is never read [deadcode.DeadStores] -clang :: 87 :: Line:20 - Branch condition evaluates to a garbage value [core.uninitialized.Branch] -clang :: 88 :: Line:27 - Branch condition evaluates to a garbage value [core.uninitialized.Branch] -infer :: 89 :: Line:20 +infer :: 10 :: Line:20 Uninitialized Value -infer :: 90 :: Line:27 +infer :: 11 :: Line:27 Uninitialized Value -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.c:3062:2: warning: Value stored to '__p_2040' is never read [deadcode.DeadStores] - __p_2040 = * __argv_2037 ++ , -- __argc_2036 ; // L16 - ^ ~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.c:3229:2: warning: Value stored to '__p_2040' is never read [deadcode.DeadStores] - __p_2040 = * __argv_2037 ++ , -- __argc_2036 ; // L16 - ^ ~~~~~~~~~~~~~~~~~~ -2 warnings generated. -Desugared Infer Results: - - No issues found -Matches: - 82 has a match! - 83 has a match! - 86 has a match! -Unmatched ids: - 84 - 87 - 88 -Matches: -Unmatched ids: - 85 - 89 - 90 +File Failed diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX-192c35f6eb2.report b/fonda/cpp_testsuite/varBugs/BUSYBOX-192c35f6eb2.report index e6a978a9..f361a85d 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX-192c35f6eb2.report +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX-192c35f6eb2.report @@ -2,9 +2,4 @@ BUSYBOX 192c35f6eb2.c Macros: CONFIG_FEATURE_REMOTE_LOG [-UCONFIG_FEATURE_REMOTE_LOG ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX-199501f2a00.report b/fonda/cpp_testsuite/varBugs/BUSYBOX-199501f2a00.report index 2d66a05d..f393d45b 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX-199501f2a00.report +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX-199501f2a00.report @@ -2,17 +2,4 @@ BUSYBOX 199501f2a00.c Macros: ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS [-UENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS ] -clang :: 182 :: Line:21 - Null pointer passed to 2nd parameter expecting 'nonnull' [core.NonNullParamChecker] -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.c:3282:2: warning: Value stored to '__dt_2390' is never read [deadcode.DeadStores] - __dt_2390 = "-i" ; // L10 - ^ ~~~~ -1 warning generated. -Desugared Infer Results: - - No issues found -Matches: -Unmatched ids: - 182 -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX-1b487ea8a69.report b/fonda/cpp_testsuite/varBugs/BUSYBOX-1b487ea8a69.report index 92a40beb..6aff1a7d 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX-1b487ea8a69.report +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX-1b487ea8a69.report @@ -4,27 +4,8 @@ Macros: ENABLE_FEATURE_STAT_FORMAT [-UENABLE_SELINUX -UENABLE_FEATURE_STAT_FORMAT ] [-DENABLE_SELINUX=1 -UENABLE_FEATURE_STAT_FORMAT ] -clang :: 68 :: Line:14 - Dereference of null pointer (loaded from variable 'scontext') [core.NullDereference] -infer :: 69 :: Line:14 +infer :: 7 :: Line:14 Null Dereference [-UENABLE_SELINUX -DENABLE_FEATURE_STAT_FORMAT=1 ] [-DENABLE_SELINUX=1 -DENABLE_FEATURE_STAT_FORMAT=1 ] -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.c:2937:26: warning: Dereference of null pointer (loaded from variable '__scontext_2038') [core.NullDereference] - __printf_421 (" %lc\n",* __scontext_2038 ) ; // L14 - ^~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.c:2994:26: warning: Dereference of null pointer (loaded from variable '__scontext_2038') [core.NullDereference] - __printf_421 (" %lc\n",* __scontext_2038 ) ; // L14 - ^~~~~~~~~~~~~~~~~~ -2 warnings generated. -Desugared Infer Results: - - No issues found -Matches: - 68 has a match! -Unmatched ids: - None! -Matches: -Unmatched ids: - 69 +File Failed diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX-2631486f1bf.report b/fonda/cpp_testsuite/varBugs/BUSYBOX-2631486f1bf.report index cf0e3ade..a1752dfd 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX-2631486f1bf.report +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX-2631486f1bf.report @@ -3,93 +3,23 @@ Macros: CONFIG_FEATURE_LS_RECURSIVE CONFIG_FEATURE_LS_SORTFILES [-UCONFIG_FEATURE_LS_RECURSIVE -UCONFIG_FEATURE_LS_SORTFILES ] -clang :: 110 :: Line:67 - Assigned value is garbage or undefined [core.uninitialized.Assign] -infer :: 111 :: Line:66 +infer :: 13 :: Line:66 Null Dereference -infer :: 112 :: Line:67 +infer :: 14 :: Line:67 Uninitialized Value [-DCONFIG_FEATURE_LS_RECURSIVE=1 -UCONFIG_FEATURE_LS_SORTFILES ] -clang :: 113 :: Line:67 - Assigned value is garbage or undefined [core.uninitialized.Assign] -infer :: 114 :: Line:66 +infer :: 15 :: Line:66 Null Dereference -infer :: 115 :: Line:67 +infer :: 16 :: Line:67 Uninitialized Value [-UCONFIG_FEATURE_LS_RECURSIVE -DCONFIG_FEATURE_LS_SORTFILES=1 ] -clang :: 116 :: Line:67 - Assigned value is garbage or undefined [core.uninitialized.Assign] -infer :: 117 :: Line:66 +infer :: 17 :: Line:66 Null Dereference -infer :: 118 :: Line:67 +infer :: 18 :: Line:67 Uninitialized Value [-DCONFIG_FEATURE_LS_RECURSIVE=1 -DCONFIG_FEATURE_LS_SORTFILES=1 ] -clang :: 119 :: Line:67 - Assigned value is garbage or undefined [core.uninitialized.Assign] -infer :: 120 :: Line:66 +infer :: 19 :: Line:66 Null Dereference -infer :: 121 :: Line:67 +infer :: 20 :: Line:67 Uninitialized Value -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3171:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] - __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 - ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3174:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] - __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 - ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3177:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] - __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 - ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3180:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] - __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 - ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3186:29: warning: Access to field '__val_2038' results in a dereference of an undefined pointer value (loaded from variable '__curr_2072') [core.NullDereference] - __curr_2072 -> __val_2038 = rand( ) % 10 ; // L66 - ~~~~~~~~~~~ ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3191:30: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] - __curr_2072 -> __next_2039 = __head_2073 ; // L67 - ^ ~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3191:30: warning: Access to field '__next_2039' results in a dereference of an undefined pointer value (loaded from variable '__curr_2072') [core.NullDereference] - __curr_2072 -> __next_2039 = __head_2073 ; // L67 - ~~~~~~~~~~~ ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3255:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] - __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 - ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3258:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] - __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 - ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3261:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] - __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 - ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3264:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] - __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 - ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3270:29: warning: Access to field '__val_2038' results in a dereference of an undefined pointer value (loaded from variable '__curr_2072') [core.NullDereference] - __curr_2072 -> __val_2038 = rand( ) % 10 ; // L66 - ~~~~~~~~~~~ ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3275:30: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] - __curr_2072 -> __next_2039 = __head_2073 ; // L67 - ^ ~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3275:30: warning: Access to field '__next_2039' results in a dereference of an undefined pointer value (loaded from variable '__curr_2072') [core.NullDereference] - __curr_2072 -> __next_2039 = __head_2073 ; // L67 - ~~~~~~~~~~~ ^ -14 warnings generated. -Desugared Infer Results: - - No issues found -Matches: -Unmatched ids: - 110 - 113 - 116 - 119 -Matches: -Unmatched ids: - 111 - 112 - 114 - 115 - 117 - 118 - 120 - 121 +File Failed diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX-5275b1e49f6.report b/fonda/cpp_testsuite/varBugs/BUSYBOX-5275b1e49f6.report index 5e146fb6..5b9e37b8 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX-5275b1e49f6.report +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX-5275b1e49f6.report @@ -2,49 +2,4 @@ BUSYBOX 5275b1e49f6.c Macros: CONFIG_FEATURE_INSMOD_VERSION_CHECKING [-UCONFIG_FEATURE_INSMOD_VERSION_CHECKING ] -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:2928:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] - __m_has_modinfo_2040 = 0 ; // L16 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:2934:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] - __m_has_modinfo_2040 = 1 ; // L18 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:2942:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] - __m_has_modinfo_2040 = 0 ; // L16 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:2948:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] - __m_has_modinfo_2040 = 1 ; // L18 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:2953:2: warning: Value stored to '__k_crcs_2043' is never read [deadcode.DeadStores] - __k_crcs_2043 = 0 ; // L21 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3004:2: warning: Value stored to '__k_crcs_2043' is never read [deadcode.DeadStores] - __k_crcs_2043 = __someInt_2042 ; // L25 - ^ ~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3068:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] - __m_has_modinfo_2040 = 0 ; // L16 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3074:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] - __m_has_modinfo_2040 = 1 ; // L18 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3082:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] - __m_has_modinfo_2040 = 0 ; // L16 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3088:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] - __m_has_modinfo_2040 = 1 ; // L18 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3093:2: warning: Value stored to '__k_crcs_2043' is never read [deadcode.DeadStores] - __k_crcs_2043 = 0 ; // L21 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3144:2: warning: Value stored to '__k_crcs_2043' is never read [deadcode.DeadStores] - __k_crcs_2043 = __someInt_2042 ; // L25 - ^ ~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3208:2: warning: Value stored to '__k_crcs_2043' is never read [deadcode.DeadStores] - __k_crcs_2043 = 0 ; // L21 - ^ ~ -13 warnings generated. -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX-5cd6461b6fb.report b/fonda/cpp_testsuite/varBugs/BUSYBOX-5cd6461b6fb.report index be0c17b3..dd920673 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX-5cd6461b6fb.report +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX-5cd6461b6fb.report @@ -12,9 +12,4 @@ Macros: [-UCONFIG_FEATURE_HTTPD_CGI -DCONFIG_LFS=1 -DCONFIG_FEATURE_HTTPD_BASIC_AUTH=1 ] [-DCONFIG_FEATURE_HTTPD_CGI=1 -DCONFIG_LFS=1 -DCONFIG_FEATURE_HTTPD_BASIC_AUTH=1 ] [-UCONFIG_FEATURE_HTTPD_CGI -UCONFIG_LFS -UCONFIG_FEATURE_HTTPD_BASIC_AUTH ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX-b273d665181.report b/fonda/cpp_testsuite/varBugs/BUSYBOX-b273d665181.report index e2c7ebce..3a0f2250 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX-b273d665181.report +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX-b273d665181.report @@ -4,36 +4,8 @@ Macros: BB_FEATURE_LS_USERNAME [-UBB_FEATURE_LS_FILETYPES -UBB_FEATURE_LS_USERNAME ] [-DBB_FEATURE_LS_FILETYPES=1 -UBB_FEATURE_LS_USERNAME ] -clang :: 74 :: Line:16 - 2nd function call argument is an uninitialized value [core.CallAndMessage] -infer :: 75 :: Line:16 +infer :: 8 :: Line:16 Uninitialized Value [-UBB_FEATURE_LS_FILETYPES -DBB_FEATURE_LS_USERNAME=1 ] [-DBB_FEATURE_LS_FILETYPES=1 -DBB_FEATURE_LS_USERNAME=1 ] -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.c:2936:2: warning: 2nd function call argument is an uninitialized value [core.CallAndMessage] - __printf_421 ("%d", __info_2036 ) ; // L16 - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.c:2947:2: warning: 2nd function call argument is an uninitialized value [core.CallAndMessage] - __printf_421 ("%d", __info_2036 ) ; // L16 - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.c:3007:2: warning: 2nd function call argument is an uninitialized value [core.CallAndMessage] - __printf_421 ("%d", __info_2036 ) ; // L16 - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.c:3018:2: warning: 2nd function call argument is an uninitialized value [core.CallAndMessage] - __printf_421 ("%d", __info_2036 ) ; // L16 - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.c:3072:2: warning: Value stored to '__info_2036' is never read [deadcode.DeadStores] - __info_2036 = 0 ; // L11 - ^ ~ -5 warnings generated. -Desugared Infer Results: - - No issues found -Matches: - 74 has a match! -Unmatched ids: - None! -Matches: -Unmatched ids: - 75 +File Failed diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX-b62bd7b261b.report b/fonda/cpp_testsuite/varBugs/BUSYBOX-b62bd7b261b.report index b11b5d64..1b2ff1d0 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX-b62bd7b261b.report +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX-b62bd7b261b.report @@ -7,75 +7,11 @@ Macros: [-DENABLE_FEATURE_MDEV_CONF=1 -UENABLE_FEATURE_MDEV_RENAME -UENABLE_FEATURE_MDEV_RENAME_REGEXP ] [-UENABLE_FEATURE_MDEV_CONF -DENABLE_FEATURE_MDEV_RENAME=1 -UENABLE_FEATURE_MDEV_RENAME_REGEXP ] [-DENABLE_FEATURE_MDEV_CONF=1 -DENABLE_FEATURE_MDEV_RENAME=1 -UENABLE_FEATURE_MDEV_RENAME_REGEXP ] -clang :: 149 :: Line:14 - Value stored to 'a' during its initialization is never read [deadcode.DeadStores] -clang :: 150 :: Line:16 - Value stored to 'val' is never read [deadcode.DeadStores] [-UENABLE_FEATURE_MDEV_CONF -UENABLE_FEATURE_MDEV_RENAME -DENABLE_FEATURE_MDEV_RENAME_REGEXP=1 ] [-DENABLE_FEATURE_MDEV_CONF=1 -UENABLE_FEATURE_MDEV_RENAME -DENABLE_FEATURE_MDEV_RENAME_REGEXP=1 ] [-UENABLE_FEATURE_MDEV_CONF -DENABLE_FEATURE_MDEV_RENAME=1 -DENABLE_FEATURE_MDEV_RENAME_REGEXP=1 ] [-DENABLE_FEATURE_MDEV_CONF=1 -DENABLE_FEATURE_MDEV_RENAME=1 -DENABLE_FEATURE_MDEV_RENAME_REGEXP=1 ] -clang :: 151 :: Line:16 - Value stored to 'val' is never read [deadcode.DeadStores] -clang :: 152 :: Line:24 - Dereference of undefined pointer value (loaded from variable 'p') [core.NullDereference] -infer :: 153 :: Line:24 +infer :: 23 :: Line:24 Uninitialized Value [-UENABLE_FEATURE_MDEV_CONF -UENABLE_FEATURE_MDEV_RENAME -UENABLE_FEATURE_MDEV_RENAME_REGEXP ] -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3212:1: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] -char * (__a_2393)= __val_2390 ;// L14 -^~~~~~~~~~~~~~~~~ ~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3212:10: warning: Value stored to '__a_2393' during its initialization is never read [deadcode.DeadStores] -char * (__a_2393)= __val_2390 ;// L14 - ^~~~~~~~ ~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3218:2: warning: Value stored to '__val_2390' is never read [deadcode.DeadStores] - __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 - ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3218:19: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] - __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 - ^~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3245:2: warning: Value stored to '__val_2390' is never read [deadcode.DeadStores] - __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 - ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3245:19: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] - __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 - ^~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3257:14: warning: Dereference of undefined pointer value (loaded from variable '__p_2392') [core.NullDereference] -* __p_2392 = * __s_2391 ; // L24 - ~~~~~~~~ ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3307:1: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] -char * (__a_2393)= __val_2390 ;// L14 -^~~~~~~~~~~~~~~~~ ~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3307:10: warning: Value stored to '__a_2393' during its initialization is never read [deadcode.DeadStores] -char * (__a_2393)= __val_2390 ;// L14 - ^~~~~~~~ ~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3313:2: warning: Value stored to '__val_2390' is never read [deadcode.DeadStores] - __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 - ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3313:19: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] - __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 - ^~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3340:2: warning: Value stored to '__val_2390' is never read [deadcode.DeadStores] - __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 - ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3340:19: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] - __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 - ^~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3352:14: warning: Dereference of undefined pointer value (loaded from variable '__p_2392') [core.NullDereference] -* __p_2392 = * __s_2391 ; // L24 - ~~~~~~~~ ^ -14 warnings generated. -Desugared Infer Results: - - No issues found -Matches: - 149 has a match! - 150 has a match! - 151 has a match! - 152 has a match! -Unmatched ids: - None! -Matches: -Unmatched ids: - 153 +File Failed diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX-b7ebc61b54f.report b/fonda/cpp_testsuite/varBugs/BUSYBOX-b7ebc61b54f.report index 1aae24f1..0018df3f 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX-b7ebc61b54f.report +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX-b7ebc61b54f.report @@ -2,9 +2,4 @@ BUSYBOX b7ebc61b54f.c Macros: CONFIG_FEATURE_LS_TIMESTAMPS [-UCONFIG_FEATURE_LS_TIMESTAMPS ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX-bc0ffc0e971.report b/fonda/cpp_testsuite/varBugs/BUSYBOX-bc0ffc0e971.report index b99323f4..e02a0bed 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX-bc0ffc0e971.report +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX-bc0ffc0e971.report @@ -2,93 +2,8 @@ BUSYBOX bc0ffc0e971.c Macros: ENABLE_FEATURE_CLEAN_UP [-UENABLE_FEATURE_CLEAN_UP ] -clang :: 138 :: Line:46 - Potential leak of memory pointed to by 'clist' [unix.Malloc] -infer :: 139 :: Line:40 +infer :: 21 :: Line:40 Memory Leak -infer :: 140 :: Line:40 +infer :: 22 :: Line:40 Null Dereference -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3380:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_2394', which is incompatible with sizeof operand type 'struct (unnamed struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3337:1)' [unix.MallocSizeof] - __ch_2419 = malloc (sizeof(__sizeofStandin_2423)) ; // L29 - ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3383:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_2394', which is incompatible with sizeof operand type 'struct (unnamed struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3337:1)' [unix.MallocSizeof] - __ch_2419 = malloc (sizeof(__sizeofStandin_2423)) ; // L29 - ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3385:5: warning: Potential leak of memory pointed to by '__ch_2419' [unix.Malloc] -if (__static_condition_default_2438) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3388:30: warning: Access to field '__ifname_2393' results in a dereference of an undefined pointer value (loaded from variable '__ch_2419') [core.NullDereference] - __ch_2419 -> __ifname_2393 = __ifname_2418 ; // L30 - ~~~~~~~~~ ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3447:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_2395', which is incompatible with sizeof operand type 'struct (unnamed struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3405:1)' [unix.MallocSizeof] - __ch_2420 = malloc (sizeof(__sizeofStandin_2426)) ; // L29 - ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3450:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_2395', which is incompatible with sizeof operand type 'struct (unnamed struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3405:1)' [unix.MallocSizeof] - __ch_2420 = malloc (sizeof(__sizeofStandin_2426)) ; // L29 - ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3452:5: warning: Potential leak of memory pointed to by '__ch_2420' [unix.Malloc] -if (__static_condition_default_2448) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3455:30: warning: Access to field '__ifname_2393' results in a dereference of an undefined pointer value (loaded from variable '__ch_2420') [core.NullDereference] - __ch_2420 -> __ifname_2393 = __ifname_2418 ; // L30 - ~~~~~~~~~ ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3486:39: warning: Potential leak of memory pointed to by '__ch_2453' [unix.Malloc] -for ( __ch_2453 = __clist_2451 ; __ch_2453 ; __ch_2453 = __ch_2453 -> __next_2392 )// L43 - ^~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3486:67: warning: Use of memory after it is freed [unix.Malloc] -for ( __ch_2453 = __clist_2451 ; __ch_2453 ; __ch_2453 = __ch_2453 -> __next_2392 )// L43 - ^~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3491:5: warning: Potential leak of memory pointed to by '__clist_2451' [unix.Malloc] -if (__static_condition_default_2457) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3492:39: warning: Potential leak of memory pointed to by '__ch_2454' [unix.Malloc] -for ( __ch_2454 = __clist_2452 ; __ch_2454 ; __ch_2454 = __ch_2454 -> __next_2392 )// L43 - ^~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3492:67: warning: Use of memory after it is freed [unix.Malloc] -for ( __ch_2454 = __clist_2452 ; __ch_2454 ; __ch_2454 = __ch_2454 -> __next_2392 )// L43 - ^~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3497:5: warning: Potential leak of memory pointed to by '__clist_2452' [unix.Malloc] -if (__static_condition_default_2458) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -14 warnings generated. -Desugared Infer Results: - -BUSYBOX/bc0ffc0e971.desugared.c:3382: error: Memory Leak - Memory dynamically allocated by `malloc` on line 3380 is not freed after the last access at line 3382, column 5. - 3380. __ch_2419 = malloc (sizeof(__sizeofStandin_2423)) ; // L29 - 3381. } - 3382. if (__static_condition_default_2437) { - ^ - 3383. __ch_2419 = malloc (sizeof(__sizeofStandin_2423)) ; // L29 - 3384. } - -BUSYBOX/bc0ffc0e971.desugared.c:3449: error: Memory Leak - Memory dynamically allocated by `malloc` on line 3447 is not freed after the last access at line 3449, column 5. - 3447. __ch_2420 = malloc (sizeof(__sizeofStandin_2426)) ; // L29 - 3448. } - 3449. if (__static_condition_default_2447) { - ^ - 3450. __ch_2420 = malloc (sizeof(__sizeofStandin_2426)) ; // L29 - 3451. } - -BUSYBOX/bc0ffc0e971.desugared.c:3491: error: Memory Leak - Memory dynamically allocated by `malloc`, indirectly via call to `__prepend_new_eth_table_2428()` on line 3483 is not freed after the last access at line 3491, column 5. - 3489. } - 3490. } - 3491. if (__static_condition_default_2457) { - ^ - 3492. for ( __ch_2454 = __clist_2452 ; __ch_2454 ; __ch_2454 = __ch_2454 -> __next_2392 )// L43 - 3493. { - - -Found 3 issues - Issue Type(ISSUED_TYPE_ID): # - Memory Leak(MEMORY_LEAK_C): 3 -Matches: -Unmatched ids: - 138 -Matches: -Unmatched ids: - 139 - 140 +File Failed diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX-cc3f20b9bdf.report b/fonda/cpp_testsuite/varBugs/BUSYBOX-cc3f20b9bdf.report index 46978898..cfa684cd 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX-cc3f20b9bdf.report +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX-cc3f20b9bdf.report @@ -1,8 +1,3 @@ BUSYBOX cc3f20b9bdf.c Macros: -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX-cf1f2ace391.report b/fonda/cpp_testsuite/varBugs/BUSYBOX-cf1f2ace391.report index 6d1ae59c..fb33f467 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX-cf1f2ace391.report +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX-cf1f2ace391.report @@ -2,9 +2,4 @@ BUSYBOX cf1f2ace391.c Macros: ENABLE_DEBUG_INIT [-UENABLE_DEBUG_INIT ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX-df7b6577c6a.report b/fonda/cpp_testsuite/varBugs/BUSYBOX-df7b6577c6a.report index 566b672e..e2a5fa22 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX-df7b6577c6a.report +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX-df7b6577c6a.report @@ -2,9 +2,4 @@ BUSYBOX df7b6577c6a.c Macros: ENABLE_DESKTOP [-UENABLE_DESKTOP ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX-ebee301c8b0.report b/fonda/cpp_testsuite/varBugs/BUSYBOX-ebee301c8b0.report index 7bdd313a..2087e603 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX-ebee301c8b0.report +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX-ebee301c8b0.report @@ -2,16 +2,4 @@ BUSYBOX ebee301c8b0.c Macros: defined [-Udefined ] -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.c:2920:2: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] - __copySubFile_2038 ( __src_2042 , __dst_2043 ) ; // L18 - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.c:2920:2: warning: 2nd function call argument is an uninitialized value [core.CallAndMessage] - __copySubFile_2038 ( __src_2042 , __dst_2043 ) ; // L18 - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -2 warnings generated. -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX-eef2317b9f5.report b/fonda/cpp_testsuite/varBugs/BUSYBOX-eef2317b9f5.report index fcee66f5..d66fb1f2 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX-eef2317b9f5.report +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX-eef2317b9f5.report @@ -2,63 +2,6 @@ BUSYBOX eef2317b9f5.c Macros: CONFIG_FEATURE_CLEAN_UP [-UCONFIG_FEATURE_CLEAN_UP ] -clang :: 95 :: Line:26 - Value stored to 'buf' is never read [deadcode.DeadStores] -clang :: 96 :: Line:34 - Potential leak of memory pointed to by 'buf' [unix.Malloc] -infer :: 97 :: Line:26 +infer :: 12 :: Line:26 Memory Leak -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c:1686:5: warning: Potential leak of memory pointed to by '__buf_964' [unix.Malloc] -if (__static_condition_default_972) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c:1692:7: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] -if ( __buf_964 )// L30 - ^~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c:1703:5: warning: Potential leak of memory pointed to by '__buf_964' [unix.Malloc] -if (__static_condition_default_974) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c:1749:2: warning: Value stored to '__buf_964' is never read [deadcode.DeadStores] - __buf_964 = malloc ( __bufsize_965 ) ; // L26 - ^ ~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c:1752:2: warning: Value stored to '__buf_964' is never read [deadcode.DeadStores] - __buf_964 = malloc ( __bufsize_965 ) ; // L26 - ^ ~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c:1754:5: warning: Potential leak of memory pointed to by '__buf_964' [unix.Malloc] -if (__static_condition_default_978) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c:1754:5: warning: Potential leak of memory pointed to by '__buf_964' [unix.Malloc] -if (__static_condition_default_978) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -7 warnings generated. -Desugared Infer Results: - -BUSYBOX/eef2317b9f5.desugared.c:1749: error: Memory Leak - Memory dynamically allocated by `malloc` on line 1749 is not freed after the last access at line 1749, column 2. - 1747. } - 1748. if (__static_condition_default_976) { - 1749. __buf_964 = malloc ( __bufsize_965 ) ; // L26 - ^ - 1750. } - 1751. if (__static_condition_default_977) { - -BUSYBOX/eef2317b9f5.desugared.c:1752: error: Memory Leak - Memory dynamically allocated by `malloc` on line 1752 is not freed after the last access at line 1752, column 2. - 1750. } - 1751. if (__static_condition_default_977) { - 1752. __buf_964 = malloc ( __bufsize_965 ) ; // L26 - ^ - 1753. } - 1754. if (__static_condition_default_978) { - - -Found 2 issues - Issue Type(ISSUED_TYPE_ID): # - Memory Leak(MEMORY_LEAK_C): 2 -Matches: - 95 has a match! -Unmatched ids: - 96 -Matches: -Unmatched ids: - 97 +File Failed diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.desugared.c index 77a03ca5..1aaf1665 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -26,7 +27,7 @@ void (__ext2fs_open2_2) (void ) { { if (__static_condition_default_3) { -{ +{// L3 { @@ -34,14 +35,14 @@ if (__static_condition_default_3) { char * (__gdp_0);// L4 } -} +}// L13 } if (__static_condition_default_4) { -{ +{// L3 { @@ -53,18 +54,18 @@ char * (__gdp_0);// L4 for ( ; __j_1 < 10 ; __j_1 ++ ) // L8 { -{ +{// L9 { __static_type_error("type error : no valid expression"); // L10 } +}// L11 } } } -} -} +}// L13 } @@ -72,20 +73,20 @@ __static_type_error("type error : no valid expression"); // L10 }} void (__ext2fs_open_5) (void ) { -{ +{// L16 { __ext2fs_open2_2 ( ) ; // L17 } -} +}// L18 } int (__main_8) (int __argc_6, char * (* (__argv_7))) { -{ +{// L21 { @@ -93,7 +94,7 @@ int (__main_8) (int __argc_6, char * (* (__argv_7))) { __ext2fs_open_5 ( ) ; // L22 return 0 ;// L23 } -} +}// L24 } diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.desugared.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.desugared.clangres index 91e72a3b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.desugared.clangres @@ -1,4 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.desugared.c:51:2: warning: Value stored to '__gdp_0' is never read [deadcode.DeadStores] - __gdp_0 = "group_desc" ; // L7 - ^ ~~~~~~~~~~~~ -1 warning generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.clangres index 665ffe5e..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.clangres @@ -1,10 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.c:16:9: warning: Value stored to 'p' is never read [deadcode.DeadStores] - p = *argv++, --argc; - ^ ~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.c:20:10: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] - if(!p) - ^~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.c:27:10: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] - if(!p) - ^~ -3 warnings generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.c index c8f1e48e..0dc1e4d3 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -11,8 +12,8 @@ extern const bool __static_condition_default_568; extern const bool __static_condition_default_313; extern const bool __static_condition_default_278; extern const bool __static_condition_default_1428; -extern const bool __static_condition_default_1808; extern const bool __static_condition_default_433; +extern const bool __static_condition_default_2067; extern const bool __static_condition_default_393; extern const bool __static_condition_default_991; extern const bool __static_condition_default_1165; @@ -21,7 +22,6 @@ extern const bool __static_condition_default_1532; extern const bool __static_condition_default_241; extern const bool __static_condition_default_907; extern const bool __static_condition_default_1395; -extern const bool __static_condition_default_1785; extern const bool __static_condition_default_683; extern const bool __static_condition_default_1022; extern const bool __static_condition_default_647; @@ -36,10 +36,11 @@ extern const bool __static_condition_default_455; extern const bool __static_condition_default_1027; extern const bool __static_condition_default_700; extern const bool __static_condition_default_715; +extern const bool __static_condition_default_1775; extern const bool __static_condition_default_864; extern const bool __static_condition_default_1381; +extern const bool __static_condition_default_2045; extern const bool __static_condition_default_542; -extern const bool __static_condition_default_2065; extern const bool __static_condition_default_552; extern const bool __static_condition_default_590; extern const bool __static_condition_default_686; @@ -48,20 +49,20 @@ extern const bool __static_condition_default_210; extern const bool __static_condition_default_685; extern const bool __static_condition_default_259; extern const bool __static_condition_default_761; -extern const bool __static_condition_default_2064; extern const bool __static_condition_default_267; extern const bool __static_condition_default_473; extern const bool __static_condition_default_638; extern const bool __static_condition_default_76; extern const bool __static_condition_default_523; extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_2068; extern const bool __static_condition_default_1164; extern const bool __static_condition_default_709; +extern const bool __static_condition_default_2075; extern const bool __static_condition_default_1750; extern const bool __static_condition_default_846; extern const bool __static_condition_default_1388; extern const bool __static_condition_default_373; +extern const bool __static_condition_default_1816; extern const bool __static_condition_default_862; extern const bool __static_condition_default_182; extern const bool __static_condition_default_299; @@ -72,12 +73,11 @@ extern const bool __static_condition_default_499; extern const bool __static_condition_default_248; extern const bool __static_condition_default_444; extern const bool __static_condition_default_564; -extern const bool __static_condition_default_2077; extern const bool __static_condition_default_357; extern const bool __static_condition_default_193; extern const bool __static_condition_default_1409; -extern const bool __static_condition_default_2050; -extern const bool __static_condition_default_1791; +extern const bool __static_condition_default_2058; +extern const bool __static_condition_default_1776; extern const bool __static_condition_default_1391; extern const bool __static_condition_default_286; extern const bool __static_condition_default_573; @@ -85,6 +85,7 @@ extern const bool __static_condition_default_803; extern const bool __static_condition_default_1073; extern const bool __static_condition_default_657; extern const bool __static_condition_default_1159; +extern const bool __static_condition_default_2046; extern const bool __static_condition_default_677; extern const bool __static_condition_default_1564; extern const bool __static_condition_default_1050; @@ -92,22 +93,19 @@ extern const bool __static_condition_default_1753; extern const bool __static_condition_default_550; extern const bool __static_condition_default_979; extern const bool __static_condition_default_275; +extern const bool __static_condition_default_2076; extern const bool __static_condition_default_1091; extern const bool __static_condition_default_417; extern const bool __static_condition_default_817; extern const bool __static_condition_default_1459; -extern const bool __static_condition_default_1816; extern const bool __static_condition_default_250; extern const bool __static_condition_default_257; extern const bool __static_condition_default_1373; extern const bool __static_condition_default_1475; -extern const bool __static_condition_default_2078; extern const bool __static_condition_default_779; extern const bool __static_condition_default_229; extern const bool __static_condition_default_432; extern const bool __static_condition_default_274; -extern const bool __static_condition_default_1776; -extern const bool __static_condition_default_2067; extern const bool __static_condition_default_1424; extern const bool __static_condition_default_636; extern const bool __static_condition_default_521; @@ -117,11 +115,11 @@ extern const bool __static_condition_default_1402; extern const bool __static_condition_default_386; extern const bool __static_condition_default_514; extern const bool __static_condition_default_980; +extern const bool __static_condition_default_2066; extern const bool __static_condition_default_333; extern const bool __static_condition_default_789; extern const bool __static_condition_default_583; extern const bool __static_condition_default_944; -extern const bool __static_condition_default_1774; extern const bool __static_condition_default_1005; extern const bool __static_condition_default_1458; extern const bool __static_condition_default_53; @@ -131,16 +129,20 @@ extern const bool __static_condition_default_538; extern const bool __static_condition_default_296; extern const bool __static_condition_default_1568; extern const bool __static_condition_default_315; -extern const bool __static_condition_default_2074; +extern const bool __static_condition_default_1785; +extern const bool __static_condition_default_1814; extern const bool __static_condition_default_169; extern const bool __static_condition_default_787; -extern const bool __static_condition_default_2060; +extern const bool __static_condition_default_2059; +extern const bool __static_condition_default_2061; extern const bool __static_condition_default_1405; extern const bool __static_condition_default_684; extern const bool __static_condition_default_769; extern const bool __static_condition_default_957; +extern const bool __static_condition_default_2054; extern const bool __static_condition_default_201; extern const bool __static_condition_default_868; +extern const bool __static_condition_default_2074; extern const bool __static_condition_default_651; extern const bool __static_condition_default_503; extern const bool __static_condition_default_735; @@ -152,9 +154,11 @@ extern const bool __static_condition_default_978; extern const bool __static_condition_default_721; extern const bool __static_condition_default_1357; extern const bool __static_condition_default_848; +extern const bool __static_condition_default_2070; extern const bool __static_condition_default_1081; extern const bool __static_condition_default_170; extern const bool __static_condition_default_1749; +extern const bool __static_condition_default_1810; extern const bool __static_condition_default_1090; extern const bool __static_condition_default_544; extern const bool __static_condition_default_613; @@ -163,9 +167,8 @@ extern const bool __static_condition_default_431; extern const bool __static_condition_default_819; extern const bool __static_condition_default_380; extern const bool __static_condition_default_759; +extern const bool __static_condition_default_2062; extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_2076; -extern const bool __static_condition_default_2063; extern const bool __static_condition_default_894; extern const bool __static_condition_default_1754; extern const bool __static_condition_default_412; @@ -173,14 +176,15 @@ extern const bool __static_condition_default_963; extern const bool __static_condition_default_271; extern const bool __static_condition_default_1420; extern const bool __static_condition_default_270; -extern const bool __static_condition_default_2048; extern const bool __static_condition_default_493; +extern const bool __static_condition_default_2056; extern const bool __static_condition_default_249; extern const bool __static_condition_default_834; extern const bool __static_condition_default_956; extern const bool __static_condition_default_891; extern const bool __static_condition_default_663; extern const bool __static_condition_default_836; +extern const bool __static_condition_default_1808; extern const bool __static_condition_default_887; extern const bool __static_condition_default_355; extern const bool __static_condition_default_511; @@ -189,11 +193,12 @@ extern const bool __static_condition_default_471; extern const bool __static_condition_default_760; extern const bool __static_condition_default_701; extern const bool __static_condition_default_717; -extern const bool __static_condition_default_2045; extern const bool __static_condition_default_1432; extern const bool __static_condition_default_367; extern const bool __static_condition_default_929; extern const bool __static_condition_default_341; +extern const bool __static_condition_default_2039; +extern const bool __static_condition_default_2065; extern const bool __static_condition_default_842; extern const bool __static_condition_default_938; extern const bool __static_condition_default_1349; @@ -203,7 +208,6 @@ extern const bool __static_condition_default_1416; extern const bool __static_condition_default_825; extern const bool __static_condition_default_331; extern const bool __static_condition_default_693; -extern const bool __static_condition_default_2075; extern const bool __static_condition_default_1385; extern const bool __static_condition_default_187; extern const bool __static_condition_default_244; @@ -214,17 +218,18 @@ extern const bool __static_condition_default_699; extern const bool __static_condition_default_967; extern const bool __static_condition_default_475; extern const bool __static_condition_default_736; -extern const bool __static_condition_default_2071; extern const bool __static_condition_default_623; -extern const bool __static_condition_default_2079; extern const bool __static_condition_default_255; extern const bool __static_condition_default_537; extern const bool __static_condition_default_661; extern const bool __static_condition_default_745; extern const bool __static_condition_default_751; +extern const bool __static_condition_default_2080; extern const bool __static_condition_default_235; +extern const bool __static_condition_default_2053; extern const bool __static_condition_default_515; -extern const bool __static_condition_default_2049; +extern const bool __static_condition_default_1773; +extern const bool __static_condition_default_2063; extern const bool __static_condition_default_288; extern const bool __static_condition_default_536; extern const bool __static_condition_default_752; @@ -232,19 +237,16 @@ extern const bool __static_condition_default_1560; extern const bool __static_condition_default_486; extern const bool __static_condition_default_788; extern const bool __static_condition_default_1377; -extern const bool __static_condition_default_2070; extern const bool __static_condition_default_1361; extern const bool __static_condition_default_780; -extern const bool __static_condition_default_2047; extern const bool __static_condition_default_619; extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_1774; extern const bool __static_condition_default_755; -extern const bool __static_condition_default_1789; -extern const bool __static_condition_default_2073; extern const bool __static_condition_default_753; +extern const bool __static_condition_default_2068; extern const bool __static_condition_default_553; extern const bool __static_condition_default_419; -extern const bool __static_condition_default_2062; extern const bool __static_condition_default_1516; extern const bool __static_condition_default_438; extern const bool __static_condition_default_632; @@ -252,14 +254,13 @@ extern const bool __static_condition_default_955; extern const bool __static_condition_default_1080; extern const bool __static_condition_default_792; extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_2039; +extern const bool __static_condition_default_2048; extern const bool __static_condition_default_791; extern const bool __static_condition_default_840; -extern const bool __static_condition_default_1814; -extern const bool __static_condition_default_2055; extern const bool __static_condition_default_756; extern const bool __static_condition_default_408; extern const bool __static_condition_default_768; +extern const bool __static_condition_default_2049; extern const bool __static_condition_default_1057; extern const bool __static_condition_default_649; extern const bool __static_condition_default_549; @@ -267,44 +268,41 @@ extern const bool __static_condition_default_1453; extern const bool __static_condition_default_1498; extern const bool __static_condition_default_608; extern const bool __static_condition_default_650; -extern const bool __static_condition_default_2054; extern const bool __static_condition_default_560; extern const bool __static_condition_default_972; -extern const bool __static_condition_default_2056; extern const bool __static_condition_default_369; extern const bool __static_condition_default_337; +extern const bool __static_condition_default_2050; extern const bool __static_condition_default_559; extern const bool __static_condition_default_793; +extern const bool __static_condition_default_2047; extern const bool __static_condition_default_2051; extern const bool __static_condition_default_488; +extern const bool __static_condition_default_2073; extern const bool __static_condition_default_1152; -extern const bool __static_condition_default_2057; extern const bool __static_condition_default_388; extern const bool __static_condition_default_1531; extern const bool __static_condition_default_290; extern const bool __static_condition_default_284; -extern const bool __static_condition_default_2061; -extern const bool __static_condition_default_1775; extern const bool __static_condition_default_311; +extern const bool __static_condition_default_1944; extern const bool __static_condition_default_345; +extern const bool __static_condition_default_2078; extern const bool __static_condition_default_461; extern const bool __static_condition_default_1369; -extern const bool __static_condition_default_1773; extern const bool __static_condition_default_813; +extern const bool __static_condition_default_2072; +extern const bool __static_condition_default_2069; extern const bool __static_condition_default_198; extern const bool __static_condition_default_578; -extern const bool __static_condition_default_2046; extern const bool __static_condition_default_1398; extern const bool __static_condition_default_658; extern const bool __static_condition_default_875; -extern const bool __static_condition_default_2052; extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_1944; extern const bool __static_condition_default_539; extern const bool __static_condition_default_646; extern const bool __static_condition_default_659; extern const bool __static_condition_default_883; -extern const bool __static_condition_default_2058; extern const bool __static_condition_default_1515; extern const bool __static_condition_default_264; extern const bool __static_condition_default_280; @@ -313,39 +311,42 @@ extern const bool __static_condition_default_1042; extern const bool __static_condition_default_1043; extern const bool __static_condition_default_512; extern const bool __static_condition_default_223; -extern const bool __static_condition_default_1787; -extern const bool __static_condition_default_2080; +extern const bool __static_condition_default_2079; extern const bool __static_condition_default_541; extern const bool __static_condition_default_293; extern const bool __static_condition_default_585; extern const bool __static_condition_default_852; extern const bool __static_condition_default_1066; extern const bool __static_condition_default_747; +extern const bool __static_condition_default_2057; extern const bool __static_condition_default_1007; extern const bool __static_condition_default_998; extern const bool __static_condition_default_1436; extern const bool __static_condition_default_801; extern const bool __static_condition_default_1353; extern const bool __static_condition_default_173; +extern const bool __static_condition_default_1789; extern const bool __static_condition_default_263; extern const bool __static_condition_default_1345; -extern const bool __static_condition_default_2059; extern const bool __static_condition_default_668; extern const bool __static_condition_default_723; extern const bool __static_condition_default_858; +extern const bool __static_condition_default_2055; extern const bool __static_condition_default_797; extern const bool __static_condition_default_282; extern const bool __static_condition_default_1576; -extern const bool __static_condition_default_2066; extern const bool __static_condition_default_625; extern const bool __static_condition_default_375; extern const bool __static_condition_default_1015; +extern const bool __static_condition_default_2064; extern const bool __static_condition_default_872; extern const bool __static_condition_default_491; -extern const bool __static_condition_default_1810; +extern const bool __static_condition_default_2077; extern const bool __static_condition_default_84; extern const bool __static_condition_default_217; extern const bool __static_condition_default_494; +extern const bool __static_condition_default_2060; +extern const bool __static_condition_default_2052; extern const bool __static_condition_default_1058; extern const bool __static_condition_default_347; extern const bool __static_condition_default_597; @@ -353,7 +354,9 @@ extern const bool __static_condition_default_1365; extern const bool __static_condition_default_365; extern const bool __static_condition_default_708; extern const bool __static_condition_default_1065; +extern const bool __static_condition_default_2071; extern const bool __static_condition_default_809; +extern const bool __static_condition_default_1787; extern const bool __static_condition_default_670; extern const bool __static_condition_default_637; extern const bool __static_condition_default_204; @@ -364,17 +367,15 @@ extern const bool __static_condition_default_529; extern const bool __static_condition_default_1036; extern const bool __static_condition_default_1552; extern const bool __static_condition_default_757; -extern const bool __static_condition_default_2053; extern const bool __static_condition_default_602; extern const bool __static_condition_default_914; extern const bool __static_condition_default_1485; -extern const bool __static_condition_default_2069; -extern const bool __static_condition_default_2072; extern const bool __static_condition_default_382; extern const bool __static_condition_default_489; extern const bool __static_condition_default_516; extern const bool __static_condition_default_510; extern const bool __static_condition_default_727; +extern const bool __static_condition_default_1791; extern const bool __static_condition_default_246; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); @@ -2411,14 +2412,14 @@ static __inline unsigned int (____bswap_32_1158) (unsigned int ____bsx_1157) { if (__static_condition_default_1159) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -2427,14 +2428,14 @@ static __inline ____uint64_t_13 (____bswap_64_1162) (____uint64_t_13 ____bsx_1 if (__static_condition_default_1164) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2443,14 +2444,14 @@ static __inline ____uint64_t_1112 (____bswap_64_1163) (____uint64_t_1112 ____b if (__static_condition_default_1165) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2655,14 +2656,14 @@ static __inline unsigned int (____bswap_32_1452) (unsigned int ____bsx_1451) { if (__static_condition_default_1453) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -2671,14 +2672,14 @@ static __inline ____uint64_t_13 (____bswap_64_1456) (____uint64_t_13 ____bsx_1 if (__static_condition_default_1458) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2687,14 +2688,14 @@ static __inline ____uint64_t_1275 (____bswap_64_1457) (____uint64_t_1275 ____b if (__static_condition_default_1459) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2922,7 +2923,7 @@ int (__main_2042) (int __argc_2036, char * (* (__argv_2037))) { if (__static_condition_default_2045) { -{ +{// L5 { @@ -3080,7 +3081,7 @@ break ; // L22 } return 0 ;// L36 } -} +}// L37 } @@ -3089,7 +3090,7 @@ int (__main_2043) (int __argc_2036, char * (* (__argv_2037))) { if (__static_condition_default_2058) { -{ +{// L5 { @@ -3247,7 +3248,7 @@ break ; // L22 } return 0 ;// L36 } -} +}// L37 } @@ -3256,7 +3257,7 @@ int (__main_2044) (int __argc_2036, char * (* (__argv_2037))) { if (__static_condition_default_2071) { -{ +{// L5 { @@ -3396,7 +3397,7 @@ break ; // L22 } return 0 ;// L36 } -} +}// L37 } diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.clangres index 7c7bab72..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.clangres @@ -1,7 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.c:3062:2: warning: Value stored to '__p_2040' is never read [deadcode.DeadStores] - __p_2040 = * __argv_2037 ++ , -- __argc_2036 ; // L16 - ^ ~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.c:3229:2: warning: Value stored to '__p_2040' is never read [deadcode.DeadStores] - __p_2040 = * __argv_2037 ++ , -- __argc_2036 ; // L16 - ^ ~~~~~~~~~~~~~~~~~~ -2 warnings generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/192c35f6eb2.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/192c35f6eb2.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/192c35f6eb2.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/192c35f6eb2.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/192c35f6eb2.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/192c35f6eb2.desugared.c index dbf1f740..1469895b 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/192c35f6eb2.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/192c35f6eb2.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -1590,7 +1591,7 @@ void (__logMessage_1381) (char * (__msg_1378)) { { if (__static_condition_default_1383) { -{ +{// L5 { @@ -1598,14 +1599,14 @@ if (__static_condition_default_1383) { static char __line_1379[512];// L6 } -} +}// L16 } if (__static_condition_default_1384) { -{ +{// L5 { @@ -1617,7 +1618,7 @@ int __remotefd_1380= 1;// L9 if ( __remotefd_1380 )// L11 { -{ +{// L11 { @@ -1641,10 +1642,10 @@ if (__static_condition_default_1390) { __static_type_error("type error") ; // L13 } } +}// L14 } } -} -} +}// L16 } @@ -1655,7 +1656,7 @@ void (__logMessage_1382) (char * (__msg_1378)) { { if (__static_condition_default_1391) { -{ +{// L5 { @@ -1663,14 +1664,14 @@ if (__static_condition_default_1391) { static char __line_1379[512];// L6 } -} +}// L16 } if (__static_condition_default_1392) { -{ +{// L5 { @@ -1682,7 +1683,7 @@ int __remotefd_1380= 1;// L9 if ( __remotefd_1380 )// L11 { -{ +{// L11 { @@ -1695,10 +1696,10 @@ if (__static_condition_default_1394) { __static_type_error("type error") ; // L13 } } +}// L14 } } -} -} +}// L16 } @@ -1706,7 +1707,7 @@ __static_type_error("type error") ; // L13 }} void (__doSyslogd_1395) (void ) { -{ +{// L19 { @@ -1718,13 +1719,13 @@ if (__static_condition_default_1397) { __logMessage_1382 ("syslogd started") ; // L20 } } -} +}// L21 } int (__main_1400) (int __argc_1398, char * (* (__argv_1399))) { -{ +{// L24 { @@ -1732,7 +1733,7 @@ int (__main_1400) (int __argc_1398, char * (* (__argv_1399))) { __doSyslogd_1395 ( ) ; // L25 return 0 ;// L26 } -} +}// L27 } diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/192c35f6eb2.desugared.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/192c35f6eb2.desugared.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/192c35f6eb2.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/192c35f6eb2.desugared.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.clangres index 351340d1..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.clangres @@ -1,4 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.c:21:3: warning: Null pointer passed to 2nd parameter expecting 'nonnull' [core.NonNullParamChecker] - strcat(buf, dt); // ERROR - ^~~~~~~~~~~~~~~ -1 warning generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.c index 15c994e1..70b008b0 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -9,12 +10,13 @@ void __static_initializer_default(); extern const bool __static_condition_default_455; extern const bool __static_condition_default_255; -extern const bool __static_condition_default_2321; extern const bool __static_condition_default_715; extern const bool __static_condition_default_1753; extern const bool __static_condition_default_512; extern const bool __static_condition_default_204; -extern const bool __static_condition_default_2411; +extern const bool __static_condition_default_1787; +extern const bool __static_condition_default_1814; +extern const bool __static_condition_default_2044; extern const bool __static_condition_default_267; extern const bool __static_condition_default_1050; extern const bool __static_condition_default_259; @@ -24,22 +26,25 @@ extern const bool __static_condition_default_807; extern const bool __static_condition_default_661; extern const bool __static_condition_default_210; extern const bool __static_condition_default_1405; -extern const bool __static_condition_default_2342; -extern const bool __static_condition_default_2329; -extern const bool __static_condition_default_2405; extern const bool __static_condition_default_357; extern const bool __static_condition_default_699; extern const bool __static_condition_default_980; +extern const bool __static_condition_default_1808; +extern const bool __static_condition_default_2046; +extern const bool __static_condition_default_2388; extern const bool __static_condition_default_550; +extern const bool __static_condition_default_1785; extern const bool __static_condition_default_1057; extern const bool __static_condition_default_780; extern const bool __static_condition_default_1357; +extern const bool __static_condition_default_2314; +extern const bool __static_condition_default_2047; +extern const bool __static_condition_default_2351; extern const bool __static_condition_default_76; extern const bool __static_condition_default_515; extern const bool __static_condition_default_1051; extern const bool __static_condition_default_238; extern const bool __static_condition_default_469; -extern const bool __static_condition_default_1944; extern const bool __static_condition_default_444; extern const bool __static_condition_default_792; extern const bool __static_condition_default_1315; @@ -49,41 +54,37 @@ extern const bool __static_condition_default_1361; extern const bool __static_condition_default_767; extern const bool __static_condition_default_723; extern const bool __static_condition_default_388; -extern const bool __static_condition_default_2381; extern const bool __static_condition_default_564; extern const bool __static_condition_default_1556; extern const bool __static_condition_default_284; extern const bool __static_condition_default_753; +extern const bool __static_condition_default_2043; extern const bool __static_condition_default_253; extern const bool __static_condition_default_597; extern const bool __static_condition_default_1015; extern const bool __static_condition_default_248; extern const bool __static_condition_default_894; extern const bool __static_condition_default_317; -extern const bool __static_condition_default_2322; extern const bool __static_condition_default_852; extern const bool __static_condition_default_677; extern const bool __static_condition_default_510; extern const bool __static_condition_default_542; extern const bool __static_condition_default_341; extern const bool __static_condition_default_721; -extern const bool __static_condition_default_2396; extern const bool __static_condition_default_286; extern const bool __static_condition_default_559; extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_2312; extern const bool __static_condition_default_241; extern const bool __static_condition_default_789; +extern const bool __static_condition_default_2329; extern const bool __static_condition_default_872; -extern const bool __static_condition_default_2389; -extern const bool __static_condition_default_1774; +extern const bool __static_condition_default_2045; extern const bool __static_condition_default_560; -extern const bool __static_condition_default_1789; extern const bool __static_condition_default_494; extern const bool __static_condition_default_1353; -extern const bool __static_condition_default_2395; extern const bool __static_condition_default_1515; extern const bool __static_condition_default_1432; -extern const bool __static_condition_default_1776; extern const bool __static_condition_default_793; extern const bool __static_condition_default_1152; extern const bool __static_condition_default_963; @@ -95,28 +96,28 @@ extern const bool __static_condition_default_1531; extern const bool __static_condition_default_751; extern const bool __static_condition_default_878; extern const bool __static_condition_default_1349; +extern const bool __static_condition_default_2411; extern const bool __static_condition_default_169; extern const bool __static_condition_default_419; extern const bool __static_condition_default_746; extern const bool __static_condition_default_2400; extern const bool __static_condition_default_475; -extern const bool __static_condition_default_1785; extern const bool __static_condition_default_393; extern const bool __static_condition_default_813; -extern const bool __static_condition_default_2314; extern const bool __static_condition_default_647; -extern const bool __static_condition_default_2046; extern const bool __static_condition_default_668; extern const bool __static_condition_default_246; -extern const bool __static_condition_default_2349; extern const bool __static_condition_default_544; extern const bool __static_condition_default_1750; +extern const bool __static_condition_default_2399; +extern const bool __static_condition_default_2395; extern const bool __static_condition_default_727; extern const bool __static_condition_default_757; extern const bool __static_condition_default_883; +extern const bool __static_condition_default_2320; +extern const bool __static_condition_default_2396; extern const bool __static_condition_default_217; extern const bool __static_condition_default_1754; -extern const bool __static_condition_default_2312; extern const bool __static_condition_default_235; extern const bool __static_condition_default_53; extern const bool __static_condition_default_244; @@ -124,19 +125,13 @@ extern const bool __static_condition_default_1424; extern const bool __static_condition_default_1385; extern const bool __static_condition_default_280; extern const bool __static_condition_default_288; -extern const bool __static_condition_default_2328; extern const bool __static_condition_default_709; extern const bool __static_condition_default_499; extern const bool __static_condition_default_1080; extern const bool __static_condition_default_491; -extern const bool __static_condition_default_2330; -extern const bool __static_condition_default_2343; -extern const bool __static_condition_default_2350; extern const bool __static_condition_default_1475; -extern const bool __static_condition_default_1791; extern const bool __static_condition_default_521; extern const bool __static_condition_default_1459; -extern const bool __static_condition_default_2376; extern const bool __static_condition_default_1007; extern const bool __static_condition_default_170; extern const bool __static_condition_default_663; @@ -144,35 +139,38 @@ extern const bool __static_condition_default_333; extern const bool __static_condition_default_516; extern const bool __static_condition_default_373; extern const bool __static_condition_default_1572; -extern const bool __static_condition_default_2397; +extern const bool __static_condition_default_2381; +extern const bool __static_condition_default_2401; extern const bool __static_condition_default_201; extern const bool __static_condition_default_471; -extern const bool __static_condition_default_1808; extern const bool __static_condition_default_1164; extern const bool __static_condition_default_433; extern const bool __static_condition_default_683; extern const bool __static_condition_default_568; extern const bool __static_condition_default_717; +extern const bool __static_condition_default_2403; extern const bool __static_condition_default_1568; extern const bool __static_condition_default_1377; extern const bool __static_condition_default_573; extern const bool __static_condition_default_408; -extern const bool __static_condition_default_2387; -extern const bool __static_condition_default_2404; extern const bool __static_condition_default_432; +extern const bool __static_condition_default_2394; extern const bool __static_condition_default_355; +extern const bool __static_condition_default_1944; extern const bool __static_condition_default_395; extern const bool __static_condition_default_967; extern const bool __static_condition_default_825; extern const bool __static_condition_default_1028; extern const bool __static_condition_default_840; extern const bool __static_condition_default_1516; +extern const bool __static_condition_default_2378; +extern const bool __static_condition_default_2349; extern const bool __static_condition_default_84; extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_2342; extern const bool __static_condition_default_538; extern const bool __static_condition_default_583; extern const bool __static_condition_default_625; -extern const bool __static_condition_default_2063; extern const bool __static_condition_default_402; extern const bool __static_condition_default_662; extern const bool __static_condition_default_938; @@ -187,40 +185,41 @@ extern const bool __static_condition_default_296; extern const bool __static_condition_default_313; extern const bool __static_condition_default_779; extern const bool __static_condition_default_693; -extern const bool __static_condition_default_2394; extern const bool __static_condition_default_632; extern const bool __static_condition_default_734; +extern const bool __static_condition_default_2343; extern const bool __static_condition_default_173; +extern const bool __static_condition_default_1791; extern const bool __static_condition_default_621; extern const bool __static_condition_default_613; extern const bool __static_condition_default_638; extern const bool __static_condition_default_623; extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_2062; extern const bool __static_condition_default_1345; +extern const bool __static_condition_default_1789; extern const bool __static_condition_default_541; extern const bool __static_condition_default_755; extern const bool __static_condition_default_1027; extern const bool __static_condition_default_1560; extern const bool __static_condition_default_299; extern const bool __static_condition_default_868; -extern const bool __static_condition_default_2399; extern const bool __static_condition_default_198; extern const bool __static_condition_default_1485; +extern const bool __static_condition_default_2389; extern const bool __static_condition_default_503; -extern const bool __static_condition_default_1773; extern const bool __static_condition_default_979; extern const bool __static_condition_default_331; extern const bool __static_condition_default_514; extern const bool __static_condition_default_1749; -extern const bool __static_condition_default_2410; extern const bool __static_condition_default_549; extern const bool __static_condition_default_290; -extern const bool __static_condition_default_2378; extern const bool __static_condition_default_511; extern const bool __static_condition_default_278; extern const bool __static_condition_default_634; extern const bool __static_condition_default_700; extern const bool __static_condition_default_1564; +extern const bool __static_condition_default_1810; extern const bool __static_condition_default_275; extern const bool __static_condition_default_929; extern const bool __static_condition_default_293; @@ -230,30 +229,34 @@ extern const bool __static_condition_default_375; extern const bool __static_condition_default_529; extern const bool __static_condition_default_702; extern const bool __static_condition_default_590; +extern const bool __static_condition_default_2064; extern const bool __static_condition_default_438; +extern const bool __static_condition_default_2398; extern const bool __static_condition_default_978; extern const bool __static_condition_default_760; extern const bool __static_condition_default_842; -extern const bool __static_condition_default_2351; +extern const bool __static_condition_default_2409; extern const bool __static_condition_default_1409; -extern const bool __static_condition_default_1816; -extern const bool __static_condition_default_2401; extern const bool __static_condition_default_536; +extern const bool __static_condition_default_1775; extern const bool __static_condition_default_761; extern const bool __static_condition_default_864; extern const bool __static_condition_default_229; extern const bool __static_condition_default_1369; +extern const bool __static_condition_default_2376; extern const bool __static_condition_default_263; +extern const bool __static_condition_default_2322; extern const bool __static_condition_default_637; extern const bool __static_condition_default_801; extern const bool __static_condition_default_1073; extern const bool __static_condition_default_250; +extern const bool __static_condition_default_1773; extern const bool __static_condition_default_769; extern const bool __static_condition_default_956; extern const bool __static_condition_default_1089; extern const bool __static_condition_default_1373; +extern const bool __static_condition_default_2397; extern const bool __static_condition_default_944; -extern const bool __static_condition_default_1810; extern const bool __static_condition_default_365; extern const bool __static_condition_default_657; extern const bool __static_condition_default_431; @@ -261,12 +264,10 @@ extern const bool __static_condition_default_991; extern const bool __static_condition_default_636; extern const bool __static_condition_default_1532; extern const bool __static_condition_default_1552; -extern const bool __static_condition_default_2398; extern const bool __static_condition_default_537; -extern const bool __static_condition_default_2044; -extern const bool __static_condition_default_2045; extern const bool __static_condition_default_1428; extern const bool __static_condition_default_539; +extern const bool __static_condition_default_2404; extern const bool __static_condition_default_193; extern const bool __static_condition_default_417; extern const bool __static_condition_default_752; @@ -282,6 +283,7 @@ extern const bool __static_condition_default_380; extern const bool __static_condition_default_1576; extern const bool __static_condition_default_823; extern const bool __static_condition_default_1395; +extern const bool __static_condition_default_1774; extern const bool __static_condition_default_745; extern const bool __static_condition_default_781; extern const bool __static_condition_default_846; @@ -299,10 +301,11 @@ extern const bool __static_condition_default_809; extern const bool __static_condition_default_658; extern const bool __static_condition_default_858; extern const bool __static_condition_default_367; -extern const bool __static_condition_default_2047; +extern const bool __static_condition_default_2321; +extern const bool __static_condition_default_2328; +extern const bool __static_condition_default_2405; extern const bool __static_condition_default_788; extern const bool __static_condition_default_819; -extern const bool __static_condition_default_2064; extern const bool __static_condition_default_493; extern const bool __static_condition_default_497; extern const bool __static_condition_default_1402; @@ -315,19 +318,16 @@ extern const bool __static_condition_default_1453; extern const bool __static_condition_default_759; extern const bool __static_condition_default_646; extern const bool __static_condition_default_803; -extern const bool __static_condition_default_2320; +extern const bool __static_condition_default_2330; extern const bool __static_condition_default_345; -extern const bool __static_condition_default_1814; extern const bool __static_condition_default_249; extern const bool __static_condition_default_797; extern const bool __static_condition_default_887; extern const bool __static_condition_default_834; extern const bool __static_condition_default_461; extern const bool __static_condition_default_1365; -extern const bool __static_condition_default_1775; extern const bool __static_condition_default_651; extern const bool __static_condition_default_955; -extern const bool __static_condition_default_2043; extern const bool __static_condition_default_701; extern const bool __static_condition_default_363; extern const bool __static_condition_default_708; @@ -335,11 +335,12 @@ extern const bool __static_condition_default_862; extern const bool __static_condition_default_257; extern const bool __static_condition_default_311; extern const bool __static_condition_default_650; -extern const bool __static_condition_default_2388; extern const bool __static_condition_default_1436; +extern const bool __static_condition_default_2063; extern const bool __static_condition_default_1058; extern const bool __static_condition_default_386; extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_2377; extern const bool __static_condition_default_1391; extern const bool __static_condition_default_1416; extern const bool __static_condition_default_412; @@ -351,17 +352,14 @@ extern const bool __static_condition_default_1341; extern const bool __static_condition_default_282; extern const bool __static_condition_default_659; extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_2377; extern const bool __static_condition_default_836; extern const bool __static_condition_default_848; +extern const bool __static_condition_default_2350; extern const bool __static_condition_default_271; extern const bool __static_condition_default_347; extern const bool __static_condition_default_578; extern const bool __static_condition_default_645; -extern const bool __static_condition_default_2402; -extern const bool __static_condition_default_2062; -extern const bool __static_condition_default_2409; -extern const bool __static_condition_default_2403; +extern const bool __static_condition_default_2387; extern const bool __static_condition_default_489; extern const bool __static_condition_default_543; extern const bool __static_condition_default_1065; @@ -369,19 +367,22 @@ extern const bool __static_condition_default_1159; extern const bool __static_condition_default_619; extern const bool __static_condition_default_756; extern const bool __static_condition_default_1420; +extern const bool __static_condition_default_1776; +extern const bool __static_condition_default_1816; extern const bool __static_condition_default_488; extern const bool __static_condition_default_553; extern const bool __static_condition_default_337; extern const bool __static_condition_default_315; extern const bool __static_condition_default_182; extern const bool __static_condition_default_1458; -extern const bool __static_condition_default_1787; -extern const bool __static_condition_default_123; +extern const bool __static_condition_default_2402; extern const bool __static_condition_default_2313; +extern const bool __static_condition_default_123; extern const bool __static_condition_default_486; extern const bool __static_condition_default_585; extern const bool __static_condition_default_686; extern const bool __static_condition_default_1498; +extern const bool __static_condition_default_2410; extern const bool __static_condition_default_473; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); @@ -2549,14 +2550,14 @@ static __inline unsigned int (____bswap_32_1158) (unsigned int ____bsx_1157) { if (__static_condition_default_1159) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -2565,14 +2566,14 @@ static __inline ____uint64_t_13 (____bswap_64_1162) (____uint64_t_13 ____bsx_1 if (__static_condition_default_1164) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2581,14 +2582,14 @@ static __inline ____uint64_t_1112 (____bswap_64_1163) (____uint64_t_1112 ____b if (__static_condition_default_1165) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2793,14 +2794,14 @@ static __inline unsigned int (____bswap_32_1452) (unsigned int ____bsx_1451) { if (__static_condition_default_1453) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -2809,14 +2810,14 @@ static __inline ____uint64_t_13 (____bswap_64_1456) (____uint64_t_13 ____bsx_1 if (__static_condition_default_1458) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2825,14 +2826,14 @@ static __inline ____uint64_t_1275 (____bswap_64_1457) (____uint64_t_1275 ____b if (__static_condition_default_1459) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -3180,7 +3181,7 @@ void (__build_dep_2392) (void ) { { if (__static_condition_default_2394) { -{ +{// L6 { @@ -3191,14 +3192,14 @@ if (__static_condition_default_2395) { if ( rand( ) % 2 )// L9 { -{ +{// L9 { __dt_2390 = "-i" ; // L10 } -} +}// L11 } } if (__static_condition_default_2396) { @@ -3209,14 +3210,14 @@ char __buf_2391[50];// L18 __strcpy_2094 ( __buf_2391 ,"module option(s): ") ; // L19 __strcat_2105 ( __buf_2391 , __dt_2390 ) ; // L21 } -} +}// L23 } if (__static_condition_default_2397) { -{ +{// L6 { @@ -3227,14 +3228,14 @@ if (__static_condition_default_2398) { if ( rand( ) % 2 )// L9 { -{ +{// L9 { __dt_2390 = "-i" ; // L10 } -} +}// L11 } } if (__static_condition_default_2399) { @@ -3243,16 +3244,16 @@ __static_type_error("invalid type found in if statement"); if ( __dt_2390 )// L14 { -{ +{// L14 { } +}// L16 } } -} -} +}// L23 } @@ -3263,7 +3264,7 @@ void (__build_dep_2393) (void ) { { if (__static_condition_default_2400) { -{ +{// L6 { @@ -3274,14 +3275,14 @@ if (__static_condition_default_2401) { if ( rand( ) % 2 )// L9 { -{ +{// L9 { __dt_2390 = "-i" ; // L10 } -} +}// L11 } } if (__static_condition_default_2402) { @@ -3292,14 +3293,14 @@ char __buf_2391[50];// L18 __static_type_error("type error") ; // L19 __static_type_error("type error") ; // L21 } -} +}// L23 } if (__static_condition_default_2403) { -{ +{// L6 { @@ -3310,14 +3311,14 @@ if (__static_condition_default_2404) { if ( rand( ) % 2 )// L9 { -{ +{// L9 { __dt_2390 = "-i" ; // L10 } -} +}// L11 } } if (__static_condition_default_2405) { @@ -3326,16 +3327,16 @@ __static_type_error("invalid type found in if statement"); if ( __dt_2390 )// L14 { -{ +{// L14 { } +}// L16 } } -} -} +}// L23 } @@ -3343,7 +3344,7 @@ if ( __dt_2390 )// L14 }} int (__main_2408) (int __argc_2406, char * (* (__argv_2407))) { -{ +{// L26 { @@ -3356,7 +3357,7 @@ if (__static_condition_default_2410) { } return 0 ;// L28 } -} +}// L29 } diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.clangres index 6e329efe..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.clangres @@ -1,4 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.c:3282:2: warning: Value stored to '__dt_2390' is never read [deadcode.DeadStores] - __dt_2390 = "-i" ; // L10 - ^ ~~~~ -1 warning generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.c index 5d997ca9..0c5965ab 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -11,7 +12,6 @@ extern const bool __static_condition_default_568; extern const bool __static_condition_default_313; extern const bool __static_condition_default_278; extern const bool __static_condition_default_1428; -extern const bool __static_condition_default_1808; extern const bool __static_condition_default_433; extern const bool __static_condition_default_393; extern const bool __static_condition_default_991; @@ -21,35 +21,35 @@ extern const bool __static_condition_default_1532; extern const bool __static_condition_default_241; extern const bool __static_condition_default_907; extern const bool __static_condition_default_1395; -extern const bool __static_condition_default_1785; extern const bool __static_condition_default_683; extern const bool __static_condition_default_1022; extern const bool __static_condition_default_647; extern const bool __static_condition_default_823; -extern const bool __static_condition_default_2053; extern const bool __static_condition_default_1315; extern const bool __static_condition_default_402; extern const bool __static_condition_default_317; extern const bool __static_condition_default_746; extern const bool __static_condition_default_497; extern const bool __static_condition_default_633; +extern const bool __static_condition_default_2051; extern const bool __static_condition_default_455; extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_2070; extern const bool __static_condition_default_700; extern const bool __static_condition_default_715; +extern const bool __static_condition_default_1775; extern const bool __static_condition_default_864; extern const bool __static_condition_default_1381; extern const bool __static_condition_default_542; +extern const bool __static_condition_default_2064; extern const bool __static_condition_default_552; extern const bool __static_condition_default_590; extern const bool __static_condition_default_686; -extern const bool __static_condition_default_2048; extern const bool __static_condition_default_253; extern const bool __static_condition_default_210; extern const bool __static_condition_default_685; extern const bool __static_condition_default_259; extern const bool __static_condition_default_761; +extern const bool __static_condition_default_2071; extern const bool __static_condition_default_267; extern const bool __static_condition_default_473; extern const bool __static_condition_default_638; @@ -62,11 +62,13 @@ extern const bool __static_condition_default_1750; extern const bool __static_condition_default_846; extern const bool __static_condition_default_1388; extern const bool __static_condition_default_373; +extern const bool __static_condition_default_1816; extern const bool __static_condition_default_862; extern const bool __static_condition_default_182; extern const bool __static_condition_default_299; extern const bool __static_condition_default_767; extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_2042; extern const bool __static_condition_default_469; extern const bool __static_condition_default_499; extern const bool __static_condition_default_248; @@ -75,28 +77,27 @@ extern const bool __static_condition_default_564; extern const bool __static_condition_default_357; extern const bool __static_condition_default_193; extern const bool __static_condition_default_1409; -extern const bool __static_condition_default_1791; +extern const bool __static_condition_default_1776; extern const bool __static_condition_default_1391; -extern const bool __static_condition_default_2073; extern const bool __static_condition_default_286; extern const bool __static_condition_default_573; extern const bool __static_condition_default_803; extern const bool __static_condition_default_1073; extern const bool __static_condition_default_657; -extern const bool __static_condition_default_2066; extern const bool __static_condition_default_1159; extern const bool __static_condition_default_677; +extern const bool __static_condition_default_2043; extern const bool __static_condition_default_1564; extern const bool __static_condition_default_1050; extern const bool __static_condition_default_1753; extern const bool __static_condition_default_550; extern const bool __static_condition_default_979; extern const bool __static_condition_default_275; +extern const bool __static_condition_default_2072; extern const bool __static_condition_default_1091; extern const bool __static_condition_default_417; extern const bool __static_condition_default_817; extern const bool __static_condition_default_1459; -extern const bool __static_condition_default_1816; extern const bool __static_condition_default_250; extern const bool __static_condition_default_257; extern const bool __static_condition_default_1373; @@ -105,16 +106,15 @@ extern const bool __static_condition_default_779; extern const bool __static_condition_default_229; extern const bool __static_condition_default_432; extern const bool __static_condition_default_274; -extern const bool __static_condition_default_1776; -extern const bool __static_condition_default_2057; -extern const bool __static_condition_default_2064; +extern const bool __static_condition_default_2048; +extern const bool __static_condition_default_2049; extern const bool __static_condition_default_1424; extern const bool __static_condition_default_636; +extern const bool __static_condition_default_2073; extern const bool __static_condition_default_521; extern const bool __static_condition_default_634; extern const bool __static_condition_default_734; extern const bool __static_condition_default_1402; -extern const bool __static_condition_default_2049; extern const bool __static_condition_default_386; extern const bool __static_condition_default_514; extern const bool __static_condition_default_980; @@ -122,26 +122,26 @@ extern const bool __static_condition_default_333; extern const bool __static_condition_default_789; extern const bool __static_condition_default_583; extern const bool __static_condition_default_944; -extern const bool __static_condition_default_1774; extern const bool __static_condition_default_1005; extern const bool __static_condition_default_1458; extern const bool __static_condition_default_53; extern const bool __static_condition_default_621; extern const bool __static_condition_default_1341; +extern const bool __static_condition_default_2054; extern const bool __static_condition_default_538; extern const bool __static_condition_default_296; extern const bool __static_condition_default_1568; extern const bool __static_condition_default_315; +extern const bool __static_condition_default_1785; +extern const bool __static_condition_default_1814; +extern const bool __static_condition_default_2050; extern const bool __static_condition_default_169; extern const bool __static_condition_default_787; -extern const bool __static_condition_default_2046; -extern const bool __static_condition_default_2050; extern const bool __static_condition_default_1405; extern const bool __static_condition_default_684; extern const bool __static_condition_default_769; extern const bool __static_condition_default_957; extern const bool __static_condition_default_201; -extern const bool __static_condition_default_2060; extern const bool __static_condition_default_868; extern const bool __static_condition_default_651; extern const bool __static_condition_default_503; @@ -157,11 +157,11 @@ extern const bool __static_condition_default_848; extern const bool __static_condition_default_1081; extern const bool __static_condition_default_170; extern const bool __static_condition_default_1749; +extern const bool __static_condition_default_1810; extern const bool __static_condition_default_1090; extern const bool __static_condition_default_544; extern const bool __static_condition_default_613; extern const bool __static_condition_default_662; -extern const bool __static_condition_default_2061; extern const bool __static_condition_default_431; extern const bool __static_condition_default_819; extern const bool __static_condition_default_380; @@ -172,22 +172,20 @@ extern const bool __static_condition_default_1754; extern const bool __static_condition_default_412; extern const bool __static_condition_default_963; extern const bool __static_condition_default_271; -extern const bool __static_condition_default_2051; extern const bool __static_condition_default_1420; extern const bool __static_condition_default_270; extern const bool __static_condition_default_493; extern const bool __static_condition_default_249; -extern const bool __static_condition_default_2054; extern const bool __static_condition_default_834; extern const bool __static_condition_default_956; extern const bool __static_condition_default_891; -extern const bool __static_condition_default_2047; +extern const bool __static_condition_default_2046; extern const bool __static_condition_default_663; extern const bool __static_condition_default_836; +extern const bool __static_condition_default_1808; extern const bool __static_condition_default_887; extern const bool __static_condition_default_355; extern const bool __static_condition_default_511; -extern const bool __static_condition_default_2044; extern const bool __static_condition_default_1556; extern const bool __static_condition_default_471; extern const bool __static_condition_default_760; @@ -195,10 +193,12 @@ extern const bool __static_condition_default_701; extern const bool __static_condition_default_717; extern const bool __static_condition_default_1432; extern const bool __static_condition_default_367; +extern const bool __static_condition_default_2044; extern const bool __static_condition_default_929; extern const bool __static_condition_default_341; extern const bool __static_condition_default_842; extern const bool __static_condition_default_938; +extern const bool __static_condition_default_2058; extern const bool __static_condition_default_1349; extern const bool __static_condition_default_238; extern const bool __static_condition_default_692; @@ -217,13 +217,16 @@ extern const bool __static_condition_default_967; extern const bool __static_condition_default_475; extern const bool __static_condition_default_736; extern const bool __static_condition_default_623; +extern const bool __static_condition_default_2062; extern const bool __static_condition_default_255; +extern const bool __static_condition_default_2060; extern const bool __static_condition_default_537; extern const bool __static_condition_default_661; extern const bool __static_condition_default_745; extern const bool __static_condition_default_751; extern const bool __static_condition_default_235; extern const bool __static_condition_default_515; +extern const bool __static_condition_default_1773; extern const bool __static_condition_default_288; extern const bool __static_condition_default_536; extern const bool __static_condition_default_752; @@ -235,37 +238,37 @@ extern const bool __static_condition_default_1361; extern const bool __static_condition_default_780; extern const bool __static_condition_default_619; extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_2059; +extern const bool __static_condition_default_1774; extern const bool __static_condition_default_755; -extern const bool __static_condition_default_1789; -extern const bool __static_condition_default_2065; extern const bool __static_condition_default_753; extern const bool __static_condition_default_553; extern const bool __static_condition_default_419; extern const bool __static_condition_default_1516; extern const bool __static_condition_default_438; -extern const bool __static_condition_default_2071; extern const bool __static_condition_default_632; -extern const bool __static_condition_default_2063; -extern const bool __static_condition_default_2072; +extern const bool __static_condition_default_2070; extern const bool __static_condition_default_955; extern const bool __static_condition_default_1080; extern const bool __static_condition_default_792; extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_2059; +extern const bool __static_condition_default_2057; extern const bool __static_condition_default_791; extern const bool __static_condition_default_840; -extern const bool __static_condition_default_1814; extern const bool __static_condition_default_756; +extern const bool __static_condition_default_2053; extern const bool __static_condition_default_408; extern const bool __static_condition_default_768; extern const bool __static_condition_default_1057; +extern const bool __static_condition_default_2047; extern const bool __static_condition_default_649; extern const bool __static_condition_default_549; extern const bool __static_condition_default_1453; extern const bool __static_condition_default_1498; -extern const bool __static_condition_default_2058; extern const bool __static_condition_default_608; extern const bool __static_condition_default_650; +extern const bool __static_condition_default_2052; +extern const bool __static_condition_default_2063; extern const bool __static_condition_default_560; extern const bool __static_condition_default_972; extern const bool __static_condition_default_369; @@ -275,25 +278,25 @@ extern const bool __static_condition_default_793; extern const bool __static_condition_default_488; extern const bool __static_condition_default_1152; extern const bool __static_condition_default_388; -extern const bool __static_condition_default_2042; extern const bool __static_condition_default_1531; extern const bool __static_condition_default_290; extern const bool __static_condition_default_284; -extern const bool __static_condition_default_1775; +extern const bool __static_condition_default_2066; +extern const bool __static_condition_default_2037; extern const bool __static_condition_default_311; +extern const bool __static_condition_default_1944; extern const bool __static_condition_default_345; extern const bool __static_condition_default_461; extern const bool __static_condition_default_1369; -extern const bool __static_condition_default_1773; extern const bool __static_condition_default_813; extern const bool __static_condition_default_2045; extern const bool __static_condition_default_198; extern const bool __static_condition_default_578; +extern const bool __static_condition_default_2061; extern const bool __static_condition_default_1398; extern const bool __static_condition_default_658; extern const bool __static_condition_default_875; extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_1944; extern const bool __static_condition_default_539; extern const bool __static_condition_default_646; extern const bool __static_condition_default_659; @@ -306,27 +309,26 @@ extern const bool __static_condition_default_1042; extern const bool __static_condition_default_1043; extern const bool __static_condition_default_512; extern const bool __static_condition_default_223; -extern const bool __static_condition_default_1787; extern const bool __static_condition_default_541; extern const bool __static_condition_default_293; extern const bool __static_condition_default_585; extern const bool __static_condition_default_852; extern const bool __static_condition_default_1066; extern const bool __static_condition_default_747; -extern const bool __static_condition_default_2056; +extern const bool __static_condition_default_2055; extern const bool __static_condition_default_1007; extern const bool __static_condition_default_998; extern const bool __static_condition_default_1436; extern const bool __static_condition_default_801; extern const bool __static_condition_default_1353; extern const bool __static_condition_default_173; +extern const bool __static_condition_default_1789; extern const bool __static_condition_default_263; extern const bool __static_condition_default_1345; extern const bool __static_condition_default_668; extern const bool __static_condition_default_723; extern const bool __static_condition_default_858; -extern const bool __static_condition_default_2062; -extern const bool __static_condition_default_2037; +extern const bool __static_condition_default_2056; extern const bool __static_condition_default_797; extern const bool __static_condition_default_282; extern const bool __static_condition_default_1576; @@ -334,9 +336,7 @@ extern const bool __static_condition_default_625; extern const bool __static_condition_default_375; extern const bool __static_condition_default_1015; extern const bool __static_condition_default_872; -extern const bool __static_condition_default_2055; extern const bool __static_condition_default_491; -extern const bool __static_condition_default_1810; extern const bool __static_condition_default_84; extern const bool __static_condition_default_217; extern const bool __static_condition_default_494; @@ -348,6 +348,7 @@ extern const bool __static_condition_default_365; extern const bool __static_condition_default_708; extern const bool __static_condition_default_1065; extern const bool __static_condition_default_809; +extern const bool __static_condition_default_1787; extern const bool __static_condition_default_670; extern const bool __static_condition_default_637; extern const bool __static_condition_default_204; @@ -358,16 +359,16 @@ extern const bool __static_condition_default_529; extern const bool __static_condition_default_1036; extern const bool __static_condition_default_1552; extern const bool __static_condition_default_757; -extern const bool __static_condition_default_2043; extern const bool __static_condition_default_602; extern const bool __static_condition_default_914; +extern const bool __static_condition_default_2065; extern const bool __static_condition_default_1485; extern const bool __static_condition_default_382; extern const bool __static_condition_default_489; extern const bool __static_condition_default_516; extern const bool __static_condition_default_510; extern const bool __static_condition_default_727; -extern const bool __static_condition_default_2052; +extern const bool __static_condition_default_1791; extern const bool __static_condition_default_246; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); @@ -2396,14 +2397,14 @@ static __inline unsigned int (____bswap_32_1158) (unsigned int ____bsx_1157) { if (__static_condition_default_1159) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -2412,14 +2413,14 @@ static __inline ____uint64_t_13 (____bswap_64_1162) (____uint64_t_13 ____bsx_1 if (__static_condition_default_1164) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2428,14 +2429,14 @@ static __inline ____uint64_t_1112 (____bswap_64_1163) (____uint64_t_1112 ____b if (__static_condition_default_1165) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2640,14 +2641,14 @@ static __inline unsigned int (____bswap_32_1452) (unsigned int ____bsx_1451) { if (__static_condition_default_1453) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -2656,14 +2657,14 @@ static __inline ____uint64_t_13 (____bswap_64_1456) (____uint64_t_13 ____bsx_1 if (__static_condition_default_1458) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2672,14 +2673,14 @@ static __inline ____uint64_t_1275 (____bswap_64_1457) (____uint64_t_1275 ____b if (__static_condition_default_1459) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2908,7 +2909,7 @@ void (__do_stat_2039) (const char * (__filename_2036)) { { if (__static_condition_default_2042) { -{ +{// L5 { @@ -2916,14 +2917,14 @@ if (__static_condition_default_2042) { char * (__scontext_2038)= ( ( void * ) 0 );// L7 } -} +}// L19 } if (__static_condition_default_2043) { -{ +{// L5 { @@ -2954,7 +2955,7 @@ if (__static_condition_default_2050) { __static_type_error("type error") ; // L17 } } -} +}// L19 } @@ -2965,7 +2966,7 @@ void (__do_stat_2040) (const char * (__filename_2036)) { { if (__static_condition_default_2051) { -{ +{// L5 { @@ -2973,14 +2974,14 @@ if (__static_condition_default_2051) { char * (__scontext_2038)= ( ( void * ) 0 );// L7 } -} +}// L19 } if (__static_condition_default_2052) { -{ +{// L5 { @@ -3011,7 +3012,7 @@ if (__static_condition_default_2059) { __static_type_error("type error") ; // L17 } } -} +}// L19 } @@ -3022,7 +3023,7 @@ void (__do_stat_2041) (const char * (__filename_2036)) { { if (__static_condition_default_2060) { -{ +{// L5 { @@ -3034,14 +3035,14 @@ __static_type_error("invalid declaration of scontext under this presence conditi char * (__scontext_2038)= ( ( void * ) 0 );// L7 } -} +}// L19 } if (__static_condition_default_2061) { -{ +{// L5 { @@ -3068,7 +3069,7 @@ if (__static_condition_default_2066) { __static_type_error("type error") ; // L17 } } -} +}// L19 } @@ -3076,7 +3077,7 @@ __static_type_error("type error") ; // L17 }} int (__main_2069) (int __argc_2067, char * (* (__argv_2068))) { -{ +{// L22 { @@ -3092,7 +3093,7 @@ if (__static_condition_default_2072) { } return 0 ;// L24 } -} +}// L25 } diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.clangres index 618049f6..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.clangres @@ -1,7 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.c:2937:26: warning: Dereference of null pointer (loaded from variable '__scontext_2038') [core.NullDereference] - __printf_421 (" %lc\n",* __scontext_2038 ) ; // L14 - ^~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.c:2994:26: warning: Dereference of null pointer (loaded from variable '__scontext_2038') [core.NullDereference] - __printf_421 (" %lc\n",* __scontext_2038 ) ; // L14 - ^~~~~~~~~~~~~~~~~~ -2 warnings generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.clangres index a379ab58..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.clangres @@ -1,4 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.c:67:16: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] - curr->next = head; - ^ ~~~~ -1 warning generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c index 7d238321..62930bec 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -8,24 +9,18 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); extern const bool __static_condition_default_568; -extern const bool __static_condition_default_2055; extern const bool __static_condition_default_313; extern const bool __static_condition_default_278; extern const bool __static_condition_default_1428; -extern const bool __static_condition_default_1808; extern const bool __static_condition_default_433; extern const bool __static_condition_default_393; extern const bool __static_condition_default_991; extern const bool __static_condition_default_1165; extern const bool __static_condition_default_1489; extern const bool __static_condition_default_1532; -extern const bool __static_condition_default_2069; extern const bool __static_condition_default_241; -extern const bool __static_condition_default_2092; extern const bool __static_condition_default_907; extern const bool __static_condition_default_1395; -extern const bool __static_condition_default_1785; -extern const bool __static_condition_default_2100; extern const bool __static_condition_default_683; extern const bool __static_condition_default_1022; extern const bool __static_condition_default_647; @@ -33,7 +28,6 @@ extern const bool __static_condition_default_823; extern const bool __static_condition_default_1315; extern const bool __static_condition_default_402; extern const bool __static_condition_default_317; -extern const bool __static_condition_default_2086; extern const bool __static_condition_default_746; extern const bool __static_condition_default_497; extern const bool __static_condition_default_633; @@ -41,35 +35,35 @@ extern const bool __static_condition_default_455; extern const bool __static_condition_default_1027; extern const bool __static_condition_default_700; extern const bool __static_condition_default_715; +extern const bool __static_condition_default_1775; extern const bool __static_condition_default_864; -extern const bool __static_condition_default_2098; +extern const bool __static_condition_default_2083; extern const bool __static_condition_default_1381; extern const bool __static_condition_default_542; +extern const bool __static_condition_default_2096; extern const bool __static_condition_default_552; extern const bool __static_condition_default_590; extern const bool __static_condition_default_686; extern const bool __static_condition_default_253; extern const bool __static_condition_default_210; -extern const bool __static_condition_default_2059; extern const bool __static_condition_default_685; extern const bool __static_condition_default_259; extern const bool __static_condition_default_761; -extern const bool __static_condition_default_2104; +extern const bool __static_condition_default_2097; extern const bool __static_condition_default_267; extern const bool __static_condition_default_473; extern const bool __static_condition_default_638; +extern const bool __static_condition_default_2060; extern const bool __static_condition_default_76; extern const bool __static_condition_default_523; extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_2102; extern const bool __static_condition_default_1164; extern const bool __static_condition_default_709; extern const bool __static_condition_default_1750; extern const bool __static_condition_default_846; extern const bool __static_condition_default_1388; -extern const bool __static_condition_default_2090; extern const bool __static_condition_default_373; -extern const bool __static_condition_default_2095; +extern const bool __static_condition_default_1816; extern const bool __static_condition_default_862; extern const bool __static_condition_default_182; extern const bool __static_condition_default_299; @@ -79,15 +73,15 @@ extern const bool __static_condition_default_469; extern const bool __static_condition_default_499; extern const bool __static_condition_default_248; extern const bool __static_condition_default_444; +extern const bool __static_condition_default_2088; extern const bool __static_condition_default_564; extern const bool __static_condition_default_357; extern const bool __static_condition_default_193; extern const bool __static_condition_default_1409; -extern const bool __static_condition_default_1791; -extern const bool __static_condition_default_2056; +extern const bool __static_condition_default_1776; extern const bool __static_condition_default_1391; -extern const bool __static_condition_default_2097; -extern const bool __static_condition_default_2067; +extern const bool __static_condition_default_2048; +extern const bool __static_condition_default_2093; extern const bool __static_condition_default_286; extern const bool __static_condition_default_573; extern const bool __static_condition_default_803; @@ -96,30 +90,28 @@ extern const bool __static_condition_default_657; extern const bool __static_condition_default_1159; extern const bool __static_condition_default_677; extern const bool __static_condition_default_1564; +extern const bool __static_condition_default_2045; extern const bool __static_condition_default_1050; extern const bool __static_condition_default_1753; extern const bool __static_condition_default_550; extern const bool __static_condition_default_979; extern const bool __static_condition_default_275; -extern const bool __static_condition_default_2060; +extern const bool __static_condition_default_2095; extern const bool __static_condition_default_1091; extern const bool __static_condition_default_417; extern const bool __static_condition_default_817; extern const bool __static_condition_default_1459; -extern const bool __static_condition_default_1816; extern const bool __static_condition_default_250; extern const bool __static_condition_default_257; extern const bool __static_condition_default_1373; extern const bool __static_condition_default_1475; extern const bool __static_condition_default_779; -extern const bool __static_condition_default_2044; extern const bool __static_condition_default_229; extern const bool __static_condition_default_432; +extern const bool __static_condition_default_2105; extern const bool __static_condition_default_274; -extern const bool __static_condition_default_1776; extern const bool __static_condition_default_2101; extern const bool __static_condition_default_1424; -extern const bool __static_condition_default_2087; extern const bool __static_condition_default_636; extern const bool __static_condition_default_521; extern const bool __static_condition_default_634; @@ -132,26 +124,27 @@ extern const bool __static_condition_default_333; extern const bool __static_condition_default_789; extern const bool __static_condition_default_583; extern const bool __static_condition_default_944; -extern const bool __static_condition_default_1774; extern const bool __static_condition_default_1005; extern const bool __static_condition_default_1458; extern const bool __static_condition_default_53; extern const bool __static_condition_default_621; +extern const bool __static_condition_default_2057; extern const bool __static_condition_default_1341; extern const bool __static_condition_default_538; -extern const bool __static_condition_default_2050; extern const bool __static_condition_default_296; extern const bool __static_condition_default_1568; extern const bool __static_condition_default_315; +extern const bool __static_condition_default_1785; +extern const bool __static_condition_default_1814; extern const bool __static_condition_default_169; extern const bool __static_condition_default_787; extern const bool __static_condition_default_1405; -extern const bool __static_condition_default_2068; -extern const bool __static_condition_default_2105; extern const bool __static_condition_default_684; extern const bool __static_condition_default_769; extern const bool __static_condition_default_957; extern const bool __static_condition_default_201; +extern const bool __static_condition_default_2104; +extern const bool __static_condition_default_2106; extern const bool __static_condition_default_868; extern const bool __static_condition_default_651; extern const bool __static_condition_default_503; @@ -163,21 +156,24 @@ extern const bool __static_condition_default_781; extern const bool __static_condition_default_978; extern const bool __static_condition_default_721; extern const bool __static_condition_default_1357; +extern const bool __static_condition_default_2056; +extern const bool __static_condition_default_2044; extern const bool __static_condition_default_848; extern const bool __static_condition_default_1081; extern const bool __static_condition_default_170; +extern const bool __static_condition_default_2047; extern const bool __static_condition_default_1749; +extern const bool __static_condition_default_1810; extern const bool __static_condition_default_1090; extern const bool __static_condition_default_544; extern const bool __static_condition_default_613; extern const bool __static_condition_default_662; extern const bool __static_condition_default_431; extern const bool __static_condition_default_819; -extern const bool __static_condition_default_2057; +extern const bool __static_condition_default_2099; extern const bool __static_condition_default_380; extern const bool __static_condition_default_759; extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_2091; extern const bool __static_condition_default_894; extern const bool __static_condition_default_1754; extern const bool __static_condition_default_412; @@ -191,12 +187,11 @@ extern const bool __static_condition_default_834; extern const bool __static_condition_default_956; extern const bool __static_condition_default_891; extern const bool __static_condition_default_663; -extern const bool __static_condition_default_2099; extern const bool __static_condition_default_836; +extern const bool __static_condition_default_1808; extern const bool __static_condition_default_887; extern const bool __static_condition_default_355; extern const bool __static_condition_default_511; -extern const bool __static_condition_default_2106; extern const bool __static_condition_default_1556; extern const bool __static_condition_default_471; extern const bool __static_condition_default_760; @@ -208,15 +203,14 @@ extern const bool __static_condition_default_929; extern const bool __static_condition_default_341; extern const bool __static_condition_default_842; extern const bool __static_condition_default_938; -extern const bool __static_condition_default_2058; extern const bool __static_condition_default_1349; +extern const bool __static_condition_default_2100; extern const bool __static_condition_default_238; extern const bool __static_condition_default_692; extern const bool __static_condition_default_1416; extern const bool __static_condition_default_825; extern const bool __static_condition_default_331; extern const bool __static_condition_default_693; -extern const bool __static_condition_default_2088; extern const bool __static_condition_default_1385; extern const bool __static_condition_default_187; extern const bool __static_condition_default_244; @@ -227,42 +221,44 @@ extern const bool __static_condition_default_699; extern const bool __static_condition_default_967; extern const bool __static_condition_default_475; extern const bool __static_condition_default_736; +extern const bool __static_condition_default_2059; extern const bool __static_condition_default_623; extern const bool __static_condition_default_255; +extern const bool __static_condition_default_2055; extern const bool __static_condition_default_537; extern const bool __static_condition_default_661; extern const bool __static_condition_default_745; extern const bool __static_condition_default_751; extern const bool __static_condition_default_235; extern const bool __static_condition_default_515; +extern const bool __static_condition_default_1773; extern const bool __static_condition_default_288; extern const bool __static_condition_default_536; extern const bool __static_condition_default_752; extern const bool __static_condition_default_1560; +extern const bool __static_condition_default_2086; extern const bool __static_condition_default_486; extern const bool __static_condition_default_788; extern const bool __static_condition_default_1377; extern const bool __static_condition_default_1361; extern const bool __static_condition_default_780; +extern const bool __static_condition_default_2098; extern const bool __static_condition_default_619; extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_1774; extern const bool __static_condition_default_755; -extern const bool __static_condition_default_1789; extern const bool __static_condition_default_753; extern const bool __static_condition_default_553; extern const bool __static_condition_default_419; extern const bool __static_condition_default_1516; extern const bool __static_condition_default_438; extern const bool __static_condition_default_632; -extern const bool __static_condition_default_2084; extern const bool __static_condition_default_955; extern const bool __static_condition_default_1080; extern const bool __static_condition_default_792; extern const bool __static_condition_default_1072; extern const bool __static_condition_default_791; extern const bool __static_condition_default_840; -extern const bool __static_condition_default_1814; -extern const bool __static_condition_default_2045; extern const bool __static_condition_default_756; extern const bool __static_condition_default_408; extern const bool __static_condition_default_768; @@ -271,42 +267,46 @@ extern const bool __static_condition_default_649; extern const bool __static_condition_default_549; extern const bool __static_condition_default_1453; extern const bool __static_condition_default_1498; +extern const bool __static_condition_default_2050; extern const bool __static_condition_default_608; extern const bool __static_condition_default_650; extern const bool __static_condition_default_560; extern const bool __static_condition_default_972; +extern const bool __static_condition_default_2094; extern const bool __static_condition_default_369; extern const bool __static_condition_default_337; extern const bool __static_condition_default_559; extern const bool __static_condition_default_793; extern const bool __static_condition_default_488; extern const bool __static_condition_default_1152; -extern const bool __static_condition_default_2085; extern const bool __static_condition_default_388; extern const bool __static_condition_default_1531; extern const bool __static_condition_default_290; extern const bool __static_condition_default_284; -extern const bool __static_condition_default_2046; -extern const bool __static_condition_default_1775; +extern const bool __static_condition_default_2069; +extern const bool __static_condition_default_2091; +extern const bool __static_condition_default_2058; extern const bool __static_condition_default_311; +extern const bool __static_condition_default_1944; extern const bool __static_condition_default_345; -extern const bool __static_condition_default_2082; extern const bool __static_condition_default_461; extern const bool __static_condition_default_1369; -extern const bool __static_condition_default_1773; extern const bool __static_condition_default_813; +extern const bool __static_condition_default_2084; extern const bool __static_condition_default_198; extern const bool __static_condition_default_578; extern const bool __static_condition_default_1398; extern const bool __static_condition_default_658; extern const bool __static_condition_default_875; +extern const bool __static_condition_default_2090; extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_1944; -extern const bool __static_condition_default_2094; +extern const bool __static_condition_default_2103; extern const bool __static_condition_default_539; +extern const bool __static_condition_default_2049; extern const bool __static_condition_default_646; extern const bool __static_condition_default_659; extern const bool __static_condition_default_883; +extern const bool __static_condition_default_2082; extern const bool __static_condition_default_1515; extern const bool __static_condition_default_264; extern const bool __static_condition_default_280; @@ -315,39 +315,37 @@ extern const bool __static_condition_default_1042; extern const bool __static_condition_default_1043; extern const bool __static_condition_default_512; extern const bool __static_condition_default_223; -extern const bool __static_condition_default_1787; extern const bool __static_condition_default_541; extern const bool __static_condition_default_293; extern const bool __static_condition_default_585; extern const bool __static_condition_default_852; +extern const bool __static_condition_default_2087; extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_2096; extern const bool __static_condition_default_747; extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_2089; extern const bool __static_condition_default_998; extern const bool __static_condition_default_1436; extern const bool __static_condition_default_801; extern const bool __static_condition_default_1353; extern const bool __static_condition_default_173; +extern const bool __static_condition_default_1789; +extern const bool __static_condition_default_2067; extern const bool __static_condition_default_263; extern const bool __static_condition_default_1345; extern const bool __static_condition_default_668; extern const bool __static_condition_default_723; -extern const bool __static_condition_default_2093; +extern const bool __static_condition_default_2092; extern const bool __static_condition_default_858; -extern const bool __static_condition_default_2083; extern const bool __static_condition_default_797; -extern const bool __static_condition_default_2047; +extern const bool __static_condition_default_2046; extern const bool __static_condition_default_282; extern const bool __static_condition_default_1576; extern const bool __static_condition_default_625; -extern const bool __static_condition_default_2048; extern const bool __static_condition_default_375; -extern const bool __static_condition_default_2049; extern const bool __static_condition_default_1015; extern const bool __static_condition_default_872; extern const bool __static_condition_default_491; -extern const bool __static_condition_default_1810; extern const bool __static_condition_default_84; extern const bool __static_condition_default_217; extern const bool __static_condition_default_494; @@ -356,14 +354,13 @@ extern const bool __static_condition_default_347; extern const bool __static_condition_default_597; extern const bool __static_condition_default_1365; extern const bool __static_condition_default_365; -extern const bool __static_condition_default_2089; extern const bool __static_condition_default_708; extern const bool __static_condition_default_1065; extern const bool __static_condition_default_809; +extern const bool __static_condition_default_1787; extern const bool __static_condition_default_670; extern const bool __static_condition_default_637; extern const bool __static_condition_default_204; -extern const bool __static_condition_default_2103; extern const bool __static_condition_default_123; extern const bool __static_condition_default_395; extern const bool __static_condition_default_702; @@ -371,6 +368,7 @@ extern const bool __static_condition_default_529; extern const bool __static_condition_default_1036; extern const bool __static_condition_default_1552; extern const bool __static_condition_default_757; +extern const bool __static_condition_default_2085; extern const bool __static_condition_default_602; extern const bool __static_condition_default_914; extern const bool __static_condition_default_1485; @@ -379,7 +377,10 @@ extern const bool __static_condition_default_489; extern const bool __static_condition_default_516; extern const bool __static_condition_default_510; extern const bool __static_condition_default_727; +extern const bool __static_condition_default_1791; extern const bool __static_condition_default_246; +extern const bool __static_condition_default_2068; +extern const bool __static_condition_default_2102; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -2440,14 +2441,14 @@ static __inline unsigned int (____bswap_32_1158) (unsigned int ____bsx_1157) { if (__static_condition_default_1159) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -2456,14 +2457,14 @@ static __inline ____uint64_t_13 (____bswap_64_1162) (____uint64_t_13 ____bsx_1 if (__static_condition_default_1164) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2472,14 +2473,14 @@ static __inline ____uint64_t_1112 (____bswap_64_1163) (____uint64_t_1112 ____b if (__static_condition_default_1165) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2684,14 +2685,14 @@ static __inline unsigned int (____bswap_32_1452) (unsigned int ____bsx_1451) { if (__static_condition_default_1453) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -2700,14 +2701,14 @@ static __inline ____uint64_t_13 (____bswap_64_1456) (____uint64_t_13 ____bsx_1 if (__static_condition_default_1458) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2716,14 +2717,14 @@ static __inline ____uint64_t_1275 (____bswap_64_1457) (____uint64_t_1275 ____b if (__static_condition_default_1459) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2952,7 +2953,7 @@ void (__dfree_2043) (struct __dnode_2037 * (* (__arr_2040))) { if (__static_condition_default_2044) { -{ +{// L11 { @@ -2975,7 +2976,7 @@ if (__static_condition_default_2047) { while ( __cur_2041 != ( ( void * ) 0 ) )// L18 { -{ +{// L18 { @@ -2989,14 +2990,14 @@ __static_type_error("type error") ; // L20 } __cur_2041 = __next_2042 ; // L21 } -} +}// L22 } } if (__static_condition_default_2050) { __static_type_error("invalid type found in while statement"); } } -} +}// L23 } @@ -3006,7 +3007,7 @@ void (__showdirs_2053) (struct __dnode_2037 * (* (__arr_2051))) { { if (__static_condition_default_2055) { -{ +{// L27 { @@ -3015,7 +3016,7 @@ if (__static_condition_default_2055) { for ( ; __i_2052 < 5 ; ++ __i_2052 ) // L28 { -{ +{// L28 { @@ -3027,11 +3028,11 @@ if (__static_condition_default_2057) { __static_type_error("type error") ; // L29 } } +}// L30 } } } -} -} +}// L35 } @@ -3042,7 +3043,7 @@ void (__showdirs_2054) (struct __dnode_2037 * (* (__arr_2051))) { { if (__static_condition_default_2058) { -{ +{// L27 { @@ -3051,7 +3052,7 @@ if (__static_condition_default_2058) { for ( ; __i_2052 < 5 ; ++ __i_2052 ) // L28 { -{ +{// L28 { @@ -3063,12 +3064,12 @@ if (__static_condition_default_2060) { __static_type_error("type error") ; // L29 } } -} +}// L30 } } __dfree_2043 ( __arr_2051 ) ; // L33 } -} +}// L35 } @@ -3078,7 +3079,7 @@ void (__sort_2066) (int * (* (__arr_2061)), int __size_2062) { if (__static_condition_default_2067) { -{ +{// L39 { @@ -3101,7 +3102,7 @@ __static_type_error("invalid type found in if statement"); for ( __i_2064 = 0 ; __i_2064 < __size_2062 ; __i_2064 ++ )// L46 { -{ +{// L46 { @@ -3109,7 +3110,7 @@ for ( __i_2064 = 0 ; __i_2064 < __size_2062 ; __i_2064 ++ )// L46 for ( __j_2065 = __i_2064 ; __j_2065 < __size_2062 ; __j_2065 ++ )// L47 { -{ +{// L47 { @@ -3117,7 +3118,7 @@ for ( __j_2065 = __i_2064 ; __j_2065 < __size_2062 ; __j_2065 ++ )// L if ( * __arr_2061 [ __i_2064 ] > * __arr_2061 [ __j_2065 ] )// L48 { -{ +{// L48 { @@ -3126,16 +3127,16 @@ if ( * __arr_2061 [ __i_2064 ] > * __arr_2061 [ __j_2065 ] )// L48 * __arr_2061 [ __i_2064 ] = * __arr_2061 [ __j_2065 ] ; // L50 * __arr_2061 [ __j_2065 ] = __temp_2063 ; // L51 } +}// L52 } } +}// L53 } } +}// L54 } } -} -} -} -} +}// L55 } @@ -3144,7 +3145,7 @@ int (__main_2080) (int __argc_2070, char * (* (__argv_2071))) { if (__static_condition_default_2082) { -{ +{// L59 { @@ -3161,7 +3162,7 @@ struct __dnode_2037 * (__arr_2075[ __size_2074 ]);// L62 for ( ; __i_2076 < __size_2074 ; __i_2076 ++ ) // L64 { -{ +{// L64 { struct { typeof( int ) __tmp_2077; typeof( struct __forward_tag_reference_2036 *) __tmp_2078; }__sizeofStandin_2079; @@ -3192,14 +3193,14 @@ __static_type_error("type error") ; // L66 __head_2073 = __curr_2072 ; // L68 __arr_2075 [ ( __size_2074 - 1 ) - __i_2076 ] = __curr_2072 ; // L69 } -} +}// L70 } } if (__static_condition_default_2090) { if ( rand( ) % 2 )// L72 { -{ +{// L72 { @@ -3211,7 +3212,7 @@ if (__static_condition_default_2092) { __showdirs_2054 ( __arr_2075 ) ; // L76 } } -} +}// L77 } } if (__static_condition_default_2093) { @@ -3219,7 +3220,7 @@ __static_type_error("invalid type found in if statement"); } return 0 ;// L78 } -} +}// L79 } @@ -3228,7 +3229,7 @@ int (__main_2081) (int __argc_2070, char * (* (__argv_2071))) { if (__static_condition_default_2094) { -{ +{// L59 { @@ -3245,7 +3246,7 @@ struct __dnode_2037 * (__arr_2075[ __size_2074 ]);// L62 for ( ; __i_2076 < __size_2074 ; __i_2076 ++ ) // L64 { -{ +{// L64 { struct { typeof( int ) __tmp_2077; typeof( struct __forward_tag_reference_2036 *) __tmp_2078; }__sizeofStandin_2079; @@ -3276,14 +3277,14 @@ __static_type_error("type error") ; // L66 __head_2073 = __curr_2072 ; // L68 __arr_2075 [ ( __size_2074 - 1 ) - __i_2076 ] = __curr_2072 ; // L69 } -} +}// L70 } } if (__static_condition_default_2102) { if ( rand( ) % 2 )// L72 { -{ +{// L72 { @@ -3296,7 +3297,7 @@ if (__static_condition_default_2104) { __showdirs_2054 ( __arr_2075 ) ; // L76 } } -} +}// L77 } } if (__static_condition_default_2105) { @@ -3304,7 +3305,7 @@ __static_type_error("invalid type found in if statement"); } return 0 ;// L78 } -} +}// L79 } diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.clangres index adc6a0b2..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.clangres @@ -1,43 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3171:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] - __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 - ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3174:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] - __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 - ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3177:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] - __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 - ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3180:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] - __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 - ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3186:29: warning: Access to field '__val_2038' results in a dereference of an undefined pointer value (loaded from variable '__curr_2072') [core.NullDereference] - __curr_2072 -> __val_2038 = rand( ) % 10 ; // L66 - ~~~~~~~~~~~ ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3191:30: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] - __curr_2072 -> __next_2039 = __head_2073 ; // L67 - ^ ~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3191:30: warning: Access to field '__next_2039' results in a dereference of an undefined pointer value (loaded from variable '__curr_2072') [core.NullDereference] - __curr_2072 -> __next_2039 = __head_2073 ; // L67 - ~~~~~~~~~~~ ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3255:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] - __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 - ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3258:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] - __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 - ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3261:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] - __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 - ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3264:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] - __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 - ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3270:29: warning: Access to field '__val_2038' results in a dereference of an undefined pointer value (loaded from variable '__curr_2072') [core.NullDereference] - __curr_2072 -> __val_2038 = rand( ) % 10 ; // L66 - ~~~~~~~~~~~ ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3275:30: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] - __curr_2072 -> __next_2039 = __head_2073 ; // L67 - ^ ~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3275:30: warning: Access to field '__next_2039' results in a dereference of an undefined pointer value (loaded from variable '__curr_2072') [core.NullDereference] - __curr_2072 -> __next_2039 = __head_2073 ; // L67 - ~~~~~~~~~~~ ^ -14 warnings generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.clangres index 4160fb4b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.clangres @@ -1,4 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.c:25:5: error: use of undeclared identifier 'k_crcs' - k_crcs = someInt; - ^ -1 error generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c index 025be544..f423bd32 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -7,26 +8,24 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_2065; extern const bool __static_condition_default_568; extern const bool __static_condition_default_313; +extern const bool __static_condition_default_2048; extern const bool __static_condition_default_278; extern const bool __static_condition_default_1428; -extern const bool __static_condition_default_1808; -extern const bool __static_condition_default_2055; extern const bool __static_condition_default_433; -extern const bool __static_condition_default_2064; +extern const bool __static_condition_default_2062; extern const bool __static_condition_default_393; extern const bool __static_condition_default_991; +extern const bool __static_condition_default_2063; extern const bool __static_condition_default_1165; extern const bool __static_condition_default_1489; extern const bool __static_condition_default_1532; extern const bool __static_condition_default_241; -extern const bool __static_condition_default_2069; -extern const bool __static_condition_default_2068; +extern const bool __static_condition_default_2072; +extern const bool __static_condition_default_2066; extern const bool __static_condition_default_907; extern const bool __static_condition_default_1395; -extern const bool __static_condition_default_1785; extern const bool __static_condition_default_683; extern const bool __static_condition_default_1022; extern const bool __static_condition_default_647; @@ -41,6 +40,7 @@ extern const bool __static_condition_default_455; extern const bool __static_condition_default_1027; extern const bool __static_condition_default_700; extern const bool __static_condition_default_715; +extern const bool __static_condition_default_1775; extern const bool __static_condition_default_864; extern const bool __static_condition_default_1381; extern const bool __static_condition_default_542; @@ -55,23 +55,24 @@ extern const bool __static_condition_default_761; extern const bool __static_condition_default_267; extern const bool __static_condition_default_473; extern const bool __static_condition_default_638; +extern const bool __static_condition_default_2064; extern const bool __static_condition_default_76; extern const bool __static_condition_default_523; -extern const bool __static_condition_default_2050; extern const bool __static_condition_default_1009; extern const bool __static_condition_default_1164; -extern const bool __static_condition_default_2067; extern const bool __static_condition_default_709; extern const bool __static_condition_default_1750; +extern const bool __static_condition_default_2073; +extern const bool __static_condition_default_2049; extern const bool __static_condition_default_846; extern const bool __static_condition_default_1388; extern const bool __static_condition_default_373; +extern const bool __static_condition_default_1816; extern const bool __static_condition_default_862; extern const bool __static_condition_default_182; extern const bool __static_condition_default_299; extern const bool __static_condition_default_767; extern const bool __static_condition_default_1028; -extern const bool __static_condition_default_2070; extern const bool __static_condition_default_469; extern const bool __static_condition_default_499; extern const bool __static_condition_default_248; @@ -80,14 +81,15 @@ extern const bool __static_condition_default_564; extern const bool __static_condition_default_357; extern const bool __static_condition_default_193; extern const bool __static_condition_default_1409; -extern const bool __static_condition_default_1791; +extern const bool __static_condition_default_1776; extern const bool __static_condition_default_1391; +extern const bool __static_condition_default_2068; extern const bool __static_condition_default_286; extern const bool __static_condition_default_573; extern const bool __static_condition_default_803; -extern const bool __static_condition_default_2051; extern const bool __static_condition_default_1073; extern const bool __static_condition_default_657; +extern const bool __static_condition_default_2056; extern const bool __static_condition_default_1159; extern const bool __static_condition_default_677; extern const bool __static_condition_default_1564; @@ -100,7 +102,6 @@ extern const bool __static_condition_default_1091; extern const bool __static_condition_default_417; extern const bool __static_condition_default_817; extern const bool __static_condition_default_1459; -extern const bool __static_condition_default_1816; extern const bool __static_condition_default_250; extern const bool __static_condition_default_257; extern const bool __static_condition_default_1373; @@ -109,10 +110,8 @@ extern const bool __static_condition_default_779; extern const bool __static_condition_default_229; extern const bool __static_condition_default_432; extern const bool __static_condition_default_274; -extern const bool __static_condition_default_1776; extern const bool __static_condition_default_1424; extern const bool __static_condition_default_636; -extern const bool __static_condition_default_2066; extern const bool __static_condition_default_521; extern const bool __static_condition_default_634; extern const bool __static_condition_default_734; @@ -120,23 +119,26 @@ extern const bool __static_condition_default_1402; extern const bool __static_condition_default_386; extern const bool __static_condition_default_514; extern const bool __static_condition_default_980; +extern const bool __static_condition_default_2069; extern const bool __static_condition_default_333; extern const bool __static_condition_default_789; extern const bool __static_condition_default_583; extern const bool __static_condition_default_944; -extern const bool __static_condition_default_1774; extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_2067; extern const bool __static_condition_default_1458; extern const bool __static_condition_default_53; extern const bool __static_condition_default_621; extern const bool __static_condition_default_1341; -extern const bool __static_condition_default_2048; extern const bool __static_condition_default_538; extern const bool __static_condition_default_296; extern const bool __static_condition_default_1568; extern const bool __static_condition_default_315; +extern const bool __static_condition_default_1785; +extern const bool __static_condition_default_1814; extern const bool __static_condition_default_169; extern const bool __static_condition_default_787; +extern const bool __static_condition_default_2060; extern const bool __static_condition_default_1405; extern const bool __static_condition_default_684; extern const bool __static_condition_default_769; @@ -153,22 +155,21 @@ extern const bool __static_condition_default_781; extern const bool __static_condition_default_978; extern const bool __static_condition_default_721; extern const bool __static_condition_default_1357; -extern const bool __static_condition_default_2059; extern const bool __static_condition_default_848; extern const bool __static_condition_default_1081; extern const bool __static_condition_default_170; extern const bool __static_condition_default_1749; +extern const bool __static_condition_default_1810; extern const bool __static_condition_default_1090; extern const bool __static_condition_default_544; extern const bool __static_condition_default_613; extern const bool __static_condition_default_662; -extern const bool __static_condition_default_2049; extern const bool __static_condition_default_431; extern const bool __static_condition_default_819; extern const bool __static_condition_default_380; extern const bool __static_condition_default_759; extern const bool __static_condition_default_1089; -extern const bool __static_condition_default_2062; +extern const bool __static_condition_default_2059; extern const bool __static_condition_default_894; extern const bool __static_condition_default_1754; extern const bool __static_condition_default_412; @@ -177,13 +178,15 @@ extern const bool __static_condition_default_271; extern const bool __static_condition_default_1420; extern const bool __static_condition_default_270; extern const bool __static_condition_default_493; +extern const bool __static_condition_default_2047; extern const bool __static_condition_default_249; extern const bool __static_condition_default_834; extern const bool __static_condition_default_956; extern const bool __static_condition_default_891; -extern const bool __static_condition_default_2056; +extern const bool __static_condition_default_2052; extern const bool __static_condition_default_663; extern const bool __static_condition_default_836; +extern const bool __static_condition_default_1808; extern const bool __static_condition_default_887; extern const bool __static_condition_default_355; extern const bool __static_condition_default_511; @@ -196,6 +199,8 @@ extern const bool __static_condition_default_1432; extern const bool __static_condition_default_367; extern const bool __static_condition_default_929; extern const bool __static_condition_default_341; +extern const bool __static_condition_default_2039; +extern const bool __static_condition_default_2065; extern const bool __static_condition_default_842; extern const bool __static_condition_default_938; extern const bool __static_condition_default_1349; @@ -215,7 +220,6 @@ extern const bool __static_condition_default_699; extern const bool __static_condition_default_967; extern const bool __static_condition_default_475; extern const bool __static_condition_default_736; -extern const bool __static_condition_default_2072; extern const bool __static_condition_default_623; extern const bool __static_condition_default_255; extern const bool __static_condition_default_537; @@ -223,43 +227,44 @@ extern const bool __static_condition_default_661; extern const bool __static_condition_default_745; extern const bool __static_condition_default_751; extern const bool __static_condition_default_235; +extern const bool __static_condition_default_2053; extern const bool __static_condition_default_515; +extern const bool __static_condition_default_2055; +extern const bool __static_condition_default_1773; extern const bool __static_condition_default_288; extern const bool __static_condition_default_536; extern const bool __static_condition_default_752; extern const bool __static_condition_default_1560; +extern const bool __static_condition_default_2061; extern const bool __static_condition_default_486; extern const bool __static_condition_default_788; extern const bool __static_condition_default_1377; -extern const bool __static_condition_default_2060; extern const bool __static_condition_default_1361; extern const bool __static_condition_default_780; extern const bool __static_condition_default_619; extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_1774; extern const bool __static_condition_default_755; -extern const bool __static_condition_default_1789; extern const bool __static_condition_default_753; +extern const bool __static_condition_default_2051; extern const bool __static_condition_default_553; extern const bool __static_condition_default_419; -extern const bool __static_condition_default_2063; extern const bool __static_condition_default_1516; extern const bool __static_condition_default_438; -extern const bool __static_condition_default_2047; extern const bool __static_condition_default_632; +extern const bool __static_condition_default_2071; extern const bool __static_condition_default_955; extern const bool __static_condition_default_1080; extern const bool __static_condition_default_792; extern const bool __static_condition_default_1072; -extern const bool __static_condition_default_2039; extern const bool __static_condition_default_791; -extern const bool __static_condition_default_2054; extern const bool __static_condition_default_840; -extern const bool __static_condition_default_1814; extern const bool __static_condition_default_756; extern const bool __static_condition_default_408; extern const bool __static_condition_default_768; extern const bool __static_condition_default_1057; extern const bool __static_condition_default_649; +extern const bool __static_condition_default_2057; extern const bool __static_condition_default_549; extern const bool __static_condition_default_1453; extern const bool __static_condition_default_1498; @@ -267,39 +272,34 @@ extern const bool __static_condition_default_608; extern const bool __static_condition_default_650; extern const bool __static_condition_default_560; extern const bool __static_condition_default_972; -extern const bool __static_condition_default_2073; extern const bool __static_condition_default_369; extern const bool __static_condition_default_337; -extern const bool __static_condition_default_2053; extern const bool __static_condition_default_559; extern const bool __static_condition_default_793; extern const bool __static_condition_default_488; +extern const bool __static_condition_default_2070; extern const bool __static_condition_default_1152; extern const bool __static_condition_default_388; extern const bool __static_condition_default_1531; extern const bool __static_condition_default_290; extern const bool __static_condition_default_284; -extern const bool __static_condition_default_1775; -extern const bool __static_condition_default_2071; +extern const bool __static_condition_default_2058; extern const bool __static_condition_default_311; +extern const bool __static_condition_default_1944; extern const bool __static_condition_default_345; extern const bool __static_condition_default_461; extern const bool __static_condition_default_1369; -extern const bool __static_condition_default_1773; extern const bool __static_condition_default_813; extern const bool __static_condition_default_198; extern const bool __static_condition_default_578; -extern const bool __static_condition_default_2061; extern const bool __static_condition_default_1398; extern const bool __static_condition_default_658; extern const bool __static_condition_default_875; extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_1944; extern const bool __static_condition_default_539; extern const bool __static_condition_default_646; extern const bool __static_condition_default_659; extern const bool __static_condition_default_883; -extern const bool __static_condition_default_2057; extern const bool __static_condition_default_1515; extern const bool __static_condition_default_264; extern const bool __static_condition_default_280; @@ -308,8 +308,6 @@ extern const bool __static_condition_default_1042; extern const bool __static_condition_default_1043; extern const bool __static_condition_default_512; extern const bool __static_condition_default_223; -extern const bool __static_condition_default_1787; -extern const bool __static_condition_default_2058; extern const bool __static_condition_default_541; extern const bool __static_condition_default_293; extern const bool __static_condition_default_585; @@ -322,9 +320,10 @@ extern const bool __static_condition_default_1436; extern const bool __static_condition_default_801; extern const bool __static_condition_default_1353; extern const bool __static_condition_default_173; +extern const bool __static_condition_default_1789; extern const bool __static_condition_default_263; extern const bool __static_condition_default_1345; -extern const bool __static_condition_default_2052; +extern const bool __static_condition_default_2050; extern const bool __static_condition_default_668; extern const bool __static_condition_default_723; extern const bool __static_condition_default_858; @@ -336,7 +335,6 @@ extern const bool __static_condition_default_375; extern const bool __static_condition_default_1015; extern const bool __static_condition_default_872; extern const bool __static_condition_default_491; -extern const bool __static_condition_default_1810; extern const bool __static_condition_default_84; extern const bool __static_condition_default_217; extern const bool __static_condition_default_494; @@ -348,6 +346,8 @@ extern const bool __static_condition_default_365; extern const bool __static_condition_default_708; extern const bool __static_condition_default_1065; extern const bool __static_condition_default_809; +extern const bool __static_condition_default_1787; +extern const bool __static_condition_default_2054; extern const bool __static_condition_default_670; extern const bool __static_condition_default_637; extern const bool __static_condition_default_204; @@ -366,6 +366,7 @@ extern const bool __static_condition_default_489; extern const bool __static_condition_default_516; extern const bool __static_condition_default_510; extern const bool __static_condition_default_727; +extern const bool __static_condition_default_1791; extern const bool __static_condition_default_246; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); @@ -2395,14 +2396,14 @@ static __inline unsigned int (____bswap_32_1158) (unsigned int ____bsx_1157) { if (__static_condition_default_1159) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -2411,14 +2412,14 @@ static __inline ____uint64_t_13 (____bswap_64_1162) (____uint64_t_13 ____bsx_1 if (__static_condition_default_1164) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2427,14 +2428,14 @@ static __inline ____uint64_t_1112 (____bswap_64_1163) (____uint64_t_1112 ____b if (__static_condition_default_1165) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2639,14 +2640,14 @@ static __inline unsigned int (____bswap_32_1452) (unsigned int ____bsx_1451) { if (__static_condition_default_1453) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -2655,14 +2656,14 @@ static __inline ____uint64_t_13 (____bswap_64_1456) (____uint64_t_13 ____bsx_1 if (__static_condition_default_1458) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2671,14 +2672,14 @@ static __inline ____uint64_t_1275 (____bswap_64_1457) (____uint64_t_1275 ____b if (__static_condition_default_1459) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2906,7 +2907,7 @@ int (__main_2044) (int __argc_2036, char * (* (__argv_2037))) { if (__static_condition_default_2047) { -{ +{// L5 { @@ -2928,7 +2929,7 @@ if (__static_condition_default_2049) { __m_has_modinfo_2040 = 0 ; // L16 } } -else +else// L17 { if (__static_condition_default_2048) { __m_has_modinfo_2040 = 1 ; // L18 @@ -2942,7 +2943,7 @@ if (__static_condition_default_2051) { __m_has_modinfo_2040 = 0 ; // L16 } } -else +else// L17 { if (__static_condition_default_2050) { __m_has_modinfo_2040 = 1 ; // L18 @@ -2957,21 +2958,21 @@ if ( __r_2038 )// L24 { if (__static_condition_default_2053) { -{ +{// L24 { __static_type_error("type error") ; // L25 } +}// L26 } } -} -else +else// L26 { if (__static_condition_default_2053) { -{ +{// L26 { @@ -2987,7 +2988,7 @@ __static_type_error("type error") ; // L27 goto out_0; } } -} +}// L29 } } } @@ -2996,21 +2997,21 @@ if ( __r_2038 )// L24 { if (__static_condition_default_2056) { -{ +{// L24 { __k_crcs_2043 = __someInt_2042 ; // L25 } +}// L26 } } -} -else +else// L26 { if (__static_condition_default_2056) { -{ +{// L26 { @@ -3026,7 +3027,7 @@ __static_type_error("type error") ; // L27 goto out_0; } } -} +}// L29 } } } @@ -3037,7 +3038,7 @@ return ( __exit_status_2041 ) ;// L32 } return 0 ;// L34 } -} +}// L35 } @@ -3046,7 +3047,7 @@ int (__main_2045) (int __argc_2036, char * (* (__argv_2037))) { if (__static_condition_default_2059) { -{ +{// L5 { @@ -3068,7 +3069,7 @@ if (__static_condition_default_2061) { __m_has_modinfo_2040 = 0 ; // L16 } } -else +else// L17 { if (__static_condition_default_2060) { __m_has_modinfo_2040 = 1 ; // L18 @@ -3082,7 +3083,7 @@ if (__static_condition_default_2063) { __m_has_modinfo_2040 = 0 ; // L16 } } -else +else// L17 { if (__static_condition_default_2062) { __m_has_modinfo_2040 = 1 ; // L18 @@ -3097,21 +3098,21 @@ if ( __r_2038 )// L24 { if (__static_condition_default_2065) { -{ +{// L24 { __static_type_error("type error") ; // L25 } +}// L26 } } -} -else +else// L26 { if (__static_condition_default_2065) { -{ +{// L26 { @@ -3127,7 +3128,7 @@ __static_type_error("type error") ; // L27 goto out_1; } } -} +}// L29 } } } @@ -3136,21 +3137,21 @@ if ( __r_2038 )// L24 { if (__static_condition_default_2068) { -{ +{// L24 { __k_crcs_2043 = __someInt_2042 ; // L25 } +}// L26 } } -} -else +else// L26 { if (__static_condition_default_2068) { -{ +{// L26 { @@ -3166,7 +3167,7 @@ __static_type_error("type error") ; // L27 goto out_1; } } -} +}// L29 } } } @@ -3177,7 +3178,7 @@ return ( __exit_status_2041 ) ;// L32 } return 0 ;// L34 } -} +}// L35 } @@ -3186,7 +3187,7 @@ int (__main_2046) (int __argc_2036, char * (* (__argv_2037))) { if (__static_condition_default_2071) { -{ +{// L5 { @@ -3215,7 +3216,7 @@ return ( __exit_status_2041 ) ;// L32 } return 0 ;// L34 } -} +}// L35 } diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.clangres index 8ce4d68c..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.clangres @@ -1,40 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:2928:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] - __m_has_modinfo_2040 = 0 ; // L16 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:2934:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] - __m_has_modinfo_2040 = 1 ; // L18 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:2942:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] - __m_has_modinfo_2040 = 0 ; // L16 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:2948:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] - __m_has_modinfo_2040 = 1 ; // L18 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:2953:2: warning: Value stored to '__k_crcs_2043' is never read [deadcode.DeadStores] - __k_crcs_2043 = 0 ; // L21 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3004:2: warning: Value stored to '__k_crcs_2043' is never read [deadcode.DeadStores] - __k_crcs_2043 = __someInt_2042 ; // L25 - ^ ~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3068:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] - __m_has_modinfo_2040 = 0 ; // L16 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3074:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] - __m_has_modinfo_2040 = 1 ; // L18 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3082:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] - __m_has_modinfo_2040 = 0 ; // L16 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3088:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] - __m_has_modinfo_2040 = 1 ; // L18 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3093:2: warning: Value stored to '__k_crcs_2043' is never read [deadcode.DeadStores] - __k_crcs_2043 = 0 ; // L21 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3144:2: warning: Value stored to '__k_crcs_2043' is never read [deadcode.DeadStores] - __k_crcs_2043 = __someInt_2042 ; // L25 - ^ ~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3208:2: warning: Value stored to '__k_crcs_2043' is never read [deadcode.DeadStores] - __k_crcs_2043 = 0 ; // L21 - ^ ~ -13 warnings generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/5cd6461b6fb.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/5cd6461b6fb.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/5cd6461b6fb.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/5cd6461b6fb.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/5cd6461b6fb.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/5cd6461b6fb.desugared.c index c6ab6a83..285c68e7 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/5cd6461b6fb.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/5cd6461b6fb.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -20,11 +21,9 @@ extern const bool __static_condition_default_1058; extern const bool __static_condition_default_516; extern const bool __static_condition_default_834; extern const bool __static_condition_default_793; -extern const bool __static_condition_default_2062; extern const bool __static_condition_default_417; extern const bool __static_condition_default_991; extern const bool __static_condition_default_734; -extern const bool __static_condition_default_2044; extern const bool __static_condition_default_282; extern const bool __static_condition_default_438; extern const bool __static_condition_default_259; @@ -36,7 +35,7 @@ extern const bool __static_condition_default_315; extern const bool __static_condition_default_1007; extern const bool __static_condition_default_187; extern const bool __static_condition_default_1489; -extern const bool __static_condition_default_2056; +extern const bool __static_condition_default_1776; extern const bool __static_condition_default_193; extern const bool __static_condition_default_1065; extern const bool __static_condition_default_473; @@ -57,7 +56,6 @@ extern const bool __static_condition_default_341; extern const bool __static_condition_default_868; extern const bool __static_condition_default_1391; extern const bool __static_condition_default_864; -extern const bool __static_condition_default_2047; extern const bool __static_condition_default_723; extern const bool __static_condition_default_938; extern const bool __static_condition_default_1345; @@ -66,6 +64,7 @@ extern const bool __static_condition_default_246; extern const bool __static_condition_default_257; extern const bool __static_condition_default_529; extern const bool __static_condition_default_768; +extern const bool __static_condition_default_2061; extern const bool __static_condition_default_544; extern const bool __static_condition_default_1532; extern const bool __static_condition_default_1420; @@ -84,7 +83,9 @@ extern const bool __static_condition_default_311; extern const bool __static_condition_default_636; extern const bool __static_condition_default_760; extern const bool __static_condition_default_797; +extern const bool __static_condition_default_2057; extern const bool __static_condition_default_1754; +extern const bool __static_condition_default_1774; extern const bool __static_condition_default_173; extern const bool __static_condition_default_907; extern const bool __static_condition_default_499; @@ -96,6 +97,7 @@ extern const bool __static_condition_default_333; extern const bool __static_condition_default_708; extern const bool __static_condition_default_756; extern const bool __static_condition_default_182; +extern const bool __static_condition_default_2052; extern const bool __static_condition_default_1388; extern const bool __static_condition_default_244; extern const bool __static_condition_default_1361; @@ -104,23 +106,22 @@ extern const bool __static_condition_default_270; extern const bool __static_condition_default_1089; extern const bool __static_condition_default_1568; extern const bool __static_condition_default_807; +extern const bool __static_condition_default_2047; extern const bool __static_condition_default_1424; -extern const bool __static_condition_default_2052; extern const bool __static_condition_default_779; extern const bool __static_condition_default_1072; extern const bool __static_condition_default_801; extern const bool __static_condition_default_313; -extern const bool __static_condition_default_1785; extern const bool __static_condition_default_514; extern const bool __static_condition_default_1416; extern const bool __static_condition_default_1365; extern const bool __static_condition_default_317; extern const bool __static_condition_default_204; +extern const bool __static_condition_default_1814; extern const bool __static_condition_default_253; extern const bool __static_condition_default_752; extern const bool __static_condition_default_803; extern const bool __static_condition_default_875; -extern const bool __static_condition_default_1944; extern const bool __static_condition_default_727; extern const bool __static_condition_default_169; extern const bool __static_condition_default_210; @@ -130,42 +131,46 @@ extern const bool __static_condition_default_1066; extern const bool __static_condition_default_625; extern const bool __static_condition_default_223; extern const bool __static_condition_default_357; +extern const bool __static_condition_default_2044; +extern const bool __static_condition_default_2045; extern const bool __static_condition_default_510; extern const bool __static_condition_default_813; extern const bool __static_condition_default_633; extern const bool __static_condition_default_761; +extern const bool __static_condition_default_2048; extern const bool __static_condition_default_1035; extern const bool __static_condition_default_475; extern const bool __static_condition_default_1402; extern const bool __static_condition_default_84; -extern const bool __static_condition_default_1816; extern const bool __static_condition_default_693; extern const bool __static_condition_default_250; -extern const bool __static_condition_default_2063; extern const bool __static_condition_default_602; extern const bool __static_condition_default_1405; -extern const bool __static_condition_default_2058; extern const bool __static_condition_default_955; +extern const bool __static_condition_default_2060; extern const bool __static_condition_default_686; extern const bool __static_condition_default_638; -extern const bool __static_condition_default_2043; extern const bool __static_condition_default_613; extern const bool __static_condition_default_455; extern const bool __static_condition_default_293; +extern const bool __static_condition_default_1773; extern const bool __static_condition_default_408; extern const bool __static_condition_default_647; +extern const bool __static_condition_default_1789; extern const bool __static_condition_default_1341; extern const bool __static_condition_default_568; extern const bool __static_condition_default_235; extern const bool __static_condition_default_1475; extern const bool __static_condition_default_278; +extern const bool __static_condition_default_2058; extern const bool __static_condition_default_539; extern const bool __static_condition_default_347; +extern const bool __static_condition_default_1816; extern const bool __static_condition_default_402; -extern const bool __static_condition_default_1791; +extern const bool __static_condition_default_1787; extern const bool __static_condition_default_494; -extern const bool __static_condition_default_1774; extern const bool __static_condition_default_1515; +extern const bool __static_condition_default_1775; extern const bool __static_condition_default_753; extern const bool __static_condition_default_553; extern const bool __static_condition_default_375; @@ -176,16 +181,16 @@ extern const bool __static_condition_default_709; extern const bool __static_condition_default_249; extern const bool __static_condition_default_1081; extern const bool __static_condition_default_1398; +extern const bool __static_condition_default_1810; extern const bool __static_condition_default_998; -extern const bool __static_condition_default_2060; extern const bool __static_condition_default_1009; extern const bool __static_condition_default_493; extern const bool __static_condition_default_883; extern const bool __static_condition_default_488; extern const bool __static_condition_default_842; -extern const bool __static_condition_default_2045; extern const bool __static_condition_default_894; -extern const bool __static_condition_default_2054; +extern const bool __static_condition_default_1791; +extern const bool __static_condition_default_2063; extern const bool __static_condition_default_559; extern const bool __static_condition_default_1028; extern const bool __static_condition_default_1050; @@ -194,30 +199,29 @@ extern const bool __static_condition_default_365; extern const bool __static_condition_default_537; extern const bool __static_condition_default_972; extern const bool __static_condition_default_53; -extern const bool __static_condition_default_2049; +extern const bool __static_condition_default_1785; extern const bool __static_condition_default_1409; extern const bool __static_condition_default_715; extern const bool __static_condition_default_1432; extern const bool __static_condition_default_471; extern const bool __static_condition_default_1381; -extern const bool __static_condition_default_1773; +extern const bool __static_condition_default_2042; extern const bool __static_condition_default_668; -extern const bool __static_condition_default_1787; extern const bool __static_condition_default_388; extern const bool __static_condition_default_1436; extern const bool __static_condition_default_583; extern const bool __static_condition_default_345; extern const bool __static_condition_default_578; +extern const bool __static_condition_default_2054; extern const bool __static_condition_default_1073; extern const bool __static_condition_default_684; extern const bool __static_condition_default_241; +extern const bool __static_condition_default_1944; extern const bool __static_condition_default_608; extern const bool __static_condition_default_1152; extern const bool __static_condition_default_280; extern const bool __static_condition_default_787; -extern const bool __static_condition_default_2057; extern const bool __static_condition_default_198; -extern const bool __static_condition_default_2059; extern const bool __static_condition_default_701; extern const bool __static_condition_default_1165; extern const bool __static_condition_default_433; @@ -228,7 +232,6 @@ extern const bool __static_condition_default_788; extern const bool __static_condition_default_619; extern const bool __static_condition_default_1357; extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_2061; extern const bool __static_condition_default_670; extern const bool __static_condition_default_248; extern const bool __static_condition_default_461; @@ -243,6 +246,7 @@ extern const bool __static_condition_default_521; extern const bool __static_condition_default_980; extern const bool __static_condition_default_663; extern const bool __static_condition_default_299; +extern const bool __static_condition_default_2049; extern const bool __static_condition_default_757; extern const bool __static_condition_default_944; extern const bool __static_condition_default_217; @@ -251,12 +255,10 @@ extern const bool __static_condition_default_683; extern const bool __static_condition_default_1498; extern const bool __static_condition_default_503; extern const bool __static_condition_default_887; -extern const bool __static_condition_default_1810; extern const bool __static_condition_default_677; extern const bool __static_condition_default_597; extern const bool __static_condition_default_419; extern const bool __static_condition_default_692; -extern const bool __static_condition_default_1775; extern const bool __static_condition_default_201; extern const bool __static_condition_default_1395; extern const bool __static_condition_default_1080; @@ -282,8 +284,8 @@ extern const bool __static_condition_default_1027; extern const bool __static_condition_default_662; extern const bool __static_condition_default_1043; extern const bool __static_condition_default_1552; +extern const bool __static_condition_default_2046; extern const bool __static_condition_default_645; -extern const bool __static_condition_default_2042; extern const bool __static_condition_default_967; extern const bool __static_condition_default_979; extern const bool __static_condition_default_1036; @@ -298,6 +300,7 @@ extern const bool __static_condition_default_1015; extern const bool __static_condition_default_355; extern const bool __static_condition_default_412; extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_2059; extern const bool __static_condition_default_634; extern const bool __static_condition_default_661; extern const bool __static_condition_default_755; @@ -307,8 +310,8 @@ extern const bool __static_condition_default_632; extern const bool __static_condition_default_650; extern const bool __static_condition_default_258; extern const bool __static_condition_default_523; -extern const bool __static_condition_default_2046; extern const bool __static_condition_default_363; +extern const bool __static_condition_default_2062; extern const bool __static_condition_default_759; extern const bool __static_condition_default_1458; extern const bool __static_condition_default_658; @@ -319,7 +322,7 @@ extern const bool __static_condition_default_543; extern const bool __static_condition_default_702; extern const bool __static_condition_default_809; extern const bool __static_condition_default_469; -extern const bool __static_condition_default_1789; +extern const bool __static_condition_default_2068; extern const bool __static_condition_default_840; extern const bool __static_condition_default_1572; extern const bool __static_condition_default_825; @@ -327,15 +330,14 @@ extern const bool __static_condition_default_852; extern const bool __static_condition_default_646; extern const bool __static_condition_default_432; extern const bool __static_condition_default_511; -extern const bool __static_condition_default_1808; extern const bool __static_condition_default_564; extern const bool __static_condition_default_373; extern const bool __static_condition_default_848; -extern const bool __static_condition_default_2048; extern const bool __static_condition_default_978; extern const bool __static_condition_default_542; extern const bool __static_condition_default_1057; extern const bool __static_condition_default_288; +extern const bool __static_condition_default_1808; extern const bool __static_condition_default_1556; extern const bool __static_condition_default_393; extern const bool __static_condition_default_651; @@ -348,13 +350,12 @@ extern const bool __static_condition_default_872; extern const bool __static_condition_default_699; extern const bool __static_condition_default_1042; extern const bool __static_condition_default_1564; -extern const bool __static_condition_default_2068; +extern const bool __static_condition_default_2056; extern const bool __static_condition_default_264; extern const bool __static_condition_default_657; extern const bool __static_condition_default_263; -extern const bool __static_condition_default_1814; -extern const bool __static_condition_default_1776; extern const bool __static_condition_default_781; +extern const bool __static_condition_default_2043; extern const bool __static_condition_default_780; extern const bool __static_condition_default_380; extern const bool __static_condition_default_1164; @@ -2380,14 +2381,14 @@ static __inline unsigned int (____bswap_32_1158) (unsigned int ____bsx_1157) { if (__static_condition_default_1159) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -2396,14 +2397,14 @@ static __inline ____uint64_t_13 (____bswap_64_1162) (____uint64_t_13 ____bsx_1 if (__static_condition_default_1164) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2412,14 +2413,14 @@ static __inline ____uint64_t_1112 (____bswap_64_1163) (____uint64_t_1112 ____b if (__static_condition_default_1165) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2624,14 +2625,14 @@ static __inline unsigned int (____bswap_32_1452) (unsigned int ____bsx_1451) { if (__static_condition_default_1453) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -2640,14 +2641,14 @@ static __inline ____uint64_t_13 (____bswap_64_1456) (____uint64_t_13 ____bsx_1 if (__static_condition_default_1458) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2656,14 +2657,14 @@ static __inline ____uint64_t_1275 (____bswap_64_1457) (____uint64_t_1275 ____b if (__static_condition_default_1459) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2892,7 +2893,7 @@ void (__sendHeaders_2040) (int __responseNum_2037) { if (__static_condition_default_2042) { -{ +{// L14 { @@ -2911,7 +2912,7 @@ if (__static_condition_default_2045) { __static_type_error("type error") ; // L21 } } -} +}// L22 } @@ -2920,7 +2921,7 @@ void (__sendHeaders_2041) (int __responseNum_2037) { if (__static_condition_default_2046) { -{ +{// L14 { @@ -2939,7 +2940,7 @@ if (__static_condition_default_2049) { __static_type_error("type error") ; // L21 } } -} +}// L22 } @@ -2949,7 +2950,7 @@ void (__handleIncoming_2055) (const char * (__request_2050)) { { if (__static_condition_default_2056) { -{ +{// L25 { @@ -2970,28 +2971,28 @@ if (__static_condition_default_2057) { if ( __http_unauthorized_2053 )// L30 { -{ +{// L30 { __sendHeaders_2040 (401) ; // L31 } -} +}// L32 } } if (__static_condition_default_2058) { __static_type_error("invalid type found in if statement"); } } -} +}// L40 } if (__static_condition_default_2059) { -{ +{// L25 { @@ -3012,14 +3013,14 @@ if (__static_condition_default_2060) { if ( __http_unauthorized_2053 )// L30 { -{ +{// L30 { __sendHeaders_2041 (401) ; // L31 } -} +}// L32 } } if (__static_condition_default_2061) { @@ -3029,32 +3030,32 @@ if (__static_condition_default_2062) { if ( __request_2050 != __request_GET_2036 )// L36 { -{ +{// L36 { __sendHeaders_2041 (501) ; // L37 } -} +}// L38 } } if (__static_condition_default_2063) { if ( __request_2050 != __request_GET_2036 )// L36 { -{ +{// L36 { __sendHeaders_2041 (501) ; // L37 } +}// L38 } } } -} -} +}// L40 } @@ -3062,7 +3063,7 @@ if ( __request_2050 != __request_GET_2036 )// L36 }} int (__main_2067) (int __argc_2064, char * (* (__argv_2065))) { -{ +{// L43 { @@ -3072,7 +3073,7 @@ const char __request_2066[]= "POST";// L44 __handleIncoming_2055 ( __request_2066 ) ; // L45 return 0 ;// L46 } -} +}// L47 } diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/5cd6461b6fb.desugared.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/5cd6461b6fb.desugared.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/5cd6461b6fb.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/5cd6461b6fb.desugared.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.clangres index 09796bc5..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.clangres @@ -1,10 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.c:15:15: error: initializer element is not a compile-time constant -char *iobuf = malloc(IOBUF_SIZE); - ^~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.c:23:30: error: use of undeclared identifier 'HTTP_OK' - mime_type = responseNum == HTTP_OK ? "application/octet-stream" : "text/html"; - ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.c:35:7: error: use of undeclared identifier 'content_gzip' - if (content_gzip) - ^ -3 errors generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c index ba58e3a8..4af91c9b 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -10,8 +11,8 @@ void __static_initializer_default(); extern const bool __static_condition_default_455; extern const bool __static_condition_default_1753; extern const bool __static_condition_default_512; +extern const bool __static_condition_default_1814; extern const bool __static_condition_default_1050; -extern const bool __static_condition_default_2459; extern const bool __static_condition_default_259; extern const bool __static_condition_default_791; extern const bool __static_condition_default_1381; @@ -19,97 +20,96 @@ extern const bool __static_condition_default_807; extern const bool __static_condition_default_661; extern const bool __static_condition_default_210; extern const bool __static_condition_default_1405; -extern const bool __static_condition_default_2388; -extern const bool __static_condition_default_2377; extern const bool __static_condition_default_699; extern const bool __static_condition_default_980; +extern const bool __static_condition_default_1808; extern const bool __static_condition_default_1057; extern const bool __static_condition_default_780; -extern const bool __static_condition_default_2406; -extern const bool __static_condition_default_2415; +extern const bool __static_condition_default_2388; extern const bool __static_condition_default_444; extern const bool __static_condition_default_792; extern const bool __static_condition_default_1315; extern const bool __static_condition_default_692; extern const bool __static_condition_default_767; -extern const bool __static_condition_default_2424; +extern const bool __static_condition_default_2459; extern const bool __static_condition_default_723; -extern const bool __static_condition_default_2387; extern const bool __static_condition_default_388; extern const bool __static_condition_default_1556; extern const bool __static_condition_default_753; extern const bool __static_condition_default_253; extern const bool __static_condition_default_597; extern const bool __static_condition_default_248; -extern const bool __static_condition_default_2064; -extern const bool __static_condition_default_2423; extern const bool __static_condition_default_317; extern const bool __static_condition_default_852; extern const bool __static_condition_default_677; extern const bool __static_condition_default_510; extern const bool __static_condition_default_542; extern const bool __static_condition_default_341; -extern const bool __static_condition_default_2381; extern const bool __static_condition_default_721; extern const bool __static_condition_default_286; extern const bool __static_condition_default_559; +extern const bool __static_condition_default_2044; +extern const bool __static_condition_default_2415; +extern const bool __static_condition_default_2453; extern const bool __static_condition_default_789; extern const bool __static_condition_default_872; -extern const bool __static_condition_default_1774; extern const bool __static_condition_default_560; -extern const bool __static_condition_default_1789; extern const bool __static_condition_default_1432; extern const bool __static_condition_default_1152; extern const bool __static_condition_default_649; extern const bool __static_condition_default_670; extern const bool __static_condition_default_751; extern const bool __static_condition_default_1349; -extern const bool __static_condition_default_2449; -extern const bool __static_condition_default_2412; +extern const bool __static_condition_default_2477; extern const bool __static_condition_default_475; -extern const bool __static_condition_default_1785; -extern const bool __static_condition_default_2343; extern const bool __static_condition_default_813; extern const bool __static_condition_default_647; +extern const bool __static_condition_default_2045; extern const bool __static_condition_default_757; extern const bool __static_condition_default_217; extern const bool __static_condition_default_1754; +extern const bool __static_condition_default_2458; extern const bool __static_condition_default_1424; extern const bool __static_condition_default_280; extern const bool __static_condition_default_288; extern const bool __static_condition_default_709; +extern const bool __static_condition_default_2421; +extern const bool __static_condition_default_2424; extern const bool __static_condition_default_1475; +extern const bool __static_condition_default_2462; extern const bool __static_condition_default_521; extern const bool __static_condition_default_1459; extern const bool __static_condition_default_1007; -extern const bool __static_condition_default_2450; extern const bool __static_condition_default_373; +extern const bool __static_condition_default_2414; +extern const bool __static_condition_default_2418; extern const bool __static_condition_default_1164; extern const bool __static_condition_default_683; extern const bool __static_condition_default_568; -extern const bool __static_condition_default_2431; +extern const bool __static_condition_default_2429; extern const bool __static_condition_default_573; extern const bool __static_condition_default_408; -extern const bool __static_condition_default_2419; -extern const bool __static_condition_default_2350; +extern const bool __static_condition_default_2454; +extern const bool __static_condition_default_1944; +extern const bool __static_condition_default_2446; extern const bool __static_condition_default_840; extern const bool __static_condition_default_84; extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_2470; +extern const bool __static_condition_default_2396; extern const bool __static_condition_default_625; +extern const bool __static_condition_default_2062; extern const bool __static_condition_default_662; -extern const bool __static_condition_default_2462; extern const bool __static_condition_default_552; extern const bool __static_condition_default_817; extern const bool __static_condition_default_693; -extern const bool __static_condition_default_2469; extern const bool __static_condition_default_632; -extern const bool __static_condition_default_2461; +extern const bool __static_condition_default_1791; extern const bool __static_condition_default_621; -extern const bool __static_condition_default_2455; extern const bool __static_condition_default_623; extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_2420; extern const bool __static_condition_default_1345; +extern const bool __static_condition_default_1789; extern const bool __static_condition_default_541; extern const bool __static_condition_default_1560; extern const bool __static_condition_default_299; @@ -117,13 +117,13 @@ extern const bool __static_condition_default_868; extern const bool __static_condition_default_198; extern const bool __static_condition_default_1485; extern const bool __static_condition_default_503; +extern const bool __static_condition_default_2425; +extern const bool __static_condition_default_2426; extern const bool __static_condition_default_979; extern const bool __static_condition_default_514; extern const bool __static_condition_default_1749; -extern const bool __static_condition_default_2467; extern const bool __static_condition_default_549; -extern const bool __static_condition_default_2457; -extern const bool __static_condition_default_2407; +extern const bool __static_condition_default_2461; extern const bool __static_condition_default_511; extern const bool __static_condition_default_634; extern const bool __static_condition_default_700; @@ -131,53 +131,53 @@ extern const bool __static_condition_default_1564; extern const bool __static_condition_default_275; extern const bool __static_condition_default_293; extern const bool __static_condition_default_375; -extern const bool __static_condition_default_2463; extern const bool __static_condition_default_529; +extern const bool __static_condition_default_2434; extern const bool __static_condition_default_702; +extern const bool __static_condition_default_2445; extern const bool __static_condition_default_438; extern const bool __static_condition_default_760; +extern const bool __static_condition_default_2449; extern const bool __static_condition_default_536; -extern const bool __static_condition_default_2466; extern const bool __static_condition_default_864; extern const bool __static_condition_default_1369; -extern const bool __static_condition_default_2047; +extern const bool __static_condition_default_2328; +extern const bool __static_condition_default_2381; extern const bool __static_condition_default_637; extern const bool __static_condition_default_801; extern const bool __static_condition_default_1073; extern const bool __static_condition_default_769; -extern const bool __static_condition_default_2432; +extern const bool __static_condition_default_2430; extern const bool __static_condition_default_2465; -extern const bool __static_condition_default_2446; extern const bool __static_condition_default_991; extern const bool __static_condition_default_636; extern const bool __static_condition_default_1532; extern const bool __static_condition_default_1552; +extern const bool __static_condition_default_2412; extern const bool __static_condition_default_537; +extern const bool __static_condition_default_2464; extern const bool __static_condition_default_193; extern const bool __static_condition_default_417; extern const bool __static_condition_default_752; extern const bool __static_condition_default_274; extern const bool __static_condition_default_1005; extern const bool __static_condition_default_1388; -extern const bool __static_condition_default_2328; -extern const bool __static_condition_default_2389; extern const bool __static_condition_default_685; +extern const bool __static_condition_default_2451; extern const bool __static_condition_default_823; -extern const bool __static_condition_default_2426; -extern const bool __static_condition_default_2043; +extern const bool __static_condition_default_1774; extern const bool __static_condition_default_846; extern const bool __static_condition_default_1072; +extern const bool __static_condition_default_2389; extern const bool __static_condition_default_891; -extern const bool __static_condition_default_2458; -extern const bool __static_condition_default_2417; extern const bool __static_condition_default_608; extern const bool __static_condition_default_907; extern const bool __static_condition_default_914; extern const bool __static_condition_default_1489; -extern const bool __static_condition_default_2413; extern const bool __static_condition_default_658; +extern const bool __static_condition_default_2419; extern const bool __static_condition_default_819; -extern const bool __static_condition_default_2322; +extern const bool __static_condition_default_2063; extern const bool __static_condition_default_497; extern const bool __static_condition_default_1402; extern const bool __static_condition_default_382; @@ -187,84 +187,81 @@ extern const bool __static_condition_default_768; extern const bool __static_condition_default_1453; extern const bool __static_condition_default_759; extern const bool __static_condition_default_803; -extern const bool __static_condition_default_1814; extern const bool __static_condition_default_249; extern const bool __static_condition_default_887; extern const bool __static_condition_default_461; -extern const bool __static_condition_default_1775; extern const bool __static_condition_default_651; extern const bool __static_condition_default_955; extern const bool __static_condition_default_701; -extern const bool __static_condition_default_2448; extern const bool __static_condition_default_363; extern const bool __static_condition_default_862; -extern const bool __static_condition_default_2451; extern const bool __static_condition_default_311; extern const bool __static_condition_default_650; extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_2396; -extern const bool __static_condition_default_2314; extern const bool __static_condition_default_1391; extern const bool __static_condition_default_1416; -extern const bool __static_condition_default_2330; extern const bool __static_condition_default_258; extern const bool __static_condition_default_602; -extern const bool __static_condition_default_2351; extern const bool __static_condition_default_659; extern const bool __static_condition_default_1042; +extern const bool __static_condition_default_2466; extern const bool __static_condition_default_836; extern const bool __static_condition_default_848; -extern const bool __static_condition_default_2425; extern const bool __static_condition_default_645; extern const bool __static_condition_default_619; extern const bool __static_condition_default_1420; extern const bool __static_condition_default_488; extern const bool __static_condition_default_337; +extern const bool __static_condition_default_2376; extern const bool __static_condition_default_1458; +extern const bool __static_condition_default_2427; extern const bool __static_condition_default_123; extern const bool __static_condition_default_486; +extern const bool __static_condition_default_2460; extern const bool __static_condition_default_686; extern const bool __static_condition_default_1498; extern const bool __static_condition_default_255; extern const bool __static_condition_default_715; -extern const bool __static_condition_default_2434; +extern const bool __static_condition_default_2432; extern const bool __static_condition_default_204; +extern const bool __static_condition_default_1787; extern const bool __static_condition_default_267; extern const bool __static_condition_default_357; -extern const bool __static_condition_default_2045; +extern const bool __static_condition_default_2047; extern const bool __static_condition_default_550; +extern const bool __static_condition_default_1785; +extern const bool __static_condition_default_2468; extern const bool __static_condition_default_1357; -extern const bool __static_condition_default_2430; +extern const bool __static_condition_default_2467; +extern const bool __static_condition_default_2428; extern const bool __static_condition_default_76; extern const bool __static_condition_default_515; extern const bool __static_condition_default_1051; extern const bool __static_condition_default_238; extern const bool __static_condition_default_469; -extern const bool __static_condition_default_1944; -extern const bool __static_condition_default_2378; -extern const bool __static_condition_default_2342; extern const bool __static_condition_default_264; -extern const bool __static_condition_default_2479; extern const bool __static_condition_default_1361; -extern const bool __static_condition_default_2478; -extern const bool __static_condition_default_2454; +extern const bool __static_condition_default_2046; +extern const bool __static_condition_default_2472; extern const bool __static_condition_default_564; -extern const bool __static_condition_default_2416; +extern const bool __static_condition_default_2463; +extern const bool __static_condition_default_2422; extern const bool __static_condition_default_284; +extern const bool __static_condition_default_2413; extern const bool __static_condition_default_1015; extern const bool __static_condition_default_894; -extern const bool __static_condition_default_2349; -extern const bool __static_condition_default_2427; +extern const bool __static_condition_default_2423; extern const bool __static_condition_default_2312; +extern const bool __static_condition_default_2377; extern const bool __static_condition_default_1090; extern const bool __static_condition_default_241; -extern const bool __static_condition_default_2313; +extern const bool __static_condition_default_2452; extern const bool __static_condition_default_494; extern const bool __static_condition_default_1353; extern const bool __static_condition_default_1515; -extern const bool __static_condition_default_1776; extern const bool __static_condition_default_793; extern const bool __static_condition_default_963; +extern const bool __static_condition_default_2321; extern const bool __static_condition_default_972; extern const bool __static_condition_default_998; extern const bool __static_condition_default_1531; @@ -275,52 +272,51 @@ extern const bool __static_condition_default_746; extern const bool __static_condition_default_393; extern const bool __static_condition_default_668; extern const bool __static_condition_default_246; -extern const bool __static_condition_default_2062; extern const bool __static_condition_default_544; extern const bool __static_condition_default_1750; -extern const bool __static_condition_default_2472; -extern const bool __static_condition_default_2428; -extern const bool __static_condition_default_2410; +extern const bool __static_condition_default_2478; +extern const bool __static_condition_default_2408; extern const bool __static_condition_default_727; extern const bool __static_condition_default_883; -extern const bool __static_condition_default_2329; extern const bool __static_condition_default_235; -extern const bool __static_condition_default_2464; extern const bool __static_condition_default_53; extern const bool __static_condition_default_244; -extern const bool __static_condition_default_2411; +extern const bool __static_condition_default_2409; extern const bool __static_condition_default_1385; -extern const bool __static_condition_default_2063; extern const bool __static_condition_default_499; extern const bool __static_condition_default_1080; extern const bool __static_condition_default_491; -extern const bool __static_condition_default_1791; +extern const bool __static_condition_default_2343; extern const bool __static_condition_default_170; extern const bool __static_condition_default_663; +extern const bool __static_condition_default_2469; extern const bool __static_condition_default_333; extern const bool __static_condition_default_516; extern const bool __static_condition_default_1572; -extern const bool __static_condition_default_2452; extern const bool __static_condition_default_201; -extern const bool __static_condition_default_2429; extern const bool __static_condition_default_471; -extern const bool __static_condition_default_1808; extern const bool __static_condition_default_433; extern const bool __static_condition_default_717; extern const bool __static_condition_default_1568; -extern const bool __static_condition_default_2401; extern const bool __static_condition_default_1377; +extern const bool __static_condition_default_2329; extern const bool __static_condition_default_432; +extern const bool __static_condition_default_2433; extern const bool __static_condition_default_355; +extern const bool __static_condition_default_2410; extern const bool __static_condition_default_395; extern const bool __static_condition_default_967; extern const bool __static_condition_default_825; extern const bool __static_condition_default_1028; +extern const bool __static_condition_default_2455; extern const bool __static_condition_default_1516; +extern const bool __static_condition_default_2416; extern const bool __static_condition_default_538; extern const bool __static_condition_default_583; +extern const bool __static_condition_default_2401; extern const bool __static_condition_default_402; extern const bool __static_condition_default_938; +extern const bool __static_condition_default_2470; extern const bool __static_condition_default_736; extern const bool __static_condition_default_747; extern const bool __static_condition_default_1091; @@ -329,50 +325,54 @@ extern const bool __static_condition_default_187; extern const bool __static_condition_default_296; extern const bool __static_condition_default_313; extern const bool __static_condition_default_779; +extern const bool __static_condition_default_2457; extern const bool __static_condition_default_734; -extern const bool __static_condition_default_2422; +extern const bool __static_condition_default_2378; extern const bool __static_condition_default_173; +extern const bool __static_condition_default_2330; extern const bool __static_condition_default_613; extern const bool __static_condition_default_638; +extern const bool __static_condition_default_2387; extern const bool __static_condition_default_755; extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_2433; -extern const bool __static_condition_default_1773; +extern const bool __static_condition_default_2322; +extern const bool __static_condition_default_2349; +extern const bool __static_condition_default_2431; extern const bool __static_condition_default_331; extern const bool __static_condition_default_290; -extern const bool __static_condition_default_2046; +extern const bool __static_condition_default_2314; extern const bool __static_condition_default_278; -extern const bool __static_condition_default_2468; -extern const bool __static_condition_default_2414; +extern const bool __static_condition_default_1810; +extern const bool __static_condition_default_2411; extern const bool __static_condition_default_929; extern const bool __static_condition_default_1022; extern const bool __static_condition_default_1009; +extern const bool __static_condition_default_2350; extern const bool __static_condition_default_590; -extern const bool __static_condition_default_2445; -extern const bool __static_condition_default_2408; +extern const bool __static_condition_default_2406; extern const bool __static_condition_default_978; -extern const bool __static_condition_default_2456; extern const bool __static_condition_default_842; extern const bool __static_condition_default_1409; -extern const bool __static_condition_default_1816; +extern const bool __static_condition_default_1775; extern const bool __static_condition_default_761; extern const bool __static_condition_default_229; +extern const bool __static_condition_default_2456; extern const bool __static_condition_default_263; extern const bool __static_condition_default_250; +extern const bool __static_condition_default_1773; +extern const bool __static_condition_default_2313; extern const bool __static_condition_default_956; +extern const bool __static_condition_default_2448; extern const bool __static_condition_default_1089; extern const bool __static_condition_default_1373; -extern const bool __static_condition_default_2320; extern const bool __static_condition_default_944; -extern const bool __static_condition_default_1810; -extern const bool __static_condition_default_2420; extern const bool __static_condition_default_365; extern const bool __static_condition_default_657; extern const bool __static_condition_default_431; +extern const bool __static_condition_default_2351; +extern const bool __static_condition_default_2043; extern const bool __static_condition_default_1428; -extern const bool __static_condition_default_2418; extern const bool __static_condition_default_539; -extern const bool __static_condition_default_2460; extern const bool __static_condition_default_270; extern const bool __static_condition_default_684; extern const bool __static_condition_default_633; @@ -381,15 +381,16 @@ extern const bool __static_condition_default_380; extern const bool __static_condition_default_1576; extern const bool __static_condition_default_1395; extern const bool __static_condition_default_745; -extern const bool __static_condition_default_2477; extern const bool __static_condition_default_781; extern const bool __static_condition_default_1398; extern const bool __static_condition_default_957; +extern const bool __static_condition_default_2479; extern const bool __static_condition_default_369; extern const bool __static_condition_default_787; extern const bool __static_condition_default_809; extern const bool __static_condition_default_858; extern const bool __static_condition_default_367; +extern const bool __static_condition_default_2064; extern const bool __static_condition_default_788; extern const bool __static_condition_default_493; extern const bool __static_condition_default_875; @@ -400,32 +401,32 @@ extern const bool __static_condition_default_834; extern const bool __static_condition_default_1365; extern const bool __static_condition_default_708; extern const bool __static_condition_default_257; -extern const bool __static_condition_default_2376; extern const bool __static_condition_default_1436; extern const bool __static_condition_default_386; extern const bool __static_condition_default_1066; extern const bool __static_condition_default_412; extern const bool __static_condition_default_1081; extern const bool __static_condition_default_1165; -extern const bool __static_condition_default_2044; extern const bool __static_condition_default_1341; -extern const bool __static_condition_default_2409; +extern const bool __static_condition_default_2407; extern const bool __static_condition_default_282; +extern const bool __static_condition_default_2417; extern const bool __static_condition_default_271; extern const bool __static_condition_default_347; extern const bool __static_condition_default_578; +extern const bool __static_condition_default_2342; extern const bool __static_condition_default_489; extern const bool __static_condition_default_543; extern const bool __static_condition_default_1065; extern const bool __static_condition_default_1159; -extern const bool __static_condition_default_2421; extern const bool __static_condition_default_756; +extern const bool __static_condition_default_1776; +extern const bool __static_condition_default_1816; extern const bool __static_condition_default_553; +extern const bool __static_condition_default_2320; extern const bool __static_condition_default_315; extern const bool __static_condition_default_182; -extern const bool __static_condition_default_1787; -extern const bool __static_condition_default_2453; -extern const bool __static_condition_default_2321; +extern const bool __static_condition_default_2450; extern const bool __static_condition_default_585; extern const bool __static_condition_default_473; void __static_initializer_default() { @@ -2660,14 +2661,14 @@ static __inline unsigned int (____bswap_32_1158) (unsigned int ____bsx_1157) { if (__static_condition_default_1159) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -2676,14 +2677,14 @@ static __inline ____uint64_t_13 (____bswap_64_1162) (____uint64_t_13 ____bsx_1 if (__static_condition_default_1164) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2692,14 +2693,14 @@ static __inline ____uint64_t_1112 (____bswap_64_1163) (____uint64_t_1112 ____b if (__static_condition_default_1165) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2904,14 +2905,14 @@ static __inline unsigned int (____bswap_32_1452) (unsigned int ____bsx_1451) { if (__static_condition_default_1453) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -2920,14 +2921,14 @@ static __inline ____uint64_t_13 (____bswap_64_1456) (____uint64_t_13 ____bsx_1 if (__static_condition_default_1458) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2936,14 +2937,14 @@ static __inline ____uint64_t_1275 (____bswap_64_1457) (____uint64_t_1275 ____b if (__static_condition_default_1459) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -3298,7 +3299,7 @@ char * (__iobuf_2399)= malloc (8192);// L15 char * (__iobuf_2400)= malloc (8192);// L15 void (__send_headers_2405) (int __responseNum_2402) { -{ +{// L18 { @@ -3327,7 +3328,7 @@ if (__static_condition_default_2411) { if ( __responseNum_2402 == 401 )// L29 { -{ +{// L29 { @@ -3348,7 +3349,7 @@ if (__static_condition_default_2416) { __static_type_error("type error") ; // L30:L31 } } -} +}// L32 } } if (__static_condition_default_2417) { @@ -3410,20 +3411,20 @@ if (__static_condition_default_2434) { __static_type_error("type error") ; // L38 } } -} +}// L39 } void (__send_headers_and_exit_2436) (int __responseNum_2435) { -{ +{// L42 { __send_headers_2405 ( __responseNum_2435 ) ; // L43 } -} +}// L44 } @@ -3432,7 +3433,7 @@ void (__handle_incoming_and_exit_2447) () { { if (__static_condition_default_2448) { -{ +{// L47 { @@ -3509,14 +3510,14 @@ if (__static_condition_default_2457) { __static_type_error("invalid type found in if statement"); } } -} +}// L59 } if (__static_condition_default_2458) { -{ +{// L47 { @@ -3608,7 +3609,7 @@ if (__static_condition_default_2470) { __static_type_error("invalid type found in if statement"); } } -} +}// L59 } @@ -3618,14 +3619,14 @@ void (__mini_httpd_2471) () { if (__static_condition_default_2472) { -{ +{// L63 { __handle_incoming_and_exit_2447 ( ) ; // L64 } -} +}// L65 } @@ -3634,14 +3635,14 @@ int (__main_2475) (int __argc_2473, char * (* (__argv_2474))) { if (__static_condition_default_2477) { -{ +{// L69 { return 0 ;// L73 } -} +}// L74 } @@ -3650,7 +3651,7 @@ int (__main_2476) (int __argc_2473, char * (* (__argv_2474))) { if (__static_condition_default_2478) { -{ +{// L69 { @@ -3658,7 +3659,7 @@ if (__static_condition_default_2478) { __mini_httpd_2471 ( ) ; // L71 return 0 ;// L73 } -} +}// L74 } diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.clangres index 2140cef1..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.clangres @@ -1,25 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c:3291:25: error: initializer element is not a compile-time constant -char * (__iobuf_2392)= malloc (8192);// L15 - ^~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c:3292:25: error: initializer element is not a compile-time constant -char * (__iobuf_2393)= malloc (8192);// L15 - ^~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c:3293:25: error: initializer element is not a compile-time constant -char * (__iobuf_2394)= malloc (8192);// L15 - ^~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c:3294:25: error: initializer element is not a compile-time constant -char * (__iobuf_2395)= malloc (8192);// L15 - ^~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c:3295:25: error: initializer element is not a compile-time constant -char * (__iobuf_2397)= malloc (8192);// L15 - ^~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c:3296:25: error: initializer element is not a compile-time constant -char * (__iobuf_2398)= malloc (8192);// L15 - ^~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c:3297:25: error: initializer element is not a compile-time constant -char * (__iobuf_2399)= malloc (8192);// L15 - ^~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/95755181b82.desugared.c:3298:25: error: initializer element is not a compile-time constant -char * (__iobuf_2400)= malloc (8192);// L15 - ^~~~~~~~~~~~~ -8 errors generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.c index 97e4abda..5dd7d811 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -11,22 +12,18 @@ extern const bool __static_condition_default_568; extern const bool __static_condition_default_313; extern const bool __static_condition_default_278; extern const bool __static_condition_default_1428; -extern const bool __static_condition_default_1808; extern const bool __static_condition_default_433; extern const bool __static_condition_default_393; extern const bool __static_condition_default_991; extern const bool __static_condition_default_1165; extern const bool __static_condition_default_1489; extern const bool __static_condition_default_1532; +extern const bool __static_condition_default_2059; extern const bool __static_condition_default_241; -extern const bool __static_condition_default_2050; extern const bool __static_condition_default_907; extern const bool __static_condition_default_1395; -extern const bool __static_condition_default_1785; -extern const bool __static_condition_default_2055; extern const bool __static_condition_default_683; extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_2062; extern const bool __static_condition_default_647; extern const bool __static_condition_default_823; extern const bool __static_condition_default_1315; @@ -34,12 +31,13 @@ extern const bool __static_condition_default_402; extern const bool __static_condition_default_317; extern const bool __static_condition_default_746; extern const bool __static_condition_default_497; -extern const bool __static_condition_default_2047; +extern const bool __static_condition_default_2046; extern const bool __static_condition_default_633; extern const bool __static_condition_default_455; extern const bool __static_condition_default_1027; extern const bool __static_condition_default_700; extern const bool __static_condition_default_715; +extern const bool __static_condition_default_1775; extern const bool __static_condition_default_864; extern const bool __static_condition_default_1381; extern const bool __static_condition_default_542; @@ -50,22 +48,23 @@ extern const bool __static_condition_default_253; extern const bool __static_condition_default_210; extern const bool __static_condition_default_685; extern const bool __static_condition_default_259; +extern const bool __static_condition_default_2047; +extern const bool __static_condition_default_2061; extern const bool __static_condition_default_761; -extern const bool __static_condition_default_2040; extern const bool __static_condition_default_267; extern const bool __static_condition_default_473; extern const bool __static_condition_default_638; extern const bool __static_condition_default_76; extern const bool __static_condition_default_523; -extern const bool __static_condition_default_2053; extern const bool __static_condition_default_1009; extern const bool __static_condition_default_1164; extern const bool __static_condition_default_709; -extern const bool __static_condition_default_2041; extern const bool __static_condition_default_1750; extern const bool __static_condition_default_846; extern const bool __static_condition_default_1388; extern const bool __static_condition_default_373; +extern const bool __static_condition_default_2066; +extern const bool __static_condition_default_1816; extern const bool __static_condition_default_862; extern const bool __static_condition_default_182; extern const bool __static_condition_default_299; @@ -79,7 +78,7 @@ extern const bool __static_condition_default_564; extern const bool __static_condition_default_357; extern const bool __static_condition_default_193; extern const bool __static_condition_default_1409; -extern const bool __static_condition_default_1791; +extern const bool __static_condition_default_1776; extern const bool __static_condition_default_1391; extern const bool __static_condition_default_286; extern const bool __static_condition_default_573; @@ -89,18 +88,16 @@ extern const bool __static_condition_default_657; extern const bool __static_condition_default_1159; extern const bool __static_condition_default_677; extern const bool __static_condition_default_1564; -extern const bool __static_condition_default_2065; extern const bool __static_condition_default_1050; extern const bool __static_condition_default_1753; extern const bool __static_condition_default_550; extern const bool __static_condition_default_979; -extern const bool __static_condition_default_2060; +extern const bool __static_condition_default_2040; extern const bool __static_condition_default_275; extern const bool __static_condition_default_1091; extern const bool __static_condition_default_417; extern const bool __static_condition_default_817; extern const bool __static_condition_default_1459; -extern const bool __static_condition_default_1816; extern const bool __static_condition_default_250; extern const bool __static_condition_default_257; extern const bool __static_condition_default_1373; @@ -108,9 +105,7 @@ extern const bool __static_condition_default_1475; extern const bool __static_condition_default_779; extern const bool __static_condition_default_229; extern const bool __static_condition_default_432; -extern const bool __static_condition_default_2052; extern const bool __static_condition_default_274; -extern const bool __static_condition_default_1776; extern const bool __static_condition_default_1424; extern const bool __static_condition_default_636; extern const bool __static_condition_default_521; @@ -124,16 +119,19 @@ extern const bool __static_condition_default_333; extern const bool __static_condition_default_789; extern const bool __static_condition_default_583; extern const bool __static_condition_default_944; -extern const bool __static_condition_default_1774; extern const bool __static_condition_default_1005; extern const bool __static_condition_default_1458; extern const bool __static_condition_default_53; extern const bool __static_condition_default_621; extern const bool __static_condition_default_1341; +extern const bool __static_condition_default_2053; extern const bool __static_condition_default_538; +extern const bool __static_condition_default_2057; extern const bool __static_condition_default_296; extern const bool __static_condition_default_1568; extern const bool __static_condition_default_315; +extern const bool __static_condition_default_1785; +extern const bool __static_condition_default_1814; extern const bool __static_condition_default_169; extern const bool __static_condition_default_787; extern const bool __static_condition_default_1405; @@ -152,20 +150,20 @@ extern const bool __static_condition_default_781; extern const bool __static_condition_default_978; extern const bool __static_condition_default_721; extern const bool __static_condition_default_1357; -extern const bool __static_condition_default_2049; extern const bool __static_condition_default_848; extern const bool __static_condition_default_1081; +extern const bool __static_condition_default_2043; extern const bool __static_condition_default_170; extern const bool __static_condition_default_1749; +extern const bool __static_condition_default_1810; extern const bool __static_condition_default_1090; -extern const bool __static_condition_default_2051; +extern const bool __static_condition_default_2052; extern const bool __static_condition_default_544; extern const bool __static_condition_default_613; extern const bool __static_condition_default_662; extern const bool __static_condition_default_431; extern const bool __static_condition_default_819; -extern const bool __static_condition_default_2057; -extern const bool __static_condition_default_2063; +extern const bool __static_condition_default_2056; extern const bool __static_condition_default_380; extern const bool __static_condition_default_759; extern const bool __static_condition_default_1089; @@ -173,18 +171,19 @@ extern const bool __static_condition_default_894; extern const bool __static_condition_default_1754; extern const bool __static_condition_default_412; extern const bool __static_condition_default_963; -extern const bool __static_condition_default_2061; extern const bool __static_condition_default_271; extern const bool __static_condition_default_1420; extern const bool __static_condition_default_270; extern const bool __static_condition_default_493; extern const bool __static_condition_default_249; +extern const bool __static_condition_default_2058; +extern const bool __static_condition_default_2067; extern const bool __static_condition_default_834; extern const bool __static_condition_default_956; extern const bool __static_condition_default_891; -extern const bool __static_condition_default_2043; extern const bool __static_condition_default_663; extern const bool __static_condition_default_836; +extern const bool __static_condition_default_1808; extern const bool __static_condition_default_887; extern const bool __static_condition_default_355; extern const bool __static_condition_default_511; @@ -193,11 +192,12 @@ extern const bool __static_condition_default_471; extern const bool __static_condition_default_760; extern const bool __static_condition_default_701; extern const bool __static_condition_default_717; +extern const bool __static_condition_default_2062; extern const bool __static_condition_default_1432; extern const bool __static_condition_default_367; extern const bool __static_condition_default_929; extern const bool __static_condition_default_341; -extern const bool __static_condition_default_2048; +extern const bool __static_condition_default_2042; extern const bool __static_condition_default_842; extern const bool __static_condition_default_938; extern const bool __static_condition_default_1349; @@ -217,32 +217,32 @@ extern const bool __static_condition_default_699; extern const bool __static_condition_default_967; extern const bool __static_condition_default_475; extern const bool __static_condition_default_736; -extern const bool __static_condition_default_2054; extern const bool __static_condition_default_623; extern const bool __static_condition_default_255; +extern const bool __static_condition_default_2048; extern const bool __static_condition_default_537; extern const bool __static_condition_default_661; extern const bool __static_condition_default_745; extern const bool __static_condition_default_751; extern const bool __static_condition_default_235; +extern const bool __static_condition_default_2054; extern const bool __static_condition_default_515; +extern const bool __static_condition_default_1773; +extern const bool __static_condition_default_2071; extern const bool __static_condition_default_288; extern const bool __static_condition_default_536; extern const bool __static_condition_default_752; extern const bool __static_condition_default_1560; -extern const bool __static_condition_default_2058; extern const bool __static_condition_default_486; extern const bool __static_condition_default_788; extern const bool __static_condition_default_1377; extern const bool __static_condition_default_1361; -extern const bool __static_condition_default_2059; extern const bool __static_condition_default_780; extern const bool __static_condition_default_619; extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_1774; extern const bool __static_condition_default_755; -extern const bool __static_condition_default_1789; extern const bool __static_condition_default_753; -extern const bool __static_condition_default_2042; extern const bool __static_condition_default_553; extern const bool __static_condition_default_419; extern const bool __static_condition_default_1516; @@ -253,8 +253,8 @@ extern const bool __static_condition_default_1080; extern const bool __static_condition_default_792; extern const bool __static_condition_default_1072; extern const bool __static_condition_default_791; +extern const bool __static_condition_default_2051; extern const bool __static_condition_default_840; -extern const bool __static_condition_default_1814; extern const bool __static_condition_default_756; extern const bool __static_condition_default_408; extern const bool __static_condition_default_768; @@ -263,9 +263,9 @@ extern const bool __static_condition_default_649; extern const bool __static_condition_default_549; extern const bool __static_condition_default_1453; extern const bool __static_condition_default_1498; +extern const bool __static_condition_default_2044; extern const bool __static_condition_default_608; extern const bool __static_condition_default_650; -extern const bool __static_condition_default_2045; extern const bool __static_condition_default_560; extern const bool __static_condition_default_972; extern const bool __static_condition_default_369; @@ -278,22 +278,18 @@ extern const bool __static_condition_default_388; extern const bool __static_condition_default_1531; extern const bool __static_condition_default_290; extern const bool __static_condition_default_284; -extern const bool __static_condition_default_1775; extern const bool __static_condition_default_311; +extern const bool __static_condition_default_1944; extern const bool __static_condition_default_345; extern const bool __static_condition_default_461; -extern const bool __static_condition_default_2044; extern const bool __static_condition_default_1369; -extern const bool __static_condition_default_1773; extern const bool __static_condition_default_813; -extern const bool __static_condition_default_2071; extern const bool __static_condition_default_198; extern const bool __static_condition_default_578; extern const bool __static_condition_default_1398; extern const bool __static_condition_default_658; extern const bool __static_condition_default_875; extern const bool __static_condition_default_1035; -extern const bool __static_condition_default_1944; extern const bool __static_condition_default_539; extern const bool __static_condition_default_646; extern const bool __static_condition_default_659; @@ -306,7 +302,7 @@ extern const bool __static_condition_default_1042; extern const bool __static_condition_default_1043; extern const bool __static_condition_default_512; extern const bool __static_condition_default_223; -extern const bool __static_condition_default_1787; +extern const bool __static_condition_default_2049; extern const bool __static_condition_default_541; extern const bool __static_condition_default_293; extern const bool __static_condition_default_585; @@ -316,38 +312,41 @@ extern const bool __static_condition_default_747; extern const bool __static_condition_default_1007; extern const bool __static_condition_default_998; extern const bool __static_condition_default_1436; +extern const bool __static_condition_default_2041; extern const bool __static_condition_default_801; extern const bool __static_condition_default_1353; extern const bool __static_condition_default_173; +extern const bool __static_condition_default_1789; extern const bool __static_condition_default_263; extern const bool __static_condition_default_1345; extern const bool __static_condition_default_668; extern const bool __static_condition_default_723; -extern const bool __static_condition_default_2067; +extern const bool __static_condition_default_2065; extern const bool __static_condition_default_858; extern const bool __static_condition_default_797; extern const bool __static_condition_default_282; extern const bool __static_condition_default_1576; extern const bool __static_condition_default_625; extern const bool __static_condition_default_375; +extern const bool __static_condition_default_2060; extern const bool __static_condition_default_1015; extern const bool __static_condition_default_872; extern const bool __static_condition_default_491; -extern const bool __static_condition_default_1810; extern const bool __static_condition_default_84; extern const bool __static_condition_default_217; extern const bool __static_condition_default_494; extern const bool __static_condition_default_1058; extern const bool __static_condition_default_347; extern const bool __static_condition_default_597; -extern const bool __static_condition_default_2046; +extern const bool __static_condition_default_2045; +extern const bool __static_condition_default_2063; extern const bool __static_condition_default_1365; extern const bool __static_condition_default_365; extern const bool __static_condition_default_708; extern const bool __static_condition_default_1065; -extern const bool __static_condition_default_2066; extern const bool __static_condition_default_809; -extern const bool __static_condition_default_2056; +extern const bool __static_condition_default_1787; +extern const bool __static_condition_default_2055; extern const bool __static_condition_default_670; extern const bool __static_condition_default_637; extern const bool __static_condition_default_204; @@ -358,6 +357,7 @@ extern const bool __static_condition_default_529; extern const bool __static_condition_default_1036; extern const bool __static_condition_default_1552; extern const bool __static_condition_default_757; +extern const bool __static_condition_default_2050; extern const bool __static_condition_default_602; extern const bool __static_condition_default_914; extern const bool __static_condition_default_1485; @@ -366,6 +366,7 @@ extern const bool __static_condition_default_489; extern const bool __static_condition_default_516; extern const bool __static_condition_default_510; extern const bool __static_condition_default_727; +extern const bool __static_condition_default_1791; extern const bool __static_condition_default_246; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); @@ -2393,14 +2394,14 @@ static __inline unsigned int (____bswap_32_1158) (unsigned int ____bsx_1157) { if (__static_condition_default_1159) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -2409,14 +2410,14 @@ static __inline ____uint64_t_13 (____bswap_64_1162) (____uint64_t_13 ____bsx_1 if (__static_condition_default_1164) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2425,14 +2426,14 @@ static __inline ____uint64_t_1112 (____bswap_64_1163) (____uint64_t_1112 ____b if (__static_condition_default_1165) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2637,14 +2638,14 @@ static __inline unsigned int (____bswap_32_1452) (unsigned int ____bsx_1451) { if (__static_condition_default_1453) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -2653,14 +2654,14 @@ static __inline ____uint64_t_13 (____bswap_64_1456) (____uint64_t_13 ____bsx_1 if (__static_condition_default_1458) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2669,14 +2670,14 @@ static __inline ____uint64_t_1275 (____bswap_64_1457) (____uint64_t_1275 ____b if (__static_condition_default_1459) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2905,21 +2906,21 @@ void (__list_single_2037) () { { if (__static_condition_default_2040) { -{ +{// L5 { __static_type_error("type error : no valid expression"); // L11 } -} +}// L18 } if (__static_condition_default_2041) { -{ +{// L5 { @@ -2952,20 +2953,20 @@ __static_type_error("type error") ; // L16 } } } -} +}// L18 } if (__static_condition_default_2049) { -{ +{// L5 { } -} +}// L18 } @@ -2976,21 +2977,21 @@ void (__list_single_2038) () { { if (__static_condition_default_2050) { -{ +{// L5 { __static_type_error("type error : no valid expression"); // L11 } -} +}// L18 } if (__static_condition_default_2051) { -{ +{// L5 { @@ -3023,20 +3024,20 @@ __static_type_error("type error") ; // L16 } } } -} +}// L18 } if (__static_condition_default_2059) { -{ +{// L5 { } -} +}// L18 } @@ -3047,21 +3048,21 @@ void (__list_single_2039) () { { if (__static_condition_default_2060) { -{ +{// L5 { __static_type_error("type error : no valid expression"); // L11 } -} +}// L18 } if (__static_condition_default_2061) { -{ +{// L5 { @@ -3073,20 +3074,20 @@ if (__static_condition_default_2062) { } __static_type_error("invalid type found in if statement"); } -} +}// L18 } if (__static_condition_default_2063) { -{ +{// L5 { } -} +}// L18 } @@ -3094,7 +3095,7 @@ if (__static_condition_default_2063) { }} void (__showfiles_2064) () { -{ +{// L21 { @@ -3109,13 +3110,13 @@ if (__static_condition_default_2067) { __list_single_2039 ( ) ; // L22 } } -} +}// L23 } int (__main_2070) (int __argc_2068, char * (* (__argv_2069))) { -{ +{// L26 { @@ -3123,7 +3124,7 @@ int (__main_2070) (int __argc_2068, char * (* (__argv_2069))) { __showfiles_2064 ( ) ; // L27 return 0 ;// L28 } -} +}// L29 } diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.clangres index 96a144fa..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.clangres @@ -1,16 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.c:2936:2: warning: 2nd function call argument is an uninitialized value [core.CallAndMessage] - __printf_421 ("%d", __info_2036 ) ; // L16 - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.c:2947:2: warning: 2nd function call argument is an uninitialized value [core.CallAndMessage] - __printf_421 ("%d", __info_2036 ) ; // L16 - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.c:3007:2: warning: 2nd function call argument is an uninitialized value [core.CallAndMessage] - __printf_421 ("%d", __info_2036 ) ; // L16 - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.c:3018:2: warning: 2nd function call argument is an uninitialized value [core.CallAndMessage] - __printf_421 ("%d", __info_2036 ) ; // L16 - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.c:3072:2: warning: Value stored to '__info_2036' is never read [deadcode.DeadStores] - __info_2036 = 0 ; // L11 - ^ ~ -5 warnings generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c index 594d90cb..acb20760 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -9,61 +10,65 @@ void __static_initializer_default(); extern const bool __static_condition_default_455; extern const bool __static_condition_default_255; -extern const bool __static_condition_default_2321; extern const bool __static_condition_default_715; extern const bool __static_condition_default_1753; -extern const bool __static_condition_default_2416; extern const bool __static_condition_default_512; extern const bool __static_condition_default_204; +extern const bool __static_condition_default_1787; +extern const bool __static_condition_default_1814; +extern const bool __static_condition_default_2044; extern const bool __static_condition_default_267; extern const bool __static_condition_default_1050; extern const bool __static_condition_default_259; extern const bool __static_condition_default_791; +extern const bool __static_condition_default_2412; +extern const bool __static_condition_default_2417; extern const bool __static_condition_default_1381; extern const bool __static_condition_default_807; extern const bool __static_condition_default_661; extern const bool __static_condition_default_210; extern const bool __static_condition_default_1405; -extern const bool __static_condition_default_2342; -extern const bool __static_condition_default_2397; -extern const bool __static_condition_default_2329; extern const bool __static_condition_default_357; extern const bool __static_condition_default_699; extern const bool __static_condition_default_980; +extern const bool __static_condition_default_1808; +extern const bool __static_condition_default_2046; +extern const bool __static_condition_default_2388; extern const bool __static_condition_default_550; +extern const bool __static_condition_default_1785; extern const bool __static_condition_default_1057; extern const bool __static_condition_default_780; extern const bool __static_condition_default_1357; +extern const bool __static_condition_default_2314; +extern const bool __static_condition_default_2047; +extern const bool __static_condition_default_2351; extern const bool __static_condition_default_76; extern const bool __static_condition_default_515; extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_2402; extern const bool __static_condition_default_238; extern const bool __static_condition_default_469; -extern const bool __static_condition_default_1944; extern const bool __static_condition_default_444; extern const bool __static_condition_default_792; extern const bool __static_condition_default_1315; extern const bool __static_condition_default_264; extern const bool __static_condition_default_692; extern const bool __static_condition_default_1361; -extern const bool __static_condition_default_2417; +extern const bool __static_condition_default_2404; extern const bool __static_condition_default_767; extern const bool __static_condition_default_723; extern const bool __static_condition_default_388; -extern const bool __static_condition_default_2381; extern const bool __static_condition_default_564; -extern const bool __static_condition_default_2405; extern const bool __static_condition_default_1556; extern const bool __static_condition_default_284; extern const bool __static_condition_default_753; +extern const bool __static_condition_default_2043; extern const bool __static_condition_default_253; extern const bool __static_condition_default_597; extern const bool __static_condition_default_1015; extern const bool __static_condition_default_248; extern const bool __static_condition_default_894; extern const bool __static_condition_default_317; -extern const bool __static_condition_default_2322; -extern const bool __static_condition_default_2411; extern const bool __static_condition_default_852; extern const bool __static_condition_default_677; extern const bool __static_condition_default_510; @@ -72,21 +77,20 @@ extern const bool __static_condition_default_341; extern const bool __static_condition_default_721; extern const bool __static_condition_default_286; extern const bool __static_condition_default_559; -extern const bool __static_condition_default_2400; +extern const bool __static_condition_default_2399; extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_2312; extern const bool __static_condition_default_241; -extern const bool __static_condition_default_2398; extern const bool __static_condition_default_789; +extern const bool __static_condition_default_2329; +extern const bool __static_condition_default_2408; extern const bool __static_condition_default_872; -extern const bool __static_condition_default_2389; -extern const bool __static_condition_default_1774; +extern const bool __static_condition_default_2045; extern const bool __static_condition_default_560; -extern const bool __static_condition_default_1789; extern const bool __static_condition_default_494; extern const bool __static_condition_default_1353; extern const bool __static_condition_default_1515; extern const bool __static_condition_default_1432; -extern const bool __static_condition_default_1776; extern const bool __static_condition_default_793; extern const bool __static_condition_default_1152; extern const bool __static_condition_default_963; @@ -101,26 +105,20 @@ extern const bool __static_condition_default_1349; extern const bool __static_condition_default_169; extern const bool __static_condition_default_419; extern const bool __static_condition_default_746; -extern const bool __static_condition_default_2419; extern const bool __static_condition_default_475; -extern const bool __static_condition_default_1785; extern const bool __static_condition_default_393; extern const bool __static_condition_default_813; -extern const bool __static_condition_default_2314; extern const bool __static_condition_default_647; -extern const bool __static_condition_default_2418; -extern const bool __static_condition_default_2046; extern const bool __static_condition_default_668; extern const bool __static_condition_default_246; -extern const bool __static_condition_default_2349; extern const bool __static_condition_default_544; extern const bool __static_condition_default_1750; extern const bool __static_condition_default_727; extern const bool __static_condition_default_757; extern const bool __static_condition_default_883; +extern const bool __static_condition_default_2320; extern const bool __static_condition_default_217; extern const bool __static_condition_default_1754; -extern const bool __static_condition_default_2312; extern const bool __static_condition_default_235; extern const bool __static_condition_default_53; extern const bool __static_condition_default_244; @@ -128,31 +126,25 @@ extern const bool __static_condition_default_1424; extern const bool __static_condition_default_1385; extern const bool __static_condition_default_280; extern const bool __static_condition_default_288; -extern const bool __static_condition_default_2328; extern const bool __static_condition_default_709; extern const bool __static_condition_default_499; extern const bool __static_condition_default_1080; extern const bool __static_condition_default_491; -extern const bool __static_condition_default_2330; -extern const bool __static_condition_default_2343; -extern const bool __static_condition_default_2350; +extern const bool __static_condition_default_2420; extern const bool __static_condition_default_1475; -extern const bool __static_condition_default_1791; extern const bool __static_condition_default_521; extern const bool __static_condition_default_1459; -extern const bool __static_condition_default_2376; +extern const bool __static_condition_default_2398; extern const bool __static_condition_default_1007; extern const bool __static_condition_default_170; extern const bool __static_condition_default_663; extern const bool __static_condition_default_333; extern const bool __static_condition_default_516; extern const bool __static_condition_default_373; -extern const bool __static_condition_default_2410; -extern const bool __static_condition_default_2420; extern const bool __static_condition_default_1572; +extern const bool __static_condition_default_2381; extern const bool __static_condition_default_201; extern const bool __static_condition_default_471; -extern const bool __static_condition_default_1808; extern const bool __static_condition_default_1164; extern const bool __static_condition_default_433; extern const bool __static_condition_default_683; @@ -162,25 +154,24 @@ extern const bool __static_condition_default_1568; extern const bool __static_condition_default_1377; extern const bool __static_condition_default_573; extern const bool __static_condition_default_408; -extern const bool __static_condition_default_2387; -extern const bool __static_condition_default_2404; +extern const bool __static_condition_default_2403; extern const bool __static_condition_default_432; -extern const bool __static_condition_default_2401; extern const bool __static_condition_default_355; -extern const bool __static_condition_default_2402; -extern const bool __static_condition_default_2406; +extern const bool __static_condition_default_1944; extern const bool __static_condition_default_395; extern const bool __static_condition_default_967; extern const bool __static_condition_default_825; extern const bool __static_condition_default_1028; extern const bool __static_condition_default_840; extern const bool __static_condition_default_1516; +extern const bool __static_condition_default_2378; +extern const bool __static_condition_default_2349; extern const bool __static_condition_default_84; extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_2342; extern const bool __static_condition_default_538; extern const bool __static_condition_default_583; extern const bool __static_condition_default_625; -extern const bool __static_condition_default_2063; extern const bool __static_condition_default_402; extern const bool __static_condition_default_662; extern const bool __static_condition_default_938; @@ -189,7 +180,6 @@ extern const bool __static_condition_default_747; extern const bool __static_condition_default_552; extern const bool __static_condition_default_1091; extern const bool __static_condition_default_817; -extern const bool __static_condition_default_2403; extern const bool __static_condition_default_523; extern const bool __static_condition_default_187; extern const bool __static_condition_default_296; @@ -198,35 +188,43 @@ extern const bool __static_condition_default_779; extern const bool __static_condition_default_693; extern const bool __static_condition_default_632; extern const bool __static_condition_default_734; +extern const bool __static_condition_default_2343; extern const bool __static_condition_default_173; +extern const bool __static_condition_default_1791; extern const bool __static_condition_default_621; extern const bool __static_condition_default_613; extern const bool __static_condition_default_638; extern const bool __static_condition_default_623; extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_2062; extern const bool __static_condition_default_1345; +extern const bool __static_condition_default_1789; extern const bool __static_condition_default_541; extern const bool __static_condition_default_755; extern const bool __static_condition_default_1027; extern const bool __static_condition_default_1560; extern const bool __static_condition_default_299; +extern const bool __static_condition_default_2397; extern const bool __static_condition_default_868; extern const bool __static_condition_default_198; extern const bool __static_condition_default_1485; +extern const bool __static_condition_default_2389; extern const bool __static_condition_default_503; -extern const bool __static_condition_default_1773; +extern const bool __static_condition_default_2400; +extern const bool __static_condition_default_2418; extern const bool __static_condition_default_979; extern const bool __static_condition_default_331; extern const bool __static_condition_default_514; extern const bool __static_condition_default_1749; extern const bool __static_condition_default_549; extern const bool __static_condition_default_290; -extern const bool __static_condition_default_2378; +extern const bool __static_condition_default_2401; extern const bool __static_condition_default_511; extern const bool __static_condition_default_278; extern const bool __static_condition_default_634; extern const bool __static_condition_default_700; extern const bool __static_condition_default_1564; +extern const bool __static_condition_default_1810; extern const bool __static_condition_default_275; extern const bool __static_condition_default_929; extern const bool __static_condition_default_293; @@ -236,40 +234,40 @@ extern const bool __static_condition_default_375; extern const bool __static_condition_default_529; extern const bool __static_condition_default_702; extern const bool __static_condition_default_590; +extern const bool __static_condition_default_2064; extern const bool __static_condition_default_438; extern const bool __static_condition_default_978; extern const bool __static_condition_default_760; extern const bool __static_condition_default_842; -extern const bool __static_condition_default_2351; extern const bool __static_condition_default_1409; -extern const bool __static_condition_default_1816; extern const bool __static_condition_default_536; +extern const bool __static_condition_default_1775; extern const bool __static_condition_default_761; extern const bool __static_condition_default_864; extern const bool __static_condition_default_229; extern const bool __static_condition_default_1369; +extern const bool __static_condition_default_2376; extern const bool __static_condition_default_263; +extern const bool __static_condition_default_2322; extern const bool __static_condition_default_637; extern const bool __static_condition_default_801; extern const bool __static_condition_default_1073; extern const bool __static_condition_default_250; +extern const bool __static_condition_default_1773; extern const bool __static_condition_default_769; extern const bool __static_condition_default_956; extern const bool __static_condition_default_1089; extern const bool __static_condition_default_1373; extern const bool __static_condition_default_944; -extern const bool __static_condition_default_1810; +extern const bool __static_condition_default_2405; extern const bool __static_condition_default_365; extern const bool __static_condition_default_657; extern const bool __static_condition_default_431; extern const bool __static_condition_default_991; -extern const bool __static_condition_default_2407; extern const bool __static_condition_default_636; extern const bool __static_condition_default_1532; extern const bool __static_condition_default_1552; extern const bool __static_condition_default_537; -extern const bool __static_condition_default_2044; -extern const bool __static_condition_default_2045; extern const bool __static_condition_default_1428; extern const bool __static_condition_default_539; extern const bool __static_condition_default_193; @@ -287,6 +285,7 @@ extern const bool __static_condition_default_380; extern const bool __static_condition_default_1576; extern const bool __static_condition_default_823; extern const bool __static_condition_default_1395; +extern const bool __static_condition_default_1774; extern const bool __static_condition_default_745; extern const bool __static_condition_default_781; extern const bool __static_condition_default_846; @@ -299,16 +298,15 @@ extern const bool __static_condition_default_914; extern const bool __static_condition_default_957; extern const bool __static_condition_default_1489; extern const bool __static_condition_default_369; -extern const bool __static_condition_default_2412; extern const bool __static_condition_default_787; extern const bool __static_condition_default_809; extern const bool __static_condition_default_658; extern const bool __static_condition_default_858; extern const bool __static_condition_default_367; -extern const bool __static_condition_default_2047; +extern const bool __static_condition_default_2321; +extern const bool __static_condition_default_2328; extern const bool __static_condition_default_788; extern const bool __static_condition_default_819; -extern const bool __static_condition_default_2064; extern const bool __static_condition_default_493; extern const bool __static_condition_default_497; extern const bool __static_condition_default_1402; @@ -318,22 +316,20 @@ extern const bool __static_condition_default_223; extern const bool __static_condition_default_768; extern const bool __static_condition_default_875; extern const bool __static_condition_default_1453; +extern const bool __static_condition_default_2411; extern const bool __static_condition_default_759; extern const bool __static_condition_default_646; extern const bool __static_condition_default_803; -extern const bool __static_condition_default_2320; +extern const bool __static_condition_default_2330; extern const bool __static_condition_default_345; -extern const bool __static_condition_default_1814; extern const bool __static_condition_default_249; extern const bool __static_condition_default_797; extern const bool __static_condition_default_887; extern const bool __static_condition_default_834; extern const bool __static_condition_default_461; extern const bool __static_condition_default_1365; -extern const bool __static_condition_default_1775; extern const bool __static_condition_default_651; extern const bool __static_condition_default_955; -extern const bool __static_condition_default_2043; extern const bool __static_condition_default_701; extern const bool __static_condition_default_363; extern const bool __static_condition_default_708; @@ -341,12 +337,12 @@ extern const bool __static_condition_default_862; extern const bool __static_condition_default_257; extern const bool __static_condition_default_311; extern const bool __static_condition_default_650; -extern const bool __static_condition_default_2388; extern const bool __static_condition_default_1436; +extern const bool __static_condition_default_2063; extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_2409; extern const bool __static_condition_default_386; extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_2377; extern const bool __static_condition_default_1391; extern const bool __static_condition_default_1416; extern const bool __static_condition_default_412; @@ -355,19 +351,22 @@ extern const bool __static_condition_default_1081; extern const bool __static_condition_default_602; extern const bool __static_condition_default_1165; extern const bool __static_condition_default_1341; +extern const bool __static_condition_default_2419; extern const bool __static_condition_default_282; extern const bool __static_condition_default_659; -extern const bool __static_condition_default_2408; -extern const bool __static_condition_default_2399; +extern const bool __static_condition_default_2407; extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_2377; extern const bool __static_condition_default_836; extern const bool __static_condition_default_848; +extern const bool __static_condition_default_2416; +extern const bool __static_condition_default_2406; +extern const bool __static_condition_default_2350; extern const bool __static_condition_default_271; extern const bool __static_condition_default_347; extern const bool __static_condition_default_578; extern const bool __static_condition_default_645; -extern const bool __static_condition_default_2062; +extern const bool __static_condition_default_2387; +extern const bool __static_condition_default_2410; extern const bool __static_condition_default_489; extern const bool __static_condition_default_543; extern const bool __static_condition_default_1065; @@ -375,19 +374,21 @@ extern const bool __static_condition_default_1159; extern const bool __static_condition_default_619; extern const bool __static_condition_default_756; extern const bool __static_condition_default_1420; +extern const bool __static_condition_default_1776; +extern const bool __static_condition_default_1816; extern const bool __static_condition_default_488; extern const bool __static_condition_default_553; extern const bool __static_condition_default_337; extern const bool __static_condition_default_315; extern const bool __static_condition_default_182; extern const bool __static_condition_default_1458; -extern const bool __static_condition_default_1787; -extern const bool __static_condition_default_123; extern const bool __static_condition_default_2313; +extern const bool __static_condition_default_123; extern const bool __static_condition_default_486; extern const bool __static_condition_default_585; extern const bool __static_condition_default_686; extern const bool __static_condition_default_1498; +extern const bool __static_condition_default_2409; extern const bool __static_condition_default_473; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); @@ -2564,14 +2565,14 @@ static __inline unsigned int (____bswap_32_1158) (unsigned int ____bsx_1157) { if (__static_condition_default_1159) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -2580,14 +2581,14 @@ static __inline ____uint64_t_13 (____bswap_64_1162) (____uint64_t_13 ____bsx_1 if (__static_condition_default_1164) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2596,14 +2597,14 @@ static __inline ____uint64_t_1112 (____bswap_64_1163) (____uint64_t_1112 ____b if (__static_condition_default_1165) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2808,14 +2809,14 @@ static __inline unsigned int (____bswap_32_1452) (unsigned int ____bsx_1451) { if (__static_condition_default_1453) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -2824,14 +2825,14 @@ static __inline ____uint64_t_13 (____bswap_64_1456) (____uint64_t_13 ____bsx_1 if (__static_condition_default_1458) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2840,14 +2841,14 @@ static __inline ____uint64_t_1275 (____bswap_64_1457) (____uint64_t_1275 ____b if (__static_condition_default_1459) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -3195,7 +3196,7 @@ void (__make_device_2395) () { { if (__static_condition_default_2397) { -{ +{// L6 { @@ -3218,14 +3219,14 @@ if (__static_condition_default_2400) { __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 } } -} +}// L39 } if (__static_condition_default_2401) { -{ +{// L6 { @@ -3249,7 +3250,7 @@ int __n_2394= 0;// L20 while ( * __s_2391 )// L23 { -{ +{// L23 { @@ -3259,7 +3260,7 @@ if (__static_condition_default_2403) { if ( rand( ) % 2 )// L26 { -{ +{// L26 { @@ -3267,7 +3268,7 @@ if ( rand( ) % 2 )// L26 __n_2394 ++ ; // L27 __p_2392 += __n_2394 - 1 ; // L28 } -} +}// L29 } } if (__static_condition_default_2404) { @@ -3276,10 +3277,10 @@ __static_type_error("invalid type found in if statement"); __p_2392 ++ ; // L31 __s_2391 ++ ; // L32 } +}// L33 } } -} -} +}// L39 } @@ -3290,7 +3291,7 @@ void (__make_device_2396) () { { if (__static_condition_default_2405) { -{ +{// L6 { @@ -3313,14 +3314,14 @@ if (__static_condition_default_2408) { __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 } } -} +}// L39 } if (__static_condition_default_2409) { -{ +{// L6 { @@ -3344,7 +3345,7 @@ int __n_2394= 0;// L20 while ( * __s_2391 )// L23 { -{ +{// L23 { @@ -3354,7 +3355,7 @@ if (__static_condition_default_2411) { if ( rand( ) % 2 )// L26 { -{ +{// L26 { @@ -3362,7 +3363,7 @@ if ( rand( ) % 2 )// L26 __n_2394 ++ ; // L27 __p_2392 += __n_2394 - 1 ; // L28 } -} +}// L29 } } if (__static_condition_default_2412) { @@ -3371,10 +3372,10 @@ __static_type_error("invalid type found in if statement"); __p_2392 ++ ; // L31 __s_2391 ++ ; // L32 } +}// L33 } } -} -} +}// L39 } @@ -3382,7 +3383,7 @@ __static_type_error("invalid type found in if statement"); }} int (__main_2415) (int __argc_2413, char * (* (__argv_2414))) { -{ +{// L42 { @@ -3403,7 +3404,7 @@ __static_type_error("invalid type found in if statement"); } return 0 ;// L45 } -} +}// L46 } diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.clangres index 7243897c..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.clangres @@ -1,43 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3212:1: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] -char * (__a_2393)= __val_2390 ;// L14 -^~~~~~~~~~~~~~~~~ ~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3212:10: warning: Value stored to '__a_2393' during its initialization is never read [deadcode.DeadStores] -char * (__a_2393)= __val_2390 ;// L14 - ^~~~~~~~ ~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3218:2: warning: Value stored to '__val_2390' is never read [deadcode.DeadStores] - __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 - ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3218:19: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] - __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 - ^~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3245:2: warning: Value stored to '__val_2390' is never read [deadcode.DeadStores] - __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 - ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3245:19: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] - __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 - ^~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3257:14: warning: Dereference of undefined pointer value (loaded from variable '__p_2392') [core.NullDereference] -* __p_2392 = * __s_2391 ; // L24 - ~~~~~~~~ ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3307:1: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] -char * (__a_2393)= __val_2390 ;// L14 -^~~~~~~~~~~~~~~~~ ~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3307:10: warning: Value stored to '__a_2393' during its initialization is never read [deadcode.DeadStores] -char * (__a_2393)= __val_2390 ;// L14 - ^~~~~~~~ ~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3313:2: warning: Value stored to '__val_2390' is never read [deadcode.DeadStores] - __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 - ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3313:19: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] - __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 - ^~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3340:2: warning: Value stored to '__val_2390' is never read [deadcode.DeadStores] - __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 - ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3340:19: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] - __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 - ^~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3352:14: warning: Dereference of undefined pointer value (loaded from variable '__p_2392') [core.NullDereference] -* __p_2392 = * __s_2391 ; // L24 - ~~~~~~~~ ^ -14 warnings generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.clangres index b2457089..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.clangres @@ -1,10 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.c:7:23: error: invalid token in macro parameter list -#define LIST_FILENAME(1U<<11) - ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.c:13:13: error: use of undeclared identifier 'LIST_FILENAME' - all_fmt = LIST_FILENAME; - ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.c:16:17: error: use of undeclared identifier 'TIME_MASK' - all_fmt &= ~TIME_MASK; - ^ -3 errors generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.desugared.c index c2b3ead5..ef66537b 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -9,37 +10,36 @@ void __static_initializer_default(); extern const bool __static_condition_default_67; extern const bool __static_condition_default_276; +extern const bool __static_condition_default_594; extern const bool __static_condition_default_273; +extern const bool __static_condition_default_808; +extern const bool __static_condition_default_807; extern const bool __static_condition_default_252; extern const bool __static_condition_default_395; extern const bool __static_condition_default_414; extern const bool __static_condition_default_394; extern const bool __static_condition_default_429; -extern const bool __static_condition_default_629; +extern const bool __static_condition_default_602; +extern const bool __static_condition_default_736; extern const bool __static_condition_default_258; extern const bool __static_condition_default_267; -extern const bool __static_condition_default_736; +extern const bool __static_condition_default_804; +extern const bool __static_condition_default_621; extern const bool __static_condition_default_581; -extern const bool __static_condition_default_806; +extern const bool __static_condition_default_809; extern const bool __static_condition_default_361; -extern const bool __static_condition_default_804; extern const bool __static_condition_default_423; -extern const bool __static_condition_default_808; extern const bool __static_condition_default_341; extern const bool __static_condition_default_352; -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_602; extern const bool __static_condition_default_261; extern const bool __static_condition_default_432; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_807; extern const bool __static_condition_default_285; extern const bool __static_condition_default_420; extern const bool __static_condition_default_237; -extern const bool __static_condition_default_378; -extern const bool __static_condition_default_594; -extern const bool __static_condition_default_627; extern const bool __static_condition_default_595; +extern const bool __static_condition_default_806; +extern const bool __static_condition_default_378; +extern const bool __static_condition_default_604; extern const bool __static_condition_default_379; extern const bool __static_condition_default_349; extern const bool __static_condition_default_282; @@ -53,20 +53,21 @@ extern const bool __static_condition_default_308; extern const bool __static_condition_default_279; extern const bool __static_condition_default_246; extern const bool __static_condition_default_243; +extern const bool __static_condition_default_623; extern const bool __static_condition_default_249; extern const bool __static_condition_default_264; extern const bool __static_condition_default_270; extern const bool __static_condition_default_302; -extern const bool __static_condition_default_604; extern const bool __static_condition_default_234; extern const bool __static_condition_default_255; +extern const bool __static_condition_default_627; extern const bool __static_condition_default_60; +extern const bool __static_condition_default_629; extern const bool __static_condition_default_296; -extern const bool __static_condition_default_805; extern const bool __static_condition_default_215; extern const bool __static_condition_default_240; extern const bool __static_condition_default_417; -extern const bool __static_condition_default_809; +extern const bool __static_condition_default_805; extern const bool __static_condition_default_305; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); @@ -899,14 +900,14 @@ static __inline unsigned int (____bswap_32_66) (unsigned int ____bsx_65) { if (__static_condition_default_67) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -915,14 +916,14 @@ static __inline ____uint64_t_20 (____bswap_64_69) (____uint64_t_20 ____bsx_68) if (__static_condition_default_67) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -1095,14 +1096,14 @@ static __inline unsigned int (____bswap_32_324) (unsigned int ____bsx_323) { if (__static_condition_default_325) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -1111,14 +1112,14 @@ static __inline ____uint64_t_175 (____bswap_64_327) (____uint64_t_175 ____bsx_ if (__static_condition_default_325) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -1300,7 +1301,7 @@ static unsigned int __all_fmt_799;// L9 static unsigned int __all_fmt_800;// L9 int (__main_803) (int __argc_801, char * (* (__argv_802))) { -{ +{// L12 { @@ -1310,7 +1311,7 @@ if (__static_condition_default_804) { if ( rand( ) % 2 )// L15 { -{ +{// L15 { @@ -1325,7 +1326,7 @@ if (__static_condition_default_807) { __static_type_error("type error : no valid expression"); // L16 } } -} +}// L17 } } if (__static_condition_default_808) { @@ -1333,7 +1334,7 @@ __static_type_error("invalid type found in if statement"); } return 0 ;// L19 } -} +}// L20 } diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.desugared.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.desugared.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/b7ebc61b54f.desugared.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.clangres index 2a11ca26..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.clangres @@ -1,4 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.c:46:3: warning: Potential leak of memory pointed to by 'clist' [unix.Malloc] - return 0; - ^~~~~~~~ -1 warning generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c index 9a514db0..d15b8899 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -8,9 +9,10 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); extern const bool __static_condition_default_455; -extern const bool __static_condition_default_2321; extern const bool __static_condition_default_1753; extern const bool __static_condition_default_512; +extern const bool __static_condition_default_1814; +extern const bool __static_condition_default_2044; extern const bool __static_condition_default_1050; extern const bool __static_condition_default_259; extern const bool __static_condition_default_791; @@ -20,40 +22,40 @@ extern const bool __static_condition_default_661; extern const bool __static_condition_default_210; extern const bool __static_condition_default_1405; extern const bool __static_condition_default_699; -extern const bool __static_condition_default_2400; extern const bool __static_condition_default_980; +extern const bool __static_condition_default_1808; extern const bool __static_condition_default_1057; extern const bool __static_condition_default_780; +extern const bool __static_condition_default_2351; extern const bool __static_condition_default_444; extern const bool __static_condition_default_792; extern const bool __static_condition_default_1315; extern const bool __static_condition_default_692; -extern const bool __static_condition_default_2409; extern const bool __static_condition_default_767; extern const bool __static_condition_default_723; extern const bool __static_condition_default_388; -extern const bool __static_condition_default_2381; extern const bool __static_condition_default_1556; extern const bool __static_condition_default_753; +extern const bool __static_condition_default_2043; extern const bool __static_condition_default_253; extern const bool __static_condition_default_597; extern const bool __static_condition_default_248; extern const bool __static_condition_default_317; +extern const bool __static_condition_default_2448; extern const bool __static_condition_default_852; extern const bool __static_condition_default_677; extern const bool __static_condition_default_510; -extern const bool __static_condition_default_2408; extern const bool __static_condition_default_542; extern const bool __static_condition_default_341; extern const bool __static_condition_default_721; +extern const bool __static_condition_default_2440; extern const bool __static_condition_default_286; extern const bool __static_condition_default_559; -extern const bool __static_condition_default_2456; +extern const bool __static_condition_default_2312; extern const bool __static_condition_default_789; +extern const bool __static_condition_default_2329; extern const bool __static_condition_default_872; -extern const bool __static_condition_default_1774; extern const bool __static_condition_default_560; -extern const bool __static_condition_default_1789; extern const bool __static_condition_default_1432; extern const bool __static_condition_default_1152; extern const bool __static_condition_default_649; @@ -61,76 +63,76 @@ extern const bool __static_condition_default_670; extern const bool __static_condition_default_751; extern const bool __static_condition_default_1349; extern const bool __static_condition_default_475; -extern const bool __static_condition_default_1785; extern const bool __static_condition_default_813; +extern const bool __static_condition_default_2407; extern const bool __static_condition_default_647; -extern const bool __static_condition_default_2046; +extern const bool __static_condition_default_2446; extern const bool __static_condition_default_757; +extern const bool __static_condition_default_2320; extern const bool __static_condition_default_217; extern const bool __static_condition_default_1754; extern const bool __static_condition_default_1424; extern const bool __static_condition_default_280; extern const bool __static_condition_default_288; -extern const bool __static_condition_default_2328; extern const bool __static_condition_default_709; -extern const bool __static_condition_default_2436; extern const bool __static_condition_default_1475; extern const bool __static_condition_default_521; extern const bool __static_condition_default_1459; extern const bool __static_condition_default_1007; +extern const bool __static_condition_default_2432; extern const bool __static_condition_default_373; extern const bool __static_condition_default_1164; extern const bool __static_condition_default_683; extern const bool __static_condition_default_568; extern const bool __static_condition_default_573; extern const bool __static_condition_default_408; -extern const bool __static_condition_default_2406; -extern const bool __static_condition_default_2431; +extern const bool __static_condition_default_2443; +extern const bool __static_condition_default_2400; +extern const bool __static_condition_default_1944; extern const bool __static_condition_default_840; +extern const bool __static_condition_default_2378; +extern const bool __static_condition_default_2349; extern const bool __static_condition_default_84; extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_2342; extern const bool __static_condition_default_625; -extern const bool __static_condition_default_2063; extern const bool __static_condition_default_662; extern const bool __static_condition_default_552; extern const bool __static_condition_default_817; extern const bool __static_condition_default_693; extern const bool __static_condition_default_632; +extern const bool __static_condition_default_1791; extern const bool __static_condition_default_621; extern const bool __static_condition_default_623; extern const bool __static_condition_default_1036; -extern const bool __static_condition_default_2435; +extern const bool __static_condition_default_2062; extern const bool __static_condition_default_1345; +extern const bool __static_condition_default_1789; extern const bool __static_condition_default_541; extern const bool __static_condition_default_1560; +extern const bool __static_condition_default_2408; extern const bool __static_condition_default_299; extern const bool __static_condition_default_868; -extern const bool __static_condition_default_2415; extern const bool __static_condition_default_198; -extern const bool __static_condition_default_2439; extern const bool __static_condition_default_1485; extern const bool __static_condition_default_503; extern const bool __static_condition_default_979; extern const bool __static_condition_default_514; extern const bool __static_condition_default_1749; extern const bool __static_condition_default_549; -extern const bool __static_condition_default_2432; -extern const bool __static_condition_default_2378; extern const bool __static_condition_default_511; extern const bool __static_condition_default_634; extern const bool __static_condition_default_700; extern const bool __static_condition_default_1564; extern const bool __static_condition_default_275; extern const bool __static_condition_default_293; -extern const bool __static_condition_default_2405; extern const bool __static_condition_default_375; extern const bool __static_condition_default_529; extern const bool __static_condition_default_702; extern const bool __static_condition_default_438; extern const bool __static_condition_default_760; -extern const bool __static_condition_default_2448; -extern const bool __static_condition_default_2351; -extern const bool __static_condition_default_2438; +extern const bool __static_condition_default_2433; +extern const bool __static_condition_default_2437; extern const bool __static_condition_default_536; extern const bool __static_condition_default_864; extern const bool __static_condition_default_1369; @@ -138,15 +140,13 @@ extern const bool __static_condition_default_637; extern const bool __static_condition_default_801; extern const bool __static_condition_default_1073; extern const bool __static_condition_default_769; -extern const bool __static_condition_default_2404; +extern const bool __static_condition_default_2403; extern const bool __static_condition_default_991; -extern const bool __static_condition_default_2401; extern const bool __static_condition_default_636; extern const bool __static_condition_default_1532; extern const bool __static_condition_default_1552; -extern const bool __static_condition_default_2433; +extern const bool __static_condition_default_2431; extern const bool __static_condition_default_537; -extern const bool __static_condition_default_2045; extern const bool __static_condition_default_193; extern const bool __static_condition_default_417; extern const bool __static_condition_default_752; @@ -155,6 +155,7 @@ extern const bool __static_condition_default_1005; extern const bool __static_condition_default_1388; extern const bool __static_condition_default_685; extern const bool __static_condition_default_823; +extern const bool __static_condition_default_1774; extern const bool __static_condition_default_846; extern const bool __static_condition_default_1072; extern const bool __static_condition_default_891; @@ -163,10 +164,9 @@ extern const bool __static_condition_default_907; extern const bool __static_condition_default_914; extern const bool __static_condition_default_1489; extern const bool __static_condition_default_658; -extern const bool __static_condition_default_2460; -extern const bool __static_condition_default_2047; +extern const bool __static_condition_default_2459; +extern const bool __static_condition_default_2328; extern const bool __static_condition_default_819; -extern const bool __static_condition_default_2064; extern const bool __static_condition_default_497; extern const bool __static_condition_default_1402; extern const bool __static_condition_default_382; @@ -176,97 +176,92 @@ extern const bool __static_condition_default_768; extern const bool __static_condition_default_1453; extern const bool __static_condition_default_759; extern const bool __static_condition_default_803; -extern const bool __static_condition_default_1814; extern const bool __static_condition_default_249; extern const bool __static_condition_default_887; extern const bool __static_condition_default_461; -extern const bool __static_condition_default_1775; extern const bool __static_condition_default_651; extern const bool __static_condition_default_955; extern const bool __static_condition_default_701; extern const bool __static_condition_default_363; extern const bool __static_condition_default_862; -extern const bool __static_condition_default_2458; -extern const bool __static_condition_default_2443; +extern const bool __static_condition_default_2457; extern const bool __static_condition_default_311; extern const bool __static_condition_default_650; -extern const bool __static_condition_default_2388; extern const bool __static_condition_default_1058; -extern const bool __static_condition_default_2429; extern const bool __static_condition_default_1391; extern const bool __static_condition_default_1416; extern const bool __static_condition_default_258; extern const bool __static_condition_default_602; +extern const bool __static_condition_default_2458; extern const bool __static_condition_default_659; extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_2377; extern const bool __static_condition_default_836; extern const bool __static_condition_default_848; +extern const bool __static_condition_default_2350; extern const bool __static_condition_default_645; +extern const bool __static_condition_default_2387; extern const bool __static_condition_default_619; +extern const bool __static_condition_default_2406; extern const bool __static_condition_default_1420; extern const bool __static_condition_default_488; +extern const bool __static_condition_default_2405; extern const bool __static_condition_default_337; extern const bool __static_condition_default_1458; -extern const bool __static_condition_default_2402; extern const bool __static_condition_default_123; -extern const bool __static_condition_default_2313; extern const bool __static_condition_default_486; extern const bool __static_condition_default_686; extern const bool __static_condition_default_1498; -extern const bool __static_condition_default_2445; extern const bool __static_condition_default_255; extern const bool __static_condition_default_715; +extern const bool __static_condition_default_2460; extern const bool __static_condition_default_204; +extern const bool __static_condition_default_1787; extern const bool __static_condition_default_267; -extern const bool __static_condition_default_2342; -extern const bool __static_condition_default_2329; extern const bool __static_condition_default_357; -extern const bool __static_condition_default_2447; -extern const bool __static_condition_default_2434; +extern const bool __static_condition_default_2046; +extern const bool __static_condition_default_2388; extern const bool __static_condition_default_550; +extern const bool __static_condition_default_1785; extern const bool __static_condition_default_1357; +extern const bool __static_condition_default_2314; +extern const bool __static_condition_default_2047; extern const bool __static_condition_default_76; extern const bool __static_condition_default_515; extern const bool __static_condition_default_1051; -extern const bool __static_condition_default_2442; extern const bool __static_condition_default_238; extern const bool __static_condition_default_469; -extern const bool __static_condition_default_1944; extern const bool __static_condition_default_264; extern const bool __static_condition_default_1361; +extern const bool __static_condition_default_2402; extern const bool __static_condition_default_564; extern const bool __static_condition_default_284; +extern const bool __static_condition_default_2415; extern const bool __static_condition_default_1015; extern const bool __static_condition_default_894; -extern const bool __static_condition_default_2322; +extern const bool __static_condition_default_2441; extern const bool __static_condition_default_1090; extern const bool __static_condition_default_241; -extern const bool __static_condition_default_2389; +extern const bool __static_condition_default_2045; extern const bool __static_condition_default_494; extern const bool __static_condition_default_1353; -extern const bool __static_condition_default_2446; extern const bool __static_condition_default_1515; -extern const bool __static_condition_default_1776; extern const bool __static_condition_default_793; extern const bool __static_condition_default_963; extern const bool __static_condition_default_972; extern const bool __static_condition_default_998; extern const bool __static_condition_default_1531; extern const bool __static_condition_default_878; +extern const bool __static_condition_default_2401; extern const bool __static_condition_default_169; extern const bool __static_condition_default_419; extern const bool __static_condition_default_746; extern const bool __static_condition_default_393; -extern const bool __static_condition_default_2314; extern const bool __static_condition_default_668; extern const bool __static_condition_default_246; -extern const bool __static_condition_default_2349; extern const bool __static_condition_default_544; extern const bool __static_condition_default_1750; extern const bool __static_condition_default_727; extern const bool __static_condition_default_883; -extern const bool __static_condition_default_2312; extern const bool __static_condition_default_235; extern const bool __static_condition_default_53; extern const bool __static_condition_default_244; @@ -274,34 +269,29 @@ extern const bool __static_condition_default_1385; extern const bool __static_condition_default_499; extern const bool __static_condition_default_1080; extern const bool __static_condition_default_491; -extern const bool __static_condition_default_2330; -extern const bool __static_condition_default_2343; -extern const bool __static_condition_default_2350; -extern const bool __static_condition_default_1791; -extern const bool __static_condition_default_2376; extern const bool __static_condition_default_170; extern const bool __static_condition_default_663; +extern const bool __static_condition_default_2430; extern const bool __static_condition_default_333; extern const bool __static_condition_default_516; extern const bool __static_condition_default_1572; +extern const bool __static_condition_default_2381; extern const bool __static_condition_default_201; +extern const bool __static_condition_default_2409; extern const bool __static_condition_default_471; -extern const bool __static_condition_default_1808; extern const bool __static_condition_default_433; extern const bool __static_condition_default_717; extern const bool __static_condition_default_1568; -extern const bool __static_condition_default_2459; extern const bool __static_condition_default_1377; -extern const bool __static_condition_default_2387; +extern const bool __static_condition_default_2445; extern const bool __static_condition_default_432; -extern const bool __static_condition_default_2407; extern const bool __static_condition_default_355; extern const bool __static_condition_default_395; extern const bool __static_condition_default_967; extern const bool __static_condition_default_825; extern const bool __static_condition_default_1028; extern const bool __static_condition_default_1516; -extern const bool __static_condition_default_2414; +extern const bool __static_condition_default_2435; extern const bool __static_condition_default_538; extern const bool __static_condition_default_583; extern const bool __static_condition_default_402; @@ -314,39 +304,45 @@ extern const bool __static_condition_default_187; extern const bool __static_condition_default_296; extern const bool __static_condition_default_313; extern const bool __static_condition_default_779; -extern const bool __static_condition_default_2444; extern const bool __static_condition_default_734; +extern const bool __static_condition_default_2343; extern const bool __static_condition_default_173; extern const bool __static_condition_default_613; extern const bool __static_condition_default_638; extern const bool __static_condition_default_755; extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_2441; -extern const bool __static_condition_default_1773; +extern const bool __static_condition_default_2447; +extern const bool __static_condition_default_2389; extern const bool __static_condition_default_331; extern const bool __static_condition_default_290; extern const bool __static_condition_default_278; +extern const bool __static_condition_default_1810; +extern const bool __static_condition_default_2444; extern const bool __static_condition_default_929; extern const bool __static_condition_default_1022; extern const bool __static_condition_default_1009; extern const bool __static_condition_default_590; +extern const bool __static_condition_default_2064; extern const bool __static_condition_default_978; extern const bool __static_condition_default_842; +extern const bool __static_condition_default_2436; extern const bool __static_condition_default_1409; -extern const bool __static_condition_default_1816; +extern const bool __static_condition_default_1775; extern const bool __static_condition_default_761; extern const bool __static_condition_default_229; +extern const bool __static_condition_default_2376; +extern const bool __static_condition_default_2442; extern const bool __static_condition_default_263; +extern const bool __static_condition_default_2322; extern const bool __static_condition_default_250; +extern const bool __static_condition_default_1773; extern const bool __static_condition_default_956; extern const bool __static_condition_default_1089; extern const bool __static_condition_default_1373; extern const bool __static_condition_default_944; -extern const bool __static_condition_default_1810; extern const bool __static_condition_default_365; extern const bool __static_condition_default_657; extern const bool __static_condition_default_431; -extern const bool __static_condition_default_2044; extern const bool __static_condition_default_1428; extern const bool __static_condition_default_539; extern const bool __static_condition_default_270; @@ -364,45 +360,50 @@ extern const bool __static_condition_default_369; extern const bool __static_condition_default_787; extern const bool __static_condition_default_809; extern const bool __static_condition_default_858; +extern const bool __static_condition_default_2438; extern const bool __static_condition_default_367; +extern const bool __static_condition_default_2321; +extern const bool __static_condition_default_2429; +extern const bool __static_condition_default_2439; +extern const bool __static_condition_default_2414; extern const bool __static_condition_default_788; extern const bool __static_condition_default_493; -extern const bool __static_condition_default_2457; +extern const bool __static_condition_default_2456; extern const bool __static_condition_default_875; extern const bool __static_condition_default_646; -extern const bool __static_condition_default_2320; +extern const bool __static_condition_default_2330; extern const bool __static_condition_default_345; extern const bool __static_condition_default_797; extern const bool __static_condition_default_834; extern const bool __static_condition_default_1365; -extern const bool __static_condition_default_2043; extern const bool __static_condition_default_708; extern const bool __static_condition_default_257; extern const bool __static_condition_default_1436; +extern const bool __static_condition_default_2063; extern const bool __static_condition_default_386; extern const bool __static_condition_default_1066; -extern const bool __static_condition_default_2430; +extern const bool __static_condition_default_2377; extern const bool __static_condition_default_412; extern const bool __static_condition_default_1081; extern const bool __static_condition_default_1165; extern const bool __static_condition_default_1341; extern const bool __static_condition_default_282; -extern const bool __static_condition_default_2437; +extern const bool __static_condition_default_2434; +extern const bool __static_condition_default_2404; extern const bool __static_condition_default_271; extern const bool __static_condition_default_347; extern const bool __static_condition_default_578; -extern const bool __static_condition_default_2062; extern const bool __static_condition_default_489; extern const bool __static_condition_default_543; extern const bool __static_condition_default_1065; extern const bool __static_condition_default_1159; extern const bool __static_condition_default_756; +extern const bool __static_condition_default_1776; +extern const bool __static_condition_default_1816; extern const bool __static_condition_default_553; -extern const bool __static_condition_default_2440; extern const bool __static_condition_default_315; extern const bool __static_condition_default_182; -extern const bool __static_condition_default_1787; -extern const bool __static_condition_default_2403; +extern const bool __static_condition_default_2313; extern const bool __static_condition_default_585; extern const bool __static_condition_default_473; void __static_initializer_default() { @@ -2615,14 +2616,14 @@ static __inline unsigned int (____bswap_32_1158) (unsigned int ____bsx_1157) { if (__static_condition_default_1159) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -2631,14 +2632,14 @@ static __inline ____uint64_t_13 (____bswap_64_1162) (____uint64_t_13 ____bsx_1 if (__static_condition_default_1164) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2647,14 +2648,14 @@ static __inline ____uint64_t_1112 (____bswap_64_1163) (____uint64_t_1112 ____b if (__static_condition_default_1165) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2859,14 +2860,14 @@ static __inline unsigned int (____bswap_32_1452) (unsigned int ____bsx_1451) { if (__static_condition_default_1453) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -2875,14 +2876,14 @@ static __inline ____uint64_t_13 (____bswap_64_1456) (____uint64_t_13 ____bsx_1 if (__static_condition_default_1458) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2891,14 +2892,14 @@ static __inline ____uint64_t_1275 (____bswap_64_1457) (____uint64_t_1275 ____b if (__static_condition_default_1459) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -3247,7 +3248,7 @@ static void (__delete_eth_table_2398) (__ethtable_t_2394 * (__ch_2396)) { if (__static_condition_default_2400) { -{ +{// L14 { @@ -3265,7 +3266,7 @@ if (__static_condition_default_2404) { __static_type_error("type error") ; // L16 } } -} +}// L17 } @@ -3274,7 +3275,7 @@ static void (__delete_eth_table_2399) (__ethtable_t_2395 * (__ch_2397)) { if (__static_condition_default_2405) { -{ +{// L14 { @@ -3292,7 +3293,7 @@ if (__static_condition_default_2409) { __static_type_error("type error") ; // L16 } } -} +}// L17 } @@ -3301,13 +3302,13 @@ __static_type_error("type error") ; // L16 if (__static_condition_default_2414) { -{ +{// L20 { } -} +}// L21 } @@ -3316,13 +3317,13 @@ void (__delete_eth_table_2413) (__ethtable_t_2395 * (__ch_2411)) { if (__static_condition_default_2415) { -{ +{// L20 { } -} +}// L21 } @@ -3331,7 +3332,7 @@ static void (__prepend_new_eth_table_2427) (__ethtable_t_2394 * (* (__clist_24 if (__static_condition_default_2429) { -{ +{// L25 { struct { typeof( struct __forward_tag_reference_2390 *) __tmp_2421; typeof( char *) __tmp_2422; }__sizeofStandin_2423; @@ -3389,7 +3390,7 @@ __static_type_error("type error") ; // L29 __ch_2419 -> __next_2392 = * __clist_2416 ; // L31 * __clist_2416 = __ch_2419 ; // L32 } -} +}// L33 } @@ -3398,7 +3399,7 @@ static void (__prepend_new_eth_table_2428) (__ethtable_t_2395 * (* (__clist_24 if (__static_condition_default_2439) { -{ +{// L25 { struct { typeof( struct __forward_tag_reference_2390 *) __tmp_2421; typeof( char *) __tmp_2422; }__sizeofStandin_2423; @@ -3456,14 +3457,14 @@ __static_type_error("type error") ; // L29 __ch_2420 -> __next_2392 = * __clist_2417 ; // L31 * __clist_2417 = __ch_2420 ; // L32 } -} +}// L33 } } int (__main_2455) (int __argc_2449, char * (* (__argv_2450))) { -{ +{// L36 { @@ -3501,7 +3502,7 @@ if (__static_condition_default_2459) { return 0 ;// L46 } } -} +}// L47 } diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.clangres index d4e810e3..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.clangres @@ -1,43 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3380:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_2394', which is incompatible with sizeof operand type 'struct (unnamed struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3337:1)' [unix.MallocSizeof] - __ch_2419 = malloc (sizeof(__sizeofStandin_2423)) ; // L29 - ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3383:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_2394', which is incompatible with sizeof operand type 'struct (unnamed struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3337:1)' [unix.MallocSizeof] - __ch_2419 = malloc (sizeof(__sizeofStandin_2423)) ; // L29 - ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3385:5: warning: Potential leak of memory pointed to by '__ch_2419' [unix.Malloc] -if (__static_condition_default_2438) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3388:30: warning: Access to field '__ifname_2393' results in a dereference of an undefined pointer value (loaded from variable '__ch_2419') [core.NullDereference] - __ch_2419 -> __ifname_2393 = __ifname_2418 ; // L30 - ~~~~~~~~~ ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3447:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_2395', which is incompatible with sizeof operand type 'struct (unnamed struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3405:1)' [unix.MallocSizeof] - __ch_2420 = malloc (sizeof(__sizeofStandin_2426)) ; // L29 - ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3450:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_2395', which is incompatible with sizeof operand type 'struct (unnamed struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3405:1)' [unix.MallocSizeof] - __ch_2420 = malloc (sizeof(__sizeofStandin_2426)) ; // L29 - ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3452:5: warning: Potential leak of memory pointed to by '__ch_2420' [unix.Malloc] -if (__static_condition_default_2448) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3455:30: warning: Access to field '__ifname_2393' results in a dereference of an undefined pointer value (loaded from variable '__ch_2420') [core.NullDereference] - __ch_2420 -> __ifname_2393 = __ifname_2418 ; // L30 - ~~~~~~~~~ ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3486:39: warning: Potential leak of memory pointed to by '__ch_2453' [unix.Malloc] -for ( __ch_2453 = __clist_2451 ; __ch_2453 ; __ch_2453 = __ch_2453 -> __next_2392 )// L43 - ^~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3486:67: warning: Use of memory after it is freed [unix.Malloc] -for ( __ch_2453 = __clist_2451 ; __ch_2453 ; __ch_2453 = __ch_2453 -> __next_2392 )// L43 - ^~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3491:5: warning: Potential leak of memory pointed to by '__clist_2451' [unix.Malloc] -if (__static_condition_default_2457) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3492:39: warning: Potential leak of memory pointed to by '__ch_2454' [unix.Malloc] -for ( __ch_2454 = __clist_2452 ; __ch_2454 ; __ch_2454 = __ch_2454 -> __next_2392 )// L43 - ^~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3492:67: warning: Use of memory after it is freed [unix.Malloc] -for ( __ch_2454 = __clist_2452 ; __ch_2454 ; __ch_2454 = __ch_2454 -> __next_2392 )// L43 - ^~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3497:5: warning: Potential leak of memory pointed to by '__clist_2452' [unix.Malloc] -if (__static_condition_default_2458) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -14 warnings generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.inferres index ff8580b4..f419f6b8 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.inferres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.inferres @@ -1,30 +1,30 @@ -BUSYBOX/bc0ffc0e971.desugared.c:3382: error: Memory Leak - Memory dynamically allocated by `malloc` on line 3380 is not freed after the last access at line 3382, column 5. - 3380. __ch_2419 = malloc (sizeof(__sizeofStandin_2423)) ; // L29 - 3381. } - 3382. if (__static_condition_default_2437) { +BUSYBOX/bc0ffc0e971.desugared.c:3383: error: Memory Leak + Memory dynamically allocated by `malloc` on line 3381 is not freed after the last access at line 3383, column 5. + 3381. __ch_2419 = malloc (sizeof(__sizeofStandin_2423)) ; // L29 + 3382. } + 3383. if (__static_condition_default_2437) { ^ - 3383. __ch_2419 = malloc (sizeof(__sizeofStandin_2423)) ; // L29 - 3384. } + 3384. __ch_2419 = malloc (sizeof(__sizeofStandin_2423)) ; // L29 + 3385. } -BUSYBOX/bc0ffc0e971.desugared.c:3449: error: Memory Leak - Memory dynamically allocated by `malloc` on line 3447 is not freed after the last access at line 3449, column 5. - 3447. __ch_2420 = malloc (sizeof(__sizeofStandin_2426)) ; // L29 - 3448. } - 3449. if (__static_condition_default_2447) { +BUSYBOX/bc0ffc0e971.desugared.c:3450: error: Memory Leak + Memory dynamically allocated by `malloc` on line 3448 is not freed after the last access at line 3450, column 5. + 3448. __ch_2420 = malloc (sizeof(__sizeofStandin_2426)) ; // L29 + 3449. } + 3450. if (__static_condition_default_2447) { ^ - 3450. __ch_2420 = malloc (sizeof(__sizeofStandin_2426)) ; // L29 - 3451. } + 3451. __ch_2420 = malloc (sizeof(__sizeofStandin_2426)) ; // L29 + 3452. } -BUSYBOX/bc0ffc0e971.desugared.c:3491: error: Memory Leak - Memory dynamically allocated by `malloc`, indirectly via call to `__prepend_new_eth_table_2428()` on line 3483 is not freed after the last access at line 3491, column 5. - 3489. } +BUSYBOX/bc0ffc0e971.desugared.c:3492: error: Memory Leak + Memory dynamically allocated by `malloc`, indirectly via call to `__prepend_new_eth_table_2428()` on line 3484 is not freed after the last access at line 3492, column 5. 3490. } - 3491. if (__static_condition_default_2457) { + 3491. } + 3492. if (__static_condition_default_2457) { ^ - 3492. for ( __ch_2454 = __clist_2452 ; __ch_2454 ; __ch_2454 = __ch_2454 -> __next_2392 )// L43 - 3493. { + 3493. for ( __ch_2454 = __clist_2452 ; __ch_2454 ; __ch_2454 = __ch_2454 -> __next_2392 )// L43 + 3494. { Found 3 issues diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/cc3f20b9bdf.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/cc3f20b9bdf.desugared.c index 4eff3530..ac09906f 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/cc3f20b9bdf.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/cc3f20b9bdf.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/cc3f20b9bdf.desugared.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/cc3f20b9bdf.desugared.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/cc3f20b9bdf.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/cc3f20b9bdf.desugared.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/cf1f2ace391.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/cf1f2ace391.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/cf1f2ace391.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/cf1f2ace391.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/cf1f2ace391.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/cf1f2ace391.desugared.c index 8dd41559..ee207e2a 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/cf1f2ace391.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/cf1f2ace391.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -12,6 +13,7 @@ extern const bool __static_condition_default_510; extern const bool __static_condition_default_455; extern const bool __static_condition_default_296; extern const bool __static_condition_default_1141; +extern const bool __static_condition_default_2519; extern const bool __static_condition_default_1322; extern const bool __static_condition_default_412; extern const bool __static_condition_default_255; @@ -40,6 +42,7 @@ extern const bool __static_condition_default_836; extern const bool __static_condition_default_473; extern const bool __static_condition_default_864; extern const bool __static_condition_default_858; +extern const bool __static_condition_default_2512; extern const bool __static_condition_default_270; extern const bool __static_condition_default_173; extern const bool __static_condition_default_619; @@ -73,6 +76,7 @@ extern const bool __static_condition_default_2396; extern const bool __static_condition_default_347; extern const bool __static_condition_default_514; extern const bool __static_condition_default_1253; +extern const bool __static_condition_default_2507; extern const bool __static_condition_default_759; extern const bool __static_condition_default_1028; extern const bool __static_condition_default_701; @@ -117,7 +121,6 @@ extern const bool __static_condition_default_787; extern const bool __static_condition_default_278; extern const bool __static_condition_default_1978; extern const bool __static_condition_default_809; -extern const bool __static_condition_default_2509; extern const bool __static_condition_default_797; extern const bool __static_condition_default_1233; extern const bool __static_condition_default_807; @@ -131,11 +134,12 @@ extern const bool __static_condition_default_431; extern const bool __static_condition_default_602; extern const bool __static_condition_default_1331; extern const bool __static_condition_default_1284; +extern const bool __static_condition_default_2509; extern const bool __static_condition_default_317; extern const bool __static_condition_default_2002; +extern const bool __static_condition_default_2513; extern const bool __static_condition_default_1251; extern const bool __static_condition_default_670; -extern const bool __static_condition_default_2519; extern const bool __static_condition_default_2006; extern const bool __static_condition_default_2278; extern const bool __static_condition_default_537; @@ -200,6 +204,7 @@ extern const bool __static_condition_default_491; extern const bool __static_condition_default_223; extern const bool __static_condition_default_331; extern const bool __static_condition_default_367; +extern const bool __static_condition_default_2508; extern const bool __static_condition_default_757; extern const bool __static_condition_default_299; extern const bool __static_condition_default_553; @@ -234,7 +239,6 @@ extern const bool __static_condition_default_1158; extern const bool __static_condition_default_536; extern const bool __static_condition_default_638; extern const bool __static_condition_default_2117; -extern const bool __static_condition_default_2508; extern const bool __static_condition_default_1330; extern const bool __static_condition_default_515; extern const bool __static_condition_default_2388; @@ -317,7 +321,6 @@ extern const bool __static_condition_default_1065; extern const bool __static_condition_default_1282; extern const bool __static_condition_default_286; extern const bool __static_condition_default_311; -extern const bool __static_condition_default_2513; extern const bool __static_condition_default_1291; extern const bool __static_condition_default_780; extern const bool __static_condition_default_1058; @@ -389,7 +392,6 @@ extern const bool __static_condition_default_1796; extern const bool __static_condition_default_1930; extern const bool __static_condition_default_2170; extern const bool __static_condition_default_788; -extern const bool __static_condition_default_2512; extern const bool __static_condition_default_1834; extern const bool __static_condition_default_170; extern const bool __static_condition_default_846; @@ -443,7 +445,6 @@ extern const bool __static_condition_default_552; extern const bool __static_condition_default_872; extern const bool __static_condition_default_1999; extern const bool __static_condition_default_386; -extern const bool __static_condition_default_2507; extern const bool __static_condition_default_2260; extern const bool __static_condition_default_1035; extern const bool __static_condition_default_313; @@ -3001,7 +3002,7 @@ void (__shutdown_signal_2506) (int __sig_2504) { if (__static_condition_default_2507) { -{ +{// L10 { @@ -3011,40 +3012,40 @@ char * (__m_2505);// L11 if ( __sig_2504 == 15 )// L13 { -{ +{// L13 { __m_2505 = "reboot" ; // L14 } +}// L15 } -} -else +else// L15 { if ( __sig_2504 == 31 )// L15 { -{ +{// L15 { __m_2505 = "poweroff" ; // L16 } +}// L17 } -} -else +else// L17 { -{ +{// L17 { __m_2505 = "halt" ; // L18 } -} +}// L19 } } if (__static_condition_default_2508) { @@ -3054,7 +3055,7 @@ if (__static_condition_default_2509) { __static_type_error("type error") ; // L20 } } -} +}// L21 } @@ -3063,14 +3064,14 @@ void (__open_new_terminal_2510) () { if (__static_condition_default_2512) { -{ +{// L25 { __static_type_error("type error") ; // L26 } -} +}// L27 } @@ -3079,21 +3080,21 @@ void (__open_new_terminal_2511) () { if (__static_condition_default_2513) { -{ +{// L25 { __shutdown_signal_2506 (30) ; // L26 } -} +}// L27 } } void (__run_2514) () { -{ +{// L30 { @@ -3105,26 +3106,26 @@ if (__static_condition_default_2513) { __open_new_terminal_2511 ( ) ; // L31 } } -} +}// L32 } void (__run_actions_2515) () { -{ +{// L35 { __run_2514 ( ) ; // L36 } -} +}// L37 } int (__main_2518) (int __argc_2516, char * (* (__argv_2517))) { -{ +{// L40 { @@ -3132,7 +3133,7 @@ int (__main_2518) (int __argc_2516, char * (* (__argv_2517))) { __run_actions_2515 ( ) ; // L41 return 0 ;// L42 } -} +}// L43 } diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/cf1f2ace391.desugared.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/cf1f2ace391.desugared.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/cf1f2ace391.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/cf1f2ace391.desugared.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/df7b6577c6a.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/df7b6577c6a.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/df7b6577c6a.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/df7b6577c6a.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/df7b6577c6a.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/df7b6577c6a.desugared.c index 24eda0a3..30aa9fa4 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/df7b6577c6a.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/df7b6577c6a.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -1347,7 +1348,7 @@ int (__main_1095) (int __argc_1092, char * (* (__argv_1093))) { if (__static_condition_default_1098) { -{ +{// L4 { @@ -1358,30 +1359,30 @@ if ( __n_1094 < 0 )// L7 { if (__static_condition_default_1099) { -{ +{// L7 { __printf_421 ("can't get groups") ; // L9 } -} +}// L13 } if (__static_condition_default_1100) { -{ +{// L7 { __static_type_error("invalid type found in return expression"); } -} +}// L13 } } return 0 ;// L14 } -} +}// L15 } @@ -1390,7 +1391,7 @@ int (__main_1096) (int __argc_1092, char * (* (__argv_1093))) { if (__static_condition_default_1101) { -{ +{// L4 { @@ -1401,30 +1402,30 @@ if ( __n_1094 < 0 )// L7 { if (__static_condition_default_1102) { -{ +{// L7 { __printf_421 ("can't get groups") ; // L9 } -} +}// L13 } if (__static_condition_default_1103) { -{ +{// L7 { __static_type_error("invalid type found in return expression"); } -} +}// L13 } } return 0 ;// L14 } -} +}// L15 } @@ -1433,7 +1434,7 @@ int (__main_1097) (int __argc_1092, char * (* (__argv_1093))) { if (__static_condition_default_1104) { -{ +{// L4 { @@ -1444,30 +1445,30 @@ if ( __n_1094 < 0 )// L7 { if (__static_condition_default_1105) { -{ +{// L7 { __static_type_error("type error") ; // L9 } -} +}// L13 } if (__static_condition_default_1106) { -{ +{// L7 { __static_type_error("invalid type found in return expression"); } -} +}// L13 } } return 0 ;// L14 } -} +}// L15 } diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/df7b6577c6a.desugared.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/df7b6577c6a.desugared.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/df7b6577c6a.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/df7b6577c6a.desugared.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.clangres index 8629f8de..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.clangres @@ -1,5 +1 @@ -In file included from :344: -:1:8: error: 'defined' cannot be used as a macro name -#undef defined - ^ -1 error generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.c index da80b0b2..4bfcf936 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -25,13 +26,14 @@ extern const bool __static_condition_default_1089; extern const bool __static_condition_default_510; extern const bool __static_condition_default_402; extern const bool __static_condition_default_521; +extern const bool __static_condition_default_2047; extern const bool __static_condition_default_1027; -extern const bool __static_condition_default_1789; extern const bool __static_condition_default_493; extern const bool __static_condition_default_957; extern const bool __static_condition_default_1498; extern const bool __static_condition_default_683; extern const bool __static_condition_default_875; +extern const bool __static_condition_default_2049; extern const bool __static_condition_default_250; extern const bool __static_condition_default_373; extern const bool __static_condition_default_347; @@ -60,20 +62,18 @@ extern const bool __static_condition_default_229; extern const bool __static_condition_default_1564; extern const bool __static_condition_default_1749; extern const bool __static_condition_default_271; -extern const bool __static_condition_default_2049; extern const bool __static_condition_default_788; extern const bool __static_condition_default_955; -extern const bool __static_condition_default_1791; extern const bool __static_condition_default_1391; extern const bool __static_condition_default_817; extern const bool __static_condition_default_258; extern const bool __static_condition_default_709; +extern const bool __static_condition_default_2050; +extern const bool __static_condition_default_1773; extern const bool __static_condition_default_1073; extern const bool __static_condition_default_756; -extern const bool __static_condition_default_2047; extern const bool __static_condition_default_751; extern const bool __static_condition_default_692; -extern const bool __static_condition_default_1808; extern const bool __static_condition_default_700; extern const bool __static_condition_default_1485; extern const bool __static_condition_default_549; @@ -94,7 +94,6 @@ extern const bool __static_condition_default_345; extern const bool __static_condition_default_907; extern const bool __static_condition_default_317; extern const bool __static_condition_default_684; -extern const bool __static_condition_default_1774; extern const bool __static_condition_default_365; extern const bool __static_condition_default_341; extern const bool __static_condition_default_1436; @@ -105,13 +104,13 @@ extern const bool __static_condition_default_244; extern const bool __static_condition_default_852; extern const bool __static_condition_default_858; extern const bool __static_condition_default_539; +extern const bool __static_condition_default_1816; extern const bool __static_condition_default_274; extern const bool __static_condition_default_246; extern const bool __static_condition_default_1066; extern const bool __static_condition_default_1065; extern const bool __static_condition_default_1409; extern const bool __static_condition_default_313; -extern const bool __static_condition_default_2048; extern const bool __static_condition_default_878; extern const bool __static_condition_default_210; extern const bool __static_condition_default_862; @@ -120,6 +119,7 @@ extern const bool __static_condition_default_938; extern const bool __static_condition_default_257; extern const bool __static_condition_default_637; extern const bool __static_condition_default_363; +extern const bool __static_condition_default_2046; extern const bool __static_condition_default_759; extern const bool __static_condition_default_1424; extern const bool __static_condition_default_280; @@ -129,6 +129,7 @@ extern const bool __static_condition_default_1753; extern const bool __static_condition_default_797; extern const bool __static_condition_default_259; extern const bool __static_condition_default_746; +extern const bool __static_condition_default_2045; extern const bool __static_condition_default_290; extern const bool __static_condition_default_471; extern const bool __static_condition_default_585; @@ -140,11 +141,9 @@ extern const bool __static_condition_default_883; extern const bool __static_condition_default_761; extern const bool __static_condition_default_894; extern const bool __static_condition_default_1022; -extern const bool __static_condition_default_1785; extern const bool __static_condition_default_813; extern const bool __static_condition_default_658; extern const bool __static_condition_default_781; -extern const bool __static_condition_default_2039; extern const bool __static_condition_default_638; extern const bool __static_condition_default_978; extern const bool __static_condition_default_619; @@ -165,34 +164,31 @@ extern const bool __static_condition_default_499; extern const bool __static_condition_default_123; extern const bool __static_condition_default_408; extern const bool __static_condition_default_523; -extern const bool __static_condition_default_1816; extern const bool __static_condition_default_543; extern const bool __static_condition_default_1043; -extern const bool __static_condition_default_1814; +extern const bool __static_condition_default_2041; extern const bool __static_condition_default_559; extern const bool __static_condition_default_1381; extern const bool __static_condition_default_1453; -extern const bool __static_condition_default_1773; extern const bool __static_condition_default_299; extern const bool __static_condition_default_636; -extern const bool __static_condition_default_2058; extern const bool __static_condition_default_382; -extern const bool __static_condition_default_2050; +extern const bool __static_condition_default_1808; extern const bool __static_condition_default_645; extern const bool __static_condition_default_757; extern const bool __static_condition_default_891; extern const bool __static_condition_default_1385; extern const bool __static_condition_default_169; extern const bool __static_condition_default_511; -extern const bool __static_condition_default_1944; +extern const bool __static_condition_default_1789; extern const bool __static_condition_default_417; extern const bool __static_condition_default_735; extern const bool __static_condition_default_255; -extern const bool __static_condition_default_2041; extern const bool __static_condition_default_1345; extern const bool __static_condition_default_809; extern const bool __static_condition_default_1388; extern const bool __static_condition_default_1754; +extern const bool __static_condition_default_1775; extern const bool __static_condition_default_991; extern const bool __static_condition_default_1373; extern const bool __static_condition_default_553; @@ -200,6 +196,7 @@ extern const bool __static_condition_default_1398; extern const bool __static_condition_default_708; extern const bool __static_condition_default_597; extern const bool __static_condition_default_1459; +extern const bool __static_condition_default_1814; extern const bool __static_condition_default_284; extern const bool __static_condition_default_431; extern const bool __static_condition_default_801; @@ -207,11 +204,14 @@ extern const bool __static_condition_default_963; extern const bool __static_condition_default_842; extern const bool __static_condition_default_241; extern const bool __static_condition_default_560; +extern const bool __static_condition_default_1791; +extern const bool __static_condition_default_1944; extern const bool __static_condition_default_293; extern const bool __static_condition_default_337; extern const bool __static_condition_default_590; extern const bool __static_condition_default_550; extern const bool __static_condition_default_769; +extern const bool __static_condition_default_1785; extern const bool __static_condition_default_267; extern const bool __static_condition_default_204; extern const bool __static_condition_default_819; @@ -229,6 +229,7 @@ extern const bool __static_condition_default_583; extern const bool __static_condition_default_1552; extern const bool __static_condition_default_803; extern const bool __static_condition_default_380; +extern const bool __static_condition_default_1810; extern const bool __static_condition_default_760; extern const bool __static_condition_default_53; extern const bool __static_condition_default_486; @@ -236,6 +237,7 @@ extern const bool __static_condition_default_668; extern const bool __static_condition_default_201; extern const bool __static_condition_default_625; extern const bool __static_condition_default_887; +extern const bool __static_condition_default_2040; extern const bool __static_condition_default_1377; extern const bool __static_condition_default_1402; extern const bool __static_condition_default_173; @@ -245,13 +247,13 @@ extern const bool __static_condition_default_288; extern const bool __static_condition_default_369; extern const bool __static_condition_default_1090; extern const bool __static_condition_default_1428; -extern const bool __static_condition_default_1787; extern const bool __static_condition_default_721; extern const bool __static_condition_default_1165; extern const bool __static_condition_default_677; extern const bool __static_condition_default_1005; extern const bool __static_condition_default_872; extern const bool __static_condition_default_1051; +extern const bool __static_condition_default_2039; extern const bool __static_condition_default_1416; extern const bool __static_condition_default_1432; extern const bool __static_condition_default_670; @@ -265,22 +267,23 @@ extern const bool __static_condition_default_1080; extern const bool __static_condition_default_1532; extern const bool __static_condition_default_529; extern const bool __static_condition_default_836; -extern const bool __static_condition_default_2057; extern const bool __static_condition_default_1091; +extern const bool __static_condition_default_1787; extern const bool __static_condition_default_248; extern const bool __static_condition_default_249; extern const bool __static_condition_default_552; extern const bool __static_condition_default_780; extern const bool __static_condition_default_834; extern const bool __static_condition_default_686; +extern const bool __static_condition_default_1774; extern const bool __static_condition_default_182; extern const bool __static_condition_default_602; extern const bool __static_condition_default_1489; extern const bool __static_condition_default_542; extern const bool __static_condition_default_745; extern const bool __static_condition_default_956; -extern const bool __static_condition_default_2056; extern const bool __static_condition_default_823; +extern const bool __static_condition_default_2048; extern const bool __static_condition_default_264; extern const bool __static_condition_default_848; extern const bool __static_condition_default_488; @@ -290,14 +293,13 @@ extern const bool __static_condition_default_438; extern const bool __static_condition_default_1007; extern const bool __static_condition_default_1028; extern const bool __static_condition_default_793; -extern const bool __static_condition_default_1775; extern const bool __static_condition_default_395; +extern const bool __static_condition_default_2057; extern const bool __static_condition_default_864; extern const bool __static_condition_default_967; extern const bool __static_condition_default_544; extern const bool __static_condition_default_1516; extern const bool __static_condition_default_1152; -extern const bool __static_condition_default_1810; extern const bool __static_condition_default_503; extern const bool __static_condition_default_536; extern const bool __static_condition_default_473; @@ -308,6 +310,7 @@ extern const bool __static_condition_default_825; extern const bool __static_condition_default_650; extern const bool __static_condition_default_1353; extern const bool __static_condition_default_455; +extern const bool __static_condition_default_1776; extern const bool __static_condition_default_646; extern const bool __static_condition_default_1072; extern const bool __static_condition_default_217; @@ -319,21 +322,19 @@ extern const bool __static_condition_default_331; extern const bool __static_condition_default_275; extern const bool __static_condition_default_315; extern const bool __static_condition_default_187; -extern const bool __static_condition_default_2045; -extern const bool __static_condition_default_1776; extern const bool __static_condition_default_1475; extern const bool __static_condition_default_76; extern const bool __static_condition_default_1361; extern const bool __static_condition_default_1395; extern const bool __static_condition_default_573; extern const bool __static_condition_default_792; +extern const bool __static_condition_default_2056; extern const bool __static_condition_default_608; extern const bool __static_condition_default_633; extern const bool __static_condition_default_747; extern const bool __static_condition_default_388; extern const bool __static_condition_default_715; extern const bool __static_condition_default_1009; -extern const bool __static_condition_default_2040; extern const bool __static_condition_default_253; extern const bool __static_condition_default_512; extern const bool __static_condition_default_1081; @@ -347,9 +348,9 @@ extern const bool __static_condition_default_2051; extern const bool __static_condition_default_238; extern const bool __static_condition_default_1057; extern const bool __static_condition_default_1058; +extern const bool __static_condition_default_2058; extern const bool __static_condition_default_432; extern const bool __static_condition_default_564; -extern const bool __static_condition_default_2046; extern const bool __static_condition_default_1042; extern const bool __static_condition_default_1365; void __static_initializer_default() { @@ -2363,14 +2364,14 @@ static __inline unsigned int (____bswap_32_1158) (unsigned int ____bsx_1157) { if (__static_condition_default_1159) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -2379,14 +2380,14 @@ static __inline ____uint64_t_13 (____bswap_64_1162) (____uint64_t_13 ____bsx_1 if (__static_condition_default_1164) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2395,14 +2396,14 @@ static __inline ____uint64_t_1112 (____bswap_64_1163) (____uint64_t_1112 ____b if (__static_condition_default_1165) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2607,14 +2608,14 @@ static __inline unsigned int (____bswap_32_1452) (unsigned int ____bsx_1451) { if (__static_condition_default_1453) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -2623,14 +2624,14 @@ static __inline ____uint64_t_13 (____bswap_64_1456) (____uint64_t_13 ____bsx_1 if (__static_condition_default_1458) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2639,14 +2640,14 @@ static __inline ____uint64_t_1275 (____bswap_64_1457) (____uint64_t_1275 ____b if (__static_condition_default_1459) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2874,7 +2875,7 @@ void (__copySubFile_2038) (int __src_2036, int __dst_2037) { if (__static_condition_default_2039) { -{ +{// L6 { @@ -2886,7 +2887,7 @@ if (__static_condition_default_2041) { __static_type_error("type error") ; // L7 } } -} +}// L8 } @@ -2895,7 +2896,7 @@ void (__copyFile_2044) () { if (__static_condition_default_2045) { -{ +{// L13 { @@ -2923,7 +2924,7 @@ if (__static_condition_default_2051) { __static_type_error("type error") ; // L18 } } -} +}// L19 } @@ -2932,14 +2933,14 @@ int (__main_2054) (int __argc_2052, char * (* (__argv_2053))) { if (__static_condition_default_2056) { -{ +{// L23 { return 0 ;// L27 } -} +}// L28 } @@ -2948,7 +2949,7 @@ int (__main_2055) (int __argc_2052, char * (* (__argv_2053))) { if (__static_condition_default_2057) { -{ +{// L23 { @@ -2956,7 +2957,7 @@ if (__static_condition_default_2057) { __copyFile_2044 ( ) ; // L25 return 0 ;// L27 } -} +}// L28 } diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.clangres index 6d2d91f3..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.clangres @@ -1,7 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.c:2920:2: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] - __copySubFile_2038 ( __src_2042 , __dst_2043 ) ; // L18 - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.c:2920:2: warning: 2nd function call argument is an uninitialized value [core.CallAndMessage] - __copySubFile_2038 ( __src_2042 , __dst_2043 ) ; // L18 - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -2 warnings generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.clangres index 4449e9e7..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.clangres @@ -1,7 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.c:26:3: warning: Value stored to 'buf' is never read [deadcode.DeadStores] - buf = malloc(bufsize); - ^ ~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.c:34:10: warning: Potential leak of memory pointed to by 'buf' [unix.Malloc] - return 0; - ^ -2 warnings generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c b/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c index 9bd7ef8d..c177a3be 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -9,69 +10,69 @@ void __static_initializer_default(); extern const bool __static_condition_default_237; extern const bool __static_condition_default_255; +extern const bool __static_condition_default_971; extern const bool __static_condition_default_67; -extern const bool __static_condition_default_623; extern const bool __static_condition_default_736; -extern const bool __static_condition_default_973; +extern const bool __static_condition_default_623; extern const bool __static_condition_default_270; extern const bool __static_condition_default_579; extern const bool __static_condition_default_240; -extern const bool __static_condition_default_974; +extern const bool __static_condition_default_594; extern const bool __static_condition_default_246; -extern const bool __static_condition_default_978; extern const bool __static_condition_default_264; extern const bool __static_condition_default_361; extern const bool __static_condition_default_395; extern const bool __static_condition_default_249; -extern const bool __static_condition_default_977; extern const bool __static_condition_default_282; extern const bool __static_condition_default_423; extern const bool __static_condition_default_234; +extern const bool __static_condition_default_849; +extern const bool __static_condition_default_973; extern const bool __static_condition_default_325; extern const bool __static_condition_default_378; extern const bool __static_condition_default_429; -extern const bool __static_condition_default_972; extern const bool __static_condition_default_267; extern const bool __static_condition_default_215; -extern const bool __static_condition_default_595; -extern const bool __static_condition_default_975; -extern const bool __static_condition_default_971; -extern const bool __static_condition_default_629; +extern const bool __static_condition_default_976; +extern const bool __static_condition_default_978; +extern const bool __static_condition_default_602; extern const bool __static_condition_default_414; extern const bool __static_condition_default_856; extern const bool __static_condition_default_420; +extern const bool __static_condition_default_970; +extern const bool __static_condition_default_979; extern const bool __static_condition_default_276; extern const bool __static_condition_default_296; extern const bool __static_condition_default_285; extern const bool __static_condition_default_302; extern const bool __static_condition_default_279; -extern const bool __static_condition_default_979; extern const bool __static_condition_default_273; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_849; -extern const bool __static_condition_default_604; extern const bool __static_condition_default_243; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_629; extern const bool __static_condition_default_261; +extern const bool __static_condition_default_974; extern const bool __static_condition_default_308; -extern const bool __static_condition_default_594; extern const bool __static_condition_default_432; extern const bool __static_condition_default_426; -extern const bool __static_condition_default_621; extern const bool __static_condition_default_293; extern const bool __static_condition_default_299; extern const bool __static_condition_default_252; -extern const bool __static_condition_default_969; extern const bool __static_condition_default_60; +extern const bool __static_condition_default_595; extern const bool __static_condition_default_349; extern const bool __static_condition_default_352; extern const bool __static_condition_default_394; -extern const bool __static_condition_default_627; -extern const bool __static_condition_default_976; extern const bool __static_condition_default_305; extern const bool __static_condition_default_341; extern const bool __static_condition_default_581; +extern const bool __static_condition_default_972; +extern const bool __static_condition_default_969; +extern const bool __static_condition_default_975; extern const bool __static_condition_default_417; -extern const bool __static_condition_default_970; +extern const bool __static_condition_default_627; +extern const bool __static_condition_default_604; +extern const bool __static_condition_default_977; extern const bool __static_condition_default_258; extern const bool __static_condition_default_288; extern const bool __static_condition_default_379; @@ -1109,14 +1110,14 @@ static __inline unsigned int (____bswap_32_66) (unsigned int ____bsx_65) { if (__static_condition_default_67) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -1125,14 +1126,14 @@ static __inline ____uint64_t_20 (____bswap_64_69) (____uint64_t_20 ____bsx_68) if (__static_condition_default_67) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -1305,14 +1306,14 @@ static __inline unsigned int (____bswap_32_324) (unsigned int ____bsx_323) { if (__static_condition_default_325) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -1321,14 +1322,14 @@ static __inline ____uint64_t_175 (____bswap_64_327) (____uint64_t_175 ____bsx_ if (__static_condition_default_325) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -1560,14 +1561,14 @@ static __inline unsigned int (____bswap_32_855) (unsigned int ____bsx_854) { if (__static_condition_default_856) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -1576,14 +1577,14 @@ static __inline ____uint64_t_809 (____bswap_64_858) (____uint64_t_809 ____bsx_ if (__static_condition_default_856) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -1648,7 +1649,7 @@ int (__main_968) (int __argc_962, char * (* (__argv_963))) { { if (__static_condition_default_969) { -{ +{// L5 { @@ -1665,7 +1666,7 @@ __static_type_error("invalid type found in while statement"); if ( __cmd_967 == 8 )// L22 { -{ +{// L22 { @@ -1675,7 +1676,7 @@ if ( __cmd_967 == 8 )// L22 goto all_done_0; } } -} +}// L24 } if (__static_condition_default_970) { __buf_964 = malloc ( __bufsize_965 ) ; // L26 @@ -1692,7 +1693,7 @@ __static_type_error("type error") ; // L26 if ( __buf_964 )// L30 { -{ +{// L30 { @@ -1704,19 +1705,19 @@ if (__static_condition_default_974) { __static_type_error("type error") ; // L31 } } -} +}// L32 } } return 0 ;// L34 } -} +}// L35 } if (__static_condition_default_975) { -{ +{// L5 { @@ -1733,7 +1734,7 @@ __static_type_error("invalid type found in while statement"); if ( __cmd_967 == 8 )// L22 { -{ +{// L22 { @@ -1743,7 +1744,7 @@ if ( __cmd_967 == 8 )// L22 goto all_done_1; } } -} +}// L24 } if (__static_condition_default_976) { __buf_964 = malloc ( __bufsize_965 ) ; // L26 @@ -1760,7 +1761,7 @@ __static_type_error("type error") ; // L26 return 0 ;// L34 } } -} +}// L35 } diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.clangres b/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.clangres index 876241c6..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.clangres @@ -1,22 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c:1686:5: warning: Potential leak of memory pointed to by '__buf_964' [unix.Malloc] -if (__static_condition_default_972) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c:1692:7: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] -if ( __buf_964 )// L30 - ^~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c:1703:5: warning: Potential leak of memory pointed to by '__buf_964' [unix.Malloc] -if (__static_condition_default_974) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c:1749:2: warning: Value stored to '__buf_964' is never read [deadcode.DeadStores] - __buf_964 = malloc ( __bufsize_965 ) ; // L26 - ^ ~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c:1752:2: warning: Value stored to '__buf_964' is never read [deadcode.DeadStores] - __buf_964 = malloc ( __bufsize_965 ) ; // L26 - ^ ~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c:1754:5: warning: Potential leak of memory pointed to by '__buf_964' [unix.Malloc] -if (__static_condition_default_978) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c:1754:5: warning: Potential leak of memory pointed to by '__buf_964' [unix.Malloc] -if (__static_condition_default_978) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -7 warnings generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.inferres b/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.inferres index 203289d2..d7f7eaf0 100644 --- a/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.inferres +++ b/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.inferres @@ -1,21 +1,21 @@ -BUSYBOX/eef2317b9f5.desugared.c:1749: error: Memory Leak - Memory dynamically allocated by `malloc` on line 1749 is not freed after the last access at line 1749, column 2. - 1747. } - 1748. if (__static_condition_default_976) { - 1749. __buf_964 = malloc ( __bufsize_965 ) ; // L26 +BUSYBOX/eef2317b9f5.desugared.c:1750: error: Memory Leak + Memory dynamically allocated by `malloc` on line 1750 is not freed after the last access at line 1750, column 2. + 1748. } + 1749. if (__static_condition_default_976) { + 1750. __buf_964 = malloc ( __bufsize_965 ) ; // L26 ^ - 1750. } - 1751. if (__static_condition_default_977) { + 1751. } + 1752. if (__static_condition_default_977) { -BUSYBOX/eef2317b9f5.desugared.c:1752: error: Memory Leak - Memory dynamically allocated by `malloc` on line 1752 is not freed after the last access at line 1752, column 2. - 1750. } - 1751. if (__static_condition_default_977) { - 1752. __buf_964 = malloc ( __bufsize_965 ) ; // L26 +BUSYBOX/eef2317b9f5.desugared.c:1753: error: Memory Leak + Memory dynamically allocated by `malloc` on line 1753 is not freed after the last access at line 1753, column 2. + 1751. } + 1752. if (__static_condition_default_977) { + 1753. __buf_964 = malloc ( __bufsize_965 ) ; // L26 ^ - 1753. } - 1754. if (__static_condition_default_978) { + 1754. } + 1755. if (__static_condition_default_978) { Found 2 issues diff --git a/fonda/cpp_testsuite/varBugs/LINUX-0988c4c7fb5.report b/fonda/cpp_testsuite/varBugs/LINUX-0988c4c7fb5.report index 5d647589..a357b0db 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-0988c4c7fb5.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-0988c4c7fb5.report @@ -6,9 +6,4 @@ Macros: [-DCONFIG_VLAN_8021Q=1 -UCONFIG_RPS ] [-UCONFIG_VLAN_8021Q -DCONFIG_RPS=1 ] [-DCONFIG_VLAN_8021Q=1 -DCONFIG_RPS=1 ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/LINUX-0dc77b6dabe.report b/fonda/cpp_testsuite/varBugs/LINUX-0dc77b6dabe.report index 290b9b52..f60b2333 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-0dc77b6dabe.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-0dc77b6dabe.report @@ -20,20 +20,4 @@ Macros: [-DCONFIG_ANDROID=1 -UCONFIG_SYSFS -DCONFIG_EXTCON=1 -Ddefined=1 ] [-UCONFIG_ANDROID -DCONFIG_SYSFS=1 -DCONFIG_EXTCON=1 -Ddefined=1 ] [-DCONFIG_ANDROID=1 -DCONFIG_SYSFS=1 -DCONFIG_EXTCON=1 -Ddefined=1 ] -Desugared Clang Results: -Desugared Infer Results: - -LINUX/0dc77b6dabe.desugared.c:303: error: Memory Leak - Memory dynamically allocated by `malloc`, indirectly via call to `__extcon_class_init_34()` on line 294 is not freed after the last access at line 303, column 1. - 301. - 302. } - 303. } - ^ - 304. - - -Found 1 issue - Issue Type(ISSUED_TYPE_ID): # - Memory Leak(MEMORY_LEAK_C): 1 -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/LINUX-0f8f8094d28.report b/fonda/cpp_testsuite/varBugs/LINUX-0f8f8094d28.report index b57ce770..f0420f9b 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-0f8f8094d28.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-0f8f8094d28.report @@ -30,9 +30,4 @@ Macros: [-UCONFIG_FORCE_MAX_ZONEORDER -Ddefined=1 -DCONFIG_SLAB=1 -UCONFIG_SLOB -DCONFIG_LOCKDEP=1 ] [-DCONFIG_FORCE_MAX_ZONEORDER=1 -Ddefined=1 -DCONFIG_SLAB=1 -UCONFIG_SLOB -DCONFIG_LOCKDEP=1 ] [-UCONFIG_FORCE_MAX_ZONEORDER -Udefined -UCONFIG_SLAB -DCONFIG_SLOB=1 -DCONFIG_LOCKDEP=1 ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/LINUX-1c17e4d4437.report b/fonda/cpp_testsuite/varBugs/LINUX-1c17e4d4437.report index 0b2ef632..d07128b0 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-1c17e4d4437.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-1c17e4d4437.report @@ -6,9 +6,4 @@ Macros: [-DCONFIG_RCU_CPU_STALL_INFO=1 -UCONFIG_RCU_FAST_NO_HZ ] [-UCONFIG_RCU_CPU_STALL_INFO -DCONFIG_RCU_FAST_NO_HZ=1 ] [-DCONFIG_RCU_CPU_STALL_INFO=1 -DCONFIG_RCU_FAST_NO_HZ=1 ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/LINUX-1f758a4341a.report b/fonda/cpp_testsuite/varBugs/LINUX-1f758a4341a.report index b5cf2cfa..323ececb 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-1f758a4341a.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-1f758a4341a.report @@ -6,9 +6,4 @@ Macros: [-DCONFIG_ZONE_DMA=1 -UCONFIG_EP93XX_ETH ] [-UCONFIG_ZONE_DMA -DCONFIG_EP93XX_ETH=1 ] [-DCONFIG_ZONE_DMA=1 -DCONFIG_EP93XX_ETH=1 ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/LINUX-208d89843b7.report b/fonda/cpp_testsuite/varBugs/LINUX-208d89843b7.report index d060ddf7..73e7577b 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-208d89843b7.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-208d89843b7.report @@ -2,9 +2,4 @@ LINUX 208d89843b7.c Macros: CONFIG_HIGHMEM [-UCONFIG_HIGHMEM ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/LINUX-218ad12f42e.report b/fonda/cpp_testsuite/varBugs/LINUX-218ad12f42e.report index c77ef388..62c39cf7 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-218ad12f42e.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-218ad12f42e.report @@ -2,29 +2,4 @@ LINUX 218ad12f42e.c Macros: CONFIG_NUMA [-UCONFIG_NUMA ] -Desugared Clang Results: -Desugared Infer Results: - -LINUX/218ad12f42e.desugared.c:63: error: Memory Leak - Memory dynamically allocated by `malloc` on line 42 is not freed after the last access at line 63, column 1. - 61. - 62. - 63. } - ^ - 64. void (__inet_ehash_locks_free_9) () { - 65. - -LINUX/218ad12f42e.desugared.c:123: error: Memory Leak - Memory dynamically allocated by `malloc`, indirectly via call to `__inet_ehash_locks_alloc_6()` on line 116 is not freed after the last access at line 123, column 1. - 121. - 122. - 123. } - ^ - 124. - - -Found 2 issues - Issue Type(ISSUED_TYPE_ID): # - Memory Leak(MEMORY_LEAK_C): 2 -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/LINUX-221ac329e93.report b/fonda/cpp_testsuite/varBugs/LINUX-221ac329e93.report index 5946d01b..79d4c64f 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-221ac329e93.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-221ac329e93.report @@ -2,48 +2,4 @@ LINUX 221ac329e93.c Macros: CONFIG_KPROBES [-UCONFIG_KPROBES ] -Desugared Clang Results: -Desugared Infer Results: - -LINUX/221ac329e93.desugared.c:4742: error: Memory Leak - Memory dynamically allocated by `malloc` on line 4681 is not freed after the last access at line 4742, column 1. - 4740. - 4741. } - 4742. } - ^ - 4743. int (__main_3993) (int __argc_3990, char * (* (__argv_3991))) { - 4744. - -LINUX/221ac329e93.desugared.c:4742: error: Memory Leak - Memory dynamically allocated by `malloc` on line 4691 is not freed after the last access at line 4742, column 1. - 4740. - 4741. } - 4742. } - ^ - 4743. int (__main_3993) (int __argc_3990, char * (* (__argv_3991))) { - 4744. - -LINUX/221ac329e93.desugared.c:4742: error: Memory Leak - Memory dynamically allocated by `malloc` on line 4701 is not freed after the last access at line 4742, column 1. - 4740. - 4741. } - 4742. } - ^ - 4743. int (__main_3993) (int __argc_3990, char * (* (__argv_3991))) { - 4744. - -LINUX/221ac329e93.desugared.c:4742: error: Memory Leak - Memory dynamically allocated by `malloc` on line 4711 is not freed after the last access at line 4742, column 1. - 4740. - 4741. } - 4742. } - ^ - 4743. int (__main_3993) (int __argc_3990, char * (* (__argv_3991))) { - 4744. - - -Found 4 issues - Issue Type(ISSUED_TYPE_ID): # - Memory Leak(MEMORY_LEAK_C): 4 -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/LINUX-242f1a34377.report b/fonda/cpp_testsuite/varBugs/LINUX-242f1a34377.report index 63dccd50..6c9358b7 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-242f1a34377.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-242f1a34377.report @@ -6,9 +6,4 @@ Macros: [-DCONFIG_CRYPTO_BLKCIPHER=1 -UCONFIG_CRYPTO_TEST ] [-UCONFIG_CRYPTO_BLKCIPHER -DCONFIG_CRYPTO_TEST=1 ] [-DCONFIG_CRYPTO_BLKCIPHER=1 -DCONFIG_CRYPTO_TEST=1 ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/LINUX-2f02c15a5d9.report b/fonda/cpp_testsuite/varBugs/LINUX-2f02c15a5d9.report index d96ce19a..b4d9742f 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-2f02c15a5d9.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-2f02c15a5d9.report @@ -6,9 +6,4 @@ Macros: [-DCONFIG_SSB_DRIVER_EXTIF=1 -UCONFIG_BCM47XX ] [-UCONFIG_SSB_DRIVER_EXTIF -DCONFIG_BCM47XX=1 ] [-DCONFIG_SSB_DRIVER_EXTIF=1 -DCONFIG_BCM47XX=1 ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/LINUX-30e053248da.report b/fonda/cpp_testsuite/varBugs/LINUX-30e053248da.report index 54b4c8db..de2ed1ad 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-30e053248da.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-30e053248da.report @@ -2,30 +2,6 @@ LINUX 30e053248da.c Macros: CONFIG_SECURITY [-UCONFIG_SECURITY ] -clang :: 49 :: Line:31 - Assigned value is garbage or undefined [core.uninitialized.Assign] -clang :: 50 :: Line:31 - Value stored to 'x' during its initialization is never read [deadcode.DeadStores] -infer :: 51 :: Line:41 +infer :: 4 :: Line:41 Uninitialized Value -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.desugared.c:111:7: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] -if ( __error_8 )// L26 - ^~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.desugared.c:124:1: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] -int __x_9= * __length_7 ;// L31 -^~~~~~~~~~ ~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.desugared.c:124:6: warning: Value stored to '__x_9' during its initialization is never read [deadcode.DeadStores] -int __x_9= * __length_7 ;// L31 - ^~~~~ ~~~~~~~~~~~~~ -3 warnings generated. -Desugared Infer Results: - - No issues found -Matches: - 50 has a match! -Unmatched ids: - 49 -Matches: -Unmatched ids: - 51 +File Failed diff --git a/fonda/cpp_testsuite/varBugs/LINUX-36855dcfc98.report b/fonda/cpp_testsuite/varBugs/LINUX-36855dcfc98.report index 516a4b81..2c190650 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-36855dcfc98.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-36855dcfc98.report @@ -2,18 +2,4 @@ LINUX 36855dcfc98.c Macros: CONFIG_BF60x [-UCONFIG_BF60x ] -clang :: 11 :: Line:6 - Value stored to 'wakeup' is never read [deadcode.DeadStores] -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/36855dcfc98.desugared.c:32:2: warning: Value stored to '__wakeup_0' is never read [deadcode.DeadStores] - __wakeup_0 = 0 ; // L6 - ^ ~ -1 warning generated. -Desugared Infer Results: - - No issues found -Matches: - 11 has a match! -Unmatched ids: - None! -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/LINUX-472a474c663.report b/fonda/cpp_testsuite/varBugs/LINUX-472a474c663.report index 396818c2..21bb59fb 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-472a474c663.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-472a474c663.report @@ -2,13 +2,4 @@ LINUX 472a474c663.c Macros: CONFIG_SMP [-UCONFIG_SMP ] -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/472a474c663.desugared.c:87:13: warning: Dereference of null pointer (loaded from variable '__ptr_3') [core.NullDereference] -* __ptr_3 = 'a' ; // L14 - ~~~~~~~ ^ -1 warning generated. -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/LINUX-51fd36f3fad.report b/fonda/cpp_testsuite/varBugs/LINUX-51fd36f3fad.report index 0169c37f..106598d3 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-51fd36f3fad.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-51fd36f3fad.report @@ -2,19 +2,4 @@ LINUX 51fd36f3fad.c Macros: CONFIG_64BIT [-UCONFIG_64BIT ] -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.c:216:1: warning: Undefined or garbage value returned to caller [core.uninitialized.UndefReturn] -return __tmp_38 ;// L45 -^~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.c:256:1: warning: Undefined or garbage value returned to caller [core.uninitialized.UndefReturn] -return __expires_47 ;// L60 -^~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.c:300:1: warning: Undefined or garbage value returned to caller [core.uninitialized.UndefReturn] -return __expires_47 ;// L60 -^~~~~~~~~~~~~~~~~~~~ -3 warnings generated. -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/LINUX-60e233a5660.report b/fonda/cpp_testsuite/varBugs/LINUX-60e233a5660.report index 2e19ebcc..a3ad05cc 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-60e233a5660.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-60e233a5660.report @@ -2,9 +2,4 @@ LINUX 60e233a5660.c Macros: defined [-Udefined ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/LINUX-6252547b8a7.report b/fonda/cpp_testsuite/varBugs/LINUX-6252547b8a7.report index d429f01e..1efffe0b 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-6252547b8a7.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-6252547b8a7.report @@ -5,56 +5,15 @@ Macros: CONFIG_OF_IRQ [-UCONFIG_TWL4030_CORE -UCONFIG_IRQ_DOMAIN -UCONFIG_OF_IRQ ] [-DCONFIG_TWL4030_CORE=1 -UCONFIG_IRQ_DOMAIN -UCONFIG_OF_IRQ ] -clang :: 31 :: Line:12 - Value stored to 'irq' during its initialization is never read [deadcode.DeadStores] -clang :: 32 :: Line:12 - Dereference of null pointer (loaded from variable 'ops') [core.NullDereference] -infer :: 33 :: Line:25 +infer :: 1 :: Line:25 Null Dereference [-UCONFIG_TWL4030_CORE -DCONFIG_IRQ_DOMAIN=1 -UCONFIG_OF_IRQ ] -clang :: 34 :: Line:12 - Value stored to 'irq' during its initialization is never read [deadcode.DeadStores] [-DCONFIG_TWL4030_CORE=1 -DCONFIG_IRQ_DOMAIN=1 -UCONFIG_OF_IRQ ] -clang :: 35 :: Line:12 - Value stored to 'irq' during its initialization is never read [deadcode.DeadStores] -clang :: 36 :: Line:12 - Dereference of null pointer (loaded from variable 'ops') [core.NullDereference] -infer :: 37 :: Line:25 +infer :: 2 :: Line:25 Null Dereference [-UCONFIG_TWL4030_CORE -UCONFIG_IRQ_DOMAIN -DCONFIG_OF_IRQ=1 ] [-DCONFIG_TWL4030_CORE=1 -UCONFIG_IRQ_DOMAIN -DCONFIG_OF_IRQ=1 ] -clang :: 38 :: Line:12 - Value stored to 'irq' during its initialization is never read [deadcode.DeadStores] [-UCONFIG_TWL4030_CORE -DCONFIG_IRQ_DOMAIN=1 -DCONFIG_OF_IRQ=1 ] -clang :: 39 :: Line:12 - Value stored to 'irq' during its initialization is never read [deadcode.DeadStores] [-DCONFIG_TWL4030_CORE=1 -DCONFIG_IRQ_DOMAIN=1 -DCONFIG_OF_IRQ=1 ] -clang :: 40 :: Line:12 - Value stored to 'irq' during its initialization is never read [deadcode.DeadStores] [-UCONFIG_TWL4030_CORE -UCONFIG_IRQ_DOMAIN -UCONFIG_OF_IRQ ] -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.desugared.c:49:6: warning: Value stored to '__irq_2' during its initialization is never read [deadcode.DeadStores] -int __irq_2= * __ops_1 ;// L12 - ^~~~~~~ ~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.desugared.c:49:15: warning: Dereference of null pointer (loaded from variable '__ops_1') [core.NullDereference] -int __irq_2= * __ops_1 ;// L12 - ^~~~~~~~~~ -2 warnings generated. -Desugared Infer Results: - - No issues found -Matches: - 31 has a match! - 32 has a match! - 34 has a match! - 35 has a match! - 36 has a match! - 38 has a match! - 39 has a match! - 40 has a match! -Unmatched ids: - None! -Matches: -Unmatched ids: - 33 - 37 +File Failed diff --git a/fonda/cpp_testsuite/varBugs/LINUX-63878acfafb.report b/fonda/cpp_testsuite/varBugs/LINUX-63878acfafb.report index 60e976f3..a4b402ad 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-63878acfafb.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-63878acfafb.report @@ -12,13 +12,4 @@ Macros: [-UCONFIG_ARCH_OMAP3 -DCONFIG_PM=1 -Ddefined=1 ] [-DCONFIG_ARCH_OMAP3=1 -DCONFIG_PM=1 -Ddefined=1 ] [-UCONFIG_ARCH_OMAP3 -UCONFIG_PM -Udefined ] -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.desugared.c:159:1: warning: Undefined or garbage value returned to caller [core.uninitialized.UndefReturn] -return __v_16 ;// L40 -^~~~~~~~~~~~~~ -1 warning generated. -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/LINUX-6515e48932c.report b/fonda/cpp_testsuite/varBugs/LINUX-6515e48932c.report index c565084e..f1b8ec6b 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-6515e48932c.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-6515e48932c.report @@ -6,9 +6,4 @@ Macros: [-Ddefined=1 -UCONFIG_MACH_OMAP_H4 ] [-Udefined -DCONFIG_MACH_OMAP_H4=1 ] [-Ddefined=1 -DCONFIG_MACH_OMAP_H4=1 ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/LINUX-657e9649e74.report b/fonda/cpp_testsuite/varBugs/LINUX-657e9649e74.report index a5b1bdf9..02c36959 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-657e9649e74.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-657e9649e74.report @@ -6,9 +6,4 @@ Macros: [-DCONFIG_PREEMPT=1 -UCONFIG_TCP_MD5SIG ] [-UCONFIG_PREEMPT -DCONFIG_TCP_MD5SIG=1 ] [-DCONFIG_PREEMPT=1 -DCONFIG_TCP_MD5SIG=1 ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/LINUX-66517915e09.report b/fonda/cpp_testsuite/varBugs/LINUX-66517915e09.report index 1f1310c6..5661fbc1 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-66517915e09.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-66517915e09.report @@ -11,85 +11,23 @@ Macros: [-DCONFIG_SND_FSI_AK4642=1 -DCONFIG_SND_FSI_DA7210=1 -UCONFIG_I2C -UCONFIG_SND_SOC_DA7210 -UCONFIG_SND_SOC_AK4642 ] [-UCONFIG_SND_FSI_AK4642 -UCONFIG_SND_FSI_DA7210 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -UCONFIG_SND_SOC_AK4642 ] [-DCONFIG_SND_FSI_AK4642=1 -UCONFIG_SND_FSI_DA7210 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -UCONFIG_SND_SOC_AK4642 ] -clang :: 13 :: Line:24 - Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-UCONFIG_SND_FSI_AK4642 -DCONFIG_SND_FSI_DA7210=1 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -UCONFIG_SND_SOC_AK4642 ] -clang :: 14 :: Line:16 - Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-DCONFIG_SND_FSI_AK4642=1 -DCONFIG_SND_FSI_DA7210=1 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -UCONFIG_SND_SOC_AK4642 ] -clang :: 15 :: Line:16 - Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] -clang :: 16 :: Line:24 - Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-UCONFIG_SND_FSI_AK4642 -UCONFIG_SND_FSI_DA7210 -UCONFIG_I2C -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] [-DCONFIG_SND_FSI_AK4642=1 -UCONFIG_SND_FSI_DA7210 -UCONFIG_I2C -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] [-UCONFIG_SND_FSI_AK4642 -DCONFIG_SND_FSI_DA7210=1 -UCONFIG_I2C -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] [-DCONFIG_SND_FSI_AK4642=1 -DCONFIG_SND_FSI_DA7210=1 -UCONFIG_I2C -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] [-UCONFIG_SND_FSI_AK4642 -UCONFIG_SND_FSI_DA7210 -DCONFIG_I2C=1 -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] -clang :: 17 :: Line:16 - Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-DCONFIG_SND_FSI_AK4642=1 -UCONFIG_SND_FSI_DA7210 -DCONFIG_I2C=1 -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] -clang :: 18 :: Line:16 - Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] -clang :: 19 :: Line:24 - Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-UCONFIG_SND_FSI_AK4642 -DCONFIG_SND_FSI_DA7210=1 -DCONFIG_I2C=1 -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] -clang :: 20 :: Line:16 - Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-DCONFIG_SND_FSI_AK4642=1 -DCONFIG_SND_FSI_DA7210=1 -DCONFIG_I2C=1 -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] -clang :: 21 :: Line:16 - Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] -clang :: 22 :: Line:24 - Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-UCONFIG_SND_FSI_AK4642 -UCONFIG_SND_FSI_DA7210 -UCONFIG_I2C -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] [-DCONFIG_SND_FSI_AK4642=1 -UCONFIG_SND_FSI_DA7210 -UCONFIG_I2C -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] [-UCONFIG_SND_FSI_AK4642 -DCONFIG_SND_FSI_DA7210=1 -UCONFIG_I2C -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] [-DCONFIG_SND_FSI_AK4642=1 -DCONFIG_SND_FSI_DA7210=1 -UCONFIG_I2C -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] [-UCONFIG_SND_FSI_AK4642 -UCONFIG_SND_FSI_DA7210 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] -clang :: 23 :: Line:24 - Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-DCONFIG_SND_FSI_AK4642=1 -UCONFIG_SND_FSI_DA7210 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] -clang :: 24 :: Line:24 - Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-UCONFIG_SND_FSI_AK4642 -DCONFIG_SND_FSI_DA7210=1 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] -clang :: 25 :: Line:16 - Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] -clang :: 26 :: Line:24 - Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-DCONFIG_SND_FSI_AK4642=1 -DCONFIG_SND_FSI_DA7210=1 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] -clang :: 27 :: Line:16 - Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] -clang :: 28 :: Line:24 - Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-UCONFIG_SND_FSI_AK4642 -UCONFIG_SND_FSI_DA7210 -UCONFIG_I2C -DCONFIG_SND_SOC_DA7210=1 -DCONFIG_SND_SOC_AK4642=1 ] -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.desugared.c:48:6: warning: Value stored to '__codec_hw_write_1' during its initialization is never read [deadcode.DeadStores] -int __codec_hw_write_1= __i2c_master_send_0 ;// L16 - ^~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.desugared.c:70:6: warning: Value stored to '__codec_hw_write_5' during its initialization is never read [deadcode.DeadStores] -int __codec_hw_write_5= __i2c_master_send_0 ;// L24 - ^~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~ -2 warnings generated. -Desugared Infer Results: - - No issues found -Matches: - 13 has a match! - 14 has a match! - 15 has a match! - 16 has a match! - 17 has a match! - 18 has a match! - 19 has a match! - 20 has a match! - 21 has a match! - 22 has a match! - 23 has a match! - 24 has a match! - 25 has a match! - 26 has a match! - 27 has a match! - 28 has a match! -Unmatched ids: - None! -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/LINUX-68bb91baa0.report b/fonda/cpp_testsuite/varBugs/LINUX-68bb91baa0.report index b934fb62..ef7779ec 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-68bb91baa0.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-68bb91baa0.report @@ -12,9 +12,4 @@ Macros: [-UCONFIG_I2C_DESIGNWARE_PLATFORM -DCONFIG_I2C_DESIGNWARE_PCI=1 -Ddefined=1 ] [-DCONFIG_I2C_DESIGNWARE_PLATFORM=1 -DCONFIG_I2C_DESIGNWARE_PCI=1 -Ddefined=1 ] [-UCONFIG_I2C_DESIGNWARE_PLATFORM -UCONFIG_I2C_DESIGNWARE_PCI -Udefined ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/LINUX-6e2b75740be.report b/fonda/cpp_testsuite/varBugs/LINUX-6e2b75740be.report index f9ff4c73..2ee84611 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-6e2b75740be.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-6e2b75740be.report @@ -2,28 +2,4 @@ LINUX 6e2b75740be.c Macros: defined [-Udefined ] -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.c:95:9: warning: Potential leak of memory pointed to by '__ptr_11' [unix.Malloc] -if ( ! __ptr_11 )// L39 - ^~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.c:121:10: warning: Value stored to '__dest_12' during its initialization is never read [deadcode.DeadStores] -void * (__dest_12)= ( __mod_9 [ 1 ] );// L46 - ^~~~~~~~~ ~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.c:146:1: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] -free (( __mod_9 [ 1 ] )) ; // L60 -^~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.c:153:1: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] -free (( __mod_9 [ 0 ] )) ; // L63 -^~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.c:177:1: warning: Attempt to free released memory [unix.Malloc] -free ( __hdr_8 ) ; // L67 -^~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.c:182:9: warning: Potential leak of memory pointed to by '__mod_9' [unix.Malloc] -return __err_10 ;// L69 - ^~~~~~~~ -6 warnings generated. -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/LINUX-76baeebf7df.report b/fonda/cpp_testsuite/varBugs/LINUX-76baeebf7df.report index 12b75c9c..4a27e912 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-76baeebf7df.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-76baeebf7df.report @@ -30,16 +30,4 @@ Macros: [-UCONFIG_X86_32 -DCONFIG_NUMA=1 -DCONFIG_DEBUG_PER_CPU_MAPS=1 -UCONFIG_PCI -DCONFIG_X86_64=1 ] [-DCONFIG_X86_32=1 -DCONFIG_NUMA=1 -DCONFIG_DEBUG_PER_CPU_MAPS=1 -UCONFIG_PCI -DCONFIG_X86_64=1 ] [-UCONFIG_X86_32 -UCONFIG_NUMA -UCONFIG_DEBUG_PER_CPU_MAPS -DCONFIG_PCI=1 -DCONFIG_X86_64=1 ] -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/76baeebf7df.desugared.c:1629:31: warning: Dereference of undefined pointer value (loaded from variable '__mask_1132') [core.NullDereference] - __printf_421 ("mask: %ld\n",* __mask_1132 ) ; // L137 - ^~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/76baeebf7df.desugared.c:1632:31: warning: Dereference of undefined pointer value (loaded from variable '__mask_1134') [core.NullDereference] - __printf_421 ("mask: %ld\n",* __mask_1134 ) ; // L137 - ^~~~~~~~~~~~~~ -2 warnings generated. -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/LINUX-7acf6cd80b2.report b/fonda/cpp_testsuite/varBugs/LINUX-7acf6cd80b2.report index b1a31a61..eb79391b 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-7acf6cd80b2.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-7acf6cd80b2.report @@ -4,48 +4,10 @@ Macros: CONFIG_UNIX98_PTYS [-UCONFIG_DEVPTS_MULTIPLE_INSTANCES -UCONFIG_UNIX98_PTYS ] [-DCONFIG_DEVPTS_MULTIPLE_INSTANCES=1 -UCONFIG_UNIX98_PTYS ] -clang :: 54 :: Line:8 - Value stored to 'x' during its initialization is never read [deadcode.DeadStores] [-UCONFIG_DEVPTS_MULTIPLE_INSTANCES -DCONFIG_UNIX98_PTYS=1 ] -clang :: 55 :: Line:39 - Value stored to 'driver_data' is never read [deadcode.DeadStores] -clang :: 56 :: Line:44 - 1st function call argument is an uninitialized value [core.CallAndMessage] -infer :: 57 :: Line:44 +infer :: 5 :: Line:44 Uninitialized Value [-DCONFIG_DEVPTS_MULTIPLE_INSTANCES=1 -DCONFIG_UNIX98_PTYS=1 ] -clang :: 58 :: Line:8 - Value stored to 'x' during its initialization is never read [deadcode.DeadStores] -clang :: 59 :: Line:39 - Value stored to 'driver_data' is never read [deadcode.DeadStores] -clang :: 60 :: Line:44 - 1st function call argument is an uninitialized value [core.CallAndMessage] -infer :: 61 :: Line:44 +infer :: 6 :: Line:44 Uninitialized Value -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.desugared.c:77:6: warning: Value stored to '__x_3' during its initialization is never read [deadcode.DeadStores] -int __x_3= * __inode_2 ;// L8 - ^~~~~ ~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.desugared.c:170:2: warning: Value stored to '__driver_data_15' is never read [deadcode.DeadStores] - __driver_data_15 = & __some_int_1 ; // L39 - ^ ~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.desugared.c:175:2: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] - __tty_release_14 ( __driver_data_15 ) ; // L44 - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -3 warnings generated. -Desugared Infer Results: - - No issues found -Matches: - 54 has a match! - 55 has a match! - 56 has a match! - 58 has a match! - 59 has a match! - 60 has a match! -Unmatched ids: - None! -Matches: -Unmatched ids: - 57 - 61 +File Failed diff --git a/fonda/cpp_testsuite/varBugs/LINUX-7c6048b7c83.report b/fonda/cpp_testsuite/varBugs/LINUX-7c6048b7c83.report index d2027541..8c9fbb99 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-7c6048b7c83.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-7c6048b7c83.report @@ -12,9 +12,4 @@ Macros: [-Udefined -DCONFIG_BACKLIGHT_CLASS_DEVICE=1 -DCONFIG_ACPI_VIDEO=1 ] [-Ddefined=1 -DCONFIG_BACKLIGHT_CLASS_DEVICE=1 -DCONFIG_ACPI_VIDEO=1 ] [-Udefined -UCONFIG_BACKLIGHT_CLASS_DEVICE -UCONFIG_ACPI_VIDEO ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/LINUX-809e660f438.report b/fonda/cpp_testsuite/varBugs/LINUX-809e660f438.report index 7502af2f..03f07a51 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-809e660f438.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-809e660f438.report @@ -2,9 +2,4 @@ LINUX 809e660f438.c Macros: CONFIG_ARM_LPAE [-UCONFIG_ARM_LPAE ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/LINUX-8c8296223f3.report b/fonda/cpp_testsuite/varBugs/LINUX-8c8296223f3.report index 64dd7a95..a7ca068c 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-8c8296223f3.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-8c8296223f3.report @@ -2,21 +2,4 @@ LINUX 8c8296223f3.c Macros: CONFIG_PROC_PAGE_MONITOR [-UCONFIG_PROC_PAGE_MONITOR ] -Desugared Clang Results: -Desugared Infer Results: - -LINUX/8c8296223f3.desugared.c:1413: error: Memory Leak - Memory dynamically allocated by `malloc` on line 1393 is not freed after the last access at line 1413, column 1. - 1411. - 1412. } - 1413. } - ^ - 1414. int (__main_813) (int __argc_811, char * (* (__argv_812))) { - 1415. - - -Found 1 issue - Issue Type(ISSUED_TYPE_ID): # - Memory Leak(MEMORY_LEAK_C): 1 -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/LINUX-91ea8207168.report b/fonda/cpp_testsuite/varBugs/LINUX-91ea8207168.report index 5318cd7f..dfc56e1c 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-91ea8207168.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-91ea8207168.report @@ -12,9 +12,4 @@ Macros: [-UCONFIG_NODES_SHIFT -DCONFIG_DISCONTIGMEM=1 -DCONFIG_PROC_PAGE_MONITOR=1 ] [-DCONFIG_NODES_SHIFT=1 -DCONFIG_DISCONTIGMEM=1 -DCONFIG_PROC_PAGE_MONITOR=1 ] [-UCONFIG_NODES_SHIFT -UCONFIG_DISCONTIGMEM -UCONFIG_PROC_PAGE_MONITOR ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/LINUX-ae249b5fa27.report b/fonda/cpp_testsuite/varBugs/LINUX-ae249b5fa27.report index c38a7921..54538460 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-ae249b5fa27.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-ae249b5fa27.report @@ -6,16 +6,4 @@ Macros: [-DCONFIG_DISCONTIGMEM=1 -UCONFIG_PROC_PAGE_MONITOR ] [-UCONFIG_DISCONTIGMEM -DCONFIG_PROC_PAGE_MONITOR=1 ] [-DCONFIG_DISCONTIGMEM=1 -DCONFIG_PROC_PAGE_MONITOR=1 ] -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.desugared.c:283:15: warning: The left operand of '!=' is a garbage value [core.UndefinedBinaryOperatorResult] -( ( __r_236 != 0xff ) ? ( void ) ( 0 ) : ____assert_fail_4 ("r != 0xff","/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.c",19, __PRETTY_FUNCTION__ ) ) ; // L19:L91 - ~~~~~~~ ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.desugared.c:288:1: warning: Undefined or garbage value returned to caller [core.uninitialized.UndefReturn] -return ( int ) __r_236 ;// L21 -^~~~~~~~~~~~~~~~~~~~~~~~~ -2 warnings generated. -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/LINUX-bc8cec0dff0.report b/fonda/cpp_testsuite/varBugs/LINUX-bc8cec0dff0.report index f384b701..2844c46e 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-bc8cec0dff0.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-bc8cec0dff0.report @@ -2,20 +2,4 @@ LINUX bc8cec0dff0.c Macros: CONFIG_JFFS2_FS_WBUF_VERIFY [-UCONFIG_JFFS2_FS_WBUF_VERIFY ] -Desugared Clang Results: -Desugared Infer Results: - -LINUX/bc8cec0dff0.desugared.c:198: error: Memory Leak - Memory dynamically allocated by `malloc`, indirectly via call to `__jffs2_nor_wbuf_flash_setup_7()` on line 187 is not freed after the last access at line 198, column 1. - 196. - 197. - 198. } - ^ - 199. - - -Found 1 issue - Issue Type(ISSUED_TYPE_ID): # - Memory Leak(MEMORY_LEAK_C): 1 -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/LINUX-c708c57e247.report b/fonda/cpp_testsuite/varBugs/LINUX-c708c57e247.report index 13ba362c..97046eab 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-c708c57e247.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-c708c57e247.report @@ -2,13 +2,4 @@ LINUX c708c57e247.c Macros: CONFIG_S390_PRNG [-UCONFIG_S390_PRNG ] -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/c708c57e247.desugared.c:74:41: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] -* ( ( ____u64_0 * ) __parm_block_1 ) ^= * ( ( ____u64_0 * ) __buf_3 + __i_4 * 8 ) ; // L18 - ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -1 warning generated. -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/LINUX-d530db0db90.report b/fonda/cpp_testsuite/varBugs/LINUX-d530db0db90.report index 0af1a476..9b922689 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-d530db0db90.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-d530db0db90.report @@ -6,9 +6,4 @@ Macros: [-DCONFIG_VORTEX=1 -UCONFIG_PCI ] [-UCONFIG_VORTEX -DCONFIG_PCI=1 ] [-DCONFIG_VORTEX=1 -DCONFIG_PCI=1 ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/LINUX-d549f55f2e1.report b/fonda/cpp_testsuite/varBugs/LINUX-d549f55f2e1.report index 8f0f1fd5..d1ed08fe 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-d549f55f2e1.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-d549f55f2e1.report @@ -6,9 +6,4 @@ Macros: [-DCONFIG_VLAN_8021Q=1 -Udefined ] [-UCONFIG_VLAN_8021Q -Ddefined=1 ] [-DCONFIG_VLAN_8021Q=1 -Ddefined=1 ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/LINUX-d6c7e113959.report b/fonda/cpp_testsuite/varBugs/LINUX-d6c7e113959.report index f5ff8255..636ed286 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-d6c7e113959.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-d6c7e113959.report @@ -6,9 +6,4 @@ Macros: [-DCONFIG_REGULATOR_MAX8660=1 -UCONFIG_OF ] [-UCONFIG_REGULATOR_MAX8660 -DCONFIG_OF=1 ] [-DCONFIG_REGULATOR_MAX8660=1 -DCONFIG_OF=1 ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/LINUX-d7e9711760a.report b/fonda/cpp_testsuite/varBugs/LINUX-d7e9711760a.report index 692bee1b..f4d87d92 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-d7e9711760a.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-d7e9711760a.report @@ -2,13 +2,4 @@ LINUX d7e9711760a.c Macros: CONFIG_QUOTA_DEBUG [-UCONFIG_QUOTA_DEBUG ] -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.desugared.c:1397:2: warning: Value stored to '__reserved_803' is never read [deadcode.DeadStores] - __reserved_803 = 1 ; // L30 - ^ ~ -1 warning generated. -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/LINUX-e1fbd9210d5.report b/fonda/cpp_testsuite/varBugs/LINUX-e1fbd9210d5.report index 5972fff1..39ef4d17 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-e1fbd9210d5.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-e1fbd9210d5.report @@ -6,9 +6,4 @@ Macros: [-DCONFIG_LBDAF=1 -UCONFIG_AMIGA_Z2RAM ] [-UCONFIG_LBDAF -DCONFIG_AMIGA_Z2RAM=1 ] [-DCONFIG_LBDAF=1 -DCONFIG_AMIGA_Z2RAM=1 ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/LINUX-e39363a9def.report b/fonda/cpp_testsuite/varBugs/LINUX-e39363a9def.report index d7418fc3..522c5ad8 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-e39363a9def.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-e39363a9def.report @@ -4,24 +4,8 @@ Macros: CONFIG_IPV6 [-UCONFIG_NETPOLL -UCONFIG_IPV6 ] [-DCONFIG_NETPOLL=1 -UCONFIG_IPV6 ] -clang :: 45 :: Line:17 - Undefined or garbage value returned to caller [core.uninitialized.UndefReturn] -infer :: 46 :: Line:17 +infer :: 3 :: Line:17 Uninitialized Value [-UCONFIG_NETPOLL -DCONFIG_IPV6=1 ] [-DCONFIG_NETPOLL=1 -DCONFIG_IPV6=1 ] -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.desugared.c:77:1: warning: Undefined or garbage value returned to caller [core.uninitialized.UndefReturn] -return __err_1 ;// L17 -^~~~~~~~~~~~~~~ -1 warning generated. -Desugared Infer Results: - - No issues found -Matches: - 45 has a match! -Unmatched ids: - None! -Matches: -Unmatched ids: - 46 +File Failed diff --git a/fonda/cpp_testsuite/varBugs/LINUX-e67bc51e574.report b/fonda/cpp_testsuite/varBugs/LINUX-e67bc51e574.report index 2f02a895..8ee74a09 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-e67bc51e574.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-e67bc51e574.report @@ -2,9 +2,4 @@ LINUX e67bc51e574.c Macros: CONFIG_TRACING [-UCONFIG_TRACING ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/LINUX-eb91f1d0a53.report b/fonda/cpp_testsuite/varBugs/LINUX-eb91f1d0a53.report index 56f6fd12..02e3f1fe 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-eb91f1d0a53.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-eb91f1d0a53.report @@ -20,9 +20,4 @@ Macros: [-Ddefined=1 -UCONFIG_SLAB -DCONFIG_NUMA=1 -DCONFIG_KMEMTRACE=1 ] [-Udefined -DCONFIG_SLAB=1 -DCONFIG_NUMA=1 -DCONFIG_KMEMTRACE=1 ] [-Ddefined=1 -DCONFIG_SLAB=1 -DCONFIG_NUMA=1 -DCONFIG_KMEMTRACE=1 ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/LINUX-ee3f34e8572.report b/fonda/cpp_testsuite/varBugs/LINUX-ee3f34e8572.report index 95546579..1292a822 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-ee3f34e8572.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-ee3f34e8572.report @@ -12,16 +12,4 @@ Macros: [-USCTP_DEBUG -DCONFIG_SCTP_DBG_MSG=1 -Ddefined=1 ] [-DSCTP_DEBUG=1 -DCONFIG_SCTP_DBG_MSG=1 -Ddefined=1 ] [-USCTP_DEBUG -UCONFIG_SCTP_DBG_MSG -Udefined ] -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.desugared.c:1494:3: warning: Dereference of null pointer (loaded from variable '__rt_814') [core.NullDereference] -( ( * __rt_814 ) ++ ) ; // L23:L45 - ^~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.desugared.c:1515:3: warning: Dereference of null pointer (loaded from variable '__rt_814') [core.NullDereference] -( ( * __rt_814 ) ++ ) ; // L23:L45 - ^~~~~~~~~~~~~~~~~~~ -2 warnings generated. -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/LINUX-f3d83e24154.report b/fonda/cpp_testsuite/varBugs/LINUX-f3d83e24154.report index ad98d47b..24de7cbd 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-f3d83e24154.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-f3d83e24154.report @@ -2,9 +2,4 @@ LINUX f3d83e24154.c Macros: defined [-Udefined ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/LINUX-f48ec1d7885.report b/fonda/cpp_testsuite/varBugs/LINUX-f48ec1d7885.report index f4ad3bc0..75ac4519 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-f48ec1d7885.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-f48ec1d7885.report @@ -6,9 +6,4 @@ Macros: [-DCONFIG_BLK_CGROUP=1 -UCONFIG_IOSCHED_CFQ ] [-UCONFIG_BLK_CGROUP -DCONFIG_IOSCHED_CFQ=1 ] [-DCONFIG_BLK_CGROUP=1 -DCONFIG_IOSCHED_CFQ=1 ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/LINUX-f7ab9b407b3.report b/fonda/cpp_testsuite/varBugs/LINUX-f7ab9b407b3.report index e6c8c5b3..c472ea29 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX-f7ab9b407b3.report +++ b/fonda/cpp_testsuite/varBugs/LINUX-f7ab9b407b3.report @@ -12,9 +12,4 @@ Macros: [-UCONFIG_TMPFS -DCONFIG_SHMEM=1 -DCONFIG_DRM_I915=1 ] [-DCONFIG_TMPFS=1 -DCONFIG_SHMEM=1 -DCONFIG_DRM_I915=1 ] [-UCONFIG_TMPFS -UCONFIG_SHMEM -UCONFIG_DRM_I915 ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/LINUX/0988c4c7fb5.clangres b/fonda/cpp_testsuite/varBugs/LINUX/0988c4c7fb5.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/0988c4c7fb5.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/0988c4c7fb5.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/0988c4c7fb5.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/0988c4c7fb5.desugared.c index d50acf19..2c83497a 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/0988c4c7fb5.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/0988c4c7fb5.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -55,14 +56,14 @@ int (__nondet_14) () { if (__static_condition_default_16) { -{ +{// L4 { return 42 ;// L4 } -} +}// L4 } @@ -71,14 +72,14 @@ int (__nondet_15) () { if (__static_condition_default_17) { -{ +{// L4 { return 42 ;// L4 } -} +}// L4 } @@ -88,14 +89,14 @@ _Bool (__vlan_hwaccel_do_receive_18) () { { if (__static_condition_default_20) { -{ +{// L8 { return 1 ;// L10 } -} +}// L11 } @@ -106,7 +107,7 @@ _Bool (__vlan_hwaccel_do_receive_19) () { { if (__static_condition_default_21) { -{ +{// L14 { @@ -122,7 +123,7 @@ __static_type_error("type error") ; // L15:L91 } return 0 ;// L16 } -} +}// L17 } @@ -130,7 +131,7 @@ return 0 ;// L16 }} int (____netif_receive_skb_25) () { -{ +{// L21 { @@ -139,7 +140,7 @@ if (__static_condition_default_16) { if ( __nondet_14 ( ) )// L22 { -{ +{// L23 { @@ -151,14 +152,14 @@ if (__static_condition_default_27) { __vlan_hwaccel_do_receive_19 ( ) ; // L24 } } -} +}// L25 } } if (__static_condition_default_17) { if ( __nondet_15 ( ) )// L22 { -{ +{// L23 { @@ -170,18 +171,18 @@ if (__static_condition_default_29) { __vlan_hwaccel_do_receive_19 ( ) ; // L24 } } -} +}// L25 } } return 0 ;// L26 } -} +}// L27 } int (__netif_receive_skb_30) () { -{ +{// L30 { @@ -193,13 +194,13 @@ if (__static_condition_default_32) { return ____netif_receive_skb_25 ( ) ;// L34 } } -} +}// L36 } int (__main_33) (void ) { -{ +{// L39 { @@ -207,7 +208,7 @@ int (__main_33) (void ) { __netif_receive_skb_30 ( ) ; // L40 return 0 ;// L41 } -} +}// L42 } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/0988c4c7fb5.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/0988c4c7fb5.desugared.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/0988c4c7fb5.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/0988c4c7fb5.desugared.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.clangres b/fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.clangres index 21572cd7..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.clangres @@ -1,5 +1 @@ -In file included from :344: -:4:9: error: 'defined' cannot be used as a macro name -#define defined 1 - ^ -1 error generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.desugared.c index 05d4cf8f..86a71f15 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -59,7 +60,7 @@ int (__sysfs_link_sibling_9) (const char * (__s_name_8)) { if (__static_condition_default_10) { -{ +{// L21 { @@ -71,7 +72,7 @@ return ( ! __strcmp_6 ( __s_name_8 , __linked_7 ) ) ? - 17 : - 12 ;// L23 __linked_7 = __s_name_8 ; // L25 return 0 ;// L26 } -} +}// L27 } @@ -80,7 +81,7 @@ void (__sysfs_unlink_sibling_12) (const char * (__s_name_11)) { if (__static_condition_default_10) { -{ +{// L30 { @@ -90,7 +91,7 @@ if ( __linked_7 != ( void * ) 0 && ! __strcmp_6 ( __s_name_11 , __linked_7 __linked_7 = ( void * ) 0 ; // L8:L32 } } -} +}// L33 } @@ -99,14 +100,14 @@ int (__sysfs_create_dir_14) (const char * (__name_13)) { if (__static_condition_default_10) { -{ +{// L36 { return __sysfs_link_sibling_9 ( __name_13 ) ;// L37 } -} +}// L38 } @@ -115,14 +116,14 @@ int (__kobject_add_16) (const char * (__name_15)) { if (__static_condition_default_10) { -{ +{// L41 { return __sysfs_create_dir_14 ( __name_15 ) ;// L42 } -} +}// L43 } @@ -131,7 +132,7 @@ int * ((__kobject_create_and_add_20) (const char * (__name_17))) { if (__static_condition_default_10) { -{ +{// L46 { @@ -147,7 +148,7 @@ int __retval_19= __kobject_add_16 ( __name_17 );// L51 if ( __retval_19 )// L52 { -{ +{// L53 { @@ -155,11 +156,11 @@ if ( __retval_19 )// L52 free ( __kobj_18 ) ; // L54 __kobj_18 = ( void * ) 0 ; // L8:L55 } -} +}// L56 } return __kobj_18 ;// L58 } -} +}// L59 } @@ -168,7 +169,7 @@ int * ((__class_compat_register_23) (const char * (__name_21))) { if (__static_condition_default_10) { -{ +{// L62 { @@ -182,7 +183,7 @@ return ( void * ) 0 ;// L67 } return __kobj_22 ;// L69 } -} +}// L70 } @@ -191,14 +192,14 @@ void (__class_compat_unregister_25) (const char * (__name_24)) { if (__static_condition_default_26) { -{ +{// L73 { free ( __name_24 ) ; // L74 } -} +}// L75 } @@ -208,7 +209,7 @@ int (__create_extcon_class_28) (void ) { if (__static_condition_default_29) { -{ +{// L84 { @@ -229,7 +230,7 @@ if (__static_condition_default_33) { return 0 ;// L90 } } -} +}// L91 } @@ -238,14 +239,14 @@ int (__extcon_class_init_34) (void ) { if (__static_condition_default_29) { -{ +{// L94 { return __create_extcon_class_28 ( ) ;// L95 } -} +}// L96 } @@ -254,14 +255,14 @@ void (__extcon_class_exit_35) (void ) { if (__static_condition_default_29) { -{ +{// L99 { return ;// L100 } -} +}// L101 } @@ -270,14 +271,14 @@ int (__main_36) (void ) { if (__static_condition_default_38) { -{ +{// L105 { return 0 ;// L111 } -} +}// L112 } @@ -286,7 +287,7 @@ int (__main_37) (void ) { if (__static_condition_default_39) { -{ +{// L105 { @@ -296,7 +297,7 @@ if (__static_condition_default_39) { __extcon_class_init_34 ( ) ; // L109 return 0 ;// L111 } -} +}// L112 } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.desugared.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.desugared.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.desugared.inferres index 8122dc0c..b87e24a4 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.desugared.inferres +++ b/fonda/cpp_testsuite/varBugs/LINUX/0dc77b6dabe.desugared.inferres @@ -1,11 +1,11 @@ -LINUX/0dc77b6dabe.desugared.c:303: error: Memory Leak - Memory dynamically allocated by `malloc`, indirectly via call to `__extcon_class_init_34()` on line 294 is not freed after the last access at line 303, column 1. - 301. - 302. } +LINUX/0dc77b6dabe.desugared.c:304: error: Memory Leak + Memory dynamically allocated by `malloc`, indirectly via call to `__extcon_class_init_34()` on line 295 is not freed after the last access at line 304, column 1. + 302. 303. } + 304. } ^ - 304. + 305. Found 1 issue diff --git a/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.clangres b/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.clangres index ea065e73..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.clangres @@ -1,11 +1 @@ -In file included from :344: -:2:8: error: 'defined' cannot be used as a macro name -#undef defined - ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.c:34:19: error: use of undeclared identifier 'PAGE_SHIFT' - for (i = 1; i < PAGE_SHIFT + MAX_ORDER; i++) - ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.c:36:20: error: use of undeclared identifier 'kmalloc_caches' - int* cache = kmalloc_caches[i]; // (4) ERROR - ^ -3 errors generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.desugared.c index 1cf73b00..aeea3dd9 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -39,7 +40,7 @@ static void (__init_node_lock_keys_5) () { if (__static_condition_default_4) { -{ +{// L31 { @@ -48,7 +49,7 @@ int __i_3;// L32 __static_type_error("no valid type in iterationstatement (3)"); } -} +}// L43 } @@ -57,13 +58,13 @@ int (__init_node_lock_keys_6) () { if (__static_condition_default_7) { -{ +{// L51 { } -} +}// L52 } @@ -73,14 +74,14 @@ void (__init_lock_keys_8) (void ) { { if (__static_condition_default_4) { -{ +{// L46 { __init_node_lock_keys_5 ( ) ; // L47 } -} +}// L48 } @@ -91,13 +92,13 @@ void (__init_lock_keys_9) (void ) { { if (__static_condition_default_7) { -{ +{// L55 { } -} +}// L56 } @@ -105,7 +106,7 @@ if (__static_condition_default_7) { }} void (__kmem_cache_init_late_10) (void ) { -{ +{// L60 { @@ -117,13 +118,13 @@ if (__static_condition_default_11) { __init_lock_keys_9 ( ) ; // L61 } } -} +}// L62 } int (__main_12) (void ) { -{ +{// L65 { @@ -138,7 +139,7 @@ if (__static_condition_default_13) { return 0 ;// L69 } } -} +}// L70 } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.desugared.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/0f8f8094d28.desugared.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/1c17e4d4437.clangres b/fonda/cpp_testsuite/varBugs/LINUX/1c17e4d4437.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/1c17e4d4437.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/1c17e4d4437.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/1c17e4d4437.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/1c17e4d4437.desugared.c index b6916af3..a30b3f22 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/1c17e4d4437.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/1c17e4d4437.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -43,14 +44,14 @@ void (__print_cpu_stall_fast_no_hz_9) (char * (__cp_5), int __cpu_6) { { if (__static_condition_default_11) { -{ +{// L10 { __sprintf_4 ( __cp_5 ,"foobar") ; // L11 } -} +}// L12 } @@ -61,13 +62,13 @@ void (__print_cpu_stall_fast_no_hz_10) (char * (__cp_7), int __cpu_8) { { if (__static_condition_default_12) { -{ +{// L15 { } -} +}// L16 } @@ -78,7 +79,7 @@ void (__print_cpu_stall_info_16) (int __cpu_13) { { if (__static_condition_default_18) { -{ +{// L20 { @@ -93,7 +94,7 @@ if (__static_condition_default_20) { } __printf_1 ("\t%d: %s\n", __cpu_13 , __fast_no_hz_14 ) ; // L24 } -} +}// L25 } @@ -104,14 +105,14 @@ void (__print_cpu_stall_info_17) (int __cpu_15) { { if (__static_condition_default_21) { -{ +{// L28 { __printf_1 (" %d", __cpu_15 ) ; // L29 } -} +}// L30 } @@ -119,7 +120,7 @@ if (__static_condition_default_21) { }} int (__main_22) (void ) { -{ +{// L34 { @@ -134,7 +135,7 @@ if (__static_condition_default_24) { return 0 ;// L38 } } -} +}// L39 } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/1c17e4d4437.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/1c17e4d4437.desugared.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/1c17e4d4437.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/1c17e4d4437.desugared.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/1f758a4341a.clangres b/fonda/cpp_testsuite/varBugs/LINUX/1f758a4341a.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/1f758a4341a.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/1f758a4341a.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/1f758a4341a.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/1f758a4341a.desugared.c index de3de022..22dc53ea 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/1f758a4341a.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/1f758a4341a.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -32,7 +33,7 @@ __static_condition_renaming("__static_condition_default_12", "(defined CONFIG_EP static int __some_int_0= 0;// L17 int * ((____alloc_pages_nodemask_2) (int __gfp_mask_1)) { -{ +{// L20 { @@ -50,7 +51,7 @@ if (__static_condition_default_3) { return & __some_int_0 ;// L25 } } -} +}// L26 } @@ -58,7 +59,7 @@ int (__ep93xx_alloc_buffers_6) () { if (__static_condition_default_7) { -{ +{// L30 { @@ -70,7 +71,7 @@ if ( __descs_5 == ( void * ) 0 )// L32 return 1 ;// L33 } } -} +}// L34 } @@ -79,7 +80,7 @@ int (__ep93xx_open_8) () { if (__static_condition_default_7) { -{ +{// L37 { @@ -89,7 +90,7 @@ if ( __ep93xx_alloc_buffers_6 ( ) )// L38 return - 12 ;// L39 } } -} +}// L40 } @@ -98,14 +99,14 @@ int (__main_9) (void ) { if (__static_condition_default_11) { -{ +{// L44 { return 0 ;// L48 } -} +}// L49 } @@ -114,7 +115,7 @@ int (__main_10) (void ) { if (__static_condition_default_12) { -{ +{// L44 { @@ -122,7 +123,7 @@ if (__static_condition_default_12) { __ep93xx_open_8 ( ) ; // L46 return 0 ;// L48 } -} +}// L49 } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/1f758a4341a.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/1f758a4341a.desugared.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/1f758a4341a.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/1f758a4341a.desugared.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/208d89843b7.clangres b/fonda/cpp_testsuite/varBugs/LINUX/208d89843b7.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/208d89843b7.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/208d89843b7.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/208d89843b7.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/208d89843b7.desugared.c index cbac25d5..b28138e4 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/208d89843b7.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/208d89843b7.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -7,72 +8,72 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_623; -extern const bool __static_condition_default_809; +extern const bool __static_condition_default_813; extern const bool __static_condition_default_267; extern const bool __static_condition_default_414; -extern const bool __static_condition_default_595; +extern const bool __static_condition_default_627; +extern const bool __static_condition_default_623; extern const bool __static_condition_default_261; +extern const bool __static_condition_default_823; +extern const bool __static_condition_default_808; +extern const bool __static_condition_default_812; extern const bool __static_condition_default_378; extern const bool __static_condition_default_60; extern const bool __static_condition_default_252; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_627; -extern const bool __static_condition_default_629; +extern const bool __static_condition_default_801; extern const bool __static_condition_default_288; extern const bool __static_condition_default_426; -extern const bool __static_condition_default_736; extern const bool __static_condition_default_579; extern const bool __static_condition_default_417; -extern const bool __static_condition_default_818; extern const bool __static_condition_default_379; +extern const bool __static_condition_default_818; extern const bool __static_condition_default_282; extern const bool __static_condition_default_361; extern const bool __static_condition_default_264; extern const bool __static_condition_default_305; -extern const bool __static_condition_default_801; -extern const bool __static_condition_default_594; extern const bool __static_condition_default_293; extern const bool __static_condition_default_432; extern const bool __static_condition_default_243; extern const bool __static_condition_default_240; extern const bool __static_condition_default_246; -extern const bool __static_condition_default_823; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_819; extern const bool __static_condition_default_279; extern const bool __static_condition_default_429; -extern const bool __static_condition_default_808; extern const bool __static_condition_default_273; extern const bool __static_condition_default_395; extern const bool __static_condition_default_394; +extern const bool __static_condition_default_621; extern const bool __static_condition_default_249; +extern const bool __static_condition_default_604; extern const bool __static_condition_default_276; -extern const bool __static_condition_default_621; extern const bool __static_condition_default_67; extern const bool __static_condition_default_341; extern const bool __static_condition_default_215; extern const bool __static_condition_default_325; -extern const bool __static_condition_default_813; +extern const bool __static_condition_default_602; extern const bool __static_condition_default_296; extern const bool __static_condition_default_255; extern const bool __static_condition_default_352; -extern const bool __static_condition_default_803; extern const bool __static_condition_default_349; extern const bool __static_condition_default_234; extern const bool __static_condition_default_258; extern const bool __static_condition_default_299; extern const bool __static_condition_default_308; -extern const bool __static_condition_default_604; -extern const bool __static_condition_default_802; extern const bool __static_condition_default_302; +extern const bool __static_condition_default_809; extern const bool __static_condition_default_285; +extern const bool __static_condition_default_629; extern const bool __static_condition_default_237; +extern const bool __static_condition_default_817; extern const bool __static_condition_default_420; -extern const bool __static_condition_default_812; +extern const bool __static_condition_default_802; extern const bool __static_condition_default_581; +extern const bool __static_condition_default_803; extern const bool __static_condition_default_423; -extern const bool __static_condition_default_817; -extern const bool __static_condition_default_819; +extern const bool __static_condition_default_594; extern const bool __static_condition_default_270; +extern const bool __static_condition_default_595; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -918,14 +919,14 @@ static __inline unsigned int (____bswap_32_66) (unsigned int ____bsx_65) { if (__static_condition_default_67) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -934,14 +935,14 @@ static __inline ____uint64_t_20 (____bswap_64_69) (____uint64_t_20 ____bsx_68) if (__static_condition_default_67) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -1114,14 +1115,14 @@ static __inline unsigned int (____bswap_32_324) (unsigned int ____bsx_323) { if (__static_condition_default_325) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -1130,14 +1131,14 @@ static __inline ____uint64_t_175 (____bswap_64_327) (____uint64_t_175 ____bsx_ if (__static_condition_default_325) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -1318,14 +1319,14 @@ static inline void (__spin_lock_irq_798) () { if (__static_condition_default_801) { -{ +{// L9 { ; // L10 } -} +}// L11 } @@ -1334,14 +1335,14 @@ static inline void (__spin_lock_irq_799) () { if (__static_condition_default_802) { -{ +{// L9 { ; // L10 } -} +}// L11 } @@ -1350,54 +1351,54 @@ static inline void (__spin_lock_irq_800) () { if (__static_condition_default_803) { -{ +{// L9 { ; // L10 } -} +}// L11 } } static inline void (__spin_unlock_irq_804) () { -{ +{// L14 { ; // L15 } -} +}// L16 } static inline void (__spin_lock_bh_805) () { -{ +{// L19 { ; // L20 } -} +}// L21 } static inline void (__spin_unlock_bh_806) () { -{ +{// L24 { ; // L25 } -} +}// L26 } @@ -1406,27 +1407,27 @@ static inline void (__kunmap_skb_frag_807) () { { if (__static_condition_default_808) { -{ +{// L29 { } -} +}// L33 } if (__static_condition_default_809) { -{ +{// L29 { ; // L31 } -} +}// L33 } @@ -1434,7 +1435,7 @@ if (__static_condition_default_809) { }} unsigned int (__skb_checksum_811) () { -{ +{// L36 { @@ -1445,7 +1446,7 @@ if (__static_condition_default_812) { while ( rand( ) % 2 )// L39 { -{ +{// L39 { @@ -1453,17 +1454,17 @@ while ( rand( ) % 2 )// L39 if ( rand( ) % 2 )// L40 { -{ +{// L40 { __kunmap_skb_frag_807 ( ) ; // L41 } +}// L42 } } -} -} +}// L43 } } if (__static_condition_default_813) { @@ -1471,26 +1472,26 @@ __static_type_error("invalid type found in while statement"); } return __csum_810 ;// L45 } -} +}// L46 } static int (__udp_checksum_complete_814) () { -{ +{// L49 { return __skb_checksum_811 ( ) ;// L50 } -} +}// L51 } unsigned int (__udp_poll_816) () { -{ +{// L54 { @@ -1510,14 +1511,14 @@ if (__static_condition_default_812) { while ( rand( ) % 2 )// L58 { -{ +{// L58 { __udp_checksum_complete_814 ( ) ; // L59 } -} +}// L60 } } if (__static_condition_default_819) { @@ -1526,13 +1527,13 @@ __static_type_error("invalid type found in while statement"); __spin_unlock_irq_804 ( ) ; // L61 return __mask_815 ;// L63 } -} +}// L64 } int (__main_822) (int __argc_820, char * (* (__argv_821))) { -{ +{// L67 { @@ -1540,7 +1541,7 @@ int (__main_822) (int __argc_820, char * (* (__argv_821))) { __udp_poll_816 ( ) ; // L68 return 0 ;// L69 } -} +}// L70 } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/208d89843b7.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/208d89843b7.desugared.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/208d89843b7.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/208d89843b7.desugared.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/218ad12f42e.clangres b/fonda/cpp_testsuite/varBugs/LINUX/218ad12f42e.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/218ad12f42e.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/218ad12f42e.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/218ad12f42e.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/218ad12f42e.desugared.c index f75de607..dd58d25f 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/218ad12f42e.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/218ad12f42e.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -8,9 +9,9 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); extern const bool __static_condition_default_7; -extern const bool __static_condition_default_8; extern const bool __static_condition_default_10; extern const bool __static_condition_default_11; +extern const bool __static_condition_default_8; void __static_initializer_default() { __static_renaming("__malloc_1", "malloc"); __static_renaming("__free_3", "free"); @@ -33,7 +34,7 @@ int * (__x_4)= ( void * ) 0;// L11 unsigned int __size_5= 12 + 1;// L12 int (__inet_ehash_locks_alloc_6) () { -{ +{// L15 { @@ -46,7 +47,7 @@ if ( __size_5 > 12 )// L17 { __x_4 = malloc ( __size_5 ) ; // L18 } -else +else// L19 { __x_4 = malloc ( __size_5 ) ; // L21 } @@ -57,13 +58,13 @@ return 12 ;// L23 } return 0 ;// L24 } -} +}// L25 } void (__inet_ehash_locks_free_9) () { -{ +{// L28 { @@ -72,7 +73,7 @@ if ( __x_4 )// L29 { if (__static_condition_default_10) { -{ +{// L29 { @@ -80,11 +81,11 @@ if (__static_condition_default_10) { free ( __x_4 ) ; // L35 __x_4 = ( void * ) 0 ; // L3:L37 } -} +}// L38 } if (__static_condition_default_11) { -{ +{// L29 { @@ -93,22 +94,22 @@ if ( __size_5 > 12 )// L31 { free ( __x_4 ) ; // L32 } -else +else// L33 { __x_4 = ( void * ) 0 ; // L3:L37 } } +}// L38 } } } -} -} +}// L39 } int (__main_12) (void ) { -{ +{// L42 { @@ -117,7 +118,7 @@ int (__main_12) (void ) { __inet_ehash_locks_free_9 ( ) ; // L44 return 0 ;// L45 } -} +}// L46 } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/218ad12f42e.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/218ad12f42e.desugared.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/218ad12f42e.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/218ad12f42e.desugared.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/218ad12f42e.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/218ad12f42e.desugared.inferres index 9539e29b..69c01362 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/218ad12f42e.desugared.inferres +++ b/fonda/cpp_testsuite/varBugs/LINUX/218ad12f42e.desugared.inferres @@ -1,20 +1,20 @@ -LINUX/218ad12f42e.desugared.c:63: error: Memory Leak - Memory dynamically allocated by `malloc` on line 42 is not freed after the last access at line 63, column 1. - 61. +LINUX/218ad12f42e.desugared.c:64: error: Memory Leak + Memory dynamically allocated by `malloc` on line 43 is not freed after the last access at line 64, column 1. 62. - 63. } + 63. + 64. } ^ - 64. void (__inet_ehash_locks_free_9) () { - 65. + 65. void (__inet_ehash_locks_free_9) () { + 66. -LINUX/218ad12f42e.desugared.c:123: error: Memory Leak - Memory dynamically allocated by `malloc`, indirectly via call to `__inet_ehash_locks_alloc_6()` on line 116 is not freed after the last access at line 123, column 1. - 121. +LINUX/218ad12f42e.desugared.c:124: error: Memory Leak + Memory dynamically allocated by `malloc`, indirectly via call to `__inet_ehash_locks_alloc_6()` on line 117 is not freed after the last access at line 124, column 1. 122. - 123. } + 123. + 124. } ^ - 124. + 125. Found 2 issues diff --git a/fonda/cpp_testsuite/varBugs/LINUX/221ac329e93.clangres b/fonda/cpp_testsuite/varBugs/LINUX/221ac329e93.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/221ac329e93.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/221ac329e93.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/221ac329e93.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/221ac329e93.desugared.c index a3cb59d9..d3b70f38 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/221ac329e93.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/221ac329e93.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -20,9 +21,12 @@ extern const bool __static_condition_default_3022; extern const bool __static_condition_default_2315; extern const bool __static_condition_default_2547; extern const bool __static_condition_default_1313; +extern const bool __static_condition_default_3900; extern const bool __static_condition_default_2260; extern const bool __static_condition_default_692; extern const bool __static_condition_default_3347; +extern const bool __static_condition_default_4001; +extern const bool __static_condition_default_3971; extern const bool __static_condition_default_1213; extern const bool __static_condition_default_2628; extern const bool __static_condition_default_839; @@ -30,6 +34,7 @@ extern const bool __static_condition_default_2302; extern const bool __static_condition_default_1682; extern const bool __static_condition_default_2863; extern const bool __static_condition_default_688; +extern const bool __static_condition_default_3916; extern const bool __static_condition_default_1290; extern const bool __static_condition_default_2300; extern const bool __static_condition_default_2859; @@ -37,17 +42,17 @@ extern const bool __static_condition_default_1513; extern const bool __static_condition_default_1789; extern const bool __static_condition_default_2818; extern const bool __static_condition_default_1219; -extern const bool __static_condition_default_4007; extern const bool __static_condition_default_1475; extern const bool __static_condition_default_1756; extern const bool __static_condition_default_1911; extern const bool __static_condition_default_2696; extern const bool __static_condition_default_3005; -extern const bool __static_condition_default_3996; +extern const bool __static_condition_default_3995; extern const bool __static_condition_default_3537; extern const bool __static_condition_default_3568; extern const bool __static_condition_default_1584; extern const bool __static_condition_default_3013; +extern const bool __static_condition_default_4002; extern const bool __static_condition_default_3648; extern const bool __static_condition_default_2571; extern const bool __static_condition_default_2018; @@ -68,14 +73,12 @@ extern const bool __static_condition_default_157; extern const bool __static_condition_default_2562; extern const bool __static_condition_default_2712; extern const bool __static_condition_default_2594; -extern const bool __static_condition_default_3979; extern const bool __static_condition_default_2494; extern const bool __static_condition_default_1523; extern const bool __static_condition_default_1563; extern const bool __static_condition_default_1892; extern const bool __static_condition_default_2436; extern const bool __static_condition_default_164; -extern const bool __static_condition_default_3987; extern const bool __static_condition_default_2592; extern const bool __static_condition_default_1509; extern const bool __static_condition_default_1628; @@ -109,12 +112,11 @@ extern const bool __static_condition_default_1721; extern const bool __static_condition_default_1270; extern const bool __static_condition_default_2553; extern const bool __static_condition_default_2640; +extern const bool __static_condition_default_3661; extern const bool __static_condition_default_2407; extern const bool __static_condition_default_2025; -extern const bool __static_condition_default_3971; extern const bool __static_condition_default_859; extern const bool __static_condition_default_2873; -extern const bool __static_condition_default_4005; extern const bool __static_condition_default_3416; extern const bool __static_condition_default_1319; extern const bool __static_condition_default_698; @@ -130,12 +132,10 @@ extern const bool __static_condition_default_3551; extern const bool __static_condition_default_1389; extern const bool __static_condition_default_2143; extern const bool __static_condition_default_1719; -extern const bool __static_condition_default_3898; extern const bool __static_condition_default_200; extern const bool __static_condition_default_2395; extern const bool __static_condition_default_1495; extern const bool __static_condition_default_1643; -extern const bool __static_condition_default_3974; extern const bool __static_condition_default_1688; extern const bool __static_condition_default_96; extern const bool __static_condition_default_168; @@ -144,10 +144,10 @@ extern const bool __static_condition_default_1249; extern const bool __static_condition_default_1588; extern const bool __static_condition_default_638; extern const bool __static_condition_default_3108; +extern const bool __static_condition_default_3896; extern const bool __static_condition_default_674; extern const bool __static_condition_default_1383; extern const bool __static_condition_default_2055; -extern const bool __static_condition_default_3985; extern const bool __static_condition_default_149; extern const bool __static_condition_default_3557; extern const bool __static_condition_default_899; @@ -163,6 +163,7 @@ extern const bool __static_condition_default_2483; extern const bool __static_condition_default_3543; extern const bool __static_condition_default_1807; extern const bool __static_condition_default_857; +extern const bool __static_condition_default_3973; extern const bool __static_condition_default_1301; extern const bool __static_condition_default_1304; extern const bool __static_condition_default_1658; @@ -175,6 +176,7 @@ extern const bool __static_condition_default_3140; extern const bool __static_condition_default_1884; extern const bool __static_condition_default_144; extern const bool __static_condition_default_73; +extern const bool __static_condition_default_3981; extern const bool __static_condition_default_1772; extern const bool __static_condition_default_2543; extern const bool __static_condition_default_2311; @@ -183,18 +185,18 @@ extern const bool __static_condition_default_207; extern const bool __static_condition_default_607; extern const bool __static_condition_default_61; extern const bool __static_condition_default_65; +extern const bool __static_condition_default_3999; extern const bool __static_condition_default_1255; extern const bool __static_condition_default_2713; extern const bool __static_condition_default_1400; extern const bool __static_condition_default_1898; -extern const bool __static_condition_default_4008; extern const bool __static_condition_default_1827; extern const bool __static_condition_default_1934; extern const bool __static_condition_default_2843; extern const bool __static_condition_default_944; extern const bool __static_condition_default_3555; extern const bool __static_condition_default_2430; -extern const bool __static_condition_default_3998; +extern const bool __static_condition_default_3979; extern const bool __static_condition_default_2806; extern const bool __static_condition_default_3433; extern const bool __static_condition_default_1654; @@ -202,7 +204,6 @@ extern const bool __static_condition_default_1669; extern const bool __static_condition_default_2851; extern const bool __static_condition_default_2695; extern const bool __static_condition_default_2875; -extern const bool __static_condition_default_3961; extern const bool __static_condition_default_1408; extern const bool __static_condition_default_1491; extern const bool __static_condition_default_2319; @@ -218,6 +219,7 @@ extern const bool __static_condition_default_1337; extern const bool __static_condition_default_1657; extern const bool __static_condition_default_1823; extern const bool __static_condition_default_106; +extern const bool __static_condition_default_3694; extern const bool __static_condition_default_2842; extern const bool __static_condition_default_2892; extern const bool __static_condition_default_2708; @@ -225,6 +227,7 @@ extern const bool __static_condition_default_3341; extern const bool __static_condition_default_1283; extern const bool __static_condition_default_2734; extern const bool __static_condition_default_1666; +extern const bool __static_condition_default_3977; extern const bool __static_condition_default_1992; extern const bool __static_condition_default_936; extern const bool __static_condition_default_700; @@ -236,11 +239,14 @@ extern const bool __static_condition_default_2297; extern const bool __static_condition_default_108; extern const bool __static_condition_default_1839; extern const bool __static_condition_default_2750; +extern const bool __static_condition_default_4007; extern const bool __static_condition_default_2549; extern const bool __static_condition_default_2684; extern const bool __static_condition_default_148; +extern const bool __static_condition_default_3976; extern const bool __static_condition_default_910; extern const bool __static_condition_default_1999; +extern const bool __static_condition_default_3963; extern const bool __static_condition_default_1535; extern const bool __static_condition_default_1743; extern const bool __static_condition_default_2683; @@ -260,24 +266,21 @@ extern const bool __static_condition_default_2688; extern const bool __static_condition_default_1617; extern const bool __static_condition_default_3086; extern const bool __static_condition_default_3405; -extern const bool __static_condition_default_3984; extern const bool __static_condition_default_1415; extern const bool __static_condition_default_3476; extern const bool __static_condition_default_1012; extern const bool __static_condition_default_51; extern const bool __static_condition_default_1261; extern const bool __static_condition_default_1697; -extern const bool __static_condition_default_3900; extern const bool __static_condition_default_1308; extern const bool __static_condition_default_2349; extern const bool __static_condition_default_2853; extern const bool __static_condition_default_2405; -extern const bool __static_condition_default_3981; extern const bool __static_condition_default_1224; extern const bool __static_condition_default_3343; +extern const bool __static_condition_default_4006; extern const bool __static_condition_default_2635; extern const bool __static_condition_default_2100; -extern const bool __static_condition_default_3916; extern const bool __static_condition_default_1598; extern const bool __static_condition_default_2313; extern const bool __static_condition_default_2912; @@ -287,6 +290,7 @@ extern const bool __static_condition_default_1856; extern const bool __static_condition_default_1017; extern const bool __static_condition_default_1741; extern const bool __static_condition_default_1296; +extern const bool __static_condition_default_4009; extern const bool __static_condition_default_1530; extern const bool __static_condition_default_3041; extern const bool __static_condition_default_67; @@ -315,6 +319,7 @@ extern const bool __static_condition_default_2180; extern const bool __static_condition_default_656; extern const bool __static_condition_default_935; extern const bool __static_condition_default_227; +extern const bool __static_condition_default_3978; extern const bool __static_condition_default_2564; extern const bool __static_condition_default_3355; extern const bool __static_condition_default_2541; @@ -322,8 +327,11 @@ extern const bool __static_condition_default_3130; extern const bool __static_condition_default_1357; extern const bool __static_condition_default_2481; extern const bool __static_condition_default_2334; +extern const bool __static_condition_default_3987; extern const bool __static_condition_default_1310; +extern const bool __static_condition_default_3969; extern const bool __static_condition_default_3450; +extern const bool __static_condition_default_3970; extern const bool __static_condition_default_628; extern const bool __static_condition_default_1559; extern const bool __static_condition_default_1706; @@ -352,7 +360,7 @@ extern const bool __static_condition_default_2294; extern const bool __static_condition_default_165; extern const bool __static_condition_default_2078; extern const bool __static_condition_default_640; -extern const bool __static_condition_default_3983; +extern const bool __static_condition_default_3982; extern const bool __static_condition_default_2902; extern const bool __static_condition_default_1333; extern const bool __static_condition_default_1452; @@ -364,13 +372,13 @@ extern const bool __static_condition_default_1023; extern const bool __static_condition_default_1557; extern const bool __static_condition_default_1964; extern const bool __static_condition_default_1704; +extern const bool __static_condition_default_3980; extern const bool __static_condition_default_2111; extern const bool __static_condition_default_131; extern const bool __static_condition_default_1564; extern const bool __static_condition_default_2266; extern const bool __static_condition_default_2591; extern const bool __static_condition_default_2890; -extern const bool __static_condition_default_3977; extern const bool __static_condition_default_2925; extern const bool __static_condition_default_1110; extern const bool __static_condition_default_130; @@ -395,17 +403,14 @@ extern const bool __static_condition_default_2482; extern const bool __static_condition_default_676; extern const bool __static_condition_default_1464; extern const bool __static_condition_default_2363; -extern const bool __static_condition_default_3690; extern const bool __static_condition_default_198; extern const bool __static_condition_default_1720; extern const bool __static_condition_default_636; extern const bool __static_condition_default_2807; -extern const bool __static_condition_default_3918; extern const bool __static_condition_default_1754; extern const bool __static_condition_default_1843; extern const bool __static_condition_default_1195; extern const bool __static_condition_default_2809; -extern const bool __static_condition_default_4003; extern const bool __static_condition_default_105; extern const bool __static_condition_default_1656; extern const bool __static_condition_default_2343; @@ -415,10 +420,10 @@ extern const bool __static_condition_default_1243; extern const bool __static_condition_default_1671; extern const bool __static_condition_default_2445; extern const bool __static_condition_default_2365; -extern const bool __static_condition_default_3811; extern const bool __static_condition_default_2340; extern const bool __static_condition_default_2042; -extern const bool __static_condition_default_3980; +extern const bool __static_condition_default_3669; +extern const bool __static_condition_default_3975; extern const bool __static_condition_default_1335; extern const bool __static_condition_default_2944; extern const bool __static_condition_default_923; @@ -428,8 +433,8 @@ extern const bool __static_condition_default_634; extern const bool __static_condition_default_696; extern const bool __static_condition_default_1976; extern const bool __static_condition_default_145; -extern const bool __static_condition_default_3970; extern const bool __static_condition_default_1300; +extern const bool __static_condition_default_3997; extern const bool __static_condition_default_1279; extern const bool __static_condition_default_1432; extern const bool __static_condition_default_2249; @@ -437,14 +442,13 @@ extern const bool __static_condition_default_2839; extern const bool __static_condition_default_2767; extern const bool __static_condition_default_898; extern const bool __static_condition_default_1987; -extern const bool __static_condition_default_4004; +extern const bool __static_condition_default_3898; extern const bool __static_condition_default_127; extern const bool __static_condition_default_2675; extern const bool __static_condition_default_878; extern const bool __static_condition_default_1808; extern const bool __static_condition_default_3057; extern const bool __static_condition_default_733; -extern const bool __static_condition_default_3688; extern const bool __static_condition_default_2273; extern const bool __static_condition_default_2511; extern const bool __static_condition_default_2727; @@ -452,18 +456,18 @@ extern const bool __static_condition_default_1667; extern const bool __static_condition_default_126; extern const bool __static_condition_default_1573; extern const bool __static_condition_default_2784; -extern const bool __static_condition_default_3662; +extern const bool __static_condition_default_3998; extern const bool __static_condition_default_2914; extern const bool __static_condition_default_918; extern const bool __static_condition_default_2285; extern const bool __static_condition_default_2469; extern const bool __static_condition_default_3541; -extern const bool __static_condition_default_3982; extern const bool __static_condition_default_1196; extern const bool __static_condition_default_2869; extern const bool __static_condition_default_2801; extern const bool __static_condition_default_670; extern const bool __static_condition_default_2467; +extern const bool __static_condition_default_3960; extern const bool __static_condition_default_2908; extern const bool __static_condition_default_1275; extern const bool __static_condition_default_1977; @@ -473,22 +477,18 @@ extern const bool __static_condition_default_2391; extern const bool __static_condition_default_1558; extern const bool __static_condition_default_1705; extern const bool __static_condition_default_2458; +extern const bool __static_condition_default_3662; extern const bool __static_condition_default_218; extern const bool __static_condition_default_1888; extern const bool __static_condition_default_911; extern const bool __static_condition_default_2539; -extern const bool __static_condition_default_3995; +extern const bool __static_condition_default_3972; extern const bool __static_condition_default_1860; extern const bool __static_condition_default_2432; extern const bool __static_condition_default_2803; -extern const bool __static_condition_default_3994; -extern const bool __static_condition_default_3973; -extern const bool __static_condition_default_4006; extern const bool __static_condition_default_98; -extern const bool __static_condition_default_3997; extern const bool __static_condition_default_678; extern const bool __static_condition_default_623; -extern const bool __static_condition_default_3671; extern const bool __static_condition_default_2829; extern const bool __static_condition_default_2314; extern const bool __static_condition_default_2589; @@ -497,14 +497,15 @@ extern const bool __static_condition_default_736; extern const bool __static_condition_default_2361; extern const bool __static_condition_default_3570; extern const bool __static_condition_default_1735; +extern const bool __static_condition_default_3984; extern const bool __static_condition_default_1489; extern const bool __static_condition_default_2652; extern const bool __static_condition_default_2056; extern const bool __static_condition_default_2802; +extern const bool __static_condition_default_3989; extern const bool __static_condition_default_2671; extern const bool __static_condition_default_3472; extern const bool __static_condition_default_2326; -extern const bool __static_condition_default_3696; extern const bool __static_condition_default_737; extern const bool __static_condition_default_686; extern const bool __static_condition_default_2618; @@ -516,38 +517,41 @@ extern const bool __static_condition_default_2922; extern const bool __static_condition_default_3385; extern const bool __static_condition_default_3480; extern const bool __static_condition_default_2609; -extern const bool __static_condition_default_3972; +extern const bool __static_condition_default_4003; extern const bool __static_condition_default_2519; extern const bool __static_condition_default_2937; +extern const bool __static_condition_default_4005; extern const bool __static_condition_default_117; extern const bool __static_condition_default_2227; extern const bool __static_condition_default_2561; extern const bool __static_condition_default_3131; extern const bool __static_condition_default_2523; extern const bool __static_condition_default_2536; +extern const bool __static_condition_default_3961; extern const bool __static_condition_default_2701; -extern const bool __static_condition_default_4001; extern const bool __static_condition_default_1549; extern const bool __static_condition_default_2673; extern const bool __static_condition_default_884; extern const bool __static_condition_default_3175; -extern const bool __static_condition_default_3989; +extern const bool __static_condition_default_3988; extern const bool __static_condition_default_951; extern const bool __static_condition_default_169; extern const bool __static_condition_default_1747; extern const bool __static_condition_default_2566; extern const bool __static_condition_default_882; -extern const bool __static_condition_default_3661; extern const bool __static_condition_default_1653; extern const bool __static_condition_default_3029; extern const bool __static_condition_default_1406; extern const bool __static_condition_default_1845; +extern const bool __static_condition_default_3986; extern const bool __static_condition_default_2817; extern const bool __static_condition_default_2521; extern const bool __static_condition_default_1854; extern const bool __static_condition_default_3006; extern const bool __static_condition_default_1690; +extern const bool __static_condition_default_3918; extern const bool __static_condition_default_2452; +extern const bool __static_condition_default_3671; extern const bool __static_condition_default_1766; extern const bool __static_condition_default_2488; extern const bool __static_condition_default_1541; @@ -558,7 +562,6 @@ extern const bool __static_condition_default_630; extern const bool __static_condition_default_1829; extern const bool __static_condition_default_2505; extern const bool __static_condition_default_71; -extern const bool __static_condition_default_3999; extern const bool __static_condition_default_160; extern const bool __static_condition_default_855; extern const bool __static_condition_default_1519; @@ -575,9 +578,9 @@ extern const bool __static_condition_default_1377; extern const bool __static_condition_default_2830; extern const bool __static_condition_default_1281; extern const bool __static_condition_default_2994; +extern const bool __static_condition_default_4008; extern const bool __static_condition_default_1570; extern const bool __static_condition_default_2795; -extern const bool __static_condition_default_3963; extern const bool __static_condition_default_841; extern const bool __static_condition_default_2633; extern const bool __static_condition_default_1801; @@ -599,7 +602,7 @@ extern const bool __static_condition_default_3072; extern const bool __static_condition_default_2101; extern const bool __static_condition_default_2306; extern const bool __static_condition_default_2387; -extern const bool __static_condition_default_3960; +extern const bool __static_condition_default_4004; extern const bool __static_condition_default_2733; extern const bool __static_condition_default_1914; extern const bool __static_condition_default_1878; @@ -608,7 +611,6 @@ extern const bool __static_condition_default_2305; extern const bool __static_condition_default_2462; extern const bool __static_condition_default_2700; extern const bool __static_condition_default_2707; -extern const bool __static_condition_default_3988; extern const bool __static_condition_default_2593; extern const bool __static_condition_default_3434; extern const bool __static_condition_default_3364; @@ -633,25 +635,23 @@ extern const bool __static_condition_default_2587; extern const bool __static_condition_default_642; extern const bool __static_condition_default_2686; extern const bool __static_condition_default_3116; -extern const bool __static_condition_default_3694; extern const bool __static_condition_default_748; extern const bool __static_condition_default_1289; extern const bool __static_condition_default_69; extern const bool __static_condition_default_1458; extern const bool __static_condition_default_1767; extern const bool __static_condition_default_1775; -extern const bool __static_condition_default_3969; extern const bool __static_condition_default_3358; extern const bool __static_condition_default_965; extern const bool __static_condition_default_129; extern const bool __static_condition_default_2443; extern const bool __static_condition_default_2573; +extern const bool __static_condition_default_3696; extern const bool __static_condition_default_3093; extern const bool __static_condition_default_893; extern const bool __static_condition_default_2254; extern const bool __static_condition_default_1633; extern const bool __static_condition_default_2838; -extern const bool __static_condition_default_4009; extern const bool __static_condition_default_905; extern const bool __static_condition_default_2011; extern const bool __static_condition_default_1610; @@ -667,7 +667,6 @@ extern const bool __static_condition_default_3233; extern const bool __static_condition_default_1230; extern const bool __static_condition_default_57; extern const bool __static_condition_default_2027; -extern const bool __static_condition_default_3896; extern const bool __static_condition_default_216; extern const bool __static_condition_default_1453; extern const bool __static_condition_default_1517; @@ -676,6 +675,7 @@ extern const bool __static_condition_default_2320; extern const bool __static_condition_default_1907; extern const bool __static_condition_default_3563; extern const bool __static_condition_default_2796; +extern const bool __static_condition_default_3690; extern const bool __static_condition_default_3362; extern const bool __static_condition_default_2336; extern const bool __static_condition_default_2847; @@ -685,7 +685,6 @@ extern const bool __static_condition_default_1236; extern const bool __static_condition_default_3028; extern const bool __static_condition_default_1413; extern const bool __static_condition_default_2047; -extern const bool __static_condition_default_3669; extern const bool __static_condition_default_752; extern const bool __static_condition_default_166; extern const bool __static_condition_default_1395; @@ -697,11 +696,11 @@ extern const bool __static_condition_default_2603; extern const bool __static_condition_default_2758; extern const bool __static_condition_default_1903; extern const bool __static_condition_default_1958; -extern const bool __static_condition_default_3978; extern const bool __static_condition_default_2415; extern const bool __static_condition_default_2070; extern const bool __static_condition_default_2979; extern const bool __static_condition_default_1353; +extern const bool __static_condition_default_3985; extern const bool __static_condition_default_1773; extern const bool __static_condition_default_2749; extern const bool __static_condition_default_964; @@ -713,17 +712,16 @@ extern const bool __static_condition_default_2610; extern const bool __static_condition_default_931; extern const bool __static_condition_default_1536; extern const bool __static_condition_default_1437; -extern const bool __static_condition_default_3976; extern const bool __static_condition_default_1799; extern const bool __static_condition_default_2323; extern const bool __static_condition_default_2964; extern const bool __static_condition_default_2560; extern const bool __static_condition_default_2742; +extern const bool __static_condition_default_3811; extern const bool __static_condition_default_1809; extern const bool __static_condition_default_147; extern const bool __static_condition_default_1868; extern const bool __static_condition_default_3351; -extern const bool __static_condition_default_4000; extern const bool __static_condition_default_1665; extern const bool __static_condition_default_2988; extern const bool __static_condition_default_3115; @@ -731,10 +729,10 @@ extern const bool __static_condition_default_2586; extern const bool __static_condition_default_1569; extern const bool __static_condition_default_2331; extern const bool __static_condition_default_1652; +extern const bool __static_condition_default_3996; extern const bool __static_condition_default_118; extern const bool __static_condition_default_2062; extern const bool __static_condition_default_3030; -extern const bool __static_condition_default_3986; extern const bool __static_condition_default_1102; extern const bool __static_condition_default_1149; extern const bool __static_condition_default_3085; @@ -745,11 +743,12 @@ extern const bool __static_condition_default_1422; extern const bool __static_condition_default_3646; extern const bool __static_condition_default_1293; extern const bool __static_condition_default_1780; +extern const bool __static_condition_default_3688; extern const bool __static_condition_default_749; extern const bool __static_condition_default_1837; -extern const bool __static_condition_default_4002; extern const bool __static_condition_default_1605; extern const bool __static_condition_default_880; +extern const bool __static_condition_default_3983; extern const bool __static_condition_default_170; extern const bool __static_condition_default_950; extern const bool __static_condition_default_2588; @@ -763,11 +762,12 @@ extern const bool __static_condition_default_625; extern const bool __static_condition_default_1284; extern const bool __static_condition_default_2230; extern const bool __static_condition_default_1264; -extern const bool __static_condition_default_3975; +extern const bool __static_condition_default_3974; extern const bool __static_condition_default_2857; extern const bool __static_condition_default_2841; extern const bool __static_condition_default_3399; extern const bool __static_condition_default_2957; +extern const bool __static_condition_default_4000; extern const bool __static_condition_default_156; extern const bool __static_condition_default_1812; extern const bool __static_condition_default_892; @@ -775,6 +775,7 @@ extern const bool __static_condition_default_1639; extern const bool __static_condition_default_1670; extern const bool __static_condition_default_2086; extern const bool __static_condition_default_189; +extern const bool __static_condition_default_3994; void __static_initializer_default() { __static_renaming("____u_char_0", "__u_char"); __static_renaming("____u_short_1", "__u_short"); @@ -4195,14 +4196,14 @@ static __inline unsigned int (____bswap_32_3232) (unsigned int ____bsx_3231) { if (__static_condition_default_3233) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -4211,14 +4212,14 @@ static __inline ____uint64_t_11 (____bswap_64_3235) (____uint64_t_11 ____bsx_3 if (__static_condition_default_3233) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -4298,14 +4299,14 @@ static __inline unsigned int (____bswap_32_3384) (unsigned int ____bsx_3383) { if (__static_condition_default_3385) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -4314,14 +4315,14 @@ static __inline ____uint64_t_11 (____bswap_64_3387) (____uint64_t_11 ____bsx_3 if (__static_condition_default_3385) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -4534,7 +4535,7 @@ void (__allocate_buffer_3968) () { if (__static_condition_default_3969) { -{ +{// L14 { @@ -4547,7 +4548,7 @@ if ( __pagesize_3967 == - 1 )// L18 do { -{ +{// L9 { @@ -4571,7 +4572,7 @@ if (__static_condition_default_3975) { __static_type_error("type error : no valid expression"); // L9 } } -} +}// L9 } while( 0 );// L9:L19 } @@ -4586,7 +4587,7 @@ if ( __buffer_3966 == ( ( void * ) 0 ) )// L22 do { -{ +{// L9 { @@ -4610,7 +4611,7 @@ if (__static_condition_default_3983) { __static_type_error("type error : no valid expression"); // L9 } } -} +}// L9 } while( 0 );// L9:L23 } @@ -4619,7 +4620,7 @@ if ( __mprotect_3925 ( __buffer_3966 ,4 * __pagesize_3967 ,0x1) == - 1 )// L2 do { -{ +{// L9 { @@ -4643,12 +4644,12 @@ if (__static_condition_default_3989) { __static_type_error("type error : no valid expression"); // L9 } } -} +}// L9 } while( 0 );// L9:L26 } } -} +}// L27 } @@ -4657,7 +4658,7 @@ int (__main_3992) (int __argc_3990, char * (* (__argv_3991))) { if (__static_condition_default_3994) { -{ +{// L34 { @@ -4735,7 +4736,7 @@ if (__static_condition_default_4004) { return 0 ;// L39 } } -} +}// L40 } @@ -4744,7 +4745,7 @@ int (__main_3993) (int __argc_3990, char * (* (__argv_3991))) { if (__static_condition_default_4005) { -{ +{// L34 { @@ -4760,7 +4761,7 @@ if (__static_condition_default_4008) { return 0 ;// L39 } } -} +}// L40 } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/221ac329e93.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/221ac329e93.desugared.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/221ac329e93.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/221ac329e93.desugared.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/221ac329e93.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/221ac329e93.desugared.inferres index 2df07414..65019272 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/221ac329e93.desugared.inferres +++ b/fonda/cpp_testsuite/varBugs/LINUX/221ac329e93.desugared.inferres @@ -1,39 +1,39 @@ -LINUX/221ac329e93.desugared.c:4742: error: Memory Leak - Memory dynamically allocated by `malloc` on line 4681 is not freed after the last access at line 4742, column 1. - 4740. - 4741. } +LINUX/221ac329e93.desugared.c:4743: error: Memory Leak + Memory dynamically allocated by `malloc` on line 4682 is not freed after the last access at line 4743, column 1. + 4741. 4742. } + 4743. } ^ - 4743. int (__main_3993) (int __argc_3990, char * (* (__argv_3991))) { - 4744. + 4744. int (__main_3993) (int __argc_3990, char * (* (__argv_3991))) { + 4745. -LINUX/221ac329e93.desugared.c:4742: error: Memory Leak - Memory dynamically allocated by `malloc` on line 4691 is not freed after the last access at line 4742, column 1. - 4740. - 4741. } +LINUX/221ac329e93.desugared.c:4743: error: Memory Leak + Memory dynamically allocated by `malloc` on line 4692 is not freed after the last access at line 4743, column 1. + 4741. 4742. } + 4743. } ^ - 4743. int (__main_3993) (int __argc_3990, char * (* (__argv_3991))) { - 4744. + 4744. int (__main_3993) (int __argc_3990, char * (* (__argv_3991))) { + 4745. -LINUX/221ac329e93.desugared.c:4742: error: Memory Leak - Memory dynamically allocated by `malloc` on line 4701 is not freed after the last access at line 4742, column 1. - 4740. - 4741. } +LINUX/221ac329e93.desugared.c:4743: error: Memory Leak + Memory dynamically allocated by `malloc` on line 4702 is not freed after the last access at line 4743, column 1. + 4741. 4742. } + 4743. } ^ - 4743. int (__main_3993) (int __argc_3990, char * (* (__argv_3991))) { - 4744. + 4744. int (__main_3993) (int __argc_3990, char * (* (__argv_3991))) { + 4745. -LINUX/221ac329e93.desugared.c:4742: error: Memory Leak - Memory dynamically allocated by `malloc` on line 4711 is not freed after the last access at line 4742, column 1. - 4740. - 4741. } +LINUX/221ac329e93.desugared.c:4743: error: Memory Leak + Memory dynamically allocated by `malloc` on line 4712 is not freed after the last access at line 4743, column 1. + 4741. 4742. } + 4743. } ^ - 4743. int (__main_3993) (int __argc_3990, char * (* (__argv_3991))) { - 4744. + 4744. int (__main_3993) (int __argc_3990, char * (* (__argv_3991))) { + 4745. Found 4 issues diff --git a/fonda/cpp_testsuite/varBugs/LINUX/242f1a34377.clangres b/fonda/cpp_testsuite/varBugs/LINUX/242f1a34377.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/242f1a34377.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/242f1a34377.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/242f1a34377.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/242f1a34377.desugared.c index ad922eb8..7f4f5519 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/242f1a34377.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/242f1a34377.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -32,14 +33,14 @@ void * ((__crypto_alloc_ablkcipher_0) ()) { if (__static_condition_default_1) { -{ +{// L3 { return ( void * ) 0 ;// L4 } -} +}// L5 } @@ -48,7 +49,7 @@ static void (__test_cipher_2) () { if (__static_condition_default_3) { -{ +{// L10 { @@ -60,7 +61,7 @@ if (__static_condition_default_5) { __static_type_error("type error") ; // L11 } } -} +}// L12 } @@ -70,13 +71,13 @@ int (__main_8) (int __argc_6, char * (* (__argv_7))) { { if (__static_condition_default_10) { -{ +{// L16 { } -} +}// L20 } @@ -87,14 +88,14 @@ int (__main_9) (int __argc_6, char * (* (__argv_7))) { { if (__static_condition_default_11) { -{ +{// L16 { __test_cipher_2 ( ) ; // L18 } -} +}// L20 } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/242f1a34377.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/242f1a34377.desugared.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/242f1a34377.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/242f1a34377.desugared.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/2f02c15a5d9.clangres b/fonda/cpp_testsuite/varBugs/LINUX/2f02c15a5d9.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/2f02c15a5d9.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/2f02c15a5d9.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/2f02c15a5d9.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/2f02c15a5d9.desugared.c index 9237ba8f..3e852e11 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/2f02c15a5d9.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/2f02c15a5d9.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -32,14 +33,14 @@ int (__ssb_extif_gpio_in_0) () { if (__static_condition_default_1) { -{ +{// L3 { return 0 ;// L4 } -} +}// L5 } @@ -48,7 +49,7 @@ int (__bcm47xx_gpio_get_value_2) () { if (__static_condition_default_3) { -{ +{// L10 { @@ -60,7 +61,7 @@ if (__static_condition_default_5) { __static_type_error("invalid type found in return expression"); } } -} +}// L12 } @@ -69,14 +70,14 @@ int (__main_8) (int __argc_6, char * (* (__argv_7))) { if (__static_condition_default_10) { -{ +{// L16 { return 0 ;// L20 } -} +}// L21 } @@ -85,7 +86,7 @@ int (__main_9) (int __argc_6, char * (* (__argv_7))) { if (__static_condition_default_11) { -{ +{// L16 { @@ -93,7 +94,7 @@ if (__static_condition_default_11) { __bcm47xx_gpio_get_value_2 ( ) ; // L18 return 0 ;// L20 } -} +}// L21 } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/2f02c15a5d9.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/2f02c15a5d9.desugared.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/2f02c15a5d9.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/2f02c15a5d9.desugared.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.clangres b/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.clangres index 8c821689..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.clangres @@ -1,7 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.c:31:3: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] - int x = *length; // (6) ERROR - ^~~~~ ~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.c:31:7: warning: Value stored to 'x' during its initialization is never read [deadcode.DeadStores] - int x = *length; // (6) ERROR - ^ ~~~~~~~ -2 warnings generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.desugared.c index 36159f2b..9a71468c 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -7,9 +8,9 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_5; extern const bool __static_condition_default_6; extern const bool __static_condition_default_11; +extern const bool __static_condition_default_5; void __static_initializer_default() { __static_renaming("__nondet_0", "nondet"); __static_renaming("__security_old_inode_init_security_3", "security_old_inode_init_security"); @@ -30,14 +31,14 @@ __static_condition_renaming("__static_condition_default_11", "!(defined CONFIG_S int (__nondet_0) () { -{ +{// L1 { return 42 ;// L1 } -} +}// L1 } @@ -46,7 +47,7 @@ int (__security_old_inode_init_security_3) (int * (__len_1)) { { if (__static_condition_default_5) { -{ +{// L5 { @@ -54,7 +55,7 @@ if (__static_condition_default_5) { if ( __nondet_0 ( ) )// L6 { -{ +{// L6 { @@ -62,14 +63,14 @@ if ( __nondet_0 ( ) )// L6 * __len_1 = 0 ; // L7 return 0 ;// L8 } +}// L9 } -} -else +else// L10 { return - 1 ;// L11 } } -} +}// L12 } @@ -80,14 +81,14 @@ int (__security_old_inode_init_security_4) (int * (__len_2)) { { if (__static_condition_default_6) { -{ +{// L15 { return 0 ;// L16 } -} +}// L17 } @@ -95,7 +96,7 @@ return 0 ;// L16 }} int (__reiserfs_security_init_10) (int * (__length_7)) { -{ +{// L21 { @@ -111,7 +112,7 @@ if (__static_condition_default_11) { if ( __error_8 )// L26 { -{ +{// L26 { @@ -119,19 +120,19 @@ if ( __error_8 )// L26 * __length_7 = 0 ; // L27 return __error_8 ;// L28 } -} +}// L29 } int __x_9= * __length_7 ;// L31 return 0 ;// L33 } -} +}// L34 } int (__reiserfs_create_14) () { -{ +{// L37 { @@ -144,24 +145,24 @@ int __length_13;// L39 if ( __retval_12 < 0 )// L42 { -{ +{// L43 { return __retval_12 ;// L44 } -} +}// L45 } return 0 ;// L47 } -} +}// L48 } int (__main_15) (void ) { -{ +{// L51 { @@ -169,7 +170,7 @@ int (__main_15) (void ) { __reiserfs_create_14 ( ) ; // L52 return 0 ;// L53 } -} +}// L54 } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.desugared.clangres index 8f8bb9ee..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.desugared.clangres @@ -1,10 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.desugared.c:111:7: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] -if ( __error_8 )// L26 - ^~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.desugared.c:124:1: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] -int __x_9= * __length_7 ;// L31 -^~~~~~~~~~ ~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.desugared.c:124:6: warning: Value stored to '__x_9' during its initialization is never read [deadcode.DeadStores] -int __x_9= * __length_7 ;// L31 - ^~~~~ ~~~~~~~~~~~~~ -3 warnings generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/36855dcfc98.clangres b/fonda/cpp_testsuite/varBugs/LINUX/36855dcfc98.clangres index 2535e6bd..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/36855dcfc98.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/36855dcfc98.clangres @@ -1,4 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/36855dcfc98.c:6:3: warning: Value stored to 'wakeup' is never read [deadcode.DeadStores] - wakeup = 0; - ^ ~ -1 warning generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/36855dcfc98.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/36855dcfc98.desugared.c index a9843478..cc2d8f69 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/36855dcfc98.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/36855dcfc98.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -21,7 +22,7 @@ __static_condition_renaming("__static_condition_default_3", "(defined CONFIG_BF6 int (__bfin_pm_suspend_mem_enter_1) (void ) { -{ +{// L2 { @@ -38,13 +39,13 @@ if (__static_condition_default_2) { return 0 ;// L9 } } -} +}// L10 } int (__main_6) (int __argc_4, char * (* (__argv_5))) { -{ +{// L13 { @@ -52,7 +53,7 @@ int (__main_6) (int __argc_4, char * (* (__argv_5))) { __bfin_pm_suspend_mem_enter_1 ( ) ; // L14 return 0 ;// L15 } -} +}// L16 } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/36855dcfc98.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/36855dcfc98.desugared.clangres index 067a7081..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/36855dcfc98.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/36855dcfc98.desugared.clangres @@ -1,4 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/36855dcfc98.desugared.c:32:2: warning: Value stored to '__wakeup_0' is never read [deadcode.DeadStores] - __wakeup_0 = 0 ; // L6 - ^ ~ -1 warning generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/472a474c663.clangres b/fonda/cpp_testsuite/varBugs/LINUX/472a474c663.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/472a474c663.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/472a474c663.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/472a474c663.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/472a474c663.desugared.c index b322bcb6..154c26a8 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/472a474c663.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/472a474c663.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -35,14 +36,14 @@ __static_condition_renaming("__static_condition_default_15", "(defined CONFIG_SM int (__nondet_0) () { -{ +{// L3 { return 0 ;// L3 } -} +}// L3 } @@ -51,7 +52,7 @@ void (__enable_IR_x2apic_4) (void ) { if (__static_condition_default_6) { -{ +{// L10 { @@ -66,7 +67,7 @@ if ( __ptr_3 )// L15 __ptr_3 = ( void * ) 0 ; // L1:L16 } } -} +}// L17 } @@ -75,7 +76,7 @@ void (__enable_IR_x2apic_5) (void ) { if (__static_condition_default_7) { -{ +{// L10 { @@ -90,14 +91,14 @@ if ( __ptr_3 )// L15 __ptr_3 = ( void * ) 0 ; // L1:L16 } } -} +}// L17 } } int (__APIC_init_uniprocessor_8) (void ) { -{ +{// L20 { @@ -109,7 +110,7 @@ if (__static_condition_default_7) { __enable_IR_x2apic_5 ( ) ; // L21 } } -} +}// L22 } @@ -117,7 +118,7 @@ int (__smp_sanity_check_9) () { if (__static_condition_default_10) { -{ +{// L26 { @@ -128,7 +129,7 @@ if ( ! __smp_found_config_1 )// L27 } return 0 ;// L29 } -} +}// L30 } @@ -137,7 +138,7 @@ void (__native_smp_prepare_cpus_11) () { if (__static_condition_default_10) { -{ +{// L33 { @@ -145,7 +146,7 @@ if (__static_condition_default_10) { __enable_IR_x2apic_5 ( ) ; // L34 __smp_sanity_check_9 ( ) ; // L35 } -} +}// L36 } @@ -154,14 +155,14 @@ int (__main_12) (void ) { if (__static_condition_default_14) { -{ +{// L40 { return 0 ;// L45 } -} +}// L46 } @@ -170,7 +171,7 @@ int (__main_13) (void ) { if (__static_condition_default_15) { -{ +{// L40 { @@ -179,7 +180,7 @@ if (__static_condition_default_15) { __native_smp_prepare_cpus_11 ( ) ; // L43 return 0 ;// L45 } -} +}// L46 } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/472a474c663.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/472a474c663.desugared.clangres index 69fcc4af..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/472a474c663.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/472a474c663.desugared.clangres @@ -1,4 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/472a474c663.desugared.c:87:13: warning: Dereference of null pointer (loaded from variable '__ptr_3') [core.NullDereference] -* __ptr_3 = 'a' ; // L14 - ~~~~~~~ ^ -1 warning generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.clangres b/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.c index 6a38cbc8..2fbaaca7 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -7,27 +8,27 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); +extern const bool __static_condition_default_51; extern const bool __static_condition_default_43; -extern const bool __static_condition_default_54; -extern const bool __static_condition_default_29; extern const bool __static_condition_default_56; -extern const bool __static_condition_default_59; +extern const bool __static_condition_default_52; +extern const bool __static_condition_default_29; extern const bool __static_condition_default_36; extern const bool __static_condition_default_39; extern const bool __static_condition_default_58; -extern const bool __static_condition_default_60; extern const bool __static_condition_default_53; -extern const bool __static_condition_default_52; -extern const bool __static_condition_default_31; -extern const bool __static_condition_default_44; extern const bool __static_condition_default_57; +extern const bool __static_condition_default_61; +extern const bool __static_condition_default_31; +extern const bool __static_condition_default_55; +extern const bool __static_condition_default_59; +extern const bool __static_condition_default_50; +extern const bool __static_condition_default_54; extern const bool __static_condition_default_45; -extern const bool __static_condition_default_51; extern const bool __static_condition_default_42; -extern const bool __static_condition_default_50; -extern const bool __static_condition_default_55; +extern const bool __static_condition_default_44; +extern const bool __static_condition_default_60; extern const bool __static_condition_default_35; -extern const bool __static_condition_default_61; void __static_initializer_default() { __static_renaming("__int8_t_0", "int8_t"); __static_renaming("__int16_t_1", "int16_t"); @@ -160,14 +161,14 @@ static inline __s64_30 (__ktime_set_34) (const long __secs_33) { if (__static_condition_default_36) { -{ +{// L30 { return ( __s64_30 ) __secs_33 * 1000000000L ;// L31 } -} +}// L32 } @@ -176,7 +177,7 @@ __s64_30 (__ktime_add_ns_41) (__u64_32 __nsec_37) { if (__static_condition_default_43) { -{ +{// L35 { @@ -187,21 +188,21 @@ if ( __nsec_37 < 1000000000L )// L38 { if (__static_condition_default_44) { -{ +{// L38 { __tmp_38 = __nsec_37 ; // L39 } +}// L40 } } -} -else +else// L40 { if (__static_condition_default_45) { -{ +{// L40 { @@ -210,12 +211,12 @@ unsigned long __sec_40= __nsec_37 / 1000000000L;// L41 __tmp_38 = __ktime_set_34 (( __s32_28 ) __sec_40 ) ; // L42 } -} +}// L43 } } return __tmp_38 ;// L45 } -} +}// L46 } @@ -224,7 +225,7 @@ static __u64_32 (__tick_nohz_stop_sched_tick_48) () { if (__static_condition_default_50) { -{ +{// L51 { @@ -242,7 +243,7 @@ if ( __time_delta_46 < ( ( __s64_30 ) ~ ( ( __u64_32 ) 1 << 63 ) ) )// L55 { __expires_47 = ( __time_delta_46 ) ; // L25:L56 } -else +else// L57 { if (__static_condition_default_52) { __expires_47 = ( ( __s64_30 ) ~ ( ( __u64_32 ) 1 << 63 ) ) ; // L16:L58 @@ -259,7 +260,7 @@ if (__static_condition_default_55) { __static_type_error("invalid type found in return expression"); } } -} +}// L61 } @@ -268,7 +269,7 @@ static __u64_32 (__tick_nohz_stop_sched_tick_49) () { if (__static_condition_default_56) { -{ +{// L51 { @@ -286,7 +287,7 @@ if ( __time_delta_46 < ( ( __s64_30 ) ~ ( ( __u64_32 ) 1 << 63 ) ) )// L55 { __expires_47 = __ktime_add_ns_41 ( __time_delta_46 ) ; // L56 } -else +else// L57 { if (__static_condition_default_58) { __expires_47 = ( ( __s64_30 ) ~ ( ( __u64_32 ) 1 << 63 ) ) ; // L16:L58 @@ -303,14 +304,14 @@ if (__static_condition_default_61) { __static_type_error("invalid type found in return expression"); } } -} +}// L61 } } int (__main_64) (int __argc_62, char * (* (__argv_63))) { -{ +{// L64 { @@ -323,7 +324,7 @@ if (__static_condition_default_56) { } return 0 ;// L66 } -} +}// L67 } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.clangres index bc21d33f..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.clangres @@ -1,10 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.c:216:1: warning: Undefined or garbage value returned to caller [core.uninitialized.UndefReturn] -return __tmp_38 ;// L45 -^~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.c:256:1: warning: Undefined or garbage value returned to caller [core.uninitialized.UndefReturn] -return __expires_47 ;// L60 -^~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.c:300:1: warning: Undefined or garbage value returned to caller [core.uninitialized.UndefReturn] -return __expires_47 ;// L60 -^~~~~~~~~~~~~~~~~~~~ -3 warnings generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.clangres b/fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.clangres index 8629f8de..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.clangres @@ -1,5 +1 @@ -In file included from :344: -:1:8: error: 'defined' cannot be used as a macro name -#undef defined - ^ -1 error generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.desugared.c index f12f4566..98fc0b81 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -1362,7 +1363,7 @@ int (__add_uevent_var_1100) () { { if (__static_condition_default_1102) { -{ +{// L11 { @@ -1386,7 +1387,7 @@ __static_type_error("type error") ; // L13 } return 0 ;// L14 } -} +}// L15 } @@ -1397,14 +1398,14 @@ int (__add_uevent_var_1101) () { { if (__static_condition_default_1106) { -{ +{// L18 { return 0 ;// L18 } -} +}// L18 } @@ -1412,7 +1413,7 @@ return 0 ;// L18 }} int (__input_add_uevent_modalias_var_1107) () { -{ +{// L22 { @@ -1440,13 +1441,13 @@ if (__static_condition_default_1111) { } return 0 ;// L27 } -} +}// L28 } int (__main_1114) (int __argc_1112, char * (* (__argv_1113))) { -{ +{// L31 { @@ -1454,7 +1455,7 @@ int (__main_1114) (int __argc_1112, char * (* (__argv_1113))) { __input_add_uevent_modalias_var_1107 ( ) ; // L32 return 0 ;// L33 } -} +}// L34 } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.desugared.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/60e233a5660.desugared.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.clangres b/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.desugared.c index 62cb611b..0fcc4b90 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -41,7 +42,7 @@ void (__irq_domain_add_3) (int * (__ops_1)) { if (__static_condition_default_4) { -{ +{// L11 { @@ -49,7 +50,7 @@ if (__static_condition_default_4) { int __irq_2= * __ops_1 ;// L12 } -} +}// L13 } @@ -58,7 +59,7 @@ int (__twl_probe_6) () { if (__static_condition_default_7) { -{ +{// L18 { @@ -75,7 +76,7 @@ if (__static_condition_default_10) { __irq_domain_add_3 ( __ops_5 ) ; // L25 } } -} +}// L26 } @@ -84,14 +85,14 @@ int (__main_11) () { if (__static_condition_default_14) { -{ +{// L30 { return 0 ;// L34 } -} +}// L35 } @@ -100,7 +101,7 @@ int (__main_12) () { if (__static_condition_default_15) { -{ +{// L30 { @@ -108,7 +109,7 @@ if (__static_condition_default_15) { __twl_probe_6 ( ) ; // L32 return 0 ;// L34 } -} +}// L35 } @@ -117,14 +118,14 @@ int (__main_13) () { if (__static_condition_default_16) { -{ +{// L30 { return 0 ;// L34 } -} +}// L35 } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.desugared.clangres index b264f7e4..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.desugared.clangres @@ -1,7 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.desugared.c:49:6: warning: Value stored to '__irq_2' during its initialization is never read [deadcode.DeadStores] -int __irq_2= * __ops_1 ;// L12 - ^~~~~~~ ~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.desugared.c:49:15: warning: Dereference of null pointer (loaded from variable '__ops_1') [core.NullDereference] -int __irq_2= * __ops_1 ;// L12 - ^~~~~~~~~~ -2 warnings generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.clangres b/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.clangres index 1a88ea26..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.clangres @@ -1,5 +1 @@ -In file included from :344: -:3:8: error: 'defined' cannot be used as a macro name -#undef defined - ^ -1 error generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.desugared.c index d97323a1..0ab08f55 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -59,14 +60,14 @@ __static_condition_renaming("__static_condition_default_31", "(defined CONFIG_AR extern void (____assert_fail_4) (const char * (____assertion_0), const char * (____file_1), unsigned int ____line_2, const char * (____function_3));// L1:L3 int (__nondet_5) () { -{ +{// L5 { return 42 ;// L5 } -} +}// L5 } @@ -75,7 +76,7 @@ int (__omap3_configure_core_dpll_7) () { if (__static_condition_default_8) { -{ +{// L12 { @@ -83,7 +84,7 @@ if (__static_condition_default_8) { ( ( ___omap3_sram_configure_core_dpll_6 ) ? ( void ) ( 0 ) : ____assert_fail_4 ("_omap3_sram_configure_core_dpll","63878ac.c",16, __PRETTY_FUNCTION__ ) ) ; // L13:L15 return * ___omap3_sram_configure_core_dpll_6 ;// L16 } -} +}// L17 } @@ -93,14 +94,14 @@ void (__omap3_sram_restore_context_10) (void ) { if (__static_condition_default_11) { -{ +{// L23 { ___omap3_sram_configure_core_dpll_6 = & __some_int_9 ; // L24 } -} +}// L25 } @@ -109,7 +110,7 @@ int (__omap3_core_dpll_m2_set_rate_12) () { if (__static_condition_default_14) { -{ +{// L29 { @@ -117,7 +118,7 @@ if (__static_condition_default_14) { __omap3_configure_core_dpll_7 ( ) ; // L30 return 0 ;// L31 } -} +}// L32 } @@ -126,7 +127,7 @@ int (__omap3_core_dpll_m2_set_rate_13) () { if (__static_condition_default_15) { -{ +{// L29 { @@ -134,7 +135,7 @@ if (__static_condition_default_15) { __omap3_configure_core_dpll_7 ( ) ; // L30 return 0 ;// L31 } -} +}// L32 } @@ -143,7 +144,7 @@ int (___omap2_init_reprogram_sdrc_17) (void ) { if (__static_condition_default_18) { -{ +{// L35 { @@ -158,7 +159,7 @@ if (__static_condition_default_20) { } return __v_16 ;// L40 } -} +}// L41 } @@ -167,14 +168,14 @@ int (__omap34xx_sram_init_21) (void ) { if (__static_condition_default_23) { -{ +{// L45 { return 0 ;// L49 } -} +}// L50 } @@ -183,7 +184,7 @@ int (__omap34xx_sram_init_22) (void ) { if (__static_condition_default_24) { -{ +{// L45 { @@ -198,14 +199,14 @@ if (__static_condition_default_27) { return 0 ;// L49 } } -} +}// L50 } } int (__omap_sram_init_28) (void ) { -{ +{// L53 { @@ -221,13 +222,13 @@ if (__static_condition_default_24) { } return 0 ;// L57 } -} +}// L58 } void (__omap_sdrc_init_29) () { -{ +{// L61 { @@ -237,47 +238,47 @@ if ( __nondet_5 ( ) )// L64 { if (__static_condition_default_30) { -{ +{// L64 { } -} +}// L68 } if (__static_condition_default_31) { -{ +{// L64 { ___omap2_init_reprogram_sdrc_17 ( ) ; // L66 } +}// L68 } } } -} -} +}// L69 } void (__omap3pandora_init_32) (void ) { -{ +{// L72 { __omap_sdrc_init_29 ( ) ; // L73 } -} +}// L74 } int (__main_33) (void ) { -{ +{// L77 { @@ -285,7 +286,7 @@ int (__main_33) (void ) { __omap3pandora_init_32 ( ) ; // L78 return 0 ;// L79 } -} +}// L80 } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.desugared.clangres index e1a9bd4e..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.desugared.clangres @@ -1,4 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.desugared.c:159:1: warning: Undefined or garbage value returned to caller [core.uninitialized.UndefReturn] -return __v_16 ;// L40 -^~~~~~~~~~~~~~ -1 warning generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/6515e48932c.clangres b/fonda/cpp_testsuite/varBugs/LINUX/6515e48932c.clangres index 930ea29e..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/6515e48932c.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/6515e48932c.clangres @@ -1,5 +1 @@ -In file included from :344: -:1:9: error: 'defined' cannot be used as a macro name -#define defined 1 - ^ -1 error generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/6515e48932c.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/6515e48932c.desugared.c index b773195f..c6fb83b3 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/6515e48932c.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/6515e48932c.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -32,14 +33,14 @@ void (__omap2_set_globals_242x_0) (void ) { if (__static_condition_default_1) { -{ +{// L3 { return ;// L4 } -} +}// L5 } @@ -48,7 +49,7 @@ static void (__omap_h4_map_io_2) (void ) { if (__static_condition_default_3) { -{ +{// L10 { @@ -60,7 +61,7 @@ if (__static_condition_default_5) { __static_type_error("type error") ; // L11 } } -} +}// L12 } @@ -70,13 +71,13 @@ int (__main_8) (int __argc_6, char * (* (__argv_7))) { { if (__static_condition_default_10) { -{ +{// L16 { } -} +}// L20 } @@ -87,14 +88,14 @@ int (__main_9) (int __argc_6, char * (* (__argv_7))) { { if (__static_condition_default_11) { -{ +{// L16 { __omap_h4_map_io_2 ( ) ; // L18 } -} +}// L20 } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/6515e48932c.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/6515e48932c.desugared.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/6515e48932c.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/6515e48932c.desugared.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/657e9649e74.clangres b/fonda/cpp_testsuite/varBugs/LINUX/657e9649e74.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/657e9649e74.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/657e9649e74.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/657e9649e74.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/657e9649e74.desugared.c index 5e730773..d5f8e70d 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/657e9649e74.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/657e9649e74.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -62,14 +63,14 @@ int (__nondet_14) () { if (__static_condition_default_16) { -{ +{// L3 { return 42 ;// L3 } -} +}// L3 } @@ -78,14 +79,14 @@ int (__nondet_15) () { if (__static_condition_default_17) { -{ +{// L3 { return 42 ;// L3 } -} +}// L3 } @@ -93,7 +94,7 @@ return 42 ;// L3 static int __preempt_counter_18= 0;// L5 static inline void (__tcp_free_md5sig_pool_19) (void ) { -{ +{// L20 { @@ -105,13 +106,13 @@ if (__static_condition_default_21) { __static_type_error("type error : no valid expression"); // L21 } } -} +}// L22 } static inline void (__tcp_put_md5sig_pool_22) (void ) { -{ +{// L25 { @@ -123,7 +124,7 @@ if (__static_condition_default_24) { ( __preempt_counter_18 -- ) ; // L10:L26 } } -} +}// L27 } @@ -132,20 +133,20 @@ void (__tcp_twsk_destructor_25) () { { if (__static_condition_default_26) { -{ +{// L30 { } -} +}// L35 } if (__static_condition_default_27) { -{ +{// L30 { @@ -163,7 +164,7 @@ if ( __nondet_15 ( ) )// L32 } } } -} +}// L35 } @@ -171,46 +172,46 @@ if ( __nondet_15 ( ) )// L32 }} static inline void (__twsk_destructor_30) () { -{ +{// L38 { __tcp_twsk_destructor_25 ( ) ; // L39 } -} +}// L40 } static void (__inet_twsk_free_31) () { -{ +{// L43 { __twsk_destructor_30 ( ) ; // L44 } -} +}// L45 } void (__inet_twsk_put_32) () { -{ +{// L48 { __inet_twsk_free_31 ( ) ; // L49 } -} +}// L50 } static int (__inet_twdr_do_twkill_work_33) () { -{ +{// L53 { @@ -218,26 +219,26 @@ static int (__inet_twdr_do_twkill_work_33) () { __inet_twsk_put_32 ( ) ; // L54 return 0 ;// L55 } -} +}// L56 } void (__inet_twdr_hangman_34) () { -{ +{// L59 { __inet_twdr_do_twkill_work_33 ( ) ; // L60 } -} +}// L61 } static inline void (____run_timers_36) () { -{ +{// L64 { @@ -248,7 +249,7 @@ int __preempt_count_35= ( __preempt_counter_18 );// L65 if ( __preempt_count_35 != ( __preempt_counter_18 ) )// L67 { -{ +{// L67 { @@ -263,16 +264,16 @@ if (__static_condition_default_39) { __static_type_error("type error") ; // L68:L91 } } +}// L69 } } -} -} +}// L70 } int (__main_40) (void ) { -{ +{// L73 { @@ -280,7 +281,7 @@ int (__main_40) (void ) { ____run_timers_36 ( ) ; // L74 return 0 ;// L75 } -} +}// L76 } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/657e9649e74.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/657e9649e74.desugared.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/657e9649e74.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/657e9649e74.desugared.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.clangres b/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.clangres index eb9ae127..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.clangres @@ -1,7 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.c:16:24: error: use of undeclared identifier 'i2c_master_send' - int codec_hw_write = i2c_master_send; // ERROR - ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.c:24:24: error: use of undeclared identifier 'i2c_master_send' - int codec_hw_write = i2c_master_send; // ERROR - ^ -2 errors generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.desugared.c index f11acd7b..6b99b5fb 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -40,7 +41,7 @@ static int (__da7210_init_3) () { if (__static_condition_default_4) { -{ +{// L15 { @@ -53,7 +54,7 @@ __static_type_error("invalid declaration of codec_hw_write under this presence c return 0 ;// L17 } -} +}// L18 } @@ -62,7 +63,7 @@ static int (__ak4642_init_7) () { if (__static_condition_default_8) { -{ +{// L23 { @@ -75,7 +76,7 @@ __static_type_error("invalid declaration of codec_hw_write under this presence c return 0 ;// L25 } -} +}// L26 } @@ -84,7 +85,7 @@ int (__main_11) (int __argc_9, char * (* (__argv_10))) { if (__static_condition_default_13) { -{ +{// L30 { @@ -94,7 +95,7 @@ if (__static_condition_default_14) { } return 0 ;// L37 } -} +}// L38 } @@ -103,7 +104,7 @@ int (__main_12) (int __argc_9, char * (* (__argv_10))) { if (__static_condition_default_15) { -{ +{// L30 { @@ -114,7 +115,7 @@ if (__static_condition_default_16) { __ak4642_init_7 ( ) ; // L35 return 0 ;// L37 } -} +}// L38 } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.desugared.clangres index 84e906c5..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.desugared.clangres @@ -1,7 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.desugared.c:48:6: warning: Value stored to '__codec_hw_write_1' during its initialization is never read [deadcode.DeadStores] -int __codec_hw_write_1= __i2c_master_send_0 ;// L16 - ^~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.desugared.c:70:6: warning: Value stored to '__codec_hw_write_5' during its initialization is never read [deadcode.DeadStores] -int __codec_hw_write_5= __i2c_master_send_0 ;// L24 - ^~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~ -2 warnings generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.clangres b/fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.clangres index 1a88ea26..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.clangres @@ -1,5 +1 @@ -In file included from :344: -:3:8: error: 'defined' cannot be used as a macro name -#undef defined - ^ -1 error generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.desugared.c index 92a71846..38f5adcc 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -40,14 +41,14 @@ int (__i2c_dw_init_0) () { if (__static_condition_default_1) { -{ +{// L3 { return 0 ;// L4 } -} +}// L5 } @@ -56,14 +57,14 @@ int (__i2c_dw_init_3) () { if (__static_condition_default_4) { -{ +{// L10 { return 0 ;// L11 } -} +}// L12 } @@ -72,7 +73,7 @@ int (__main_5) (void ) { if (__static_condition_default_7) { -{ +{// L17 { @@ -87,7 +88,7 @@ if (__static_condition_default_10) { return 0 ;// L21 } } -} +}// L22 } @@ -96,7 +97,7 @@ int (__main_6) (void ) { if (__static_condition_default_11) { -{ +{// L17 { @@ -109,7 +110,7 @@ __static_type_error("type error") ; // L19 } return 0 ;// L21 } -} +}// L22 } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.desugared.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/68bb91baa0.desugared.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.clangres b/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.clangres index 8629f8de..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.clangres @@ -1,5 +1 @@ -In file included from :344: -:1:8: error: 'defined' cannot be used as a macro name -#undef defined - ^ -1 error generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.c index 8dfa1f57..b1e3d7aa 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -34,20 +35,20 @@ extern void * ((__malloc_1) (unsigned long ____size_0));// L5 extern void (__free_3) (void * (____ptr_2));// L7 int (__nondet_4) () { -{ +{// L9 { return 42 ;// L9 } -} +}// L9 } int (__load_module_13) () { -{ +{// L18 { @@ -72,7 +73,7 @@ if (__static_condition_default_14) { if ( ! ( __mod_9 [ 0 ] ) )// L31 { -{ +{// L32 { @@ -83,7 +84,7 @@ if ( ! ( __mod_9 [ 0 ] ) )// L31 goto free_mod_3; } } -} +}// L35 } } if (__static_condition_default_15) { @@ -95,7 +96,7 @@ if (__static_condition_default_14) { if ( ! __ptr_11 )// L39 { -{ +{// L39 { @@ -107,13 +108,13 @@ goto free_percpu_2; goto free_percpu_5; } } -} +}// L42 } ( __mod_9 [ 1 ] ) = __ptr_11 ; // L15:L43 while ( __nondet_4 ( ) )// L45 { -{ +{// L45 { @@ -127,7 +128,7 @@ if ( __nondet_4 ( ) )// L49 break ; // L50 } } -} +}// L51 } if ( __nondet_4 ( ) )// L53 { @@ -181,13 +182,13 @@ free ( __hdr_8 ) ; // L67 } return __err_10 ;// L69 } -} +}// L70 } int (__main_18) (void ) { -{ +{// L72 { @@ -195,7 +196,7 @@ int (__main_18) (void ) { __load_module_13 ( ) ; // L73 return 0 ;// L74 } -} +}// L75 } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.clangres index f459dc91..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.clangres @@ -1,19 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.c:95:9: warning: Potential leak of memory pointed to by '__ptr_11' [unix.Malloc] -if ( ! __ptr_11 )// L39 - ^~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.c:121:10: warning: Value stored to '__dest_12' during its initialization is never read [deadcode.DeadStores] -void * (__dest_12)= ( __mod_9 [ 1 ] );// L46 - ^~~~~~~~~ ~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.c:146:1: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] -free (( __mod_9 [ 1 ] )) ; // L60 -^~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.c:153:1: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] -free (( __mod_9 [ 0 ] )) ; // L63 -^~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.c:177:1: warning: Attempt to free released memory [unix.Malloc] -free ( __hdr_8 ) ; // L67 -^~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.c:182:9: warning: Potential leak of memory pointed to by '__mod_9' [unix.Malloc] -return __err_10 ;// L69 - ^~~~~~~~ -6 warnings generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/76baeebf7df.clangres b/fonda/cpp_testsuite/varBugs/LINUX/76baeebf7df.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/76baeebf7df.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/76baeebf7df.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/76baeebf7df.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/76baeebf7df.desugared.c index 0ab8a96f..0590d439 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/76baeebf7df.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/76baeebf7df.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -1426,7 +1427,7 @@ void (__setup_node_to_cpumask_map_1106) (void ) { if (__static_condition_default_1107) { -{ +{// L27 { @@ -1446,7 +1447,7 @@ if (__static_condition_default_1110) { } } } -} +}// L33 } @@ -1457,13 +1458,13 @@ static inline void (__setup_node_to_cpumask_map_1120) (void ) { { if (__static_condition_default_1124) { -{ +{// L64 { } -} +}// L64 } @@ -1474,7 +1475,7 @@ const __cpumask_t_1092 * ((__cpumask_of_node_1121) (int __node_1111)) { { if (__static_condition_default_1125) { -{ +{// L37 { @@ -1482,7 +1483,7 @@ if (__static_condition_default_1125) { if ( __node_1111 >= __nr_node_ids_1101 )// L38 { -{ +{// L38 { @@ -1490,12 +1491,12 @@ if ( __node_1111 >= __nr_node_ids_1101 )// L38 __static_type_error("type error : no valid expression"); // L39:L40 return __cpu_none_mask_1095 ;// L41 } -} +}// L42 } if ( __node_to_cpumask_map_1102 [ __node_1111 ] == ( ( void * ) 0 ) )// L43 { -{ +{// L43 { @@ -1503,11 +1504,11 @@ if ( __node_to_cpumask_map_1102 [ __node_1111 ] == ( ( void * ) 0 ) )// L43 __static_type_error("type error : no valid expression"); // L44 return __cpu_online_mask_1098 ;// L45 } -} +}// L46 } return __node_to_cpumask_map_1102 [ __node_1111 ] ;// L47 } -} +}// L48 } @@ -1518,7 +1519,7 @@ const __cpumask_t_1093 * ((__cpumask_of_node_1122) (int __node_1111)) { { if (__static_condition_default_1126) { -{ +{// L37 { @@ -1526,7 +1527,7 @@ if (__static_condition_default_1126) { if ( __node_1111 >= __nr_node_ids_1101 )// L38 { -{ +{// L38 { @@ -1534,12 +1535,12 @@ if ( __node_1111 >= __nr_node_ids_1101 )// L38 __static_type_error("type error : no valid expression"); // L39:L40 return __cpu_none_mask_1096 ;// L41 } -} +}// L42 } __static_type_error("invalid type found in if statement"); return __node_to_cpumask_map_1103 [ __node_1111 ] ;// L47 } -} +}// L48 } @@ -1550,7 +1551,7 @@ const __cpumask_t_1094 * ((__cpumask_of_node_1123) (int __node_1111)) { { if (__static_condition_default_1127) { -{ +{// L37 { @@ -1558,7 +1559,7 @@ if (__static_condition_default_1127) { if ( __node_1111 >= __nr_node_ids_1101 )// L38 { -{ +{// L38 { @@ -1566,12 +1567,12 @@ if ( __node_1111 >= __nr_node_ids_1101 )// L38 __static_type_error("type error : no valid expression"); // L39:L40 return __cpu_none_mask_1097 ;// L41 } -} +}// L42 } if ( __node_to_cpumask_map_1104 [ __node_1111 ] == ( ( void * ) 0 ) )// L43 { -{ +{// L43 { @@ -1579,11 +1580,11 @@ if ( __node_to_cpumask_map_1104 [ __node_1111 ] == ( ( void * ) 0 ) )// L43 __static_type_error("type error : no valid expression"); // L44 return __cpu_online_mask_1100 ;// L45 } -} +}// L46 } return __node_to_cpumask_map_1104 [ __node_1111 ] ;// L47 } -} +}// L48 } @@ -1593,14 +1594,14 @@ static inline int (__get_mp_bus_to_node_1129) (int __busnum_1128) { if (__static_condition_default_1130) { -{ +{// L112 { return 0 ;// L113 } -} +}// L114 } @@ -1609,7 +1610,7 @@ static int (__local_cpus_show_1136) (int __node_1131) { if (__static_condition_default_1137) { -{ +{// L128 { @@ -1636,7 +1637,7 @@ __static_type_error("type error") ; // L137 } return __len_1135 ;// L139 } -} +}// L140 } @@ -1645,7 +1646,7 @@ static int (__dev_attr_show_1144) (int __node_1142) { if (__static_condition_default_1137) { -{ +{// L143 { @@ -1655,7 +1656,7 @@ int __ret_1143;// L144 __ret_1143 = __local_cpus_show_1136 ( __node_1142 ) ; // L145 return __ret_1143 ;// L146 } -} +}// L147 } @@ -1664,7 +1665,7 @@ int (__pcibios_scan_root_1145) () { if (__static_condition_default_1137) { -{ +{// L150 { @@ -1673,7 +1674,7 @@ if (__static_condition_default_1146) { return __get_mp_bus_to_node_1129 (0) ;// L151 } } -} +}// L152 } @@ -1682,7 +1683,7 @@ int (__main_1150) (int __argc_1147, char * (* (__argv_1148))) { if (__static_condition_default_1152) { -{ +{// L156 { @@ -1698,7 +1699,7 @@ if (__static_condition_default_1155) { } return 0 ;// L165 } -} +}// L166 } @@ -1707,7 +1708,7 @@ int (__main_1151) (int __argc_1147, char * (* (__argv_1148))) { if (__static_condition_default_1156) { -{ +{// L156 { @@ -1720,7 +1721,7 @@ int __node_1149= __pcibios_scan_root_1145 ( );// L162 __dev_attr_show_1144 ( __node_1149 ) ; // L163 return 0 ;// L165 } -} +}// L166 } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/76baeebf7df.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/76baeebf7df.desugared.clangres index 7bbc8f95..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/76baeebf7df.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/76baeebf7df.desugared.clangres @@ -1,7 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/76baeebf7df.desugared.c:1629:31: warning: Dereference of undefined pointer value (loaded from variable '__mask_1132') [core.NullDereference] - __printf_421 ("mask: %ld\n",* __mask_1132 ) ; // L137 - ^~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/76baeebf7df.desugared.c:1632:31: warning: Dereference of undefined pointer value (loaded from variable '__mask_1134') [core.NullDereference] - __printf_421 ("mask: %ld\n",* __mask_1134 ) ; // L137 - ^~~~~~~~~~~~~~ -2 warnings generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.clangres b/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.clangres index 72b0cc11..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.clangres @@ -1,10 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.c:8:7: warning: Value stored to 'x' during its initialization is never read [deadcode.DeadStores] - int x = *inode; // ERROR (7) - ^ ~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.c:39:3: warning: Value stored to 'driver_data' is never read [deadcode.DeadStores] - driver_data = &some_int; - ^ ~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.c:44:3: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] - tty_release(driver_data); // (3) - ^~~~~~~~~~~~~~~~~~~~~~~~ -3 warnings generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.desugared.c index 21971c5c..223037c6 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -39,14 +40,14 @@ __static_condition_renaming("__static_condition_default_21", "(defined CONFIG_UN int (__nondet_0) () { -{ +{// L1 { return 42 ;// L1 } -} +}// L1 } @@ -56,20 +57,20 @@ void (__pts_sb_from_inode_4) (int * (__inode_2)) { { if (__static_condition_default_5) { -{ +{// L6 { } -} +}// L10 } if (__static_condition_default_6) { -{ +{// L6 { @@ -77,7 +78,7 @@ if (__static_condition_default_6) { int __x_3= * __inode_2 ;// L8 } -} +}// L10 } @@ -85,14 +86,14 @@ int __x_3= * __inode_2 ;// L8 }} void (__devpts_pty_kill_8) (int * (__inode_7)) { -{ +{// L13 { __pts_sb_from_inode_4 ( __inode_7 ) ; // L14 } -} +}// L15 } @@ -101,27 +102,27 @@ void (__pty_close_10) (int * (__driver_data_9)) { { if (__static_condition_default_11) { -{ +{// L18 { } -} +}// L22 } if (__static_condition_default_12) { -{ +{// L18 { __devpts_pty_kill_8 ( __driver_data_9 ) ; // L20 } -} +}// L22 } @@ -129,7 +130,7 @@ if (__static_condition_default_12) { }} int (__tty_release_14) (int * (__driver_data_13)) { -{ +{// L25 { @@ -137,7 +138,7 @@ int (__tty_release_14) (int * (__driver_data_13)) { __pty_close_10 ( __driver_data_13 ) ; // L26 return 0 ;// L27 } -} +}// L28 } @@ -145,7 +146,7 @@ int (__ptmx_open_16) () { if (__static_condition_default_17) { -{ +{// L32 { @@ -155,7 +156,7 @@ int * (__driver_data_15);// L33 if ( __nondet_0 ( ) )// L35 { -{ +{// L35 { @@ -165,7 +166,7 @@ if ( __nondet_0 ( ) )// L35 goto err_release_0; } } -} +}// L37 } __driver_data_15 = & __some_int_1 ; // L39 return 0 ;// L41 @@ -176,7 +177,7 @@ return 0 ;// L41 } return - 1 ;// L45 } -} +}// L46 } @@ -185,14 +186,14 @@ int (__main_18) () { if (__static_condition_default_20) { -{ +{// L50 { return 0 ;// L54 } -} +}// L55 } @@ -201,7 +202,7 @@ int (__main_19) () { if (__static_condition_default_21) { -{ +{// L50 { @@ -209,7 +210,7 @@ if (__static_condition_default_21) { __ptmx_open_16 ( ) ; // L52 return 0 ;// L54 } -} +}// L55 } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.desugared.clangres index 948ba074..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.desugared.clangres @@ -1,10 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.desugared.c:77:6: warning: Value stored to '__x_3' during its initialization is never read [deadcode.DeadStores] -int __x_3= * __inode_2 ;// L8 - ^~~~~ ~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.desugared.c:170:2: warning: Value stored to '__driver_data_15' is never read [deadcode.DeadStores] - __driver_data_15 = & __some_int_1 ; // L39 - ^ ~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.desugared.c:175:2: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] - __tty_release_14 ( __driver_data_15 ) ; // L44 - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -3 warnings generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/7c6048b7c83.clangres b/fonda/cpp_testsuite/varBugs/LINUX/7c6048b7c83.clangres index 8629f8de..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/7c6048b7c83.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/7c6048b7c83.clangres @@ -1,5 +1 @@ -In file included from :344: -:1:8: error: 'defined' cannot be used as a macro name -#undef defined - ^ -1 error generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/7c6048b7c83.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/7c6048b7c83.desugared.c index b08eccbf..951ae6d7 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/7c6048b7c83.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/7c6048b7c83.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -38,14 +39,14 @@ void (__backlight_device_unregister_0) () { if (__static_condition_default_1) { -{ +{// L7 { return ;// L8 } -} +}// L9 } @@ -54,7 +55,7 @@ static int (__acpi_video_bus_put_one_device_2) () { if (__static_condition_default_3) { -{ +{// L14 { @@ -67,7 +68,7 @@ __static_type_error("type error") ; // L15 } return 0 ;// L16 } -} +}// L17 } @@ -76,14 +77,14 @@ int (__main_8) (int __argc_6, char * (* (__argv_7))) { if (__static_condition_default_10) { -{ +{// L21 { return 0 ;// L25 } -} +}// L26 } @@ -92,7 +93,7 @@ int (__main_9) (int __argc_6, char * (* (__argv_7))) { if (__static_condition_default_11) { -{ +{// L21 { @@ -107,7 +108,7 @@ if (__static_condition_default_14) { return 0 ;// L25 } } -} +}// L26 } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/7c6048b7c83.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/7c6048b7c83.desugared.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/7c6048b7c83.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/7c6048b7c83.desugared.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/809e660f438.clangres b/fonda/cpp_testsuite/varBugs/LINUX/809e660f438.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/809e660f438.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/809e660f438.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/809e660f438.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/809e660f438.desugared.c index 76046116..78cb5212 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/809e660f438.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/809e660f438.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -21,33 +22,33 @@ __static_condition_renaming("__static_condition_default_4", "(defined CONFIG_ARM static int (__do_page_fault_0) () { -{ +{// L2 { return 0 ;// L3 } -} +}// L4 } static int (__do_sect_fault_1) () { -{ +{// L7 { return 0 ;// L8 } -} +}// L9 } int (__main_2) () { -{ +{// L12 { @@ -63,7 +64,7 @@ if (__static_condition_default_3) { } return 0 ;// L19 } -} +}// L20 } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/809e660f438.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/809e660f438.desugared.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/809e660f438.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/809e660f438.desugared.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/8c8296223f3.clangres b/fonda/cpp_testsuite/varBugs/LINUX/8c8296223f3.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/8c8296223f3.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/8c8296223f3.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/8c8296223f3.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/8c8296223f3.desugared.c index 574adee0..e156f2d5 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/8c8296223f3.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/8c8296223f3.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -8,10 +9,11 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); extern const bool __static_condition_default_582; +extern const bool __static_condition_default_596; +extern const bool __static_condition_default_622; extern const bool __static_condition_default_61; extern const bool __static_condition_default_271; extern const bool __static_condition_default_289; -extern const bool __static_condition_default_808; extern const bool __static_condition_default_415; extern const bool __static_condition_default_326; extern const bool __static_condition_default_283; @@ -19,56 +21,55 @@ extern const bool __static_condition_default_380; extern const bool __static_condition_default_68; extern const bool __static_condition_default_247; extern const bool __static_condition_default_342; +extern const bool __static_condition_default_809; extern const bool __static_condition_default_294; extern const bool __static_condition_default_303; extern const bool __static_condition_default_253; extern const bool __static_condition_default_256; -extern const bool __static_condition_default_596; extern const bool __static_condition_default_238; -extern const bool __static_condition_default_622; extern const bool __static_condition_default_737; +extern const bool __static_condition_default_808; extern const bool __static_condition_default_265; extern const bool __static_condition_default_580; extern const bool __static_condition_default_306; +extern const bool __static_condition_default_816; extern const bool __static_condition_default_395; +extern const bool __static_condition_default_628; extern const bool __static_condition_default_421; extern const bool __static_condition_default_424; -extern const bool __static_condition_default_628; +extern const bool __static_condition_default_815; extern const bool __static_condition_default_241; extern const bool __static_condition_default_418; -extern const bool __static_condition_default_816; extern const bool __static_condition_default_216; extern const bool __static_condition_default_250; -extern const bool __static_condition_default_605; +extern const bool __static_condition_default_630; +extern const bool __static_condition_default_810; extern const bool __static_condition_default_300; extern const bool __static_condition_default_268; extern const bool __static_condition_default_286; extern const bool __static_condition_default_379; -extern const bool __static_condition_default_603; extern const bool __static_condition_default_244; extern const bool __static_condition_default_297; extern const bool __static_condition_default_430; -extern const bool __static_condition_default_803; extern const bool __static_condition_default_309; +extern const bool __static_condition_default_817; extern const bool __static_condition_default_350; extern const bool __static_condition_default_259; -extern const bool __static_condition_default_624; extern const bool __static_condition_default_277; extern const bool __static_condition_default_396; -extern const bool __static_condition_default_595; -extern const bool __static_condition_default_810; +extern const bool __static_condition_default_624; extern const bool __static_condition_default_280; extern const bool __static_condition_default_235; extern const bool __static_condition_default_427; +extern const bool __static_condition_default_595; +extern const bool __static_condition_default_605; extern const bool __static_condition_default_353; -extern const bool __static_condition_default_815; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_603; extern const bool __static_condition_default_362; extern const bool __static_condition_default_274; extern const bool __static_condition_default_433; -extern const bool __static_condition_default_809; extern const bool __static_condition_default_262; -extern const bool __static_condition_default_630; -extern const bool __static_condition_default_817; void __static_initializer_default() { __static_renaming("____errno_location_0", "__errno_location"); __static_renaming("__ptrdiff_t_1", "ptrdiff_t"); @@ -909,14 +910,14 @@ static __inline unsigned int (____bswap_32_67) (unsigned int ____bsx_66) { if (__static_condition_default_68) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -925,14 +926,14 @@ static __inline ____uint64_t_21 (____bswap_64_70) (____uint64_t_21 ____bsx_69) if (__static_condition_default_68) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -1105,14 +1106,14 @@ static __inline unsigned int (____bswap_32_325) (unsigned int ____bsx_324) { if (__static_condition_default_326) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -1121,14 +1122,14 @@ static __inline ____uint64_t_176 (____bswap_64_328) (____uint64_t_176 ____bsx_ if (__static_condition_default_326) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -1312,7 +1313,7 @@ static int (__add_to_pagemap_802) () { if (__static_condition_default_803) { -{ +{// L14 { @@ -1324,7 +1325,7 @@ return 1 ;// L17 } return 0 ;// L18 } -} +}// L19 } @@ -1333,7 +1334,7 @@ static int (__pagemap_pte_range_805) () { if (__static_condition_default_803) { -{ +{// L22 { @@ -1343,7 +1344,7 @@ int __err_804= 0;// L23 while ( 1 )// L25 { -{ +{// L25 { @@ -1354,11 +1355,11 @@ if ( __err_804 )// L27 return __err_804 ;// L28 } } -} +}// L29 } return __err_804 ;// L31 } -} +}// L32 } @@ -1367,14 +1368,14 @@ int (__walk_page_range_806) () { if (__static_condition_default_803) { -{ +{// L35 { return __pagemap_pte_range_805 ( ) ;// L36 } -} +}// L37 } @@ -1383,7 +1384,7 @@ static int (__pagemap_read_807) () { if (__static_condition_default_803) { -{ +{// L39 { @@ -1406,7 +1407,7 @@ return - 12 ;// L44 __walk_page_range_806 ( ) ; // L47 return 0 ;// L49 } -} +}// L50 } @@ -1415,14 +1416,14 @@ int (__main_813) (int __argc_811, char * (* (__argv_812))) { if (__static_condition_default_815) { -{ +{// L54 { return 0 ;// L58 } -} +}// L59 } @@ -1431,7 +1432,7 @@ int (__main_814) (int __argc_811, char * (* (__argv_812))) { if (__static_condition_default_816) { -{ +{// L54 { @@ -1439,7 +1440,7 @@ if (__static_condition_default_816) { __pagemap_read_807 ( ) ; // L56 return 0 ;// L58 } -} +}// L59 } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/8c8296223f3.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/8c8296223f3.desugared.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/8c8296223f3.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/8c8296223f3.desugared.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/8c8296223f3.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/8c8296223f3.desugared.inferres index 9cb66db1..d05a696d 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/8c8296223f3.desugared.inferres +++ b/fonda/cpp_testsuite/varBugs/LINUX/8c8296223f3.desugared.inferres @@ -1,12 +1,12 @@ -LINUX/8c8296223f3.desugared.c:1413: error: Memory Leak - Memory dynamically allocated by `malloc` on line 1393 is not freed after the last access at line 1413, column 1. - 1411. - 1412. } +LINUX/8c8296223f3.desugared.c:1414: error: Memory Leak + Memory dynamically allocated by `malloc` on line 1394 is not freed after the last access at line 1414, column 1. + 1412. 1413. } + 1414. } ^ - 1414. int (__main_813) (int __argc_811, char * (* (__argv_812))) { - 1415. + 1415. int (__main_813) (int __argc_811, char * (* (__argv_812))) { + 1416. Found 1 issue diff --git a/fonda/cpp_testsuite/varBugs/LINUX/91ea8207168.clangres b/fonda/cpp_testsuite/varBugs/LINUX/91ea8207168.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/91ea8207168.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/91ea8207168.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/91ea8207168.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/91ea8207168.desugared.c index ef94f313..f51d77be 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/91ea8207168.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/91ea8207168.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -238,7 +239,7 @@ int (__pfn_to_nid_235) (unsigned int __pfn_234) { if (__static_condition_default_236) { -{ +{// L28 { @@ -254,7 +255,7 @@ __static_type_error("type error") ; // L29:L91 } return ( int ) __pfnnid_map_232 [ __pfn_234 ] ;// L30 } -} +}// L31 } @@ -263,7 +264,7 @@ int (__pfn_valid_242) (unsigned int __pfn_240) { if (__static_condition_default_236) { -{ +{// L34 { @@ -281,7 +282,7 @@ __static_type_error("invalid type found in return expression"); } return 0 ;// L39 } -} +}// L40 } @@ -291,13 +292,13 @@ void (__setup_bootmem_245) (void ) { { if (__static_condition_default_247) { -{ +{// L50 { } -} +}// L54 } @@ -308,7 +309,7 @@ void (__setup_bootmem_246) (void ) { { if (__static_condition_default_248) { -{ +{// L50 { @@ -323,7 +324,7 @@ if (__static_condition_default_251) { __static_type_error("type error") ; // L52 } } -} +}// L54 } @@ -333,7 +334,7 @@ int (__kpageflags_read_253) () { if (__static_condition_default_254) { -{ +{// L58 { @@ -344,7 +345,7 @@ if (__static_condition_default_255) { for ( ; __pfn_252 < 0 ; __pfn_252 ++ )// L61 { -{ +{// L61 { @@ -354,14 +355,14 @@ if ( ( 1 ) )// L62 ; // L63 } } -} +}// L64 } } if (__static_condition_default_256) { for ( ; __pfn_252 < __max_pfn_233 ; __pfn_252 ++ )// L61 { -{ +{// L61 { @@ -371,12 +372,12 @@ if ( __pfn_valid_242 ( __pfn_252 ) )// L62 ; // L63 } } -} +}// L64 } } return 0 ;// L66 } -} +}// L67 } @@ -385,7 +386,7 @@ int (__main_257) () { if (__static_condition_default_259) { -{ +{// L71 { @@ -398,7 +399,7 @@ if (__static_condition_default_261) { } return 0 ;// L76 } -} +}// L77 } @@ -407,7 +408,7 @@ int (__main_258) () { if (__static_condition_default_262) { -{ +{// L71 { @@ -421,7 +422,7 @@ if (__static_condition_default_264) { __kpageflags_read_253 ( ) ; // L74 return 0 ;// L76 } -} +}// L77 } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/91ea8207168.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/91ea8207168.desugared.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/91ea8207168.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/91ea8207168.desugared.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.clangres b/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.desugared.c index d1c409a7..fe184688 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -254,7 +255,7 @@ int (__pfn_to_nid_237) (unsigned long __pfn_235) { if (__static_condition_default_238) { -{ +{// L14 { @@ -287,7 +288,7 @@ __static_type_error("type error") ; // L19:L91 } return ( int ) __r_236 ;// L21 } -} +}// L22 } @@ -296,7 +297,7 @@ int (__pfn_valid_249) (int __pfn_247) { if (__static_condition_default_250) { -{ +{// L25 { @@ -305,7 +306,7 @@ int __nid_248= __pfn_to_nid_237 ( __pfn_247 );// L26 return ( __nid_248 >= 0 ) ;// L28 } -} +}// L29 } @@ -314,7 +315,7 @@ int (__kpageflags_read_252) () { if (__static_condition_default_253) { -{ +{// L38 { @@ -324,7 +325,7 @@ unsigned int __pfn_251= 0;// L39 for ( ; __pfn_251 < __max_pfn_234 ; __pfn_251 ++ )// L41 { -{ +{// L41 { @@ -342,11 +343,11 @@ if ( __pfn_valid_249 ( __pfn_251 ) )// L42 } } } -} +}// L44 } return 0 ;// L46 } -} +}// L47 } @@ -356,20 +357,20 @@ void (__setup_bootmem_256) (void ) { { if (__static_condition_default_258) { -{ +{// L51 { } -} +}// L55 } if (__static_condition_default_259) { -{ +{// L51 { @@ -384,7 +385,7 @@ if (__static_condition_default_262) { __static_type_error("type error") ; // L53 } } -} +}// L55 } @@ -395,20 +396,20 @@ void (__setup_bootmem_257) (void ) { { if (__static_condition_default_263) { -{ +{// L51 { } -} +}// L55 } if (__static_condition_default_264) { -{ +{// L51 { @@ -423,7 +424,7 @@ if (__static_condition_default_267) { __static_type_error("type error") ; // L53 } } -} +}// L55 } @@ -431,7 +432,7 @@ __static_type_error("type error") ; // L53 }} int (__main_268) () { -{ +{// L58 { @@ -452,7 +453,7 @@ if (__static_condition_default_272) { return 0 ;// L63 } } -} +}// L64 } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.desugared.clangres index f98fff72..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.desugared.clangres @@ -1,7 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.desugared.c:283:15: warning: The left operand of '!=' is a garbage value [core.UndefinedBinaryOperatorResult] -( ( __r_236 != 0xff ) ? ( void ) ( 0 ) : ____assert_fail_4 ("r != 0xff","/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.c",19, __PRETTY_FUNCTION__ ) ) ; // L19:L91 - ~~~~~~~ ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.desugared.c:288:1: warning: Undefined or garbage value returned to caller [core.uninitialized.UndefReturn] -return ( int ) __r_236 ;// L21 -^~~~~~~~~~~~~~~~~~~~~~~~~ -2 warnings generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/bc8cec0dff0.clangres b/fonda/cpp_testsuite/varBugs/LINUX/bc8cec0dff0.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/bc8cec0dff0.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/bc8cec0dff0.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/bc8cec0dff0.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/bc8cec0dff0.desugared.c index c77b36d3..43886816 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/bc8cec0dff0.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/bc8cec0dff0.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -45,7 +46,7 @@ int (__jffs2_nor_wbuf_flash_setup_7) () { if (__static_condition_default_9) { -{ +{// L16 { @@ -57,7 +58,7 @@ return - 12 ;// L19 } return 0 ;// L21 } -} +}// L22 } @@ -66,7 +67,7 @@ int (__jffs2_nor_wbuf_flash_setup_8) () { if (__static_condition_default_10) { -{ +{// L16 { @@ -78,7 +79,7 @@ return - 12 ;// L19 } return 0 ;// L21 } -} +}// L22 } @@ -87,14 +88,14 @@ static int (__jffs2_verify_write_11) () { if (__static_condition_default_12) { -{ +{// L26 { return ( int ) * __wbuf_verify_6 ;// L27 } -} +}// L28 } @@ -103,7 +104,7 @@ int (____jffs2_flush_wbuf_13) () { if (__static_condition_default_15) { -{ +{// L34 { @@ -111,18 +112,18 @@ if (__static_condition_default_15) { do { -{ +{// L30 { } -} +}// L30 } while( 0 );// L30:L35 return 0 ;// L36 } -} +}// L37 } @@ -131,7 +132,7 @@ int (____jffs2_flush_wbuf_14) () { if (__static_condition_default_16) { -{ +{// L34 { @@ -139,14 +140,14 @@ if (__static_condition_default_16) { __jffs2_verify_write_11 ( ) ; // L35 return 0 ;// L36 } -} +}// L37 } } int (__jffs2_flash_writev_17) () { -{ +{// L40 { @@ -159,26 +160,26 @@ if (__static_condition_default_16) { } return 0 ;// L42 } -} +}// L43 } int (__jffs2_flash_write_18) () { -{ +{// L46 { return __jffs2_flash_writev_17 ( ) ;// L47 } -} +}// L48 } int (__main_19) () { -{ +{// L51 { @@ -192,7 +193,7 @@ if (__static_condition_default_10) { __jffs2_flash_write_18 ( ) ; // L53 return 0 ;// L54 } -} +}// L55 } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/bc8cec0dff0.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/bc8cec0dff0.desugared.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/bc8cec0dff0.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/bc8cec0dff0.desugared.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/bc8cec0dff0.desugared.inferres b/fonda/cpp_testsuite/varBugs/LINUX/bc8cec0dff0.desugared.inferres index 2f0d87fe..1ba4c40f 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/bc8cec0dff0.desugared.inferres +++ b/fonda/cpp_testsuite/varBugs/LINUX/bc8cec0dff0.desugared.inferres @@ -1,11 +1,11 @@ -LINUX/bc8cec0dff0.desugared.c:198: error: Memory Leak - Memory dynamically allocated by `malloc`, indirectly via call to `__jffs2_nor_wbuf_flash_setup_7()` on line 187 is not freed after the last access at line 198, column 1. - 196. +LINUX/bc8cec0dff0.desugared.c:199: error: Memory Leak + Memory dynamically allocated by `malloc`, indirectly via call to `__jffs2_nor_wbuf_flash_setup_7()` on line 188 is not freed after the last access at line 199, column 1. 197. - 198. } + 198. + 199. } ^ - 199. + 200. Found 1 issue diff --git a/fonda/cpp_testsuite/varBugs/LINUX/c708c57e247.clangres b/fonda/cpp_testsuite/varBugs/LINUX/c708c57e247.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/c708c57e247.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/c708c57e247.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/c708c57e247.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/c708c57e247.desugared.c index 1fb5342a..f3395a28 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/c708c57e247.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/c708c57e247.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -32,7 +33,7 @@ void (__prng_seed_5) (int __nbytes_2) { if (__static_condition_default_6) { -{ +{// L10 { @@ -66,7 +67,7 @@ return ;// L15 while ( __nbytes_2 >= 8 )// L17 { -{ +{// L17 { @@ -75,10 +76,10 @@ while ( __nbytes_2 >= 8 )// L17 __i_4 += 8 ; // L19 __nbytes_2 -= 8 ; // L20 } +}// L21 } } -} -} +}// L22 } @@ -87,14 +88,14 @@ int (__main_9) (int __argc_7, char * (__argv_8[])) { if (__static_condition_default_11) { -{ +{// L26 { return 0 ;// L30 } -} +}// L31 } @@ -103,7 +104,7 @@ int (__main_10) (int __argc_7, char * (__argv_8[])) { if (__static_condition_default_12) { -{ +{// L26 { @@ -111,7 +112,7 @@ if (__static_condition_default_12) { __prng_seed_5 (16) ; // L28 return 0 ;// L30 } -} +}// L31 } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/c708c57e247.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/c708c57e247.desugared.clangres index 7e75bafb..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/c708c57e247.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/c708c57e247.desugared.clangres @@ -1,4 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/c708c57e247.desugared.c:74:41: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] -* ( ( ____u64_0 * ) __parm_block_1 ) ^= * ( ( ____u64_0 * ) __buf_3 + __i_4 * 8 ) ; // L18 - ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -1 warning generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d530db0db90.clangres b/fonda/cpp_testsuite/varBugs/LINUX/d530db0db90.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/d530db0db90.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/d530db0db90.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d530db0db90.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/d530db0db90.desugared.c index 0c99b8fc..159e8932 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/d530db0db90.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/d530db0db90.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -7,26 +8,26 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_623; extern const bool __static_condition_default_293; extern const bool __static_condition_default_285; extern const bool __static_condition_default_299; -extern const bool __static_condition_default_810; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_804; +extern const bool __static_condition_default_629; extern const bool __static_condition_default_432; extern const bool __static_condition_default_234; extern const bool __static_condition_default_267; extern const bool __static_condition_default_273; extern const bool __static_condition_default_426; +extern const bool __static_condition_default_623; extern const bool __static_condition_default_414; extern const bool __static_condition_default_420; extern const bool __static_condition_default_288; -extern const bool __static_condition_default_811; -extern const bool __static_condition_default_806; extern const bool __static_condition_default_305; extern const bool __static_condition_default_246; extern const bool __static_condition_default_252; extern const bool __static_condition_default_429; -extern const bool __static_condition_default_629; +extern const bool __static_condition_default_809; extern const bool __static_condition_default_341; extern const bool __static_condition_default_237; extern const bool __static_condition_default_249; @@ -34,39 +35,39 @@ extern const bool __static_condition_default_352; extern const bool __static_condition_default_302; extern const bool __static_condition_default_361; extern const bool __static_condition_default_417; -extern const bool __static_condition_default_595; extern const bool __static_condition_default_423; -extern const bool __static_condition_default_604; extern const bool __static_condition_default_215; extern const bool __static_condition_default_296; extern const bool __static_condition_default_240; extern const bool __static_condition_default_282; -extern const bool __static_condition_default_258; +extern const bool __static_condition_default_627; extern const bool __static_condition_default_805; +extern const bool __static_condition_default_258; extern const bool __static_condition_default_349; extern const bool __static_condition_default_378; extern const bool __static_condition_default_325; +extern const bool __static_condition_default_604; +extern const bool __static_condition_default_806; extern const bool __static_condition_default_394; extern const bool __static_condition_default_276; extern const bool __static_condition_default_60; -extern const bool __static_condition_default_804; extern const bool __static_condition_default_736; +extern const bool __static_condition_default_811; extern const bool __static_condition_default_579; -extern const bool __static_condition_default_809; -extern const bool __static_condition_default_621; -extern const bool __static_condition_default_627; +extern const bool __static_condition_default_594; extern const bool __static_condition_default_243; extern const bool __static_condition_default_261; +extern const bool __static_condition_default_810; extern const bool __static_condition_default_264; extern const bool __static_condition_default_279; -extern const bool __static_condition_default_594; +extern const bool __static_condition_default_602; extern const bool __static_condition_default_581; +extern const bool __static_condition_default_595; extern const bool __static_condition_default_67; extern const bool __static_condition_default_379; -extern const bool __static_condition_default_602; +extern const bool __static_condition_default_621; extern const bool __static_condition_default_395; extern const bool __static_condition_default_308; -extern const bool __static_condition_default_803; extern const bool __static_condition_default_255; extern const bool __static_condition_default_270; void __static_initializer_default() { @@ -903,14 +904,14 @@ static __inline unsigned int (____bswap_32_66) (unsigned int ____bsx_65) { if (__static_condition_default_67) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -919,14 +920,14 @@ static __inline ____uint64_t_20 (____bswap_64_69) (____uint64_t_20 ____bsx_68) if (__static_condition_default_67) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -1099,14 +1100,14 @@ static __inline unsigned int (____bswap_32_324) (unsigned int ____bsx_323) { if (__static_condition_default_325) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -1115,14 +1116,14 @@ static __inline ____uint64_t_175 (____bswap_64_327) (____uint64_t_175 ____bsx_ if (__static_condition_default_325) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -1306,7 +1307,7 @@ void (__acpi_set_WOL_802) (int __vp_801) { if (__static_condition_default_803) { -{ +{// L16 { @@ -1314,7 +1315,7 @@ if (__static_condition_default_803) { if ( 1 )// L17 { -{ +{// L17 { @@ -1335,10 +1336,10 @@ if (__static_condition_default_806) { __static_type_error("invalid type found in if statement"); } } +}// L20 } } -} -} +}// L21 } @@ -1347,14 +1348,14 @@ int (__main_807) () { if (__static_condition_default_809) { -{ +{// L25 { return 0 ;// L29 } -} +}// L30 } @@ -1363,7 +1364,7 @@ int (__main_808) () { if (__static_condition_default_810) { -{ +{// L25 { @@ -1371,7 +1372,7 @@ if (__static_condition_default_810) { __acpi_set_WOL_802 (1) ; // L27 return 0 ;// L29 } -} +}// L30 } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d530db0db90.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/d530db0db90.desugared.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/d530db0db90.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/d530db0db90.desugared.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.clangres b/fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.clangres index f78a7d92..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.clangres @@ -1,5 +1 @@ -In file included from :344: -:2:9: error: 'defined' cannot be used as a macro name -#define defined 1 - ^ -1 error generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.desugared.c index 64931768..6ff17c37 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -8,73 +9,73 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); extern const bool __static_condition_default_409; -extern const bool __static_condition_default_825; +extern const bool __static_condition_default_824; extern const bool __static_condition_default_307; extern const bool __static_condition_default_593; +extern const bool __static_condition_default_643; +extern const bool __static_condition_default_825; extern const bool __static_condition_default_281; extern const bool __static_condition_default_339; -extern const bool __static_condition_default_635; extern const bool __static_condition_default_302; -extern const bool __static_condition_default_637; extern const bool __static_condition_default_440; -extern const bool __static_condition_default_643; +extern const bool __static_condition_default_832; +extern const bool __static_condition_default_635; extern const bool __static_condition_default_431; -extern const bool __static_condition_default_817; +extern const bool __static_condition_default_831; +extern const bool __static_condition_default_641; extern const bool __static_condition_default_813; -extern const bool __static_condition_default_750; -extern const bool __static_condition_default_820; extern const bool __static_condition_default_263; -extern const bool __static_condition_default_616; extern const bool __static_condition_default_322; -extern const bool __static_condition_default_831; +extern const bool __static_condition_default_618; +extern const bool __static_condition_default_820; extern const bool __static_condition_default_826; -extern const bool __static_condition_default_824; extern const bool __static_condition_default_446; -extern const bool __static_condition_default_609; +extern const bool __static_condition_default_616; +extern const bool __static_condition_default_814; extern const bool __static_condition_default_375; -extern const bool __static_condition_default_822; extern const bool __static_condition_default_363; -extern const bool __static_condition_default_257; extern const bool __static_condition_default_816; +extern const bool __static_condition_default_257; extern const bool __static_condition_default_293; extern const bool __static_condition_default_319; -extern const bool __static_condition_default_832; extern const bool __static_condition_default_74; extern const bool __static_condition_default_392; extern const bool __static_condition_default_251; extern const bool __static_condition_default_266; -extern const bool __static_condition_default_814; +extern const bool __static_condition_default_818; +extern const bool __static_condition_default_822; extern const bool __static_condition_default_272; extern const bool __static_condition_default_443; extern const bool __static_condition_default_248; extern const bool __static_condition_default_275; -extern const bool __static_condition_default_608; -extern const bool __static_condition_default_641; +extern const bool __static_condition_default_821; +extern const bool __static_condition_default_637; extern const bool __static_condition_default_278; +extern const bool __static_condition_default_608; +extern const bool __static_condition_default_833; extern const bool __static_condition_default_81; extern const bool __static_condition_default_290; extern const bool __static_condition_default_408; extern const bool __static_condition_default_434; extern const bool __static_condition_default_437; +extern const bool __static_condition_default_750; extern const bool __static_condition_default_313; extern const bool __static_condition_default_296; extern const bool __static_condition_default_393; -extern const bool __static_condition_default_815; extern const bool __static_condition_default_284; -extern const bool __static_condition_default_618; extern const bool __static_condition_default_428; -extern const bool __static_condition_default_821; extern const bool __static_condition_default_229; extern const bool __static_condition_default_310; extern const bool __static_condition_default_355; extern const bool __static_condition_default_260; extern const bool __static_condition_default_299; -extern const bool __static_condition_default_818; -extern const bool __static_condition_default_833; +extern const bool __static_condition_default_609; +extern const bool __static_condition_default_817; extern const bool __static_condition_default_254; extern const bool __static_condition_default_269; extern const bool __static_condition_default_287; extern const bool __static_condition_default_366; +extern const bool __static_condition_default_815; extern const bool __static_condition_default_595; extern const bool __static_condition_default_316; void __static_initializer_default() { @@ -924,14 +925,14 @@ static __inline unsigned int (____bswap_32_80) (unsigned int ____bsx_79) { if (__static_condition_default_81) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -940,14 +941,14 @@ static __inline ____uint64_t_34 (____bswap_64_83) (____uint64_t_34 ____bsx_82) if (__static_condition_default_81) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -1120,14 +1121,14 @@ static __inline unsigned int (____bswap_32_338) (unsigned int ____bsx_337) { if (__static_condition_default_339) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -1136,14 +1137,14 @@ static __inline ____uint64_t_189 (____bswap_64_341) (____uint64_t_189 ____bsx_ if (__static_condition_default_339) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -1324,7 +1325,7 @@ void * ((__vlan_dev_real_dev_812) ()) { if (__static_condition_default_813) { -{ +{// L12 { @@ -1345,7 +1346,7 @@ if (__static_condition_default_818) { __static_type_error("invalid type found in return expression"); } } -} +}// L15 } @@ -1354,7 +1355,7 @@ void * ((__vlan_dev_real_dev_819) ()) { if (__static_condition_default_820) { -{ +{// L7 { @@ -1366,7 +1367,7 @@ if (__static_condition_default_822) { __static_type_error("invalid type found in return expression"); } } -} +}// L9 } @@ -1375,7 +1376,7 @@ static int (__ocrdma_inet6addr_event_823) () { if (__static_condition_default_824) { -{ +{// L20 { @@ -1388,7 +1389,7 @@ if (__static_condition_default_826) { } return 0 ;// L23 } -} +}// L24 } @@ -1397,14 +1398,14 @@ int (__main_829) (int __argc_827, char * (* (__argv_828))) { if (__static_condition_default_831) { -{ +{// L28 { return 0 ;// L32 } -} +}// L33 } @@ -1413,7 +1414,7 @@ int (__main_830) (int __argc_827, char * (* (__argv_828))) { if (__static_condition_default_832) { -{ +{// L28 { @@ -1421,7 +1422,7 @@ if (__static_condition_default_832) { __ocrdma_inet6addr_event_823 ( ) ; // L30 return 0 ;// L32 } -} +}// L33 } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.desugared.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/d549f55f2e1.desugared.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d6c7e113959.clangres b/fonda/cpp_testsuite/varBugs/LINUX/d6c7e113959.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/d6c7e113959.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/d6c7e113959.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d6c7e113959.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/d6c7e113959.desugared.c index 16f56e92..60d1bea9 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/d6c7e113959.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/d6c7e113959.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -37,7 +38,7 @@ int (__max8660_pdata_from_dt_2) (int * (__pdata_0)) { { if (__static_condition_default_4) { -{ +{// L4 { @@ -45,7 +46,7 @@ if (__static_condition_default_4) { * __pdata_0 ++ ; // L5 return 0 ;// L6 } -} +}// L7 } @@ -56,14 +57,14 @@ int (__max8660_pdata_from_dt_3) (int * (* (__pdata_1))) { { if (__static_condition_default_5) { -{ +{// L10 { return 0 ;// L11 } -} +}// L12 } @@ -73,7 +74,7 @@ int (__max8660_probe_7) () { if (__static_condition_default_8) { -{ +{// L16 { @@ -88,7 +89,7 @@ __static_type_error("type error") ; // L18 } return 0 ;// L19 } -} +}// L20 } @@ -97,14 +98,14 @@ int (__main_11) () { if (__static_condition_default_13) { -{ +{// L23 { return 0 ;// L27 } -} +}// L28 } @@ -113,7 +114,7 @@ int (__main_12) () { if (__static_condition_default_14) { -{ +{// L23 { @@ -121,7 +122,7 @@ if (__static_condition_default_14) { __max8660_probe_7 ( ) ; // L25 return 0 ;// L27 } -} +}// L28 } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d6c7e113959.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/d6c7e113959.desugared.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/d6c7e113959.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/d6c7e113959.desugared.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.clangres b/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.desugared.c index d1dff52e..ca6becbc 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -7,53 +8,51 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_623; extern const bool __static_condition_default_267; extern const bool __static_condition_default_414; -extern const bool __static_condition_default_595; +extern const bool __static_condition_default_627; +extern const bool __static_condition_default_623; extern const bool __static_condition_default_261; +extern const bool __static_condition_default_816; +extern const bool __static_condition_default_798; extern const bool __static_condition_default_378; extern const bool __static_condition_default_60; extern const bool __static_condition_default_252; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_627; -extern const bool __static_condition_default_629; extern const bool __static_condition_default_288; extern const bool __static_condition_default_426; -extern const bool __static_condition_default_736; extern const bool __static_condition_default_579; -extern const bool __static_condition_default_810; extern const bool __static_condition_default_417; extern const bool __static_condition_default_379; +extern const bool __static_condition_default_809; extern const bool __static_condition_default_282; extern const bool __static_condition_default_361; extern const bool __static_condition_default_264; -extern const bool __static_condition_default_801; extern const bool __static_condition_default_305; -extern const bool __static_condition_default_594; +extern const bool __static_condition_default_810; extern const bool __static_condition_default_293; extern const bool __static_condition_default_432; extern const bool __static_condition_default_243; extern const bool __static_condition_default_240; extern const bool __static_condition_default_246; +extern const bool __static_condition_default_736; extern const bool __static_condition_default_279; extern const bool __static_condition_default_429; extern const bool __static_condition_default_273; extern const bool __static_condition_default_395; -extern const bool __static_condition_default_798; extern const bool __static_condition_default_394; +extern const bool __static_condition_default_621; extern const bool __static_condition_default_249; +extern const bool __static_condition_default_604; extern const bool __static_condition_default_276; -extern const bool __static_condition_default_621; +extern const bool __static_condition_default_811; extern const bool __static_condition_default_67; extern const bool __static_condition_default_799; extern const bool __static_condition_default_341; -extern const bool __static_condition_default_816; -extern const bool __static_condition_default_812; extern const bool __static_condition_default_215; extern const bool __static_condition_default_325; +extern const bool __static_condition_default_801; +extern const bool __static_condition_default_602; extern const bool __static_condition_default_296; -extern const bool __static_condition_default_800; extern const bool __static_condition_default_255; extern const bool __static_condition_default_352; extern const bool __static_condition_default_349; @@ -61,16 +60,18 @@ extern const bool __static_condition_default_234; extern const bool __static_condition_default_258; extern const bool __static_condition_default_299; extern const bool __static_condition_default_308; -extern const bool __static_condition_default_604; extern const bool __static_condition_default_302; extern const bool __static_condition_default_285; +extern const bool __static_condition_default_629; extern const bool __static_condition_default_237; -extern const bool __static_condition_default_811; extern const bool __static_condition_default_420; +extern const bool __static_condition_default_800; +extern const bool __static_condition_default_812; extern const bool __static_condition_default_581; extern const bool __static_condition_default_423; -extern const bool __static_condition_default_809; +extern const bool __static_condition_default_594; extern const bool __static_condition_default_270; +extern const bool __static_condition_default_595; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -909,14 +910,14 @@ static __inline unsigned int (____bswap_32_66) (unsigned int ____bsx_65) { if (__static_condition_default_67) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -925,14 +926,14 @@ static __inline ____uint64_t_20 (____bswap_64_69) (____uint64_t_20 ____bsx_68) if (__static_condition_default_67) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -1105,14 +1106,14 @@ static __inline unsigned int (____bswap_32_324) (unsigned int ____bsx_323) { if (__static_condition_default_325) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -1121,14 +1122,14 @@ static __inline ____uint64_t_175 (____bswap_64_327) (____uint64_t_175 ____bsx_ if (__static_condition_default_325) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -1307,7 +1308,7 @@ extern __size_t_1 (____wcstombs_chk_warn_794) (char * __restrict ____dst_790, /* no function due to type errors in the function prototype */ static int (__inode_get_rsv_space_802) (void ) { -{ +{// L7 { @@ -1316,13 +1317,13 @@ __static_type_error("type error : no valid expression"); // L8 __static_type_error("type error : no valid expression"); // L10 return 0 ;// L11 } -} +}// L12 } static void (__add_dquot_ref_808) (void ) { -{ +{// L15 { @@ -1341,7 +1342,7 @@ if (__static_condition_default_809) { for ( __i_804 = 0 ; __i_804 < 10 ; __i_804 ++ )// L21 { -{ +{// L21 { @@ -1351,7 +1352,7 @@ if (__static_condition_default_810) { if ( rand( ) % 2 )// L23 { -{ +{// L23 { @@ -1359,19 +1360,19 @@ if ( rand( ) % 2 )// L23 __static_type_error("type error : no valid expression"); // L24 continue ; // L25 } -} +}// L26 } } __static_type_error("type error : no valid expression"); // L33 } -} +}// L34 } } if (__static_condition_default_811) { for ( __i_805 = 0 ; __i_805 < 10 ; __i_805 ++ )// L21 { -{ +{// L21 { @@ -1381,7 +1382,7 @@ if (__static_condition_default_812) { if ( rand( ) % 2 )// L23 { -{ +{// L23 { @@ -1389,7 +1390,7 @@ if ( rand( ) % 2 )// L23 __static_type_error("type error : no valid expression"); // L24 continue ; // L25 } -} +}// L26 } } if ( __inode_get_rsv_space_802 ( ) > 0 )// L29 @@ -1398,17 +1399,17 @@ if ( __inode_get_rsv_space_802 ( ) > 0 )// L29 } __static_type_error("type error : no valid expression"); // L33 } +}// L34 } } } -} -} +}// L35 } int (__main_815) (int __argc_813, char * (* (__arv_814))) { -{ +{// L37 { @@ -1416,7 +1417,7 @@ int (__main_815) (int __argc_813, char * (* (__arv_814))) { __add_dquot_ref_808 ( ) ; // L38 return 0 ;// L39 } -} +}// L40 } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.desugared.clangres index 0e2c1259..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.desugared.clangres @@ -1,4 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.desugared.c:1397:2: warning: Value stored to '__reserved_803' is never read [deadcode.DeadStores] - __reserved_803 = 1 ; // L30 - ^ ~ -1 warning generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/e1fbd9210d5.clangres b/fonda/cpp_testsuite/varBugs/LINUX/e1fbd9210d5.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/e1fbd9210d5.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/e1fbd9210d5.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/e1fbd9210d5.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/e1fbd9210d5.desugared.c index 500b1212..50f0fb34 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/e1fbd9210d5.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/e1fbd9210d5.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -1352,14 +1353,14 @@ __sector_t_1092 (__blk_rq_pos_1094) () { if (__static_condition_default_1096) { -{ +{// L9 { return 0 ;// L10 } -} +}// L11 } @@ -1368,14 +1369,14 @@ __sector_t_1093 (__blk_rq_pos_1095) () { if (__static_condition_default_1097) { -{ +{// L9 { return 0 ;// L10 } -} +}// L11 } @@ -1384,7 +1385,7 @@ static void (__do_z2_request_1098) () { if (__static_condition_default_1099) { -{ +{// L14 { @@ -1399,7 +1400,7 @@ if (__static_condition_default_1102) { __static_type_error("type error") ; // L15 } } -} +}// L16 } @@ -1408,14 +1409,14 @@ int (__main_1103) () { if (__static_condition_default_1105) { -{ +{// L19 { return 0 ;// L23 } -} +}// L24 } @@ -1424,7 +1425,7 @@ int (__main_1104) () { if (__static_condition_default_1106) { -{ +{// L19 { @@ -1432,7 +1433,7 @@ if (__static_condition_default_1106) { __do_z2_request_1098 ( ) ; // L21 return 0 ;// L23 } -} +}// L24 } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/e1fbd9210d5.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/e1fbd9210d5.desugared.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/e1fbd9210d5.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/e1fbd9210d5.desugared.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.clangres b/fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.desugared.c index 14182c4e..d3ffc2db 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -31,14 +32,14 @@ __static_condition_renaming("__static_condition_default_10", "(defined CONFIG_NE int (__nondet_0) () { -{ +{// L1 { return 42 ;// L1 } -} +}// L1 } @@ -46,7 +47,7 @@ int (__netpoll_setup_2) () { if (__static_condition_default_3) { -{ +{// L5 { @@ -77,7 +78,7 @@ goto put_0; return __err_1 ;// L17 } } -} +}// L18 } @@ -86,14 +87,14 @@ int (__main_7) (void ) { if (__static_condition_default_9) { -{ +{// L22 { return 0 ;// L26 } -} +}// L27 } @@ -102,7 +103,7 @@ int (__main_8) (void ) { if (__static_condition_default_10) { -{ +{// L22 { @@ -110,7 +111,7 @@ if (__static_condition_default_10) { __netpoll_setup_2 ( ) ; // L24 return 0 ;// L26 } -} +}// L27 } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.desugared.clangres index 67dfa0da..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.desugared.clangres @@ -1,4 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.desugared.c:77:1: warning: Undefined or garbage value returned to caller [core.uninitialized.UndefReturn] -return __err_1 ;// L17 -^~~~~~~~~~~~~~~ -1 warning generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/e67bc51e574.clangres b/fonda/cpp_testsuite/varBugs/LINUX/e67bc51e574.clangres index 32db88f4..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/e67bc51e574.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/e67bc51e574.clangres @@ -1,7 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/e67bc51e574.c:11:20: error: too many arguments to function call, expected 0, have 1 - trace_dump_stack(0); // ERROR - ~~~~~~~~~~~~~~~~ ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/e67bc51e574.c:7:20: note: 'trace_dump_stack' declared here -static inline void trace_dump_stack(void) { } - ^ -1 error generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/e67bc51e574.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/e67bc51e574.desugared.c index 38b346bc..e5a9d323 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/e67bc51e574.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/e67bc51e574.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -26,14 +27,14 @@ void (__trace_dump_stack_1) (int __skip_0) { { if (__static_condition_default_3) { -{ +{// L2 { return ;// L4 } -} +}// L5 } @@ -44,13 +45,13 @@ static inline void (__trace_dump_stack_2) (void ) { { if (__static_condition_default_4) { -{ +{// L7 { } -} +}// L7 } @@ -58,7 +59,7 @@ if (__static_condition_default_4) { }} int (__main_7) (int __argc_5, char * (* (__argv_6))) { -{ +{// L10 { @@ -71,7 +72,7 @@ __static_type_error("type error") ; // L11 } return 0 ;// L12 } -} +}// L13 } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/e67bc51e574.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/e67bc51e574.desugared.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/e67bc51e574.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/e67bc51e574.desugared.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.clangres b/fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.clangres index 930ea29e..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.clangres @@ -1,5 +1 @@ -In file included from :344: -:1:9: error: 'defined' cannot be used as a macro name -#define defined 1 - ^ -1 error generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.desugared.c index 2765b22e..23f8e852 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -111,14 +112,14 @@ extern void (____assert_13) (const char * (____assertion_10), const char * (_ _Bool __irqs_disabled_16= 0;// L20:L33 void (__local_irq_disable_17) (void ) { -{ +{// L23 { __irqs_disabled_16 = 1 ; // L24:L34 } -} +}// L25 } @@ -126,7 +127,7 @@ static void (____lockdep_trace_alloc_20) (__gfp_t_14 __gfp_mask_18) { if (__static_condition_default_22) { -{ +{// L29 { @@ -146,7 +147,7 @@ if (__static_condition_default_24) { __static_type_error("type error") ; // L36:L91 } } -} +}// L37 } @@ -155,7 +156,7 @@ static void (____lockdep_trace_alloc_21) (__gfp_t_15 __gfp_mask_19) { if (__static_condition_default_25) { -{ +{// L29 { @@ -170,7 +171,7 @@ return ;// L34 } ( ( ! __irqs_disabled_16 ) ? ( void ) ( 0 ) : ____assert_fail_4 ("!irqs_disabled","/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.c",36, __PRETTY_FUNCTION__ ) ) ; // L36:L91 } -} +}// L37 } @@ -180,14 +181,14 @@ void (__lockdep_trace_alloc_29) (__gfp_t_14 __gfp_mask_26) { { if (__static_condition_default_32) { -{ +{// L40 { ____lockdep_trace_alloc_20 ( __gfp_mask_26 ) ; // L41 } -} +}// L42 } @@ -198,14 +199,14 @@ void (__lockdep_trace_alloc_30) (__gfp_t_15 __gfp_mask_27) { { if (__static_condition_default_33) { -{ +{// L40 { ____lockdep_trace_alloc_21 ( __gfp_mask_27 ) ; // L41 } -} +}// L42 } @@ -216,13 +217,13 @@ void (__lockdep_trace_alloc_31) (__gfp_t_14 __gfp_mask_28) { { if (__static_condition_default_34) { -{ +{// L45 { } -} +}// L46 } @@ -232,7 +233,7 @@ void (____cache_alloc_node_37) (__gfp_t_14 __flags_35) { if (__static_condition_default_39) { -{ +{// L53 { @@ -244,7 +245,7 @@ if (__static_condition_default_41) { __lockdep_trace_alloc_31 ( __flags_35 ) ; // L54 } } -} +}// L55 } @@ -253,14 +254,14 @@ void (____cache_alloc_node_38) (__gfp_t_15 __flags_36) { if (__static_condition_default_42) { -{ +{// L53 { __lockdep_trace_alloc_30 ( __flags_36 ) ; // L54 } -} +}// L55 } @@ -269,14 +270,14 @@ void (__kmem_cache_alloc_node_45) (__gfp_t_14 __flags_43) { if (__static_condition_default_47) { -{ +{// L58 { ____cache_alloc_node_37 ( __flags_43 ) ; // L59 } -} +}// L60 } @@ -285,14 +286,14 @@ void (__kmem_cache_alloc_node_46) (__gfp_t_15 __flags_44) { if (__static_condition_default_48) { -{ +{// L58 { ____cache_alloc_node_38 ( __flags_44 ) ; // L59 } -} +}// L60 } @@ -302,14 +303,14 @@ void (__kmem_cache_alloc_node_notrace_53) (__gfp_t_14 __flags_49) { { if (__static_condition_default_57) { -{ +{// L64 { ____cache_alloc_node_37 ( __flags_49 ) ; // L65 } -} +}// L66 } @@ -320,14 +321,14 @@ void (__kmem_cache_alloc_node_notrace_54) (__gfp_t_15 __flags_50) { { if (__static_condition_default_58) { -{ +{// L64 { ____cache_alloc_node_38 ( __flags_50 ) ; // L65 } -} +}// L66 } @@ -338,14 +339,14 @@ void (__kmem_cache_alloc_node_notrace_55) (__gfp_t_14 __flags_51) { { if (__static_condition_default_59) { -{ +{// L69 { __kmem_cache_alloc_node_45 ( __flags_51 ) ; // L70 } -} +}// L71 } @@ -356,14 +357,14 @@ void (__kmem_cache_alloc_node_notrace_56) (__gfp_t_15 __flags_52) { { if (__static_condition_default_60) { -{ +{// L69 { __kmem_cache_alloc_node_46 ( __flags_52 ) ; // L70 } -} +}// L71 } @@ -373,7 +374,7 @@ static void (__kmalloc_node_63) (__gfp_t_14 __gfp_mask_61) { if (__static_condition_default_65) { -{ +{// L78 { @@ -385,7 +386,7 @@ if (__static_condition_default_67) { __kmem_cache_alloc_node_notrace_55 ( __gfp_mask_61 ) ; // L79 } } -} +}// L80 } @@ -394,7 +395,7 @@ static void (__kmalloc_node_64) (__gfp_t_15 __gfp_mask_62) { if (__static_condition_default_68) { -{ +{// L78 { @@ -406,7 +407,7 @@ if (__static_condition_default_70) { __kmem_cache_alloc_node_notrace_56 ( __gfp_mask_62 ) ; // L79 } } -} +}// L80 } @@ -415,14 +416,14 @@ void (__kmalloc_node_71) () { if (__static_condition_default_72) { -{ +{// L85 { return ;// L86 } -} +}// L87 } @@ -431,7 +432,7 @@ static int (__setup_cpu_cache_73) () { if (__static_condition_default_74) { -{ +{// L91 { @@ -446,7 +447,7 @@ if (__static_condition_default_77) { __static_type_error("type error") ; // L92 } } -} +}// L93 } @@ -455,14 +456,14 @@ void (__kmem_cache_create_78) () { if (__static_condition_default_74) { -{ +{// L96 { __setup_cpu_cache_73 ( ) ; // L97 } -} +}// L98 } @@ -472,14 +473,14 @@ void (__kmem_cache_init_79) (void ) { { if (__static_condition_default_74) { -{ +{// L101 { __kmem_cache_create_78 ( ) ; // L103 } -} +}// L105 } @@ -490,13 +491,13 @@ void (__kmem_cache_init_80) (void ) { { if (__static_condition_default_81) { -{ +{// L108 { } -} +}// L109 } @@ -504,7 +505,7 @@ if (__static_condition_default_81) { }} static void (__mm_init_82) (void ) { -{ +{// L113 { @@ -516,13 +517,13 @@ if (__static_condition_default_83) { __kmem_cache_init_80 ( ) ; // L114 } } -} +}// L115 } int (__main_84) () { -{ +{// L118 { @@ -531,7 +532,7 @@ int (__main_84) () { __mm_init_82 ( ) ; // L120 return 0 ;// L121 } -} +}// L122 } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.desugared.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/eb91f1d0a53.desugared.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.clangres b/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.clangres index 1a88ea26..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.clangres @@ -1,5 +1 @@ -In file included from :344: -:3:8: error: 'defined' cannot be used as a macro name -#undef defined - ^ -1 error generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.desugared.c index 8cffba32..62b61d49 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -7,85 +8,85 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_832; +extern const bool __static_condition_default_804; +extern const bool __static_condition_default_826; +extern const bool __static_condition_default_821; extern const bool __static_condition_default_423; extern const bool __static_condition_default_305; +extern const bool __static_condition_default_595; +extern const bool __static_condition_default_808; +extern const bool __static_condition_default_823; extern const bool __static_condition_default_420; -extern const bool __static_condition_default_594; -extern const bool __static_condition_default_821; -extern const bool __static_condition_default_803; extern const bool __static_condition_default_352; -extern const bool __static_condition_default_822; extern const bool __static_condition_default_246; extern const bool __static_condition_default_288; +extern const bool __static_condition_default_802; +extern const bool __static_condition_default_623; extern const bool __static_condition_default_827; extern const bool __static_condition_default_308; -extern const bool __static_condition_default_834; -extern const bool __static_condition_default_815; -extern const bool __static_condition_default_817; +extern const bool __static_condition_default_627; +extern const bool __static_condition_default_629; extern const bool __static_condition_default_264; -extern const bool __static_condition_default_736; -extern const bool __static_condition_default_804; extern const bool __static_condition_default_429; extern const bool __static_condition_default_234; extern const bool __static_condition_default_414; extern const bool __static_condition_default_432; extern const bool __static_condition_default_267; extern const bool __static_condition_default_282; +extern const bool __static_condition_default_602; extern const bool __static_condition_default_379; -extern const bool __static_condition_default_621; +extern const bool __static_condition_default_820; +extern const bool __static_condition_default_824; extern const bool __static_condition_default_302; -extern const bool __static_condition_default_818; +extern const bool __static_condition_default_819; extern const bool __static_condition_default_255; -extern const bool __static_condition_default_813; -extern const bool __static_condition_default_823; +extern const bool __static_condition_default_604; +extern const bool __static_condition_default_817; extern const bool __static_condition_default_249; extern const bool __static_condition_default_296; extern const bool __static_condition_default_581; extern const bool __static_condition_default_243; -extern const bool __static_condition_default_627; -extern const bool __static_condition_default_802; extern const bool __static_condition_default_276; extern const bool __static_condition_default_279; extern const bool __static_condition_default_426; -extern const bool __static_condition_default_604; extern const bool __static_condition_default_273; extern const bool __static_condition_default_341; extern const bool __static_condition_default_361; -extern const bool __static_condition_default_602; -extern const bool __static_condition_default_828; -extern const bool __static_condition_default_595; -extern const bool __static_condition_default_623; +extern const bool __static_condition_default_594; extern const bool __static_condition_default_349; extern const bool __static_condition_default_325; extern const bool __static_condition_default_237; extern const bool __static_condition_default_378; extern const bool __static_condition_default_270; -extern const bool __static_condition_default_820; extern const bool __static_condition_default_285; +extern const bool __static_condition_default_834; extern const bool __static_condition_default_293; +extern const bool __static_condition_default_822; extern const bool __static_condition_default_417; -extern const bool __static_condition_default_826; -extern const bool __static_condition_default_833; +extern const bool __static_condition_default_813; +extern const bool __static_condition_default_803; +extern const bool __static_condition_default_832; extern const bool __static_condition_default_299; extern const bool __static_condition_default_258; +extern const bool __static_condition_default_811; +extern const bool __static_condition_default_815; +extern const bool __static_condition_default_736; +extern const bool __static_condition_default_828; extern const bool __static_condition_default_829; -extern const bool __static_condition_default_807; -extern const bool __static_condition_default_825; -extern const bool __static_condition_default_808; -extern const bool __static_condition_default_819; +extern const bool __static_condition_default_833; extern const bool __static_condition_default_252; extern const bool __static_condition_default_579; +extern const bool __static_condition_default_818; extern const bool __static_condition_default_261; extern const bool __static_condition_default_240; -extern const bool __static_condition_default_811; extern const bool __static_condition_default_394; -extern const bool __static_condition_default_824; +extern const bool __static_condition_default_621; +extern const bool __static_condition_default_807; extern const bool __static_condition_default_67; extern const bool __static_condition_default_215; extern const bool __static_condition_default_60; extern const bool __static_condition_default_395; -extern const bool __static_condition_default_629; +extern const bool __static_condition_default_825; void __static_initializer_default() { __static_renaming("__ptrdiff_t_0", "ptrdiff_t"); __static_renaming("__size_t_1", "size_t"); @@ -942,14 +943,14 @@ static __inline unsigned int (____bswap_32_66) (unsigned int ____bsx_65) { if (__static_condition_default_67) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -958,14 +959,14 @@ static __inline ____uint64_t_20 (____bswap_64_69) (____uint64_t_20 ____bsx_68) if (__static_condition_default_67) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -1138,14 +1139,14 @@ static __inline unsigned int (____bswap_32_324) (unsigned int ____bsx_323) { if (__static_condition_default_325) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -1154,14 +1155,14 @@ static __inline ____uint64_t_175 (____bswap_64_327) (____uint64_t_175 ____bsx_ if (__static_condition_default_325) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -1342,14 +1343,14 @@ _Bool (__IS_ERR_799) (const void * (__ptr_798)) { if (__static_condition_default_802) { -{ +{// L13 { return ( __ptr_798 == ( void * ) - 1 ) ;// L14 } -} +}// L15 } @@ -1358,14 +1359,14 @@ _Bool (__IS_ERR_800) (const void * (__ptr_798)) { if (__static_condition_default_803) { -{ +{// L13 { return ( __ptr_798 == ( void * ) - 1 ) ;// L14 } -} +}// L15 } @@ -1374,21 +1375,21 @@ _Bool (__IS_ERR_801) (const void * (__ptr_798)) { if (__static_condition_default_804) { -{ +{// L13 { return ( __ptr_798 == ( void * ) - 1 ) ;// L14 } -} +}// L15 } } _Bool (__IS_ERR_OR_NULL_806) (const void * (__ptr_805)) { -{ +{// L18 { @@ -1403,7 +1404,7 @@ if (__static_condition_default_804) { return ! __ptr_805 || __IS_ERR_801 ( __ptr_805 ) ;// L19 } } -} +}// L20 } @@ -1412,14 +1413,14 @@ int * ((__ip6_dst_lookup_flow_810) ()) { if (__static_condition_default_811) { -{ +{// L32 { return & __some_int_809 ;// L33 } -} +}// L34 } @@ -1428,7 +1429,7 @@ void (__sctp_v6_get_dst_816) () { if (__static_condition_default_817) { -{ +{// L37 { @@ -1449,28 +1450,28 @@ if (__static_condition_default_820) { if ( ! __IS_ERR_799 ( __dst_812 ) )// L40 { -{ +{// L40 { __dst_812 = ( ( void * ) 0 ) ; // L41:L395 } -} +}// L42 } } if (__static_condition_default_821) { if ( ! __IS_ERR_800 ( __dst_812 ) )// L40 { -{ +{// L40 { __dst_812 = ( ( void * ) 0 ) ; // L41:L395 } -} +}// L42 } } if (__static_condition_default_822) { @@ -1480,7 +1481,7 @@ if (__static_condition_default_823) { if ( ! __IS_ERR_799 ( __dst_812 ) )// L43 { -{ +{// L43 { @@ -1494,14 +1495,14 @@ if (__static_condition_default_825) { ( ( * __rt_814 ) ++ ) ; // L23:L45 } } -} +}// L46 } } if (__static_condition_default_826) { if ( ! __IS_ERR_800 ( __dst_812 ) )// L43 { -{ +{// L43 { @@ -1515,14 +1516,14 @@ if (__static_condition_default_828) { ( ( * __rt_814 ) ++ ) ; // L23:L45 } } -} +}// L46 } } if (__static_condition_default_829) { __static_type_error("invalid type found in if statement"); } } -} +}// L47 } @@ -1531,14 +1532,14 @@ int (__main_830) () { if (__static_condition_default_832) { -{ +{// L51 { return 0 ;// L55 } -} +}// L56 } @@ -1547,7 +1548,7 @@ int (__main_831) () { if (__static_condition_default_833) { -{ +{// L51 { @@ -1555,7 +1556,7 @@ if (__static_condition_default_833) { __sctp_v6_get_dst_816 ( ) ; // L53 return 0 ;// L55 } -} +}// L56 } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.desugared.clangres index 872ad5d4..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.desugared.clangres @@ -1,7 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.desugared.c:1494:3: warning: Dereference of null pointer (loaded from variable '__rt_814') [core.NullDereference] -( ( * __rt_814 ) ++ ) ; // L23:L45 - ^~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.desugared.c:1515:3: warning: Dereference of null pointer (loaded from variable '__rt_814') [core.NullDereference] -( ( * __rt_814 ) ++ ) ; // L23:L45 - ^~~~~~~~~~~~~~~~~~~ -2 warnings generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/f3d83e24154.clangres b/fonda/cpp_testsuite/varBugs/LINUX/f3d83e24154.clangres index 8629f8de..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/f3d83e24154.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/f3d83e24154.clangres @@ -1,5 +1 @@ -In file included from :344: -:1:8: error: 'defined' cannot be used as a macro name -#undef defined - ^ -1 error generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/f3d83e24154.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/f3d83e24154.desugared.c index 855c40aa..90d15c55 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/f3d83e24154.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/f3d83e24154.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -201,7 +202,7 @@ void (__wmi_query_block_220) () { if (__static_condition_default_221) { -{ +{// L7 { @@ -221,7 +222,7 @@ if (__static_condition_default_225) { __static_type_error("type error") ; // L11 } } -} +}// L12 } @@ -230,7 +231,7 @@ int (__get_wmid_devices_226) (void ) { if (__static_condition_default_221) { -{ +{// L15 { @@ -238,7 +239,7 @@ if (__static_condition_default_221) { __wmi_query_block_220 ( ) ; // L16 return 0 ;// L17 } -} +}// L18 } @@ -247,7 +248,7 @@ int (__acer_wmi_init_227) (void ) { if (__static_condition_default_221) { -{ +{// L21 { @@ -255,7 +256,7 @@ if (__static_condition_default_221) { __get_wmid_devices_226 ( ) ; // L22 return 0 ;// L23 } -} +}// L24 } @@ -264,14 +265,14 @@ int (__main_228) () { if (__static_condition_default_230) { -{ +{// L29 { return 0 ;// L33 } -} +}// L34 } @@ -280,7 +281,7 @@ int (__main_229) () { if (__static_condition_default_231) { -{ +{// L29 { @@ -288,7 +289,7 @@ if (__static_condition_default_231) { __acer_wmi_init_227 ( ) ; // L31 return 0 ;// L33 } -} +}// L34 } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/f3d83e24154.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/f3d83e24154.desugared.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/f3d83e24154.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/f3d83e24154.desugared.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/f48ec1d7885.clangres b/fonda/cpp_testsuite/varBugs/LINUX/f48ec1d7885.clangres index aee68bad..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/f48ec1d7885.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/f48ec1d7885.clangres @@ -1,4 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/f48ec1d7885.c:9:11: error: use of undeclared identifier 'CFQ_WEIGHT_DEFAULT' - d = d * CFQ_WEIGHT_DEFAULT; // ERROR - ^ -1 error generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/f48ec1d7885.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/f48ec1d7885.desugared.c index 167f04d1..b8758075 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/f48ec1d7885.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/f48ec1d7885.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -26,7 +27,7 @@ static long (__cfq_scale_slice_1) () { if (__static_condition_default_2) { -{ +{// L7 { @@ -36,7 +37,7 @@ long __d_0= 1;// L8 __static_type_error("type error : no valid expression"); // L9 return __d_0 ;// L10 } -} +}// L11 } @@ -45,14 +46,14 @@ int (__main_3) () { if (__static_condition_default_5) { -{ +{// L16 { return 0 ;// L20 } -} +}// L21 } @@ -61,7 +62,7 @@ int (__main_4) () { if (__static_condition_default_6) { -{ +{// L16 { @@ -69,7 +70,7 @@ if (__static_condition_default_6) { __cfq_scale_slice_1 ( ) ; // L18 return 0 ;// L20 } -} +}// L21 } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/f48ec1d7885.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/f48ec1d7885.desugared.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/f48ec1d7885.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/f48ec1d7885.desugared.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/f7ab9b407b3.clangres b/fonda/cpp_testsuite/varBugs/LINUX/f7ab9b407b3.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/f7ab9b407b3.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/f7ab9b407b3.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/LINUX/f7ab9b407b3.desugared.c b/fonda/cpp_testsuite/varBugs/LINUX/f7ab9b407b3.desugared.c index 95eb3b2a..28d8e1d5 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/f7ab9b407b3.desugared.c +++ b/fonda/cpp_testsuite/varBugs/LINUX/f7ab9b407b3.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -53,14 +54,14 @@ typedef int (__filler_t_0) (int );// L7 // typedef moved to top of scope int (__some_fun_2) (int __n_1) { -{ +{// L10 { return __n_1 ;// L11 } -} +}// L12 } @@ -71,7 +72,7 @@ __filler_t_0 * ((__shmem_get_inode_5) ()) { { if (__static_condition_default_7) { -{ +{// L22 { @@ -83,7 +84,7 @@ if (__static_condition_default_9) { return __f_4 ;// L23 } } -} +}// L24 } @@ -94,14 +95,14 @@ __filler_t_0 * ((__ramfs_get_inode_6) ()) { { if (__static_condition_default_10) { -{ +{// L27 { return & __some_fun_2 ;// L28 } -} +}// L29 } @@ -109,7 +110,7 @@ return & __some_fun_2 ;// L28 }} __filler_t_0 * ((__shmem_file_setup_11) ()) { -{ +{// L35 { @@ -121,7 +122,7 @@ if (__static_condition_default_7) { return __shmem_get_inode_5 ( ) ;// L36 } } -} +}// L37 } @@ -129,7 +130,7 @@ int (__drm_gem_object_init_13) (__filler_t_0 * (* (__readpage_12))) { if (__static_condition_default_14) { -{ +{// L41 { @@ -137,7 +138,7 @@ if (__static_condition_default_14) { * __readpage_12 = __shmem_file_setup_11 ( ) ; // L42 return 0 ;// L43 } -} +}// L44 } @@ -146,7 +147,7 @@ void (__i915_gem_alloc_object_16) (__filler_t_0 * (* (__readpage_15))) { if (__static_condition_default_14) { -{ +{// L47 { @@ -156,7 +157,7 @@ if ( __drm_gem_object_init_13 ( __readpage_15 ) != 0 )// L48 ; // L49 } } -} +}// L50 } @@ -165,14 +166,14 @@ void (__do_read_cache_page_18) (__filler_t_0 * (__filler_17)) { if (__static_condition_default_14) { -{ +{// L53 { __filler_17 (0) ; // L54 } -} +}// L55 } @@ -181,7 +182,7 @@ void (__read_cache_page_gfp_21) (__filler_t_0 * (* (__readpage_19))) { if (__static_condition_default_14) { -{ +{// L58 { @@ -190,7 +191,7 @@ __filler_t_0 * (__filler_20)= * __readpage_19 ;// L59 __do_read_cache_page_18 ( __filler_20 ) ; // L60 } -} +}// L61 } @@ -199,7 +200,7 @@ int (__i915_gem_object_get_pages_gtt_23) (__filler_t_0 * (* (__readpage_22))) if (__static_condition_default_14) { -{ +{// L64 { @@ -207,7 +208,7 @@ if (__static_condition_default_14) { __read_cache_page_gfp_21 ( __readpage_22 ) ; // L65 return 0 ;// L66 } -} +}// L67 } @@ -216,14 +217,14 @@ int (__i915_gem_object_bind_to_gtt_25) (__filler_t_0 * (* (__readpage_24))) { if (__static_condition_default_14) { -{ +{// L70 { return __i915_gem_object_get_pages_gtt_23 ( __readpage_24 ) ;// L71 } -} +}// L72 } @@ -232,14 +233,14 @@ int (__i915_gem_object_pin_27) (__filler_t_0 * (* (__readpage_26))) { if (__static_condition_default_14) { -{ +{// L75 { return __i915_gem_object_bind_to_gtt_25 ( __readpage_26 ) ;// L76 } -} +}// L77 } @@ -248,7 +249,7 @@ int (__intel_init_ring_buffer_29) (__filler_t_0 * (* (__readpage_28))) { if (__static_condition_default_14) { -{ +{// L80 { @@ -256,7 +257,7 @@ if (__static_condition_default_14) { __i915_gem_alloc_object_16 ( __readpage_28 ) ; // L81 return __i915_gem_object_pin_27 ( __readpage_28 ) ;// L82 } -} +}// L83 } @@ -265,14 +266,14 @@ int (__intel_init_render_ring_buffer_31) (__filler_t_0 * (* (__readpage_30))) if (__static_condition_default_14) { -{ +{// L86 { return __intel_init_ring_buffer_29 ( __readpage_30 ) ;// L87 } -} +}// L88 } @@ -281,14 +282,14 @@ int (__i915_gem_init_ringbuffer_33) (__filler_t_0 * (* (__readpage_32))) { if (__static_condition_default_14) { -{ +{// L91 { return __intel_init_render_ring_buffer_31 ( __readpage_32 ) ;// L92 } -} +}// L93 } @@ -297,14 +298,14 @@ int (__i915_load_modeset_init_35) (__filler_t_0 * (* (__readpage_34))) { if (__static_condition_default_14) { -{ +{// L96 { return __i915_gem_init_ringbuffer_33 ( __readpage_34 ) ;// L97 } -} +}// L98 } @@ -313,7 +314,7 @@ int (__i915_driver_load_37) () { if (__static_condition_default_14) { -{ +{// L101 { @@ -322,7 +323,7 @@ __filler_t_0 * (__readpage_36);// L102 return __i915_load_modeset_init_35 (& __readpage_36 ) ;// L103 } -} +}// L104 } @@ -331,14 +332,14 @@ int (__main_38) () { if (__static_condition_default_40) { -{ +{// L108 { return 0 ;// L112 } -} +}// L113 } @@ -347,7 +348,7 @@ int (__main_39) () { if (__static_condition_default_41) { -{ +{// L108 { @@ -355,7 +356,7 @@ if (__static_condition_default_41) { __i915_driver_load_37 ( ) ; // L110 return 0 ;// L112 } -} +}// L113 } diff --git a/fonda/cpp_testsuite/varBugs/LINUX/f7ab9b407b3.desugared.clangres b/fonda/cpp_testsuite/varBugs/LINUX/f7ab9b407b3.desugared.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/LINUX/f7ab9b407b3.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/LINUX/f7ab9b407b3.desugared.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN-2d22902d080.report b/fonda/cpp_testsuite/varBugs/MARLIN-2d22902d080.report index fa1de4c3..c9bad109 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN-2d22902d080.report +++ b/fonda/cpp_testsuite/varBugs/MARLIN-2d22902d080.report @@ -2,9 +2,4 @@ MARLIN 2d22902d080.c Macros: SDSUPPORT [-USDSUPPORT ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/MARLIN-2db384a21d6.report b/fonda/cpp_testsuite/varBugs/MARLIN-2db384a21d6.report index 61434f8a..331fcb2b 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN-2db384a21d6.report +++ b/fonda/cpp_testsuite/varBugs/MARLIN-2db384a21d6.report @@ -6,9 +6,4 @@ Macros: [-DMESH_BED_LEVELING=1 -UDISABLE_M503 ] [-UMESH_BED_LEVELING -DDISABLE_M503=1 ] [-DMESH_BED_LEVELING=1 -DDISABLE_M503=1 ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/MARLIN-30248214c7f.report b/fonda/cpp_testsuite/varBugs/MARLIN-30248214c7f.report index 49ff0e69..f021b62f 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN-30248214c7f.report +++ b/fonda/cpp_testsuite/varBugs/MARLIN-30248214c7f.report @@ -2,9 +2,4 @@ MARLIN 30248214c7f.c Macros: defined [-Udefined ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/MARLIN-31873ec707d.report b/fonda/cpp_testsuite/varBugs/MARLIN-31873ec707d.report index 744814e2..127fe405 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN-31873ec707d.report +++ b/fonda/cpp_testsuite/varBugs/MARLIN-31873ec707d.report @@ -2,9 +2,4 @@ MARLIN 31873ec707d.c Macros: ULTRA_LCD [-UULTRA_LCD ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/MARLIN-7336e6df070.report b/fonda/cpp_testsuite/varBugs/MARLIN-7336e6df070.report index 192ec294..0f6a99e0 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN-7336e6df070.report +++ b/fonda/cpp_testsuite/varBugs/MARLIN-7336e6df070.report @@ -20,9 +20,4 @@ Macros: [-DZ_DUAL_STEPPER_DRIVERS=1 -UZ_DUAL_ENDSTOPS -DHAS_Z_MIN=1 -DHAS_Z_MAX=1 ] [-UZ_DUAL_STEPPER_DRIVERS -DZ_DUAL_ENDSTOPS=1 -DHAS_Z_MIN=1 -DHAS_Z_MAX=1 ] [-DZ_DUAL_STEPPER_DRIVERS=1 -DZ_DUAL_ENDSTOPS=1 -DHAS_Z_MIN=1 -DHAS_Z_MAX=1 ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/MARLIN-831016b09f7.report b/fonda/cpp_testsuite/varBugs/MARLIN-831016b09f7.report index 420e0786..e7fac61b 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN-831016b09f7.report +++ b/fonda/cpp_testsuite/varBugs/MARLIN-831016b09f7.report @@ -6,13 +6,4 @@ Macros: [-DULTRA_LCD=1 -USDSUPPORT ] [-UULTRA_LCD -DSDSUPPORT=1 ] [-DULTRA_LCD=1 -DSDSUPPORT=1 ] -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.desugared.c:81:7: warning: Value stored to '__time_7' during its initialization is never read [deadcode.DeadStores] -char __time_7[30]= "time_here";// L14 - ^~~~~~~~ ~~~~~~~~~~~ -1 warning generated. -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/MARLIN-8c4377dd635.report b/fonda/cpp_testsuite/varBugs/MARLIN-8c4377dd635.report index 3a0bad9f..846490f0 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN-8c4377dd635.report +++ b/fonda/cpp_testsuite/varBugs/MARLIN-8c4377dd635.report @@ -4,41 +4,12 @@ Macros: PIDTEMP PID_DEBUG [-UMARLIN_H -UPIDTEMP -UPID_DEBUG ] -clang :: 1 :: Line:19 - Value stored to 'pid_output' is never read [deadcode.DeadStores] [-DMARLIN_H=1 -UPIDTEMP -UPID_DEBUG ] -clang :: 2 :: Line:19 - Value stored to 'pid_output' is never read [deadcode.DeadStores] [-UMARLIN_H -DPIDTEMP=1 -UPID_DEBUG ] [-DMARLIN_H=1 -DPIDTEMP=1 -UPID_DEBUG ] [-UMARLIN_H -UPIDTEMP -DPID_DEBUG=1 ] -clang :: 3 :: Line:19 - Value stored to 'pid_output' is never read [deadcode.DeadStores] [-DMARLIN_H=1 -UPIDTEMP -DPID_DEBUG=1 ] -clang :: 4 :: Line:19 - Value stored to 'pid_output' is never read [deadcode.DeadStores] [-UMARLIN_H -DPIDTEMP=1 -DPID_DEBUG=1 ] [-DMARLIN_H=1 -DPIDTEMP=1 -DPID_DEBUG=1 ] [-UMARLIN_H -UPIDTEMP -UPID_DEBUG ] -clang :: 5 :: Line:19 - Value stored to 'pid_output' is never read [deadcode.DeadStores] -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.c:94:2: warning: Value stored to '__pid_output_4' is never read [deadcode.DeadStores] - __pid_output_4 = 0 ; // L19 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.c:138:2: warning: Value stored to '__pid_output_4' is never read [deadcode.DeadStores] - __pid_output_4 = 0 ; // L19 - ^ ~ -2 warnings generated. -Desugared Infer Results: - - No issues found -Matches: - 1 has a match! - 2 has a match! - 3 has a match! - 4 has a match! - 5 has a match! -Unmatched ids: - None! -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/MARLIN-a7fc1f83c81.report b/fonda/cpp_testsuite/varBugs/MARLIN-a7fc1f83c81.report index 1d0d1a6a..0332fde8 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN-a7fc1f83c81.report +++ b/fonda/cpp_testsuite/varBugs/MARLIN-a7fc1f83c81.report @@ -2,19 +2,4 @@ MARLIN a7fc1f83c81.c Macros: SDSUPPORT [-USDSUPPORT ] -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.c:199:6: warning: Value stored to '__len_217' during its initialization is never read [deadcode.DeadStores] -int __len_217= __strlen_108 ( __prepend_216 ) + 13 + 1;// L10 - ^~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.c:201:6: warning: Value stored to '__len_218' during its initialization is never read [deadcode.DeadStores] -int __len_218= __strlen_109 ( __prepend_216 ) + 13 + 1;// L10 - ^~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.c:211:7: warning: Value stored to '__lfilename_221' during its initialization is never read [deadcode.DeadStores] -char __lfilename_221[13]= "FOLDERNAME12\0";// L15 - ^~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~ -3 warnings generated. -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/MARLIN-b8e79dce897.report b/fonda/cpp_testsuite/varBugs/MARLIN-b8e79dce897.report index 4e5f7a81..0472a019 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN-b8e79dce897.report +++ b/fonda/cpp_testsuite/varBugs/MARLIN-b8e79dce897.report @@ -12,9 +12,4 @@ Macros: [-UULTRA_LCD -DENCODER_RATE_MULTIPLIER=1 -DTEMP_SENSOR_0=1 ] [-DULTRA_LCD=1 -DENCODER_RATE_MULTIPLIER=1 -DTEMP_SENSOR_0=1 ] [-UULTRA_LCD -UENCODER_RATE_MULTIPLIER -UTEMP_SENSOR_0 ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/MARLIN-e30bfedce4d.report b/fonda/cpp_testsuite/varBugs/MARLIN-e30bfedce4d.report index e7beb40d..d62212c5 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN-e30bfedce4d.report +++ b/fonda/cpp_testsuite/varBugs/MARLIN-e30bfedce4d.report @@ -4,23 +4,6 @@ Macros: AUTO_BED_LEVELING_GRID [-UENABLE_AUTO_BED_LEVELING -UAUTO_BED_LEVELING_GRID ] [-DENABLE_AUTO_BED_LEVELING=1 -UAUTO_BED_LEVELING_GRID ] -clang :: 8 :: Line:24 - Value stored to 'xGridSpacing' during its initialization is never read [deadcode.DeadStores] [-UENABLE_AUTO_BED_LEVELING -DAUTO_BED_LEVELING_GRID=1 ] [-DENABLE_AUTO_BED_LEVELING=1 -DAUTO_BED_LEVELING_GRID=1 ] -clang :: 9 :: Line:24 - Value stored to 'xGridSpacing' during its initialization is never read [deadcode.DeadStores] -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.desugared.c:48:6: warning: Value stored to '__xGridSpacing_1' during its initialization is never read [deadcode.DeadStores] -int __xGridSpacing_1= __left_probe_bed_position_0 ;// L24 - ^~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~ -1 warning generated. -Desugared Infer Results: - - No issues found -Matches: - 8 has a match! - 9 has a match! -Unmatched ids: - None! -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/MARLIN-f87c80889fe.report b/fonda/cpp_testsuite/varBugs/MARLIN-f87c80889fe.report index bc02965c..c79494df 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN-f87c80889fe.report +++ b/fonda/cpp_testsuite/varBugs/MARLIN-f87c80889fe.report @@ -2,9 +2,4 @@ MARLIN f87c80889fe.c Macros: TEMP_RESIDENCY_TIME [-UTEMP_RESIDENCY_TIME ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/MARLIN-fc3c76fc164.report b/fonda/cpp_testsuite/varBugs/MARLIN-fc3c76fc164.report index 92c51aef..3e1ff3a9 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN-fc3c76fc164.report +++ b/fonda/cpp_testsuite/varBugs/MARLIN-fc3c76fc164.report @@ -6,9 +6,4 @@ Macros: [-DHAS_HEATER_THERMAL_PROTECTION=1 -UHAS_BED_THERMAL_PROTECTION ] [-UHAS_HEATER_THERMAL_PROTECTION -DHAS_BED_THERMAL_PROTECTION=1 ] [-DHAS_HEATER_THERMAL_PROTECTION=1 -DHAS_BED_THERMAL_PROTECTION=1 ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/MARLIN-fdac8f6cece.report b/fonda/cpp_testsuite/varBugs/MARLIN-fdac8f6cece.report index 8c430303..d1dd3227 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN-fdac8f6cece.report +++ b/fonda/cpp_testsuite/varBugs/MARLIN-fdac8f6cece.report @@ -2,9 +2,4 @@ MARLIN fdac8f6cece.c Macros: ENABLE_AUTO_BED_LEVELING [-UENABLE_AUTO_BED_LEVELING ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/2d22902d080.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/2d22902d080.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/2d22902d080.clangres +++ b/fonda/cpp_testsuite/varBugs/MARLIN/2d22902d080.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/2d22902d080.desugared.c b/fonda/cpp_testsuite/varBugs/MARLIN/2d22902d080.desugared.c index f62c53c5..8396764c 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/2d22902d080.desugared.c +++ b/fonda/cpp_testsuite/varBugs/MARLIN/2d22902d080.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -191,7 +192,7 @@ void (__process_commands_219) () { { if (__static_condition_default_220) { -{ +{// L6 { @@ -199,14 +200,14 @@ if (__static_condition_default_220) { char * (__starpos_218)= ( ( void * ) 0 );// L7 } -} +}// L14 } if (__static_condition_default_221) { -{ +{// L6 { @@ -225,7 +226,7 @@ if ( __starpos_218 != ( ( void * ) 0 ) )// L10 } __static_type_error("type error : no valid expression"); // L12 } -} +}// L14 } @@ -233,7 +234,7 @@ __static_type_error("type error : no valid expression"); // L12 }} int (__main_226) (int __argc_224, char * (* (__argv_225))) { -{ +{// L17 { @@ -241,7 +242,7 @@ int (__main_226) (int __argc_224, char * (* (__argv_225))) { __process_commands_219 ( ) ; // L18 return 0 ;// L19 } -} +}// L20 } diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/2d22902d080.desugared.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/2d22902d080.desugared.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/2d22902d080.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/MARLIN/2d22902d080.desugared.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/2db384a21d6.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/2db384a21d6.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/2db384a21d6.clangres +++ b/fonda/cpp_testsuite/varBugs/MARLIN/2db384a21d6.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/2db384a21d6.desugared.c b/fonda/cpp_testsuite/varBugs/MARLIN/2db384a21d6.desugared.c index c235a270..e20cee2f 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/2db384a21d6.desugared.c +++ b/fonda/cpp_testsuite/varBugs/MARLIN/2db384a21d6.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -26,7 +27,7 @@ __static_condition_renaming("__static_condition_default_12", "!(defined DISABLE_ void (__serial_echopair_P_l_2) (const char * (__s_P_0), unsigned long __v_1) { -{ +{// L7 { @@ -34,7 +35,7 @@ void (__serial_echopair_P_l_2) (const char * (__s_P_0), unsigned long __v_1) __static_type_error("type error : no valid expression"); // L7 __static_type_error("type error : no valid expression"); // L7 } -} +}// L7 } @@ -43,20 +44,20 @@ void (__Config_PrintSettings_4) (unsigned short __forReplay_3) { { if (__static_condition_default_5) { -{ +{// L11 { } -} +}// L18 } if (__static_condition_default_6) { -{ +{// L11 { @@ -64,31 +65,31 @@ if (__static_condition_default_6) { do { -{ +{// L5 { __serial_echopair_P_l_2 (" X",7) ; // L5 } -} +}// L5 } while( 0 );// L5:L14 do { -{ +{// L5 { __serial_echopair_P_l_2 (" Y",7) ; // L5 } -} +}// L5 } while( 0 );// L5:L15 } -} +}// L18 } @@ -98,7 +99,7 @@ int (__main_9) (int __argc_7, char * (* (__argv_8))) { if (__static_condition_default_11) { -{ +{// L23 { @@ -106,7 +107,7 @@ if (__static_condition_default_11) { __static_type_error("type error") ; // L24 return 0 ;// L25 } -} +}// L26 } @@ -115,7 +116,7 @@ int (__main_10) (int __argc_7, char * (* (__argv_8))) { if (__static_condition_default_12) { -{ +{// L23 { @@ -123,7 +124,7 @@ if (__static_condition_default_12) { __Config_PrintSettings_4 (0) ; // L24 return 0 ;// L25 } -} +}// L26 } diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/2db384a21d6.desugared.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/2db384a21d6.desugared.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/2db384a21d6.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/MARLIN/2db384a21d6.desugared.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/30248214c7f.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/30248214c7f.clangres index 8629f8de..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/30248214c7f.clangres +++ b/fonda/cpp_testsuite/varBugs/MARLIN/30248214c7f.clangres @@ -1,5 +1 @@ -In file included from :344: -:1:8: error: 'defined' cannot be used as a macro name -#undef defined - ^ -1 error generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/30248214c7f.desugared.c b/fonda/cpp_testsuite/varBugs/MARLIN/30248214c7f.desugared.c index fc4d8f6a..10755c62 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/30248214c7f.desugared.c +++ b/fonda/cpp_testsuite/varBugs/MARLIN/30248214c7f.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -21,7 +22,6 @@ extern const bool __static_condition_default_559; extern const bool __static_condition_default_1065; extern const bool __static_condition_default_972; extern const bool __static_condition_default_512; -extern const bool __static_condition_default_1109; extern const bool __static_condition_default_249; extern const bool __static_condition_default_573; extern const bool __static_condition_default_836; @@ -29,6 +29,7 @@ extern const bool __static_condition_default_169; extern const bool __static_condition_default_84; extern const bool __static_condition_default_473; extern const bool __static_condition_default_1005; +extern const bool __static_condition_default_1106; extern const bool __static_condition_default_813; extern const bool __static_condition_default_274; extern const bool __static_condition_default_991; @@ -61,7 +62,6 @@ extern const bool __static_condition_default_544; extern const bool __static_condition_default_807; extern const bool __static_condition_default_638; extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_1103; extern const bool __static_condition_default_980; extern const bool __static_condition_default_883; extern const bool __static_condition_default_402; @@ -80,13 +80,12 @@ extern const bool __static_condition_default_864; extern const bool __static_condition_default_263; extern const bool __static_condition_default_825; extern const bool __static_condition_default_258; +extern const bool __static_condition_default_1103; extern const bool __static_condition_default_264; extern const bool __static_condition_default_734; extern const bool __static_condition_default_736; -extern const bool __static_condition_default_1106; extern const bool __static_condition_default_578; extern const bool __static_condition_default_803; -extern const bool __static_condition_default_1105; extern const bool __static_condition_default_1007; extern const bool __static_condition_default_955; extern const bool __static_condition_default_278; @@ -115,6 +114,7 @@ extern const bool __static_condition_default_369; extern const bool __static_condition_default_375; extern const bool __static_condition_default_315; extern const bool __static_condition_default_789; +extern const bool __static_condition_default_1104; extern const bool __static_condition_default_792; extern const bool __static_condition_default_998; extern const bool __static_condition_default_564; @@ -165,7 +165,6 @@ extern const bool __static_condition_default_756; extern const bool __static_condition_default_745; extern const bool __static_condition_default_755; extern const bool __static_condition_default_1057; -extern const bool __static_condition_default_1110; extern const bool __static_condition_default_288; extern const bool __static_condition_default_625; extern const bool __static_condition_default_271; @@ -174,10 +173,9 @@ extern const bool __static_condition_default_204; extern const bool __static_condition_default_393; extern const bool __static_condition_default_668; extern const bool __static_condition_default_819; -extern const bool __static_condition_default_1111; extern const bool __static_condition_default_602; -extern const bool __static_condition_default_1104; extern const bool __static_condition_default_286; +extern const bool __static_condition_default_1105; extern const bool __static_condition_default_331; extern const bool __static_condition_default_779; extern const bool __static_condition_default_967; @@ -227,6 +225,7 @@ extern const bool __static_condition_default_182; extern const bool __static_condition_default_489; extern const bool __static_condition_default_735; extern const bool __static_condition_default_552; +extern const bool __static_condition_default_1110; extern const bool __static_condition_default_373; extern const bool __static_condition_default_560; extern const bool __static_condition_default_357; @@ -243,6 +242,7 @@ extern const bool __static_condition_default_717; extern const bool __static_condition_default_788; extern const bool __static_condition_default_317; extern const bool __static_condition_default_862; +extern const bool __static_condition_default_1111; extern const bool __static_condition_default_1015; extern const bool __static_condition_default_670; extern const bool __static_condition_default_499; @@ -266,6 +266,7 @@ extern const bool __static_condition_default_1051; extern const bool __static_condition_default_280; extern const bool __static_condition_default_891; extern const bool __static_condition_default_700; +extern const bool __static_condition_default_1109; extern const bool __static_condition_default_53; extern const bool __static_condition_default_747; extern const bool __static_condition_default_692; @@ -1346,7 +1347,7 @@ void (__thermal_runaway_protection_1102) (int * (__state_1095), unsigned long if (__static_condition_default_1103) { -{ +{// L6 { @@ -1354,22 +1355,22 @@ if (__static_condition_default_1103) { if ( __temperature_1097 >= ( __target_temperature_1098 - __hysteresis_degc_1101 ) )// L7 { -{ +{// L8 { * __timer_1096 = 123456782l ; // L9 } +}// L10 } -} -else +else// L11 { if (__static_condition_default_1104) { if ( ( __millis_1092 - * __timer_1096 ) > ( __period_seconds_1100 ) * 1000 )// L11 { -{ +{// L12 { @@ -1378,14 +1379,14 @@ if ( ( __millis_1092 - * __timer_1096 ) > ( __period_seconds_1100 ) * 1000 __printf_421 ("%d",( int ) __heater_id_1099 ) ; // L14 __printf_421 ("%s","THERMAL RUNAWAY") ; // L15 } -} +}// L16 } } if (__static_condition_default_1105) { if ( ( __millis_1093 - * __timer_1096 ) > ( __period_seconds_1100 ) * 1000 )// L11 { -{ +{// L12 { @@ -1394,14 +1395,14 @@ __static_type_error("type error") ; // L13 __static_type_error("type error") ; // L14 __static_type_error("type error") ; // L15 } -} +}// L16 } } if (__static_condition_default_1106) { if ( ( __millis_1094 - * __timer_1096 ) > ( __period_seconds_1100 ) * 1000 )// L11 { -{ +{// L12 { @@ -1410,12 +1411,12 @@ if ( ( __millis_1094 - * __timer_1096 ) > ( __period_seconds_1100 ) * 1000 __printf_421 ("%d",( int ) __heater_id_1099 ) ; // L14 __printf_421 ("%s","THERMAL RUNAWAY") ; // L15 } +}// L16 } } } } -} -} +}// L17 } @@ -1424,7 +1425,7 @@ int (__main_1107) (void ) { if (__static_condition_default_1109) { -{ +{// L20 { @@ -1432,7 +1433,7 @@ if (__static_condition_default_1109) { __static_type_error("type error") ; // L21 return 0 ;// L22 } -} +}// L23 } @@ -1441,7 +1442,7 @@ int (__main_1108) (void ) { if (__static_condition_default_1110) { -{ +{// L20 { @@ -1449,7 +1450,7 @@ if (__static_condition_default_1110) { __thermal_runaway_protection_1102 (0,123456783,145.0f,200.0f,1,10,1) ; // L21 return 0 ;// L22 } -} +}// L23 } diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/30248214c7f.desugared.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/30248214c7f.desugared.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/30248214c7f.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/MARLIN/30248214c7f.desugared.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.clangres +++ b/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.desugared.c b/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.desugared.c index be450851..8bc50c99 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.desugared.c +++ b/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -1328,7 +1329,7 @@ int (__main_1095) (int __argc_1093, char * (* (__argv_1094))) { if (__static_condition_default_1096) { -{ +{// L22 { @@ -1336,7 +1337,7 @@ if (__static_condition_default_1096) { __static_type_error("type error : no valid expression"); // L23 return 0 ;// L24 } -} +}// L25 } diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.desugared.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.desugared.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/MARLIN/31873ec707d.desugared.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.clangres index 07e773b3..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.clangres +++ b/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.clangres @@ -1,9 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.c:1:10: error: 'util/delay.h' file not found with include; use "quotes" instead -#include // http://download.savannah.gnu.org/releases/avr-libc/binary-releases/ for the util/delay library - ^~~~~~~~~~~~~~ - "util/delay.h" -In file included from /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.c:1: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/util/delay.h:45:10: fatal error: 'util/delay_basic.h' file not found -#include - ^~~~~~~~~~~~~~~~~~~~ -2 errors generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.desugared.c b/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.desugared.c index b4b23432..a2d2bb03 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.desugared.c +++ b/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -7,381 +8,381 @@ extern void __static_condition_renaming(char *expression, char *renaming); void __static_initializer_default(); -extern const bool __static_condition_default_1137; -extern const bool __static_condition_default_2059; -extern const bool __static_condition_default_2169; -extern const bool __static_condition_default_2227; -extern const bool __static_condition_default_1893; -extern const bool __static_condition_default_1899; -extern const bool __static_condition_default_1983; -extern const bool __static_condition_default_1176; -extern const bool __static_condition_default_1908; -extern const bool __static_condition_default_2146; -extern const bool __static_condition_default_1900; -extern const bool __static_condition_default_1506; -extern const bool __static_condition_default_1868; -extern const bool __static_condition_default_2271; -extern const bool __static_condition_default_2300; +extern const bool __static_condition_default_1177; +extern const bool __static_condition_default_1538; +extern const bool __static_condition_default_1740; +extern const bool __static_condition_default_2010; extern const bool __static_condition_default_119; -extern const bool __static_condition_default_2014; -extern const bool __static_condition_default_1694; -extern const bool __static_condition_default_1584; -extern const bool __static_condition_default_1502; -extern const bool __static_condition_default_1170; -extern const bool __static_condition_default_55; -extern const bool __static_condition_default_1755; -extern const bool __static_condition_default_1130; -extern const bool __static_condition_default_1143; -extern const bool __static_condition_default_1622; -extern const bool __static_condition_default_1906; -extern const bool __static_condition_default_1992; -extern const bool __static_condition_default_2016; -extern const bool __static_condition_default_2170; -extern const bool __static_condition_default_1948; -extern const bool __static_condition_default_1918; extern const bool __static_condition_default_1132; -extern const bool __static_condition_default_1168; +extern const bool __static_condition_default_1701; +extern const bool __static_condition_default_1799; +extern const bool __static_condition_default_2305; +extern const bool __static_condition_default_1141; +extern const bool __static_condition_default_1958; +extern const bool __static_condition_default_1982; +extern const bool __static_condition_default_1599; +extern const bool __static_condition_default_1848; +extern const bool __static_condition_default_2078; +extern const bool __static_condition_default_1947; extern const bool __static_condition_default_2129; -extern const bool __static_condition_default_1267; -extern const bool __static_condition_default_1926; -extern const bool __static_condition_default_2302; +extern const bool __static_condition_default_1373; +extern const bool __static_condition_default_55; +extern const bool __static_condition_default_1395; +extern const bool __static_condition_default_2146; +extern const bool __static_condition_default_1536; +extern const bool __static_condition_default_1727; extern const bool __static_condition_default_1836; -extern const bool __static_condition_default_2233; -extern const bool __static_condition_default_1735; -extern const bool __static_condition_default_1479; -extern const bool __static_condition_default_1853; -extern const bool __static_condition_default_1158; -extern const bool __static_condition_default_2198; -extern const bool __static_condition_default_1458; -extern const bool __static_condition_default_1135; -extern const bool __static_condition_default_1946; extern const bool __static_condition_default_1471; -extern const bool __static_condition_default_1824; -extern const bool __static_condition_default_1481; -extern const bool __static_condition_default_1714; -extern const bool __static_condition_default_2242; -extern const bool __static_condition_default_1171; -extern const bool __static_condition_default_1842; -extern const bool __static_condition_default_1448; -extern const bool __static_condition_default_1938; -extern const bool __static_condition_default_1971; -extern const bool __static_condition_default_1117; -extern const bool __static_condition_default_2257; -extern const bool __static_condition_default_2098; -extern const bool __static_condition_default_1172; -extern const bool __static_condition_default_1840; -extern const bool __static_condition_default_1859; -extern const bool __static_condition_default_1730; -extern const bool __static_condition_default_1925; -extern const bool __static_condition_default_1124; -extern const bool __static_condition_default_1980; -extern const bool __static_condition_default_2063; -extern const bool __static_condition_default_1685; -extern const bool __static_condition_default_2206; -extern const bool __static_condition_default_2306; -extern const bool __static_condition_default_1461; -extern const bool __static_condition_default_1960; -extern const bool __static_condition_default_1116; -extern const bool __static_condition_default_1361; -extern const bool __static_condition_default_1454; -extern const bool __static_condition_default_1705; -extern const bool __static_condition_default_2307; -extern const bool __static_condition_default_1750; -extern const bool __static_condition_default_1140; -extern const bool __static_condition_default_2004; -extern const bool __static_condition_default_1156; -extern const bool __static_condition_default_1829; -extern const bool __static_condition_default_2008; -extern const bool __static_condition_default_1586; -extern const bool __static_condition_default_1432; -extern const bool __static_condition_default_1603; -extern const bool __static_condition_default_1876; -extern const bool __static_condition_default_118; -extern const bool __static_condition_default_1175; -extern const bool __static_condition_default_2309; -extern const bool __static_condition_default_1720; -extern const bool __static_condition_default_1183; -extern const bool __static_condition_default_1849; -extern const bool __static_condition_default_1679; -extern const bool __static_condition_default_1450; extern const bool __static_condition_default_1825; -extern const bool __static_condition_default_1449; -extern const bool __static_condition_default_1852; -extern const bool __static_condition_default_1823; -extern const bool __static_condition_default_105; +extern const bool __static_condition_default_1426; extern const bool __static_condition_default_2288; -extern const bool __static_condition_default_1141; -extern const bool __static_condition_default_1827; -extern const bool __static_condition_default_2290; -extern const bool __static_condition_default_1793; -extern const bool __static_condition_default_1446; -extern const bool __static_condition_default_1167; -extern const bool __static_condition_default_2301; -extern const bool __static_condition_default_1816; -extern const bool __static_condition_default_1161; -extern const bool __static_condition_default_1524; -extern const bool __static_condition_default_1112; -extern const bool __static_condition_default_1728; -extern const bool __static_condition_default_2171; -extern const bool __static_condition_default_122; -extern const bool __static_condition_default_1958; -extern const bool __static_condition_default_1113; -extern const bool __static_condition_default_1189; -extern const bool __static_condition_default_1120; -extern const bool __static_condition_default_1164; +extern const bool __static_condition_default_1155; extern const bool __static_condition_default_1173; -extern const bool __static_condition_default_1275; -extern const bool __static_condition_default_1733; -extern const bool __static_condition_default_1484; +extern const bool __static_condition_default_1439; +extern const bool __static_condition_default_2317; +extern const bool __static_condition_default_1942; +extern const bool __static_condition_default_2264; +extern const bool __static_condition_default_1267; +extern const bool __static_condition_default_1176; +extern const bool __static_condition_default_1884; +extern const bool __static_condition_default_2281; +extern const bool __static_condition_default_1144; +extern const bool __static_condition_default_1571; +extern const bool __static_condition_default_1876; extern const bool __static_condition_default_1850; -extern const bool __static_condition_default_2314; -extern const bool __static_condition_default_1389; -extern const bool __static_condition_default_2074; -extern const bool __static_condition_default_1804; -extern const bool __static_condition_default_1677; -extern const bool __static_condition_default_1664; -extern const bool __static_condition_default_2313; +extern const bool __static_condition_default_1122; +extern const bool __static_condition_default_2200; +extern const bool __static_condition_default_1952; +extern const bool __static_condition_default_1127; +extern const bool __static_condition_default_1918; extern const bool __static_condition_default_1828; -extern const bool __static_condition_default_2025; -extern const bool __static_condition_default_1942; +extern const bool __static_condition_default_1680; +extern const bool __static_condition_default_1883; +extern const bool __static_condition_default_1170; +extern const bool __static_condition_default_1744; +extern const bool __static_condition_default_2033; +extern const bool __static_condition_default_1441; +extern const bool __static_condition_default_2227; +extern const bool __static_condition_default_1944; +extern const bool __static_condition_default_1166; +extern const bool __static_condition_default_1172; +extern const bool __static_condition_default_1564; +extern const bool __static_condition_default_1134; +extern const bool __static_condition_default_1573; +extern const bool __static_condition_default_1970; +extern const bool __static_condition_default_2039; +extern const bool __static_condition_default_1244; +extern const bool __static_condition_default_1469; +extern const bool __static_condition_default_2213; +extern const bool __static_condition_default_1189; +extern const bool __static_condition_default_1179; +extern const bool __static_condition_default_2302; +extern const bool __static_condition_default_2311; +extern const bool __static_condition_default_1558; +extern const bool __static_condition_default_1988; +extern const bool __static_condition_default_1183; extern const bool __static_condition_default_1528; -extern const bool __static_condition_default_1174; +extern const bool __static_condition_default_1138; +extern const bool __static_condition_default_1487; +extern const bool __static_condition_default_1437; +extern const bool __static_condition_default_1629; +extern const bool __static_condition_default_2098; +extern const bool __static_condition_default_2300; +extern const bool __static_condition_default_1788; +extern const bool __static_condition_default_1454; +extern const bool __static_condition_default_1175; +extern const bool __static_condition_default_1129; +extern const bool __static_condition_default_2120; +extern const bool __static_condition_default_118; +extern const bool __static_condition_default_1137; +extern const bool __static_condition_default_2069; extern const bool __static_condition_default_1712; -extern const bool __static_condition_default_2286; -extern const bool __static_condition_default_1244; -extern const bool __static_condition_default_1883; -extern const bool __static_condition_default_1414; -extern const bool __static_condition_default_1554; -extern const bool __static_condition_default_1145; -extern const bool __static_condition_default_1952; +extern const bool __static_condition_default_2059; extern const bool __static_condition_default_1579; -extern const bool __static_condition_default_1729; -extern const bool __static_condition_default_1743; extern const bool __static_condition_default_1764; -extern const bool __static_condition_default_1439; -extern const bool __static_condition_default_1891; -extern const bool __static_condition_default_1776; -extern const bool __static_condition_default_1155; -extern const bool __static_condition_default_2082; -extern const bool __static_condition_default_2154; -extern const bool __static_condition_default_89; -extern const bool __static_condition_default_2069; -extern const bool __static_condition_default_2281; -extern const bool __static_condition_default_1128; -extern const bool __static_condition_default_1487; -extern const bool __static_condition_default_1838; -extern const bool __static_condition_default_1727; -extern const bool __static_condition_default_1988; -extern const bool __static_condition_default_1688; -extern const bool __static_condition_default_2226; -extern const bool __static_condition_default_1890; -extern const bool __static_condition_default_2248; -extern const bool __static_condition_default_1165; -extern const bool __static_condition_default_2316; -extern const bool __static_condition_default_1774; -extern const bool __static_condition_default_2291; +extern const bool __static_condition_default_1184; +extern const bool __static_condition_default_1556; +extern const bool __static_condition_default_1936; extern const bool __static_condition_default_1157; -extern const bool __static_condition_default_1426; -extern const bool __static_condition_default_2085; +extern const bool __static_condition_default_1119; +extern const bool __static_condition_default_1120; +extern const bool __static_condition_default_2310; +extern const bool __static_condition_default_1946; +extern const bool __static_condition_default_105; +extern const bool __static_condition_default_1732; +extern const bool __static_condition_default_1875; +extern const bool __static_condition_default_1840; +extern const bool __static_condition_default_1429; +extern const bool __static_condition_default_2280; +extern const bool __static_condition_default_1853; +extern const bool __static_condition_default_1703; +extern const bool __static_condition_default_1707; +extern const bool __static_condition_default_2233; +extern const bool __static_condition_default_1841; +extern const bool __static_condition_default_1560; +extern const bool __static_condition_default_1925; +extern const bool __static_condition_default_1992; +extern const bool __static_condition_default_1502; +extern const bool __static_condition_default_1677; +extern const bool __static_condition_default_1960; +extern const bool __static_condition_default_122; extern const bool __static_condition_default_1837; -extern const bool __static_condition_default_1127; -extern const bool __static_condition_default_2311; -extern const bool __static_condition_default_1190; -extern const bool __static_condition_default_1440; -extern const bool __static_condition_default_1812; -extern const bool __static_condition_default_1166; -extern const bool __static_condition_default_2037; -extern const bool __static_condition_default_1378; -extern const bool __static_condition_default_1548; -extern const bool __static_condition_default_2010; -extern const bool __static_condition_default_1556; -extern const bool __static_condition_default_1947; -extern const bool __static_condition_default_1536; +extern const bool __static_condition_default_2158; +extern const bool __static_condition_default_1838; +extern const bool __static_condition_default_1950; +extern const bool __static_condition_default_2282; +extern const bool __static_condition_default_2031; +extern const bool __static_condition_default_2014; +extern const bool __static_condition_default_1829; +extern const bool __static_condition_default_2148; +extern const bool __static_condition_default_2198; +extern const bool __static_condition_default_1705; +extern const bool __static_condition_default_2271; +extern const bool __static_condition_default_1168; extern const bool __static_condition_default_2163; +extern const bool __static_condition_default_1188; +extern const bool __static_condition_default_2322; +extern const bool __static_condition_default_2314; +extern const bool __static_condition_default_1948; +extern const bool __static_condition_default_2105; extern const bool __static_condition_default_2219; -extern const bool __static_condition_default_2049; -extern const bool __static_condition_default_2147; +extern const bool __static_condition_default_1508; extern const bool __static_condition_default_1702; -extern const bool __static_condition_default_1437; +extern const bool __static_condition_default_1420; +extern const bool __static_condition_default_1114; +extern const bool __static_condition_default_2299; +extern const bool __static_condition_default_1682; +extern const bool __static_condition_default_1852; +extern const bool __static_condition_default_1906; +extern const bool __static_condition_default_2135; +extern const bool __static_condition_default_1914; +extern const bool __static_condition_default_2037; +extern const bool __static_condition_default_1566; +extern const bool __static_condition_default_2016; +extern const bool __static_condition_default_1927; +extern const bool __static_condition_default_1804; +extern const bool __static_condition_default_2085; +extern const bool __static_condition_default_1603; +extern const bool __static_condition_default_2170; +extern const bool __static_condition_default_1163; +extern const bool __static_condition_default_89; extern const bool __static_condition_default_1706; -extern const bool __static_condition_default_2033; -extern const bool __static_condition_default_1184; -extern const bool __static_condition_default_1154; -extern const bool __static_condition_default_1666; -extern const bool __static_condition_default_2120; -extern const bool __static_condition_default_2249; -extern const bool __static_condition_default_1759; -extern const bool __static_condition_default_2189; -extern const bool __static_condition_default_1660; -extern const bool __static_condition_default_1532; -extern const bool __static_condition_default_1142; -extern const bool __static_condition_default_1972; -extern const bool __static_condition_default_1178; -extern const bool __static_condition_default_1126; -extern const bool __static_condition_default_1133; -extern const bool __static_condition_default_1136; +extern const bool __static_condition_default_1586; +extern const bool __static_condition_default_2226; +extern const bool __static_condition_default_1360; +extern const bool __static_condition_default_1450; extern const bool __static_condition_default_1160; -extern const bool __static_condition_default_2317; -extern const bool __static_condition_default_1115; -extern const bool __static_condition_default_1395; -extern const bool __static_condition_default_1740; -extern const bool __static_condition_default_1984; +extern const bool __static_condition_default_1893; +extern const bool __static_condition_default_1128; +extern const bool __static_condition_default_1481; +extern const bool __static_condition_default_1972; +extern const bool __static_condition_default_1908; +extern const bool __static_condition_default_1158; +extern const bool __static_condition_default_1694; +extern const bool __static_condition_default_2272; +extern const bool __static_condition_default_1165; +extern const bool __static_condition_default_1182; +extern const bool __static_condition_default_1751; +extern const bool __static_condition_default_1167; +extern const bool __static_condition_default_1548; +extern const bool __static_condition_default_1593; +extern const bool __static_condition_default_1169; +extern const bool __static_condition_default_1123; +extern const bool __static_condition_default_1816; +extern const bool __static_condition_default_1361; +extern const bool __static_condition_default_2000; +extern const bool __static_condition_default_1174; +extern const bool __static_condition_default_1121; +extern const bool __static_condition_default_1143; +extern const bool __static_condition_default_2154; +extern const bool __static_condition_default_1827; +extern const bool __static_condition_default_1983; +extern const bool __static_condition_default_1891; +extern const bool __static_condition_default_2066; +extern const bool __static_condition_default_1750; +extern const bool __static_condition_default_1139; +extern const bool __static_condition_default_1440; +extern const bool __static_condition_default_1462; +extern const bool __static_condition_default_1938; +extern const bool __static_condition_default_1187; +extern const bool __static_condition_default_1774; +extern const bool __static_condition_default_1842; +extern const bool __static_condition_default_2306; +extern const bool __static_condition_default_1861; +extern const bool __static_condition_default_1660; +extern const bool __static_condition_default_1162; +extern const bool __static_condition_default_1728; extern const bool __static_condition_default_2053; -extern const bool __static_condition_default_1122; -extern const bool __static_condition_default_1144; -extern const bool __static_condition_default_1814; +extern const bool __static_condition_default_2303; +extern const bool __static_condition_default_1824; +extern const bool __static_condition_default_1435; +extern const bool __static_condition_default_1652; +extern const bool __static_condition_default_1408; extern const bool __static_condition_default_1998; -extern const bool __static_condition_default_1179; -extern const bool __static_condition_default_2308; -extern const bool __static_condition_default_2312; -extern const bool __static_condition_default_1788; -extern const bool __static_condition_default_1558; -extern const bool __static_condition_default_1635; -extern const bool __static_condition_default_2263; -extern const bool __static_condition_default_1564; +extern const bool __static_condition_default_1186; +extern const bool __static_condition_default_1688; +extern const bool __static_condition_default_2242; +extern const bool __static_condition_default_1899; +extern const bool __static_condition_default_2196; +extern const bool __static_condition_default_2301; +extern const bool __static_condition_default_2234; extern const bool __static_condition_default_1951; -extern const bool __static_condition_default_1884; -extern const bool __static_condition_default_2305; -extern const bool __static_condition_default_1841; -extern const bool __static_condition_default_1408; -extern const bool __static_condition_default_1734; -extern const bool __static_condition_default_1646; -extern const bool __static_condition_default_1781; -extern const bool __static_condition_default_1662; -extern const bool __static_condition_default_1944; -extern const bool __static_condition_default_2280; -extern const bool __static_condition_default_1373; -extern const bool __static_condition_default_1538; -extern const bool __static_condition_default_1744; -extern const bool __static_condition_default_1169; -extern const bool __static_condition_default_1810; -extern const bool __static_condition_default_1936; -extern const bool __static_condition_default_2043; -extern const bool __static_condition_default_1522; +extern const bool __static_condition_default_1994; +extern const bool __static_condition_default_1449; +extern const bool __static_condition_default_1504; +extern const bool __static_condition_default_1156; extern const bool __static_condition_default_1610; -extern const bool __static_condition_default_1769; -extern const bool __static_condition_default_1444; -extern const bool __static_condition_default_2218; -extern const bool __static_condition_default_2310; -extern const bool __static_condition_default_1577; -extern const bool __static_condition_default_2264; -extern const bool __static_condition_default_1360; -extern const bool __static_condition_default_1914; -extern const bool __static_condition_default_2272; -extern const bool __static_condition_default_1629; -extern const bool __static_condition_default_1652; -extern const bool __static_condition_default_1707; -extern const bool __static_condition_default_1874; +extern const bool __static_condition_default_1490; +extern const bool __static_condition_default_2291; +extern const bool __static_condition_default_2313; +extern const bool __static_condition_default_1622; extern const bool __static_condition_default_1978; -extern const bool __static_condition_default_1121; -extern const bool __static_condition_default_1188; -extern const bool __static_condition_default_1314; +extern const bool __static_condition_default_1455; +extern const bool __static_condition_default_1854; +extern const bool __static_condition_default_2171; +extern const bool __static_condition_default_1164; +extern const bool __static_condition_default_1584; +extern const bool __static_condition_default_1635; +extern const bool __static_condition_default_2257; +extern const bool __static_condition_default_1781; +extern const bool __static_condition_default_1546; +extern const bool __static_condition_default_1733; +extern const bool __static_condition_default_1133; +extern const bool __static_condition_default_1384; extern const bool __static_condition_default_1392; -extern const bool __static_condition_default_2303; -extern const bool __static_condition_default_2200; -extern const bool __static_condition_default_1571; -extern const bool __static_condition_default_1608; +extern const bool __static_condition_default_2308; +extern const bool __static_condition_default_1859; +extern const bool __static_condition_default_1524; +extern const bool __static_condition_default_1730; +extern const bool __static_condition_default_2189; +extern const bool __static_condition_default_1448; +extern const bool __static_condition_default_1720; +extern const bool __static_condition_default_1971; +extern const bool __static_condition_default_1444; +extern const bool __static_condition_default_1477; +extern const bool __static_condition_default_1714; +extern const bool __static_condition_default_1664; +extern const bool __static_condition_default_2049; +extern const bool __static_condition_default_1823; +extern const bool __static_condition_default_2025; +extern const bool __static_condition_default_1432; +extern const bool __static_condition_default_1461; +extern const bool __static_condition_default_1577; +extern const bool __static_condition_default_1685; +extern const bool __static_condition_default_1743; +extern const bool __static_condition_default_1868; +extern const bool __static_condition_default_2256; +extern const bool __static_condition_default_2218; +extern const bool __static_condition_default_1113; +extern const bool __static_condition_default_1729; +extern const bool __static_condition_default_1554; extern const bool __static_condition_default_2055; -extern const bool __static_condition_default_1875; -extern const bool __static_condition_default_1180; -extern const bool __static_condition_default_2105; -extern const bool __static_condition_default_2287; -extern const bool __static_condition_default_1927; -extern const bool __static_condition_default_1508; -extern const bool __static_condition_default_1943; -extern const bool __static_condition_default_1732; -extern const bool __static_condition_default_1435; -extern const bool __static_condition_default_1912; -extern const bool __static_condition_default_2135; -extern const bool __static_condition_default_1123; -extern const bool __static_condition_default_1475; -extern const bool __static_condition_default_2299; -extern const bool __static_condition_default_1163; -extern const bool __static_condition_default_1490; -extern const bool __static_condition_default_2322; -extern const bool __static_condition_default_1441; -extern const bool __static_condition_default_2027; -extern const bool __static_condition_default_2282; -extern const bool __static_condition_default_1799; -extern const bool __static_condition_default_1138; -extern const bool __static_condition_default_1187; -extern const bool __static_condition_default_1177; -extern const bool __static_condition_default_1118; -extern const bool __static_condition_default_1861; -extern const bool __static_condition_default_1599; -extern const bool __static_condition_default_2196; -extern const bool __static_condition_default_2000; -extern const bool __static_condition_default_1125; -extern const bool __static_condition_default_1186; -extern const bool __static_condition_default_1573; +extern const bool __static_condition_default_1812; +extern const bool __static_condition_default_1892; extern const bool __static_condition_default_1465; -extern const bool __static_condition_default_2320; -extern const bool __static_condition_default_1504; -extern const bool __static_condition_default_95; -extern const bool __static_condition_default_1950; -extern const bool __static_condition_default_1690; -extern const bool __static_condition_default_111; +extern const bool __static_condition_default_1532; +extern const bool __static_condition_default_1159; +extern const bool __static_condition_default_1608; +extern const bool __static_condition_default_1414; +extern const bool __static_condition_default_2004; +extern const bool __static_condition_default_1135; +extern const bool __static_condition_default_1793; +extern const bool __static_condition_default_2263; +extern const bool __static_condition_default_2082; extern const bool __static_condition_default_1473; -extern const bool __static_condition_default_1751; -extern const bool __static_condition_default_1119; -extern const bool __static_condition_default_1466; -extern const bool __static_condition_default_2241; -extern const bool __static_condition_default_1937; +extern const bool __static_condition_default_1943; +extern const bool __static_condition_default_1116; +extern const bool __static_condition_default_1145; +extern const bool __static_condition_default_2249; +extern const bool __static_condition_default_1275; +extern const bool __static_condition_default_1684; extern const bool __static_condition_default_1401; -extern const bool __static_condition_default_2031; -extern const bool __static_condition_default_1139; -extern const bool __static_condition_default_2234; -extern const bool __static_condition_default_1114; -extern const bool __static_condition_default_1477; +extern const bool __static_condition_default_2286; +extern const bool __static_condition_default_1161; +extern const bool __static_condition_default_1849; +extern const bool __static_condition_default_2309; extern const bool __static_condition_default_2304; -extern const bool __static_condition_default_1131; -extern const bool __static_condition_default_1623; -extern const bool __static_condition_default_2078; -extern const bool __static_condition_default_2158; -extern const bool __static_condition_default_1560; -extern const bool __static_condition_default_1566; -extern const bool __static_condition_default_1159; -extern const bool __static_condition_default_1455; -extern const bool __static_condition_default_2256; +extern const bool __static_condition_default_1314; +extern const bool __static_condition_default_1126; +extern const bool __static_condition_default_1458; +extern const bool __static_condition_default_1125; +extern const bool __static_condition_default_1117; +extern const bool __static_condition_default_1814; +extern const bool __static_condition_default_1937; +extern const bool __static_condition_default_2241; +extern const bool __static_condition_default_2287; +extern const bool __static_condition_default_1979; +extern const bool __static_condition_default_1130; +extern const bool __static_condition_default_2316; +extern const bool __static_condition_default_1759; +extern const bool __static_condition_default_1389; +extern const bool __static_condition_default_1446; +extern const bool __static_condition_default_2312; +extern const bool __static_condition_default_1484; +extern const bool __static_condition_default_1178; +extern const bool __static_condition_default_1734; +extern const bool __static_condition_default_2307; extern const bool __static_condition_default_1877; -extern const bool __static_condition_default_2315; -extern const bool __static_condition_default_1970; -extern const bool __static_condition_default_1701; -extern const bool __static_condition_default_1384; -extern const bool __static_condition_default_2213; +extern const bool __static_condition_default_1181; extern const bool __static_condition_default_1364; -extern const bool __static_condition_default_1982; -extern const bool __static_condition_default_1994; -extern const bool __static_condition_default_1624; -extern const bool __static_condition_default_1593; -extern const bool __static_condition_default_1134; -extern const bool __static_condition_default_1546; -extern const bool __static_condition_default_1684; -extern const bool __static_condition_default_1848; -extern const bool __static_condition_default_2321; -extern const bool __static_condition_default_1703; -extern const bool __static_condition_default_2039; +extern const bool __static_condition_default_1776; +extern const bool __static_condition_default_1118; +extern const bool __static_condition_default_1466; +extern const bool __static_condition_default_1900; +extern const bool __static_condition_default_2315; +extern const bool __static_condition_default_95; +extern const bool __static_condition_default_1926; extern const bool __static_condition_default_1741; -extern const bool __static_condition_default_1181; -extern const bool __static_condition_default_1182; +extern const bool __static_condition_default_1912; +extern const bool __static_condition_default_111; +extern const bool __static_condition_default_1646; +extern const bool __static_condition_default_2027; extern const bool __static_condition_default_1959; -extern const bool __static_condition_default_1469; -extern const bool __static_condition_default_1429; -extern const bool __static_condition_default_1420; -extern const bool __static_condition_default_1854; -extern const bool __static_condition_default_1129; -extern const bool __static_condition_default_1892; -extern const bool __static_condition_default_1462; -extern const bool __static_condition_default_1979; -extern const bool __static_condition_default_2148; +extern const bool __static_condition_default_2248; +extern const bool __static_condition_default_1180; +extern const bool __static_condition_default_1810; +extern const bool __static_condition_default_1980; +extern const bool __static_condition_default_1506; +extern const bool __static_condition_default_1666; +extern const bool __static_condition_default_1755; +extern const bool __static_condition_default_2206; +extern const bool __static_condition_default_1874; +extern const bool __static_condition_default_1124; +extern const bool __static_condition_default_2321; +extern const bool __static_condition_default_1623; +extern const bool __static_condition_default_2043; +extern const bool __static_condition_default_1115; +extern const bool __static_condition_default_2008; +extern const bool __static_condition_default_2169; +extern const bool __static_condition_default_2182; +extern const bool __static_condition_default_1131; +extern const bool __static_condition_default_2063; +extern const bool __static_condition_default_1624; +extern const bool __static_condition_default_1171; +extern const bool __static_condition_default_1735; +extern const bool __static_condition_default_1769; +extern const bool __static_condition_default_1136; +extern const bool __static_condition_default_1185; +extern const bool __static_condition_default_1140; +extern const bool __static_condition_default_1475; +extern const bool __static_condition_default_2147; +extern const bool __static_condition_default_1662; +extern const bool __static_condition_default_2320; +extern const bool __static_condition_default_1479; +extern const bool __static_condition_default_1679; +extern const bool __static_condition_default_1690; +extern const bool __static_condition_default_1154; +extern const bool __static_condition_default_1190; +extern const bool __static_condition_default_1142; +extern const bool __static_condition_default_1522; extern const bool __static_condition_default_87; extern const bool __static_condition_default_103; -extern const bool __static_condition_default_1185; -extern const bool __static_condition_default_2182; -extern const bool __static_condition_default_1680; -extern const bool __static_condition_default_2066; -extern const bool __static_condition_default_1682; -extern const bool __static_condition_default_1162; +extern const bool __static_condition_default_1112; +extern const bool __static_condition_default_1890; +extern const bool __static_condition_default_2290; +extern const bool __static_condition_default_1984; +extern const bool __static_condition_default_2074; +extern const bool __static_condition_default_1378; void __static_initializer_default() { __static_renaming("__int8_t_0", "int8_t"); __static_renaming("__int16_t_1", "int16_t"); @@ -1873,14 +1874,14 @@ void (___delay_loop_1_113) (__uint8_t_4 ____count_116) { if (__static_condition_default_118) { -{ +{// L82 { __asm__ volatile ( "1: dec %0""\n\t""brne 1b" : "=r" ( ____count_116 ) : "0" ( ____count_116 ) ); } -} +}// L89 } @@ -1889,14 +1890,14 @@ void (___delay_loop_1_117) (__uint8_t_4 ____count_116) { if (__static_condition_default_119) { -{ +{// L82 { __asm__ volatile ( "1: dec %0""\n\t""brne 1b" : "=r" ( ____count_116 ) : "0" ( ____count_116 ) ); } -} +}// L89 } @@ -1905,14 +1906,14 @@ void (___delay_loop_2_115) (__uint16_t_5 ____count_120) { if (__static_condition_default_118) { -{ +{// L104 { __asm__ volatile ( "1: sbiw %0,1""\n\t""brne 1b" : "=w" ( ____count_120 ) : "0" ( ____count_120 ) ); } -} +}// L111 } @@ -1921,14 +1922,14 @@ void (___delay_loop_2_121) (__uint16_t_5 ____count_120) { if (__static_condition_default_122) { -{ +{// L104 { __asm__ volatile ( "1: sbiw %0,1""\n\t""brne 1b" : "=w" ( ____count_120 ) : "0" ( ____count_120 ) ); } -} +}// L111 } @@ -2400,7 +2401,7 @@ void (___delay_ms_1111) (double ____ms_1106) { if (__static_condition_default_1112) { -{ +{// L167 { @@ -2441,14 +2442,14 @@ if (__static_condition_default_1121) { ____ticks_1110 = 1 ; // L193 } } -else +else// L194 { if (__static_condition_default_1122) { if ( ____tmp_1107 > 65535 )// L194 { if (__static_condition_default_1123) { -{ +{// L195 { @@ -2457,7 +2458,7 @@ if (__static_condition_default_1123) { while ( ____ticks_1110 )// L198 { -{ +{// L199 { @@ -2470,14 +2471,14 @@ __static_type_error("type error : no valid expression"); // L201 } ____ticks_1110 -- ; // L202 } -} +}// L203 } return ;// L204 } +}// L205 } } -} -else +else// L206 { if (__static_condition_default_1126) { ____ticks_1110 = ( __uint16_t_5 ) ____tmp_1107 ; // L207 @@ -2493,7 +2494,7 @@ if (__static_condition_default_1128) { ___delay_loop_2_121 ( ____ticks_1110 ) ; // L208 } } -} +}// L210 } @@ -2502,7 +2503,7 @@ void (___delay_ms_1105) (double ____ms_1106) { if (__static_condition_default_1129) { -{ +{// L167 { @@ -2543,14 +2544,14 @@ if (__static_condition_default_1138) { ____ticks_1110 = 1 ; // L193 } } -else +else// L194 { if (__static_condition_default_1139) { if ( ____tmp_1107 > 65535 )// L194 { if (__static_condition_default_1140) { -{ +{// L195 { @@ -2559,7 +2560,7 @@ if (__static_condition_default_1140) { while ( ____ticks_1110 )// L198 { -{ +{// L199 { @@ -2572,14 +2573,14 @@ __static_type_error("type error : no valid expression"); // L201 } ____ticks_1110 -- ; // L202 } -} +}// L203 } return ;// L204 } +}// L205 } } -} -else +else// L206 { if (__static_condition_default_1143) { ____ticks_1110 = ( __uint16_t_5 ) ____tmp_1107 ; // L207 @@ -2595,7 +2596,7 @@ if (__static_condition_default_1145) { ___delay_loop_2_115 ( ____ticks_1110 ) ; // L208 } } -} +}// L210 } @@ -2604,7 +2605,7 @@ void (___delay_us_1103) (double ____us_1146) { if (__static_condition_default_1129) { -{ +{// L256 { @@ -2653,31 +2654,31 @@ if (__static_condition_default_1164) { ____ticks_1150 = 1 ; // L284 } } -else +else// L285 { if (__static_condition_default_1165) { if ( ____tmp2_1151 > 65535 )// L285 { if (__static_condition_default_1166) { -{ +{// L286 { ___delay_ms_1105 ( ____us_1146 / 1000.0) ; // L287 } +}// L288 } } -} -else +else// L289 { if (__static_condition_default_1167) { if ( ____tmp_1147 > 255 )// L289 { if (__static_condition_default_1168) { -{ +{// L290 { @@ -2687,10 +2688,10 @@ __uint16_t_5 ____ticks_1152= ( __uint16_t_5 ) ____tmp2_1151 ;// L291 ___delay_loop_2_115 ( ____ticks_1152 ) ; // L292 return ;// L293 } +}// L294 } } -} -else +else// L295 { if (__static_condition_default_1169) { ____ticks_1150 = ( __uint8_t_4 ) ____tmp_1147 ; // L296 @@ -2708,7 +2709,7 @@ if (__static_condition_default_1171) { ___delay_loop_1_113 ( ____ticks_1150 ) ; // L297 } } -} +}// L299 } @@ -2717,7 +2718,7 @@ void (___delay_us_1153) (double ____us_1146) { if (__static_condition_default_1172) { -{ +{// L256 { @@ -2766,31 +2767,31 @@ if (__static_condition_default_1183) { ____ticks_1150 = 1 ; // L284 } } -else +else// L285 { if (__static_condition_default_1184) { if ( ____tmp2_1151 > 65535 )// L285 { if (__static_condition_default_1185) { -{ +{// L286 { ___delay_ms_1111 ( ____us_1146 / 1000.0) ; // L287 } +}// L288 } } -} -else +else// L289 { if (__static_condition_default_1186) { if ( ____tmp_1147 > 255 )// L289 { if (__static_condition_default_1187) { -{ +{// L290 { @@ -2800,10 +2801,10 @@ __uint16_t_5 ____ticks_1152= ( __uint16_t_5 ) ____tmp2_1151 ;// L291 ___delay_loop_2_121 ( ____ticks_1152 ) ; // L292 return ;// L293 } +}// L294 } } -} -else +else// L295 { if (__static_condition_default_1188) { ____ticks_1150 = ( __uint8_t_4 ) ____tmp_1147 ; // L296 @@ -2821,7 +2822,7 @@ if (__static_condition_default_1190) { ___delay_loop_1_117 ( ____ticks_1150 ) ; // L297 } } -} +}// L299 } @@ -3142,14 +3143,14 @@ void (__enable_x_2283) () { if (__static_condition_default_2286) { -{ +{// L14 { __printf_1612 ("%s","enabling x axis") ; // L15 } -} +}// L16 } @@ -3158,14 +3159,14 @@ void (__enable_x_2284) () { if (__static_condition_default_2287) { -{ +{// L14 { __printf_1612 ("%s","enabling x axis") ; // L15 } -} +}// L16 } @@ -3174,21 +3175,21 @@ void (__enable_x_2285) () { if (__static_condition_default_2288) { -{ +{// L14 { __static_type_error("type error") ; // L15 } -} +}// L16 } } void (__enable_y_2289) () { -{ +{// L19 { @@ -3200,13 +3201,13 @@ if (__static_condition_default_2291) { __static_type_error("type error") ; // L20 } } -} +}// L21 } void (__enable_z_2292) () { -{ +{// L24 { @@ -3218,7 +3219,7 @@ if (__static_condition_default_2291) { __static_type_error("type error") ; // L25 } } -} +}// L26 } @@ -3226,7 +3227,7 @@ void (__babystep_2298) (const __uint8_t_4 __axis_2293, const _Bool __directio if (__static_condition_default_2299) { -{ +{// L33 { @@ -3239,7 +3240,7 @@ case 0 : -{ +{// L35 { @@ -3262,7 +3263,7 @@ if (__static_condition_default_2304) { ___delay_us_1153 (1U) ; // L39 } } -} +}// L41 ; // L46 break ; // L47 } @@ -3272,7 +3273,7 @@ case 1 : -{ +{// L35 { @@ -3287,7 +3288,7 @@ if (__static_condition_default_2306) { ___delay_us_1153 (1U) ; // L39 } } -} +}// L41 ; // L50 break ; // L51 } @@ -3297,14 +3298,14 @@ case 2 : -{ +{// L53 { if (__static_condition_default_2307) { -{ +{// L35 { @@ -3319,7 +3320,7 @@ if (__static_condition_default_2309) { ___delay_us_1153 (1U) ; // L39 } } -} +}// L41 } if (__static_condition_default_2310) { __enable_x_2283 ( ) ; // L61 @@ -3346,7 +3347,7 @@ if (__static_condition_default_2317) { ___delay_us_1153 (1U) ; // L66 } } -} +}// L71 break ; // L71 } default: @@ -3358,7 +3359,7 @@ break ; // L73 } } } -} +}// L75 } @@ -3367,14 +3368,14 @@ int (__main_2318) (void ) { if (__static_condition_default_2320) { -{ +{// L80 { return 0 ;// L84 } -} +}// L85 } @@ -3383,7 +3384,7 @@ int (__main_2319) (void ) { if (__static_condition_default_2321) { -{ +{// L80 { @@ -3391,7 +3392,7 @@ if (__static_condition_default_2321) { __static_type_error("type error : no valid expression"); // L82 return 0 ;// L84 } -} +}// L85 } diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.desugared.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.desugared.clangres index 32ec53e9..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.desugared.clangres @@ -1,7 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.desugared.c:1913:55: error: invalid output constraint '=w' in asm -__asm__ volatile ( "1: sbiw %0,1""\n\t""brne 1b" : "=w" ( ____count_120 ) : "0" ( ____count_120 ) ); - ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/53be0f3399e.desugared.c:1929:55: error: invalid output constraint '=w' in asm -__asm__ volatile ( "1: sbiw %0,1""\n\t""brne 1b" : "=w" ( ____count_120 ) : "0" ( ____count_120 ) ); - ^ -2 errors generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/7336e6df070.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/7336e6df070.clangres index d16c7169..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/7336e6df070.clangres +++ b/fonda/cpp_testsuite/varBugs/MARLIN/7336e6df070.clangres @@ -1,8 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/7336e6df070.c:44:8: error: use of undeclared identifier 'old_z_max_endstop'; did you mean 'old_z2_max_endstop'? - if (!old_z_max_endstop && !locked_z_motor) WRITE; - ^~~~~~~~~~~~~~~~~ - old_z2_max_endstop -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/7336e6df070.c:37:13: note: 'old_z2_max_endstop' declared here -static bool old_z2_max_endstop = false; - ^ -1 error generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/7336e6df070.desugared.c b/fonda/cpp_testsuite/varBugs/MARLIN/7336e6df070.desugared.c index f90eb873..7d33c6ad 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/7336e6df070.desugared.c +++ b/fonda/cpp_testsuite/varBugs/MARLIN/7336e6df070.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -1338,13 +1339,13 @@ void (__function_1096) () { { if (__static_condition_default_1098) { -{ +{// L41 { } -} +}// L48 } @@ -1352,13 +1353,13 @@ if (__static_condition_default_1098) { }} void (__main_1099) () { -{ +{// L50 { } -} +}// L50 } diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/7336e6df070.desugared.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/7336e6df070.desugared.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/7336e6df070.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/MARLIN/7336e6df070.desugared.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.clangres +++ b/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.desugared.c b/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.desugared.c index 94056865..4e4574b3 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.desugared.c +++ b/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -29,13 +30,13 @@ void (__lcd_setstatus_2) (const char * (__message_0), const _Bool __persist_1 if (__static_condition_default_3) { -{ +{// L4 { } -} +}// L4 } @@ -44,13 +45,13 @@ void (__lcd_setstatus_5) (const char * (__message_4)) { if (__static_condition_default_6) { -{ +{// L7 { } -} +}// L7 } @@ -60,20 +61,20 @@ if (__static_condition_default_6) { { if (__static_condition_default_9) { -{ +{// L12 { } -} +}// L17 } if (__static_condition_default_10) { -{ +{// L12 { @@ -82,7 +83,7 @@ char __time_7[30]= "time_here";// L14 __static_type_error("type error : no valid expression"); // L15 } -} +}// L17 } @@ -90,7 +91,7 @@ __static_type_error("type error : no valid expression"); // L15 }} int (__main_13) (int __argc_11, char * (* (__argv_12))) { -{ +{// L20 { @@ -98,7 +99,7 @@ int (__main_13) (int __argc_11, char * (* (__argv_12))) { __getCode_8 ( ) ; // L21 return 0 ;// L22 } -} +}// L23 } diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.desugared.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.desugared.clangres index 0636af1c..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.desugared.clangres @@ -1,4 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.desugared.c:81:7: warning: Value stored to '__time_7' during its initialization is never read [deadcode.DeadStores] -char __time_7[30]= "time_here";// L14 - ^~~~~~~~ ~~~~~~~~~~~ -1 warning generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.clangres index 9d1f1d66..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.clangres +++ b/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.clangres @@ -1,4 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.c:19:3: warning: Value stored to 'pid_output' is never read [deadcode.DeadStores] - pid_output = 0; - ^ ~ -1 warning generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.c b/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.c index 21c76046..e676af03 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.c +++ b/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -47,14 +48,14 @@ void (__serialprint_2) (const char * (__str_1)) { if (__static_condition_default_3) { -{ +{// L5 { __static_type_error("type error : no valid expression"); // L6 } -} +}// L7 } @@ -64,7 +65,7 @@ void (__manage_heater_6) () { { if (__static_condition_default_8) { -{ +{// L10 { @@ -74,14 +75,14 @@ float __pid_output_4= 1;// L11 int __e_5= 0;// L12 } -} +}// L22 } if (__static_condition_default_9) { -{ +{// L10 { @@ -97,7 +98,7 @@ if (__static_condition_default_11) { __static_type_error("type error : no valid expression"); // L16 } } -} +}// L22 } @@ -108,7 +109,7 @@ void (__manage_heater_7) () { { if (__static_condition_default_12) { -{ +{// L10 { @@ -118,14 +119,14 @@ float __pid_output_4= 1;// L11 int __e_5= 0;// L12 } -} +}// L22 } if (__static_condition_default_13) { -{ +{// L10 { @@ -141,7 +142,7 @@ if (__static_condition_default_15) { __static_type_error("type error : no valid expression"); // L3:L16 } } -} +}// L22 } @@ -149,7 +150,7 @@ __static_type_error("type error : no valid expression"); // L3:L16 }} int (__main_18) (int __argc_16, char * (* (__argv_17))) { -{ +{// L25 { @@ -162,7 +163,7 @@ if (__static_condition_default_20) { } return 0 ;// L27 } -} +}// L28 } diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.clangres index 1a58c3bb..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.clangres @@ -1,7 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.c:94:2: warning: Value stored to '__pid_output_4' is never read [deadcode.DeadStores] - __pid_output_4 = 0 ; // L19 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.c:138:2: warning: Value stored to '__pid_output_4' is never read [deadcode.DeadStores] - __pid_output_4 = 0 ; // L19 - ^ ~ -2 warnings generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.clangres +++ b/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.c b/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.c index 0942ce60..23d99318 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.c +++ b/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -191,7 +192,7 @@ void (__cardreader_222) (char * (__prepend_216)) { if (__static_condition_default_223) { -{ +{// L9 { @@ -219,7 +220,7 @@ __static_type_error("type error : no valid expression"); // L21 __static_type_error("type error : no valid expression"); // L22 __static_type_error("type error : no valid expression"); // L23 } -} +}// L25 } @@ -228,7 +229,7 @@ int (__main_226) (int __argc_224, char * (* (__argv_225))) { if (__static_condition_default_228) { -{ +{// L30 { @@ -236,7 +237,7 @@ if (__static_condition_default_228) { __static_type_error("type error") ; // L31 return 0 ;// L32 } -} +}// L33 } @@ -245,7 +246,7 @@ int (__main_227) (int __argc_224, char * (* (__argv_225))) { if (__static_condition_default_229) { -{ +{// L30 { @@ -253,7 +254,7 @@ if (__static_condition_default_229) { __cardreader_222 ("") ; // L31 return 0 ;// L32 } -} +}// L33 } diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.clangres index ac256a78..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.clangres @@ -1,10 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.c:199:6: warning: Value stored to '__len_217' during its initialization is never read [deadcode.DeadStores] -int __len_217= __strlen_108 ( __prepend_216 ) + 13 + 1;// L10 - ^~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.c:201:6: warning: Value stored to '__len_218' during its initialization is never read [deadcode.DeadStores] -int __len_218= __strlen_109 ( __prepend_216 ) + 13 + 1;// L10 - ^~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.c:211:7: warning: Value stored to '__lfilename_221' during its initialization is never read [deadcode.DeadStores] -char __lfilename_221[13]= "FOLDERNAME12\0";// L15 - ^~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~ -3 warnings generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/b8e79dce897.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/b8e79dce897.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/b8e79dce897.clangres +++ b/fonda/cpp_testsuite/varBugs/MARLIN/b8e79dce897.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/b8e79dce897.desugared.c b/fonda/cpp_testsuite/varBugs/MARLIN/b8e79dce897.desugared.c index efb149a9..5ae6180d 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/b8e79dce897.desugared.c +++ b/fonda/cpp_testsuite/varBugs/MARLIN/b8e79dce897.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -1360,20 +1361,20 @@ static void (__lcd_tune_menu_1092) () { { if (__static_condition_default_1095) { -{ +{// L24 { } -} +}// L30 } if (__static_condition_default_1096) { -{ +{// L24 { @@ -1382,14 +1383,14 @@ if (__static_condition_default_1097) { do { -{ +{// L11 { __printf_421 ("menu multiplier item") ; // L12 } -} +}// L13 } while( 0 );// L13:L27 } @@ -1397,7 +1398,7 @@ if (__static_condition_default_1098) { __static_type_error("type error : no valid expression"); // L27 } } -} +}// L30 } @@ -1408,20 +1409,20 @@ static void (__lcd_tune_menu_1093) () { { if (__static_condition_default_1099) { -{ +{// L24 { } -} +}// L30 } if (__static_condition_default_1100) { -{ +{// L24 { @@ -1430,14 +1431,14 @@ if (__static_condition_default_1101) { do { -{ +{// L11 { __static_type_error("type error") ; // L12 } -} +}// L13 } while( 0 );// L13:L27 } @@ -1445,7 +1446,7 @@ if (__static_condition_default_1102) { __static_type_error("type error : no valid expression"); // L27 } } -} +}// L30 } @@ -1456,20 +1457,20 @@ static void (__lcd_tune_menu_1094) () { { if (__static_condition_default_1103) { -{ +{// L24 { } -} +}// L30 } if (__static_condition_default_1104) { -{ +{// L24 { @@ -1478,14 +1479,14 @@ if (__static_condition_default_1105) { do { -{ +{// L11 { __printf_421 ("menu multiplier item") ; // L12 } -} +}// L13 } while( 0 );// L13:L27 } @@ -1493,7 +1494,7 @@ if (__static_condition_default_1106) { __static_type_error("type error : no valid expression"); // L27 } } -} +}// L30 } @@ -1501,7 +1502,7 @@ __static_type_error("type error : no valid expression"); // L27 }} int (__main_1107) (void ) { -{ +{// L32 { @@ -1517,7 +1518,7 @@ if (__static_condition_default_1110) { } return 0 ;// L34 } -} +}// L35 } diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/b8e79dce897.desugared.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/b8e79dce897.desugared.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/b8e79dce897.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/MARLIN/b8e79dce897.desugared.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.clangres index 13a6e406..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.clangres +++ b/fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.clangres @@ -1,4 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.c:24:7: warning: Value stored to 'xGridSpacing' during its initialization is never read [deadcode.DeadStores] - int xGridSpacing = left_probe_bed_position; - ^~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~ -1 warning generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.desugared.c b/fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.desugared.c index f540d3c5..e2507228 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.desugared.c +++ b/fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -25,20 +26,20 @@ void (__process_commands_2) () { { if (__static_condition_default_3) { -{ +{// L18 { } -} +}// L29 } if (__static_condition_default_4) { -{ +{// L18 { @@ -48,7 +49,7 @@ int __left_probe_bed_position_0= 15;// L21 int __xGridSpacing_1= __left_probe_bed_position_0 ;// L24 } -} +}// L29 } @@ -56,7 +57,7 @@ int __xGridSpacing_1= __left_probe_bed_position_0 ;// L24 }} int (__main_7) (int __argc_5, char * (* (__argv_6))) { -{ +{// L32 { @@ -64,7 +65,7 @@ int (__main_7) (int __argc_5, char * (* (__argv_6))) { __process_commands_2 ( ) ; // L33 return 0 ;// L34 } -} +}// L35 } diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.desugared.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.desugared.clangres index b73337f1..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.desugared.clangres @@ -1,4 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.desugared.c:48:6: warning: Value stored to '__xGridSpacing_1' during its initialization is never read [deadcode.DeadStores] -int __xGridSpacing_1= __left_probe_bed_position_0 ;// L24 - ^~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~ -1 warning generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/f87c80889fe.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/f87c80889fe.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/f87c80889fe.clangres +++ b/fonda/cpp_testsuite/varBugs/MARLIN/f87c80889fe.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/f87c80889fe.desugared.c b/fonda/cpp_testsuite/varBugs/MARLIN/f87c80889fe.desugared.c index 4bb8a49d..a9bedc52 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/f87c80889fe.desugared.c +++ b/fonda/cpp_testsuite/varBugs/MARLIN/f87c80889fe.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -9,11 +10,13 @@ void __static_initializer_default(); extern const bool __static_condition_default_455; extern const bool __static_condition_default_255; -extern const bool __static_condition_default_2321; extern const bool __static_condition_default_715; extern const bool __static_condition_default_1753; extern const bool __static_condition_default_512; extern const bool __static_condition_default_204; +extern const bool __static_condition_default_1787; +extern const bool __static_condition_default_1814; +extern const bool __static_condition_default_2044; extern const bool __static_condition_default_267; extern const bool __static_condition_default_1050; extern const bool __static_condition_default_259; @@ -23,21 +26,25 @@ extern const bool __static_condition_default_807; extern const bool __static_condition_default_661; extern const bool __static_condition_default_210; extern const bool __static_condition_default_1405; -extern const bool __static_condition_default_2342; -extern const bool __static_condition_default_2329; extern const bool __static_condition_default_357; extern const bool __static_condition_default_699; extern const bool __static_condition_default_980; +extern const bool __static_condition_default_1808; +extern const bool __static_condition_default_2046; +extern const bool __static_condition_default_2388; extern const bool __static_condition_default_550; +extern const bool __static_condition_default_1785; extern const bool __static_condition_default_1057; extern const bool __static_condition_default_780; extern const bool __static_condition_default_1357; +extern const bool __static_condition_default_2314; +extern const bool __static_condition_default_2047; +extern const bool __static_condition_default_2351; extern const bool __static_condition_default_76; extern const bool __static_condition_default_515; extern const bool __static_condition_default_1051; extern const bool __static_condition_default_238; extern const bool __static_condition_default_469; -extern const bool __static_condition_default_1944; extern const bool __static_condition_default_444; extern const bool __static_condition_default_792; extern const bool __static_condition_default_1315; @@ -47,18 +54,17 @@ extern const bool __static_condition_default_1361; extern const bool __static_condition_default_767; extern const bool __static_condition_default_723; extern const bool __static_condition_default_388; -extern const bool __static_condition_default_2381; extern const bool __static_condition_default_564; extern const bool __static_condition_default_1556; extern const bool __static_condition_default_284; extern const bool __static_condition_default_753; +extern const bool __static_condition_default_2043; extern const bool __static_condition_default_253; extern const bool __static_condition_default_597; extern const bool __static_condition_default_1015; extern const bool __static_condition_default_248; extern const bool __static_condition_default_894; extern const bool __static_condition_default_317; -extern const bool __static_condition_default_2322; extern const bool __static_condition_default_852; extern const bool __static_condition_default_677; extern const bool __static_condition_default_510; @@ -68,18 +74,17 @@ extern const bool __static_condition_default_721; extern const bool __static_condition_default_286; extern const bool __static_condition_default_559; extern const bool __static_condition_default_1090; +extern const bool __static_condition_default_2312; extern const bool __static_condition_default_241; extern const bool __static_condition_default_789; +extern const bool __static_condition_default_2329; extern const bool __static_condition_default_872; -extern const bool __static_condition_default_2389; -extern const bool __static_condition_default_1774; +extern const bool __static_condition_default_2045; extern const bool __static_condition_default_560; -extern const bool __static_condition_default_1789; extern const bool __static_condition_default_494; extern const bool __static_condition_default_1353; extern const bool __static_condition_default_1515; extern const bool __static_condition_default_1432; -extern const bool __static_condition_default_1776; extern const bool __static_condition_default_793; extern const bool __static_condition_default_1152; extern const bool __static_condition_default_963; @@ -95,23 +100,19 @@ extern const bool __static_condition_default_169; extern const bool __static_condition_default_419; extern const bool __static_condition_default_746; extern const bool __static_condition_default_475; -extern const bool __static_condition_default_1785; extern const bool __static_condition_default_393; extern const bool __static_condition_default_813; -extern const bool __static_condition_default_2314; extern const bool __static_condition_default_647; -extern const bool __static_condition_default_2046; extern const bool __static_condition_default_668; extern const bool __static_condition_default_246; -extern const bool __static_condition_default_2349; extern const bool __static_condition_default_544; extern const bool __static_condition_default_1750; extern const bool __static_condition_default_727; extern const bool __static_condition_default_757; extern const bool __static_condition_default_883; +extern const bool __static_condition_default_2320; extern const bool __static_condition_default_217; extern const bool __static_condition_default_1754; -extern const bool __static_condition_default_2312; extern const bool __static_condition_default_235; extern const bool __static_condition_default_53; extern const bool __static_condition_default_244; @@ -119,19 +120,13 @@ extern const bool __static_condition_default_1424; extern const bool __static_condition_default_1385; extern const bool __static_condition_default_280; extern const bool __static_condition_default_288; -extern const bool __static_condition_default_2328; extern const bool __static_condition_default_709; extern const bool __static_condition_default_499; extern const bool __static_condition_default_1080; extern const bool __static_condition_default_491; -extern const bool __static_condition_default_2330; -extern const bool __static_condition_default_2343; -extern const bool __static_condition_default_2350; extern const bool __static_condition_default_1475; -extern const bool __static_condition_default_1791; extern const bool __static_condition_default_521; extern const bool __static_condition_default_1459; -extern const bool __static_condition_default_2376; extern const bool __static_condition_default_1007; extern const bool __static_condition_default_170; extern const bool __static_condition_default_663; @@ -139,9 +134,9 @@ extern const bool __static_condition_default_333; extern const bool __static_condition_default_516; extern const bool __static_condition_default_373; extern const bool __static_condition_default_1572; +extern const bool __static_condition_default_2381; extern const bool __static_condition_default_201; extern const bool __static_condition_default_471; -extern const bool __static_condition_default_1808; extern const bool __static_condition_default_1164; extern const bool __static_condition_default_433; extern const bool __static_condition_default_683; @@ -151,21 +146,24 @@ extern const bool __static_condition_default_1568; extern const bool __static_condition_default_1377; extern const bool __static_condition_default_573; extern const bool __static_condition_default_408; -extern const bool __static_condition_default_2387; extern const bool __static_condition_default_432; extern const bool __static_condition_default_355; +extern const bool __static_condition_default_1944; extern const bool __static_condition_default_395; extern const bool __static_condition_default_967; extern const bool __static_condition_default_825; extern const bool __static_condition_default_1028; extern const bool __static_condition_default_840; extern const bool __static_condition_default_1516; +extern const bool __static_condition_default_2378; +extern const bool __static_condition_default_2349; extern const bool __static_condition_default_84; extern const bool __static_condition_default_1035; +extern const bool __static_condition_default_2342; extern const bool __static_condition_default_538; extern const bool __static_condition_default_583; +extern const bool __static_condition_default_2395; extern const bool __static_condition_default_625; -extern const bool __static_condition_default_2063; extern const bool __static_condition_default_402; extern const bool __static_condition_default_662; extern const bool __static_condition_default_938; @@ -182,13 +180,17 @@ extern const bool __static_condition_default_779; extern const bool __static_condition_default_693; extern const bool __static_condition_default_632; extern const bool __static_condition_default_734; +extern const bool __static_condition_default_2343; extern const bool __static_condition_default_173; +extern const bool __static_condition_default_1791; extern const bool __static_condition_default_621; extern const bool __static_condition_default_613; extern const bool __static_condition_default_638; extern const bool __static_condition_default_623; extern const bool __static_condition_default_1036; +extern const bool __static_condition_default_2062; extern const bool __static_condition_default_1345; +extern const bool __static_condition_default_1789; extern const bool __static_condition_default_541; extern const bool __static_condition_default_755; extern const bool __static_condition_default_1027; @@ -197,20 +199,20 @@ extern const bool __static_condition_default_299; extern const bool __static_condition_default_868; extern const bool __static_condition_default_198; extern const bool __static_condition_default_1485; +extern const bool __static_condition_default_2389; extern const bool __static_condition_default_503; -extern const bool __static_condition_default_1773; extern const bool __static_condition_default_979; extern const bool __static_condition_default_331; extern const bool __static_condition_default_514; extern const bool __static_condition_default_1749; extern const bool __static_condition_default_549; extern const bool __static_condition_default_290; -extern const bool __static_condition_default_2378; extern const bool __static_condition_default_511; extern const bool __static_condition_default_278; extern const bool __static_condition_default_634; extern const bool __static_condition_default_700; extern const bool __static_condition_default_1564; +extern const bool __static_condition_default_1810; extern const bool __static_condition_default_275; extern const bool __static_condition_default_929; extern const bool __static_condition_default_293; @@ -219,31 +221,32 @@ extern const bool __static_condition_default_1009; extern const bool __static_condition_default_375; extern const bool __static_condition_default_529; extern const bool __static_condition_default_702; -extern const bool __static_condition_default_2399; extern const bool __static_condition_default_590; +extern const bool __static_condition_default_2064; extern const bool __static_condition_default_438; extern const bool __static_condition_default_978; extern const bool __static_condition_default_760; extern const bool __static_condition_default_842; -extern const bool __static_condition_default_2351; extern const bool __static_condition_default_1409; -extern const bool __static_condition_default_1816; extern const bool __static_condition_default_536; +extern const bool __static_condition_default_1775; extern const bool __static_condition_default_761; extern const bool __static_condition_default_864; extern const bool __static_condition_default_229; extern const bool __static_condition_default_1369; +extern const bool __static_condition_default_2376; extern const bool __static_condition_default_263; +extern const bool __static_condition_default_2322; extern const bool __static_condition_default_637; extern const bool __static_condition_default_801; extern const bool __static_condition_default_1073; extern const bool __static_condition_default_250; +extern const bool __static_condition_default_1773; extern const bool __static_condition_default_769; extern const bool __static_condition_default_956; extern const bool __static_condition_default_1089; extern const bool __static_condition_default_1373; extern const bool __static_condition_default_944; -extern const bool __static_condition_default_1810; extern const bool __static_condition_default_365; extern const bool __static_condition_default_657; extern const bool __static_condition_default_431; @@ -252,8 +255,6 @@ extern const bool __static_condition_default_636; extern const bool __static_condition_default_1532; extern const bool __static_condition_default_1552; extern const bool __static_condition_default_537; -extern const bool __static_condition_default_2044; -extern const bool __static_condition_default_2045; extern const bool __static_condition_default_1428; extern const bool __static_condition_default_539; extern const bool __static_condition_default_193; @@ -271,6 +272,7 @@ extern const bool __static_condition_default_380; extern const bool __static_condition_default_1576; extern const bool __static_condition_default_823; extern const bool __static_condition_default_1395; +extern const bool __static_condition_default_1774; extern const bool __static_condition_default_745; extern const bool __static_condition_default_781; extern const bool __static_condition_default_846; @@ -288,10 +290,10 @@ extern const bool __static_condition_default_809; extern const bool __static_condition_default_658; extern const bool __static_condition_default_858; extern const bool __static_condition_default_367; -extern const bool __static_condition_default_2047; +extern const bool __static_condition_default_2321; +extern const bool __static_condition_default_2328; extern const bool __static_condition_default_788; extern const bool __static_condition_default_819; -extern const bool __static_condition_default_2064; extern const bool __static_condition_default_493; extern const bool __static_condition_default_497; extern const bool __static_condition_default_1402; @@ -304,32 +306,31 @@ extern const bool __static_condition_default_1453; extern const bool __static_condition_default_759; extern const bool __static_condition_default_646; extern const bool __static_condition_default_803; -extern const bool __static_condition_default_2320; +extern const bool __static_condition_default_2330; extern const bool __static_condition_default_345; -extern const bool __static_condition_default_1814; extern const bool __static_condition_default_249; extern const bool __static_condition_default_797; extern const bool __static_condition_default_887; extern const bool __static_condition_default_834; extern const bool __static_condition_default_461; extern const bool __static_condition_default_1365; -extern const bool __static_condition_default_1775; extern const bool __static_condition_default_651; extern const bool __static_condition_default_955; -extern const bool __static_condition_default_2043; extern const bool __static_condition_default_701; extern const bool __static_condition_default_363; extern const bool __static_condition_default_708; extern const bool __static_condition_default_862; extern const bool __static_condition_default_257; +extern const bool __static_condition_default_2394; extern const bool __static_condition_default_311; extern const bool __static_condition_default_650; -extern const bool __static_condition_default_2388; extern const bool __static_condition_default_1436; -extern const bool __static_condition_default_2394; +extern const bool __static_condition_default_2063; +extern const bool __static_condition_default_2399; extern const bool __static_condition_default_1058; extern const bool __static_condition_default_386; extern const bool __static_condition_default_1066; +extern const bool __static_condition_default_2377; extern const bool __static_condition_default_1391; extern const bool __static_condition_default_1416; extern const bool __static_condition_default_412; @@ -341,14 +342,14 @@ extern const bool __static_condition_default_1341; extern const bool __static_condition_default_282; extern const bool __static_condition_default_659; extern const bool __static_condition_default_1042; -extern const bool __static_condition_default_2377; extern const bool __static_condition_default_836; extern const bool __static_condition_default_848; +extern const bool __static_condition_default_2350; extern const bool __static_condition_default_271; extern const bool __static_condition_default_347; extern const bool __static_condition_default_578; extern const bool __static_condition_default_645; -extern const bool __static_condition_default_2062; +extern const bool __static_condition_default_2387; extern const bool __static_condition_default_489; extern const bool __static_condition_default_543; extern const bool __static_condition_default_1065; @@ -356,16 +357,16 @@ extern const bool __static_condition_default_1159; extern const bool __static_condition_default_619; extern const bool __static_condition_default_756; extern const bool __static_condition_default_1420; +extern const bool __static_condition_default_1776; +extern const bool __static_condition_default_1816; extern const bool __static_condition_default_488; extern const bool __static_condition_default_553; -extern const bool __static_condition_default_2395; extern const bool __static_condition_default_337; extern const bool __static_condition_default_315; extern const bool __static_condition_default_182; extern const bool __static_condition_default_1458; -extern const bool __static_condition_default_1787; -extern const bool __static_condition_default_123; extern const bool __static_condition_default_2313; +extern const bool __static_condition_default_123; extern const bool __static_condition_default_486; extern const bool __static_condition_default_585; extern const bool __static_condition_default_686; @@ -2525,14 +2526,14 @@ static __inline unsigned int (____bswap_32_1158) (unsigned int ____bsx_1157) { if (__static_condition_default_1159) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -2541,14 +2542,14 @@ static __inline ____uint64_t_13 (____bswap_64_1162) (____uint64_t_13 ____bsx_1 if (__static_condition_default_1164) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2557,14 +2558,14 @@ static __inline ____uint64_t_1112 (____bswap_64_1163) (____uint64_t_1112 ____b if (__static_condition_default_1165) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2769,14 +2770,14 @@ static __inline unsigned int (____bswap_32_1452) (unsigned int ____bsx_1451) { if (__static_condition_default_1453) { -{ +{// L46 { __static_type_error("invalid type found in return expression"); } -} +}// L48 } @@ -2785,14 +2786,14 @@ static __inline ____uint64_t_13 (____bswap_64_1456) (____uint64_t_13 ____bsx_1 if (__static_condition_default_1458) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -2801,14 +2802,14 @@ static __inline ____uint64_t_1275 (____bswap_64_1457) (____uint64_t_1275 ____b if (__static_condition_default_1459) { -{ +{// L110 { __static_type_error("invalid type found in return expression"); } -} +}// L112 } @@ -3155,7 +3156,7 @@ void (__process_commands_2392) () { if (__static_condition_default_2394) { -{ +{// L7 { @@ -3168,16 +3169,16 @@ long __residencyStart_2391;// L10 while ( ( __residencyStart_2391 == - 1 ) || ( __residencyStart_2391 > - 1 && ( __millis_2390 - __residencyStart_2391 ) < 30 * 1000 ) )// L14:L15 { -{ +{// L15 { } +}// L20 } } -} -} +}// L21 } @@ -3186,7 +3187,7 @@ void (__process_commands_2393) () { if (__static_condition_default_2395) { -{ +{// L7 { @@ -3199,23 +3200,23 @@ long __residencyStart_2391;// L10 while ( ( __residencyStart_2391 == - 1 ) || ( __residencyStart_2391 > - 1 && ( __millis_2390 - __residencyStart_2391 ) < 30 * 1000 ) )// L14:L15 { -{ +{// L15 { } +}// L20 } } -} -} +}// L21 } } int (__main_2398) (int __argc_2396, char * (* (__argv_2397))) { -{ +{// L24 { @@ -3228,7 +3229,7 @@ if (__static_condition_default_2395) { } return 0 ;// L28 } -} +}// L29 } diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/f87c80889fe.desugared.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/f87c80889fe.desugared.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/f87c80889fe.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/MARLIN/f87c80889fe.desugared.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/fc3c76fc164.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/fc3c76fc164.clangres index eba9bceb..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/fc3c76fc164.clangres +++ b/fonda/cpp_testsuite/varBugs/MARLIN/fc3c76fc164.clangres @@ -1,5 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/fc3c76fc164.c:11:8: error: must use 'enum' tag to refer to type 'TRState' -static TRState thermal_runaway_bed_state_machine = { TRInactive, TRInactive, TRInactive, TRInactive }; - ^ - enum -1 error generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/fc3c76fc164.desugared.c b/fonda/cpp_testsuite/varBugs/MARLIN/fc3c76fc164.desugared.c index d9447230..78c61ae0 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/fc3c76fc164.desugared.c +++ b/fonda/cpp_testsuite/varBugs/MARLIN/fc3c76fc164.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -36,14 +37,14 @@ int (__main_7) (void ) { if (__static_condition_default_8) { -{ +{// L17 { return 0 ;// L18 } -} +}// L19 } diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/fc3c76fc164.desugared.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/fc3c76fc164.desugared.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/fc3c76fc164.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/MARLIN/fc3c76fc164.desugared.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/fdac8f6cece.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/fdac8f6cece.clangres index 32676dcf..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/fdac8f6cece.clangres +++ b/fonda/cpp_testsuite/varBugs/MARLIN/fdac8f6cece.clangres @@ -1,4 +1 @@ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/fdac8f6cece.c:9:21: error: use of undeclared identifier 'Z_PROBE_OFFSET_FROM_EXTRUDER' - zprobe_zoffset = -Z_PROBE_OFFSET_FROM_EXTRUDER; // ERROR - ^ -1 error generated. +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/fdac8f6cece.desugared.c b/fonda/cpp_testsuite/varBugs/MARLIN/fdac8f6cece.desugared.c index 36bf2cf4..5bb05fe0 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/fdac8f6cece.desugared.c +++ b/fonda/cpp_testsuite/varBugs/MARLIN/fdac8f6cece.desugared.c @@ -1,4 +1,5 @@ #include +#include extern void __static_parse_error(char *msg); extern void __static_type_error(char *msg); @@ -22,7 +23,7 @@ __static_condition_renaming("__static_condition_default_3", "!(defined ENABLE_AU float __zprobe_zoffset_0;// L5 void (__Config_ResetDefault_1) () { -{ +{// L8 { @@ -34,13 +35,13 @@ if (__static_condition_default_3) { __static_type_error("type error : no valid expression"); // L9 } } -} +}// L10 } int (__main_6) (int __argc_4, char * (* (__argv_5))) { -{ +{// L13 { @@ -48,7 +49,7 @@ int (__main_6) (int __argc_4, char * (* (__argv_5))) { __Config_ResetDefault_1 ( ) ; // L15 return 0 ;// L16 } -} +}// L17 } diff --git a/fonda/cpp_testsuite/varBugs/MARLIN/fdac8f6cece.desugared.clangres b/fonda/cpp_testsuite/varBugs/MARLIN/fdac8f6cece.desugared.clangres index e69de29b..e4923c47 100644 --- a/fonda/cpp_testsuite/varBugs/MARLIN/fdac8f6cece.desugared.clangres +++ b/fonda/cpp_testsuite/varBugs/MARLIN/fdac8f6cece.desugared.clangres @@ -0,0 +1 @@ +sh: 1: clang: not found diff --git a/fonda/cpp_testsuite/varBugs/infer-out/.infer_runstate.json b/fonda/cpp_testsuite/varBugs/infer-out/.infer_runstate.json new file mode 100644 index 00000000..0d04ea1f --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/infer-out/.infer_runstate.json @@ -0,0 +1 @@ +{"run_sequence":[{"date":"2022-09-29 14:46:08.735693-05:00","command":"run","infer_version":{"major":1,"minor":1,"patch":0,"commit":"ea7f6cc90"}}],"results_dir_format":"db_filename: infer-out/results.db\ndb_schema: \n CREATE TABLE IF NOT EXISTS procedures\n ( proc_uid TEXT PRIMARY KEY NOT NULL\n , proc_name BLOB NOT NULL\n , attr_kind INTEGER NOT NULL\n , source_file TEXT NOT NULL\n , proc_attributes BLOB NOT NULL\n , cfg BLOB\n , callees BLOB NOT NULL\n )\n ;\n\n CREATE TABLE IF NOT EXISTS source_files\n ( source_file TEXT PRIMARY KEY\n , type_environment BLOB NOT NULL\n , integer_type_widths BLOB\n , procedure_names BLOB NOT NULL\n , freshly_captured INT NOT NULL )\n ;\n\n CREATE TABLE IF NOT EXISTS specs\n ( proc_uid TEXT PRIMARY KEY NOT NULL\n , proc_name BLOB NOT NULL\n , analysis_summary BLOB NOT NULL\n , report_summary BLOB NOT NULL\n )\n ;\n\n CREATE TABLE IF NOT EXISTS model_specs\n ( proc_uid TEXT PRIMARY KEY NOT NULL\n , proc_name BLOB NOT NULL\n , analysis_summary BLOB NOT NULL\n , report_summary BLOB NOT NULL\n )\n ","should_merge_capture":false} \ No newline at end of file diff --git a/fonda/cpp_testsuite/varBugs/infer-out/bugs.txt b/fonda/cpp_testsuite/varBugs/infer-out/bugs.txt new file mode 100644 index 00000000..f77b18e4 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/infer-out/bugs.txt @@ -0,0 +1 @@ +The contents of this file have moved to report.txt. diff --git a/fonda/cpp_testsuite/varBugs/infer-out/config-impact-report.json b/fonda/cpp_testsuite/varBugs/infer-out/config-impact-report.json new file mode 100644 index 00000000..fe51488c --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/infer-out/config-impact-report.json @@ -0,0 +1 @@ +[] diff --git a/fonda/cpp_testsuite/varBugs/infer-out/costs-report.json b/fonda/cpp_testsuite/varBugs/infer-out/costs-report.json new file mode 100644 index 00000000..fe51488c --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/infer-out/costs-report.json @@ -0,0 +1 @@ +[] diff --git a/fonda/cpp_testsuite/varBugs/infer-out/logs b/fonda/cpp_testsuite/varBugs/infer-out/logs new file mode 100644 index 00000000..1ff464bd --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/infer-out/logs @@ -0,0 +1,119 @@ +[11892][ debug] Sqlite write daemon: starting up +[11892][ debug] Sqlite write daemon: set up complete, waiting for connections +[11892][environment] CWD = /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs +[11892][environment] No .inferconfig file found +[11892][environment] Project root = /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs +[11892][environment] INFER_ARGS = @/tmp/args.tmp.0ac9c4 +[11892][environment] command line arguments: infer --pulse-only -- clang -c +[11892][environment] /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c +[11892][environment] Available memory at startup: 27844 MB +[11892][environment] Active checkers: pulse (C/C++/ObjC, C#/.Net, Erlang, Java) +[11892][environment] Scheduler: file +[11892][environment] Cores used: 10 +[11892][environment] Infer version v1.1.0-ea7f6cc90 +[11892][environment] Copyright 2009 - present Facebook. All Rights Reserved. +[11892][environment] +[11892][ progress] Capturing in make/cc mode... +[11892][ debug] +[11892][ debug] *** Beginning capture of file /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c *** +[11892][ debug] Elapsed: 110ms. +[11892][ debug] GC stats for capture: +[11892][ debug] minor_words: 9.96292e+06 +[11892][ debug] promoted_words: 512369 +[11892][ debug] major_words: 563468 +[11892][ debug] minor_collections: 13 +[11892][ debug] major_collections: 3 +[11892][ debug] compactions: 0 +[11892][ debug] top_heap_words: 1006592 +[11892][ debug] +[11892][environment] Parallel jobs: 10 +[11892][ progress] Found 1 source file to analyze in /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/infer-out +[11898][ progress] APACHE/1b48bb3c1af.desugared.c starting +[11898][ progress] APACHE/1b48bb3c1af.desugared.c DONE +[11892][ debug] Backend stats: +[11892][ debug] longest_proc_duration_heap= [__static_initializer_default -> 239ms, __main_1107 -> 21ms, __util_ldap_cache_init_1100 -> 15ms, __apr_rmm_init_1095 -> 10ms, __apr_rmm_init_1094 -> 3ms, __main_1106 -> 0ms, __apr_rmm_init_1093 -> 0ms] +[11892][ debug] summary_file_try_load= 23 +[11892][ debug] summary_read_from_disk= 0 +[11892][ debug] summary_cache_hits= 0 (0%) +[11892][ debug] summary_cache_misses= 23 +[11892][ debug] ondemand_procs_analyzed= 7 +[11892][ debug] ondemand_local_cache_hits= 570 (96%) +[11892][ debug] ondemand_local_cache_misses= 23 +[11892][ debug] proc_locker_lock_time_user= 0.00000000 +[11892][ debug] proc_locker_lock_time_sys= 0.00000000 +[11892][ debug] proc_locker_lock_time_wall= 0.00000000 +[11892][ debug] proc_locker_unlock_time_user= 0.00000000 +[11892][ debug] proc_locker_unlock_time_sys= 0.00000000 +[11892][ debug] proc_locker_unlock_time_wall= 0.00000000 +[11892][ debug] restart_scheduler_useful_time_user= 0.00000000 +[11892][ debug] restart_scheduler_useful_time_sys= 0.00000000 +[11892][ debug] restart_scheduler_useful_time_wall= 0.00000000 +[11892][ debug] restart_scheduler_total_time_user= 0.00000000 +[11892][ debug] restart_scheduler_total_time_sys= 0.00000000 +[11892][ debug] restart_scheduler_total_time_wall= 0.00000000 +[11892][ debug] pulse_aliasing_contradictions= 0 +[11892][ debug] pulse_args_length_contradictions= 0 +[11892][ debug] pulse_captured_vars_length_contradictions= 0 +[11892][ debug] pulse_summaries_count= [2 -> 5, 10 -> 1, 11 -> 1] +[11892][ debug] +[11892][ debug] GC stats for backend_stats.gc_stats_add.: +[11892][ debug] minor_words: 5.462e+07 +[11892][ debug] promoted_words: 5.66347e+06 +[11892][ debug] major_words: 5.81223e+06 +[11892][ debug] minor_collections: 54 +[11892][ debug] major_collections: 4 +[11892][ debug] compactions: 0 +[11892][ debug] top_heap_words: 16191488 +[11892][ debug] +[11892][ debug] GC stats for backend_stats.gc_stats_max.: +[11892][ debug] minor_words: 5.46194e+07 +[11892][ debug] promoted_words: 5.66347e+06 +[11892][ debug] major_words: 5.81223e+06 +[11892][ debug] minor_collections: 54 +[11892][ debug] major_collections: 4 +[11892][ debug] compactions: 0 +[11892][ debug] top_heap_words: 7132160 +[11892][ debug] +[11892][ debug] Average over 10 processes +[11892][ debug] GC stats for backend_stats.gc_stats_average.: +[11892][ debug] minor_words: 5.462e+06 +[11892][ debug] promoted_words: 566347 +[11892][ debug] major_words: 581223 +[11892][ debug] minor_collections: 5 +[11892][ debug] major_collections: 0 +[11892][ debug] compactions: 0 +[11892][ debug] top_heap_words: 1619148 +[11892][ debug] +[11892][ debug] Analysis phase finished in 324ms +[11892][ debug] backend_stats.scheduler_process_analysis_time_user= 0.01871300 +[11892][ debug] backend_stats.scheduler_process_analysis_time_sys= 0.00917000 +[11892][ debug] backend_stats.scheduler_process_analysis_time_wall= 0.32442054 +[11892][ debug] GC stats for analysis_scheduler: +[11892][ debug] minor_words: 89708 +[11892][ debug] promoted_words: 2359 +[11892][ debug] major_words: 11065 +[11892][ debug] minor_collections: 2 +[11892][ debug] major_collections: 2 +[11892][ debug] compactions: 1 +[11892][ debug] top_heap_words: 1006592 +[11892][ debug] +[11892][ debug] GC stats for report: +[11892][ debug] minor_words: 3185 +[11892][ debug] promoted_words: 0 +[11892][ debug] major_words: 0 +[11892][ debug] minor_collections: 0 +[11892][ debug] major_collections: 0 +[11892][ debug] compactions: 0 +[11892][ debug] top_heap_words: 1006592 +[11892][ debug] +[11892][ debug] GC stats for main_process_full: +[11892][ debug] minor_words: 1.21104e+07 +[11892][ debug] promoted_words: 967355 +[11892][ debug] major_words: 1.04905e+06 +[11892][ debug] minor_collections: 21 +[11892][ debug] major_collections: 5 +[11892][ debug] compactions: 1 +[11892][ debug] top_heap_words: 1006592 +[11892][ debug] +[11893][ debug] Detected 0 spec overwrittes. +[11893][ debug] Sqlite write daemon: terminating diff --git a/fonda/cpp_testsuite/varBugs/infer-out/report.json b/fonda/cpp_testsuite/varBugs/infer-out/report.json new file mode 100644 index 00000000..fe51488c --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/infer-out/report.json @@ -0,0 +1 @@ +[] diff --git a/fonda/cpp_testsuite/varBugs/infer-out/report.txt b/fonda/cpp_testsuite/varBugs/infer-out/report.txt new file mode 100644 index 00000000..e69de29b diff --git a/fonda/cpp_testsuite/varBugs/infer-out/results.db b/fonda/cpp_testsuite/varBugs/infer-out/results.db new file mode 100644 index 0000000000000000000000000000000000000000..1c72af1ff3b0f2111c61cc62e1d495a18dfe8a4e GIT binary patch literal 294912 zcmeI*OKam+7zSWF7dsOOT@`P-PzZqrLLdyGt3s1vhA?iXbyMi9gvVB9Onu2na@#OB z&!oHlnf{0VsV?i|OdO>hr<*QX{2b7yBkPmw_t8OHfBQ|NnBZT3(#{IgwJ)3X!_#_ndU({RM}-sX(fjdfbe;~|@u=I0PV3*FMqf9NzdCF_ zjvm$@M<VRr8?LPoks7qoWUXv<9u-Mb^#YY}D_!(u=u`X>vYH^M7dD zIasUIj62I4&fL_X`L2-ZodOwOXxwxjfaGx=c&umdNy@ zS-k(c#ZIMC`@A;KVwxr1pYE#fmY1uw?d|gA@m2oeC~YV4S+|#DSz*3%TcdEMfKs^N zZ);@Mwj1Ra=SiFle(a{hK|dMfb02(nkS9-*G@f4YQ@4{p%ci}BdxbTbbVg|shqZQf z`a_HDEKRa!y^FZrI?pHFo#^;vvSi;c+i2&rl}hd5_FS+++=*M^X!YGexmw%YEdO#a z<(vJS>}Ixfi|*$0S&DyuHRX94|1eqjA!YqRy*W!d`_A2{5aa4$U27D2!jFwxle=}F zjPg5l+hiX;JbB%&g;(xIDC1BJ0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyu($&2A^Lc6^Gi;E009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjYqz(y$JPz(YD2oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FoI)0_!3AcyaSfPJjRb0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1cJauDC1BJ0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zu($&2A^Lc6^Gi;E009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjYqz(y$J zPz(YD2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FoI)0_!3AcyaSfPJjRb z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly nK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1cJbycME(S literal 0 HcmV?d00001 diff --git a/fonda/cpp_testsuite/varBugs/infer-out/results.db-shm b/fonda/cpp_testsuite/varBugs/infer-out/results.db-shm new file mode 100644 index 0000000000000000000000000000000000000000..548c91c0f3f2ea8ec4061876e9d41dcb758119da GIT binary patch literal 32768 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 z%0D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 GSN}f;1WmdC literal 0 HcmV?d00001 diff --git a/fonda/cpp_testsuite/varBugs/infer-out/tmp/clang_command_.tmp.e6a66f.txt b/fonda/cpp_testsuite/varBugs/infer-out/tmp/clang_command_.tmp.e6a66f.txt new file mode 100644 index 00000000..a1d97b4f --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/infer-out/tmp/clang_command_.tmp.e6a66f.txt @@ -0,0 +1,11 @@ +'-###' +'-c' +'/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c' +'-fno-cxx-modules' +'-Qunused-arguments' +'-Wno-ignored-optimization-argument' +'-fno-addrsig' +'-fembed-bitcode=off' +'-include' +'/usr/local/lib/infer/infer/bin/../lib/clang_wrappers/global_defines.h' +'-Wno-everything' diff --git a/fonda/cpp_testsuite/varBugs/infer-out/tmp/clang_command_.tmp.ea4558.txt b/fonda/cpp_testsuite/varBugs/infer-out/tmp/clang_command_.tmp.ea4558.txt new file mode 100644 index 00000000..28809336 --- /dev/null +++ b/fonda/cpp_testsuite/varBugs/infer-out/tmp/clang_command_.tmp.ea4558.txt @@ -0,0 +1,67 @@ +"-cc1" +"-load" +"/usr/local/lib/infer/infer/bin/../../facebook-clang-plugins/libtooling/build/FacebookClangPlugin.dylib" +"-add-plugin" +"BiniouASTExporter" +"-plugin-arg-BiniouASTExporter" +"-" +"-plugin-arg-BiniouASTExporter" +"PREPEND_CURRENT_DIR=1" +"-plugin-arg-BiniouASTExporter" +"MAX_STRING_SIZE=65535" +"-cc1" +"-triple" +"x86_64-unknown-linux-gnu" +"-emit-obj" +"-mrelax-all" +"--mrelax-relocations" +"-disable-free" +"-disable-llvm-verifier" +"-discard-value-names" +"-main-file-name" +"1b48bb3c1af.desugared.c" +"-mrelocation-model" +"static" +"-mframe-pointer=all" +"-fmath-errno" +"-fno-rounding-math" +"-mconstructor-aliases" +"-munwind-tables" +"-target-cpu" +"x86-64" +"-tune-cpu" +"generic" +"-debugger-tuning=gdb" +"-fcoverage-compilation-dir=/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs" +"-resource-dir" +"/usr/local/lib/infer/facebook-clang-plugins/clang/install/lib/clang/13.0.1" +"-include" +"/usr/local/lib/infer/infer/bin/../lib/clang_wrappers/global_defines.h" +"-internal-isystem" +"/usr/local/lib/infer/facebook-clang-plugins/clang/install/lib/clang/13.0.1/include" +"-internal-isystem" +"/usr/local/include" +"-internal-isystem" +"/usr/lib/gcc/x86_64-linux-gnu/7.5.0/../../../../x86_64-linux-gnu/include" +"-internal-externc-isystem" +"/usr/include/x86_64-linux-gnu" +"-internal-externc-isystem" +"/include" +"-internal-externc-isystem" +"/usr/include" +"-Wno-ignored-optimization-argument" +"-Wno-everything" +"-fdebug-compilation-dir=/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs" +"-ferror-limit" +"19" +"-fgnuc-version=4.2.1" +"-D__GCC_HAVE_DWARF2_CFI_ASM=1" +"-o" +"1b48bb3c1af.desugared.o" +"-x" +"c" +"/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c" +"-O0" +"-include" +"/usr/local/lib/infer/infer/bin/../lib/clang_wrappers/global_defines.h" +"-Wno-everything" diff --git a/fonda/cpp_testsuite/varBugs/summaryTable.txt b/fonda/cpp_testsuite/varBugs/summaryTable.txt index 949d162b..8940efee 100644 --- a/fonda/cpp_testsuite/varBugs/summaryTable.txt +++ b/fonda/cpp_testsuite/varBugs/summaryTable.txt @@ -2,12 +2,7 @@ MARLIN f87c80889fe.c Macros: TEMP_RESIDENCY_TIME [-UTEMP_RESIDENCY_TIME ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed MARLIN 53be0f3399e.c Macros: BABYSTEPPING @@ -21,52 +16,22 @@ MARLIN 31873ec707d.c Macros: ULTRA_LCD [-UULTRA_LCD ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed MARLIN 2d22902d080.c Macros: SDSUPPORT [-USDSUPPORT ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed MARLIN a7fc1f83c81.c Macros: SDSUPPORT [-USDSUPPORT ] -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.c:199:6: warning: Value stored to '__len_217' during its initialization is never read [deadcode.DeadStores] -int __len_217= __strlen_108 ( __prepend_216 ) + 13 + 1;// L10 - ^~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.c:201:6: warning: Value stored to '__len_218' during its initialization is never read [deadcode.DeadStores] -int __len_218= __strlen_109 ( __prepend_216 ) + 13 + 1;// L10 - ^~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/a7fc1f83c81.desugared.c:211:7: warning: Value stored to '__lfilename_221' during its initialization is never read [deadcode.DeadStores] -char __lfilename_221[13]= "FOLDERNAME12\0";// L15 - ^~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~ -3 warnings generated. -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed MARLIN 30248214c7f.c Macros: defined [-Udefined ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed MARLIN 2db384a21d6.c Macros: MESH_BED_LEVELING @@ -75,12 +40,7 @@ Macros: [-DMESH_BED_LEVELING=1 -UDISABLE_M503 ] [-UMESH_BED_LEVELING -DDISABLE_M503=1 ] [-DMESH_BED_LEVELING=1 -DDISABLE_M503=1 ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed MARLIN b8e79dce897.c Macros: ULTRA_LCD @@ -95,56 +55,22 @@ Macros: [-UULTRA_LCD -DENCODER_RATE_MULTIPLIER=1 -DTEMP_SENSOR_0=1 ] [-DULTRA_LCD=1 -DENCODER_RATE_MULTIPLIER=1 -DTEMP_SENSOR_0=1 ] [-UULTRA_LCD -UENCODER_RATE_MULTIPLIER -UTEMP_SENSOR_0 ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed MARLIN 8c4377dd635.c Macros: MARLIN_H PIDTEMP PID_DEBUG [-UMARLIN_H -UPIDTEMP -UPID_DEBUG ] -clang :: 1 :: Line:19 - Value stored to 'pid_output' is never read [deadcode.DeadStores] [-DMARLIN_H=1 -UPIDTEMP -UPID_DEBUG ] -clang :: 2 :: Line:19 - Value stored to 'pid_output' is never read [deadcode.DeadStores] [-UMARLIN_H -DPIDTEMP=1 -UPID_DEBUG ] [-DMARLIN_H=1 -DPIDTEMP=1 -UPID_DEBUG ] [-UMARLIN_H -UPIDTEMP -DPID_DEBUG=1 ] -clang :: 3 :: Line:19 - Value stored to 'pid_output' is never read [deadcode.DeadStores] [-DMARLIN_H=1 -UPIDTEMP -DPID_DEBUG=1 ] -clang :: 4 :: Line:19 - Value stored to 'pid_output' is never read [deadcode.DeadStores] [-UMARLIN_H -DPIDTEMP=1 -DPID_DEBUG=1 ] [-DMARLIN_H=1 -DPIDTEMP=1 -DPID_DEBUG=1 ] [-UMARLIN_H -UPIDTEMP -UPID_DEBUG ] -clang :: 5 :: Line:19 - Value stored to 'pid_output' is never read [deadcode.DeadStores] -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.c:94:2: warning: Value stored to '__pid_output_4' is never read [deadcode.DeadStores] - __pid_output_4 = 0 ; // L19 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/8c4377dd635.desugared.c:138:2: warning: Value stored to '__pid_output_4' is never read [deadcode.DeadStores] - __pid_output_4 = 0 ; // L19 - ^ ~ -2 warnings generated. -Desugared Infer Results: - - No issues found -Matches: - 1 has a match! - 2 has a match! - 3 has a match! - 4 has a match! - 5 has a match! -Unmatched ids: - None! -Original file has no warnings +File Failed MARLIN fc3c76fc164.c Macros: HAS_HEATER_THERMAL_PROTECTION @@ -153,12 +79,7 @@ Macros: [-DHAS_HEATER_THERMAL_PROTECTION=1 -UHAS_BED_THERMAL_PROTECTION ] [-UHAS_HEATER_THERMAL_PROTECTION -DHAS_BED_THERMAL_PROTECTION=1 ] [-DHAS_HEATER_THERMAL_PROTECTION=1 -DHAS_BED_THERMAL_PROTECTION=1 ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed MARLIN 831016b09f7.c Macros: ULTRA_LCD @@ -167,42 +88,16 @@ Macros: [-DULTRA_LCD=1 -USDSUPPORT ] [-UULTRA_LCD -DSDSUPPORT=1 ] [-DULTRA_LCD=1 -DSDSUPPORT=1 ] -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/831016b09f7.desugared.c:81:7: warning: Value stored to '__time_7' during its initialization is never read [deadcode.DeadStores] -char __time_7[30]= "time_here";// L14 - ^~~~~~~~ ~~~~~~~~~~~ -1 warning generated. -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed MARLIN e30bfedce4d.c Macros: ENABLE_AUTO_BED_LEVELING AUTO_BED_LEVELING_GRID [-UENABLE_AUTO_BED_LEVELING -UAUTO_BED_LEVELING_GRID ] [-DENABLE_AUTO_BED_LEVELING=1 -UAUTO_BED_LEVELING_GRID ] -clang :: 8 :: Line:24 - Value stored to 'xGridSpacing' during its initialization is never read [deadcode.DeadStores] [-UENABLE_AUTO_BED_LEVELING -DAUTO_BED_LEVELING_GRID=1 ] [-DENABLE_AUTO_BED_LEVELING=1 -DAUTO_BED_LEVELING_GRID=1 ] -clang :: 9 :: Line:24 - Value stored to 'xGridSpacing' during its initialization is never read [deadcode.DeadStores] -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/MARLIN/e30bfedce4d.desugared.c:48:6: warning: Value stored to '__xGridSpacing_1' during its initialization is never read [deadcode.DeadStores] -int __xGridSpacing_1= __left_probe_bed_position_0 ;// L24 - ^~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~ -1 warning generated. -Desugared Infer Results: - - No issues found -Matches: - 8 has a match! - 9 has a match! -Unmatched ids: - None! -Original file has no warnings +File Failed MARLIN 7336e6df070.c Macros: Z_DUAL_STEPPER_DRIVERS @@ -225,22 +120,12 @@ Macros: [-DZ_DUAL_STEPPER_DRIVERS=1 -UZ_DUAL_ENDSTOPS -DHAS_Z_MIN=1 -DHAS_Z_MAX=1 ] [-UZ_DUAL_STEPPER_DRIVERS -DZ_DUAL_ENDSTOPS=1 -DHAS_Z_MIN=1 -DHAS_Z_MAX=1 ] [-DZ_DUAL_STEPPER_DRIVERS=1 -DZ_DUAL_ENDSTOPS=1 -DHAS_Z_MIN=1 -DHAS_Z_MAX=1 ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed MARLIN fdac8f6cece.c Macros: ENABLE_AUTO_BED_LEVELING [-UENABLE_AUTO_BED_LEVELING ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed LINUX d530db0db90.c Macros: CONFIG_VORTEX @@ -249,126 +134,32 @@ Macros: [-DCONFIG_VORTEX=1 -UCONFIG_PCI ] [-UCONFIG_VORTEX -DCONFIG_PCI=1 ] [-DCONFIG_VORTEX=1 -DCONFIG_PCI=1 ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed LINUX bc8cec0dff0.c Macros: CONFIG_JFFS2_FS_WBUF_VERIFY [-UCONFIG_JFFS2_FS_WBUF_VERIFY ] -Desugared Clang Results: -Desugared Infer Results: - -LINUX/bc8cec0dff0.desugared.c:198: error: Memory Leak - Memory dynamically allocated by `malloc`, indirectly via call to `__jffs2_nor_wbuf_flash_setup_7()` on line 187 is not freed after the last access at line 198, column 1. - 196. - 197. - 198. } - ^ - 199. - - -Found 1 issue - Issue Type(ISSUED_TYPE_ID): # - Memory Leak(MEMORY_LEAK_C): 1 -Original file has no warnings -Original file has no warnings +File Failed LINUX d7e9711760a.c Macros: CONFIG_QUOTA_DEBUG [-UCONFIG_QUOTA_DEBUG ] -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/d7e9711760a.desugared.c:1397:2: warning: Value stored to '__reserved_803' is never read [deadcode.DeadStores] - __reserved_803 = 1 ; // L30 - ^ ~ -1 warning generated. -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed LINUX 221ac329e93.c Macros: CONFIG_KPROBES [-UCONFIG_KPROBES ] -Desugared Clang Results: -Desugared Infer Results: - -LINUX/221ac329e93.desugared.c:4742: error: Memory Leak - Memory dynamically allocated by `malloc` on line 4681 is not freed after the last access at line 4742, column 1. - 4740. - 4741. } - 4742. } - ^ - 4743. int (__main_3993) (int __argc_3990, char * (* (__argv_3991))) { - 4744. - -LINUX/221ac329e93.desugared.c:4742: error: Memory Leak - Memory dynamically allocated by `malloc` on line 4691 is not freed after the last access at line 4742, column 1. - 4740. - 4741. } - 4742. } - ^ - 4743. int (__main_3993) (int __argc_3990, char * (* (__argv_3991))) { - 4744. - -LINUX/221ac329e93.desugared.c:4742: error: Memory Leak - Memory dynamically allocated by `malloc` on line 4701 is not freed after the last access at line 4742, column 1. - 4740. - 4741. } - 4742. } - ^ - 4743. int (__main_3993) (int __argc_3990, char * (* (__argv_3991))) { - 4744. - -LINUX/221ac329e93.desugared.c:4742: error: Memory Leak - Memory dynamically allocated by `malloc` on line 4711 is not freed after the last access at line 4742, column 1. - 4740. - 4741. } - 4742. } - ^ - 4743. int (__main_3993) (int __argc_3990, char * (* (__argv_3991))) { - 4744. - - -Found 4 issues - Issue Type(ISSUED_TYPE_ID): # - Memory Leak(MEMORY_LEAK_C): 4 -Original file has no warnings -Original file has no warnings +File Failed LINUX 51fd36f3fad.c Macros: CONFIG_64BIT [-UCONFIG_64BIT ] -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.c:216:1: warning: Undefined or garbage value returned to caller [core.uninitialized.UndefReturn] -return __tmp_38 ;// L45 -^~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.c:256:1: warning: Undefined or garbage value returned to caller [core.uninitialized.UndefReturn] -return __expires_47 ;// L60 -^~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/51fd36f3fad.desugared.c:300:1: warning: Undefined or garbage value returned to caller [core.uninitialized.UndefReturn] -return __expires_47 ;// L60 -^~~~~~~~~~~~~~~~~~~~ -3 warnings generated. -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed LINUX 208d89843b7.c Macros: CONFIG_HIGHMEM [-UCONFIG_HIGHMEM ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed LINUX ee3f34e8572.c Macros: SCTP_DEBUG @@ -383,33 +174,12 @@ Macros: [-USCTP_DEBUG -DCONFIG_SCTP_DBG_MSG=1 -Ddefined=1 ] [-DSCTP_DEBUG=1 -DCONFIG_SCTP_DBG_MSG=1 -Ddefined=1 ] [-USCTP_DEBUG -UCONFIG_SCTP_DBG_MSG -Udefined ] -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.desugared.c:1494:3: warning: Dereference of null pointer (loaded from variable '__rt_814') [core.NullDereference] -( ( * __rt_814 ) ++ ) ; // L23:L45 - ^~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/ee3f34e8572.desugared.c:1515:3: warning: Dereference of null pointer (loaded from variable '__rt_814') [core.NullDereference] -( ( * __rt_814 ) ++ ) ; // L23:L45 - ^~~~~~~~~~~~~~~~~~~ -2 warnings generated. -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed LINUX 472a474c663.c Macros: CONFIG_SMP [-UCONFIG_SMP ] -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/472a474c663.desugared.c:87:13: warning: Dereference of null pointer (loaded from variable '__ptr_3') [core.NullDereference] -* __ptr_3 = 'a' ; // L14 - ~~~~~~~ ^ -1 warning generated. -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed LINUX 657e9649e74.c Macros: CONFIG_PREEMPT @@ -418,12 +188,7 @@ Macros: [-DCONFIG_PREEMPT=1 -UCONFIG_TCP_MD5SIG ] [-UCONFIG_PREEMPT -DCONFIG_TCP_MD5SIG=1 ] [-DCONFIG_PREEMPT=1 -DCONFIG_TCP_MD5SIG=1 ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed LINUX f7ab9b407b3.c Macros: CONFIG_TMPFS @@ -438,31 +203,12 @@ Macros: [-UCONFIG_TMPFS -DCONFIG_SHMEM=1 -DCONFIG_DRM_I915=1 ] [-DCONFIG_TMPFS=1 -DCONFIG_SHMEM=1 -DCONFIG_DRM_I915=1 ] [-UCONFIG_TMPFS -UCONFIG_SHMEM -UCONFIG_DRM_I915 ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed LINUX 36855dcfc98.c Macros: CONFIG_BF60x [-UCONFIG_BF60x ] -clang :: 11 :: Line:6 - Value stored to 'wakeup' is never read [deadcode.DeadStores] -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/36855dcfc98.desugared.c:32:2: warning: Value stored to '__wakeup_0' is never read [deadcode.DeadStores] - __wakeup_0 = 0 ; // L6 - ^ ~ -1 warning generated. -Desugared Infer Results: - - No issues found -Matches: - 11 has a match! -Unmatched ids: - None! -Original file has no warnings +File Failed LINUX e1fbd9210d5.c Macros: CONFIG_LBDAF @@ -471,12 +217,7 @@ Macros: [-DCONFIG_LBDAF=1 -UCONFIG_AMIGA_Z2RAM ] [-UCONFIG_LBDAF -DCONFIG_AMIGA_Z2RAM=1 ] [-DCONFIG_LBDAF=1 -DCONFIG_AMIGA_Z2RAM=1 ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed LINUX 66517915e09.c Macros: CONFIG_SND_FSI_AK4642 @@ -490,88 +231,26 @@ Macros: [-DCONFIG_SND_FSI_AK4642=1 -DCONFIG_SND_FSI_DA7210=1 -UCONFIG_I2C -UCONFIG_SND_SOC_DA7210 -UCONFIG_SND_SOC_AK4642 ] [-UCONFIG_SND_FSI_AK4642 -UCONFIG_SND_FSI_DA7210 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -UCONFIG_SND_SOC_AK4642 ] [-DCONFIG_SND_FSI_AK4642=1 -UCONFIG_SND_FSI_DA7210 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -UCONFIG_SND_SOC_AK4642 ] -clang :: 13 :: Line:24 - Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-UCONFIG_SND_FSI_AK4642 -DCONFIG_SND_FSI_DA7210=1 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -UCONFIG_SND_SOC_AK4642 ] -clang :: 14 :: Line:16 - Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-DCONFIG_SND_FSI_AK4642=1 -DCONFIG_SND_FSI_DA7210=1 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -UCONFIG_SND_SOC_AK4642 ] -clang :: 15 :: Line:16 - Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] -clang :: 16 :: Line:24 - Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-UCONFIG_SND_FSI_AK4642 -UCONFIG_SND_FSI_DA7210 -UCONFIG_I2C -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] [-DCONFIG_SND_FSI_AK4642=1 -UCONFIG_SND_FSI_DA7210 -UCONFIG_I2C -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] [-UCONFIG_SND_FSI_AK4642 -DCONFIG_SND_FSI_DA7210=1 -UCONFIG_I2C -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] [-DCONFIG_SND_FSI_AK4642=1 -DCONFIG_SND_FSI_DA7210=1 -UCONFIG_I2C -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] [-UCONFIG_SND_FSI_AK4642 -UCONFIG_SND_FSI_DA7210 -DCONFIG_I2C=1 -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] -clang :: 17 :: Line:16 - Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-DCONFIG_SND_FSI_AK4642=1 -UCONFIG_SND_FSI_DA7210 -DCONFIG_I2C=1 -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] -clang :: 18 :: Line:16 - Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] -clang :: 19 :: Line:24 - Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-UCONFIG_SND_FSI_AK4642 -DCONFIG_SND_FSI_DA7210=1 -DCONFIG_I2C=1 -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] -clang :: 20 :: Line:16 - Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-DCONFIG_SND_FSI_AK4642=1 -DCONFIG_SND_FSI_DA7210=1 -DCONFIG_I2C=1 -DCONFIG_SND_SOC_DA7210=1 -UCONFIG_SND_SOC_AK4642 ] -clang :: 21 :: Line:16 - Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] -clang :: 22 :: Line:24 - Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-UCONFIG_SND_FSI_AK4642 -UCONFIG_SND_FSI_DA7210 -UCONFIG_I2C -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] [-DCONFIG_SND_FSI_AK4642=1 -UCONFIG_SND_FSI_DA7210 -UCONFIG_I2C -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] [-UCONFIG_SND_FSI_AK4642 -DCONFIG_SND_FSI_DA7210=1 -UCONFIG_I2C -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] [-DCONFIG_SND_FSI_AK4642=1 -DCONFIG_SND_FSI_DA7210=1 -UCONFIG_I2C -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] [-UCONFIG_SND_FSI_AK4642 -UCONFIG_SND_FSI_DA7210 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] -clang :: 23 :: Line:24 - Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-DCONFIG_SND_FSI_AK4642=1 -UCONFIG_SND_FSI_DA7210 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] -clang :: 24 :: Line:24 - Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-UCONFIG_SND_FSI_AK4642 -DCONFIG_SND_FSI_DA7210=1 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] -clang :: 25 :: Line:16 - Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] -clang :: 26 :: Line:24 - Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-DCONFIG_SND_FSI_AK4642=1 -DCONFIG_SND_FSI_DA7210=1 -DCONFIG_I2C=1 -UCONFIG_SND_SOC_DA7210 -DCONFIG_SND_SOC_AK4642=1 ] -clang :: 27 :: Line:16 - Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] -clang :: 28 :: Line:24 - Value stored to 'codec_hw_write' during its initialization is never read [deadcode.DeadStores] [-UCONFIG_SND_FSI_AK4642 -UCONFIG_SND_FSI_DA7210 -UCONFIG_I2C -DCONFIG_SND_SOC_DA7210=1 -DCONFIG_SND_SOC_AK4642=1 ] -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.desugared.c:48:6: warning: Value stored to '__codec_hw_write_1' during its initialization is never read [deadcode.DeadStores] -int __codec_hw_write_1= __i2c_master_send_0 ;// L16 - ^~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/66517915e09.desugared.c:70:6: warning: Value stored to '__codec_hw_write_5' during its initialization is never read [deadcode.DeadStores] -int __codec_hw_write_5= __i2c_master_send_0 ;// L24 - ^~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~ -2 warnings generated. -Desugared Infer Results: - - No issues found -Matches: - 13 has a match! - 14 has a match! - 15 has a match! - 16 has a match! - 17 has a match! - 18 has a match! - 19 has a match! - 20 has a match! - 21 has a match! - 22 has a match! - 23 has a match! - 24 has a match! - 25 has a match! - 26 has a match! - 27 has a match! - 28 has a match! -Unmatched ids: - None! -Original file has no warnings +File Failed LINUX 7c6048b7c83.c Macros: defined @@ -586,22 +265,12 @@ Macros: [-Udefined -DCONFIG_BACKLIGHT_CLASS_DEVICE=1 -DCONFIG_ACPI_VIDEO=1 ] [-Ddefined=1 -DCONFIG_BACKLIGHT_CLASS_DEVICE=1 -DCONFIG_ACPI_VIDEO=1 ] [-Udefined -UCONFIG_BACKLIGHT_CLASS_DEVICE -UCONFIG_ACPI_VIDEO ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed LINUX f3d83e24154.c Macros: defined [-Udefined ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed LINUX eb91f1d0a53.c Macros: defined @@ -624,12 +293,7 @@ Macros: [-Ddefined=1 -UCONFIG_SLAB -DCONFIG_NUMA=1 -DCONFIG_KMEMTRACE=1 ] [-Udefined -DCONFIG_SLAB=1 -DCONFIG_NUMA=1 -DCONFIG_KMEMTRACE=1 ] [-Ddefined=1 -DCONFIG_SLAB=1 -DCONFIG_NUMA=1 -DCONFIG_KMEMTRACE=1 ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed LINUX 1f758a4341a.c Macros: CONFIG_ZONE_DMA @@ -638,12 +302,7 @@ Macros: [-DCONFIG_ZONE_DMA=1 -UCONFIG_EP93XX_ETH ] [-UCONFIG_ZONE_DMA -DCONFIG_EP93XX_ETH=1 ] [-DCONFIG_ZONE_DMA=1 -DCONFIG_EP93XX_ETH=1 ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed LINUX 0988c4c7fb5.c Macros: CONFIG_VLAN_8021Q @@ -652,12 +311,7 @@ Macros: [-DCONFIG_VLAN_8021Q=1 -UCONFIG_RPS ] [-UCONFIG_VLAN_8021Q -DCONFIG_RPS=1 ] [-DCONFIG_VLAN_8021Q=1 -DCONFIG_RPS=1 ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed LINUX 242f1a34377.c Macros: CONFIG_CRYPTO_BLKCIPHER @@ -666,12 +320,7 @@ Macros: [-DCONFIG_CRYPTO_BLKCIPHER=1 -UCONFIG_CRYPTO_TEST ] [-UCONFIG_CRYPTO_BLKCIPHER -DCONFIG_CRYPTO_TEST=1 ] [-DCONFIG_CRYPTO_BLKCIPHER=1 -DCONFIG_CRYPTO_TEST=1 ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed LINUX 2f02c15a5d9.c Macros: CONFIG_SSB_DRIVER_EXTIF @@ -680,34 +329,12 @@ Macros: [-DCONFIG_SSB_DRIVER_EXTIF=1 -UCONFIG_BCM47XX ] [-UCONFIG_SSB_DRIVER_EXTIF -DCONFIG_BCM47XX=1 ] [-DCONFIG_SSB_DRIVER_EXTIF=1 -DCONFIG_BCM47XX=1 ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed LINUX 8c8296223f3.c Macros: CONFIG_PROC_PAGE_MONITOR [-UCONFIG_PROC_PAGE_MONITOR ] -Desugared Clang Results: -Desugared Infer Results: - -LINUX/8c8296223f3.desugared.c:1413: error: Memory Leak - Memory dynamically allocated by `malloc` on line 1393 is not freed after the last access at line 1413, column 1. - 1411. - 1412. } - 1413. } - ^ - 1414. int (__main_813) (int __argc_811, char * (* (__argv_812))) { - 1415. - - -Found 1 issue - Issue Type(ISSUED_TYPE_ID): # - Memory Leak(MEMORY_LEAK_C): 1 -Original file has no warnings -Original file has no warnings +File Failed LINUX 68bb91baa0.c Macros: CONFIG_I2C_DESIGNWARE_PLATFORM @@ -722,12 +349,7 @@ Macros: [-UCONFIG_I2C_DESIGNWARE_PLATFORM -DCONFIG_I2C_DESIGNWARE_PCI=1 -Ddefined=1 ] [-DCONFIG_I2C_DESIGNWARE_PLATFORM=1 -DCONFIG_I2C_DESIGNWARE_PCI=1 -Ddefined=1 ] [-UCONFIG_I2C_DESIGNWARE_PLATFORM -UCONFIG_I2C_DESIGNWARE_PCI -Udefined ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed LINUX 1c17e4d4437.c Macros: CONFIG_RCU_CPU_STALL_INFO @@ -736,12 +358,7 @@ Macros: [-DCONFIG_RCU_CPU_STALL_INFO=1 -UCONFIG_RCU_FAST_NO_HZ ] [-UCONFIG_RCU_CPU_STALL_INFO -DCONFIG_RCU_FAST_NO_HZ=1 ] [-DCONFIG_RCU_CPU_STALL_INFO=1 -DCONFIG_RCU_FAST_NO_HZ=1 ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed LINUX f48ec1d7885.c Macros: CONFIG_BLK_CGROUP @@ -750,12 +367,7 @@ Macros: [-DCONFIG_BLK_CGROUP=1 -UCONFIG_IOSCHED_CFQ ] [-UCONFIG_BLK_CGROUP -DCONFIG_IOSCHED_CFQ=1 ] [-DCONFIG_BLK_CGROUP=1 -DCONFIG_IOSCHED_CFQ=1 ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed LINUX 0dc77b6dabe.c Macros: CONFIG_ANDROID @@ -778,23 +390,7 @@ Macros: [-DCONFIG_ANDROID=1 -UCONFIG_SYSFS -DCONFIG_EXTCON=1 -Ddefined=1 ] [-UCONFIG_ANDROID -DCONFIG_SYSFS=1 -DCONFIG_EXTCON=1 -Ddefined=1 ] [-DCONFIG_ANDROID=1 -DCONFIG_SYSFS=1 -DCONFIG_EXTCON=1 -Ddefined=1 ] -Desugared Clang Results: -Desugared Infer Results: - -LINUX/0dc77b6dabe.desugared.c:303: error: Memory Leak - Memory dynamically allocated by `malloc`, indirectly via call to `__extcon_class_init_34()` on line 294 is not freed after the last access at line 303, column 1. - 301. - 302. } - 303. } - ^ - 304. - - -Found 1 issue - Issue Type(ISSUED_TYPE_ID): # - Memory Leak(MEMORY_LEAK_C): 1 -Original file has no warnings -Original file has no warnings +File Failed LINUX 6515e48932c.c Macros: defined @@ -803,12 +399,7 @@ Macros: [-Ddefined=1 -UCONFIG_MACH_OMAP_H4 ] [-Udefined -DCONFIG_MACH_OMAP_H4=1 ] [-Ddefined=1 -DCONFIG_MACH_OMAP_H4=1 ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed LINUX 91ea8207168.c Macros: CONFIG_NODES_SHIFT @@ -823,41 +414,12 @@ Macros: [-UCONFIG_NODES_SHIFT -DCONFIG_DISCONTIGMEM=1 -DCONFIG_PROC_PAGE_MONITOR=1 ] [-DCONFIG_NODES_SHIFT=1 -DCONFIG_DISCONTIGMEM=1 -DCONFIG_PROC_PAGE_MONITOR=1 ] [-UCONFIG_NODES_SHIFT -UCONFIG_DISCONTIGMEM -UCONFIG_PROC_PAGE_MONITOR ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed LINUX 6e2b75740be.c Macros: defined [-Udefined ] -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.c:95:9: warning: Potential leak of memory pointed to by '__ptr_11' [unix.Malloc] -if ( ! __ptr_11 )// L39 - ^~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.c:121:10: warning: Value stored to '__dest_12' during its initialization is never read [deadcode.DeadStores] -void * (__dest_12)= ( __mod_9 [ 1 ] );// L46 - ^~~~~~~~~ ~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.c:146:1: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] -free (( __mod_9 [ 1 ] )) ; // L60 -^~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.c:153:1: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] -free (( __mod_9 [ 0 ] )) ; // L63 -^~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.c:177:1: warning: Attempt to free released memory [unix.Malloc] -free ( __hdr_8 ) ; // L67 -^~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/6e2b75740be.desugared.c:182:9: warning: Potential leak of memory pointed to by '__mod_9' [unix.Malloc] -return __err_10 ;// L69 - ^~~~~~~~ -6 warnings generated. -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed LINUX 76baeebf7df.c Macros: CONFIG_X86_32 @@ -890,49 +452,12 @@ Macros: [-UCONFIG_X86_32 -DCONFIG_NUMA=1 -DCONFIG_DEBUG_PER_CPU_MAPS=1 -UCONFIG_PCI -DCONFIG_X86_64=1 ] [-DCONFIG_X86_32=1 -DCONFIG_NUMA=1 -DCONFIG_DEBUG_PER_CPU_MAPS=1 -UCONFIG_PCI -DCONFIG_X86_64=1 ] [-UCONFIG_X86_32 -UCONFIG_NUMA -UCONFIG_DEBUG_PER_CPU_MAPS -DCONFIG_PCI=1 -DCONFIG_X86_64=1 ] -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/76baeebf7df.desugared.c:1629:31: warning: Dereference of undefined pointer value (loaded from variable '__mask_1132') [core.NullDereference] - __printf_421 ("mask: %ld\n",* __mask_1132 ) ; // L137 - ^~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/76baeebf7df.desugared.c:1632:31: warning: Dereference of undefined pointer value (loaded from variable '__mask_1134') [core.NullDereference] - __printf_421 ("mask: %ld\n",* __mask_1134 ) ; // L137 - ^~~~~~~~~~~~~~ -2 warnings generated. -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed LINUX 218ad12f42e.c Macros: CONFIG_NUMA [-UCONFIG_NUMA ] -Desugared Clang Results: -Desugared Infer Results: - -LINUX/218ad12f42e.desugared.c:63: error: Memory Leak - Memory dynamically allocated by `malloc` on line 42 is not freed after the last access at line 63, column 1. - 61. - 62. - 63. } - ^ - 64. void (__inet_ehash_locks_free_9) () { - 65. - -LINUX/218ad12f42e.desugared.c:123: error: Memory Leak - Memory dynamically allocated by `malloc`, indirectly via call to `__inet_ehash_locks_alloc_6()` on line 116 is not freed after the last access at line 123, column 1. - 121. - 122. - 123. } - ^ - 124. - - -Found 2 issues - Issue Type(ISSUED_TYPE_ID): # - Memory Leak(MEMORY_LEAK_C): 2 -Original file has no warnings -Original file has no warnings +File Failed LINUX ae249b5fa27.c Macros: CONFIG_DISCONTIGMEM @@ -941,53 +466,22 @@ Macros: [-DCONFIG_DISCONTIGMEM=1 -UCONFIG_PROC_PAGE_MONITOR ] [-UCONFIG_DISCONTIGMEM -DCONFIG_PROC_PAGE_MONITOR=1 ] [-DCONFIG_DISCONTIGMEM=1 -DCONFIG_PROC_PAGE_MONITOR=1 ] -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.desugared.c:283:15: warning: The left operand of '!=' is a garbage value [core.UndefinedBinaryOperatorResult] -( ( __r_236 != 0xff ) ? ( void ) ( 0 ) : ____assert_fail_4 ("r != 0xff","/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.c",19, __PRETTY_FUNCTION__ ) ) ; // L19:L91 - ~~~~~~~ ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/ae249b5fa27.desugared.c:288:1: warning: Undefined or garbage value returned to caller [core.uninitialized.UndefReturn] -return ( int ) __r_236 ;// L21 -^~~~~~~~~~~~~~~~~~~~~~~~~ -2 warnings generated. -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed LINUX e67bc51e574.c Macros: CONFIG_TRACING [-UCONFIG_TRACING ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed LINUX c708c57e247.c Macros: CONFIG_S390_PRNG [-UCONFIG_S390_PRNG ] -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/c708c57e247.desugared.c:74:41: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] -* ( ( ____u64_0 * ) __parm_block_1 ) ^= * ( ( ____u64_0 * ) __buf_3 + __i_4 * 8 ) ; // L18 - ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -1 warning generated. -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed LINUX 809e660f438.c Macros: CONFIG_ARM_LPAE [-UCONFIG_ARM_LPAE ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed LINUX 0f8f8094d28.c Macros: CONFIG_FORCE_MAX_ZONEORDER @@ -1020,12 +514,7 @@ Macros: [-UCONFIG_FORCE_MAX_ZONEORDER -Ddefined=1 -DCONFIG_SLAB=1 -UCONFIG_SLOB -DCONFIG_LOCKDEP=1 ] [-DCONFIG_FORCE_MAX_ZONEORDER=1 -Ddefined=1 -DCONFIG_SLAB=1 -UCONFIG_SLOB -DCONFIG_LOCKDEP=1 ] [-UCONFIG_FORCE_MAX_ZONEORDER -Udefined -UCONFIG_SLAB -DCONFIG_SLOB=1 -DCONFIG_LOCKDEP=1 ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed LINUX 6252547b8a7.c Macros: CONFIG_TWL4030_CORE @@ -1033,59 +522,18 @@ Macros: CONFIG_OF_IRQ [-UCONFIG_TWL4030_CORE -UCONFIG_IRQ_DOMAIN -UCONFIG_OF_IRQ ] [-DCONFIG_TWL4030_CORE=1 -UCONFIG_IRQ_DOMAIN -UCONFIG_OF_IRQ ] -clang :: 31 :: Line:12 - Value stored to 'irq' during its initialization is never read [deadcode.DeadStores] -clang :: 32 :: Line:12 - Dereference of null pointer (loaded from variable 'ops') [core.NullDereference] -infer :: 33 :: Line:25 +infer :: 1 :: Line:25 Null Dereference [-UCONFIG_TWL4030_CORE -DCONFIG_IRQ_DOMAIN=1 -UCONFIG_OF_IRQ ] -clang :: 34 :: Line:12 - Value stored to 'irq' during its initialization is never read [deadcode.DeadStores] [-DCONFIG_TWL4030_CORE=1 -DCONFIG_IRQ_DOMAIN=1 -UCONFIG_OF_IRQ ] -clang :: 35 :: Line:12 - Value stored to 'irq' during its initialization is never read [deadcode.DeadStores] -clang :: 36 :: Line:12 - Dereference of null pointer (loaded from variable 'ops') [core.NullDereference] -infer :: 37 :: Line:25 +infer :: 2 :: Line:25 Null Dereference [-UCONFIG_TWL4030_CORE -UCONFIG_IRQ_DOMAIN -DCONFIG_OF_IRQ=1 ] [-DCONFIG_TWL4030_CORE=1 -UCONFIG_IRQ_DOMAIN -DCONFIG_OF_IRQ=1 ] -clang :: 38 :: Line:12 - Value stored to 'irq' during its initialization is never read [deadcode.DeadStores] [-UCONFIG_TWL4030_CORE -DCONFIG_IRQ_DOMAIN=1 -DCONFIG_OF_IRQ=1 ] -clang :: 39 :: Line:12 - Value stored to 'irq' during its initialization is never read [deadcode.DeadStores] [-DCONFIG_TWL4030_CORE=1 -DCONFIG_IRQ_DOMAIN=1 -DCONFIG_OF_IRQ=1 ] -clang :: 40 :: Line:12 - Value stored to 'irq' during its initialization is never read [deadcode.DeadStores] [-UCONFIG_TWL4030_CORE -UCONFIG_IRQ_DOMAIN -UCONFIG_OF_IRQ ] -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.desugared.c:49:6: warning: Value stored to '__irq_2' during its initialization is never read [deadcode.DeadStores] -int __irq_2= * __ops_1 ;// L12 - ^~~~~~~ ~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/6252547b8a7.desugared.c:49:15: warning: Dereference of null pointer (loaded from variable '__ops_1') [core.NullDereference] -int __irq_2= * __ops_1 ;// L12 - ^~~~~~~~~~ -2 warnings generated. -Desugared Infer Results: - - No issues found -Matches: - 31 has a match! - 32 has a match! - 34 has a match! - 35 has a match! - 36 has a match! - 38 has a match! - 39 has a match! - 40 has a match! -Unmatched ids: - None! -Matches: -Unmatched ids: - 33 - 37 +File Failed LINUX d6c7e113959.c Macros: CONFIG_REGULATOR_MAX8660 @@ -1094,70 +542,25 @@ Macros: [-DCONFIG_REGULATOR_MAX8660=1 -UCONFIG_OF ] [-UCONFIG_REGULATOR_MAX8660 -DCONFIG_OF=1 ] [-DCONFIG_REGULATOR_MAX8660=1 -DCONFIG_OF=1 ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed LINUX e39363a9def.c Macros: CONFIG_NETPOLL CONFIG_IPV6 [-UCONFIG_NETPOLL -UCONFIG_IPV6 ] [-DCONFIG_NETPOLL=1 -UCONFIG_IPV6 ] -clang :: 45 :: Line:17 - Undefined or garbage value returned to caller [core.uninitialized.UndefReturn] -infer :: 46 :: Line:17 +infer :: 3 :: Line:17 Uninitialized Value [-UCONFIG_NETPOLL -DCONFIG_IPV6=1 ] [-DCONFIG_NETPOLL=1 -DCONFIG_IPV6=1 ] -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/e39363a9def.desugared.c:77:1: warning: Undefined or garbage value returned to caller [core.uninitialized.UndefReturn] -return __err_1 ;// L17 -^~~~~~~~~~~~~~~ -1 warning generated. -Desugared Infer Results: - - No issues found -Matches: - 45 has a match! -Unmatched ids: - None! -Matches: -Unmatched ids: - 46 +File Failed LINUX 30e053248da.c Macros: CONFIG_SECURITY [-UCONFIG_SECURITY ] -clang :: 49 :: Line:31 - Assigned value is garbage or undefined [core.uninitialized.Assign] -clang :: 50 :: Line:31 - Value stored to 'x' during its initialization is never read [deadcode.DeadStores] -infer :: 51 :: Line:41 +infer :: 4 :: Line:41 Uninitialized Value -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.desugared.c:111:7: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] -if ( __error_8 )// L26 - ^~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.desugared.c:124:1: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] -int __x_9= * __length_7 ;// L31 -^~~~~~~~~~ ~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/30e053248da.desugared.c:124:6: warning: Value stored to '__x_9' during its initialization is never read [deadcode.DeadStores] -int __x_9= * __length_7 ;// L31 - ^~~~~ ~~~~~~~~~~~~~ -3 warnings generated. -Desugared Infer Results: - - No issues found -Matches: - 50 has a match! -Unmatched ids: - 49 -Matches: -Unmatched ids: - 51 +File Failed LINUX d549f55f2e1.c Macros: CONFIG_VLAN_8021Q @@ -1166,73 +569,25 @@ Macros: [-DCONFIG_VLAN_8021Q=1 -Udefined ] [-UCONFIG_VLAN_8021Q -Ddefined=1 ] [-DCONFIG_VLAN_8021Q=1 -Ddefined=1 ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed LINUX 7acf6cd80b2.c Macros: CONFIG_DEVPTS_MULTIPLE_INSTANCES CONFIG_UNIX98_PTYS [-UCONFIG_DEVPTS_MULTIPLE_INSTANCES -UCONFIG_UNIX98_PTYS ] [-DCONFIG_DEVPTS_MULTIPLE_INSTANCES=1 -UCONFIG_UNIX98_PTYS ] -clang :: 54 :: Line:8 - Value stored to 'x' during its initialization is never read [deadcode.DeadStores] [-UCONFIG_DEVPTS_MULTIPLE_INSTANCES -DCONFIG_UNIX98_PTYS=1 ] -clang :: 55 :: Line:39 - Value stored to 'driver_data' is never read [deadcode.DeadStores] -clang :: 56 :: Line:44 - 1st function call argument is an uninitialized value [core.CallAndMessage] -infer :: 57 :: Line:44 +infer :: 5 :: Line:44 Uninitialized Value [-DCONFIG_DEVPTS_MULTIPLE_INSTANCES=1 -DCONFIG_UNIX98_PTYS=1 ] -clang :: 58 :: Line:8 - Value stored to 'x' during its initialization is never read [deadcode.DeadStores] -clang :: 59 :: Line:39 - Value stored to 'driver_data' is never read [deadcode.DeadStores] -clang :: 60 :: Line:44 - 1st function call argument is an uninitialized value [core.CallAndMessage] -infer :: 61 :: Line:44 +infer :: 6 :: Line:44 Uninitialized Value -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.desugared.c:77:6: warning: Value stored to '__x_3' during its initialization is never read [deadcode.DeadStores] -int __x_3= * __inode_2 ;// L8 - ^~~~~ ~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.desugared.c:170:2: warning: Value stored to '__driver_data_15' is never read [deadcode.DeadStores] - __driver_data_15 = & __some_int_1 ; // L39 - ^ ~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/7acf6cd80b2.desugared.c:175:2: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] - __tty_release_14 ( __driver_data_15 ) ; // L44 - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -3 warnings generated. -Desugared Infer Results: - - No issues found -Matches: - 54 has a match! - 55 has a match! - 56 has a match! - 58 has a match! - 59 has a match! - 60 has a match! -Unmatched ids: - None! -Matches: -Unmatched ids: - 57 - 61 +File Failed LINUX 60e233a5660.c Macros: defined [-Udefined ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed LINUX 63878acfafb.c Macros: CONFIG_ARCH_OMAP3 @@ -1247,66 +602,12 @@ Macros: [-UCONFIG_ARCH_OMAP3 -DCONFIG_PM=1 -Ddefined=1 ] [-DCONFIG_ARCH_OMAP3=1 -DCONFIG_PM=1 -Ddefined=1 ] [-UCONFIG_ARCH_OMAP3 -UCONFIG_PM -Udefined ] -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/LINUX/63878acfafb.desugared.c:159:1: warning: Undefined or garbage value returned to caller [core.uninitialized.UndefReturn] -return __v_16 ;// L40 -^~~~~~~~~~~~~~ -1 warning generated. -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed BUSYBOX 5275b1e49f6.c Macros: CONFIG_FEATURE_INSMOD_VERSION_CHECKING [-UCONFIG_FEATURE_INSMOD_VERSION_CHECKING ] -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:2928:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] - __m_has_modinfo_2040 = 0 ; // L16 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:2934:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] - __m_has_modinfo_2040 = 1 ; // L18 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:2942:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] - __m_has_modinfo_2040 = 0 ; // L16 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:2948:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] - __m_has_modinfo_2040 = 1 ; // L18 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:2953:2: warning: Value stored to '__k_crcs_2043' is never read [deadcode.DeadStores] - __k_crcs_2043 = 0 ; // L21 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3004:2: warning: Value stored to '__k_crcs_2043' is never read [deadcode.DeadStores] - __k_crcs_2043 = __someInt_2042 ; // L25 - ^ ~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3068:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] - __m_has_modinfo_2040 = 0 ; // L16 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3074:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] - __m_has_modinfo_2040 = 1 ; // L18 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3082:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] - __m_has_modinfo_2040 = 0 ; // L16 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3088:2: warning: Value stored to '__m_has_modinfo_2040' is never read [deadcode.DeadStores] - __m_has_modinfo_2040 = 1 ; // L18 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3093:2: warning: Value stored to '__k_crcs_2043' is never read [deadcode.DeadStores] - __k_crcs_2043 = 0 ; // L21 - ^ ~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3144:2: warning: Value stored to '__k_crcs_2043' is never read [deadcode.DeadStores] - __k_crcs_2043 = __someInt_2042 ; // L25 - ^ ~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/5275b1e49f6.desugared.c:3208:2: warning: Value stored to '__k_crcs_2043' is never read [deadcode.DeadStores] - __k_crcs_2043 = 0 ; // L21 - ^ ~ -13 warnings generated. -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed BUSYBOX 5cd6461b6fb.c Macros: CONFIG_FEATURE_HTTPD_CGI @@ -1321,337 +622,96 @@ Macros: [-UCONFIG_FEATURE_HTTPD_CGI -DCONFIG_LFS=1 -DCONFIG_FEATURE_HTTPD_BASIC_AUTH=1 ] [-DCONFIG_FEATURE_HTTPD_CGI=1 -DCONFIG_LFS=1 -DCONFIG_FEATURE_HTTPD_BASIC_AUTH=1 ] [-UCONFIG_FEATURE_HTTPD_CGI -UCONFIG_LFS -UCONFIG_FEATURE_HTTPD_BASIC_AUTH ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed BUSYBOX 1b487ea8a69.c Macros: ENABLE_SELINUX ENABLE_FEATURE_STAT_FORMAT [-UENABLE_SELINUX -UENABLE_FEATURE_STAT_FORMAT ] [-DENABLE_SELINUX=1 -UENABLE_FEATURE_STAT_FORMAT ] -clang :: 68 :: Line:14 - Dereference of null pointer (loaded from variable 'scontext') [core.NullDereference] -infer :: 69 :: Line:14 +infer :: 7 :: Line:14 Null Dereference [-UENABLE_SELINUX -DENABLE_FEATURE_STAT_FORMAT=1 ] [-DENABLE_SELINUX=1 -DENABLE_FEATURE_STAT_FORMAT=1 ] -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.c:2937:26: warning: Dereference of null pointer (loaded from variable '__scontext_2038') [core.NullDereference] - __printf_421 (" %lc\n",* __scontext_2038 ) ; // L14 - ^~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/1b487ea8a69.desugared.c:2994:26: warning: Dereference of null pointer (loaded from variable '__scontext_2038') [core.NullDereference] - __printf_421 (" %lc\n",* __scontext_2038 ) ; // L14 - ^~~~~~~~~~~~~~~~~~ -2 warnings generated. -Desugared Infer Results: - - No issues found -Matches: - 68 has a match! -Unmatched ids: - None! -Matches: -Unmatched ids: - 69 +File Failed BUSYBOX b7ebc61b54f.c Macros: CONFIG_FEATURE_LS_TIMESTAMPS [-UCONFIG_FEATURE_LS_TIMESTAMPS ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed BUSYBOX ebee301c8b0.c Macros: defined [-Udefined ] -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.c:2920:2: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] - __copySubFile_2038 ( __src_2042 , __dst_2043 ) ; // L18 - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/ebee301c8b0.desugared.c:2920:2: warning: 2nd function call argument is an uninitialized value [core.CallAndMessage] - __copySubFile_2038 ( __src_2042 , __dst_2043 ) ; // L18 - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -2 warnings generated. -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed BUSYBOX b273d665181.c Macros: BB_FEATURE_LS_FILETYPES BB_FEATURE_LS_USERNAME [-UBB_FEATURE_LS_FILETYPES -UBB_FEATURE_LS_USERNAME ] [-DBB_FEATURE_LS_FILETYPES=1 -UBB_FEATURE_LS_USERNAME ] -clang :: 74 :: Line:16 - 2nd function call argument is an uninitialized value [core.CallAndMessage] -infer :: 75 :: Line:16 +infer :: 8 :: Line:16 Uninitialized Value [-UBB_FEATURE_LS_FILETYPES -DBB_FEATURE_LS_USERNAME=1 ] [-DBB_FEATURE_LS_FILETYPES=1 -DBB_FEATURE_LS_USERNAME=1 ] -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.c:2936:2: warning: 2nd function call argument is an uninitialized value [core.CallAndMessage] - __printf_421 ("%d", __info_2036 ) ; // L16 - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.c:2947:2: warning: 2nd function call argument is an uninitialized value [core.CallAndMessage] - __printf_421 ("%d", __info_2036 ) ; // L16 - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.c:3007:2: warning: 2nd function call argument is an uninitialized value [core.CallAndMessage] - __printf_421 ("%d", __info_2036 ) ; // L16 - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.c:3018:2: warning: 2nd function call argument is an uninitialized value [core.CallAndMessage] - __printf_421 ("%d", __info_2036 ) ; // L16 - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b273d665181.desugared.c:3072:2: warning: Value stored to '__info_2036' is never read [deadcode.DeadStores] - __info_2036 = 0 ; // L11 - ^ ~ -5 warnings generated. -Desugared Infer Results: - - No issues found -Matches: - 74 has a match! -Unmatched ids: - None! -Matches: -Unmatched ids: - 75 +File Failed BUSYBOX df7b6577c6a.c Macros: ENABLE_DESKTOP [-UENABLE_DESKTOP ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed BUSYBOX 061fd0a353e.c Macros: CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF [-UCONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF -UCONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF ] -clang :: 82 :: Line:16 - Value stored to 'p' is never read [deadcode.DeadStores] [-DCONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF=1 -UCONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF ] [-UCONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF -DCONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF=1 ] -clang :: 83 :: Line:16 - Value stored to 'p' is never read [deadcode.DeadStores] -clang :: 84 :: Line:27 - Branch condition evaluates to a garbage value [core.uninitialized.Branch] -infer :: 85 :: Line:27 +infer :: 9 :: Line:27 Uninitialized Value [-DCONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF=1 -DCONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF=1 ] -clang :: 86 :: Line:16 - Value stored to 'p' is never read [deadcode.DeadStores] -clang :: 87 :: Line:20 - Branch condition evaluates to a garbage value [core.uninitialized.Branch] -clang :: 88 :: Line:27 - Branch condition evaluates to a garbage value [core.uninitialized.Branch] -infer :: 89 :: Line:20 +infer :: 10 :: Line:20 Uninitialized Value -infer :: 90 :: Line:27 +infer :: 11 :: Line:27 Uninitialized Value -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.c:3062:2: warning: Value stored to '__p_2040' is never read [deadcode.DeadStores] - __p_2040 = * __argv_2037 ++ , -- __argc_2036 ; // L16 - ^ ~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/061fd0a353e.desugared.c:3229:2: warning: Value stored to '__p_2040' is never read [deadcode.DeadStores] - __p_2040 = * __argv_2037 ++ , -- __argc_2036 ; // L16 - ^ ~~~~~~~~~~~~~~~~~~ -2 warnings generated. -Desugared Infer Results: - - No issues found -Matches: - 82 has a match! - 83 has a match! - 86 has a match! -Unmatched ids: - 84 - 87 - 88 -Matches: -Unmatched ids: - 85 - 89 - 90 +File Failed BUSYBOX eef2317b9f5.c Macros: CONFIG_FEATURE_CLEAN_UP [-UCONFIG_FEATURE_CLEAN_UP ] -clang :: 95 :: Line:26 - Value stored to 'buf' is never read [deadcode.DeadStores] -clang :: 96 :: Line:34 - Potential leak of memory pointed to by 'buf' [unix.Malloc] -infer :: 97 :: Line:26 +infer :: 12 :: Line:26 Memory Leak -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c:1686:5: warning: Potential leak of memory pointed to by '__buf_964' [unix.Malloc] -if (__static_condition_default_972) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c:1692:7: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] -if ( __buf_964 )// L30 - ^~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c:1703:5: warning: Potential leak of memory pointed to by '__buf_964' [unix.Malloc] -if (__static_condition_default_974) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c:1749:2: warning: Value stored to '__buf_964' is never read [deadcode.DeadStores] - __buf_964 = malloc ( __bufsize_965 ) ; // L26 - ^ ~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c:1752:2: warning: Value stored to '__buf_964' is never read [deadcode.DeadStores] - __buf_964 = malloc ( __bufsize_965 ) ; // L26 - ^ ~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c:1754:5: warning: Potential leak of memory pointed to by '__buf_964' [unix.Malloc] -if (__static_condition_default_978) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/eef2317b9f5.desugared.c:1754:5: warning: Potential leak of memory pointed to by '__buf_964' [unix.Malloc] -if (__static_condition_default_978) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -7 warnings generated. -Desugared Infer Results: - -BUSYBOX/eef2317b9f5.desugared.c:1749: error: Memory Leak - Memory dynamically allocated by `malloc` on line 1749 is not freed after the last access at line 1749, column 2. - 1747. } - 1748. if (__static_condition_default_976) { - 1749. __buf_964 = malloc ( __bufsize_965 ) ; // L26 - ^ - 1750. } - 1751. if (__static_condition_default_977) { - -BUSYBOX/eef2317b9f5.desugared.c:1752: error: Memory Leak - Memory dynamically allocated by `malloc` on line 1752 is not freed after the last access at line 1752, column 2. - 1750. } - 1751. if (__static_condition_default_977) { - 1752. __buf_964 = malloc ( __bufsize_965 ) ; // L26 - ^ - 1753. } - 1754. if (__static_condition_default_978) { - - -Found 2 issues - Issue Type(ISSUED_TYPE_ID): # - Memory Leak(MEMORY_LEAK_C): 2 -Matches: - 95 has a match! -Unmatched ids: - 96 -Matches: -Unmatched ids: - 97 +File Failed BUSYBOX 192c35f6eb2.c Macros: CONFIG_FEATURE_REMOTE_LOG [-UCONFIG_FEATURE_REMOTE_LOG ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed BUSYBOX 2631486f1bf.c Macros: CONFIG_FEATURE_LS_RECURSIVE CONFIG_FEATURE_LS_SORTFILES [-UCONFIG_FEATURE_LS_RECURSIVE -UCONFIG_FEATURE_LS_SORTFILES ] -clang :: 110 :: Line:67 - Assigned value is garbage or undefined [core.uninitialized.Assign] -infer :: 111 :: Line:66 +infer :: 13 :: Line:66 Null Dereference -infer :: 112 :: Line:67 +infer :: 14 :: Line:67 Uninitialized Value [-DCONFIG_FEATURE_LS_RECURSIVE=1 -UCONFIG_FEATURE_LS_SORTFILES ] -clang :: 113 :: Line:67 - Assigned value is garbage or undefined [core.uninitialized.Assign] -infer :: 114 :: Line:66 +infer :: 15 :: Line:66 Null Dereference -infer :: 115 :: Line:67 +infer :: 16 :: Line:67 Uninitialized Value [-UCONFIG_FEATURE_LS_RECURSIVE -DCONFIG_FEATURE_LS_SORTFILES=1 ] -clang :: 116 :: Line:67 - Assigned value is garbage or undefined [core.uninitialized.Assign] -infer :: 117 :: Line:66 +infer :: 17 :: Line:66 Null Dereference -infer :: 118 :: Line:67 +infer :: 18 :: Line:67 Uninitialized Value [-DCONFIG_FEATURE_LS_RECURSIVE=1 -DCONFIG_FEATURE_LS_SORTFILES=1 ] -clang :: 119 :: Line:67 - Assigned value is garbage or undefined [core.uninitialized.Assign] -infer :: 120 :: Line:66 +infer :: 19 :: Line:66 Null Dereference -infer :: 121 :: Line:67 +infer :: 20 :: Line:67 Uninitialized Value -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3171:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] - __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 - ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3174:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] - __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 - ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3177:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] - __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 - ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3180:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] - __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 - ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3186:29: warning: Access to field '__val_2038' results in a dereference of an undefined pointer value (loaded from variable '__curr_2072') [core.NullDereference] - __curr_2072 -> __val_2038 = rand( ) % 10 ; // L66 - ~~~~~~~~~~~ ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3191:30: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] - __curr_2072 -> __next_2039 = __head_2073 ; // L67 - ^ ~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3191:30: warning: Access to field '__next_2039' results in a dereference of an undefined pointer value (loaded from variable '__curr_2072') [core.NullDereference] - __curr_2072 -> __next_2039 = __head_2073 ; // L67 - ~~~~~~~~~~~ ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3255:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] - __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 - ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3258:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] - __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 - ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3261:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] - __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 - ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3264:44: warning: Result of 'malloc' is converted to a pointer of type 'struct __dnode_2037', which is incompatible with sizeof operand type 'typeof (__sizeofStandin_2079)' [unix.MallocSizeof] - __curr_2072 = ( struct __dnode_2037 * ) malloc (sizeof(typeof(__sizeofStandin_2079))) ; // L65 - ~~~~~~~~~~~~~~~~~~~~~~ ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3270:29: warning: Access to field '__val_2038' results in a dereference of an undefined pointer value (loaded from variable '__curr_2072') [core.NullDereference] - __curr_2072 -> __val_2038 = rand( ) % 10 ; // L66 - ~~~~~~~~~~~ ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3275:30: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] - __curr_2072 -> __next_2039 = __head_2073 ; // L67 - ^ ~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/2631486f1bf.desugared.c:3275:30: warning: Access to field '__next_2039' results in a dereference of an undefined pointer value (loaded from variable '__curr_2072') [core.NullDereference] - __curr_2072 -> __next_2039 = __head_2073 ; // L67 - ~~~~~~~~~~~ ^ -14 warnings generated. -Desugared Infer Results: - - No issues found -Matches: -Unmatched ids: - 110 - 113 - 116 - 119 -Matches: -Unmatched ids: - 111 - 112 - 114 - 115 - 117 - 118 - 120 - 121 +File Failed BUSYBOX 95755181b82.c Macros: ENABLE_FEATURE_HTTPD_GZIP @@ -1669,116 +729,21 @@ Macros: File Failed BUSYBOX cc3f20b9bdf.c Macros: -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed BUSYBOX cf1f2ace391.c Macros: ENABLE_DEBUG_INIT [-UENABLE_DEBUG_INIT ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed BUSYBOX bc0ffc0e971.c Macros: ENABLE_FEATURE_CLEAN_UP [-UENABLE_FEATURE_CLEAN_UP ] -clang :: 138 :: Line:46 - Potential leak of memory pointed to by 'clist' [unix.Malloc] -infer :: 139 :: Line:40 +infer :: 21 :: Line:40 Memory Leak -infer :: 140 :: Line:40 +infer :: 22 :: Line:40 Null Dereference -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3380:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_2394', which is incompatible with sizeof operand type 'struct (unnamed struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3337:1)' [unix.MallocSizeof] - __ch_2419 = malloc (sizeof(__sizeofStandin_2423)) ; // L29 - ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3383:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_2394', which is incompatible with sizeof operand type 'struct (unnamed struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3337:1)' [unix.MallocSizeof] - __ch_2419 = malloc (sizeof(__sizeofStandin_2423)) ; // L29 - ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3385:5: warning: Potential leak of memory pointed to by '__ch_2419' [unix.Malloc] -if (__static_condition_default_2438) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3388:30: warning: Access to field '__ifname_2393' results in a dereference of an undefined pointer value (loaded from variable '__ch_2419') [core.NullDereference] - __ch_2419 -> __ifname_2393 = __ifname_2418 ; // L30 - ~~~~~~~~~ ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3447:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_2395', which is incompatible with sizeof operand type 'struct (unnamed struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3405:1)' [unix.MallocSizeof] - __ch_2420 = malloc (sizeof(__sizeofStandin_2426)) ; // L29 - ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3450:15: warning: Result of 'malloc' is converted to a pointer of type '__ethtable_t_2395', which is incompatible with sizeof operand type 'struct (unnamed struct at /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3405:1)' [unix.MallocSizeof] - __ch_2420 = malloc (sizeof(__sizeofStandin_2426)) ; // L29 - ^~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3452:5: warning: Potential leak of memory pointed to by '__ch_2420' [unix.Malloc] -if (__static_condition_default_2448) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3455:30: warning: Access to field '__ifname_2393' results in a dereference of an undefined pointer value (loaded from variable '__ch_2420') [core.NullDereference] - __ch_2420 -> __ifname_2393 = __ifname_2418 ; // L30 - ~~~~~~~~~ ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3486:39: warning: Potential leak of memory pointed to by '__ch_2453' [unix.Malloc] -for ( __ch_2453 = __clist_2451 ; __ch_2453 ; __ch_2453 = __ch_2453 -> __next_2392 )// L43 - ^~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3486:67: warning: Use of memory after it is freed [unix.Malloc] -for ( __ch_2453 = __clist_2451 ; __ch_2453 ; __ch_2453 = __ch_2453 -> __next_2392 )// L43 - ^~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3491:5: warning: Potential leak of memory pointed to by '__clist_2451' [unix.Malloc] -if (__static_condition_default_2457) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3492:39: warning: Potential leak of memory pointed to by '__ch_2454' [unix.Malloc] -for ( __ch_2454 = __clist_2452 ; __ch_2454 ; __ch_2454 = __ch_2454 -> __next_2392 )// L43 - ^~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3492:67: warning: Use of memory after it is freed [unix.Malloc] -for ( __ch_2454 = __clist_2452 ; __ch_2454 ; __ch_2454 = __ch_2454 -> __next_2392 )// L43 - ^~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/bc0ffc0e971.desugared.c:3497:5: warning: Potential leak of memory pointed to by '__clist_2452' [unix.Malloc] -if (__static_condition_default_2458) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -14 warnings generated. -Desugared Infer Results: - -BUSYBOX/bc0ffc0e971.desugared.c:3382: error: Memory Leak - Memory dynamically allocated by `malloc` on line 3380 is not freed after the last access at line 3382, column 5. - 3380. __ch_2419 = malloc (sizeof(__sizeofStandin_2423)) ; // L29 - 3381. } - 3382. if (__static_condition_default_2437) { - ^ - 3383. __ch_2419 = malloc (sizeof(__sizeofStandin_2423)) ; // L29 - 3384. } - -BUSYBOX/bc0ffc0e971.desugared.c:3449: error: Memory Leak - Memory dynamically allocated by `malloc` on line 3447 is not freed after the last access at line 3449, column 5. - 3447. __ch_2420 = malloc (sizeof(__sizeofStandin_2426)) ; // L29 - 3448. } - 3449. if (__static_condition_default_2447) { - ^ - 3450. __ch_2420 = malloc (sizeof(__sizeofStandin_2426)) ; // L29 - 3451. } - -BUSYBOX/bc0ffc0e971.desugared.c:3491: error: Memory Leak - Memory dynamically allocated by `malloc`, indirectly via call to `__prepend_new_eth_table_2428()` on line 3483 is not freed after the last access at line 3491, column 5. - 3489. } - 3490. } - 3491. if (__static_condition_default_2457) { - ^ - 3492. for ( __ch_2454 = __clist_2452 ; __ch_2454 ; __ch_2454 = __ch_2454 -> __next_2392 )// L43 - 3493. { - - -Found 3 issues - Issue Type(ISSUED_TYPE_ID): # - Memory Leak(MEMORY_LEAK_C): 3 -Matches: -Unmatched ids: - 138 -Matches: -Unmatched ids: - 139 - 140 +File Failed BUSYBOX b62bd7b261b.c Macros: ENABLE_FEATURE_MDEV_CONF @@ -1788,110 +753,24 @@ Macros: [-DENABLE_FEATURE_MDEV_CONF=1 -UENABLE_FEATURE_MDEV_RENAME -UENABLE_FEATURE_MDEV_RENAME_REGEXP ] [-UENABLE_FEATURE_MDEV_CONF -DENABLE_FEATURE_MDEV_RENAME=1 -UENABLE_FEATURE_MDEV_RENAME_REGEXP ] [-DENABLE_FEATURE_MDEV_CONF=1 -DENABLE_FEATURE_MDEV_RENAME=1 -UENABLE_FEATURE_MDEV_RENAME_REGEXP ] -clang :: 149 :: Line:14 - Value stored to 'a' during its initialization is never read [deadcode.DeadStores] -clang :: 150 :: Line:16 - Value stored to 'val' is never read [deadcode.DeadStores] [-UENABLE_FEATURE_MDEV_CONF -UENABLE_FEATURE_MDEV_RENAME -DENABLE_FEATURE_MDEV_RENAME_REGEXP=1 ] [-DENABLE_FEATURE_MDEV_CONF=1 -UENABLE_FEATURE_MDEV_RENAME -DENABLE_FEATURE_MDEV_RENAME_REGEXP=1 ] [-UENABLE_FEATURE_MDEV_CONF -DENABLE_FEATURE_MDEV_RENAME=1 -DENABLE_FEATURE_MDEV_RENAME_REGEXP=1 ] [-DENABLE_FEATURE_MDEV_CONF=1 -DENABLE_FEATURE_MDEV_RENAME=1 -DENABLE_FEATURE_MDEV_RENAME_REGEXP=1 ] -clang :: 151 :: Line:16 - Value stored to 'val' is never read [deadcode.DeadStores] -clang :: 152 :: Line:24 - Dereference of undefined pointer value (loaded from variable 'p') [core.NullDereference] -infer :: 153 :: Line:24 +infer :: 23 :: Line:24 Uninitialized Value [-UENABLE_FEATURE_MDEV_CONF -UENABLE_FEATURE_MDEV_RENAME -UENABLE_FEATURE_MDEV_RENAME_REGEXP ] -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3212:1: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] -char * (__a_2393)= __val_2390 ;// L14 -^~~~~~~~~~~~~~~~~ ~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3212:10: warning: Value stored to '__a_2393' during its initialization is never read [deadcode.DeadStores] -char * (__a_2393)= __val_2390 ;// L14 - ^~~~~~~~ ~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3218:2: warning: Value stored to '__val_2390' is never read [deadcode.DeadStores] - __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 - ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3218:19: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] - __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 - ^~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3245:2: warning: Value stored to '__val_2390' is never read [deadcode.DeadStores] - __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 - ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3245:19: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] - __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 - ^~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3257:14: warning: Dereference of undefined pointer value (loaded from variable '__p_2392') [core.NullDereference] -* __p_2392 = * __s_2391 ; // L24 - ~~~~~~~~ ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3307:1: warning: Assigned value is garbage or undefined [core.uninitialized.Assign] -char * (__a_2393)= __val_2390 ;// L14 -^~~~~~~~~~~~~~~~~ ~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3307:10: warning: Value stored to '__a_2393' during its initialization is never read [deadcode.DeadStores] -char * (__a_2393)= __val_2390 ;// L14 - ^~~~~~~~ ~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3313:2: warning: Value stored to '__val_2390' is never read [deadcode.DeadStores] - __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 - ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3313:19: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] - __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 - ^~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3340:2: warning: Value stored to '__val_2390' is never read [deadcode.DeadStores] - __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 - ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3340:19: warning: Branch condition evaluates to a garbage value [core.uninitialized.Branch] - __val_2390 = ( __s_2391 && __s_2391 [ 1 ] ) ? __s_2391 + 1 : ( ( void * ) 0 ) ; // L16:L395 - ^~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/b62bd7b261b.desugared.c:3352:14: warning: Dereference of undefined pointer value (loaded from variable '__p_2392') [core.NullDereference] -* __p_2392 = * __s_2391 ; // L24 - ~~~~~~~~ ^ -14 warnings generated. -Desugared Infer Results: - - No issues found -Matches: - 149 has a match! - 150 has a match! - 151 has a match! - 152 has a match! -Unmatched ids: - None! -Matches: -Unmatched ids: - 153 +File Failed BUSYBOX 0301ffab3d9.c Macros: EXT2FS_ENABLE_SWAPFS [-UEXT2FS_ENABLE_SWAPFS ] -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/0301ffab3d9.desugared.c:51:2: warning: Value stored to '__gdp_0' is never read [deadcode.DeadStores] - __gdp_0 = "group_desc" ; // L7 - ^ ~~~~~~~~~~~~ -1 warning generated. -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed BUSYBOX 199501f2a00.c Macros: ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS [-UENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS ] -clang :: 182 :: Line:21 - Null pointer passed to 2nd parameter expecting 'nonnull' [core.NonNullParamChecker] -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/BUSYBOX/199501f2a00.desugared.c:3282:2: warning: Value stored to '__dt_2390' is never read [deadcode.DeadStores] - __dt_2390 = "-i" ; // L10 - ^ ~~~~ -1 warning generated. -Desugared Infer Results: - - No issues found -Matches: -Unmatched ids: - 182 -Original file has no warnings +File Failed APACHE d0040a07aec.c Macros: defined @@ -1900,12 +779,7 @@ Macros: [-Ddefined=1 -URLIMIT_NPROC ] [-Udefined -DRLIMIT_NPROC=1 ] [-Ddefined=1 -DRLIMIT_NPROC=1 ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed APACHE c76df14dfb4.c Macros: CROSS_COMPILE @@ -1920,65 +794,27 @@ Macros: [-UCROSS_COMPILE -Ddefined=1 -DNEED_ENHANCED_ESCAPES=1 ] [-DCROSS_COMPILE=1 -Ddefined=1 -DNEED_ENHANCED_ESCAPES=1 ] [-UCROSS_COMPILE -Udefined -UNEED_ENHANCED_ESCAPES ] -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c:3171:2: warning: Value stored to '__flags_2323' is never read [deadcode.DeadStores] - __flags_2323 |= ( 0x01 ) ; // L4:L42 - ^ ~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c:3240:2: warning: Value stored to '__flags_2323' is never read [deadcode.DeadStores] - __flags_2323 |= ( 0x01 ) ; // L4:L42 - ^ ~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c:3309:2: warning: Value stored to '__flags_2323' is never read [deadcode.DeadStores] - __flags_2323 |= ( 0x01 ) ; // L4:L42 - ^ ~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/c76df14dfb4.desugared.c:3378:2: warning: Value stored to '__flags_2323' is never read [deadcode.DeadStores] - __flags_2323 |= ( 0x01 ) ; // L4:L42 - ^ ~~~~~~~~ -4 warnings generated. -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed APACHE 97ecbec1237.c Macros: APR_HAS_SHARED_MEMORY [-UAPR_HAS_SHARED_MEMORY ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed APACHE bbeb0516cf0.c Macros: APR_FILES_AS_SOCKETS [-UAPR_FILES_AS_SOCKETS ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed APACHE 1f46088b38d.c Macros: SIGPIPE [-USIGPIPE ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed APACHE 9327311d30f.c Macros: APR_HAS_SHARED_MEMORY [-UAPR_HAS_SHARED_MEMORY ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed APACHE 35ae2e259e4.c Macros: HAVE_ECC @@ -1987,91 +823,7 @@ Macros: [-DHAVE_ECC=1 -Udefined ] [-UHAVE_ECC -Ddefined=1 ] [-DHAVE_ECC=1 -Ddefined=1 ] -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1373:17: warning: Dereference of undefined pointer value (loaded from variable '__eckey_798') [core.NullDereference] -* __eckey_798 = 30 ; // L12 - ~~~~~~~~~~~ ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1397:17: warning: Dereference of undefined pointer value (loaded from variable '__eckey_798') [core.NullDereference] -* __eckey_798 = 15 ; // L17 - ~~~~~~~~~~~ ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1403:5: warning: Potential leak of memory pointed to by '__eckey_798' [unix.Malloc] -if (__static_condition_default_809) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1442:17: warning: Dereference of undefined pointer value (loaded from variable '__eckey_798') [core.NullDereference] -* __eckey_798 = 30 ; // L12 - ~~~~~~~~~~~ ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1466:17: warning: Dereference of undefined pointer value (loaded from variable '__eckey_798') [core.NullDereference] -* __eckey_798 = 15 ; // L17 - ~~~~~~~~~~~ ^ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1472:5: warning: Potential leak of memory pointed to by '__eckey_798' [unix.Malloc] -if (__static_condition_default_818) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1496:2: warning: Value stored to '__eckey_798' is never read [deadcode.DeadStores] - __eckey_798 = malloc (sizeof(int)) ; // L10 - ^ ~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1499:2: warning: Value stored to '__eckey_798' is never read [deadcode.DeadStores] - __eckey_798 = malloc (sizeof(int)) ; // L10 - ^ ~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1501:5: warning: Potential leak of memory pointed to by '__eckey_798' [unix.Malloc] -if (__static_condition_default_823) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/35ae2e259e4.desugared.c:1501:5: warning: Potential leak of memory pointed to by '__eckey_798' [unix.Malloc] -if (__static_condition_default_823) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -10 warnings generated. -Desugared Infer Results: - -APACHE/35ae2e259e4.desugared.c:1366: error: Memory Leak - Memory dynamically allocated by `malloc` on line 1358 is not freed after the last access at line 1366, column 5. - 1364. if ( rand( ) % 2 )// L11 - 1365. { - 1366. if (__static_condition_default_806) { - ^ - 1367. - 1368. { - -APACHE/35ae2e259e4.desugared.c:1373: error: Memory Leak - Memory dynamically allocated by `malloc` on line 1358 is not freed after the last access at line 1373, column 1. - 1371. - 1372. - 1373. * __eckey_798 = 30 ; // L12 - ^ - 1374. } - 1375. } - -APACHE/35ae2e259e4.desugared.c:1397: error: Memory Leak - Memory dynamically allocated by `malloc` on line 1358 is not freed after the last access at line 1397, column 1. - 1395. - 1396. - 1397. * __eckey_798 = 15 ; // L17 - ^ - 1398. } - 1399. } - -APACHE/35ae2e259e4.desugared.c:1435: error: Memory Leak - Memory dynamically allocated by `malloc` on line 1427 is not freed after the last access at line 1435, column 5. - 1433. if ( rand( ) % 2 )// L11 - 1434. { - 1435. if (__static_condition_default_815) { - ^ - 1436. - 1437. { - -APACHE/35ae2e259e4.desugared.c:1442: error: Memory Leak - Memory dynamically allocated by `malloc` on line 1427 is not freed after the last access at line 1442, column 1. - 1440. - 1441. - 1442. * __eckey_798 = 30 ; // L12 - ^ - 1443. } - 1444. } - - -Found 8 issues (console output truncated to 5, see '/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/infer-out/report.txt' for the full list) - Issue Type(ISSUED_TYPE_ID): # - Memory Leak(MEMORY_LEAK_C): 8 -Original file has no warnings -Original file has no warnings +File Failed APACHE 4202d5fee3e.c Macros: APU_HAS_LDAP @@ -2080,13 +832,7 @@ Macros: [-DAPU_HAS_LDAP=1 -UAPU_HAS_LDAP_NETSCAPE_SSL ] [-UAPU_HAS_LDAP -DAPU_HAS_LDAP_NETSCAPE_SSL=1 ] [-DAPU_HAS_LDAP=1 -DAPU_HAS_LDAP_NETSCAPE_SSL=1 ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings -APACHE/b833f064550 SuperC failed +File Failed APACHE b833f064550.c Macros: HAVE_TIMES @@ -2096,62 +842,17 @@ APACHE 581635e28f1.c Macros: APR_HAVE_IPV6 [-UAPR_HAVE_IPV6 ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed APACHE 2a6cbfa00e0.c Macros: SHARED_MODULE [-USHARED_MODULE ] -clang :: 184 :: Line:16 - Potential leak of memory pointed to by 'sc' [unix.Malloc] -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c:1569:5: warning: Potential leak of memory pointed to by '__sc_1084' [unix.Malloc] -if (__static_condition_default_1093) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/2a6cbfa00e0.desugared.c:1603:5: warning: Potential leak of memory pointed to by '__sc_1085' [unix.Malloc] -if (__static_condition_default_1098) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -2 warnings generated. -Desugared Infer Results: - -APACHE/2a6cbfa00e0.desugared.c:1600: error: Memory Leak - Memory dynamically allocated by `malloc` on line 1593 is not freed after the last access at line 1600, column 5. - 1598. - 1599. __static_type_error("type error") ; // L9 - 1600. if (__static_condition_default_1097) { - ^ - 1601. free ( __sc_1085 ) ; // L12 - 1602. } - - -Found 1 issue - Issue Type(ISSUED_TYPE_ID): # - Memory Leak(MEMORY_LEAK_C): 1 -Matches: -Unmatched ids: - 184 -Original file has no warnings +File Failed APACHE 1a3c8e3d840.c Macros: HAVE_TLSV1_X [-UHAVE_TLSV1_X ] -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.c:1332:2: warning: Value stored to '__thisopt_798' is never read [deadcode.DeadStores] - __thisopt_798 = ( 1 << 3 ) ; // L4:L13 - ^ ~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1a3c8e3d840.desugared.c:1368:2: warning: Value stored to '__thisopt_798' is never read [deadcode.DeadStores] - __thisopt_798 = ( 1 << 3 ) ; // L4:L13 - ^ ~~~~~~~~~~ -2 warnings generated. -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed APACHE test.c Macros: XX @@ -2166,99 +867,32 @@ Macros: [-UXX -DYY=1 -DZZ=1 ] [-DXX=1 -DYY=1 -DZZ=1 ] [-UXX -UYY -UZZ ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed APACHE dbafef17dd1.c Macros: HAS_APACHE_REGEX_LIB [-UHAS_APACHE_REGEX_LIB ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed APACHE 3407eccc321.c Macros: __STDC_VERSION__ [-U__STDC_VERSION__ ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed APACHE 664e3aac6dd.c Macros: WIN32X [-UWIN32X ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed APACHE d05e574ec26.c Macros: APR_HAS_SHARED_MEMORY [-UAPR_HAS_SHARED_MEMORY ] -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2919:10: warning: Value stored to '__buf_2043' during its initialization is never read [deadcode.DeadStores] -char * (__buf_2043)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2037 ,sizeof(char)));// L16 - ^~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2921:10: warning: Value stored to '__buf_2044' during its initialization is never read [deadcode.DeadStores] -char * (__buf_2044)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2038 ,sizeof(char)));// L16 - ^~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2921:62: warning: Potential leak of memory pointed to by '__buf_2043' [unix.Malloc] -char * (__buf_2044)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2038 ,sizeof(char)));// L16 - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2923:62: warning: Potential leak of memory pointed to by '__buf_2044' [unix.Malloc] -char * (__buf_2045)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2036 ,sizeof(char)));// L16 - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2927:10: warning: Value stored to '__buf_2047' during its initialization is never read [deadcode.DeadStores] -char * (__buf_2047)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2036 ,sizeof(char)));// L16 - ^~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2929:10: warning: Value stored to '__buf_2048' during its initialization is never read [deadcode.DeadStores] -char * (__buf_2048)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2038 ,sizeof(char)));// L16 - ^~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2929:62: warning: Potential leak of memory pointed to by '__buf_2047' [unix.Malloc] -char * (__buf_2048)= __apr_rmm_addr_get_2040 (( char * ) calloc ( __rmm_addr_2038 ,sizeof(char)));// L16 - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2935:5: warning: Potential leak of memory pointed to by '__buf_2048' [unix.Malloc] -if (__static_condition_default_2053) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2938:5: warning: Potential leak of memory pointed to by '__buf_2041' [unix.Malloc] -if (__static_condition_default_2054) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2941:5: warning: Potential leak of memory pointed to by '__buf_2042' [unix.Malloc] -if (__static_condition_default_2055) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2944:5: warning: Potential leak of memory pointed to by '__buf_2045' [unix.Malloc] -if (__static_condition_default_2056) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/d05e574ec26.desugared.c:2947:5: warning: Potential leak of memory pointed to by '__buf_2046' [unix.Malloc] -if (__static_condition_default_2057) { - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -12 warnings generated. -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed APACHE 6338509eb37.c Macros: HAVE_FIPS [-UHAVE_FIPS ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed APACHE 0900800fbab.c Macros: HAVE_SYSLOG @@ -2267,22 +901,12 @@ Macros: [-DHAVE_SYSLOG=1 -UAPLOG_MAX_LOGLEVEL ] [-UHAVE_SYSLOG -DAPLOG_MAX_LOGLEVEL=1 ] [-DHAVE_SYSLOG=1 -DAPLOG_MAX_LOGLEVEL=1 ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed APACHE 0ddfa412ee9.c Macros: HAVE_TLS_ALPN [-UHAVE_TLS_ALPN ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed APACHE 4945115b2e7.c Macros: DEBUG_CGI @@ -2291,22 +915,12 @@ Macros: [-DDEBUG_CGI=1 -UOS2 ] [-UDEBUG_CGI -DOS2=1 ] [-DDEBUG_CGI=1 -DOS2=1 ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed APACHE 56d9881993f.c Macros: APR_HAS_SENDFILE [-UAPR_HAS_SENDFILE ] -Desugared Clang Results: -Desugared Infer Results: - - No issues found -Original file has no warnings -Original file has no warnings +File Failed APACHE 1b48bb3c1af.c Macros: APU_HAS_LDAP @@ -2315,28 +929,6 @@ Macros: [-DAPU_HAS_LDAP=1 -UAPR_HAS_SHARED_MEMORY ] [-UAPU_HAS_LDAP -DAPR_HAS_SHARED_MEMORY=1 ] [-DAPU_HAS_LDAP=1 -DAPR_HAS_SHARED_MEMORY=1 ] -clang :: 186 :: Line:14 - 1st function call argument is an uninitialized value [core.CallAndMessage] -infer :: 187 :: Line:14 +infer :: 24 :: Line:14 Uninitialized Value -Desugared Clang Results: -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c:1427:2: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] - __apr_rmm_init_1093 ( __rmm_lock_1099 ) ; // L14 - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c:1430:2: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] - __apr_rmm_init_1094 ( __rmm_lock_1099 ) ; // L14 - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c:1433:2: warning: 1st function call argument is an uninitialized value [core.CallAndMessage] - __apr_rmm_init_1095 ( __rmm_lock_1099 ) ; // L14 - ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -3 warnings generated. -Desugared Infer Results: - - No issues found -Matches: - 186 has a match! -Unmatched ids: - None! -Matches: -Unmatched ids: - 187 +File Failed diff --git a/src/superc/cdesugarer/CActions.java b/src/superc/cdesugarer/CActions.java index c1a57055..dd02dbba 100644 --- a/src/superc/cdesugarer/CActions.java +++ b/src/superc/cdesugarer/CActions.java @@ -5761,8 +5761,8 @@ public Object action(int production, Subparser subparser, Object value) { // the type PresenceCondition pc = subparser.getPresenceCondition(); ExpressionValue exprval = getCompleteNodeExpressionValue(subparser, 3, pc); - String lparen = getNodeAt(subparser, 2).getTokenText(); - String rparen = getNodeAt(subparser, 1).getTokenText(); + String lparen = "("; + String rparen = ")"; if (exprval.hasValidType()) { @@ -5820,9 +5820,9 @@ public Object action(int production, Subparser subparser, Object value) { if (postfixexprval.hasValidType()) { /* postfixexprval.transformation; */ Multiverse lparen - = new Multiverse((String) getNodeAt(subparser, 3).getTokenText(), pc); + = new Multiverse("(", pc); Multiverse rparen - = new Multiverse((String) getNodeAt(subparser, 1).getTokenText(), pc); + = new Multiverse(")", pc); // Get all possible expression lists by successively taking // the combined product of each element of the list. See diff --git a/src/superc/cdesugarer/desugarer.y b/src/superc/cdesugarer/desugarer.y index de34f748..08166bed 100644 --- a/src/superc/cdesugarer/desugarer.y +++ b/src/superc/cdesugarer/desugarer.y @@ -5823,8 +5823,8 @@ FunctionCall: /** nomerge **/ // the type PresenceCondition pc = subparser.getPresenceCondition(); ExpressionValue exprval = getCompleteNodeExpressionValue(subparser, 3, pc); - String lparen = getNodeAt(subparser, 2).getTokenText(); - String rparen = getNodeAt(subparser, 1).getTokenText(); + String lparen = "("; + String rparen = ")"; if (exprval.hasValidType()) { @@ -5880,9 +5880,9 @@ FunctionCall: /** nomerge **/ if (postfixexprval.hasValidType()) { /* postfixexprval.transformation; */ Multiverse lparen - = new Multiverse((String) getNodeAt(subparser, 3).getTokenText(), pc); + = new Multiverse("(", pc); Multiverse rparen - = new Multiverse((String) getNodeAt(subparser, 1).getTokenText(), pc); + = new Multiverse(")", pc); // Get all possible expression lists by successively taking // the combined product of each element of the list. See From f69d5d5342b77c5a08829655ec6f565297730510 Mon Sep 17 00:00:00 2001 From: pattersonz Date: Thu, 29 Sep 2022 16:32:00 -0500 Subject: [PATCH 23/77] added method comments --- src/superc/cdesugarer/CActions.java | 28 ++++++++++++++++++++++++++- src/superc/cdesugarer/desugarer.y | 30 +++++++++++++++++++++++++++-- test.c | 14 -------------- 3 files changed, 55 insertions(+), 17 deletions(-) delete mode 100644 test.c diff --git a/src/superc/cdesugarer/CActions.java b/src/superc/cdesugarer/CActions.java index dd02dbba..c10a7234 100644 --- a/src/superc/cdesugarer/CActions.java +++ b/src/superc/cdesugarer/CActions.java @@ -363,7 +363,7 @@ public Object action(int production, Subparser subparser, Object value) { desugaredDeclaration = renamedDeclaration.toString(); } assert null != desugaredDeclaration; - + // renamedDeclaration must be a FunctionT because // that is created by a FunctionDeclarator Type declarationType = renamedDeclaration.getType(); @@ -545,6 +545,7 @@ public Object action(int production, Subparser subparser, Object value) { // are getting all nodes at this point for (Element prototypestr : subprototypestrmv) { sb.append(prototypestr.getData()); + sb.append(" //M:" + getCompoundRange(bodymv, prototypestr.getCondition()) + "\n"); sb.append(" {\n"); sb.append(emitStatementDSV(bodymv, prototypestr.getCondition())); sb.append("}\n"); @@ -10307,6 +10308,13 @@ public void nameLabels(PresenceCondition p) { } } } + + public String getPrepend() { + return childPrepend; + } + public String getAppend() { + return childAppend; + } public String getString(PresenceCondition p, CActions ca) { String ret = ""; @@ -10960,6 +10968,24 @@ private String emitStatement(Multiverse allStatementConfigs, PresenceCon return sb.toString(); } +private String getCompoundRange(Multiverse allStatementConfigs, PresenceCondition pc) { + int earliest = 0; + int latest = 0; + for (Multiverse.Element statement : allStatementConfigs) { + String leftBrace = statement.getData().getPrepend(); + String rightBrace = statement.getData().getAppend(); + int leftNum = Integer.parseInt(leftBrace.replaceAll("[^0-9]","")); + int rightNum = Integer.parseInt(rightBrace.replaceAll("[^0-9]","")); + if (leftNum < earliest || earliest == 0) { + earliest = leftNum; + } + if (rightNum > latest || latest == 0) { + latest = rightNum; + } + } + return "L" + Integer.toString(earliest) + ":L" + Integer.toString(latest); +} + private String emitStatementDSV(Multiverse allStatementConfigs, PresenceCondition pc) { StringBuilder sb = new StringBuilder(); if (allStatementConfigs.size() > 1) { diff --git a/src/superc/cdesugarer/desugarer.y b/src/superc/cdesugarer/desugarer.y index 08166bed..b125ad9a 100644 --- a/src/superc/cdesugarer/desugarer.y +++ b/src/superc/cdesugarer/desugarer.y @@ -484,7 +484,7 @@ FunctionPrototype {restartLabelFunction();} CompoundStatement desugaredDeclaration = renamedDeclaration.toString(); } assert null != desugaredDeclaration; - + // renamedDeclaration must be a FunctionT because // that is created by a FunctionDeclarator Type declarationType = renamedDeclaration.getType(); @@ -666,7 +666,8 @@ FunctionPrototype {restartLabelFunction();} CompoundStatement // are getting all nodes at this point for (Element prototypestr : subprototypestrmv) { sb.append(prototypestr.getData()); - sb.append(" {\n"); + sb.append(" //M:" + getCompoundRange(bodymv, prototypestr.getCondition()) + "\n"); + sb.append("{\n"); sb.append(emitStatementDSV(bodymv, prototypestr.getCondition())); sb.append("}\n"); } @@ -10169,6 +10170,13 @@ public static class DeclarationOrStatementValue implements Copyable{ } } } + + public String getPrepend() { + return childPrepend; + } + public String getAppend() { + return childAppend; + } public String getString(PresenceCondition p, CActions ca) { String ret = ""; @@ -10822,6 +10830,24 @@ private String emitStatement(Multiverse allStatementConfigs, PresenceCon return sb.toString(); } +private String getCompoundRange(Multiverse allStatementConfigs, PresenceCondition pc) { + int earliest = 0; + int latest = 0; + for (Multiverse.Element statement : allStatementConfigs) { + String leftBrace = statement.getData().getPrepend(); + String rightBrace = statement.getData().getAppend(); + int leftNum = Integer.parseInt(leftBrace.replaceAll("[^0-9]","")); + int rightNum = Integer.parseInt(rightBrace.replaceAll("[^0-9]","")); + if (leftNum < earliest || earliest == 0) { + earliest = leftNum; + } + if (rightNum > latest || latest == 0) { + latest = rightNum; + } + } + return "L" + Integer.toString(earliest) + ":L" + Integer.toString(latest); +} + private String emitStatementDSV(Multiverse allStatementConfigs, PresenceCondition pc) { StringBuilder sb = new StringBuilder(); if (allStatementConfigs.size() > 1) { diff --git a/test.c b/test.c deleted file mode 100644 index 72da03ce..00000000 --- a/test.c +++ /dev/null @@ -1,14 +0,0 @@ -extern void* malloc(const int); -extern void free(void*); -extern void* calloc(const int); -int foo () { - return 2; -} -int main () { - int *f; - f = malloc(4); - f = calloc(4); - *f = foo(); - free(f); - return 0; -} From 5908a278fe72c6008e57f5b864897da7894b60f1 Mon Sep 17 00:00:00 2001 From: pattersonz Date: Sat, 22 Oct 2022 12:23:25 -0500 Subject: [PATCH 24/77] changed static condition defaults to int methods with random return --- src/superc/SugarC.java | 4 +--- src/superc/cdesugarer/desugarer.y | 4 ++-- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/src/superc/SugarC.java b/src/superc/SugarC.java index b0edaf9d..232711b0 100644 --- a/src/superc/SugarC.java +++ b/src/superc/SugarC.java @@ -559,9 +559,7 @@ public Node parse(Reader in, File file) throws IOException, ParseException { // emit headers System.out.print("#include \n"); - if (runtime.test("keep-mem")) { - System.out.print("#include \n"); - } + System.out.print("#include \n"); System.out.print("\n"); diff --git a/src/superc/cdesugarer/desugarer.y b/src/superc/cdesugarer/desugarer.y index b125ad9a..715f0527 100644 --- a/src/superc/cdesugarer/desugarer.y +++ b/src/superc/cdesugarer/desugarer.y @@ -11112,7 +11112,7 @@ public String staticInitialization(boolean showParseError) { // writes the extern declarations for the renamed preprocessor BDDs System.err.println("TODO: record original presence condition strings in file as well once raw strings are collected"); for (Integer hash : condVars.keySet()) { - sb.append(String.format("extern const bool %s;\n", condVars.get(hash))); + sb.append(String.format("int %s() {return rand()%2;};\n", condVars.get(hash))); } sb.append(String.format("%s {\n%s\n%s\n", @@ -12495,7 +12495,7 @@ public String condToCVar(PresenceCondition cond) { if (condVars.containsKey(key)) { return condVars.get(key); } else { - String cvar = freshCId(String.format("static_condition_%s", unitUID)); + String cvar = freshCId(String.format("static_condition_%s()", unitUID)); condVars.put(key, cvar); staticConditionRenamings.append(String.format("__static_condition_renaming(\"%s\", \"%s\");\n", cvar, cond.toString())); return cvar; From 9261d6070b212e0ae1b97b155f195b19f3648f4d Mon Sep 17 00:00:00 2001 From: pattersonz Date: Sat, 22 Oct 2022 12:39:50 -0500 Subject: [PATCH 25/77] bug fix to static condition default change --- src/superc/cdesugarer/CActions.java | 6 +++--- src/superc/cdesugarer/desugarer.y | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/superc/cdesugarer/CActions.java b/src/superc/cdesugarer/CActions.java index c10a7234..58e12999 100644 --- a/src/superc/cdesugarer/CActions.java +++ b/src/superc/cdesugarer/CActions.java @@ -546,7 +546,7 @@ public Object action(int production, Subparser subparser, Object value) { for (Element prototypestr : subprototypestrmv) { sb.append(prototypestr.getData()); sb.append(" //M:" + getCompoundRange(bodymv, prototypestr.getCondition()) + "\n"); - sb.append(" {\n"); + sb.append("{\n"); sb.append(emitStatementDSV(bodymv, prototypestr.getCondition())); sb.append("}\n"); } @@ -11250,7 +11250,7 @@ public String staticInitialization(boolean showParseError) { // writes the extern declarations for the renamed preprocessor BDDs System.err.println("TODO: record original presence condition strings in file as well once raw strings are collected"); for (Integer hash : condVars.keySet()) { - sb.append(String.format("extern const bool %s;\n", condVars.get(hash))); + sb.append(String.format("int %s() {return rand()%%2;};\n", condVars.get(hash))); } sb.append(String.format("%s {\n%s\n%s\n", @@ -12636,7 +12636,7 @@ public String condToCVar(PresenceCondition cond) { String cvar = freshCId(String.format("static_condition_%s", unitUID)); condVars.put(key, cvar); staticConditionRenamings.append(String.format("__static_condition_renaming(\"%s\", \"%s\");\n", cvar, cond.toString())); - return cvar; + return cvar+"()"; } } } diff --git a/src/superc/cdesugarer/desugarer.y b/src/superc/cdesugarer/desugarer.y index 715f0527..9a94ad86 100644 --- a/src/superc/cdesugarer/desugarer.y +++ b/src/superc/cdesugarer/desugarer.y @@ -11112,7 +11112,7 @@ public String staticInitialization(boolean showParseError) { // writes the extern declarations for the renamed preprocessor BDDs System.err.println("TODO: record original presence condition strings in file as well once raw strings are collected"); for (Integer hash : condVars.keySet()) { - sb.append(String.format("int %s() {return rand()%2;};\n", condVars.get(hash))); + sb.append(String.format("int %s() {return rand()%%2;};\n", condVars.get(hash))); } sb.append(String.format("%s {\n%s\n%s\n", @@ -12495,10 +12495,10 @@ public String condToCVar(PresenceCondition cond) { if (condVars.containsKey(key)) { return condVars.get(key); } else { - String cvar = freshCId(String.format("static_condition_%s()", unitUID)); + String cvar = freshCId(String.format("static_condition_%s", unitUID)); condVars.put(key, cvar); staticConditionRenamings.append(String.format("__static_condition_renaming(\"%s\", \"%s\");\n", cvar, cond.toString())); - return cvar; + return cvar+"()"; } } } From c6fc9289c676dfedde4210a7997422174d8e1065 Mon Sep 17 00:00:00 2001 From: pattersonz Date: Sun, 23 Oct 2022 17:32:04 -0500 Subject: [PATCH 26/77] fix bug where not all static conditions were methods --- src/superc/cdesugarer/CActions.java | 2 +- src/superc/cdesugarer/desugarer.y | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/superc/cdesugarer/CActions.java b/src/superc/cdesugarer/CActions.java index 58e12999..774667a5 100644 --- a/src/superc/cdesugarer/CActions.java +++ b/src/superc/cdesugarer/CActions.java @@ -12631,7 +12631,7 @@ public String condToCVar(PresenceCondition cond) { // non-boolean leaves to C variables. int key = cond.hashCode(); if (condVars.containsKey(key)) { - return condVars.get(key); + return condVars.get(key)+"()"; } else { String cvar = freshCId(String.format("static_condition_%s", unitUID)); condVars.put(key, cvar); diff --git a/src/superc/cdesugarer/desugarer.y b/src/superc/cdesugarer/desugarer.y index 9a94ad86..8ca68f65 100644 --- a/src/superc/cdesugarer/desugarer.y +++ b/src/superc/cdesugarer/desugarer.y @@ -12493,7 +12493,7 @@ public String condToCVar(PresenceCondition cond) { // non-boolean leaves to C variables. int key = cond.hashCode(); if (condVars.containsKey(key)) { - return condVars.get(key); + return condVars.get(key)+"()"; } else { String cvar = freshCId(String.format("static_condition_%s", unitUID)); condVars.put(key, cvar); From 0b26fd5b264b12557ed9194c1efaa060ce94a042 Mon Sep 17 00:00:00 2001 From: pattersonz Date: Mon, 7 Nov 2022 12:36:17 -0600 Subject: [PATCH 27/77] added stdio for file opening and closing --- src/superc/SugarC.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/superc/SugarC.java b/src/superc/SugarC.java index 232711b0..52f95e47 100644 --- a/src/superc/SugarC.java +++ b/src/superc/SugarC.java @@ -560,6 +560,7 @@ public Node parse(Reader in, File file) throws IOException, ParseException { // emit headers System.out.print("#include \n"); System.out.print("#include \n"); + System.out.print("#include \n"); System.out.print("\n"); From 2133aa8f71d20f42b4119a3dfedbe9225e87d694 Mon Sep 17 00:00:00 2001 From: pattersonz Date: Wed, 30 Nov 2022 13:55:08 -0600 Subject: [PATCH 28/77] cleanup --- .../varBugs/infer-out/.infer_runstate.json | 1 - .../cpp_testsuite/varBugs/infer-out/bugs.txt | 1 - .../infer-out/config-impact-report.json | 1 - .../varBugs/infer-out/costs-report.json | 1 - fonda/cpp_testsuite/varBugs/infer-out/logs | 119 ------------------ .../varBugs/infer-out/report.json | 1 - .../varBugs/infer-out/report.txt | 0 .../varBugs/infer-out/results.db | Bin 294912 -> 0 bytes .../varBugs/infer-out/results.db-shm | Bin 32768 -> 0 bytes .../varBugs/infer-out/results.db-wal | Bin 1901968 -> 0 bytes .../tmp/clang_command_.tmp.e6a66f.txt | 11 -- .../tmp/clang_command_.tmp.ea4558.txt | 67 ---------- 12 files changed, 202 deletions(-) delete mode 100644 fonda/cpp_testsuite/varBugs/infer-out/.infer_runstate.json delete mode 100644 fonda/cpp_testsuite/varBugs/infer-out/bugs.txt delete mode 100644 fonda/cpp_testsuite/varBugs/infer-out/config-impact-report.json delete mode 100644 fonda/cpp_testsuite/varBugs/infer-out/costs-report.json delete mode 100644 fonda/cpp_testsuite/varBugs/infer-out/logs delete mode 100644 fonda/cpp_testsuite/varBugs/infer-out/report.json delete mode 100644 fonda/cpp_testsuite/varBugs/infer-out/report.txt delete mode 100644 fonda/cpp_testsuite/varBugs/infer-out/results.db delete mode 100644 fonda/cpp_testsuite/varBugs/infer-out/results.db-shm delete mode 100644 fonda/cpp_testsuite/varBugs/infer-out/results.db-wal delete mode 100644 fonda/cpp_testsuite/varBugs/infer-out/tmp/clang_command_.tmp.e6a66f.txt delete mode 100644 fonda/cpp_testsuite/varBugs/infer-out/tmp/clang_command_.tmp.ea4558.txt diff --git a/fonda/cpp_testsuite/varBugs/infer-out/.infer_runstate.json b/fonda/cpp_testsuite/varBugs/infer-out/.infer_runstate.json deleted file mode 100644 index 0d04ea1f..00000000 --- a/fonda/cpp_testsuite/varBugs/infer-out/.infer_runstate.json +++ /dev/null @@ -1 +0,0 @@ -{"run_sequence":[{"date":"2022-09-29 14:46:08.735693-05:00","command":"run","infer_version":{"major":1,"minor":1,"patch":0,"commit":"ea7f6cc90"}}],"results_dir_format":"db_filename: infer-out/results.db\ndb_schema: \n CREATE TABLE IF NOT EXISTS procedures\n ( proc_uid TEXT PRIMARY KEY NOT NULL\n , proc_name BLOB NOT NULL\n , attr_kind INTEGER NOT NULL\n , source_file TEXT NOT NULL\n , proc_attributes BLOB NOT NULL\n , cfg BLOB\n , callees BLOB NOT NULL\n )\n ;\n\n CREATE TABLE IF NOT EXISTS source_files\n ( source_file TEXT PRIMARY KEY\n , type_environment BLOB NOT NULL\n , integer_type_widths BLOB\n , procedure_names BLOB NOT NULL\n , freshly_captured INT NOT NULL )\n ;\n\n CREATE TABLE IF NOT EXISTS specs\n ( proc_uid TEXT PRIMARY KEY NOT NULL\n , proc_name BLOB NOT NULL\n , analysis_summary BLOB NOT NULL\n , report_summary BLOB NOT NULL\n )\n ;\n\n CREATE TABLE IF NOT EXISTS model_specs\n ( proc_uid TEXT PRIMARY KEY NOT NULL\n , proc_name BLOB NOT NULL\n , analysis_summary BLOB NOT NULL\n , report_summary BLOB NOT NULL\n )\n ","should_merge_capture":false} \ No newline at end of file diff --git a/fonda/cpp_testsuite/varBugs/infer-out/bugs.txt b/fonda/cpp_testsuite/varBugs/infer-out/bugs.txt deleted file mode 100644 index f77b18e4..00000000 --- a/fonda/cpp_testsuite/varBugs/infer-out/bugs.txt +++ /dev/null @@ -1 +0,0 @@ -The contents of this file have moved to report.txt. diff --git a/fonda/cpp_testsuite/varBugs/infer-out/config-impact-report.json b/fonda/cpp_testsuite/varBugs/infer-out/config-impact-report.json deleted file mode 100644 index fe51488c..00000000 --- a/fonda/cpp_testsuite/varBugs/infer-out/config-impact-report.json +++ /dev/null @@ -1 +0,0 @@ -[] diff --git a/fonda/cpp_testsuite/varBugs/infer-out/costs-report.json b/fonda/cpp_testsuite/varBugs/infer-out/costs-report.json deleted file mode 100644 index fe51488c..00000000 --- a/fonda/cpp_testsuite/varBugs/infer-out/costs-report.json +++ /dev/null @@ -1 +0,0 @@ -[] diff --git a/fonda/cpp_testsuite/varBugs/infer-out/logs b/fonda/cpp_testsuite/varBugs/infer-out/logs deleted file mode 100644 index 1ff464bd..00000000 --- a/fonda/cpp_testsuite/varBugs/infer-out/logs +++ /dev/null @@ -1,119 +0,0 @@ -[11892][ debug] Sqlite write daemon: starting up -[11892][ debug] Sqlite write daemon: set up complete, waiting for connections -[11892][environment] CWD = /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs -[11892][environment] No .inferconfig file found -[11892][environment] Project root = /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs -[11892][environment] INFER_ARGS = @/tmp/args.tmp.0ac9c4 -[11892][environment] command line arguments: infer --pulse-only -- clang -c -[11892][environment] /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c -[11892][environment] Available memory at startup: 27844 MB -[11892][environment] Active checkers: pulse (C/C++/ObjC, C#/.Net, Erlang, Java) -[11892][environment] Scheduler: file -[11892][environment] Cores used: 10 -[11892][environment] Infer version v1.1.0-ea7f6cc90 -[11892][environment] Copyright 2009 - present Facebook. All Rights Reserved. -[11892][environment] -[11892][ progress] Capturing in make/cc mode... -[11892][ debug] -[11892][ debug] *** Beginning capture of file /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c *** -[11892][ debug] Elapsed: 110ms. -[11892][ debug] GC stats for capture: -[11892][ debug] minor_words: 9.96292e+06 -[11892][ debug] promoted_words: 512369 -[11892][ debug] major_words: 563468 -[11892][ debug] minor_collections: 13 -[11892][ debug] major_collections: 3 -[11892][ debug] compactions: 0 -[11892][ debug] top_heap_words: 1006592 -[11892][ debug] -[11892][environment] Parallel jobs: 10 -[11892][ progress] Found 1 source file to analyze in /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/infer-out -[11898][ progress] APACHE/1b48bb3c1af.desugared.c starting -[11898][ progress] APACHE/1b48bb3c1af.desugared.c DONE -[11892][ debug] Backend stats: -[11892][ debug] longest_proc_duration_heap= [__static_initializer_default -> 239ms, __main_1107 -> 21ms, __util_ldap_cache_init_1100 -> 15ms, __apr_rmm_init_1095 -> 10ms, __apr_rmm_init_1094 -> 3ms, __main_1106 -> 0ms, __apr_rmm_init_1093 -> 0ms] -[11892][ debug] summary_file_try_load= 23 -[11892][ debug] summary_read_from_disk= 0 -[11892][ debug] summary_cache_hits= 0 (0%) -[11892][ debug] summary_cache_misses= 23 -[11892][ debug] ondemand_procs_analyzed= 7 -[11892][ debug] ondemand_local_cache_hits= 570 (96%) -[11892][ debug] ondemand_local_cache_misses= 23 -[11892][ debug] proc_locker_lock_time_user= 0.00000000 -[11892][ debug] proc_locker_lock_time_sys= 0.00000000 -[11892][ debug] proc_locker_lock_time_wall= 0.00000000 -[11892][ debug] proc_locker_unlock_time_user= 0.00000000 -[11892][ debug] proc_locker_unlock_time_sys= 0.00000000 -[11892][ debug] proc_locker_unlock_time_wall= 0.00000000 -[11892][ debug] restart_scheduler_useful_time_user= 0.00000000 -[11892][ debug] restart_scheduler_useful_time_sys= 0.00000000 -[11892][ debug] restart_scheduler_useful_time_wall= 0.00000000 -[11892][ debug] restart_scheduler_total_time_user= 0.00000000 -[11892][ debug] restart_scheduler_total_time_sys= 0.00000000 -[11892][ debug] restart_scheduler_total_time_wall= 0.00000000 -[11892][ debug] pulse_aliasing_contradictions= 0 -[11892][ debug] pulse_args_length_contradictions= 0 -[11892][ debug] pulse_captured_vars_length_contradictions= 0 -[11892][ debug] pulse_summaries_count= [2 -> 5, 10 -> 1, 11 -> 1] -[11892][ debug] -[11892][ debug] GC stats for backend_stats.gc_stats_add.: -[11892][ debug] minor_words: 5.462e+07 -[11892][ debug] promoted_words: 5.66347e+06 -[11892][ debug] major_words: 5.81223e+06 -[11892][ debug] minor_collections: 54 -[11892][ debug] major_collections: 4 -[11892][ debug] compactions: 0 -[11892][ debug] top_heap_words: 16191488 -[11892][ debug] -[11892][ debug] GC stats for backend_stats.gc_stats_max.: -[11892][ debug] minor_words: 5.46194e+07 -[11892][ debug] promoted_words: 5.66347e+06 -[11892][ debug] major_words: 5.81223e+06 -[11892][ debug] minor_collections: 54 -[11892][ debug] major_collections: 4 -[11892][ debug] compactions: 0 -[11892][ debug] top_heap_words: 7132160 -[11892][ debug] -[11892][ debug] Average over 10 processes -[11892][ debug] GC stats for backend_stats.gc_stats_average.: -[11892][ debug] minor_words: 5.462e+06 -[11892][ debug] promoted_words: 566347 -[11892][ debug] major_words: 581223 -[11892][ debug] minor_collections: 5 -[11892][ debug] major_collections: 0 -[11892][ debug] compactions: 0 -[11892][ debug] top_heap_words: 1619148 -[11892][ debug] -[11892][ debug] Analysis phase finished in 324ms -[11892][ debug] backend_stats.scheduler_process_analysis_time_user= 0.01871300 -[11892][ debug] backend_stats.scheduler_process_analysis_time_sys= 0.00917000 -[11892][ debug] backend_stats.scheduler_process_analysis_time_wall= 0.32442054 -[11892][ debug] GC stats for analysis_scheduler: -[11892][ debug] minor_words: 89708 -[11892][ debug] promoted_words: 2359 -[11892][ debug] major_words: 11065 -[11892][ debug] minor_collections: 2 -[11892][ debug] major_collections: 2 -[11892][ debug] compactions: 1 -[11892][ debug] top_heap_words: 1006592 -[11892][ debug] -[11892][ debug] GC stats for report: -[11892][ debug] minor_words: 3185 -[11892][ debug] promoted_words: 0 -[11892][ debug] major_words: 0 -[11892][ debug] minor_collections: 0 -[11892][ debug] major_collections: 0 -[11892][ debug] compactions: 0 -[11892][ debug] top_heap_words: 1006592 -[11892][ debug] -[11892][ debug] GC stats for main_process_full: -[11892][ debug] minor_words: 1.21104e+07 -[11892][ debug] promoted_words: 967355 -[11892][ debug] major_words: 1.04905e+06 -[11892][ debug] minor_collections: 21 -[11892][ debug] major_collections: 5 -[11892][ debug] compactions: 1 -[11892][ debug] top_heap_words: 1006592 -[11892][ debug] -[11893][ debug] Detected 0 spec overwrittes. -[11893][ debug] Sqlite write daemon: terminating diff --git a/fonda/cpp_testsuite/varBugs/infer-out/report.json b/fonda/cpp_testsuite/varBugs/infer-out/report.json deleted file mode 100644 index fe51488c..00000000 --- a/fonda/cpp_testsuite/varBugs/infer-out/report.json +++ /dev/null @@ -1 +0,0 @@ -[] diff --git a/fonda/cpp_testsuite/varBugs/infer-out/report.txt b/fonda/cpp_testsuite/varBugs/infer-out/report.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/fonda/cpp_testsuite/varBugs/infer-out/results.db b/fonda/cpp_testsuite/varBugs/infer-out/results.db deleted file mode 100644 index 1c72af1ff3b0f2111c61cc62e1d495a18dfe8a4e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 294912 zcmeI*OKam+7zSWF7dsOOT@`P-PzZqrLLdyGt3s1vhA?iXbyMi9gvVB9Onu2na@#OB z&!oHlnf{0VsV?i|OdO>hr<*QX{2b7yBkPmw_t8OHfBQ|NnBZT3(#{IgwJ)3X!_#_ndU({RM}-sX(fjdfbe;~|@u=I0PV3*FMqf9NzdCF_ zjvm$@M<VRr8?LPoks7qoWUXv<9u-Mb^#YY}D_!(u=u`X>vYH^M7dD zIasUIj62I4&fL_X`L2-ZodOwOXxwxjfaGx=c&umdNy@ zS-k(c#ZIMC`@A;KVwxr1pYE#fmY1uw?d|gA@m2oeC~YV4S+|#DSz*3%TcdEMfKs^N zZ);@Mwj1Ra=SiFle(a{hK|dMfb02(nkS9-*G@f4YQ@4{p%ci}BdxbTbbVg|shqZQf z`a_HDEKRa!y^FZrI?pHFo#^;vvSi;c+i2&rl}hd5_FS+++=*M^X!YGexmw%YEdO#a z<(vJS>}Ixfi|*$0S&DyuHRX94|1eqjA!YqRy*W!d`_A2{5aa4$U27D2!jFwxle=}F zjPg5l+hiX;JbB%&g;(xIDC1BJ0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyu($&2A^Lc6^Gi;E009C72oNAZfB*pk z1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs z0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjYqz(y$JPz(YD2oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FoI)0_!3AcyaSfPJjRb0t5&UAV7cs0RjXF5FkK+009C72oNAZ zfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&U zAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1cJauDC1BJ0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zu($&2A^Lc6^Gi;E009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C7 z2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjYqz(y$J zPz(YD2oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly zK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF z5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FoI)0_!3AcyaSfPJjRb z0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+ z009C72oNAZfB*pk1PBlyK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1PBly nK!5-N0t5&UAV7cs0RjXF5FkK+009C72oNAZfB*pk1cJbycME(S diff --git a/fonda/cpp_testsuite/varBugs/infer-out/results.db-shm b/fonda/cpp_testsuite/varBugs/infer-out/results.db-shm deleted file mode 100644 index 548c91c0f3f2ea8ec4061876e9d41dcb758119da..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 32768 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 z%0D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 GSN}f;1WmdC diff --git a/fonda/cpp_testsuite/varBugs/infer-out/tmp/clang_command_.tmp.e6a66f.txt b/fonda/cpp_testsuite/varBugs/infer-out/tmp/clang_command_.tmp.e6a66f.txt deleted file mode 100644 index a1d97b4f..00000000 --- a/fonda/cpp_testsuite/varBugs/infer-out/tmp/clang_command_.tmp.e6a66f.txt +++ /dev/null @@ -1,11 +0,0 @@ -'-###' -'-c' -'/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c' -'-fno-cxx-modules' -'-Qunused-arguments' -'-Wno-ignored-optimization-argument' -'-fno-addrsig' -'-fembed-bitcode=off' -'-include' -'/usr/local/lib/infer/infer/bin/../lib/clang_wrappers/global_defines.h' -'-Wno-everything' diff --git a/fonda/cpp_testsuite/varBugs/infer-out/tmp/clang_command_.tmp.ea4558.txt b/fonda/cpp_testsuite/varBugs/infer-out/tmp/clang_command_.tmp.ea4558.txt deleted file mode 100644 index 28809336..00000000 --- a/fonda/cpp_testsuite/varBugs/infer-out/tmp/clang_command_.tmp.ea4558.txt +++ /dev/null @@ -1,67 +0,0 @@ -"-cc1" -"-load" -"/usr/local/lib/infer/infer/bin/../../facebook-clang-plugins/libtooling/build/FacebookClangPlugin.dylib" -"-add-plugin" -"BiniouASTExporter" -"-plugin-arg-BiniouASTExporter" -"-" -"-plugin-arg-BiniouASTExporter" -"PREPEND_CURRENT_DIR=1" -"-plugin-arg-BiniouASTExporter" -"MAX_STRING_SIZE=65535" -"-cc1" -"-triple" -"x86_64-unknown-linux-gnu" -"-emit-obj" -"-mrelax-all" -"--mrelax-relocations" -"-disable-free" -"-disable-llvm-verifier" -"-discard-value-names" -"-main-file-name" -"1b48bb3c1af.desugared.c" -"-mrelocation-model" -"static" -"-mframe-pointer=all" -"-fmath-errno" -"-fno-rounding-math" -"-mconstructor-aliases" -"-munwind-tables" -"-target-cpu" -"x86-64" -"-tune-cpu" -"generic" -"-debugger-tuning=gdb" -"-fcoverage-compilation-dir=/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs" -"-resource-dir" -"/usr/local/lib/infer/facebook-clang-plugins/clang/install/lib/clang/13.0.1" -"-include" -"/usr/local/lib/infer/infer/bin/../lib/clang_wrappers/global_defines.h" -"-internal-isystem" -"/usr/local/lib/infer/facebook-clang-plugins/clang/install/lib/clang/13.0.1/include" -"-internal-isystem" -"/usr/local/include" -"-internal-isystem" -"/usr/lib/gcc/x86_64-linux-gnu/7.5.0/../../../../x86_64-linux-gnu/include" -"-internal-externc-isystem" -"/usr/include/x86_64-linux-gnu" -"-internal-externc-isystem" -"/include" -"-internal-externc-isystem" -"/usr/include" -"-Wno-ignored-optimization-argument" -"-Wno-everything" -"-fdebug-compilation-dir=/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs" -"-ferror-limit" -"19" -"-fgnuc-version=4.2.1" -"-D__GCC_HAVE_DWARF2_CFI_ASM=1" -"-o" -"1b48bb3c1af.desugared.o" -"-x" -"c" -"/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/varBugs/APACHE/1b48bb3c1af.desugared.c" -"-O0" -"-include" -"/usr/local/lib/infer/infer/bin/../lib/clang_wrappers/global_defines.h" -"-Wno-everything" From 7a9fa1979afa4620741d116e31615bab9a57026c Mon Sep 17 00:00:00 2001 From: pattersonz Date: Tue, 6 Dec 2022 17:20:40 -0600 Subject: [PATCH 29/77] mend --- src/superc/cdesugarer/CLexer.java | 666 +++++++++++++-------------- src/superc/core/ForkMergeParser.java | 4 +- src/xtc/Limits.java | 2 +- 3 files changed, 336 insertions(+), 336 deletions(-) diff --git a/src/superc/cdesugarer/CLexer.java b/src/superc/cdesugarer/CLexer.java index bd00fe71..de85ae9d 100644 --- a/src/superc/cdesugarer/CLexer.java +++ b/src/superc/cdesugarer/CLexer.java @@ -1,4 +1,4 @@ -/* The following code was generated by JFlex 1.4.3 on 9/28/20, 3:42 PM */ +/* The following code was generated by JFlex 1.4.3 on 12/6/22, 5:13 PM */ package superc.cdesugarer; @@ -15,7 +15,7 @@ /** * This class is a scanner generated by * JFlex 1.4.3 - * on 9/28/20, 3:42 PM from the specification file + * on 12/6/22, 5:13 PM from the specification file * lexer.l.i */ class CLexer implements superc.core.Lexer { @@ -46,8 +46,8 @@ class CLexer implements superc.core.Lexer { private static final String ZZ_CMAP_PACKED = "\11\0\1\32\1\27\1\32\1\33\1\34\22\0\1\32\1\71\1\31"+ "\1\102\1\113\1\75\1\72\1\30\1\77\1\100\1\74\1\5\1\101"+ - "\1\65\1\6\1\35\1\2\1\62\1\63\5\15\1\64\1\14\1\110"+ - "\1\111\1\67\1\70\1\66\1\20\1\112\1\17\1\60\1\61\1\17"+ + "\1\65\1\6\1\35\1\2\1\62\1\63\5\15\1\64\1\14\1\111"+ + "\1\112\1\67\1\70\1\66\1\110\1\20\1\17\1\60\1\61\1\17"+ "\1\3\1\7\5\1\1\11\3\1\1\4\4\1\1\13\2\1\1\16"+ "\2\1\1\105\1\26\1\106\1\76\1\57\1\0\1\36\1\24\1\43"+ "\1\50\1\22\1\23\1\52\1\45\1\47\1\1\1\42\1\12\1\51"+ @@ -296,352 +296,352 @@ private static int zzUnpackRowMap(String packed, int offset, int [] result) { "\1\126\112\0\1\125\3\0\1\126\1\0\1\126\114\0"+ "\1\135\56\0\26\130\1\131\1\0\1\240\63\130\2\0"+ "\1\130\12\0\1\130\2\0\5\130\1\241\4\130\4\0"+ - "\2\130\1\0\1\130\4\0\1\130\13\0\2\130\32\0"+ - "\1\23\12\0\1\23\2\0\5\23\1\242\4\23\4\0"+ - "\2\23\1\0\1\23\4\0\1\23\13\0\2\23\30\0"+ - "\27\135\1\21\4\135\1\21\57\135\1\0\4\3\2\0"+ - "\11\3\1\0\5\3\10\0\1\3\1\243\25\3\30\0"+ - "\4\3\2\0\11\3\1\0\5\3\10\0\13\3\1\244"+ - "\13\3\30\0\4\3\2\0\11\3\1\0\5\3\10\0"+ - "\20\3\1\245\6\3\30\0\4\3\2\0\11\3\1\0"+ - "\5\3\10\0\1\3\1\246\12\3\1\247\12\3\30\0"+ - "\4\3\2\0\11\3\1\0\5\3\10\0\6\3\1\250"+ - "\20\3\30\0\4\3\2\0\11\3\1\0\5\3\10\0"+ - "\10\3\1\251\16\3\30\0\4\3\2\0\11\3\1\0"+ - "\5\3\10\0\1\252\26\3\30\0\4\3\2\0\11\3"+ - "\1\0\5\3\10\0\1\253\2\3\1\254\23\3\30\0"+ - "\4\3\2\0\11\3\1\0\5\3\10\0\2\3\1\255"+ - "\24\3\30\0\4\3\2\0\11\3\1\0\5\3\10\0"+ - "\14\3\1\256\1\257\11\3\30\0\4\3\2\0\11\3"+ - "\1\0\5\3\10\0\11\3\1\260\15\3\30\0\4\3"+ - "\2\0\3\3\1\261\5\3\1\0\5\3\10\0\1\3"+ - "\1\262\25\3\30\0\4\3\2\0\11\3\1\0\2\3"+ - "\1\263\2\3\10\0\27\3\30\0\4\3\2\0\1\3"+ - "\1\264\7\3\1\0\5\3\10\0\27\3\30\0\4\3"+ - "\2\0\11\3\1\0\5\3\10\0\1\3\1\265\25\3"+ + "\2\130\1\0\1\130\4\0\1\130\13\0\2\130\24\0"+ + "\1\130\5\0\1\23\12\0\1\23\2\0\5\23\1\242"+ + "\4\23\4\0\2\23\1\0\1\23\4\0\1\23\13\0"+ + "\2\23\24\0\1\23\3\0\27\135\1\21\4\135\1\21"+ + "\57\135\1\0\4\3\2\0\11\3\1\0\5\3\10\0"+ + "\1\3\1\243\25\3\30\0\4\3\2\0\11\3\1\0"+ + "\5\3\10\0\13\3\1\244\13\3\30\0\4\3\2\0"+ + "\11\3\1\0\5\3\10\0\20\3\1\245\6\3\30\0"+ + "\4\3\2\0\11\3\1\0\5\3\10\0\1\3\1\246"+ + "\12\3\1\247\12\3\30\0\4\3\2\0\11\3\1\0"+ + "\5\3\10\0\6\3\1\250\20\3\30\0\4\3\2\0"+ + "\11\3\1\0\5\3\10\0\10\3\1\251\16\3\30\0"+ + "\4\3\2\0\11\3\1\0\5\3\10\0\1\252\26\3"+ + "\30\0\4\3\2\0\11\3\1\0\5\3\10\0\1\253"+ + "\2\3\1\254\23\3\30\0\4\3\2\0\11\3\1\0"+ + "\5\3\10\0\2\3\1\255\24\3\30\0\4\3\2\0"+ + "\11\3\1\0\5\3\10\0\14\3\1\256\1\257\11\3"+ "\30\0\4\3\2\0\11\3\1\0\5\3\10\0\11\3"+ - "\1\266\15\3\30\0\4\3\2\0\3\3\1\267\5\3"+ - "\1\0\1\270\1\271\1\3\1\272\1\3\10\0\1\273"+ - "\1\274\1\3\1\275\1\3\1\276\1\277\2\3\1\300"+ - "\15\3\30\0\4\3\2\0\11\3\1\0\5\3\10\0"+ - "\2\3\1\301\24\3\30\0\4\3\2\0\11\3\1\0"+ - "\5\3\10\0\2\3\1\302\24\3\117\0\1\303\113\0"+ - "\1\304\24\0\2\73\2\206\1\305\12\73\1\0\1\73"+ - "\1\206\3\73\10\0\20\73\1\206\6\73\1\305\27\0"+ - "\1\73\1\207\2\206\1\0\1\73\1\211\1\73\2\211"+ - "\1\73\2\207\2\73\1\0\1\73\1\206\1\211\2\73"+ - "\10\0\20\73\1\206\3\73\3\207\31\0\1\207\11\0"+ - "\2\207\44\0\3\207\30\0\2\73\2\206\1\0\3\73"+ - "\1\212\6\73\1\0\1\73\1\206\3\73\10\0\20\73"+ - "\1\206\6\73\30\0\2\73\2\206\1\0\4\73\1\212"+ - "\5\73\1\0\1\73\1\206\3\73\10\0\20\73\1\206"+ - "\6\73\30\0\2\73\2\206\1\0\2\73\1\212\2\73"+ - "\1\212\4\73\1\0\1\73\1\206\3\73\10\0\20\73"+ - "\1\206\6\73\30\0\1\73\1\216\1\217\1\206\1\0"+ - "\1\73\1\216\1\306\1\307\1\310\1\311\2\216\1\73"+ - "\1\216\1\0\1\73\1\217\2\216\1\73\10\0\1\216"+ - "\4\73\1\216\4\73\1\216\5\73\1\206\1\73\5\216"+ - "\30\0\1\73\1\216\1\217\1\206\1\305\1\73\1\216"+ - "\1\306\1\307\1\310\1\311\2\216\1\73\1\216\1\0"+ - "\1\73\1\217\2\216\1\73\10\0\1\216\4\73\1\216"+ - "\4\73\1\216\5\73\1\206\1\73\5\216\1\305\27\0"+ - "\4\3\2\0\11\3\1\0\5\3\10\0\11\3\1\312"+ - "\15\3\30\0\4\3\2\0\11\3\1\0\5\3\10\0"+ - "\2\3\1\313\24\3\30\0\4\3\2\0\11\3\1\0"+ - "\5\3\10\0\14\3\1\314\12\3\30\0\2\73\2\206"+ - "\1\0\3\73\1\224\6\73\1\0\1\73\1\206\3\73"+ - "\10\0\20\73\1\206\6\73\30\0\2\73\2\206\1\0"+ - "\4\73\1\224\5\73\1\0\1\73\1\206\3\73\10\0"+ - "\20\73\1\206\6\73\30\0\2\73\2\206\1\0\2\73"+ - "\1\224\2\73\1\224\4\73\1\0\1\73\1\206\3\73"+ - "\10\0\20\73\1\206\6\73\30\0\4\3\2\0\11\3"+ - "\1\0\5\3\10\0\1\315\26\3\30\0\4\3\2\0"+ - "\11\3\1\0\5\3\10\0\12\3\1\316\14\3\30\0"+ - "\4\3\2\0\11\3\1\0\1\3\1\317\3\3\10\0"+ - "\27\3\30\0\4\3\2\0\11\3\1\0\1\3\1\320"+ - "\3\3\10\0\27\3\30\0\4\3\2\0\11\3\1\0"+ - "\5\3\10\0\13\3\1\321\13\3\30\0\4\3\2\0"+ - "\11\3\1\0\5\3\10\0\1\322\26\3\30\0\4\3"+ - "\2\0\11\3\1\0\5\3\10\0\1\323\26\3\31\0"+ - "\2\130\3\0\1\130\4\0\2\130\1\0\1\130\2\0"+ - "\3\130\11\0\1\130\4\0\1\130\4\0\1\130\7\0"+ - "\5\130\31\0\2\23\3\0\1\23\4\0\2\23\1\0"+ - "\1\23\2\0\3\23\11\0\1\23\4\0\1\23\4\0"+ - "\1\23\7\0\5\23\30\0\4\3\2\0\11\3\1\0"+ - "\5\3\10\0\2\3\1\324\24\3\30\0\4\3\2\0"+ - "\11\3\1\0\1\3\1\325\3\3\10\0\27\3\30\0"+ - "\4\3\2\0\1\3\1\326\7\3\1\0\5\3\10\0"+ - "\27\3\30\0\4\3\2\0\11\3\1\0\5\3\10\0"+ - "\11\3\1\327\15\3\30\0\4\3\2\0\11\3\1\0"+ - "\1\3\1\330\3\3\10\0\27\3\30\0\4\3\2\0"+ - "\11\3\1\0\5\3\10\0\1\3\1\331\4\3\1\332"+ - "\20\3\30\0\4\3\2\0\11\3\1\0\5\3\10\0"+ - "\3\3\1\333\23\3\30\0\4\3\2\0\11\3\1\0"+ - "\5\3\10\0\1\3\1\334\25\3\30\0\4\3\2\0"+ - "\1\3\1\335\7\3\1\0\5\3\10\0\27\3\30\0"+ - "\4\3\2\0\11\3\1\0\5\3\10\0\3\3\1\336"+ - "\23\3\30\0\4\3\2\0\11\3\1\0\5\3\10\0"+ - "\10\3\1\337\16\3\30\0\4\3\2\0\11\3\1\0"+ - "\1\3\1\340\3\3\10\0\27\3\30\0\4\3\2\0"+ - "\11\3\1\0\5\3\10\0\1\3\1\341\25\3\30\0"+ - "\4\3\2\0\11\3\1\0\5\3\10\0\11\3\1\342"+ - "\15\3\30\0\4\3\2\0\11\3\1\0\5\3\10\0"+ - "\1\343\26\3\30\0\4\3\2\0\11\3\1\0\3\3"+ - "\1\344\1\3\10\0\27\3\30\0\4\3\2\0\11\3"+ - "\1\0\5\3\10\0\2\3\1\345\24\3\30\0\4\3"+ - "\2\0\3\3\1\346\5\3\1\0\5\3\10\0\27\3"+ - "\30\0\4\3\2\0\11\3\1\0\5\3\10\0\1\347"+ - "\26\3\30\0\4\3\2\0\11\3\1\0\5\3\10\0"+ - "\2\3\1\350\24\3\30\0\4\3\2\0\11\3\1\0"+ - "\4\3\1\351\10\0\27\3\30\0\4\3\2\0\1\3"+ - "\1\352\7\3\1\0\5\3\10\0\27\3\30\0\4\3"+ - "\2\0\3\3\1\353\5\3\1\0\5\3\10\0\1\3"+ - "\1\354\4\3\1\355\20\3\30\0\4\3\2\0\11\3"+ - "\1\0\5\3\10\0\7\3\1\356\7\3\1\357\7\3"+ - "\30\0\4\3\2\0\11\3\1\0\1\3\1\360\3\3"+ + "\1\260\15\3\30\0\4\3\2\0\3\3\1\261\5\3"+ + "\1\0\5\3\10\0\1\3\1\262\25\3\30\0\4\3"+ + "\2\0\11\3\1\0\2\3\1\263\2\3\10\0\27\3"+ + "\30\0\4\3\2\0\1\3\1\264\7\3\1\0\5\3"+ "\10\0\27\3\30\0\4\3\2\0\11\3\1\0\5\3"+ - "\10\0\2\3\1\361\24\3\30\0\4\3\2\0\11\3"+ - "\1\0\5\3\10\0\11\3\1\362\15\3\30\0\4\3"+ - "\2\0\11\3\1\0\5\3\10\0\10\3\1\363\16\3"+ - "\30\0\4\3\2\0\11\3\1\0\5\3\10\0\2\3"+ - "\1\364\24\3\30\0\4\3\2\0\11\3\1\0\5\3"+ - "\10\0\13\3\1\365\13\3\31\0\1\73\11\0\2\73"+ - "\44\0\3\73\30\0\2\73\2\206\1\0\2\73\1\366"+ - "\1\367\1\370\5\73\1\0\1\73\1\206\3\73\10\0"+ - "\20\73\1\206\6\73\30\0\2\73\2\206\1\0\2\73"+ - "\1\366\1\371\1\73\1\366\4\73\1\0\1\73\1\206"+ + "\10\0\1\3\1\265\25\3\30\0\4\3\2\0\11\3"+ + "\1\0\5\3\10\0\11\3\1\266\15\3\30\0\4\3"+ + "\2\0\3\3\1\267\5\3\1\0\1\270\1\271\1\3"+ + "\1\272\1\3\10\0\1\273\1\274\1\3\1\275\1\3"+ + "\1\276\1\277\2\3\1\300\15\3\30\0\4\3\2\0"+ + "\11\3\1\0\5\3\10\0\2\3\1\301\24\3\30\0"+ + "\4\3\2\0\11\3\1\0\5\3\10\0\2\3\1\302"+ + "\24\3\117\0\1\303\113\0\1\304\24\0\2\73\2\206"+ + "\1\305\12\73\1\0\1\73\1\206\3\73\10\0\20\73"+ + "\1\206\6\73\1\305\27\0\1\73\1\207\2\206\1\0"+ + "\1\73\1\211\1\73\2\211\1\73\2\207\2\73\1\0"+ + "\1\73\1\206\1\211\2\73\10\0\20\73\1\206\3\73"+ + "\3\207\31\0\1\207\11\0\2\207\44\0\3\207\30\0"+ + "\2\73\2\206\1\0\3\73\1\212\6\73\1\0\1\73"+ + "\1\206\3\73\10\0\20\73\1\206\6\73\30\0\2\73"+ + "\2\206\1\0\4\73\1\212\5\73\1\0\1\73\1\206"+ "\3\73\10\0\20\73\1\206\6\73\30\0\2\73\2\206"+ - "\1\0\2\73\1\366\1\73\1\371\1\366\4\73\1\0"+ + "\1\0\2\73\1\212\2\73\1\212\4\73\1\0\1\73"+ + "\1\206\3\73\10\0\20\73\1\206\6\73\30\0\1\73"+ + "\1\216\1\217\1\206\1\0\1\73\1\216\1\306\1\307"+ + "\1\310\1\311\2\216\1\73\1\216\1\0\1\73\1\217"+ + "\2\216\1\73\10\0\1\216\4\73\1\216\4\73\1\216"+ + "\5\73\1\206\1\73\5\216\30\0\1\73\1\216\1\217"+ + "\1\206\1\305\1\73\1\216\1\306\1\307\1\310\1\311"+ + "\2\216\1\73\1\216\1\0\1\73\1\217\2\216\1\73"+ + "\10\0\1\216\4\73\1\216\4\73\1\216\5\73\1\206"+ + "\1\73\5\216\1\305\27\0\4\3\2\0\11\3\1\0"+ + "\5\3\10\0\11\3\1\312\15\3\30\0\4\3\2\0"+ + "\11\3\1\0\5\3\10\0\2\3\1\313\24\3\30\0"+ + "\4\3\2\0\11\3\1\0\5\3\10\0\14\3\1\314"+ + "\12\3\30\0\2\73\2\206\1\0\3\73\1\224\6\73"+ + "\1\0\1\73\1\206\3\73\10\0\20\73\1\206\6\73"+ + "\30\0\2\73\2\206\1\0\4\73\1\224\5\73\1\0"+ "\1\73\1\206\3\73\10\0\20\73\1\206\6\73\30\0"+ - "\2\73\2\206\1\0\3\73\1\367\1\370\1\366\4\73"+ + "\2\73\2\206\1\0\2\73\1\224\2\73\1\224\4\73"+ "\1\0\1\73\1\206\3\73\10\0\20\73\1\206\6\73"+ - "\30\0\4\3\2\0\11\3\1\0\5\3\10\0\14\3"+ - "\1\372\12\3\30\0\4\3\2\0\11\3\1\0\5\3"+ - "\10\0\10\3\1\373\16\3\30\0\4\3\2\0\11\3"+ - "\1\0\5\3\10\0\1\3\1\374\25\3\30\0\4\3"+ - "\2\0\11\3\1\0\5\3\10\0\3\3\1\375\23\3"+ - "\30\0\4\3\2\0\11\3\1\0\5\3\10\0\1\3"+ - "\1\376\25\3\30\0\4\3\2\0\11\3\1\0\5\3"+ - "\10\0\4\3\1\377\22\3\30\0\4\3\2\0\11\3"+ - "\1\0\5\3\10\0\2\3\1\u0100\7\3\1\u0101\14\3"+ - "\30\0\4\3\2\0\11\3\1\0\5\3\10\0\3\3"+ - "\1\u0102\23\3\30\0\4\3\2\0\11\3\1\0\5\3"+ - "\10\0\6\3\1\u0103\20\3\30\0\4\3\2\0\11\3"+ - "\1\0\5\3\10\0\11\3\1\u0104\15\3\30\0\4\3"+ - "\2\0\11\3\1\0\5\3\10\0\1\3\1\u0105\25\3"+ + "\30\0\4\3\2\0\11\3\1\0\5\3\10\0\1\315"+ + "\26\3\30\0\4\3\2\0\11\3\1\0\5\3\10\0"+ + "\12\3\1\316\14\3\30\0\4\3\2\0\11\3\1\0"+ + "\1\3\1\317\3\3\10\0\27\3\30\0\4\3\2\0"+ + "\11\3\1\0\1\3\1\320\3\3\10\0\27\3\30\0"+ + "\4\3\2\0\11\3\1\0\5\3\10\0\13\3\1\321"+ + "\13\3\30\0\4\3\2\0\11\3\1\0\5\3\10\0"+ + "\1\322\26\3\30\0\4\3\2\0\11\3\1\0\5\3"+ + "\10\0\1\323\26\3\31\0\2\130\3\0\1\130\4\0"+ + "\2\130\1\0\1\130\2\0\3\130\11\0\1\130\4\0"+ + "\1\130\4\0\1\130\7\0\5\130\31\0\2\23\3\0"+ + "\1\23\4\0\2\23\1\0\1\23\2\0\3\23\11\0"+ + "\1\23\4\0\1\23\4\0\1\23\7\0\5\23\30\0"+ + "\4\3\2\0\11\3\1\0\5\3\10\0\2\3\1\324"+ + "\24\3\30\0\4\3\2\0\11\3\1\0\1\3\1\325"+ + "\3\3\10\0\27\3\30\0\4\3\2\0\1\3\1\326"+ + "\7\3\1\0\5\3\10\0\27\3\30\0\4\3\2\0"+ + "\11\3\1\0\5\3\10\0\11\3\1\327\15\3\30\0"+ + "\4\3\2\0\11\3\1\0\1\3\1\330\3\3\10\0"+ + "\27\3\30\0\4\3\2\0\11\3\1\0\5\3\10\0"+ + "\1\3\1\331\4\3\1\332\20\3\30\0\4\3\2\0"+ + "\11\3\1\0\5\3\10\0\3\3\1\333\23\3\30\0"+ + "\4\3\2\0\11\3\1\0\5\3\10\0\1\3\1\334"+ + "\25\3\30\0\4\3\2\0\1\3\1\335\7\3\1\0"+ + "\5\3\10\0\27\3\30\0\4\3\2\0\11\3\1\0"+ + "\5\3\10\0\3\3\1\336\23\3\30\0\4\3\2\0"+ + "\11\3\1\0\5\3\10\0\10\3\1\337\16\3\30\0"+ + "\4\3\2\0\11\3\1\0\1\3\1\340\3\3\10\0"+ + "\27\3\30\0\4\3\2\0\11\3\1\0\5\3\10\0"+ + "\1\3\1\341\25\3\30\0\4\3\2\0\11\3\1\0"+ + "\5\3\10\0\11\3\1\342\15\3\30\0\4\3\2\0"+ + "\11\3\1\0\5\3\10\0\1\343\26\3\30\0\4\3"+ + "\2\0\11\3\1\0\3\3\1\344\1\3\10\0\27\3"+ + "\30\0\4\3\2\0\11\3\1\0\5\3\10\0\2\3"+ + "\1\345\24\3\30\0\4\3\2\0\3\3\1\346\5\3"+ + "\1\0\5\3\10\0\27\3\30\0\4\3\2\0\11\3"+ + "\1\0\5\3\10\0\1\347\26\3\30\0\4\3\2\0"+ + "\11\3\1\0\5\3\10\0\2\3\1\350\24\3\30\0"+ + "\4\3\2\0\11\3\1\0\4\3\1\351\10\0\27\3"+ + "\30\0\4\3\2\0\1\3\1\352\7\3\1\0\5\3"+ + "\10\0\27\3\30\0\4\3\2\0\3\3\1\353\5\3"+ + "\1\0\5\3\10\0\1\3\1\354\4\3\1\355\20\3"+ + "\30\0\4\3\2\0\11\3\1\0\5\3\10\0\7\3"+ + "\1\356\7\3\1\357\7\3\30\0\4\3\2\0\11\3"+ + "\1\0\1\3\1\360\3\3\10\0\27\3\30\0\4\3"+ + "\2\0\11\3\1\0\5\3\10\0\2\3\1\361\24\3"+ "\30\0\4\3\2\0\11\3\1\0\5\3\10\0\11\3"+ - "\1\u0106\15\3\30\0\4\3\2\0\11\3\1\0\5\3"+ - "\10\0\5\3\1\u0107\21\3\30\0\4\3\2\0\11\3"+ - "\1\0\5\3\10\0\1\3\1\u0108\25\3\30\0\4\3"+ - "\2\0\11\3\1\0\1\3\1\u0109\3\3\10\0\27\3"+ + "\1\362\15\3\30\0\4\3\2\0\11\3\1\0\5\3"+ + "\10\0\10\3\1\363\16\3\30\0\4\3\2\0\11\3"+ + "\1\0\5\3\10\0\2\3\1\364\24\3\30\0\4\3"+ + "\2\0\11\3\1\0\5\3\10\0\13\3\1\365\13\3"+ + "\31\0\1\73\11\0\2\73\44\0\3\73\30\0\2\73"+ + "\2\206\1\0\2\73\1\366\1\367\1\370\5\73\1\0"+ + "\1\73\1\206\3\73\10\0\20\73\1\206\6\73\30\0"+ + "\2\73\2\206\1\0\2\73\1\366\1\371\1\73\1\366"+ + "\4\73\1\0\1\73\1\206\3\73\10\0\20\73\1\206"+ + "\6\73\30\0\2\73\2\206\1\0\2\73\1\366\1\73"+ + "\1\371\1\366\4\73\1\0\1\73\1\206\3\73\10\0"+ + "\20\73\1\206\6\73\30\0\2\73\2\206\1\0\3\73"+ + "\1\367\1\370\1\366\4\73\1\0\1\73\1\206\3\73"+ + "\10\0\20\73\1\206\6\73\30\0\4\3\2\0\11\3"+ + "\1\0\5\3\10\0\14\3\1\372\12\3\30\0\4\3"+ + "\2\0\11\3\1\0\5\3\10\0\10\3\1\373\16\3"+ + "\30\0\4\3\2\0\11\3\1\0\5\3\10\0\1\3"+ + "\1\374\25\3\30\0\4\3\2\0\11\3\1\0\5\3"+ + "\10\0\3\3\1\375\23\3\30\0\4\3\2\0\11\3"+ + "\1\0\5\3\10\0\1\3\1\376\25\3\30\0\4\3"+ + "\2\0\11\3\1\0\5\3\10\0\4\3\1\377\22\3"+ "\30\0\4\3\2\0\11\3\1\0\5\3\10\0\2\3"+ - "\1\u010a\24\3\30\0\4\3\2\0\11\3\1\0\5\3"+ - "\10\0\5\3\1\u010b\21\3\30\0\4\3\2\0\11\3"+ - "\1\0\5\3\10\0\10\3\1\u010c\16\3\30\0\4\3"+ - "\2\0\1\3\1\u010d\7\3\1\0\5\3\10\0\27\3"+ - "\30\0\4\3\2\0\3\3\1\u010e\5\3\1\0\5\3"+ - "\10\0\27\3\30\0\4\3\2\0\11\3\1\0\1\3"+ - "\1\u010f\3\3\10\0\27\3\30\0\4\3\2\0\11\3"+ - "\1\0\3\3\1\u0110\1\3\10\0\27\3\30\0\4\3"+ - "\2\0\3\3\1\u0111\5\3\1\0\5\3\10\0\27\3"+ + "\1\u0100\7\3\1\u0101\14\3\30\0\4\3\2\0\11\3"+ + "\1\0\5\3\10\0\3\3\1\u0102\23\3\30\0\4\3"+ + "\2\0\11\3\1\0\5\3\10\0\6\3\1\u0103\20\3"+ + "\30\0\4\3\2\0\11\3\1\0\5\3\10\0\11\3"+ + "\1\u0104\15\3\30\0\4\3\2\0\11\3\1\0\5\3"+ + "\10\0\1\3\1\u0105\25\3\30\0\4\3\2\0\11\3"+ + "\1\0\5\3\10\0\11\3\1\u0106\15\3\30\0\4\3"+ + "\2\0\11\3\1\0\5\3\10\0\5\3\1\u0107\21\3"+ "\30\0\4\3\2\0\11\3\1\0\5\3\10\0\1\3"+ - "\1\u0112\25\3\30\0\4\3\2\0\11\3\1\0\5\3"+ - "\10\0\11\3\1\u0113\15\3\30\0\4\3\2\0\11\3"+ - "\1\0\5\3\10\0\11\3\1\u0114\15\3\30\0\4\3"+ - "\2\0\11\3\1\0\5\3\10\0\1\3\1\u0115\25\3"+ - "\30\0\4\3\2\0\11\3\1\0\5\3\10\0\13\3"+ - "\1\u0116\13\3\30\0\4\3\2\0\11\3\1\0\5\3"+ - "\10\0\3\3\1\u0117\23\3\30\0\4\3\2\0\11\3"+ - "\1\0\5\3\10\0\20\3\1\u0118\6\3\30\0\4\3"+ - "\2\0\11\3\1\0\5\3\10\0\6\3\1\u0119\20\3"+ + "\1\u0108\25\3\30\0\4\3\2\0\11\3\1\0\1\3"+ + "\1\u0109\3\3\10\0\27\3\30\0\4\3\2\0\11\3"+ + "\1\0\5\3\10\0\2\3\1\u010a\24\3\30\0\4\3"+ + "\2\0\11\3\1\0\5\3\10\0\5\3\1\u010b\21\3"+ "\30\0\4\3\2\0\11\3\1\0\5\3\10\0\10\3"+ - "\1\u011a\2\3\1\u011b\13\3\30\0\4\3\2\0\11\3"+ - "\1\0\5\3\10\0\14\3\1\u011c\12\3\30\0\4\3"+ - "\2\0\3\3\1\u011d\5\3\1\0\5\3\10\0\1\3"+ - "\1\u011e\25\3\30\0\4\3\2\0\3\3\1\u011f\5\3"+ + "\1\u010c\16\3\30\0\4\3\2\0\1\3\1\u010d\7\3"+ + "\1\0\5\3\10\0\27\3\30\0\4\3\2\0\3\3"+ + "\1\u010e\5\3\1\0\5\3\10\0\27\3\30\0\4\3"+ + "\2\0\11\3\1\0\1\3\1\u010f\3\3\10\0\27\3"+ + "\30\0\4\3\2\0\11\3\1\0\3\3\1\u0110\1\3"+ + "\10\0\27\3\30\0\4\3\2\0\3\3\1\u0111\5\3"+ "\1\0\5\3\10\0\27\3\30\0\4\3\2\0\11\3"+ - "\1\0\5\3\10\0\20\3\1\u0120\6\3\30\0\2\73"+ - "\2\206\1\0\3\73\1\366\6\73\1\0\1\73\1\206"+ - "\3\73\10\0\20\73\1\206\6\73\30\0\2\73\2\206"+ - "\1\0\4\73\1\366\5\73\1\0\1\73\1\206\3\73"+ - "\10\0\20\73\1\206\6\73\30\0\2\73\2\206\1\0"+ - "\2\73\1\366\2\73\1\366\4\73\1\0\1\73\1\206"+ - "\3\73\10\0\20\73\1\206\6\73\30\0\4\3\2\0"+ - "\11\3\1\0\5\3\10\0\10\3\1\u0121\16\3\30\0"+ - "\4\3\2\0\11\3\1\0\5\3\10\0\11\3\1\u0122"+ - "\15\3\30\0\4\3\2\0\11\3\1\0\5\3\10\0"+ - "\10\3\1\u0123\16\3\30\0\4\3\2\0\11\3\1\0"+ - "\2\3\1\u0124\2\3\10\0\27\3\30\0\4\3\2\0"+ - "\11\3\1\0\1\3\1\u0125\3\3\10\0\27\3\30\0"+ - "\4\3\2\0\11\3\1\0\5\3\10\0\10\3\1\u0126"+ + "\1\0\5\3\10\0\1\3\1\u0112\25\3\30\0\4\3"+ + "\2\0\11\3\1\0\5\3\10\0\11\3\1\u0113\15\3"+ + "\30\0\4\3\2\0\11\3\1\0\5\3\10\0\11\3"+ + "\1\u0114\15\3\30\0\4\3\2\0\11\3\1\0\5\3"+ + "\10\0\1\3\1\u0115\25\3\30\0\4\3\2\0\11\3"+ + "\1\0\5\3\10\0\13\3\1\u0116\13\3\30\0\4\3"+ + "\2\0\11\3\1\0\5\3\10\0\3\3\1\u0117\23\3"+ + "\30\0\4\3\2\0\11\3\1\0\5\3\10\0\20\3"+ + "\1\u0118\6\3\30\0\4\3\2\0\11\3\1\0\5\3"+ + "\10\0\6\3\1\u0119\20\3\30\0\4\3\2\0\11\3"+ + "\1\0\5\3\10\0\10\3\1\u011a\2\3\1\u011b\13\3"+ + "\30\0\4\3\2\0\11\3\1\0\5\3\10\0\14\3"+ + "\1\u011c\12\3\30\0\4\3\2\0\3\3\1\u011d\5\3"+ + "\1\0\5\3\10\0\1\3\1\u011e\25\3\30\0\4\3"+ + "\2\0\3\3\1\u011f\5\3\1\0\5\3\10\0\27\3"+ + "\30\0\4\3\2\0\11\3\1\0\5\3\10\0\20\3"+ + "\1\u0120\6\3\30\0\2\73\2\206\1\0\3\73\1\366"+ + "\6\73\1\0\1\73\1\206\3\73\10\0\20\73\1\206"+ + "\6\73\30\0\2\73\2\206\1\0\4\73\1\366\5\73"+ + "\1\0\1\73\1\206\3\73\10\0\20\73\1\206\6\73"+ + "\30\0\2\73\2\206\1\0\2\73\1\366\2\73\1\366"+ + "\4\73\1\0\1\73\1\206\3\73\10\0\20\73\1\206"+ + "\6\73\30\0\4\3\2\0\11\3\1\0\5\3\10\0"+ + "\10\3\1\u0121\16\3\30\0\4\3\2\0\11\3\1\0"+ + "\5\3\10\0\11\3\1\u0122\15\3\30\0\4\3\2\0"+ + "\11\3\1\0\5\3\10\0\10\3\1\u0123\16\3\30\0"+ + "\4\3\2\0\11\3\1\0\2\3\1\u0124\2\3\10\0"+ + "\27\3\30\0\4\3\2\0\11\3\1\0\1\3\1\u0125"+ + "\3\3\10\0\27\3\30\0\4\3\2\0\11\3\1\0"+ + "\5\3\10\0\10\3\1\u0126\16\3\30\0\4\3\2\0"+ + "\11\3\1\0\5\3\10\0\1\3\1\u0127\25\3\30\0"+ + "\4\3\2\0\11\3\1\0\5\3\10\0\10\3\1\u0128"+ "\16\3\30\0\4\3\2\0\11\3\1\0\5\3\10\0"+ - "\1\3\1\u0127\25\3\30\0\4\3\2\0\11\3\1\0"+ - "\5\3\10\0\10\3\1\u0128\16\3\30\0\4\3\2\0"+ - "\11\3\1\0\5\3\10\0\5\3\1\u0129\21\3\30\0"+ - "\4\3\2\0\11\3\1\0\5\3\10\0\1\3\1\u012a"+ - "\25\3\30\0\4\3\2\0\11\3\1\0\5\3\10\0"+ - "\12\3\1\u012b\14\3\30\0\4\3\2\0\11\3\1\0"+ - "\2\3\1\u012c\2\3\10\0\27\3\30\0\4\3\2\0"+ - "\11\3\1\0\5\3\10\0\7\3\1\u012d\17\3\30\0"+ - "\4\3\2\0\11\3\1\0\1\3\1\u012e\3\3\10\0"+ - "\27\3\30\0\4\3\2\0\3\3\1\u012f\5\3\1\0"+ - "\5\3\10\0\27\3\30\0\4\3\2\0\11\3\1\0"+ - "\1\3\1\u0130\3\3\10\0\27\3\30\0\4\3\2\0"+ - "\11\3\1\0\1\3\1\u0131\3\3\10\0\27\3\30\0"+ - "\4\3\2\0\11\3\1\0\5\3\10\0\1\u0132\26\3"+ - "\30\0\4\3\2\0\11\3\1\0\1\3\1\u0133\3\3"+ - "\10\0\27\3\30\0\4\3\2\0\3\3\1\u0134\5\3"+ - "\1\0\5\3\10\0\27\3\30\0\4\3\2\0\11\3"+ - "\1\0\5\3\10\0\14\3\1\u0135\12\3\30\0\4\3"+ - "\2\0\11\3\1\0\5\3\10\0\3\3\1\u0136\23\3"+ - "\30\0\4\3\2\0\11\3\1\0\5\3\10\0\21\3"+ - "\1\u0137\5\3\30\0\4\3\2\0\11\3\1\0\1\3"+ - "\1\u0138\3\3\10\0\27\3\30\0\4\3\2\0\11\3"+ - "\1\0\1\3\1\u0139\3\3\10\0\27\3\30\0\4\3"+ - "\2\0\11\3\1\0\5\3\10\0\1\3\1\u013a\25\3"+ - "\30\0\4\3\2\0\11\3\1\0\5\3\10\0\6\3"+ - "\1\u013b\20\3\30\0\4\3\2\0\11\3\1\0\5\3"+ - "\10\0\20\3\1\u013c\6\3\30\0\4\3\2\0\11\3"+ - "\1\0\5\3\10\0\10\3\1\u013d\16\3\30\0\4\3"+ - "\2\0\11\3\1\0\5\3\10\0\11\3\1\u013e\15\3"+ - "\30\0\4\3\2\0\11\3\1\0\5\3\10\0\24\3"+ - "\1\u013f\2\3\30\0\4\3\2\0\3\3\1\u0140\5\3"+ + "\5\3\1\u0129\21\3\30\0\4\3\2\0\11\3\1\0"+ + "\5\3\10\0\1\3\1\u012a\25\3\30\0\4\3\2\0"+ + "\11\3\1\0\5\3\10\0\12\3\1\u012b\14\3\30\0"+ + "\4\3\2\0\11\3\1\0\2\3\1\u012c\2\3\10\0"+ + "\27\3\30\0\4\3\2\0\11\3\1\0\5\3\10\0"+ + "\7\3\1\u012d\17\3\30\0\4\3\2\0\11\3\1\0"+ + "\1\3\1\u012e\3\3\10\0\27\3\30\0\4\3\2\0"+ + "\3\3\1\u012f\5\3\1\0\5\3\10\0\27\3\30\0"+ + "\4\3\2\0\11\3\1\0\1\3\1\u0130\3\3\10\0"+ + "\27\3\30\0\4\3\2\0\11\3\1\0\1\3\1\u0131"+ + "\3\3\10\0\27\3\30\0\4\3\2\0\11\3\1\0"+ + "\5\3\10\0\1\u0132\26\3\30\0\4\3\2\0\11\3"+ + "\1\0\1\3\1\u0133\3\3\10\0\27\3\30\0\4\3"+ + "\2\0\3\3\1\u0134\5\3\1\0\5\3\10\0\27\3"+ + "\30\0\4\3\2\0\11\3\1\0\5\3\10\0\14\3"+ + "\1\u0135\12\3\30\0\4\3\2\0\11\3\1\0\5\3"+ + "\10\0\3\3\1\u0136\23\3\30\0\4\3\2\0\11\3"+ + "\1\0\5\3\10\0\21\3\1\u0137\5\3\30\0\4\3"+ + "\2\0\11\3\1\0\1\3\1\u0138\3\3\10\0\27\3"+ + "\30\0\4\3\2\0\11\3\1\0\1\3\1\u0139\3\3"+ + "\10\0\27\3\30\0\4\3\2\0\11\3\1\0\5\3"+ + "\10\0\1\3\1\u013a\25\3\30\0\4\3\2\0\11\3"+ + "\1\0\5\3\10\0\6\3\1\u013b\20\3\30\0\4\3"+ + "\2\0\11\3\1\0\5\3\10\0\20\3\1\u013c\6\3"+ + "\30\0\4\3\2\0\11\3\1\0\5\3\10\0\10\3"+ + "\1\u013d\16\3\30\0\4\3\2\0\11\3\1\0\5\3"+ + "\10\0\11\3\1\u013e\15\3\30\0\4\3\2\0\11\3"+ + "\1\0\5\3\10\0\24\3\1\u013f\2\3\30\0\4\3"+ + "\2\0\3\3\1\u0140\5\3\1\0\5\3\10\0\27\3"+ + "\30\0\4\3\2\0\11\3\1\0\1\3\1\u0141\3\3"+ + "\10\0\27\3\30\0\4\3\2\0\3\3\1\u0142\5\3"+ "\1\0\5\3\10\0\27\3\30\0\4\3\2\0\11\3"+ - "\1\0\1\3\1\u0141\3\3\10\0\27\3\30\0\4\3"+ - "\2\0\3\3\1\u0142\5\3\1\0\5\3\10\0\27\3"+ - "\30\0\4\3\2\0\11\3\1\0\2\3\1\u0143\2\3"+ - "\10\0\27\3\30\0\4\3\2\0\11\3\1\0\1\3"+ - "\1\u0144\3\3\10\0\27\3\30\0\4\3\2\0\1\3"+ - "\1\u0145\7\3\1\0\5\3\10\0\27\3\30\0\4\3"+ - "\2\0\11\3\1\0\5\3\10\0\1\3\1\u0146\25\3"+ - "\30\0\4\3\2\0\3\3\1\u0147\5\3\1\0\5\3"+ + "\1\0\2\3\1\u0143\2\3\10\0\27\3\30\0\4\3"+ + "\2\0\11\3\1\0\1\3\1\u0144\3\3\10\0\27\3"+ + "\30\0\4\3\2\0\1\3\1\u0145\7\3\1\0\5\3"+ "\10\0\27\3\30\0\4\3\2\0\11\3\1\0\5\3"+ - "\10\0\1\3\1\u0148\25\3\30\0\4\3\2\0\11\3"+ - "\1\0\5\3\10\0\10\3\1\u0149\16\3\30\0\4\3"+ - "\2\0\11\3\1\0\5\3\10\0\1\3\1\u014a\25\3"+ + "\10\0\1\3\1\u0146\25\3\30\0\4\3\2\0\3\3"+ + "\1\u0147\5\3\1\0\5\3\10\0\27\3\30\0\4\3"+ + "\2\0\11\3\1\0\5\3\10\0\1\3\1\u0148\25\3"+ "\30\0\4\3\2\0\11\3\1\0\5\3\10\0\10\3"+ - "\1\u014b\16\3\30\0\4\3\2\0\11\3\1\0\5\3"+ - "\10\0\11\3\1\u014c\15\3\30\0\4\3\2\0\11\3"+ - "\1\0\5\3\10\0\21\3\1\u014d\5\3\30\0\4\3"+ - "\2\0\11\3\1\0\5\3\10\0\1\u014e\26\3\30\0"+ - "\4\3\2\0\11\3\1\0\5\3\10\0\2\3\1\u014f"+ - "\24\3\30\0\4\3\2\0\11\3\1\0\5\3\10\0"+ - "\3\3\1\u0150\23\3\30\0\4\3\2\0\11\3\1\0"+ - "\5\3\10\0\1\3\1\u0151\25\3\30\0\4\3\2\0"+ - "\3\3\1\u0152\5\3\1\0\5\3\10\0\27\3\30\0"+ - "\4\3\2\0\11\3\1\0\1\3\1\u0153\3\3\10\0"+ - "\27\3\30\0\4\3\2\0\11\3\1\0\5\3\10\0"+ - "\10\3\1\u0154\16\3\30\0\4\3\2\0\11\3\1\0"+ - "\5\3\10\0\25\3\1\u0155\1\3\30\0\4\3\2\0"+ - "\11\3\1\0\1\3\1\u0156\3\3\10\0\27\3\30\0"+ - "\4\3\2\0\11\3\1\0\5\3\10\0\12\3\1\u0157"+ - "\14\3\30\0\4\3\2\0\11\3\1\0\1\3\1\u0158"+ + "\1\u0149\16\3\30\0\4\3\2\0\11\3\1\0\5\3"+ + "\10\0\1\3\1\u014a\25\3\30\0\4\3\2\0\11\3"+ + "\1\0\5\3\10\0\10\3\1\u014b\16\3\30\0\4\3"+ + "\2\0\11\3\1\0\5\3\10\0\11\3\1\u014c\15\3"+ + "\30\0\4\3\2\0\11\3\1\0\5\3\10\0\21\3"+ + "\1\u014d\5\3\30\0\4\3\2\0\11\3\1\0\5\3"+ + "\10\0\1\u014e\26\3\30\0\4\3\2\0\11\3\1\0"+ + "\5\3\10\0\2\3\1\u014f\24\3\30\0\4\3\2\0"+ + "\11\3\1\0\5\3\10\0\3\3\1\u0150\23\3\30\0"+ + "\4\3\2\0\11\3\1\0\5\3\10\0\1\3\1\u0151"+ + "\25\3\30\0\4\3\2\0\3\3\1\u0152\5\3\1\0"+ + "\5\3\10\0\27\3\30\0\4\3\2\0\11\3\1\0"+ + "\1\3\1\u0153\3\3\10\0\27\3\30\0\4\3\2\0"+ + "\11\3\1\0\5\3\10\0\10\3\1\u0154\16\3\30\0"+ + "\4\3\2\0\11\3\1\0\5\3\10\0\25\3\1\u0155"+ + "\1\3\30\0\4\3\2\0\11\3\1\0\1\3\1\u0156"+ "\3\3\10\0\27\3\30\0\4\3\2\0\11\3\1\0"+ - "\5\3\10\0\3\3\1\u0159\23\3\30\0\4\3\2\0"+ - "\11\3\1\0\1\3\1\u015a\3\3\10\0\27\3\30\0"+ - "\4\3\2\0\11\3\1\0\5\3\10\0\21\3\1\u015b"+ - "\5\3\30\0\4\3\2\0\11\3\1\0\5\3\10\0"+ - "\11\3\1\u015c\15\3\30\0\4\3\2\0\11\3\1\0"+ - "\5\3\10\0\6\3\1\u015d\20\3\30\0\4\3\2\0"+ - "\11\3\1\0\5\3\10\0\11\3\1\u015e\15\3\30\0"+ - "\4\3\2\0\11\3\1\0\5\3\10\0\2\3\1\u015f"+ - "\24\3\30\0\4\3\2\0\11\3\1\0\3\3\1\u0160"+ - "\1\3\10\0\27\3\30\0\4\3\2\0\11\3\1\0"+ - "\5\3\10\0\12\3\1\u0161\14\3\30\0\4\3\2\0"+ - "\11\3\1\0\2\3\1\u0162\2\3\10\0\27\3\30\0"+ - "\4\3\2\0\11\3\1\0\5\3\10\0\11\3\1\u0163"+ - "\15\3\30\0\4\3\2\0\11\3\1\0\5\3\10\0"+ - "\21\3\1\u0164\5\3\30\0\4\3\2\0\11\3\1\0"+ - "\1\3\1\u0165\3\3\10\0\27\3\30\0\4\3\2\0"+ - "\11\3\1\0\5\3\10\0\12\3\1\u0166\14\3\30\0"+ - "\4\3\2\0\11\3\1\0\1\3\1\u0167\3\3\10\0"+ + "\5\3\10\0\12\3\1\u0157\14\3\30\0\4\3\2\0"+ + "\11\3\1\0\1\3\1\u0158\3\3\10\0\27\3\30\0"+ + "\4\3\2\0\11\3\1\0\5\3\10\0\3\3\1\u0159"+ + "\23\3\30\0\4\3\2\0\11\3\1\0\1\3\1\u015a"+ + "\3\3\10\0\27\3\30\0\4\3\2\0\11\3\1\0"+ + "\5\3\10\0\21\3\1\u015b\5\3\30\0\4\3\2\0"+ + "\11\3\1\0\5\3\10\0\11\3\1\u015c\15\3\30\0"+ + "\4\3\2\0\11\3\1\0\5\3\10\0\6\3\1\u015d"+ + "\20\3\30\0\4\3\2\0\11\3\1\0\5\3\10\0"+ + "\11\3\1\u015e\15\3\30\0\4\3\2\0\11\3\1\0"+ + "\5\3\10\0\2\3\1\u015f\24\3\30\0\4\3\2\0"+ + "\11\3\1\0\3\3\1\u0160\1\3\10\0\27\3\30\0"+ + "\4\3\2\0\11\3\1\0\5\3\10\0\12\3\1\u0161"+ + "\14\3\30\0\4\3\2\0\11\3\1\0\2\3\1\u0162"+ + "\2\3\10\0\27\3\30\0\4\3\2\0\11\3\1\0"+ + "\5\3\10\0\11\3\1\u0163\15\3\30\0\4\3\2\0"+ + "\11\3\1\0\5\3\10\0\21\3\1\u0164\5\3\30\0"+ + "\4\3\2\0\11\3\1\0\1\3\1\u0165\3\3\10\0"+ "\27\3\30\0\4\3\2\0\11\3\1\0\5\3\10\0"+ - "\26\3\1\u0168\30\0\4\3\2\0\11\3\1\0\4\3"+ - "\1\u0169\10\0\27\3\30\0\4\3\2\0\11\3\1\0"+ - "\5\3\10\0\21\3\1\u016a\5\3\30\0\4\3\2\0"+ - "\3\3\1\u016b\5\3\1\0\5\3\10\0\27\3\30\0"+ - "\4\3\2\0\11\3\1\0\5\3\10\0\11\3\1\u016c"+ - "\15\3\30\0\4\3\2\0\11\3\1\0\5\3\10\0"+ - "\10\3\1\u016d\16\3\30\0\4\3\2\0\11\3\1\0"+ - "\2\3\1\u016e\2\3\10\0\27\3\30\0\4\3\2\0"+ - "\1\3\1\u016f\7\3\1\0\5\3\10\0\27\3\30\0"+ - "\4\3\2\0\11\3\1\0\5\3\10\0\21\3\1\u0170"+ - "\5\3\30\0\4\3\2\0\11\3\1\0\5\3\10\0"+ - "\5\3\1\u0171\21\3\30\0\4\3\2\0\11\3\1\0"+ - "\5\3\10\0\21\3\1\u0172\5\3\30\0\4\3\2\0"+ - "\11\3\1\0\4\3\1\u0173\10\0\27\3\30\0\4\3"+ - "\2\0\11\3\1\0\5\3\10\0\21\3\1\u0174\5\3"+ - "\30\0\4\3\2\0\11\3\1\0\5\3\10\0\21\3"+ - "\1\u0175\5\3\30\0\4\3\2\0\11\3\1\0\1\3"+ - "\1\u0176\3\3\10\0\27\3\30\0\4\3\2\0\11\3"+ - "\1\0\5\3\10\0\2\3\1\u0177\24\3\30\0\4\3"+ - "\2\0\11\3\1\0\5\3\10\0\21\3\1\u0178\5\3"+ + "\12\3\1\u0166\14\3\30\0\4\3\2\0\11\3\1\0"+ + "\1\3\1\u0167\3\3\10\0\27\3\30\0\4\3\2\0"+ + "\11\3\1\0\5\3\10\0\26\3\1\u0168\30\0\4\3"+ + "\2\0\11\3\1\0\4\3\1\u0169\10\0\27\3\30\0"+ + "\4\3\2\0\11\3\1\0\5\3\10\0\21\3\1\u016a"+ + "\5\3\30\0\4\3\2\0\3\3\1\u016b\5\3\1\0"+ + "\5\3\10\0\27\3\30\0\4\3\2\0\11\3\1\0"+ + "\5\3\10\0\11\3\1\u016c\15\3\30\0\4\3\2\0"+ + "\11\3\1\0\5\3\10\0\10\3\1\u016d\16\3\30\0"+ + "\4\3\2\0\11\3\1\0\2\3\1\u016e\2\3\10\0"+ + "\27\3\30\0\4\3\2\0\1\3\1\u016f\7\3\1\0"+ + "\5\3\10\0\27\3\30\0\4\3\2\0\11\3\1\0"+ + "\5\3\10\0\21\3\1\u0170\5\3\30\0\4\3\2\0"+ + "\11\3\1\0\5\3\10\0\5\3\1\u0171\21\3\30\0"+ + "\4\3\2\0\11\3\1\0\5\3\10\0\21\3\1\u0172"+ + "\5\3\30\0\4\3\2\0\11\3\1\0\4\3\1\u0173"+ + "\10\0\27\3\30\0\4\3\2\0\11\3\1\0\5\3"+ + "\10\0\21\3\1\u0174\5\3\30\0\4\3\2\0\11\3"+ + "\1\0\5\3\10\0\21\3\1\u0175\5\3\30\0\4\3"+ + "\2\0\11\3\1\0\1\3\1\u0176\3\3\10\0\27\3"+ + "\30\0\4\3\2\0\11\3\1\0\5\3\10\0\2\3"+ + "\1\u0177\24\3\30\0\4\3\2\0\11\3\1\0\5\3"+ + "\10\0\21\3\1\u0178\5\3\30\0\4\3\2\0\11\3"+ + "\1\0\5\3\10\0\21\3\1\u0179\5\3\30\0\4\3"+ + "\2\0\11\3\1\0\5\3\10\0\1\3\1\u017a\25\3"+ "\30\0\4\3\2\0\11\3\1\0\5\3\10\0\21\3"+ - "\1\u0179\5\3\30\0\4\3\2\0\11\3\1\0\5\3"+ - "\10\0\1\3\1\u017a\25\3\30\0\4\3\2\0\11\3"+ - "\1\0\5\3\10\0\21\3\1\u017b\5\3\30\0\4\3"+ - "\2\0\11\3\1\0\5\3\10\0\1\3\1\u017c\25\3"+ + "\1\u017b\5\3\30\0\4\3\2\0\11\3\1\0\5\3"+ + "\10\0\1\3\1\u017c\25\3\30\0\4\3\2\0\11\3"+ + "\1\0\5\3\10\0\21\3\1\u017d\5\3\30\0\4\3"+ + "\2\0\11\3\1\0\5\3\10\0\21\3\1\u017e\5\3"+ "\30\0\4\3\2\0\11\3\1\0\5\3\10\0\21\3"+ - "\1\u017d\5\3\30\0\4\3\2\0\11\3\1\0\5\3"+ - "\10\0\21\3\1\u017e\5\3\30\0\4\3\2\0\11\3"+ - "\1\0\5\3\10\0\21\3\1\u017f\5\3\30\0\4\3"+ - "\2\0\11\3\1\0\5\3\10\0\21\3\1\u0180\5\3"+ - "\30\0\4\3\2\0\11\3\1\0\5\3\10\0\10\3"+ - "\1\u0181\16\3\30\0\4\3\2\0\11\3\1\0\1\u0182"+ - "\4\3\10\0\1\3\1\u0183\1\u0184\24\3\30\0\4\3"+ - "\2\0\11\3\1\0\5\3\10\0\21\3\1\u0185\5\3"+ - "\30\0\4\3\2\0\11\3\1\0\1\3\1\u0186\3\3"+ - "\10\0\27\3\30\0\4\3\2\0\11\3\1\0\5\3"+ - "\10\0\21\3\1\u0187\5\3\30\0\4\3\2\0\11\3"+ - "\1\0\5\3\10\0\21\3\1\u0188\5\3\30\0\4\3"+ - "\2\0\11\3\1\0\5\3\10\0\21\3\1\u0189\5\3"+ + "\1\u017f\5\3\30\0\4\3\2\0\11\3\1\0\5\3"+ + "\10\0\21\3\1\u0180\5\3\30\0\4\3\2\0\11\3"+ + "\1\0\5\3\10\0\10\3\1\u0181\16\3\30\0\4\3"+ + "\2\0\11\3\1\0\1\u0182\4\3\10\0\1\3\1\u0183"+ + "\1\u0184\24\3\30\0\4\3\2\0\11\3\1\0\5\3"+ + "\10\0\21\3\1\u0185\5\3\30\0\4\3\2\0\11\3"+ + "\1\0\1\3\1\u0186\3\3\10\0\27\3\30\0\4\3"+ + "\2\0\11\3\1\0\5\3\10\0\21\3\1\u0187\5\3"+ "\30\0\4\3\2\0\11\3\1\0\5\3\10\0\21\3"+ - "\1\u018a\5\3\30\0\4\3\2\0\11\3\1\0\5\3"+ - "\10\0\1\u018b\26\3\30\0\4\3\2\0\11\3\1\0"+ - "\5\3\10\0\17\3\1\u018c\7\3\30\0\4\3\2\0"+ - "\11\3\1\0\2\3\1\u018d\2\3\10\0\27\3\30\0"+ - "\4\3\2\0\11\3\1\0\5\3\10\0\21\3\1\u018e"+ - "\5\3\30\0\4\3\2\0\11\3\1\0\5\3\10\0"+ - "\21\3\1\u018f\5\3\30\0\4\3\2\0\11\3\1\0"+ - "\5\3\10\0\21\3\1\u0190\5\3\30\0\4\3\2\0"+ - "\11\3\1\0\5\3\10\0\21\3\1\u0191\5\3\30\0"+ - "\4\3\2\0\11\3\1\0\5\3\10\0\20\3\1\u0192"+ - "\6\3\30\0\4\3\2\0\11\3\1\0\2\3\1\u0193"+ + "\1\u0188\5\3\30\0\4\3\2\0\11\3\1\0\5\3"+ + "\10\0\21\3\1\u0189\5\3\30\0\4\3\2\0\11\3"+ + "\1\0\5\3\10\0\21\3\1\u018a\5\3\30\0\4\3"+ + "\2\0\11\3\1\0\5\3\10\0\1\u018b\26\3\30\0"+ + "\4\3\2\0\11\3\1\0\5\3\10\0\17\3\1\u018c"+ + "\7\3\30\0\4\3\2\0\11\3\1\0\2\3\1\u018d"+ "\2\3\10\0\27\3\30\0\4\3\2\0\11\3\1\0"+ - "\5\3\10\0\21\3\1\u0194\5\3\30\0\4\3\2\0"+ - "\3\3\1\u0195\5\3\1\0\5\3\10\0\1\u0196\26\3"+ - "\30\0\4\3\2\0\11\3\1\0\1\3\1\u0197\3\3"+ - "\10\0\27\3\30\0\4\3\2\0\11\3\1\0\5\3"+ - "\10\0\6\3\1\u0198\20\3\30\0\4\3\2\0\11\3"+ - "\1\0\5\3\10\0\11\3\1\u0199\15\3\30\0\4\3"+ - "\2\0\11\3\1\0\5\3\10\0\3\3\1\u019a\23\3"+ + "\5\3\10\0\21\3\1\u018e\5\3\30\0\4\3\2\0"+ + "\11\3\1\0\5\3\10\0\21\3\1\u018f\5\3\30\0"+ + "\4\3\2\0\11\3\1\0\5\3\10\0\21\3\1\u0190"+ + "\5\3\30\0\4\3\2\0\11\3\1\0\5\3\10\0"+ + "\21\3\1\u0191\5\3\30\0\4\3\2\0\11\3\1\0"+ + "\5\3\10\0\20\3\1\u0192\6\3\30\0\4\3\2\0"+ + "\11\3\1\0\2\3\1\u0193\2\3\10\0\27\3\30\0"+ + "\4\3\2\0\11\3\1\0\5\3\10\0\21\3\1\u0194"+ + "\5\3\30\0\4\3\2\0\3\3\1\u0195\5\3\1\0"+ + "\5\3\10\0\1\u0196\26\3\30\0\4\3\2\0\11\3"+ + "\1\0\1\3\1\u0197\3\3\10\0\27\3\30\0\4\3"+ + "\2\0\11\3\1\0\5\3\10\0\6\3\1\u0198\20\3"+ + "\30\0\4\3\2\0\11\3\1\0\5\3\10\0\11\3"+ + "\1\u0199\15\3\30\0\4\3\2\0\11\3\1\0\5\3"+ + "\10\0\3\3\1\u019a\23\3\30\0\4\3\2\0\11\3"+ + "\1\0\5\3\10\0\6\3\1\u019b\20\3\30\0\4\3"+ + "\2\0\11\3\1\0\1\3\1\u019c\3\3\10\0\27\3"+ "\30\0\4\3\2\0\11\3\1\0\5\3\10\0\6\3"+ - "\1\u019b\20\3\30\0\4\3\2\0\11\3\1\0\1\3"+ - "\1\u019c\3\3\10\0\27\3\30\0\4\3\2\0\11\3"+ - "\1\0\5\3\10\0\6\3\1\u019d\20\3\30\0\4\3"+ - "\2\0\11\3\1\0\5\3\10\0\14\3\1\u019e\12\3"+ - "\30\0\4\3\2\0\11\3\1\0\5\3\10\0\21\3"+ - "\1\u019f\5\3\30\0\4\3\2\0\11\3\1\0\5\3"+ - "\10\0\1\3\1\u01a0\25\3\30\0\4\3\2\0\11\3"+ - "\1\0\5\3\10\0\1\3\1\u01a1\25\3\30\0\4\3"+ - "\2\0\11\3\1\0\5\3\10\0\5\3\1\u01a2\21\3"+ - "\30\0\4\3\2\0\11\3\1\0\5\3\10\0\2\3"+ - "\1\u01a3\24\3\30\0\4\3\2\0\11\3\1\0\5\3"+ - "\10\0\2\3\1\u01a4\24\3\30\0\4\3\2\0\11\3"+ - "\1\0\2\3\1\u01a5\2\3\10\0\27\3\30\0\4\3"+ - "\2\0\11\3\1\0\5\3\10\0\13\3\1\u01a6\13\3"+ - "\30\0\4\3\2\0\11\3\1\0\5\3\10\0\20\3"+ - "\1\u01a7\6\3\30\0\4\3\2\0\11\3\1\0\5\3"+ - "\10\0\1\u01a8\26\3\30\0\4\3\2\0\11\3\1\0"+ - "\5\3\10\0\1\3\1\u01a9\25\3\30\0\4\3\2\0"+ - "\11\3\1\0\5\3\10\0\11\3\1\u01aa\15\3\30\0"+ - "\4\3\2\0\11\3\1\0\3\3\1\u01ab\1\3\10\0"+ - "\27\3\30\0\4\3\2\0\3\3\1\u01ac\5\3\1\0"+ - "\5\3\10\0\27\3\30\0\4\3\2\0\11\3\1\0"+ - "\1\3\1\u01ad\3\3\10\0\27\3\30\0\4\3\2\0"+ - "\11\3\1\0\5\3\10\0\21\3\1\u01ae\5\3\30\0"+ - "\4\3\2\0\11\3\1\0\5\3\10\0\20\3\1\u01af"+ - "\6\3\27\0"; + "\1\u019d\20\3\30\0\4\3\2\0\11\3\1\0\5\3"+ + "\10\0\14\3\1\u019e\12\3\30\0\4\3\2\0\11\3"+ + "\1\0\5\3\10\0\21\3\1\u019f\5\3\30\0\4\3"+ + "\2\0\11\3\1\0\5\3\10\0\1\3\1\u01a0\25\3"+ + "\30\0\4\3\2\0\11\3\1\0\5\3\10\0\1\3"+ + "\1\u01a1\25\3\30\0\4\3\2\0\11\3\1\0\5\3"+ + "\10\0\5\3\1\u01a2\21\3\30\0\4\3\2\0\11\3"+ + "\1\0\5\3\10\0\2\3\1\u01a3\24\3\30\0\4\3"+ + "\2\0\11\3\1\0\5\3\10\0\2\3\1\u01a4\24\3"+ + "\30\0\4\3\2\0\11\3\1\0\2\3\1\u01a5\2\3"+ + "\10\0\27\3\30\0\4\3\2\0\11\3\1\0\5\3"+ + "\10\0\13\3\1\u01a6\13\3\30\0\4\3\2\0\11\3"+ + "\1\0\5\3\10\0\20\3\1\u01a7\6\3\30\0\4\3"+ + "\2\0\11\3\1\0\5\3\10\0\1\u01a8\26\3\30\0"+ + "\4\3\2\0\11\3\1\0\5\3\10\0\1\3\1\u01a9"+ + "\25\3\30\0\4\3\2\0\11\3\1\0\5\3\10\0"+ + "\11\3\1\u01aa\15\3\30\0\4\3\2\0\11\3\1\0"+ + "\3\3\1\u01ab\1\3\10\0\27\3\30\0\4\3\2\0"+ + "\3\3\1\u01ac\5\3\1\0\5\3\10\0\27\3\30\0"+ + "\4\3\2\0\11\3\1\0\1\3\1\u01ad\3\3\10\0"+ + "\27\3\30\0\4\3\2\0\11\3\1\0\5\3\10\0"+ + "\21\3\1\u01ae\5\3\30\0\4\3\2\0\11\3\1\0"+ + "\5\3\10\0\20\3\1\u01af\6\3\27\0"; private static int [] zzUnpackTrans() { int [] result = new int[25308]; @@ -1185,7 +1185,7 @@ else if (zzAtEOF) { { Language syntax = new Language(CTag.RBRACK); syntax.setLocation(new Location(fileName, yyline+1, yycolumn+1)); return syntax; } case 145: break; - case 32: + case 33: { Language syntax = new Language(CTag.SEMICOLON); syntax.setLocation(new Location(fileName, yyline+1, yycolumn+1)); return syntax; } case 146: break; @@ -1253,7 +1253,7 @@ else if (zzAtEOF) { { Language syntax = new Language(CTag.PIPE); syntax.setLocation(new Location(fileName, yyline+1, yycolumn+1)); return syntax; } case 162: break; - case 31: + case 32: { Language syntax = new Language(CTag.COLON); syntax.setLocation(new Location(fileName, yyline+1, yycolumn+1)); return syntax; } case 163: break; @@ -1366,7 +1366,7 @@ else if (zzAtEOF) { { Language syntax = new Language(CTag.UNSIGNED); syntax.setLocation(new Location(fileName, yyline+1, yycolumn+1)); return syntax; } case 190: break; - case 6: + case 31: { Language syntax = new Language(CTag.QUESTION); syntax.setLocation(new Location(fileName, yyline+1, yycolumn+1)); return syntax; } case 191: break; @@ -1578,7 +1578,7 @@ else if (zzAtEOF) { { Language syntax = new Language(CTag.WHILE); syntax.setLocation(new Location(fileName, yyline+1, yycolumn+1)); return syntax; } case 243: break; - case 33: + case 6: { Language syntax = new Language(CTag.AT); syntax.setLocation(new Location(fileName, yyline+1, yycolumn+1)); return syntax; } case 244: break; diff --git a/src/superc/core/ForkMergeParser.java b/src/superc/core/ForkMergeParser.java index 62ac11fb..774d4425 100644 --- a/src/superc/core/ForkMergeParser.java +++ b/src/superc/core/ForkMergeParser.java @@ -98,7 +98,7 @@ private static enum ParsingAction { final private static int STARTSTATE = 0; /** Turn new error handling on. */ - private boolean newErrorHandling = false; + private static boolean newErrorHandling = false; /** Save the disjunction of invalid configurations. */ private boolean saveErrorCond = false; @@ -269,7 +269,7 @@ public ForkMergeParser(ParseTables tables, SemanticValues semanticValues, * merge with others instead of being dropped immediately on parser * error. */ - public void setNewErrorHandling(boolean b) { + public static void setNewErrorHandling(boolean b) { newErrorHandling = b; } diff --git a/src/xtc/Limits.java b/src/xtc/Limits.java index e29a14f4..48f89586 100644 --- a/src/xtc/Limits.java +++ b/src/xtc/Limits.java @@ -45,7 +45,7 @@ private Limits() { /* Nothing to do. */ } // -------------------------------------------------------------------------- /** The name and version of the operating system. */ - public static final String OS = "Linux 5.4.0-65-generic"; + public static final String OS = "Linux 5.4.0-131-generic"; /** The processor architecture. */ public static final String ARCH = "amd64"; From 83bd4fb62f3d6ddcc9c36eaa6a0904bbe8ea720a Mon Sep 17 00:00:00 2001 From: pattersonz Date: Wed, 7 Dec 2022 14:58:38 -0600 Subject: [PATCH 30/77] added option for BDD printing --- src/superc/SugarC.java | 10 ++++++++-- src/superc/core/PresenceConditionManager.java | 7 ++++++- src/superc/core/PresenceConditionManagerZ3.java | 6 +++++- 3 files changed, 19 insertions(+), 4 deletions(-) diff --git a/src/superc/SugarC.java b/src/superc/SugarC.java index 5363c449..c2887566 100644 --- a/src/superc/SugarC.java +++ b/src/superc/SugarC.java @@ -239,8 +239,10 @@ public void init() { bool("suppressConditions", "suppressConditions", false, "Don't print static conditions."). bool("macroTable", "macroTable", false, - "Show the macro symbol table.") - ; + "Show the macro symbol table."). + bool("outputBDD", "outputBDD", false, + "Writes presence conditions in a BDD format."); + } /** @@ -423,6 +425,10 @@ public Node parse(Reader in, File file) throws IOException, ParseException { conditionEvaluator.restrictPrefix(runtime.getString("restrictFreeToPrefix")); } + if (false != runtime.test("outputBDD")) { + presenceConditionManager.force_bdd = true; + } + if (null != runtime.getString("restrictConfigToPrefix")) { // let macros be free! only restrict them when encountered in a // conditional diff --git a/src/superc/core/PresenceConditionManager.java b/src/superc/core/PresenceConditionManager.java index 02c7d0e4..9ad0691d 100644 --- a/src/superc/core/PresenceConditionManager.java +++ b/src/superc/core/PresenceConditionManager.java @@ -54,6 +54,10 @@ */ public class PresenceConditionManager { + /** Setting to determine of the output format should be converted to Z3. */ + public static boolean force_bdd = false; + + /** The BDD factory. */ protected BDDFactory B; @@ -925,6 +929,7 @@ public interface PresenceCondition { * nothing references it anymore. */ public class PresenceConditionBDD implements PresenceCondition { + /** The BDD backing the presence condition. */ protected BDD bdd; @@ -1126,7 +1131,7 @@ public Node tree() { * @throws IOException Because it uses a Writer. */ public void print(Writer writer) throws IOException { - printBDD(bdd, writer); + printBDD(bdd, writer); } diff --git a/src/superc/core/PresenceConditionManagerZ3.java b/src/superc/core/PresenceConditionManagerZ3.java index 78475ad1..62829cf7 100644 --- a/src/superc/core/PresenceConditionManagerZ3.java +++ b/src/superc/core/PresenceConditionManagerZ3.java @@ -296,7 +296,11 @@ public BoolExpr z3() { @Override public void print(Writer writer) throws IOException { - printz3(expr, writer); + if (!PresenceConditionManager.force_bdd) { + printz3(expr, writer); + } else { + printBDD(bdd, writer); + } } /** From 0ba6a0aea69ff498cb78d5cc446181ab910f1bae Mon Sep 17 00:00:00 2001 From: pattersonz Date: Wed, 11 Jan 2023 16:42:17 -0600 Subject: [PATCH 31/77] change SugarC to not simply print bdd/z3 but to fully use one or the other --- src/superc/SugarC.java | 28 ++++++++++++------- src/superc/core/PresenceConditionManager.java | 4 --- .../core/PresenceConditionManagerZ3.java | 4 --- 3 files changed, 18 insertions(+), 18 deletions(-) diff --git a/src/superc/SugarC.java b/src/superc/SugarC.java index c2887566..eb7014f9 100644 --- a/src/superc/SugarC.java +++ b/src/superc/SugarC.java @@ -46,6 +46,7 @@ import superc.core.MacroTable; import superc.core.ExpressionParser; import superc.core.ConditionEvaluatorZ3; +import superc.core.ConditionEvaluator; import superc.core.StopWatch; import superc.core.StreamTimer; import superc.core.Preprocessor; @@ -55,6 +56,7 @@ import superc.core.PresenceConditionManager.PresenceCondition; import superc.core.PresenceConditionManagerZ3; +import superc.core.PresenceConditionManager; import superc.core.Syntax; import superc.core.Syntax.Kind; @@ -240,8 +242,8 @@ public void init() { "Don't print static conditions."). bool("macroTable", "macroTable", false, "Show the macro symbol table."). - bool("outputBDD", "outputBDD", false, - "Writes presence conditions in a BDD format."); + bool("useBDD", "useBDD", false, + "Use BDD for presence condition representation, SugarC uses Z3 by default"); } @@ -403,9 +405,9 @@ public void prepare() { public Node parse(Reader in, File file) throws IOException, ParseException { HeaderFileManager fileManager; MacroTable macroTable; - PresenceConditionManagerZ3 presenceConditionManager; + PresenceConditionManager presenceConditionManager; ExpressionParser expressionParser; - ConditionEvaluatorZ3 conditionEvaluator; + ConditionEvaluator conditionEvaluator; Iterator preprocessor; Node result = null; StopWatch parserTimer = null, preprocessorTimer = null, lexerTimer = null; @@ -413,22 +415,28 @@ public Node parse(Reader in, File file) throws IOException, ParseException { // Initialize the preprocessor with built-ins and command-line // macros and includes. macroTable = new MacroTable(tokenCreator); - presenceConditionManager = new PresenceConditionManagerZ3(); + if (false != runtime.test("useBDD")) { + presenceConditionManager = new PresenceConditionManager(); + } else { + presenceConditionManager = new PresenceConditionManagerZ3(); + } System.err.println(presenceConditionManager.ctx); presenceConditionManager.suppressConditions(runtime.test("suppressConditions")); expressionParser = ExpressionParser.fromRats(); - conditionEvaluator = new ConditionEvaluatorZ3(expressionParser, + if (false != runtime.test("useBDD")) { + conditionEvaluator = new ConditionEvaluator(expressionParser, presenceConditionManager, macroTable); + } else { + conditionEvaluator = new ConditionEvaluatorZ3(expressionParser, + (PresenceConditionManagerZ3)presenceConditionManager, + macroTable); + } if (null != runtime.getString("restrictFreeToPrefix")) { macroTable.restrictPrefix(runtime.getString("restrictFreeToPrefix")); conditionEvaluator.restrictPrefix(runtime.getString("restrictFreeToPrefix")); } - if (false != runtime.test("outputBDD")) { - presenceConditionManager.force_bdd = true; - } - if (null != runtime.getString("restrictConfigToPrefix")) { // let macros be free! only restrict them when encountered in a // conditional diff --git a/src/superc/core/PresenceConditionManager.java b/src/superc/core/PresenceConditionManager.java index 9ad0691d..1a7787e4 100644 --- a/src/superc/core/PresenceConditionManager.java +++ b/src/superc/core/PresenceConditionManager.java @@ -54,10 +54,6 @@ */ public class PresenceConditionManager { - /** Setting to determine of the output format should be converted to Z3. */ - public static boolean force_bdd = false; - - /** The BDD factory. */ protected BDDFactory B; diff --git a/src/superc/core/PresenceConditionManagerZ3.java b/src/superc/core/PresenceConditionManagerZ3.java index 62829cf7..824df575 100644 --- a/src/superc/core/PresenceConditionManagerZ3.java +++ b/src/superc/core/PresenceConditionManagerZ3.java @@ -296,11 +296,7 @@ public BoolExpr z3() { @Override public void print(Writer writer) throws IOException { - if (!PresenceConditionManager.force_bdd) { printz3(expr, writer); - } else { - printBDD(bdd, writer); - } } /** From b7eff74222648e45ef0f460c19326df057fc32df Mon Sep 17 00:00:00 2001 From: pattersonz Date: Mon, 23 Jan 2023 17:41:40 -0600 Subject: [PATCH 32/77] fix bug where void* was not properly allowed in function calls --- src/superc/cdesugarer/CActions.java | 4 +++- src/superc/cdesugarer/desugarer.y | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/superc/cdesugarer/CActions.java b/src/superc/cdesugarer/CActions.java index 774667a5..4cb80fe9 100644 --- a/src/superc/cdesugarer/CActions.java +++ b/src/superc/cdesugarer/CActions.java @@ -5831,7 +5831,6 @@ public Object action(int production, Subparser subparser, Object value) { // similar. List exprlist = (List) getTransformationValue(subparser, 2); - System.err.println(exprlist); Multiverse> exprlistmv = new Multiverse>(new LinkedList(), pc); Multiverse> exprlisttypemv @@ -9384,8 +9383,11 @@ static public Multiverse hasField(UnionT u, Type t, CContext scope, Pre static public boolean compatParam(Type t1u, Type t2u) { Type t1 = t1u.resolve(), t2 = t2u.resolve(); + System.err.println(t1 + " " + t2); if ((t1.isPointer() || t1.isArray()) && t2.isNumber()) { return true; + } else if (t2.isPointer() && t1.isPointer() && ((PointerT)t2).getType().resolve().isVoid()) { + return true; } return compatTypes(t1u,t2u); } diff --git a/src/superc/cdesugarer/desugarer.y b/src/superc/cdesugarer/desugarer.y index 8ca68f65..b89a25e9 100644 --- a/src/superc/cdesugarer/desugarer.y +++ b/src/superc/cdesugarer/desugarer.y @@ -5891,7 +5891,6 @@ FunctionCall: /** nomerge **/ // similar. List exprlist = (List) getTransformationValue(subparser, 2); - System.err.println(exprlist); Multiverse> exprlistmv = new Multiverse>(new LinkedList(), pc); Multiverse> exprlisttypemv @@ -9246,8 +9245,11 @@ static public Multiverse hasField(UnionT u, Type t, CContext scope, Pre static public boolean compatParam(Type t1u, Type t2u) { Type t1 = t1u.resolve(), t2 = t2u.resolve(); + System.err.println(t1 + " " + t2); if ((t1.isPointer() || t1.isArray()) && t2.isNumber()) { return true; + } else if (t2.isPointer() && t1.isPointer() && ((PointerT)t2).getType().resolve().isVoid()) { + return true; } return compatTypes(t1u,t2u); } From 98b6ef8a0c87cac25adbd09ad7021766a105ef8b Mon Sep 17 00:00:00 2001 From: pattersonz Date: Mon, 23 Jan 2023 20:03:04 -0600 Subject: [PATCH 33/77] updated function calls to always allow pointer to pointer as a legal type --- src/superc/cdesugarer/CActions.java | 2 +- src/superc/cdesugarer/desugarer.y | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/superc/cdesugarer/CActions.java b/src/superc/cdesugarer/CActions.java index 4cb80fe9..b100cd8b 100644 --- a/src/superc/cdesugarer/CActions.java +++ b/src/superc/cdesugarer/CActions.java @@ -9386,7 +9386,7 @@ static public boolean compatParam(Type t1u, Type t2u) { System.err.println(t1 + " " + t2); if ((t1.isPointer() || t1.isArray()) && t2.isNumber()) { return true; - } else if (t2.isPointer() && t1.isPointer() && ((PointerT)t2).getType().resolve().isVoid()) { + } else if (t2.isPointer() && t1.isPointer()) { return true; } return compatTypes(t1u,t2u); diff --git a/src/superc/cdesugarer/desugarer.y b/src/superc/cdesugarer/desugarer.y index b89a25e9..9282b4fa 100644 --- a/src/superc/cdesugarer/desugarer.y +++ b/src/superc/cdesugarer/desugarer.y @@ -9248,7 +9248,7 @@ static public boolean compatParam(Type t1u, Type t2u) { System.err.println(t1 + " " + t2); if ((t1.isPointer() || t1.isArray()) && t2.isNumber()) { return true; - } else if (t2.isPointer() && t1.isPointer() && ((PointerT)t2).getType().resolve().isVoid()) { + } else if (t2.isPointer() && t1.isPointer()) { return true; } return compatTypes(t1u,t2u); From 4848719d6e09386ca2eb0f307042f01c809d5e8f Mon Sep 17 00:00:00 2001 From: pattersonz Date: Fri, 27 Jan 2023 15:44:37 -0600 Subject: [PATCH 34/77] split function prototype semantic action to add function name to smybol table before compound statement --- src/superc/cdesugarer/CActions.java | 476 ++++++++++++---------------- src/superc/cdesugarer/desugarer.y | 474 ++++++++++++--------------- 2 files changed, 409 insertions(+), 541 deletions(-) diff --git a/src/superc/cdesugarer/CActions.java b/src/superc/cdesugarer/CActions.java index b100cd8b..952c21fe 100644 --- a/src/superc/cdesugarer/CActions.java +++ b/src/superc/cdesugarer/CActions.java @@ -272,292 +272,226 @@ public Object action(int production, Subparser subparser, Object value) { break; case 12: - {restartLabelFunction();} - break; - - case 13: - { - // similar to Declaration, but different in that this has a - // compoundstatement, while declaration has an initializer. - PresenceCondition pc = subparser.getPresenceCondition(); - - // add all variations of the function declaration to the symtab - CContext scope = (CContext)subparser.scope; + {restartLabelFunction(); + // similar to Declaration, but different in that this has a + // compoundstatement, while declaration has an initializer. + PresenceCondition pc = subparser.getPresenceCondition(); + + // add all variations of the function declaration to the symtab + CContext scope = (CContext)subparser.scope; + + Multiverse prototypeNodemv = staticCondToMultiverse(getNodeAt(subparser, 1), pc); + // produce a multiverse of strings for the body to use + Multiverse prototypestrmv = new Multiverse(); + // collect the set of configurations that have valid function prototypes + for (Element prototypeNode : prototypeNodemv) { + FunctionPrototypeValue prototype = (FunctionPrototypeValue) getTransformationValue(prototypeNode.getData()); + Multiverse typespecifiermv = prototype.typespecifier; + Multiverse declaratormv = prototype.declarator; + Multiverse newDeclarations = new Multiverse(); + + assert scope.isGlobal(); // function definitions should be global. nested functions have a separate subgrammar. + for (Element typespecifier : typespecifiermv) { + PresenceCondition typespecifierCond = prototypeNode.getCondition().and(typespecifier.getCondition()); + for (Element declarator : declaratormv) { + PresenceCondition combinedCond = typespecifierCond.and(declarator.getCondition()); + if (combinedCond.isFalse()) { + combinedCond.delRef(); + continue; + } + String originalName = declarator.getData().getName(); + Declaration originalDeclaration = new Declaration(typespecifier.getData(), declarator.getData()); + + if (originalDeclaration.hasTypeError()) { + // if type is invalid, put an error entry, emit a call + // to the type error function + scope.putError(originalName, combinedCond); + recordInvalidGlobalDeclaration(originalName, combinedCond); + System.err.println(String.format("INFO: \"%s\" has an invalid type specifier", originalName)); + } else if (! originalDeclaration.getType().isFunction()) { + // if type is not a function type, put an error entry, emit a call + // to the type error function + scope.putError(originalName, combinedCond); + recordInvalidGlobalDeclaration(originalName, combinedCond); + System.err.println(String.format("INFO: \"%s\" non-function type specifier in function prototype. this can happen when, e.g., header guards make typedefs conditional.", originalName)); + } else { + // otherwise loop over each existing entry check for + // type errors or add a new declaration + Multiverse> entries = scope.getInCurrentScope(originalName, combinedCond); + for (Element> entry : entries) { - todoReminder("don't permit extern prototypes to have a definition"); - - // TODO: investigate why the function prototype can still - // have a conditional underneath even though the complete - // annotation isn't on functionprototype. this is why we - // are getting all nodes at this point - Multiverse prototypeNodemv = staticCondToMultiverse(getNodeAt(subparser, 3), pc); - // produce a multiverse of strings for the body to use - Multiverse prototypestrmv = new Multiverse(); - // collect the set of configurations that have valid function prototypes - PresenceCondition validCond = pc.presenceConditionManager().newFalse(); - for (Element prototypeNode : prototypeNodemv) { - FunctionPrototypeValue prototype = (FunctionPrototypeValue) getTransformationValue(prototypeNode.getData()); - Multiverse typespecifiermv = prototype.typespecifier; - Multiverse declaratormv = prototype.declarator; - - assert scope.isGlobal(); // function definitions should be global. nested functions have a separate subgrammar. - for (Element typespecifier : typespecifiermv) { - PresenceCondition typespecifierCond = prototypeNode.getCondition().and(typespecifier.getCondition()); - for (Element declarator : declaratormv) { - PresenceCondition combinedCond = typespecifierCond.and(declarator.getCondition()); - if (combinedCond.isFalse()) { - combinedCond.delRef(); - continue; - } - String originalName = declarator.getData().getName(); - Declaration originalDeclaration = new Declaration(typespecifier.getData(), declarator.getData()); - - if (originalDeclaration.hasTypeError()) { - // if type is invalid, put an error entry, emit a call - // to the type error function - scope.putError(originalName, combinedCond); - recordInvalidGlobalDeclaration(originalName, combinedCond); - System.err.println(String.format("INFO: \"%s\" has an invalid type specifier", originalName)); - } else if (! originalDeclaration.getType().isFunction()) { - // if type is not a function type, put an error entry, emit a call - // to the type error function - scope.putError(originalName, combinedCond); - recordInvalidGlobalDeclaration(originalName, combinedCond); - System.err.println(String.format("INFO: \"%s\" non-function type specifier in function prototype. this can happen when, e.g., header guards make typedefs conditional.", originalName)); - } else { - // otherwise loop over each existing entry check for - // type errors or add a new declaration - Multiverse> entries = scope.getInCurrentScope(originalName, combinedCond); - for (Element> entry : entries) { - - // the renamed declaration is used to get the type entry in the symtab - String renaming; - if (!entry.getData().isDeclared()) { - renaming = freshCId(originalName); - } else { //is declared - renaming = entry.getData().getValue().getName(); - } - Declarator renamedDeclarator = declarator.getData().rename(renaming); - Declaration renamedDeclaration = new Declaration(typespecifier.getData(), renamedDeclarator); - boolean invalidTypeSpec = false; - // the renamed function is static to enable linking the original function name - if (Constants.ATT_STORAGE_EXTERN == typespecifier.getData().getStorageClass() - || Constants.ATT_STORAGE_AUTO == typespecifier.getData().getStorageClass() - || Constants.ATT_STORAGE_REGISTER == typespecifier.getData().getStorageClass() - || Constants.ATT_STORAGE_TYPEDEF == typespecifier.getData().getStorageClass()) { - todoReminder("check that function definitions don't have an auto, extern, register, or typedef storage class and produce a type error if so"); - invalidTypeSpec = true; - } + // the renamed declaration is used to get the type entry in the symtab + String renaming; + if (!entry.getData().isDeclared()) { + renaming = freshCId(originalName); + } else { //is declared + renaming = entry.getData().getValue().getName(); + } + Declarator renamedDeclarator = declarator.getData().rename(renaming); + Declaration renamedDeclaration = new Declaration(typespecifier.getData(), renamedDeclarator); + boolean invalidTypeSpec = false; + // the renamed function is static to enable linking the original function name + if (Constants.ATT_STORAGE_EXTERN == typespecifier.getData().getStorageClass() + || Constants.ATT_STORAGE_AUTO == typespecifier.getData().getStorageClass() + || Constants.ATT_STORAGE_REGISTER == typespecifier.getData().getStorageClass() + || Constants.ATT_STORAGE_TYPEDEF == typespecifier.getData().getStorageClass()) { + todoReminder("check that function definitions don't have an auto, extern, register, or typedef storage class and produce a type error if so"); + invalidTypeSpec = true; + } - // make all renamed declarations static until project-wide, configuration-aware linking is possible - String desugaredDeclaration; - if (hasGlobalLinkage(typespecifier.getData())) { - // disabling the thunks for now, pending - // configuration-aware linking support - if (true) { - desugaredDeclaration = renamedDeclaration.toString(); - } else { - desugaredDeclaration = makeStaticDeclaration(typespecifier.getData(), renamedDeclarator); - } - } else { - desugaredDeclaration = renamedDeclaration.toString(); - } - assert null != desugaredDeclaration; + // make all renamed declarations static until project-wide, configuration-aware linking is possible + String desugaredDeclaration; + desugaredDeclaration = renamedDeclaration.toString(); + assert null != desugaredDeclaration; - // renamedDeclaration must be a FunctionT because - // that is created by a FunctionDeclarator - Type declarationType = renamedDeclaration.getType(); + // renamedDeclaration must be a FunctionT because + // that is created by a FunctionDeclarator + Type declarationType = renamedDeclaration.getType(); - if (! declarationType.isFunction()) { - System.err.println(String.format("FATAL: unexpected type in function prototype: %s %s", declarationType, renaming)); - System.exit(1); - } - Type type = new NamedFunctionT(declarationType.toFunction().getResult(), - renaming, - declarationType.toFunction().getParameters(), - declarationType.toFunction().isVarArgs()); + if (! declarationType.isFunction()) { + System.err.println(String.format("FATAL: unexpected type in function prototype: %s %s", declarationType, renaming)); + System.exit(1); + } + Type type = new NamedFunctionT(declarationType.toFunction().getResult(), + renaming, + declarationType.toFunction().getParameters(), + declarationType.toFunction().isVarArgs()); - if (entry.getData().isError() || invalidTypeSpec) { - // ERROR entry - System.err.println(String.format("INFO: \"%s\" is being redeclared in an existing invalid declaration", originalName)); - } else if (entry.getData().isUndeclared()) { - // UNDECLARED entry - - todoReminder("multiplex functions to so that each can have its own function name. try using function pointers as a kind of vtable."); - ((NamedFunctionT)type).setDefined(); - // update the symbol table for this presence condition - scope.put(originalName, type, entry.getCondition()); - - // record the global/extern declaration using the original name for later use in handling linking - if (scope.isGlobal() && isGlobalOrExtern(typespecifier.getData())) { - externalLinkage.put(originalName, originalDeclaration, entry.getCondition()); - } + if (entry.getData().isError() || invalidTypeSpec) { + // ERROR entry + System.err.println(String.format("INFO: \"%s\" is being redeclared in an existing invalid declaration", originalName)); + } else if (entry.getData().isUndeclared()) { + // UNDECLARED entry - // emit the renamed function as static to use the original name for linking when possible - /* prototypestrmv.add(renamedDeclaration.toString(), entry.getCondition()); */ - prototypestrmv.add(desugaredDeclaration, entry.getCondition()); + todoReminder("multiplex functions to so that each can have its own function name. try using function pointers as a kind of vtable."); + ((NamedFunctionT)type).setDefined(); + // update the symbol table for this presence condition + scope.put(originalName, type, entry.getCondition()); - PresenceCondition newValidCond = validCond.or(entry.getCondition()); - validCond.delRef(); validCond = newValidCond; + // record the global/extern declaration using the original name for later use in handling linking + if (scope.isGlobal() && isGlobalOrExtern(typespecifier.getData())) { + externalLinkage.put(originalName, originalDeclaration, entry.getCondition()); + } - // shouldn't need to add forward decl, since if - // the function had a decl before, that will do - // the renaming. if the function is missing a - // decl before def, then the function is - // implicitly declared to be () -> int - - /* // add the forward declaration to the scope to */ - /* // facilitate matching of signatures for linking */ - /* StringBuilder forward = new StringBuilder(); */ - /* forward.append(renamedDeclaration.toString()); */ - /* forward.append(";\n"); */ - /* scope.addDeclaration(forward.toString()); */ - /* forward = null; */ + newDeclarations.add(renamedDeclarator, entry.getCondition()); + + // shouldn't need to add forward decl, since if + // the function had a decl before, that will do + // the renaming. if the function is missing a + // decl before def, then the function is + // implicitly declared to be () -> int - recordRenaming(renaming, originalName); + recordRenaming(renaming, originalName); - } else { - if (entry.getData().getValue() instanceof NamedFunctionT && !((NamedFunctionT)entry.getData().getValue()).getDefined()) { // there is no Type.isFunctionOrMethod() - FunctionT newtype = ((NamedFunctionT) type).toFunctionT(); - FunctionT previoustype = ((NamedFunctionT) entry.getData().getValue()).toFunctionT(); - newtype.setDefined(); - ((NamedFunctionT) entry.getData().getValue()).setDefined(); - // TODO: make sure a function is only defined - // once, although it can be declared multiple - // times. - - // already declared entries - if (cOps.equal(newtype, previoustype)) { - System.err.println("TODO: distinguish between previous declaration vs definition."); - System.err.println(String.format("INFO: %s is being redeclared in global scope to compatible type", originalName)); - String previousname = ((NamedFunctionT) entry.getData().getValue()).getName(); - Declarator previousDeclarator = declarator.getData().rename(previousname); - Declaration previousDeclaration = new Declaration(typespecifier.getData(), - previousDeclarator); - // emit the renamed function as static to use the original name for linking when possible - /* prototypestrmv.add(previousDeclaration.toString(), entry.getCondition()); */ - prototypestrmv.add(desugaredDeclaration, entry.getCondition()); - - PresenceCondition newValidCond = validCond.or(entry.getCondition()); - validCond.delRef(); validCond = newValidCond; - } else { - scope.putError(originalName, entry.getCondition()); - recordInvalidGlobalDeclaration(originalName, entry.getCondition()); - // record the global/extern declaration using the original name for later use in handling linking - if (scope.isGlobal() && isGlobalOrExtern(typespecifier.getData())) { - externalLinkage.putError(originalName, entry.getCondition()); - } - } - } else { // existing entry is not a function type - scope.putError(originalName, entry.getCondition()); - recordInvalidGlobalDeclaration(originalName, entry.getCondition()); - // record the global/extern declaration using the original name for later use in handling linking - if (scope.isGlobal() && isGlobalOrExtern(typespecifier.getData())) { - externalLinkage.putError(originalName, entry.getCondition()); - } - System.err.println(String.format("INFO: attempted to redeclare \"%s\" as function instead of non-function", originalName)); - } // end of check for existing function type - } // end test of symtab entry type - } // end loop over symtab entries + } else { + if (entry.getData().getValue() instanceof NamedFunctionT && !((NamedFunctionT)entry.getData().getValue()).getDefined()) { // there is no Type.isFunctionOrMethod() + FunctionT newtype = ((NamedFunctionT) type).toFunctionT(); + FunctionT previoustype = ((NamedFunctionT) entry.getData().getValue()).toFunctionT(); + newtype.setDefined(); + ((NamedFunctionT) entry.getData().getValue()).setDefined(); + // TODO: make sure a function is only defined + // once, although it can be declared multiple + // times. + + // already declared entries + if (cOps.equal(newtype, previoustype)) { + System.err.println("TODO: distinguish between previous declaration vs definition."); + System.err.println(String.format("INFO: %s is being redeclared in global scope to compatible type", originalName)); + String previousname = ((NamedFunctionT) entry.getData().getValue()).getName(); + Declarator previousDeclarator = declarator.getData().rename(previousname); + Declaration previousDeclaration = new Declaration(typespecifier.getData(), + previousDeclarator); + // emit the renamed function as static to use the original name for linking when possible + newDeclarations.add(renamedDeclarator, entry.getCondition()); + + } else { + scope.putError(originalName, entry.getCondition()); + recordInvalidGlobalDeclaration(originalName, entry.getCondition()); + // record the global/extern declaration using the original name for later use in handling linking + if (scope.isGlobal() && isGlobalOrExtern(typespecifier.getData())) { + externalLinkage.putError(originalName, entry.getCondition()); + } } + } else { // existing entry is not a function type + scope.putError(originalName, entry.getCondition()); + recordInvalidGlobalDeclaration(originalName, entry.getCondition()); + // record the global/extern declaration using the original name for later use in handling linking + if (scope.isGlobal() && isGlobalOrExtern(typespecifier.getData())) { + externalLinkage.putError(originalName, entry.getCondition()); + } + System.err.println(String.format("INFO: attempted to redeclare \"%s\" as function instead of non-function", originalName)); + } // end of check for existing function type + } // end test of symtab entry type + } // end loop over symtab entries + } - combinedCond.delRef(); - } // end of loop over declarators - typespecifierCond.delRef(); - } // end of loop over typespecifiers - // TODO: improve memory usage by destructing these. - // challenge is that they are shared by nodes. - /* typespecifiermv.destruct(); */ - /* declaratormv.destruct(); */ - } // end of check for invalid typespecifier - // prototypestrmv may be empty if none are valid types - prototypeNodemv.destruct(); - - if (validCond.isFalse()) { - System.err.println("INFO: no valid configuration for this definitions of %s"); - } else { - if (prototypestrmv.isEmpty()) { - throw new AssertionError("prototypestrmv should not be empty if validConds is not false"); - } - } + combinedCond.delRef(); + } // end of loop over declarators + typespecifierCond.delRef(); + } // end of loop over typespecifiers + prototype.declarator.destruct(); + prototype.declarator = newDeclarations; + } +} + break; + case 13: + { + PresenceCondition pc = subparser.getPresenceCondition(); + // add all variations of the function declaration to the symtab + CContext scope = (CContext)subparser.scope; - - Multiverse resultmv = prototypestrmv; - /*Node n = getNodeAt(subparser, 3); - - if (n.getName().equals("Conditional")) { - resultmv = new Multiverse(); - for (int i = 0; i < n.size(); ++i){ - if (n.get(i) instanceof Node) { - System.err.println(((Node)n.get(i)).getProperty(TRANSFORMATION)); - resultmv.addAll((Multiverse)((Node)n.get(i)).getProperty(TRANSFORMATION)); - } - } - } else { - resultmv = (Multiverse) getTransformationValue(subparser, 3); - }*/ - /* // the function prototype can be empty if all prototypes in */ - /* // that set of configurations all have type errors */ - /* // (redeclarations, invalid types in parameters, etc). this */ - /* // means that we can't use the regular */ - /* // getCompleteNodeMultiverseValue, which assumes all */ - /* // children are non-empty. */ - - /* System.err.println("JKLFDSJ " + getNodeAt(subparser, 3)); */ - /* Multiverse prototypenodemv = staticCondToMultiverse(getNodeAt(subparser, 3), pc); */ - /* Multiverse resultmv = new Multiverse(); */ - - /* // loop through each node, get its multiverse and add to the */ - /* // resultmv. update each node's multiverse elements with the static */ - /* // conditional branch's presence condition using filter. */ - /* for (Element elem : prototypenodemv) { */ - /* System.err.println("ELEM: " + elem.getData()); */ - /* Multiverse nodevaluemv = (Multiverse) getTransformationValue((Node) elem.getData()); */ - /* if (! nodevaluemv.isEmpty()) { */ - /* Multiverse filtered = nodevaluemv.filter(elem.getCondition()); */ - /* resultmv.addAll(filtered); */ - /* filtered.destruct(); */ - /* } */ - /* } */ - /* prototypenodemv.destruct(); */ - - StringBuilder sb = new StringBuilder(); - if (! resultmv.isEmpty()) { - Multiverse subprototypestrmv = resultmv.filter(pc); - resultmv.destruct(); + Multiverse prototypeNodemv = staticCondToMultiverse(getNodeAt(subparser, 3), pc); + + Multiverse resultmv = new Multiverse(); + + for (Element prototypeNode : prototypeNodemv) { + FunctionPrototypeValue prototype = (FunctionPrototypeValue) getTransformationValue(prototypeNode.getData()); + Multiverse typespecifiermv = prototype.typespecifier; + Multiverse declaratormv = prototype.declarator; + for (Element typespecifier : typespecifiermv) { + PresenceCondition typespecifierCond = prototypeNode.getCondition().and(typespecifier.getCondition()); + for (Element declarator : declaratormv) { + PresenceCondition combinedCond = typespecifierCond.and(declarator.getCondition()); + if (combinedCond.isFalse()) { + combinedCond.delRef(); + continue; + } + Declaration renamedDeclaration = new Declaration(typespecifier.getData(), declarator.getData()); + String desugaredDeclaration; + desugaredDeclaration = renamedDeclaration.toString(); + resultmv.add(desugaredDeclaration,combinedCond); + } + } + } + + StringBuilder sb = new StringBuilder(); + if (! resultmv.isEmpty()) { + Multiverse subprototypestrmv = resultmv.filter(pc); + resultmv.destruct(); - Multiverse bodymv = getCompleteNodeSingleValue(subparser, 1, subparser.getPresenceCondition()); - // declarations, including function definitions, should - // appear unconditionally in the desugared output, since - // renaming handles different configurations. so add all - // resulting definitions to a single element multiverse - // under the true condition. - - // TODO: optimization: dedeuplicate functions that have the - // same type. this type deduplication maybe also be useful - // for typechecking to find a single type eror. - - // TODO: investigate why the function prototype can still - // have a conditional underneath even though the complete - // annotation isn't on functionprototype. this is why we - // are getting all nodes at this point - for (Element prototypestr : subprototypestrmv) { - sb.append(prototypestr.getData()); - sb.append(" //M:" + getCompoundRange(bodymv, prototypestr.getCondition()) + "\n"); - sb.append("{\n"); - sb.append(emitStatementDSV(bodymv, prototypestr.getCondition())); - sb.append("}\n"); - } - bodymv.destruct(); - } else { - // the prototype can be empty if there are type errors. - sb.append("/* no function due to type errors in the function prototype */\n"); - } - setTransformationValue(value, sb.toString()); + Multiverse bodymv = getCompleteNodeSingleValue(subparser, 1, subparser.getPresenceCondition()); + // declarations, including function definitions, should + // appear unconditionally in the desugared output, since + // renaming handles different configurations. so add all + // resulting definitions to a single element multiverse + // under the true condition. + for (Element prototypestr : subprototypestrmv) { + sb.append(prototypestr.getData()); + sb.append(" //M:" + getCompoundRange(bodymv, prototypestr.getCondition()) + "\n"); + sb.append("{\n"); + sb.append(emitStatementDSV(bodymv, prototypestr.getCondition())); + sb.append("}\n"); + } + bodymv.destruct(); + } else { + // the prototype can be empty if there are type errors. + sb.append("/* no function due to type errors in the function prototype */\n"); + } + setTransformationValue(value, sb.toString()); - } +} break; case 14: @@ -9591,10 +9525,10 @@ private void setTransformationValue(Object node, Object value) { */ private static class FunctionPrototypeValue { /** The type. */ - public final Multiverse typespecifier; + public Multiverse typespecifier; /** The declarator */ - public final Multiverse declarator; + public Multiverse declarator; /** * This constructor creates a new instance. diff --git a/src/superc/cdesugarer/desugarer.y b/src/superc/cdesugarer/desugarer.y index 9282b4fa..78cf33c4 100644 --- a/src/superc/cdesugarer/desugarer.y +++ b/src/superc/cdesugarer/desugarer.y @@ -395,290 +395,224 @@ FunctionDefinitionExtension: /** complete **/ // ADDED // String ; FunctionDefinition: /** complete **/ // added scoping // String -FunctionPrototype {restartLabelFunction();} CompoundStatement - /* FunctionPrototype { ReenterScope(subparser); } LBRACE CompoundStatement { ExitScope(subparser); } RBRACE */ - { - // similar to Declaration, but different in that this has a - // compoundstatement, while declaration has an initializer. - PresenceCondition pc = subparser.getPresenceCondition(); - - // add all variations of the function declaration to the symtab - CContext scope = (CContext)subparser.scope; +FunctionPrototype +{restartLabelFunction(); + // similar to Declaration, but different in that this has a + // compoundstatement, while declaration has an initializer. + PresenceCondition pc = subparser.getPresenceCondition(); + + // add all variations of the function declaration to the symtab + CContext scope = (CContext)subparser.scope; + + Multiverse prototypeNodemv = staticCondToMultiverse(getNodeAt(subparser, 1), pc); + // produce a multiverse of strings for the body to use + Multiverse prototypestrmv = new Multiverse(); + // collect the set of configurations that have valid function prototypes + for (Element prototypeNode : prototypeNodemv) { + FunctionPrototypeValue prototype = (FunctionPrototypeValue) getTransformationValue(prototypeNode.getData()); + Multiverse typespecifiermv = prototype.typespecifier; + Multiverse declaratormv = prototype.declarator; + Multiverse newDeclarations = new Multiverse(); + + assert scope.isGlobal(); // function definitions should be global. nested functions have a separate subgrammar. + for (Element typespecifier : typespecifiermv) { + PresenceCondition typespecifierCond = prototypeNode.getCondition().and(typespecifier.getCondition()); + for (Element declarator : declaratormv) { + PresenceCondition combinedCond = typespecifierCond.and(declarator.getCondition()); + if (combinedCond.isFalse()) { + combinedCond.delRef(); + continue; + } + String originalName = declarator.getData().getName(); + Declaration originalDeclaration = new Declaration(typespecifier.getData(), declarator.getData()); + + if (originalDeclaration.hasTypeError()) { + // if type is invalid, put an error entry, emit a call + // to the type error function + scope.putError(originalName, combinedCond); + recordInvalidGlobalDeclaration(originalName, combinedCond); + System.err.println(String.format("INFO: \"%s\" has an invalid type specifier", originalName)); + } else if (! originalDeclaration.getType().isFunction()) { + // if type is not a function type, put an error entry, emit a call + // to the type error function + scope.putError(originalName, combinedCond); + recordInvalidGlobalDeclaration(originalName, combinedCond); + System.err.println(String.format("INFO: \"%s\" non-function type specifier in function prototype. this can happen when, e.g., header guards make typedefs conditional.", originalName)); + } else { + // otherwise loop over each existing entry check for + // type errors or add a new declaration + Multiverse> entries = scope.getInCurrentScope(originalName, combinedCond); + for (Element> entry : entries) { - todoReminder("don't permit extern prototypes to have a definition"); - - // TODO: investigate why the function prototype can still - // have a conditional underneath even though the complete - // annotation isn't on functionprototype. this is why we - // are getting all nodes at this point - Multiverse prototypeNodemv = staticCondToMultiverse(getNodeAt(subparser, 3), pc); - // produce a multiverse of strings for the body to use - Multiverse prototypestrmv = new Multiverse(); - // collect the set of configurations that have valid function prototypes - PresenceCondition validCond = pc.presenceConditionManager().newFalse(); - for (Element prototypeNode : prototypeNodemv) { - FunctionPrototypeValue prototype = (FunctionPrototypeValue) getTransformationValue(prototypeNode.getData()); - Multiverse typespecifiermv = prototype.typespecifier; - Multiverse declaratormv = prototype.declarator; - - assert scope.isGlobal(); // function definitions should be global. nested functions have a separate subgrammar. - for (Element typespecifier : typespecifiermv) { - PresenceCondition typespecifierCond = prototypeNode.getCondition().and(typespecifier.getCondition()); - for (Element declarator : declaratormv) { - PresenceCondition combinedCond = typespecifierCond.and(declarator.getCondition()); - if (combinedCond.isFalse()) { - combinedCond.delRef(); - continue; - } - String originalName = declarator.getData().getName(); - Declaration originalDeclaration = new Declaration(typespecifier.getData(), declarator.getData()); - - if (originalDeclaration.hasTypeError()) { - // if type is invalid, put an error entry, emit a call - // to the type error function - scope.putError(originalName, combinedCond); - recordInvalidGlobalDeclaration(originalName, combinedCond); - System.err.println(String.format("INFO: \"%s\" has an invalid type specifier", originalName)); - } else if (! originalDeclaration.getType().isFunction()) { - // if type is not a function type, put an error entry, emit a call - // to the type error function - scope.putError(originalName, combinedCond); - recordInvalidGlobalDeclaration(originalName, combinedCond); - System.err.println(String.format("INFO: \"%s\" non-function type specifier in function prototype. this can happen when, e.g., header guards make typedefs conditional.", originalName)); - } else { - // otherwise loop over each existing entry check for - // type errors or add a new declaration - Multiverse> entries = scope.getInCurrentScope(originalName, combinedCond); - for (Element> entry : entries) { - - // the renamed declaration is used to get the type entry in the symtab - String renaming; - if (!entry.getData().isDeclared()) { - renaming = freshCId(originalName); - } else { //is declared - renaming = entry.getData().getValue().getName(); - } - Declarator renamedDeclarator = declarator.getData().rename(renaming); - Declaration renamedDeclaration = new Declaration(typespecifier.getData(), renamedDeclarator); - boolean invalidTypeSpec = false; - // the renamed function is static to enable linking the original function name - if (Constants.ATT_STORAGE_EXTERN == typespecifier.getData().getStorageClass() - || Constants.ATT_STORAGE_AUTO == typespecifier.getData().getStorageClass() - || Constants.ATT_STORAGE_REGISTER == typespecifier.getData().getStorageClass() - || Constants.ATT_STORAGE_TYPEDEF == typespecifier.getData().getStorageClass()) { - todoReminder("check that function definitions don't have an auto, extern, register, or typedef storage class and produce a type error if so"); - invalidTypeSpec = true; - } + // the renamed declaration is used to get the type entry in the symtab + String renaming; + if (!entry.getData().isDeclared()) { + renaming = freshCId(originalName); + } else { //is declared + renaming = entry.getData().getValue().getName(); + } + Declarator renamedDeclarator = declarator.getData().rename(renaming); + Declaration renamedDeclaration = new Declaration(typespecifier.getData(), renamedDeclarator); + boolean invalidTypeSpec = false; + // the renamed function is static to enable linking the original function name + if (Constants.ATT_STORAGE_EXTERN == typespecifier.getData().getStorageClass() + || Constants.ATT_STORAGE_AUTO == typespecifier.getData().getStorageClass() + || Constants.ATT_STORAGE_REGISTER == typespecifier.getData().getStorageClass() + || Constants.ATT_STORAGE_TYPEDEF == typespecifier.getData().getStorageClass()) { + todoReminder("check that function definitions don't have an auto, extern, register, or typedef storage class and produce a type error if so"); + invalidTypeSpec = true; + } - // make all renamed declarations static until project-wide, configuration-aware linking is possible - String desugaredDeclaration; - if (hasGlobalLinkage(typespecifier.getData())) { - // disabling the thunks for now, pending - // configuration-aware linking support - if (true) { - desugaredDeclaration = renamedDeclaration.toString(); - } else { - desugaredDeclaration = makeStaticDeclaration(typespecifier.getData(), renamedDeclarator); - } - } else { - desugaredDeclaration = renamedDeclaration.toString(); - } - assert null != desugaredDeclaration; + // make all renamed declarations static until project-wide, configuration-aware linking is possible + String desugaredDeclaration; + desugaredDeclaration = renamedDeclaration.toString(); + assert null != desugaredDeclaration; - // renamedDeclaration must be a FunctionT because - // that is created by a FunctionDeclarator - Type declarationType = renamedDeclaration.getType(); + // renamedDeclaration must be a FunctionT because + // that is created by a FunctionDeclarator + Type declarationType = renamedDeclaration.getType(); - if (! declarationType.isFunction()) { - System.err.println(String.format("FATAL: unexpected type in function prototype: %s %s", declarationType, renaming)); - System.exit(1); - } - Type type = new NamedFunctionT(declarationType.toFunction().getResult(), - renaming, - declarationType.toFunction().getParameters(), - declarationType.toFunction().isVarArgs()); + if (! declarationType.isFunction()) { + System.err.println(String.format("FATAL: unexpected type in function prototype: %s %s", declarationType, renaming)); + System.exit(1); + } + Type type = new NamedFunctionT(declarationType.toFunction().getResult(), + renaming, + declarationType.toFunction().getParameters(), + declarationType.toFunction().isVarArgs()); - if (entry.getData().isError() || invalidTypeSpec) { - // ERROR entry - System.err.println(String.format("INFO: \"%s\" is being redeclared in an existing invalid declaration", originalName)); - } else if (entry.getData().isUndeclared()) { - // UNDECLARED entry - - todoReminder("multiplex functions to so that each can have its own function name. try using function pointers as a kind of vtable."); - ((NamedFunctionT)type).setDefined(); - // update the symbol table for this presence condition - scope.put(originalName, type, entry.getCondition()); - - // record the global/extern declaration using the original name for later use in handling linking - if (scope.isGlobal() && isGlobalOrExtern(typespecifier.getData())) { - externalLinkage.put(originalName, originalDeclaration, entry.getCondition()); - } + if (entry.getData().isError() || invalidTypeSpec) { + // ERROR entry + System.err.println(String.format("INFO: \"%s\" is being redeclared in an existing invalid declaration", originalName)); + } else if (entry.getData().isUndeclared()) { + // UNDECLARED entry - // emit the renamed function as static to use the original name for linking when possible - /* prototypestrmv.add(renamedDeclaration.toString(), entry.getCondition()); */ - prototypestrmv.add(desugaredDeclaration, entry.getCondition()); + todoReminder("multiplex functions to so that each can have its own function name. try using function pointers as a kind of vtable."); + ((NamedFunctionT)type).setDefined(); + // update the symbol table for this presence condition + scope.put(originalName, type, entry.getCondition()); - PresenceCondition newValidCond = validCond.or(entry.getCondition()); - validCond.delRef(); validCond = newValidCond; + // record the global/extern declaration using the original name for later use in handling linking + if (scope.isGlobal() && isGlobalOrExtern(typespecifier.getData())) { + externalLinkage.put(originalName, originalDeclaration, entry.getCondition()); + } - // shouldn't need to add forward decl, since if - // the function had a decl before, that will do - // the renaming. if the function is missing a - // decl before def, then the function is - // implicitly declared to be () -> int - - /* // add the forward declaration to the scope to */ - /* // facilitate matching of signatures for linking */ - /* StringBuilder forward = new StringBuilder(); */ - /* forward.append(renamedDeclaration.toString()); */ - /* forward.append(";\n"); */ - /* scope.addDeclaration(forward.toString()); */ - /* forward = null; */ + newDeclarations.add(renamedDeclarator, entry.getCondition()); + + // shouldn't need to add forward decl, since if + // the function had a decl before, that will do + // the renaming. if the function is missing a + // decl before def, then the function is + // implicitly declared to be () -> int - recordRenaming(renaming, originalName); + recordRenaming(renaming, originalName); - } else { - if (entry.getData().getValue() instanceof NamedFunctionT && !((NamedFunctionT)entry.getData().getValue()).getDefined()) { // there is no Type.isFunctionOrMethod() - FunctionT newtype = ((NamedFunctionT) type).toFunctionT(); - FunctionT previoustype = ((NamedFunctionT) entry.getData().getValue()).toFunctionT(); - newtype.setDefined(); - ((NamedFunctionT) entry.getData().getValue()).setDefined(); - // TODO: make sure a function is only defined - // once, although it can be declared multiple - // times. - - // already declared entries - if (cOps.equal(newtype, previoustype)) { - System.err.println("TODO: distinguish between previous declaration vs definition."); - System.err.println(String.format("INFO: %s is being redeclared in global scope to compatible type", originalName)); - String previousname = ((NamedFunctionT) entry.getData().getValue()).getName(); - Declarator previousDeclarator = declarator.getData().rename(previousname); - Declaration previousDeclaration = new Declaration(typespecifier.getData(), - previousDeclarator); - // emit the renamed function as static to use the original name for linking when possible - /* prototypestrmv.add(previousDeclaration.toString(), entry.getCondition()); */ - prototypestrmv.add(desugaredDeclaration, entry.getCondition()); - - PresenceCondition newValidCond = validCond.or(entry.getCondition()); - validCond.delRef(); validCond = newValidCond; - } else { - scope.putError(originalName, entry.getCondition()); - recordInvalidGlobalDeclaration(originalName, entry.getCondition()); - // record the global/extern declaration using the original name for later use in handling linking - if (scope.isGlobal() && isGlobalOrExtern(typespecifier.getData())) { - externalLinkage.putError(originalName, entry.getCondition()); - } - } - } else { // existing entry is not a function type - scope.putError(originalName, entry.getCondition()); - recordInvalidGlobalDeclaration(originalName, entry.getCondition()); - // record the global/extern declaration using the original name for later use in handling linking - if (scope.isGlobal() && isGlobalOrExtern(typespecifier.getData())) { - externalLinkage.putError(originalName, entry.getCondition()); - } - System.err.println(String.format("INFO: attempted to redeclare \"%s\" as function instead of non-function", originalName)); - } // end of check for existing function type - } // end test of symtab entry type - } // end loop over symtab entries + } else { + if (entry.getData().getValue() instanceof NamedFunctionT && !((NamedFunctionT)entry.getData().getValue()).getDefined()) { // there is no Type.isFunctionOrMethod() + FunctionT newtype = ((NamedFunctionT) type).toFunctionT(); + FunctionT previoustype = ((NamedFunctionT) entry.getData().getValue()).toFunctionT(); + newtype.setDefined(); + ((NamedFunctionT) entry.getData().getValue()).setDefined(); + // TODO: make sure a function is only defined + // once, although it can be declared multiple + // times. + + // already declared entries + if (cOps.equal(newtype, previoustype)) { + System.err.println("TODO: distinguish between previous declaration vs definition."); + System.err.println(String.format("INFO: %s is being redeclared in global scope to compatible type", originalName)); + String previousname = ((NamedFunctionT) entry.getData().getValue()).getName(); + Declarator previousDeclarator = declarator.getData().rename(previousname); + Declaration previousDeclaration = new Declaration(typespecifier.getData(), + previousDeclarator); + // emit the renamed function as static to use the original name for linking when possible + newDeclarations.add(renamedDeclarator, entry.getCondition()); + + } else { + scope.putError(originalName, entry.getCondition()); + recordInvalidGlobalDeclaration(originalName, entry.getCondition()); + // record the global/extern declaration using the original name for later use in handling linking + if (scope.isGlobal() && isGlobalOrExtern(typespecifier.getData())) { + externalLinkage.putError(originalName, entry.getCondition()); + } } + } else { // existing entry is not a function type + scope.putError(originalName, entry.getCondition()); + recordInvalidGlobalDeclaration(originalName, entry.getCondition()); + // record the global/extern declaration using the original name for later use in handling linking + if (scope.isGlobal() && isGlobalOrExtern(typespecifier.getData())) { + externalLinkage.putError(originalName, entry.getCondition()); + } + System.err.println(String.format("INFO: attempted to redeclare \"%s\" as function instead of non-function", originalName)); + } // end of check for existing function type + } // end test of symtab entry type + } // end loop over symtab entries + } - combinedCond.delRef(); - } // end of loop over declarators - typespecifierCond.delRef(); - } // end of loop over typespecifiers - // TODO: improve memory usage by destructing these. - // challenge is that they are shared by nodes. - /* typespecifiermv.destruct(); */ - /* declaratormv.destruct(); */ - } // end of check for invalid typespecifier - // prototypestrmv may be empty if none are valid types - prototypeNodemv.destruct(); - - if (validCond.isFalse()) { - System.err.println("INFO: no valid configuration for this definitions of %s"); - } else { - if (prototypestrmv.isEmpty()) { - throw new AssertionError("prototypestrmv should not be empty if validConds is not false"); - } - } - + combinedCond.delRef(); + } // end of loop over declarators + typespecifierCond.delRef(); + } // end of loop over typespecifiers + prototype.declarator.destruct(); + prototype.declarator = newDeclarations; + } +} CompoundStatement +{ + PresenceCondition pc = subparser.getPresenceCondition(); + // add all variations of the function declaration to the symtab + CContext scope = (CContext)subparser.scope; - - Multiverse resultmv = prototypestrmv; - /*Node n = getNodeAt(subparser, 3); - - if (n.getName().equals("Conditional")) { - resultmv = new Multiverse(); - for (int i = 0; i < n.size(); ++i){ - if (n.get(i) instanceof Node) { - System.err.println(((Node)n.get(i)).getProperty(TRANSFORMATION)); - resultmv.addAll((Multiverse)((Node)n.get(i)).getProperty(TRANSFORMATION)); - } - } - } else { - resultmv = (Multiverse) getTransformationValue(subparser, 3); - }*/ - /* // the function prototype can be empty if all prototypes in */ - /* // that set of configurations all have type errors */ - /* // (redeclarations, invalid types in parameters, etc). this */ - /* // means that we can't use the regular */ - /* // getCompleteNodeMultiverseValue, which assumes all */ - /* // children are non-empty. */ - - /* System.err.println("JKLFDSJ " + getNodeAt(subparser, 3)); */ - /* Multiverse prototypenodemv = staticCondToMultiverse(getNodeAt(subparser, 3), pc); */ - /* Multiverse resultmv = new Multiverse(); */ - - /* // loop through each node, get its multiverse and add to the */ - /* // resultmv. update each node's multiverse elements with the static */ - /* // conditional branch's presence condition using filter. */ - /* for (Element elem : prototypenodemv) { */ - /* System.err.println("ELEM: " + elem.getData()); */ - /* Multiverse nodevaluemv = (Multiverse) getTransformationValue((Node) elem.getData()); */ - /* if (! nodevaluemv.isEmpty()) { */ - /* Multiverse filtered = nodevaluemv.filter(elem.getCondition()); */ - /* resultmv.addAll(filtered); */ - /* filtered.destruct(); */ - /* } */ - /* } */ - /* prototypenodemv.destruct(); */ - - StringBuilder sb = new StringBuilder(); - if (! resultmv.isEmpty()) { - Multiverse subprototypestrmv = resultmv.filter(pc); - resultmv.destruct(); + Multiverse prototypeNodemv = staticCondToMultiverse(getNodeAt(subparser, 3), pc); + + Multiverse resultmv = new Multiverse(); + + for (Element prototypeNode : prototypeNodemv) { + FunctionPrototypeValue prototype = (FunctionPrototypeValue) getTransformationValue(prototypeNode.getData()); + Multiverse typespecifiermv = prototype.typespecifier; + Multiverse declaratormv = prototype.declarator; + for (Element typespecifier : typespecifiermv) { + PresenceCondition typespecifierCond = prototypeNode.getCondition().and(typespecifier.getCondition()); + for (Element declarator : declaratormv) { + PresenceCondition combinedCond = typespecifierCond.and(declarator.getCondition()); + if (combinedCond.isFalse()) { + combinedCond.delRef(); + continue; + } + Declaration renamedDeclaration = new Declaration(typespecifier.getData(), declarator.getData()); + String desugaredDeclaration; + desugaredDeclaration = renamedDeclaration.toString(); + resultmv.add(desugaredDeclaration,combinedCond); + } + } + } + + StringBuilder sb = new StringBuilder(); + if (! resultmv.isEmpty()) { + Multiverse subprototypestrmv = resultmv.filter(pc); + resultmv.destruct(); - Multiverse bodymv = getCompleteNodeSingleValue(subparser, 1, subparser.getPresenceCondition()); - // declarations, including function definitions, should - // appear unconditionally in the desugared output, since - // renaming handles different configurations. so add all - // resulting definitions to a single element multiverse - // under the true condition. - - // TODO: optimization: dedeuplicate functions that have the - // same type. this type deduplication maybe also be useful - // for typechecking to find a single type eror. - - // TODO: investigate why the function prototype can still - // have a conditional underneath even though the complete - // annotation isn't on functionprototype. this is why we - // are getting all nodes at this point - for (Element prototypestr : subprototypestrmv) { - sb.append(prototypestr.getData()); - sb.append(" //M:" + getCompoundRange(bodymv, prototypestr.getCondition()) + "\n"); - sb.append("{\n"); - sb.append(emitStatementDSV(bodymv, prototypestr.getCondition())); - sb.append("}\n"); - } - bodymv.destruct(); - } else { - // the prototype can be empty if there are type errors. - sb.append("/* no function due to type errors in the function prototype */\n"); - } - setTransformationValue(value, sb.toString()); + Multiverse bodymv = getCompleteNodeSingleValue(subparser, 1, subparser.getPresenceCondition()); + // declarations, including function definitions, should + // appear unconditionally in the desugared output, since + // renaming handles different configurations. so add all + // resulting definitions to a single element multiverse + // under the true condition. + for (Element prototypestr : subprototypestrmv) { + sb.append(prototypestr.getData()); + sb.append(" //M:" + getCompoundRange(bodymv, prototypestr.getCondition()) + "\n"); + sb.append("{\n"); + sb.append(emitStatementDSV(bodymv, prototypestr.getCondition())); + sb.append("}\n"); + } + bodymv.destruct(); + } else { + // the prototype can be empty if there are type errors. + sb.append("/* no function due to type errors in the function prototype */\n"); + } + setTransformationValue(value, sb.toString()); - } +} /* | FunctionOldPrototype CompoundStatement */ | FunctionOldPrototype { ReenterScope(subparser); } DeclarationList LBRACE FunctionCompoundStatement { ExitScope(subparser); } RBRACE /* | FunctionOldPrototype { ReenterScope(subparser); } DeclarationList LBRACE CompoundStatement { ExitScope(subparser); } RBRACE */ @@ -9453,10 +9387,10 @@ private void setTransformationValue(Object node, Object value) { */ private static class FunctionPrototypeValue { /** The type. */ - public final Multiverse typespecifier; + public Multiverse typespecifier; /** The declarator */ - public final Multiverse declarator; + public Multiverse declarator; /** * This constructor creates a new instance. From d6e976e2d7996f06bdeba30297fa86611a599dd6 Mon Sep 17 00:00:00 2001 From: pattersonz Date: Sat, 28 Jan 2023 14:50:16 -0600 Subject: [PATCH 35/77] allow functions to pass into function pointers --- src/superc/cdesugarer/CActions.java | 4 +++- src/superc/cdesugarer/desugarer.y | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/superc/cdesugarer/CActions.java b/src/superc/cdesugarer/CActions.java index 952c21fe..6b09aa52 100644 --- a/src/superc/cdesugarer/CActions.java +++ b/src/superc/cdesugarer/CActions.java @@ -9317,11 +9317,13 @@ static public Multiverse hasField(UnionT u, Type t, CContext scope, Pre static public boolean compatParam(Type t1u, Type t2u) { Type t1 = t1u.resolve(), t2 = t2u.resolve(); - System.err.println(t1 + " " + t2); + System.err.println("types:" + t1 + " " + t2); if ((t1.isPointer() || t1.isArray()) && t2.isNumber()) { return true; } else if (t2.isPointer() && t1.isPointer()) { return true; + } else if (t2.isFunction() && (t1.isPointer() || t1.isFunction())) { + return true; } return compatTypes(t1u,t2u); } diff --git a/src/superc/cdesugarer/desugarer.y b/src/superc/cdesugarer/desugarer.y index 78cf33c4..a34060bf 100644 --- a/src/superc/cdesugarer/desugarer.y +++ b/src/superc/cdesugarer/desugarer.y @@ -9179,11 +9179,13 @@ static public Multiverse hasField(UnionT u, Type t, CContext scope, Pre static public boolean compatParam(Type t1u, Type t2u) { Type t1 = t1u.resolve(), t2 = t2u.resolve(); - System.err.println(t1 + " " + t2); + System.err.println("types:" + t1 + " " + t2); if ((t1.isPointer() || t1.isArray()) && t2.isNumber()) { return true; } else if (t2.isPointer() && t1.isPointer()) { return true; + } else if (t2.isFunction() && (t1.isPointer() || t1.isFunction())) { + return true; } return compatTypes(t1u,t2u); } From 7bfd10fc49e76746a585e899236cc3f775f0edb3 Mon Sep 17 00:00:00 2001 From: pattersonz Date: Sat, 28 Jan 2023 17:41:53 -0600 Subject: [PATCH 36/77] mend --- src/superc/cdesugarer/CActions.java | 3 +++ src/superc/cdesugarer/desugarer.y | 3 +++ 2 files changed, 6 insertions(+) diff --git a/src/superc/cdesugarer/CActions.java b/src/superc/cdesugarer/CActions.java index 6b09aa52..aeee1e9a 100644 --- a/src/superc/cdesugarer/CActions.java +++ b/src/superc/cdesugarer/CActions.java @@ -450,6 +450,9 @@ public Object action(int production, Subparser subparser, Object value) { FunctionPrototypeValue prototype = (FunctionPrototypeValue) getTransformationValue(prototypeNode.getData()); Multiverse typespecifiermv = prototype.typespecifier; Multiverse declaratormv = prototype.declarator; + if (declaratormv.isEmpty()) { + continue; + } for (Element typespecifier : typespecifiermv) { PresenceCondition typespecifierCond = prototypeNode.getCondition().and(typespecifier.getCondition()); for (Element declarator : declaratormv) { diff --git a/src/superc/cdesugarer/desugarer.y b/src/superc/cdesugarer/desugarer.y index a34060bf..208c2468 100644 --- a/src/superc/cdesugarer/desugarer.y +++ b/src/superc/cdesugarer/desugarer.y @@ -571,6 +571,9 @@ FunctionPrototype FunctionPrototypeValue prototype = (FunctionPrototypeValue) getTransformationValue(prototypeNode.getData()); Multiverse typespecifiermv = prototype.typespecifier; Multiverse declaratormv = prototype.declarator; + if (declaratormv.isEmpty()) { + continue; + } for (Element typespecifier : typespecifiermv) { PresenceCondition typespecifierCond = prototypeNode.getCondition().and(typespecifier.getCondition()); for (Element declarator : declaratormv) { From d2de25e56e3cabb09f46072c9b5ebe0a304ac83d Mon Sep 17 00:00:00 2001 From: pattersonz Date: Sun, 29 Jan 2023 00:42:01 -0600 Subject: [PATCH 37/77] mend --- src/superc/cdesugarer/CActions.java | 3 +++ src/superc/cdesugarer/desugarer.y | 3 +++ 2 files changed, 6 insertions(+) diff --git a/src/superc/cdesugarer/CActions.java b/src/superc/cdesugarer/CActions.java index aeee1e9a..e4bbe1fa 100644 --- a/src/superc/cdesugarer/CActions.java +++ b/src/superc/cdesugarer/CActions.java @@ -450,6 +450,8 @@ public Object action(int production, Subparser subparser, Object value) { FunctionPrototypeValue prototype = (FunctionPrototypeValue) getTransformationValue(prototypeNode.getData()); Multiverse typespecifiermv = prototype.typespecifier; Multiverse declaratormv = prototype.declarator; + System.err.println("res:" + declaratormv.toString() + " :: " + typespecifiermv.toString()); + if (declaratormv.isEmpty()) { continue; } @@ -490,6 +492,7 @@ public Object action(int production, Subparser subparser, Object value) { bodymv.destruct(); } else { // the prototype can be empty if there are type errors. + System.err.println("/* no function due to type errors in the function prototype */\n"); sb.append("/* no function due to type errors in the function prototype */\n"); } setTransformationValue(value, sb.toString()); diff --git a/src/superc/cdesugarer/desugarer.y b/src/superc/cdesugarer/desugarer.y index 208c2468..36235696 100644 --- a/src/superc/cdesugarer/desugarer.y +++ b/src/superc/cdesugarer/desugarer.y @@ -571,6 +571,8 @@ FunctionPrototype FunctionPrototypeValue prototype = (FunctionPrototypeValue) getTransformationValue(prototypeNode.getData()); Multiverse typespecifiermv = prototype.typespecifier; Multiverse declaratormv = prototype.declarator; + System.err.println("res:" + declaratormv.toString() + " :: " + typespecifiermv.toString()); + if (declaratormv.isEmpty()) { continue; } @@ -611,6 +613,7 @@ FunctionPrototype bodymv.destruct(); } else { // the prototype can be empty if there are type errors. + System.err.println("/* no function due to type errors in the function prototype */\n"); sb.append("/* no function due to type errors in the function prototype */\n"); } setTransformationValue(value, sb.toString()); From a71c8eebc24d16eeef51c4699d634143699b92a3 Mon Sep 17 00:00:00 2001 From: pattersonz Date: Mon, 30 Jan 2023 20:28:48 -0600 Subject: [PATCH 38/77] changed subsequent method references to forward referenced structs with said forward references --- src/superc/cdesugarer/CActions.java | 65 ++++++++++++++++++++---- src/superc/cdesugarer/Declarator.java | 41 +++++++++++++++ src/superc/cdesugarer/Multiverse.java | 5 +- src/superc/cdesugarer/TypeSpecifier.java | 22 ++++++++ src/superc/cdesugarer/desugarer.y | 65 ++++++++++++++++++++---- src/superc/core/Syntax.java | 4 ++ src/xtc/Limits.java | 2 +- src/xtc/type/ArrayT.java | 6 +++ src/xtc/type/PointerT.java | 6 +++ src/xtc/type/StructT.java | 10 ++++ src/xtc/type/Type.java | 4 ++ 11 files changed, 208 insertions(+), 22 deletions(-) diff --git a/src/superc/cdesugarer/CActions.java b/src/superc/cdesugarer/CActions.java index e4bbe1fa..40b95165 100644 --- a/src/superc/cdesugarer/CActions.java +++ b/src/superc/cdesugarer/CActions.java @@ -394,16 +394,11 @@ public Object action(int production, Subparser subparser, Object value) { // times. // already declared entries + if (cOps.equal(newtype, previoustype)) { - System.err.println("TODO: distinguish between previous declaration vs definition."); - System.err.println(String.format("INFO: %s is being redeclared in global scope to compatible type", originalName)); - String previousname = ((NamedFunctionT) entry.getData().getValue()).getName(); - Declarator previousDeclarator = declarator.getData().rename(previousname); - Declaration previousDeclaration = new Declaration(typespecifier.getData(), - previousDeclarator); - // emit the renamed function as static to use the original name for linking when possible newDeclarations.add(renamedDeclarator, entry.getCondition()); - + } else if (functionCouldExist(newtype,previoustype,scope,entry.getCondition())) { + transformForwardParams(renamedDeclarator,previoustype,entry.getCondition(),newDeclarations,scope); } else { scope.putError(originalName, entry.getCondition()); recordInvalidGlobalDeclaration(originalName, entry.getCondition()); @@ -450,7 +445,6 @@ public Object action(int production, Subparser subparser, Object value) { FunctionPrototypeValue prototype = (FunctionPrototypeValue) getTransformationValue(prototypeNode.getData()); Multiverse typespecifiermv = prototype.typespecifier; Multiverse declaratormv = prototype.declarator; - System.err.println("res:" + declaratormv.toString() + " :: " + typespecifiermv.toString()); if (declaratormv.isEmpty()) { continue; @@ -9360,6 +9354,59 @@ static public boolean compatTypes(Type t1u, Type t2u) { return cOps.equal(t1, t2); } +static public boolean functionCouldExist(Type newType, Type prevType, CContext scope, PresenceCondition cond) { + if (!newType.isFunction() || !prevType.isFunction()) { + return false; + } + List newParams = ((FunctionT)newType).getParameters(); + List oldParams = ((FunctionT)prevType).getParameters(); + + if (newParams.size() != oldParams.size()) { + return false; + } + for (int i = 0; i < newParams.size(); ++i) { + Type newT = ((VariableT)newParams.get(i)).getType(); + Type oldT = ((VariableT)oldParams.get(i)).getType(); + if (cOps.equal(newT,oldT)) { + continue; + } + while (newT.isPointer()) { + if (!oldT.isPointer()) { + return false; + } + newT = ((PointerT)newT).getType(); + oldT = ((PointerT)oldT).getType(); + } + + if (newT.isStruct() && oldT.isStruct()) { + if (! ((StructT)oldT).getName().startsWith("__forward_tag_reference")){ + return false; + } + String originalTag = scope.getForwardTagReferenceAnyScope(((StructT)oldT).getName()); + + Multiverse> originalTagEntries + = scope.getInAnyScope(CContext.toTagName(originalTag), cond); + + boolean found = false; + for (Element> e : originalTagEntries) { + found = found || cOps.equal(e.getData().getValue(),newT); + } + if (!found) { + return false; + } + } else { + return false; + } + } + return true; +} + +static public void transformForwardParams(Declarator toTransform, Type prevType, PresenceCondition cond, Multiverse decs, CContext scope) { + List oldParams = ((FunctionT)prevType).getParameters(); + decs.add(toTransform.switchForwardRef(oldParams,cond,scope),cond); +} + + /*************************************************************************** **** Class to create fresh ids. ***************************************************************************/ diff --git a/src/superc/cdesugarer/Declarator.java b/src/superc/cdesugarer/Declarator.java index 247a0e56..d0f08820 100644 --- a/src/superc/cdesugarer/Declarator.java +++ b/src/superc/cdesugarer/Declarator.java @@ -12,6 +12,9 @@ import xtc.type.ArrayT; import xtc.type.FunctionT; import xtc.type.VariableT; +import xtc.type.StructT; +import superc.core.PresenceConditionManager.PresenceCondition; +import superc.cdesugarer.Multiverse.Element; /** * The superclass of all C declarator constructs. @@ -105,6 +108,12 @@ public String toString(int len) { return "ERROR: incompatible array length specifier"; } + public Declarator switchForwardRef(List oldParams, PresenceCondition cond, CContext scope) { + System.err.println("Error: tried to switch forward reference parrams for non-function declarator"); + System.exit(1); + return this; + } + public abstract String printType(); /** * This empty declarator is used for abstract declarators that only @@ -700,6 +709,9 @@ public String printType() { } public boolean isFlexible() { return declarator.isFlexible(); + } + public Declarator switchForwardRef(List oldParams, PresenceCondition cond, CContext scope) { + return new FunctionDeclarator(declarator,parameters.revertForwardRefs(oldParams,cond,scope)); } } @@ -781,6 +793,35 @@ public String printType() { sb.append(")"); return sb.toString(); } + + public ParameterListDeclarator revertForwardRefs(List oldParams, PresenceCondition cond, CContext scope) { + if (oldParams.size() != parameters.size()) { + System.err.println("Error bad params given when referting forward references"); + System.exit(1); + } + List newDecs = new LinkedList(); + for (int i = 0; i < oldParams.size(); ++i) { + Type ot = ((VariableT)oldParams.get(i)).getType(); + while (ot.isPointer()) { + ot = ((PointerT)ot).getType(); + } + if (ot.isStruct()) { + String originalTag = scope.getForwardTagReferenceAnyScope(((StructT)ot).getName()); + Multiverse> originalTagEntries + = scope.getInAnyScope(CContext.toTagName(originalTag), cond); + List names = new LinkedList(); + for (Element> e : originalTagEntries) { + names.add(((StructT)e.getData().getValue()).getName()); + } + newDecs.add(new Declaration(parameters.get(i).getTypeSpec().revertForwardRefs(names,((StructT)ot).getName()), + parameters.get(i).getDeclarator())); + } else { + newDecs.add(parameters.get(i)); + } + } + ParameterListDeclarator p = new ParameterListDeclarator(newDecs, varargs); + return p; + } } /** diff --git a/src/superc/cdesugarer/Multiverse.java b/src/superc/cdesugarer/Multiverse.java index 50c0adb4..43dd8545 100644 --- a/src/superc/cdesugarer/Multiverse.java +++ b/src/superc/cdesugarer/Multiverse.java @@ -163,11 +163,10 @@ public void add(Element elem) { * @param cond The presence condition. */ public void add(T data, PresenceCondition cond) { - if (data == null) - { + if (data == null) { System.out.println("----Alert: null added to table----\n"); throw new Error(); - } + } contents.add(new Element(data, cond)); cond.addRef(); if (null == complement) { diff --git a/src/superc/cdesugarer/TypeSpecifier.java b/src/superc/cdesugarer/TypeSpecifier.java index 3eefc987..dda2f816 100644 --- a/src/superc/cdesugarer/TypeSpecifier.java +++ b/src/superc/cdesugarer/TypeSpecifier.java @@ -25,6 +25,7 @@ import xtc.Constants; import superc.core.Syntax; +import superc.core.Syntax.Text; /** * A C type specifier. Adapted from xtc.lang.CAnalyzer.Specifiers. @@ -698,4 +699,25 @@ public void setError() { this.transformation = new LinkedList(); } + + public TypeSpecifier revertForwardRefs(List references, String forwardRef) { + TypeSpecifier toRet = new TypeSpecifier(this); + toRet.type = type.revertForwardRef(references,forwardRef); + toRet.transformation = new LinkedList(); + for (Syntax s : transformation) { + boolean found = false; + for (String s2 : references) { + if (s.getTokenText().equals(s2)) { + found = true; + break; + } + } + if (found && s instanceof Text) { + toRet.transformation.add(((Text)s).replaceText(forwardRef)); + } else { + toRet.transformation.add(s); + } + } + return toRet; + } } diff --git a/src/superc/cdesugarer/desugarer.y b/src/superc/cdesugarer/desugarer.y index 36235696..ec8b679f 100644 --- a/src/superc/cdesugarer/desugarer.y +++ b/src/superc/cdesugarer/desugarer.y @@ -518,16 +518,11 @@ FunctionPrototype // times. // already declared entries + if (cOps.equal(newtype, previoustype)) { - System.err.println("TODO: distinguish between previous declaration vs definition."); - System.err.println(String.format("INFO: %s is being redeclared in global scope to compatible type", originalName)); - String previousname = ((NamedFunctionT) entry.getData().getValue()).getName(); - Declarator previousDeclarator = declarator.getData().rename(previousname); - Declaration previousDeclaration = new Declaration(typespecifier.getData(), - previousDeclarator); - // emit the renamed function as static to use the original name for linking when possible newDeclarations.add(renamedDeclarator, entry.getCondition()); - + } else if (functionCouldExist(newtype,previoustype,scope,entry.getCondition())) { + transformForwardParams(renamedDeclarator,previoustype,entry.getCondition(),newDeclarations,scope); } else { scope.putError(originalName, entry.getCondition()); recordInvalidGlobalDeclaration(originalName, entry.getCondition()); @@ -571,7 +566,6 @@ FunctionPrototype FunctionPrototypeValue prototype = (FunctionPrototypeValue) getTransformationValue(prototypeNode.getData()); Multiverse typespecifiermv = prototype.typespecifier; Multiverse declaratormv = prototype.declarator; - System.err.println("res:" + declaratormv.toString() + " :: " + typespecifiermv.toString()); if (declaratormv.isEmpty()) { continue; @@ -9222,6 +9216,59 @@ static public boolean compatTypes(Type t1u, Type t2u) { return cOps.equal(t1, t2); } +static public boolean functionCouldExist(Type newType, Type prevType, CContext scope, PresenceCondition cond) { + if (!newType.isFunction() || !prevType.isFunction()) { + return false; + } + List newParams = ((FunctionT)newType).getParameters(); + List oldParams = ((FunctionT)prevType).getParameters(); + + if (newParams.size() != oldParams.size()) { + return false; + } + for (int i = 0; i < newParams.size(); ++i) { + Type newT = ((VariableT)newParams.get(i)).getType(); + Type oldT = ((VariableT)oldParams.get(i)).getType(); + if (cOps.equal(newT,oldT)) { + continue; + } + while (newT.isPointer()) { + if (!oldT.isPointer()) { + return false; + } + newT = ((PointerT)newT).getType(); + oldT = ((PointerT)oldT).getType(); + } + + if (newT.isStruct() && oldT.isStruct()) { + if (! ((StructT)oldT).getName().startsWith("__forward_tag_reference")){ + return false; + } + String originalTag = scope.getForwardTagReferenceAnyScope(((StructT)oldT).getName()); + + Multiverse> originalTagEntries + = scope.getInAnyScope(CContext.toTagName(originalTag), cond); + + boolean found = false; + for (Element> e : originalTagEntries) { + found = found || cOps.equal(e.getData().getValue(),newT); + } + if (!found) { + return false; + } + } else { + return false; + } + } + return true; +} + +static public void transformForwardParams(Declarator toTransform, Type prevType, PresenceCondition cond, Multiverse decs, CContext scope) { + List oldParams = ((FunctionT)prevType).getParameters(); + decs.add(toTransform.switchForwardRef(oldParams,cond,scope),cond); +} + + /*************************************************************************** **** Class to create fresh ids. ***************************************************************************/ diff --git a/src/superc/core/Syntax.java b/src/superc/core/Syntax.java index 2f9a70d7..7bc035fb 100644 --- a/src/superc/core/Syntax.java +++ b/src/superc/core/Syntax.java @@ -407,6 +407,10 @@ public Text copy() { return new Text(this); } + public Text replaceText(String newText) { + return new Text(tag(),newText); + } + public String getTokenText() { return text; } diff --git a/src/xtc/Limits.java b/src/xtc/Limits.java index 48f89586..fbc64a1e 100644 --- a/src/xtc/Limits.java +++ b/src/xtc/Limits.java @@ -45,7 +45,7 @@ private Limits() { /* Nothing to do. */ } // -------------------------------------------------------------------------- /** The name and version of the operating system. */ - public static final String OS = "Linux 5.4.0-131-generic"; + public static final String OS = "Linux 5.4.0-135-generic"; /** The processor architecture. */ public static final String ARCH = "amd64"; diff --git a/src/xtc/type/ArrayT.java b/src/xtc/type/ArrayT.java index be4cd3bb..58703f86 100644 --- a/src/xtc/type/ArrayT.java +++ b/src/xtc/type/ArrayT.java @@ -20,6 +20,7 @@ import java.io.IOException; import xtc.tree.Attribute; +import java.util.List; /** * An array type. An array can either be of fixed or variable length, @@ -249,5 +250,10 @@ public String printType() { return ((FunctionT)type.resolve()).printType(add); } } + + public Type revertForwardRef(List references, String forwardRef) { + return new ArrayT(this,type.revertForwardRef(references, forwardRef),varlength,length); + } + } diff --git a/src/xtc/type/PointerT.java b/src/xtc/type/PointerT.java index 442c7066..d965980f 100644 --- a/src/xtc/type/PointerT.java +++ b/src/xtc/type/PointerT.java @@ -20,6 +20,7 @@ import java.io.IOException; import xtc.tree.Attribute; +import java.util.List; /** * A pointer type. @@ -148,4 +149,9 @@ public String printType() { } } + public Type revertForwardRef(List references, String forwardRef) { + return new PointerT(type.revertForwardRef(references, forwardRef)); + } + + } diff --git a/src/xtc/type/StructT.java b/src/xtc/type/StructT.java index e2d57516..2be16dea 100644 --- a/src/xtc/type/StructT.java +++ b/src/xtc/type/StructT.java @@ -94,4 +94,14 @@ public String printType() { return "struct " + name; } + public Type revertForwardRef(List references, String forwardRef) { + for (String s : references) { + if (s.equals(name)) { + Type t = new StructT(this,nonce,forwardRef,copy(members)); + return t; + } + } + return this; + } + } diff --git a/src/xtc/type/Type.java b/src/xtc/type/Type.java index edd966a3..d0e35665 100644 --- a/src/xtc/type/Type.java +++ b/src/xtc/type/Type.java @@ -1959,5 +1959,9 @@ public static List seal(List types) { * not to be used as a replacement */ public abstract String printType(); + + public Type revertForwardRef(List references, String forwardRef) { + return this; + } } From 3ab197428a20b15af273d4000c83eb9af1ae01c6 Mon Sep 17 00:00:00 2001 From: pattersonz Date: Mon, 30 Jan 2023 21:44:06 -0600 Subject: [PATCH 39/77] mend --- src/superc/cdesugarer/Declarator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/superc/cdesugarer/Declarator.java b/src/superc/cdesugarer/Declarator.java index d0f08820..bbcacf3d 100644 --- a/src/superc/cdesugarer/Declarator.java +++ b/src/superc/cdesugarer/Declarator.java @@ -805,7 +805,7 @@ public ParameterListDeclarator revertForwardRefs(List oldParams, PresenceC while (ot.isPointer()) { ot = ((PointerT)ot).getType(); } - if (ot.isStruct()) { + if (ot.isStruct() && ((StructT)ot).getName().startsWith("__forward_tag_reference_")) { String originalTag = scope.getForwardTagReferenceAnyScope(((StructT)ot).getName()); Multiverse> originalTagEntries = scope.getInAnyScope(CContext.toTagName(originalTag), cond); From b71b72683a79711129c69717b2fe152d322de51b Mon Sep 17 00:00:00 2001 From: pattersonz Date: Tue, 31 Jan 2023 17:34:09 -0600 Subject: [PATCH 40/77] mend --- src/superc/cdesugarer/Declarator.java | 11 +++-- src/superc/cdesugarer/SymbolTable.java | 56 +++++++++--------------- src/superc/cdesugarer/TypeSpecifier.java | 5 ++- src/xtc/type/ArrayT.java | 4 +- src/xtc/type/PointerT.java | 4 +- src/xtc/type/StructT.java | 2 +- src/xtc/type/Type.java | 2 +- src/xtc/type/VariableT.java | 6 +++ 8 files changed, 43 insertions(+), 47 deletions(-) diff --git a/src/superc/cdesugarer/Declarator.java b/src/superc/cdesugarer/Declarator.java index bbcacf3d..873dc25a 100644 --- a/src/superc/cdesugarer/Declarator.java +++ b/src/superc/cdesugarer/Declarator.java @@ -794,7 +794,7 @@ public String printType() { return sb.toString(); } - public ParameterListDeclarator revertForwardRefs(List oldParams, PresenceCondition cond, CContext scope) { + public ParameterListDeclarator revertForwardRefs(List oldParams,PresenceCondition cond, CContext scope) { if (oldParams.size() != parameters.size()) { System.err.println("Error bad params given when referting forward references"); System.exit(1); @@ -813,8 +813,13 @@ public ParameterListDeclarator revertForwardRefs(List oldParams, PresenceC for (Element> e : originalTagEntries) { names.add(((StructT)e.getData().getValue()).getName()); } - newDecs.add(new Declaration(parameters.get(i).getTypeSpec().revertForwardRefs(names,((StructT)ot).getName()), - parameters.get(i).getDeclarator())); + TypeSpecifier newType = parameters.get(i).getTypeSpec().revertForwardRefs(names,((StructT)ot).getName(),parameters.get(i).getName()); + scope = scope.reenterScope(cond); + scope.getSymbolTable().replaceType(parameters.get(i).getName(),oldParams.get(i).revertForwardRef(names,((StructT)ot).getName(),parameters.get(i).getName()),cond); + System.err.println("ps: " + scope.getSymbolTable()); + scope = scope.exitReentrantScope(cond); + + newDecs.add(new Declaration(newType,parameters.get(i).getDeclarator())); } else { newDecs.add(parameters.get(i)); } diff --git a/src/superc/cdesugarer/SymbolTable.java b/src/superc/cdesugarer/SymbolTable.java index d6d91154..0abd25c4 100644 --- a/src/superc/cdesugarer/SymbolTable.java +++ b/src/superc/cdesugarer/SymbolTable.java @@ -460,42 +460,26 @@ public Iterator iterator() { return map.keySet().iterator(); } - // private static long varcount = 0; - // private final static char[] charset = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789".toCharArray(); - // private final static Random random = new Random(); - // private final static int RAND_SIZE = 5; - - // /** - // * Produce a random string of a given size. - // * - // * @returns The random string. - // */ - // protected String randomString(int string_size) { - // StringBuilder randomstring = new StringBuilder(); - // for (int i = 0; i < string_size; i++) { - // randomstring.append(charset[random.nextInt(charset.length)]); - // } - // return randomstring.toString(); - // } - - // /** - // * Mangle the given identifier to avoid naming clashes when symbols - // * are multiply-declared. - // */ - // protected String mangleRenaming(String prefix, String ident) { - // // don't want to exceed c identifier length limit (31) - // if (ident.length() > 22) { - // // shorten ident to be at max, 22 chars - // StringBuilder sb = new StringBuilder(ident); - // sb = sb.delete(23, ident.length()); - // ident = sb.toString(); - // } - - // // return String.format("_%s%d_%s", prefix, varcount++, ident); - // // NOTE: when doing regression testing, uncomment the line above, and comment-out the line below - // return String.format("_%s%d%s_%s", prefix, varcount++, randomString(RAND_SIZE), ident); - // } - + public void replaceType(String renamed, T newValue, PresenceCondition cond) { + String originalName = renamed; + while (originalName.charAt(originalName.length()-1) >= '0' && originalName.charAt(originalName.length()-1) <= '9') { + originalName = originalName.substring(0,originalName.length()-1); + } + originalName = originalName.substring(2,originalName.length()-1); + Multiverse> values = map.get(originalName); + Multiverse> onlyDeclared = values.filter(cond); + for (Element> e : onlyDeclared) { + if (!e.getData().isDeclared()) { + System.err.println("Error: trying to redefine type for erroneous or undeclared entry"); + System.exit(1); + } + } + onlyDeclared.destruct(); + Multiverse> newmv = values.filter(cond.not()); + newmv.add(new Declared(newValue),cond); + map.replace(originalName,newmv); + } + /** * returns a list of all anonymous ids that exist in the * symbol table. diff --git a/src/superc/cdesugarer/TypeSpecifier.java b/src/superc/cdesugarer/TypeSpecifier.java index dda2f816..5d6f1648 100644 --- a/src/superc/cdesugarer/TypeSpecifier.java +++ b/src/superc/cdesugarer/TypeSpecifier.java @@ -700,9 +700,9 @@ public void setError() { } - public TypeSpecifier revertForwardRefs(List references, String forwardRef) { + public TypeSpecifier revertForwardRefs(List references, String forwardRef, String rename) { TypeSpecifier toRet = new TypeSpecifier(this); - toRet.type = type.revertForwardRef(references,forwardRef); + toRet.type = type.revertForwardRef(references,forwardRef,rename); toRet.transformation = new LinkedList(); for (Syntax s : transformation) { boolean found = false; @@ -718,6 +718,7 @@ public TypeSpecifier revertForwardRefs(List references, String forwardRe toRet.transformation.add(s); } } + System.err.println(this + "::" + toRet); return toRet; } } diff --git a/src/xtc/type/ArrayT.java b/src/xtc/type/ArrayT.java index 58703f86..eb62c157 100644 --- a/src/xtc/type/ArrayT.java +++ b/src/xtc/type/ArrayT.java @@ -251,8 +251,8 @@ public String printType() { } } - public Type revertForwardRef(List references, String forwardRef) { - return new ArrayT(this,type.revertForwardRef(references, forwardRef),varlength,length); + public Type revertForwardRef(List references, String forwardRef, String rename) { + return new ArrayT(this,type.revertForwardRef(references, forwardRef, rename),varlength,length); } diff --git a/src/xtc/type/PointerT.java b/src/xtc/type/PointerT.java index d965980f..bf2aa83a 100644 --- a/src/xtc/type/PointerT.java +++ b/src/xtc/type/PointerT.java @@ -149,8 +149,8 @@ public String printType() { } } - public Type revertForwardRef(List references, String forwardRef) { - return new PointerT(type.revertForwardRef(references, forwardRef)); + public Type revertForwardRef(List references, String forwardRef, String rename) { + return new PointerT(type.revertForwardRef(references, forwardRef, rename)); } diff --git a/src/xtc/type/StructT.java b/src/xtc/type/StructT.java index 2be16dea..88c8ab13 100644 --- a/src/xtc/type/StructT.java +++ b/src/xtc/type/StructT.java @@ -94,7 +94,7 @@ public String printType() { return "struct " + name; } - public Type revertForwardRef(List references, String forwardRef) { + public Type revertForwardRef(List references, String forwardRef, String rename) { for (String s : references) { if (s.equals(name)) { Type t = new StructT(this,nonce,forwardRef,copy(members)); diff --git a/src/xtc/type/Type.java b/src/xtc/type/Type.java index d0e35665..b4806db6 100644 --- a/src/xtc/type/Type.java +++ b/src/xtc/type/Type.java @@ -1960,7 +1960,7 @@ public static List seal(List types) { */ public abstract String printType(); - public Type revertForwardRef(List references, String forwardRef) { + public Type revertForwardRef(List references, String forwardRef, String rename) { return this; } diff --git a/src/xtc/type/VariableT.java b/src/xtc/type/VariableT.java index a3ff6fd0..44883842 100644 --- a/src/xtc/type/VariableT.java +++ b/src/xtc/type/VariableT.java @@ -19,6 +19,7 @@ package xtc.type; import java.io.IOException; +import java.util.List; /** * A variable. This pseudo-type captures the name for globals, @@ -265,4 +266,9 @@ public static VariableT newBitfield(Type type, String name, int width) { return new VariableT(null, type, name, width); } + public Type revertForwardRef(List references, String forwardRef, String rename) { + return new VariableT(this, getType().revertForwardRef(references, forwardRef, rename), this.kind, rename); + } + + } From a13c11dd2452c25d3dfcc5d136923bba47a04942 Mon Sep 17 00:00:00 2001 From: pattersonz Date: Thu, 2 Feb 2023 15:23:03 -0600 Subject: [PATCH 41/77] fix enum equality --- src/superc/cdesugarer/CActions.java | 2 +- src/superc/cdesugarer/desugarer.y | 2 +- src/xtc/type/C.java | 13 +++++++++---- src/xtc/type/EnumT.java | 2 +- 4 files changed, 12 insertions(+), 7 deletions(-) diff --git a/src/superc/cdesugarer/CActions.java b/src/superc/cdesugarer/CActions.java index 40b95165..f2521790 100644 --- a/src/superc/cdesugarer/CActions.java +++ b/src/superc/cdesugarer/CActions.java @@ -394,8 +394,8 @@ public Object action(int production, Subparser subparser, Object value) { // times. // already declared entries - if (cOps.equal(newtype, previoustype)) { + newDeclarations.add(renamedDeclarator, entry.getCondition()); } else if (functionCouldExist(newtype,previoustype,scope,entry.getCondition())) { transformForwardParams(renamedDeclarator,previoustype,entry.getCondition(),newDeclarations,scope); diff --git a/src/superc/cdesugarer/desugarer.y b/src/superc/cdesugarer/desugarer.y index ec8b679f..38f6fe9e 100644 --- a/src/superc/cdesugarer/desugarer.y +++ b/src/superc/cdesugarer/desugarer.y @@ -518,8 +518,8 @@ FunctionPrototype // times. // already declared entries - if (cOps.equal(newtype, previoustype)) { + newDeclarations.add(renamedDeclarator, entry.getCondition()); } else if (functionCouldExist(newtype,previoustype,scope,entry.getCondition())) { transformForwardParams(renamedDeclarator,previoustype,entry.getCondition(),newDeclarations,scope); diff --git a/src/xtc/type/C.java b/src/xtc/type/C.java index f8ad6252..020314c7 100644 --- a/src/xtc/type/C.java +++ b/src/xtc/type/C.java @@ -1502,13 +1502,15 @@ public Type compose(Type t1, Type t2, boolean pedantic) { protected Type compose(Type t1, Type t2, boolean pedantic, boolean recursive) { if (recursive) { // Preserve any wrapped types. - if (t1.isEnum()) { + System.err.println(t1 + "+" + t2); + if (t1.isEnum()) { return t1.equals(t2) ? t1 : ErrorT.TYPE; } else if (t1.isWrapped()) { Type w1 = t1.toWrapped().getType(); Type c = compose(w1, t2, pedantic, true); - + System.err.println(t1 + "x" + c); + if (c.isError()) { return ErrorT.TYPE; @@ -1677,11 +1679,11 @@ protected Type composeFunctions(FunctionT f1, FunctionT f2, boolean pedantic) { } else { if (! f1.getName().equals(f2.getName())) return ErrorT.TYPE; } - + // The flag for whether the component types differ from this type. boolean differs = false; - // Compare the results. + if (! hasSameQualifiers(f1.getResult(), f2.getResult())) return ErrorT.TYPE; final Type res = compose(f1.getResult(), f2.getResult(), true); if (res.isError()) return ErrorT.TYPE; @@ -1731,6 +1733,7 @@ protected Type composeFunctions(FunctionT f1, FunctionT f2, boolean pedantic) { return ErrorT.TYPE; } if (f1.isVarArgs() != f2.isVarArgs()) return ErrorT.TYPE; + System.err.println(f1 + "::" + f2 + ":" + differs); final int size = f1.getParameters().size(); List par = differs ? new ArrayList(f1.getParameters()) : null; @@ -1738,6 +1741,7 @@ protected Type composeFunctions(FunctionT f1, FunctionT f2, boolean pedantic) { final Type p1 = f1.getParameters().get(i); final Type p2 = f2.getParameters().get(i); if (pedantic && ! hasSameQualifiers(p1, p2)) return ErrorT.TYPE; + System.err.println(p1 + ";" + p2); final Type p3 = compose(p1, p2, true); if (p3.isError()) return ErrorT.TYPE; @@ -1747,6 +1751,7 @@ protected Type composeFunctions(FunctionT f1, FunctionT f2, boolean pedantic) { par.set(i, p3); } } + System.err.println(f1 + "::" + f2 + ":" + differs); // Ignore the exceptions and we are done. if (! differs) return f1; diff --git a/src/xtc/type/EnumT.java b/src/xtc/type/EnumT.java index 8dd3ca30..73c0a283 100644 --- a/src/xtc/type/EnumT.java +++ b/src/xtc/type/EnumT.java @@ -204,7 +204,7 @@ public int hashCode() { public boolean equals(Object o) { if (! (o instanceof Type)) return false; Type t = (Type)o; - return t.hasTagged() && (nonce == t.toTagged().getNonce()); + return t.isEnum() && t.toEnum().getName().equals(name); } public void write(Appendable out) throws IOException { From 38da1b21fb2b5b733c9971814852e66ad59a2e1f Mon Sep 17 00:00:00 2001 From: pattersonz Date: Fri, 3 Feb 2023 19:28:23 -0600 Subject: [PATCH 42/77] dereferencing a forward reference pointer now derefs to a child type --- src/superc/cdesugarer/CActions.java | 90 ++++++++++++++++++++----- src/superc/cdesugarer/Declarator.java | 4 ++ src/superc/cdesugarer/desugarer.y | 96 +++++++++++++++++++++------ 3 files changed, 153 insertions(+), 37 deletions(-) diff --git a/src/superc/cdesugarer/CActions.java b/src/superc/cdesugarer/CActions.java index f2521790..65f9d85f 100644 --- a/src/superc/cdesugarer/CActions.java +++ b/src/superc/cdesugarer/CActions.java @@ -6457,28 +6457,84 @@ else if (size1 > size2) { case 430: { - // TODO: need to look at the unaryoperator to determine whether it's the correct type usage - PresenceCondition pc = subparser.getPresenceCondition(); - ExpressionValue exprval = getCompleteNodeExpressionValue(subparser, 1, pc); + // TODO: need to look at the unaryoperator to determine whether it's the correct type usage + PresenceCondition pc = subparser.getPresenceCondition(); + ExpressionValue exprval = getCompleteNodeExpressionValue(subparser, 1, pc); + Multiverse resultmv = new Multiverse(); + Multiverse resulttypemv = new Multiverse(); + + Multiverse opmv = this.getCompleteNodeSingleValue(subparser, 2, pc); + Multiverse opstr = DesugarOps.syntaxToString.transform(opmv); + for (Element op : opstr) { + if (op.getData().equals("*")) { + + Multiverse types = exprval.type.filter(op.getCondition()); + for (Element t : types) { + if (!t.getData().isPointer() && !t.getData().isArray()) { + resultmv.add(emitError("no valid type found in unary operation"),t.getCondition()); + resulttypemv.add(ErrorT.TYPE,t.getCondition()); + } else { + System.err.println(op.getData() + " :: " + t.getData()); - Multiverse opmv = this.getCompleteNodeSingleValue(subparser, 2, pc); - if (exprval.hasValidType() && !exprval.transformation.isEmpty()) { - Multiverse opstr = DesugarOps.syntaxToString.transform(opmv); - Multiverse resultmv = opstr.product(exprval.transformation, DesugarOps.concatStrings); - Multiverse typemv = exprval.type.join(opmv, DesugarOps.checkUnaryOp); - PresenceCondition errorCond = typemv.getConditionOf(ErrorT.TYPE); - PresenceCondition validTypes = errorCond.not(); - resultmv = resultmv.filter(validTypes); + Type innerType; + if (t.getData().isPointer()) { + innerType = t.getData().toPointer().getType(); + } else { + innerType = t.getData().toArray().getType(); + } + if (innerType.isStruct() && innerType.toStruct().getName().startsWith("__forward_tag_reference")) { + CContext scope = (CContext) subparser.scope; + String originalTag = scope.getForwardTagReferenceAnyScope(innerType.getName()); + + Multiverse> originalTagEntries + = scope.getInAnyScope(CContext.toTagName(originalTag), t.getCondition()); - setTransformationValue(value, - new ExpressionValue(resultmv, - typemv, - exprval.integrateSyntax(opmv))); // TODO: placeholder until type checking + for (Element> e : originalTagEntries) { + if (e.getData().isError()) { + resultmv.add(emitError("no valid type found in unary operation"),t.getCondition()); + resulttypemv.add(ErrorT.TYPE,e.getCondition()); + } else { + StructT refed = e.getData().getValue().toStruct(); + for (Element es : exprval.transformation.filter(e.getCondition())) { + resultmv.add(es.getData() + "->" + refed.getName(), es.getCondition()); + resulttypemv.add(refed,es.getCondition()); + } + } + } } else { - setTransformationValue(value, new ExpressionValue(emitError("no valid type found in unary operation"), ErrorT.TYPE, - exprval.integrateSyntax(opmv),pc)); + if (exprval.hasValidType() && !exprval.transformation.isEmpty()) { + Multiverse strings = opstr.filter(t.getCondition()).product(exprval.transformation, DesugarOps.concatStrings); + Multiverse subtypes = exprval.type.filter(t.getCondition()).join(opmv, DesugarOps.checkUnaryOp); + PresenceCondition errorCond = subtypes.getConditionOf(ErrorT.TYPE); + PresenceCondition validTypes = errorCond.not(); + resultmv.addAll(strings.filter(validTypes)); + resulttypemv.addAll(subtypes); + } else { + resultmv.add(emitError("no valid type found in unary operation"),t.getCondition()); + resulttypemv.add(ErrorT.TYPE,t.getCondition()); + + } } } + } + } else { + if (exprval.hasValidType() && !exprval.transformation.isEmpty()) { + Multiverse strings = opstr.filter(op.getCondition()).product(exprval.transformation, DesugarOps.concatStrings); + Multiverse types = exprval.type.filter(op.getCondition()).join(opmv, DesugarOps.checkUnaryOp); + PresenceCondition errorCond = types.getConditionOf(ErrorT.TYPE); + PresenceCondition validTypes = errorCond.not(); + resultmv.addAll(strings.filter(validTypes)); + resulttypemv.addAll(types); + } else { + resultmv.add(emitError("no valid type found in unary operation"),op.getCondition()); + resulttypemv.add(ErrorT.TYPE,op.getCondition()); + + } + } + } +setTransformationValue(value, new ExpressionValue(resultmv,resulttypemv, + exprval.integrateSyntax(opmv))); +} break; case 431: diff --git a/src/superc/cdesugarer/Declarator.java b/src/superc/cdesugarer/Declarator.java index 873dc25a..9017796f 100644 --- a/src/superc/cdesugarer/Declarator.java +++ b/src/superc/cdesugarer/Declarator.java @@ -308,6 +308,10 @@ public String printType() { return "*"; return String.format("* (%s)", inner); // preserve order of operations } + + public Declarator switchForwardRef(List oldParams, PresenceCondition cond, CContext scope) { + return declarator.switchForwardRef(oldParams,cond,scope); + } } /** diff --git a/src/superc/cdesugarer/desugarer.y b/src/superc/cdesugarer/desugarer.y index 38f6fe9e..11e9ec8a 100644 --- a/src/superc/cdesugarer/desugarer.y +++ b/src/superc/cdesugarer/desugarer.y @@ -6514,31 +6514,87 @@ UnaryExpression: /** passthrough, nomerge **/ // ExpressionValue pc)); } } - | Unaryoperator CastExpression - { - // TODO: need to look at the unaryoperator to determine whether it's the correct type usage - PresenceCondition pc = subparser.getPresenceCondition(); - ExpressionValue exprval = getCompleteNodeExpressionValue(subparser, 1, pc); +| Unaryoperator CastExpression +{ + // TODO: need to look at the unaryoperator to determine whether it's the correct type usage + PresenceCondition pc = subparser.getPresenceCondition(); + ExpressionValue exprval = getCompleteNodeExpressionValue(subparser, 1, pc); + Multiverse resultmv = new Multiverse(); + Multiverse resulttypemv = new Multiverse(); + + Multiverse opmv = this.getCompleteNodeSingleValue(subparser, 2, pc); + Multiverse opstr = DesugarOps.syntaxToString.transform(opmv); + for (Element op : opstr) { + if (op.getData().equals("*")) { + + Multiverse types = exprval.type.filter(op.getCondition()); + for (Element t : types) { + if (!t.getData().isPointer() && !t.getData().isArray()) { + resultmv.add(emitError("no valid type found in unary operation"),t.getCondition()); + resulttypemv.add(ErrorT.TYPE,t.getCondition()); + } else { + System.err.println(op.getData() + " :: " + t.getData()); - Multiverse opmv = this.getCompleteNodeSingleValue(subparser, 2, pc); - if (exprval.hasValidType() && !exprval.transformation.isEmpty()) { - Multiverse opstr = DesugarOps.syntaxToString.transform(opmv); - Multiverse resultmv = opstr.product(exprval.transformation, DesugarOps.concatStrings); - Multiverse typemv = exprval.type.join(opmv, DesugarOps.checkUnaryOp); - PresenceCondition errorCond = typemv.getConditionOf(ErrorT.TYPE); - PresenceCondition validTypes = errorCond.not(); - resultmv = resultmv.filter(validTypes); + Type innerType; + if (t.getData().isPointer()) { + innerType = t.getData().toPointer().getType(); + } else { + innerType = t.getData().toArray().getType(); + } + if (innerType.isStruct() && innerType.toStruct().getName().startsWith("__forward_tag_reference")) { + CContext scope = (CContext) subparser.scope; + String originalTag = scope.getForwardTagReferenceAnyScope(innerType.getName()); + + Multiverse> originalTagEntries + = scope.getInAnyScope(CContext.toTagName(originalTag), t.getCondition()); - setTransformationValue(value, - new ExpressionValue(resultmv, - typemv, - exprval.integrateSyntax(opmv))); // TODO: placeholder until type checking + for (Element> e : originalTagEntries) { + if (e.getData().isError()) { + resultmv.add(emitError("no valid type found in unary operation"),t.getCondition()); + resulttypemv.add(ErrorT.TYPE,e.getCondition()); + } else { + StructT refed = e.getData().getValue().toStruct(); + for (Element es : exprval.transformation.filter(e.getCondition())) { + resultmv.add(es.getData() + "->" + refed.getName(), es.getCondition()); + resulttypemv.add(refed,es.getCondition()); + } + } + } } else { - setTransformationValue(value, new ExpressionValue(emitError("no valid type found in unary operation"), ErrorT.TYPE, - exprval.integrateSyntax(opmv),pc)); + if (exprval.hasValidType() && !exprval.transformation.isEmpty()) { + Multiverse strings = opstr.filter(t.getCondition()).product(exprval.transformation, DesugarOps.concatStrings); + Multiverse subtypes = exprval.type.filter(t.getCondition()).join(opmv, DesugarOps.checkUnaryOp); + PresenceCondition errorCond = subtypes.getConditionOf(ErrorT.TYPE); + PresenceCondition validTypes = errorCond.not(); + resultmv.addAll(strings.filter(validTypes)); + resulttypemv.addAll(subtypes); + } else { + resultmv.add(emitError("no valid type found in unary operation"),t.getCondition()); + resulttypemv.add(ErrorT.TYPE,t.getCondition()); + + } } } - | SIZEOF UnaryExpression + } + } else { + if (exprval.hasValidType() && !exprval.transformation.isEmpty()) { + Multiverse strings = opstr.filter(op.getCondition()).product(exprval.transformation, DesugarOps.concatStrings); + Multiverse types = exprval.type.filter(op.getCondition()).join(opmv, DesugarOps.checkUnaryOp); + PresenceCondition errorCond = types.getConditionOf(ErrorT.TYPE); + PresenceCondition validTypes = errorCond.not(); + resultmv.addAll(strings.filter(validTypes)); + resulttypemv.addAll(types); + } else { + resultmv.add(emitError("no valid type found in unary operation"),op.getCondition()); + resulttypemv.add(ErrorT.TYPE,op.getCondition()); + + } + } + } +setTransformationValue(value, new ExpressionValue(resultmv,resulttypemv, + exprval.integrateSyntax(opmv))); +} +| SIZEOF UnaryExpression { PresenceCondition pc = subparser.getPresenceCondition(); ExpressionValue exprval = getCompleteNodeExpressionValue(subparser, 1, pc); From f2b8588c7d431a4ba77a627944bdaae050701468 Mon Sep 17 00:00:00 2001 From: pattersonz Date: Sun, 5 Feb 2023 19:56:53 -0600 Subject: [PATCH 43/77] qualified pointers noncompatible with void --- src/superc/cdesugarer/Declaration.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/superc/cdesugarer/Declaration.java b/src/superc/cdesugarer/Declaration.java index 33232793..9137d5a4 100644 --- a/src/superc/cdesugarer/Declaration.java +++ b/src/superc/cdesugarer/Declaration.java @@ -128,6 +128,8 @@ private boolean notCompatible(){ !declarator.isFunctionDeclarator() && !declarator.isPointerDeclarator() && !declarator.isPointerAbstractDeclarator() && + !declarator.isQualifiedPointerDeclarator() && + !declarator.isQualifiedPointerAbstractDeclarator() && !declarator.isEmptyDeclarator()) || //if the left is inline, right must be a function (typespecifier.hasInline() && !declarator.isFunctionDeclarator())) From 140467fda8510da2c8885cbfccfdace3a38884b0 Mon Sep 17 00:00:00 2001 From: pattersonz Date: Tue, 14 Feb 2023 01:23:28 -0600 Subject: [PATCH 44/77] fixed majority of regressions --- .gitignore | 4 +- .../microbenchmark/autoRunnerResults.txt | 92 +- .../desugarer/microbenchmark/autorunner.py | 23 +- .../microbenchmark/functionsHeader.c | 8 +- .../cast_type_error.c | 2 +- .../semantic_error_integration/complex_if.c | 6 +- .../struct_global_forward_reference_illegal.c | 1 + .../struct_redeclare.c | 1 + .../injected/self_reference.c | 9 + .../injected/recursive_method_call.c | 16 + .../injected/deref_struct_self_reference.c | 19 + .../ANSI/injected/function_pointer_param.c | 21 + .../function_qualified_void_pointer.c | 16 + .../injected/prototype_forward_reference.c | 23 + .../language_features/function_definitions/K | 0 src/superc/cdesugarer/CActions.java | 1599 +++++++----- src/superc/cdesugarer/CParseTables.java | 2221 +++++++++-------- src/superc/cdesugarer/CValues.java | 210 +- src/superc/cdesugarer/Declaration.java | 6 + src/superc/cdesugarer/Declarator.java | 11 +- src/superc/cdesugarer/NamedFunctionT.java | 9 + src/superc/cdesugarer/SymbolTable.java | 3 + src/superc/cdesugarer/desugarer.y | 644 ++++- src/xtc/type/FunctionT.java | 1 + src/xtc/type/Type.java | 26 +- 25 files changed, 2980 insertions(+), 1991 deletions(-) create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/self_reference.c create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/injected/recursive_method_call.c create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/unary_binary_ternary/injected/deref_struct_self_reference.c create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_pointer_param.c create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_qualified_void_pointer.c create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/prototype_forward_reference.c create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K diff --git a/.gitignore b/.gitignore index f20335c6..0513e2c3 100644 --- a/.gitignore +++ b/.gitignore @@ -9,5 +9,5 @@ allTests.out /fonda/cpp_testsuite/desugarer/masterTypeCheck/binary /fonda/cpp_testsuite/desugarer/masterTypeCheck/unary /fonda/cpp_testsuite/desugarer/masterTypeCheck/other -fonda/cpp_testsuite/desugarer/microbenchmark/*.desugared.c -fonda/cpp_testsuite/desugarer/microbenchmark/*.desugaredCondHeader.c \ No newline at end of file +*.desugared.c +*.desugaredCondHeader.c \ No newline at end of file diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/autoRunnerResults.txt b/fonda/cpp_testsuite/desugarer/microbenchmark/autoRunnerResults.txt index 11478d6e..4fc9c4f8 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/autoRunnerResults.txt +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/autoRunnerResults.txt @@ -1,9 +1,26 @@ ~~~Results~~~ /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/struct_local_illegal.c :: match -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/array_invalid_size.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/struct_struct_declarator.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/typedef_partially_defined.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/cast_type_error.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/variable_partially_defined.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/typedefname_and_variable_declarations.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/invalid_qualifiers.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/reference_error.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/enum_constant_expression.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/primitive_array_declarator.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/partial_redeclaration.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/invalid_loop_confition.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/struct_redeclare.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/function_function_parameters.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/struct_global_forward_reference_illegal.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/array_constant_init.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/local_redeclarations.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/global_redeclaration.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/invalid_types.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/syntactic_error_integration/struct_prohibit_initializer.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/syntactic_error_integration/no_identifier.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/syntactic_error_integration/invalid_typedefs.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/external_declarations/injected/extern_function_dec_def.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/external_declarations/injected/extern_var_dec_configurable.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/external_declarations/injected/extern_repeated.c :: match @@ -14,6 +31,8 @@ /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_abstract_parameter.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/basic_functions.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_pointer.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_qualified_void_pointer.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_pointer_param.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_parameter_multiple_config.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/variadic_arguments/injected/simple_varg.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_flex.c :: match @@ -22,6 +41,7 @@ /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/declaring_list_partial_config.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_conditional_flex.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/scope_partial_declaration1.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/self_reference.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/declarators_list.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/configurable_pointer.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/configurable_array.c :: match @@ -63,6 +83,7 @@ /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/injected/typeof_configurable.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/injected/sizeof_configurable_struct.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/injected/implicit_param.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/injected/recursive_method_call.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/injected/negative_sizeof.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/injected/typeof_union_field.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/injected/func_call_param.c :: match @@ -74,67 +95,20 @@ /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/unary_binary_ternary/injected/deref_union_from_struct.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/unary_binary_ternary/injected/array_assignment.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/unary_binary_ternary/injected/increment_decrement.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/unary_binary_ternary/injected/deref_struct_self_reference.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/unary_binary_ternary/injected/statement_as_expression.c :: match -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/struct_struct_declarator.c :: 1/2 - ['0', '0']/['157', '0'] - ['::0/157'] -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/typedef_partially_defined.c :: 2/8 - ['0', '0', '0', '0', '0', '0', '0', '0']/['157', '0', '0', '157', '157', '157', '157', '157'] - ['::0/157', ' A B::0/157', ' C::0/157', ' A C::0/157', ' B C::0/157', ' A B C::0/157'] -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/cast_type_error.c :: 1/2 - ['157', '127']/['127', '127'] - ['::157/127'] -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/variable_partially_defined.c :: 2/8 - ['127', '0', '0', '0', '0', '0', '0', '0']/['157', '0', '0', '157', '157', '157', '157', '157'] - ['::127/157', ' A B::0/157', ' C::0/157', ' A C::0/157', ' B C::0/157', ' A B C::0/157'] -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/typedefname_and_variable_declarations.c :: 1/2 - ['157', '0']/['0', '0'] - ['::157/0'] -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/invalid_qualifiers.c :: 1/16 - ['0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0']/['0', '157', '157', '157', '157', '157', '157', '157', '157', '157', '157', '157', '157', '157', '157', '157'] - [' INVALID::0/157', ' SIGNED::0/157', ' INVALID SIGNED::0/157', ' DUPLICATE::0/157', ' INVALID DUPLICATE::0/157', ' SIGNED DUPLICATE::0/157', ' INVALID SIGNED DUPLICATE::0/157', ' INVALID_LONG::0/157', ' INVALID INVALID_LONG::0/157', ' SIGNED INVALID_LONG::0/157', ' INVALID SIGNED INVALID_LONG::0/157', ' DUPLICATE INVALID_LONG::0/157', ' INVALID DUPLICATE INVALID_LONG::0/157', ' SIGNED DUPLICATE INVALID_LONG::0/157', ' INVALID SIGNED DUPLICATE INVALID_LONG::0/157'] /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/complex_if.c :: 1/2 - ['157', '127']/['127', '127'] - ['::157/127'] -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/reference_error.c :: 1/2 - ['127', '0']/['157', '0'] - ['::127/157'] -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/enum_constant_expression.c :: 1/2 - ['0', '0']/['0', '157'] - [' INVALID::0/157'] -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/primitive_array_declarator.c :: 1/2 - ['0', '0']/['0', '157'] - [' A::0/157'] -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/partial_redeclaration.c :: 3/4 - ['0', '0', '0', '0']/['0', '0', '0', '157'] - [' A B::0/157'] -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/invalid_loop_confition.c :: 1/2 - ['157', '127']/['157', '157'] - [' A::127/157'] -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/struct_redeclare.c :: 0/2 - ['0', '0']/['128', '157'] - ['::0/128', ' REDECLARE::0/157'] -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/struct_global_forward_reference_illegal.c :: 0/2 - ['0', '139']/['157', '49'] - ['::0/157', ' FORWARD::139/49'] -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/array_constant_init.c :: 1/2 - ['5', '5']/['5', '157'] - [' CONSTANT::5/157'] -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/local_redeclarations.c :: 1/2 - ['0', '0']/['0', '157'] - [' A::0/157'] -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/global_redeclaration.c :: 3/4 - ['157', '0', '0', '0']/['157', '0', '0', '157'] - [' A B::0/157'] -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/syntactic_error_integration/no_identifier.c :: 0/2 - ['127', '127']/['157', '157'] - ['::127/157', ' NOID::127/157'] -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/syntactic_error_integration/invalid_typedefs.c :: 0/2 - ['127', '127']/['157', '157'] - ['::127/157', ' INVALID_TYPEDEF::127/157'] + ['157', '139']/['157', '3'] + [' A::139/3'] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/array_invalid_size.c :: 0/2 + ['0', '157']/['777', '777'] + ['::0/777', ' INVALID::157/777'] /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/syntactic_error_integration/enum_error.c :: 1/2 - ['0', '0']/['0', '157'] - [' REPEATED::0/157'] + ['0', '157']/['0', '0'] + [' REPEATED::157/0'] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/prototype_forward_reference.c :: 0/2 + ['44', '44']/['777', '777'] + ['::44/777', ' A::44/777'] /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/injected/function_typedef_parameter_configurable.c :: did not desug /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/injected/function_parameters_configurable.c :: did not desug /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/injected/function_parameters_empty_configurable.c :: did not desug diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/autorunner.py b/fonda/cpp_testsuite/desugarer/microbenchmark/autorunner.py index c2b55e8d..3b2384d7 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/autorunner.py +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/autorunner.py @@ -2,6 +2,7 @@ import sys import re import threading +from subprocess import PIPE, Popen CONDHEADERSTR = 'CondHeader.c' @@ -27,7 +28,7 @@ def getMacroList(f): for w in words: if 'ifdef' in w or ( "elif" in l and "defined" in w): conf = words[words.index(w)+1] - conf = conf.strip('\n') + conf = conf.rstrip().lstrip() if conf not in ms: ms.append(conf) o.close() @@ -53,9 +54,10 @@ def runBase(f,ms): else: defs += ' -U ' + m + ' ' executeCmd = ' '.join(['gcc',defs,f]) - result = os.popen(executeCmd) - if 'error:' in result.read(): - res.append('-99') + p = Popen(executeCmd, shell=True, stdout=PIPE, stderr=PIPE) + stdout, stderr = p.communicate() + if 'error:' in stderr.decode(): + res.append('157') else: result = os.popen('./a.out; echo $?') resStr = result.read().strip('\n') @@ -85,12 +87,12 @@ def writeHeader(defs,name,el): for e in el: head.write('const bool ') head.write(e['var']) - head.write(' = ') + head.write('() { return ') c = e['cond'] for d in defs.keys(): c = c.replace('defined ' + d + ')', '1)' if defs[d] else '0)') head.write(c) - head.write(';\n') + head.write('; }\n') def runDesug(f,ms,el): sz = len(ms) @@ -104,9 +106,10 @@ def runDesug(f,ms,el): defs[m] = False writeHeader(defs,f[:len(f)-2],el) executeCmd = ' '.join(['gcc','functionsHeader.c', f[:len(f)-2] + CONDHEADERSTR,f]) - result = os.popen(executeCmd) - if 'error:' in result.read(): - res.append('-100') + p = Popen(executeCmd, shell=True, stdout=PIPE, stderr=PIPE) + stdout, stderr = p.communicate() + if 'error:' in stderr.decode(): + res.append('777') else: result = os.popen('./a.out; echo $?') resStr = result.read().strip('\n') @@ -162,7 +165,7 @@ def runFiles(fileList,results): baseRes = runBase(absFile,macros) #desugar file os.system('rm ' + absFile[:len(absFile)-2]+".desugared.c") - cmd = " ".join(["nohup", "java", "superc.SugarC", "-make-main", "-showActions", absFile, ">", absFile[:len(absFile)-2]+".desugared.c", "2>", absFile[:len(absFile)-2]+".Log"]) + cmd = " ".join(["nohup", "java", "superc.SugarC", "-keep-mem", "-make-main", "-showActions", "-useBDD", absFile, ">", absFile[:len(absFile)-2]+".desugared.c", "2>", absFile[:len(absFile)-2]+".Log"]) os.system(cmd) if not os.path.exists(absFile[:len(absFile)-2]+".desugared.c"): results.append(f + " :: did not desug") diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/functionsHeader.c b/fonda/cpp_testsuite/desugarer/microbenchmark/functionsHeader.c index 0df4ee86..cb5becfb 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/functionsHeader.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/functionsHeader.c @@ -1,17 +1,17 @@ #include #include void __static_parse_error(char *msg) { - printf("parse error: %s\n", msg); + //printf("parse error: %s\n", msg); exit(-99); } void __static_type_error(char *msg) { - printf("type error: %s\n", msg); + //printf("type error: %s\n", msg); exit(-99); } void __static_renaming(char *renaming, char *original) { - printf("renaming: %s -> %s\n", original, renaming); + //printf("renaming: %s -> %s\n", original, renaming); } void __static_condition_renaming(char *expression, char *renaming) { - printf("condition renaming: %s -> %s\n", expression, renaming); + //printf("condition renaming: %s -> %s\n", expression, renaming); } diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/cast_type_error.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/cast_type_error.c index 37206785..8902840a 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/cast_type_error.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/cast_type_error.c @@ -1,6 +1,6 @@ int x #ifdef A -() +() { return 2;} #endif ; diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/complex_if.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/complex_if.c index c5d1e380..17c579bb 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/complex_if.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/complex_if.c @@ -8,10 +8,14 @@ int x #endif ; +#ifdef A +int x () { return 2; } +#endif + int main() { struct x *pfd; if ( ( pfd[2].revents & 0x010 ) && x() == 0 ) { - } + return 3; } diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/struct_global_forward_reference_illegal.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/struct_global_forward_reference_illegal.c index 4d4e6b87..05a5b6ad 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/struct_global_forward_reference_illegal.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/struct_global_forward_reference_illegal.c @@ -11,5 +11,6 @@ struct t { int main() { struct s s; + s.z->p = 2; return s.z->p; } diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/struct_redeclare.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/struct_redeclare.c index 9b67670e..6bf56b6e 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/struct_redeclare.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/semantic_error_integration/struct_redeclare.c @@ -11,5 +11,6 @@ struct x { int main() { struct x x; + x.s = 12; return x.s; } diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/self_reference.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/self_reference.c new file mode 100644 index 00000000..4701c102 --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/self_reference.c @@ -0,0 +1,9 @@ +int main() { + int x = x; + #ifdef A + x = 2; +#else + x = 3; + #endif + return x; +} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/injected/recursive_method_call.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/injected/recursive_method_call.c new file mode 100644 index 00000000..9954ae7d --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/identifier_and_function_call/injected/recursive_method_call.c @@ -0,0 +1,16 @@ +int foo(int a) { + if ( a == 0) { + return 1; + } + return foo(a-1) + #ifdef A + * +#else + + + #endif + 2; +} + +int main() { + return foo(5); +} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/unary_binary_ternary/injected/deref_struct_self_reference.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/unary_binary_ternary/injected/deref_struct_self_reference.c new file mode 100644 index 00000000..1c0b05aa --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/expressions/unary_binary_ternary/injected/deref_struct_self_reference.c @@ -0,0 +1,19 @@ +extern void* malloc(unsigned int); +struct a { + struct a * b; + int value; +}; + +int main() { + struct a * c, *d; + c = malloc(sizeof(struct a)); + d = malloc(sizeof(struct a)); + d->b = malloc(sizeof(struct a)); + #ifdef A + d->b->value = 3; + #else + d->b->value = 2; + #endif + *c = *(d->b); + return c->value; +} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_pointer_param.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_pointer_param.c new file mode 100644 index 00000000..d440b594 --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_pointer_param.c @@ -0,0 +1,21 @@ +int foo(int fn()) { + return fn(); +} + +int f1() { + return 4; +} + +int f2() { + return 5; +} + +int main () { + return foo( +#ifdef A + f1 +#else + f2 +#endif +); +} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_qualified_void_pointer.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_qualified_void_pointer.c new file mode 100644 index 00000000..196896d8 --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_qualified_void_pointer.c @@ -0,0 +1,16 @@ +int foo( void * +#ifdef A +__restrict +#endif + field) { + #ifdef A + return 3; + #else + return 2; + #endif +} + +int main() { + int * x; + return foo(x); +} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/prototype_forward_reference.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/prototype_forward_reference.c new file mode 100644 index 00000000..82a1bb66 --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/prototype_forward_reference.c @@ -0,0 +1,23 @@ +struct x; + +int foo(struct x *a); +int z; +#ifdef A +struct x { + int field; +}; +#else +struct x { + char field; +}; +#endif + +int main () { + struct x data; + data.field = 300; + return foo(&data); +} + +int foo(struct x * b) { + return b->field; +} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K new file mode 100644 index 00000000..e69de29b diff --git a/src/superc/cdesugarer/CActions.java b/src/superc/cdesugarer/CActions.java index 65f9d85f..de9e3b26 100644 --- a/src/superc/cdesugarer/CActions.java +++ b/src/superc/cdesugarer/CActions.java @@ -279,7 +279,6 @@ public Object action(int production, Subparser subparser, Object value) { // add all variations of the function declaration to the symtab CContext scope = (CContext)subparser.scope; - Multiverse prototypeNodemv = staticCondToMultiverse(getNodeAt(subparser, 1), pc); // produce a multiverse of strings for the body to use Multiverse prototypestrmv = new Multiverse(); @@ -289,7 +288,6 @@ public Object action(int production, Subparser subparser, Object value) { Multiverse typespecifiermv = prototype.typespecifier; Multiverse declaratormv = prototype.declarator; Multiverse newDeclarations = new Multiverse(); - assert scope.isGlobal(); // function definitions should be global. nested functions have a separate subgrammar. for (Element typespecifier : typespecifiermv) { PresenceCondition typespecifierCond = prototypeNode.getCondition().and(typespecifier.getCondition()); @@ -301,7 +299,6 @@ public Object action(int production, Subparser subparser, Object value) { } String originalName = declarator.getData().getName(); Declaration originalDeclaration = new Declaration(typespecifier.getData(), declarator.getData()); - if (originalDeclaration.hasTypeError()) { // if type is invalid, put an error entry, emit a call // to the type error function @@ -384,7 +381,7 @@ public Object action(int production, Subparser subparser, Object value) { recordRenaming(renaming, originalName); } else { - if (entry.getData().getValue() instanceof NamedFunctionT && !((NamedFunctionT)entry.getData().getValue()).getDefined()) { // there is no Type.isFunctionOrMethod() + if (entry.getData().getValue().isNamedFunction()) { // there is no Type.isFunctionOrMethod() FunctionT newtype = ((NamedFunctionT) type).toFunctionT(); FunctionT previoustype = ((NamedFunctionT) entry.getData().getValue()).toFunctionT(); newtype.setDefined(); @@ -399,6 +396,7 @@ public Object action(int production, Subparser subparser, Object value) { newDeclarations.add(renamedDeclarator, entry.getCondition()); } else if (functionCouldExist(newtype,previoustype,scope,entry.getCondition())) { transformForwardParams(renamedDeclarator,previoustype,entry.getCondition(),newDeclarations,scope); + System.err.println(newDeclarations + "::" + entry.getCondition()); } else { scope.putError(originalName, entry.getCondition()); recordInvalidGlobalDeclaration(originalName, entry.getCondition()); @@ -1004,9 +1002,17 @@ public Object action(int production, Subparser subparser, Object value) { List declaringlistvalues = (List) getTransformationValue(subparser, 3); String semi = getNodeAt(subparser, 1).getTokenText(); - semi += declaringListRange(declaringlistvalues,(Syntax)getNodeAt(subparser,1)); - - List> valuestring = declarationAction(declaringlistvalues, semi, pc, scope); + semi += declaringListRange(declaringlistvalues,(Syntax)getNodeAt(subparser,1)); + //List> valuestring = declarationAction(declaringlistvalues, semi, pc, scope); + // + //semi += declaringListRange(declaringlistvalues,(Syntax)getNodeAt(subparser,1)); + semi += "\n"; + List> valuestring; + if (scope.isGlobal()) { + valuestring = declarationAction(declaringlistvalues, semi, pc, scope); + } else { + valuestring = declAddSemi(declaringlistvalues, semi, pc); + } setTransformationValue(value, valuestring); } break; @@ -1019,33 +1025,26 @@ public Object action(int production, Subparser subparser, Object value) { { PresenceCondition pc = subparser.getPresenceCondition(); CContext scope = ((CContext) subparser.scope); - + List declaringlistvalues = (List) getTransformationValue(subparser, 3); String semi = getNodeAt(subparser, 1).getTokenText(); - semi += declaringListRange(declaringlistvalues,(Syntax)getNodeAt(subparser,1)); - - List> valuestring = declarationAction(declaringlistvalues, semi, pc, scope); + semi += declaringListRange(declaringlistvalues,(Syntax)getNodeAt(subparser,1)); + semi += "\n"; + List> valuestring; + if (scope.isGlobal()) { + valuestring = declarationAction(declaringlistvalues, semi, pc, scope); + } else { + valuestring = declAddSemi(declaringlistvalues, semi, pc); + } setTransformationValue(value, valuestring); } break; case 60: - { - saveBaseType(subparser, getNodeAt(subparser, 2)); - bindIdent(subparser, getNodeAt(subparser, 2), getNodeAt(subparser, 1)); // TODO: use new bindIdent to find typedefname - } - break; - - case 61: { PresenceCondition pc = subparser.getPresenceCondition(); - // add the int type by default - Multiverse types = this.getCompleteNodeMultiverseValue(subparser, 6, pc); - if (types.isEmpty()) { - TypeSpecifier t = new TypeSpecifier(); - t.setError(); - types.add(t,pc); - } + + Multiverse types = this.getCompleteNodeMultiverseValue(subparser, 2, pc); TypeSpecifier ts = new TypeSpecifier(); ts.visitInt(); ts.addTransformation(new Language(CTag.INT)); @@ -1053,30 +1052,44 @@ public Object action(int production, Subparser subparser, Object value) { = new Multiverse(ts, subparser.getPresenceCondition()); types = types.product(inttbmv, DesugarOps.specifierProduct); // don't destruct prior types, since it is a semantic value inttbmv.destruct(); + saveBaseType(subparser, getNodeAt(subparser, 2)); + bindIdent(subparser, getNodeAt(subparser, 2), getNodeAt(subparser, 1)); // TODO: use new bindIdent to find typedefname - Multiverse declarators = this.getCompleteNodeMultiverseValue(subparser, 5, pc); - // TODO: just represent assembly and attributes as strings that get pass with the declaration object - Multiverse initializers = (Multiverse) getTransformationValue(subparser, 1); - List declaringlist = new LinkedList(); - declaringlist.add(new DeclaringListValue(types, declarators, initializers)); - setTransformationValue(value, declaringlist); + Multiverse declarators = this.getCompleteNodeMultiverseValue(subparser, 1, pc); + if (!((CContext) subparser.scope).isGlobal()) { + Multiverse combo = declarationListAction(types,declarators,subparser.getPresenceCondition(),((CContext) subparser.scope)); + setTransformationValue(value, new DeclaringListValue(types,declarators,new Multiverse(new EmptyInitializer(),subparser.getPresenceCondition()),combo)); + } else { + setTransformationValue(value, new DeclaringListValue(types,declarators,new Multiverse(new EmptyInitializer(),subparser.getPresenceCondition()))); + } } break; - case 62: + case 61: { - // legacy type checking - saveBaseType(subparser, getNodeAt(subparser, 2)); - bindIdent(subparser, getNodeAt(subparser, 2), getNodeAt(subparser, 1)); // TODO: use new bindIdent to find typedefname + PresenceCondition pc = subparser.getPresenceCondition(); + + Multiverse initializers = this.getCompleteNodeMultiverseValue(subparser, 1, pc); + DeclaringListValue decl = (DeclaringListValue) getTransformationValue(subparser,4); + List declaringlist = new LinkedList(); + if (((CContext) subparser.scope).isGlobal()) { + decl.initializer = initializers; + declaringlist.add(decl); + } else { + setupInitials(declaringlist,decl,initializers,pc,((CContext) subparser.scope)); + } + setTransformationValue(value, declaringlist); } break; - case 63: + case 62: { - PresenceCondition pc = subparser.getPresenceCondition(); - // add the int type by default - Multiverse types = this.getCompleteNodeMultiverseValue(subparser, 6, pc); + //TODO : If EmptyInitializer, check how semicolon is added. + + PresenceCondition pc = subparser.getPresenceCondition(); + + Multiverse types = this.getCompleteNodeMultiverseValue(subparser, 2, pc); TypeSpecifier ts = new TypeSpecifier(); ts.visitInt(); ts.addTransformation(new Language(CTag.INT)); @@ -1084,20 +1097,50 @@ public Object action(int production, Subparser subparser, Object value) { = new Multiverse(ts, subparser.getPresenceCondition()); types = types.product(inttbmv, DesugarOps.specifierProduct); // don't destruct prior types, since it is a semantic value inttbmv.destruct(); + saveBaseType(subparser, getNodeAt(subparser, 2)); + bindIdent(subparser, getNodeAt(subparser, 2), getNodeAt(subparser, 1)); // TODO: use new bindIdent to find typedefname - Multiverse declarators = this.getCompleteNodeMultiverseValue(subparser, 5, pc); - // TODO: just represent assembly and attributes as strings that get pass with the declaration object - Multiverse initializers = (Multiverse) getTransformationValue(subparser, 1); + Multiverse declarators = this.getCompleteNodeMultiverseValue(subparser, 1, pc); + if (!((CContext) subparser.scope).isGlobal()) { + Multiverse combo = declarationListAction(types,declarators,subparser.getPresenceCondition(),((CContext) subparser.scope)); + setTransformationValue(value, new DeclaringListValue(types,declarators,new Multiverse(new EmptyInitializer(),subparser.getPresenceCondition()),combo)); + } else { + setTransformationValue(value, new DeclaringListValue(types,declarators,new Multiverse(new EmptyInitializer(),subparser.getPresenceCondition()))); + } + } + break; + + case 63: + { + PresenceCondition pc = subparser.getPresenceCondition(); + + Multiverse initializers = this.getCompleteNodeMultiverseValue(subparser, 1, pc); + DeclaringListValue decl = (DeclaringListValue) getTransformationValue(subparser,4); List declaringlist = new LinkedList(); - declaringlist.add(new DeclaringListValue(types, declarators, initializers)); + if (((CContext) subparser.scope).isGlobal()) { + decl.initializer = initializers; + declaringlist.add(decl); + } else { + setupInitials(declaringlist,decl,initializers,pc,((CContext) subparser.scope)); + } setTransformationValue(value, declaringlist); } break; case 64: { - // reuses saved base type - bindIdent(subparser, getNodeAt(subparser, 4), getNodeAt(subparser, 1)); + bindIdent(subparser, getNodeAt(subparser, 4), getNodeAt(subparser, 1)); // TODO: use new bindIdent to find typedefname + PresenceCondition pc = subparser.getPresenceCondition(); + List declaringlist = (List) getTransformationValue(subparser, 4); + assert declaringlist.size() > 0; + Multiverse types = declaringlist.get(0).typespecifier; + Multiverse declarators = this.getCompleteNodeMultiverseValue(subparser, 1, pc); + if (!((CContext) subparser.scope).isGlobal()) { + Multiverse combo = declarationListAction(types,declarators,subparser.getPresenceCondition(),((CContext) subparser.scope)); + setTransformationValue(value, new DeclaringListValue(types,declarators,new Multiverse(new EmptyInitializer(),subparser.getPresenceCondition()),combo)); + } else { + setTransformationValue(value, new DeclaringListValue(types,declarators,new Multiverse(new EmptyInitializer(),subparser.getPresenceCondition()))); + } } break; @@ -1105,68 +1148,67 @@ public Object action(int production, Subparser subparser, Object value) { { PresenceCondition pc = subparser.getPresenceCondition(); - // TODO: hoist initiazliers around the entire InitializedDeclaration - List declaringlist = (List) getTransformationValue(subparser, 8); - // there must be at least one element in the DeclaringList - // according to the grammar - assert declaringlist.size() > 0; - // each element is given the same typespecifiermultiverse, so - // we can take it from the first element, which is - // guaranteed to be there. - Multiverse types = declaringlist.get(0).typespecifier; - // the rest of the action is the same as its other - // productions, except we add to the list instead of making - // a new one - Multiverse declarators = this.getCompleteNodeMultiverseValue(subparser, 5, pc); - // TODO: just represent assembly and attributes as strings that get pass with the declaration object - Multiverse initializers = (Multiverse) getTransformationValue(subparser, 1); - declaringlist.add(new DeclaringListValue(types, declarators, initializers)); + Multiverse initializers = this.getCompleteNodeMultiverseValue(subparser, 1, pc); + DeclaringListValue decl = (DeclaringListValue) getTransformationValue(subparser,4); + List declaringlist = (List)getTransformationValue(subparser,8); + if (((CContext) subparser.scope).isGlobal()) { + decl.initializer = initializers; + declaringlist.add(decl); + } else { + setupInitials(declaringlist,decl,initializers,pc,((CContext) subparser.scope)); + } setTransformationValue(value, declaringlist); } break; case 66: { - saveBaseType(subparser, getNodeAt(subparser, 5)); - bindIdent(subparser, getNodeAt(subparser, 5), getNodeAt(subparser, 4)); // TODO: use new bindIdent to find typedefname + saveBaseType(subparser, getNodeAt(subparser, 2)); + bindIdent(subparser, getNodeAt(subparser, 2), getNodeAt(subparser, 1)); // TODO: use new bindIdent to find typedefname PresenceCondition pc = subparser.getPresenceCondition(); - Multiverse types = this.getCompleteNodeMultiverseValue(subparser, 5, pc); - if (types.isEmpty()) { - TypeSpecifier t = new TypeSpecifier(); - t.setError(); - types.add(t,pc); + + Multiverse types = this.getCompleteNodeMultiverseValue(subparser, 2, pc); + Multiverse declarators = this.getCompleteNodeMultiverseValue(subparser, 1, pc); + if (!((CContext) subparser.scope).isGlobal()) { + Multiverse combo = declarationListAction(types,declarators,subparser.getPresenceCondition(),((CContext) subparser.scope)); + setTransformationValue(value, new DeclaringListValue(types,declarators,new Multiverse(new EmptyInitializer(),subparser.getPresenceCondition()),combo)); + } else { + setTransformationValue(value, new DeclaringListValue(types,declarators,new Multiverse(new EmptyInitializer(),subparser.getPresenceCondition()))); } - Multiverse declarators = this.getCompleteNodeMultiverseValue(subparser, 4, pc); - // TODO: just represent assembly and attributes as strings that get pass with the declaration object - Multiverse initializers = (Multiverse) getTransformationValue(subparser, 1); - List declaringlist = new LinkedList(); - declaringlist.add(new DeclaringListValue(types, declarators, initializers)); - setTransformationValue(value, declaringlist); } break; case 67: { - saveBaseType(subparser, getNodeAt(subparser, 2)); - bindIdent(subparser, getNodeAt(subparser, 5), getNodeAt(subparser, 4)); // TODO: use new bindIdent to find typedefname - PresenceCondition pc = subparser.getPresenceCondition(); - Multiverse types = this.getCompleteNodeMultiverseValue(subparser, 5, pc); - Multiverse declarators = this.getCompleteNodeMultiverseValue(subparser, 4, pc); - // TODO: just represent assembly and attributes as strings that get pass with the declaration object - Multiverse initializers = (Multiverse) getTransformationValue(subparser, 1); + Multiverse initializers = this.getCompleteNodeMultiverseValue(subparser, 1, pc); + DeclaringListValue decl = (DeclaringListValue) getTransformationValue(subparser,4); List declaringlist = new LinkedList(); - declaringlist.add(new DeclaringListValue(types, declarators, initializers)); + if (((CContext) subparser.scope).isGlobal()) { + decl.initializer = initializers; + declaringlist.add(decl); + } else { + setupInitials(declaringlist,decl,initializers,pc,((CContext) subparser.scope)); + } setTransformationValue(value, declaringlist); } break; case 68: { - // legacy type checking - // reuses saved base type - bindIdent(subparser, getNodeAt(subparser, 4), getNodeAt(subparser, 1)); + saveBaseType(subparser, getNodeAt(subparser, 2)); + bindIdent(subparser, getNodeAt(subparser, 2), getNodeAt(subparser, 1)); // TODO: use new bindIdent to find typedefname + PresenceCondition pc = subparser.getPresenceCondition(); + + Multiverse types = this.getCompleteNodeMultiverseValue(subparser, 2, pc); + Multiverse declarators = this.getCompleteNodeMultiverseValue(subparser, 1, pc); + if (!((CContext) subparser.scope).isGlobal()) { + Multiverse combo = declarationListAction(types,declarators,subparser.getPresenceCondition(),((CContext) subparser.scope)); + setTransformationValue(value, new DeclaringListValue(types,declarators,new Multiverse(new EmptyInitializer(),subparser.getPresenceCondition()),combo)); + } else { + setTransformationValue(value, new DeclaringListValue(types,declarators,new Multiverse(new EmptyInitializer(),subparser.getPresenceCondition()))); + } } break; @@ -1174,27 +1216,54 @@ public Object action(int production, Subparser subparser, Object value) { { PresenceCondition pc = subparser.getPresenceCondition(); - // TODO: hoist initiazliers around the entire InitializedDeclaration - List declaringlist = (List) getTransformationValue(subparser, 8); - // there must be at least one element in the DeclaringList - // according to the grammar + Multiverse initializers = this.getCompleteNodeMultiverseValue(subparser, 1, pc); + DeclaringListValue decl = (DeclaringListValue) getTransformationValue(subparser,4); + List declaringlist = new LinkedList(); + if (((CContext) subparser.scope).isGlobal()) { + decl.initializer = initializers; + declaringlist.add(decl); + } else { + setupInitials(declaringlist,decl,initializers,pc,((CContext) subparser.scope)); + } + setTransformationValue(value, declaringlist); + } + break; + + case 70: + { + bindIdent(subparser, getNodeAt(subparser, 4), getNodeAt(subparser, 1)); // TODO: use new bindIdent to find typedefname + PresenceCondition pc = subparser.getPresenceCondition(); + List declaringlist = (List) getTransformationValue(subparser, 4); assert declaringlist.size() > 0; - // each element is given the same typespecifiermultiverse, so - // we can take it from the first element, which is - // guaranteed to be there. Multiverse types = declaringlist.get(0).typespecifier; - // the rest of the action is the same as its other - // productions, except we add to the list instead of making - // a new one - Multiverse declarators = this.getCompleteNodeMultiverseValue(subparser, 5, pc); - // TODO: just represent assembly and attributes as strings that get pass with the declaration object - Multiverse initializers = (Multiverse) getTransformationValue(subparser, 1); - declaringlist.add(new DeclaringListValue(types, declarators, initializers)); + Multiverse declarators = this.getCompleteNodeMultiverseValue(subparser, 1, pc); + if (!((CContext) subparser.scope).isGlobal()) { + Multiverse combo = declarationListAction(types,declarators,subparser.getPresenceCondition(),((CContext) subparser.scope)); + setTransformationValue(value, new DeclaringListValue(types,declarators,new Multiverse(new EmptyInitializer(),subparser.getPresenceCondition()),combo)); + } else { + setTransformationValue(value, new DeclaringListValue(types,declarators,new Multiverse(new EmptyInitializer(),subparser.getPresenceCondition()))); + } + } + break; + + case 71: + { + PresenceCondition pc = subparser.getPresenceCondition(); + + Multiverse initializers = this.getCompleteNodeMultiverseValue(subparser, 1, pc); + DeclaringListValue decl = (DeclaringListValue) getTransformationValue(subparser,4); + List declaringlist = (List)getTransformationValue(subparser,8); + if (((CContext) subparser.scope).isGlobal()) { + decl.initializer = initializers; + declaringlist.add(decl); + } else { + setupInitials(declaringlist,decl,initializers,pc,((CContext) subparser.scope)); + } setTransformationValue(value, declaringlist); } break; - case 70: + case 72: { PresenceCondition pc = subparser.getPresenceCondition(); Multiverse decl = this.getCompleteNodeMultiverseValue(subparser, 1, pc); @@ -1202,7 +1271,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 71: + case 73: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -1211,7 +1280,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 72: + case 74: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -1220,7 +1289,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 73: + case 75: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -1228,7 +1297,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 74: + case 76: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -1236,7 +1305,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 75: + case 77: { // TODO: are there any issues with sharing references to the same type builder object? PresenceCondition pc = subparser.getPresenceCondition(); @@ -1246,7 +1315,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 76: + case 78: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -1255,7 +1324,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 77: + case 79: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -1263,7 +1332,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 78: + case 80: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -1271,7 +1340,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 79: + case 81: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -1279,7 +1348,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 80: + case 82: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -1291,7 +1360,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 81: + case 83: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -1312,7 +1381,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 82: + case 84: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -1327,7 +1396,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 83: + case 85: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -1339,7 +1408,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 84: + case 86: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -1354,7 +1423,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 85: + case 87: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -1363,7 +1432,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 86: + case 88: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -1372,7 +1441,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 87: + case 89: { TypeSpecifier ts = new TypeSpecifier(); ts.visitConstantQualifier(); @@ -1385,7 +1454,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 88: + case 90: { TypeSpecifier ts = new TypeSpecifier(); ts.visitVolatileQualifier(); @@ -1398,7 +1467,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 89: + case 91: { TypeSpecifier ts = new TypeSpecifier(); ts.visitRestrictQualifier(); @@ -1411,7 +1480,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 90: + case 92: { TypeSpecifier ts = new TypeSpecifier(); todoReminder("collect attributes in AttributeSpecifier"); @@ -1423,7 +1492,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 91: + case 93: { TypeSpecifier ts = new TypeSpecifier(); ts.visitFunctionSpecifier(); @@ -1436,16 +1505,6 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 92: - { - } - break; - - case 93: - { - } - break; - case 94: { } @@ -1497,6 +1556,16 @@ public Object action(int production, Subparser subparser, Object value) { break; case 104: + { + } + break; + + case 105: + { + } + break; + + case 106: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -1514,7 +1583,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 105: + case 107: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -1537,7 +1606,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 106: + case 108: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -1555,7 +1624,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 107: + case 109: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -1573,7 +1642,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 108: + case 110: { // TUTORIAL: a semantic action that sets the semantic value // to a new typespecifier by adding a property derived from @@ -1589,7 +1658,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 109: + case 111: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -1606,7 +1675,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 110: + case 112: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -1623,7 +1692,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 111: + case 113: { // get the semantic values of each child PresenceCondition pc = subparser.getPresenceCondition(); @@ -1642,7 +1711,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 112: + case 114: { // TODO: unit test this action PresenceCondition pc = subparser.getPresenceCondition(); @@ -1653,7 +1722,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 113: + case 115: { // TODO: unit test this action PresenceCondition pc = subparser.getPresenceCondition(); @@ -1664,7 +1733,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 114: + case 116: { // TODO: unit test this action PresenceCondition pc = subparser.getPresenceCondition(); @@ -1675,7 +1744,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 115: + case 117: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -1684,7 +1753,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 116: + case 118: { // TODO: unit test this action PresenceCondition pc = subparser.getPresenceCondition(); @@ -1695,7 +1764,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 117: + case 119: { // TODO: unit test this action PresenceCondition pc = subparser.getPresenceCondition(); @@ -1706,7 +1775,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 118: + case 120: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -1716,7 +1785,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 119: + case 121: { // TODO: needs a unit test PresenceCondition pc = subparser.getPresenceCondition(); @@ -1735,7 +1804,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 120: + case 122: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -1746,7 +1815,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 121: + case 123: { String typeName = getStringAt(subparser, 1); // look up the typedef name @@ -1758,7 +1827,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 122: + case 124: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -1776,7 +1845,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 123: + case 125: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -1786,7 +1855,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 124: + case 126: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -1804,7 +1873,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 125: + case 127: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -1822,7 +1891,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 126: + case 128: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -1840,7 +1909,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 127: + case 129: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -1858,7 +1927,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 128: + case 130: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -1868,7 +1937,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 129: + case 131: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -1886,7 +1955,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 130: + case 132: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -1904,7 +1973,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 131: + case 133: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -1922,7 +1991,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 132: + case 134: { PresenceCondition pc = subparser.getPresenceCondition(); Multiverse tmv = getCompleteNodeMultiverseValue(subparser, 4, pc); @@ -1954,7 +2023,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 133: + case 135: { PresenceCondition pc = subparser.getPresenceCondition(); Multiverse tmv = getCompleteNodeMultiverseValue(subparser, 4, pc); @@ -1997,7 +2066,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 134: + case 136: { TypeSpecifier ts = new TypeSpecifier(); ts.addTransformation(((Syntax) getNodeAt(subparser, 1))); @@ -2006,7 +2075,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 135: + case 137: { TypeSpecifier ts = new TypeSpecifier(); ts.addTransformation(((Syntax) getNodeAt(subparser, 1))); @@ -2015,7 +2084,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 136: + case 138: { TypeSpecifier ts = new TypeSpecifier(); ts.addTransformation(((Syntax) getNodeAt(subparser, 1))); @@ -2024,7 +2093,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 137: + case 139: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -2034,7 +2103,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 138: + case 140: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -2044,7 +2113,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 139: + case 141: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -2054,7 +2123,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 140: + case 142: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -2064,7 +2133,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 141: + case 143: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -2072,7 +2141,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 142: + case 144: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -2082,7 +2151,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 143: + case 145: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -2092,7 +2161,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 144: + case 146: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -2102,7 +2171,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 145: + case 147: { TypeSpecifier ts = new TypeSpecifier(); ts.visitVarArgListSpecifier(); @@ -2112,7 +2181,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 146: + case 148: { String storageName = getNodeAt(subparser, 1).getTokenText(); TypeSpecifier ts = new TypeSpecifier(); @@ -2124,7 +2193,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 147: + case 149: { String storageName = getNodeAt(subparser, 1).getTokenText(); TypeSpecifier ts = new TypeSpecifier(); @@ -2136,7 +2205,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 148: + case 150: { String storageName = getNodeAt(subparser, 1).getTokenText(); TypeSpecifier ts = new TypeSpecifier(); @@ -2148,7 +2217,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 149: + case 151: { String storageName = getNodeAt(subparser, 1).getTokenText(); TypeSpecifier ts = new TypeSpecifier(); @@ -2160,7 +2229,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 150: + case 152: { String storageName = getNodeAt(subparser, 1).getTokenText(); TypeSpecifier ts = new TypeSpecifier(); @@ -2172,7 +2241,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 151: + case 153: { TypeSpecifier ts = new TypeSpecifier(); ts.visitVoidTypeSpecifier(); @@ -2185,7 +2254,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 152: + case 154: { TypeSpecifier ts = new TypeSpecifier(); ts.visitChar(); @@ -2197,7 +2266,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 153: + case 155: { TypeSpecifier ts = new TypeSpecifier(); ts.visitShort(); @@ -2209,7 +2278,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 154: + case 156: { TypeSpecifier ts = new TypeSpecifier(); ts.visitInt(); @@ -2221,7 +2290,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 155: + case 157: { // TODO: support int128 in typespecifier TypeSpecifier ts = new TypeSpecifier(); @@ -2234,7 +2303,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 156: + case 158: { // See xtc.type.* for the class hiearchy for types TypeSpecifier ts = new TypeSpecifier(); @@ -2247,7 +2316,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 157: + case 159: { TypeSpecifier ts = new TypeSpecifier(); ts.visitFloat(); @@ -2259,7 +2328,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 158: + case 160: { TypeSpecifier ts = new TypeSpecifier(); ts.visitDouble(); @@ -2271,7 +2340,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 159: + case 161: { TypeSpecifier ts = new TypeSpecifier(); ts.visitSigned(); @@ -2283,7 +2352,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 160: + case 162: { TypeSpecifier ts = new TypeSpecifier(); ts.visitUnsigned(); @@ -2295,7 +2364,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 161: + case 163: { TypeSpecifier ts = new TypeSpecifier(); ts.visitBool(); @@ -2307,7 +2376,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 162: + case 164: { TypeSpecifier ts = new TypeSpecifier(); ts.visitComplex(); @@ -2319,21 +2388,21 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 168: + case 170: { PresenceCondition pc = subparser.getPresenceCondition(); setTransformationValue(value, this.getCompleteNodeMultiverseValue(subparser, 1, pc)); } break; - case 169: + case 171: { PresenceCondition pc = subparser.getPresenceCondition(); setTransformationValue(value, this.getCompleteNodeMultiverseValue(subparser, 1, pc)); } break; - case 170: + case 172: { PresenceCondition pc = subparser.getPresenceCondition(); CContext scope = (CContext)subparser.scope; @@ -2351,7 +2420,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 171: + case 173: { PresenceCondition pc = subparser.getPresenceCondition(); CContext scope = (CContext)subparser.scope; @@ -2368,7 +2437,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 172: + case 174: { PresenceCondition pc = subparser.getPresenceCondition(); CContext scope = (CContext)subparser.scope; @@ -2385,7 +2454,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 173: + case 175: { PresenceCondition pc = subparser.getPresenceCondition(); CContext scope = (CContext)subparser.scope; @@ -2399,7 +2468,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 174: + case 176: { PresenceCondition pc = subparser.getPresenceCondition(); CContext scope = (CContext)subparser.scope; @@ -2414,7 +2483,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 175: + case 177: { PresenceCondition pc = subparser.getPresenceCondition(); CContext scope = (CContext)subparser.scope; @@ -2432,7 +2501,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 176: + case 178: { PresenceCondition pc = subparser.getPresenceCondition(); CContext scope = (CContext)subparser.scope; @@ -2449,7 +2518,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 177: + case 179: { PresenceCondition pc = subparser.getPresenceCondition(); CContext scope = (CContext)subparser.scope; @@ -2466,7 +2535,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 178: + case 180: { PresenceCondition pc = subparser.getPresenceCondition(); CContext scope = (CContext)subparser.scope; @@ -2481,7 +2550,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 179: + case 181: { PresenceCondition pc = subparser.getPresenceCondition(); CContext scope = (CContext)subparser.scope; @@ -2496,7 +2565,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 180: + case 182: { ((Node) value).setProperty(SPECS, new Specifiers()); // legacy type checking @@ -2504,7 +2573,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 181: + case 183: { //legacy type checking updateSpecs(subparser, @@ -2521,7 +2590,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 182: + case 184: { // TODO: implement like Declaration, except return a // multiverse of declarations instead of strings @@ -2565,7 +2634,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 183: + case 185: { System.err.println("ERROR: unsupported semantic action: StructDeclaration (2)"); subparser.lookahead.setError(); @@ -2573,7 +2642,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 184: + case 186: { System.err.println("ERROR: unsupported semantic action: StructDeclaration (3)"); subparser.lookahead.setError(); @@ -2581,7 +2650,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 185: + case 187: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -2599,7 +2668,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 186: + case 188: { System.err.println("ERROR: unsupported semantic action: StructDeclaration (5)"); subparser.lookahead.setError(); @@ -2607,7 +2676,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 187: + case 189: { System.err.println("ERROR: unsupported semantic action: StructDefaultDeclaringList (1)"); subparser.lookahead.setError(); @@ -2615,7 +2684,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 188: + case 190: { System.err.println("ERROR: unsupported semantic action: StructDefaultDeclaringList (2)"); subparser.lookahead.setError(); @@ -2623,7 +2692,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 189: + case 191: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -2636,7 +2705,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 190: + case 192: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -2650,7 +2719,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 191: + case 193: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -2665,7 +2734,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 192: + case 194: { PresenceCondition pc = subparser.getPresenceCondition(); // pass along the bitfieldsize declarator by itself @@ -2674,7 +2743,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 193: + case 195: { System.err.println("ERROR: unsupported semantic action: StructIdentifierDeclarator"); subparser.lookahead.setError(); @@ -2682,7 +2751,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 194: + case 196: { System.err.println("ERROR: unsupported semantic action: StructIdentifierDeclarator"); subparser.lookahead.setError(); @@ -2690,13 +2759,13 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 195: + case 197: { setTransformationValue(value, new Multiverse(new EmptyDeclarator(), subparser.getPresenceCondition())); } break; - case 196: + case 198: { PresenceCondition pc = subparser.getPresenceCondition(); // pass along the bitfieldsize declarator by itself @@ -2704,7 +2773,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 197: + case 199: { PresenceCondition pc = subparser.getPresenceCondition(); String colon = ((Syntax) getNodeAt(subparser, 2)).getTokenText(); @@ -2740,7 +2809,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 198: + case 200: { PresenceCondition pc = subparser.getPresenceCondition(); CContext scope = (CContext)subparser.scope; @@ -2759,7 +2828,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 199: + case 201: { PresenceCondition pc = subparser.getPresenceCondition(); CContext scope = (CContext)subparser.scope; @@ -2777,7 +2846,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 200: + case 202: { PresenceCondition pc = subparser.getPresenceCondition(); CContext scope = (CContext)subparser.scope; @@ -2796,7 +2865,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 201: + case 203: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -2811,7 +2880,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 202: + case 204: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -2827,21 +2896,21 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 203: + case 205: { setTransformationValue(value, this.getCompleteNodeListValue(getNodeAt(subparser, 2), subparser.getPresenceCondition())); } break; - case 204: + case 206: { setTransformationValue(value, this.getCompleteNodeListValue(getNodeAt(subparser, 3), subparser.getPresenceCondition())); } break; - case 205: + case 207: { List> list = new LinkedList>(); Multiverse enumerator @@ -2853,7 +2922,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 206: + case 208: { PresenceCondition pc = subparser.getPresenceCondition().presenceConditionManager().newTrue(); @@ -2867,11 +2936,11 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 207: + case 209: { BindEnum(subparser); } break; - case 208: + case 210: { todoReminder("record enum type errors in the global or local scope"); CContext scope = ((CContext) subparser.scope); @@ -2941,11 +3010,11 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 209: + case 211: { BindEnum(subparser); } break; - case 210: + case 212: { todoReminder("record enum type errors in the global or local scope"); CContext scope = ((CContext) subparser.scope); @@ -3005,14 +3074,14 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 211: + case 213: { setTransformationValue(value, new Multiverse(new EnumeratorValValue(), subparser.getPresenceCondition())); } break; - case 212: + case 214: { PresenceCondition pc = subparser.getPresenceCondition(); ExpressionValue exprval = getCompleteNodeExpressionValue(subparser, 1, pc); @@ -3039,7 +3108,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 213: + case 215: { PresenceCondition pc = subparser.getPresenceCondition(); List> paramlist = this.getCompleteNodeListValue(subparser, 1, pc); @@ -3047,7 +3116,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 214: + case 216: { PresenceCondition pc = subparser.getPresenceCondition(); List> paramlist = this.getCompleteNodeListValue(subparser, 3, pc); @@ -3055,7 +3124,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 215: + case 217: { // create a new list List> parameters @@ -3067,7 +3136,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 216: + case 218: { PresenceCondition pc = subparser.getPresenceCondition().presenceConditionManager().newTrue();//subparser.getPresenceCondition(); // add to the existing parameter list. this reuse of a @@ -3081,7 +3150,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 217: + case 219: { ParameterDeclarationValue declarationvalue = (ParameterDeclarationValue) getTransformationValue(subparser,1); @@ -3156,7 +3225,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 218: + case 220: { // TODO: needs a unit test ParameterDeclarationValue declarationvalue = (ParameterDeclarationValue) getTransformationValue(subparser,1); @@ -3189,14 +3258,14 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 219: + case 221: { System.err.println("TODO: reimplement parameterabstractdeclaration (1)"); System.exit(1); } break; - case 220: + case 222: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -3206,14 +3275,14 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 221: + case 223: { System.err.println("TODO: reimplement parameterabstractdeclaration (3)"); System.exit(1); } break; - case 222: + case 224: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -3223,7 +3292,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 223: + case 225: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -3233,7 +3302,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 224: + case 226: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -3243,14 +3312,14 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 225: + case 227: { System.err.println("TODO: reimplement parameterabstractdeclaration (7)"); System.exit(1); } break; - case 226: + case 228: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -3260,14 +3329,14 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 227: + case 229: { saveBaseType(subparser, getNodeAt(subparser, 2)); bindIdent(subparser, getNodeAt(subparser, 2), getNodeAt(subparser, 1)); } break; - case 228: + case 230: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -3278,14 +3347,14 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 229: + case 231: { saveBaseType(subparser, getNodeAt(subparser, 2)); bindIdent(subparser, getNodeAt(subparser, 2), getNodeAt(subparser, 1)); } break; - case 230: + case 232: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -3296,14 +3365,14 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 231: + case 233: { saveBaseType(subparser, getNodeAt(subparser, 2)); bindIdent(subparser, getNodeAt(subparser, 2), getNodeAt(subparser, 1)); } break; - case 232: + case 234: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -3314,14 +3383,14 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 233: + case 235: { saveBaseType(subparser, getNodeAt(subparser, 2)); bindIdent(subparser, getNodeAt(subparser, 2), getNodeAt(subparser, 1)); } break; - case 234: + case 236: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -3332,14 +3401,14 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 235: + case 237: { saveBaseType(subparser, getNodeAt(subparser, 2)); bindIdent(subparser, getNodeAt(subparser, 2), getNodeAt(subparser, 1)); } break; - case 236: + case 238: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -3350,14 +3419,14 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 237: + case 239: { saveBaseType(subparser, getNodeAt(subparser, 2)); bindIdent(subparser, getNodeAt(subparser, 2), getNodeAt(subparser, 1)); } break; - case 238: + case 240: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -3368,13 +3437,13 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 239: + case 241: { setTransformationValue(value, getCompleteNodeExpressionValue(subparser, 1, subparser.getPresenceCondition())); } break; - case 240: + case 242: { System.err.println("ERROR: unsupported semantic action: IdentifierList"); subparser.lookahead.setError(); @@ -3382,7 +3451,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 241: + case 243: { String originalName = ((Node)getNodeAt(subparser, 1)).getTokenText(); //Multiverse sbmv = new Multiverse(); @@ -3448,19 +3517,19 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 242: + case 244: { // get token text from the parent } break; - case 243: + case 245: { // get token text from the parent } break; - case 244: + case 246: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -3472,7 +3541,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 245: + case 247: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -3482,7 +3551,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 246: + case 248: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -3494,7 +3563,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 247: + case 249: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -3504,7 +3573,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 248: + case 250: { // EmptyInitializer setTransformationValue(value, new Multiverse(new EmptyInitializer(), @@ -3512,7 +3581,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 249: + case 251: { // AssignmentInitializer Multiverse initializers = (Multiverse) getTransformationValue(subparser, 1); @@ -3520,14 +3589,14 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 250: + case 252: { Multiverse> lists = (Multiverse>) getTransformationValue(subparser, 2); setTransformationValue(value, DesugarOps.toInitializerList.transform(lists)); } break; - case 251: + case 253: { PresenceCondition pc = subparser.getPresenceCondition(); Multiverse> lists = getCompleteNodeMultiverseValue(subparser, 3,pc); @@ -3539,7 +3608,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 252: + case 254: { // ExpressionInitializer ExpressionValue exprval = getCompleteNodeExpressionValue(subparser, 1, subparser.getPresenceCondition()); @@ -3567,7 +3636,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 253: + case 255: { PresenceCondition pc = subparser.getPresenceCondition(); // TODO: destruct return value from getTransformationValue @@ -3575,7 +3644,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 254: + case 256: { PresenceCondition pc = subparser.getPresenceCondition(); Multiverse> lists = (Multiverse>) getTransformationValue(subparser, 2); @@ -3586,14 +3655,14 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 255: + case 257: { setTransformationValue(value, new Multiverse(new LinkedList(), subparser.getPresenceCondition())); } break; - case 256: + case 258: { PresenceCondition pc = subparser.getPresenceCondition(); Multiverse> lists = getCompleteNodeMultiverseValue(subparser, 3, pc); @@ -3604,7 +3673,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 257: + case 259: { // pass through todoReminder("typecheck initializers DesignatedInitializer (1)"); @@ -3614,7 +3683,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 258: + case 260: { PresenceCondition pc = subparser.getPresenceCondition(); // DesignatedInitializer @@ -3624,7 +3693,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 259: + case 261: { // TODO: unit tests Multiverse> list = (Multiverse>) getTransformationValue(subparser, 2); @@ -3632,7 +3701,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 260: + case 262: { System.err.println("ERROR: unsupported semantic action: Designation (2)"); subparser.lookahead.setError(); @@ -3640,7 +3709,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 261: + case 263: { System.err.println("ERROR: unsupported semantic action: Designation (3)"); subparser.lookahead.setError(); @@ -3648,7 +3717,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 262: + case 264: { // TODO: unit tests Multiverse designators = (Multiverse) getTransformationValue(subparser, 1); @@ -3657,7 +3726,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 263: + case 265: { // TODO: unit tests Multiverse> list = (Multiverse>) getTransformationValue(subparser, 2); @@ -3668,7 +3737,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 264: + case 266: { ExpressionValue exprval = getCompleteNodeExpressionValue(subparser, 2, subparser.getPresenceCondition()); setTransformationValue(value, @@ -3676,7 +3745,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 265: + case 267: { System.err.println("ERROR: unsupported semantic action: Designator (2)"); subparser.lookahead.setError(); @@ -3684,7 +3753,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 266: + case 268: { todoReminder("replace the designator with the renamed struct field"); setTransformationValue(value, @@ -3693,7 +3762,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 267: + case 269: { todoReminder("replace the designator with the renamed struct field"); setTransformationValue(value, @@ -3702,7 +3771,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 268: + case 270: { System.err.println("ERROR: unsupported semantic action: ObsoleteArrayDesignation"); subparser.lookahead.setError(); @@ -3710,7 +3779,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 269: + case 271: { System.err.println("ERROR: unsupported semantic action: ObsoleteArrayDesignation"); subparser.lookahead.setError(); @@ -3718,7 +3787,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 270: + case 272: { System.err.println("ERROR: unsupported semantic action: ObsoleteFieldDesignation"); subparser.lookahead.setError(); @@ -3726,7 +3795,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 271: + case 273: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -3734,14 +3803,14 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 272: + case 274: { PresenceCondition pc = subparser.getPresenceCondition(); setTransformationValue(value, this.getCompleteNodeMultiverseValue(subparser, 1, pc)); } break; - case 273: + case 275: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -3749,7 +3818,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 274: + case 276: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -3757,7 +3826,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 275: + case 277: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -3765,7 +3834,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 276: + case 278: { System.err.println("TODO: do we need to expand all possible typedef names here? parametertypedefdeclarator"); Multiverse valuemv = new Multiverse(new SimpleDeclarator(getStringAt(subparser, 1)), subparser.getPresenceCondition()); @@ -3773,7 +3842,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 277: + case 279: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -3788,7 +3857,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 278: + case 280: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -3796,7 +3865,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 279: + case 281: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -3804,7 +3873,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 280: + case 282: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -3818,7 +3887,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 281: + case 283: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -3833,7 +3902,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 282: + case 284: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -3841,7 +3910,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 283: + case 285: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -3856,7 +3925,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 284: + case 286: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -3864,7 +3933,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 285: + case 287: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -3877,7 +3946,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 286: + case 288: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -3892,7 +3961,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 287: + case 289: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -3905,7 +3974,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 288: + case 290: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -3920,7 +3989,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 289: + case 291: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -3928,7 +3997,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 290: + case 292: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -3943,7 +4012,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 291: + case 293: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -3958,7 +4027,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 292: + case 294: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -3966,7 +4035,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 293: + case 295: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -3974,7 +4043,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 294: + case 296: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -3982,7 +4051,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 295: + case 297: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -3990,7 +4059,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 296: + case 298: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -3998,7 +4067,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 297: + case 299: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -4006,7 +4075,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 298: + case 300: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -4019,7 +4088,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 299: + case 301: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -4034,7 +4103,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 300: + case 302: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -4042,7 +4111,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 301: + case 303: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -4050,7 +4119,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 302: + case 304: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -4058,7 +4127,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 303: + case 305: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -4073,7 +4142,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 304: + case 306: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -4081,7 +4150,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 305: + case 307: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -4096,15 +4165,15 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 306: + case 308: { EnterScope(subparser); } break; - case 307: + case 309: { ExitReentrantScope(subparser); } break; - case 308: + case 310: { // TODO: account for parameterdeclarationvalue that is the ellipsis ParameterTypeListValue parametertypelist @@ -4154,7 +4223,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 309: + case 311: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -4169,7 +4238,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 310: + case 312: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -4177,7 +4246,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 311: + case 313: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -4185,7 +4254,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 312: + case 314: { Multiverse valuemv = new Multiverse(new SimpleDeclarator(getStringAt(subparser, 1)), subparser.getPresenceCondition()); @@ -4193,36 +4262,36 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 313: + case 315: { System.err.println("OldFunctionDecl not supported"); System.exit(1); } break; - case 314: + case 316: { System.err.println("OldFunctionDecl not supported"); System.exit(1); } break; - case 315: + case 317: { System.err.println("OldFunctionDecl not supported"); System.exit(1); } break; - case 316: + case 318: { EnterScope(subparser); } break; - case 317: + case 319: { ExitReentrantScope(subparser); } break; - case 318: + case 320: { System.err.println("ERROR: unsupported semantic action: PostfixOldFunctionDeclarator"); subparser.lookahead.setError(); @@ -4230,7 +4299,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 319: + case 321: { System.err.println("ERROR: unsupported semantic action: PostfixOldFunctionDeclarator"); subparser.lookahead.setError(); @@ -4238,7 +4307,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 320: + case 322: { System.err.println("ERROR: unsupported semantic action: PostfixOldFunctionDeclarator"); subparser.lookahead.setError(); @@ -4246,7 +4315,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 321: + case 323: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -4254,7 +4323,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 322: + case 324: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -4262,7 +4331,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 323: + case 325: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -4270,7 +4339,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 324: + case 326: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -4278,7 +4347,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 325: + case 327: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -4286,19 +4355,19 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 326: + case 328: { setTransformationValue(value, new ParameterTypeListValue(new LinkedList>(), false)); } break; - case 327: + case 329: { setTransformationValue(value, (ParameterTypeListValue) getTransformationValue(subparser,1)); } break; - case 328: + case 330: { String expression = ""; Multiverse valuemv @@ -4307,7 +4376,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 329: + case 331: { todoReminder("check expression in ArrayAbstractDeclarator (2)"); ExpressionValue exprval = getCompleteNodeExpressionValue(subparser, 2, subparser.getPresenceCondition()); @@ -4329,7 +4398,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 330: + case 332: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -4375,7 +4444,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 331: + case 333: { Multiverse valuemv = new Multiverse(new PointerAbstractDeclarator(), subparser.getPresenceCondition()); @@ -4383,7 +4452,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 332: + case 334: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -4396,7 +4465,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 333: + case 335: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -4409,7 +4478,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 334: + case 336: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -4424,7 +4493,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 335: + case 337: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -4432,7 +4501,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 336: + case 338: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -4440,7 +4509,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 337: + case 339: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -4448,7 +4517,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 338: + case 340: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -4463,13 +4532,13 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 339: + case 341: { setTransformationValue(value, getCompleteNodeMultiverseValue(getNodeAt(subparser, 1), subparser.getPresenceCondition())); } break; - case 340: + case 342: { // CompoundStatement produces just a string (not a multiverse), since it's children resolve all // configurations, so we only need to resolve static conditionals around the CompoundStatement. @@ -4477,37 +4546,37 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 341: + case 343: { setTransformationValue(value, getCompleteNodeMultiverseValue(getNodeAt(subparser, 1), subparser.getPresenceCondition())); } break; - case 342: + case 344: { setTransformationValue(value, getCompleteNodeMultiverseValue(getNodeAt(subparser, 1), subparser.getPresenceCondition())); } break; - case 343: + case 345: { setTransformationValue(value, getCompleteNodeMultiverseValue(getNodeAt(subparser, 1), subparser.getPresenceCondition())); } break; - case 344: + case 346: { setTransformationValue(value, getCompleteNodeMultiverseValue(getNodeAt(subparser, 1), subparser.getPresenceCondition())); } break; - case 345: + case 347: { setTransformationValue(value, getCompleteNodeMultiverseValue(getNodeAt(subparser, 1), subparser.getPresenceCondition())); } break; - case 346: + case 348: { PresenceCondition pc = subparser.getPresenceCondition(); Syntax id = (getSyntaxMV(subparser, 4,pc)).get(0).getData(); @@ -4524,7 +4593,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 347: + case 349: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -4540,7 +4609,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 348: + case 350: { PresenceCondition pc = subparser.getPresenceCondition(); String casestr = "case"; // hacky fix for unexpected conditionals around the case keyword @@ -4562,7 +4631,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 349: + case 351: { todoReminder("check that case expression is int"); PresenceCondition pc = subparser.getPresenceCondition(); @@ -4572,7 +4641,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 350: + case 352: { PresenceCondition pc = subparser.getPresenceCondition(); String defaultstr = ((Syntax) getNodeAt(subparser, 3)).getTokenText(); @@ -4588,7 +4657,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 351: + case 353: { Multiverse stmtmv = getCompleteNodeMultiverseValue(subparser, 1, subparser.getPresenceCondition()); List> l = new LinkedList>(); @@ -4597,7 +4666,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 352: + case 354: { PresenceCondition pc = subparser.getPresenceCondition(); List> list = getCompleteNodeDeclStmtValueList(subparser, 2, pc); @@ -4608,15 +4677,15 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 353: + case 355: { ReenterScope(subparser); } break; - case 354: + case 356: { ExitScope(subparser); } break; - case 355: + case 357: { LineNumbers lBraceLN = new LineNumbers((Syntax)getNodeAt(subparser,5)); LineNumbers rBraceLN = new LineNumbers((Syntax)getNodeAt(subparser,1)); @@ -4632,7 +4701,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 356: + case 358: { PresenceCondition pc = subparser.getPresenceCondition(); CContext scope = ((CContext) subparser.scope); @@ -4647,13 +4716,13 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 357: + case 359: { setTransformationValue(value, ""); } break; - case 358: + case 360: { System.err.println("implement locallabeldeclarationlistopt (2)"); // do hoisting here, return a stringbuilder, not a multiverse @@ -4661,21 +4730,21 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 359: + case 361: { System.err.println("implement locallabeldeclarationlist (1)"); System.exit(1); } break; - case 360: + case 362: { System.err.println("implement locallabeldeclarationlist (2)"); System.exit(1); } break; - case 361: + case 363: { PresenceCondition pc = subparser.getPresenceCondition(); System.err.println("ERROR: unsupported semantic action: LocalLabelDeclaration"); @@ -4684,7 +4753,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 362: + case 364: { PresenceCondition pc = subparser.getPresenceCondition(); System.err.println("ERROR: unsupported semantic action: LocalLabelList"); @@ -4693,7 +4762,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 363: + case 365: { PresenceCondition pc = subparser.getPresenceCondition(); System.err.println("ERROR: unsupported semantic action: LocalLabelList"); @@ -4702,14 +4771,14 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 364: + case 366: { List> n = new LinkedList>(); setTransformationValue(value, n); } break; - case 365: + case 367: { PresenceCondition pc = subparser.getPresenceCondition(); List> list = getCompleteNodeDeclStmtValueList(subparser, 2, pc); @@ -4719,7 +4788,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 366: + case 368: { // declarations are already just strings, so get the multiverse of any static conditionals around them List> ss = getCompleteNodeListValue(getNodeAt(subparser, 1),subparser.getPresenceCondition()); @@ -4735,7 +4804,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 367: + case 369: { // statements have multiverses, so hoist any static conditionals around them by combining with the statement multiverses PresenceCondition pc = subparser.getPresenceCondition(); @@ -4746,21 +4815,21 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 368: + case 370: { System.err.println("nestedfunctiondefinition not implemented yet"); System.exit(1); } break; - case 369: + case 371: { Multiverse valuemv = getCompleteNodeMultiverseValue(getNodeAt(subparser, 1), subparser.getPresenceCondition()); setTransformationValue(value, concatMultiverseStrings(valuemv)); valuemv.destruct(); } break; - case 370: + case 372: { PresenceCondition pc = subparser.getPresenceCondition(); StringBuilder valuesb = new StringBuilder(); @@ -4772,7 +4841,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 371: + case 373: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -4819,7 +4888,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 372: + case 374: { todoReminder("check the type of the conditional expression SelectionStatement (1)"); PresenceCondition pc = subparser.getPresenceCondition(); @@ -4857,7 +4926,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 373: + case 375: { todoReminder("check the type of the conditional expression SelectionStatement (2)"); PresenceCondition pc = subparser.getPresenceCondition(); @@ -4900,7 +4969,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 374: + case 376: { // n1570 6.8.4.2 for switch statements PresenceCondition pc = subparser.getPresenceCondition(); @@ -4974,7 +5043,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 375: + case 377: { todoReminder("check the type of the conditional expression IterationStatement (1)"); PresenceCondition pc = subparser.getPresenceCondition(); @@ -5012,7 +5081,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 376: + case 378: { todoReminder("check the type of the conditional expression IterationStatement (2)"); PresenceCondition pc = subparser.getPresenceCondition(); @@ -5047,7 +5116,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 377: + case 379: { todoReminder("check the type of the conditional expression IterationStatement (3)"); PresenceCondition pc = subparser.getPresenceCondition(); @@ -5115,15 +5184,15 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 378: + case 380: { EnterScope(subparser); } break; - case 379: + case 381: { ExitScope(subparser); } break; - case 380: + case 382: { // TODO: use a reentrant scope to add the declaration's symbol to the for-loop's scope // TODO: Declaration returns a String, not a multiverse. We need a multiverse to hoist around the entire for loop. @@ -5179,31 +5248,31 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 381: + case 383: { setTransformationValue(value, getCompleteNodeMultiverseValue(subparser, 1, subparser.getPresenceCondition())); } break; - case 382: + case 384: { setTransformationValue(value, DesugarOps.StringToDSV.transform(getCompleteNodeMultiverseValue(getNodeAt(subparser, 1), subparser.getPresenceCondition()))); } break; - case 383: + case 385: { setTransformationValue(value, DesugarOps.StringToDSV.transform(getCompleteNodeMultiverseValue(getNodeAt(subparser, 1), subparser.getPresenceCondition()))); } break; - case 384: + case 386: { setTransformationValue(value, DesugarOps.StringToDSV.transform(getCompleteNodeMultiverseValue(getNodeAt(subparser, 1), subparser.getPresenceCondition()))); } break; - case 385: + case 387: { String ident = ((Syntax) getNodeAt(subparser, 2).get(0)).getTokenText(); @@ -5214,7 +5283,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 386: + case 388: { PresenceCondition pc = subparser.getPresenceCondition(); System.err.println("ERROR: unsupported semantic action: GotoStatement (2)"); @@ -5223,7 +5292,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 387: + case 389: { LineNumbers lw = new LineNumbers((Syntax) getNodeAt(subparser, 2),(Syntax) getNodeAt(subparser, 1)); String continuetoken = ((Syntax) getNodeAt(subparser, 2)).getTokenText(); @@ -5233,7 +5302,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 388: + case 390: { LineNumbers lw = new LineNumbers((Syntax) getNodeAt(subparser, 2),(Syntax) getNodeAt(subparser, 1)); String breaktoken = ((Syntax) getNodeAt(subparser, 2)).getTokenText(); @@ -5243,7 +5312,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 389: + case 391: { LineNumbers lw = new LineNumbers((Syntax) getNodeAt(subparser, 3),(Syntax) getNodeAt(subparser, 1)); todoReminder("check the type of the return value"); @@ -5270,7 +5339,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 390: + case 392: { setTransformationValue(value, new ExpressionValue(((Syntax) getNodeAt(subparser, 1)).getTokenText(), @@ -5278,7 +5347,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 391: + case 393: { /* value = GNode.create("Constant", getNodeAt(subparser, 1)); */ /* System.err.println(value); */ @@ -5292,7 +5361,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 392: + case 394: { setTransformationValue(value, new ExpressionValue(((Syntax) getNodeAt(subparser, 1)).getTokenText(), @@ -5300,7 +5369,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 393: + case 395: { setTransformationValue(value, new ExpressionValue(((Syntax) getNodeAt(subparser, 1)).getTokenText(), @@ -5308,7 +5377,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 394: + case 396: { setTransformationValue(value, new ExpressionValue(((Syntax) getNodeAt(subparser, 1)).getTokenText(), @@ -5316,14 +5385,14 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 395: + case 397: { setTransformationValue(value, new StringListPair(((Syntax) getNodeAt(subparser, 1)).getTokenText(), new LineNumbers((Syntax) getNodeAt(subparser, 1)))); } break; - case 396: + case 398: { StringListPair s = new StringListPair(((StringListPair)getTransformationValue(subparser, 2)).str + ((Syntax) getNodeAt(subparser, 1)).getTokenText(), @@ -5332,7 +5401,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 397: + case 399: { // TODO: CAnalyzer distinguishes between wide and non-wide characters // TODO: use a fixed-size array instead of a pointer to char @@ -5344,25 +5413,25 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 398: + case 400: { setTransformationValue(value, getCompleteNodeExpressionValue(subparser, 1, subparser.getPresenceCondition())); } break; - case 399: + case 401: { setTransformationValue(value, getCompleteNodeExpressionValue(subparser, 1, subparser.getPresenceCondition())); } break; - case 400: + case 402: { setTransformationValue(value, getCompleteNodeExpressionValue(subparser, 1, subparser.getPresenceCondition())); } break; - case 401: + case 403: { LineNumbers lw = new LineNumbers((Syntax) getNodeAt(subparser, 3),(Syntax) getNodeAt(subparser, 1)); @@ -5388,19 +5457,19 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 402: + case 404: { setTransformationValue(value, getCompleteNodeExpressionValue(subparser, 1, subparser.getPresenceCondition())); } break; - case 403: + case 405: { setTransformationValue(value, getCompleteNodeExpressionValue(subparser, 1, subparser.getPresenceCondition())); } break; - case 404: + case 406: { String originalName = ((Node)getNodeAt(subparser, 1)).getTokenText(); //Multiverse sbmv = new Multiverse(); @@ -5411,7 +5480,7 @@ public Object action(int production, Subparser subparser, Object value) { // get the renamings from the symtab PresenceCondition cond = subparser.getPresenceCondition(); Multiverse> entries = scope.getInAnyScope(originalName, cond); - + System.err.println(entries); // convert the renamings to stringbuilders Multiverse sbmv = new Multiverse(); Multiverse typemv = new Multiverse(); @@ -5484,11 +5553,12 @@ public Object action(int production, Subparser subparser, Object value) { // it and the symtab should always return a non-empty mv assert ! sbmv.isEmpty(); entries.destruct(); + System.err.println(new ExpressionValue(sbmv, typemv,new Multiverse(new LineNumbers((Syntax)getNodeAt(subparser, 1)),cond))); setTransformationValue(value, new ExpressionValue(sbmv, typemv,new Multiverse(new LineNumbers((Syntax)getNodeAt(subparser, 1)),cond))); } break; - case 405: + case 407: { LineNumbers lw = new LineNumbers((Syntax) getNodeAt(subparser, 6),(Syntax) getNodeAt(subparser, 1)); @@ -5521,15 +5591,15 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 406: + case 408: { EnterScope(subparser); } break; - case 407: + case 409: { ExitScope(subparser); } break; - case 408: + case 410: { LineNumbers lw = new LineNumbers((Syntax) getNodeAt(subparser, 5),(Syntax) getNodeAt(subparser, 1)); @@ -5577,55 +5647,55 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 409: + case 411: { setTransformationValue(value, getCompleteNodeExpressionValue(subparser, 1, subparser.getPresenceCondition())); } break; - case 410: + case 412: { setTransformationValue(value, getCompleteNodeExpressionValue(subparser, 1, subparser.getPresenceCondition())); } break; - case 411: + case 413: { setTransformationValue(value, getCompleteNodeExpressionValue(subparser, 1, subparser.getPresenceCondition())); } break; - case 412: + case 414: { setTransformationValue(value, getCompleteNodeExpressionValue(subparser, 1, subparser.getPresenceCondition())); } break; - case 413: + case 415: { setTransformationValue(value, getCompleteNodeExpressionValue(subparser, 1, subparser.getPresenceCondition())); } break; - case 414: + case 416: { setTransformationValue(value, getCompleteNodeExpressionValue(subparser, 1, subparser.getPresenceCondition())); } break; - case 415: + case 417: { setTransformationValue(value, getCompleteNodeExpressionValue(subparser, 1, subparser.getPresenceCondition())); } break; - case 416: + case 418: { setTransformationValue(value, getCompleteNodeExpressionValue(subparser, 1, subparser.getPresenceCondition())); } break; - case 417: + case 419: { // TODO: check that expression is numeric, check that postfixexpression is array, and get arrays types todoReminder("typecheck Subscript"); @@ -5687,7 +5757,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 418: + case 420: { todoReminder("typecheck functioncall (1)"); @@ -5742,7 +5812,7 @@ public Object action(int production, Subparser subparser, Object value) { } break; - case 419: + case 421: { // type check by making sure the postfixexpression type is a // function, that each type of the expressionlist matches @@ -5957,7 +6027,7 @@ else if (size1 > size2) { } break; - case 420: + case 422: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -6113,7 +6183,7 @@ else if (size1 > size2) { } break; - case 421: + case 423: { PresenceCondition pc = subparser.getPresenceCondition(); // TODO: need to cast PostfixExpression to the union field @@ -6256,7 +6326,7 @@ else if (size1 > size2) { } break; - case 422: + case 424: { PresenceCondition pc = subparser.getPresenceCondition(); ExpressionValue exprval = getCompleteNodeExpressionValue(subparser, 2, pc); @@ -6283,7 +6353,7 @@ else if (size1 > size2) { } break; - case 423: + case 425: { PresenceCondition pc = subparser.getPresenceCondition(); ExpressionValue exprval = getCompleteNodeExpressionValue(subparser, 2, pc); @@ -6309,7 +6379,7 @@ else if (size1 > size2) { } break; - case 424: + case 426: { LineNumbers lw = new LineNumbers((Syntax) getNodeAt(subparser, 6),(Syntax) getNodeAt(subparser, 1)); @@ -6359,7 +6429,7 @@ else if (size1 > size2) { } break; - case 425: + case 427: { // create a new list List exprlist = new LinkedList(); @@ -6370,7 +6440,7 @@ else if (size1 > size2) { } break; - case 426: + case 428: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -6395,13 +6465,13 @@ else if (size1 > size2) { } break; - case 427: + case 429: { setTransformationValue(value, getCompleteNodeExpressionValue(subparser, 1, subparser.getPresenceCondition())); } break; - case 428: + case 430: { PresenceCondition pc = subparser.getPresenceCondition(); ExpressionValue exprval = getCompleteNodeExpressionValue(subparser, 1, pc); @@ -6428,7 +6498,7 @@ else if (size1 > size2) { } break; - case 429: + case 431: { PresenceCondition pc = subparser.getPresenceCondition(); ExpressionValue exprval = getCompleteNodeExpressionValue(subparser, 1, pc); @@ -6455,7 +6525,7 @@ else if (size1 > size2) { } break; - case 430: + case 432: { // TODO: need to look at the unaryoperator to determine whether it's the correct type usage PresenceCondition pc = subparser.getPresenceCondition(); @@ -6537,13 +6607,12 @@ else if (size1 > size2) { } break; - case 431: + case 433: { PresenceCondition pc = subparser.getPresenceCondition(); ExpressionValue exprval = getCompleteNodeExpressionValue(subparser, 1, pc); Multiverse exprmv = sizeofExpansion(exprval.transformation, exprval.type,freshIdCreator,(CContext)subparser.scope,pc); - todoReminder("typecheck unaryexpression (5)"); Type constSizeOf = C.SIZEOF.copy(); @@ -6563,7 +6632,7 @@ else if (size1 > size2) { } break; - case 432: + case 434: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -6602,42 +6671,42 @@ else if (size1 > size2) { } break; - case 433: + case 435: { todoReminder("typecheck unaryexpression (7)"); setTransformationValue(value, getCompleteNodeExpressionValue(subparser, 1, subparser.getPresenceCondition())); } break; - case 434: + case 436: { todoReminder("typecheck unaryexpression (8)"); setTransformationValue(value, getCompleteNodeExpressionValue(subparser, 1, subparser.getPresenceCondition())); } break; - case 435: + case 437: { todoReminder("typecheck unaryexpression (9)"); setTransformationValue(value, getCompleteNodeExpressionValue(subparser, 1, subparser.getPresenceCondition())); } break; - case 436: + case 438: { todoReminder("typecheck unaryexpression (10)"); setTransformationValue(value, getCompleteNodeExpressionValue(subparser, 1, subparser.getPresenceCondition())); } break; - case 437: + case 439: { todoReminder("typecheck unaryexpression (11)"); setTransformationValue(value, getCompleteNodeExpressionValue(subparser, 1, subparser.getPresenceCondition())); } break; - case 438: + case 440: { System.err.println("ERROR: unsupported semantic action: TypeCompatibilityExpression"); subparser.lookahead.setError(); @@ -6645,7 +6714,7 @@ else if (size1 > size2) { } break; - case 439: + case 441: { todoReminder("typcheck offsetofmemberdesignator (1)"); String ident = ((Syntax) getNodeAt(subparser, 1)).getTokenText(); @@ -6656,7 +6725,7 @@ else if (size1 > size2) { } break; - case 440: + case 442: { todoReminder("typcheck offsetofmemberdesignator (2)"); Multiverse identmv @@ -6668,7 +6737,7 @@ else if (size1 > size2) { } break; - case 441: + case 443: { LineNumbers lw = new LineNumbers((Syntax) getNodeAt(subparser, 6),(Syntax) getNodeAt(subparser, 1)); PresenceCondition pc = subparser.getPresenceCondition(); @@ -6702,7 +6771,7 @@ else if (size1 > size2) { } break; - case 442: + case 444: { PresenceCondition pc = subparser.getPresenceCondition(); ExpressionValue exprval = getCompleteNodeExpressionValue(subparser, 1, pc); @@ -6717,7 +6786,7 @@ else if (size1 > size2) { } break; - case 443: + case 445: { PresenceCondition pc = subparser.getPresenceCondition(); Syntax keysyn = (Syntax) getTransformationValue(subparser, 4); @@ -6764,7 +6833,7 @@ else if (size1 > size2) { } break; - case 444: + case 446: { System.err.println("ERROR: unsupported semantic action: AlignofExpression (2)"); subparser.lookahead.setError(); @@ -6772,19 +6841,19 @@ else if (size1 > size2) { } break; - case 445: + case 447: { setTransformationValue(value, (Syntax)getNodeAt(subparser, 1)); } break; - case 446: + case 448: { setTransformationValue(value, (Syntax) getNodeAt(subparser, 1)); } break; - case 447: + case 449: { System.err.println("ERROR: unsupported semantic action: LabelAddressExpression"); subparser.lookahead.setError(); @@ -6792,49 +6861,49 @@ else if (size1 > size2) { } break; - case 448: + case 450: { setTransformationValue(value, ((Syntax) getNodeAt(subparser, 1))); } break; - case 449: + case 451: { setTransformationValue(value, ((Syntax) getNodeAt(subparser, 1))); } break; - case 450: + case 452: { setTransformationValue(value, ((Syntax) getNodeAt(subparser, 1))); } break; - case 451: + case 453: { setTransformationValue(value, ((Syntax) getNodeAt(subparser, 1))); } break; - case 452: + case 454: { setTransformationValue(value, ((Syntax) getNodeAt(subparser, 1))); } break; - case 453: + case 455: { setTransformationValue(value, ((Syntax) getNodeAt(subparser, 1))); } break; - case 454: + case 456: { setTransformationValue(value, getCompleteNodeExpressionValue(subparser, 1, subparser.getPresenceCondition())); } break; - case 455: + case 457: { // TODO compare the expression's type against the type name // to rule out invalid casts. @@ -6868,13 +6937,13 @@ else if (size1 > size2) { } break; - case 456: + case 458: { setTransformationValue(value, getCompleteNodeExpressionValue(subparser, 1, subparser.getPresenceCondition())); } break; - case 457: + case 459: { todoReminder("typecheck MultiplicativeExpression (2)"); PresenceCondition pc = subparser.getPresenceCondition(); @@ -6900,7 +6969,7 @@ else if (size1 > size2) { } break; - case 458: + case 460: { todoReminder("typecheck MultiplicativeExpression (3)"); PresenceCondition pc = subparser.getPresenceCondition(); @@ -6925,7 +6994,7 @@ else if (size1 > size2) { } break; - case 459: + case 461: { todoReminder("typecheck MultiplicativeExpression (4)"); PresenceCondition pc = subparser.getPresenceCondition(); @@ -6949,13 +7018,13 @@ else if (size1 > size2) { } break; - case 460: + case 462: { setTransformationValue(value, getCompleteNodeExpressionValue(subparser, 1, subparser.getPresenceCondition())); } break; - case 461: + case 463: { todoReminder("typecheck AdditiveExpression (2)"); PresenceCondition pc = subparser.getPresenceCondition(); @@ -6981,7 +7050,7 @@ else if (size1 > size2) { } break; - case 462: + case 464: { todoReminder("typecheck AdditiveExpression (3)"); PresenceCondition pc = subparser.getPresenceCondition(); @@ -7007,13 +7076,13 @@ else if (size1 > size2) { } break; - case 463: + case 465: { setTransformationValue(value, getCompleteNodeExpressionValue(subparser, 1, subparser.getPresenceCondition())); } break; - case 464: + case 466: { todoReminder("typecheck ShiftExpression (2)"); PresenceCondition pc = subparser.getPresenceCondition(); @@ -7040,7 +7109,7 @@ else if (size1 > size2) { } break; - case 465: + case 467: { todoReminder("typecheck ShiftExpression (3)"); PresenceCondition pc = subparser.getPresenceCondition(); @@ -7067,13 +7136,13 @@ else if (size1 > size2) { } break; - case 466: + case 468: { setTransformationValue(value, getCompleteNodeExpressionValue(subparser, 1, subparser.getPresenceCondition())); } break; - case 467: + case 469: { todoReminder("typecheck RelationalExpression (2)"); PresenceCondition pc = subparser.getPresenceCondition(); @@ -7099,7 +7168,7 @@ else if (size1 > size2) { } break; - case 468: + case 470: { todoReminder("typecheck RelationalExpression (3)"); PresenceCondition pc = subparser.getPresenceCondition(); @@ -7125,7 +7194,7 @@ else if (size1 > size2) { } break; - case 469: + case 471: { todoReminder("typecheck RelationalExpression (4)"); PresenceCondition pc = subparser.getPresenceCondition(); @@ -7151,7 +7220,7 @@ else if (size1 > size2) { } break; - case 470: + case 472: { todoReminder("typecheck RelationalExpression (5)"); PresenceCondition pc = subparser.getPresenceCondition(); @@ -7177,13 +7246,13 @@ else if (size1 > size2) { } break; - case 471: + case 473: { setTransformationValue(value, getCompleteNodeExpressionValue(subparser, 1, subparser.getPresenceCondition())); } break; - case 472: + case 474: { todoReminder("typecheck EqualityExpression (2)"); PresenceCondition pc = subparser.getPresenceCondition(); @@ -7211,7 +7280,7 @@ else if (size1 > size2) { } break; - case 473: + case 475: { todoReminder("typecheck EqualityExpression (3)"); PresenceCondition pc = subparser.getPresenceCondition(); @@ -7237,13 +7306,13 @@ else if (size1 > size2) { } break; - case 474: + case 476: { setTransformationValue(value, getCompleteNodeExpressionValue(subparser, 1, subparser.getPresenceCondition())); } break; - case 475: + case 477: { todoReminder("typecheck AndExpression (2)"); PresenceCondition pc = subparser.getPresenceCondition(); @@ -7269,13 +7338,13 @@ else if (size1 > size2) { } break; - case 476: + case 478: { setTransformationValue(value, getCompleteNodeExpressionValue(subparser, 1, subparser.getPresenceCondition())); } break; - case 477: + case 479: { todoReminder("typecheck ExclusiveOrExpression (2)"); PresenceCondition pc = subparser.getPresenceCondition(); @@ -7301,13 +7370,13 @@ else if (size1 > size2) { } break; - case 478: + case 480: { setTransformationValue(value, getCompleteNodeExpressionValue(subparser, 1, subparser.getPresenceCondition())); } break; - case 479: + case 481: { todoReminder("typecheck InclusiveOrExpression (2)"); PresenceCondition pc = subparser.getPresenceCondition(); @@ -7333,13 +7402,13 @@ else if (size1 > size2) { } break; - case 480: + case 482: { setTransformationValue(value, getCompleteNodeExpressionValue(subparser, 1, subparser.getPresenceCondition())); } break; - case 481: + case 483: { todoReminder("typecheck LogicalAndExpression (2)"); PresenceCondition pc = subparser.getPresenceCondition(); @@ -7368,13 +7437,13 @@ else if (size1 > size2) { } break; - case 482: + case 484: { setTransformationValue(value, getCompleteNodeExpressionValue(subparser, 1, subparser.getPresenceCondition())); } break; - case 483: + case 485: { todoReminder("typecheck LogicalORExpression (2)"); PresenceCondition pc = subparser.getPresenceCondition(); @@ -7400,13 +7469,13 @@ else if (size1 > size2) { } break; - case 484: + case 486: { setTransformationValue(value, getCompleteNodeExpressionValue(subparser, 1, subparser.getPresenceCondition())); } break; - case 485: + case 487: { todoReminder("typecheck ConditionalExpression (2)"); PresenceCondition pc = subparser.getPresenceCondition(); @@ -7444,7 +7513,7 @@ else if (size1 > size2) { } break; - case 486: + case 488: { PresenceCondition pc = subparser.getPresenceCondition(); ExpressionValue condval = getCompleteNodeExpressionValue(subparser, 4, pc); @@ -7471,13 +7540,13 @@ else if (size1 > size2) { } break; - case 487: + case 489: { setTransformationValue(value, getCompleteNodeExpressionValue(subparser, 1, subparser.getPresenceCondition())); } break; - case 488: + case 490: { PresenceCondition pc = subparser.getPresenceCondition(); @@ -7537,18 +7606,6 @@ else if (size1 > size2) { } break; - case 489: - { - setTransformationValue(value, ((Syntax) getNodeAt(subparser, 1)).getTokenText()); - } - break; - - case 490: - { - setTransformationValue(value, ((Syntax) getNodeAt(subparser, 1)).getTokenText()); - } - break; - case 491: { setTransformationValue(value, ((Syntax) getNodeAt(subparser, 1)).getTokenText()); @@ -7604,6 +7661,18 @@ else if (size1 > size2) { break; case 500: + { + setTransformationValue(value, ((Syntax) getNodeAt(subparser, 1)).getTokenText()); + } + break; + + case 501: + { + setTransformationValue(value, ((Syntax) getNodeAt(subparser, 1)).getTokenText()); + } + break; + + case 502: { PresenceCondition pc = subparser.getPresenceCondition(); setTransformationValue(value, new ExpressionValue("", @@ -7612,19 +7681,19 @@ else if (size1 > size2) { } break; - case 501: + case 503: { setTransformationValue(value, getCompleteNodeExpressionValue(subparser, 1, subparser.getPresenceCondition())); } break; - case 502: + case 504: { setTransformationValue(value, this.getCompleteNodeExpressionValue(subparser, 1, subparser.getPresenceCondition())); } break; - case 503: + case 505: { // n1570, 6.5.17. left operand is a void expression; result // has right operand's type (and value). @@ -7650,41 +7719,41 @@ else if (size1 > size2) { } break; - case 504: + case 506: { setTransformationValue(value, getCompleteNodeExpressionValue(subparser, 1, subparser.getPresenceCondition())); } break; - case 505: + case 507: { todoReminder("support AttributeSpecifierListOpt (1), replaced with empty string now"); setTransformationValue(value, new Multiverse("", subparser.getPresenceCondition())); } break; - case 506: + case 508: { todoReminder("support AttributeSpecifierListOpt (2), replaced with empty string now"); setTransformationValue(value, new Multiverse("", subparser.getPresenceCondition())); } break; - case 507: + case 509: { todoReminder("support AttributeSpecifierList (1), replaced with empty string now"); setTransformationValue(value, new Multiverse("", subparser.getPresenceCondition())); } break; - case 508: + case 510: { todoReminder("support AttributeSpecifierList (2), replaced with empty string now"); setTransformationValue(value, new Multiverse("", subparser.getPresenceCondition())); } break; - case 509: + case 511: { Syntax keyword = ((Syntax) getNodeAt(subparser, 6).get(0)); todoReminder("support AttributeSpecifier, replaced with empty string now"); @@ -7692,33 +7761,33 @@ else if (size1 > size2) { } break; - case 510: + case 512: { // read token from parent } break; - case 511: + case 513: { // read token from parent } break; - case 512: + case 514: { todoReminder("support AttributeListOpt (1), replaced with empty string now"); setTransformationValue(value, new Multiverse("", subparser.getPresenceCondition())); } break; - case 513: + case 515: { todoReminder("support AttributeListOpt (1), replaced with empty string now"); setTransformationValue(value, new Multiverse("", subparser.getPresenceCondition())); } break; - case 514: + case 516: { String word = ((Syntax) getNodeAt(subparser, 2).get(0)).getTokenText(); todoReminder("support AttributeList (1), replaced with empty string now"); @@ -7726,7 +7795,7 @@ else if (size1 > size2) { } break; - case 515: + case 517: { String word = ((Syntax) getNodeAt(subparser, 2).get(0)).getTokenText(); todoReminder("support AttributeList (2), replaced with empty string now"); @@ -7734,13 +7803,13 @@ else if (size1 > size2) { } break; - case 516: + case 518: { setTransformationValue(value, ""); } break; - case 517: + case 519: { setTransformationValue(value, String.format("%s %s", getNodeAt(subparser, 2).getTokenText(), @@ -7748,7 +7817,7 @@ else if (size1 > size2) { } break; - case 518: + case 520: { // TODO: need to check type of expression list to make sure // it's legal and return a type error if it is. @@ -7757,18 +7826,6 @@ else if (size1 > size2) { } break; - case 519: - { - // get token from parent - } - break; - - case 520: - { - // get token from parent - } - break; - case 521: { // get token from parent @@ -8154,13 +8211,25 @@ else if (size1 > size2) { break; case 585: + { + // get token from parent + } + break; + + case 586: + { + // get token from parent + } + break; + + case 587: { todoReminder("support AssemblyDefinition (1)"); setTransformationValue(value, new Multiverse("", subparser.getPresenceCondition())); } break; - case 586: + case 588: { ExpressionValue e = getCompleteNodeExpressionValue(subparser, 2, subparser.getPresenceCondition()); Multiverse temp = e.transformation; @@ -8171,21 +8240,21 @@ else if (size1 > size2) { } break; - case 587: + case 589: { todoReminder("support AssemblyExpressionOpt (1)"); setTransformationValue(value, new Multiverse("", subparser.getPresenceCondition())); } break; - case 588: + case 590: { todoReminder("support AssemblyExpressionOpt (2)"); setTransformationValue(value, new Multiverse("", subparser.getPresenceCondition())); } break; - case 589: + case 591: { ExpressionValue temp = (ExpressionValue)getTransformationValue(subparser,3); Multiverse prepended = temp.transformation.prependScalar("__asm__(", DesugarOps.concatStrings); @@ -8197,7 +8266,7 @@ else if (size1 > size2) { } break; - case 590: + case 592: { todoReminder("support AssemblyStatement (2)"); System.exit(0); @@ -8207,7 +8276,7 @@ else if (size1 > size2) { } break; - case 591: + case 593: { Multiverse qual = getCompleteNodeMultiverseValue(subparser, 5, subparser.getPresenceCondition()); Multiverse qualS = DesugarOps.TypeSpecifierToString.transform(qual); @@ -8227,7 +8296,7 @@ else if (size1 > size2) { } break; - case 592: + case 594: { Multiverse first = getCompleteNodeExpressionValue(subparser,7,subparser.getPresenceCondition()).transformation; ExpressionValue sec = (ExpressionValue)getTransformationValue(subparser,5); @@ -8248,7 +8317,7 @@ else if (size1 > size2) { } break; - case 593: + case 595: { Multiverse first = getCompleteNodeExpressionValue(subparser,5,subparser.getPresenceCondition()).transformation; ExpressionValue sec = (ExpressionValue)getTransformationValue(subparser,3); @@ -8264,7 +8333,7 @@ else if (size1 > size2) { } break; - case 594: + case 596: { Multiverse first = getCompleteNodeExpressionValue(subparser,3,subparser.getPresenceCondition()).transformation; ExpressionValue sec = (ExpressionValue)getTransformationValue(subparser,1); @@ -8274,31 +8343,31 @@ else if (size1 > size2) { } break; - case 595: + case 597: { setTransformationValue(value, getCompleteNodeExpressionValue(subparser, 1, subparser.getPresenceCondition())); } break; - case 596: + case 598: { setTransformationValue(value, new ExpressionValue(new Multiverse("", subparser.getPresenceCondition()),new Multiverse(new IntegerT(NumberT.Kind.INT),subparser.getPresenceCondition()))); } break; - case 597: + case 599: { setTransformationValue(value, getTransformationValue(subparser,1)); } break; - case 598: + case 600: { setTransformationValue(value, getTransformationValue(subparser,1)); } break; - case 599: + case 601: { ExpressionValue prev = (ExpressionValue)getTransformationValue(subparser,3); ExpressionValue cur = (ExpressionValue)getTransformationValue(subparser,1); @@ -8308,7 +8377,7 @@ else if (size1 > size2) { } break; - case 600: + case 602: { todoReminder("typecheck Assemblyoperand (1)"); ExpressionValue str = getCompleteNodeExpressionValue(subparser,4,subparser.getPresenceCondition()); @@ -8322,7 +8391,7 @@ else if (size1 > size2) { } break; - case 601: + case 603: { String word = ((Syntax) getNodeAt(subparser, 6).get(0)).getTokenText(); todoReminder("support Assemblyoperand (2)"); @@ -8331,26 +8400,26 @@ else if (size1 > size2) { } break; - case 602: + case 604: { setTransformationValue(value, new Multiverse("", subparser.getPresenceCondition())); } break; - case 603: + case 605: { setTransformationValue(value, (Multiverse)getTransformationValue(subparser,1)); } break; - case 604: + case 606: { Multiverse first = getCompleteNodeExpressionValue(subparser,1,subparser.getPresenceCondition()).transformation; setTransformationValue(value, first); } break; - case 605: + case 607: { Multiverse first = (Multiverse)getTransformationValue(subparser,3); Multiverse second = getCompleteNodeExpressionValue(subparser,1,subparser.getPresenceCondition()).transformation; @@ -8362,21 +8431,21 @@ else if (size1 > size2) { } break; - case 606: + case 608: { todoReminder("support AssemblyGotoargument (1)"); setTransformationValue(value, new Multiverse("", subparser.getPresenceCondition())); } break; - case 607: + case 609: { todoReminder("support AssemblyJumpLabels (1)"); setTransformationValue(value, new Multiverse("", subparser.getPresenceCondition())); } break; - case 608: + case 610: { todoReminder("support AssemblyJumpLabels (2)"); setTransformationValue(value, new Multiverse("", subparser.getPresenceCondition())); @@ -8407,11 +8476,161 @@ public static void keepMemoryNames(boolean f) { /*************************************************************************** **** Semantic actions ***************************************************************************/ + protected List> declAddSemi(List declaringlistvalues, + String semi, + PresenceCondition pc) { + List> toret = new LinkedList>(); + for (DeclaringListValue d : declaringlistvalues ) { + toret.add(d.desugared.appendScalar(semi,DesugarOps.concatStrings)); + } + return toret; + } + + protected void setupInitials(List declList, DeclaringListValue decl, Multiverse initializermv, PresenceCondition pc, CContext scope){ + if (initializermv.size() == 1 && initializermv.get(0).getData().isEmpty()) { + declList.add(decl); + } else { + System.err.println(decl); + for (Element declarator : decl.declarator) { + String originalName = declarator.getData().getName(); + Multiverse> entries = scope.getInCurrentScope(originalName, declarator.getCondition()); + for (Element> entry : entries) { + Type t = entry.getData().getValue().toVariable().getType(); + if (initializermv.size() == 1 && ! initializermv.get(0).getData().hasList()) { + declList.add(checkInitializers(decl.filter(entry.getCondition()),initializermv,entry.getCondition(),scope,false)); + } else { + declList.add(decl.filter(entry.getCondition())); + for (Element ei : initializermv) { + if (!ei.getData().isEmpty()) { + declList.add(checkInitializers(decl.filter(entry.getCondition()),initializermv.filter(ei.getCondition()),ei.getCondition(),scope,true)); + } + } + } + } + } + } + } + + protected DeclaringListValue checkInitializers(DeclaringListValue decl, Multiverse initializermv, PresenceCondition pc, CContext scope, boolean splitMainInit) { + Multiverse initStr; + if (splitMainInit) { + initStr = new Multiverse("if (" + condToCVar(pc) + ") {\n" ,pc); + } else { + initStr = new Multiverse("",pc); + } + for (Element initializer : initializermv) { + if (initializer.getData().isEmpty()) { + continue; + } + for (Element declarator : decl.declarator) { + PresenceCondition combinedCond = initializer.getCondition().and(declarator.getCondition()).and(pc); + String originalName = declarator.getData().getName(); + if (!initializer.getData().hasValidType()) { + scope.putError(originalName,combinedCond); + continue; + } + for (Element typespecifier : decl.typespecifier) { + PresenceCondition finalcond = typespecifier.getCondition().and(combinedCond); + if (finalcond.isFalse()) { + continue; + } + Declaration originalDeclaration = new Declaration(typespecifier.getData(), declarator.getData()); + Type declarationType = originalDeclaration.getType(); + + StringBuilder entrysb = new StringBuilder(); // the desugared output + Multiverse> entries = scope.getInCurrentScope(originalName, finalcond); + for (Element> entry : entries) { + String renaming = entry.getData().getValue().toVariable().getName(); + if (initializer.getData().hasList() && !scope.isGlobal() && + (!declarationType.hasAttribute(Constants.ATT_CONSTANT) && !declarationType.hasConstant())) { + Type tempT = declarationType; + while (tempT.isWrapped()) { + tempT = ((WrappedT)tempT).getType(); + } + if (tempT.isStruct() || tempT.isUnion()){ + entrysb.append("{\n" + initStruct(renaming, (StructOrUnionT)tempT, initializer.getData(), scope, finalcond) + "}"); + } + if (tempT.isArray()){ + entrysb.append("{\n" + initArray(renaming, (ArrayT)tempT, initializer.getData(), scope, finalcond) + "}"); + } + } else { + boolean compatibleTypes = true; + //check for initializer list + if (initializer.getData().hasList()) { + compatibleTypes = !initializer.getData().hasNonConst(); + } + if (compatibleTypes) { + String toAddStr = ""; + if (initializer.getData().hasList()) { + Multiverse mvs = initializer.getData().renamedList(new Multiverse(declarationType.resolve(),finalcond),finalcond,scope); + for (Element evs : mvs) { + if (evs.getData() != "") { + if (splitMainInit) { + toAddStr += renaming; + } + toAddStr += (evs.getData()); + } else { + scope.putError(originalName, entry.getCondition()); + recordInvalidGlobalRedeclaration(originalName, entry.getCondition()); + if (scope.isGlobal() && isGlobalOrExtern(typespecifier.getData())) { + externalLinkage.putError(originalName, entry.getCondition()); + } else if (!scope.isGlobal()) { + toAddStr += ("if ("); + toAddStr += (condToCVar(entry.getCondition())); + toAddStr += (") {\n"); + toAddStr += (emitError(String.format("improper designator value: %s", originalName))); + toAddStr += (";\n"); + toAddStr += ("}\n"); + } + } + } + } else { + if (splitMainInit) { + toAddStr += renaming; + } + toAddStr += (initializer.getData().toString()); + } + if ((declarationType.hasAttribute(Constants.ATT_CONSTANT) || declarationType.hasConstant()) && + scope.isGlobal()) { + } else { + entrysb.append(toAddStr + ";"); + } + } else { + scope.putError(originalName, entry.getCondition()); + recordInvalidGlobalRedeclaration(originalName, entry.getCondition()); + if (scope.isGlobal() && isGlobalOrExtern(typespecifier.getData())) { + externalLinkage.putError(originalName, entry.getCondition()); + } else if (!scope.isGlobal()) { + entrysb.append("if ("); + entrysb.append(condToCVar(entry.getCondition())); + entrysb.append(") {\n"); + entrysb.append(emitError(String.format("non const value in constant list or struct: %s", + originalName))); + entrysb.append(";\n"); + entrysb.append("}\n"); + } + } + } + Multiverse toApply = new Multiverse(); + toApply.add(entrysb.toString(),finalcond); + toApply.add("",finalcond.not()); + initStr = initStr.product(toApply,DesugarOps.concatStrings); + toApply.destruct(); + } + } + } + } + if (splitMainInit) { + initStr = initStr.product(new Multiverse("}",pc), DesugarOps.concatStrings); + return new DeclaringListValue(decl.typespecifier, decl.declarator, initializermv, initStr); + } + return new DeclaringListValue(decl.typespecifier, decl.declarator, initializermv, decl.desugared.product(initStr,DesugarOps.concatStrings)); + } protected List> declarationAction(List declaringlistvalues, - String semi, - PresenceCondition pc, - CContext scope) { + String semi, + PresenceCondition pc, + CContext scope) { /* * to desugar declarations, we need to iterate over all * combinations of (1) declarators in the declaring list, @@ -8598,7 +8817,7 @@ protected List> declarationAction(List de Multiverse mvs = initializer.getData().renamedList(new Multiverse(declarationType.resolve(),combinedCond),combinedCond,scope); for (Element evs : mvs) { if (evs.getData() != "") { - toAddStr += (desugaredDeclaration); + toAddStr += desugaredDeclaration; toAddStr += (evs.getData()); toAddStr += (semi); // semi-colon recordRenaming(renaming, originalName); @@ -8618,7 +8837,7 @@ protected List> declarationAction(List de } } } else { - toAddStr += (desugaredDeclaration); + toAddStr += desugaredDeclaration; toAddStr += (initializer.getData().toString()); toAddStr += (semi); // semi-colon recordRenaming(renaming, originalName); @@ -8703,7 +8922,6 @@ protected List> declarationAction(List de } // end check for variable type } // end check global/local scope } // end entry kind - entrysb.append("\n"); if (renamedDeclaration.typespecifier.contains(Constants.ATT_STORAGE_TYPEDEF)) { // typedefs are moved to the top of the scope @@ -8740,6 +8958,197 @@ protected List> declarationAction(List de return retmv; } +protected Multiverse declarationListAction(Multiverse typespecifiermv, + Multiverse declaratormv, + PresenceCondition pc, + CContext scope) { + + StringBuilder valuesb = new StringBuilder(); // the desugared output + Multiverse valuemv = new Multiverse(); + + valuemv.add("",pc); + // TODO: use typespecifier/declarator to reclassify the + // tokens as typedef/ident in parsing context + for (Element typespecifier : typespecifiermv) { + PresenceCondition typespecifierCond = pc.and(typespecifier.getCondition()); + for (Element declarator : declaratormv) { + PresenceCondition combinedCond = typespecifierCond.and(declarator.getCondition()); + if (combinedCond.isNotFalse()) { + + String originalName = declarator.getData().getName(); + // get xtc type from type and declarator + Declaration tempD = new Declaration(typespecifier.getData(), declarator.getData()); + if (typespecifier.getData().getType().isError() + || tempD.hasTypeError() + || (!scope.isGlobal() && new Declaration(typespecifier.getData(), declarator.getData()).isNonPointerForwardRef()) + ) { + // if type is invalid, put an error entry, emit a call + // to the type error function + scope.putError(originalName, combinedCond); + if (scope.isGlobal()) { + recordInvalidGlobalDeclaration(originalName, combinedCond); + } else { + valuesb.append("if ("); + valuemv = appendStringToMV(valuemv,"if (",combinedCond); + String tempC = condToCVar(combinedCond); + valuesb.append(tempC); + valuemv = appendStringToMV(valuemv,tempC,combinedCond); + valuesb.append(") {\n"); + valuemv = appendStringToMV(valuemv,") {\n",combinedCond); + valuesb.append(emitError(String.format("invalid declaration of %s under this presence condition", + originalName))); + valuemv = appendStringToMV(valuemv,emitError(String.format("invalid declaration of %s under this presence condition", + originalName)),combinedCond); + valuesb.append(";\n"); + valuemv = appendStringToMV(valuemv,";\n",combinedCond); + valuesb.append("}\n"); + valuemv = appendStringToMV(valuemv,"}\n",combinedCond); + + } + } else { + // otherwise loop over each existing entry check for + // type errors or add a new declaration + Multiverse> entries = scope.getInCurrentScope(originalName, combinedCond); + for (Element> entry : entries) { + String renaming = freshCId(originalName); + Declarator renamedDeclarator = declarator.getData().rename(renaming); + Declaration renamedDeclaration = new Declaration(typespecifier.getData(), + renamedDeclarator); + Declaration originalDeclaration = new Declaration(typespecifier.getData(), declarator.getData()); + + StringBuilder entrysb = new StringBuilder(); + + Type declarationType = renamedDeclaration.getType(); + Type type; + //System.err.println("has typedef:" + renamedDeclaration.typespecifier.contains(Constants.ATT_STORAGE_TYPEDEF)); + if (renamedDeclaration.typespecifier.contains(Constants.ATT_STORAGE_TYPEDEF)) { + type = new AliasT(renaming, declarationType); + } else if (declarationType.isFunction()) { + type = new NamedFunctionT(declarationType.toFunction().getResult(), + renaming, + declarationType.toFunction().getParameters(), + declarationType.toFunction().isVarArgs()); + } else { + if (scope.isGlobal()) { + type = VariableT.newGlobal(declarationType, renaming); + } else { + type = VariableT.newLocal(declarationType, renaming); + } + } + + // make all renamed declarations static until project-wide, configuration-aware linking is possible + String desugaredDeclaration; + // disabling the thunks for now, pending + // configuration-aware linking support + desugaredDeclaration = renamedDeclaration.toString(); + if (entry.getData().isError()) { + // ERROR entry + System.err.println(String.format("INFO: \"%s\" is being redeclared in an existing invalid declaration", originalName)); + + } else if (entry.getData().isUndeclared()) { + // UNDECLARED entry + // update the symbol table for this presence condition + + // the renamed function is static to enable linking the original function name + if (scope.isGlobal() && Constants.ATT_STORAGE_AUTO == + typespecifier.getData().getStorageClass()) { + scope.putError(originalName, entry.getCondition()); + } else { + + scope.put(originalName, type, entry.getCondition()); + + if (scope.isGlobal() && isGlobalOrExtern(typespecifier.getData())) { + externalLinkage.put(originalName, originalDeclaration, entry.getCondition()); + } + String toAddStr = ""; + + toAddStr += desugaredDeclaration; + recordRenaming(renaming, originalName); + if ((declarationType.hasAttribute(Constants.ATT_CONSTANT) || declarationType.hasConstant()) && + scope.isGlobal()) { + scope.addDeclaration(toAddStr+";\n"); + } else { + entrysb.append(toAddStr); + } + } + } else { // already declared entries + if (! scope.isGlobal()) { + // not allowed to redeclare local symbols at all + scope.putError(originalName, entry.getCondition()); + entrysb.append("if ("); + entrysb.append(condToCVar(entry.getCondition())); + entrysb.append(") {\n"); + entrysb.append(emitError(String.format("redeclaration of local symbol: %s", + originalName))); + entrysb.append(";\n"); + entrysb.append("}\n"); + } else { // global scope + + // declarations only set VariableT or AliasT + boolean sameTypeKind + = entry.getData().getValue().isVariable() && type.isVariable() + || entry.getData().getValue().isAlias() && type.isAlias(); + + // check compatibility of types + if (sameTypeKind) { + boolean compatibleTypes = false; + if (type.isVariable()) { + compatibleTypes = cOps.equal(entry.getData().getValue().toVariable().getType(), + type.toVariable().getType()); + } else if (type.isAlias()) { + compatibleTypes = cOps.equal(entry.getData().getValue().toAlias().getType(), + type.toAlias().getType()); + } else { + throw new AssertionError("should not be possible given sameTypeKind"); + } + + if (! compatibleTypes) { + // not allowed to redeclare globals to a different type + scope.putError(originalName, entry.getCondition()); + recordInvalidGlobalRedeclaration(originalName, entry.getCondition()); + if (scope.isGlobal() && isGlobalOrExtern(typespecifier.getData())) { + externalLinkage.putError(originalName, entry.getCondition()); + } + } else { + // emit the same declaration, since it's legal to redeclare globals to a compatible type + /* entrysb.append(renamedDeclaration.toString()); */ + entrysb.append(desugaredDeclaration); + System.err.println(String.format("INFO: \"%s\" is being redeclared in global scope to compatible type", originalName)); + } + + } else { // not the same kind of type + scope.putError(originalName, entry.getCondition()); + System.err.println(String.format("INFO: attempted to redeclare global to a different kind of type: %s", originalName)); + recordInvalidGlobalRedeclaration(originalName, entry.getCondition()); + if (scope.isGlobal() && isGlobalOrExtern(typespecifier.getData())) { + externalLinkage.putError(originalName, entry.getCondition()); + } + } // end check for variable type + } // end check global/local scope + } // end entry kind + + if (renamedDeclaration.typespecifier.contains(Constants.ATT_STORAGE_TYPEDEF)) { + // typedefs are moved to the top of the scope + // to support forward references of structs + scope.addDeclaration(entrysb.toString() + ";"); + valuesb.append("// typedef moved to top of scope\n"); + valuemv = appendStringToMV(valuemv,"// typedef moved to top of scope\n",combinedCond); + } else { + // not a typedef, so add it to regular output + valuesb.append(entrysb.toString()); + valuemv = appendStringToMV(valuemv,entrysb.toString(),combinedCond); + } + } // end loop over symtab entries + entries.destruct(); + } + } // end check for false combinedCond + combinedCond.delRef(); + } // end loop over declarators + } // end loop over typespecifiers + return valuemv; +} + + class IDSort implements Comparator> { private int getID(String x){ String res = ""; @@ -9668,6 +10077,8 @@ private static class DeclaringListValue { /** The initializer. */ public Multiverse initializer; + public Multiverse desugared; + /** * This constructor creates a new instance. * @param type is the type. @@ -9680,8 +10091,18 @@ private DeclaringListValue(Multiverse typespecifier, this.typespecifier = typespecifier; this.declarator = declarator; this.initializer = initializer; + this.desugared = null; } + private DeclaringListValue(Multiverse typespecifier, + Multiverse declarator, + Multiverse initializer, + Multiverse desugared) { + this.typespecifier = typespecifier; + this.declarator = declarator; + this.initializer = initializer; + this.desugared = desugared; + } public boolean isEmpty() { return typespecifier.isEmpty() || @@ -9693,7 +10114,12 @@ public String toString() { return "TypeSpec: " + typespecifier.toString() + "\nDeclarator: " + declarator.toString() + - "\nInitializer: " + initializer.toString(); + "\nInitializer: " + initializer.toString() + + "\nDesugared: " + desugared.toString(); + } + + public DeclaringListValue filter(PresenceCondition p ) { + return new DeclaringListValue(typespecifier.filter(p),declarator.filter(p),initializer.filter(p),desugared.filter(p)); } } @@ -11251,7 +11677,7 @@ private void recordRenaming(String renaming, String original) { public String printMain(CContext scope, PresenceCondition pc) { String ret = ""; - ret += "int main(int argc, char **argv) {\n"; + ret += "int main(int argc, char **argv) {\n__static_initializer_default();\n"; Multiverse> entries = scope.getInCurrentScope("main", pc); for (Element> entry : entries) { ret += "if ("; @@ -11297,7 +11723,8 @@ public String staticInitialization(boolean showParseError) { // writes the extern declarations for the renamed preprocessor BDDs System.err.println("TODO: record original presence condition strings in file as well once raw strings are collected"); for (Integer hash : condVars.keySet()) { - sb.append(String.format("int %s() {return rand()%%2;};\n", condVars.get(hash))); + //sb.append(String.format("int %s() {return rand()%%2;};\n", condVars.get(hash))); + sb.append(String.format("extern const bool %s();\n", condVars.get(hash))); } sb.append(String.format("%s {\n%s\n%s\n", diff --git a/src/superc/cdesugarer/CParseTables.java b/src/superc/cdesugarer/CParseTables.java index 6689d7d3..74d9887f 100644 --- a/src/superc/cdesugarer/CParseTables.java +++ b/src/superc/cdesugarer/CParseTables.java @@ -24,16 +24,16 @@ public class CParseTables extends ParseTables { public CParseTables() { super( 3, // YYFINAL - 5135, // YYLAST + 5148, // YYLAST 129, // YYNTOKENS - 221, // YYNNTS - 611, // YYNRULES - 940, // YYNSTATES + 223, // YYNNTS + 613, // YYNRULES + 942, // YYNSTATES 2, // YYUNDEFTOK 383, // YYMAXUTOK 0, // YYEOF - -807, // YYPACT_NINF - -501, // YYTABLE_NINF + -826, // YYPACT_NINF + -503, // YYTABLE_NINF yytranslate_wrapper.yytranslate, yytname_wrapper.yytname, yytoknum_wrapper.yytoknum, @@ -266,6 +266,8 @@ public static class yytname_wrapper { "$@13", "DeclaringList", "$@14", + "$@15", + "$@16", "DeclarationSpecifier", "TypeSpecifier", "DeclarationQualifierList", @@ -307,20 +309,20 @@ public static class yytname_wrapper { "EnumSpecifierList", "EnumeratorList", "Enumerator", - "$@15", - "$@16", + "$@17", + "$@18", "EnumeratorValueOpt", "ParameterTypeList", "ParameterList", "ParameterDeclaration", "ParameterAbstractDeclaration", "ParameterIdentifierDeclaration", - "$@17", - "$@18", "$@19", "$@20", "$@21", "$@22", + "$@23", + "$@24", "IdentifierList", "Identifier", "IdentifierOrTypedefName", @@ -351,15 +353,15 @@ public static class yytname_wrapper { "AttributedDeclarator", "FunctionDeclarator", "PostfixingFunctionDeclarator", - "$@23", - "$@24", + "$@25", + "$@26", "ArrayDeclarator", "ParenIdentifierDeclarator", "SimpleDeclarator", "OldFunctionDeclarator", "PostfixOldFunctionDeclarator", - "$@25", - "$@26", + "$@27", + "$@28", "AbstractDeclarator", "PostfixingAbstractDeclarator", "ParameterTypeListOpt", @@ -371,8 +373,8 @@ public static class yytname_wrapper { "SwitchLabeledStatement", "SwitchLabeledStatementList", "CompoundStatement", - "$@27", - "$@28", + "$@29", + "$@30", "CompoundStatementBody", "LocalLabelDeclarationListOpt", "LocalLabelDeclarationList", @@ -384,8 +386,8 @@ public static class yytname_wrapper { "ExpressionStatement", "SelectionStatement", "IterationStatement", - "$@29", - "$@30", + "$@31", + "$@32", "JumpStatement", "GotoStatement", "ContinueStatement", @@ -398,8 +400,8 @@ public static class yytname_wrapper { "PrimaryIdentifier", "VariableArgumentAccess", "StatementAsExpression", - "$@31", - "$@32", + "$@33", + "$@34", "PostfixExpression", "Subscript", "FunctionCall", @@ -485,62 +487,62 @@ public static class yyr1_wrapper { 141, 141, 141, 143, 142, 144, 145, 142, 146, 146, 146, 146, 146, 146, 146, 146, 147, 147, 147, 147, 148, 148, 150, 149, 151, 149, 152, 149, 153, 149, - 155, 154, 156, 154, 157, 154, 158, 158, 159, 158, - 160, 160, 160, 160, 160, 161, 161, 161, 161, 161, - 162, 162, 162, 163, 163, 164, 164, 165, 165, 165, - 165, 165, 166, 166, 166, 167, 167, 167, 168, 168, - 168, 169, 169, 169, 170, 170, 170, 170, 171, 171, - 171, 171, 172, 172, 172, 173, 173, 173, 174, 174, - 174, 175, 175, 175, 176, 176, 176, 176, 177, 177, - 177, 177, 178, 178, 179, 179, 179, 180, 180, 180, - 180, 181, 181, 181, 181, 182, 183, 183, 183, 183, - 183, 184, 184, 184, 184, 184, 184, 184, 184, 184, - 184, 184, 184, 185, 185, 185, 186, 186, 187, 187, - 188, 188, 188, 188, 188, 188, 188, 188, 188, 188, - 189, 189, 190, 190, 190, 190, 190, 191, 191, 192, - 192, 193, 193, 194, 194, 195, 195, 196, 197, 197, - 197, 197, 197, 198, 198, 199, 199, 201, 200, 202, - 200, 203, 203, 204, 204, 205, 205, 206, 206, 207, - 207, 207, 207, 207, 207, 207, 207, 209, 208, 210, - 208, 211, 208, 212, 208, 213, 208, 214, 208, 215, - 215, 216, 217, 217, 218, 218, 218, 218, 219, 219, - 220, 220, 220, 221, 221, 222, 222, 223, 223, 224, - 224, 224, 225, 225, 226, 226, 226, 226, 227, 227, - 228, 229, 229, 230, 231, 231, 232, 232, 232, 233, - 233, 233, 234, 234, 235, 235, 235, 235, 235, 236, - 236, 236, 237, 237, 238, 239, 239, 240, 240, 240, - 241, 241, 241, 241, 242, 243, 245, 246, 244, 247, - 248, 248, 249, 250, 250, 250, 252, 253, 251, 251, - 251, 254, 254, 254, 255, 255, 256, 256, 257, 257, - 257, 258, 258, 258, 258, 259, 259, 259, 259, 260, - 260, 260, 260, 260, 260, 260, 261, 261, 262, 262, - 262, 263, 263, 265, 266, 264, 267, 268, 268, 269, - 269, 270, 271, 271, 272, 272, 273, 273, 273, 274, - 274, 275, 276, 276, 276, 277, 277, 277, 278, 279, - 277, 280, 280, 280, 280, 281, 281, 282, 283, 284, - 285, 285, 285, 285, 285, 286, 286, 287, 288, 288, - 288, 288, 288, 288, 289, 290, 292, 293, 291, 294, - 294, 294, 294, 294, 294, 294, 294, 295, 296, 296, - 297, 298, 299, 300, 301, 302, 302, 303, 303, 303, - 303, 303, 303, 303, 303, 303, 303, 303, 304, 305, - 305, 306, 307, 308, 308, 309, 309, 310, 311, 311, - 311, 311, 311, 311, 312, 312, 313, 313, 313, 313, - 314, 314, 314, 315, 315, 315, 316, 316, 316, 316, - 316, 317, 317, 317, 318, 318, 319, 319, 320, 320, - 321, 321, 322, 322, 323, 323, 323, 324, 324, 325, - 325, 325, 325, 325, 325, 325, 325, 325, 325, 325, - 326, 326, 327, 327, 328, 329, 329, 330, 330, 331, - 332, 332, 333, 333, 334, 334, 335, 335, 335, 336, - 336, 336, 336, 336, 336, 336, 336, 336, 336, 336, - 336, 336, 336, 336, 336, 336, 336, 336, 336, 336, - 336, 336, 336, 336, 336, 336, 336, 336, 336, 336, - 336, 336, 336, 336, 336, 336, 336, 336, 336, 336, - 336, 336, 336, 336, 336, 336, 336, 336, 336, 336, - 336, 336, 336, 336, 336, 336, 336, 336, 336, 336, - 336, 336, 336, 336, 336, 337, 338, 339, 339, 340, - 340, 340, 341, 341, 341, 341, 342, 342, 343, 343, - 344, 344, 345, 345, 346, 346, 347, 348, 348, 349, - 349, 349 + 155, 154, 156, 154, 157, 154, 159, 158, 160, 158, + 161, 158, 162, 162, 162, 162, 162, 163, 163, 163, + 163, 163, 164, 164, 164, 165, 165, 166, 166, 167, + 167, 167, 167, 167, 168, 168, 168, 169, 169, 169, + 170, 170, 170, 171, 171, 171, 172, 172, 172, 172, + 173, 173, 173, 173, 174, 174, 174, 175, 175, 175, + 176, 176, 176, 177, 177, 177, 178, 178, 178, 178, + 179, 179, 179, 179, 180, 180, 181, 181, 181, 182, + 182, 182, 182, 183, 183, 183, 183, 184, 185, 185, + 185, 185, 185, 186, 186, 186, 186, 186, 186, 186, + 186, 186, 186, 186, 186, 187, 187, 187, 188, 188, + 189, 189, 190, 190, 190, 190, 190, 190, 190, 190, + 190, 190, 191, 191, 192, 192, 192, 192, 192, 193, + 193, 194, 194, 195, 195, 196, 196, 197, 197, 198, + 199, 199, 199, 199, 199, 200, 200, 201, 201, 203, + 202, 204, 202, 205, 205, 206, 206, 207, 207, 208, + 208, 209, 209, 209, 209, 209, 209, 209, 209, 211, + 210, 212, 210, 213, 210, 214, 210, 215, 210, 216, + 210, 217, 217, 218, 219, 219, 220, 220, 220, 220, + 221, 221, 222, 222, 222, 223, 223, 224, 224, 225, + 225, 226, 226, 226, 227, 227, 228, 228, 228, 228, + 229, 229, 230, 231, 231, 232, 233, 233, 234, 234, + 234, 235, 235, 235, 236, 236, 237, 237, 237, 237, + 237, 238, 238, 238, 239, 239, 240, 241, 241, 242, + 242, 242, 243, 243, 243, 243, 244, 245, 247, 248, + 246, 249, 250, 250, 251, 252, 252, 252, 254, 255, + 253, 253, 253, 256, 256, 256, 257, 257, 258, 258, + 259, 259, 259, 260, 260, 260, 260, 261, 261, 261, + 261, 262, 262, 262, 262, 262, 262, 262, 263, 263, + 264, 264, 264, 265, 265, 267, 268, 266, 269, 270, + 270, 271, 271, 272, 273, 273, 274, 274, 275, 275, + 275, 276, 276, 277, 278, 278, 278, 279, 279, 279, + 280, 281, 279, 282, 282, 282, 282, 283, 283, 284, + 285, 286, 287, 287, 287, 287, 287, 288, 288, 289, + 290, 290, 290, 290, 290, 290, 291, 292, 294, 295, + 293, 296, 296, 296, 296, 296, 296, 296, 296, 297, + 298, 298, 299, 300, 301, 302, 303, 304, 304, 305, + 305, 305, 305, 305, 305, 305, 305, 305, 305, 305, + 306, 307, 307, 308, 309, 310, 310, 311, 311, 312, + 313, 313, 313, 313, 313, 313, 314, 314, 315, 315, + 315, 315, 316, 316, 316, 317, 317, 317, 318, 318, + 318, 318, 318, 319, 319, 319, 320, 320, 321, 321, + 322, 322, 323, 323, 324, 324, 325, 325, 325, 326, + 326, 327, 327, 327, 327, 327, 327, 327, 327, 327, + 327, 327, 328, 328, 329, 329, 330, 331, 331, 332, + 332, 333, 334, 334, 335, 335, 336, 336, 337, 337, + 337, 338, 338, 338, 338, 338, 338, 338, 338, 338, + 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, + 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, + 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, + 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, + 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, + 338, 338, 338, 338, 338, 338, 338, 339, 340, 341, + 341, 342, 342, 342, 343, 343, 343, 343, 344, 344, + 345, 345, 346, 346, 347, 347, 348, 348, 349, 350, + 350, 351, 351, 351 }; } @@ -552,563 +554,558 @@ public static class yyr2_wrapper { 2, 2, 2, 0, 3, 0, 0, 8, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 0, 3, 0, 3, 0, 3, 0, 3, - 0, 6, 0, 6, 0, 8, 5, 5, 0, 8, + 0, 6, 0, 6, 0, 8, 0, 6, 0, 6, + 0, 8, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 1, 2, 2, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 2, 2, 1, 2, 1, 1, 1, 1, 1, + 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, + 1, 2, 2, 2, 2, 2, 2, 1, 2, 2, + 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, + 1, 2, 2, 2, 4, 4, 1, 1, 1, 2, + 2, 2, 2, 1, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 1, 1, 1, 2, 2, 2, 2, 1, 2, - 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, - 2, 1, 2, 2, 2, 2, 2, 2, 1, 2, - 2, 2, 4, 4, 1, 1, 1, 2, 2, 2, - 2, 1, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 5, 6, 6, 3, 3, 5, 6, 6, + 3, 3, 0, 2, 2, 2, 2, 2, 1, 3, + 4, 3, 4, 2, 1, 2, 1, 0, 1, 2, + 3, 4, 4, 3, 3, 3, 4, 1, 3, 0, + 3, 0, 3, 0, 2, 1, 3, 1, 3, 1, + 1, 1, 2, 1, 2, 1, 2, 1, 2, 0, + 4, 0, 4, 0, 4, 0, 4, 0, 4, 0, + 4, 1, 3, 1, 1, 1, 1, 2, 1, 2, + 0, 2, 3, 4, 1, 1, 2, 0, 3, 1, + 2, 2, 1, 1, 1, 2, 3, 5, 2, 2, + 3, 5, 2, 1, 1, 1, 1, 1, 1, 2, + 1, 1, 2, 3, 3, 4, 1, 4, 5, 2, + 3, 3, 4, 4, 1, 3, 1, 1, 1, 1, + 2, 3, 1, 1, 1, 4, 3, 2, 0, 0, + 5, 2, 1, 3, 1, 1, 2, 3, 0, 0, + 6, 3, 4, 1, 1, 1, 1, 1, 0, 1, + 2, 3, 4, 1, 2, 2, 3, 3, 3, 3, + 4, 1, 1, 1, 1, 1, 1, 1, 4, 4, + 4, 6, 3, 1, 2, 0, 0, 5, 2, 0, + 1, 1, 2, 3, 1, 3, 0, 2, 1, 1, + 1, 1, 2, 2, 5, 7, 7, 5, 7, 9, + 0, 0, 10, 1, 1, 1, 1, 3, 4, 2, + 2, 3, 1, 1, 1, 1, 1, 1, 2, 1, + 1, 1, 1, 3, 1, 1, 1, 6, 0, 0, + 5, 1, 1, 1, 1, 1, 1, 1, 1, 4, + 3, 4, 3, 3, 2, 2, 6, 1, 3, 1, + 2, 2, 2, 2, 4, 1, 1, 1, 1, 1, + 6, 1, 2, 6, 2, 4, 2, 1, 1, 2, + 1, 1, 1, 1, 1, 1, 1, 4, 1, 3, + 3, 3, 1, 3, 3, 1, 3, 3, 1, 3, + 3, 3, 3, 1, 3, 3, 1, 3, 1, 3, + 1, 3, 1, 3, 1, 3, 1, 5, 4, 1, + 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 1, 1, 0, 1, 1, 3, 1, 0, 1, 1, + 2, 6, 1, 1, 0, 1, 2, 4, 0, 2, + 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 5, 6, 6, 3, 3, 5, 6, 6, 3, 3, - 0, 2, 2, 2, 2, 2, 1, 3, 4, 3, - 4, 2, 1, 2, 1, 0, 1, 2, 3, 4, - 4, 3, 3, 3, 4, 1, 3, 0, 3, 0, - 3, 0, 2, 1, 3, 1, 3, 1, 1, 1, - 2, 1, 2, 1, 2, 1, 2, 0, 4, 0, - 4, 0, 4, 0, 4, 0, 4, 0, 4, 1, - 3, 1, 1, 1, 1, 2, 1, 2, 0, 2, - 3, 4, 1, 1, 2, 0, 3, 1, 2, 2, - 1, 1, 1, 2, 3, 5, 2, 2, 3, 5, - 2, 1, 1, 1, 1, 1, 1, 2, 1, 1, - 2, 3, 3, 4, 1, 4, 5, 2, 3, 3, - 4, 4, 1, 3, 1, 1, 1, 1, 2, 3, - 1, 1, 1, 4, 3, 2, 0, 0, 5, 2, - 1, 3, 1, 1, 2, 3, 0, 0, 6, 3, - 4, 1, 1, 1, 1, 1, 0, 1, 2, 3, - 4, 1, 2, 2, 3, 3, 3, 3, 4, 1, - 1, 1, 1, 1, 1, 1, 4, 4, 4, 6, - 3, 1, 2, 0, 0, 5, 2, 0, 1, 1, - 2, 3, 1, 3, 0, 2, 1, 1, 1, 1, - 2, 2, 5, 7, 7, 5, 7, 9, 0, 0, - 10, 1, 1, 1, 1, 3, 4, 2, 2, 3, - 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, - 1, 3, 1, 1, 1, 6, 0, 0, 5, 1, - 1, 1, 1, 1, 1, 1, 1, 4, 3, 4, - 3, 3, 2, 2, 6, 1, 3, 1, 2, 2, - 2, 2, 4, 1, 1, 1, 1, 1, 6, 1, - 2, 6, 2, 4, 2, 1, 1, 2, 1, 1, - 1, 1, 1, 1, 1, 4, 1, 3, 3, 3, - 1, 3, 3, 1, 3, 3, 1, 3, 3, 3, - 3, 1, 3, 3, 1, 3, 1, 3, 1, 3, - 1, 3, 1, 3, 1, 5, 4, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 0, 1, 1, 3, 1, 0, 1, 1, 2, 6, - 1, 1, 0, 1, 2, 4, 0, 2, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 1, 1, 1, 1, 2, 4, 0, 1, 5, - 6, 6, 7, 5, 3, 1, 0, 1, 1, 3, - 4, 7, 0, 1, 1, 3, 9, 1, 3, 1, - 1, 1 + 1, 1, 1, 1, 1, 1, 1, 2, 4, 0, + 1, 5, 6, 6, 7, 5, 3, 1, 0, 1, + 1, 3, 4, 7, 0, 1, 1, 3, 9, 1, + 3, 1, 1, 1 }; } public static class yydefact_wrapper { public static final int[] yydefact = { - 3, 0, 2, 1, 149, 158, 154, 505, 156, 505, - 150, 146, 152, 147, 505, 92, 157, 153, 160, 163, - 151, 95, 148, 312, 121, 0, 0, 9, 161, 166, - 98, 609, 610, 611, 510, 511, 145, 167, 93, 94, - 0, 101, 102, 103, 99, 100, 164, 165, 134, 135, - 136, 96, 97, 155, 4, 8, 5, 10, 12, 14, - 6, 50, 58, 56, 0, 0, 0, 0, 83, 87, - 88, 89, 91, 70, 75, 71, 76, 72, 77, 74, - 79, 128, 0, 73, 78, 141, 80, 108, 159, 162, - 115, 168, 169, 18, 294, 295, 297, 302, 300, 301, - 296, 310, 28, 313, 90, 0, 7, 0, 0, 0, - 506, 507, 0, 0, 0, 0, 0, 0, 298, 314, - 11, 51, 0, 0, 505, 0, 505, 0, 276, 0, - 0, 587, 271, 273, 275, 278, 279, 274, 284, 272, - 29, 587, 272, 30, 119, 82, 85, 125, 138, 86, - 105, 113, 60, 31, 122, 84, 129, 142, 81, 109, - 116, 62, 32, 106, 107, 110, 104, 111, 0, 114, - 0, 117, 112, 120, 123, 118, 126, 127, 130, 131, - 124, 0, 139, 140, 143, 144, 137, 306, 0, 305, - 309, 0, 585, 0, 173, 174, 180, 508, 201, 202, - 0, 198, 178, 179, 180, 304, 311, 319, 299, 315, - 353, 13, 0, 369, 0, 0, 0, 0, 0, 0, - 59, 0, 57, 306, 325, 277, 324, 292, 0, 0, - 0, 0, 0, 0, 280, 287, 588, 505, 505, 587, - 587, 53, 55, 0, 404, 395, 390, 391, 394, 392, - 393, 0, 0, 0, 406, 448, 449, 450, 451, 452, - 453, 446, 445, 0, 0, 0, 0, 244, 246, 75, - 76, 77, 79, 78, 0, 399, 397, 400, 409, 398, - 403, 402, 427, 410, 411, 412, 413, 414, 415, 416, - 454, 437, 436, 435, 434, 0, 433, 0, 456, 460, - 463, 466, 471, 474, 476, 478, 480, 482, 484, 487, - 502, 0, 326, 0, 328, 454, 504, 0, 0, 512, - 0, 180, 180, 0, 199, 200, 207, 209, 0, 205, - 180, 180, 0, 303, 320, 357, 0, 0, 272, 296, - 0, 0, 60, 62, 357, 370, 64, 68, 0, 282, - 289, 0, 0, 0, 281, 288, 248, 248, 505, 505, - 406, 431, 406, 428, 429, 447, 0, 0, 0, 0, - 0, 0, 442, 306, 331, 245, 323, 321, 322, 247, - 132, 396, 0, 422, 423, 0, 0, 0, 490, 491, - 492, 493, 494, 495, 496, 497, 498, 499, 489, 0, - 406, 444, 430, 0, 0, 0, 0, 0, 0, 0, + 3, 0, 2, 1, 151, 160, 156, 507, 158, 507, + 152, 148, 154, 149, 507, 94, 159, 155, 162, 165, + 153, 97, 150, 314, 123, 0, 0, 9, 163, 168, + 100, 611, 612, 613, 512, 513, 147, 169, 95, 96, + 0, 103, 104, 105, 101, 102, 166, 167, 136, 137, + 138, 98, 99, 157, 4, 8, 5, 10, 12, 14, + 6, 50, 58, 56, 0, 0, 0, 0, 85, 89, + 90, 91, 93, 72, 77, 73, 78, 74, 79, 76, + 81, 130, 0, 75, 80, 143, 82, 110, 161, 164, + 117, 170, 171, 18, 296, 297, 299, 304, 302, 303, + 298, 312, 28, 315, 92, 0, 7, 0, 0, 0, + 508, 509, 0, 0, 0, 0, 0, 0, 300, 316, + 11, 51, 0, 0, 507, 0, 507, 0, 278, 0, + 0, 66, 273, 275, 277, 280, 281, 276, 286, 274, + 29, 68, 274, 30, 121, 84, 87, 127, 140, 88, + 107, 115, 60, 31, 124, 86, 131, 144, 83, 111, + 118, 62, 32, 108, 109, 112, 106, 113, 0, 116, + 0, 119, 114, 122, 125, 120, 128, 129, 132, 133, + 126, 0, 141, 142, 145, 146, 139, 308, 0, 307, + 311, 0, 587, 0, 175, 176, 182, 510, 203, 204, + 0, 200, 180, 181, 182, 306, 313, 321, 301, 317, + 355, 13, 0, 371, 0, 0, 0, 0, 0, 0, + 59, 0, 57, 308, 327, 279, 326, 294, 0, 0, + 0, 0, 0, 0, 282, 289, 589, 589, 589, 589, + 53, 55, 0, 406, 397, 392, 393, 396, 394, 395, + 0, 0, 0, 408, 450, 451, 452, 453, 454, 455, + 448, 447, 0, 0, 0, 0, 246, 248, 77, 78, + 79, 81, 80, 0, 401, 399, 402, 411, 400, 405, + 404, 429, 412, 413, 414, 415, 416, 417, 418, 456, + 439, 438, 437, 436, 0, 435, 0, 458, 462, 465, + 468, 473, 476, 478, 480, 482, 484, 486, 489, 504, + 0, 328, 0, 330, 456, 506, 0, 0, 514, 0, + 182, 182, 0, 201, 202, 209, 211, 0, 207, 182, + 182, 0, 305, 322, 359, 0, 0, 274, 298, 0, + 0, 60, 62, 359, 372, 64, 70, 0, 284, 291, + 0, 0, 0, 283, 290, 590, 507, 507, 507, 507, + 408, 433, 408, 430, 431, 449, 0, 0, 0, 0, + 0, 0, 444, 308, 333, 247, 325, 323, 324, 249, + 134, 398, 0, 424, 425, 0, 0, 0, 492, 493, + 494, 495, 496, 497, 498, 499, 500, 501, 491, 0, + 408, 446, 432, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 133, 0, 219, 223, 221, 225, 71, 76, - 327, 213, 215, 218, 217, 307, 241, 317, 239, 329, - 0, 520, 521, 522, 523, 524, 525, 526, 527, 528, - 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, - 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, - 549, 550, 551, 519, 552, 553, 554, 555, 556, 557, - 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, - 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, - 578, 579, 580, 581, 582, 583, 584, 0, 513, 516, - 586, 0, 0, 170, 186, 0, 0, 181, 0, 0, - 211, 211, 0, 203, 0, 0, 175, 0, 354, 364, - 358, 359, 0, 0, 0, 0, 0, 15, 364, 587, - 587, 293, 283, 291, 290, 285, 0, 0, 66, 67, - 248, 248, 0, 0, 0, 407, 401, 0, 0, 0, - 0, 0, 0, 332, 333, 242, 243, 421, 418, 0, - 425, 0, 420, 488, 0, 457, 458, 459, 461, 462, - 464, 465, 469, 470, 467, 468, 472, 473, 475, 477, - 479, 481, 483, 0, 0, 503, 306, 331, 229, 227, - 220, 235, 233, 224, 306, 331, 231, 222, 237, 226, - 0, 0, 0, 0, 330, 0, 0, 0, 514, 171, - 172, 0, 185, 505, 192, 195, 184, 505, 194, 195, - 0, 183, 0, 182, 0, 208, 210, 204, 206, 176, - 177, 362, 0, 0, 356, 360, 0, 0, 17, 505, - 505, 286, 255, 249, 252, 61, 63, 432, 0, 255, - 455, 0, 0, 0, 0, 337, 335, 336, 334, 419, - 0, 417, 443, 486, 0, 332, 505, 505, 505, 505, - 332, 505, 505, 214, 216, 308, 240, 318, 509, 516, - 517, 0, 197, 189, 191, 196, 187, 193, 505, 505, - 212, 0, 361, 355, 0, 0, 500, 0, 0, 0, - 500, 0, 0, 404, 121, 0, 368, 33, 35, 366, - 0, 0, 0, 0, 367, 339, 340, 365, 341, 342, - 343, 344, 381, 382, 383, 384, 0, 501, 345, 0, - 16, 248, 248, 0, 0, 253, 408, 439, 0, 0, - 0, 338, 426, 485, 230, 228, 236, 234, 232, 238, - 515, 518, 188, 190, 363, 388, 0, 0, 387, 378, - 0, 0, 0, 0, 0, 0, 505, 505, 0, 0, - 272, 46, 272, 47, 60, 48, 62, 49, 371, 0, - 0, 0, 65, 69, 404, 250, 0, 0, 257, 0, - 0, 0, 262, 260, 261, 424, 254, 0, 440, 441, - 438, 405, 0, 389, 0, 0, 0, 385, 0, 0, - 0, 500, 500, 34, 0, 0, 595, 0, 0, 270, - 0, 266, 267, 256, 251, 258, 259, 263, 0, 0, - 500, 500, 386, 0, 500, 500, 346, 347, 357, 0, - 0, 596, 0, 0, 0, 268, 0, 264, 0, 0, - 0, 0, 372, 375, 364, 596, 0, 0, 0, 594, - 597, 598, 589, 0, 0, 0, 0, 0, 351, 0, - 500, 500, 0, 500, 36, 0, 590, 0, 0, 596, - 0, 591, 269, 265, 0, 357, 374, 352, 0, 0, - 376, 373, 0, 596, 0, 0, 593, 599, 0, 357, - 350, 500, 500, 37, 0, 0, 600, 0, 0, 348, - 379, 377, 602, 0, 604, 592, 357, 380, 0, 603, - 0, 0, 349, 0, 601, 605, 607, 606, 0, 608 + 0, 0, 135, 0, 221, 225, 223, 227, 73, 78, + 329, 215, 217, 220, 219, 309, 243, 319, 241, 331, + 0, 522, 523, 524, 525, 526, 527, 528, 529, 530, + 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, + 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, + 551, 552, 553, 521, 554, 555, 556, 557, 558, 559, + 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, + 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, + 580, 581, 582, 583, 584, 585, 586, 0, 515, 518, + 588, 0, 0, 172, 188, 0, 0, 183, 0, 0, + 213, 213, 0, 205, 0, 0, 177, 0, 356, 366, + 360, 361, 0, 0, 0, 0, 0, 15, 366, 589, + 589, 295, 285, 293, 292, 287, 0, 250, 250, 250, + 250, 0, 0, 0, 409, 403, 0, 0, 0, 0, + 0, 0, 334, 335, 244, 245, 423, 420, 0, 427, + 0, 422, 490, 0, 459, 460, 461, 463, 464, 466, + 467, 471, 472, 469, 470, 474, 475, 477, 479, 481, + 483, 485, 0, 0, 505, 308, 333, 231, 229, 222, + 237, 235, 226, 308, 333, 233, 224, 239, 228, 0, + 0, 0, 0, 332, 0, 0, 0, 516, 173, 174, + 0, 187, 507, 194, 197, 186, 507, 196, 197, 0, + 185, 0, 184, 0, 210, 212, 206, 208, 178, 179, + 364, 0, 0, 358, 362, 0, 0, 17, 507, 507, + 288, 0, 67, 69, 61, 63, 434, 0, 257, 457, + 0, 0, 0, 0, 339, 337, 338, 336, 421, 0, + 419, 445, 488, 0, 334, 507, 507, 507, 507, 334, + 507, 507, 216, 218, 310, 242, 320, 511, 518, 519, + 0, 199, 191, 193, 198, 189, 195, 507, 507, 214, + 0, 363, 357, 0, 0, 502, 0, 0, 0, 502, + 0, 0, 406, 123, 0, 370, 33, 35, 368, 0, + 0, 0, 0, 369, 341, 342, 367, 343, 344, 345, + 346, 383, 384, 385, 386, 0, 503, 347, 0, 16, + 250, 250, 257, 251, 254, 0, 255, 410, 441, 0, + 0, 0, 340, 428, 487, 232, 230, 238, 236, 234, + 240, 517, 520, 190, 192, 365, 390, 0, 0, 389, + 380, 0, 0, 0, 0, 0, 0, 507, 507, 0, + 0, 274, 46, 274, 47, 60, 48, 62, 49, 373, + 0, 0, 0, 65, 71, 0, 426, 406, 0, 0, + 259, 256, 0, 0, 264, 262, 263, 0, 442, 443, + 440, 407, 0, 391, 0, 0, 0, 387, 0, 0, + 0, 502, 502, 34, 0, 0, 597, 0, 0, 252, + 0, 272, 0, 268, 269, 258, 260, 261, 265, 0, + 0, 502, 502, 388, 0, 502, 502, 348, 349, 359, + 0, 0, 598, 0, 0, 253, 0, 270, 0, 266, + 0, 0, 0, 0, 374, 377, 366, 598, 0, 0, + 0, 596, 599, 600, 591, 0, 0, 0, 0, 0, + 353, 0, 502, 502, 0, 502, 36, 0, 592, 0, + 0, 598, 0, 593, 271, 267, 0, 359, 376, 354, + 0, 0, 378, 375, 0, 598, 0, 0, 595, 601, + 0, 359, 352, 502, 502, 37, 0, 0, 602, 0, + 0, 350, 381, 379, 604, 0, 606, 594, 359, 382, + 0, 605, 0, 0, 351, 0, 603, 607, 609, 608, + 0, 610 }; } public static class yydefgoto_wrapper { public static final int[] yydefgoto = { - -1, 1, 2, 54, 55, 56, 57, 122, 123, 647, - 537, 58, 59, 716, 778, 779, 902, 717, 718, 719, - 61, 168, 170, 127, 125, 62, 239, 240, 539, 63, - 540, 214, 267, 216, 268, 145, 68, 69, 70, 71, - 72, 73, 269, 75, 270, 77, 271, 79, 272, 81, - 82, 83, 273, 85, 86, 87, 88, 89, 90, 91, - 323, 517, 518, 519, 623, 627, 694, 624, 92, 201, - 328, 329, 520, 521, 635, 430, 431, 432, 433, 434, - 677, 676, 681, 679, 678, 682, 437, 438, 567, 274, - 548, 798, 744, 743, 799, 800, 801, 802, 803, 804, - 131, 132, 133, 134, 135, 136, 137, 138, 231, 118, - 94, 95, 96, 97, 98, 224, 312, 611, 99, 339, - 101, 116, 103, 313, 613, 564, 376, 435, 226, 377, - 378, 724, 725, 878, 879, 726, 335, 643, 528, 529, - 530, 531, 642, 644, 727, 218, 728, 729, 730, 814, - 927, 731, 732, 733, 734, 735, 275, 276, 277, 278, - 279, 280, 281, 367, 661, 282, 283, 284, 285, 286, - 287, 288, 289, 569, 290, 291, 748, 292, 293, 294, - 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, - 305, 306, 307, 308, 309, 310, 399, 736, 737, 317, - 109, 110, 104, 105, 507, 508, 618, 509, 106, 236, - 237, 738, 827, 869, 870, 871, 928, 925, 850, 937, - 739 + -1, 1, 2, 54, 55, 56, 57, 122, 123, 646, + 537, 58, 59, 715, 779, 780, 904, 716, 717, 718, + 61, 168, 170, 127, 125, 62, 238, 239, 539, 63, + 236, 237, 540, 214, 266, 216, 267, 145, 68, 69, + 70, 71, 72, 73, 268, 75, 269, 77, 270, 79, + 271, 81, 82, 83, 272, 85, 86, 87, 88, 89, + 90, 91, 322, 517, 518, 519, 622, 626, 693, 623, + 92, 201, 327, 328, 520, 521, 634, 430, 431, 432, + 433, 434, 676, 675, 680, 678, 677, 681, 437, 438, + 566, 273, 652, 800, 745, 746, 801, 802, 803, 804, + 805, 806, 131, 132, 133, 134, 135, 136, 137, 138, + 231, 118, 94, 95, 96, 97, 98, 224, 311, 610, + 99, 338, 101, 116, 103, 312, 612, 563, 376, 435, + 226, 377, 378, 723, 724, 880, 881, 725, 334, 642, + 528, 529, 530, 531, 641, 643, 726, 218, 727, 728, + 729, 814, 929, 730, 731, 732, 733, 734, 274, 275, + 276, 277, 278, 279, 280, 367, 660, 281, 282, 283, + 284, 285, 286, 287, 288, 568, 289, 290, 749, 291, + 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, + 302, 303, 304, 305, 306, 307, 308, 309, 399, 735, + 736, 316, 109, 110, 104, 105, 507, 508, 617, 509, + 106, 355, 356, 737, 827, 871, 872, 873, 930, 927, + 851, 939, 738 }; } public static class yypact_wrapper { public static final int[] yypact = { - -807, 95, 1594, -807, -807, -807, -807, 118, -807, 118, - -807, -807, -807, -807, 118, -807, -807, -807, -807, -807, - -807, -807, -807, -807, -807, 66, 4104, -807, -807, -807, - -807, -807, -807, -807, -807, -807, -807, -807, -807, -807, - 1966, -807, -807, -807, -807, -807, -807, -807, -807, -807, - -807, -807, -807, -807, -807, -807, -807, -807, -807, -807, - -807, -807, 45, 59, 51, 51, 2090, 2214, -807, -807, - -807, -807, -807, 1103, 1103, 1652, 1784, 2024, 2024, 1137, - 1137, -807, 2, 1908, 1908, -807, -807, -807, -807, -807, - -807, -807, -807, -807, -807, -807, -807, -807, -807, -807, - 135, -807, 27, -807, -807, 122, -807, 100, 138, 30, - 118, -807, 212, 320, 196, 304, 220, 4104, -807, -807, - -807, -807, 163, 2662, 118, 215, 118, 225, 174, 404, - 3963, 385, -807, -807, -807, -807, -807, -807, -807, 231, - 252, 385, 272, 278, -807, -807, -807, -807, -807, -807, - -807, -807, 281, 295, -807, -807, -807, -807, -807, -807, - -807, 312, 317, -807, -807, -807, -807, -807, 245, -807, - 322, -807, -807, -807, -807, -807, -807, -807, -807, -807, - -807, 3075, -807, -807, -807, -807, -807, 82, 4524, -807, - 345, 355, -807, 390, 359, 373, -807, -807, 379, 379, - 241, -807, 391, 408, -807, 174, -807, 174, -807, -807, - -807, -807, 2829, -807, 405, 405, 2338, 2462, 2503, 108, - -807, 405, -807, -807, -807, -807, 345, -807, 404, 392, - 422, 174, 404, 3995, -807, -807, -807, 118, 118, 385, - 385, -807, -807, 4846, -807, -807, -807, -807, -807, -807, - -807, 4924, 4924, 484, 3075, -807, -807, -807, -807, -807, - -807, -807, -807, 406, 456, 463, 4946, 292, 3321, 975, - 2272, 2272, 2051, 1537, 466, -807, 498, -807, -807, -807, - -807, -807, 461, -807, -807, -807, -807, -807, -807, -807, - 891, -807, -807, -807, -807, 5024, -807, 4946, -807, 214, - 268, 360, 50, 436, 474, 496, 465, 509, 43, -807, - -807, 434, 2829, 548, -807, -807, -807, 517, 4946, 2953, - 519, -807, -807, 3370, -807, -807, -807, -807, 89, -807, - -807, -807, 3493, -807, -807, 477, 437, 4048, -807, 174, - 108, 4136, -807, -807, 477, -807, -807, -807, 336, 174, - 174, 528, 344, 404, -807, -807, 511, 511, 118, 118, - 3075, -807, 3075, -807, -807, -807, 530, 163, 449, 3854, - 3854, 4946, -807, 292, 4192, -807, -807, -807, -807, -807, - -807, -807, 321, -807, -807, 4546, 4946, 321, -807, -807, - -807, -807, -807, -807, -807, -807, -807, -807, -807, 4946, - 3075, -807, -807, 4946, 4946, 4946, 4946, 4946, 4946, 4946, - 4946, 4946, 4946, 4946, 4946, 4946, 4946, 4946, 4946, 4946, - 4946, 4624, -807, 4946, 420, 420, 1718, 1842, 2024, 2024, - -807, 540, -807, -807, -807, -807, -807, 554, -807, -807, - 542, -807, -807, -807, -807, -807, -807, -807, -807, -807, - -807, -807, -807, -807, -807, -807, -807, -807, -807, -807, - -807, -807, -807, -807, -807, -807, -807, -807, -807, -807, - -807, -807, -807, -807, -807, -807, -807, -807, -807, -807, - -807, -807, -807, -807, -807, -807, -807, -807, -807, -807, - -807, -807, -807, -807, -807, -807, -807, -807, -807, -807, - -807, -807, -807, -807, -807, -807, -807, 566, 567, 568, - -807, 3533, 3656, -807, -807, 388, 3198, -807, 77, 148, - 545, 545, 157, -807, 3696, 3819, -807, 603, -807, -807, - 477, -807, 437, 464, 437, 4080, 4136, -807, -807, 385, - 385, -807, -807, -807, -807, -807, 472, 4646, -807, -807, - 511, 511, 573, 574, 4724, -807, -807, 585, 586, 592, - 575, 599, 605, 4192, -807, -807, -807, -807, -807, 451, - -807, 270, -807, -807, 606, -807, -807, -807, 214, 214, - 268, 268, 360, 360, 360, 360, 50, 50, 436, 474, - 496, 465, 509, 4946, -18, -807, 76, 3939, -807, -807, - -807, -807, -807, -807, 455, 1207, -807, -807, -807, -807, - 2786, 607, 548, 610, -807, 612, 2953, 4746, -807, -807, - -807, 4946, -807, 118, -807, 591, -807, 118, -807, 591, - 126, -807, 285, -807, 4946, -807, -807, -807, -807, -807, - -807, -807, 192, 613, 1333, -807, 437, 615, 1333, 118, - 118, -807, -807, -807, -807, -807, -807, 617, 617, -807, - -807, 622, 657, 3854, 3854, -807, 174, -807, -807, -807, - 4946, -807, 617, -807, 4946, 3939, 118, 118, 118, 118, - 1207, 118, 118, -807, -807, -807, -807, -807, -807, 568, - -807, 473, -807, -807, -807, -807, -807, -807, 118, 118, - -807, 658, -807, -807, 608, 629, 4946, 619, 630, 39, - 4290, 631, 644, 624, 633, 1470, -807, -807, -807, -807, - 51, 51, 2090, 2214, -807, -807, -807, -807, -807, -807, - -807, -807, -807, -807, -807, -807, 621, 659, -807, 2159, - -807, 511, 511, 4368, 653, 4446, -807, 10, 668, 675, - 677, -807, -807, -807, -807, -807, -807, -807, -807, -807, - -807, -807, -807, -807, -807, -807, 4946, 636, -807, 4824, - 4946, 655, 633, 715, 4946, 4946, 118, 118, 163, 2662, - 680, 681, 684, 689, 694, 696, 697, 701, -807, 707, - 390, 708, -807, -807, 686, -807, 4946, 324, -807, 167, - 4646, 116, -807, -807, -807, -807, 709, 4946, 10, -807, - -807, -807, 476, -807, 2829, 700, 210, -807, 710, 487, - 499, 4290, 4290, -807, 2627, 390, 695, 724, 390, -807, - 104, -807, -807, -807, -807, -807, -807, -807, 132, 726, - 4946, 4946, -807, 4946, 4290, 4290, -807, -807, 477, 712, - 731, 15, 713, 732, 4946, 176, 4946, -807, 67, 714, - 719, 506, 793, -807, -807, 15, 721, 2953, 739, 723, - 749, -807, -807, 730, 756, 759, 4946, 747, -807, 58, - 4946, 4946, 751, 4290, 1333, 753, -807, 770, 4946, 15, - 15, -807, 264, -807, 86, 477, -807, -807, 779, 785, - -807, -807, 781, 15, 390, 510, 765, -807, 4946, 477, - -807, 4290, 4290, -807, 767, 791, -807, 390, 769, -807, - -807, -807, 390, 4946, -807, 798, 477, -807, 772, 798, - 512, 390, -807, 548, -807, -807, -807, 802, 548, -807 + -826, 60, 1073, -826, -826, -826, -826, -15, -826, -15, + -826, -826, -826, -826, -15, -826, -826, -826, -826, -826, + -826, -826, -826, -826, -826, 92, 4066, -826, -826, -826, + -826, -826, -826, -826, -826, -826, -826, -826, -826, -826, + 1896, -826, -826, -826, -826, -826, -826, -826, -826, -826, + -826, -826, -826, -826, -826, -826, -826, -826, -826, -826, + -826, -826, 108, 122, 314, 314, 2020, 2144, -826, -826, + -826, -826, -826, 1398, 1398, 2091, 2210, 3073, 3073, 1967, + 1967, -826, 136, 925, 925, -826, -826, -826, -826, -826, + -826, -826, -826, -826, -826, -826, -826, -826, -826, -826, + 189, -826, 4, -826, -826, 150, -826, 188, 155, 139, + -15, -826, 165, 266, 167, 127, 239, 4066, -826, -826, + -826, -826, 283, 2592, -15, 280, -15, 329, 235, 382, + 3893, -826, -826, -826, -826, -826, -826, -826, -826, 359, + 362, -826, 376, 395, -826, -826, -826, -826, -826, -826, + -826, -826, 401, 403, -826, -826, -826, -826, -826, -826, + -826, 432, 434, -826, -826, -826, -826, -826, 426, -826, + 448, -826, -826, -826, -826, -826, -826, -826, -826, -826, + -826, 3005, -826, -826, -826, -826, -826, 465, 4481, -826, + 468, 501, -826, 532, 526, 531, -826, -826, 536, 536, + 279, -826, 544, 549, -826, 235, -826, 235, -826, -826, + -826, -826, 2759, -826, 399, 399, 2268, 2392, 2433, 207, + -826, 399, -826, -826, -826, -826, 468, -826, 382, 508, + 510, 235, 382, 3925, -826, -826, 436, 436, 436, 436, + -826, -826, 4859, -826, -826, -826, -826, -826, -826, -826, + 4937, 4937, 585, 3005, -826, -826, -826, -826, -826, -826, + -826, -826, 559, 561, 562, 4959, 76, 3251, 1831, 2825, + 2825, 1233, 1353, 565, -826, 596, -826, -826, -826, -826, + -826, 331, -826, -826, -826, -826, -826, -826, -826, 523, + -826, -826, -826, -826, 5037, -826, 4959, -826, 367, 311, + 346, 214, 370, 558, 551, 552, 588, -10, -826, -826, + 393, 2759, 616, -826, -826, -826, 579, 4959, 2883, 592, + -826, -826, 3300, -826, -826, -826, -826, 135, -826, -826, + -826, 3423, -826, -826, 550, 451, 3978, -826, 235, 207, + 4119, -826, -826, 550, -826, -826, -826, 227, 235, 235, + 598, 379, 382, -826, -826, -826, -15, -15, -15, -15, + 3005, -826, 3005, -826, -826, -826, 602, 283, 410, 3784, + 3784, 4959, -826, 76, 4136, -826, -826, -826, -826, -826, + -826, -826, 345, -826, -826, 4503, 4959, 345, -826, -826, + -826, -826, -826, -826, -826, -826, -826, -826, -826, 4959, + 3005, -826, -826, 4959, 4959, 4959, 4959, 4959, 4959, 4959, + 4959, 4959, 4959, 4959, 4959, 4959, 4959, 4959, 4959, 4959, + 4959, 4581, -826, 4959, 343, 343, 1272, 1772, 3073, 3073, + -826, 604, -826, -826, -826, -826, -826, 605, -826, -826, + 600, -826, -826, -826, -826, -826, -826, -826, -826, -826, + -826, -826, -826, -826, -826, -826, -826, -826, -826, -826, + -826, -826, -826, -826, -826, -826, -826, -826, -826, -826, + -826, -826, -826, -826, -826, -826, -826, -826, -826, -826, + -826, -826, -826, -826, -826, -826, -826, -826, -826, -826, + -826, -826, -826, -826, -826, -826, -826, -826, -826, -826, + -826, -826, -826, -826, -826, -826, -826, 603, 607, 610, + -826, 3463, 3586, -826, -826, 74, 3128, -826, -54, 19, + 589, 589, 43, -826, 3626, 3749, -826, 647, -826, -826, + 550, -826, 451, 415, 451, 4010, 4119, -826, -826, 436, + 436, -826, -826, -826, -826, -826, 423, 595, 595, 595, + 595, 627, 628, 4603, -826, -826, 631, 632, 633, 629, + 638, 639, 4136, -826, -826, -826, -826, -826, 430, -826, + 246, -826, -826, 640, -826, -826, -826, 367, 367, 311, + 311, 346, 346, 346, 346, 214, 214, 370, 558, 551, + 552, 588, 4959, 89, -826, 194, 3869, -826, -826, -826, + -826, -826, -826, 305, 4034, -826, -826, -826, -826, 2716, + 641, 616, 643, -826, 644, 2883, 4681, -826, -826, -826, + 4959, -826, -15, -826, 623, -826, -15, -826, 623, 169, + -826, 349, -826, 4959, -826, -826, -826, -826, -826, -826, + -826, 28, 649, 1524, -826, 451, 652, 1524, -15, -15, + -826, 4759, -826, -826, -826, -826, 654, 654, -826, -826, + 659, 707, 3784, 3784, -826, 235, -826, -826, -826, 4959, + -826, 654, -826, 4959, 3869, -15, -15, -15, -15, 4034, + -15, -15, -826, -826, -826, -826, -826, -826, 610, -826, + 441, -826, -826, -826, -826, -826, -826, -15, -15, -826, + 715, -826, -826, 664, 690, 4959, 667, 692, 37, 4247, + 693, 694, 673, 674, 1648, -826, -826, -826, -826, 314, + 314, 2020, 2144, -826, -826, -826, -826, -826, -826, -826, + -826, -826, -826, -826, -826, 676, 696, -826, 1717, -826, + 595, 595, -826, -826, -826, 695, 4403, -826, -40, 701, + 703, 706, -826, -826, -826, -826, -826, -826, -826, -826, + -826, -826, -826, -826, -826, -826, -826, 4959, 685, -826, + 4837, 4959, 686, 674, 742, 4959, 4959, -15, -15, 283, + 2592, 712, 713, 716, 717, 718, 721, 729, 733, -826, + 720, 532, 739, -826, -826, 4325, -826, 719, 4959, 381, + -826, 743, 4759, 131, -826, -826, -826, 4959, -40, -826, + -826, -826, 454, -826, 2759, 722, 31, -826, 751, 463, + 478, 4247, 4247, -826, 2557, 532, 732, 755, 532, -826, + 193, -826, 45, -826, -826, -826, -826, -826, -826, 71, + 760, 4959, 4959, -826, 4959, 4247, 4247, -826, -826, 550, + 746, 769, -3, 750, 774, -826, 4959, 270, 4959, -826, + 10, 754, 756, 504, 839, -826, -826, -3, 761, 2883, + 784, 763, 785, -826, -826, 764, 781, 782, 4959, 768, + -826, 48, 4959, 4959, 770, 4247, 1524, 772, -826, 788, + 4959, -3, -3, -826, 411, -826, 8, 550, -826, -826, + 791, 796, -826, -826, 794, -3, 532, 506, 778, -826, + 4959, 550, -826, 4247, 4247, -826, 779, 813, -826, 532, + 800, -826, -826, -826, 532, 4959, -826, 812, 550, -826, + 801, 812, 522, 532, -826, 616, -826, -826, -826, 823, + 616, -826 }; } public static class yypgoto_wrapper { public static final int[] yypgoto = { - -807, -807, -807, -807, -807, -807, 818, -807, -807, -807, - -807, -807, -807, -807, -807, -807, -807, -807, -807, 9, - -33, -807, -807, -807, -807, -807, -807, -807, -807, -807, - -807, 6, 0, 7, -2, 178, 358, -807, -807, -807, - -807, -807, -1, -252, 1, -807, 12, -807, 13, -23, - -807, -807, 14, 25, -48, 72, -807, -807, 47, -807, - -167, -807, -807, -807, 238, 246, 242, -454, -807, 401, - -807, 356, -807, -807, 365, -807, -807, 269, -807, -807, - -807, -807, -807, -807, -807, -807, -807, -589, -381, -95, - -282, -513, -807, 221, 136, -807, 140, -380, -807, -807, - -20, -807, -807, -108, 24, -807, 52, -807, -149, 331, - -807, 577, -807, -807, -807, -42, -807, -807, -807, 327, - -807, 40, -807, -807, -807, -118, 637, -807, -39, -361, - -302, 28, -807, 16, -807, -109, -807, -807, -806, -334, - -807, 362, -807, -533, -807, 109, -807, -807, -807, -807, - -807, -807, -807, -807, -807, -807, -807, -807, -83, -807, - -807, -807, -807, -807, -807, -807, -807, -807, -807, -807, - -807, -807, -807, 282, 611, -807, -807, -807, -807, -807, - -807, -807, -807, -207, 198, 205, 55, 204, 485, 483, - 471, 486, 482, -807, -171, -163, -807, -466, -177, 68, - 54, -807, 41, -807, -807, -807, 218, -595, -807, 901, - -121, -807, 81, -801, -807, 20, -807, -10, -807, -807, - 31 + -826, -826, -826, -826, -826, -826, 851, -826, -826, -826, + -826, -826, -826, -826, -826, -826, -826, -826, -826, 9, + -30, -826, -826, -826, -826, -826, -826, -826, -826, -826, + -826, -826, -826, 6, 0, 7, -2, 268, 797, -826, + -826, -826, -826, -826, -1, -294, 1, -826, 12, -826, + 13, 79, -826, -826, 14, 185, 27, 87, -826, -826, + -44, -826, -134, -826, -826, -826, 263, 273, 267, -267, + -826, 392, -826, 375, -826, -826, 383, -826, -826, 294, + -826, -826, -826, -826, -826, -826, -826, -826, -826, -605, + -380, -172, -466, -623, -826, 163, 113, -826, 161, -637, + -826, -826, 50, -826, -826, -57, 438, -826, -99, -826, + -161, 731, -826, 614, -826, -826, -826, -71, -826, -826, + -826, 402, -826, 25, -826, -826, -826, -136, -67, -826, + -51, -348, -347, -415, -826, 30, -826, -117, -826, -826, + -785, -331, -826, 385, -826, -518, -826, 132, -826, -826, + -826, -826, -826, -826, -826, -826, -826, -826, -826, -826, + -23, -826, -826, -826, -826, -826, -826, -826, -826, -826, + -826, -826, -826, -826, -826, 297, 144, -826, -826, -826, + -826, -826, -826, -826, -826, -220, 186, 191, -47, 190, + 500, 502, 499, 503, 498, -826, -170, -177, -826, -556, + -84, -281, 54, -826, 41, -826, -826, -826, 232, -596, + -826, 919, -181, -826, 95, -825, -826, 32, -826, 3, + -826, -826, 2 }; } public static class yytable_wrapper { public static final int[] yytable = { - 67, 74, 65, 76, 311, 648, 572, 121, 64, 66, - 538, 60, 561, 211, 78, 80, 84, 316, 149, 158, - 238, 689, 234, 686, 117, 149, 166, 149, 172, 149, - 175, 149, 180, 108, 653, 149, 186, 332, 67, 74, - 65, 76, 102, 147, 156, 141, 64, 66, 111, 423, - 111, 245, 78, 80, 84, 111, 177, 179, 189, 372, - 428, 190, 628, 112, 885, 194, 119, 181, 113, 876, - 674, 562, 195, 189, 565, 549, 190, 368, 876, 348, - 102, 566, 807, 352, 797, 877, 23, 867, 906, 910, - 402, 148, 157, 128, 877, 3, 420, -23, 410, 411, - 196, 23, 914, 919, 140, 143, 153, 162, 183, 185, - 320, 23, 124, 151, 160, 770, 129, -316, 358, 359, - 932, 217, 74, 215, 76, 354, 126, 130, 233, 896, - 421, 25, 213, 412, 413, 78, 80, 84, 150, 159, - 908, 596, 26, 23, 630, 164, 167, 316, 188, 375, - 379, 197, 597, 229, 511, 512, 522, 209, 854, 366, - 523, 23, 108, 524, 525, 111, 631, 111, 149, 158, - 119, 695, 108, 340, 909, 695, 628, 855, 219, 121, - 221, 230, 235, 368, 341, 368, 856, 191, 807, 192, - 797, 340, 326, 147, 156, 141, 575, 576, 577, 327, - 187, 347, 341, 193, 546, 857, 836, 188, 559, 571, - 217, 74, 215, 76, 621, 632, 217, 74, 215, 76, - 34, 35, 570, 368, 78, 80, 84, 345, 637, 234, - 78, 80, 84, 210, 833, 561, 573, 633, 834, 223, - 767, 148, 157, 561, 594, 156, 188, 198, -264, 179, - -264, 163, 229, 169, 199, 173, 229, 176, 555, 701, - 595, 182, 205, 151, 160, 552, -264, 553, 655, 656, - 108, 108, 887, 209, 557, 558, 326, 423, 111, 111, - 230, 702, 200, 327, 230, 355, 207, 835, 150, 159, - 403, 356, 357, 157, 562, 404, 405, 189, 185, 842, - 190, -19, 562, 815, 220, 574, 600, 603, 607, 609, - 427, 74, 425, 429, 222, 160, 598, 601, 424, 426, - 23, 516, -24, 515, 78, 80, 84, 128, 771, 100, - 516, 884, 515, 93, 241, 535, -265, 423, -265, 536, - 159, 167, -20, 671, 936, 406, 407, 660, -25, 939, - 336, -21, 115, 100, -265, 202, 565, 373, 428, 831, - 229, 337, 203, 566, 188, -26, 832, 100, 374, 187, - 206, 93, 563, 621, 859, 860, 188, 229, 149, 158, - 149, 172, -22, 348, 654, 352, 440, -27, 230, 235, - 204, 100, 100, 100, 100, 139, 142, 152, 161, 111, - 111, 223, 541, 147, 156, 230, 408, 409, 188, 223, - 545, 242, 550, 551, 898, 899, 188, 318, 649, 650, - 319, 837, 673, 23, 146, 155, 245, 354, 837, 321, - 128, 146, 165, 146, 171, 146, 174, 146, 178, 23, - 23, 146, 184, 322, 100, 668, 227, 128, 208, 200, - 316, 148, 157, 336, 570, 23, 115, 100, 349, 792, - 793, 330, 128, 316, 337, 582, 583, 584, 585, 228, - 336, 369, 23, 151, 160, 155, 621, 622, 331, 227, - 130, 337, 31, 32, 33, 596, 414, 415, 350, 234, - 23, 189, 188, 156, 190, 625, 597, 546, 150, 159, - 422, 423, 532, 753, 382, 383, 384, 752, 372, 516, - 516, 515, 515, 337, 864, 556, 423, 669, 670, 365, - 604, 370, 516, 516, 515, 515, 385, 188, 371, 223, - 206, 605, 380, 386, 381, 387, 188, 223, 651, 761, - 670, 157, 839, 423, 188, 338, 338, 342, 343, 416, - 346, 418, 338, 844, 423, 115, 229, 668, 229, 115, - 100, 419, 668, 160, 208, 845, 423, 354, 749, 750, - 108, 108, 882, 423, 146, 155, 916, 423, 934, 423, - 654, 417, 654, 436, 230, 510, 230, 355, 159, 812, - 439, 155, 527, 816, 544, 675, 554, 819, 820, 324, - 325, 547, 114, 680, 578, 579, 169, 610, 427, 74, - 425, 429, 625, 580, 581, 614, 424, 426, 586, 587, - 229, 612, 78, 80, 84, 316, 155, 165, 171, 174, - 178, 184, 615, 617, 616, 634, 316, 654, 641, 657, - 658, 665, 723, 74, 721, 76, 723, 74, 721, 76, - 720, 722, 662, 663, 720, 722, 78, 80, 84, 664, - 78, 80, 84, 533, 111, 666, 861, 533, 111, 823, - 229, 667, 672, 685, 149, 158, 687, 693, 688, 621, - 115, 696, 121, 316, 703, 316, 740, 659, 746, 692, - 111, 111, 747, 764, 766, 769, 774, 765, 230, 147, - 156, 141, 700, 741, 742, 316, 114, 826, 768, 775, - 788, 905, 776, 217, 74, 215, 76, 111, 111, 111, - 111, 777, 111, 111, 805, 813, 423, 78, 80, 84, - 754, 755, 756, 757, 809, 758, 759, 316, 773, 111, - 111, 810, 849, 811, 817, 826, 930, 148, 157, 818, - -38, -42, 762, 763, -39, 599, 602, 606, 608, -43, - 781, 783, 785, 787, -40, 225, -44, -41, 868, 151, - 160, -45, 825, 828, 829, 843, 833, 217, 74, 215, - 76, 840, 868, 851, 146, 155, 146, 171, 213, 841, - 852, 78, 80, 84, 150, 159, 858, 866, 873, 315, - 865, 883, 872, 880, 888, 114, 868, 868, 881, 114, - 886, 889, 217, 74, 215, 76, 890, 111, 111, 891, - 868, 915, 217, 74, 215, 76, 78, 80, 84, 892, - 821, 822, 893, 345, 924, 895, 78, 80, 84, 924, - 900, 903, 333, 904, 334, 911, 338, 629, 935, 846, - 847, 912, 913, 917, 361, 922, 923, 926, 120, 533, - 933, 533, 363, 364, 830, 931, 208, 208, 351, 938, - 699, 697, 862, 863, 155, 838, 698, 315, 638, 684, - 745, 806, 723, 74, 721, 76, 636, 808, 824, 590, - 720, 722, 645, 155, 155, 897, 78, 80, 84, 691, - 589, 588, 592, 107, 0, 591, 401, 760, 315, 853, - 907, 901, 929, 114, 0, 0, 0, 114, 0, 0, - 0, 155, 874, 533, 875, 0, 0, 0, 0, 315, - 114, 533, 0, 0, 0, 0, 0, 0, 0, 920, - 921, 0, 0, 0, 894, 0, 388, 389, 390, 391, - 392, 393, 394, 395, 396, 397, 0, 0, 0, 0, - 0, 629, 0, 338, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 533, 0, 0, 918, 0, 0, 5, - 6, 398, 0, 0, 8, 351, 542, 543, 0, 351, - 12, 0, 0, 0, 15, 16, 17, 18, 0, 0, - 19, 20, 0, 0, 0, 21, 208, 0, 0, 0, - 560, 208, 0, 0, 315, 315, 315, 315, 315, 315, - 315, 315, 315, 315, 315, 315, 315, 315, 315, 315, - 315, 315, 0, 155, 0, 0, 0, 0, 155, 0, - 0, 0, 0, 0, 0, 0, 0, 100, 100, 100, - 100, 780, 782, 784, 786, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 28, 29, 30, - 0, 0, 0, 0, 0, 0, 0, 34, 35, 0, - 146, 155, 0, 37, 38, 39, 0, 41, 42, 43, - 0, 44, 45, 46, 47, 0, 0, 791, 0, 51, - 52, 53, 0, 0, 0, 0, 4, 5, 6, 114, - 0, 114, 8, 0, 0, 0, 10, 11, 12, 13, - 0, 0, 15, 16, 17, 18, 0, 0, 19, 20, - 0, 0, 0, 21, 0, 0, 22, 0, 0, 0, - 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 10, 11, 0, 13, 0, 0, 15, 0, 0, 0, - 0, 0, 0, 0, 0, 315, 0, 21, 0, 0, - 22, 0, 0, 114, 0, 0, 0, 0, 0, 0, - 0, 114, 0, 351, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 28, 29, 30, 0, 0, - 0, 0, 0, 0, 315, 34, 35, 0, 0, 0, - 0, 37, 38, 39, 0, 41, 42, 43, 0, 44, - 45, 46, 47, 114, 0, 0, 15, 51, 52, 53, - 0, 30, 315, 560, 0, 0, 0, 21, 0, 34, - 35, 560, 23, 0, 0, 315, 38, 39, 0, 41, - 42, 43, 0, 44, 45, 0, 0, 0, 48, 49, - 50, 51, 52, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 604, 0, 0, 0, 0, 0, 0, 188, - 0, 0, 0, 605, 0, 315, 0, 0, 0, 0, + 67, 74, 65, 76, 108, 211, 685, 571, 64, 66, + 121, 60, 538, 629, 78, 80, 84, 428, 315, 688, + 647, 878, 151, 160, 117, 560, 561, 102, 743, 189, + 230, 235, 807, 244, 799, 630, 440, 879, 67, 74, + 65, 76, 887, 420, 189, 372, 64, 66, 111, 190, + 111, 119, 78, 80, 84, 111, 357, 358, 359, 878, + 3, 225, 910, 112, 190, 102, 908, 347, 113, 869, + 331, 351, 564, 234, -23, 879, 402, 421, 325, 565, + 916, 366, 653, 654, 655, 326, 631, 34, 35, 140, + 143, 153, 162, 149, 158, 700, 911, 310, 423, 856, + 149, 166, 149, 172, 149, 175, 149, 180, 632, 23, + 149, 186, 912, 771, 636, 141, 128, 701, 857, 898, + 843, 217, 74, 215, 76, 858, 921, 23, 233, 230, + 375, 379, 213, 230, 354, 78, 80, 84, 332, 335, + 333, 373, 209, 934, 859, 147, 156, 315, 188, 768, + 336, 197, 374, 150, 159, 119, 423, 25, 177, 179, + 164, 167, 620, 621, 350, 111, 838, 111, 26, 368, + 319, 838, 151, 160, 194, 124, 353, 673, 219, 836, + 221, 195, 121, 574, 575, 576, 511, 512, 551, 126, + 552, 546, 187, 206, 558, 524, 525, 556, 557, 188, + 198, 181, 522, 807, 23, 799, 523, 199, 569, 196, + 217, 74, 215, 76, 815, 191, 217, 74, 215, 76, + 193, 837, 572, 160, 78, 80, 84, 344, 573, 23, + 78, 80, 84, 205, 339, 200, 230, 235, 108, 108, + 108, 108, 23, 149, 158, 340, 594, 560, 561, 627, + 554, 148, 157, 230, 187, 560, 561, 620, 209, 595, + 835, 188, 410, 411, 855, 141, 188, 189, 183, 185, + 596, 346, 339, 889, 793, 794, 368, 192, 368, 234, + 350, 542, 543, 340, 350, 861, 862, 190, 599, 602, + 606, 608, 223, 541, 774, 147, 156, 412, 413, 188, + 223, 202, 570, 150, 159, 207, 559, 188, 203, 427, + 74, 425, 429, 423, 325, 428, 368, 424, 426, 670, + 516, 326, 515, 78, 80, 84, 900, 901, 772, 516, + 938, 515, 314, 659, 535, 941, 204, 593, 536, 691, + 23, 163, -266, 169, -266, 173, 156, 176, 886, 23, + 179, 182, 699, 210, 159, 167, 128, 694, 648, 649, + -266, 694, 627, 581, 582, 583, 584, 597, 600, 220, + 603, 347, 562, 351, 382, 383, 384, 188, 23, 129, + 564, 604, 151, 160, 23, 128, 361, 565, 406, 407, + 130, 128, 408, 409, 363, 364, 385, 111, 111, 111, + 111, 148, 157, 386, 100, 387, 847, 848, 595, 314, + 547, 548, 549, 550, 335, 188, 833, 23, 222, 596, + 414, 415, 672, 834, 227, 336, 667, 115, 100, -19, + 864, 865, -24, 230, 23, 230, 354, 620, 401, 569, + 314, 128, 100, 403, 223, 545, -20, 228, 404, 405, + 315, 188, 157, 149, 158, 149, 172, 185, 130, 422, + 423, 314, 189, 315, 335, -25, 100, 100, 100, 100, + 903, -21, 160, -26, 744, 336, 555, 423, 353, 350, + 223, 206, 190, -267, 546, -267, 23, 188, 223, 650, + 750, 751, 753, 227, 372, 188, 668, 669, 922, 923, + -318, -267, -22, 754, -27, 147, 156, 762, 669, 516, + 516, 515, 515, 150, 159, 240, 532, 832, 866, 100, + 840, 423, 516, 516, 515, 515, 839, 336, 559, 845, + 423, 115, 100, 31, 32, 33, 559, 241, 667, 234, + 317, 108, 108, 667, 846, 423, 230, 314, 314, 314, + 314, 314, 314, 314, 314, 314, 314, 314, 314, 314, + 314, 314, 314, 314, 314, 624, 318, 229, 244, 744, + 884, 423, 918, 423, 348, 876, 349, 877, 388, 389, + 390, 391, 392, 393, 394, 395, 396, 397, 936, 423, + 323, 324, 577, 578, 674, 156, 320, 896, 752, 579, + 580, 321, 679, 159, 585, 586, 200, 427, 74, 425, + 429, 148, 157, 398, 329, 424, 426, 353, 744, 330, + 365, 78, 80, 84, 369, 744, 370, 371, 315, 920, + 115, 380, 381, 416, 115, 100, 417, 315, 418, 114, + 419, 722, 74, 720, 76, 722, 74, 720, 76, 719, + 721, 436, 439, 719, 721, 78, 80, 84, 510, 78, + 80, 84, 823, 111, 544, 527, 229, 111, 553, 614, + 229, 609, 611, 613, 615, 616, 692, 151, 160, 633, + 695, 624, 640, 812, 121, 651, 315, 816, 315, 111, + 111, 819, 820, 656, 657, 664, 169, 314, 661, 662, + 663, 157, 740, 741, 665, 666, 671, 684, 315, 686, + 687, 620, 217, 74, 215, 76, 111, 111, 111, 111, + 702, 111, 111, 739, 658, 747, 78, 80, 84, 755, + 756, 757, 758, 93, 759, 760, 314, 533, 111, 111, + 315, 533, 748, 114, 782, 784, 786, 788, 149, 158, + 765, 763, 764, 766, 115, 767, 769, 770, 775, 776, + 863, 777, 778, 423, 314, 789, 796, 809, 826, 810, + 141, 93, 811, 229, 813, 817, 818, 314, 217, 74, + 215, 76, -38, -42, 841, 825, -39, -43, -40, 213, + 229, -44, 78, 80, 84, 139, 142, 152, 161, -41, + 147, 156, 850, -45, 828, 826, 907, 831, 150, 159, + 835, 842, 217, 74, 215, 76, 844, 314, 111, 111, + 852, 853, 217, 74, 215, 76, 78, 80, 84, 870, + 860, 821, 822, 344, 867, 868, 78, 80, 84, 874, + 875, 932, 114, 882, 870, 883, 114, 885, 208, 890, + 888, 891, 892, 893, 894, 895, 897, 913, 314, 902, + 905, 906, 914, 146, 155, 915, 919, 924, 870, 870, + 146, 165, 146, 171, 146, 174, 146, 178, 925, 933, + 146, 184, 870, 917, 722, 74, 720, 76, 928, 935, + 940, 120, 719, 721, 698, 696, 926, 637, 78, 80, + 84, 926, 697, 683, 635, 795, 148, 157, 830, 808, + 937, 899, 824, 690, 155, 644, 587, 589, 591, 588, + 761, 107, 590, 854, 909, 0, 0, 931, 4, 0, + 0, 0, 0, 0, 533, 0, 533, 0, 10, 11, + 0, 13, 314, 0, 15, 337, 337, 341, 342, 114, + 345, 314, 337, 114, 0, 21, 0, 0, 22, 0, + 0, 0, 0, 0, 208, 0, 114, 0, 0, 0, + 229, 0, 229, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 30, 0, 751, 0, 0, 0, 0, 0, 34, - 35, 0, 0, 0, 0, 0, 38, 39, 0, 41, - 42, 43, 0, 44, 45, 0, 315, 0, 0, 0, - 0, 51, 52, 0, 0, 0, 4, 5, 6, 7, - 704, 0, 8, 705, 0, 9, 10, 11, 12, 13, - 706, 14, 15, 16, 17, 18, 707, 708, 19, 20, - 0, 709, 243, 21, 710, 711, 22, 712, 713, 245, - 246, 247, 248, 249, 250, 714, 0, 251, 252, 0, - 0, 0, 0, 0, 0, 253, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 254, 0, - 0, 0, 0, 210, 0, 0, 0, 315, 255, 256, - 257, 258, 259, 260, 0, 0, 0, 0, 315, 0, - 0, 0, -500, 0, 0, 28, 29, 30, 261, 262, - 31, 32, 33, 0, 0, 34, 35, 263, 264, 265, - 36, 37, 38, 39, 715, 41, 42, 43, 0, 44, + 0, 0, 0, 0, 0, 0, 0, 533, 0, 0, + 314, 0, 314, 0, 0, 533, 0, 0, 0, 0, + 0, 0, 0, 146, 155, 0, 0, 0, 0, 30, + 0, 0, 314, 0, 0, 0, 0, 34, 35, 0, + 155, 0, 36, 229, 38, 39, 0, 41, 42, 43, + 0, 44, 45, 0, 0, 0, 0, 533, 0, 51, + 52, 0, 0, 0, 314, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 155, 165, 171, 174, 178, 184, + 0, 0, 0, 0, 0, 0, 4, 5, 6, 7, + 0, 0, 8, 229, 0, 9, 10, 11, 12, 13, + 0, 14, 15, 16, 17, 18, 0, 0, 19, 20, + 0, 0, 0, 21, 0, 0, 22, 0, 23, 0, + 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, + 0, 100, 100, 100, 100, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 25, 0, + 0, 0, 0, 0, 0, 0, 114, 0, 114, 26, + 0, 0, 0, 0, 0, 598, 601, 605, 607, 0, + 0, 0, 27, 0, 0, 28, 29, 30, 0, 0, + 31, 32, 33, 0, 0, 34, 35, 0, 0, 0, + 36, 37, 38, 39, 40, 41, 42, 43, 0, 44, 45, 46, 47, 0, 48, 49, 50, 51, 52, 53, - 0, 0, 0, 0, 0, 315, 0, 315, 0, 0, - 0, 0, 0, 4, 5, 6, 7, 0, 0, 8, - 0, 0, 9, 10, 11, 12, 13, 315, 14, 15, - 16, 17, 18, 0, 0, 19, 20, 0, 0, 243, - 21, 0, 0, 22, 0, 244, 245, 246, 247, 248, - 249, 250, 24, 0, 251, 252, 0, 0, 0, 315, - 0, 0, 253, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 254, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 255, 256, 257, 258, 259, - 260, 0, 0, 0, 0, 0, 15, 0, 0, 0, - 0, 0, 28, 29, 30, 261, 262, 21, 0, 0, - 0, 0, 34, 35, 263, 264, 265, 36, 37, 38, - 39, 266, 41, 42, 43, 0, 44, 45, 46, 47, - 0, 48, 49, 50, 51, 52, 53, 4, 5, 6, - 7, 0, 0, 8, 0, 0, 9, 10, 11, 12, - 13, 0, 14, 15, 16, 17, 18, 0, 0, 19, - 20, 0, 0, 0, 21, 0, 0, 22, 0, 23, - 0, 30, 0, 0, 0, 0, 24, 0, 0, 34, - 35, 0, 0, 0, 36, 0, 38, 39, 0, 41, - 42, 43, 0, 44, 45, 4, 0, 0, 0, 25, - 0, 51, 52, 0, 0, 10, 11, 0, 13, 0, - 26, 15, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 21, 27, 0, 22, 28, 29, 30, 0, - 0, 31, 32, 33, 0, 0, 34, 35, 0, 0, - 0, 36, 37, 38, 39, 40, 41, 42, 43, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 114, + 0, 0, 0, 0, 0, 0, 0, 114, 0, 0, + 0, 0, 0, 146, 155, 146, 171, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 337, 628, 0, 0, + 0, 0, 15, 0, 0, 0, 0, 0, 0, 114, + 0, 0, 0, 21, 0, 0, 208, 208, 0, 0, + 0, 0, 0, 0, 0, 4, 5, 6, 7, 0, + 0, 8, 0, 0, 9, 10, 11, 12, 13, 0, + 14, 15, 16, 17, 18, 0, 0, 19, 20, 0, + 0, 0, 21, 0, 0, 22, 0, 23, 0, 0, + 0, 0, 0, 155, 144, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, + 0, 0, 155, 155, 0, 34, 35, 603, 0, 0, + 0, 0, 38, 39, 188, 41, 42, 43, 604, 44, + 45, 0, 0, 0, 48, 49, 50, 51, 52, 155, + 628, 0, 337, 0, 28, 29, 30, 0, 0, 0, + 0, 0, 15, 0, 34, 35, 0, 0, 0, 36, + 37, 38, 39, 21, 41, 42, 43, 0, 44, 45, + 46, 47, 0, 48, 49, 50, 51, 52, 53, 0, + 0, 4, 5, 6, 0, 208, 0, 8, 0, 0, + 208, 10, 11, 12, 13, 0, 0, 15, 16, 17, + 18, 0, 0, 19, 20, 0, 0, 0, 21, 0, + 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 30, 0, 0, + 781, 783, 785, 787, 0, 34, 35, 0, 0, 0, + 36, 0, 38, 39, 0, 41, 42, 43, 0, 44, + 45, 155, 0, 0, 0, 0, 155, 51, 52, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 28, 29, 30, 0, 0, 0, 0, 0, 0, 0, + 34, 35, 0, 0, 0, 0, 37, 38, 39, 0, + 41, 42, 43, 0, 44, 45, 46, 47, 146, 155, + 0, 0, 51, 52, 53, 0, 0, 4, 5, 6, + 7, 703, 0, 8, 704, 792, 9, 10, 11, 12, + 13, 705, 14, 15, 16, 17, 18, 706, 707, 19, + 20, 0, 708, 242, 21, 709, 710, 22, 711, 712, + 244, 245, 246, 247, 248, 249, 713, 0, 250, 251, + 0, 0, 0, 0, 0, 0, 252, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 253, + 0, 0, 0, 0, 210, 0, 0, 0, 0, 254, + 255, 256, 257, 258, 259, 0, 0, 0, 0, 0, + 0, 0, 0, -502, 0, 0, 28, 29, 30, 260, + 261, 31, 32, 33, 0, 0, 34, 35, 262, 263, + 264, 36, 37, 38, 39, 714, 41, 42, 43, 0, 44, 45, 46, 47, 0, 48, 49, 50, 51, 52, 53, 4, 5, 6, 7, 0, 0, 8, 0, 0, 9, 10, 11, 12, 13, 0, 14, 15, 16, 17, - 18, -52, 0, 19, 20, 0, 30, 0, 21, 0, - 0, 22, 0, 23, 34, 35, 0, 0, 0, 0, - 144, 38, 39, 0, 41, 42, 43, 0, 44, 45, - 0, 0, 0, 0, 0, 0, 51, 52, 0, 0, - 0, 0, 0, 604, 0, 0, 0, 4, 0, 0, - 188, 0, 0, 0, 605, 0, 0, 10, 11, 0, - 13, 0, 0, 15, 0, 0, 0, 0, 0, 0, - 28, 29, 30, 0, 21, 0, 0, 22, 0, 0, - 34, 35, 0, 0, 0, 36, 37, 38, 39, 0, + 18, 0, 0, 19, 20, 0, 0, 242, 21, 0, + 0, 22, 0, 243, 244, 245, 246, 247, 248, 249, + 24, 0, 250, 251, 0, 0, 0, 0, 0, 0, + 252, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 253, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 254, 255, 256, 257, 258, 259, 0, + 0, 0, 0, 0, 0, 0, 15, 0, 0, 0, + 28, 29, 30, 260, 261, 790, 0, 21, 0, 0, + 34, 35, 262, 263, 264, 36, 37, 38, 39, 265, 41, 42, 43, 0, 44, 45, 46, 47, 0, 48, 49, 50, 51, 52, 53, 4, 5, 6, 7, 0, - 0, 8, 0, 0, 9, 10, 11, 12, 13, 0, + 0, 8, 791, 0, 9, 10, 11, 12, 13, 0, 14, 15, 16, 17, 18, 0, 0, 19, 20, 0, - 0, 0, 21, -54, 0, 22, 0, 23, 30, 0, - 0, 0, 0, 0, 154, 0, 34, 35, 0, 0, - 0, 0, 0, 38, 39, 0, 41, 42, 43, 0, - 44, 45, 0, 0, 0, 0, 0, 604, 51, 52, - 0, 4, 0, 0, 188, 0, 0, 0, 605, 0, - 0, 10, 11, 0, 13, 0, 0, 15, 0, 0, - 0, 0, 0, 0, 28, 29, 30, 0, 21, 0, - 0, 22, 0, 0, 34, 35, 0, 0, 0, 36, + 0, 0, 21, 0, 0, 22, 0, 23, 0, 0, + 0, 30, 0, 0, 154, 0, 0, 0, 0, 34, + 35, 0, 0, 0, 0, 0, 38, 39, 0, 41, + 42, 43, 0, 44, 45, 5, 6, 603, 0, 0, + 8, 51, 52, 0, 188, 0, 12, 0, 604, 0, + 15, 16, 17, 18, 0, 0, 19, 20, 0, 0, + 0, 21, 0, 0, 28, 29, 30, 0, 0, 0, + 0, 0, 0, 0, 34, 35, 0, 0, 0, 36, 37, 38, 39, 0, 41, 42, 43, 0, 44, 45, 46, 47, 0, 48, 49, 50, 51, 52, 53, 4, 5, 6, 7, 0, 0, 8, 0, 0, 9, 10, 11, 12, 13, 0, 14, 15, 16, 17, 18, 0, - 0, 19, 20, 0, 0, 0, 21, 0, 0, 22, - 0, 23, 30, 0, 0, 0, 0, 0, 24, 0, - 34, 35, 0, 0, 0, 36, 0, 38, 39, 0, - 41, 42, 43, 0, 44, 45, 0, 4, 0, 0, - 0, 25, 51, 52, 0, 0, 0, 10, 11, 0, - 13, 0, 26, 15, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 21, 0, 0, 22, 28, 29, - 30, 0, 0, 0, 0, 0, 0, 0, 34, 35, - 15, 0, 0, 36, 37, 38, 39, 0, 41, 42, - 43, 21, 44, 45, 46, 47, 0, 48, 49, 50, + 0, 19, 20, 28, 29, 30, 21, 0, 0, 22, + 0, 23, 0, 34, 35, 0, 0, 0, 24, 37, + 38, 39, 0, 41, 42, 43, 0, 44, 45, 46, + 47, 0, 0, 0, 0, 51, 52, 53, 0, 0, + 0, 25, 0, 0, 0, 0, 0, 0, 0, 0, + 4, 0, 26, 0, 0, 0, 0, 0, 0, 0, + 10, 11, 0, 13, 0, 0, 15, 0, 28, 29, + 30, 0, 0, 0, 0, 0, 0, 21, 34, 35, + 22, 0, 0, 36, 37, 38, 39, 0, 41, 42, + 43, 0, 44, 45, 46, 47, 0, 48, 49, 50, 51, 52, 53, 4, 5, 6, 7, 0, 0, 8, 0, 0, 9, 10, 11, 12, 13, 0, 14, 15, - 16, 17, 18, 0, 0, 19, 20, 0, 30, 0, - 21, 0, 0, 22, 0, 23, 34, 35, 0, 0, - 0, 0, 144, 38, 39, 0, 41, 42, 43, 0, - 44, 45, 0, 0, 0, 30, 0, 0, 51, 52, - 0, 0, 0, 34, 35, 25, 0, 0, 0, 0, - 38, 39, 0, 41, 42, 43, 26, 44, 45, 0, - 0, 0, 48, 49, 50, 51, 52, 0, 15, 0, - 0, 0, 28, 29, 30, 0, 0, 789, 0, 21, - 0, 0, 34, 35, 0, 0, 0, 36, 37, 38, + 16, 17, 18, 0, 0, 19, 20, 0, 0, 0, + 21, 0, 0, 22, 0, 23, 0, 0, 0, 0, + 0, 30, 144, 0, 0, 0, 0, 0, 0, 34, + 35, 0, 0, 0, 0, 0, 38, 39, 0, 41, + 42, 43, 0, 44, 45, 25, 0, 0, 48, 49, + 50, 51, 52, 0, 4, 0, 26, 0, 0, 0, + 0, 0, 0, 0, 10, 11, 0, 13, 0, 0, + 15, 0, 28, 29, 30, 0, 0, 0, 0, 0, + 0, 21, 34, 35, 22, 0, 0, 36, 37, 38, 39, 0, 41, 42, 43, 0, 44, 45, 46, 47, 0, 48, 49, 50, 51, 52, 53, 4, 5, 6, - 7, 0, 0, 8, 790, 0, 9, 10, 11, 12, + 7, 0, 0, 8, 0, 0, 9, 10, 11, 12, 13, 0, 14, 15, 16, 17, 18, 0, 0, 19, 20, 0, 0, 0, 21, 0, 0, 22, 0, 23, - 0, 0, 0, 30, 0, 0, 154, 0, 0, 0, - 0, 34, 35, 0, 0, 0, 0, 0, 38, 39, - 0, 41, 42, 43, 0, 44, 45, 0, 0, 25, - 0, 0, 0, 51, 52, 0, 0, 0, 0, 0, - 26, 15, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 21, 0, 0, 0, 28, 29, 30, 0, - 0, 0, 0, 0, 0, 0, 34, 35, 0, 0, + -52, 0, 0, 0, 0, 30, 154, 0, 0, 0, + 0, 0, 0, 34, 35, 0, 0, 0, 0, 0, + 38, 39, 0, 41, 42, 43, 0, 44, 45, 25, + 0, 0, 0, 4, 0, 51, 52, 0, 0, 0, + 26, 0, 0, 10, 11, 0, 13, 0, 0, 15, + 0, 0, 0, 0, 0, 0, 28, 29, 30, 0, + 21, 0, 0, 22, 0, 0, 34, 35, 0, 0, 0, 36, 37, 38, 39, 0, 41, 42, 43, 0, 44, 45, 46, 47, 0, 48, 49, 50, 51, 52, 53, 4, 5, 6, 7, 0, 0, 8, 0, 0, 9, 10, 11, 12, 13, 0, 14, 15, 16, 17, - 18, 0, 0, 19, 20, 0, 30, 0, 21, 0, - 0, 22, 0, 23, 34, 35, 0, 0, 0, 0, - 144, 38, 39, 0, 41, 42, 43, 0, 44, 45, - 0, 0, 0, 0, 0, 0, 51, 52, 0, 0, - 0, 0, 0, 340, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 341, 0, 0, 0, 0, 0, + 18, 0, 0, 19, 20, 0, 0, 0, 21, -54, + 0, 22, 0, 23, 30, 0, 0, 0, 0, 0, + 144, 0, 34, 35, 0, 0, 0, 0, 0, 38, + 39, 0, 41, 42, 43, 0, 44, 45, 0, 0, + 0, 0, 0, 339, 51, 52, 0, 0, 0, 0, + 0, 0, 0, 0, 340, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 29, 30, 0, 0, 0, 0, 0, 0, 0, 34, 35, 0, 0, 0, 36, 37, 38, 39, 0, @@ -1119,12 +1116,12 @@ public static class yytable_wrapper { 0, 0, 21, 0, 0, 22, 0, 23, 0, 0, 0, 0, 0, 0, 154, 0, 4, 5, 6, 7, 0, 0, 8, 0, 0, 9, 10, 11, 12, 13, - 0, 14, 15, 16, 17, 18, 0, 340, 19, 20, - 0, 0, 0, 21, 0, 0, 22, 0, 341, 0, + 0, 14, 15, 16, 17, 18, 0, 339, 19, 20, + 0, 0, 0, 21, 0, 0, 22, 0, 340, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 28, 29, 30, 0, 0, 0, 0, 0, 0, 0, 34, 35, 0, 0, 0, 36, - 37, 38, 39, 344, 41, 42, 43, 0, 44, 45, + 37, 38, 39, 343, 41, 42, 43, 0, 44, 45, 46, 47, 0, 48, 49, 50, 51, 52, 53, 0, 0, 0, 0, 0, 0, 28, 29, 30, 0, 0, 0, 0, 0, 0, 0, 34, 35, 0, 0, 0, @@ -1136,7 +1133,7 @@ public static class yytable_wrapper { 22, 0, 0, 0, 0, 4, 5, 6, 7, 24, 0, 8, 0, 0, 9, 10, 11, 12, 13, 0, 14, 15, 16, 17, 18, 0, 0, 19, 20, 0, - 0, 0, 21, 0, 0, 22, 0, 848, 0, 0, + 0, 0, 21, 0, 0, 22, 0, 849, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 29, 30, 0, 0, 0, 0, 0, 0, 0, 34, @@ -1151,25 +1148,25 @@ public static class yytable_wrapper { 0, 19, 20, 0, 0, 0, 21, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 4, 5, 6, 7, 0, 0, 8, 0, - 683, 9, 10, 11, 12, 13, 0, 14, 15, 16, + 682, 9, 10, 11, 12, 13, 0, 14, 15, 16, 17, 18, 0, 0, 19, 20, 0, 0, 0, 21, 0, 0, 22, 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 28, 29, 30, 0, 0, 0, 0, 0, 0, 0, 34, 35, 0, 0, 0, 36, 37, 38, 39, 0, 41, 42, 43, 0, 44, 45, 46, 47, 0, 48, 49, 50, - 51, 52, 53, 0, 0, 0, 0, 0, 0, 0, - 0, 28, 29, 30, 0, 0, 0, 0, 0, 0, + 51, 52, 53, 0, 15, 0, 0, 0, 0, 0, + 0, 28, 29, 30, 0, 21, 0, 0, 0, 0, 0, 34, 35, 0, 0, 0, 36, 37, 38, 39, 0, 41, 42, 43, 0, 44, 45, 46, 47, 0, 48, 49, 50, 51, 52, 53, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, - 465, 466, 467, 468, 469, 470, 471, 472, 473, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 465, 466, 467, 468, 469, 470, 471, 472, 473, 30, + 0, 0, 0, 0, 0, 0, 0, 34, 35, 0, + 0, 0, 0, 0, 38, 39, 0, 41, 42, 43, + 0, 44, 45, 0, 0, 0, 0, 0, 0, 51, + 52, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 474, 475, 476, 477, 478, 479, 480, 481, 482, 0, 0, 483, 484, 485, 486, 487, @@ -1177,25 +1174,25 @@ public static class yytable_wrapper { 498, 499, 500, 501, 502, 503, 504, 505, 506, 5, 6, 7, 0, 0, 8, 0, 0, 9, 0, 0, 12, 0, 0, 14, 15, 16, 17, 18, 0, 0, - 19, 20, 0, 0, 243, 21, 0, 0, 0, 0, - 244, 245, 246, 247, 248, 249, 250, 24, 0, 251, - 252, 0, 0, 0, 0, 0, 0, 253, 0, 0, + 19, 20, 0, 0, 242, 21, 0, 0, 0, 0, + 243, 244, 245, 246, 247, 248, 249, 24, 0, 250, + 251, 0, 0, 0, 0, 0, 0, 252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 254, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 255, 256, 257, 258, 259, 260, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 28, 29, 30, - 261, 262, 0, 0, 0, 0, 0, 34, 35, 263, - 264, 265, 36, 37, 38, 39, 266, 41, 42, 43, + 253, 0, 0, 0, 0, 0, 4, 0, 0, 0, + 254, 255, 256, 257, 258, 259, 10, 11, 0, 13, + 0, 0, 15, 0, 0, 0, 0, 28, 29, 30, + 260, 261, 0, 21, 0, 0, 22, 34, 35, 262, + 263, 264, 36, 37, 38, 39, 265, 41, 42, 43, 0, 44, 45, 46, 47, 0, 48, 49, 50, 51, 52, 53, 5, 6, 7, 0, 0, 8, 0, 0, 9, 0, 0, 12, 0, 0, 14, 15, 16, 17, 18, 0, 0, 19, 20, 0, 0, 0, 21, 0, - 0, 0, 0, 23, 0, 0, 0, 0, 0, 0, - 154, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 340, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 341, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 621, 626, 0, 0, + 0, 0, 0, 23, 0, 0, 0, 30, 0, 0, + 154, 0, 0, 0, 0, 34, 35, 0, 0, 0, + 0, 0, 38, 39, 0, 41, 42, 43, 0, 44, + 45, 0, 0, 339, 0, 0, 0, 51, 52, 0, + 0, 0, 0, 0, 340, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 620, 625, 0, 0, 28, 29, 30, 0, 0, 0, 0, 0, 0, 0, 34, 35, 0, 0, 0, 36, 37, 38, 39, 0, 41, 42, 43, 0, 44, 45, 46, 47, 0, 48, @@ -1227,7 +1224,7 @@ public static class yytable_wrapper { 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 514, 0, 0, 28, 29, 30, 0, 0, 0, 0, 0, 0, 0, 34, 35, 0, 0, 0, - 36, 37, 38, 39, 619, 41, 42, 43, 0, 44, + 36, 37, 38, 39, 618, 41, 42, 43, 0, 44, 45, 46, 47, 0, 48, 49, 50, 51, 52, 53, 0, 0, 514, 0, 0, 28, 29, 30, 0, 0, 0, 0, 0, 0, 0, 34, 35, 0, 0, 0, @@ -1239,11 +1236,11 @@ public static class yytable_wrapper { 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 5, 6, 7, 0, 0, 8, 0, 0, 9, 0, 0, 12, 0, 0, 14, 15, 16, 17, 18, 0, - 0, 19, 20, 0, 0, 0, 21, 620, 0, 0, + 0, 19, 20, 0, 0, 0, 21, 619, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 514, 0, 0, 28, 29, 30, 0, 0, 0, 0, 0, 0, 0, 34, 35, - 0, 0, 0, 36, 37, 38, 39, 639, 41, 42, + 0, 0, 0, 36, 37, 38, 39, 638, 41, 42, 43, 0, 44, 45, 46, 47, 0, 48, 49, 50, 51, 52, 53, 0, 0, 514, 0, 0, 28, 29, 30, 0, 0, 0, 0, 0, 0, 0, 34, 35, @@ -1256,7 +1253,7 @@ public static class yytable_wrapper { 7, 24, 0, 8, 0, 0, 9, 0, 0, 12, 0, 0, 14, 15, 16, 17, 18, 0, 0, 19, 20, 0, 0, 0, 21, 0, 0, 0, 0, 0, - 640, 0, 0, 0, 0, 0, 24, 0, 0, 0, + 639, 0, 0, 0, 0, 0, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 514, 0, 0, 28, 29, 30, 0, 0, 0, 0, 0, 0, 0, 34, 35, 0, 0, 0, 36, 37, 38, 39, @@ -1267,366 +1264,367 @@ public static class yytable_wrapper { 44, 45, 46, 47, 23, 48, 49, 50, 51, 52, 53, 128, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 0, 0, 0, 0, 23, 0, - 0, 0, 0, 0, 596, 128, 0, 0, 0, 0, - 0, 188, 0, 0, 15, 597, 0, 0, 0, 0, + 0, 0, 0, 0, 595, 128, 0, 0, 0, 0, + 0, 188, 0, 0, 15, 596, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 0, 0, 232, 0, 23, 0, 0, 30, 0, 0, 0, 128, 0, 130, 0, 34, 35, 0, 0, 0, 0, 0, 38, 39, 0, 41, 42, 43, 0, 44, 45, 30, 0, 0, - 353, 0, 0, 51, 52, 34, 35, 15, 0, 0, + 352, 0, 0, 51, 52, 34, 35, 15, 0, 0, 0, 130, 38, 39, 0, 41, 42, 43, 21, 44, 45, 0, 0, 23, 0, 0, 0, 51, 52, 30, 128, 0, 0, 0, 0, 0, 0, 34, 35, 15, 0, 0, 0, 0, 38, 39, 0, 41, 42, 43, 21, 44, 45, 534, 0, 23, 0, 0, 0, 51, - 52, 0, 128, 15, 337, 0, 0, 0, 0, 0, + 52, 0, 128, 15, 336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 0, 0, 0, 0, 23, - 0, 0, 30, 0, 0, 646, 0, 0, 0, 0, - 34, 35, 0, 0, 0, 15, 337, 38, 39, 0, - 41, 42, 43, 0, 44, 45, 21, 0, 0, 25, - 0, 23, 51, 52, 30, 0, 0, 0, 0, 0, - 26, 0, 34, 35, 0, 0, 0, 0, 0, 38, + 0, 0, 30, 0, 0, 645, 0, 0, 0, 0, + 34, 35, 0, 0, 0, 15, 336, 38, 39, 0, + 41, 42, 43, 0, 44, 45, 21, 0, 0, 603, + 0, 23, 51, 52, 30, 0, 188, 0, 0, 0, + 604, 0, 34, 35, 0, 0, 0, 0, 0, 38, 39, 0, 41, 42, 43, 0, 44, 45, 30, 0, - 0, 340, 0, 0, 51, 52, 34, 35, 0, 0, - 0, 15, 341, 38, 39, 0, 41, 42, 43, 0, - 44, 45, 21, 0, 0, 0, 0, 0, 51, 52, - 30, 0, 0, 0, 0, 0, 0, 0, 34, 35, + 0, 25, 0, 0, 51, 52, 34, 35, 15, 0, + 0, 0, 26, 38, 39, 0, 41, 42, 43, 21, + 44, 45, 0, 0, 23, 15, 0, 0, 51, 52, + 30, 0, 0, 0, 0, 0, 21, 0, 34, 35, 0, 0, 0, 0, 0, 38, 39, 0, 41, 42, - 43, 0, 44, 45, 0, 0, 0, 373, 0, 0, - 51, 52, 0, 0, 188, 0, 0, 0, 374, 0, + 43, 0, 44, 45, 339, 0, 0, 0, 0, 0, + 51, 52, 0, 0, 0, 340, 0, 0, 0, 0, + 0, 373, 0, 0, 0, 0, 0, 0, 188, 0, + 0, 0, 374, 30, 0, 0, 0, 0, 0, 0, + 0, 34, 35, 0, 0, 0, 0, 0, 38, 39, + 30, 41, 42, 43, 0, 44, 45, 0, 34, 35, + 0, 0, 0, 51, 52, 38, 39, 0, 41, 42, + 43, 0, 44, 45, 703, 0, 0, 704, 0, 0, + 51, 52, 0, 0, 705, 0, 0, 0, 0, 0, + 706, 707, 0, 0, 0, 708, 242, 0, 709, 710, + 0, 711, 712, 244, 245, 246, 247, 248, 249, 773, + 0, 250, 251, 0, 0, 0, 0, 0, 0, 252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 30, 0, 0, 0, - 0, 0, 0, 0, 34, 35, 0, 704, 0, 0, - 705, 38, 39, 0, 41, 42, 43, 706, 44, 45, - 0, 0, 0, 707, 708, 0, 51, 52, 709, 243, - 0, 710, 711, 0, 712, 713, 245, 246, 247, 248, - 249, 250, 772, 0, 251, 252, 0, 0, 0, 0, - 0, 0, 253, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 254, 0, 0, 0, 0, - 210, 0, 0, 0, 0, 255, 256, 257, 258, 259, - 260, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 261, 262, 31, 32, 33, - 0, 0, 0, 0, 263, 264, 265, 243, 0, 0, - 0, 266, 0, 794, 245, 246, 247, 248, 249, 250, - 0, 0, 251, 252, 0, 0, 0, 0, 0, 0, - 253, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 254, 0, 0, 0, 0, 652, 795, - 796, 0, 797, 255, 256, 257, 258, 259, 260, 0, + 0, 0, 253, 0, 0, 0, 0, 210, 0, 0, + 0, 0, 254, 255, 256, 257, 258, 259, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 0, 0, 261, 262, 0, 0, 0, 0, 0, - 0, 0, 263, 264, 265, 243, 0, 0, 0, 266, - 0, 794, 245, 246, 247, 248, 249, 250, 0, 0, - 251, 252, 0, 0, 0, 0, 0, 0, 253, 0, + 0, 0, 260, 261, 31, 32, 33, 0, 0, 0, + 0, 262, 263, 264, 242, 0, 0, 0, 265, 0, + 797, 244, 245, 246, 247, 248, 249, 0, 0, 250, + 251, 0, 0, 0, 0, 0, 0, 252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 254, 0, 0, 0, 0, 652, 0, 796, 0, - 797, 255, 256, 257, 258, 259, 260, 0, 0, 0, + 253, 0, 0, 0, 0, 742, 829, 798, 0, 799, + 254, 255, 256, 257, 258, 259, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, - 0, 261, 262, 0, 0, 0, 0, 0, 0, 0, - 263, 264, 265, 243, 0, 0, 0, 266, 0, 244, - 245, 246, 247, 248, 249, 250, 0, 0, 251, 252, - 0, 0, 0, 0, 0, 243, 253, 0, 0, 0, - 0, 244, 245, 246, 247, 248, 249, 250, 0, 254, - 251, 252, 0, 0, 0, 0, 0, 314, 253, 255, - 256, 257, 258, 259, 260, 0, 0, 0, 0, 0, - 0, 254, 568, 0, 0, 0, 0, 0, 0, 261, - 262, 255, 256, 257, 258, 259, 260, 0, 263, 264, - 265, 0, 0, 0, 0, 266, 0, 0, 0, 0, - 0, 261, 262, 0, 0, 0, 0, 0, 0, 0, - 263, 264, 265, 243, 0, 0, 0, 266, 0, 244, - 245, 246, 247, 248, 249, 250, 0, 0, 251, 252, - 0, 0, 0, 0, 0, 243, 253, 0, 0, 0, - 0, 244, 245, 246, 247, 248, 249, 250, 0, 254, - 251, 252, 0, 0, 0, 0, 0, 0, 253, 255, - 256, 257, 258, 259, 260, 0, 0, 0, 0, 0, - 0, 254, 593, 0, 0, 0, 652, 0, 0, 261, - 262, 255, 256, 257, 258, 259, 260, 0, 263, 264, - 265, 0, 0, 0, 0, 266, 0, 0, 0, 0, - 0, 261, 262, 0, 0, 0, 0, 0, 0, 0, - 263, 264, 265, 243, 0, 0, 0, 266, 0, 244, - 245, 246, 247, 248, 249, 250, 0, 0, 251, 252, - 0, 0, 0, 0, 0, 243, 253, 0, 0, 0, - 0, 244, 245, 246, 247, 248, 249, 250, 0, 254, - 251, 252, 0, 0, 659, 0, 0, 0, 253, 255, - 256, 257, 258, 259, 260, 0, 0, 0, 0, 0, - 0, 254, 690, 0, 0, 0, 0, 0, 0, 261, - 262, 255, 256, 257, 258, 259, 260, 0, 263, 264, - 265, 0, 0, 0, 0, 266, 0, 0, 0, 0, - 0, 261, 262, 0, 0, 0, 0, 0, 0, 0, - 263, 264, 265, 243, 0, 0, 0, 266, 0, 244, - 245, 246, 247, 248, 249, 250, 0, 0, 251, 252, - 0, 0, 0, 0, 0, 243, 253, 0, 0, 0, - 0, 244, 245, 246, 247, 248, 249, 250, 0, 254, - 251, 252, 0, 0, 0, 0, 0, 0, 253, 255, - 256, 257, 258, 259, 260, 0, 0, 0, 0, 0, - 0, 360, 0, -500, 0, 0, 0, 0, 0, 261, - 262, 255, 256, 257, 258, 259, 260, 0, 263, 264, - 265, 0, 0, 0, 0, 266, 0, 0, 0, 0, - 0, 261, 262, 0, 0, 0, 0, 0, 0, 0, - 263, 264, 265, 243, 0, 0, 0, 266, 0, 244, - 245, 246, 247, 248, 249, 250, 0, 0, 251, 252, - 0, 0, 0, 0, 0, 243, 253, 0, 0, 0, - 0, 244, 245, 246, 247, 248, 249, 250, 0, 362, - 251, 252, 0, 0, 0, 0, 0, 0, 253, 255, - 256, 257, 258, 259, 260, 0, 0, 0, 0, 0, - 0, 254, 0, 0, 0, 0, 0, 0, 0, 261, - 262, 255, 256, 257, 258, 259, 260, 0, 263, 264, - 265, 0, 0, 0, 0, 266, 0, 0, 0, 0, - 0, 261, 262, 0, 0, 0, 0, 0, 0, 0, - 263, 264, 265, 243, 0, 0, 0, 266, 0, 244, - 245, 246, 247, 248, 249, 250, 0, 0, 251, 252, - 0, 0, 0, 0, 0, 0, 253, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 400, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 255, - 256, 257, 258, 259, 260, 0, 0, 0, 0, 0, - 0, 0, 0, 0, 0, 0, 0, 0, 0, 261, - 262, 0, 0, 0, 0, 0, 0, 0, 263, 264, - 265, 0, 0, 0, 0, 266 + 260, 261, 0, 0, 0, 0, 0, 0, 0, 262, + 263, 264, 242, 0, 0, 0, 265, 0, 797, 244, + 245, 246, 247, 248, 249, 0, 0, 250, 251, 0, + 0, 0, 0, 0, 0, 252, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 253, 0, + 0, 0, 0, 742, 0, 798, 0, 799, 254, 255, + 256, 257, 258, 259, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 260, 261, + 0, 0, 0, 0, 0, 0, 0, 262, 263, 264, + 242, 0, 0, 0, 265, 0, 243, 244, 245, 246, + 247, 248, 249, 0, 0, 250, 251, 0, 0, 0, + 0, 0, 242, 252, 0, 0, 0, 0, 243, 244, + 245, 246, 247, 248, 249, 0, 253, 250, 251, 0, + 0, 0, 0, 0, 313, 252, 254, 255, 256, 257, + 258, 259, 0, 0, 0, 0, 0, 0, 253, 567, + 0, 0, 0, 0, 0, 0, 260, 261, 254, 255, + 256, 257, 258, 259, 0, 262, 263, 264, 0, 0, + 0, 0, 265, 0, 0, 0, 0, 0, 260, 261, + 0, 0, 0, 0, 0, 0, 0, 262, 263, 264, + 242, 0, 0, 0, 265, 0, 243, 244, 245, 246, + 247, 248, 249, 0, 0, 250, 251, 0, 0, 0, + 0, 0, 242, 252, 0, 0, 0, 0, 243, 244, + 245, 246, 247, 248, 249, 0, 253, 250, 251, 0, + 0, 0, 0, 0, 0, 252, 254, 255, 256, 257, + 258, 259, 0, 0, 0, 0, 0, 0, 253, 592, + 0, 0, 0, 658, 0, 0, 260, 261, 254, 255, + 256, 257, 258, 259, 0, 262, 263, 264, 0, 0, + 0, 0, 265, 0, 0, 0, 0, 0, 260, 261, + 0, 0, 0, 0, 0, 0, 0, 262, 263, 264, + 242, 0, 0, 0, 265, 0, 243, 244, 245, 246, + 247, 248, 249, 0, 0, 250, 251, 0, 0, 0, + 0, 0, 0, 252, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 253, 689, 0, 0, + 0, 0, 0, 0, 0, 0, 254, 255, 256, 257, + 258, 259, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 260, 261, 0, 0, + 0, 0, 0, 0, 0, 262, 263, 264, 242, 0, + 0, 0, 265, 0, 243, 244, 245, 246, 247, 248, + 249, 0, 0, 250, 251, 0, 0, 0, 0, 0, + 0, 252, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 253, 0, 0, 0, 0, 742, + 0, 0, 0, 0, 254, 255, 256, 257, 258, 259, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 260, 261, 0, 0, 0, 0, + 0, 0, 0, 262, 263, 264, 242, 0, 0, 0, + 265, 0, 243, 244, 245, 246, 247, 248, 249, 0, + 0, 250, 251, 0, 0, 0, 0, 0, 242, 252, + 0, 0, 0, 0, 243, 244, 245, 246, 247, 248, + 249, 0, 253, 250, 251, 0, 0, 0, 0, 0, + 0, 252, 254, 255, 256, 257, 258, 259, 0, 0, + 0, 0, 0, 0, 360, 0, -502, 0, 0, 0, + 0, 0, 260, 261, 254, 255, 256, 257, 258, 259, + 0, 262, 263, 264, 0, 0, 0, 0, 265, 0, + 0, 0, 0, 0, 260, 261, 0, 0, 0, 0, + 0, 0, 0, 262, 263, 264, 242, 0, 0, 0, + 265, 0, 243, 244, 245, 246, 247, 248, 249, 0, + 0, 250, 251, 0, 0, 0, 0, 0, 242, 252, + 0, 0, 0, 0, 243, 244, 245, 246, 247, 248, + 249, 0, 362, 250, 251, 0, 0, 0, 0, 0, + 0, 252, 254, 255, 256, 257, 258, 259, 0, 0, + 0, 0, 0, 0, 253, 0, 0, 0, 0, 0, + 0, 0, 260, 261, 254, 255, 256, 257, 258, 259, + 0, 262, 263, 264, 0, 0, 0, 0, 265, 0, + 0, 0, 0, 0, 260, 261, 0, 0, 0, 0, + 0, 0, 0, 262, 263, 264, 242, 0, 0, 0, + 265, 0, 243, 244, 245, 246, 247, 248, 249, 0, + 0, 250, 251, 0, 0, 0, 0, 0, 0, 252, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 400, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 254, 255, 256, 257, 258, 259, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 260, 261, 0, 0, 0, 0, 0, 0, + 0, 262, 263, 264, 0, 0, 0, 0, 265 }; } public static class yycheck_wrapper { public static final int[] yycheck = { - 2, 2, 2, 2, 181, 538, 387, 40, 2, 2, - 344, 2, 373, 122, 2, 2, 2, 188, 66, 67, - 141, 616, 130, 612, 26, 73, 74, 75, 76, 77, - 78, 79, 80, 2, 547, 83, 84, 204, 40, 40, - 40, 40, 2, 66, 67, 65, 40, 40, 7, 67, - 9, 36, 40, 40, 40, 14, 79, 80, 100, 266, - 312, 100, 516, 9, 865, 35, 26, 65, 14, 11, - 88, 373, 42, 115, 35, 357, 115, 254, 11, 228, - 40, 42, 72, 232, 74, 27, 35, 72, 889, 895, - 297, 66, 67, 42, 27, 0, 53, 70, 48, 49, - 70, 35, 903, 909, 64, 65, 66, 67, 83, 84, - 193, 35, 67, 66, 67, 76, 65, 35, 239, 240, - 926, 123, 123, 123, 123, 233, 67, 76, 130, 71, - 87, 65, 123, 83, 84, 123, 123, 123, 66, 67, - 54, 65, 76, 35, 67, 73, 74, 318, 72, 267, - 268, 110, 76, 129, 321, 322, 67, 117, 54, 254, - 71, 35, 131, 330, 331, 124, 89, 126, 216, 217, - 130, 625, 141, 65, 88, 629, 630, 73, 124, 212, - 126, 129, 130, 360, 76, 362, 54, 65, 72, 89, - 74, 65, 35, 216, 217, 215, 403, 404, 405, 42, - 65, 221, 76, 65, 353, 73, 90, 72, 371, 386, - 212, 212, 212, 212, 88, 67, 218, 218, 218, 218, - 102, 103, 385, 400, 212, 212, 212, 218, 71, 337, - 218, 218, 218, 70, 67, 596, 399, 89, 71, 65, - 706, 216, 217, 604, 421, 268, 72, 35, 72, 272, - 74, 73, 228, 75, 42, 77, 232, 79, 367, 67, - 423, 83, 66, 216, 217, 360, 90, 362, 550, 551, - 239, 240, 867, 233, 369, 370, 35, 67, 237, 238, - 228, 89, 70, 42, 232, 233, 66, 800, 216, 217, - 76, 237, 238, 268, 596, 81, 82, 339, 273, 89, - 339, 70, 604, 769, 89, 400, 424, 425, 426, 427, - 312, 312, 312, 312, 89, 268, 424, 425, 312, 312, - 35, 323, 70, 323, 312, 312, 312, 42, 709, 2, - 332, 864, 332, 2, 89, 337, 72, 67, 74, 341, - 268, 269, 70, 73, 933, 77, 78, 554, 70, 938, - 65, 70, 25, 26, 90, 35, 35, 65, 610, 35, - 336, 76, 42, 42, 72, 70, 42, 40, 76, 65, - 66, 40, 374, 88, 840, 841, 72, 353, 426, 427, - 428, 429, 70, 532, 547, 534, 318, 70, 336, 337, - 70, 64, 65, 66, 67, 64, 65, 66, 67, 358, - 359, 65, 66, 426, 427, 353, 46, 47, 72, 65, - 66, 89, 358, 359, 880, 881, 72, 72, 539, 540, - 65, 801, 593, 35, 66, 67, 36, 535, 808, 70, - 42, 73, 74, 75, 76, 77, 78, 79, 80, 35, - 35, 83, 84, 70, 117, 563, 42, 42, 117, 70, - 621, 426, 427, 65, 617, 35, 129, 130, 66, 741, - 742, 70, 42, 634, 76, 410, 411, 412, 413, 65, - 65, 65, 35, 426, 427, 117, 88, 89, 70, 42, - 76, 76, 97, 98, 99, 65, 50, 51, 66, 597, - 35, 533, 72, 516, 533, 515, 76, 646, 426, 427, - 66, 67, 65, 674, 43, 44, 45, 670, 715, 511, - 512, 511, 512, 76, 848, 66, 67, 66, 67, 35, - 65, 65, 524, 525, 524, 525, 65, 72, 65, 65, - 66, 76, 66, 72, 36, 74, 72, 65, 66, 66, - 67, 516, 66, 67, 72, 214, 215, 216, 217, 75, - 219, 86, 221, 66, 67, 228, 532, 675, 534, 232, - 233, 52, 680, 516, 233, 66, 67, 675, 663, 664, - 539, 540, 66, 67, 216, 217, 66, 67, 66, 67, - 743, 85, 745, 35, 532, 66, 534, 535, 516, 766, - 73, 233, 115, 770, 66, 597, 66, 774, 775, 198, - 199, 90, 25, 605, 406, 407, 428, 67, 610, 610, - 610, 610, 632, 408, 409, 73, 610, 610, 414, 415, - 596, 67, 610, 610, 610, 796, 268, 269, 270, 271, - 272, 273, 66, 65, 67, 90, 807, 800, 35, 66, - 66, 66, 644, 644, 644, 644, 648, 648, 648, 648, - 644, 644, 67, 67, 648, 648, 644, 644, 644, 67, - 648, 648, 648, 336, 623, 66, 843, 340, 627, 778, - 646, 66, 66, 66, 722, 723, 66, 623, 66, 88, - 353, 627, 715, 854, 71, 856, 71, 70, 66, 621, - 649, 650, 35, 35, 65, 65, 65, 89, 646, 722, - 723, 721, 634, 649, 650, 876, 129, 790, 89, 65, - 89, 888, 88, 715, 715, 715, 715, 676, 677, 678, - 679, 88, 681, 682, 71, 89, 67, 715, 715, 715, - 676, 677, 678, 679, 66, 681, 682, 908, 710, 698, - 699, 66, 825, 66, 89, 828, 923, 722, 723, 34, - 70, 70, 698, 699, 70, 424, 425, 426, 427, 70, - 720, 721, 722, 723, 70, 128, 70, 70, 851, 722, - 723, 70, 65, 65, 88, 65, 67, 779, 779, 779, - 779, 814, 865, 88, 426, 427, 428, 429, 779, 89, - 66, 779, 779, 779, 722, 723, 70, 66, 66, 188, - 88, 8, 89, 89, 65, 228, 889, 890, 89, 232, - 89, 88, 814, 814, 814, 814, 67, 776, 777, 89, - 903, 904, 824, 824, 824, 824, 814, 814, 814, 73, - 776, 777, 73, 824, 917, 88, 824, 824, 824, 922, - 89, 88, 205, 73, 207, 66, 515, 516, 931, 821, - 822, 66, 71, 88, 243, 88, 65, 88, 40, 532, - 88, 534, 251, 252, 796, 67, 535, 536, 231, 67, - 632, 629, 844, 845, 516, 807, 630, 266, 522, 610, - 659, 745, 884, 884, 884, 884, 521, 747, 779, 418, - 884, 884, 530, 535, 536, 879, 884, 884, 884, 617, - 417, 416, 420, 2, -1, 419, 295, 689, 297, 828, - 890, 883, 922, 336, -1, -1, -1, 340, -1, -1, - -1, 563, 854, 596, 856, -1, -1, -1, -1, 318, - 353, 604, -1, -1, -1, -1, -1, -1, -1, 911, - 912, -1, -1, -1, 876, -1, 55, 56, 57, 58, - 59, 60, 61, 62, 63, 64, -1, -1, -1, -1, - -1, 630, -1, 632, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 646, -1, -1, 908, -1, -1, 4, - 5, 90, -1, -1, 9, 348, 349, 350, -1, 352, - 15, -1, -1, -1, 19, 20, 21, 22, -1, -1, - 25, 26, -1, -1, -1, 30, 675, -1, -1, -1, - 373, 680, -1, -1, 403, 404, 405, 406, 407, 408, - 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, - 419, 420, -1, 675, -1, -1, -1, -1, 680, -1, - -1, -1, -1, -1, -1, -1, -1, 720, 721, 722, - 723, 720, 721, 722, 723, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 92, 93, 94, - -1, -1, -1, -1, -1, -1, -1, 102, 103, -1, - 722, 723, -1, 108, 109, 110, -1, 112, 113, 114, - -1, 116, 117, 118, 119, -1, -1, 739, -1, 124, - 125, 126, -1, -1, -1, -1, 3, 4, 5, 532, - -1, 534, 9, -1, -1, -1, 13, 14, 15, 16, - -1, -1, 19, 20, 21, 22, -1, -1, 25, 26, - -1, -1, -1, 30, -1, -1, 33, -1, -1, -1, - 3, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 13, 14, -1, 16, -1, -1, 19, -1, -1, -1, - -1, -1, -1, -1, -1, 554, -1, 30, -1, -1, - 33, -1, -1, 596, -1, -1, -1, -1, -1, -1, - -1, 604, -1, 546, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 92, 93, 94, -1, -1, - -1, -1, -1, -1, 593, 102, 103, -1, -1, -1, - -1, 108, 109, 110, -1, 112, 113, 114, -1, 116, - 117, 118, 119, 646, -1, -1, 19, 124, 125, 126, - -1, 94, 621, 596, -1, -1, -1, 30, -1, 102, - 103, 604, 35, -1, -1, 634, 109, 110, -1, 112, - 113, 114, -1, 116, 117, -1, -1, -1, 121, 122, - 123, 124, 125, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 65, -1, -1, -1, -1, -1, -1, 72, - -1, -1, -1, 76, -1, 674, -1, -1, -1, -1, + 2, 2, 2, 2, 2, 122, 611, 387, 2, 2, + 40, 2, 343, 67, 2, 2, 2, 311, 188, 615, + 538, 11, 66, 67, 26, 373, 373, 2, 651, 100, + 129, 130, 72, 36, 74, 89, 317, 27, 40, 40, + 40, 40, 867, 53, 115, 265, 40, 40, 7, 100, + 9, 26, 40, 40, 40, 14, 237, 238, 239, 11, + 0, 128, 54, 9, 115, 40, 891, 228, 14, 72, + 204, 232, 35, 130, 70, 27, 296, 87, 35, 42, + 905, 253, 548, 549, 550, 42, 67, 102, 103, 64, + 65, 66, 67, 66, 67, 67, 88, 181, 67, 54, + 73, 74, 75, 76, 77, 78, 79, 80, 89, 35, + 83, 84, 897, 76, 71, 65, 42, 89, 73, 71, + 89, 123, 123, 123, 123, 54, 911, 35, 130, 228, + 266, 267, 123, 232, 233, 123, 123, 123, 205, 65, + 207, 65, 117, 928, 73, 66, 67, 317, 72, 705, + 76, 110, 76, 66, 67, 130, 67, 65, 79, 80, + 73, 74, 88, 89, 231, 124, 803, 126, 76, 253, + 193, 808, 216, 217, 35, 67, 233, 88, 124, 802, + 126, 42, 212, 403, 404, 405, 320, 321, 360, 67, + 362, 352, 65, 66, 371, 329, 330, 369, 370, 72, + 35, 65, 67, 72, 35, 74, 71, 42, 385, 70, + 212, 212, 212, 212, 770, 65, 218, 218, 218, 218, + 65, 90, 399, 267, 212, 212, 212, 218, 400, 35, + 218, 218, 218, 66, 65, 70, 335, 336, 236, 237, + 238, 239, 35, 216, 217, 76, 423, 595, 595, 516, + 367, 66, 67, 352, 65, 603, 603, 88, 233, 65, + 67, 72, 48, 49, 71, 215, 72, 338, 83, 84, + 76, 221, 65, 869, 740, 741, 360, 89, 362, 336, + 347, 348, 349, 76, 351, 841, 842, 338, 424, 425, + 426, 427, 65, 66, 709, 216, 217, 83, 84, 72, + 65, 35, 386, 216, 217, 66, 373, 72, 42, 311, + 311, 311, 311, 67, 35, 609, 400, 311, 311, 73, + 322, 42, 322, 311, 311, 311, 882, 883, 708, 331, + 935, 331, 188, 553, 336, 940, 70, 421, 340, 620, + 35, 73, 72, 75, 74, 77, 267, 79, 866, 35, + 271, 83, 633, 70, 267, 268, 42, 624, 539, 540, + 90, 628, 629, 410, 411, 412, 413, 424, 425, 89, + 65, 532, 374, 534, 43, 44, 45, 72, 35, 65, + 35, 76, 426, 427, 35, 42, 242, 42, 77, 78, + 76, 42, 46, 47, 250, 251, 65, 356, 357, 358, + 359, 216, 217, 72, 2, 74, 821, 822, 65, 265, + 356, 357, 358, 359, 65, 72, 35, 35, 89, 76, + 50, 51, 592, 42, 42, 76, 562, 25, 26, 70, + 845, 846, 70, 532, 35, 534, 535, 88, 294, 616, + 296, 42, 40, 76, 65, 66, 70, 65, 81, 82, + 620, 72, 267, 426, 427, 428, 429, 272, 76, 66, + 67, 317, 533, 633, 65, 70, 64, 65, 66, 67, + 885, 70, 516, 70, 651, 76, 66, 67, 535, 546, + 65, 66, 533, 72, 645, 74, 35, 72, 65, 66, + 662, 663, 669, 42, 714, 72, 66, 67, 913, 914, + 35, 90, 70, 673, 70, 426, 427, 66, 67, 511, + 512, 511, 512, 426, 427, 89, 65, 798, 849, 117, + 66, 67, 524, 525, 524, 525, 807, 76, 595, 66, + 67, 129, 130, 97, 98, 99, 603, 89, 674, 596, + 72, 539, 540, 679, 66, 67, 645, 403, 404, 405, + 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, + 416, 417, 418, 419, 420, 515, 65, 129, 36, 746, + 66, 67, 66, 67, 66, 856, 66, 858, 55, 56, + 57, 58, 59, 60, 61, 62, 63, 64, 66, 67, + 198, 199, 406, 407, 596, 516, 70, 878, 665, 408, + 409, 70, 604, 516, 414, 415, 70, 609, 609, 609, + 609, 426, 427, 90, 70, 609, 609, 674, 795, 70, + 35, 609, 609, 609, 65, 802, 65, 65, 798, 910, + 228, 66, 36, 75, 232, 233, 85, 807, 86, 25, + 52, 643, 643, 643, 643, 647, 647, 647, 647, 643, + 643, 35, 73, 647, 647, 643, 643, 643, 66, 647, + 647, 647, 779, 622, 66, 115, 228, 626, 66, 66, + 232, 67, 67, 73, 67, 65, 622, 721, 722, 90, + 626, 631, 35, 767, 714, 90, 856, 771, 858, 648, + 649, 775, 776, 66, 66, 66, 428, 553, 67, 67, + 67, 516, 648, 649, 66, 66, 66, 66, 878, 66, + 66, 88, 714, 714, 714, 714, 675, 676, 677, 678, + 71, 680, 681, 71, 70, 66, 714, 714, 714, 675, + 676, 677, 678, 2, 680, 681, 592, 335, 697, 698, + 910, 339, 35, 129, 719, 720, 721, 722, 721, 722, + 35, 697, 698, 89, 352, 65, 89, 65, 65, 65, + 844, 88, 88, 67, 620, 89, 71, 66, 791, 66, + 720, 40, 66, 335, 89, 89, 34, 633, 780, 780, + 780, 780, 70, 70, 814, 65, 70, 70, 70, 780, + 352, 70, 780, 780, 780, 64, 65, 66, 67, 70, + 721, 722, 825, 70, 65, 828, 890, 88, 721, 722, + 67, 89, 814, 814, 814, 814, 65, 673, 777, 778, + 88, 66, 824, 824, 824, 824, 814, 814, 814, 852, + 70, 777, 778, 824, 88, 66, 824, 824, 824, 89, + 66, 925, 228, 89, 867, 89, 232, 8, 117, 65, + 89, 88, 67, 89, 73, 73, 88, 66, 714, 89, + 88, 73, 66, 66, 67, 71, 88, 88, 891, 892, + 73, 74, 75, 76, 77, 78, 79, 80, 65, 67, + 83, 84, 905, 906, 886, 886, 886, 886, 88, 88, + 67, 40, 886, 886, 631, 628, 919, 522, 886, 886, + 886, 924, 629, 609, 521, 742, 721, 722, 795, 748, + 933, 881, 780, 616, 117, 530, 416, 418, 420, 417, + 688, 2, 419, 828, 892, -1, -1, 924, 3, -1, + -1, -1, -1, -1, 532, -1, 534, -1, 13, 14, + -1, 16, 798, -1, 19, 214, 215, 216, 217, 335, + 219, 807, 221, 339, -1, 30, -1, -1, 33, -1, + -1, -1, -1, -1, 233, -1, 352, -1, -1, -1, + 532, -1, 534, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 94, -1, 666, -1, -1, -1, -1, -1, 102, - 103, -1, -1, -1, -1, -1, 109, 110, -1, 112, - 113, 114, -1, 116, 117, -1, 715, -1, -1, -1, - -1, 124, 125, -1, -1, -1, 3, 4, 5, 6, - 7, -1, 9, 10, -1, 12, 13, 14, 15, 16, - 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, - -1, 28, 29, 30, 31, 32, 33, 34, 35, 36, - 37, 38, 39, 40, 41, 42, -1, 44, 45, -1, - -1, -1, -1, -1, -1, 52, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 595, -1, -1, + 856, -1, 858, -1, -1, 603, -1, -1, -1, -1, + -1, -1, -1, 216, 217, -1, -1, -1, -1, 94, + -1, -1, 878, -1, -1, -1, -1, 102, 103, -1, + 233, -1, 107, 595, 109, 110, -1, 112, 113, 114, + -1, 116, 117, -1, -1, -1, -1, 645, -1, 124, + 125, -1, -1, -1, 910, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 267, 268, 269, 270, 271, 272, + -1, -1, -1, -1, -1, -1, 3, 4, 5, 6, + -1, -1, 9, 645, -1, 12, 13, 14, 15, 16, + -1, 18, 19, 20, 21, 22, -1, -1, 25, 26, + -1, -1, -1, 30, -1, -1, 33, -1, 35, -1, + -1, -1, -1, -1, -1, 42, -1, -1, -1, -1, + -1, 719, 720, 721, 722, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 65, -1, - -1, -1, -1, 70, -1, -1, -1, 796, 75, 76, - 77, 78, 79, 80, -1, -1, -1, -1, 807, -1, - -1, -1, 89, -1, -1, 92, 93, 94, 95, 96, - 97, 98, 99, -1, -1, 102, 103, 104, 105, 106, + -1, -1, -1, -1, -1, -1, 532, -1, 534, 76, + -1, -1, -1, -1, -1, 424, 425, 426, 427, -1, + -1, -1, 89, -1, -1, 92, 93, 94, -1, -1, + 97, 98, 99, -1, -1, 102, 103, -1, -1, -1, 107, 108, 109, 110, 111, 112, 113, 114, -1, 116, 117, 118, 119, -1, 121, 122, 123, 124, 125, 126, - -1, -1, -1, -1, -1, 854, -1, 856, -1, -1, - -1, -1, -1, 3, 4, 5, 6, -1, -1, 9, - -1, -1, 12, 13, 14, 15, 16, 876, 18, 19, - 20, 21, 22, -1, -1, 25, 26, -1, -1, 29, - 30, -1, -1, 33, -1, 35, 36, 37, 38, 39, - 40, 41, 42, -1, 44, 45, -1, -1, -1, 908, - -1, -1, 52, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 65, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 75, 76, 77, 78, 79, - 80, -1, -1, -1, -1, -1, 19, -1, -1, -1, - -1, -1, 92, 93, 94, 95, 96, 30, -1, -1, - -1, -1, 102, 103, 104, 105, 106, 107, 108, 109, - 110, 111, 112, 113, 114, -1, 116, 117, 118, 119, - -1, 121, 122, 123, 124, 125, 126, 3, 4, 5, - 6, -1, -1, 9, -1, -1, 12, 13, 14, 15, - 16, -1, 18, 19, 20, 21, 22, -1, -1, 25, - 26, -1, -1, -1, 30, -1, -1, 33, -1, 35, - -1, 94, -1, -1, -1, -1, 42, -1, -1, 102, - 103, -1, -1, -1, 107, -1, 109, 110, -1, 112, - 113, 114, -1, 116, 117, 3, -1, -1, -1, 65, - -1, 124, 125, -1, -1, 13, 14, -1, 16, -1, - 76, 19, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 30, 89, -1, 33, 92, 93, 94, -1, - -1, 97, 98, 99, -1, -1, 102, 103, -1, -1, - -1, 107, 108, 109, 110, 111, 112, 113, 114, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 595, + -1, -1, -1, -1, -1, -1, -1, 603, -1, -1, + -1, -1, -1, 426, 427, 428, 429, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 515, 516, -1, -1, + -1, -1, 19, -1, -1, -1, -1, -1, -1, 645, + -1, -1, -1, 30, -1, -1, 535, 536, -1, -1, + -1, -1, -1, -1, -1, 3, 4, 5, 6, -1, + -1, 9, -1, -1, 12, 13, 14, 15, 16, -1, + 18, 19, 20, 21, 22, -1, -1, 25, 26, -1, + -1, -1, 30, -1, -1, 33, -1, 35, -1, -1, + -1, -1, -1, 516, 42, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 94, -1, -1, + -1, -1, 535, 536, -1, 102, 103, 65, -1, -1, + -1, -1, 109, 110, 72, 112, 113, 114, 76, 116, + 117, -1, -1, -1, 121, 122, 123, 124, 125, 562, + 629, -1, 631, -1, 92, 93, 94, -1, -1, -1, + -1, -1, 19, -1, 102, 103, -1, -1, -1, 107, + 108, 109, 110, 30, 112, 113, 114, -1, 116, 117, + 118, 119, -1, 121, 122, 123, 124, 125, 126, -1, + -1, 3, 4, 5, -1, 674, -1, 9, -1, -1, + 679, 13, 14, 15, 16, -1, -1, 19, 20, 21, + 22, -1, -1, 25, 26, -1, -1, -1, 30, -1, + -1, 33, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, 94, -1, -1, + 719, 720, 721, 722, -1, 102, 103, -1, -1, -1, + 107, -1, 109, 110, -1, 112, 113, 114, -1, 116, + 117, 674, -1, -1, -1, -1, 679, 124, 125, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 92, 93, 94, -1, -1, -1, -1, -1, -1, -1, + 102, 103, -1, -1, -1, -1, 108, 109, 110, -1, + 112, 113, 114, -1, 116, 117, 118, 119, 721, 722, + -1, -1, 124, 125, 126, -1, -1, 3, 4, 5, + 6, 7, -1, 9, 10, 738, 12, 13, 14, 15, + 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, + 26, -1, 28, 29, 30, 31, 32, 33, 34, 35, + 36, 37, 38, 39, 40, 41, 42, -1, 44, 45, + -1, -1, -1, -1, -1, -1, 52, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, 65, + -1, -1, -1, -1, 70, -1, -1, -1, -1, 75, + 76, 77, 78, 79, 80, -1, -1, -1, -1, -1, + -1, -1, -1, 89, -1, -1, 92, 93, 94, 95, + 96, 97, 98, 99, -1, -1, 102, 103, 104, 105, + 106, 107, 108, 109, 110, 111, 112, 113, 114, -1, 116, 117, 118, 119, -1, 121, 122, 123, 124, 125, 126, 3, 4, 5, 6, -1, -1, 9, -1, -1, 12, 13, 14, 15, 16, -1, 18, 19, 20, 21, - 22, 89, -1, 25, 26, -1, 94, -1, 30, -1, - -1, 33, -1, 35, 102, 103, -1, -1, -1, -1, - 42, 109, 110, -1, 112, 113, 114, -1, 116, 117, - -1, -1, -1, -1, -1, -1, 124, 125, -1, -1, - -1, -1, -1, 65, -1, -1, -1, 3, -1, -1, - 72, -1, -1, -1, 76, -1, -1, 13, 14, -1, - 16, -1, -1, 19, -1, -1, -1, -1, -1, -1, - 92, 93, 94, -1, 30, -1, -1, 33, -1, -1, - 102, 103, -1, -1, -1, 107, 108, 109, 110, -1, + 22, -1, -1, 25, 26, -1, -1, 29, 30, -1, + -1, 33, -1, 35, 36, 37, 38, 39, 40, 41, + 42, -1, 44, 45, -1, -1, -1, -1, -1, -1, + 52, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 65, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 75, 76, 77, 78, 79, 80, -1, + -1, -1, -1, -1, -1, -1, 19, -1, -1, -1, + 92, 93, 94, 95, 96, 28, -1, 30, -1, -1, + 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, -1, 116, 117, 118, 119, -1, 121, 122, 123, 124, 125, 126, 3, 4, 5, 6, -1, - -1, 9, -1, -1, 12, 13, 14, 15, 16, -1, + -1, 9, 65, -1, 12, 13, 14, 15, 16, -1, 18, 19, 20, 21, 22, -1, -1, 25, 26, -1, - -1, -1, 30, 89, -1, 33, -1, 35, 94, -1, - -1, -1, -1, -1, 42, -1, 102, 103, -1, -1, - -1, -1, -1, 109, 110, -1, 112, 113, 114, -1, - 116, 117, -1, -1, -1, -1, -1, 65, 124, 125, - -1, 3, -1, -1, 72, -1, -1, -1, 76, -1, - -1, 13, 14, -1, 16, -1, -1, 19, -1, -1, - -1, -1, -1, -1, 92, 93, 94, -1, 30, -1, - -1, 33, -1, -1, 102, 103, -1, -1, -1, 107, + -1, -1, 30, -1, -1, 33, -1, 35, -1, -1, + -1, 94, -1, -1, 42, -1, -1, -1, -1, 102, + 103, -1, -1, -1, -1, -1, 109, 110, -1, 112, + 113, 114, -1, 116, 117, 4, 5, 65, -1, -1, + 9, 124, 125, -1, 72, -1, 15, -1, 76, -1, + 19, 20, 21, 22, -1, -1, 25, 26, -1, -1, + -1, 30, -1, -1, 92, 93, 94, -1, -1, -1, + -1, -1, -1, -1, 102, 103, -1, -1, -1, 107, 108, 109, 110, -1, 112, 113, 114, -1, 116, 117, 118, 119, -1, 121, 122, 123, 124, 125, 126, 3, 4, 5, 6, -1, -1, 9, -1, -1, 12, 13, 14, 15, 16, -1, 18, 19, 20, 21, 22, -1, - -1, 25, 26, -1, -1, -1, 30, -1, -1, 33, - -1, 35, 94, -1, -1, -1, -1, -1, 42, -1, - 102, 103, -1, -1, -1, 107, -1, 109, 110, -1, - 112, 113, 114, -1, 116, 117, -1, 3, -1, -1, - -1, 65, 124, 125, -1, -1, -1, 13, 14, -1, - 16, -1, 76, 19, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, 30, -1, -1, 33, 92, 93, - 94, -1, -1, -1, -1, -1, -1, -1, 102, 103, - 19, -1, -1, 107, 108, 109, 110, -1, 112, 113, - 114, 30, 116, 117, 118, 119, -1, 121, 122, 123, + -1, 25, 26, 92, 93, 94, 30, -1, -1, 33, + -1, 35, -1, 102, 103, -1, -1, -1, 42, 108, + 109, 110, -1, 112, 113, 114, -1, 116, 117, 118, + 119, -1, -1, -1, -1, 124, 125, 126, -1, -1, + -1, 65, -1, -1, -1, -1, -1, -1, -1, -1, + 3, -1, 76, -1, -1, -1, -1, -1, -1, -1, + 13, 14, -1, 16, -1, -1, 19, -1, 92, 93, + 94, -1, -1, -1, -1, -1, -1, 30, 102, 103, + 33, -1, -1, 107, 108, 109, 110, -1, 112, 113, + 114, -1, 116, 117, 118, 119, -1, 121, 122, 123, 124, 125, 126, 3, 4, 5, 6, -1, -1, 9, -1, -1, 12, 13, 14, 15, 16, -1, 18, 19, - 20, 21, 22, -1, -1, 25, 26, -1, 94, -1, - 30, -1, -1, 33, -1, 35, 102, 103, -1, -1, - -1, -1, 42, 109, 110, -1, 112, 113, 114, -1, - 116, 117, -1, -1, -1, 94, -1, -1, 124, 125, - -1, -1, -1, 102, 103, 65, -1, -1, -1, -1, - 109, 110, -1, 112, 113, 114, 76, 116, 117, -1, - -1, -1, 121, 122, 123, 124, 125, -1, 19, -1, - -1, -1, 92, 93, 94, -1, -1, 28, -1, 30, - -1, -1, 102, 103, -1, -1, -1, 107, 108, 109, + 20, 21, 22, -1, -1, 25, 26, -1, -1, -1, + 30, -1, -1, 33, -1, 35, -1, -1, -1, -1, + -1, 94, 42, -1, -1, -1, -1, -1, -1, 102, + 103, -1, -1, -1, -1, -1, 109, 110, -1, 112, + 113, 114, -1, 116, 117, 65, -1, -1, 121, 122, + 123, 124, 125, -1, 3, -1, 76, -1, -1, -1, + -1, -1, -1, -1, 13, 14, -1, 16, -1, -1, + 19, -1, 92, 93, 94, -1, -1, -1, -1, -1, + -1, 30, 102, 103, 33, -1, -1, 107, 108, 109, 110, -1, 112, 113, 114, -1, 116, 117, 118, 119, -1, 121, 122, 123, 124, 125, 126, 3, 4, 5, - 6, -1, -1, 9, 65, -1, 12, 13, 14, 15, + 6, -1, -1, 9, -1, -1, 12, 13, 14, 15, 16, -1, 18, 19, 20, 21, 22, -1, -1, 25, 26, -1, -1, -1, 30, -1, -1, 33, -1, 35, - -1, -1, -1, 94, -1, -1, 42, -1, -1, -1, - -1, 102, 103, -1, -1, -1, -1, -1, 109, 110, - -1, 112, 113, 114, -1, 116, 117, -1, -1, 65, - -1, -1, -1, 124, 125, -1, -1, -1, -1, -1, - 76, 19, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, 30, -1, -1, -1, 92, 93, 94, -1, - -1, -1, -1, -1, -1, -1, 102, 103, -1, -1, + 89, -1, -1, -1, -1, 94, 42, -1, -1, -1, + -1, -1, -1, 102, 103, -1, -1, -1, -1, -1, + 109, 110, -1, 112, 113, 114, -1, 116, 117, 65, + -1, -1, -1, 3, -1, 124, 125, -1, -1, -1, + 76, -1, -1, 13, 14, -1, 16, -1, -1, 19, + -1, -1, -1, -1, -1, -1, 92, 93, 94, -1, + 30, -1, -1, 33, -1, -1, 102, 103, -1, -1, -1, 107, 108, 109, 110, -1, 112, 113, 114, -1, 116, 117, 118, 119, -1, 121, 122, 123, 124, 125, 126, 3, 4, 5, 6, -1, -1, 9, -1, -1, 12, 13, 14, 15, 16, -1, 18, 19, 20, 21, - 22, -1, -1, 25, 26, -1, 94, -1, 30, -1, - -1, 33, -1, 35, 102, 103, -1, -1, -1, -1, - 42, 109, 110, -1, 112, 113, 114, -1, 116, 117, - -1, -1, -1, -1, -1, -1, 124, 125, -1, -1, - -1, -1, -1, 65, -1, -1, -1, -1, -1, -1, + 22, -1, -1, 25, 26, -1, -1, -1, 30, 89, + -1, 33, -1, 35, 94, -1, -1, -1, -1, -1, + 42, -1, 102, 103, -1, -1, -1, -1, -1, 109, + 110, -1, 112, 113, 114, -1, 116, 117, -1, -1, + -1, -1, -1, 65, 124, 125, -1, -1, -1, -1, -1, -1, -1, -1, 76, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 92, 93, 94, -1, -1, -1, -1, -1, -1, -1, @@ -1677,18 +1675,18 @@ public static class yycheck_wrapper { 94, -1, -1, -1, -1, -1, -1, -1, 102, 103, -1, -1, -1, 107, 108, 109, 110, -1, 112, 113, 114, -1, 116, 117, 118, 119, -1, 121, 122, 123, - 124, 125, 126, -1, -1, -1, -1, -1, -1, -1, - -1, 92, 93, 94, -1, -1, -1, -1, -1, -1, + 124, 125, 126, -1, 19, -1, -1, -1, -1, -1, + -1, 92, 93, 94, -1, 30, -1, -1, -1, -1, -1, 102, 103, -1, -1, -1, 107, 108, 109, 110, -1, 112, 113, 114, -1, 116, 117, 118, 119, -1, 121, 122, 123, 124, 125, 126, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, - 27, 28, 29, 30, 31, 32, 33, 34, 35, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + 27, 28, 29, 30, 31, 32, 33, 34, 35, 94, + -1, -1, -1, -1, -1, -1, -1, 102, 103, -1, + -1, -1, -1, -1, 109, 110, -1, 112, 113, 114, + -1, 116, 117, -1, -1, -1, -1, -1, -1, 124, + 125, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 91, 92, 93, 94, 95, 96, 97, 98, 99, -1, -1, 102, 103, 104, 105, 106, @@ -1700,19 +1698,19 @@ public static class yycheck_wrapper { 35, 36, 37, 38, 39, 40, 41, 42, -1, 44, 45, -1, -1, -1, -1, -1, -1, 52, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 65, -1, -1, -1, -1, -1, -1, -1, -1, -1, - 75, 76, 77, 78, 79, 80, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, 92, 93, 94, - 95, 96, -1, -1, -1, -1, -1, 102, 103, 104, + 65, -1, -1, -1, -1, -1, 3, -1, -1, -1, + 75, 76, 77, 78, 79, 80, 13, 14, -1, 16, + -1, -1, 19, -1, -1, -1, -1, 92, 93, 94, + 95, 96, -1, 30, -1, -1, 33, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, -1, 116, 117, 118, 119, -1, 121, 122, 123, 124, 125, 126, 4, 5, 6, -1, -1, 9, -1, -1, 12, -1, -1, 15, -1, -1, 18, 19, 20, 21, 22, -1, -1, 25, 26, -1, -1, -1, 30, -1, - -1, -1, -1, 35, -1, -1, -1, -1, -1, -1, - 42, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 65, -1, -1, -1, -1, -1, -1, + -1, -1, -1, 35, -1, -1, -1, 94, -1, -1, + 42, -1, -1, -1, -1, 102, 103, -1, -1, -1, + -1, -1, 109, 110, -1, 112, 113, 114, -1, 116, + 117, -1, -1, 65, -1, -1, -1, 124, 125, -1, -1, -1, -1, -1, 76, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 88, 89, -1, -1, 92, 93, 94, -1, -1, -1, -1, -1, -1, -1, @@ -1803,103 +1801,111 @@ public static class yycheck_wrapper { -1, -1, 94, -1, -1, 65, -1, -1, -1, -1, 102, 103, -1, -1, -1, 19, 76, 109, 110, -1, 112, 113, 114, -1, 116, 117, 30, -1, -1, 65, - -1, 35, 124, 125, 94, -1, -1, -1, -1, -1, + -1, 35, 124, 125, 94, -1, 72, -1, -1, -1, 76, -1, 102, 103, -1, -1, -1, -1, -1, 109, 110, -1, 112, 113, 114, -1, 116, 117, 94, -1, - -1, 65, -1, -1, 124, 125, 102, 103, -1, -1, - -1, 19, 76, 109, 110, -1, 112, 113, 114, -1, - 116, 117, 30, -1, -1, -1, -1, -1, 124, 125, - 94, -1, -1, -1, -1, -1, -1, -1, 102, 103, + -1, 65, -1, -1, 124, 125, 102, 103, 19, -1, + -1, -1, 76, 109, 110, -1, 112, 113, 114, 30, + 116, 117, -1, -1, 35, 19, -1, -1, 124, 125, + 94, -1, -1, -1, -1, -1, 30, -1, 102, 103, -1, -1, -1, -1, -1, 109, 110, -1, 112, 113, - 114, -1, 116, 117, -1, -1, -1, 65, -1, -1, - 124, 125, -1, -1, 72, -1, -1, -1, 76, -1, + 114, -1, 116, 117, 65, -1, -1, -1, -1, -1, + 124, 125, -1, -1, -1, 76, -1, -1, -1, -1, + -1, 65, -1, -1, -1, -1, -1, -1, 72, -1, + -1, -1, 76, 94, -1, -1, -1, -1, -1, -1, + -1, 102, 103, -1, -1, -1, -1, -1, 109, 110, + 94, 112, 113, 114, -1, 116, 117, -1, 102, 103, + -1, -1, -1, 124, 125, 109, 110, -1, 112, 113, + 114, -1, 116, 117, 7, -1, -1, 10, -1, -1, + 124, 125, -1, -1, 17, -1, -1, -1, -1, -1, + 23, 24, -1, -1, -1, 28, 29, -1, 31, 32, + -1, 34, 35, 36, 37, 38, 39, 40, 41, 42, + -1, 44, 45, -1, -1, -1, -1, -1, -1, 52, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, 94, -1, -1, -1, - -1, -1, -1, -1, 102, 103, -1, 7, -1, -1, - 10, 109, 110, -1, 112, 113, 114, 17, 116, 117, - -1, -1, -1, 23, 24, -1, 124, 125, 28, 29, - -1, 31, 32, -1, 34, 35, 36, 37, 38, 39, - 40, 41, 42, -1, 44, 45, -1, -1, -1, -1, - -1, -1, 52, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 65, -1, -1, -1, -1, - 70, -1, -1, -1, -1, 75, 76, 77, 78, 79, - 80, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, 95, 96, 97, 98, 99, - -1, -1, -1, -1, 104, 105, 106, 29, -1, -1, - -1, 111, -1, 35, 36, 37, 38, 39, 40, 41, - -1, -1, 44, 45, -1, -1, -1, -1, -1, -1, - 52, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 65, -1, -1, -1, -1, 70, 71, - 72, -1, 74, 75, 76, 77, 78, 79, 80, -1, + -1, -1, 65, -1, -1, -1, -1, 70, -1, -1, + -1, -1, 75, 76, 77, 78, 79, 80, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, -1, -1, 95, 96, -1, -1, -1, -1, -1, - -1, -1, 104, 105, 106, 29, -1, -1, -1, 111, - -1, 35, 36, 37, 38, 39, 40, 41, -1, -1, - 44, 45, -1, -1, -1, -1, -1, -1, 52, -1, + -1, -1, 95, 96, 97, 98, 99, -1, -1, -1, + -1, 104, 105, 106, 29, -1, -1, -1, 111, -1, + 35, 36, 37, 38, 39, 40, 41, -1, -1, 44, + 45, -1, -1, -1, -1, -1, -1, 52, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 65, -1, -1, -1, -1, 70, -1, 72, -1, - 74, 75, 76, 77, 78, 79, 80, -1, -1, -1, + 65, -1, -1, -1, -1, 70, 71, 72, -1, 74, + 75, 76, 77, 78, 79, 80, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, - -1, 95, 96, -1, -1, -1, -1, -1, -1, -1, - 104, 105, 106, 29, -1, -1, -1, 111, -1, 35, - 36, 37, 38, 39, 40, 41, -1, -1, 44, 45, - -1, -1, -1, -1, -1, 29, 52, -1, -1, -1, - -1, 35, 36, 37, 38, 39, 40, 41, -1, 65, - 44, 45, -1, -1, -1, -1, -1, 73, 52, 75, - 76, 77, 78, 79, 80, -1, -1, -1, -1, -1, - -1, 65, 66, -1, -1, -1, -1, -1, -1, 95, - 96, 75, 76, 77, 78, 79, 80, -1, 104, 105, - 106, -1, -1, -1, -1, 111, -1, -1, -1, -1, - -1, 95, 96, -1, -1, -1, -1, -1, -1, -1, - 104, 105, 106, 29, -1, -1, -1, 111, -1, 35, - 36, 37, 38, 39, 40, 41, -1, -1, 44, 45, - -1, -1, -1, -1, -1, 29, 52, -1, -1, -1, - -1, 35, 36, 37, 38, 39, 40, 41, -1, 65, - 44, 45, -1, -1, -1, -1, -1, -1, 52, 75, - 76, 77, 78, 79, 80, -1, -1, -1, -1, -1, - -1, 65, 88, -1, -1, -1, 70, -1, -1, 95, - 96, 75, 76, 77, 78, 79, 80, -1, 104, 105, - 106, -1, -1, -1, -1, 111, -1, -1, -1, -1, - -1, 95, 96, -1, -1, -1, -1, -1, -1, -1, - 104, 105, 106, 29, -1, -1, -1, 111, -1, 35, - 36, 37, 38, 39, 40, 41, -1, -1, 44, 45, - -1, -1, -1, -1, -1, 29, 52, -1, -1, -1, - -1, 35, 36, 37, 38, 39, 40, 41, -1, 65, - 44, 45, -1, -1, 70, -1, -1, -1, 52, 75, - 76, 77, 78, 79, 80, -1, -1, -1, -1, -1, - -1, 65, 66, -1, -1, -1, -1, -1, -1, 95, - 96, 75, 76, 77, 78, 79, 80, -1, 104, 105, - 106, -1, -1, -1, -1, 111, -1, -1, -1, -1, - -1, 95, 96, -1, -1, -1, -1, -1, -1, -1, - 104, 105, 106, 29, -1, -1, -1, 111, -1, 35, - 36, 37, 38, 39, 40, 41, -1, -1, 44, 45, - -1, -1, -1, -1, -1, 29, 52, -1, -1, -1, - -1, 35, 36, 37, 38, 39, 40, 41, -1, 65, - 44, 45, -1, -1, -1, -1, -1, -1, 52, 75, - 76, 77, 78, 79, 80, -1, -1, -1, -1, -1, - -1, 65, -1, 89, -1, -1, -1, -1, -1, 95, - 96, 75, 76, 77, 78, 79, 80, -1, 104, 105, - 106, -1, -1, -1, -1, 111, -1, -1, -1, -1, - -1, 95, 96, -1, -1, -1, -1, -1, -1, -1, - 104, 105, 106, 29, -1, -1, -1, 111, -1, 35, - 36, 37, 38, 39, 40, 41, -1, -1, 44, 45, - -1, -1, -1, -1, -1, 29, 52, -1, -1, -1, - -1, 35, 36, 37, 38, 39, 40, 41, -1, 65, - 44, 45, -1, -1, -1, -1, -1, -1, 52, 75, - 76, 77, 78, 79, 80, -1, -1, -1, -1, -1, - -1, 65, -1, -1, -1, -1, -1, -1, -1, 95, - 96, 75, 76, 77, 78, 79, 80, -1, 104, 105, - 106, -1, -1, -1, -1, 111, -1, -1, -1, -1, - -1, 95, 96, -1, -1, -1, -1, -1, -1, -1, - 104, 105, 106, 29, -1, -1, -1, 111, -1, 35, - 36, 37, 38, 39, 40, 41, -1, -1, 44, 45, - -1, -1, -1, -1, -1, -1, 52, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 65, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 75, - 76, 77, 78, 79, 80, -1, -1, -1, -1, -1, - -1, -1, -1, -1, -1, -1, -1, -1, -1, 95, - 96, -1, -1, -1, -1, -1, -1, -1, 104, 105, - 106, -1, -1, -1, -1, 111 + 95, 96, -1, -1, -1, -1, -1, -1, -1, 104, + 105, 106, 29, -1, -1, -1, 111, -1, 35, 36, + 37, 38, 39, 40, 41, -1, -1, 44, 45, -1, + -1, -1, -1, -1, -1, 52, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 65, -1, + -1, -1, -1, 70, -1, 72, -1, 74, 75, 76, + 77, 78, 79, 80, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, 95, 96, + -1, -1, -1, -1, -1, -1, -1, 104, 105, 106, + 29, -1, -1, -1, 111, -1, 35, 36, 37, 38, + 39, 40, 41, -1, -1, 44, 45, -1, -1, -1, + -1, -1, 29, 52, -1, -1, -1, -1, 35, 36, + 37, 38, 39, 40, 41, -1, 65, 44, 45, -1, + -1, -1, -1, -1, 73, 52, 75, 76, 77, 78, + 79, 80, -1, -1, -1, -1, -1, -1, 65, 66, + -1, -1, -1, -1, -1, -1, 95, 96, 75, 76, + 77, 78, 79, 80, -1, 104, 105, 106, -1, -1, + -1, -1, 111, -1, -1, -1, -1, -1, 95, 96, + -1, -1, -1, -1, -1, -1, -1, 104, 105, 106, + 29, -1, -1, -1, 111, -1, 35, 36, 37, 38, + 39, 40, 41, -1, -1, 44, 45, -1, -1, -1, + -1, -1, 29, 52, -1, -1, -1, -1, 35, 36, + 37, 38, 39, 40, 41, -1, 65, 44, 45, -1, + -1, -1, -1, -1, -1, 52, 75, 76, 77, 78, + 79, 80, -1, -1, -1, -1, -1, -1, 65, 88, + -1, -1, -1, 70, -1, -1, 95, 96, 75, 76, + 77, 78, 79, 80, -1, 104, 105, 106, -1, -1, + -1, -1, 111, -1, -1, -1, -1, -1, 95, 96, + -1, -1, -1, -1, -1, -1, -1, 104, 105, 106, + 29, -1, -1, -1, 111, -1, 35, 36, 37, 38, + 39, 40, 41, -1, -1, 44, 45, -1, -1, -1, + -1, -1, -1, 52, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 65, 66, -1, -1, + -1, -1, -1, -1, -1, -1, 75, 76, 77, 78, + 79, 80, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, -1, -1, 95, 96, -1, -1, + -1, -1, -1, -1, -1, 104, 105, 106, 29, -1, + -1, -1, 111, -1, 35, 36, 37, 38, 39, 40, + 41, -1, -1, 44, 45, -1, -1, -1, -1, -1, + -1, 52, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 65, -1, -1, -1, -1, 70, + -1, -1, -1, -1, 75, 76, 77, 78, 79, 80, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, -1, -1, 95, 96, -1, -1, -1, -1, + -1, -1, -1, 104, 105, 106, 29, -1, -1, -1, + 111, -1, 35, 36, 37, 38, 39, 40, 41, -1, + -1, 44, 45, -1, -1, -1, -1, -1, 29, 52, + -1, -1, -1, -1, 35, 36, 37, 38, 39, 40, + 41, -1, 65, 44, 45, -1, -1, -1, -1, -1, + -1, 52, 75, 76, 77, 78, 79, 80, -1, -1, + -1, -1, -1, -1, 65, -1, 89, -1, -1, -1, + -1, -1, 95, 96, 75, 76, 77, 78, 79, 80, + -1, 104, 105, 106, -1, -1, -1, -1, 111, -1, + -1, -1, -1, -1, 95, 96, -1, -1, -1, -1, + -1, -1, -1, 104, 105, 106, 29, -1, -1, -1, + 111, -1, 35, 36, 37, 38, 39, 40, 41, -1, + -1, 44, 45, -1, -1, -1, -1, -1, 29, 52, + -1, -1, -1, -1, 35, 36, 37, 38, 39, 40, + 41, -1, 65, 44, 45, -1, -1, -1, -1, -1, + -1, 52, 75, 76, 77, 78, 79, 80, -1, -1, + -1, -1, -1, -1, 65, -1, -1, -1, -1, -1, + -1, -1, 95, 96, 75, 76, 77, 78, 79, 80, + -1, 104, 105, 106, -1, -1, -1, -1, 111, -1, + -1, -1, -1, -1, 95, 96, -1, -1, -1, -1, + -1, -1, -1, 104, 105, 106, 29, -1, -1, -1, + 111, -1, 35, 36, 37, 38, 39, 40, 41, -1, + -1, 44, 45, -1, -1, -1, -1, -1, -1, 52, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 65, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 75, 76, 77, 78, 79, 80, -1, -1, + -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, + -1, -1, 95, 96, -1, -1, -1, -1, -1, -1, + -1, 104, 105, 106, -1, -1, -1, -1, 111 }; } @@ -1911,94 +1917,95 @@ public static class yystos_wrapper { 94, 97, 98, 99, 102, 103, 107, 108, 109, 110, 111, 112, 113, 114, 116, 117, 118, 119, 121, 122, 123, 124, 125, 126, 132, 133, 134, 135, 140, 141, - 148, 149, 154, 158, 160, 161, 162, 163, 165, 166, - 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, - 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, - 187, 188, 197, 238, 239, 240, 241, 242, 243, 247, - 248, 249, 250, 251, 331, 332, 337, 338, 349, 329, - 330, 331, 329, 329, 240, 248, 250, 163, 238, 250, + 148, 149, 154, 158, 162, 163, 164, 165, 167, 168, + 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, + 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, + 189, 190, 199, 240, 241, 242, 243, 244, 245, 249, + 250, 251, 252, 253, 333, 334, 339, 340, 351, 331, + 332, 333, 331, 331, 242, 250, 252, 165, 240, 252, 135, 149, 136, 137, 67, 153, 67, 152, 42, 65, - 76, 229, 230, 231, 232, 233, 234, 235, 236, 238, - 250, 229, 238, 250, 42, 164, 165, 178, 182, 183, - 184, 187, 238, 250, 42, 165, 178, 182, 183, 184, - 187, 238, 250, 164, 184, 165, 183, 184, 150, 164, - 151, 165, 183, 164, 165, 183, 164, 178, 165, 178, - 183, 65, 164, 182, 165, 182, 183, 65, 72, 244, - 257, 65, 89, 65, 35, 42, 70, 331, 35, 42, - 70, 198, 35, 42, 70, 66, 66, 66, 238, 250, - 70, 264, 111, 148, 160, 161, 162, 163, 274, 329, - 89, 329, 89, 65, 244, 255, 257, 42, 65, 233, - 235, 237, 65, 163, 232, 235, 338, 339, 339, 155, - 156, 89, 89, 29, 35, 36, 37, 38, 39, 40, - 41, 44, 45, 52, 65, 75, 76, 77, 78, 79, - 80, 95, 96, 104, 105, 106, 111, 161, 163, 171, - 173, 175, 177, 181, 218, 285, 286, 287, 288, 289, - 290, 291, 294, 295, 296, 297, 298, 299, 300, 301, - 303, 304, 306, 307, 308, 309, 310, 311, 312, 313, - 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, - 324, 327, 245, 252, 73, 303, 323, 328, 72, 65, - 287, 70, 70, 189, 198, 198, 35, 42, 199, 200, - 70, 70, 189, 255, 255, 265, 65, 76, 238, 248, - 65, 76, 238, 238, 70, 148, 238, 229, 237, 66, - 66, 255, 237, 65, 232, 235, 329, 329, 339, 339, - 65, 303, 65, 303, 303, 35, 218, 292, 327, 65, - 65, 65, 312, 65, 76, 254, 255, 258, 259, 254, + 76, 231, 232, 233, 234, 235, 236, 237, 238, 240, + 252, 231, 240, 252, 42, 166, 167, 180, 184, 185, + 186, 189, 240, 252, 42, 167, 180, 184, 185, 186, + 189, 240, 252, 166, 186, 167, 185, 186, 150, 166, + 151, 167, 185, 166, 167, 185, 166, 180, 167, 180, + 185, 65, 166, 184, 167, 184, 185, 65, 72, 246, + 259, 65, 89, 65, 35, 42, 70, 333, 35, 42, + 70, 200, 35, 42, 70, 66, 66, 66, 240, 252, + 70, 266, 111, 148, 162, 163, 164, 165, 276, 331, + 89, 331, 89, 65, 246, 257, 259, 42, 65, 235, + 237, 239, 65, 165, 234, 237, 159, 160, 155, 156, + 89, 89, 29, 35, 36, 37, 38, 39, 40, 41, + 44, 45, 52, 65, 75, 76, 77, 78, 79, 80, + 95, 96, 104, 105, 106, 111, 163, 165, 173, 175, + 177, 179, 183, 220, 287, 288, 289, 290, 291, 292, + 293, 296, 297, 298, 299, 300, 301, 302, 303, 305, + 306, 308, 309, 310, 311, 312, 313, 314, 315, 316, + 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, + 329, 247, 254, 73, 305, 325, 330, 72, 65, 289, + 70, 70, 191, 200, 200, 35, 42, 201, 202, 70, + 70, 191, 257, 257, 267, 65, 76, 240, 250, 65, + 76, 240, 240, 70, 148, 240, 231, 239, 66, 66, + 257, 239, 65, 234, 237, 340, 341, 341, 341, 341, + 65, 305, 65, 305, 305, 35, 220, 294, 329, 65, + 65, 65, 314, 65, 76, 256, 257, 260, 261, 256, 66, 36, 43, 44, 45, 65, 72, 74, 55, 56, - 57, 58, 59, 60, 61, 62, 63, 64, 90, 325, - 65, 303, 312, 76, 81, 82, 77, 78, 46, 47, + 57, 58, 59, 60, 61, 62, 63, 64, 90, 327, + 65, 305, 314, 76, 81, 82, 77, 78, 46, 47, 48, 49, 83, 84, 50, 51, 75, 85, 86, 52, - 53, 87, 66, 67, 160, 161, 162, 163, 172, 173, - 204, 205, 206, 207, 208, 256, 35, 215, 216, 73, - 328, 3, 4, 5, 6, 7, 8, 9, 10, 11, + 53, 87, 66, 67, 162, 163, 164, 165, 174, 175, + 206, 207, 208, 209, 210, 258, 35, 217, 218, 73, + 330, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 91, 92, 93, 94, 95, 96, 97, 98, 99, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, - 119, 120, 121, 122, 123, 124, 125, 333, 334, 336, - 66, 189, 189, 71, 89, 161, 163, 190, 191, 192, - 201, 202, 67, 71, 189, 189, 71, 115, 267, 268, - 269, 270, 65, 248, 65, 163, 163, 139, 268, 157, - 159, 66, 255, 255, 66, 66, 237, 90, 219, 219, - 329, 329, 218, 218, 66, 264, 66, 218, 218, 324, - 255, 258, 259, 163, 254, 35, 42, 217, 66, 302, - 324, 327, 217, 324, 218, 312, 312, 312, 313, 313, - 314, 314, 315, 315, 315, 315, 316, 316, 317, 318, - 319, 320, 321, 88, 327, 324, 65, 76, 232, 238, - 254, 232, 238, 254, 65, 76, 238, 254, 238, 254, - 67, 246, 67, 253, 73, 66, 67, 65, 335, 71, - 71, 88, 89, 193, 196, 229, 89, 194, 196, 238, - 67, 89, 67, 89, 90, 203, 203, 71, 200, 71, - 71, 35, 271, 266, 272, 270, 65, 138, 272, 339, - 339, 66, 70, 220, 324, 219, 219, 66, 66, 70, - 312, 293, 67, 67, 67, 66, 66, 66, 254, 66, - 67, 73, 66, 323, 88, 163, 210, 209, 213, 212, - 163, 211, 214, 54, 206, 66, 216, 66, 66, 336, - 66, 302, 328, 329, 195, 196, 329, 195, 194, 193, - 328, 67, 89, 71, 7, 10, 17, 23, 24, 28, - 31, 32, 34, 35, 42, 111, 142, 146, 147, 148, - 160, 161, 162, 163, 260, 261, 264, 273, 275, 276, - 277, 280, 281, 282, 283, 284, 326, 327, 340, 349, - 71, 329, 329, 222, 221, 222, 66, 35, 305, 218, - 218, 255, 324, 323, 329, 329, 329, 329, 329, 329, - 335, 66, 329, 329, 35, 89, 65, 326, 89, 65, - 76, 217, 42, 260, 65, 65, 88, 88, 143, 144, - 238, 250, 238, 250, 238, 250, 238, 250, 89, 28, - 65, 165, 219, 219, 35, 71, 72, 74, 220, 223, - 224, 225, 226, 227, 228, 71, 223, 72, 225, 66, - 66, 66, 327, 89, 278, 326, 327, 89, 34, 327, - 327, 329, 329, 264, 274, 65, 287, 341, 65, 88, - 328, 35, 42, 67, 71, 220, 90, 226, 328, 66, - 149, 89, 89, 65, 66, 66, 260, 260, 70, 287, - 347, 88, 66, 341, 54, 73, 54, 73, 70, 326, - 326, 327, 260, 260, 268, 88, 66, 72, 287, 342, - 343, 344, 89, 66, 328, 328, 11, 27, 262, 263, - 89, 89, 66, 8, 272, 342, 89, 336, 65, 88, - 67, 89, 73, 73, 328, 88, 71, 262, 326, 326, - 89, 260, 145, 88, 73, 327, 342, 344, 54, 88, - 267, 66, 66, 71, 342, 287, 66, 88, 328, 267, - 260, 260, 88, 65, 287, 346, 88, 279, 345, 346, - 327, 67, 267, 88, 66, 287, 216, 348, 67, 216 + 119, 120, 121, 122, 123, 124, 125, 335, 336, 338, + 66, 191, 191, 71, 89, 163, 165, 192, 193, 194, + 203, 204, 67, 71, 191, 191, 71, 115, 269, 270, + 271, 272, 65, 250, 65, 165, 165, 139, 270, 157, + 161, 66, 257, 257, 66, 66, 239, 331, 331, 331, + 331, 220, 220, 66, 266, 66, 220, 220, 326, 257, + 260, 261, 165, 256, 35, 42, 219, 66, 304, 326, + 329, 219, 326, 220, 314, 314, 314, 315, 315, 316, + 316, 317, 317, 317, 317, 318, 318, 319, 320, 321, + 322, 323, 88, 329, 326, 65, 76, 234, 240, 256, + 234, 240, 256, 65, 76, 240, 256, 240, 256, 67, + 248, 67, 255, 73, 66, 67, 65, 337, 71, 71, + 88, 89, 195, 198, 231, 89, 196, 198, 240, 67, + 89, 67, 89, 90, 205, 205, 71, 202, 71, 71, + 35, 273, 268, 274, 272, 65, 138, 274, 341, 341, + 66, 90, 221, 221, 221, 221, 66, 66, 70, 314, + 295, 67, 67, 67, 66, 66, 66, 256, 66, 67, + 73, 66, 325, 88, 165, 212, 211, 215, 214, 165, + 213, 216, 54, 208, 66, 218, 66, 66, 338, 66, + 304, 330, 331, 197, 198, 331, 197, 196, 195, 330, + 67, 89, 71, 7, 10, 17, 23, 24, 28, 31, + 32, 34, 35, 42, 111, 142, 146, 147, 148, 162, + 163, 164, 165, 262, 263, 266, 275, 277, 278, 279, + 282, 283, 284, 285, 286, 328, 329, 342, 351, 71, + 331, 331, 70, 222, 326, 223, 224, 66, 35, 307, + 220, 220, 257, 326, 325, 331, 331, 331, 331, 331, + 331, 337, 66, 331, 331, 35, 89, 65, 328, 89, + 65, 76, 219, 42, 262, 65, 65, 88, 88, 143, + 144, 240, 252, 240, 252, 240, 252, 240, 252, 89, + 28, 65, 167, 221, 221, 224, 71, 35, 72, 74, + 222, 225, 226, 227, 228, 229, 230, 72, 227, 66, + 66, 66, 329, 89, 280, 328, 329, 89, 34, 329, + 329, 331, 331, 266, 276, 65, 289, 343, 65, 71, + 225, 88, 330, 35, 42, 67, 222, 90, 228, 330, + 66, 149, 89, 89, 65, 66, 66, 262, 262, 70, + 289, 349, 88, 66, 343, 71, 54, 73, 54, 73, + 70, 328, 328, 329, 262, 262, 270, 88, 66, 72, + 289, 344, 345, 346, 89, 66, 330, 330, 11, 27, + 264, 265, 89, 89, 66, 8, 274, 344, 89, 338, + 65, 88, 67, 89, 73, 73, 330, 88, 71, 264, + 328, 328, 89, 262, 145, 88, 73, 329, 344, 346, + 54, 88, 269, 66, 66, 71, 344, 289, 66, 88, + 330, 269, 262, 262, 88, 65, 289, 348, 88, 281, + 347, 348, 329, 67, 269, 88, 66, 289, 218, 350, + 67, 218 }; } diff --git a/src/superc/cdesugarer/CValues.java b/src/superc/cdesugarer/CValues.java index 2074f492..5216450d 100644 --- a/src/superc/cdesugarer/CValues.java +++ b/src/superc/cdesugarer/CValues.java @@ -48,53 +48,53 @@ public Object getValue(int id, String name, Pair values) { return value; } public ValueType getValueType(int id) { - if (0 <= id && id < 131 || 343 < id) { + if (0 <= id && id < 131 || 345 < id) { return ValueType.NODE; } switch (id - 131) { case 0: // ExternalDeclarationList (131) // Fall through - case 31: // DeclarationQualifierList (162) + case 33: // DeclarationQualifierList (164) // Fall through - case 32: // TypeQualifierList (163) + case 34: // TypeQualifierList (165) // Fall through - case 58: // StructDeclarationList (189) + case 60: // StructDeclarationList (191) // Fall through - case 60: // StructDefaultDeclaringList (191) + case 62: // StructDefaultDeclaringList (193) // Fall through - case 61: // StructDeclaringList (192) + case 63: // StructDeclaringList (194) // Fall through - case 68: // EnumeratorList (199) + case 70: // EnumeratorList (201) // Fall through - case 74: // ParameterList (205) + case 76: // ParameterList (207) // Fall through - case 84: // IdentifierList (215) + case 86: // IdentifierList (217) // Fall through - case 91: // MatchedInitializerList (222) + case 93: // MatchedInitializerList (224) // Fall through - case 94: // DesignatorList (225) + case 96: // DesignatorList (227) // Fall through - case 132: // SwitchLabeledStatementList (263) + case 134: // SwitchLabeledStatementList (265) // Fall through - case 138: // LocalLabelDeclarationList (269) + case 140: // LocalLabelDeclarationList (271) // Fall through - case 140: // LocalLabelList (271) + case 142: // LocalLabelList (273) // Fall through - case 141: // DeclarationOrStatementList (272) + case 143: // DeclarationOrStatementList (274) // Fall through - case 143: // DeclarationList (274) + case 145: // DeclarationList (276) // Fall through - case 155: // StringLiteralListString (286) + case 157: // StringLiteralListString (288) // Fall through - case 156: // StringLiteralList (287) + case 158: // StringLiteralList (289) // Fall through - case 171: // ExpressionList (302) + case 173: // ExpressionList (304) // Fall through - case 199: // AttributeSpecifierList (330) + case 201: // AttributeSpecifierList (332) // Fall through - case 203: // AttributeList (334) + case 205: // AttributeList (336) // Fall through - case 212: // Assemblyoperands (343) + case 214: // Assemblyoperands (345) return ValueType.LIST; case 5: // $@1 (136) @@ -125,13 +125,13 @@ public ValueType getValueType(int id) { // Fall through case 28: // $@14 (159) // Fall through - case 70: // $@15 (201) + case 29: // $@15 (160) // Fall through - case 71: // $@16 (202) + case 30: // $@16 (161) // Fall through - case 78: // $@17 (209) + case 72: // $@17 (203) // Fall through - case 79: // $@18 (210) + case 73: // $@18 (204) // Fall through case 80: // $@19 (211) // Fall through @@ -141,66 +141,70 @@ public ValueType getValueType(int id) { // Fall through case 83: // $@22 (214) // Fall through - case 114: // $@23 (245) + case 84: // $@23 (215) // Fall through - case 115: // $@24 (246) + case 85: // $@24 (216) // Fall through - case 121: // $@25 (252) + case 116: // $@25 (247) // Fall through - case 122: // $@26 (253) + case 117: // $@26 (248) // Fall through - case 134: // $@27 (265) + case 123: // $@27 (254) // Fall through - case 135: // $@28 (266) + case 124: // $@28 (255) // Fall through - case 147: // $@29 (278) + case 136: // $@29 (267) // Fall through - case 148: // $@30 (279) + case 137: // $@30 (268) // Fall through - case 161: // $@31 (292) + case 149: // $@31 (280) // Fall through - case 162: // $@32 (293) + case 150: // $@32 (281) + // Fall through + case 163: // $@33 (294) + // Fall through + case 164: // $@34 (295) return ValueType.ACTION; - case 92: // DesignatedInitializer (223) + case 94: // DesignatedInitializer (225) // Fall through - case 157: // PrimaryExpression (288) + case 159: // PrimaryExpression (290) // Fall through - case 163: // PostfixExpression (294) + case 165: // PostfixExpression (296) // Fall through - case 172: // UnaryExpression (303) + case 174: // UnaryExpression (305) // Fall through - case 181: // CastExpression (312) + case 183: // CastExpression (314) // Fall through - case 182: // MultiplicativeExpression (313) + case 184: // MultiplicativeExpression (315) // Fall through - case 183: // AdditiveExpression (314) + case 185: // AdditiveExpression (316) // Fall through - case 184: // ShiftExpression (315) + case 186: // ShiftExpression (317) // Fall through - case 185: // RelationalExpression (316) + case 187: // RelationalExpression (318) // Fall through - case 186: // EqualityExpression (317) + case 188: // EqualityExpression (319) // Fall through - case 187: // AndExpression (318) + case 189: // AndExpression (320) // Fall through - case 188: // ExclusiveOrExpression (319) + case 190: // ExclusiveOrExpression (321) // Fall through - case 189: // InclusiveOrExpression (320) + case 191: // InclusiveOrExpression (322) // Fall through - case 190: // LogicalAndExpression (321) + case 192: // LogicalAndExpression (323) // Fall through - case 191: // LogicalORExpression (322) + case 193: // LogicalORExpression (324) // Fall through - case 192: // ConditionalExpression (323) + case 194: // ConditionalExpression (325) // Fall through - case 193: // AssignmentExpression (324) + case 195: // AssignmentExpression (326) // Fall through - case 195: // ExpressionOpt (326) + case 197: // ExpressionOpt (328) // Fall through - case 196: // Expression (327) + case 198: // Expression (329) // Fall through - case 197: // ConstantExpression (328) + case 199: // ConstantExpression (330) return ValueType.PASS_THROUGH; default: @@ -215,105 +219,107 @@ public boolean isComplete(int id) { // Fall through case 132: // ExternalDeclaration // Fall through - case 260: // Statement - // Fall through case 133: // EmptyDefinition // Fall through - case 261: // LabeledStatement - // Fall through case 134: // FunctionDefinitionExtension // Fall through - case 262: // SwitchLabeledStatement + case 262: // Statement // Fall through case 135: // FunctionDefinition // Fall through - case 264: // CompoundStatement + case 263: // LabeledStatement // Fall through - case 140: // FunctionPrototype + case 264: // SwitchLabeledStatement // Fall through - case 268: // LocalLabelDeclarationListOpt + case 266: // CompoundStatement // Fall through - case 269: // LocalLabelDeclarationList + case 140: // FunctionPrototype // Fall through case 142: // NestedFunctionDefinition // Fall through - case 270: // LocalLabelDeclaration + case 270: // LocalLabelDeclarationListOpt // Fall through - case 271: // LocalLabelList + case 271: // LocalLabelDeclarationList // Fall through - case 272: // DeclarationOrStatementList + case 272: // LocalLabelDeclaration // Fall through - case 273: // DeclarationOrStatement + case 273: // LocalLabelList // Fall through - case 274: // DeclarationList + case 274: // DeclarationOrStatementList // Fall through - case 275: // ExpressionStatement + case 275: // DeclarationOrStatement // Fall through case 148: // DeclarationExtension // Fall through - case 276: // SelectionStatement + case 276: // DeclarationList // Fall through case 149: // Declaration // Fall through - case 277: // IterationStatement + case 277: // ExpressionStatement + // Fall through + case 278: // SelectionStatement + // Fall through + case 279: // IterationStatement + // Fall through + case 282: // JumpStatement // Fall through - case 280: // JumpStatement + case 283: // GotoStatement // Fall through - case 281: // GotoStatement + case 284: // ContinueStatement // Fall through - case 282: // ContinueStatement + case 285: // BreakStatement // Fall through - case 283: // BreakStatement + case 286: // ReturnStatement // Fall through - case 284: // ReturnStatement + case 163: // TypeSpecifier // Fall through - case 161: // TypeSpecifier + case 164: // DeclarationQualifierList // Fall through - case 162: // DeclarationQualifierList + case 165: // TypeQualifierList // Fall through - case 163: // TypeQualifierList + case 172: // BasicDeclarationSpecifier // Fall through - case 170: // BasicDeclarationSpecifier + case 173: // BasicTypeSpecifier // Fall through - case 171: // BasicTypeSpecifier + case 174: // SUEDeclarationSpecifier // Fall through - case 172: // SUEDeclarationSpecifier + case 175: // SUETypeSpecifier // Fall through - case 173: // SUETypeSpecifier + case 176: // TypedefDeclarationSpecifier // Fall through - case 174: // TypedefDeclarationSpecifier + case 177: // TypedefTypeSpecifier // Fall through - case 175: // TypedefTypeSpecifier + case 178: // TypeofDeclarationSpecifier // Fall through - case 176: // TypeofDeclarationSpecifier + case 179: // TypeofTypeSpecifier // Fall through - case 177: // TypeofTypeSpecifier + case 180: // Typeofspecifier // Fall through - case 178: // Typeofspecifier + case 181: // Typeofkeyword // Fall through - case 179: // Typeofkeyword + case 189: // ElaboratedTypeName // Fall through - case 187: // ElaboratedTypeName + case 190: // StructOrUnionSpecifier // Fall through - case 188: // StructOrUnionSpecifier + case 191: // StructDeclarationList // Fall through - case 189: // StructDeclarationList + case 192: // StructDeclaration // Fall through - case 190: // StructDeclaration + case 193: // StructDefaultDeclaringList // Fall through - case 191: // StructDefaultDeclaringList + case 194: // StructDeclaringList // Fall through - case 192: // StructDeclaringList + case 195: // StructDeclarator // Fall through - case 193: // StructDeclarator + case 199: // EnumSpecifier // Fall through - case 197: // EnumSpecifier + case 200: // EnumSpecifierList // Fall through - case 198: // EnumSpecifierList + case 201: // EnumeratorList // Fall through - case 199: // EnumeratorList + case 202: // Enumerator // Fall through - case 200: // Enumerator + case 221: // InitializerOpt return true; default: diff --git a/src/superc/cdesugarer/Declaration.java b/src/superc/cdesugarer/Declaration.java index 9137d5a4..9fba3480 100644 --- a/src/superc/cdesugarer/Declaration.java +++ b/src/superc/cdesugarer/Declaration.java @@ -136,5 +136,11 @@ private boolean notCompatible(){ return true; return false; } + + public boolean isNonPointerForwardRef() { + Type t = typespecifier.getType(); + return ((t.isStruct() || t.isUnion()) && ((StructOrUnionT)t).getName().startsWith("__forward_tag_reference")) + && !(declarator.isPointerDeclarator() || declarator.isQualifiedPointerDeclarator()) ; + } } diff --git a/src/superc/cdesugarer/Declarator.java b/src/superc/cdesugarer/Declarator.java index 9017796f..eb77c430 100644 --- a/src/superc/cdesugarer/Declarator.java +++ b/src/superc/cdesugarer/Declarator.java @@ -817,12 +817,15 @@ public ParameterListDeclarator revertForwardRefs(List oldParams,PresenceCo for (Element> e : originalTagEntries) { names.add(((StructT)e.getData().getValue()).getName()); } - TypeSpecifier newType = parameters.get(i).getTypeSpec().revertForwardRefs(names,((StructT)ot).getName(),parameters.get(i).getName()); + if (!parameters.get(i).hasName()) { + System.err.println("error: parameter has no name"); + System.exit(1); + } + String renamed = parameters.get(i).getName(); + TypeSpecifier newType = parameters.get(i).getTypeSpec().revertForwardRefs(names,((StructT)ot).getName(),renamed); scope = scope.reenterScope(cond); - scope.getSymbolTable().replaceType(parameters.get(i).getName(),oldParams.get(i).revertForwardRef(names,((StructT)ot).getName(),parameters.get(i).getName()),cond); - System.err.println("ps: " + scope.getSymbolTable()); + scope.getSymbolTable().replaceType(renamed,oldParams.get(i).revertForwardRef(names,((StructT)ot).getName(),renamed),cond); scope = scope.exitReentrantScope(cond); - newDecs.add(new Declaration(newType,parameters.get(i).getDeclarator())); } else { newDecs.add(parameters.get(i)); diff --git a/src/superc/cdesugarer/NamedFunctionT.java b/src/superc/cdesugarer/NamedFunctionT.java index b8d88fd1..95477bae 100644 --- a/src/superc/cdesugarer/NamedFunctionT.java +++ b/src/superc/cdesugarer/NamedFunctionT.java @@ -92,4 +92,13 @@ protected FunctionT toFunctionT() { getParameters(), isVarArgs()); } + + public NamedFunctionT toNamedFunction() { + return this; + } + + public boolean isNamedFunction() { + return true; + } + } diff --git a/src/superc/cdesugarer/SymbolTable.java b/src/superc/cdesugarer/SymbolTable.java index 0abd25c4..816866ff 100644 --- a/src/superc/cdesugarer/SymbolTable.java +++ b/src/superc/cdesugarer/SymbolTable.java @@ -461,11 +461,14 @@ public Iterator iterator() { } public void replaceType(String renamed, T newValue, PresenceCondition cond) { + System.err.println(renamed); String originalName = renamed; while (originalName.charAt(originalName.length()-1) >= '0' && originalName.charAt(originalName.length()-1) <= '9') { originalName = originalName.substring(0,originalName.length()-1); } originalName = originalName.substring(2,originalName.length()-1); + System.err.println(originalName); + System.err.println(this); Multiverse> values = map.get(originalName); Multiverse> onlyDeclared = values.filter(cond); for (Element> e : onlyDeclared) { diff --git a/src/superc/cdesugarer/desugarer.y b/src/superc/cdesugarer/desugarer.y index 11e9ec8a..27a00a34 100644 --- a/src/superc/cdesugarer/desugarer.y +++ b/src/superc/cdesugarer/desugarer.y @@ -403,7 +403,6 @@ FunctionPrototype // add all variations of the function declaration to the symtab CContext scope = (CContext)subparser.scope; - Multiverse prototypeNodemv = staticCondToMultiverse(getNodeAt(subparser, 1), pc); // produce a multiverse of strings for the body to use Multiverse prototypestrmv = new Multiverse(); @@ -413,7 +412,6 @@ FunctionPrototype Multiverse typespecifiermv = prototype.typespecifier; Multiverse declaratormv = prototype.declarator; Multiverse newDeclarations = new Multiverse(); - assert scope.isGlobal(); // function definitions should be global. nested functions have a separate subgrammar. for (Element typespecifier : typespecifiermv) { PresenceCondition typespecifierCond = prototypeNode.getCondition().and(typespecifier.getCondition()); @@ -425,7 +423,6 @@ FunctionPrototype } String originalName = declarator.getData().getName(); Declaration originalDeclaration = new Declaration(typespecifier.getData(), declarator.getData()); - if (originalDeclaration.hasTypeError()) { // if type is invalid, put an error entry, emit a call // to the type error function @@ -508,7 +505,7 @@ FunctionPrototype recordRenaming(renaming, originalName); } else { - if (entry.getData().getValue() instanceof NamedFunctionT && !((NamedFunctionT)entry.getData().getValue()).getDefined()) { // there is no Type.isFunctionOrMethod() + if (entry.getData().getValue().isNamedFunction()) { // there is no Type.isFunctionOrMethod() FunctionT newtype = ((NamedFunctionT) type).toFunctionT(); FunctionT previoustype = ((NamedFunctionT) entry.getData().getValue()).toFunctionT(); newtype.setDefined(); @@ -523,6 +520,7 @@ FunctionPrototype newDeclarations.add(renamedDeclarator, entry.getCondition()); } else if (functionCouldExist(newtype,previoustype,scope,entry.getCondition())) { transformForwardParams(renamedDeclarator,previoustype,entry.getCondition(),newDeclarations,scope); + System.err.println(newDeclarations + "::" + entry.getCondition()); } else { scope.putError(originalName, entry.getCondition()); recordInvalidGlobalDeclaration(originalName, entry.getCondition()); @@ -1080,21 +1078,34 @@ Declaration: /** complete **/ // List> List declaringlistvalues = (List) getTransformationValue(subparser, 3); String semi = getNodeAt(subparser, 1).getTokenText(); - semi += declaringListRange(declaringlistvalues,(Syntax)getNodeAt(subparser,1)); - - List> valuestring = declarationAction(declaringlistvalues, semi, pc, scope); + semi += declaringListRange(declaringlistvalues,(Syntax)getNodeAt(subparser,1)); + //List> valuestring = declarationAction(declaringlistvalues, semi, pc, scope); + // + //semi += declaringListRange(declaringlistvalues,(Syntax)getNodeAt(subparser,1)); + semi += "\n"; + List> valuestring; + if (scope.isGlobal()) { + valuestring = declarationAction(declaringlistvalues, semi, pc, scope); + } else { + valuestring = declAddSemi(declaringlistvalues, semi, pc); + } setTransformationValue(value, valuestring); } | DefaultDeclaringList { KillReentrantScope(subparser); } SEMICOLON { PresenceCondition pc = subparser.getPresenceCondition(); CContext scope = ((CContext) subparser.scope); - + List declaringlistvalues = (List) getTransformationValue(subparser, 3); String semi = getNodeAt(subparser, 1).getTokenText(); - semi += declaringListRange(declaringlistvalues,(Syntax)getNodeAt(subparser,1)); - - List> valuestring = declarationAction(declaringlistvalues, semi, pc, scope); + semi += declaringListRange(declaringlistvalues,(Syntax)getNodeAt(subparser,1)); + semi += "\n"; + List> valuestring; + if (scope.isGlobal()) { + valuestring = declarationAction(declaringlistvalues, semi, pc, scope); + } else { + valuestring = declAddSemi(declaringlistvalues, semi, pc); + } setTransformationValue(value, valuestring); } ; @@ -1104,20 +1115,10 @@ Declaration: /** complete **/ // List> DefaultDeclaringList: /** nomerge **/ /* Can't redeclare typedef names */ DeclarationQualifierList IdentifierDeclarator - { - saveBaseType(subparser, getNodeAt(subparser, 2)); - bindIdent(subparser, getNodeAt(subparser, 2), getNodeAt(subparser, 1)); // TODO: use new bindIdent to find typedefname - } - AssemblyExpressionOpt AttributeSpecifierListOpt InitializerOpt { PresenceCondition pc = subparser.getPresenceCondition(); - // add the int type by default - Multiverse types = this.getCompleteNodeMultiverseValue(subparser, 6, pc); - if (types.isEmpty()) { - TypeSpecifier t = new TypeSpecifier(); - t.setError(); - types.add(t,pc); - } + + Multiverse types = this.getCompleteNodeMultiverseValue(subparser, 2, pc); TypeSpecifier ts = new TypeSpecifier(); ts.visitInt(); ts.addTransformation(new Language(CTag.INT)); @@ -1125,26 +1126,39 @@ DefaultDeclaringList: /** nomerge **/ /* Can't redeclare typedef names */ = new Multiverse(ts, subparser.getPresenceCondition()); types = types.product(inttbmv, DesugarOps.specifierProduct); // don't destruct prior types, since it is a semantic value inttbmv.destruct(); + saveBaseType(subparser, getNodeAt(subparser, 2)); + bindIdent(subparser, getNodeAt(subparser, 2), getNodeAt(subparser, 1)); // TODO: use new bindIdent to find typedefname - Multiverse declarators = this.getCompleteNodeMultiverseValue(subparser, 5, pc); - // TODO: just represent assembly and attributes as strings that get pass with the declaration object - Multiverse initializers = (Multiverse) getTransformationValue(subparser, 1); + Multiverse declarators = this.getCompleteNodeMultiverseValue(subparser, 1, pc); + if (!((CContext) subparser.scope).isGlobal()) { + Multiverse combo = declarationListAction(types,declarators,subparser.getPresenceCondition(),((CContext) subparser.scope)); + setTransformationValue(value, new DeclaringListValue(types,declarators,new Multiverse(new EmptyInitializer(),subparser.getPresenceCondition()),combo)); + } else { + setTransformationValue(value, new DeclaringListValue(types,declarators,new Multiverse(new EmptyInitializer(),subparser.getPresenceCondition()))); + } + } AssemblyExpressionOpt AttributeSpecifierListOpt InitializerOpt + { + PresenceCondition pc = subparser.getPresenceCondition(); + + Multiverse initializers = this.getCompleteNodeMultiverseValue(subparser, 1, pc); + DeclaringListValue decl = (DeclaringListValue) getTransformationValue(subparser,4); List declaringlist = new LinkedList(); - declaringlist.add(new DeclaringListValue(types, declarators, initializers)); + if (((CContext) subparser.scope).isGlobal()) { + decl.initializer = initializers; + declaringlist.add(decl); + } else { + setupInitials(declaringlist,decl,initializers,pc,((CContext) subparser.scope)); + } setTransformationValue(value, declaringlist); } | TypeQualifierList IdentifierDeclarator { - // legacy type checking - saveBaseType(subparser, getNodeAt(subparser, 2)); - bindIdent(subparser, getNodeAt(subparser, 2), getNodeAt(subparser, 1)); // TODO: use new bindIdent to find typedefname - } - AssemblyExpressionOpt AttributeSpecifierListOpt InitializerOpt - { - PresenceCondition pc = subparser.getPresenceCondition(); - // add the int type by default - Multiverse types = this.getCompleteNodeMultiverseValue(subparser, 6, pc); + //TODO : If EmptyInitializer, check how semicolon is added. + + PresenceCondition pc = subparser.getPresenceCondition(); + + Multiverse types = this.getCompleteNodeMultiverseValue(subparser, 2, pc); TypeSpecifier ts = new TypeSpecifier(); ts.visitInt(); ts.addTransformation(new Language(CTag.INT)); @@ -1152,102 +1166,146 @@ DefaultDeclaringList: /** nomerge **/ /* Can't redeclare typedef names */ = new Multiverse(ts, subparser.getPresenceCondition()); types = types.product(inttbmv, DesugarOps.specifierProduct); // don't destruct prior types, since it is a semantic value inttbmv.destruct(); + saveBaseType(subparser, getNodeAt(subparser, 2)); + bindIdent(subparser, getNodeAt(subparser, 2), getNodeAt(subparser, 1)); // TODO: use new bindIdent to find typedefname - Multiverse declarators = this.getCompleteNodeMultiverseValue(subparser, 5, pc); - // TODO: just represent assembly and attributes as strings that get pass with the declaration object - Multiverse initializers = (Multiverse) getTransformationValue(subparser, 1); + Multiverse declarators = this.getCompleteNodeMultiverseValue(subparser, 1, pc); + if (!((CContext) subparser.scope).isGlobal()) { + Multiverse combo = declarationListAction(types,declarators,subparser.getPresenceCondition(),((CContext) subparser.scope)); + setTransformationValue(value, new DeclaringListValue(types,declarators,new Multiverse(new EmptyInitializer(),subparser.getPresenceCondition()),combo)); + } else { + setTransformationValue(value, new DeclaringListValue(types,declarators,new Multiverse(new EmptyInitializer(),subparser.getPresenceCondition()))); + } + } AssemblyExpressionOpt AttributeSpecifierListOpt InitializerOpt + { + PresenceCondition pc = subparser.getPresenceCondition(); + + Multiverse initializers = this.getCompleteNodeMultiverseValue(subparser, 1, pc); + DeclaringListValue decl = (DeclaringListValue) getTransformationValue(subparser,4); List declaringlist = new LinkedList(); - declaringlist.add(new DeclaringListValue(types, declarators, initializers)); + if (((CContext) subparser.scope).isGlobal()) { + decl.initializer = initializers; + declaringlist.add(decl); + } else { + setupInitials(declaringlist,decl,initializers,pc,((CContext) subparser.scope)); + } setTransformationValue(value, declaringlist); - } + } | DefaultDeclaringList COMMA AttributeSpecifierListOpt IdentifierDeclarator { - // reuses saved base type - bindIdent(subparser, getNodeAt(subparser, 4), getNodeAt(subparser, 1)); - } - AssemblyExpressionOpt AttributeSpecifierListOpt InitializerOpt - { + bindIdent(subparser, getNodeAt(subparser, 4), getNodeAt(subparser, 1)); // TODO: use new bindIdent to find typedefname PresenceCondition pc = subparser.getPresenceCondition(); - - // TODO: hoist initiazliers around the entire InitializedDeclaration - List declaringlist = (List) getTransformationValue(subparser, 8); - // there must be at least one element in the DeclaringList - // according to the grammar + List declaringlist = (List) getTransformationValue(subparser, 4); assert declaringlist.size() > 0; - // each element is given the same typespecifiermultiverse, so - // we can take it from the first element, which is - // guaranteed to be there. Multiverse types = declaringlist.get(0).typespecifier; - // the rest of the action is the same as its other - // productions, except we add to the list instead of making - // a new one - Multiverse declarators = this.getCompleteNodeMultiverseValue(subparser, 5, pc); - // TODO: just represent assembly and attributes as strings that get pass with the declaration object - Multiverse initializers = (Multiverse) getTransformationValue(subparser, 1); - declaringlist.add(new DeclaringListValue(types, declarators, initializers)); + Multiverse declarators = this.getCompleteNodeMultiverseValue(subparser, 1, pc); + if (!((CContext) subparser.scope).isGlobal()) { + Multiverse combo = declarationListAction(types,declarators,subparser.getPresenceCondition(),((CContext) subparser.scope)); + setTransformationValue(value, new DeclaringListValue(types,declarators,new Multiverse(new EmptyInitializer(),subparser.getPresenceCondition()),combo)); + } else { + setTransformationValue(value, new DeclaringListValue(types,declarators,new Multiverse(new EmptyInitializer(),subparser.getPresenceCondition()))); + } + } AssemblyExpressionOpt AttributeSpecifierListOpt InitializerOpt + { + PresenceCondition pc = subparser.getPresenceCondition(); + + Multiverse initializers = this.getCompleteNodeMultiverseValue(subparser, 1, pc); + DeclaringListValue decl = (DeclaringListValue) getTransformationValue(subparser,4); + List declaringlist = (List)getTransformationValue(subparser,8); + if (((CContext) subparser.scope).isGlobal()) { + decl.initializer = initializers; + declaringlist.add(decl); + } else { + setupInitials(declaringlist,decl,initializers,pc,((CContext) subparser.scope)); + } setTransformationValue(value, declaringlist); } ; DeclaringList: /** nomerge **/ - DeclarationSpecifier Declarator AssemblyExpressionOpt AttributeSpecifierListOpt InitializerOpt - { - saveBaseType(subparser, getNodeAt(subparser, 5)); - bindIdent(subparser, getNodeAt(subparser, 5), getNodeAt(subparser, 4)); // TODO: use new bindIdent to find typedefname + DeclarationSpecifier Declarator { + saveBaseType(subparser, getNodeAt(subparser, 2)); + bindIdent(subparser, getNodeAt(subparser, 2), getNodeAt(subparser, 1)); // TODO: use new bindIdent to find typedefname PresenceCondition pc = subparser.getPresenceCondition(); - Multiverse types = this.getCompleteNodeMultiverseValue(subparser, 5, pc); - if (types.isEmpty()) { - TypeSpecifier t = new TypeSpecifier(); - t.setError(); - types.add(t,pc); + + Multiverse types = this.getCompleteNodeMultiverseValue(subparser, 2, pc); + Multiverse declarators = this.getCompleteNodeMultiverseValue(subparser, 1, pc); + if (!((CContext) subparser.scope).isGlobal()) { + Multiverse combo = declarationListAction(types,declarators,subparser.getPresenceCondition(),((CContext) subparser.scope)); + setTransformationValue(value, new DeclaringListValue(types,declarators,new Multiverse(new EmptyInitializer(),subparser.getPresenceCondition()),combo)); + } else { + setTransformationValue(value, new DeclaringListValue(types,declarators,new Multiverse(new EmptyInitializer(),subparser.getPresenceCondition()))); } - Multiverse declarators = this.getCompleteNodeMultiverseValue(subparser, 4, pc); - // TODO: just represent assembly and attributes as strings that get pass with the declaration object - Multiverse initializers = (Multiverse) getTransformationValue(subparser, 1); + } AssemblyExpressionOpt AttributeSpecifierListOpt InitializerOpt + { + PresenceCondition pc = subparser.getPresenceCondition(); + + Multiverse initializers = this.getCompleteNodeMultiverseValue(subparser, 1, pc); + DeclaringListValue decl = (DeclaringListValue) getTransformationValue(subparser,4); List declaringlist = new LinkedList(); - declaringlist.add(new DeclaringListValue(types, declarators, initializers)); + if (((CContext) subparser.scope).isGlobal()) { + decl.initializer = initializers; + declaringlist.add(decl); + } else { + setupInitials(declaringlist,decl,initializers,pc,((CContext) subparser.scope)); + } setTransformationValue(value, declaringlist); } - | TypeSpecifier Declarator AssemblyExpressionOpt AttributeSpecifierListOpt InitializerOpt - { + | TypeSpecifier Declarator { saveBaseType(subparser, getNodeAt(subparser, 2)); - bindIdent(subparser, getNodeAt(subparser, 5), getNodeAt(subparser, 4)); // TODO: use new bindIdent to find typedefname - + bindIdent(subparser, getNodeAt(subparser, 2), getNodeAt(subparser, 1)); // TODO: use new bindIdent to find typedefname PresenceCondition pc = subparser.getPresenceCondition(); - Multiverse types = this.getCompleteNodeMultiverseValue(subparser, 5, pc); - Multiverse declarators = this.getCompleteNodeMultiverseValue(subparser, 4, pc); - // TODO: just represent assembly and attributes as strings that get pass with the declaration object - Multiverse initializers = (Multiverse) getTransformationValue(subparser, 1); + Multiverse types = this.getCompleteNodeMultiverseValue(subparser, 2, pc); + Multiverse declarators = this.getCompleteNodeMultiverseValue(subparser, 1, pc); + if (!((CContext) subparser.scope).isGlobal()) { + Multiverse combo = declarationListAction(types,declarators,subparser.getPresenceCondition(),((CContext) subparser.scope)); + setTransformationValue(value, new DeclaringListValue(types,declarators,new Multiverse(new EmptyInitializer(),subparser.getPresenceCondition()),combo)); + } else { + setTransformationValue(value, new DeclaringListValue(types,declarators,new Multiverse(new EmptyInitializer(),subparser.getPresenceCondition()))); + } + } AssemblyExpressionOpt AttributeSpecifierListOpt InitializerOpt + { + PresenceCondition pc = subparser.getPresenceCondition(); + + Multiverse initializers = this.getCompleteNodeMultiverseValue(subparser, 1, pc); + DeclaringListValue decl = (DeclaringListValue) getTransformationValue(subparser,4); List declaringlist = new LinkedList(); - declaringlist.add(new DeclaringListValue(types, declarators, initializers)); + if (((CContext) subparser.scope).isGlobal()) { + decl.initializer = initializers; + declaringlist.add(decl); + } else { + setupInitials(declaringlist,decl,initializers,pc,((CContext) subparser.scope)); + } setTransformationValue(value, declaringlist); } | DeclaringList COMMA AttributeSpecifierListOpt Declarator { - // legacy type checking - // reuses saved base type - bindIdent(subparser, getNodeAt(subparser, 4), getNodeAt(subparser, 1)); + bindIdent(subparser, getNodeAt(subparser, 4), getNodeAt(subparser, 1)); // TODO: use new bindIdent to find typedefname + PresenceCondition pc = subparser.getPresenceCondition(); + List declaringlist = (List) getTransformationValue(subparser, 4); + assert declaringlist.size() > 0; + Multiverse types = declaringlist.get(0).typespecifier; + Multiverse declarators = this.getCompleteNodeMultiverseValue(subparser, 1, pc); + if (!((CContext) subparser.scope).isGlobal()) { + Multiverse combo = declarationListAction(types,declarators,subparser.getPresenceCondition(),((CContext) subparser.scope)); + setTransformationValue(value, new DeclaringListValue(types,declarators,new Multiverse(new EmptyInitializer(),subparser.getPresenceCondition()),combo)); + } else { + setTransformationValue(value, new DeclaringListValue(types,declarators,new Multiverse(new EmptyInitializer(),subparser.getPresenceCondition()))); + } } AssemblyExpressionOpt AttributeSpecifierListOpt InitializerOpt { PresenceCondition pc = subparser.getPresenceCondition(); - // TODO: hoist initiazliers around the entire InitializedDeclaration - List declaringlist = (List) getTransformationValue(subparser, 8); - // there must be at least one element in the DeclaringList - // according to the grammar - assert declaringlist.size() > 0; - // each element is given the same typespecifiermultiverse, so - // we can take it from the first element, which is - // guaranteed to be there. - Multiverse types = declaringlist.get(0).typespecifier; - // the rest of the action is the same as its other - // productions, except we add to the list instead of making - // a new one - Multiverse declarators = this.getCompleteNodeMultiverseValue(subparser, 5, pc); - // TODO: just represent assembly and attributes as strings that get pass with the declaration object - Multiverse initializers = (Multiverse) getTransformationValue(subparser, 1); - declaringlist.add(new DeclaringListValue(types, declarators, initializers)); + Multiverse initializers = this.getCompleteNodeMultiverseValue(subparser, 1, pc); + DeclaringListValue decl = (DeclaringListValue) getTransformationValue(subparser,4); + List declaringlist = (List)getTransformationValue(subparser,8); + if (((CContext) subparser.scope).isGlobal()) { + decl.initializer = initializers; + declaringlist.add(decl); + } else { + setupInitials(declaringlist,decl,initializers,pc,((CContext) subparser.scope)); + } setTransformationValue(value, declaringlist); } ; @@ -3630,7 +3688,7 @@ TypeName: /** nomerge **/ // Multiverse } ; -InitializerOpt: /** nomerge **/ // Multiverse +InitializerOpt: /** complete **/ // Multiverse /* nothing */ { // EmptyInitializer @@ -5489,7 +5547,7 @@ PrimaryIdentifier: /** nomerge **/ // ExpressionValue // get the renamings from the symtab PresenceCondition cond = subparser.getPresenceCondition(); Multiverse> entries = scope.getInAnyScope(originalName, cond); - + System.err.println(entries); // convert the renamings to stringbuilders Multiverse sbmv = new Multiverse(); Multiverse typemv = new Multiverse(); @@ -5562,6 +5620,7 @@ PrimaryIdentifier: /** nomerge **/ // ExpressionValue // it and the symtab should always return a non-empty mv assert ! sbmv.isEmpty(); entries.destruct(); + System.err.println(new ExpressionValue(sbmv, typemv,new Multiverse(new LineNumbers((Syntax)getNodeAt(subparser, 1)),cond))); setTransformationValue(value, new ExpressionValue(sbmv, typemv,new Multiverse(new LineNumbers((Syntax)getNodeAt(subparser, 1)),cond))); } /* We cannot use a typedef name as a variable */ ; @@ -6600,7 +6659,6 @@ setTransformationValue(value, new ExpressionValue(resultmv,resulttypemv, ExpressionValue exprval = getCompleteNodeExpressionValue(subparser, 1, pc); Multiverse exprmv = sizeofExpansion(exprval.transformation, exprval.type,freshIdCreator,(CContext)subparser.scope,pc); - todoReminder("typecheck unaryexpression (5)"); Type constSizeOf = C.SIZEOF.copy(); @@ -8269,11 +8327,161 @@ public static void keepMemoryNames(boolean f) { /*************************************************************************** **** Semantic actions ***************************************************************************/ + protected List> declAddSemi(List declaringlistvalues, + String semi, + PresenceCondition pc) { + List> toret = new LinkedList>(); + for (DeclaringListValue d : declaringlistvalues ) { + toret.add(d.desugared.appendScalar(semi,DesugarOps.concatStrings)); + } + return toret; + } + + protected void setupInitials(List declList, DeclaringListValue decl, Multiverse initializermv, PresenceCondition pc, CContext scope){ + if (initializermv.size() == 1 && initializermv.get(0).getData().isEmpty()) { + declList.add(decl); + } else { + System.err.println(decl); + for (Element declarator : decl.declarator) { + String originalName = declarator.getData().getName(); + Multiverse> entries = scope.getInCurrentScope(originalName, declarator.getCondition()); + for (Element> entry : entries) { + Type t = entry.getData().getValue().toVariable().getType(); + if (initializermv.size() == 1 && ! initializermv.get(0).getData().hasList()) { + declList.add(checkInitializers(decl.filter(entry.getCondition()),initializermv,entry.getCondition(),scope,false)); + } else { + declList.add(decl.filter(entry.getCondition())); + for (Element ei : initializermv) { + if (!ei.getData().isEmpty()) { + declList.add(checkInitializers(decl.filter(entry.getCondition()),initializermv.filter(ei.getCondition()),ei.getCondition(),scope,true)); + } + } + } + } + } + } + } + + protected DeclaringListValue checkInitializers(DeclaringListValue decl, Multiverse initializermv, PresenceCondition pc, CContext scope, boolean splitMainInit) { + Multiverse initStr; + if (splitMainInit) { + initStr = new Multiverse("if (" + condToCVar(pc) + ") {\n" ,pc); + } else { + initStr = new Multiverse("",pc); + } + for (Element initializer : initializermv) { + if (initializer.getData().isEmpty()) { + continue; + } + for (Element declarator : decl.declarator) { + PresenceCondition combinedCond = initializer.getCondition().and(declarator.getCondition()).and(pc); + String originalName = declarator.getData().getName(); + if (!initializer.getData().hasValidType()) { + scope.putError(originalName,combinedCond); + continue; + } + for (Element typespecifier : decl.typespecifier) { + PresenceCondition finalcond = typespecifier.getCondition().and(combinedCond); + if (finalcond.isFalse()) { + continue; + } + Declaration originalDeclaration = new Declaration(typespecifier.getData(), declarator.getData()); + Type declarationType = originalDeclaration.getType(); + + StringBuilder entrysb = new StringBuilder(); // the desugared output + Multiverse> entries = scope.getInCurrentScope(originalName, finalcond); + for (Element> entry : entries) { + String renaming = entry.getData().getValue().toVariable().getName(); + if (initializer.getData().hasList() && !scope.isGlobal() && + (!declarationType.hasAttribute(Constants.ATT_CONSTANT) && !declarationType.hasConstant())) { + Type tempT = declarationType; + while (tempT.isWrapped()) { + tempT = ((WrappedT)tempT).getType(); + } + if (tempT.isStruct() || tempT.isUnion()){ + entrysb.append("{\n" + initStruct(renaming, (StructOrUnionT)tempT, initializer.getData(), scope, finalcond) + "}"); + } + if (tempT.isArray()){ + entrysb.append("{\n" + initArray(renaming, (ArrayT)tempT, initializer.getData(), scope, finalcond) + "}"); + } + } else { + boolean compatibleTypes = true; + //check for initializer list + if (initializer.getData().hasList()) { + compatibleTypes = !initializer.getData().hasNonConst(); + } + if (compatibleTypes) { + String toAddStr = ""; + if (initializer.getData().hasList()) { + Multiverse mvs = initializer.getData().renamedList(new Multiverse(declarationType.resolve(),finalcond),finalcond,scope); + for (Element evs : mvs) { + if (evs.getData() != "") { + if (splitMainInit) { + toAddStr += renaming; + } + toAddStr += (evs.getData()); + } else { + scope.putError(originalName, entry.getCondition()); + recordInvalidGlobalRedeclaration(originalName, entry.getCondition()); + if (scope.isGlobal() && isGlobalOrExtern(typespecifier.getData())) { + externalLinkage.putError(originalName, entry.getCondition()); + } else if (!scope.isGlobal()) { + toAddStr += ("if ("); + toAddStr += (condToCVar(entry.getCondition())); + toAddStr += (") {\n"); + toAddStr += (emitError(String.format("improper designator value: %s", originalName))); + toAddStr += (";\n"); + toAddStr += ("}\n"); + } + } + } + } else { + if (splitMainInit) { + toAddStr += renaming; + } + toAddStr += (initializer.getData().toString()); + } + if ((declarationType.hasAttribute(Constants.ATT_CONSTANT) || declarationType.hasConstant()) && + scope.isGlobal()) { + } else { + entrysb.append(toAddStr + ";"); + } + } else { + scope.putError(originalName, entry.getCondition()); + recordInvalidGlobalRedeclaration(originalName, entry.getCondition()); + if (scope.isGlobal() && isGlobalOrExtern(typespecifier.getData())) { + externalLinkage.putError(originalName, entry.getCondition()); + } else if (!scope.isGlobal()) { + entrysb.append("if ("); + entrysb.append(condToCVar(entry.getCondition())); + entrysb.append(") {\n"); + entrysb.append(emitError(String.format("non const value in constant list or struct: %s", + originalName))); + entrysb.append(";\n"); + entrysb.append("}\n"); + } + } + } + Multiverse toApply = new Multiverse(); + toApply.add(entrysb.toString(),finalcond); + toApply.add("",finalcond.not()); + initStr = initStr.product(toApply,DesugarOps.concatStrings); + toApply.destruct(); + } + } + } + } + if (splitMainInit) { + initStr = initStr.product(new Multiverse("}",pc), DesugarOps.concatStrings); + return new DeclaringListValue(decl.typespecifier, decl.declarator, initializermv, initStr); + } + return new DeclaringListValue(decl.typespecifier, decl.declarator, initializermv, decl.desugared.product(initStr,DesugarOps.concatStrings)); + } protected List> declarationAction(List declaringlistvalues, - String semi, - PresenceCondition pc, - CContext scope) { + String semi, + PresenceCondition pc, + CContext scope) { /* * to desugar declarations, we need to iterate over all * combinations of (1) declarators in the declaring list, @@ -8460,7 +8668,7 @@ protected List> declarationAction(List de Multiverse mvs = initializer.getData().renamedList(new Multiverse(declarationType.resolve(),combinedCond),combinedCond,scope); for (Element evs : mvs) { if (evs.getData() != "") { - toAddStr += (desugaredDeclaration); + toAddStr += desugaredDeclaration; toAddStr += (evs.getData()); toAddStr += (semi); // semi-colon recordRenaming(renaming, originalName); @@ -8480,7 +8688,7 @@ protected List> declarationAction(List de } } } else { - toAddStr += (desugaredDeclaration); + toAddStr += desugaredDeclaration; toAddStr += (initializer.getData().toString()); toAddStr += (semi); // semi-colon recordRenaming(renaming, originalName); @@ -8565,7 +8773,6 @@ protected List> declarationAction(List de } // end check for variable type } // end check global/local scope } // end entry kind - entrysb.append("\n"); if (renamedDeclaration.typespecifier.contains(Constants.ATT_STORAGE_TYPEDEF)) { // typedefs are moved to the top of the scope @@ -8602,6 +8809,197 @@ protected List> declarationAction(List de return retmv; } +protected Multiverse declarationListAction(Multiverse typespecifiermv, + Multiverse declaratormv, + PresenceCondition pc, + CContext scope) { + + StringBuilder valuesb = new StringBuilder(); // the desugared output + Multiverse valuemv = new Multiverse(); + + valuemv.add("",pc); + // TODO: use typespecifier/declarator to reclassify the + // tokens as typedef/ident in parsing context + for (Element typespecifier : typespecifiermv) { + PresenceCondition typespecifierCond = pc.and(typespecifier.getCondition()); + for (Element declarator : declaratormv) { + PresenceCondition combinedCond = typespecifierCond.and(declarator.getCondition()); + if (combinedCond.isNotFalse()) { + + String originalName = declarator.getData().getName(); + // get xtc type from type and declarator + Declaration tempD = new Declaration(typespecifier.getData(), declarator.getData()); + if (typespecifier.getData().getType().isError() + || tempD.hasTypeError() + || (!scope.isGlobal() && new Declaration(typespecifier.getData(), declarator.getData()).isNonPointerForwardRef()) + ) { + // if type is invalid, put an error entry, emit a call + // to the type error function + scope.putError(originalName, combinedCond); + if (scope.isGlobal()) { + recordInvalidGlobalDeclaration(originalName, combinedCond); + } else { + valuesb.append("if ("); + valuemv = appendStringToMV(valuemv,"if (",combinedCond); + String tempC = condToCVar(combinedCond); + valuesb.append(tempC); + valuemv = appendStringToMV(valuemv,tempC,combinedCond); + valuesb.append(") {\n"); + valuemv = appendStringToMV(valuemv,") {\n",combinedCond); + valuesb.append(emitError(String.format("invalid declaration of %s under this presence condition", + originalName))); + valuemv = appendStringToMV(valuemv,emitError(String.format("invalid declaration of %s under this presence condition", + originalName)),combinedCond); + valuesb.append(";\n"); + valuemv = appendStringToMV(valuemv,";\n",combinedCond); + valuesb.append("}\n"); + valuemv = appendStringToMV(valuemv,"}\n",combinedCond); + + } + } else { + // otherwise loop over each existing entry check for + // type errors or add a new declaration + Multiverse> entries = scope.getInCurrentScope(originalName, combinedCond); + for (Element> entry : entries) { + String renaming = freshCId(originalName); + Declarator renamedDeclarator = declarator.getData().rename(renaming); + Declaration renamedDeclaration = new Declaration(typespecifier.getData(), + renamedDeclarator); + Declaration originalDeclaration = new Declaration(typespecifier.getData(), declarator.getData()); + + StringBuilder entrysb = new StringBuilder(); + + Type declarationType = renamedDeclaration.getType(); + Type type; + //System.err.println("has typedef:" + renamedDeclaration.typespecifier.contains(Constants.ATT_STORAGE_TYPEDEF)); + if (renamedDeclaration.typespecifier.contains(Constants.ATT_STORAGE_TYPEDEF)) { + type = new AliasT(renaming, declarationType); + } else if (declarationType.isFunction()) { + type = new NamedFunctionT(declarationType.toFunction().getResult(), + renaming, + declarationType.toFunction().getParameters(), + declarationType.toFunction().isVarArgs()); + } else { + if (scope.isGlobal()) { + type = VariableT.newGlobal(declarationType, renaming); + } else { + type = VariableT.newLocal(declarationType, renaming); + } + } + + // make all renamed declarations static until project-wide, configuration-aware linking is possible + String desugaredDeclaration; + // disabling the thunks for now, pending + // configuration-aware linking support + desugaredDeclaration = renamedDeclaration.toString(); + if (entry.getData().isError()) { + // ERROR entry + System.err.println(String.format("INFO: \"%s\" is being redeclared in an existing invalid declaration", originalName)); + + } else if (entry.getData().isUndeclared()) { + // UNDECLARED entry + // update the symbol table for this presence condition + + // the renamed function is static to enable linking the original function name + if (scope.isGlobal() && Constants.ATT_STORAGE_AUTO == + typespecifier.getData().getStorageClass()) { + scope.putError(originalName, entry.getCondition()); + } else { + + scope.put(originalName, type, entry.getCondition()); + + if (scope.isGlobal() && isGlobalOrExtern(typespecifier.getData())) { + externalLinkage.put(originalName, originalDeclaration, entry.getCondition()); + } + String toAddStr = ""; + + toAddStr += desugaredDeclaration; + recordRenaming(renaming, originalName); + if ((declarationType.hasAttribute(Constants.ATT_CONSTANT) || declarationType.hasConstant()) && + scope.isGlobal()) { + scope.addDeclaration(toAddStr+";\n"); + } else { + entrysb.append(toAddStr); + } + } + } else { // already declared entries + if (! scope.isGlobal()) { + // not allowed to redeclare local symbols at all + scope.putError(originalName, entry.getCondition()); + entrysb.append("if ("); + entrysb.append(condToCVar(entry.getCondition())); + entrysb.append(") {\n"); + entrysb.append(emitError(String.format("redeclaration of local symbol: %s", + originalName))); + entrysb.append(";\n"); + entrysb.append("}\n"); + } else { // global scope + + // declarations only set VariableT or AliasT + boolean sameTypeKind + = entry.getData().getValue().isVariable() && type.isVariable() + || entry.getData().getValue().isAlias() && type.isAlias(); + + // check compatibility of types + if (sameTypeKind) { + boolean compatibleTypes = false; + if (type.isVariable()) { + compatibleTypes = cOps.equal(entry.getData().getValue().toVariable().getType(), + type.toVariable().getType()); + } else if (type.isAlias()) { + compatibleTypes = cOps.equal(entry.getData().getValue().toAlias().getType(), + type.toAlias().getType()); + } else { + throw new AssertionError("should not be possible given sameTypeKind"); + } + + if (! compatibleTypes) { + // not allowed to redeclare globals to a different type + scope.putError(originalName, entry.getCondition()); + recordInvalidGlobalRedeclaration(originalName, entry.getCondition()); + if (scope.isGlobal() && isGlobalOrExtern(typespecifier.getData())) { + externalLinkage.putError(originalName, entry.getCondition()); + } + } else { + // emit the same declaration, since it's legal to redeclare globals to a compatible type + /* entrysb.append(renamedDeclaration.toString()); */ + entrysb.append(desugaredDeclaration); + System.err.println(String.format("INFO: \"%s\" is being redeclared in global scope to compatible type", originalName)); + } + + } else { // not the same kind of type + scope.putError(originalName, entry.getCondition()); + System.err.println(String.format("INFO: attempted to redeclare global to a different kind of type: %s", originalName)); + recordInvalidGlobalRedeclaration(originalName, entry.getCondition()); + if (scope.isGlobal() && isGlobalOrExtern(typespecifier.getData())) { + externalLinkage.putError(originalName, entry.getCondition()); + } + } // end check for variable type + } // end check global/local scope + } // end entry kind + + if (renamedDeclaration.typespecifier.contains(Constants.ATT_STORAGE_TYPEDEF)) { + // typedefs are moved to the top of the scope + // to support forward references of structs + scope.addDeclaration(entrysb.toString() + ";"); + valuesb.append("// typedef moved to top of scope\n"); + valuemv = appendStringToMV(valuemv,"// typedef moved to top of scope\n",combinedCond); + } else { + // not a typedef, so add it to regular output + valuesb.append(entrysb.toString()); + valuemv = appendStringToMV(valuemv,entrysb.toString(),combinedCond); + } + } // end loop over symtab entries + entries.destruct(); + } + } // end check for false combinedCond + combinedCond.delRef(); + } // end loop over declarators + } // end loop over typespecifiers + return valuemv; +} + + class IDSort implements Comparator> { private int getID(String x){ String res = ""; @@ -9530,6 +9928,8 @@ private static class DeclaringListValue { /** The initializer. */ public Multiverse initializer; + public Multiverse desugared; + /** * This constructor creates a new instance. * @param type is the type. @@ -9542,8 +9942,18 @@ private static class DeclaringListValue { this.typespecifier = typespecifier; this.declarator = declarator; this.initializer = initializer; + this.desugared = null; } + private DeclaringListValue(Multiverse typespecifier, + Multiverse declarator, + Multiverse initializer, + Multiverse desugared) { + this.typespecifier = typespecifier; + this.declarator = declarator; + this.initializer = initializer; + this.desugared = desugared; + } public boolean isEmpty() { return typespecifier.isEmpty() || @@ -9555,7 +9965,12 @@ private static class DeclaringListValue { { return "TypeSpec: " + typespecifier.toString() + "\nDeclarator: " + declarator.toString() + - "\nInitializer: " + initializer.toString(); + "\nInitializer: " + initializer.toString() + + "\nDesugared: " + desugared.toString(); + } + + public DeclaringListValue filter(PresenceCondition p ) { + return new DeclaringListValue(typespecifier.filter(p),declarator.filter(p),initializer.filter(p),desugared.filter(p)); } } @@ -11113,7 +11528,7 @@ private void recordRenaming(String renaming, String original) { public String printMain(CContext scope, PresenceCondition pc) { String ret = ""; - ret += "int main(int argc, char **argv) {\n"; + ret += "int main(int argc, char **argv) {\n__static_initializer_default();\n"; Multiverse> entries = scope.getInCurrentScope("main", pc); for (Element> entry : entries) { ret += "if ("; @@ -11159,7 +11574,8 @@ public String staticInitialization(boolean showParseError) { // writes the extern declarations for the renamed preprocessor BDDs System.err.println("TODO: record original presence condition strings in file as well once raw strings are collected"); for (Integer hash : condVars.keySet()) { - sb.append(String.format("int %s() {return rand()%%2;};\n", condVars.get(hash))); + //sb.append(String.format("int %s() {return rand()%%2;};\n", condVars.get(hash))); + sb.append(String.format("extern const bool %s();\n", condVars.get(hash))); } sb.append(String.format("%s {\n%s\n%s\n", diff --git a/src/xtc/type/FunctionT.java b/src/xtc/type/FunctionT.java index deabfa4d..19c50cfc 100644 --- a/src/xtc/type/FunctionT.java +++ b/src/xtc/type/FunctionT.java @@ -65,6 +65,7 @@ public FunctionT(Type template, Type result, List parameters, super(template, result, null, parameters, varargs, null); } + public FunctionT copy() { FunctionT copy = new FunctionT(this, result.copy(), copy(parameters), varargs); diff --git a/src/xtc/type/Type.java b/src/xtc/type/Type.java index b4806db6..dbc623f5 100644 --- a/src/xtc/type/Type.java +++ b/src/xtc/type/Type.java @@ -35,6 +35,9 @@ import xtc.util.Runtime; +import superc.cdesugarer.NamedFunctionT; + + /** * The superclass of all types. * @@ -1506,7 +1509,7 @@ public FunctionT toFunction() { public boolean isMethod() { return false; } - + /** * Get this type as a method. * @@ -1518,6 +1521,27 @@ public MethodT toMethod() { throw new ClassCastException("Not a method " + this); } + + /** + * Determine whether this type is a named function. + * + * @return true if this type is a named function. + */ + public boolean isNamedFunction() { + return false; + } + + /** + * Get this type as a named function. + * + * @return This type has a function. + * @throws ClassCastException Signals that this type is not a + * named function. + */ + public NamedFunctionT toNamedFunction() { + throw new ClassCastException("Not a named function " + this); + } + /** * Determine whether this type is a class. * From d38c41254b3c3b36e82ea8795934162a75864ff2 Mon Sep 17 00:00:00 2001 From: pattersonz Date: Tue, 14 Feb 2023 01:52:31 -0600 Subject: [PATCH 45/77] added memset memcpy --- src/superc/cdesugarer/CActions.java | 2 +- src/superc/cdesugarer/desugarer.y | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/superc/cdesugarer/CActions.java b/src/superc/cdesugarer/CActions.java index de9e3b26..cd6414d8 100644 --- a/src/superc/cdesugarer/CActions.java +++ b/src/superc/cdesugarer/CActions.java @@ -8464,7 +8464,7 @@ public void dispatch(int id, Subparser subparser) { boolean wrotePrologue = false; static boolean keepMem = false; -static String memNames[] = {"malloc", "calloc", "free", "fopen", "fclose", "rand"}; +static String memNames[] = {"malloc", "calloc", "free", "fopen", "fclose", "rand", "memcpy", "memset"}; public static void keepMemoryNames(boolean f) { keepMem = f; diff --git a/src/superc/cdesugarer/desugarer.y b/src/superc/cdesugarer/desugarer.y index 27a00a34..46ff659a 100644 --- a/src/superc/cdesugarer/desugarer.y +++ b/src/superc/cdesugarer/desugarer.y @@ -8315,7 +8315,7 @@ AsmKeyword: // ADDED boolean wrotePrologue = false; static boolean keepMem = false; -static String memNames[] = {"malloc", "calloc", "free", "fopen", "fclose", "rand"}; +static String memNames[] = {"malloc", "calloc", "free", "fopen", "fclose", "rand", "memcpy", "memset"}; public static void keepMemoryNames(boolean f) { keepMem = f; From 5e573261fe12b7f9b125d3402fead2baad618abd Mon Sep 17 00:00:00 2001 From: pattersonz Date: Tue, 14 Feb 2023 18:54:21 -0600 Subject: [PATCH 46/77] fixed missing pointers in forward ref transforms --- src/superc/cdesugarer/CActions.java | 1 - src/superc/cdesugarer/Declarator.java | 2 +- src/superc/cdesugarer/desugarer.y | 1 - src/xtc/type/PointerT.java | 2 +- 4 files changed, 2 insertions(+), 4 deletions(-) diff --git a/src/superc/cdesugarer/CActions.java b/src/superc/cdesugarer/CActions.java index cd6414d8..20c22ada 100644 --- a/src/superc/cdesugarer/CActions.java +++ b/src/superc/cdesugarer/CActions.java @@ -396,7 +396,6 @@ public Object action(int production, Subparser subparser, Object value) { newDeclarations.add(renamedDeclarator, entry.getCondition()); } else if (functionCouldExist(newtype,previoustype,scope,entry.getCondition())) { transformForwardParams(renamedDeclarator,previoustype,entry.getCondition(),newDeclarations,scope); - System.err.println(newDeclarations + "::" + entry.getCondition()); } else { scope.putError(originalName, entry.getCondition()); recordInvalidGlobalDeclaration(originalName, entry.getCondition()); diff --git a/src/superc/cdesugarer/Declarator.java b/src/superc/cdesugarer/Declarator.java index eb77c430..0cc301bc 100644 --- a/src/superc/cdesugarer/Declarator.java +++ b/src/superc/cdesugarer/Declarator.java @@ -310,7 +310,7 @@ public String printType() { } public Declarator switchForwardRef(List oldParams, PresenceCondition cond, CContext scope) { - return declarator.switchForwardRef(oldParams,cond,scope); + return new PointerDeclarator(declarator.switchForwardRef(oldParams,cond,scope)); } } diff --git a/src/superc/cdesugarer/desugarer.y b/src/superc/cdesugarer/desugarer.y index 46ff659a..d75e807f 100644 --- a/src/superc/cdesugarer/desugarer.y +++ b/src/superc/cdesugarer/desugarer.y @@ -520,7 +520,6 @@ FunctionPrototype newDeclarations.add(renamedDeclarator, entry.getCondition()); } else if (functionCouldExist(newtype,previoustype,scope,entry.getCondition())) { transformForwardParams(renamedDeclarator,previoustype,entry.getCondition(),newDeclarations,scope); - System.err.println(newDeclarations + "::" + entry.getCondition()); } else { scope.putError(originalName, entry.getCondition()); recordInvalidGlobalDeclaration(originalName, entry.getCondition()); diff --git a/src/xtc/type/PointerT.java b/src/xtc/type/PointerT.java index bf2aa83a..cc65fb7a 100644 --- a/src/xtc/type/PointerT.java +++ b/src/xtc/type/PointerT.java @@ -48,7 +48,7 @@ public class PointerT extends DerivedT { public PointerT(Type type) { this.type = type; for (Attribute a : type.attributes()) - addAttribute(a); + addAttribute(a); } /** From a6f3ddc1f097fd425cbac76b1bd130e40f0f9ca7 Mon Sep 17 00:00:00 2001 From: pattersonz Date: Tue, 14 Feb 2023 20:28:31 -0600 Subject: [PATCH 47/77] added string for clang compile --- src/superc/SugarC.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/superc/SugarC.java b/src/superc/SugarC.java index eb7014f9..04b7c36b 100644 --- a/src/superc/SugarC.java +++ b/src/superc/SugarC.java @@ -586,6 +586,7 @@ public Node parse(Reader in, File file) throws IOException, ParseException { System.out.print("#include \n"); System.out.print("#include \n"); System.out.print("#include \n"); + System.out.print("#include \n"); System.out.print("\n"); From 0bc1b63a5cb38e8b0367afc8153811aacffab177 Mon Sep 17 00:00:00 2001 From: pattersonz Date: Wed, 15 Feb 2023 14:39:13 -0600 Subject: [PATCH 48/77] added complete node transformation values for declaringlist values --- src/superc/cdesugarer/CActions.java | 84 +++++++++++++++++++++++------ src/superc/cdesugarer/desugarer.y | 84 +++++++++++++++++++++++------ 2 files changed, 138 insertions(+), 30 deletions(-) diff --git a/src/superc/cdesugarer/CActions.java b/src/superc/cdesugarer/CActions.java index 20c22ada..2f5ccf32 100644 --- a/src/superc/cdesugarer/CActions.java +++ b/src/superc/cdesugarer/CActions.java @@ -1059,7 +1059,7 @@ public Object action(int production, Subparser subparser, Object value) { Multiverse combo = declarationListAction(types,declarators,subparser.getPresenceCondition(),((CContext) subparser.scope)); setTransformationValue(value, new DeclaringListValue(types,declarators,new Multiverse(new EmptyInitializer(),subparser.getPresenceCondition()),combo)); } else { - setTransformationValue(value, new DeclaringListValue(types,declarators,new Multiverse(new EmptyInitializer(),subparser.getPresenceCondition()))); + setTransformationValue(value, new DeclaringListValue(types,declarators,new Multiverse(new EmptyInitializer(),subparser.getPresenceCondition()),pc)); } } break; @@ -1069,7 +1069,7 @@ public Object action(int production, Subparser subparser, Object value) { PresenceCondition pc = subparser.getPresenceCondition(); Multiverse initializers = this.getCompleteNodeMultiverseValue(subparser, 1, pc); - DeclaringListValue decl = (DeclaringListValue) getTransformationValue(subparser,4); + DeclaringListValue decl = getCompleteNodeDeclaringListValue(subparser,4,pc);; List declaringlist = new LinkedList(); if (((CContext) subparser.scope).isGlobal()) { decl.initializer = initializers; @@ -1104,7 +1104,7 @@ public Object action(int production, Subparser subparser, Object value) { Multiverse combo = declarationListAction(types,declarators,subparser.getPresenceCondition(),((CContext) subparser.scope)); setTransformationValue(value, new DeclaringListValue(types,declarators,new Multiverse(new EmptyInitializer(),subparser.getPresenceCondition()),combo)); } else { - setTransformationValue(value, new DeclaringListValue(types,declarators,new Multiverse(new EmptyInitializer(),subparser.getPresenceCondition()))); + setTransformationValue(value, new DeclaringListValue(types,declarators,new Multiverse(new EmptyInitializer(),subparser.getPresenceCondition()),pc)); } } break; @@ -1114,7 +1114,7 @@ public Object action(int production, Subparser subparser, Object value) { PresenceCondition pc = subparser.getPresenceCondition(); Multiverse initializers = this.getCompleteNodeMultiverseValue(subparser, 1, pc); - DeclaringListValue decl = (DeclaringListValue) getTransformationValue(subparser,4); + DeclaringListValue decl = getCompleteNodeDeclaringListValue(subparser,4,pc);; List declaringlist = new LinkedList(); if (((CContext) subparser.scope).isGlobal()) { decl.initializer = initializers; @@ -1138,7 +1138,7 @@ public Object action(int production, Subparser subparser, Object value) { Multiverse combo = declarationListAction(types,declarators,subparser.getPresenceCondition(),((CContext) subparser.scope)); setTransformationValue(value, new DeclaringListValue(types,declarators,new Multiverse(new EmptyInitializer(),subparser.getPresenceCondition()),combo)); } else { - setTransformationValue(value, new DeclaringListValue(types,declarators,new Multiverse(new EmptyInitializer(),subparser.getPresenceCondition()))); + setTransformationValue(value, new DeclaringListValue(types,declarators,new Multiverse(new EmptyInitializer(),subparser.getPresenceCondition()),pc)); } } break; @@ -1148,7 +1148,7 @@ public Object action(int production, Subparser subparser, Object value) { PresenceCondition pc = subparser.getPresenceCondition(); Multiverse initializers = this.getCompleteNodeMultiverseValue(subparser, 1, pc); - DeclaringListValue decl = (DeclaringListValue) getTransformationValue(subparser,4); + DeclaringListValue decl = getCompleteNodeDeclaringListValue(subparser,4,pc);; List declaringlist = (List)getTransformationValue(subparser,8); if (((CContext) subparser.scope).isGlobal()) { decl.initializer = initializers; @@ -1172,7 +1172,7 @@ public Object action(int production, Subparser subparser, Object value) { Multiverse combo = declarationListAction(types,declarators,subparser.getPresenceCondition(),((CContext) subparser.scope)); setTransformationValue(value, new DeclaringListValue(types,declarators,new Multiverse(new EmptyInitializer(),subparser.getPresenceCondition()),combo)); } else { - setTransformationValue(value, new DeclaringListValue(types,declarators,new Multiverse(new EmptyInitializer(),subparser.getPresenceCondition()))); + setTransformationValue(value, new DeclaringListValue(types,declarators,new Multiverse(new EmptyInitializer(),subparser.getPresenceCondition()),pc)); } } break; @@ -1182,7 +1182,7 @@ public Object action(int production, Subparser subparser, Object value) { PresenceCondition pc = subparser.getPresenceCondition(); Multiverse initializers = this.getCompleteNodeMultiverseValue(subparser, 1, pc); - DeclaringListValue decl = (DeclaringListValue) getTransformationValue(subparser,4); + DeclaringListValue decl = getCompleteNodeDeclaringListValue(subparser,4,pc);; List declaringlist = new LinkedList(); if (((CContext) subparser.scope).isGlobal()) { decl.initializer = initializers; @@ -1206,7 +1206,7 @@ public Object action(int production, Subparser subparser, Object value) { Multiverse combo = declarationListAction(types,declarators,subparser.getPresenceCondition(),((CContext) subparser.scope)); setTransformationValue(value, new DeclaringListValue(types,declarators,new Multiverse(new EmptyInitializer(),subparser.getPresenceCondition()),combo)); } else { - setTransformationValue(value, new DeclaringListValue(types,declarators,new Multiverse(new EmptyInitializer(),subparser.getPresenceCondition()))); + setTransformationValue(value, new DeclaringListValue(types,declarators,new Multiverse(new EmptyInitializer(),subparser.getPresenceCondition()),pc)); } } break; @@ -1216,7 +1216,7 @@ public Object action(int production, Subparser subparser, Object value) { PresenceCondition pc = subparser.getPresenceCondition(); Multiverse initializers = this.getCompleteNodeMultiverseValue(subparser, 1, pc); - DeclaringListValue decl = (DeclaringListValue) getTransformationValue(subparser,4); + DeclaringListValue decl = getCompleteNodeDeclaringListValue(subparser,4,pc);; List declaringlist = new LinkedList(); if (((CContext) subparser.scope).isGlobal()) { decl.initializer = initializers; @@ -1240,7 +1240,7 @@ public Object action(int production, Subparser subparser, Object value) { Multiverse combo = declarationListAction(types,declarators,subparser.getPresenceCondition(),((CContext) subparser.scope)); setTransformationValue(value, new DeclaringListValue(types,declarators,new Multiverse(new EmptyInitializer(),subparser.getPresenceCondition()),combo)); } else { - setTransformationValue(value, new DeclaringListValue(types,declarators,new Multiverse(new EmptyInitializer(),subparser.getPresenceCondition()))); + setTransformationValue(value, new DeclaringListValue(types,declarators,new Multiverse(new EmptyInitializer(),subparser.getPresenceCondition()),pc)); } } break; @@ -1250,7 +1250,7 @@ public Object action(int production, Subparser subparser, Object value) { PresenceCondition pc = subparser.getPresenceCondition(); Multiverse initializers = this.getCompleteNodeMultiverseValue(subparser, 1, pc); - DeclaringListValue decl = (DeclaringListValue) getTransformationValue(subparser,4); + DeclaringListValue decl = getCompleteNodeDeclaringListValue(subparser,4,pc); List declaringlist = (List)getTransformationValue(subparser,8); if (((CContext) subparser.scope).isGlobal()) { decl.initializer = initializers; @@ -10086,11 +10086,12 @@ private static class DeclaringListValue { */ private DeclaringListValue(Multiverse typespecifier, Multiverse declarator, - Multiverse initializer) { + Multiverse initializer, + PresenceCondition p) { this.typespecifier = typespecifier; this.declarator = declarator; this.initializer = initializer; - this.desugared = null; + this.desugared = new Multiverse("",p); } private DeclaringListValue(Multiverse typespecifier, @@ -10106,7 +10107,8 @@ private DeclaringListValue(Multiverse typespecifier, public boolean isEmpty() { return typespecifier.isEmpty() || declarator.isEmpty() || - initializer.isEmpty(); + initializer.isEmpty() || + desugared.isEmpty(); } public String toString() @@ -10120,6 +10122,17 @@ public String toString() public DeclaringListValue filter(PresenceCondition p ) { return new DeclaringListValue(typespecifier.filter(p),declarator.filter(p),initializer.filter(p),desugared.filter(p)); } + + public void destruct() { + typespecifier.destruct(); declarator.destruct(); initializer.destruct(); desugared.destruct(); + } + + public void addAll(DeclaringListValue d) { + typespecifier.addAll(d.typespecifier); + declarator.addAll(d.declarator); + initializer.addAll(d.initializer); + desugared.addAll(d.desugared); + } } /* @@ -10994,6 +11007,7 @@ private Object getTransformationValue(Subparser subparser, int component) { */ private Object getTransformationValue(Object node) { Object transformationValue = ((Node) node).getProperty(TRANSFORMATION); + System.err.println(); assert transformationValue != null; if (transformationValue == null) { throw new IllegalStateException("getting null transformation value"); @@ -11286,6 +11300,46 @@ private List getCompleteNodeStructDeclListValue(Node n return resultlist; } +private DeclaringListValue getCompleteNodeDeclaringListValue(Subparser subparser, int component, PresenceCondition pc) { + return getCompleteNodeDeclaringListValue(getNodeAt(subparser, component), pc); +} + +private DeclaringListValue getCompleteNodeDeclaringListValue(Node node, PresenceCondition pc) { + Multiverse nodemv = staticCondToMultiverse(node, pc); + DeclaringListValue resultDeclList = new DeclaringListValue(new Multiverse(), new Multiverse(), + new Multiverse(), new Multiverse()); + if (nodemv.isEmpty()) { + return resultDeclList; + } + for (Element elem : nodemv) { + DeclaringListValue innerDecl = (DeclaringListValue) ((Node) elem.getData()).getProperty(TRANSFORMATION); + System.err.println(innerDecl); + if (!innerDecl.isEmpty()) { + DeclaringListValue filtered = innerDecl.filter(elem.getCondition()); + if (!filtered.isEmpty()) { + resultDeclList.addAll(filtered); + } + filtered.destruct(); + } + } + nodemv.destruct(); + + // it should not be possible to have an empty multiverse, as long as + // the pc correponds to the current subparsers's pc. + assert ! resultDeclList.isEmpty(); + + if (resultDeclList.isEmpty()) { + return resultDeclList; + } + + DeclaringListValue filtered = resultDeclList.filter(pc); + resultDeclList.destruct(); + + return filtered; +} + + + /** * Get the semantic value for node that has a "complete" annotation * where the semantic value is an expression value. The complete diff --git a/src/superc/cdesugarer/desugarer.y b/src/superc/cdesugarer/desugarer.y index d75e807f..84cf7dea 100644 --- a/src/superc/cdesugarer/desugarer.y +++ b/src/superc/cdesugarer/desugarer.y @@ -1133,14 +1133,14 @@ DefaultDeclaringList: /** nomerge **/ /* Can't redeclare typedef names */ Multiverse combo = declarationListAction(types,declarators,subparser.getPresenceCondition(),((CContext) subparser.scope)); setTransformationValue(value, new DeclaringListValue(types,declarators,new Multiverse(new EmptyInitializer(),subparser.getPresenceCondition()),combo)); } else { - setTransformationValue(value, new DeclaringListValue(types,declarators,new Multiverse(new EmptyInitializer(),subparser.getPresenceCondition()))); + setTransformationValue(value, new DeclaringListValue(types,declarators,new Multiverse(new EmptyInitializer(),subparser.getPresenceCondition()),pc)); } } AssemblyExpressionOpt AttributeSpecifierListOpt InitializerOpt { PresenceCondition pc = subparser.getPresenceCondition(); Multiverse initializers = this.getCompleteNodeMultiverseValue(subparser, 1, pc); - DeclaringListValue decl = (DeclaringListValue) getTransformationValue(subparser,4); + DeclaringListValue decl = getCompleteNodeDeclaringListValue(subparser,4,pc);; List declaringlist = new LinkedList(); if (((CContext) subparser.scope).isGlobal()) { decl.initializer = initializers; @@ -1173,14 +1173,14 @@ DefaultDeclaringList: /** nomerge **/ /* Can't redeclare typedef names */ Multiverse combo = declarationListAction(types,declarators,subparser.getPresenceCondition(),((CContext) subparser.scope)); setTransformationValue(value, new DeclaringListValue(types,declarators,new Multiverse(new EmptyInitializer(),subparser.getPresenceCondition()),combo)); } else { - setTransformationValue(value, new DeclaringListValue(types,declarators,new Multiverse(new EmptyInitializer(),subparser.getPresenceCondition()))); + setTransformationValue(value, new DeclaringListValue(types,declarators,new Multiverse(new EmptyInitializer(),subparser.getPresenceCondition()),pc)); } } AssemblyExpressionOpt AttributeSpecifierListOpt InitializerOpt { PresenceCondition pc = subparser.getPresenceCondition(); Multiverse initializers = this.getCompleteNodeMultiverseValue(subparser, 1, pc); - DeclaringListValue decl = (DeclaringListValue) getTransformationValue(subparser,4); + DeclaringListValue decl = getCompleteNodeDeclaringListValue(subparser,4,pc);; List declaringlist = new LinkedList(); if (((CContext) subparser.scope).isGlobal()) { decl.initializer = initializers; @@ -1202,14 +1202,14 @@ DefaultDeclaringList: /** nomerge **/ /* Can't redeclare typedef names */ Multiverse combo = declarationListAction(types,declarators,subparser.getPresenceCondition(),((CContext) subparser.scope)); setTransformationValue(value, new DeclaringListValue(types,declarators,new Multiverse(new EmptyInitializer(),subparser.getPresenceCondition()),combo)); } else { - setTransformationValue(value, new DeclaringListValue(types,declarators,new Multiverse(new EmptyInitializer(),subparser.getPresenceCondition()))); + setTransformationValue(value, new DeclaringListValue(types,declarators,new Multiverse(new EmptyInitializer(),subparser.getPresenceCondition()),pc)); } } AssemblyExpressionOpt AttributeSpecifierListOpt InitializerOpt { PresenceCondition pc = subparser.getPresenceCondition(); Multiverse initializers = this.getCompleteNodeMultiverseValue(subparser, 1, pc); - DeclaringListValue decl = (DeclaringListValue) getTransformationValue(subparser,4); + DeclaringListValue decl = getCompleteNodeDeclaringListValue(subparser,4,pc);; List declaringlist = (List)getTransformationValue(subparser,8); if (((CContext) subparser.scope).isGlobal()) { decl.initializer = initializers; @@ -1233,14 +1233,14 @@ DeclaringList: /** nomerge **/ Multiverse combo = declarationListAction(types,declarators,subparser.getPresenceCondition(),((CContext) subparser.scope)); setTransformationValue(value, new DeclaringListValue(types,declarators,new Multiverse(new EmptyInitializer(),subparser.getPresenceCondition()),combo)); } else { - setTransformationValue(value, new DeclaringListValue(types,declarators,new Multiverse(new EmptyInitializer(),subparser.getPresenceCondition()))); + setTransformationValue(value, new DeclaringListValue(types,declarators,new Multiverse(new EmptyInitializer(),subparser.getPresenceCondition()),pc)); } } AssemblyExpressionOpt AttributeSpecifierListOpt InitializerOpt { PresenceCondition pc = subparser.getPresenceCondition(); Multiverse initializers = this.getCompleteNodeMultiverseValue(subparser, 1, pc); - DeclaringListValue decl = (DeclaringListValue) getTransformationValue(subparser,4); + DeclaringListValue decl = getCompleteNodeDeclaringListValue(subparser,4,pc);; List declaringlist = new LinkedList(); if (((CContext) subparser.scope).isGlobal()) { decl.initializer = initializers; @@ -1261,14 +1261,14 @@ DeclaringList: /** nomerge **/ Multiverse combo = declarationListAction(types,declarators,subparser.getPresenceCondition(),((CContext) subparser.scope)); setTransformationValue(value, new DeclaringListValue(types,declarators,new Multiverse(new EmptyInitializer(),subparser.getPresenceCondition()),combo)); } else { - setTransformationValue(value, new DeclaringListValue(types,declarators,new Multiverse(new EmptyInitializer(),subparser.getPresenceCondition()))); + setTransformationValue(value, new DeclaringListValue(types,declarators,new Multiverse(new EmptyInitializer(),subparser.getPresenceCondition()),pc)); } } AssemblyExpressionOpt AttributeSpecifierListOpt InitializerOpt { PresenceCondition pc = subparser.getPresenceCondition(); Multiverse initializers = this.getCompleteNodeMultiverseValue(subparser, 1, pc); - DeclaringListValue decl = (DeclaringListValue) getTransformationValue(subparser,4); + DeclaringListValue decl = getCompleteNodeDeclaringListValue(subparser,4,pc);; List declaringlist = new LinkedList(); if (((CContext) subparser.scope).isGlobal()) { decl.initializer = initializers; @@ -1290,14 +1290,14 @@ DeclaringList: /** nomerge **/ Multiverse combo = declarationListAction(types,declarators,subparser.getPresenceCondition(),((CContext) subparser.scope)); setTransformationValue(value, new DeclaringListValue(types,declarators,new Multiverse(new EmptyInitializer(),subparser.getPresenceCondition()),combo)); } else { - setTransformationValue(value, new DeclaringListValue(types,declarators,new Multiverse(new EmptyInitializer(),subparser.getPresenceCondition()))); + setTransformationValue(value, new DeclaringListValue(types,declarators,new Multiverse(new EmptyInitializer(),subparser.getPresenceCondition()),pc)); } } AssemblyExpressionOpt AttributeSpecifierListOpt InitializerOpt { PresenceCondition pc = subparser.getPresenceCondition(); Multiverse initializers = this.getCompleteNodeMultiverseValue(subparser, 1, pc); - DeclaringListValue decl = (DeclaringListValue) getTransformationValue(subparser,4); + DeclaringListValue decl = getCompleteNodeDeclaringListValue(subparser,4,pc); List declaringlist = (List)getTransformationValue(subparser,8); if (((CContext) subparser.scope).isGlobal()) { decl.initializer = initializers; @@ -9937,11 +9937,12 @@ private static class DeclaringListValue { */ private DeclaringListValue(Multiverse typespecifier, Multiverse declarator, - Multiverse initializer) { + Multiverse initializer, + PresenceCondition p) { this.typespecifier = typespecifier; this.declarator = declarator; this.initializer = initializer; - this.desugared = null; + this.desugared = new Multiverse("",p); } private DeclaringListValue(Multiverse typespecifier, @@ -9957,7 +9958,8 @@ private static class DeclaringListValue { public boolean isEmpty() { return typespecifier.isEmpty() || declarator.isEmpty() || - initializer.isEmpty(); + initializer.isEmpty() || + desugared.isEmpty(); } public String toString() @@ -9971,6 +9973,17 @@ private static class DeclaringListValue { public DeclaringListValue filter(PresenceCondition p ) { return new DeclaringListValue(typespecifier.filter(p),declarator.filter(p),initializer.filter(p),desugared.filter(p)); } + + public void destruct() { + typespecifier.destruct(); declarator.destruct(); initializer.destruct(); desugared.destruct(); + } + + public void addAll(DeclaringListValue d) { + typespecifier.addAll(d.typespecifier); + declarator.addAll(d.declarator); + initializer.addAll(d.initializer); + desugared.addAll(d.desugared); + } } /* @@ -10845,6 +10858,7 @@ private Object getTransformationValue(Subparser subparser, int component) { */ private Object getTransformationValue(Object node) { Object transformationValue = ((Node) node).getProperty(TRANSFORMATION); + System.err.println(); assert transformationValue != null; if (transformationValue == null) { throw new IllegalStateException("getting null transformation value"); @@ -11137,6 +11151,46 @@ private List getCompleteNodeStructDeclListValue(Node n return resultlist; } +private DeclaringListValue getCompleteNodeDeclaringListValue(Subparser subparser, int component, PresenceCondition pc) { + return getCompleteNodeDeclaringListValue(getNodeAt(subparser, component), pc); +} + +private DeclaringListValue getCompleteNodeDeclaringListValue(Node node, PresenceCondition pc) { + Multiverse nodemv = staticCondToMultiverse(node, pc); + DeclaringListValue resultDeclList = new DeclaringListValue(new Multiverse(), new Multiverse(), + new Multiverse(), new Multiverse()); + if (nodemv.isEmpty()) { + return resultDeclList; + } + for (Element elem : nodemv) { + DeclaringListValue innerDecl = (DeclaringListValue) ((Node) elem.getData()).getProperty(TRANSFORMATION); + System.err.println(innerDecl); + if (!innerDecl.isEmpty()) { + DeclaringListValue filtered = innerDecl.filter(elem.getCondition()); + if (!filtered.isEmpty()) { + resultDeclList.addAll(filtered); + } + filtered.destruct(); + } + } + nodemv.destruct(); + + // it should not be possible to have an empty multiverse, as long as + // the pc correponds to the current subparsers's pc. + assert ! resultDeclList.isEmpty(); + + if (resultDeclList.isEmpty()) { + return resultDeclList; + } + + DeclaringListValue filtered = resultDeclList.filter(pc); + resultDeclList.destruct(); + + return filtered; +} + + + /** * Get the semantic value for node that has a "complete" annotation * where the semantic value is an expression value. The complete From c6e9cbccaa7cc7f9eb2c722eddedd129888ab801 Mon Sep 17 00:00:00 2001 From: pattersonz Date: Mon, 20 Feb 2023 11:52:55 -0600 Subject: [PATCH 49/77] functions with prototypes now create multiplexes --- .../microbenchmark/autoRunnerResults.txt | 9 +- .../function_prototype_multiple_definitions.c | 31 ++++ src/superc/SugarC.java | 5 +- src/superc/cdesugarer/CActions.java | 152 ++++++++++++------ src/superc/cdesugarer/CContext.java | 27 +++- src/superc/cdesugarer/NamedFunctionT.java | 39 ++++- src/superc/cdesugarer/SymbolTable.java | 3 - src/superc/cdesugarer/TypeSpecifier.java | 1 - src/superc/cdesugarer/desugarer.y | 152 ++++++++++++------ src/xtc/type/C.java | 9 +- src/xtc/type/FunctionOrMethodT.java | 24 ++- src/xtc/type/FunctionT.java | 6 +- src/xtc/type/Type.java | 5 + src/xtc/type/VariableT.java | 14 ++ 14 files changed, 347 insertions(+), 130 deletions(-) create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_prototype_multiple_definitions.c diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/autoRunnerResults.txt b/fonda/cpp_testsuite/desugarer/microbenchmark/autoRunnerResults.txt index 4fc9c4f8..3d3ee8a9 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/autoRunnerResults.txt +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/autoRunnerResults.txt @@ -25,15 +25,16 @@ /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/external_declarations/injected/extern_var_dec_configurable.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/external_declarations/injected/extern_repeated.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/external_declarations/injected/extern_global_static.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/prototype_forward_reference.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_typedef_parameter_configurable.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_parameters_configurable.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_parameters_empty_configurable.c :: match -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_abstract_parameter.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/basic_functions.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_pointer.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_qualified_void_pointer.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_pointer_param.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_parameter_multiple_config.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_prototype_multiple_definitions.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/variadic_arguments/injected/simple_varg.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/array_flex.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/declarations/basic_declarators/injected/scope_partial_declaration2.c :: match @@ -106,9 +107,9 @@ /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/syntactic_error_integration/enum_error.c :: 1/2 ['0', '157']/['0', '0'] [' REPEATED::157/0'] -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/prototype_forward_reference.c :: 0/2 - ['44', '44']/['777', '777'] - ['::44/777', ' A::44/777'] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_abstract_parameter.c :: 0/2 + ['16', '4']/['777', '777'] + ['::16/777', ' ENABLE_A::4/777'] /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/injected/function_typedef_parameter_configurable.c :: did not desug /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/injected/function_parameters_configurable.c :: did not desug /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/injected/function_parameters_empty_configurable.c :: did not desug diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_prototype_multiple_definitions.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_prototype_multiple_definitions.c new file mode 100644 index 00000000..416b9097 --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_prototype_multiple_definitions.c @@ -0,0 +1,31 @@ +struct x; + +#ifdef A +struct x* foo(struct x *); +#else +int foo(int a, struct x *z); +#endif + +#ifdef B +struct x {long field;}; +#else +struct x {char field;}; +#endif + + +int main() { + struct x * temp; + #ifdef C + temp = foo(temp); + return sizeof(temp->field); + #else + return foo(2,temp); + #endif +} + +#ifdef C +struct x* foo(struct x* q) { return q;} +#else +int foo(int a, struct x* z) {return a;} +#endif + diff --git a/src/superc/SugarC.java b/src/superc/SugarC.java index 04b7c36b..e7b4c03b 100644 --- a/src/superc/SugarC.java +++ b/src/superc/SugarC.java @@ -581,7 +581,8 @@ public Node parse(Reader in, File file) throws IOException, ParseException { if (runtime.test("make-main")) { mainMethod = actions.printMain(scope, pcTrue); } - + String prototypeMultiplex = actions.printMultiplexes(scope,pcTrue); + // emit headers System.out.print("#include \n"); System.out.print("#include \n"); @@ -618,6 +619,8 @@ public Node parse(Reader in, File file) throws IOException, ParseException { System.out.print(actions.linkerThunks(scope, pcTrue)); } + System.out.print(actions.printMultiplexes(scope,pcTrue)); + if (runtime.test("make-main")) { System.out.print(mainMethod); } diff --git a/src/superc/cdesugarer/CActions.java b/src/superc/cdesugarer/CActions.java index 2f5ccf32..aef3f4b5 100644 --- a/src/superc/cdesugarer/CActions.java +++ b/src/superc/cdesugarer/CActions.java @@ -272,7 +272,8 @@ public Object action(int production, Subparser subparser, Object value) { break; case 12: - {restartLabelFunction(); + { + restartLabelFunction(); // similar to Declaration, but different in that this has a // compoundstatement, while declaration has an initializer. PresenceCondition pc = subparser.getPresenceCondition(); @@ -288,6 +289,7 @@ public Object action(int production, Subparser subparser, Object value) { Multiverse typespecifiermv = prototype.typespecifier; Multiverse declaratormv = prototype.declarator; Multiverse newDeclarations = new Multiverse(); + Multiverse newTypes = new Multiverse(); assert scope.isGlobal(); // function definitions should be global. nested functions have a separate subgrammar. for (Element typespecifier : typespecifiermv) { PresenceCondition typespecifierCond = prototypeNode.getCondition().and(typespecifier.getCondition()); @@ -319,10 +321,12 @@ public Object action(int production, Subparser subparser, Object value) { // the renamed declaration is used to get the type entry in the symtab String renaming; + String funcName = ""; if (!entry.getData().isDeclared()) { renaming = freshCId(originalName); } else { //is declared - renaming = entry.getData().getValue().getName(); + funcName = entry.getData().getValue().getName(); + renaming = freshCId(entry.getData().getValue().getName()); } Declarator renamedDeclarator = declarator.getData().rename(renaming); Declaration renamedDeclaration = new Declaration(typespecifier.getData(), renamedDeclarator); @@ -364,38 +368,40 @@ public Object action(int production, Subparser subparser, Object value) { ((NamedFunctionT)type).setDefined(); // update the symbol table for this presence condition scope.put(originalName, type, entry.getCondition()); - + // record the global/extern declaration using the original name for later use in handling linking if (scope.isGlobal() && isGlobalOrExtern(typespecifier.getData())) { externalLinkage.put(originalName, originalDeclaration, entry.getCondition()); } - + newDeclarations.add(renamedDeclarator, entry.getCondition()); - - // shouldn't need to add forward decl, since if - // the function had a decl before, that will do - // the renaming. if the function is missing a - // decl before def, then the function is - // implicitly declared to be () -> int + newTypes.add(typespecifier.getData(),entry.getCondition()); + + // shouldn't need to add forward decl, since if + // the function had a decl before, that will do + // the renaming. if the function is missing a + // decl before def, then the function is + // implicitly declared to be () -> int - recordRenaming(renaming, originalName); - - } else { - if (entry.getData().getValue().isNamedFunction()) { // there is no Type.isFunctionOrMethod() + recordRenaming(renaming, originalName); + } else { + if (entry.getData().getValue().isNamedFunction() && !((NamedFunctionT) entry.getData().getValue()).getDefined(entry.getCondition())) { // there is no Type.isFunctionOrMethod() FunctionT newtype = ((NamedFunctionT) type).toFunctionT(); FunctionT previoustype = ((NamedFunctionT) entry.getData().getValue()).toFunctionT(); - newtype.setDefined(); - ((NamedFunctionT) entry.getData().getValue()).setDefined(); + newtype.setDefined(entry.getCondition()); + ((NamedFunctionT) entry.getData().getValue()).setDefined(entry.getCondition()); // TODO: make sure a function is only defined // once, although it can be declared multiple // times. // already declared entries if (cOps.equal(newtype, previoustype)) { - newDeclarations.add(renamedDeclarator, entry.getCondition()); + newTypes.add(typespecifier.getData(),entry.getCondition()); + CContext.addMultiplex(funcName,renaming,entry.getCondition()); } else if (functionCouldExist(newtype,previoustype,scope,entry.getCondition())) { - transformForwardParams(renamedDeclarator,previoustype,entry.getCondition(),newDeclarations,scope); + transformFunctionRefs(renamedDeclarator,previoustype,entry.getCondition(),newDeclarations,typespecifier.getData(),newTypes,scope); + CContext.addMultiplex(funcName,renaming,entry.getCondition()); } else { scope.putError(originalName, entry.getCondition()); recordInvalidGlobalDeclaration(originalName, entry.getCondition()); @@ -423,6 +429,8 @@ public Object action(int production, Subparser subparser, Object value) { } // end of loop over typespecifiers prototype.declarator.destruct(); prototype.declarator = newDeclarations; + prototype.typespecifier.destruct(); + prototype.typespecifier = newTypes; } } break; @@ -487,7 +495,6 @@ public Object action(int production, Subparser subparser, Object value) { sb.append("/* no function due to type errors in the function prototype */\n"); } setTransformationValue(value, sb.toString()); - } break; @@ -2414,7 +2421,6 @@ public Object action(int production, Subparser subparser, Object value) { Multiverse valuemv = DesugarOps.processStructDefinitionWithFlex(keyword, structTag, structfields, pc, scope, freshIdCreator, suTypeCreator); - System.err.println(valuemv); setTransformationValue(value, valuemv); } break; @@ -2462,8 +2468,7 @@ public Object action(int production, Subparser subparser, Object value) { // TODO: add attributes to type spec String structTag = ((Syntax) getNodeAt(subparser, 1)).getTokenText(); Multiverse valuemv = DesugarOps.processStructReference(keyword, structTag, pc, scope, freshIdCreator, suTypeCreator); - System.err.println(valuemv); - setTransformationValue(value, valuemv); + setTransformationValue(value, valuemv); } break; @@ -4217,7 +4222,6 @@ public Object action(int production, Subparser subparser, Object value) { } parametersmv.destruct(); // no need to filter, since we started parametersmv with the subparser pc - System.err.println(paramlistmv); setTransformationValue(value, paramlistmv); } break; @@ -4892,7 +4896,6 @@ public Object action(int production, Subparser subparser, Object value) { todoReminder("check the type of the conditional expression SelectionStatement (1)"); PresenceCondition pc = subparser.getPresenceCondition(); ExpressionValue exprval = getCompleteNodeExpressionValue(subparser, 3, pc); - System.err.println(exprval); Syntax ifsyn = (getSyntaxMV(subparser, 5,pc)).get(0).getData(); String ifstr = ifsyn.getTokenText(); String lparenstr = (getSyntaxMV(subparser, 4,pc)).get(0).getData().getTokenText(); @@ -5128,7 +5131,6 @@ public Object action(int production, Subparser subparser, Object value) { ExpressionValue testval = getCompleteNodeExpressionValue(subparser, 5, pc); String semi2 = ";"; ExpressionValue updateval = getCompleteNodeExpressionValue(subparser, 3, pc); - System.err.println(updateval); Syntax rparensyn = (getSyntaxMV(subparser, 2,pc)).get(0).getData(); String rparen = rparensyn.getTokenText(); LineNumbers lw = new LineNumbers(forsyn,rparensyn); @@ -5479,7 +5481,6 @@ public Object action(int production, Subparser subparser, Object value) { // get the renamings from the symtab PresenceCondition cond = subparser.getPresenceCondition(); Multiverse> entries = scope.getInAnyScope(originalName, cond); - System.err.println(entries); // convert the renamings to stringbuilders Multiverse sbmv = new Multiverse(); Multiverse typemv = new Multiverse(); @@ -5552,7 +5553,6 @@ public Object action(int production, Subparser subparser, Object value) { // it and the symtab should always return a non-empty mv assert ! sbmv.isEmpty(); entries.destruct(); - System.err.println(new ExpressionValue(sbmv, typemv,new Multiverse(new LineNumbers((Syntax)getNodeAt(subparser, 1)),cond))); setTransformationValue(value, new ExpressionValue(sbmv, typemv,new Multiverse(new LineNumbers((Syntax)getNodeAt(subparser, 1)),cond))); } break; @@ -5633,7 +5633,6 @@ public Object action(int production, Subparser subparser, Object value) { String res = "( " + e.getData().getString(e.getCondition(),this) + " )"; valuemv.add(res,e.getCondition()); Multiverse tt = e.getData().getType(); - System.err.println(tt); if (tt != null && !tt.isEmpty()) { typemv.addAll(tt); } else { @@ -6009,7 +6008,6 @@ else if (size1 > size2) { errorCond.delRef(); validTypes.delRef(); assert ! valuemv.isEmpty(); - System.err.println(valuemv + "::" + typemv); setTransformationValue(value, new ExpressionValue(valuemv, typemv, postfixexprval.integrateSyntax((Syntax)getNodeAt(subparser, 1)))); } else { setTransformationValue(value, new ExpressionValue(emitError("no valid type for one or more arguments of the function call"), @@ -6413,8 +6411,7 @@ else if (size1 > size2) { cc.delRef(); } } - System.err.println(error); - initializerlistmv.destruct(); + initializerlistmv.destruct(); Multiverse mv4 = mv2.product(initializerliststr, DesugarOps.concatStrings); initializerliststr.destruct(); //mv3.destruct(); @@ -6543,8 +6540,7 @@ else if (size1 > size2) { resultmv.add(emitError("no valid type found in unary operation"),t.getCondition()); resulttypemv.add(ErrorT.TYPE,t.getCondition()); } else { - System.err.println(op.getData() + " :: " + t.getData()); - + Type innerType; if (t.getData().isPointer()) { innerType = t.getData().toPointer().getType(); @@ -6948,7 +6944,6 @@ else if (size1 > size2) { PresenceCondition pc = subparser.getPresenceCondition(); ExpressionValue leftval = getCompleteNodeExpressionValue(subparser, 3, pc); ExpressionValue rightval = getCompleteNodeExpressionValue(subparser, 1, pc); - System.err.println(leftval); Multiverse leftmv = leftval.transformation; Multiverse opmv = new Multiverse(((Syntax) getNodeAt(subparser, 2)).getTokenText(), pc); Multiverse rightmv = rightval.transformation; @@ -7593,8 +7588,7 @@ else if (size1 > size2) { valuemv.add("invalid assignment expression", errorCond); } errorCond.delRef(); typesafeCond.delRef(); - System.err.println(typemv); - setTransformationValue(value, new ExpressionValue(valuemv, typemv, leftval.lines.product(rightval.lines, DesugarOps.combineLineNumbers))); + setTransformationValue(value, new ExpressionValue(valuemv, typemv, leftval.lines.product(rightval.lines, DesugarOps.combineLineNumbers))); } else { // no valid types setTransformationValue(value, new ExpressionValue(emitError("no valid type found in assignment expression"), @@ -8489,7 +8483,6 @@ protected void setupInitials(List declList, DeclaringListVal if (initializermv.size() == 1 && initializermv.get(0).getData().isEmpty()) { declList.add(decl); } else { - System.err.println(decl); for (Element declarator : decl.declarator) { String originalName = declarator.getData().getName(); Multiverse> entries = scope.getInCurrentScope(originalName, declarator.getCondition()); @@ -9781,7 +9774,6 @@ static public Multiverse hasField(UnionT u, Type t, CContext scope, Pre static public boolean compatParam(Type t1u, Type t2u) { Type t1 = t1u.resolve(), t2 = t2u.resolve(); - System.err.println("types:" + t1 + " " + t2); if ((t1.isPointer() || t1.isArray()) && t2.isNumber()) { return true; } else if (t2.isPointer() && t1.isPointer()) { @@ -9822,8 +9814,18 @@ static public boolean functionCouldExist(Type newType, Type prevType, CContext s if (!newType.isFunction() || !prevType.isFunction()) { return false; } - List newParams = ((FunctionT)newType).getParameters(); - List oldParams = ((FunctionT)prevType).getParameters(); + FunctionT newf = newType.toFunction(); + FunctionT oldf = prevType.toFunction(); + + if (!cOps.equal(newf.getResult(),oldf.getResult())) { + if (!typeCouldBeRef(newf.getResult(),oldf.getResult(),scope,cond)) { + return false; + } + + } + + List newParams = newf.getParameters(); + List oldParams = oldf.getParameters(); if (newParams.size() != oldParams.size()) { return false; @@ -9834,16 +9836,24 @@ static public boolean functionCouldExist(Type newType, Type prevType, CContext s if (cOps.equal(newT,oldT)) { continue; } - while (newT.isPointer()) { + if (!typeCouldBeRef(newT,oldT,scope,cond)) { + return false; + } + } + return true; +} + +static public boolean typeCouldBeRef(Type newT, Type oldT, CContext scope, PresenceCondition cond) { + while (newT.isPointer()) { if (!oldT.isPointer()) { return false; } newT = ((PointerT)newT).getType(); oldT = ((PointerT)oldT).getType(); - } - - if (newT.isStruct() && oldT.isStruct()) { - if (! ((StructT)oldT).getName().startsWith("__forward_tag_reference")){ + } + + if (newT.isStruct() && oldT.isStruct()) { + if (! ((StructT)oldT).getName().startsWith("__forward_tag_reference")){ return false; } String originalTag = scope.getForwardTagReferenceAnyScope(((StructT)oldT).getName()); @@ -9861,13 +9871,30 @@ static public boolean functionCouldExist(Type newType, Type prevType, CContext s } else { return false; } - } return true; } -static public void transformForwardParams(Declarator toTransform, Type prevType, PresenceCondition cond, Multiverse decs, CContext scope) { +static public void transformFunctionRefs(Declarator toTransform, Type prevType, PresenceCondition cond, Multiverse decs, TypeSpecifier typespec, Multiverse types , CContext scope) { + if (!prevType.isFunction()) { + System.err.println("Error reverting refs of nonfunction"); + System.exit(1); + } List oldParams = ((FunctionT)prevType).getParameters(); decs.add(toTransform.switchForwardRef(oldParams,cond,scope),cond); + Type resType = prevType.toFunction().getResult(); + while (resType.isPointer()) {resType = resType.toPointer().getType();} + if (resType.isStruct() && ((StructT)resType).getName().startsWith("__forward_tag_reference_")) { + String originalTag = scope.getForwardTagReferenceAnyScope(((StructT)resType).getName()); + Multiverse> originalTagEntries + = scope.getInAnyScope(CContext.toTagName(originalTag), cond); + List names = new LinkedList(); + for (Element> e : originalTagEntries) { + names.add(((StructT)e.getData().getValue()).getName()); + } + types.add(typespec.revertForwardRefs(names,((StructT)resType).getName(),toTransform.getName()),cond); + } else { + types.add(typespec,cond); + } } @@ -11007,7 +11034,6 @@ private Object getTransformationValue(Subparser subparser, int component) { */ private Object getTransformationValue(Object node) { Object transformationValue = ((Node) node).getProperty(TRANSFORMATION); - System.err.println(); assert transformationValue != null; if (transformationValue == null) { throw new IllegalStateException("getting null transformation value"); @@ -11313,7 +11339,6 @@ private DeclaringListValue getCompleteNodeDeclaringListValue(Node node, Presence } for (Element elem : nodemv) { DeclaringListValue innerDecl = (DeclaringListValue) ((Node) elem.getData()).getProperty(TRANSFORMATION); - System.err.println(innerDecl); if (!innerDecl.isEmpty()) { DeclaringListValue filtered = innerDecl.filter(elem.getCondition()); if (!filtered.isEmpty()) { @@ -11728,6 +11753,35 @@ private void recordRenaming(String renaming, String original) { recordedRenamings.append(String.format("__static_renaming(\"%s\", \"%s\");\n", renaming, original)); } +public String printMultiplexes(CContext scope, PresenceCondition pc) { + String ret = ""; + for (Map.Entry> m : CContext.getMultiplexes().entrySet()) { + String originalName = m.getKey(); + while (originalName.charAt(originalName.length()-1) >= '0' && originalName.charAt(originalName.length()-1) <= '9') { + originalName = originalName.substring(0,originalName.length()-1); + } + originalName = originalName.substring(2,originalName.length()-1); + Multiverse> entries = scope.getInCurrentScope(originalName, pc); + for (Element> entry : entries) { + if (!entry.getData().isDeclared()) { continue; } + Type t = entry.getData().getValue(); + if (!t.isNamedFunction()) { continue; } + NamedFunctionT nft = t.toNamedFunction(); + if (!m.getKey().equals(nft.getName())) { continue; } + ret += nft.printSignature() + " {\n"; + String params = nft.getParamNames(); + for (Element plex : m.getValue()) { + ret += String.format("if (%s) { return %s(%s); }\n", + condToCVar(plex.getCondition()), + plex.getData(), + params); + } + ret += "}\n"; + } + } + return ret; +} + public String printMain(CContext scope, PresenceCondition pc) { String ret = ""; ret += "int main(int argc, char **argv) {\n__static_initializer_default();\n"; diff --git a/src/superc/cdesugarer/CContext.java b/src/superc/cdesugarer/CContext.java index 7445ad46..257c8886 100644 --- a/src/superc/cdesugarer/CContext.java +++ b/src/superc/cdesugarer/CContext.java @@ -108,6 +108,8 @@ public static String getOutput() { */ protected Map> taglookasidetable; + protected static Map> prototypeMultiplex = new HashMap>(); + /** * The forward tag reference accounts for forward references of * struct/union, when in a single pass, we won't know yet how many @@ -639,7 +641,7 @@ public ParsingContext merge(ParsingContext other) { } else { // symtab.addAll(scope.symtab); oldsymtab.copyBools(scope.oldsymtab); - + if (null != parent) { return parent.merge(scope.parent); @@ -839,9 +841,9 @@ public CContext exitScope(PresenceCondition presenceCondition) { scope.symtab.delRef(); scope.symtab = null; if (scope.taglookasidetable != null) { - for (SymbolTable elem : scope.taglookasidetable.values()) { - elem.delRef(); - } + for (SymbolTable elem : scope.taglookasidetable.values()) { + elem.delRef(); + } } scope.taglookasidetable = null; scope.forwardtagrefs = null; @@ -948,7 +950,6 @@ public CContext killReentrantScope(PresenceCondition presenceCondition) { scope.oldsymtab = null; scope = scope.parent; } - return scope; } @@ -1314,6 +1315,22 @@ public Multiverse getEnumMultiverse(String enumTag, PresenceCondition pc return res; } + + public static void addMultiplex(String original, String rename, PresenceCondition cond) { + Multiverse plexes; + if(prototypeMultiplex.containsKey(original)) { + plexes = prototypeMultiplex.get(original).filter(cond.not()); + plexes.add(rename,cond); + + } else { + plexes = new Multiverse(rename,cond); + } + prototypeMultiplex.put(original,plexes); + } + + public static Map> getMultiplexes() { + return prototypeMultiplex; + } /** * Add to the declarations to be put at the top of the scope. diff --git a/src/superc/cdesugarer/NamedFunctionT.java b/src/superc/cdesugarer/NamedFunctionT.java index 95477bae..01fd83d4 100644 --- a/src/superc/cdesugarer/NamedFunctionT.java +++ b/src/superc/cdesugarer/NamedFunctionT.java @@ -20,10 +20,13 @@ import xtc.type.Type; import xtc.type.FunctionT; +import xtc.type.VariableT; import xtc.type.FunctionOrMethodT; import java.util.List; import java.util.LinkedList; +import java.util.Iterator; + /** * This is a slight modification of xtc.type.FunctionT so that it can * use the underlying FunctionOrMethodT's name. This name field is @@ -81,6 +84,40 @@ public NamedFunctionT copy() { } return copy; } + + public String printSignature() { + String r = result.printType() + " " + name + " ("; + int count = 0; + for (Iterator iter = parameters.iterator(); iter.hasNext(); ) { + Type t = iter.next(); + if (!t.isVariable()) {System.err.println("illegal parameter print"); System.exit(-99); } + VariableT v = t.toVariable(); + if (v.hasName()) r += v.printSignature(); + else r += v.printSignature("x"+ String.valueOf(count)); + if (iter.hasNext() || varargs) { + r +=", "; + } + } + r += ")"; + return r; + } + + public String getParamNames() { + String r = ""; + int count = 0; + for (Iterator iter = parameters.iterator(); iter.hasNext(); ) { + Type t = iter.next(); + if (!t.isVariable()) {System.err.println("illegal parameter print"); System.exit(-99); } + VariableT v = t.toVariable(); + if (v.hasName()) r += v.getName(); + else r += "x"+ String.valueOf(count); + if (iter.hasNext() || varargs) { + r +=", "; + } + } + return r; + } + /** * Create a FunctionT. This is done to support comparing types @@ -92,7 +129,7 @@ protected FunctionT toFunctionT() { getParameters(), isVarArgs()); } - + public NamedFunctionT toNamedFunction() { return this; } diff --git a/src/superc/cdesugarer/SymbolTable.java b/src/superc/cdesugarer/SymbolTable.java index 816866ff..0abd25c4 100644 --- a/src/superc/cdesugarer/SymbolTable.java +++ b/src/superc/cdesugarer/SymbolTable.java @@ -461,14 +461,11 @@ public Iterator iterator() { } public void replaceType(String renamed, T newValue, PresenceCondition cond) { - System.err.println(renamed); String originalName = renamed; while (originalName.charAt(originalName.length()-1) >= '0' && originalName.charAt(originalName.length()-1) <= '9') { originalName = originalName.substring(0,originalName.length()-1); } originalName = originalName.substring(2,originalName.length()-1); - System.err.println(originalName); - System.err.println(this); Multiverse> values = map.get(originalName); Multiverse> onlyDeclared = values.filter(cond); for (Element> e : onlyDeclared) { diff --git a/src/superc/cdesugarer/TypeSpecifier.java b/src/superc/cdesugarer/TypeSpecifier.java index 5d6f1648..05320cc4 100644 --- a/src/superc/cdesugarer/TypeSpecifier.java +++ b/src/superc/cdesugarer/TypeSpecifier.java @@ -718,7 +718,6 @@ public TypeSpecifier revertForwardRefs(List references, String forwardRe toRet.transformation.add(s); } } - System.err.println(this + "::" + toRet); return toRet; } } diff --git a/src/superc/cdesugarer/desugarer.y b/src/superc/cdesugarer/desugarer.y index 84cf7dea..f01630cc 100644 --- a/src/superc/cdesugarer/desugarer.y +++ b/src/superc/cdesugarer/desugarer.y @@ -396,7 +396,8 @@ FunctionDefinitionExtension: /** complete **/ // ADDED // String FunctionDefinition: /** complete **/ // added scoping // String FunctionPrototype -{restartLabelFunction(); +{ + restartLabelFunction(); // similar to Declaration, but different in that this has a // compoundstatement, while declaration has an initializer. PresenceCondition pc = subparser.getPresenceCondition(); @@ -412,6 +413,7 @@ FunctionPrototype Multiverse typespecifiermv = prototype.typespecifier; Multiverse declaratormv = prototype.declarator; Multiverse newDeclarations = new Multiverse(); + Multiverse newTypes = new Multiverse(); assert scope.isGlobal(); // function definitions should be global. nested functions have a separate subgrammar. for (Element typespecifier : typespecifiermv) { PresenceCondition typespecifierCond = prototypeNode.getCondition().and(typespecifier.getCondition()); @@ -443,10 +445,12 @@ FunctionPrototype // the renamed declaration is used to get the type entry in the symtab String renaming; + String funcName = ""; if (!entry.getData().isDeclared()) { renaming = freshCId(originalName); } else { //is declared - renaming = entry.getData().getValue().getName(); + funcName = entry.getData().getValue().getName(); + renaming = freshCId(entry.getData().getValue().getName()); } Declarator renamedDeclarator = declarator.getData().rename(renaming); Declaration renamedDeclaration = new Declaration(typespecifier.getData(), renamedDeclarator); @@ -488,38 +492,40 @@ FunctionPrototype ((NamedFunctionT)type).setDefined(); // update the symbol table for this presence condition scope.put(originalName, type, entry.getCondition()); - + // record the global/extern declaration using the original name for later use in handling linking if (scope.isGlobal() && isGlobalOrExtern(typespecifier.getData())) { externalLinkage.put(originalName, originalDeclaration, entry.getCondition()); } - + newDeclarations.add(renamedDeclarator, entry.getCondition()); - - // shouldn't need to add forward decl, since if - // the function had a decl before, that will do - // the renaming. if the function is missing a - // decl before def, then the function is - // implicitly declared to be () -> int + newTypes.add(typespecifier.getData(),entry.getCondition()); + + // shouldn't need to add forward decl, since if + // the function had a decl before, that will do + // the renaming. if the function is missing a + // decl before def, then the function is + // implicitly declared to be () -> int - recordRenaming(renaming, originalName); - - } else { - if (entry.getData().getValue().isNamedFunction()) { // there is no Type.isFunctionOrMethod() + recordRenaming(renaming, originalName); + } else { + if (entry.getData().getValue().isNamedFunction() && !((NamedFunctionT) entry.getData().getValue()).getDefined(entry.getCondition())) { // there is no Type.isFunctionOrMethod() FunctionT newtype = ((NamedFunctionT) type).toFunctionT(); FunctionT previoustype = ((NamedFunctionT) entry.getData().getValue()).toFunctionT(); - newtype.setDefined(); - ((NamedFunctionT) entry.getData().getValue()).setDefined(); + newtype.setDefined(entry.getCondition()); + ((NamedFunctionT) entry.getData().getValue()).setDefined(entry.getCondition()); // TODO: make sure a function is only defined // once, although it can be declared multiple // times. // already declared entries if (cOps.equal(newtype, previoustype)) { - newDeclarations.add(renamedDeclarator, entry.getCondition()); + newTypes.add(typespecifier.getData(),entry.getCondition()); + CContext.addMultiplex(funcName,renaming,entry.getCondition()); } else if (functionCouldExist(newtype,previoustype,scope,entry.getCondition())) { - transformForwardParams(renamedDeclarator,previoustype,entry.getCondition(),newDeclarations,scope); + transformFunctionRefs(renamedDeclarator,previoustype,entry.getCondition(),newDeclarations,typespecifier.getData(),newTypes,scope); + CContext.addMultiplex(funcName,renaming,entry.getCondition()); } else { scope.putError(originalName, entry.getCondition()); recordInvalidGlobalDeclaration(originalName, entry.getCondition()); @@ -547,6 +553,8 @@ FunctionPrototype } // end of loop over typespecifiers prototype.declarator.destruct(); prototype.declarator = newDeclarations; + prototype.typespecifier.destruct(); + prototype.typespecifier = newTypes; } } CompoundStatement { @@ -608,7 +616,6 @@ FunctionPrototype sb.append("/* no function due to type errors in the function prototype */\n"); } setTransformationValue(value, sb.toString()); - } /* | FunctionOldPrototype CompoundStatement */ | FunctionOldPrototype { ReenterScope(subparser); } DeclarationList LBRACE FunctionCompoundStatement { ExitScope(subparser); } RBRACE @@ -2400,7 +2407,6 @@ StructOrUnionSpecifier: /** complete **/ // ADDED attributes // Multiverse valuemv = DesugarOps.processStructDefinitionWithFlex(keyword, structTag, structfields, pc, scope, freshIdCreator, suTypeCreator); - System.err.println(valuemv); setTransformationValue(value, valuemv); } | STRUCT AttributeSpecifierListOpt IDENTIFIER LBRACE StructDeclarationList RBRACE @@ -2442,8 +2448,7 @@ StructOrUnionSpecifier: /** complete **/ // ADDED attributes // Multiverse valuemv = DesugarOps.processStructReference(keyword, structTag, pc, scope, freshIdCreator, suTypeCreator); - System.err.println(valuemv); - setTransformationValue(value, valuemv); + setTransformationValue(value, valuemv); } | STRUCT AttributeSpecifierListOpt TYPEDEFname { @@ -4297,7 +4302,6 @@ PostfixingFunctionDeclarator: /** nomerge **/ // Multiverse todoReminder("check the type of the conditional expression SelectionStatement (1)"); PresenceCondition pc = subparser.getPresenceCondition(); ExpressionValue exprval = getCompleteNodeExpressionValue(subparser, 3, pc); - System.err.println(exprval); Syntax ifsyn = (getSyntaxMV(subparser, 5,pc)).get(0).getData(); String ifstr = ifsyn.getTokenText(); String lparenstr = (getSyntaxMV(subparser, 4,pc)).get(0).getData().getTokenText(); @@ -5210,7 +5213,6 @@ IterationStatement: /** complete **/ // Multiverse ExpressionValue testval = getCompleteNodeExpressionValue(subparser, 5, pc); String semi2 = ";"; ExpressionValue updateval = getCompleteNodeExpressionValue(subparser, 3, pc); - System.err.println(updateval); Syntax rparensyn = (getSyntaxMV(subparser, 2,pc)).get(0).getData(); String rparen = rparensyn.getTokenText(); LineNumbers lw = new LineNumbers(forsyn,rparensyn); @@ -5546,7 +5548,6 @@ PrimaryIdentifier: /** nomerge **/ // ExpressionValue // get the renamings from the symtab PresenceCondition cond = subparser.getPresenceCondition(); Multiverse> entries = scope.getInAnyScope(originalName, cond); - System.err.println(entries); // convert the renamings to stringbuilders Multiverse sbmv = new Multiverse(); Multiverse typemv = new Multiverse(); @@ -5619,7 +5620,6 @@ PrimaryIdentifier: /** nomerge **/ // ExpressionValue // it and the symtab should always return a non-empty mv assert ! sbmv.isEmpty(); entries.destruct(); - System.err.println(new ExpressionValue(sbmv, typemv,new Multiverse(new LineNumbers((Syntax)getNodeAt(subparser, 1)),cond))); setTransformationValue(value, new ExpressionValue(sbmv, typemv,new Multiverse(new LineNumbers((Syntax)getNodeAt(subparser, 1)),cond))); } /* We cannot use a typedef name as a variable */ ; @@ -5695,7 +5695,6 @@ StatementAsExpression: /** nomerge **/ //ADDED String res = "( " + e.getData().getString(e.getCondition(),this) + " )"; valuemv.add(res,e.getCondition()); Multiverse tt = e.getData().getType(); - System.err.println(tt); if (tt != null && !tt.isEmpty()) { typemv.addAll(tt); } else { @@ -6058,7 +6057,6 @@ FunctionCall: /** nomerge **/ errorCond.delRef(); validTypes.delRef(); assert ! valuemv.isEmpty(); - System.err.println(valuemv + "::" + typemv); setTransformationValue(value, new ExpressionValue(valuemv, typemv, postfixexprval.integrateSyntax((Syntax)getNodeAt(subparser, 1)))); } else { setTransformationValue(value, new ExpressionValue(emitError("no valid type for one or more arguments of the function call"), @@ -6467,8 +6465,7 @@ CompoundLiteral: /** nomerge **/ /* ADDED */ cc.delRef(); } } - System.err.println(error); - initializerlistmv.destruct(); + initializerlistmv.destruct(); Multiverse mv4 = mv2.product(initializerliststr, DesugarOps.concatStrings); initializerliststr.destruct(); //mv3.destruct(); @@ -6591,8 +6588,7 @@ UnaryExpression: /** passthrough, nomerge **/ // ExpressionValue resultmv.add(emitError("no valid type found in unary operation"),t.getCondition()); resulttypemv.add(ErrorT.TYPE,t.getCondition()); } else { - System.err.println(op.getData() + " :: " + t.getData()); - + Type innerType; if (t.getData().isPointer()) { innerType = t.getData().toPointer().getType(); @@ -6990,7 +6986,6 @@ MultiplicativeExpression: /** passthrough, nomerge **/ // ExpressionValue PresenceCondition pc = subparser.getPresenceCondition(); ExpressionValue leftval = getCompleteNodeExpressionValue(subparser, 3, pc); ExpressionValue rightval = getCompleteNodeExpressionValue(subparser, 1, pc); - System.err.println(leftval); Multiverse leftmv = leftval.transformation; Multiverse opmv = new Multiverse(((Syntax) getNodeAt(subparser, 2)).getTokenText(), pc); Multiverse rightmv = rightval.transformation; @@ -7608,8 +7603,7 @@ AssignmentExpression: /** passthrough, nomerge **/ // ExpressionValue valuemv.add("invalid assignment expression", errorCond); } errorCond.delRef(); typesafeCond.delRef(); - System.err.println(typemv); - setTransformationValue(value, new ExpressionValue(valuemv, typemv, leftval.lines.product(rightval.lines, DesugarOps.combineLineNumbers))); + setTransformationValue(value, new ExpressionValue(valuemv, typemv, leftval.lines.product(rightval.lines, DesugarOps.combineLineNumbers))); } else { // no valid types setTransformationValue(value, new ExpressionValue(emitError("no valid type found in assignment expression"), @@ -8340,7 +8334,6 @@ public static void keepMemoryNames(boolean f) { if (initializermv.size() == 1 && initializermv.get(0).getData().isEmpty()) { declList.add(decl); } else { - System.err.println(decl); for (Element declarator : decl.declarator) { String originalName = declarator.getData().getName(); Multiverse> entries = scope.getInCurrentScope(originalName, declarator.getCondition()); @@ -9632,7 +9625,6 @@ static public Multiverse hasField(UnionT u, Type t, CContext scope, Pre static public boolean compatParam(Type t1u, Type t2u) { Type t1 = t1u.resolve(), t2 = t2u.resolve(); - System.err.println("types:" + t1 + " " + t2); if ((t1.isPointer() || t1.isArray()) && t2.isNumber()) { return true; } else if (t2.isPointer() && t1.isPointer()) { @@ -9673,8 +9665,18 @@ static public boolean functionCouldExist(Type newType, Type prevType, CContext s if (!newType.isFunction() || !prevType.isFunction()) { return false; } - List newParams = ((FunctionT)newType).getParameters(); - List oldParams = ((FunctionT)prevType).getParameters(); + FunctionT newf = newType.toFunction(); + FunctionT oldf = prevType.toFunction(); + + if (!cOps.equal(newf.getResult(),oldf.getResult())) { + if (!typeCouldBeRef(newf.getResult(),oldf.getResult(),scope,cond)) { + return false; + } + + } + + List newParams = newf.getParameters(); + List oldParams = oldf.getParameters(); if (newParams.size() != oldParams.size()) { return false; @@ -9685,16 +9687,24 @@ static public boolean functionCouldExist(Type newType, Type prevType, CContext s if (cOps.equal(newT,oldT)) { continue; } - while (newT.isPointer()) { + if (!typeCouldBeRef(newT,oldT,scope,cond)) { + return false; + } + } + return true; +} + +static public boolean typeCouldBeRef(Type newT, Type oldT, CContext scope, PresenceCondition cond) { + while (newT.isPointer()) { if (!oldT.isPointer()) { return false; } newT = ((PointerT)newT).getType(); oldT = ((PointerT)oldT).getType(); - } - - if (newT.isStruct() && oldT.isStruct()) { - if (! ((StructT)oldT).getName().startsWith("__forward_tag_reference")){ + } + + if (newT.isStruct() && oldT.isStruct()) { + if (! ((StructT)oldT).getName().startsWith("__forward_tag_reference")){ return false; } String originalTag = scope.getForwardTagReferenceAnyScope(((StructT)oldT).getName()); @@ -9712,13 +9722,30 @@ static public boolean functionCouldExist(Type newType, Type prevType, CContext s } else { return false; } - } return true; } -static public void transformForwardParams(Declarator toTransform, Type prevType, PresenceCondition cond, Multiverse decs, CContext scope) { +static public void transformFunctionRefs(Declarator toTransform, Type prevType, PresenceCondition cond, Multiverse decs, TypeSpecifier typespec, Multiverse types , CContext scope) { + if (!prevType.isFunction()) { + System.err.println("Error reverting refs of nonfunction"); + System.exit(1); + } List oldParams = ((FunctionT)prevType).getParameters(); decs.add(toTransform.switchForwardRef(oldParams,cond,scope),cond); + Type resType = prevType.toFunction().getResult(); + while (resType.isPointer()) {resType = resType.toPointer().getType();} + if (resType.isStruct() && ((StructT)resType).getName().startsWith("__forward_tag_reference_")) { + String originalTag = scope.getForwardTagReferenceAnyScope(((StructT)resType).getName()); + Multiverse> originalTagEntries + = scope.getInAnyScope(CContext.toTagName(originalTag), cond); + List names = new LinkedList(); + for (Element> e : originalTagEntries) { + names.add(((StructT)e.getData().getValue()).getName()); + } + types.add(typespec.revertForwardRefs(names,((StructT)resType).getName(),toTransform.getName()),cond); + } else { + types.add(typespec,cond); + } } @@ -10858,7 +10885,6 @@ private Object getTransformationValue(Subparser subparser, int component) { */ private Object getTransformationValue(Object node) { Object transformationValue = ((Node) node).getProperty(TRANSFORMATION); - System.err.println(); assert transformationValue != null; if (transformationValue == null) { throw new IllegalStateException("getting null transformation value"); @@ -11164,7 +11190,6 @@ private DeclaringListValue getCompleteNodeDeclaringListValue(Node node, Presence } for (Element elem : nodemv) { DeclaringListValue innerDecl = (DeclaringListValue) ((Node) elem.getData()).getProperty(TRANSFORMATION); - System.err.println(innerDecl); if (!innerDecl.isEmpty()) { DeclaringListValue filtered = innerDecl.filter(elem.getCondition()); if (!filtered.isEmpty()) { @@ -11579,6 +11604,35 @@ private void recordRenaming(String renaming, String original) { recordedRenamings.append(String.format("__static_renaming(\"%s\", \"%s\");\n", renaming, original)); } +public String printMultiplexes(CContext scope, PresenceCondition pc) { + String ret = ""; + for (Map.Entry> m : CContext.getMultiplexes().entrySet()) { + String originalName = m.getKey(); + while (originalName.charAt(originalName.length()-1) >= '0' && originalName.charAt(originalName.length()-1) <= '9') { + originalName = originalName.substring(0,originalName.length()-1); + } + originalName = originalName.substring(2,originalName.length()-1); + Multiverse> entries = scope.getInCurrentScope(originalName, pc); + for (Element> entry : entries) { + if (!entry.getData().isDeclared()) { continue; } + Type t = entry.getData().getValue(); + if (!t.isNamedFunction()) { continue; } + NamedFunctionT nft = t.toNamedFunction(); + if (!m.getKey().equals(nft.getName())) { continue; } + ret += nft.printSignature() + " {\n"; + String params = nft.getParamNames(); + for (Element plex : m.getValue()) { + ret += String.format("if (%s) { return %s(%s); }\n", + condToCVar(plex.getCondition()), + plex.getData(), + params); + } + ret += "}\n"; + } + } + return ret; +} + public String printMain(CContext scope, PresenceCondition pc) { String ret = ""; ret += "int main(int argc, char **argv) {\n__static_initializer_default();\n"; diff --git a/src/xtc/type/C.java b/src/xtc/type/C.java index 020314c7..9b36e2d3 100644 --- a/src/xtc/type/C.java +++ b/src/xtc/type/C.java @@ -1502,15 +1502,13 @@ public Type compose(Type t1, Type t2, boolean pedantic) { protected Type compose(Type t1, Type t2, boolean pedantic, boolean recursive) { if (recursive) { // Preserve any wrapped types. - System.err.println(t1 + "+" + t2); if (t1.isEnum()) { return t1.equals(t2) ? t1 : ErrorT.TYPE; } else if (t1.isWrapped()) { Type w1 = t1.toWrapped().getType(); Type c = compose(w1, t2, pedantic, true); - System.err.println(t1 + "x" + c); - + if (c.isError()) { return ErrorT.TYPE; @@ -1733,15 +1731,13 @@ protected Type composeFunctions(FunctionT f1, FunctionT f2, boolean pedantic) { return ErrorT.TYPE; } if (f1.isVarArgs() != f2.isVarArgs()) return ErrorT.TYPE; - System.err.println(f1 + "::" + f2 + ":" + differs); - + final int size = f1.getParameters().size(); List par = differs ? new ArrayList(f1.getParameters()) : null; for (int i=0; i iter = parameters.iterator(); iter.hasNext(); ) { iter.next().write(out); if (iter.hasNext() || varargs) { @@ -230,13 +232,21 @@ public String printType(String insert) { } + public void setDefined(PresenceCondition p) { + isDefined = isDefined.or(p); + } + + public boolean getDefined(PresenceCondition p ) { + return isDefined.and(p).isNotFalse(); + } + public void setDefined() { - isDefined = true; + setDefined((new PresenceConditionManager()).newTrue()); } public boolean getDefined() { - return isDefined; + return getDefined((new PresenceConditionManager()).newTrue()); } - - + + } diff --git a/src/xtc/type/FunctionT.java b/src/xtc/type/FunctionT.java index 19c50cfc..8ffe3f52 100644 --- a/src/xtc/type/FunctionT.java +++ b/src/xtc/type/FunctionT.java @@ -38,7 +38,7 @@ public class FunctionT extends FunctionOrMethodT { * @param result The result type. */ public FunctionT(Type result) { - super(null, result, null, new LinkedList(), false, null); + super(null, result, "", new LinkedList(), false, null); } /** @@ -49,7 +49,7 @@ public FunctionT(Type result) { * @param varargs The flag for accepting a variable number of arguments. */ public FunctionT(Type result, List parameters, boolean varargs) { - super(null, result, null, parameters, varargs, null); + super(null, result, "", parameters, varargs, null); } /** @@ -62,7 +62,7 @@ public FunctionT(Type result, List parameters, boolean varargs) { */ public FunctionT(Type template, Type result, List parameters, boolean varargs) { - super(template, result, null, parameters, varargs, null); + super(template, result, "", parameters, varargs, null); } diff --git a/src/xtc/type/Type.java b/src/xtc/type/Type.java index dbc623f5..21757c4b 100644 --- a/src/xtc/type/Type.java +++ b/src/xtc/type/Type.java @@ -1984,6 +1984,11 @@ public static List seal(List types) { */ public abstract String printType(); + public String printSignature() { return printType(); } + + public String printSignature(String name) { return printSignature(); } + + public Type revertForwardRef(List references, String forwardRef, String rename) { return this; } diff --git a/src/xtc/type/VariableT.java b/src/xtc/type/VariableT.java index 44883842..d84e04af 100644 --- a/src/xtc/type/VariableT.java +++ b/src/xtc/type/VariableT.java @@ -213,6 +213,20 @@ public String printType() { return getType().printType(); } + public String printSignature() { + return printSignature(getName()); + } + + public String printSignature(String name) { + if (getType().resolve().isPointer()) { + return ((PointerT)getType().resolve()).printType(name); + } else if (getType().resolve().isArray()) { + return ((ArrayT)getType().resolve()).printType(name); + } else { + return getType().resolve().printType() + " " + name; + } + } + // ========================================================================= /** From ef464c49226a2b9516c5d08d96605ee8882bd640 Mon Sep 17 00:00:00 2001 From: pattersonz Date: Mon, 20 Feb 2023 16:17:31 -0600 Subject: [PATCH 50/77] added Presence Condition delRefs to functions --- src/xtc/type/FunctionOrMethodT.java | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/src/xtc/type/FunctionOrMethodT.java b/src/xtc/type/FunctionOrMethodT.java index e8b33e7b..d5371e82 100644 --- a/src/xtc/type/FunctionOrMethodT.java +++ b/src/xtc/type/FunctionOrMethodT.java @@ -230,10 +230,11 @@ public String printType(String insert) { r += ")"; return r; } - public void setDefined(PresenceCondition p) { - isDefined = isDefined.or(p); + PresenceCondition newCond = isDefined.or(p); + isDefined.delRef(); + isDefined = newCond; } public boolean getDefined(PresenceCondition p ) { @@ -241,12 +242,15 @@ public boolean getDefined(PresenceCondition p ) { } public void setDefined() { - setDefined((new PresenceConditionManager()).newTrue()); + PresenceCondition toSet = (new PresenceConditionManager()).newTrue(); + setDefined(toSet); + toSet.delRef(); } public boolean getDefined() { - return getDefined((new PresenceConditionManager()).newTrue()); + PresenceCondition toSet = (new PresenceConditionManager()).newTrue(); + boolean toRet = getDefined((new PresenceConditionManager()).newTrue()); + toSet.delRef(); + return toRet; } - - } From bc0dd92c3ba5184527dbaa037c072b67d79c3490 Mon Sep 17 00:00:00 2001 From: pattersonz Date: Mon, 20 Feb 2023 17:24:58 -0600 Subject: [PATCH 51/77] mend --- .../testcases/language_features/function_definitions/K | 1 + src/xtc/type/FunctionOrMethodT.java | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K index e69de29b..c4f4ac19 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K @@ -0,0 +1 @@ +sh: 1: R/injected/function_no_param_dec.desugared.c: not found diff --git a/src/xtc/type/FunctionOrMethodT.java b/src/xtc/type/FunctionOrMethodT.java index d5371e82..150bc2ff 100644 --- a/src/xtc/type/FunctionOrMethodT.java +++ b/src/xtc/type/FunctionOrMethodT.java @@ -249,7 +249,7 @@ public void setDefined() { public boolean getDefined() { PresenceCondition toSet = (new PresenceConditionManager()).newTrue(); - boolean toRet = getDefined((new PresenceConditionManager()).newTrue()); + boolean toRet = getDefined(toSet); toSet.delRef(); return toRet; } From 02a09c4efaf83a4e4598913b32cfa53ca3d4c8a8 Mon Sep 17 00:00:00 2001 From: pattersonz Date: Tue, 21 Feb 2023 00:21:03 -0600 Subject: [PATCH 52/77] mend --- src/superc/cdesugarer/CActions.java | 8 ++++---- src/superc/cdesugarer/desugarer.y | 8 ++++---- src/xtc/type/FunctionOrMethodT.java | 8 ++++---- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/src/superc/cdesugarer/CActions.java b/src/superc/cdesugarer/CActions.java index aef3f4b5..63b68ce2 100644 --- a/src/superc/cdesugarer/CActions.java +++ b/src/superc/cdesugarer/CActions.java @@ -365,7 +365,7 @@ public Object action(int production, Subparser subparser, Object value) { // UNDECLARED entry todoReminder("multiplex functions to so that each can have its own function name. try using function pointers as a kind of vtable."); - ((NamedFunctionT)type).setDefined(); + //((NamedFunctionT)type).setDefined(); // update the symbol table for this presence condition scope.put(originalName, type, entry.getCondition()); @@ -385,11 +385,11 @@ public Object action(int production, Subparser subparser, Object value) { recordRenaming(renaming, originalName); } else { - if (entry.getData().getValue().isNamedFunction() && !((NamedFunctionT) entry.getData().getValue()).getDefined(entry.getCondition())) { // there is no Type.isFunctionOrMethod() + if (entry.getData().getValue().isNamedFunction()) { // there is no Type.isFunctionOrMethod() FunctionT newtype = ((NamedFunctionT) type).toFunctionT(); FunctionT previoustype = ((NamedFunctionT) entry.getData().getValue()).toFunctionT(); - newtype.setDefined(entry.getCondition()); - ((NamedFunctionT) entry.getData().getValue()).setDefined(entry.getCondition()); + //newtype.setDefined(entry.getCondition()); + //((NamedFunctionT) entry.getData().getValue()).setDefined(entry.getCondition()); // TODO: make sure a function is only defined // once, although it can be declared multiple // times. diff --git a/src/superc/cdesugarer/desugarer.y b/src/superc/cdesugarer/desugarer.y index f01630cc..38974de2 100644 --- a/src/superc/cdesugarer/desugarer.y +++ b/src/superc/cdesugarer/desugarer.y @@ -489,7 +489,7 @@ FunctionPrototype // UNDECLARED entry todoReminder("multiplex functions to so that each can have its own function name. try using function pointers as a kind of vtable."); - ((NamedFunctionT)type).setDefined(); + //((NamedFunctionT)type).setDefined(); // update the symbol table for this presence condition scope.put(originalName, type, entry.getCondition()); @@ -509,11 +509,11 @@ FunctionPrototype recordRenaming(renaming, originalName); } else { - if (entry.getData().getValue().isNamedFunction() && !((NamedFunctionT) entry.getData().getValue()).getDefined(entry.getCondition())) { // there is no Type.isFunctionOrMethod() + if (entry.getData().getValue().isNamedFunction()) { // there is no Type.isFunctionOrMethod() FunctionT newtype = ((NamedFunctionT) type).toFunctionT(); FunctionT previoustype = ((NamedFunctionT) entry.getData().getValue()).toFunctionT(); - newtype.setDefined(entry.getCondition()); - ((NamedFunctionT) entry.getData().getValue()).setDefined(entry.getCondition()); + //newtype.setDefined(entry.getCondition()); + //((NamedFunctionT) entry.getData().getValue()).setDefined(entry.getCondition()); // TODO: make sure a function is only defined // once, although it can be declared multiple // times. diff --git a/src/xtc/type/FunctionOrMethodT.java b/src/xtc/type/FunctionOrMethodT.java index 150bc2ff..0339dab9 100644 --- a/src/xtc/type/FunctionOrMethodT.java +++ b/src/xtc/type/FunctionOrMethodT.java @@ -34,7 +34,7 @@ public abstract class FunctionOrMethodT extends DerivedT { - private PresenceCondition isDefined; + // private PresenceCondition isDefined; /** The result type. */ @@ -74,7 +74,7 @@ public FunctionOrMethodT(Type template, Type result, String name, this.parameters = parameters; this.varargs = varargs; this.exceptions = exceptions; - isDefined = (new PresenceConditionManager()).newFalse(); + //isDefined = (new PresenceConditionManager()).newFalse(); } public Type seal() { @@ -231,7 +231,7 @@ public String printType(String insert) { return r; } - public void setDefined(PresenceCondition p) { + /* public void setDefined(PresenceCondition p) { PresenceCondition newCond = isDefined.or(p); isDefined.delRef(); isDefined = newCond; @@ -252,5 +252,5 @@ public boolean getDefined() { boolean toRet = getDefined(toSet); toSet.delRef(); return toRet; - } + }*/ } From 493453d87758334d60ec0bc780fcd402e2b21dd1 Mon Sep 17 00:00:00 2001 From: pattersonz Date: Tue, 21 Feb 2023 14:11:44 -0600 Subject: [PATCH 53/77] mend --- .../microbenchmark/autoRunnerResults.txt | 4 +-- .../function_prototype_multiple_definitions.c | 6 ++-- src/superc/cdesugarer/NamedFunctionT.java | 31 ++++++++++++------- src/xtc/type/VariableT.java | 2 ++ 4 files changed, 26 insertions(+), 17 deletions(-) diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/autoRunnerResults.txt b/fonda/cpp_testsuite/desugarer/microbenchmark/autoRunnerResults.txt index 3d3ee8a9..8d642fd0 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/autoRunnerResults.txt +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/autoRunnerResults.txt @@ -29,6 +29,7 @@ /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_typedef_parameter_configurable.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_parameters_configurable.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_parameters_empty_configurable.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_abstract_parameter.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/basic_functions.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_pointer.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_qualified_void_pointer.c :: match @@ -107,9 +108,6 @@ /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/syntactic_error_integration/enum_error.c :: 1/2 ['0', '157']/['0', '0'] [' REPEATED::157/0'] -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_abstract_parameter.c :: 0/2 - ['16', '4']/['777', '777'] - ['::16/777', ' ENABLE_A::4/777'] /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/injected/function_typedef_parameter_configurable.c :: did not desug /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/injected/function_parameters_configurable.c :: did not desug /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/injected/function_parameters_empty_configurable.c :: did not desug diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_prototype_multiple_definitions.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_prototype_multiple_definitions.c index 416b9097..f7e8a7b5 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_prototype_multiple_definitions.c +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_prototype_multiple_definitions.c @@ -1,9 +1,9 @@ struct x; - +enum z {R,S,T}; #ifdef A struct x* foo(struct x *); #else -int foo(int a, struct x *z); +int foo(enum z a, struct x *z); #endif #ifdef B @@ -26,6 +26,6 @@ int main() { #ifdef C struct x* foo(struct x* q) { return q;} #else -int foo(int a, struct x* z) {return a;} +int foo(enum z a, struct x* z) {return a;} #endif diff --git a/src/superc/cdesugarer/NamedFunctionT.java b/src/superc/cdesugarer/NamedFunctionT.java index 01fd83d4..20e7c4ef 100644 --- a/src/superc/cdesugarer/NamedFunctionT.java +++ b/src/superc/cdesugarer/NamedFunctionT.java @@ -88,15 +88,20 @@ public NamedFunctionT copy() { public String printSignature() { String r = result.printType() + " " + name + " ("; int count = 0; - for (Iterator iter = parameters.iterator(); iter.hasNext(); ) { - Type t = iter.next(); - if (!t.isVariable()) {System.err.println("illegal parameter print"); System.exit(-99); } - VariableT v = t.toVariable(); - if (v.hasName()) r += v.printSignature(); - else r += v.printSignature("x"+ String.valueOf(count)); - if (iter.hasNext() || varargs) { - r +=", "; - } + if (parameters.size() == 1 && parameters.get(0).toVariable().getType().isVoid()) { + r += "void"; + } else { + for (Iterator iter = parameters.iterator(); iter.hasNext(); ) { + Type t = iter.next(); + if (!t.isVariable()) {System.err.println("illegal parameter print"); System.exit(-99); } + VariableT v = t.toVariable(); + if (v.hasName()) r += v.printSignature(); + else r += v.printSignature("x"+ String.valueOf(count)); + if (iter.hasNext() || varargs) { + r +=", "; + } + count++; + } } r += ")"; return r; @@ -105,7 +110,10 @@ public String printSignature() { public String getParamNames() { String r = ""; int count = 0; - for (Iterator iter = parameters.iterator(); iter.hasNext(); ) { + if (parameters.size() == 1 && parameters.get(0).toVariable().getType().isVoid()) { + return ""; + } + for (Iterator iter = parameters.iterator(); iter.hasNext(); ) { Type t = iter.next(); if (!t.isVariable()) {System.err.println("illegal parameter print"); System.exit(-99); } VariableT v = t.toVariable(); @@ -113,7 +121,8 @@ public String getParamNames() { else r += "x"+ String.valueOf(count); if (iter.hasNext() || varargs) { r +=", "; - } + } + count++; } return r; } diff --git a/src/xtc/type/VariableT.java b/src/xtc/type/VariableT.java index d84e04af..8c07b805 100644 --- a/src/xtc/type/VariableT.java +++ b/src/xtc/type/VariableT.java @@ -222,6 +222,8 @@ public String printSignature(String name) { return ((PointerT)getType().resolve()).printType(name); } else if (getType().resolve().isArray()) { return ((ArrayT)getType().resolve()).printType(name); + } else if (getType().isEnum()) { + return getType().printType() + " " + name; } else { return getType().resolve().printType() + " " + name; } From 6f21466d54036f1dbd62bcaae43d6fbb3cf3b1da Mon Sep 17 00:00:00 2001 From: pattersonz Date: Tue, 21 Feb 2023 18:16:03 -0600 Subject: [PATCH 54/77] fixed issue with printing enum names and maintaining const --- src/superc/cdesugarer/CActions.java | 60 ++++++++++++++++++++--------- src/superc/cdesugarer/desugarer.y | 60 ++++++++++++++++++++--------- src/xtc/type/AnnotatedT.java | 44 ++++++++++++++++++++- src/xtc/type/PointerT.java | 45 +++++++++++++--------- src/xtc/type/Type.java | 12 ++++++ src/xtc/type/VariableT.java | 11 ++++-- 6 files changed, 172 insertions(+), 60 deletions(-) diff --git a/src/superc/cdesugarer/CActions.java b/src/superc/cdesugarer/CActions.java index 63b68ce2..5cf35891 100644 --- a/src/superc/cdesugarer/CActions.java +++ b/src/superc/cdesugarer/CActions.java @@ -120,6 +120,7 @@ import xtc.type.IntegerT; import xtc.type.FloatT; import xtc.type.PointerT; +import xtc.type.AnnotatedT; import xtc.type.Reference; import xtc.type.StaticReference; import xtc.type.StringReference; @@ -357,7 +358,7 @@ public Object action(int production, Subparser subparser, Object value) { renaming, declarationType.toFunction().getParameters(), declarationType.toFunction().isVarArgs()); - + if (entry.getData().isError() || invalidTypeSpec) { // ERROR entry System.err.println(String.format("INFO: \"%s\" is being redeclared in an existing invalid declaration", originalName)); @@ -388,21 +389,26 @@ public Object action(int production, Subparser subparser, Object value) { if (entry.getData().getValue().isNamedFunction()) { // there is no Type.isFunctionOrMethod() FunctionT newtype = ((NamedFunctionT) type).toFunctionT(); FunctionT previoustype = ((NamedFunctionT) entry.getData().getValue()).toFunctionT(); + //newtype.setDefined(entry.getCondition()); //((NamedFunctionT) entry.getData().getValue()).setDefined(entry.getCondition()); // TODO: make sure a function is only defined // once, although it can be declared multiple // times. - + System.err.println(newtype+"::"+previoustype); // already declared entries if (cOps.equal(newtype, previoustype)) { + System.err.println("eq"); newDeclarations.add(renamedDeclarator, entry.getCondition()); newTypes.add(typespecifier.getData(),entry.getCondition()); CContext.addMultiplex(funcName,renaming,entry.getCondition()); } else if (functionCouldExist(newtype,previoustype,scope,entry.getCondition())) { + System.err.println("could"); transformFunctionRefs(renamedDeclarator,previoustype,entry.getCondition(),newDeclarations,typespecifier.getData(),newTypes,scope); CContext.addMultiplex(funcName,renaming,entry.getCondition()); } else { + System.err.println("err"); + scope.putError(originalName, entry.getCondition()); recordInvalidGlobalDeclaration(originalName, entry.getCondition()); // record the global/extern declaration using the original name for later use in handling linking @@ -9833,7 +9839,7 @@ static public boolean functionCouldExist(Type newType, Type prevType, CContext s for (int i = 0; i < newParams.size(); ++i) { Type newT = ((VariableT)newParams.get(i)).getType(); Type oldT = ((VariableT)oldParams.get(i)).getType(); - if (cOps.equal(newT,oldT)) { + if (cOps.equal(newT.resolve(),oldT.resolve())) { continue; } if (!typeCouldBeRef(newT,oldT,scope,cond)) { @@ -9844,33 +9850,50 @@ static public boolean functionCouldExist(Type newType, Type prevType, CContext s } static public boolean typeCouldBeRef(Type newT, Type oldT, CContext scope, PresenceCondition cond) { - while (newT.isPointer()) { + while (newT.isPointer() || newT.isAnnotated() || newT.isArray()) { + if (newT.isPointer()) { if (!oldT.isPointer()) { return false; } newT = ((PointerT)newT).getType(); oldT = ((PointerT)oldT).getType(); + } + if (newT.isArray()) { + if (!oldT.isArray()) { + return false; + } + newT = ((ArrayT)newT).getType(); + oldT = ((ArrayT)oldT).getType(); + } + if (newT.isAnnotated()) { + if (newT.toAnnotated().sameAnnotations(oldT)) { + return false; + } + newT = ((AnnotatedT)newT).getType(); + oldT = ((AnnotatedT)oldT).getType(); + } } + if (newT.isStruct() && oldT.isStruct()) { if (! ((StructT)oldT).getName().startsWith("__forward_tag_reference")){ - return false; - } - String originalTag = scope.getForwardTagReferenceAnyScope(((StructT)oldT).getName()); - - Multiverse> originalTagEntries + return false; + } + String originalTag = scope.getForwardTagReferenceAnyScope(((StructT)oldT).getName()); + + Multiverse> originalTagEntries = scope.getInAnyScope(CContext.toTagName(originalTag), cond); - - boolean found = false; - for (Element> e : originalTagEntries) { - found = found || cOps.equal(e.getData().getValue(),newT); - } - if (!found) { - return false; - } - } else { + + boolean found = false; + for (Element> e : originalTagEntries) { + found = found || cOps.equal(e.getData().getValue(),newT); + } + if (!found) { return false; } + } else { + return false; + } return true; } @@ -11762,6 +11785,7 @@ public String printMultiplexes(CContext scope, PresenceCondition pc) { } originalName = originalName.substring(2,originalName.length()-1); Multiverse> entries = scope.getInCurrentScope(originalName, pc); + System.err.println(entries); for (Element> entry : entries) { if (!entry.getData().isDeclared()) { continue; } Type t = entry.getData().getValue(); diff --git a/src/superc/cdesugarer/desugarer.y b/src/superc/cdesugarer/desugarer.y index 38974de2..bb63f7d6 100644 --- a/src/superc/cdesugarer/desugarer.y +++ b/src/superc/cdesugarer/desugarer.y @@ -262,6 +262,7 @@ import xtc.type.NumberT; import xtc.type.IntegerT; import xtc.type.FloatT; import xtc.type.PointerT; +import xtc.type.AnnotatedT; import xtc.type.Reference; import xtc.type.StaticReference; import xtc.type.StringReference; @@ -481,7 +482,7 @@ FunctionPrototype renaming, declarationType.toFunction().getParameters(), declarationType.toFunction().isVarArgs()); - + if (entry.getData().isError() || invalidTypeSpec) { // ERROR entry System.err.println(String.format("INFO: \"%s\" is being redeclared in an existing invalid declaration", originalName)); @@ -512,21 +513,26 @@ FunctionPrototype if (entry.getData().getValue().isNamedFunction()) { // there is no Type.isFunctionOrMethod() FunctionT newtype = ((NamedFunctionT) type).toFunctionT(); FunctionT previoustype = ((NamedFunctionT) entry.getData().getValue()).toFunctionT(); + //newtype.setDefined(entry.getCondition()); //((NamedFunctionT) entry.getData().getValue()).setDefined(entry.getCondition()); // TODO: make sure a function is only defined // once, although it can be declared multiple // times. - + System.err.println(newtype+"::"+previoustype); // already declared entries if (cOps.equal(newtype, previoustype)) { + System.err.println("eq"); newDeclarations.add(renamedDeclarator, entry.getCondition()); newTypes.add(typespecifier.getData(),entry.getCondition()); CContext.addMultiplex(funcName,renaming,entry.getCondition()); } else if (functionCouldExist(newtype,previoustype,scope,entry.getCondition())) { + System.err.println("could"); transformFunctionRefs(renamedDeclarator,previoustype,entry.getCondition(),newDeclarations,typespecifier.getData(),newTypes,scope); CContext.addMultiplex(funcName,renaming,entry.getCondition()); } else { + System.err.println("err"); + scope.putError(originalName, entry.getCondition()); recordInvalidGlobalDeclaration(originalName, entry.getCondition()); // record the global/extern declaration using the original name for later use in handling linking @@ -9684,7 +9690,7 @@ static public boolean functionCouldExist(Type newType, Type prevType, CContext s for (int i = 0; i < newParams.size(); ++i) { Type newT = ((VariableT)newParams.get(i)).getType(); Type oldT = ((VariableT)oldParams.get(i)).getType(); - if (cOps.equal(newT,oldT)) { + if (cOps.equal(newT.resolve(),oldT.resolve())) { continue; } if (!typeCouldBeRef(newT,oldT,scope,cond)) { @@ -9695,33 +9701,50 @@ static public boolean functionCouldExist(Type newType, Type prevType, CContext s } static public boolean typeCouldBeRef(Type newT, Type oldT, CContext scope, PresenceCondition cond) { - while (newT.isPointer()) { + while (newT.isPointer() || newT.isAnnotated() || newT.isArray()) { + if (newT.isPointer()) { if (!oldT.isPointer()) { return false; } newT = ((PointerT)newT).getType(); oldT = ((PointerT)oldT).getType(); + } + if (newT.isArray()) { + if (!oldT.isArray()) { + return false; + } + newT = ((ArrayT)newT).getType(); + oldT = ((ArrayT)oldT).getType(); + } + if (newT.isAnnotated()) { + if (newT.toAnnotated().sameAnnotations(oldT)) { + return false; + } + newT = ((AnnotatedT)newT).getType(); + oldT = ((AnnotatedT)oldT).getType(); + } } + if (newT.isStruct() && oldT.isStruct()) { if (! ((StructT)oldT).getName().startsWith("__forward_tag_reference")){ - return false; - } - String originalTag = scope.getForwardTagReferenceAnyScope(((StructT)oldT).getName()); - - Multiverse> originalTagEntries + return false; + } + String originalTag = scope.getForwardTagReferenceAnyScope(((StructT)oldT).getName()); + + Multiverse> originalTagEntries = scope.getInAnyScope(CContext.toTagName(originalTag), cond); - - boolean found = false; - for (Element> e : originalTagEntries) { - found = found || cOps.equal(e.getData().getValue(),newT); - } - if (!found) { - return false; - } - } else { + + boolean found = false; + for (Element> e : originalTagEntries) { + found = found || cOps.equal(e.getData().getValue(),newT); + } + if (!found) { return false; } + } else { + return false; + } return true; } @@ -11613,6 +11636,7 @@ public String printMultiplexes(CContext scope, PresenceCondition pc) { } originalName = originalName.substring(2,originalName.length()-1); Multiverse> entries = scope.getInCurrentScope(originalName, pc); + System.err.println(entries); for (Element> entry : entries) { if (!entry.getData().isDeclared()) { continue; } Type t = entry.getData().getValue(); diff --git a/src/xtc/type/AnnotatedT.java b/src/xtc/type/AnnotatedT.java index dbea259d..25c2b87f 100644 --- a/src/xtc/type/AnnotatedT.java +++ b/src/xtc/type/AnnotatedT.java @@ -19,6 +19,8 @@ package xtc.type; import java.io.IOException; +import xtc.tree.Attribute; +import xtc.Constants; /** * An annotated type. This pseudo-type is useful for adding @@ -64,14 +66,52 @@ public AnnotatedT toAnnotated() { return this; } + public boolean sameAnnotations(Type other) { + if (!other.isAnnotated()) { + return false; + } + AnnotatedT oa = other.toAnnotated(); + if (attributes.size() != oa.attributes.size()) { + return false; + } + for (Attribute a : attributes) { + if (! oa.attributes.contains(a)) { + return false; + } + } + return true; + } + public void write(Appendable out) throws IOException { - out.append("annotated("); + out.append("annotated(" + attributes); getType().write(out); out.append(')'); } + public String printType(String extra) { + String ret = ""; + if (attributes.contains(Constants.ATT_CONSTANT)) { + ret = "const "; + } + if (getType().isPointer()) + ret += getType().toPointer().printType(extra); + else if (getType().isArray()) + ret += getType().toArray().printType(extra); + else if (getType().isFunction()) + ret += getType().toFunction().printType(extra); + else + ret += getType().printType() + " " + extra; + return ret; + } + + public String printType() { - return getType().printType(); + String ret = ""; + if (attributes.contains(Constants.ATT_CONSTANT)) { + ret = "const "; + } + ret += getType().printType(); + return ret; } } diff --git a/src/xtc/type/PointerT.java b/src/xtc/type/PointerT.java index cc65fb7a..f8aa10c8 100644 --- a/src/xtc/type/PointerT.java +++ b/src/xtc/type/PointerT.java @@ -126,27 +126,36 @@ public boolean innerMostIsFunction() { } public String printType(String extra) { - if (!innerMostIsFunction()) { - return type.printType()+"*"+extra; - } else if (type.resolve().isPointer()) { - return ((PointerT)type.resolve()).printType("*"+extra); - } else if (type.resolve().isArray()) { - return ((ArrayT)type.resolve()).printType("*"+extra); - } else { - return ((FunctionT)type.resolve()).printType("*"+extra); - } + + Type type = getType(); + if (!innerMostIsFunction()) { + return type.printType()+"*"+extra; + } else if (type.isPointer()) { + return ((PointerT)type).printType("*"+extra); + } else if (type.isArray()) { + return ((ArrayT)type).printType("*"+extra); + } else if (type.isAnnotated()) { + return type.toAnnotated().printType("*"+extra); + } else { + return ((FunctionT)type).printType("*"+extra); + } + } public String printType() { - if (!innerMostIsFunction()) { - return type.printType()+"*"; - } else if (type.resolve().isPointer()) { - return ((PointerT)type.resolve()).printType("*"); - } else if (type.resolve().isArray()) { - return ((ArrayT)type.resolve()).printType("*"); - } else { - return ((FunctionT)type.resolve()).printType("*"); - } + Type type = getType(); + if (!innerMostIsFunction()) { + return type.printType()+"*"; + } else if (type.isPointer()) { + return ((PointerT)type).printType("*"); + } else if (type.isArray()) { + return ((ArrayT)type).printType("*"); + } else if (type.isAnnotated()) { + return type.toAnnotated().printType("*"); + } else { + return ((FunctionT)type).printType("*"); + } + } public Type revertForwardRef(List references, String forwardRef, String rename) { diff --git a/src/xtc/type/Type.java b/src/xtc/type/Type.java index 21757c4b..3b773d13 100644 --- a/src/xtc/type/Type.java +++ b/src/xtc/type/Type.java @@ -209,6 +209,8 @@ public static enum Tag { /** This type's scope. */ String scope; + boolean isConst = false; + /** This type's constant value. */ Constant constant; @@ -239,6 +241,7 @@ public Type(Type template) { this.language = template.language; this.scope = template.scope; this.constant = template.constant; + this.isConst = template.isConst; this.shape = template.shape; if (null != template.attributes) { this.attributes = new ArrayList(template.attributes); @@ -319,6 +322,15 @@ public Type annotate() { return isAnnotated() && (! isSealed()) ? this : new AnnotatedT(this); } + public Type setConst() { + isConst = true; + return this; + }; + + public boolean isConst() { + return isConst; + } + /** * Deannotate this type. This method strips away any {@link * AnnotatedT} from this type. diff --git a/src/xtc/type/VariableT.java b/src/xtc/type/VariableT.java index 8c07b805..92562434 100644 --- a/src/xtc/type/VariableT.java +++ b/src/xtc/type/VariableT.java @@ -20,6 +20,7 @@ import java.io.IOException; import java.util.List; +import xtc.Constants; /** * A variable. This pseudo-type captures the name for globals, @@ -218,12 +219,14 @@ public String printSignature() { } public String printSignature(String name) { - if (getType().resolve().isPointer()) { - return ((PointerT)getType().resolve()).printType(name); - } else if (getType().resolve().isArray()) { - return ((ArrayT)getType().resolve()).printType(name); + if (getType().isPointer()) { + return ((PointerT)getType()).printType(name); + } else if (getType().isArray()) { + return ((ArrayT)getType()).printType(name); } else if (getType().isEnum()) { return getType().printType() + " " + name; + } else if (getType().isAnnotated()) { + return getType().toAnnotated().printType(name); } else { return getType().resolve().printType() + " " + name; } From 3d9f23b6cbcad560841b03cdfb9095ccf051b80e Mon Sep 17 00:00:00 2001 From: pattersonz Date: Wed, 22 Feb 2023 21:29:40 -0600 Subject: [PATCH 55/77] rewrote how printType works --- src/superc/cdesugarer/CActions.java | 2 +- src/superc/cdesugarer/NamedFunctionT.java | 22 -------- src/superc/cdesugarer/desugarer.y | 2 +- src/xtc/type/AliasT.java | 10 ++-- src/xtc/type/AnnotatedT.java | 25 +------- src/xtc/type/ArrayT.java | 51 +++-------------- src/xtc/type/BooleanT.java | 4 ++ src/xtc/type/ClassT.java | 5 ++ src/xtc/type/EnumT.java | 3 + src/xtc/type/EnumeratorT.java | 3 + src/xtc/type/ErrorT.java | 4 ++ src/xtc/type/FloatT.java | 2 +- src/xtc/type/FunctionOrMethodT.java | 69 +++++++++-------------- src/xtc/type/InstantiatedT.java | 12 +--- src/xtc/type/InterfaceT.java | 4 ++ src/xtc/type/InternalParameter.java | 4 ++ src/xtc/type/InternalT.java | 4 ++ src/xtc/type/LabelT.java | 4 ++ src/xtc/type/NamedParameter.java | 5 ++ src/xtc/type/NumberT.java | 4 ++ src/xtc/type/PackageT.java | 4 ++ src/xtc/type/Parameter.java | 5 +- src/xtc/type/ParameterizedT.java | 10 +--- src/xtc/type/PointerT.java | 47 ++------------- src/xtc/type/StructT.java | 6 +- src/xtc/type/TupleT.java | 19 +------ src/xtc/type/Type.java | 24 ++++---- src/xtc/type/TypeString.java | 52 +++++++++++++++++ src/xtc/type/UnionT.java | 4 ++ src/xtc/type/UnitT.java | 4 ++ src/xtc/type/VariableT.java | 27 ++------- src/xtc/type/VariantT.java | 4 ++ src/xtc/type/VoidT.java | 4 ++ src/xtc/type/Wildcard.java | 3 + 34 files changed, 203 insertions(+), 249 deletions(-) create mode 100644 src/xtc/type/TypeString.java diff --git a/src/superc/cdesugarer/CActions.java b/src/superc/cdesugarer/CActions.java index 5cf35891..c314a065 100644 --- a/src/superc/cdesugarer/CActions.java +++ b/src/superc/cdesugarer/CActions.java @@ -11792,7 +11792,7 @@ public String printMultiplexes(CContext scope, PresenceCondition pc) { if (!t.isNamedFunction()) { continue; } NamedFunctionT nft = t.toNamedFunction(); if (!m.getKey().equals(nft.getName())) { continue; } - ret += nft.printSignature() + " {\n"; + ret += nft.printType() + " {\n"; String params = nft.getParamNames(); for (Element plex : m.getValue()) { ret += String.format("if (%s) { return %s(%s); }\n", diff --git a/src/superc/cdesugarer/NamedFunctionT.java b/src/superc/cdesugarer/NamedFunctionT.java index 20e7c4ef..66276837 100644 --- a/src/superc/cdesugarer/NamedFunctionT.java +++ b/src/superc/cdesugarer/NamedFunctionT.java @@ -85,28 +85,6 @@ public NamedFunctionT copy() { return copy; } - public String printSignature() { - String r = result.printType() + " " + name + " ("; - int count = 0; - if (parameters.size() == 1 && parameters.get(0).toVariable().getType().isVoid()) { - r += "void"; - } else { - for (Iterator iter = parameters.iterator(); iter.hasNext(); ) { - Type t = iter.next(); - if (!t.isVariable()) {System.err.println("illegal parameter print"); System.exit(-99); } - VariableT v = t.toVariable(); - if (v.hasName()) r += v.printSignature(); - else r += v.printSignature("x"+ String.valueOf(count)); - if (iter.hasNext() || varargs) { - r +=", "; - } - count++; - } - } - r += ")"; - return r; - } - public String getParamNames() { String r = ""; int count = 0; diff --git a/src/superc/cdesugarer/desugarer.y b/src/superc/cdesugarer/desugarer.y index bb63f7d6..1aadf712 100644 --- a/src/superc/cdesugarer/desugarer.y +++ b/src/superc/cdesugarer/desugarer.y @@ -11643,7 +11643,7 @@ public String printMultiplexes(CContext scope, PresenceCondition pc) { if (!t.isNamedFunction()) { continue; } NamedFunctionT nft = t.toNamedFunction(); if (!m.getKey().equals(nft.getName())) { continue; } - ret += nft.printSignature() + " {\n"; + ret += nft.printType() + " {\n"; String params = nft.getParamNames(); for (Element plex : m.getValue()) { ret += String.format("if (%s) { return %s(%s); }\n", diff --git a/src/xtc/type/AliasT.java b/src/xtc/type/AliasT.java index d19ef84d..b44f0352 100644 --- a/src/xtc/type/AliasT.java +++ b/src/xtc/type/AliasT.java @@ -115,9 +115,9 @@ public void write(Appendable out) throws IOException { } out.append(')'); } - - public String printType() { - return getType().printType(); - } - + + public void printType(TypeString t) { + getType().printType(t); + } + } diff --git a/src/xtc/type/AnnotatedT.java b/src/xtc/type/AnnotatedT.java index 25c2b87f..e835765a 100644 --- a/src/xtc/type/AnnotatedT.java +++ b/src/xtc/type/AnnotatedT.java @@ -88,30 +88,11 @@ public void write(Appendable out) throws IOException { out.append(')'); } - public String printType(String extra) { - String ret = ""; + public void printType(TypeString t ) { + getType().printType(t); if (attributes.contains(Constants.ATT_CONSTANT)) { - ret = "const "; + t.addToFront("const "); } - if (getType().isPointer()) - ret += getType().toPointer().printType(extra); - else if (getType().isArray()) - ret += getType().toArray().printType(extra); - else if (getType().isFunction()) - ret += getType().toFunction().printType(extra); - else - ret += getType().printType() + " " + extra; - return ret; - } - - - public String printType() { - String ret = ""; - if (attributes.contains(Constants.ATT_CONSTANT)) { - ret = "const "; - } - ret += getType().printType(); - return ret; } } diff --git a/src/xtc/type/ArrayT.java b/src/xtc/type/ArrayT.java index eb62c157..ce342305 100644 --- a/src/xtc/type/ArrayT.java +++ b/src/xtc/type/ArrayT.java @@ -204,53 +204,16 @@ public void write(Appendable out) throws IOException { } out.append(')'); } - - public boolean innerMostIsFunction() { - if (type.resolve().isPointer()) { - return ((PointerT)type.resolve()).innerMostIsFunction(); - } else if (type.resolve().isArray()) { - return ((ArrayT)type.resolve()).innerMostIsFunction(); - } - return type.resolve().isFunction(); - } - - public String printType(String extra) { - String add; - if (hasLength()) { - add = "[" + getLength() + "]"; - } else { - add = "[]"; - } - if (!innerMostIsFunction()) { - return type.printType()+add+extra; - } else if (type.resolve().isPointer()) { - return ((PointerT)type.resolve()).printType(add+extra); - } else if (type.resolve().isArray()) { - return ((ArrayT)type.resolve()).printType(add+extra); - } else { - return ((FunctionT)type.resolve()).printType(add+extra); - } - } - - public String printType() { - String add; - if (hasLength()) { - add = "[" + getLength() + "]"; - } else { - add = "[]"; - } - if (!innerMostIsFunction()) { - return type.printType()+add; - } else if (type.resolve().isPointer()) { - return ((PointerT)type.resolve()).printType(add); - } else if (type.resolve().isArray()) { - return ((ArrayT)type.resolve()).printType(add); - } else { - return ((FunctionT)type.resolve()).printType(add); - } + public void printType(TypeString t ) { + getType().printType(t); + if (-1 == length) + t.addArray(); + else + t.addArray(length); } + public Type revertForwardRef(List references, String forwardRef, String rename) { return new ArrayT(this,type.revertForwardRef(references, forwardRef, rename),varlength,length); } diff --git a/src/xtc/type/BooleanT.java b/src/xtc/type/BooleanT.java index 40378b77..841af9b2 100644 --- a/src/xtc/type/BooleanT.java +++ b/src/xtc/type/BooleanT.java @@ -86,5 +86,9 @@ public String toString() { public String printType() { return "bool"; } + + public void printType(TypeString t) { + t.addToFront("bool"); + } } diff --git a/src/xtc/type/ClassT.java b/src/xtc/type/ClassT.java index 1c79ae20..549e8fe0 100644 --- a/src/xtc/type/ClassT.java +++ b/src/xtc/type/ClassT.java @@ -99,4 +99,9 @@ public String printType() { return "class " + qname; } + public void printType(TypeString t) { + t.addToFront("class "); + t.id = qname; + } + } diff --git a/src/xtc/type/EnumT.java b/src/xtc/type/EnumT.java index 73c0a283..1aced4fb 100644 --- a/src/xtc/type/EnumT.java +++ b/src/xtc/type/EnumT.java @@ -216,4 +216,7 @@ public String printType() { return "enum " + name; } + public void printType(TypeString t) { + t.addToFront("enum " + name + " "); + } } diff --git a/src/xtc/type/EnumeratorT.java b/src/xtc/type/EnumeratorT.java index 0033f79e..301c59e3 100644 --- a/src/xtc/type/EnumeratorT.java +++ b/src/xtc/type/EnumeratorT.java @@ -118,5 +118,8 @@ public void write(Appendable out) throws IOException { public String printType() { return name; } + public void printType(TypeString t) { + t.addToFront("enum " + name + " "); + } } diff --git a/src/xtc/type/ErrorT.java b/src/xtc/type/ErrorT.java index d4427995..f7ac3b7c 100644 --- a/src/xtc/type/ErrorT.java +++ b/src/xtc/type/ErrorT.java @@ -82,4 +82,8 @@ public String toString() { public String printType() { return ""; } + + public void printType(TypeString t) { + t.addToFront(""); + } } diff --git a/src/xtc/type/FloatT.java b/src/xtc/type/FloatT.java index fa347b4b..32c309de 100644 --- a/src/xtc/type/FloatT.java +++ b/src/xtc/type/FloatT.java @@ -76,5 +76,5 @@ public boolean isFloat() { public FloatT toFloat() { return this; } - + } diff --git a/src/xtc/type/FunctionOrMethodT.java b/src/xtc/type/FunctionOrMethodT.java index 0339dab9..e8fd85b9 100644 --- a/src/xtc/type/FunctionOrMethodT.java +++ b/src/xtc/type/FunctionOrMethodT.java @@ -208,49 +208,34 @@ public void write(Appendable out) throws IOException { } } - public String printType() { - String r = result.printType() + "("; - for (Iterator iter = parameters.iterator(); iter.hasNext(); ) { - r += iter.next().printType(); - if (iter.hasNext() || varargs) { - r +=", "; + public void printType(TypeString t) { + System.err.println(t); + t.inReturn = true; + result.printType(t); + t.inReturn = false; + System.err.println(t); + t.corePost += "("; + t.id = name; + int count = 0; + if (parameters.size() == 1 && parameters.get(0).toVariable().getType().isVoid()) { + t.corePost += "void)"; + } else { + for (Iterator iter = parameters.iterator(); iter.hasNext(); ) { + Type type = iter.next(); + if (!type.isVariable()) {System.err.println("illegal parameter print"); System.exit(-99); } + VariableT v = type.toVariable(); + if (v.hasName()){ + t.corePost += v.printType(); + }else{ + t.corePost += v.printType("x"+ String.valueOf(count)); + } + if (iter.hasNext() || varargs) { + t.corePost +=", "; + } + count++; } + t.corePost += ")"; } - r += ")"; - return r; - } - public String printType(String insert) { - String r = result.printType() + insert + "("; - for (Iterator iter = parameters.iterator(); iter.hasNext(); ) { - r += iter.next().printType(); - if (iter.hasNext() || varargs) { - r +=", "; - } - } - r += ")"; - return r; - } - - /* public void setDefined(PresenceCondition p) { - PresenceCondition newCond = isDefined.or(p); - isDefined.delRef(); - isDefined = newCond; - } - - public boolean getDefined(PresenceCondition p ) { - return isDefined.and(p).isNotFalse(); } - - public void setDefined() { - PresenceCondition toSet = (new PresenceConditionManager()).newTrue(); - setDefined(toSet); - toSet.delRef(); - } - - public boolean getDefined() { - PresenceCondition toSet = (new PresenceConditionManager()).newTrue(); - boolean toRet = getDefined(toSet); - toSet.delRef(); - return toRet; - }*/ + } diff --git a/src/xtc/type/InstantiatedT.java b/src/xtc/type/InstantiatedT.java index f766775a..1efe4a8b 100644 --- a/src/xtc/type/InstantiatedT.java +++ b/src/xtc/type/InstantiatedT.java @@ -173,16 +173,8 @@ public void write(Appendable out) throws IOException { getType().write(out); } - public String printType() { - String r = getType().printType() + "("; - for (Iterator iter = arguments.iterator(); iter.hasNext(); ) { - r += iter.next().printType(); - if (iter.hasNext()) { - r +=", "; - } - } - r += ")"; - return r; + public void printType(TypeString t) { + //dummy for non C type } } diff --git a/src/xtc/type/InterfaceT.java b/src/xtc/type/InterfaceT.java index 25b20124..a42dfbbc 100644 --- a/src/xtc/type/InterfaceT.java +++ b/src/xtc/type/InterfaceT.java @@ -83,4 +83,8 @@ public String printType() { return "interface " + qname; } + public void printType(TypeString t) { + t.addToFront("interface " + qname + " "); + } + } diff --git a/src/xtc/type/InternalParameter.java b/src/xtc/type/InternalParameter.java index cba5b2b1..d0a6ac3b 100644 --- a/src/xtc/type/InternalParameter.java +++ b/src/xtc/type/InternalParameter.java @@ -101,4 +101,8 @@ public String printType() { return Long.toString(nonce); } + public void printType(TypeString t) { + t.addToFront(Long.toString(nonce)); + } + } diff --git a/src/xtc/type/InternalT.java b/src/xtc/type/InternalT.java index 3946f397..e66972ef 100644 --- a/src/xtc/type/InternalT.java +++ b/src/xtc/type/InternalT.java @@ -108,4 +108,8 @@ public String toString() { public String printType() { return name; } + + public void printType(TypeString t) { + t.addToFront(name); + } } diff --git a/src/xtc/type/LabelT.java b/src/xtc/type/LabelT.java index 6d5a4969..7532a35d 100644 --- a/src/xtc/type/LabelT.java +++ b/src/xtc/type/LabelT.java @@ -98,4 +98,8 @@ public void write(Appendable out) throws IOException { public String printType() { return name; } + + public void printType(TypeString t) { + t.id = name; + } } diff --git a/src/xtc/type/NamedParameter.java b/src/xtc/type/NamedParameter.java index ece039c6..f472dbc0 100644 --- a/src/xtc/type/NamedParameter.java +++ b/src/xtc/type/NamedParameter.java @@ -92,4 +92,9 @@ public String printType() { return super.printType() + " " + name; } + public void printType(TypeString t) { + super.printType(t); + t.id = name; + } + } diff --git a/src/xtc/type/NumberT.java b/src/xtc/type/NumberT.java index 7f19b5e5..e3ab87c7 100644 --- a/src/xtc/type/NumberT.java +++ b/src/xtc/type/NumberT.java @@ -383,4 +383,8 @@ public String printType() { return toString(); } + public void printType(TypeString t) { + t.addToFront(toString() + " " ); + } + } diff --git a/src/xtc/type/PackageT.java b/src/xtc/type/PackageT.java index bd9111a9..788db858 100644 --- a/src/xtc/type/PackageT.java +++ b/src/xtc/type/PackageT.java @@ -98,4 +98,8 @@ public void write(Appendable out) throws IOException { public String printType() { return name; } + + public void printType(TypeString t) { + t.id = name; + } } diff --git a/src/xtc/type/Parameter.java b/src/xtc/type/Parameter.java index 1f1e7419..8928d980 100644 --- a/src/xtc/type/Parameter.java +++ b/src/xtc/type/Parameter.java @@ -96,5 +96,8 @@ public String printType() { return binding.printType(); } - + public void printType(TypeString t) { + binding.printType(t); + } + } diff --git a/src/xtc/type/ParameterizedT.java b/src/xtc/type/ParameterizedT.java index 43b6c2c6..e6e1be1d 100644 --- a/src/xtc/type/ParameterizedT.java +++ b/src/xtc/type/ParameterizedT.java @@ -117,14 +117,8 @@ public void write(Appendable out) throws IOException { getType().write(out); } - public String printType(){ - String r = getType().printType() + "<"; - for (Iterator iter = parameters.iterator(); iter.hasNext(); ) { - r += iter.next().printType(); - if (iter.hasNext()) r +=", "; - } - r+="> "; - return r; + public void printType(TypeString t) { + //dummy for non C type } } diff --git a/src/xtc/type/PointerT.java b/src/xtc/type/PointerT.java index f8aa10c8..58d4740e 100644 --- a/src/xtc/type/PointerT.java +++ b/src/xtc/type/PointerT.java @@ -114,50 +114,11 @@ public void write(Appendable out) throws IOException { out.append(')'); } - - public boolean innerMostIsFunction() { - if (type.resolve().isPointer()) { - return ((PointerT)type.resolve()).innerMostIsFunction(); - } else if (type.resolve().isArray()) { - return ((ArrayT)type.resolve()).innerMostIsFunction(); - - } - return type.resolve().isFunction(); - } - - public String printType(String extra) { - - Type type = getType(); - if (!innerMostIsFunction()) { - return type.printType()+"*"+extra; - } else if (type.isPointer()) { - return ((PointerT)type).printType("*"+extra); - } else if (type.isArray()) { - return ((ArrayT)type).printType("*"+extra); - } else if (type.isAnnotated()) { - return type.toAnnotated().printType("*"+extra); - } else { - return ((FunctionT)type).printType("*"+extra); - } - - } - - public String printType() { - Type type = getType(); - if (!innerMostIsFunction()) { - return type.printType()+"*"; - } else if (type.isPointer()) { - return ((PointerT)type).printType("*"); - } else if (type.isArray()) { - return ((ArrayT)type).printType("*"); - } else if (type.isAnnotated()) { - return type.toAnnotated().printType("*"); - } else { - return ((FunctionT)type).printType("*"); - } - + public void printType(TypeString t) { + getType().printType(t); + t.addToFront("*"); } - + public Type revertForwardRef(List references, String forwardRef, String rename) { return new PointerT(type.revertForwardRef(references, forwardRef, rename)); } diff --git a/src/xtc/type/StructT.java b/src/xtc/type/StructT.java index 88c8ab13..53051c99 100644 --- a/src/xtc/type/StructT.java +++ b/src/xtc/type/StructT.java @@ -93,7 +93,11 @@ public void write(Appendable out) throws IOException { public String printType() { return "struct " + name; } - + + public void printType(TypeString t) { + t.addToFront("struct " + name + " "); + } + public Type revertForwardRef(List references, String forwardRef, String rename) { for (String s : references) { if (s.equals(name)) { diff --git a/src/xtc/type/TupleT.java b/src/xtc/type/TupleT.java index 06011520..82a1f618 100644 --- a/src/xtc/type/TupleT.java +++ b/src/xtc/type/TupleT.java @@ -236,22 +236,9 @@ public void write(Appendable out) throws IOException { out.append(')'); } - public String printType() { - String r = ""; - if (null != qname) { - r += qname; - } - r += "("; - if (types == null) { - r+= "..."; - } else { - for (Iterator iter = types.iterator(); iter.hasNext(); ) { - r += iter.next().printType(); - if (iter.hasNext()) r+=", "; - } - } - r += ")"; - return r; + public void printType(TypeString t) { + //dummy for non C type } + } diff --git a/src/xtc/type/Type.java b/src/xtc/type/Type.java index 3b773d13..95d1a8d2 100644 --- a/src/xtc/type/Type.java +++ b/src/xtc/type/Type.java @@ -1989,16 +1989,20 @@ public static List seal(List types) { return Collections.unmodifiableList(types); } - /** - * prints the type as it would be written - * this is only meant to replicate a given type - * not to be used as a replacement - */ - public abstract String printType(); - - public String printSignature() { return printType(); } - - public String printSignature(String name) { return printSignature(); } + public abstract void printType(TypeString t); + + public String printType() { + TypeString t = new TypeString(); + printType(t); + return t.toString(); + } + + public String printType(String s) { + TypeString t = new TypeString(); + printType(t); + t.id = s; + return t.toString(); + } public Type revertForwardRef(List references, String forwardRef, String rename) { diff --git a/src/xtc/type/TypeString.java b/src/xtc/type/TypeString.java new file mode 100644 index 00000000..5e59312e --- /dev/null +++ b/src/xtc/type/TypeString.java @@ -0,0 +1,52 @@ +package xtc.type; + +public class TypeString { + + public String retType; + public String declPre; + public String declPost; + public String corePost; + public String id; + public boolean inReturn; + + public TypeString() { + retType = ""; + declPre = ""; + declPost = ""; + corePost = ""; + id = ""; + inReturn = false; + } + + public void addToFront(String s) { + if (inReturn) { + retType = retType + s; + } else { + declPre = declPre + s; + } + } + + public void addArray() { + if (inReturn) { + corePost = "[]" + corePost; + } else { + declPre = "(" + declPre; + declPost = declPost + ")[]"; + } + } + + public void addArray(long l) { + if (inReturn) { + corePost = "[" + String.valueOf(l) + "]" + corePost; + } else { + declPre = "(" + declPre; + declPost = declPost + ")[" + String.valueOf(l) + "]"; + } + } + + public String toString() { + if (!retType.equals("")) + return retType + "(" + declPre + id + declPost + ")" + corePost; + return declPre + id + declPost + corePost; + } +} diff --git a/src/xtc/type/UnionT.java b/src/xtc/type/UnionT.java index 5fa23261..4fbb75cd 100644 --- a/src/xtc/type/UnionT.java +++ b/src/xtc/type/UnionT.java @@ -92,4 +92,8 @@ public void write(Appendable out) throws IOException { public String printType() { return "union " + name; } + + public void printType(TypeString t) { + t.addToFront("union " + name + " "); + } } diff --git a/src/xtc/type/UnitT.java b/src/xtc/type/UnitT.java index 70ed561f..00c1a767 100644 --- a/src/xtc/type/UnitT.java +++ b/src/xtc/type/UnitT.java @@ -86,5 +86,9 @@ public String toString() { public String printType() { return "unit"; } + + public void printType(TypeString t) { + t.addToFront("unit"); + } } diff --git a/src/xtc/type/VariableT.java b/src/xtc/type/VariableT.java index 92562434..3e945e0e 100644 --- a/src/xtc/type/VariableT.java +++ b/src/xtc/type/VariableT.java @@ -210,26 +210,9 @@ public void write(Appendable out) throws IOException { out.append(')'); } - public String printType() { - return getType().printType(); - } - - public String printSignature() { - return printSignature(getName()); - } - - public String printSignature(String name) { - if (getType().isPointer()) { - return ((PointerT)getType()).printType(name); - } else if (getType().isArray()) { - return ((ArrayT)getType()).printType(name); - } else if (getType().isEnum()) { - return getType().printType() + " " + name; - } else if (getType().isAnnotated()) { - return getType().toAnnotated().printType(name); - } else { - return getType().resolve().printType() + " " + name; - } + public void printType(TypeString t) { + getType().printType(t); + t.id = getName(); } // ========================================================================= @@ -284,10 +267,10 @@ public static VariableT newField(Type type, String name) { public static VariableT newBitfield(Type type, String name, int width) { return new VariableT(null, type, name, width); } - + public Type revertForwardRef(List references, String forwardRef, String rename) { return new VariableT(this, getType().revertForwardRef(references, forwardRef, rename), this.kind, rename); } - + } diff --git a/src/xtc/type/VariantT.java b/src/xtc/type/VariantT.java index 3b03726c..77820822 100644 --- a/src/xtc/type/VariantT.java +++ b/src/xtc/type/VariantT.java @@ -274,6 +274,10 @@ public void write(Appendable out) throws IOException { } } + public void printType(TypeString t) { + t.addToFront(qname); + } + public String printType() { return qname; } diff --git a/src/xtc/type/VoidT.java b/src/xtc/type/VoidT.java index a776e28e..3704f3a8 100644 --- a/src/xtc/type/VoidT.java +++ b/src/xtc/type/VoidT.java @@ -86,5 +86,9 @@ public String toString() { public String printType() { return "void"; } + + public void printType(TypeString t) { + t.addToFront("void"); + } } diff --git a/src/xtc/type/Wildcard.java b/src/xtc/type/Wildcard.java index 909a923c..138787ab 100644 --- a/src/xtc/type/Wildcard.java +++ b/src/xtc/type/Wildcard.java @@ -92,5 +92,8 @@ public boolean equals(Object o) { public String printType() { return ""; } + + public void printType(TypeString t) { + } } From c4f6a42bcc7ab3e64d2b63ec4d7c0034209d9ff8 Mon Sep 17 00:00:00 2001 From: pattersonz Date: Thu, 23 Feb 2023 11:38:10 -0600 Subject: [PATCH 56/77] mend --- .../language_features/function_definitions/K | 1 - src/xtc/type/BooleanT.java | 2 +- src/xtc/type/EnumT.java | 2 +- src/xtc/type/NumberT.java | 2 +- src/xtc/type/StructT.java | 2 +- src/xtc/type/TypeString.java | 11 ++++++++--- src/xtc/type/UnionT.java | 2 +- src/xtc/type/UnitT.java | 2 +- src/xtc/type/VoidT.java | 2 +- 9 files changed, 15 insertions(+), 11 deletions(-) diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K index c4f4ac19..e69de29b 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K @@ -1 +0,0 @@ -sh: 1: R/injected/function_no_param_dec.desugared.c: not found diff --git a/src/xtc/type/BooleanT.java b/src/xtc/type/BooleanT.java index 841af9b2..15e422dd 100644 --- a/src/xtc/type/BooleanT.java +++ b/src/xtc/type/BooleanT.java @@ -88,7 +88,7 @@ public String printType() { } public void printType(TypeString t) { - t.addToFront("bool"); + t.setCore("bool"); } } diff --git a/src/xtc/type/EnumT.java b/src/xtc/type/EnumT.java index 1aced4fb..95d46723 100644 --- a/src/xtc/type/EnumT.java +++ b/src/xtc/type/EnumT.java @@ -217,6 +217,6 @@ public String printType() { } public void printType(TypeString t) { - t.addToFront("enum " + name + " "); + t.setCore("enum " + name); } } diff --git a/src/xtc/type/NumberT.java b/src/xtc/type/NumberT.java index e3ab87c7..6c1e04df 100644 --- a/src/xtc/type/NumberT.java +++ b/src/xtc/type/NumberT.java @@ -384,7 +384,7 @@ public String printType() { } public void printType(TypeString t) { - t.addToFront(toString() + " " ); + t.setCore(toString()); } } diff --git a/src/xtc/type/StructT.java b/src/xtc/type/StructT.java index 53051c99..11f4f77b 100644 --- a/src/xtc/type/StructT.java +++ b/src/xtc/type/StructT.java @@ -95,7 +95,7 @@ public String printType() { } public void printType(TypeString t) { - t.addToFront("struct " + name + " "); + t.setCore("struct " + name); } public Type revertForwardRef(List references, String forwardRef, String rename) { diff --git a/src/xtc/type/TypeString.java b/src/xtc/type/TypeString.java index 5e59312e..cd93aaa4 100644 --- a/src/xtc/type/TypeString.java +++ b/src/xtc/type/TypeString.java @@ -2,6 +2,7 @@ public class TypeString { + public String coreType; public String retType; public String declPre; public String declPost; @@ -10,6 +11,7 @@ public class TypeString { public boolean inReturn; public TypeString() { + coreType = ""; retType = ""; declPre = ""; declPost = ""; @@ -18,6 +20,10 @@ public TypeString() { inReturn = false; } + public void setCore(String s) { + coreType = s; + } + public void addToFront(String s) { if (inReturn) { retType = retType + s; @@ -45,8 +51,7 @@ public void addArray(long l) { } public String toString() { - if (!retType.equals("")) - return retType + "(" + declPre + id + declPost + ")" + corePost; - return declPre + id + declPost + corePost; + return coreType + " " + retType + "(" + declPre + id + declPost + ")" + corePost; + //return declPre + id + declPost + corePost; } } diff --git a/src/xtc/type/UnionT.java b/src/xtc/type/UnionT.java index 4fbb75cd..8be2a205 100644 --- a/src/xtc/type/UnionT.java +++ b/src/xtc/type/UnionT.java @@ -94,6 +94,6 @@ public String printType() { } public void printType(TypeString t) { - t.addToFront("union " + name + " "); + t.setCore("union " + name); } } diff --git a/src/xtc/type/UnitT.java b/src/xtc/type/UnitT.java index 00c1a767..d2fcd61c 100644 --- a/src/xtc/type/UnitT.java +++ b/src/xtc/type/UnitT.java @@ -88,7 +88,7 @@ public String printType() { } public void printType(TypeString t) { - t.addToFront("unit"); + t.setCore("unit"); } } diff --git a/src/xtc/type/VoidT.java b/src/xtc/type/VoidT.java index 3704f3a8..5533c790 100644 --- a/src/xtc/type/VoidT.java +++ b/src/xtc/type/VoidT.java @@ -88,7 +88,7 @@ public String printType() { } public void printType(TypeString t) { - t.addToFront("void"); + t.setCore("void"); } } From 634f11318e68e1aed11f67cdb2db753f647f4f74 Mon Sep 17 00:00:00 2001 From: pattersonz Date: Thu, 23 Feb 2023 12:30:40 -0600 Subject: [PATCH 57/77] mend --- src/xtc/type/AnnotatedT.java | 2 +- src/xtc/type/ArrayT.java | 2 ++ src/xtc/type/FunctionOrMethodT.java | 6 ++++-- src/xtc/type/PointerT.java | 2 ++ src/xtc/type/TypeString.java | 14 ++++++++++++-- 5 files changed, 21 insertions(+), 5 deletions(-) diff --git a/src/xtc/type/AnnotatedT.java b/src/xtc/type/AnnotatedT.java index e835765a..3240598f 100644 --- a/src/xtc/type/AnnotatedT.java +++ b/src/xtc/type/AnnotatedT.java @@ -91,7 +91,7 @@ public void write(Appendable out) throws IOException { public void printType(TypeString t ) { getType().printType(t); if (attributes.contains(Constants.ATT_CONSTANT)) { - t.addToFront("const "); + t.addAttribute("const"); } } diff --git a/src/xtc/type/ArrayT.java b/src/xtc/type/ArrayT.java index ce342305..675cb86c 100644 --- a/src/xtc/type/ArrayT.java +++ b/src/xtc/type/ArrayT.java @@ -206,7 +206,9 @@ public void write(Appendable out) throws IOException { } public void printType(TypeString t ) { + t.wrap++; getType().printType(t); + t.wrap--; if (-1 == length) t.addArray(); else diff --git a/src/xtc/type/FunctionOrMethodT.java b/src/xtc/type/FunctionOrMethodT.java index e8fd85b9..7ca7988a 100644 --- a/src/xtc/type/FunctionOrMethodT.java +++ b/src/xtc/type/FunctionOrMethodT.java @@ -209,11 +209,13 @@ public void write(Appendable out) throws IOException { } public void printType(TypeString t) { - System.err.println(t); + if (t.inReturn) { + t.coreType = printType(); + return; + } t.inReturn = true; result.printType(t); t.inReturn = false; - System.err.println(t); t.corePost += "("; t.id = name; int count = 0; diff --git a/src/xtc/type/PointerT.java b/src/xtc/type/PointerT.java index 58d4740e..88dc8dc6 100644 --- a/src/xtc/type/PointerT.java +++ b/src/xtc/type/PointerT.java @@ -115,7 +115,9 @@ public void write(Appendable out) throws IOException { } public void printType(TypeString t) { + t.wrap++; getType().printType(t); + t.wrap--; t.addToFront("*"); } diff --git a/src/xtc/type/TypeString.java b/src/xtc/type/TypeString.java index cd93aaa4..1e57e123 100644 --- a/src/xtc/type/TypeString.java +++ b/src/xtc/type/TypeString.java @@ -9,6 +9,7 @@ public class TypeString { public String corePost; public String id; public boolean inReturn; + public int wrap; public TypeString() { coreType = ""; @@ -18,6 +19,7 @@ public TypeString() { corePost = ""; id = ""; inReturn = false; + wrap = 0; } public void setCore(String s) { @@ -26,9 +28,9 @@ public void setCore(String s) { public void addToFront(String s) { if (inReturn) { - retType = retType + s; + retType = retType + " " + s; } else { - declPre = declPre + s; + declPre = declPre + " " + s; } } @@ -50,6 +52,14 @@ public void addArray(long l) { } } + public void addAttribute(String s) { + if (wrap > 0) { + addToFront(s); + }else { + coreType = s + coreType; + } + } + public String toString() { return coreType + " " + retType + "(" + declPre + id + declPost + ")" + corePost; //return declPre + id + declPost + corePost; From f6a9fba9d68ee30dcb2d9714b02d2a50a69a0840 Mon Sep 17 00:00:00 2001 From: pattersonz Date: Thu, 23 Feb 2023 15:39:02 -0600 Subject: [PATCH 58/77] updated ordering of const and pointers --- src/xtc/type/AliasT.java | 2 +- src/xtc/type/ArrayT.java | 25 +++++++++++++++++++------ src/xtc/type/Type.java | 1 + src/xtc/type/TypeString.java | 17 ++++++++++------- 4 files changed, 31 insertions(+), 14 deletions(-) diff --git a/src/xtc/type/AliasT.java b/src/xtc/type/AliasT.java index b44f0352..9c601e02 100644 --- a/src/xtc/type/AliasT.java +++ b/src/xtc/type/AliasT.java @@ -117,7 +117,7 @@ public void write(Appendable out) throws IOException { } public void printType(TypeString t) { - getType().printType(t); + t.coreType = name; } } diff --git a/src/xtc/type/ArrayT.java b/src/xtc/type/ArrayT.java index 675cb86c..78743f9c 100644 --- a/src/xtc/type/ArrayT.java +++ b/src/xtc/type/ArrayT.java @@ -40,6 +40,9 @@ public class ArrayT extends DerivedT { /** The length. */ private long length; + + private String lenStr; + /** * Create a new, incomplete array type. * @@ -60,6 +63,7 @@ public ArrayT(Type type, boolean varlength) { this.type = type; this.varlength = varlength; this.length = -1; + this.lenStr = ""; for (Attribute a : type.attributes()) addAttribute(a); } @@ -74,10 +78,20 @@ public ArrayT(Type type, long length) { this.type = type; this.varlength = false; this.length = length; + this.lenStr = String.valueOf(length); for (Attribute a : type.attributes()) - addAttribute(a); + addAttribute(a); } + public ArrayT(Type type, String lenStr) { + this.type = type; + this.varlength = false; + this.length = -1; + this.lenStr = lenStr; + for (Attribute a : type.attributes()) + addAttribute(a); + } + /** * Create a new array type. * @@ -91,6 +105,7 @@ public ArrayT(Type template, Type type, boolean varlength, long length) { this.type = type; this.varlength = varlength; this.length = length; + this.lenStr = String.valueOf(length); } public Type seal() { @@ -174,6 +189,7 @@ public long getLength() { public void setLength(long length) { checkNotSealed(); this.length = length; + lenStr = String.valueOf(length); } public int hashCode() { @@ -200,7 +216,7 @@ public void write(Appendable out) throws IOException { out.append(", *"); } else if (-1 != length) { out.append(", "); - out.append(Long.toString(length)); + out.append(lenStr); } out.append(')'); } @@ -209,10 +225,7 @@ public void printType(TypeString t ) { t.wrap++; getType().printType(t); t.wrap--; - if (-1 == length) - t.addArray(); - else - t.addArray(length); + t.addArray(lenStr); } diff --git a/src/xtc/type/Type.java b/src/xtc/type/Type.java index 95d1a8d2..d25e41b7 100644 --- a/src/xtc/type/Type.java +++ b/src/xtc/type/Type.java @@ -1992,6 +1992,7 @@ public static List seal(List types) { public abstract void printType(TypeString t); public String printType() { + System.err.println(this.toString()); TypeString t = new TypeString(); printType(t); return t.toString(); diff --git a/src/xtc/type/TypeString.java b/src/xtc/type/TypeString.java index 1e57e123..e36da682 100644 --- a/src/xtc/type/TypeString.java +++ b/src/xtc/type/TypeString.java @@ -30,7 +30,7 @@ public void addToFront(String s) { if (inReturn) { retType = retType + " " + s; } else { - declPre = declPre + " " + s; + declPre = declPre + s; } } @@ -43,25 +43,28 @@ public void addArray() { } } - public void addArray(long l) { + public void addArray(String s) { if (inReturn) { - corePost = "[" + String.valueOf(l) + "]" + corePost; + corePost = "[" + s + "]" + corePost; } else { declPre = "(" + declPre; - declPost = declPost + ")[" + String.valueOf(l) + "]"; + declPost = declPost + ")[" + s + "]"; } } + public void addAttribute(String s) { if (wrap > 0) { addToFront(s); - }else { - coreType = s + coreType; + } else { + coreType = s + " " + coreType; } } public String toString() { + if (!retType.equals("")) { return coreType + " " + retType + "(" + declPre + id + declPost + ")" + corePost; - //return declPre + id + declPost + corePost; + } + return coreType + " " + declPre + id + declPost + corePost; } } From d9d14bacab2bc78ad41eef4e841dff82cef1cd5c Mon Sep 17 00:00:00 2001 From: pattersonz Date: Sat, 25 Feb 2023 19:33:02 -0600 Subject: [PATCH 59/77] reworked type building from declarations, and type printing --- .../microbenchmark/autoRunnerResults.txt | 5 +++ ...const_array_pointer_prototype.desugared.c# | 43 +++++++++++++++++++ .../injected/const_array_pointer_prototype.c | 3 ++ .../function_prototype_const_typedef.c | 14 ++++++ .../ANSI/injected/prototypes.c | 32 ++++++++++++++ .../language_features/function_definitions/K | 1 + src/superc/cdesugarer/CActions.java | 38 ++++++++-------- src/superc/cdesugarer/Declaration.java | 2 +- src/superc/cdesugarer/Declarator.java | 33 ++++++++------ src/superc/cdesugarer/DesugarOps.java | 1 + src/superc/cdesugarer/desugarer.y | 38 ++++++++-------- src/xtc/type/AliasT.java | 2 +- src/xtc/type/AnnotatedT.java | 8 +++- src/xtc/type/ArrayT.java | 16 +++---- src/xtc/type/PointerT.java | 8 ++-- src/xtc/type/TypeString.java | 39 ++++++++--------- 16 files changed, 191 insertions(+), 92 deletions(-) create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/#const_array_pointer_prototype.desugared.c# create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/const_array_pointer_prototype.c create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_prototype_const_typedef.c create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/prototypes.c diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/autoRunnerResults.txt b/fonda/cpp_testsuite/desugarer/microbenchmark/autoRunnerResults.txt index 8d642fd0..8346e316 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/autoRunnerResults.txt +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/autoRunnerResults.txt @@ -26,12 +26,14 @@ /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/external_declarations/injected/extern_repeated.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/external_declarations/injected/extern_global_static.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/prototype_forward_reference.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/const_array_pointer_prototype.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_typedef_parameter_configurable.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_parameters_configurable.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_parameters_empty_configurable.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_abstract_parameter.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/basic_functions.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_pointer.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_prototype_const_typedef.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_qualified_void_pointer.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_pointer_param.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_parameter_multiple_config.c :: match @@ -108,6 +110,9 @@ /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/syntactic_error_integration/enum_error.c :: 1/2 ['0', '157']/['0', '0'] [' REPEATED::157/0'] +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/prototypes.c :: 0/2 + ['4', '8']/['777', '777'] + ['::4/777', ' A::8/777'] /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/injected/function_typedef_parameter_configurable.c :: did not desug /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/injected/function_parameters_configurable.c :: did not desug /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/injected/function_parameters_empty_configurable.c :: did not desug diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/#const_array_pointer_prototype.desugared.c# b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/#const_array_pointer_prototype.desugared.c# new file mode 100644 index 00000000..dbade3ad --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/#const_array_pointer_prototype.desugared.c# @@ -0,0 +1,43 @@ +#include +#include +#include +#include + +extern void __static_parse_error(char *msg); +extern void __static_type_error(char *msg); +extern void __static_renaming(char *renaming, char *original); +extern void __static_condition_renaming(char *expression, char *renaming); + +void __static_initializer_default(); + +void __static_initializer_default() { +__static_renaming("__asn1_compare_dn_2", "asn1_compare_dn"); + + +}; + +int (__asn1_compare_dn_2) (char * const (__dn1_0)[], const char (* const __dn2_1)[]);// L1 +int (____asn1_compare_dn_2_5) (char * const (__dn1_3)[], const char (* const __dn2_4)[]) //M:L2:L2 +{ + +{// L2 +{ + + + +return 1 ;// L2 +} +}// L2 + + +} + +int __asn1_compare_dn_2 ( char * const __dn1_0[] , const char (* const__dn2_1)[] ) { +if (1) { return ____asn1_compare_dn_2_5(__dn1_0, __dn2_1); } +} +int main(int argc, char **argv) { +__static_initializer_default(); +if (1) { +__static_type_error("main function undefined"); +} +return 0; } diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/const_array_pointer_prototype.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/const_array_pointer_prototype.c new file mode 100644 index 00000000..1492a605 --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/const_array_pointer_prototype.c @@ -0,0 +1,3 @@ +int asn1_compare_dn(char * const dn1[], const char (* const dn2)[]); +int asn1_compare_dn(char * const dn1[], const char (* const dn2)[]) {return 1;} + diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_prototype_const_typedef.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_prototype_const_typedef.c new file mode 100644 index 00000000..20c00729 --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_prototype_const_typedef.c @@ -0,0 +1,14 @@ +#ifdef A +typedef int type; +#else +typedef long long type; +#endif +int foo (const type * x); + +int main() { + return foo(1); +} + +int foo (const type * x) { + return sizeof(x); +} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/prototypes.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/prototypes.c new file mode 100644 index 00000000..8900b981 --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/prototypes.c @@ -0,0 +1,32 @@ +#ifdef A +typedef long long type; +#else +typedef int type; +#endif +int foo (type x); +int foo2 (type *x); +int foo3 (type *(x)); +int foo4 (type **x); +int foo5 (type (*(*(x)))); +int foo6 (type x[]); +int foo7 (const type x[2]); +int foo8 (type x[3][3]); +int foo9 (type *x[4]); +int foo10 (type **const x[6]); +int foo11 (type (*x)[7]); + +int main() { + return foo(1); +} + +int foo (type x) {return sizeof(x);} +int foo2 (type *x){return sizeof(x);} +int foo3 (type *(x)){return sizeof(x);} +int foo4 (type **x){return sizeof(x);} +int foo5 (type (*(*(x)))){return sizeof(x);} +int foo6 (type x[]){return sizeof(x);} +int foo7 (const type x[2]){return sizeof(x);} +int foo8 (type x[3][3]){return sizeof(x);} +int foo9 (type *x[4]){return sizeof(x);} +int foo10 (type **const x[6]){return sizeof(x);} +int foo11 (type (*x)[7]){return sizeof(x);} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K index e69de29b..c4f4ac19 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K @@ -0,0 +1 @@ +sh: 1: R/injected/function_no_param_dec.desugared.c: not found diff --git a/src/superc/cdesugarer/CActions.java b/src/superc/cdesugarer/CActions.java index c314a065..56d4f263 100644 --- a/src/superc/cdesugarer/CActions.java +++ b/src/superc/cdesugarer/CActions.java @@ -9732,29 +9732,29 @@ static public Multiverse sizeofExpansion(Multiverse es, Multiver if (tempT.isStruct() || tempT.isUnion()) { Multiverse innerStruct = sizeofBody(tempT,fic,scope,et.getCondition()); for (Element e : innerStruct) { - if (!es.isEmpty()) { - String standin = ""; - standin = fic.freshCId("sizeofStandin"); - scope.addDeclaration(e.getData() + standin + ";\n"); - ret.add("sizeof(" + standin + ")",e.getCondition()); - } else { - String standin = ""; - standin = fic.freshCId("sizeofStandin"); - scope.addDeclaration(e.getData() + standin + ";\n"); - ret.add("sizeof(typeof(" + standin + "))",e.getCondition()); - } + if (!es.isEmpty()) { + String standin = ""; + standin = fic.freshCId("sizeofStandin"); + scope.addDeclaration(e.getData() + standin + ";\n"); + ret.add("sizeof(" + standin + ")",e.getCondition()); + } else { + String standin = ""; + standin = fic.freshCId("sizeofStandin"); + scope.addDeclaration(e.getData() + standin + ";\n"); + ret.add("sizeof(typeof(" + standin + "))",e.getCondition()); + } } } else { if (!es.isEmpty() && !(es.filter(et.getCondition())).isEmpty()) { - for (Element ex : es.filter(et.getCondition())) { - if (ex.getData().equals("")) { - ret.add("sizeof(" + et.getData().printType() + ")",ex.getCondition()); - } else { - ret.add("sizeof(" + ex.getData() + ")",ex.getCondition()); - } - } + for (Element ex : es.filter(et.getCondition())) { + if (ex.getData().equals("")) { + ret.add("sizeof(" + et.getData().printType() + ")",ex.getCondition()); + } else { + ret.add("sizeof(" + ex.getData() + ")",ex.getCondition()); + } + } } else { - ret.add("sizeof(" + et.getData().printType() + ")", et.getCondition()); + ret.add("sizeof(" + et.getData().printType() + ")", et.getCondition()); } } } diff --git a/src/superc/cdesugarer/Declaration.java b/src/superc/cdesugarer/Declaration.java index 9fba3480..5acdee3b 100644 --- a/src/superc/cdesugarer/Declaration.java +++ b/src/superc/cdesugarer/Declaration.java @@ -105,7 +105,7 @@ public String printType() { } public String printType(String x) { - return String.format("%s %s:%s", typespecifier.toString(), x, declarator.printType()); + return String.format("%s %s:%s", typespecifier.toString(), x, declarator.printType()); } public String toString() { diff --git a/src/superc/cdesugarer/Declarator.java b/src/superc/cdesugarer/Declarator.java index 0cc301bc..7dfab59c 100644 --- a/src/superc/cdesugarer/Declarator.java +++ b/src/superc/cdesugarer/Declarator.java @@ -344,11 +344,10 @@ public Declarator rename(String newName) { } public Type getType(Type type) { - System.err.println("TODO: check correctness of qualified pointer declarator type"); + Type pointed = new PointerT(type); TypeSpecifier newts = new TypeSpecifier(qualifiers); - newts.setType(type); - Type qualifiedtype = newts.getType(); - return declarator.getType(new PointerT(qualifiedtype)); + newts.setType(pointed); + return declarator.getType(newts.getType()); } public boolean hasTypeError() { @@ -445,12 +444,12 @@ public Declarator rename(String newName) { } public Type getType(Type type) { + Type pointed = new PointerT(type); TypeSpecifier newts = new TypeSpecifier(qualifiers); - newts.setType(type); - Type qualifiedtype = newts.getType(); - return new PointerT(qualifiedtype); + newts.setType(pointed); + return newts.getType(); } - + public boolean hasTypeError() { return qualifiers.getType().isError(); } @@ -510,18 +509,24 @@ public boolean hasTypeError() { public boolean isArrayDeclarator() { return true; } public String toString() { - System.err.println("WARNING: do we need parentheses?"); - return String.format("%s%s", declarator.toString(), arrayabstractdeclarator.toString()); + if (declarator.isEmptyDeclarator()) { + return String.format("%s%s", declarator.toString(), arrayabstractdeclarator.toString()); + } + return String.format("(%s)%s", declarator.toString(), arrayabstractdeclarator.toString()); } public String toString(int len) { - System.err.println("WARNING: do we need parentheses?"); - return String.format("%s%s", declarator.toString(), arrayabstractdeclarator.toString(len)); + if (declarator.isEmptyDeclarator()) { + return String.format("%s%s", declarator.toString(), arrayabstractdeclarator.toString(len)); + } + return String.format("(%s)%s", declarator.toString(), arrayabstractdeclarator.toString(len)); } public String printType() { - System.err.println("WARNING: do we need parentheses?"); - return String.format("%s%s", declarator.printType(), arrayabstractdeclarator.printType()); + if (declarator.isEmptyDeclarator() || declarator.isSimpleDeclarator()) { + return String.format("%s%s", declarator.printType(), arrayabstractdeclarator.printType()); + } + return String.format("(%s)%s", declarator.printType(), arrayabstractdeclarator.printType()); } public boolean isFlexible() { return arrayabstractdeclarator.isFlexible(); diff --git a/src/superc/cdesugarer/DesugarOps.java b/src/superc/cdesugarer/DesugarOps.java index 7388587e..1b6caa18 100644 --- a/src/superc/cdesugarer/DesugarOps.java +++ b/src/superc/cdesugarer/DesugarOps.java @@ -181,6 +181,7 @@ public final static Multiverse createQualifiedPointerDeclarator(Mult Multiverse valuemv = new Multiverse(); for (Element qualifierlist : qualifierlists) { + System.err.println(qualifierlist.toString()); for (Element declarator : declarators) { PresenceCondition combinedCond = qualifierlist.getCondition().and(declarator.getCondition()); valuemv.add(new QualifiedPointerDeclarator(declarator.getData(), diff --git a/src/superc/cdesugarer/desugarer.y b/src/superc/cdesugarer/desugarer.y index 1aadf712..ab55e116 100644 --- a/src/superc/cdesugarer/desugarer.y +++ b/src/superc/cdesugarer/desugarer.y @@ -9583,29 +9583,29 @@ static public Multiverse sizeofExpansion(Multiverse es, Multiver if (tempT.isStruct() || tempT.isUnion()) { Multiverse innerStruct = sizeofBody(tempT,fic,scope,et.getCondition()); for (Element e : innerStruct) { - if (!es.isEmpty()) { - String standin = ""; - standin = fic.freshCId("sizeofStandin"); - scope.addDeclaration(e.getData() + standin + ";\n"); - ret.add("sizeof(" + standin + ")",e.getCondition()); - } else { - String standin = ""; - standin = fic.freshCId("sizeofStandin"); - scope.addDeclaration(e.getData() + standin + ";\n"); - ret.add("sizeof(typeof(" + standin + "))",e.getCondition()); - } + if (!es.isEmpty()) { + String standin = ""; + standin = fic.freshCId("sizeofStandin"); + scope.addDeclaration(e.getData() + standin + ";\n"); + ret.add("sizeof(" + standin + ")",e.getCondition()); + } else { + String standin = ""; + standin = fic.freshCId("sizeofStandin"); + scope.addDeclaration(e.getData() + standin + ";\n"); + ret.add("sizeof(typeof(" + standin + "))",e.getCondition()); + } } } else { if (!es.isEmpty() && !(es.filter(et.getCondition())).isEmpty()) { - for (Element ex : es.filter(et.getCondition())) { - if (ex.getData().equals("")) { - ret.add("sizeof(" + et.getData().printType() + ")",ex.getCondition()); - } else { - ret.add("sizeof(" + ex.getData() + ")",ex.getCondition()); - } - } + for (Element ex : es.filter(et.getCondition())) { + if (ex.getData().equals("")) { + ret.add("sizeof(" + et.getData().printType() + ")",ex.getCondition()); + } else { + ret.add("sizeof(" + ex.getData() + ")",ex.getCondition()); + } + } } else { - ret.add("sizeof(" + et.getData().printType() + ")", et.getCondition()); + ret.add("sizeof(" + et.getData().printType() + ")", et.getCondition()); } } } diff --git a/src/xtc/type/AliasT.java b/src/xtc/type/AliasT.java index 9c601e02..ad9ed3bb 100644 --- a/src/xtc/type/AliasT.java +++ b/src/xtc/type/AliasT.java @@ -117,7 +117,7 @@ public void write(Appendable out) throws IOException { } public void printType(TypeString t) { - t.coreType = name; + t.setCore(name); } } diff --git a/src/xtc/type/AnnotatedT.java b/src/xtc/type/AnnotatedT.java index 3240598f..749a3e2c 100644 --- a/src/xtc/type/AnnotatedT.java +++ b/src/xtc/type/AnnotatedT.java @@ -89,9 +89,13 @@ public void write(Appendable out) throws IOException { } public void printType(TypeString t ) { - getType().printType(t); if (attributes.contains(Constants.ATT_CONSTANT)) { - t.addAttribute("const"); + t.addAttribute("const",getType()); + } + if (getType().isPointer()) { + getType().toPointer().getType().printType(t); + } else { + getType().printType(t); } } diff --git a/src/xtc/type/ArrayT.java b/src/xtc/type/ArrayT.java index 78743f9c..86c13392 100644 --- a/src/xtc/type/ArrayT.java +++ b/src/xtc/type/ArrayT.java @@ -64,8 +64,8 @@ public ArrayT(Type type, boolean varlength) { this.varlength = varlength; this.length = -1; this.lenStr = ""; - for (Attribute a : type.attributes()) - addAttribute(a); + //for (Attribute a : type.attributes()) + // addAttribute(a); } /** @@ -79,8 +79,8 @@ public ArrayT(Type type, long length) { this.varlength = false; this.length = length; this.lenStr = String.valueOf(length); - for (Attribute a : type.attributes()) - addAttribute(a); + //for (Attribute a : type.attributes()) + // addAttribute(a); } public ArrayT(Type type, String lenStr) { @@ -88,8 +88,8 @@ public ArrayT(Type type, String lenStr) { this.varlength = false; this.length = -1; this.lenStr = lenStr; - for (Attribute a : type.attributes()) - addAttribute(a); + //for (Attribute a : type.attributes()) + // addAttribute(a); } /** @@ -222,10 +222,8 @@ public void write(Appendable out) throws IOException { } public void printType(TypeString t ) { - t.wrap++; + t.addArray(lenStr,getType()); getType().printType(t); - t.wrap--; - t.addArray(lenStr); } diff --git a/src/xtc/type/PointerT.java b/src/xtc/type/PointerT.java index 88dc8dc6..bbec9541 100644 --- a/src/xtc/type/PointerT.java +++ b/src/xtc/type/PointerT.java @@ -47,8 +47,8 @@ public class PointerT extends DerivedT { */ public PointerT(Type type) { this.type = type; - for (Attribute a : type.attributes()) - addAttribute(a); + // for (Attribute a : type.attributes()) + // addAttribute(a); } /** @@ -115,10 +115,8 @@ public void write(Appendable out) throws IOException { } public void printType(TypeString t) { - t.wrap++; + t.addPointer("*",getType()); getType().printType(t); - t.wrap--; - t.addToFront("*"); } public Type revertForwardRef(List references, String forwardRef, String rename) { diff --git a/src/xtc/type/TypeString.java b/src/xtc/type/TypeString.java index e36da682..329f8ed1 100644 --- a/src/xtc/type/TypeString.java +++ b/src/xtc/type/TypeString.java @@ -23,48 +23,43 @@ public TypeString() { } public void setCore(String s) { - coreType = s; + coreType += " " + s; } public void addToFront(String s) { if (inReturn) { retType = retType + " " + s; } else { - declPre = declPre + s; + declPre = s + " " + declPre; } } - public void addArray() { - if (inReturn) { - corePost = "[]" + corePost; - } else { - declPre = "(" + declPre; - declPost = declPost + ")[]"; - } + public void addArray(Type t) { + addArray("",t); } - public void addArray(String s) { - if (inReturn) { - corePost = "[" + s + "]" + corePost; + public void addArray(String s, Type t) { + declPost += "[" + s + "]"; + } + + public void addPointer(String s, Type t) { + if (t.isArray()) { + declPre = "(" + s + " " + declPre; + declPost += ")"; } else { - declPre = "(" + declPre; - declPost = declPost + ")[" + s + "]"; + declPre = s + " " + declPre; } } - - public void addAttribute(String s) { - if (wrap > 0) { - addToFront(s); + public void addAttribute(String s, Type t) { + if (t.isPointer()) { + addPointer("* " + s, t.toPointer().getType()); } else { coreType = s + " " + coreType; } } public String toString() { - if (!retType.equals("")) { - return coreType + " " + retType + "(" + declPre + id + declPost + ")" + corePost; - } - return coreType + " " + declPre + id + declPost + corePost; + return coreType + " " + retType + " " + declPre + id + declPost + " " + corePost; } } From 5f386d6fae6d9f83f81846df9d83b2cf9fd3ae32 Mon Sep 17 00:00:00 2001 From: pattersonz Date: Sun, 26 Feb 2023 21:58:10 -0600 Subject: [PATCH 60/77] fixed function types in printType, changed declaration print name to make use of the type printType --- src/superc/cdesugarer/Declaration.java | 3 ++- src/superc/cdesugarer/Declarator.java | 2 +- src/xtc/type/AnnotatedT.java | 1 + src/xtc/type/Type.java | 4 ++++ src/xtc/type/TypeString.java | 16 +++++++++++++--- src/xtc/type/VariableT.java | 8 ++++++++ 6 files changed, 29 insertions(+), 5 deletions(-) diff --git a/src/superc/cdesugarer/Declaration.java b/src/superc/cdesugarer/Declaration.java index 5acdee3b..7b8b72f7 100644 --- a/src/superc/cdesugarer/Declaration.java +++ b/src/superc/cdesugarer/Declaration.java @@ -101,7 +101,8 @@ public void setField() { } public String printType() { - return String.format("%s %s", typespecifier.toString(), declarator.printType()); + return getType().printTypeNameless(); + //return String.format("%s %s", typespecifier.toString(), declarator.printType()); } public String printType(String x) { diff --git a/src/superc/cdesugarer/Declarator.java b/src/superc/cdesugarer/Declarator.java index 7dfab59c..5d3067fa 100644 --- a/src/superc/cdesugarer/Declarator.java +++ b/src/superc/cdesugarer/Declarator.java @@ -573,7 +573,7 @@ public Type getType(Type type) { System.err.println("TODO: need to handle the expression to see if the array has a variable size of not"); for (String expression : expressions) { if (expression != "") { - arrayType = new ArrayT(arrayType,1); + arrayType = new ArrayT(arrayType,expression); } else { arrayType = new ArrayT(arrayType); } diff --git a/src/xtc/type/AnnotatedT.java b/src/xtc/type/AnnotatedT.java index 749a3e2c..058beb82 100644 --- a/src/xtc/type/AnnotatedT.java +++ b/src/xtc/type/AnnotatedT.java @@ -88,6 +88,7 @@ public void write(Appendable out) throws IOException { out.append(')'); } + public void printType(TypeString t ) { if (attributes.contains(Constants.ATT_CONSTANT)) { t.addAttribute("const",getType()); diff --git a/src/xtc/type/Type.java b/src/xtc/type/Type.java index d25e41b7..3aaa358c 100644 --- a/src/xtc/type/Type.java +++ b/src/xtc/type/Type.java @@ -1990,6 +1990,10 @@ public static List seal(List types) { } public abstract void printType(TypeString t); + + public String printTypeNameless() { + return printType(); + } public String printType() { System.err.println(this.toString()); diff --git a/src/xtc/type/TypeString.java b/src/xtc/type/TypeString.java index 329f8ed1..41e4993c 100644 --- a/src/xtc/type/TypeString.java +++ b/src/xtc/type/TypeString.java @@ -23,7 +23,11 @@ public TypeString() { } public void setCore(String s) { - coreType += " " + s; + if (inReturn) { + retType = s + " " + retType; + } else { + coreType += " " + s; + } } public void addToFront(String s) { @@ -43,7 +47,9 @@ public void addArray(String s, Type t) { } public void addPointer(String s, Type t) { - if (t.isArray()) { + if (inReturn) { + retType = s + " " + retType; + } else if (t.isArray()) { declPre = "(" + s + " " + declPre; declPost += ")"; } else { @@ -60,6 +66,10 @@ public void addAttribute(String s, Type t) { } public String toString() { - return coreType + " " + retType + " " + declPre + id + declPost + " " + corePost; + if (!retType.equals("")) { + declPre = "(" + declPre; + declPost += ")"; + } + return coreType + " " + retType + " " + declPre + id + declPost + " " + corePost; } } diff --git a/src/xtc/type/VariableT.java b/src/xtc/type/VariableT.java index 3e945e0e..aefebf08 100644 --- a/src/xtc/type/VariableT.java +++ b/src/xtc/type/VariableT.java @@ -214,6 +214,14 @@ public void printType(TypeString t) { getType().printType(t); t.id = getName(); } + + public String printTypeNameless() { + TypeString t = new TypeString(); + getType().printType(t); + t.id = ""; + return t.toString(); + + } // ========================================================================= From fa0dfb245f7acc6ad04833b34b1de527e564237d Mon Sep 17 00:00:00 2001 From: pattersonz Date: Tue, 28 Feb 2023 00:36:03 -0600 Subject: [PATCH 61/77] additions to mem list --- src/superc/cdesugarer/CActions.java | 2 +- src/superc/cdesugarer/desugarer.y | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/superc/cdesugarer/CActions.java b/src/superc/cdesugarer/CActions.java index 56d4f263..f26929d5 100644 --- a/src/superc/cdesugarer/CActions.java +++ b/src/superc/cdesugarer/CActions.java @@ -8463,7 +8463,7 @@ public void dispatch(int id, Subparser subparser) { boolean wrotePrologue = false; static boolean keepMem = false; -static String memNames[] = {"malloc", "calloc", "free", "fopen", "fclose", "rand", "memcpy", "memset"}; +static String memNames[] = {"malloc", "calloc", "free", "fopen", "fclose", "rand", "memcpy", "memset", "strdup", "strcmp"}; public static void keepMemoryNames(boolean f) { keepMem = f; diff --git a/src/superc/cdesugarer/desugarer.y b/src/superc/cdesugarer/desugarer.y index ab55e116..96d4eec1 100644 --- a/src/superc/cdesugarer/desugarer.y +++ b/src/superc/cdesugarer/desugarer.y @@ -8314,7 +8314,7 @@ AsmKeyword: // ADDED boolean wrotePrologue = false; static boolean keepMem = false; -static String memNames[] = {"malloc", "calloc", "free", "fopen", "fclose", "rand", "memcpy", "memset"}; +static String memNames[] = {"malloc", "calloc", "free", "fopen", "fclose", "rand", "memcpy", "memset", "strdup", "strcmp"}; public static void keepMemoryNames(boolean f) { keepMem = f; From 9897fb0805853a11fe0e8ff09bccaede610e0e11 Mon Sep 17 00:00:00 2001 From: pattersonz Date: Thu, 2 Mar 2023 13:46:23 -0600 Subject: [PATCH 62/77] changed hash to be string hash, to remove duplicate conditions --- src/superc/cdesugarer/CActions.java | 2 +- src/superc/cdesugarer/desugarer.y | 2 +- src/superc/core/PresenceConditionManager.java | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/superc/cdesugarer/CActions.java b/src/superc/cdesugarer/CActions.java index f26929d5..5df46205 100644 --- a/src/superc/cdesugarer/CActions.java +++ b/src/superc/cdesugarer/CActions.java @@ -13234,7 +13234,7 @@ public String condToCVar(PresenceCondition cond) { } else { // TODO: traverse the (simplified) expression AST and convert // non-boolean leaves to C variables. - int key = cond.hashCode(); + int key = cond.toString().hashCode(); if (condVars.containsKey(key)) { return condVars.get(key)+"()"; } else { diff --git a/src/superc/cdesugarer/desugarer.y b/src/superc/cdesugarer/desugarer.y index 96d4eec1..f19a9057 100644 --- a/src/superc/cdesugarer/desugarer.y +++ b/src/superc/cdesugarer/desugarer.y @@ -13085,7 +13085,7 @@ public String condToCVar(PresenceCondition cond) { } else { // TODO: traverse the (simplified) expression AST and convert // non-boolean leaves to C variables. - int key = cond.hashCode(); + int key = cond.toString().hashCode(); if (condVars.containsKey(key)) { return condVars.get(key)+"()"; } else { diff --git a/src/superc/core/PresenceConditionManager.java b/src/superc/core/PresenceConditionManager.java index 1a7787e4..ced3a53e 100644 --- a/src/superc/core/PresenceConditionManager.java +++ b/src/superc/core/PresenceConditionManager.java @@ -1380,7 +1380,7 @@ public String toString() { return writer.toString(); } - + // /** // * Use the underlying BDD's hashcode so that the same conditions // * will have the same hash code. From 0901388083ac4de2d0504865b076e841dead9ac4 Mon Sep 17 00:00:00 2001 From: pattersonz Date: Mon, 13 Mar 2023 23:21:20 -0500 Subject: [PATCH 63/77] added functionality for a whitelist of macros to config --- src/superc/SugarC.java | 7 ++++ src/superc/core/ConditionEvaluator.java | 45 +++++++++++++++++++++++- src/superc/core/MacroTable.java | 46 ++++++++++++++++++++++++- 3 files changed, 96 insertions(+), 2 deletions(-) diff --git a/src/superc/SugarC.java b/src/superc/SugarC.java index e7b4c03b..5e417ad9 100644 --- a/src/superc/SugarC.java +++ b/src/superc/SugarC.java @@ -192,6 +192,9 @@ public void init() { word("restrictConfigToPrefix", "restrictConfigToPrefix", false, "Assume non-config free macros are false when used like " + "configuration variables, but keep them free in the macro table"). + word("restrictConfigToWhitelist", "restrictConfigToWhitelist", false, + "Given a file of macros seperated by new lines, assume macros" + + " not included in the list are false"). word("restrictFreeToPrefix", "restrictFreeToPrefix", false, "Restricts free macros to those that have the given prefix"). bool("singleConfigSysheaders", "singleConfigSysheaders", false, @@ -443,6 +446,10 @@ public Node parse(Reader in, File file) throws IOException, ParseException { conditionEvaluator.restrictPrefix(runtime.getString("restrictConfigToPrefix")); } + if (null != runtime.getString("restrictConfigToWhitelist")) { + conditionEvaluator.restrictWhitelist(runtime.getString("restrictConfigToWhitelist")); + } + if (null != commandline) { Syntax syntax; diff --git a/src/superc/core/ConditionEvaluator.java b/src/superc/core/ConditionEvaluator.java index 8a13791e..66bb3eff 100644 --- a/src/superc/core/ConditionEvaluator.java +++ b/src/superc/core/ConditionEvaluator.java @@ -21,9 +21,14 @@ import java.lang.Iterable; import java.util.List; +import java.util.LinkedList; import java.util.Iterator; import java.util.Set; +import java.io.BufferedReader; +import java.io.FileReader; +import java.io.IOException; + import xtc.tree.GNode; import xtc.tree.Node; import xtc.tree.Token; @@ -86,7 +91,10 @@ public class ConditionEvaluator { /** The prefix to restrict free macros to. */ private String restrictPrefix = null; + + private boolean enableRestrictWhitelist = false; + private List restrictWhitelist = null; /** * Set the pullUndefinedFalse flag. @@ -125,7 +133,7 @@ public void restrictPrefix(String prefix) { this.restrictPrefix = prefix; } } - + /** * Get the current macro prefix restriction. * @@ -135,6 +143,37 @@ public String getRestrictPrefix() { return restrictPrefix; } + /** + * Restrict free macros to the given whitelist. + * + * @param File with whitelisted macros + */ + public void restrictWhitelist(String whitelistFile) { + if (null == whitelistFile) { + enableRestrictWhitelist = false; + this.restrictWhitelist = null; + } else { + enableRestrictWhitelist = true; + this.restrictWhitelist = new LinkedList(); + try { + BufferedReader reader = new BufferedReader(new FileReader(whitelistFile)); + String line = reader.readLine(); + while (line != null) { + this.restrictWhitelist.add(line); + line = reader.readLine(); + } + } catch (IOException e) { + System.err.println("Whitelist unable to be read"); + enableRestrictWhitelist = false; + this.restrictWhitelist = null; + } + } + } + + public boolean whitelisted(String param) { + return this.restrictWhitelist.contains(param); + } + /** * Create a new condition evaluator. * @@ -750,6 +789,10 @@ else if (def.macro.state == Macro.State.UNDEFINED) { createDefinedVariable(parameter)); } + if (enableRestrictWhitelist && ! whitelisted(parameter)) { + return B.zero(); + } + if (enableRestrictPrefix && ! parameter.startsWith(restrictPrefix)) { // System.err.println("restricting " + parameter + " to undefined"); return B.zero(); diff --git a/src/superc/core/MacroTable.java b/src/superc/core/MacroTable.java index b5c68c4c..cb49fff5 100644 --- a/src/superc/core/MacroTable.java +++ b/src/superc/core/MacroTable.java @@ -26,6 +26,10 @@ import java.util.Set; import java.util.HashSet; +import java.io.BufferedReader; +import java.io.FileReader; +import java.io.IOException; + import superc.core.Syntax.LanguageTag; import superc.core.Syntax.Layout; import superc.core.Syntax.Language; @@ -75,6 +79,11 @@ public class MacroTable { /** The restricted prefix. */ private String prefix = null; + private boolean enableRestrictWhitelist = false; + + private List restrictWhitelist = null; + + /** Make a new empty macro table */ public MacroTable(TokenCreator tokenCreator) { this.tokenCreator = tokenCreator; @@ -134,6 +143,38 @@ public String getRestrictPrefix() { return prefix; } + /** + * Restrict free macros to the given whitelist. + * + * @param File with whitelisted macros + */ + public void restrictWhitelist(String whitelistFile) { + if (null == whitelistFile) { + enableRestrictWhitelist = false; + this.restrictWhitelist = null; + } else { + enableRestrictWhitelist = true; + this.restrictWhitelist = new LinkedList(); + try { + BufferedReader reader = new BufferedReader(new FileReader(whitelistFile)); + String line = reader.readLine(); + while (line != null) { + this.restrictWhitelist.add(line); + line = reader.readLine(); + } + } catch (IOException e) { + System.err.println("Whitelist unable to be read"); + enableRestrictWhitelist = false; + this.restrictWhitelist = null; + } + } + } + + public boolean whitelisted(String param) { + return this.restrictWhitelist.contains(param); + } + + /** Define a macro under a given presenceCondition. This function will * ensure that all conditions are disjoint and that there are no more * than one of each unique definition. @@ -212,7 +253,10 @@ protected void _define(String name, Macro macro, PresenceCondition presenceCondi PresenceCondition negation; negation = presenceCondition.not(); - if (restrictPrefix && !name.startsWith(prefix)) { + if (enableRestrictWhitelist && ! whitelisted(name)) { + // Assume the macro is undefined. + defs.add(new Entry(Macro.undefined, negation)); + } else if (restrictPrefix && !name.startsWith(prefix)) { // Assume the macro is undefined. defs.add(new Entry(Macro.undefined, negation)); } else { From f33ac5b4d70d402741d8a6caa80be51f7baf3f66 Mon Sep 17 00:00:00 2001 From: pattersonz Date: Tue, 14 Mar 2023 22:32:01 -0500 Subject: [PATCH 64/77] updated grammar to allow for abitrary number of commas at the end of attribute lists --- src/superc/cdesugarer/CActions.java | 69 ++++++++++--------- src/superc/cdesugarer/CLexer.java | 4 +- src/superc/cdesugarer/CParseTables.java | 82 +++++++++++------------ src/superc/cdesugarer/desugarer.y | 5 ++ src/superc/expression/ExpressionRats.java | 2 +- src/xtc/Limits.java | 2 +- 6 files changed, 88 insertions(+), 76 deletions(-) diff --git a/src/superc/cdesugarer/CActions.java b/src/superc/cdesugarer/CActions.java index 5df46205..9f2ed35c 100644 --- a/src/superc/cdesugarer/CActions.java +++ b/src/superc/cdesugarer/CActions.java @@ -7804,11 +7804,18 @@ else if (size1 > size2) { case 518: { - setTransformationValue(value, ""); + //attribute lists may end in a series of commas, to accomodate VA_ARGS + setTransformationValue(value, new Multiverse("", subparser.getPresenceCondition())); } break; case 519: + { + setTransformationValue(value, ""); + } + break; + + case 520: { setTransformationValue(value, String.format("%s %s", getNodeAt(subparser, 2).getTokenText(), @@ -7816,7 +7823,7 @@ else if (size1 > size2) { } break; - case 520: + case 521: { // TODO: need to check type of expression list to make sure // it's legal and return a type error if it is. @@ -7825,12 +7832,6 @@ else if (size1 > size2) { } break; - case 521: - { - // get token from parent - } - break; - case 522: { // get token from parent @@ -8222,13 +8223,19 @@ else if (size1 > size2) { break; case 587: + { + // get token from parent + } + break; + + case 588: { todoReminder("support AssemblyDefinition (1)"); setTransformationValue(value, new Multiverse("", subparser.getPresenceCondition())); } break; - case 588: + case 589: { ExpressionValue e = getCompleteNodeExpressionValue(subparser, 2, subparser.getPresenceCondition()); Multiverse temp = e.transformation; @@ -8239,21 +8246,21 @@ else if (size1 > size2) { } break; - case 589: + case 590: { todoReminder("support AssemblyExpressionOpt (1)"); setTransformationValue(value, new Multiverse("", subparser.getPresenceCondition())); } break; - case 590: + case 591: { todoReminder("support AssemblyExpressionOpt (2)"); setTransformationValue(value, new Multiverse("", subparser.getPresenceCondition())); } break; - case 591: + case 592: { ExpressionValue temp = (ExpressionValue)getTransformationValue(subparser,3); Multiverse prepended = temp.transformation.prependScalar("__asm__(", DesugarOps.concatStrings); @@ -8265,7 +8272,7 @@ else if (size1 > size2) { } break; - case 592: + case 593: { todoReminder("support AssemblyStatement (2)"); System.exit(0); @@ -8275,7 +8282,7 @@ else if (size1 > size2) { } break; - case 593: + case 594: { Multiverse qual = getCompleteNodeMultiverseValue(subparser, 5, subparser.getPresenceCondition()); Multiverse qualS = DesugarOps.TypeSpecifierToString.transform(qual); @@ -8295,7 +8302,7 @@ else if (size1 > size2) { } break; - case 594: + case 595: { Multiverse first = getCompleteNodeExpressionValue(subparser,7,subparser.getPresenceCondition()).transformation; ExpressionValue sec = (ExpressionValue)getTransformationValue(subparser,5); @@ -8316,7 +8323,7 @@ else if (size1 > size2) { } break; - case 595: + case 596: { Multiverse first = getCompleteNodeExpressionValue(subparser,5,subparser.getPresenceCondition()).transformation; ExpressionValue sec = (ExpressionValue)getTransformationValue(subparser,3); @@ -8332,7 +8339,7 @@ else if (size1 > size2) { } break; - case 596: + case 597: { Multiverse first = getCompleteNodeExpressionValue(subparser,3,subparser.getPresenceCondition()).transformation; ExpressionValue sec = (ExpressionValue)getTransformationValue(subparser,1); @@ -8342,31 +8349,31 @@ else if (size1 > size2) { } break; - case 597: + case 598: { setTransformationValue(value, getCompleteNodeExpressionValue(subparser, 1, subparser.getPresenceCondition())); } break; - case 598: + case 599: { setTransformationValue(value, new ExpressionValue(new Multiverse("", subparser.getPresenceCondition()),new Multiverse(new IntegerT(NumberT.Kind.INT),subparser.getPresenceCondition()))); } break; - case 599: + case 600: { setTransformationValue(value, getTransformationValue(subparser,1)); } break; - case 600: + case 601: { setTransformationValue(value, getTransformationValue(subparser,1)); } break; - case 601: + case 602: { ExpressionValue prev = (ExpressionValue)getTransformationValue(subparser,3); ExpressionValue cur = (ExpressionValue)getTransformationValue(subparser,1); @@ -8376,7 +8383,7 @@ else if (size1 > size2) { } break; - case 602: + case 603: { todoReminder("typecheck Assemblyoperand (1)"); ExpressionValue str = getCompleteNodeExpressionValue(subparser,4,subparser.getPresenceCondition()); @@ -8390,7 +8397,7 @@ else if (size1 > size2) { } break; - case 603: + case 604: { String word = ((Syntax) getNodeAt(subparser, 6).get(0)).getTokenText(); todoReminder("support Assemblyoperand (2)"); @@ -8399,26 +8406,26 @@ else if (size1 > size2) { } break; - case 604: + case 605: { setTransformationValue(value, new Multiverse("", subparser.getPresenceCondition())); } break; - case 605: + case 606: { setTransformationValue(value, (Multiverse)getTransformationValue(subparser,1)); } break; - case 606: + case 607: { Multiverse first = getCompleteNodeExpressionValue(subparser,1,subparser.getPresenceCondition()).transformation; setTransformationValue(value, first); } break; - case 607: + case 608: { Multiverse first = (Multiverse)getTransformationValue(subparser,3); Multiverse second = getCompleteNodeExpressionValue(subparser,1,subparser.getPresenceCondition()).transformation; @@ -8430,21 +8437,21 @@ else if (size1 > size2) { } break; - case 608: + case 609: { todoReminder("support AssemblyGotoargument (1)"); setTransformationValue(value, new Multiverse("", subparser.getPresenceCondition())); } break; - case 609: + case 610: { todoReminder("support AssemblyJumpLabels (1)"); setTransformationValue(value, new Multiverse("", subparser.getPresenceCondition())); } break; - case 610: + case 611: { todoReminder("support AssemblyJumpLabels (2)"); setTransformationValue(value, new Multiverse("", subparser.getPresenceCondition())); diff --git a/src/superc/cdesugarer/CLexer.java b/src/superc/cdesugarer/CLexer.java index de85ae9d..6b616993 100644 --- a/src/superc/cdesugarer/CLexer.java +++ b/src/superc/cdesugarer/CLexer.java @@ -1,4 +1,4 @@ -/* The following code was generated by JFlex 1.4.3 on 12/6/22, 5:13 PM */ +/* The following code was generated by JFlex 1.4.3 on 3/14/23 10:26 PM */ package superc.cdesugarer; @@ -15,7 +15,7 @@ /** * This class is a scanner generated by * JFlex 1.4.3 - * on 12/6/22, 5:13 PM from the specification file + * on 3/14/23 10:26 PM from the specification file * lexer.l.i */ class CLexer implements superc.core.Lexer { diff --git a/src/superc/cdesugarer/CParseTables.java b/src/superc/cdesugarer/CParseTables.java index 74d9887f..d96720b8 100644 --- a/src/superc/cdesugarer/CParseTables.java +++ b/src/superc/cdesugarer/CParseTables.java @@ -27,7 +27,7 @@ public CParseTables() { 5148, // YYLAST 129, // YYNTOKENS 223, // YYNNTS - 613, // YYNRULES + 614, // YYNRULES 942, // YYNSTATES 2, // YYUNDEFTOK 383, // YYMAXUTOK @@ -532,17 +532,17 @@ public static class yyr1_wrapper { 322, 322, 323, 323, 324, 324, 325, 325, 325, 326, 326, 327, 327, 327, 327, 327, 327, 327, 327, 327, 327, 327, 328, 328, 329, 329, 330, 331, 331, 332, - 332, 333, 334, 334, 335, 335, 336, 336, 337, 337, - 337, 338, 338, 338, 338, 338, 338, 338, 338, 338, + 332, 333, 334, 334, 335, 335, 336, 336, 336, 337, + 337, 337, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, 338, - 338, 338, 338, 338, 338, 338, 338, 339, 340, 341, - 341, 342, 342, 342, 343, 343, 343, 343, 344, 344, - 345, 345, 346, 346, 347, 347, 348, 348, 349, 350, - 350, 351, 351, 351 + 338, 338, 338, 338, 338, 338, 338, 338, 339, 340, + 341, 341, 342, 342, 342, 343, 343, 343, 343, 344, + 344, 345, 345, 346, 346, 347, 347, 348, 348, 349, + 350, 350, 351, 351, 351 }; } @@ -599,17 +599,17 @@ public static class yyr2_wrapper { 1, 3, 1, 3, 1, 3, 1, 5, 4, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 3, 1, 0, 1, 1, - 2, 6, 1, 1, 0, 1, 2, 4, 0, 2, - 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, + 2, 6, 1, 1, 0, 1, 2, 4, 2, 0, + 2, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, - 1, 1, 1, 1, 1, 1, 1, 2, 4, 0, - 1, 5, 6, 6, 7, 5, 3, 1, 0, 1, - 1, 3, 4, 7, 0, 1, 1, 3, 9, 1, - 3, 1, 1, 1 + 1, 1, 1, 1, 1, 1, 1, 1, 2, 4, + 0, 1, 5, 6, 6, 7, 5, 3, 1, 0, + 1, 1, 3, 4, 7, 0, 1, 1, 3, 9, + 1, 3, 1, 1, 1 }; } @@ -618,7 +618,7 @@ public static class yydefact_wrapper { 3, 0, 2, 1, 151, 160, 156, 507, 158, 507, 152, 148, 154, 149, 507, 94, 159, 155, 162, 165, 153, 97, 150, 314, 123, 0, 0, 9, 163, 168, - 100, 611, 612, 613, 512, 513, 147, 169, 95, 96, + 100, 612, 613, 614, 512, 513, 147, 169, 95, 96, 0, 103, 104, 105, 101, 102, 166, 167, 136, 137, 138, 98, 99, 157, 4, 8, 5, 10, 12, 14, 6, 50, 58, 56, 0, 0, 0, 0, 85, 89, @@ -634,11 +634,11 @@ public static class yydefact_wrapper { 118, 62, 32, 108, 109, 112, 106, 113, 0, 116, 0, 119, 114, 122, 125, 120, 128, 129, 132, 133, 126, 0, 141, 142, 145, 146, 139, 308, 0, 307, - 311, 0, 587, 0, 175, 176, 182, 510, 203, 204, + 311, 0, 588, 0, 175, 176, 182, 510, 203, 204, 0, 200, 180, 181, 182, 306, 313, 321, 301, 317, 355, 13, 0, 371, 0, 0, 0, 0, 0, 0, 59, 0, 57, 308, 327, 279, 326, 294, 0, 0, - 0, 0, 0, 0, 282, 289, 589, 589, 589, 589, + 0, 0, 0, 0, 282, 289, 590, 590, 590, 590, 53, 55, 0, 406, 397, 392, 393, 396, 394, 395, 0, 0, 0, 408, 450, 451, 452, 453, 454, 455, 448, 447, 0, 0, 0, 0, 246, 248, 77, 78, @@ -650,7 +650,7 @@ public static class yydefact_wrapper { 182, 182, 0, 201, 202, 209, 211, 0, 207, 182, 182, 0, 305, 322, 359, 0, 0, 274, 298, 0, 0, 60, 62, 359, 372, 64, 70, 0, 284, 291, - 0, 0, 0, 283, 290, 590, 507, 507, 507, 507, + 0, 0, 0, 283, 290, 591, 507, 507, 507, 507, 408, 433, 408, 430, 431, 449, 0, 0, 0, 0, 0, 0, 444, 308, 333, 247, 325, 323, 324, 249, 134, 398, 0, 424, 425, 0, 0, 0, 492, 493, @@ -659,31 +659,31 @@ public static class yydefact_wrapper { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 135, 0, 221, 225, 223, 227, 73, 78, 329, 215, 217, 220, 219, 309, 243, 319, 241, 331, - 0, 522, 523, 524, 525, 526, 527, 528, 529, 530, - 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, - 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, - 551, 552, 553, 521, 554, 555, 556, 557, 558, 559, - 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, - 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, - 580, 581, 582, 583, 584, 585, 586, 0, 515, 518, - 588, 0, 0, 172, 188, 0, 0, 183, 0, 0, + 0, 523, 524, 525, 526, 527, 528, 529, 530, 531, + 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, + 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, + 552, 553, 554, 522, 555, 556, 557, 558, 559, 560, + 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, + 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, + 581, 582, 583, 584, 585, 586, 587, 0, 515, 519, + 589, 0, 0, 172, 188, 0, 0, 183, 0, 0, 213, 213, 0, 205, 0, 0, 177, 0, 356, 366, - 360, 361, 0, 0, 0, 0, 0, 15, 366, 589, - 589, 295, 285, 293, 292, 287, 0, 250, 250, 250, + 360, 361, 0, 0, 0, 0, 0, 15, 366, 590, + 590, 295, 285, 293, 292, 287, 0, 250, 250, 250, 250, 0, 0, 0, 409, 403, 0, 0, 0, 0, 0, 0, 334, 335, 244, 245, 423, 420, 0, 427, 0, 422, 490, 0, 459, 460, 461, 463, 464, 466, 467, 471, 472, 469, 470, 474, 475, 477, 479, 481, 483, 485, 0, 0, 505, 308, 333, 231, 229, 222, 237, 235, 226, 308, 333, 233, 224, 239, 228, 0, - 0, 0, 0, 332, 0, 0, 0, 516, 173, 174, + 0, 0, 0, 332, 0, 518, 0, 516, 173, 174, 0, 187, 507, 194, 197, 186, 507, 196, 197, 0, 185, 0, 184, 0, 210, 212, 206, 208, 178, 179, 364, 0, 0, 358, 362, 0, 0, 17, 507, 507, 288, 0, 67, 69, 61, 63, 434, 0, 257, 457, 0, 0, 0, 0, 339, 337, 338, 336, 421, 0, 419, 445, 488, 0, 334, 507, 507, 507, 507, 334, - 507, 507, 216, 218, 310, 242, 320, 511, 518, 519, + 507, 507, 216, 218, 310, 242, 320, 511, 519, 520, 0, 199, 191, 193, 198, 189, 195, 507, 507, 214, 0, 363, 357, 0, 0, 502, 0, 0, 0, 502, 0, 0, 406, 123, 0, 370, 33, 35, 368, 0, @@ -691,25 +691,25 @@ public static class yydefact_wrapper { 346, 383, 384, 385, 386, 0, 503, 347, 0, 16, 250, 250, 257, 251, 254, 0, 255, 410, 441, 0, 0, 0, 340, 428, 487, 232, 230, 238, 236, 234, - 240, 517, 520, 190, 192, 365, 390, 0, 0, 389, + 240, 517, 521, 190, 192, 365, 390, 0, 0, 389, 380, 0, 0, 0, 0, 0, 0, 507, 507, 0, 0, 274, 46, 274, 47, 60, 48, 62, 49, 373, 0, 0, 0, 65, 71, 0, 426, 406, 0, 0, 259, 256, 0, 0, 264, 262, 263, 0, 442, 443, 440, 407, 0, 391, 0, 0, 0, 387, 0, 0, - 0, 502, 502, 34, 0, 0, 597, 0, 0, 252, + 0, 502, 502, 34, 0, 0, 598, 0, 0, 252, 0, 272, 0, 268, 269, 258, 260, 261, 265, 0, 0, 502, 502, 388, 0, 502, 502, 348, 349, 359, - 0, 0, 598, 0, 0, 253, 0, 270, 0, 266, - 0, 0, 0, 0, 374, 377, 366, 598, 0, 0, - 0, 596, 599, 600, 591, 0, 0, 0, 0, 0, - 353, 0, 502, 502, 0, 502, 36, 0, 592, 0, - 0, 598, 0, 593, 271, 267, 0, 359, 376, 354, - 0, 0, 378, 375, 0, 598, 0, 0, 595, 601, - 0, 359, 352, 502, 502, 37, 0, 0, 602, 0, - 0, 350, 381, 379, 604, 0, 606, 594, 359, 382, - 0, 605, 0, 0, 351, 0, 603, 607, 609, 608, - 0, 610 + 0, 0, 599, 0, 0, 253, 0, 270, 0, 266, + 0, 0, 0, 0, 374, 377, 366, 599, 0, 0, + 0, 597, 600, 601, 592, 0, 0, 0, 0, 0, + 353, 0, 502, 502, 0, 502, 36, 0, 593, 0, + 0, 599, 0, 594, 271, 267, 0, 359, 376, 354, + 0, 0, 378, 375, 0, 599, 0, 0, 596, 602, + 0, 359, 352, 502, 502, 37, 0, 0, 603, 0, + 0, 350, 381, 379, 605, 0, 607, 595, 359, 382, + 0, 606, 0, 0, 351, 0, 604, 608, 610, 609, + 0, 611 }; } diff --git a/src/superc/cdesugarer/desugarer.y b/src/superc/cdesugarer/desugarer.y index f19a9057..f1458f6a 100644 --- a/src/superc/cdesugarer/desugarer.y +++ b/src/superc/cdesugarer/desugarer.y @@ -7791,6 +7791,11 @@ AttributeList: /** list, nomerge **/ // ADDED // String todoReminder("support AttributeList (2), replaced with empty string now"); setTransformationValue(value, new Multiverse("", subparser.getPresenceCondition())); } + | AttributeList COMMA + { + //attribute lists may end in a series of commas, to accomodate VA_ARGS + setTransformationValue(value, new Multiverse("", subparser.getPresenceCondition())); + } ; AttributeExpressionOpt: // ADDED // String diff --git a/src/superc/expression/ExpressionRats.java b/src/superc/expression/ExpressionRats.java index 75b2a200..5214d6bd 100644 --- a/src/superc/expression/ExpressionRats.java +++ b/src/superc/expression/ExpressionRats.java @@ -2,7 +2,7 @@ // This file has been generated by // Rats! Parser Generator, version 2.4.0, // (C) 2004-2014 Robert Grimm, -// on Tuesday, September 1, 2020 at 3:12:05 PM. +// on Tuesday, March 14, 2023 at 10:25:37 PM. // Edit at your own risk. // =========================================================================== diff --git a/src/xtc/Limits.java b/src/xtc/Limits.java index fbc64a1e..85d389a1 100644 --- a/src/xtc/Limits.java +++ b/src/xtc/Limits.java @@ -45,7 +45,7 @@ private Limits() { /* Nothing to do. */ } // -------------------------------------------------------------------------- /** The name and version of the operating system. */ - public static final String OS = "Linux 5.4.0-135-generic"; + public static final String OS = "Linux 5.4.0-144-generic"; /** The processor architecture. */ public static final String ARCH = "amd64"; From d8d331cb61dbcd6f914cb56ee350f191beab2f98 Mon Sep 17 00:00:00 2001 From: pattersonz Date: Wed, 15 Mar 2023 00:30:15 -0500 Subject: [PATCH 65/77] sanitize check for symtab errors in declaration inits --- src/superc/cdesugarer/CActions.java | 3 +++ src/superc/cdesugarer/desugarer.y | 3 +++ 2 files changed, 6 insertions(+) diff --git a/src/superc/cdesugarer/CActions.java b/src/superc/cdesugarer/CActions.java index 9f2ed35c..f7b4137a 100644 --- a/src/superc/cdesugarer/CActions.java +++ b/src/superc/cdesugarer/CActions.java @@ -8500,6 +8500,9 @@ protected void setupInitials(List declList, DeclaringListVal String originalName = declarator.getData().getName(); Multiverse> entries = scope.getInCurrentScope(originalName, declarator.getCondition()); for (Element> entry : entries) { + if (!entry.getData().isDeclared()) { + continue; + } Type t = entry.getData().getValue().toVariable().getType(); if (initializermv.size() == 1 && ! initializermv.get(0).getData().hasList()) { declList.add(checkInitializers(decl.filter(entry.getCondition()),initializermv,entry.getCondition(),scope,false)); diff --git a/src/superc/cdesugarer/desugarer.y b/src/superc/cdesugarer/desugarer.y index f1458f6a..eaf1a391 100644 --- a/src/superc/cdesugarer/desugarer.y +++ b/src/superc/cdesugarer/desugarer.y @@ -8349,6 +8349,9 @@ public static void keepMemoryNames(boolean f) { String originalName = declarator.getData().getName(); Multiverse> entries = scope.getInCurrentScope(originalName, declarator.getCondition()); for (Element> entry : entries) { + if (!entry.getData().isDeclared()) { + continue; + } Type t = entry.getData().getValue().toVariable().getType(); if (initializermv.size() == 1 && ! initializermv.get(0).getData().hasList()) { declList.add(checkInitializers(decl.filter(entry.getCondition()),initializermv,entry.getCondition(),scope,false)); From a6077fa8f1d4a5a09326cd5945580a8881527cd4 Mon Sep 17 00:00:00 2001 From: pattersonz Date: Fri, 17 Mar 2023 17:12:23 -0500 Subject: [PATCH 66/77] fixed duplicate global function declarations when using typeof, fixed typeof functions --- src/superc/cdesugarer/CActions.java | 8 ++++++-- src/superc/cdesugarer/NamedFunctionT.java | 4 ++++ src/superc/cdesugarer/desugarer.y | 8 ++++++-- src/test.c | 5 +++++ src/xtc/type/Type.java | 1 - src/xtc/type/TypeString.java | 2 +- 6 files changed, 22 insertions(+), 6 deletions(-) create mode 100644 src/test.c diff --git a/src/superc/cdesugarer/CActions.java b/src/superc/cdesugarer/CActions.java index f7b4137a..1d23c844 100644 --- a/src/superc/cdesugarer/CActions.java +++ b/src/superc/cdesugarer/CActions.java @@ -8885,11 +8885,11 @@ protected List> declarationAction(List de entrysb.append(";\n"); entrysb.append("}\n"); } else { // global scope - // declarations only set VariableT or AliasT boolean sameTypeKind = entry.getData().getValue().isVariable() && type.isVariable() - || entry.getData().getValue().isAlias() && type.isAlias(); + || entry.getData().getValue().isAlias() && type.isAlias() + || entry.getData().getValue().isNamedFunction() && type.isNamedFunction(); // check compatibility of types if (sameTypeKind) { @@ -8900,6 +8900,10 @@ protected List> declarationAction(List de } else if (type.isAlias()) { compatibleTypes = cOps.equal(entry.getData().getValue().toAlias().getType(), type.toAlias().getType()); + } else if (type.isNamedFunction()) { + compatibleTypes = cOps.equal(entry.getData().getValue(), + type.toFunction()); + } else { throw new AssertionError("should not be possible given sameTypeKind"); } diff --git a/src/superc/cdesugarer/NamedFunctionT.java b/src/superc/cdesugarer/NamedFunctionT.java index 66276837..aaa81756 100644 --- a/src/superc/cdesugarer/NamedFunctionT.java +++ b/src/superc/cdesugarer/NamedFunctionT.java @@ -116,6 +116,10 @@ protected FunctionT toFunctionT() { getParameters(), isVarArgs()); } + + public FunctionT toFunction() { + return this.toFunctionT(); + } public NamedFunctionT toNamedFunction() { return this; diff --git a/src/superc/cdesugarer/desugarer.y b/src/superc/cdesugarer/desugarer.y index eaf1a391..4104bfd7 100644 --- a/src/superc/cdesugarer/desugarer.y +++ b/src/superc/cdesugarer/desugarer.y @@ -8734,11 +8734,11 @@ protected List> declarationAction(List de entrysb.append(";\n"); entrysb.append("}\n"); } else { // global scope - // declarations only set VariableT or AliasT boolean sameTypeKind = entry.getData().getValue().isVariable() && type.isVariable() - || entry.getData().getValue().isAlias() && type.isAlias(); + || entry.getData().getValue().isAlias() && type.isAlias() + || entry.getData().getValue().isNamedFunction() && type.isNamedFunction(); // check compatibility of types if (sameTypeKind) { @@ -8749,6 +8749,10 @@ protected List> declarationAction(List de } else if (type.isAlias()) { compatibleTypes = cOps.equal(entry.getData().getValue().toAlias().getType(), type.toAlias().getType()); + } else if (type.isNamedFunction()) { + compatibleTypes = cOps.equal(entry.getData().getValue()l, + type.toFunction()); + } else { throw new AssertionError("should not be possible given sameTypeKind"); } diff --git a/src/test.c b/src/test.c new file mode 100644 index 00000000..de482e22 --- /dev/null +++ b/src/test.c @@ -0,0 +1,5 @@ +#include +#include +wint_t main() { + return 1; +} diff --git a/src/xtc/type/Type.java b/src/xtc/type/Type.java index 3aaa358c..8f991e4b 100644 --- a/src/xtc/type/Type.java +++ b/src/xtc/type/Type.java @@ -1996,7 +1996,6 @@ public String printTypeNameless() { } public String printType() { - System.err.println(this.toString()); TypeString t = new TypeString(); printType(t); return t.toString(); diff --git a/src/xtc/type/TypeString.java b/src/xtc/type/TypeString.java index 41e4993c..ac61a076 100644 --- a/src/xtc/type/TypeString.java +++ b/src/xtc/type/TypeString.java @@ -66,7 +66,7 @@ public void addAttribute(String s, Type t) { } public String toString() { - if (!retType.equals("")) { + if (!retType.equals("") && !id.equals("")) { declPre = "(" + declPre; declPost += ")"; } From bfe6180c288899196b1496e1de5d399efeefc59b Mon Sep 17 00:00:00 2001 From: pattersonz Date: Fri, 17 Mar 2023 17:13:08 -0500 Subject: [PATCH 67/77] mend --- .../desugarer/microbenchmark/autoRunnerResults.txt | 5 ++--- .../ANSI/injected/typeof_function.c | 12 ++++++++++++ .../language_features/function_definitions/K | 1 - 3 files changed, 14 insertions(+), 4 deletions(-) create mode 100644 fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/typeof_function.c diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/autoRunnerResults.txt b/fonda/cpp_testsuite/desugarer/microbenchmark/autoRunnerResults.txt index 8346e316..0167f441 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/autoRunnerResults.txt +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/autoRunnerResults.txt @@ -32,8 +32,10 @@ /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_parameters_empty_configurable.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_abstract_parameter.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/basic_functions.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/typeof_function.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_pointer.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_prototype_const_typedef.c :: match +/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/prototypes.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_qualified_void_pointer.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_pointer_param.c :: match /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/function_parameter_multiple_config.c :: match @@ -110,9 +112,6 @@ /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/analysis_features/syntactic_error_integration/enum_error.c :: 1/2 ['0', '157']/['0', '0'] [' REPEATED::157/0'] -/home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/prototypes.c :: 0/2 - ['4', '8']/['777', '777'] - ['::4/777', ' A::8/777'] /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/injected/function_typedef_parameter_configurable.c :: did not desug /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/injected/function_parameters_configurable.c :: did not desug /home/kisamefishfry/Documents/xtc-dev/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K&R/injected/function_parameters_empty_configurable.c :: did not desug diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/typeof_function.c b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/typeof_function.c new file mode 100644 index 00000000..6a464b1c --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/ANSI/injected/typeof_function.c @@ -0,0 +1,12 @@ +#ifdef Z +int x(int a, int b); +#else +char x(int c); +#endif +extern __typeof(x) ALIAS_x; +extern __typeof(x) ALIAS_x; + +int main() { + return sizeof(ALIAS_x); +} + diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K index c4f4ac19..e69de29b 100644 --- a/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/testcases/language_features/function_definitions/K @@ -1 +0,0 @@ -sh: 1: R/injected/function_no_param_dec.desugared.c: not found From 99935fd7d682755217c91a74a6d16d3702ba6f05 Mon Sep 17 00:00:00 2001 From: pattersonz Date: Fri, 17 Mar 2023 22:11:11 -0500 Subject: [PATCH 68/77] mend --- src/superc/cdesugarer/desugarer.y | 2 +- src/xtc/type/FunctionOrMethodT.java | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/superc/cdesugarer/desugarer.y b/src/superc/cdesugarer/desugarer.y index 4104bfd7..5774776a 100644 --- a/src/superc/cdesugarer/desugarer.y +++ b/src/superc/cdesugarer/desugarer.y @@ -8750,7 +8750,7 @@ protected List> declarationAction(List de compatibleTypes = cOps.equal(entry.getData().getValue().toAlias().getType(), type.toAlias().getType()); } else if (type.isNamedFunction()) { - compatibleTypes = cOps.equal(entry.getData().getValue()l, + compatibleTypes = cOps.equal(entry.getData().getValue(), type.toFunction()); } else { diff --git a/src/xtc/type/FunctionOrMethodT.java b/src/xtc/type/FunctionOrMethodT.java index 7ca7988a..39f8111f 100644 --- a/src/xtc/type/FunctionOrMethodT.java +++ b/src/xtc/type/FunctionOrMethodT.java @@ -236,6 +236,9 @@ public void printType(TypeString t) { } count++; } + if (varargs) { + t.corePost += "..."; + } t.corePost += ")"; } } From a38992e343c72abf85622f48b0cb9e40643bc3ea Mon Sep 17 00:00:00 2001 From: pattersonz Date: Mon, 20 Mar 2023 14:17:02 -0500 Subject: [PATCH 69/77] add check for empty declaration lsist qualifier --- src/superc/cdesugarer/CActions.java | 10 ++++++++-- src/superc/cdesugarer/desugarer.y | 10 ++++++++-- 2 files changed, 16 insertions(+), 4 deletions(-) diff --git a/src/superc/cdesugarer/CActions.java b/src/superc/cdesugarer/CActions.java index 1d23c844..92c06eba 100644 --- a/src/superc/cdesugarer/CActions.java +++ b/src/superc/cdesugarer/CActions.java @@ -1399,8 +1399,14 @@ public Object action(int production, Subparser subparser, Object value) { Multiverse qualList = this.getCompleteNodeMultiverseValue(subparser, 2, pc); Multiverse qual = this.getCompleteNodeMultiverseValue(subparser, 1, pc); - Multiverse tb = qualList.product(qual, DesugarOps.specifierProduct); - setTransformationValue(value, tb); + if (!qualList.isEmpty() && !qual.isEmpty()) { + Multiverse tb = qualList.product(qual, DesugarOps.specifierProduct); + setTransformationValue(value, tb); + } else { + TypeSpecifier E = new TypeSpecifier(); + E.setError(); + setTransformationValue(value,new Multiverse(E,pc)); + } updateSpecs(subparser, getSpecsAt(subparser, 2), getSpecsAt(subparser, 1), diff --git a/src/superc/cdesugarer/desugarer.y b/src/superc/cdesugarer/desugarer.y index 5774776a..fdf6e30c 100644 --- a/src/superc/cdesugarer/desugarer.y +++ b/src/superc/cdesugarer/desugarer.y @@ -1430,8 +1430,14 @@ DeclarationQualifierList: /** list, complete **/ /* const/volatile, AND storag Multiverse qualList = this.getCompleteNodeMultiverseValue(subparser, 2, pc); Multiverse qual = this.getCompleteNodeMultiverseValue(subparser, 1, pc); - Multiverse tb = qualList.product(qual, DesugarOps.specifierProduct); - setTransformationValue(value, tb); + if (!qualList.isEmpty() && !qual.isEmpty()) { + Multiverse tb = qualList.product(qual, DesugarOps.specifierProduct); + setTransformationValue(value, tb); + } else { + TypeSpecifier E = new TypeSpecifier(); + E.setError(); + setTransformationValue(value,new Multiverse(E,pc)); + } updateSpecs(subparser, getSpecsAt(subparser, 2), getSpecsAt(subparser, 1), From 47773ba704ae8685222f76e3d0e42decd24b2ef7 Mon Sep 17 00:00:00 2001 From: pattersonz Date: Mon, 20 Mar 2023 16:51:29 -0500 Subject: [PATCH 70/77] fixed assembly expression issue --- src/superc/cdesugarer/CActions.java | 4 ++-- src/superc/cdesugarer/desugarer.y | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/superc/cdesugarer/CActions.java b/src/superc/cdesugarer/CActions.java index 92c06eba..90b5b850 100644 --- a/src/superc/cdesugarer/CActions.java +++ b/src/superc/cdesugarer/CActions.java @@ -8381,8 +8381,8 @@ else if (size1 > size2) { case 602: { - ExpressionValue prev = (ExpressionValue)getTransformationValue(subparser,3); - ExpressionValue cur = (ExpressionValue)getTransformationValue(subparser,1); + ExpressionValue prev = getCompleteNodeExpressionValue(subparser,3,subparser.getPresenceCondition()); + ExpressionValue cur = getCompleteNodeExpressionValue(subparser,1,subparser.getPresenceCondition()); Multiverse prep = cur.transformation.prependScalar(",", DesugarOps.concatStrings); Multiverse prept = prev.type.product(cur.type,DesugarOps.propTypeError); setTransformationValue(value, new ExpressionValue(prev.transformation.product(prep, DesugarOps.concatStrings),prept)); diff --git a/src/superc/cdesugarer/desugarer.y b/src/superc/cdesugarer/desugarer.y index fdf6e30c..fd2b8949 100644 --- a/src/superc/cdesugarer/desugarer.y +++ b/src/superc/cdesugarer/desugarer.y @@ -8233,8 +8233,8 @@ Assemblyoperands: /** list, nomerge **/ // ADDED } | Assemblyoperands COMMA Assemblyoperand { - ExpressionValue prev = (ExpressionValue)getTransformationValue(subparser,3); - ExpressionValue cur = (ExpressionValue)getTransformationValue(subparser,1); + ExpressionValue prev = getCompleteNodeExpressionValue(subparser,3,subparser.getPresenceCondition()); + ExpressionValue cur = getCompleteNodeExpressionValue(subparser,1,subparser.getPresenceCondition()); Multiverse prep = cur.transformation.prependScalar(",", DesugarOps.concatStrings); Multiverse prept = prev.type.product(cur.type,DesugarOps.propTypeError); setTransformationValue(value, new ExpressionValue(prev.transformation.product(prep, DesugarOps.concatStrings),prept)); From 6d307c9366c084e0441b81eb9edf4ee2beaf72cd Mon Sep 17 00:00:00 2001 From: pattersonz Date: Mon, 20 Mar 2023 18:42:41 -0500 Subject: [PATCH 71/77] mend --- src/superc/cdesugarer/CActions.java | 16 ++++++++-------- src/superc/cdesugarer/desugarer.y | 16 ++++++++-------- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/src/superc/cdesugarer/CActions.java b/src/superc/cdesugarer/CActions.java index 90b5b850..4ec6ffe7 100644 --- a/src/superc/cdesugarer/CActions.java +++ b/src/superc/cdesugarer/CActions.java @@ -8268,7 +8268,7 @@ else if (size1 > size2) { case 592: { - ExpressionValue temp = (ExpressionValue)getTransformationValue(subparser,3); + ExpressionValue temp = getCompleteNodeExpressionValue(subparser,3,subparser.getPresenceCondition()); Multiverse prepended = temp.transformation.prependScalar("__asm__(", DesugarOps.concatStrings); Multiverse appended = prepended.appendScalar(");", DesugarOps.concatStrings); temp.transformation.destruct(); prepended.destruct(); @@ -8295,7 +8295,7 @@ else if (size1 > size2) { qual.destruct(); Multiverse preTemp = qualS.prependScalar("__asm__ ", DesugarOps.concatStrings); qualS.destruct(); - ExpressionValue temp = (ExpressionValue)getTransformationValue(subparser,3); + ExpressionValue temp = getCompleteNodeExpressionValue(subparser,3,subparser.getPresenceCondition()); Multiverse prepended = temp.transformation.prependScalar(" (", DesugarOps.concatStrings); Multiverse appended = prepended.appendScalar(");", DesugarOps.concatStrings); @@ -8310,9 +8310,9 @@ else if (size1 > size2) { case 595: { - Multiverse first = getCompleteNodeExpressionValue(subparser,7,subparser.getPresenceCondition()).transformation; - ExpressionValue sec = (ExpressionValue)getTransformationValue(subparser,5); - ExpressionValue third = (ExpressionValue)getTransformationValue(subparser,3); + Multiverse first = getCompleteNodeExpressionValue(subparser,7,subparser.getPresenceCondition()).transformation; + ExpressionValue sec = getCompleteNodeExpressionValue(subparser,5,subparser.getPresenceCondition()); + ExpressionValue third = getCompleteNodeExpressionValue(subparser,3,subparser.getPresenceCondition()); Multiverse fourth = (Multiverse)getTransformationValue(subparser,1); Multiverse prep2 = sec.transformation.prependScalar(":", DesugarOps.concatStrings); Multiverse prep3 = third.transformation.prependScalar(":", DesugarOps.concatStrings); @@ -8332,8 +8332,8 @@ else if (size1 > size2) { case 596: { Multiverse first = getCompleteNodeExpressionValue(subparser,5,subparser.getPresenceCondition()).transformation; - ExpressionValue sec = (ExpressionValue)getTransformationValue(subparser,3); - ExpressionValue third = (ExpressionValue)getTransformationValue(subparser,1); + ExpressionValue sec = getCompleteNodeExpressionValue(subparser,3,subparser.getPresenceCondition()); + ExpressionValue third = getCompleteNodeExpressionValue(subparser,1,subparser.getPresenceCondition()); Multiverse prep2 = sec.transformation.prependScalar(":", DesugarOps.concatStrings); sec.transformation.destruct(); Multiverse prep3 = third.transformation.prependScalar(":", DesugarOps.concatStrings); @@ -8348,7 +8348,7 @@ else if (size1 > size2) { case 597: { Multiverse first = getCompleteNodeExpressionValue(subparser,3,subparser.getPresenceCondition()).transformation; - ExpressionValue sec = (ExpressionValue)getTransformationValue(subparser,1); + ExpressionValue sec = getCompleteNodeExpressionValue(subparser,1,subparser.getPresenceCondition()); Multiverse prep = sec.transformation.prependScalar(":", DesugarOps.concatStrings); prep = first.product(prep,DesugarOps.concatStrings); setTransformationValue(value, new ExpressionValue(prep,sec.type)); diff --git a/src/superc/cdesugarer/desugarer.y b/src/superc/cdesugarer/desugarer.y index fd2b8949..bccd949d 100644 --- a/src/superc/cdesugarer/desugarer.y +++ b/src/superc/cdesugarer/desugarer.y @@ -8131,7 +8131,7 @@ AssemblyStatement: /** nomerge **/ // ADDED AsmKeyword LPAREN Assemblyargument RPAREN SEMICOLON /* gcc>=4.5 */ { - ExpressionValue temp = (ExpressionValue)getTransformationValue(subparser,3); + ExpressionValue temp = getCompleteNodeExpressionValue(subparser,3,subparser.getPresenceCondition()); Multiverse prepended = temp.transformation.prependScalar("__asm__(", DesugarOps.concatStrings); Multiverse appended = prepended.appendScalar(");", DesugarOps.concatStrings); temp.transformation.destruct(); prepended.destruct(); @@ -8154,7 +8154,7 @@ AssemblyStatement: /** nomerge **/ // ADDED qual.destruct(); Multiverse preTemp = qualS.prependScalar("__asm__ ", DesugarOps.concatStrings); qualS.destruct(); - ExpressionValue temp = (ExpressionValue)getTransformationValue(subparser,3); + ExpressionValue temp = getCompleteNodeExpressionValue(subparser,3,subparser.getPresenceCondition()); Multiverse prepended = temp.transformation.prependScalar(" (", DesugarOps.concatStrings); Multiverse appended = prepended.appendScalar(");", DesugarOps.concatStrings); @@ -8170,9 +8170,9 @@ AssemblyStatement: /** nomerge **/ // ADDED Assemblyargument: /** nomerge **/ // ADDED StringLiteralList COLON AssemblyoperandsOpt COLON AssemblyoperandsOpt COLON Assemblyclobbers { - Multiverse first = getCompleteNodeExpressionValue(subparser,7,subparser.getPresenceCondition()).transformation; - ExpressionValue sec = (ExpressionValue)getTransformationValue(subparser,5); - ExpressionValue third = (ExpressionValue)getTransformationValue(subparser,3); + Multiverse first = getCompleteNodeExpressionValue(subparser,7,subparser.getPresenceCondition()).transformation; + ExpressionValue sec = getCompleteNodeExpressionValue(subparser,5,subparser.getPresenceCondition()); + ExpressionValue third = getCompleteNodeExpressionValue(subparser,3,subparser.getPresenceCondition()); Multiverse fourth = (Multiverse)getTransformationValue(subparser,1); Multiverse prep2 = sec.transformation.prependScalar(":", DesugarOps.concatStrings); Multiverse prep3 = third.transformation.prependScalar(":", DesugarOps.concatStrings); @@ -8190,8 +8190,8 @@ Assemblyargument: /** nomerge **/ // ADDED | StringLiteralList COLON AssemblyoperandsOpt COLON AssemblyoperandsOpt { Multiverse first = getCompleteNodeExpressionValue(subparser,5,subparser.getPresenceCondition()).transformation; - ExpressionValue sec = (ExpressionValue)getTransformationValue(subparser,3); - ExpressionValue third = (ExpressionValue)getTransformationValue(subparser,1); + ExpressionValue sec = getCompleteNodeExpressionValue(subparser,3,subparser.getPresenceCondition()); + ExpressionValue third = getCompleteNodeExpressionValue(subparser,1,subparser.getPresenceCondition()); Multiverse prep2 = sec.transformation.prependScalar(":", DesugarOps.concatStrings); sec.transformation.destruct(); Multiverse prep3 = third.transformation.prependScalar(":", DesugarOps.concatStrings); @@ -8204,7 +8204,7 @@ Assemblyargument: /** nomerge **/ // ADDED | StringLiteralList COLON AssemblyoperandsOpt { Multiverse first = getCompleteNodeExpressionValue(subparser,3,subparser.getPresenceCondition()).transformation; - ExpressionValue sec = (ExpressionValue)getTransformationValue(subparser,1); + ExpressionValue sec = getCompleteNodeExpressionValue(subparser,1,subparser.getPresenceCondition()); Multiverse prep = sec.transformation.prependScalar(":", DesugarOps.concatStrings); prep = first.product(prep,DesugarOps.concatStrings); setTransformationValue(value, new ExpressionValue(prep,sec.type)); From 25cb282408db2f3538ebc522f9b77edf1238592f Mon Sep 17 00:00:00 2001 From: pattersonz Date: Mon, 20 Mar 2023 19:21:12 -0500 Subject: [PATCH 72/77] mend --- src/superc/cdesugarer/CActions.java | 38 ++++++++++++++++++++++++----- src/superc/cdesugarer/desugarer.y | 38 ++++++++++++++++++++++++----- 2 files changed, 64 insertions(+), 12 deletions(-) diff --git a/src/superc/cdesugarer/CActions.java b/src/superc/cdesugarer/CActions.java index 4ec6ffe7..cde13dc0 100644 --- a/src/superc/cdesugarer/CActions.java +++ b/src/superc/cdesugarer/CActions.java @@ -1012,7 +1012,7 @@ public Object action(int production, Subparser subparser, Object value) { PresenceCondition pc = subparser.getPresenceCondition(); CContext scope = ((CContext) subparser.scope); - List declaringlistvalues = (List) getTransformationValue(subparser, 3); + List declaringlistvalues = getCompleteNodeDeclaringListValueList(subparser, 3); String semi = getNodeAt(subparser, 1).getTokenText(); semi += declaringListRange(declaringlistvalues,(Syntax)getNodeAt(subparser,1)); //List> valuestring = declarationAction(declaringlistvalues, semi, pc, scope); @@ -1038,7 +1038,7 @@ public Object action(int production, Subparser subparser, Object value) { PresenceCondition pc = subparser.getPresenceCondition(); CContext scope = ((CContext) subparser.scope); - List declaringlistvalues = (List) getTransformationValue(subparser, 3); + List declaringlistvalues = getCompleteNodeDeclaringListValueList(subparser, 3); String semi = getNodeAt(subparser, 1).getTokenText(); semi += declaringListRange(declaringlistvalues,(Syntax)getNodeAt(subparser,1)); semi += "\n"; @@ -1143,7 +1143,7 @@ public Object action(int production, Subparser subparser, Object value) { { bindIdent(subparser, getNodeAt(subparser, 4), getNodeAt(subparser, 1)); // TODO: use new bindIdent to find typedefname PresenceCondition pc = subparser.getPresenceCondition(); - List declaringlist = (List) getTransformationValue(subparser, 4); + List declaringlist = getCompleteNodeDeclaringListValueList(subparser, 4); assert declaringlist.size() > 0; Multiverse types = declaringlist.get(0).typespecifier; Multiverse declarators = this.getCompleteNodeMultiverseValue(subparser, 1, pc); @@ -1162,7 +1162,7 @@ public Object action(int production, Subparser subparser, Object value) { Multiverse initializers = this.getCompleteNodeMultiverseValue(subparser, 1, pc); DeclaringListValue decl = getCompleteNodeDeclaringListValue(subparser,4,pc);; - List declaringlist = (List)getTransformationValue(subparser,8); + List declaringlist = getCompleteNodeDeclaringListValueList(subparser,8); if (((CContext) subparser.scope).isGlobal()) { decl.initializer = initializers; declaringlist.add(decl); @@ -1245,7 +1245,7 @@ public Object action(int production, Subparser subparser, Object value) { { bindIdent(subparser, getNodeAt(subparser, 4), getNodeAt(subparser, 1)); // TODO: use new bindIdent to find typedefname PresenceCondition pc = subparser.getPresenceCondition(); - List declaringlist = (List) getTransformationValue(subparser, 4); + List declaringlist = getCompleteNodeDeclaringListValueList(subparser, 4); assert declaringlist.size() > 0; Multiverse types = declaringlist.get(0).typespecifier; Multiverse declarators = this.getCompleteNodeMultiverseValue(subparser, 1, pc); @@ -1264,7 +1264,7 @@ public Object action(int production, Subparser subparser, Object value) { Multiverse initializers = this.getCompleteNodeMultiverseValue(subparser, 1, pc); DeclaringListValue decl = getCompleteNodeDeclaringListValue(subparser,4,pc); - List declaringlist = (List)getTransformationValue(subparser,8); + List declaringlist = getCompleteNodeDeclaringListValueList(subparser,8); if (((CContext) subparser.scope).isGlobal()) { decl.initializer = initializers; declaringlist.add(decl); @@ -11369,6 +11369,32 @@ private List getCompleteNodeStructDeclListValue(Node n return resultlist; } +private List getCompleteNodeDeclaringListValueList(Subparser subparser, int component) { + return getCompleteNodeDeclaringListValueList(getNodeAt(subparser, component), subparser.getPresenceCondition()); +} +private List getCompleteNodeDeclaringListValueList(Node node, PresenceCondition pc) { + Multiverse nodemv = staticCondToMultiverse(node, pc); + List resultlist = new LinkedList(); + + // loop through each node, get its multiverse and add to the + // resultmv. update each node's multiverse elements with the static + // conditional branch's presence condition using filter. + for (Element elem : nodemv) { + PresenceCondition combinedCond = pc.and(elem.getCondition()); + List mvlist = (List) ((Node) elem.getData()).getProperty(TRANSFORMATION); + for (DeclaringListValue dvlval : mvlist) { + resultlist.add(dvlval); + } + combinedCond.delRef(); + } + nodemv.destruct(); + + // the resulting list can be empty, e.g., of the + // declarationorstatementlist is empty + return resultlist; +} + + private DeclaringListValue getCompleteNodeDeclaringListValue(Subparser subparser, int component, PresenceCondition pc) { return getCompleteNodeDeclaringListValue(getNodeAt(subparser, component), pc); } diff --git a/src/superc/cdesugarer/desugarer.y b/src/superc/cdesugarer/desugarer.y index bccd949d..8fb57aba 100644 --- a/src/superc/cdesugarer/desugarer.y +++ b/src/superc/cdesugarer/desugarer.y @@ -1088,7 +1088,7 @@ Declaration: /** complete **/ // List> PresenceCondition pc = subparser.getPresenceCondition(); CContext scope = ((CContext) subparser.scope); - List declaringlistvalues = (List) getTransformationValue(subparser, 3); + List declaringlistvalues = getCompleteNodeDeclaringListValueList(subparser, 3); String semi = getNodeAt(subparser, 1).getTokenText(); semi += declaringListRange(declaringlistvalues,(Syntax)getNodeAt(subparser,1)); //List> valuestring = declarationAction(declaringlistvalues, semi, pc, scope); @@ -1108,7 +1108,7 @@ Declaration: /** complete **/ // List> PresenceCondition pc = subparser.getPresenceCondition(); CContext scope = ((CContext) subparser.scope); - List declaringlistvalues = (List) getTransformationValue(subparser, 3); + List declaringlistvalues = getCompleteNodeDeclaringListValueList(subparser, 3); String semi = getNodeAt(subparser, 1).getTokenText(); semi += declaringListRange(declaringlistvalues,(Syntax)getNodeAt(subparser,1)); semi += "\n"; @@ -1207,7 +1207,7 @@ DefaultDeclaringList: /** nomerge **/ /* Can't redeclare typedef names */ { bindIdent(subparser, getNodeAt(subparser, 4), getNodeAt(subparser, 1)); // TODO: use new bindIdent to find typedefname PresenceCondition pc = subparser.getPresenceCondition(); - List declaringlist = (List) getTransformationValue(subparser, 4); + List declaringlist = getCompleteNodeDeclaringListValueList(subparser, 4); assert declaringlist.size() > 0; Multiverse types = declaringlist.get(0).typespecifier; Multiverse declarators = this.getCompleteNodeMultiverseValue(subparser, 1, pc); @@ -1223,7 +1223,7 @@ DefaultDeclaringList: /** nomerge **/ /* Can't redeclare typedef names */ Multiverse initializers = this.getCompleteNodeMultiverseValue(subparser, 1, pc); DeclaringListValue decl = getCompleteNodeDeclaringListValue(subparser,4,pc);; - List declaringlist = (List)getTransformationValue(subparser,8); + List declaringlist = getCompleteNodeDeclaringListValueList(subparser,8); if (((CContext) subparser.scope).isGlobal()) { decl.initializer = initializers; declaringlist.add(decl); @@ -1295,7 +1295,7 @@ DeclaringList: /** nomerge **/ { bindIdent(subparser, getNodeAt(subparser, 4), getNodeAt(subparser, 1)); // TODO: use new bindIdent to find typedefname PresenceCondition pc = subparser.getPresenceCondition(); - List declaringlist = (List) getTransformationValue(subparser, 4); + List declaringlist = getCompleteNodeDeclaringListValueList(subparser, 4); assert declaringlist.size() > 0; Multiverse types = declaringlist.get(0).typespecifier; Multiverse declarators = this.getCompleteNodeMultiverseValue(subparser, 1, pc); @@ -1311,7 +1311,7 @@ DeclaringList: /** nomerge **/ Multiverse initializers = this.getCompleteNodeMultiverseValue(subparser, 1, pc); DeclaringListValue decl = getCompleteNodeDeclaringListValue(subparser,4,pc); - List declaringlist = (List)getTransformationValue(subparser,8); + List declaringlist = getCompleteNodeDeclaringListValueList(subparser,8); if (((CContext) subparser.scope).isGlobal()) { decl.initializer = initializers; declaringlist.add(decl); @@ -11218,6 +11218,32 @@ private List getCompleteNodeStructDeclListValue(Node n return resultlist; } +private List getCompleteNodeDeclaringListValueList(Subparser subparser, int component) { + return getCompleteNodeDeclaringListValueList(getNodeAt(subparser, component), subparser.getPresenceCondition()); +} +private List getCompleteNodeDeclaringListValueList(Node node, PresenceCondition pc) { + Multiverse nodemv = staticCondToMultiverse(node, pc); + List resultlist = new LinkedList(); + + // loop through each node, get its multiverse and add to the + // resultmv. update each node's multiverse elements with the static + // conditional branch's presence condition using filter. + for (Element elem : nodemv) { + PresenceCondition combinedCond = pc.and(elem.getCondition()); + List mvlist = (List) ((Node) elem.getData()).getProperty(TRANSFORMATION); + for (DeclaringListValue dvlval : mvlist) { + resultlist.add(dvlval); + } + combinedCond.delRef(); + } + nodemv.destruct(); + + // the resulting list can be empty, e.g., of the + // declarationorstatementlist is empty + return resultlist; +} + + private DeclaringListValue getCompleteNodeDeclaringListValue(Subparser subparser, int component, PresenceCondition pc) { return getCompleteNodeDeclaringListValue(getNodeAt(subparser, component), pc); } From 0012e38dbacddf551ffa0090129c90922597dcd5 Mon Sep 17 00:00:00 2001 From: pattersonz Date: Mon, 20 Mar 2023 19:29:26 -0500 Subject: [PATCH 73/77] mend --- src/superc/cdesugarer/CActions.java | 4 ++-- src/superc/cdesugarer/desugarer.y | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/superc/cdesugarer/CActions.java b/src/superc/cdesugarer/CActions.java index cde13dc0..2f656cdc 100644 --- a/src/superc/cdesugarer/CActions.java +++ b/src/superc/cdesugarer/CActions.java @@ -8405,9 +8405,9 @@ else if (size1 > size2) { case 604: { - String word = ((Syntax) getNodeAt(subparser, 6).get(0)).getTokenText(); + //String word = ((Syntax) getNodeAt(subparser, 6).get(0)).getTokenText(); todoReminder("support Assemblyoperand (2)"); - System.exit(0); + //System.exit(0); setTransformationValue(value, new Multiverse("", subparser.getPresenceCondition())); } break; diff --git a/src/superc/cdesugarer/desugarer.y b/src/superc/cdesugarer/desugarer.y index 8fb57aba..d9c3fba1 100644 --- a/src/superc/cdesugarer/desugarer.y +++ b/src/superc/cdesugarer/desugarer.y @@ -8256,9 +8256,9 @@ Assemblyoperand: /** nomerge **/ // ADDED } | LBRACK Word RBRACK StringLiteralList LPAREN Expression RPAREN { - String word = ((Syntax) getNodeAt(subparser, 6).get(0)).getTokenText(); + //String word = ((Syntax) getNodeAt(subparser, 6).get(0)).getTokenText(); todoReminder("support Assemblyoperand (2)"); - System.exit(0); + //System.exit(0); setTransformationValue(value, new Multiverse("", subparser.getPresenceCondition())); } ; From 953908a7f32a554999b5781dccddd6bacd55efb4 Mon Sep 17 00:00:00 2001 From: pattersonz Date: Mon, 20 Mar 2023 19:35:19 -0500 Subject: [PATCH 74/77] mend --- src/superc/cdesugarer/CActions.java | 13 +++++++++---- src/superc/cdesugarer/desugarer.y | 13 +++++++++---- 2 files changed, 18 insertions(+), 8 deletions(-) diff --git a/src/superc/cdesugarer/CActions.java b/src/superc/cdesugarer/CActions.java index 2f656cdc..40be31fc 100644 --- a/src/superc/cdesugarer/CActions.java +++ b/src/superc/cdesugarer/CActions.java @@ -8391,7 +8391,6 @@ else if (size1 > size2) { case 603: { - todoReminder("typecheck Assemblyoperand (1)"); ExpressionValue str = getCompleteNodeExpressionValue(subparser,4,subparser.getPresenceCondition()); ExpressionValue expr = getCompleteNodeExpressionValue(subparser,2,subparser.getPresenceCondition()); Multiverse temp = expr.transformation; @@ -8406,9 +8405,15 @@ else if (size1 > size2) { case 604: { //String word = ((Syntax) getNodeAt(subparser, 6).get(0)).getTokenText(); - todoReminder("support Assemblyoperand (2)"); - //System.exit(0); - setTransformationValue(value, new Multiverse("", subparser.getPresenceCondition())); + todoReminder("Assembly operand 2, add Word"); + ExpressionValue str = getCompleteNodeExpressionValue(subparser,4,subparser.getPresenceCondition()); + ExpressionValue expr = getCompleteNodeExpressionValue(subparser,2,subparser.getPresenceCondition()); + Multiverse temp = expr.transformation; + Multiverse prepended = temp.prependScalar("(", DesugarOps.concatStrings); + Multiverse appended = prepended.appendScalar(")", DesugarOps.concatStrings); + temp.destruct(); prepended.destruct(); + + setTransformationValue(value, new ExpressionValue(str.transformation.product(appended, DesugarOps.concatStrings),expr.type)); } break; diff --git a/src/superc/cdesugarer/desugarer.y b/src/superc/cdesugarer/desugarer.y index d9c3fba1..fffb3bca 100644 --- a/src/superc/cdesugarer/desugarer.y +++ b/src/superc/cdesugarer/desugarer.y @@ -8244,7 +8244,6 @@ Assemblyoperands: /** list, nomerge **/ // ADDED Assemblyoperand: /** nomerge **/ // ADDED StringLiteralList LPAREN Expression RPAREN { - todoReminder("typecheck Assemblyoperand (1)"); ExpressionValue str = getCompleteNodeExpressionValue(subparser,4,subparser.getPresenceCondition()); ExpressionValue expr = getCompleteNodeExpressionValue(subparser,2,subparser.getPresenceCondition()); Multiverse temp = expr.transformation; @@ -8257,9 +8256,15 @@ Assemblyoperand: /** nomerge **/ // ADDED | LBRACK Word RBRACK StringLiteralList LPAREN Expression RPAREN { //String word = ((Syntax) getNodeAt(subparser, 6).get(0)).getTokenText(); - todoReminder("support Assemblyoperand (2)"); - //System.exit(0); - setTransformationValue(value, new Multiverse("", subparser.getPresenceCondition())); + todoReminder("Assembly operand 2, add Word"); + ExpressionValue str = getCompleteNodeExpressionValue(subparser,4,subparser.getPresenceCondition()); + ExpressionValue expr = getCompleteNodeExpressionValue(subparser,2,subparser.getPresenceCondition()); + Multiverse temp = expr.transformation; + Multiverse prepended = temp.prependScalar("(", DesugarOps.concatStrings); + Multiverse appended = prepended.appendScalar(")", DesugarOps.concatStrings); + temp.destruct(); prepended.destruct(); + + setTransformationValue(value, new ExpressionValue(str.transformation.product(appended, DesugarOps.concatStrings),expr.type)); } ; From 99ff1b1d46d7ddb3ea2ef3103604a336ff1794b3 Mon Sep 17 00:00:00 2001 From: pattersonz Date: Mon, 20 Mar 2023 19:42:28 -0500 Subject: [PATCH 75/77] mend --- src/superc/cdesugarer/CActions.java | 7 ++++++- src/superc/cdesugarer/desugarer.y | 7 ++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/src/superc/cdesugarer/CActions.java b/src/superc/cdesugarer/CActions.java index 40be31fc..907caf38 100644 --- a/src/superc/cdesugarer/CActions.java +++ b/src/superc/cdesugarer/CActions.java @@ -8384,7 +8384,12 @@ else if (size1 > size2) { ExpressionValue prev = getCompleteNodeExpressionValue(subparser,3,subparser.getPresenceCondition()); ExpressionValue cur = getCompleteNodeExpressionValue(subparser,1,subparser.getPresenceCondition()); Multiverse prep = cur.transformation.prependScalar(",", DesugarOps.concatStrings); - Multiverse prept = prev.type.product(cur.type,DesugarOps.propTypeError); + Multiverse prept; + if (!prev.type.isEmpty() && !cur.type.isEmpty()) { + prept = prev.type.product(cur.type,DesugarOps.propTypeError); + } else { + prept = new Multiverse(ErrorT.TYPE,subparser.getPresenceCondition()); + } setTransformationValue(value, new ExpressionValue(prev.transformation.product(prep, DesugarOps.concatStrings),prept)); } break; diff --git a/src/superc/cdesugarer/desugarer.y b/src/superc/cdesugarer/desugarer.y index fffb3bca..a6baa1d2 100644 --- a/src/superc/cdesugarer/desugarer.y +++ b/src/superc/cdesugarer/desugarer.y @@ -8236,7 +8236,12 @@ Assemblyoperands: /** list, nomerge **/ // ADDED ExpressionValue prev = getCompleteNodeExpressionValue(subparser,3,subparser.getPresenceCondition()); ExpressionValue cur = getCompleteNodeExpressionValue(subparser,1,subparser.getPresenceCondition()); Multiverse prep = cur.transformation.prependScalar(",", DesugarOps.concatStrings); - Multiverse prept = prev.type.product(cur.type,DesugarOps.propTypeError); + Multiverse prept; + if (!prev.type.isEmpty() && !cur.type.isEmpty()) { + prept = prev.type.product(cur.type,DesugarOps.propTypeError); + } else { + prept = new Multiverse(ErrorT.TYPE,subparser.getPresenceCondition()); + } setTransformationValue(value, new ExpressionValue(prev.transformation.product(prep, DesugarOps.concatStrings),prept)); } ; From 92d2ad66f18a2ecb052c756731ac1a7107530be4 Mon Sep 17 00:00:00 2001 From: pattersonz Date: Mon, 20 Mar 2023 19:50:08 -0500 Subject: [PATCH 76/77] mend --- src/superc/cdesugarer/CActions.java | 10 ++++++---- src/superc/cdesugarer/desugarer.y | 10 ++++++---- 2 files changed, 12 insertions(+), 8 deletions(-) diff --git a/src/superc/cdesugarer/CActions.java b/src/superc/cdesugarer/CActions.java index 907caf38..e08f0c30 100644 --- a/src/superc/cdesugarer/CActions.java +++ b/src/superc/cdesugarer/CActions.java @@ -8384,13 +8384,15 @@ else if (size1 > size2) { ExpressionValue prev = getCompleteNodeExpressionValue(subparser,3,subparser.getPresenceCondition()); ExpressionValue cur = getCompleteNodeExpressionValue(subparser,1,subparser.getPresenceCondition()); Multiverse prep = cur.transformation.prependScalar(",", DesugarOps.concatStrings); - Multiverse prept; - if (!prev.type.isEmpty() && !cur.type.isEmpty()) { + if (!prev.type.isEmpty() && !cur.type.isEmpty() && !cur.transformation.isEmpty() && !prev.transformation.isEmpty()) { + Multiverse prept; prept = prev.type.product(cur.type,DesugarOps.propTypeError); + setTransformationValue(value, new ExpressionValue(prev.transformation.product(prep, DesugarOps.concatStrings),prept)); } else { - prept = new Multiverse(ErrorT.TYPE,subparser.getPresenceCondition()); + setTransformationValue(value, + new ExpressionValue(new Multiverse("",subparser.getPresenceCondition()), + new Multiverse(ErrorT.TYPE,subparser.getPresenceCondition()))); } - setTransformationValue(value, new ExpressionValue(prev.transformation.product(prep, DesugarOps.concatStrings),prept)); } break; diff --git a/src/superc/cdesugarer/desugarer.y b/src/superc/cdesugarer/desugarer.y index a6baa1d2..c6051378 100644 --- a/src/superc/cdesugarer/desugarer.y +++ b/src/superc/cdesugarer/desugarer.y @@ -8236,13 +8236,15 @@ Assemblyoperands: /** list, nomerge **/ // ADDED ExpressionValue prev = getCompleteNodeExpressionValue(subparser,3,subparser.getPresenceCondition()); ExpressionValue cur = getCompleteNodeExpressionValue(subparser,1,subparser.getPresenceCondition()); Multiverse prep = cur.transformation.prependScalar(",", DesugarOps.concatStrings); - Multiverse prept; - if (!prev.type.isEmpty() && !cur.type.isEmpty()) { + if (!prev.type.isEmpty() && !cur.type.isEmpty() && !cur.transformation.isEmpty() && !prev.transformation.isEmpty()) { + Multiverse prept; prept = prev.type.product(cur.type,DesugarOps.propTypeError); + setTransformationValue(value, new ExpressionValue(prev.transformation.product(prep, DesugarOps.concatStrings),prept)); } else { - prept = new Multiverse(ErrorT.TYPE,subparser.getPresenceCondition()); + setTransformationValue(value, + new ExpressionValue(new Multiverse("",subparser.getPresenceCondition()), + new Multiverse(ErrorT.TYPE,subparser.getPresenceCondition()))); } - setTransformationValue(value, new ExpressionValue(prev.transformation.product(prep, DesugarOps.concatStrings),prept)); } ; From 3a8c1f09c3b58c8953e524e5e4ac8bf401062140 Mon Sep 17 00:00:00 2001 From: pattersonz Date: Mon, 20 Mar 2023 20:06:23 -0500 Subject: [PATCH 77/77] mend --- src/superc/cdesugarer/CActions.java | 81 ++++++++++++++++++++--------- src/superc/cdesugarer/desugarer.y | 81 ++++++++++++++++++++--------- 2 files changed, 114 insertions(+), 48 deletions(-) diff --git a/src/superc/cdesugarer/CActions.java b/src/superc/cdesugarer/CActions.java index e08f0c30..e7d82ac0 100644 --- a/src/superc/cdesugarer/CActions.java +++ b/src/superc/cdesugarer/CActions.java @@ -8314,18 +8314,26 @@ else if (size1 > size2) { ExpressionValue sec = getCompleteNodeExpressionValue(subparser,5,subparser.getPresenceCondition()); ExpressionValue third = getCompleteNodeExpressionValue(subparser,3,subparser.getPresenceCondition()); Multiverse fourth = (Multiverse)getTransformationValue(subparser,1); - Multiverse prep2 = sec.transformation.prependScalar(":", DesugarOps.concatStrings); - Multiverse prep3 = third.transformation.prependScalar(":", DesugarOps.concatStrings); - Multiverse prep4 = fourth.prependScalar(":", DesugarOps.concatStrings); - fourth.destruct(); - Multiverse last = prep3.product(prep4, DesugarOps.concatStrings); - prep3.destruct(); prep4.destruct(); - Multiverse later = prep2.product(last, DesugarOps.concatStrings); - prep2.destruct(); last.destruct(); - Multiverse res = first.product(later, DesugarOps.concatStrings); - first.destruct(); later.destruct(); - Multiverse ty = sec.type.product(third.type,DesugarOps.propTypeError); - setTransformationValue(value, new ExpressionValue(res,ty)); + if (sec.isEmpty() || third.isEmpty() || first.isEmpty() || fourth.isEmpty()) { + setTransformationValue(value, new ExpressionValue( + new Multiverse("",subparser.getPresenceCondition()), + new Multiverse(ErrorT.TYPE,subparser.getPresenceCondition()) + )); + + } else { + Multiverse prep2 = sec.transformation.prependScalar(":", DesugarOps.concatStrings); + Multiverse prep3 = third.transformation.prependScalar(":", DesugarOps.concatStrings); + Multiverse prep4 = fourth.prependScalar(":", DesugarOps.concatStrings); + fourth.destruct(); + Multiverse last = prep3.product(prep4, DesugarOps.concatStrings); + prep3.destruct(); prep4.destruct(); + Multiverse later = prep2.product(last, DesugarOps.concatStrings); + prep2.destruct(); last.destruct(); + Multiverse res = first.product(later, DesugarOps.concatStrings); + first.destruct(); later.destruct(); + Multiverse ty = sec.type.product(third.type,DesugarOps.propTypeError); + setTransformationValue(value, new ExpressionValue(res,ty)); + } } break; @@ -8334,14 +8342,21 @@ else if (size1 > size2) { Multiverse first = getCompleteNodeExpressionValue(subparser,5,subparser.getPresenceCondition()).transformation; ExpressionValue sec = getCompleteNodeExpressionValue(subparser,3,subparser.getPresenceCondition()); ExpressionValue third = getCompleteNodeExpressionValue(subparser,1,subparser.getPresenceCondition()); - Multiverse prep2 = sec.transformation.prependScalar(":", DesugarOps.concatStrings); - sec.transformation.destruct(); - Multiverse prep3 = third.transformation.prependScalar(":", DesugarOps.concatStrings); - third.transformation.destruct(); - Multiverse later = prep2.product(prep3, DesugarOps.concatStrings); - Multiverse ty = sec.type.product(third.type,DesugarOps.propTypeError); - Multiverse res = first.product(later, DesugarOps.concatStrings); - setTransformationValue(value, new ExpressionValue(res,ty)); + if (sec.isEmpty() || third.isEmpty() || first.isEmpty()) { + setTransformationValue(value, new ExpressionValue( + new Multiverse("",subparser.getPresenceCondition()), + new Multiverse(ErrorT.TYPE,subparser.getPresenceCondition()) + )); + } else { + Multiverse prep2 = sec.transformation.prependScalar(":", DesugarOps.concatStrings); + sec.transformation.destruct(); + Multiverse prep3 = third.transformation.prependScalar(":", DesugarOps.concatStrings); + third.transformation.destruct(); + Multiverse later = prep2.product(prep3, DesugarOps.concatStrings); + Multiverse ty = sec.type.product(third.type,DesugarOps.propTypeError); + Multiverse res = first.product(later, DesugarOps.concatStrings); + setTransformationValue(value, new ExpressionValue(res,ty)); + } } break; @@ -8349,15 +8364,33 @@ else if (size1 > size2) { { Multiverse first = getCompleteNodeExpressionValue(subparser,3,subparser.getPresenceCondition()).transformation; ExpressionValue sec = getCompleteNodeExpressionValue(subparser,1,subparser.getPresenceCondition()); - Multiverse prep = sec.transformation.prependScalar(":", DesugarOps.concatStrings); - prep = first.product(prep,DesugarOps.concatStrings); - setTransformationValue(value, new ExpressionValue(prep,sec.type)); + if (sec.isEmpty() || first.isEmpty()) { + setTransformationValue(value, new ExpressionValue( + new Multiverse("",subparser.getPresenceCondition()), + new Multiverse(ErrorT.TYPE,subparser.getPresenceCondition()) + )); + + } else { + Multiverse prep = sec.transformation.prependScalar(":", DesugarOps.concatStrings); + prep = first.product(prep,DesugarOps.concatStrings); + setTransformationValue(value, new ExpressionValue(prep,sec.type)); + } } break; case 598: { - setTransformationValue(value, getCompleteNodeExpressionValue(subparser, 1, subparser.getPresenceCondition())); + ExpressionValue first = getCompleteNodeExpressionValue(subparser,1,subparser.getPresenceCondition()); + if (first.isEmpty()) { + setTransformationValue(value, new ExpressionValue( + new Multiverse("",subparser.getPresenceCondition()), + new Multiverse(ErrorT.TYPE,subparser.getPresenceCondition()) + )); + + } else { + setTransformationValue(value,first); + } + } break; diff --git a/src/superc/cdesugarer/desugarer.y b/src/superc/cdesugarer/desugarer.y index c6051378..a69c10d9 100644 --- a/src/superc/cdesugarer/desugarer.y +++ b/src/superc/cdesugarer/desugarer.y @@ -8174,44 +8174,77 @@ Assemblyargument: /** nomerge **/ // ADDED ExpressionValue sec = getCompleteNodeExpressionValue(subparser,5,subparser.getPresenceCondition()); ExpressionValue third = getCompleteNodeExpressionValue(subparser,3,subparser.getPresenceCondition()); Multiverse fourth = (Multiverse)getTransformationValue(subparser,1); - Multiverse prep2 = sec.transformation.prependScalar(":", DesugarOps.concatStrings); - Multiverse prep3 = third.transformation.prependScalar(":", DesugarOps.concatStrings); - Multiverse prep4 = fourth.prependScalar(":", DesugarOps.concatStrings); - fourth.destruct(); - Multiverse last = prep3.product(prep4, DesugarOps.concatStrings); - prep3.destruct(); prep4.destruct(); - Multiverse later = prep2.product(last, DesugarOps.concatStrings); - prep2.destruct(); last.destruct(); - Multiverse res = first.product(later, DesugarOps.concatStrings); - first.destruct(); later.destruct(); - Multiverse ty = sec.type.product(third.type,DesugarOps.propTypeError); - setTransformationValue(value, new ExpressionValue(res,ty)); + if (sec.isEmpty() || third.isEmpty() || first.isEmpty() || fourth.isEmpty()) { + setTransformationValue(value, new ExpressionValue( + new Multiverse("",subparser.getPresenceCondition()), + new Multiverse(ErrorT.TYPE,subparser.getPresenceCondition()) + )); + + } else { + Multiverse prep2 = sec.transformation.prependScalar(":", DesugarOps.concatStrings); + Multiverse prep3 = third.transformation.prependScalar(":", DesugarOps.concatStrings); + Multiverse prep4 = fourth.prependScalar(":", DesugarOps.concatStrings); + fourth.destruct(); + Multiverse last = prep3.product(prep4, DesugarOps.concatStrings); + prep3.destruct(); prep4.destruct(); + Multiverse later = prep2.product(last, DesugarOps.concatStrings); + prep2.destruct(); last.destruct(); + Multiverse res = first.product(later, DesugarOps.concatStrings); + first.destruct(); later.destruct(); + Multiverse ty = sec.type.product(third.type,DesugarOps.propTypeError); + setTransformationValue(value, new ExpressionValue(res,ty)); + } } | StringLiteralList COLON AssemblyoperandsOpt COLON AssemblyoperandsOpt { Multiverse first = getCompleteNodeExpressionValue(subparser,5,subparser.getPresenceCondition()).transformation; ExpressionValue sec = getCompleteNodeExpressionValue(subparser,3,subparser.getPresenceCondition()); ExpressionValue third = getCompleteNodeExpressionValue(subparser,1,subparser.getPresenceCondition()); - Multiverse prep2 = sec.transformation.prependScalar(":", DesugarOps.concatStrings); - sec.transformation.destruct(); - Multiverse prep3 = third.transformation.prependScalar(":", DesugarOps.concatStrings); - third.transformation.destruct(); - Multiverse later = prep2.product(prep3, DesugarOps.concatStrings); - Multiverse ty = sec.type.product(third.type,DesugarOps.propTypeError); - Multiverse res = first.product(later, DesugarOps.concatStrings); - setTransformationValue(value, new ExpressionValue(res,ty)); + if (sec.isEmpty() || third.isEmpty() || first.isEmpty()) { + setTransformationValue(value, new ExpressionValue( + new Multiverse("",subparser.getPresenceCondition()), + new Multiverse(ErrorT.TYPE,subparser.getPresenceCondition()) + )); + } else { + Multiverse prep2 = sec.transformation.prependScalar(":", DesugarOps.concatStrings); + sec.transformation.destruct(); + Multiverse prep3 = third.transformation.prependScalar(":", DesugarOps.concatStrings); + third.transformation.destruct(); + Multiverse later = prep2.product(prep3, DesugarOps.concatStrings); + Multiverse ty = sec.type.product(third.type,DesugarOps.propTypeError); + Multiverse res = first.product(later, DesugarOps.concatStrings); + setTransformationValue(value, new ExpressionValue(res,ty)); + } } | StringLiteralList COLON AssemblyoperandsOpt { Multiverse first = getCompleteNodeExpressionValue(subparser,3,subparser.getPresenceCondition()).transformation; ExpressionValue sec = getCompleteNodeExpressionValue(subparser,1,subparser.getPresenceCondition()); - Multiverse prep = sec.transformation.prependScalar(":", DesugarOps.concatStrings); - prep = first.product(prep,DesugarOps.concatStrings); - setTransformationValue(value, new ExpressionValue(prep,sec.type)); + if (sec.isEmpty() || first.isEmpty()) { + setTransformationValue(value, new ExpressionValue( + new Multiverse("",subparser.getPresenceCondition()), + new Multiverse(ErrorT.TYPE,subparser.getPresenceCondition()) + )); + + } else { + Multiverse prep = sec.transformation.prependScalar(":", DesugarOps.concatStrings); + prep = first.product(prep,DesugarOps.concatStrings); + setTransformationValue(value, new ExpressionValue(prep,sec.type)); + } } | StringLiteralList { - setTransformationValue(value, getCompleteNodeExpressionValue(subparser, 1, subparser.getPresenceCondition())); + ExpressionValue first = getCompleteNodeExpressionValue(subparser,1,subparser.getPresenceCondition()); + if (first.isEmpty()) { + setTransformationValue(value, new ExpressionValue( + new Multiverse("",subparser.getPresenceCondition()), + new Multiverse(ErrorT.TYPE,subparser.getPresenceCondition()) + )); + + } else { + setTransformationValue(value,first); + } + } ;

8u0yTPO1A%6Er8e*qt_!EY`Ya-p;POZ30Yc3S^Z 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 literal 0 HcmV?d00001 diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/functionsHeader.c b/fonda/cpp_testsuite/desugarer/microbenchmark/functionsHeader.c new file mode 100644 index 00000000..0df4ee86 --- /dev/null +++ b/fonda/cpp_testsuite/desugarer/microbenchmark/functionsHeader.c @@ -0,0 +1,17 @@ +#include +#include +void __static_parse_error(char *msg) { + printf("parse error: %s\n", msg); + exit(-99); +} +void __static_type_error(char *msg) { + printf("type error: %s\n", msg); + exit(-99); +} +void __static_renaming(char *renaming, char *original) { + printf("renaming: %s -> %s\n", original, renaming); +} + +void __static_condition_renaming(char *expression, char *renaming) { + printf("condition renaming: %s -> %s\n", expression, renaming); +} diff --git a/fonda/cpp_testsuite/desugarer/microbenchmark/functionsHeader.h.gch b/fonda/cpp_testsuite/desugarer/microbenchmark/functionsHeader.h.gch new file mode 100644 index 0000000000000000000000000000000000000000..9ee3cd032f6a0d3ac02e3045a0c4bbda64574a9c GIT binary patch literal 2308016 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 H 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